From 7ff0532a9fabaeac07a7bfee6ba0cbff3ec6a70e Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 23 Sep 2025 09:22:28 -0600 Subject: [PATCH 01/82] Adds OEDI export by geography Adds export of metadata_and_annual_results by various geographies, in both CSV and parquet format. --- .../resstockpostproc/process_bsb_results.py | 6 +- .../resstockpostproc/process_metadata.py | 122 +++++++++++++++++ postprocessing/resstockpostproc/utils.py | 123 ++++++++++++++++++ 3 files changed, 250 insertions(+), 1 deletion(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index 48fc11ebda..1cde4c2610 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -4,6 +4,7 @@ Example usage: uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results /path/to/output_dir +uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" Note: bsb_raw_results folder must contain both baseline and upgrade files. Baseline file should be named results_up00.parquet and upgrade files should be named results_upXX.parquet where XX is the upgrade number. The can @@ -16,6 +17,7 @@ from resstockpostproc.process_metadata import ( publish_baseline_annual_results, publish_upgrade_annual_results, + export_metadata_and_annual_results_to_oedi_by_geography ) import re @@ -104,4 +106,6 @@ def write_file(df: pl.LazyFrame, output_path: Path, upgrade: int): help="Directory to write transformed results", ) args = parser.parse_args() - process_results(args.raw_results_dir, args.output_dir) + # process_results(args.raw_results_dir, args.output_dir) + + export_metadata_and_annual_results_to_oedi_by_geography(args.output_dir) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 8223c64851..efffdad513 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -1,15 +1,20 @@ import polars as pl import pathlib import geopandas as gpd +import logging +import s3fs from typing import Sequence from resstockpostproc.utils import ( fix_site_energy_total, fix_all_fuels_emissions, get_col_maps, + setup_fsspec_filesystem, + write_geo_data ) from resstockpostproc.income_mapper import assign_representative_income +logger = logging.getLogger(__name__) def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: failed_bldgs = metadata_df.filter(pl.col("completed_status") == "Fail") @@ -297,3 +302,120 @@ def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict], is_baseline: boo print(f"Missing columns in output data that is defined in publication column definition: {missing_cols}") available_cols = [col for col in all_defined_cols if col in all_df_cols] return lf.select(available_cols) + + +def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_profile_name=None): + """ + Subdivides the annual results by geography and writes to OEDI. + Creates .parquet and .csv.gz files. + + Args: + output_dir: String path in s3:// or local filesystem format. + aws_profile_name: Name of the AWS profile to use for authentication if writing to S3. + Returns: + None + + """ + output_dir = setup_fsspec_filesystem(output_dir, aws_profile_name) + + bucket_name = 'oedi-data-lake' + if output_dir['fs'].exists(bucket_name): + print(f"Bucket {bucket_name} exists") + else: + print(f"Bucket {bucket_name} does not exist") + + # Get a list of upgrades + up_pqts = [] + pqt_glob = f"{output_dir['fs_path']}/metadata_and_annual_results/national/parquet/full/*.parquet" + print(pqt_glob) + for p in output_dir['fs'].glob(pqt_glob): + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + up_pqts.append(f's3://{p}') + else: + up_pqts.append(p) + print(f'Found {len(up_pqts)} upgrade parquet files, including the baseline.') + + # Define the geographic partitions to export + geo_exports = [ + { + 'geo_top_dir': 'by_state', + 'partition_cols': { + 'in.state': 'state' + }, + 'data_types': ['full'], # TODO add basic + 'file_types': ['csv', 'parquet'], + } + ] + + for ge in geo_exports: + geo_top_dir = ge['geo_top_dir'] + partition_cols = ge['partition_cols'] + print('partition_cols') + print(partition_cols) + data_types = ge['data_types'] + file_types = ge['file_types'] + # geo_col_names = list(partition_cols.keys()) + + # Name the top-level directory + full_geo_dir = f"{output_dir['fs_path']}/metadata_and_annual_results/{geo_top_dir}" + + # Make a directory for the geography type + if not isinstance(output_dir['fs'], s3fs.S3FileSystem): + output_dir['fs'].mkdirs(full_geo_dir, exist_ok=True) + + # Make a directory for each data type X file type combo + if not isinstance(output_dir['fs'], s3fs.S3FileSystem): + for data_type in data_types: + for file_type in file_types: + output_dir['fs'].mkdirs(f'{full_geo_dir}/{data_type}/{file_type}', exist_ok=True) + + # Load the file + for up_pqt in up_pqts: + upgrade_id = pathlib.Path(up_pqt).stem.replace('upgrade', '') + print(f'Processing upgrade {upgrade_id}') + + # Read the file + up_df = pl.read_parquet(up_pqt, hive_partitioning=True, storage_options=output_dir['storage_options'] ) + # for c in df.columns: + # print(c) + + # Export by various geographies + for by_col, by_dir_name in partition_cols.items(): + for by_val, geo_df in up_df.group_by(by_col): + by_val = by_val[0] + geo_levels = [f'{by_dir_name}={by_val}'] + geo_prefixes = [by_val] + for data_type in data_types: + # TODO Downselect the DF to fewer columns for basic version + + for file_type in file_types: + file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) + print(f"Queuing {file_path}") + input_args = (geo_df, output_dir, file_type, file_path) + # write_geo_data(input_args) + + break + +def get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id): + """ + Builds a file path for each aggregate based on name, file type, and aggregation level + """ + geo_level_dir = f'{full_geo_dir}/{data_type}/{file_type}' + if len(geo_levels) > 0: + geo_level_dir = f'{geo_level_dir}/' + '/'.join(geo_levels) + if not isinstance(output_dir['fs'], s3fs.S3FileSystem): + output_dir['fs'].mkdirs(geo_level_dir, exist_ok=True) + file_name = f'upgrade{upgrade_id}' + # Add geography prefix to filename + if len(geo_prefixes) > 0: + geo_prefix = '_'.join(geo_prefixes) + file_name = f'{geo_prefix}_{file_name}' + # Add data_type suffix to filename + if data_type == 'basic': + file_name = f'{file_name}_{data_type}' + # Add the filetype extension to filename + file_name = f'{file_name}.{file_type}' + # Write the file, depending on filetype + file_path = f'{geo_level_dir}/{file_name}' + + return file_path \ No newline at end of file diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 88945b4069..9ae59d2414 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -4,6 +4,17 @@ from collections import defaultdict import re import pathlib +import logging +import pathlib +import boto3 +import s3fs +import gzip +import tarfile +from io import BytesIO +from fsspec import register_implementation +from fsspec.core import url_to_fs + +logger = logging.getLogger(__name__) def remove_all_empty_cols(df: pl.DataFrame): """ @@ -76,3 +87,115 @@ def get_col_maps(): col_maps = col_map_df.to_dicts() return col_maps +def setup_fsspec_filesystem(output_dir, aws_profile_name): + """ + Creates fsspec filesystem to handle local or S3 output locations + """ + # Use fsspec to enable local or S3 directories + # if output_dir is None: + # current_dir = pathlib.Path(__file__).resolve().parent + # output_dir = current_dir.parent / "output" / self.dataset_name + + # PyAthena >2.18.0 implements an s3 filesystem that replaces s3fs but does not implement file.open() + # Make fsspec use the s3fs s3 filesystem implementation for writing files to S3 + # This is necessary for import into SightGlassDataProcessing + register_implementation("s3", s3fs.S3FileSystem, clobber=True) + out_fs, out_fs_path = url_to_fs(output_dir, profile=aws_profile_name) + output_dir = { + 'fs': out_fs, + 'fs_path': out_fs_path + } + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + if aws_profile_name is None: + logger.info(f'Accessing AWS using profile: None, which uses the [default] profile in .aws/config file') + else: + logger.info(f'Accessing AWS using profile: {aws_profile_name}') + session = boto3.Session(aws_profile_name) + credentials = session.get_credentials().get_frozen_credentials() + output_dir['storage_options'] = { + "aws_access_key_id": credentials.access_key, + "aws_secret_access_key": credentials.secret_key, + "aws_region": "us-west-2", + } + if credentials.token: + output_dir['storage_options']["aws_session_token"] = credentials.token + else: + output_dir['storage_options'] = None + + return output_dir + + +def write_geo_data(combo): + """ + Writes the data to the desired location and file format. + This function must be a global static function in order to work with parallel processing. + """ + geo_data, out_location, file_type, file_path = combo + if isinstance(geo_data, pl.LazyFrame): + geo_data = geo_data.collect() + if file_type == 'csv': + write_polars_csv_to_s3_or_local(geo_data, out_location['fs'], file_path) + elif file_type == 'parquet': + with out_location['fs'].open(file_path, "wb") as f: + geo_data.write_parquet(f, use_pyarrow=True) + else: + raise RuntimeError(f'Unknown file type {file_type} requested in export_metadata_and_annual_results()') + + +def write_polars_csv_to_s3_or_local(data: pl.DataFrame, out_fs, out_path): + """ + Writes the data to the desired location and file format. + This function must be a global static function in order to work with parallel processing + """ + # If local, write uncompressed CSV + if not isinstance(out_fs, s3fs.S3FileSystem): + data.write_csv(out_path) + return True + + # Get filename from full path + file_name = out_path.split('/')[-1] + + # Create a tar archive in memory that contains the CSV + tar_buffer = BytesIO() + with tarfile.open(mode='w', fileobj=tar_buffer) as tar: + # Get CSV data + csv_buffer = BytesIO() + data.write_csv(csv_buffer) + csv_buffer.seek(0) + + # Create a TarInfo object with file metadata + tarinfo = tarfile.TarInfo(name=file_name) + tarinfo.size = len(csv_buffer.getvalue()) + + # Add the CSV data to the tar archive + tar.addfile(tarinfo, csv_buffer) + + # Compress the in memory tar archive with gzip + tar_buffer.seek(0) + gzip_buffer = BytesIO() + with gzip.GzipFile(filename=f'{file_name}', mode='wb', fileobj=gzip_buffer, compresslevel=9) as gz: + gz.write(tar_buffer.getvalue()) + + # Upload directly to S3 + bucket_name = out_path.split('/')[0] + s3_key = '/'.join(out_path.split('/')[1:]) + '.gz' + s3_client = boto3.client('s3') + try: + gzip_buffer.seek(0) + s3_client.upload_fileobj( + gzip_buffer, # File-like object + bucket_name, # Bucket name + s3_key # S3 object key + ) + except Exception as e: + logger.error(f"S3 upload failed: {str(e)}") + finally: + # Clean up + csv_buffer.close() + tar_buffer.close() + gzip_buffer.close() + + # Clean up + csv_buffer.close() + tar_buffer.close() + gzip_buffer.close() From 910aa6d3a8f69038f80c87c5b3fc0a51984df35a Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Thu, 25 Sep 2025 15:45:12 -0600 Subject: [PATCH 02/82] Rename columns for publication Rename columns to match ComStock and timeseries file conventions, including: two dots to separate units, standardize unit abbreviations, categorize more outputs as out.param, change the naming of savings columns. --- .../resstockpostproc/process_metadata.py | 84 +- .../publication/sdr_column_definitions.csv | 892 +++++++++--------- 2 files changed, 504 insertions(+), 472 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index efffdad513..160b7a2959 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -35,7 +35,7 @@ def publish_baseline_annual_results(base_raw_df: pl.LazyFrame) -> pl.LazyFrame: base_df = base_raw_df.filter(pl.col("completed_status") == "Success") base_df = get_transformed_cols(base_df, col_maps) base_df = base_df.with_columns(pl.lit(True).alias("applicability")) - base_df = base_df.with_columns([pl.lit(0).alias("upgrade"), pl.lit("Baseline").alias("upgrade_name")]) + base_df = base_df.with_columns([pl.lit(0).alias("upgrade"), pl.lit("Baseline").alias("in.upgrade_name")]) base_df = add_income_and_burden(base_df) base_df = add_county_column(base_df) base_df = add_puma_column(base_df) @@ -99,7 +99,7 @@ def publish_upgrade_annual_results( upgrade_df = add_upgrade_columns(upgrade_df) upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) # get upgrade_name - upgrade_name_df = upgrade_df.select(pl.col("upgrade_name").first()) + upgrade_name_df = upgrade_df.select(pl.col("in.upgrade_name").first()) missing_bldgs_df = base_pub_df.join( upgrade_df, on="bldg_id", @@ -110,7 +110,7 @@ def publish_upgrade_annual_results( pl.lit(False).alias("applicability"), pl.lit(upgrade_num).alias("upgrade"), ] - ).drop("upgrade_name") + ).drop("in.upgrade_name") upgrade_cols = upgrade_df.collect_schema().names() missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") @@ -154,9 +154,9 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: # Calculate burden only when income is not null and positive burden = ( pl.when(adj_income.is_not_null()) - .then(pl.col("out.bills.all_fuels.usd") / adj_income * 100) + .then(pl.col("out.utility_bills.total_bill..usd") / adj_income * 100) .otherwise(None) - .alias("out.energy_burden.percentage") + .alias("out.energy_burden..percentage") ) return df.with_columns([adj_income, burden]) @@ -170,14 +170,13 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame "out.hot_water" in col or "out.panel" in col or "out.capacity" in col or - "out.unmet_hours.ev_driving" in col or - "out.component_load" in col + "out.unmet_hours.ev" in col )] - # Selectively include the following for panels + # Selectively include the following for params out_panel_cols = [col for col in all_cols if - "out.panel.load.total_load." in col - or "out.panel.load.occupied_capacity." in col - or "out.panel.breaker_space.occupied." in col + "out.params.panel_load_total_load" in col + or "out.params.panel_load_occupied_capacity" in col + or "out.params.panel_breaker_space_occupied" in col ] out_cols += out_panel_cols @@ -186,33 +185,62 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame ) df_with_baseline = df.join(baseline_df_with_renamed, on="bldg_id", how="left") for col in out_cols: - if col.startswith("out.emissions"): - saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias( - col.replace("out.emissions", "out.emissions_reduction") - ) - else: - saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias(f"{col}.savings") + new_col = col_name_to_savings(col) + saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias(new_col) savings_cols.append(saving_col) return df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) +def col_name_to_savings(col_name): + converted_col_name = str(col_name) + svg_renames = { + '.energy_consumption': '.energy_savings', + '_bill..': '_bill_savings..', + '_daily_peak_': '_daily_peak_savings_', + '.peak_': '.peak_savings_', + '.energy_burden': '.energy_burden_savings', + '.unmet_hours': '.unmet_hours_reduction', + '.load.cooling.peak': '.load.cooling.peak_savings', + '.load.heating.peak': '.load.heating.peak_savings', + '.energy_delivered': '.energy_delivered_savings', + '.energy_solar_thermal': '.energy_solar_thermal_savings', + '.energy_tank_losses': '.energy_tank_losses_savings', + '.emissions.': '.emissions_reduction.', + 'panel_load_total_load': 'panel_load_total_load_savings', + 'panel_load_occupied_capacity': 'panel_load_occupied_capacity_savings', + 'panel_breaker_space_occupied': 'panel_breaker_space_occupied_savings' + } + for bef, aft in svg_renames.items(): + converted_col_name = converted_col_name.replace(bef, aft) + + if converted_col_name == col_name: + raise ValueError(f"Cannot convert column name {col_name} to savings column") + + return converted_col_name + + +def remove_unused_consumption_cols(df: pl.LazyFrame) -> pl.LazyFrame: + # TODO + return df + + def add_panel_contraint_cols(df: pl.LazyFrame) -> pl.LazyFrame: all_cols = df.collect_schema().names() - amp_prefix = "out.panel.load.headroom_capacity." + amp_prefix = "out.params.panel_load_headroom_capacity." amp_cols = [col for col in all_cols if amp_prefix in col] - space_col = "out.panel.breaker_space.headroom.count" + space_col = "out.params.panel_breaker_space_headroom_count" - out_space_col = "out.panel.constraint.breaker_space" + out_space_col = "out.params.panel_constraint_breaker_space" space_constraint = pl.when(pl.col(space_col) < 0).then(True).otherwise(False).alias(out_space_col) ind_constraints = [space_constraint] overall_constraint = None for amp_col in amp_cols: - nec_method = amp_col.removeprefix(amp_prefix).removesuffix(".a") - out_amp_col = "out.panel.constraint.capacity." + nec_method + nec_method = amp_col.removeprefix(amp_prefix).removesuffix("..a") + out_amp_col = "out.params.panel_constraint_capacity." + nec_method amp_constraint = pl.when(pl.col(amp_col) < 0).then(True).otherwise(False).alias(out_amp_col) ind_constraints.append(amp_constraint) - out_overall_col = "out.panel.constraint.overall." + nec_method + out_overall_col = "out.params.panel_constraint_overall." + nec_method overall_constraint = pl.coalesce( pl.when(pl.col(out_amp_col) & pl.col(out_space_col)).then(pl.lit("Capacity and Space Constrained")), pl.when(pl.col(out_amp_col) & ~pl.col(out_space_col)).then(pl.lit("Capacity Constrained Only")), @@ -267,7 +295,7 @@ def add_upgrade_columns(lf: pl.LazyFrame) -> pl.LazyFrame: upgrade_lf.unpivot( index="bldg_id", on=upgrade_cols, - variable_name="upgrade_name", + variable_name="in.upgrade_name", value_name="upgrade_value", ) .drop_nulls("upgrade_value") @@ -294,12 +322,16 @@ def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict], is_baseline: boo all_defined_cols = [col_map["published_name"] for col_map in col_maps] extra_cols = all_df_cols - set(all_defined_cols) if extra_cols: - print(f"Extra columns in output data not defined in publication column definition: {extra_cols}") + print(f"Extra columns in output data not defined in publication column definition:") + for c in sorted(extra_cols): + print(f"Extra column: {c}") missing_cols = [col for col in set(all_defined_cols) - all_df_cols if not col.startswith("upgrade.")] if is_baseline: missing_cols = [col for col in missing_cols if not ("savings" in col or "reduction" in col)] if missing_cols: - print(f"Missing columns in output data that is defined in publication column definition: {missing_cols}") + print(f"Missing columns in output data that are defined in publication column definition:") + for c in sorted(missing_cols): + print(f"Missing column: {c}") available_cols = [col for col in all_defined_cols if col in all_df_cols] return lf.select(available_cols) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index bec9d48e9f..acc38e8cac 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,10 +1,10 @@ Column Type,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes Input,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). Input,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number -Input,apply_upgrade.upgrade_name,,upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. Input,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. Calculated,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. -Output,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft,in.sqft,ft_2,1,,,,,,,"Floor Area, Conditioned" +Output,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" Calculated,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country Calculated,,,in.county_name,in.county_name,,,,,,,,,County name Input,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` @@ -47,8 +47,8 @@ Input,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` Input,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` Input,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` Input,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` -Input,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` -Input,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` +Input,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` +Input,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` Input,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` Input,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` Input,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` @@ -170,7 +170,7 @@ Input,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.wate Input,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` Input,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` Input,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` -Input,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach_50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. Input,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. Input,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. Input,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. @@ -215,282 +215,282 @@ Input,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.we Input,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. Input,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. Input,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. -Output,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area_ft_2,out.params.door_area_ft_2,ft_2,1,,,,,,,Door Area -Output,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area_ft_2,out.params.duct_unconditioned_surface_area_ft_2,ft_2,1,,,,,,,Duct Unconditioned Surface Area -Output,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic_ft_2,out.params.floor_area_attic_ft_2,ft_2,1,,,,,,,"Floor Area, Attic" -Output,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation_ft_2,out.params.floor_area_foundation_ft_2,ft_2,1,,,,,,,"Floor Area, Foundation" -Output,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting_ft_2,out.params.floor_area_lighting_ft_2,ft_2,1,,,,,,,"Floor Area, Lighting" -Output,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation_cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior_ft_2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft_2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area_ft_2,out.params.roof_area_ft_2,ft_2,1,,,,,,,Roof Area -Output,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary_k_btu_h,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary_k_btu_h,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary_k_btu_h,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary_k_btu_h,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater_gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned_ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned_ft_2,out.params.wall_area_above_grade_conditioned_ft_2,ft_2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior_ft_2,out.params.wall_area_above_grade_exterior_ft_2,ft_2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade_ft_2,out.params.wall_area_below_grade_ft_2,ft_2,1,,,,,,,"Wall Area, Below-Grade" -Output,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area_ft_2,out.params.window_area_ft_2,ft_2,1,,,,,,,Window Area +Output,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area +Output,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area +Output,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" +Output,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" +Output,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" +Output,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area +Output,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" +Output,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption.kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption.kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption.kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption.kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption.kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption.kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps -Output,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption.kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption.kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption.kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption.kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption.kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced -Output,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption.kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption.kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps -Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption.kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps -Output,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption.kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption.kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption.kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump -Output,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption.kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption.kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption.kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting -Output,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption.kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption.kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption.kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling -Output,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption.kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption.kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption.kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption.kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption.kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption.kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced -Output,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption.kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption.kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption.kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption.kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption.kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption.kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption.kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption.kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption.kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption.kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption.kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption.kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption.kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption.kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption.kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption.kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption.kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption.kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption.kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption.kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption.kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption.kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption.kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption.kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption.kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption.kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption.kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption.kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption.kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption.kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption.kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption.kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption.kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption.kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption.kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption.kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption.kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption.kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging -Output,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption.kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. -Output,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption.kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging -Output,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption.kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption.kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption.kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer.gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher.gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste.gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures.gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling.btu_h,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup.btu_h,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating.btu_h,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. -Output,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. -Output,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak.kbtu_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak.kbtu_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,report_simulation_output.peak_electricity_summer_total_w,W,out.electricity.summer.peak.kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,report_simulation_output.peak_electricity_winter_total_w,W,out.electricity.winter.peak.kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -Output,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling.hour,out.unmet_hours.cooling.hour,hour,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving.hour,out.unmet_hours.ev_driving.hour,hour,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating.hour,out.unmet_hours.heating.hour,hour,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25.co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25.co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25.co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25.co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25.co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15.co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15.co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15.co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15.co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15.co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25.co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15.co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25.co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15.co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg.co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg.co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg.co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg.co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg.co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg.co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg.co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg.co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg.co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.bills.electricity.usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.bills.fuel_oil.usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.bills.natural_gas.usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.bills.propane.usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.bills.all_fuels.usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.panel.load.clothes_dryer.w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,report_simulation_output.electric_panel_load_cooling_w,W,out.panel.load.cooling.w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,report_simulation_output.electric_panel_load_dishwasher_w,W,out.panel.load.dishwasher.w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.panel.load.ev_charging.w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,report_simulation_output.electric_panel_load_heating_w,W,out.panel.load.heating.w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,report_simulation_output.electric_panel_load_hot_water_w,W,out.panel.load.hot_water.w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,report_simulation_output.electric_panel_load_mech_vent_w,W,out.panel.load.mech_vent.w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,report_simulation_output.electric_panel_load_other_w,W,out.panel.load.other.w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.panel.load.permanent_spa_heat.w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.panel.load.permanent_spa_pump.w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,report_simulation_output.electric_panel_load_pool_heater_w,W,out.panel.load.pool_heater.w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,report_simulation_output.electric_panel_load_pool_pump_w,W,out.panel.load.pool_pump.w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,report_simulation_output.electric_panel_load_range_oven_w,W,out.panel.load.range_oven.w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,report_simulation_output.electric_panel_load_well_pump_w,W,out.panel.load.well_pump.w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,report_simulation_output.electric_panel_breaker_spaces_total_count,count,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,report_simulation_output.electric_panel_breaker_spaces_occupied_count,count,out.panel.breaker_space.occupied.count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,report_simulation_output.electric_panel_breaker_spaces_headroom_count,count,out.panel.breaker_space.headroom.count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,count,out.panel.breaker_space.clothes_dryer.count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,report_simulation_output.electric_panel_breaker_spaces_cooling_count,count,out.panel.breaker_space.cooling.count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,count,out.panel.breaker_space.dishwasher.count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,count,out.panel.breaker_space.ev_charging.count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,report_simulation_output.electric_panel_breaker_spaces_heating_count,count,out.panel.breaker_space.heating.count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,count,out.panel.breaker_space.hot_water.count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,count,out.panel.breaker_space.mech_vent.count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,report_simulation_output.electric_panel_breaker_spaces_other_count,count,out.panel.breaker_space.other.count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,count,out.panel.breaker_space.permanent_spa_heat.count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,count,out.panel.breaker_space.permanent_spa_pump.count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,count,out.panel.breaker_space.pool_heater.count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,count,out.panel.breaker_space.pool_pump.count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,count,out.panel.breaker_space.range_oven.count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,count,out.panel.breaker_space.well_pump.count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings.kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors.kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts.kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors.kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls.kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration.kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains.kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass.kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting.kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation.kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation.kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists.kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs.kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction.kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar.kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs.kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls.kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan.kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction.kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar.kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings.kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors.kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts.kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors.kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls.kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration.kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains.kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass.kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting.kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation.kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation.kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists.kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs.kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction.kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar.kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs.kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls.kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan.kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction.kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar.kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, -Calculated,,,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,,,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,,,out.panel.breaker_space.occupied.count.savings,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,,,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,,,out.panel.constraint.breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,,,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,,,out.energy_burden.percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps +Output,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced +Output,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps +Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps +Output,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump +Output,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting +Output,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling +Output,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced +Output,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging +Output,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. +Output,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging +Output,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. +Output,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. +Output,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy Calculated,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area @@ -565,172 +565,172 @@ Calculated,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out Calculated,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,out.electricity.battery.energy_consumption.kwh.savings,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.ceiling_fan.energy_consumption.kwh.savings,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.clothes_dryer.energy_consumption.kwh.savings,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.clothes_washer.energy_consumption.kwh.savings,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.cooling_fans_pumps.energy_consumption.kwh.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.cooling.energy_consumption.kwh.savings,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.dehumidifier.energy_consumption.kwh.savings,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.dishwasher.energy_consumption.kwh.savings,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.ev_charging.energy_consumption.kwh.savings,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.freezer.energy_consumption.kwh.savings,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.generator.energy_consumption.kwh.savings,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_fans_pumps.energy_consumption.kwh.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_hp_bkup.energy_consumption.kwh.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating.energy_consumption.kwh.savings,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.permanent_spa_heat.energy_consumption.kwh.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.permanent_spa_pump.energy_consumption.kwh.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water.energy_consumption.kwh.savings,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water_recirc_p.energy_consumption.kwh.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water_solar_th.energy_consumption.kwh.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_exterior.energy_consumption.kwh.savings,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_garage.energy_consumption.kwh.savings,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_interior.energy_consumption.kwh.savings,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent.energy_consumption.kwh.savings,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent_precool.energy_consumption.kwh.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent_preheat.energy_consumption.kwh.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.plug_loads.energy_consumption.kwh.savings,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pool_heater.energy_consumption.kwh.savings,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pool_pump.energy_consumption.kwh.savings,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pv.energy_consumption.kwh.savings,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.range_oven.energy_consumption.kwh.savings,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.refrigerator.energy_consumption.kwh.savings,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.television.energy_consumption.kwh.savings,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.well_pump.energy_consumption.kwh.savings,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.whole_house_fan.energy_consumption.kwh.savings,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.clothes_dryer.energy_consumption.kwh.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.fireplace.energy_consumption.kwh.savings,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.generator.energy_consumption.kwh.savings,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.grill.energy_consumption.kwh.savings,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.heating.energy_consumption.kwh.savings,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.hot_water.energy_consumption.kwh.savings,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.lighting.energy_consumption.kwh.savings,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.mech_vent_preheating.energy_consumption.kwh.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.range_oven.energy_consumption.kwh.savings,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.clothes_dryer.energy_consumption.kwh.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.fireplace.energy_consumption.kwh.savings,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.generator.energy_consumption.kwh.savings,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.grill.energy_consumption.kwh.savings,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.heating_hp_bkup.energy_consumption.kwh.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.heating.energy_consumption.kwh.savings,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.permanent_spa_heat.energy_consumption.kwh.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.hot_water.energy_consumption.kwh.savings,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.lighting.energy_consumption.kwh.savings,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.mech_vent_preheat.energy_consumption.kwh.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.pool_heater.energy_consumption.kwh.savings,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.range_oven.energy_consumption.kwh.savings,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.propane.clothes_dryer.energy_consumption.kwh.savings,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.propane.fireplace.energy_consumption.kwh.savings,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.propane.generator.energy_consumption.kwh.savings,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,,,out.propane.grill.energy_consumption.kwh.savings,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,,,out.propane.heating_hp_bkup.energy_consumption.kwh.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.propane.heating.energy_consumption.kwh.savings,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,,,out.propane.hot_water.energy_consumption.kwh.savings,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.propane.lighting.energy_consumption.kwh.savings,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.propane.mech_vent_preheating.energy_consumption.kwh.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,,,out.propane.range_oven.energy_consumption.kwh.savings,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.site_energy.net.energy_consumption.kwh.savings,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,,,out.site_energy.total.energy_consumption.kwh.savings,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.net.energy_consumption.kwh.savings,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.total.energy_consumption.kwh.savings,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.total.energy_consumption.kwh.savings,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.total.energy_consumption.kwh.savings,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,,,out.propane.total.energy_consumption.kwh.savings,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,,,out.load.cooling.peak.kbtu_hr.savings,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,,,out.load.heating.peak.kbtu_hr.savings,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,,,out.electricity.summer.peak.kw.savings,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,,,out.electricity.winter.peak.kw.savings,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,,,out.unmet_hours.cooling.hour.savings,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,,,out.unmet_hours.heating.hour.savings,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_25.co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25.co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25.co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_25.co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25.co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_15.co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15.co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15.co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_15.co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15.co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_25.co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_15.co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_25.co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_15.co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_avg.co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_avg.co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_avg.co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_avg.co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_mid_case_avg.co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg.co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_mid_case_avg.co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_mid_case_avg.co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_mid_case_avg.co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,,,out.bills.electricity.usd.savings,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,,,out.bills.fuel_oil.usd.savings,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,,,out.bills.natural_gas.usd.savings,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,,,out.bills.propane.usd.savings,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,,,out.bills.all_fuels.usd.savings,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,,,out.energy_burden.percentage.savings,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, Calculated,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, From d6b93b8068d33e4c589bea2bd2a05d1acfd9c578 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Mon, 29 Sep 2025 15:54:41 -0600 Subject: [PATCH 03/82] Updates metadata processing Standardized column names, adds savings columns to baseline, adds weighted energy and savings columns. --- postprocessing/resstockpostproc/__init__.py | 2 +- .../resstockpostproc/process_bsb_results.py | 128 ++++++--- .../resstockpostproc/process_metadata.py | 242 +++++++++++++---- .../publication/sdr_column_definitions.csv | 250 ++++++++++++++++++ postprocessing/resstockpostproc/utils.py | 40 +++ 5 files changed, 582 insertions(+), 80 deletions(-) diff --git a/postprocessing/resstockpostproc/__init__.py b/postprocessing/resstockpostproc/__init__.py index c0c47c64c4..e4202280de 100644 --- a/postprocessing/resstockpostproc/__init__.py +++ b/postprocessing/resstockpostproc/__init__.py @@ -1 +1 @@ -from .process_metadata import publish_baseline_annual_results, publish_upgrade_annual_results \ No newline at end of file +from .process_metadata import process_baseline_simulation_outputs, process_upgrade_simulation_outputs \ No newline at end of file diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index 1cde4c2610..f63140013a 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -4,41 +4,61 @@ Example usage: uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results /path/to/output_dir -uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" +uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "C:/Scratch/ResStock/efforts/full_550k_run_output" +uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" + + + Note: bsb_raw_results folder must contain both baseline and upgrade files. Baseline file should be named results_up00.parquet and upgrade files should be named results_upXX.parquet where XX is the upgrade number. The can either be in their own folders (baseline and upgrades) or all be in the same folder. """ +import re import sys +import s3fs import polars as pl from pathlib import Path from resstockpostproc.process_metadata import ( - publish_baseline_annual_results, - publish_upgrade_annual_results, - export_metadata_and_annual_results_to_oedi_by_geography + process_baseline_simulation_outputs, + process_upgrade_simulation_outputs, + get_upgrade_rename_dict, + export_metadata_and_annual_results_for_upgrade ) -import re +from resstockpostproc.utils import ( + setup_fsspec_filesystem +) + +def export_metadata_and_annual_results(raw_results_dir: str, + output_dir: str, + aws_profile_name = None) -> None: + # Set up filesystem objects for raw results and output directories + raw_results_dir = setup_fsspec_filesystem(raw_results_dir, aws_profile_name) + output_dir = setup_fsspec_filesystem(output_dir, aws_profile_name) + # output_path = Path(output_dir) + # output_path.mkdir(parents=True, exist_ok=True) + pqt_glob = f'{raw_results_dir["fs_path"]}/**/*.parquet' + result_files = raw_results_dir['fs'].glob(pqt_glob) + baseline_files = [f for f in result_files if "up00" in Path(f).name.lower()] + upgrade_files = [f for f in result_files if "up00" not in Path(f).name.lower()] + upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) -def process_results(raw_results_dir: str, output_dir: str) -> None: - output_path = Path(output_dir) - output_path.mkdir(parents=True, exist_ok=True) - result_files = list(Path(raw_results_dir).rglob("*")) - baseline_files = [f for f in result_files if "up00" in f.name.lower()] - upgrade_files = [f for f in result_files if "up00" not in f.name.lower()] + upgrade_files = upgrade_files[0:1] # TODO ANDREW WUZ HERE remove this + # Process and cache the baseline simulation outputs if not baseline_files: - print("Error: No baseline or upgrade files found") + print("Error: No baseline files found") sys.exit(1) if len(baseline_files) > 1: print("Error: More than one baseline file found") sys.exit(1) baseline_file = baseline_files[0] + upgrade_id = 0 print(f"Processing baseline file: {baseline_file}") - baseline_df = read_file(baseline_file) + baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) failed_bldgs = ( baseline_df.filter(pl.col("completed_status") == "Fail") @@ -47,21 +67,69 @@ def process_results(raw_results_dir: str, output_dir: str) -> None: .to_list() ) print(f"Removing {len(failed_bldgs)} buildings that failed in baseline") - bs_pub_df = publish_baseline_annual_results(baseline_df) - write_file(bs_pub_df, output_path, upgrade=0) - + bs_pub_df = process_baseline_simulation_outputs(baseline_df, upgrade_renamer) + sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" + parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + parquet_file = f's3://{parquet_file.as_posix()}' + else: + Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) + print(f'Opening: {str(parquet_file)}') + with output_dir['fs'].open(str(parquet_file), "wb") as f: + bs_pub_df.sink_parquet(f) + print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") + + # Process and cache the upgrade simulation outputs + upgrade_ids = [0] for upgrade_file in upgrade_files: - up_info = re.search(r"up(\d+)", upgrade_file.name) + up_info = re.search(r"up(\d+)", Path(upgrade_file).name) if up_info is None: continue - upgrade_num = int(up_info.group(1)) - - print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_num}") - upgrade_df = read_file(upgrade_file) - up_up_df = publish_upgrade_annual_results( - failed_bldgs, bs_pub_df, upgrade_df, upgrade_num + upgrade_id = int(up_info.group(1)) + upgrade_ids.append(upgrade_id) + print('\n\n\n*******************************************************') + print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id}") + upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) + up_df = process_upgrade_simulation_outputs( + failed_bldgs, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer ) - write_file(up_up_df, output_path, upgrade_num) + parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + parquet_file = f's3://{parquet_file.as_posix()}' + else: + Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) + with output_dir['fs'].open(str(parquet_file), "wb") as f: + up_df.sink_parquet(f) + + print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") + upgrade_ids.sort() + + + # Define the geographic partitions to export + geo_exports = [ + { + 'geo_top_dir': 'national', + 'partition_cols': {}, + 'data_types': ['full'], # TODO add basic + 'file_types': ['parquet'], # 'csv', + }, + # { + # 'geo_top_dir': 'by_state', + # 'partition_cols': { + # 'in.state': 'state' + # }, + # 'data_types': ['full'], # TODO add basic + # 'file_types': ['csv', 'parquet'], + # } + ] + + for upgrade_id in upgrade_ids: + export_metadata_and_annual_results_for_upgrade( + output_dir, + upgrade_id, + geo_exports) def read_file(file: Path) -> pl.LazyFrame: @@ -80,13 +148,9 @@ def read_file(file: Path) -> pl.LazyFrame: def write_file(df: pl.LazyFrame, output_path: Path, upgrade: int): parquet_file_dir = output_path / "parquet" / f"upgrade={upgrade}" parquet_file_dir.mkdir(parents=True, exist_ok=True) - csv_file_dir = output_path / "results_csvs_pub" - csv_file_dir.mkdir(parents=True, exist_ok=True) - csv_file = csv_file_dir / f"results_up{upgrade:02d}.csv" - parquet_file = parquet_file_dir / f"results_up{upgrade:02d}.parquet" + parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade}.parquet" df.sink_parquet(parquet_file) - df.sink_csv(csv_file) - print(f"Wrote {upgrade} to {parquet_file} and {csv_file}") + print(f"Cached simulation outputs for upgrade {upgrade} to {parquet_file}") if __name__ == "__main__": @@ -106,6 +170,4 @@ def write_file(df: pl.LazyFrame, output_path: Path, upgrade: int): help="Directory to write transformed results", ) args = parser.parse_args() - # process_results(args.raw_results_dir, args.output_dir) - - export_metadata_and_annual_results_to_oedi_by_geography(args.output_dir) + export_metadata_and_annual_results(args.raw_results_dir, args.output_dir) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 160b7a2959..c3ded74556 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -3,14 +3,16 @@ import geopandas as gpd import logging import s3fs +import json +import re from typing import Sequence from resstockpostproc.utils import ( fix_site_energy_total, fix_all_fuels_emissions, get_col_maps, - setup_fsspec_filesystem, - write_geo_data + write_geo_data, + conversion_factor ) from resstockpostproc.income_mapper import assign_representative_income @@ -22,12 +24,13 @@ def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: return set(failed_bldgs.collect()["building_id"].to_list()) -def publish_baseline_annual_results(base_raw_df: pl.LazyFrame) -> pl.LazyFrame: +def process_baseline_simulation_outputs(base_raw_df: pl.LazyFrame, upgrade_renamer: dict[str, str]) -> pl.LazyFrame: """ Publishes the annual results for the baseline. Args: base_raw_df: LazyFrame containing baseline results from raw BuildStockBatch results. + upgrade_renamer: Map of upgrade names from YML to new names for publication. Returns: LazyFrame containing published baseline results. """ @@ -36,6 +39,7 @@ def publish_baseline_annual_results(base_raw_df: pl.LazyFrame) -> pl.LazyFrame: base_df = get_transformed_cols(base_df, col_maps) base_df = base_df.with_columns(pl.lit(True).alias("applicability")) base_df = base_df.with_columns([pl.lit(0).alias("upgrade"), pl.lit("Baseline").alias("in.upgrade_name")]) + base_df = rename_upgrades(base_df, upgrade_renamer) base_df = add_income_and_burden(base_df) base_df = add_county_column(base_df) base_df = add_puma_column(base_df) @@ -44,24 +48,28 @@ def publish_baseline_annual_results(base_raw_df: pl.LazyFrame) -> pl.LazyFrame: print("Fixing site energy and site emission total for baseline ...") base_df = fix_site_energy_total(base_df, all_cols) base_df = fix_all_fuels_emissions(base_df, all_cols) + base_df = remove_unused_consumption_cols(base_df) base_df = add_panel_contraint_cols(base_df) base_df = add_upgrade_columns(base_df) + # base_df = add_saving_cols(base_df, base_df) # Intentionally passing base columns twice - zero savings in baseline + base_df = add_weighted_cols(base_df) base_df = reorder_columns(base_df, col_maps, is_baseline=True) return base_df -def publish_upgrade_annual_results( +def process_upgrade_simulation_outputs( baseline_failed_bldgs: set[int], base_pub_df: pl.LazyFrame, upgrade_raw_df: pl.LazyFrame, upgrade_num: int, + upgrade_renamer: dict[str, str] ) -> pl.LazyFrame: """ Publishes the annual results for a specific upgrade. Args: baseline_failed_bldgs: Set of failed building IDs in baseline. - base_pub_df: LazyFrame containing baseline results already passed through publish_baseline_annual_results. + base_pub_df: LazyFrame containing baseline results already passed through process_baseline_simulation_outputs. upgrade_raw_df: LazyFrame containing upgrade results from raw BuildStockBatch results. upgrade_num: Integer representing the upgrade number. Returns: @@ -88,9 +96,27 @@ def publish_upgrade_annual_results( upgrade_df = get_transformed_cols(upgrade_df, col_maps) upgrade_df = upgrade_df.with_columns([pl.lit(upgrade_num).alias("upgrade")]) + upgrade_df = rename_upgrades(upgrade_df, upgrade_renamer) base_cols = base_pub_df.collect_schema().names() upgrade_cols = upgrade_df.collect_schema().names() - missing_cols = list(set(base_cols) - set(upgrade_cols)) + ["bldg_id"] + exclude_terms = [ + "calc.weighted", + "energy_savings", + "emissions_reduction", + "energy_burden_savings", + "bill_savings", + "capacity_savings", + "load_savings", + ] + missing_cols = [ + c for c in list(set(base_cols) - set(upgrade_cols)) + ["bldg_id"] + if not any(term in c for term in exclude_terms) + ] + print('Adding missing cols from upgrade to baseline:') + for mc in sorted(missing_cols): + print(mc) + print('\n\n\n') + upgrade_df = upgrade_df.join(base_pub_df.select(missing_cols), on="bldg_id", how="left") all_cols = upgrade_df.collect_schema().names() print("Fixing site energy and site emission total for upgrade ...") @@ -115,8 +141,10 @@ def publish_upgrade_annual_results( missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") upgrade_df = upgrade_df.sort("bldg_id") + upgrade_df = remove_unused_consumption_cols(upgrade_df) upgrade_df = add_saving_cols(upgrade_df, base_pub_df) upgrade_df = add_panel_contraint_cols(upgrade_df) + upgrade_df = add_weighted_cols(upgrade_df) upgrade_df = reorder_columns(upgrade_df, col_maps, is_baseline=False) return upgrade_df @@ -142,6 +170,44 @@ def get_transformed_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyF transformed_cols.extend([pl.col(col).alias(col) for col in upgrade_cols]) return df.select(transformed_cols) +def get_upgrade_rename_dict(raw_results_dir): + file_path = pathlib.Path(raw_results_dir["fs_path"]) / "rename_upgrades.json" + if not raw_results_dir["fs"].exists(file_path): + return dict() + with raw_results_dir['fs'].open(file_path, "r") as f: + upgrade_renamer = json.load(f) + return upgrade_renamer + +def rename_upgrades(df: pl.LazyFrame, upgrade_renamer: dict) -> pl.LazyFrame: + """ + Renames the upgrades in the in.upgrade_name column from values used in the YML file + to new values more appropriate for publication. If an empty dict is supplied, no + renaming is performed. + + Args: + base_raw_df: LazyFrame containing the results. + upgrade_renamer: Map of upgrade names from YML to new names for publication. + Returns: + LazyFrame containing results with modified in.upgrade_name column values. + """ + if not upgrade_renamer: + print("No upgrade renamer was supplied, upgrades not renamed.") + return df + else: + print("Renaming upgrades") + # for old, new in upgrade_renamer.items(): + # print(f'{old} -> {new}') + + # Check that each upgrade name is present in the upgrade renamer dict + up_names = df.select(pl.col("in.upgrade_name")).unique().collect().to_series().to_list() + print(up_names) + for up_name in up_names: + if not up_name in upgrade_renamer: + raise ValueError(f"No upgrade rename supplied for: {up_name}") + + df = df.with_columns((pl.col("in.upgrade_name").replace(upgrade_renamer)).alias("in.upgrade_name")) + return df + def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: df = assign_representative_income(df) @@ -163,6 +229,22 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: + + up_cols = set(df.collect_schema().names()) + base_cols = set(baseline_df.collect_schema().names()) + in_base_not_up = list(base_cols - up_cols) + in_up_not_base = list(up_cols - base_cols) + print('in_base_not_up:') + for c in in_base_not_up: + print(c) + print('\n\n\n') + + print('in_up_not_base:') + for c in in_up_not_base: + print(c) + print('\n\n\n') + + savings_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( @@ -180,6 +262,11 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame ] out_cols += out_panel_cols + print('Calculating savings for:') + for oc in out_cols: + print(oc) + print('\n\n\n') + baseline_df_with_renamed = baseline_df.select( [pl.col(col).alias(f"baseline_{col}") for col in out_cols] + ["bldg_id"] ) @@ -191,7 +278,28 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame return df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) -def col_name_to_savings(col_name): +def col_name_to_weighted(col_name: str, new_units=None) -> str: + col_name = col_name.replace('out.', 'calc.') + col_name = col_name.replace('calc.', 'calc.weighted.') + if new_units is not None: + old_units = units_from_col_name(col_name) + col_name = col_name.replace(f'..{old_units}', f'..{new_units}') + + return col_name + + +def units_from_col_name(col_name: str) -> str: + # Extract the units from the column name + match = re.search('\.\.(.*)', col_name) + if match: + units = match.group(1) + else: + units = '' + + return units + + +def col_name_to_savings(col_name: str) -> str: converted_col_name = str(col_name) svg_renames = { '.energy_consumption': '.energy_savings', @@ -220,7 +328,51 @@ def col_name_to_savings(col_name): def remove_unused_consumption_cols(df: pl.LazyFrame) -> pl.LazyFrame: - # TODO + empty_cols = [] + all_cols = df.collect_schema().names() + out_cols = [col for col in all_cols if 'energy_consumption' in col] + engy_df = df.select(out_cols).collect().sum() + for col, val in engy_df.to_dicts()[0].items(): + if val == 0: + empty_cols.append(col) + print(f'Dropping unused (all-zeroes) energy column: {col}') + + return df.drop(empty_cols) + + +def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: + all_cols = df.collect_schema().names() + wtd_cols = [col for col in all_cols if 'out.' in col and ( + ".energy_consumption" in col or + ".energy_savings" in col or + ".emissions." in col or + ".emissions_reduction." in col + )] + # # Selectively include the following for params + # out_panel_cols = [col for col in all_cols if + # "out.params.panel_load_total_load" in col + # or "out.params.panel_load_occupied_capacity" in col + # or "out.params.panel_breaker_space_occupied" in col + # ] + # wtd_cols += out_panel_cols + + wtd_col_unit_convs = { + 'kwh': 'tbtu', + 'co2e_kg': 'co2e_mmt' + } + + for col in wtd_cols: + old_units = units_from_col_name(col) + new_units = wtd_col_unit_convs[old_units] + conv_fact = conversion_factor(old_units, new_units) + wtd_col_name = col_name_to_weighted(col, new_units) + df = df.with_columns( + pl.col(col) + .mul(pl.col("weight")) + .mul(conv_fact) + .alias(wtd_col_name) + ) + return df @@ -331,24 +483,26 @@ def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict], is_baseline: boo if missing_cols: print(f"Missing columns in output data that are defined in publication column definition:") for c in sorted(missing_cols): + if 'out.component_load' in c: # TODO ANDREW WUZ HERE remove this - temporarily suppressing known missing cols + continue print(f"Missing column: {c}") available_cols = [col for col in all_defined_cols if col in all_df_cols] return lf.select(available_cols) -def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_profile_name=None): +def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_exports): """ Subdivides the annual results by geography and writes to OEDI. Creates .parquet and .csv.gz files. Args: - output_dir: String path in s3:// or local filesystem format. - aws_profile_name: Name of the AWS profile to use for authentication if writing to S3. + output_dir: Dict of filesystem object information + upgrade_id: Integer ID for the upgrade to process + geo_exports: List of Dicts of export definitions Returns: None """ - output_dir = setup_fsspec_filesystem(output_dir, aws_profile_name) bucket_name = 'oedi-data-lake' if output_dir['fs'].exists(bucket_name): @@ -356,29 +510,20 @@ def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_prof else: print(f"Bucket {bucket_name} does not exist") - # Get a list of upgrades - up_pqts = [] - pqt_glob = f"{output_dir['fs_path']}/metadata_and_annual_results/national/parquet/full/*.parquet" - print(pqt_glob) - for p in output_dir['fs'].glob(pqt_glob): - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - up_pqts.append(f's3://{p}') - else: - up_pqts.append(p) - print(f'Found {len(up_pqts)} upgrade parquet files, including the baseline.') - - # Define the geographic partitions to export - geo_exports = [ - { - 'geo_top_dir': 'by_state', - 'partition_cols': { - 'in.state': 'state' - }, - 'data_types': ['full'], # TODO add basic - 'file_types': ['csv', 'parquet'], - } - ] + print(f"Exporting metadata for upgrade {upgrade_id}") + # Read the cached simulation results + sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" + parquet_file_dir = pathlib.Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + parquet_file = f's3://{parquet_file.as_posix()}' + if not output_dir['fs'].exists(parquet_file): + raise FileNotFoundError( + f'Cannot load upgrade data from {parquet_file}, call process_upgrade_simulation_outputs() first.') + up_df = pl.read_parquet(parquet_file, storage_options=output_dir['storage_options'] ) + + # Export each geo export level for ge in geo_exports: geo_top_dir = ge['geo_top_dir'] partition_cols = ge['partition_cols'] @@ -386,6 +531,8 @@ def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_prof print(partition_cols) data_types = ge['data_types'] file_types = ge['file_types'] + print(f"Exporting {geo_top_dir} by {partition_cols} {data_types} {file_types}") + # geo_col_names = list(partition_cols.keys()) # Name the top-level directory @@ -401,17 +548,8 @@ def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_prof for file_type in file_types: output_dir['fs'].mkdirs(f'{full_geo_dir}/{data_type}/{file_type}', exist_ok=True) - # Load the file - for up_pqt in up_pqts: - upgrade_id = pathlib.Path(up_pqt).stem.replace('upgrade', '') - print(f'Processing upgrade {upgrade_id}') - - # Read the file - up_df = pl.read_parquet(up_pqt, hive_partitioning=True, storage_options=output_dir['storage_options'] ) - # for c in df.columns: - # print(c) - - # Export by various geographies + # Export by various geographies + if partition_cols: for by_col, by_dir_name in partition_cols.items(): for by_val, geo_df in up_df.group_by(by_col): by_val = by_val[0] @@ -424,7 +562,19 @@ def export_metadata_and_annual_results_to_oedi_by_geography(output_dir, aws_prof file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) print(f"Queuing {file_path}") input_args = (geo_df, output_dir, file_type, file_path) - # write_geo_data(input_args) + write_geo_data(input_args) + else: + # National level is not partitioned + geo_levels = [] + geo_prefixes = [] + for data_type in data_types: + # TODO Downselect the DF to fewer columns for basic version + + for file_type in file_types: + file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) + print(f"Queuing {file_path}") + input_args = (up_df, output_dir, file_type, file_path) + write_geo_data(input_args) break diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index acc38e8cac..dfebe09189 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -851,3 +851,253 @@ Output,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, Output,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, +Calculated,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 9ae59d2414..2997c58695 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -199,3 +199,43 @@ def write_polars_csv_to_s3_or_local(data: pl.DataFrame, out_fs, out_path): csv_buffer.close() tar_buffer.close() gzip_buffer.close() + + +def conversion_factor(from_unit, to_unit): + + # Constants for unit conversion + # Created using OpenStudio unit conversion library + unit_conversions = { + 'kwh_to_kwh' : 1, + 'kwh_to_mwh' : 1e-3, + 'mwh_to_kwh' : 1e3, + 'twh_to_kwh' : 1e9, + 'mbtu_to_kbtu' : 1000, + 'kwh_to_kbtu' : 3.412141633127942, + 'kwh_to_tbtu' : ((1.0 / 1e9) * 3.412141633127942), + 'kbtu_to_kwh': (1.0 / 3.412141633127942), + 'therm_to_kbtu' : 100, + 'therm_to_kwh' : (100 / 3.412141633127942), + 'kbtu_to_tbtu' : (1.0 / 1e9), + 'tbtu_to_kbtu' : 1e9, + 'btu_to_kbtu' : (1.0 / 1e3), + 'million_btu_to_kbtu': (1e9 / 1e6), + 'million_btu_to_kwh': (1000 / 3.412141633127942), + 'gj_to_kbtu' : 947.8171203133173, + 'gj_to_kwh' : 277.77777777777777, + 'w_per_m2_k_to_btu_per_ft2_f_hr': 0.17611, + 'pa_to_inwc': 0.004015, + 'w_per_m2_to_w_per_ft2': (1.0/10.763910416709722), + 'co2e_kg_to_co2e_mmt': (0.000000001), + 'co2e_kg_to_co2e_metric_ton': 0.001, + 'usd_to_billion_usd': 0.000000001, + 'kw_to_gw': 0.000001, + 'percent_to_percent': 1, + } + conv_string = f'{from_unit}_to_{to_unit}' + + if conv_string in unit_conversions: + return unit_conversions[conv_string] + else: + raise KeyError(f'Conversion from {from_unit} to {to_unit} \ + not defined in unit_conversions, add it there.') From 98d42841d12dbc5f6530dd7109492eda8cdcdb92 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 30 Sep 2025 01:12:51 -0600 Subject: [PATCH 04/82] Unifies base and upgrade schemas Adds upgrade columns from across superset of all upgrades, controls which columns are exported, and adds more descriptive logging to each function. --- .../resstockpostproc/income_mapper.py | 2 +- .../resstockpostproc/process_bsb_results.py | 63 +- .../resstockpostproc/process_metadata.py | 118 +- .../publication/sdr_column_definitions.csv | 2206 ++++++++--------- postprocessing/resstockpostproc/utils.py | 23 +- 5 files changed, 1215 insertions(+), 1197 deletions(-) diff --git a/postprocessing/resstockpostproc/income_mapper.py b/postprocessing/resstockpostproc/income_mapper.py index 5116bab221..d08ab95100 100644 --- a/postprocessing/resstockpostproc/income_mapper.py +++ b/postprocessing/resstockpostproc/income_mapper.py @@ -108,7 +108,7 @@ def assign_representative_income(df: pl.LazyFrame | pl.DataFrame, return_map_onl check_df = check_df.collect() if lazy else check_df assert len(check_df) == 0, f"rep_income could not be mapped for {len(check_df)} rows\n{check_df}" - print(f"Note: {rep_inc} is not available for vacant units, which have 'Not Available' for in.income") + # print(f"Note: {rep_inc} is not available for vacant units, which have 'Not Available' for in.income") df3 = df2.select([bldg_id, rep_inc]) if return_map_only: diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index f63140013a..d2812bd063 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -22,6 +22,12 @@ from pathlib import Path from resstockpostproc.process_metadata import ( process_baseline_simulation_outputs, + get_upgrade_columns, + get_col_maps, + add_weighted_cols, + add_saving_cols, + add_missing_upgrade_cols, + reorder_columns, process_upgrade_simulation_outputs, get_upgrade_rename_dict, export_metadata_and_annual_results_for_upgrade @@ -47,7 +53,7 @@ def export_metadata_and_annual_results(raw_results_dir: str, upgrade_files = upgrade_files[0:1] # TODO ANDREW WUZ HERE remove this - # Process and cache the baseline simulation outputs + # Process the baseline simulation outputs if not baseline_files: print("Error: No baseline files found") sys.exit(1) @@ -56,7 +62,6 @@ def export_metadata_and_annual_results(raw_results_dir: str, sys.exit(1) baseline_file = baseline_files[0] - upgrade_id = 0 print(f"Processing baseline file: {baseline_file}") baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) @@ -68,31 +73,26 @@ def export_metadata_and_annual_results(raw_results_dir: str, ) print(f"Removing {len(failed_bldgs)} buildings that failed in baseline") bs_pub_df = process_baseline_simulation_outputs(baseline_df, upgrade_renamer) - sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" - parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - parquet_file = f's3://{parquet_file.as_posix()}' - else: - Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) - print(f'Opening: {str(parquet_file)}') - with output_dir['fs'].open(str(parquet_file), "wb") as f: - bs_pub_df.sink_parquet(f) - print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") + + # Find the superset of upgrade.foo columns across all upgrades + upgrade_col_schema = {} + for upgrade_file in upgrade_files: + upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) + upgrade_col_schema.update(get_upgrade_columns(upgrade_df)) # Process and cache the upgrade simulation outputs upgrade_ids = [0] + sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" for upgrade_file in upgrade_files: up_info = re.search(r"up(\d+)", Path(upgrade_file).name) if up_info is None: continue upgrade_id = int(up_info.group(1)) upgrade_ids.append(upgrade_id) - print('\n\n\n*******************************************************') print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id}") upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) up_df = process_upgrade_simulation_outputs( - failed_bldgs, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer + failed_bldgs, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer, upgrade_col_schema ) parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" @@ -106,6 +106,23 @@ def export_metadata_and_annual_results(raw_results_dir: str, print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") upgrade_ids.sort() + # Add savings and weighted columns to baseline and cache + col_maps = get_col_maps() + bs_pub_df = add_saving_cols(bs_pub_df, bs_pub_df) # Intentionally passing base columns twice - zero savings in baseline + bs_pub_df = add_weighted_cols(bs_pub_df) + bs_pub_df = add_missing_upgrade_cols(bs_pub_df, upgrade_col_schema) + bs_pub_df = reorder_columns(bs_pub_df, col_maps) + + upgrade_id = 0 + parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + parquet_file = f's3://{parquet_file.as_posix()}' + else: + Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) + with output_dir['fs'].open(str(parquet_file), "wb") as f: + bs_pub_df.sink_parquet(f) + print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") # Define the geographic partitions to export geo_exports = [ @@ -115,14 +132,14 @@ def export_metadata_and_annual_results(raw_results_dir: str, 'data_types': ['full'], # TODO add basic 'file_types': ['parquet'], # 'csv', }, - # { - # 'geo_top_dir': 'by_state', - # 'partition_cols': { - # 'in.state': 'state' - # }, - # 'data_types': ['full'], # TODO add basic - # 'file_types': ['csv', 'parquet'], - # } + { + 'geo_top_dir': 'by_state', + 'partition_cols': { + 'in.state': 'state' + }, + 'data_types': ['full'], # TODO add basic + 'file_types': ['csv', 'parquet'], + } ] for upgrade_id in upgrade_ids: diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index c3ded74556..5c2e7e7037 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -45,15 +45,11 @@ def process_baseline_simulation_outputs(base_raw_df: pl.LazyFrame, upgrade_renam base_df = add_puma_column(base_df) all_cols = base_df.collect_schema().names() - print("Fixing site energy and site emission total for baseline ...") base_df = fix_site_energy_total(base_df, all_cols) base_df = fix_all_fuels_emissions(base_df, all_cols) base_df = remove_unused_consumption_cols(base_df) base_df = add_panel_contraint_cols(base_df) base_df = add_upgrade_columns(base_df) - # base_df = add_saving_cols(base_df, base_df) # Intentionally passing base columns twice - zero savings in baseline - base_df = add_weighted_cols(base_df) - base_df = reorder_columns(base_df, col_maps, is_baseline=True) return base_df @@ -62,7 +58,8 @@ def process_upgrade_simulation_outputs( base_pub_df: pl.LazyFrame, upgrade_raw_df: pl.LazyFrame, upgrade_num: int, - upgrade_renamer: dict[str, str] + upgrade_renamer: dict[str, str], + upgrade_col_schema: dict[str, str] ) -> pl.LazyFrame: """ Publishes the annual results for a specific upgrade. @@ -90,8 +87,8 @@ def process_upgrade_simulation_outputs( ) if failed_bldgs: print( - f"Replacig these {len(failed_bldgs)} buildings that only failed in " - f"upgrade {upgrade_num} with baseline: {failed_bldgs}" + f"Replacing {len(failed_bldgs)} buildings that only failed in " + f"upgrade {upgrade_num} with results from baseline: {failed_bldgs}" ) upgrade_df = get_transformed_cols(upgrade_df, col_maps) @@ -112,14 +109,8 @@ def process_upgrade_simulation_outputs( c for c in list(set(base_cols) - set(upgrade_cols)) + ["bldg_id"] if not any(term in c for term in exclude_terms) ] - print('Adding missing cols from upgrade to baseline:') - for mc in sorted(missing_cols): - print(mc) - print('\n\n\n') - upgrade_df = upgrade_df.join(base_pub_df.select(missing_cols), on="bldg_id", how="left") all_cols = upgrade_df.collect_schema().names() - print("Fixing site energy and site emission total for upgrade ...") upgrade_df = fix_site_energy_total(upgrade_df, all_cols) upgrade_df = fix_all_fuels_emissions(upgrade_df, all_cols) upgrade_df = add_upgrade_columns(upgrade_df) @@ -145,7 +136,8 @@ def process_upgrade_simulation_outputs( upgrade_df = add_saving_cols(upgrade_df, base_pub_df) upgrade_df = add_panel_contraint_cols(upgrade_df) upgrade_df = add_weighted_cols(upgrade_df) - upgrade_df = reorder_columns(upgrade_df, col_maps, is_baseline=False) + upgrade_df = add_missing_upgrade_cols(upgrade_df, upgrade_col_schema) + upgrade_df = reorder_columns(upgrade_df, col_maps) return upgrade_df @@ -155,6 +147,8 @@ def get_transformed_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyF for col_map in col_maps: if col_map["column_type"] not in ["Input", "Output"]: continue + if not col_map["include"] == 'yes': + continue assert col_map["column_name"] is not None, "ResStock column name must be provided for Input or Output columns" if col_map["column_name"] not in all_cols: continue @@ -200,7 +194,6 @@ def rename_upgrades(df: pl.LazyFrame, upgrade_renamer: dict) -> pl.LazyFrame: # Check that each upgrade name is present in the upgrade renamer dict up_names = df.select(pl.col("in.upgrade_name")).unique().collect().to_series().to_list() - print(up_names) for up_name in up_names: if not up_name in upgrade_renamer: raise ValueError(f"No upgrade rename supplied for: {up_name}") @@ -229,22 +222,6 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: - - up_cols = set(df.collect_schema().names()) - base_cols = set(baseline_df.collect_schema().names()) - in_base_not_up = list(base_cols - up_cols) - in_up_not_base = list(up_cols - base_cols) - print('in_base_not_up:') - for c in in_base_not_up: - print(c) - print('\n\n\n') - - print('in_up_not_base:') - for c in in_up_not_base: - print(c) - print('\n\n\n') - - savings_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( @@ -261,12 +238,6 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame or "out.params.panel_breaker_space_occupied" in col ] out_cols += out_panel_cols - - print('Calculating savings for:') - for oc in out_cols: - print(oc) - print('\n\n\n') - baseline_df_with_renamed = baseline_df.select( [pl.col(col).alias(f"baseline_{col}") for col in out_cols] + ["bldg_id"] ) @@ -328,6 +299,7 @@ def col_name_to_savings(col_name: str) -> str: def remove_unused_consumption_cols(df: pl.LazyFrame) -> pl.LazyFrame: + print("Removing unused (all-zero) energy consumption columns") empty_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'energy_consumption' in col] @@ -341,6 +313,7 @@ def remove_unused_consumption_cols(df: pl.LazyFrame) -> pl.LazyFrame: def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: + print("Adding weighted columns") all_cols = df.collect_schema().names() wtd_cols = [col for col in all_cols if 'out.' in col and ( ".energy_consumption" in col or @@ -348,13 +321,6 @@ def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: ".emissions." in col or ".emissions_reduction." in col )] - # # Selectively include the following for params - # out_panel_cols = [col for col in all_cols if - # "out.params.panel_load_total_load" in col - # or "out.params.panel_load_occupied_capacity" in col - # or "out.params.panel_breaker_space_occupied" in col - # ] - # wtd_cols += out_panel_cols wtd_col_unit_convs = { 'kwh': 'tbtu', @@ -377,6 +343,7 @@ def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: def add_panel_contraint_cols(df: pl.LazyFrame) -> pl.LazyFrame: + print("Adding panel constraint columns") all_cols = df.collect_schema().names() amp_prefix = "out.params.panel_load_headroom_capacity." amp_cols = [col for col in all_cols if amp_prefix in col] @@ -411,6 +378,7 @@ def add_county_column(df: pl.LazyFrame): """ Changes the county column to the FIPS code and adds a county name column. """ + print("Adding county column") here = pathlib.Path(__file__).resolve().parent county_map_df = pl.read_csv( here / "resources" / "gisdata" / "county_lookup_table.csv", @@ -431,14 +399,44 @@ def add_puma_column(df: pl.LazyFrame): """ Changes the puma column to the GISJOIN code. """ + print("Adding PUMA column") here = pathlib.Path(__file__).resolve().parent pumas = gpd.read_file(here / "resources" / "gisdata" / "ipums_pums_2010_simple_t100_area_us_puma.geojson") puma_map = pumas[["GISJOIN", "puma_tsv"]].set_index("puma_tsv")["GISJOIN"].to_dict() df = df.with_columns([pl.col("in.puma").replace(puma_map).alias("in.puma")]) return df +def get_upgrade_columns(lf: pl.LazyFrame) -> list: + upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] + if not upgrade_cols: + return [] + upgrade_lf = lf.select(["building_id"] + upgrade_cols) + upgrade_df = ( + upgrade_lf.unpivot( + index="building_id", + on=upgrade_cols, + variable_name="in.upgrade_name", + value_name="upgrade_value", + ) + .drop_nulls("upgrade_value") + .filter(pl.col("upgrade_value") != "") + .with_columns( + pl.col("upgrade_value").str.split_exact("|", 1).struct.rename_fields(["upgrade_key", "upgrade_value"]) + ) + .unnest("upgrade_value") + .collect() + .group_by(["building_id", "upgrade_key"]) + .agg(pl.col("upgrade_value").first()) + .pivot(index="building_id", columns="upgrade_key", values="upgrade_value") + ) + upgrade_df = upgrade_df.rename( + {c: f"upgrade.{c.lower().replace(' ', '_')}" for c in upgrade_df.columns if c != "building_id"} + ) + return upgrade_df.drop("building_id").schema + def add_upgrade_columns(lf: pl.LazyFrame) -> pl.LazyFrame: + print("Adding upgrade columns from this upgrade") upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] if not upgrade_cols: return lf @@ -461,25 +459,35 @@ def add_upgrade_columns(lf: pl.LazyFrame) -> pl.LazyFrame: .agg(pl.col("upgrade_value").first()) .pivot(index="bldg_id", columns="upgrade_key", values="upgrade_value") ) - print("Done adding upgrade columns") upgrade_df = upgrade_df.rename( {c: f"upgrade.{c.lower().replace(' ', '_')}" for c in upgrade_df.columns if c != "bldg_id"} ) return lf.drop(upgrade_cols).join(upgrade_df.lazy(), on="bldg_id", how="left") -def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict], is_baseline: bool): +def add_missing_upgrade_cols(df: pl.LazyFrame, upgrade_col_schema: dict) -> pl.LazyFrame: + print("Adding upgrade columns from superset across all upgrades") + all_cols = df.collect_schema().names() + for col_name, col_dtype in upgrade_col_schema.items(): + if col_name in all_cols: + continue + df = df.with_columns( + pl.lit(None).cast(col_dtype).alias(col_name) + ) + return df + + +def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict]): + print("Reordering columns and checking for missing/extra columns") # verify that all the columns in lf are one published_name in col_maps all_df_cols = set(lf.collect_schema().names()) - all_defined_cols = [col_map["published_name"] for col_map in col_maps] + all_defined_cols = [col_map["published_name"] for col_map in col_maps if "yes" in col_map["include"]] extra_cols = all_df_cols - set(all_defined_cols) if extra_cols: print(f"Extra columns in output data not defined in publication column definition:") for c in sorted(extra_cols): print(f"Extra column: {c}") missing_cols = [col for col in set(all_defined_cols) - all_df_cols if not col.startswith("upgrade.")] - if is_baseline: - missing_cols = [col for col in missing_cols if not ("savings" in col or "reduction" in col)] if missing_cols: print(f"Missing columns in output data that are defined in publication column definition:") for c in sorted(missing_cols): @@ -504,13 +512,7 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e """ - bucket_name = 'oedi-data-lake' - if output_dir['fs'].exists(bucket_name): - print(f"Bucket {bucket_name} exists") - else: - print(f"Bucket {bucket_name} does not exist") - - print(f"Exporting metadata for upgrade {upgrade_id}") + print(f"Exporting metadata and annual results for upgrade {upgrade_id}") # Read the cached simulation results sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" @@ -527,8 +529,6 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e for ge in geo_exports: geo_top_dir = ge['geo_top_dir'] partition_cols = ge['partition_cols'] - print('partition_cols') - print(partition_cols) data_types = ge['data_types'] file_types = ge['file_types'] print(f"Exporting {geo_top_dir} by {partition_cols} {data_types} {file_types}") @@ -576,8 +576,6 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e input_args = (up_df, output_dir, file_type, file_path) write_geo_data(input_args) - break - def get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id): """ Builds a file path for each aggregate based on name, file type, and aggregation level diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index dfebe09189..ef8705aa80 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,1103 +1,1103 @@ -Column Type,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). -Input,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number -Input,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. -Calculated,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. -Output,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country -Calculated,,,in.county_name,in.county_name,,,,,,,,,County name -Input,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` -Input,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` -Input,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` -Input,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` -Input,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` -Input,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` -Input,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` -Input,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` -Input,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` -Input,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` -Input,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` -Input,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` -Input,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` -Input,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` -Input,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` -Input,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` -Input,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` -Input,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` -Input,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` -Input,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` -Input,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` -Input,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` -Input,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` -Input,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` -Input,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` -Input,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` -Input,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` -Input,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` -Input,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` -Input,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` -Input,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` -Input,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` -Input,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` -Input,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` -Input,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` -Input,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` -Input,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` -Input,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` -Input,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` -Input,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` -Input,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` -Input,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` -Input,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` -Input,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` -Input,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` -Input,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` -Input,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` -Input,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` -Input,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` -Input,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` -Input,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` -Input,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` -Input,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` -Input,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` -Input,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` -Input,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` -Input,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` -Input,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` -Input,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` -Input,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` -Input,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` -Input,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` -Input,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` -Input,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` -Input,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` -Input,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` -Input,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` -Input,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` -Input,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` -Input,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` -Input,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` -Input,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` -Input,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` -Input,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` -Input,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` -Input,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` -Input,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` -Input,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` -Input,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` -Input,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` -Input,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` -Input,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` -Input,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` -Input,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` -Input,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` -Input,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` -Input,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` -Input,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` -Input,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` -Input,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` -Input,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` -Input,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` -Input,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` -Input,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` -Input,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` -Input,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` -Input,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` -Input,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` -Input,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` -Input,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` -Input,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` -Input,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` -Input,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` -Input,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` -Input,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` -Input,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` -Input,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` -Input,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` -Input,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` -Input,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` -Input,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` -Input,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` -Input,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` -Input,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` -Input,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` -Input,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` -Input,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` -Input,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` -Input,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` -Input,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` -Input,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` -Input,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` -Input,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` -Input,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` -Input,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` -Input,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` -Input,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` -Input,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` -Input,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` -Input,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` -Input,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` -Input,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` -Input,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` -Input,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` -Input,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` -Input,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` -Input,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` -Input,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,:ref:`overhangs` -Input,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` -Input,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` -Input,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` -Input,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` -Input,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` -Input,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` -Input,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` -Input,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` -Input,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` -Input,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` -Input,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` -Input,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` -Input,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` -Input,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` -Input,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` -Input,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` -Input,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` -Input,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` -Input,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` -Input,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` -Input,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` -Input,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` -Input,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` -Input,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` -Input,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` -Input,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. -Input,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -Input,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -Input,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. -Input,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. -Input,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. -Input,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. -Output,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area -Output,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area -Output,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" -Output,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" -Output,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" -Output,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area -Output,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" -Output,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area -Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps -Output,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced -Output,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps -Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps -Output,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump -Output,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting -Output,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling -Output,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced -Output,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, -Output,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging -Output,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. -Output,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging -Output,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, -Output,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. -Output,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. -Output,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -Output,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, -Calculated,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy -Calculated,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, -Calculated,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -Calculated,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. -Output,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, -Output,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Column Type,Include,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes +Input,yes,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,yes,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,yes,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,yes,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. +Calculated,yes,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Output,yes,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" +Calculated,yes,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,yes,,,in.county_name,in.county_name,,,,,,,,,County name +Input,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` +Input,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` +Input,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` +Input,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` +Input,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` +Input,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` +Input,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` +Input,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` +Input,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` +Input,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` +Input,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` +Input,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` +Input,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` +Input,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` +Input,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` +Input,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` +Input,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` +Input,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` +Input,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` +Input,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` +Input,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` +Input,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` +Input,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` +Input,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` +Input,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` +Input,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` +Input,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` +Input,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` +Input,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` +Input,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` +Input,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` +Input,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` +Input,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` +Input,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` +Input,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` +Input,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` +Input,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` +Input,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` +Input,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` +Input,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` +Input,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` +Input,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` +Input,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` +Input,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` +Input,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` +Input,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` +Input,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` +Input,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` +Input,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` +Input,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` +Input,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` +Input,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` +Input,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` +Input,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` +Input,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` +Input,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` +Input,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` +Input,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` +Input,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` +Input,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` +Input,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` +Input,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` +Input,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` +Input,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` +Input,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` +Input,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` +Input,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` +Input,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` +Input,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` +Input,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` +Input,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` +Input,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` +Input,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` +Input,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` +Input,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` +Input,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` +Input,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` +Input,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` +Input,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` +Input,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` +Input,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` +Input,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` +Input,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` +Input,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` +Input,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` +Input,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` +Input,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` +Input,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` +Input,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` +Input,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` +Input,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` +Input,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` +Input,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` +Input,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` +Input,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` +Input,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` +Input,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` +Input,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` +Input,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` +Input,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` +Input,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` +Input,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` +Input,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` +Input,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` +Input,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` +Input,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` +Input,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` +Input,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` +Input,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` +Input,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` +Input,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` +Input,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` +Input,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` +Input,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` +Input,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` +Input,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` +Input,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` +Input,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` +Input,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` +Input,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` +Input,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` +Input,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` +Input,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` +Input,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` +Input,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` +Input,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` +Input,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` +Input,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` +Input,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` +Input,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` +Input,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` +Input,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` +Input,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` +Input,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` +Input,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` +Input,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` +Input,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` +Input,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,:ref:`overhangs` +Input,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` +Input,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` +Input,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` +Input,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` +Input,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` +Input,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` +Input,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` +Input,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` +Input,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` +Input,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` +Input,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` +Input,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` +Input,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` +Input,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` +Input,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` +Input,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` +Input,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` +Input,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` +Input,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` +Input,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` +Input,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` +Input,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` +Input,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` +Input,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` +Input,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` +Input,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,yes,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,yes,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,yes,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,yes,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,yes,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +Input,yes,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,yes,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +Input,yes,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. +Input,yes,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. +Input,yes,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. +Input,yes,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. +Input,yes,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. +Input,yes,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Output,yes,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area +Output,yes,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area +Output,yes,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" +Output,yes,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,yes,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,yes,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" +Output,yes,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" +Output,yes,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,yes,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,yes,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area +Output,yes,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,yes,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,yes,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,yes,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,yes,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,yes,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,yes,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,yes,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,yes,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" +Output,yes,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area +Output,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. +Output,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps +Output,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, +Output,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced +Output,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps +Output,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps +Output,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump +Output,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting +Output,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling +Output,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, +Output,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced +Output,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, +Output,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, +Output,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, +Output,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, +Output,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging +Output,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. +Output,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging +Output,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, +Output,yes,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,yes,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,yes,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,yes,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,yes,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,yes,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,yes,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. +Output,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. +Output,yes,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,yes,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,yes,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,yes,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,yes,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,yes,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,yes,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,yes,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,yes,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,yes,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,yes,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,yes,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,yes,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,yes,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,yes,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,yes,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,yes,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,yes,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,yes,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,yes,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,yes,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,yes,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,yes,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,yes,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,yes,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,yes,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,yes,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,yes,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,yes,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,yes,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,yes,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,yes,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,yes,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,yes,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,yes,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,yes,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,yes,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,yes,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,yes,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,yes,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,yes,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,yes,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Calculated,yes,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,yes,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,yes,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,yes,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,yes,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,yes,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,yes,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,yes,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,yes,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,yes,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,yes,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,yes,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,yes,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,yes,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,yes,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, +Calculated,yes,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,yes,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,yes,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,yes,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,yes,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,yes,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,yes,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. +Output,yes,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, +Output,yes,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, +Calculated,yes,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 2997c58695..249bb74717 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -34,20 +34,21 @@ def fix_site_energy_total(df: pl.LazyFrame, all_cols: List[str]): """ We need to do this because normally site energy total includes coal and wood but we don't want to include those. """ + print("Removing coal and wood from energy totals") updated_cols = [] - for suffix in ['', '_intensity', '.kwh', '.kwh.savings']: - if f'out.electricity.total.energy_consumption{suffix}' not in df: + for suffix in ['', '_intensity', 'energy_consumption..kwh', 'energy_savings..kwh']: + if f'out.electricity.total.{suffix}' not in df: continue total_energy_col = pl.lit(0) for fuel in ['electricity','natural_gas', 'fuel_oil', 'propane']: # exclude other fuel types - if (col := f'out.{fuel}.total.energy_consumption{suffix}') in all_cols: + if (col := f'out.{fuel}.total.{suffix}') in all_cols: total_energy_col += pl.col(col) - updated_cols.append(total_energy_col.alias(f'out.site_energy.total.energy_consumption{suffix}')) - if (pvcol := f'out.electricity.pv.energy_consumption{suffix}'): + updated_cols.append(total_energy_col.alias(f'out.site_energy.total.{suffix}')) + if (pvcol := f'out.electricity.pv.{suffix}'): net_energy_col = total_energy_col + pl.col(pvcol) - net_electricity_col = pl.col(f'out.electricity.total.energy_consumption{suffix}') + pl.col(pvcol) - updated_cols.append(net_energy_col.alias(f'out.site_energy.net.energy_consumption{suffix}')) - updated_cols.append(net_electricity_col.alias(f'out.electricity.net.energy_consumption{suffix}')) + net_electricity_col = pl.col(f'out.electricity.total.{suffix}') + pl.col(pvcol) + updated_cols.append(net_energy_col.alias(f'out.site_energy.net.{suffix}')) + updated_cols.append(net_electricity_col.alias(f'out.electricity.net.{suffix}')) return df.with_columns(updated_cols) def fix_all_fuels_emissions(df: pl.LazyFrame, all_cols: List[str]): @@ -55,8 +56,9 @@ def fix_all_fuels_emissions(df: pl.LazyFrame, all_cols: List[str]): Recalculate out.all_fuels.total..co2e_kg columns using only the subset of fuel total columns. Basically, exclude wood from the all_fuel emissions. """ + print("Removing coal and wood from emissions totals") all_fuel_cols = [] - emissions_re = re.compile(r"^out\.(electricity|natural_gas|fuel_oil|propane).total.(\w+).co2e_kg$") + emissions_re = re.compile(r"^out\.emissions\.(electricity|natural_gas|fuel_oil|propane).(\w+)..co2e_kg") scenario2cols = defaultdict(list) for col in all_cols: @@ -64,7 +66,7 @@ def fix_all_fuels_emissions(df: pl.LazyFrame, all_cols: List[str]): scenario2cols[match[2]].append(col) for scenario, cols in scenario2cols.items(): - new_col = f'out.all_fuels.total.{scenario}.co2e_kg' + new_col = f'out.emissions.all_fuels.{scenario}..co2e_kg' all_fuel_cols.append(pl.sum_horizontal(cols).alias(new_col)) return df.with_columns(all_fuel_cols) @@ -80,6 +82,7 @@ def get_col_maps(): pl.col("Published Annual Name").is_not_null() ).select( pl.col('Column Type').alias('column_type'), + pl.col('Include').alias('include'), pl.col("Annual Name").alias('column_name'), pl.col("Published Annual Name").alias('published_name'), pl.col("ResStock To Published Annual Unit Conversion Factor").alias("conversion_factor") From 68099af0b7f3a7142c66d4ca7cdce0248d979e4b Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Wed, 1 Oct 2025 02:59:40 -0600 Subject: [PATCH 05/82] Restructures metadata processing Moves each action to a function and defines one workflow with slight modifications for baseline and upgrade dataframes. Modifies column definitions to remove unused emissions scenarios and add control of publication location. --- postprocessing/resstockpostproc/__init__.py | 2 +- .../resstockpostproc/process_bsb_results.py | 122 +- .../resstockpostproc/process_metadata.py | 252 +- .../publication/sdr_column_definitions.csv | 2144 ++++++++--------- postprocessing/resstockpostproc/utils.py | 9 +- 5 files changed, 1255 insertions(+), 1274 deletions(-) diff --git a/postprocessing/resstockpostproc/__init__.py b/postprocessing/resstockpostproc/__init__.py index e4202280de..0a73c819a2 100644 --- a/postprocessing/resstockpostproc/__init__.py +++ b/postprocessing/resstockpostproc/__init__.py @@ -1 +1 @@ -from .process_metadata import process_baseline_simulation_outputs, process_upgrade_simulation_outputs \ No newline at end of file +from .process_metadata import process_simulation_outputs \ No newline at end of file diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index d2812bd063..a5102322cb 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -21,15 +21,10 @@ import polars as pl from pathlib import Path from resstockpostproc.process_metadata import ( - process_baseline_simulation_outputs, - get_upgrade_columns, - get_col_maps, - add_weighted_cols, - add_saving_cols, - add_missing_upgrade_cols, - reorder_columns, - process_upgrade_simulation_outputs, + get_upgrade_foo_col_schema, get_upgrade_rename_dict, + get_failed_building_list, + process_simulation_outputs, export_metadata_and_annual_results_for_upgrade ) from resstockpostproc.utils import ( @@ -49,88 +44,53 @@ def export_metadata_and_annual_results(raw_results_dir: str, result_files = raw_results_dir['fs'].glob(pqt_glob) baseline_files = [f for f in result_files if "up00" in Path(f).name.lower()] upgrade_files = [f for f in result_files if "up00" not in Path(f).name.lower()] - upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) upgrade_files = upgrade_files[0:1] # TODO ANDREW WUZ HERE remove this - # Process the baseline simulation outputs - if not baseline_files: - print("Error: No baseline files found") - sys.exit(1) - if len(baseline_files) > 1: - print("Error: More than one baseline file found") - sys.exit(1) - + upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) + upgrade_foo_col_schema = get_upgrade_foo_col_schema(upgrade_files, raw_results_dir) + sim_out_cache_dir = Path(f"{output_dir['fs_path']}/cached_simulation_outputs") + + # Process and cache the baseline simulation outputs + # if not baseline_files: + # print("Error: No baseline files found") + # sys.exit(1) + # if len(baseline_files) > 1: + # print("Error: More than one baseline file found") + # sys.exit(1) + upgrade_id = 0 baseline_file = baseline_files[0] print(f"Processing baseline file: {baseline_file}") baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) - - failed_bldgs = ( - baseline_df.filter(pl.col("completed_status") == "Fail") - .select(pl.col("building_id")) - .collect()["building_id"] - .to_list() - ) - print(f"Removing {len(failed_bldgs)} buildings that failed in baseline") - bs_pub_df = process_baseline_simulation_outputs(baseline_df, upgrade_renamer) - - # Find the superset of upgrade.foo columns across all upgrades - upgrade_col_schema = {} - for upgrade_file in upgrade_files: - upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) - upgrade_col_schema.update(get_upgrade_columns(upgrade_df)) + failed_bldgs = get_failed_building_list(baseline_df) + bs_pub_df = process_simulation_outputs( + failed_bldgs, baseline_df, None, baseline_df, upgrade_id, upgrade_renamer, upgrade_foo_col_schema + ) + cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, bs_pub_df) # Process and cache the upgrade simulation outputs - upgrade_ids = [0] - sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" + upgrade_ids = [] for upgrade_file in upgrade_files: up_info = re.search(r"up(\d+)", Path(upgrade_file).name) if up_info is None: continue upgrade_id = int(up_info.group(1)) upgrade_ids.append(upgrade_id) - print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id}") + print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id} {'*'*100}") upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) - up_df = process_upgrade_simulation_outputs( - failed_bldgs, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer, upgrade_col_schema + up_df = process_simulation_outputs( + failed_bldgs, baseline_df, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer, upgrade_foo_col_schema ) - parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - parquet_file = f's3://{parquet_file.as_posix()}' - else: - Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) - with output_dir['fs'].open(str(parquet_file), "wb") as f: - up_df.sink_parquet(f) - - print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") + cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, up_df) upgrade_ids.sort() - # Add savings and weighted columns to baseline and cache - col_maps = get_col_maps() - bs_pub_df = add_saving_cols(bs_pub_df, bs_pub_df) # Intentionally passing base columns twice - zero savings in baseline - bs_pub_df = add_weighted_cols(bs_pub_df) - bs_pub_df = add_missing_upgrade_cols(bs_pub_df, upgrade_col_schema) - bs_pub_df = reorder_columns(bs_pub_df, col_maps) - - upgrade_id = 0 - parquet_file_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - parquet_file = f's3://{parquet_file.as_posix()}' - else: - Path(parquet_file_dir).mkdir(parents=True, exist_ok=True) - with output_dir['fs'].open(str(parquet_file), "wb") as f: - bs_pub_df.sink_parquet(f) - print(f"Cached simulation outputs for upgrade {upgrade_id} to {parquet_file}") - # Define the geographic partitions to export geo_exports = [ { 'geo_top_dir': 'national', 'partition_cols': {}, 'data_types': ['full'], # TODO add basic - 'file_types': ['parquet'], # 'csv', + 'file_types': [ 'csv', 'parquet'], }, { 'geo_top_dir': 'by_state', @@ -149,25 +109,17 @@ def export_metadata_and_annual_results(raw_results_dir: str, geo_exports) -def read_file(file: Path) -> pl.LazyFrame: - match file.suffix: - case ".parquet": - return pl.scan_parquet(file) - case ".csv": - return pl.scan_csv(file) - case ".gz": - assert file.stem.endswith(".csv"), f"gz file is not a csv: {file}" - return pl.scan_csv(file) - case _: - raise ValueError(f"Unsupported file type: {file}") - - -def write_file(df: pl.LazyFrame, output_path: Path, upgrade: int): - parquet_file_dir = output_path / "parquet" / f"upgrade={upgrade}" - parquet_file_dir.mkdir(parents=True, exist_ok=True) - parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade}.parquet" - df.sink_parquet(parquet_file) - print(f"Cached simulation outputs for upgrade {upgrade} to {parquet_file}") +def cache_simulation_outputs_file(output_dir, sim_out_cache_dir: Path, upgrade_id: int, df: pl.LazyFrame): + file_name = f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + upgrade_cache_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + file_path = upgrade_cache_dir / file_name + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + file_path = f's3://{file_path.as_posix()}' + else: + upgrade_cache_dir.mkdir(parents=True, exist_ok=True) + with output_dir['fs'].open(str(file_path), "wb") as f: + df.sink_parquet(f) + print(f"Cached simulation outputs for upgrade {upgrade_id} to {file_path}") if __name__ == "__main__": diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 5c2e7e7037..db1ff8682a 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -5,6 +5,7 @@ import s3fs import json import re +from collections import defaultdict from typing import Sequence from resstockpostproc.utils import ( @@ -24,37 +25,9 @@ def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: return set(failed_bldgs.collect()["building_id"].to_list()) -def process_baseline_simulation_outputs(base_raw_df: pl.LazyFrame, upgrade_renamer: dict[str, str]) -> pl.LazyFrame: - """ - Publishes the annual results for the baseline. - - Args: - base_raw_df: LazyFrame containing baseline results from raw BuildStockBatch results. - upgrade_renamer: Map of upgrade names from YML to new names for publication. - Returns: - LazyFrame containing published baseline results. - """ - col_maps = get_col_maps() - base_df = base_raw_df.filter(pl.col("completed_status") == "Success") - base_df = get_transformed_cols(base_df, col_maps) - base_df = base_df.with_columns(pl.lit(True).alias("applicability")) - base_df = base_df.with_columns([pl.lit(0).alias("upgrade"), pl.lit("Baseline").alias("in.upgrade_name")]) - base_df = rename_upgrades(base_df, upgrade_renamer) - base_df = add_income_and_burden(base_df) - base_df = add_county_column(base_df) - base_df = add_puma_column(base_df) - - all_cols = base_df.collect_schema().names() - base_df = fix_site_energy_total(base_df, all_cols) - base_df = fix_all_fuels_emissions(base_df, all_cols) - base_df = remove_unused_consumption_cols(base_df) - base_df = add_panel_contraint_cols(base_df) - base_df = add_upgrade_columns(base_df) - return base_df - - -def process_upgrade_simulation_outputs( +def process_simulation_outputs( baseline_failed_bldgs: set[int], + base_raw_df: pl.LazyFrame, base_pub_df: pl.LazyFrame, upgrade_raw_df: pl.LazyFrame, upgrade_num: int, @@ -73,81 +46,146 @@ def process_upgrade_simulation_outputs( LazyFrame containing published upgrade results. """ + is_baseline = (upgrade_num == 0) col_maps = get_col_maps() - upgrade_df = upgrade_raw_df.filter( - (~pl.col("building_id").is_in(baseline_failed_bldgs)) & (pl.col("completed_status") == "Success") - ) + + # TODO move no-op functionality for baseline vs. upgrade inside functions, add is_baseline as argument + df = upgrade_raw_df + df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df) if not is_baseline else df + df = replace_missing_buildings_with_baseline(df, base_raw_df, upgrade_num) if not is_baseline else df + df = downselect_and_rename_cols(df, col_maps) # Per sdr_column_definitions.csv + df = remove_failed_buildings(df) if is_baseline else df + df = remove_failed_baseline_buildings_and_replace_missing_with_baseline(df, baseline_failed_bldgs) if not is_baseline else df + df = add_income_and_burden(df) + df = add_county_column(df) + df = add_puma_column(df) + df = add_baseline_upgrade_name_col(df) if is_baseline else df + df = set_baseline_applicability(df) if is_baseline else df + df = add_upgrade_id_col(df, upgrade_num) + df = rename_upgrades(df, upgrade_renamer) + df = fix_site_energy_total(df) + df = add_upgrade_foo_cols(df) + df = remove_unused_consumption_cols(df) + df = add_panel_contraint_cols(df) + df = fix_all_fuels_emissions(df) + df = downselect_fuel_emissions_cols(df) + + if is_baseline: + df = add_saving_cols(df, df) # Intentionally calculate savings = baseline - baseline = 0 + else: + df = add_saving_cols(df, base_pub_df) + + df = add_weighted_cols(df) + df = add_missing_upgrade_cols(df, upgrade_col_schema) + df = downselect_and_order_pub_cols(df, col_maps) # Per sdr_column_definitions.csv + df = df.sort("bldg_id") + return df + + +def get_upgrade_foo_col_schema(upgrade_files: list, files_dir) -> dict: + upgrade_col_schema = {} + for upgrade_file in upgrade_files: + upgrade_df = pl.scan_parquet(upgrade_file, storage_options=files_dir['storage_options']) + upgrade_col_schema.update(get_upgrade_columns(upgrade_df)) + return upgrade_col_schema + + +def set_baseline_applicability(df: pl.LazyFrame) -> pl.LazyFrame: + print('Setting applicability to True for all baseline buildings') + df = df.with_columns(pl.lit(True).alias("applicability")) + return df + + +def remove_failed_buildings(df: pl.LazyFrame) -> pl.LazyFrame: + print('Removing failed buildings') + df = df.filter(pl.col("completed_status") == "Success") + return df + + +def get_failed_building_list(df: pl.LazyFrame, ) -> list[int]: + print('Getting failed building list') failed_bldgs = ( - upgrade_raw_df.filter( - (pl.col("completed_status") == "Fail") & (~pl.col("building_id").is_in(baseline_failed_bldgs)) - ) + df.filter(pl.col("completed_status") == "Fail") .select(pl.col("building_id")) .collect()["building_id"] .to_list() ) + return failed_bldgs + + +def remove_failed_baseline_buildings_and_replace_missing_with_baseline( + df: pl.LazyFrame, failed_bldgs: set[int]) -> pl.LazyFrame: + print('Removing failed buildings') + df = df.filter( + (~pl.col("bldg_id").is_in(failed_bldgs)) & (pl.col("completed_status") == "Success") + ) + failed_bldgs = ( + df.filter( + (pl.col("completed_status") == "Fail") & (~pl.col("bldg_id").is_in(failed_bldgs)) + ) + .select(pl.col("bldg_id")) + .collect()["bldg_id"] + .to_list() + ) if failed_bldgs: print( - f"Replacing {len(failed_bldgs)} buildings that only failed in " - f"upgrade {upgrade_num} with results from baseline: {failed_bldgs}" + f"Replacing {len(failed_bldgs)} buildings that failed " + f"with results from baseline: {failed_bldgs}" ) + return df - upgrade_df = get_transformed_cols(upgrade_df, col_maps) - upgrade_df = upgrade_df.with_columns([pl.lit(upgrade_num).alias("upgrade")]) - upgrade_df = rename_upgrades(upgrade_df, upgrade_renamer) - base_cols = base_pub_df.collect_schema().names() + +def add_upgrade_id_col(df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: + df = df.with_columns([pl.lit(upgrade_id).alias("upgrade")]) + return df + + +def add_baseline_upgrade_name_col(df: pl.LazyFrame) -> pl.LazyFrame: + df = df.with_columns([pl.lit("Baseline").alias("in.upgrade_name")]) + return df + + +def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: + print('Adding missing columns from baseline to upgrade') + base_cols = baseline_df.collect_schema().names() upgrade_cols = upgrade_df.collect_schema().names() - exclude_terms = [ - "calc.weighted", - "energy_savings", - "emissions_reduction", - "energy_burden_savings", - "bill_savings", - "capacity_savings", - "load_savings", - ] - missing_cols = [ - c for c in list(set(base_cols) - set(upgrade_cols)) + ["bldg_id"] - if not any(term in c for term in exclude_terms) - ] - upgrade_df = upgrade_df.join(base_pub_df.select(missing_cols), on="bldg_id", how="left") - all_cols = upgrade_df.collect_schema().names() - upgrade_df = fix_site_energy_total(upgrade_df, all_cols) - upgrade_df = fix_all_fuels_emissions(upgrade_df, all_cols) - upgrade_df = add_upgrade_columns(upgrade_df) - upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) - # get upgrade_name - upgrade_name_df = upgrade_df.select(pl.col("in.upgrade_name").first()) - missing_bldgs_df = base_pub_df.join( + missing_cols = [c for c in list(set(base_cols) - set(upgrade_cols)) + ["building_id"]] + upgrade_df = upgrade_df.join(baseline_df.select(missing_cols), on="building_id", how="left") + return upgrade_df + + +def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: + cols_at_start = set(upgrade_df.collect_schema().names()) + upgrade_name_df = upgrade_df.select(pl.col("apply_upgrade.upgrade_name").first()) + missing_bldgs_df = baseline_df.join( upgrade_df, - on="bldg_id", + on="building_id", how="anti", # Keep rows from 'base' with no match in 'upgrade' ) missing_bldgs_df = missing_bldgs_df.with_columns( [ pl.lit(False).alias("applicability"), - pl.lit(upgrade_num).alias("upgrade"), + pl.lit(upgrade_id).alias("upgrade"), ] - ).drop("in.upgrade_name") - upgrade_cols = upgrade_df.collect_schema().names() + ).drop("apply_upgrade.upgrade_name") missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") - upgrade_df = upgrade_df.sort("bldg_id") - upgrade_df = remove_unused_consumption_cols(upgrade_df) - upgrade_df = add_saving_cols(upgrade_df, base_pub_df) - upgrade_df = add_panel_contraint_cols(upgrade_df) - upgrade_df = add_weighted_cols(upgrade_df) - upgrade_df = add_missing_upgrade_cols(upgrade_df, upgrade_col_schema) - upgrade_df = reorder_columns(upgrade_df, col_maps) - return upgrade_df + cols_at_end = set(upgrade_df.collect_schema().names()) + if not cols_at_start == cols_at_end: + new_cols = cols_at_end - cols_at_start + print(f'Added: {new_cols}') + + return upgrade_df -def get_transformed_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyFrame: +def downselect_and_rename_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyFrame: + print('Downselecting and renaming columns from raw simulation outputs per sdr_column_definitions.csv') transformed_cols = [] all_cols = df.collect_schema().names() for col_map in col_maps: if col_map["column_type"] not in ["Input", "Output"]: continue - if not col_map["include"] == 'yes': + if not col_map["import_from_raw"] == 'yes': continue assert col_map["column_name"] is not None, "ResStock column name must be provided for Input or Output columns" if col_map["column_name"] not in all_cols: @@ -222,6 +260,7 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: + print(f"Adding savings columns") savings_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( @@ -238,6 +277,13 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame or "out.params.panel_breaker_space_occupied" in col ] out_cols += out_panel_cols + # print("Columns to calculate savings for (from up_df):") + # for c in sorted(out_cols): + # print(c) + all_base_cols = baseline_df.collect_schema().names() + for c in out_cols: + if c not in all_base_cols: + print(f'ERROR: {c} is in upgrade but not baseline df, cannot calc savings for this column') baseline_df_with_renamed = baseline_df.select( [pl.col(col).alias(f"baseline_{col}") for col in out_cols] + ["bldg_id"] ) @@ -246,7 +292,11 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame new_col = col_name_to_savings(col) saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias(new_col) savings_cols.append(saving_col) - return df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) + df = df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) + + all_cols = df.collect_schema().names() # TODO remove + + return df def col_name_to_weighted(col_name: str, new_units=None) -> str: @@ -435,7 +485,7 @@ def get_upgrade_columns(lf: pl.LazyFrame) -> list: return upgrade_df.drop("building_id").schema -def add_upgrade_columns(lf: pl.LazyFrame) -> pl.LazyFrame: +def add_upgrade_foo_cols(lf: pl.LazyFrame) -> pl.LazyFrame: print("Adding upgrade columns from this upgrade") upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] if not upgrade_cols: @@ -477,11 +527,49 @@ def add_missing_upgrade_cols(df: pl.LazyFrame, upgrade_col_schema: dict) -> pl.L return df -def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict]): +def downselect_fuel_emissions_cols(df: pl.LazyFrame): + """ + + for each scenario + out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg (This actually uses the net column from the raw result) + out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg + + Downselect to just one column for natural gas, propane, and fuel oil emissions + because + out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.natural_gas.total..co2e_kg + out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.fuel_oil.total..co2e_kg + out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.propane.total..co2e_kg + + out.emissions.total.lrmer_midcase_15..co2e_kg (total for a scenario) + """ + print("Downselecting fuel emissions to one scenario") + all_cols = df.collect_schema().names() + + fuel_emissions_re = re.compile(r"^out\.emissions\.(natural_gas|fuel_oil|propane).(\w+)..co2e_kg") + scenario2cols = defaultdict(list) + for col in all_cols: + if (match := re.search(fuel_emissions_re, col)): + scenario2cols[match[2]].append(col) + + for i, s2c in enumerate(scenario2cols.items()): + scenario, cols = s2c + if i == 0: + # Keep the first scenario's columns and rename them + df = df.rename({col: col.replace(scenario, "total") for col in cols}) + # for col in cols: + # print(f'Renaming {col} to {col.replace(scenario, "total")}') + else: + # Delete the fuel emissions columns for all other scenarios + df = df.drop(cols) + # print(f'Dropping: {cols}') + return df + + +def downselect_and_order_pub_cols(lf: pl.LazyFrame, col_maps: Sequence[dict]): print("Reordering columns and checking for missing/extra columns") # verify that all the columns in lf are one published_name in col_maps all_df_cols = set(lf.collect_schema().names()) - all_defined_cols = [col_map["published_name"] for col_map in col_maps if "yes" in col_map["include"]] + all_defined_cols = [col_map["published_name"] for col_map in col_maps if "yes" in col_map["publish_in_full"]] extra_cols = all_df_cols - set(all_defined_cols) if extra_cols: print(f"Extra columns in output data not defined in publication column definition:") diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index ef8705aa80..4075ff5283 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,1103 +1,1041 @@ -Column Type,Include,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,yes,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). -Input,yes,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number -Input,yes,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,yes,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. -Calculated,yes,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. -Output,yes,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,yes,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country -Calculated,yes,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` -Input,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` -Input,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` -Input,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` -Input,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` -Input,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` -Input,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` -Input,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` -Input,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` -Input,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` -Input,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` -Input,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` -Input,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` -Input,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` -Input,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` -Input,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` -Input,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` -Input,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` -Input,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` -Input,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` -Input,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` -Input,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` -Input,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` -Input,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` -Input,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` -Input,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` -Input,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` -Input,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` -Input,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` -Input,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` -Input,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` -Input,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` -Input,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` -Input,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` -Input,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` -Input,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` -Input,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` -Input,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` -Input,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` -Input,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` -Input,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` -Input,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` -Input,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` -Input,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` -Input,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` -Input,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` -Input,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` -Input,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` -Input,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` -Input,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` -Input,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` -Input,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` -Input,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` -Input,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` -Input,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` -Input,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` -Input,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` -Input,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` -Input,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` -Input,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` -Input,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` -Input,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` -Input,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` -Input,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` -Input,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` -Input,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` -Input,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` -Input,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` -Input,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` -Input,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` -Input,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` -Input,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` -Input,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` -Input,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` -Input,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` -Input,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` -Input,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` -Input,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` -Input,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` -Input,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` -Input,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` -Input,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` -Input,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` -Input,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` -Input,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` -Input,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` -Input,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` -Input,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` -Input,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` -Input,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` -Input,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` -Input,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` -Input,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` -Input,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` -Input,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` -Input,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` -Input,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` -Input,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` -Input,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` -Input,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` -Input,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` -Input,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` -Input,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` -Input,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` -Input,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` -Input,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` -Input,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` -Input,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` -Input,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` -Input,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` -Input,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` -Input,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` -Input,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` -Input,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` -Input,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` -Input,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` -Input,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` -Input,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` -Input,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` -Input,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` -Input,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` -Input,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` -Input,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` -Input,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` -Input,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` -Input,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` -Input,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` -Input,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` -Input,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` -Input,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` -Input,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` -Input,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` -Input,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` -Input,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` -Input,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` -Input,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` -Input,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` -Input,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,:ref:`overhangs` -Input,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` -Input,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` -Input,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` -Input,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` -Input,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` -Input,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` -Input,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` -Input,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` -Input,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` -Input,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` -Input,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` -Input,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` -Input,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` -Input,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` -Input,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` -Input,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` -Input,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` -Input,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` -Input,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` -Input,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` -Input,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` -Input,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` -Input,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` -Input,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` -Input,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` -Input,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,yes,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. -Input,yes,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,yes,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,yes,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,yes,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -Input,yes,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,yes,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -Input,yes,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,yes,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. -Input,yes,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. -Input,yes,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,yes,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. -Input,yes,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. -Output,yes,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area -Output,yes,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area -Output,yes,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" -Output,yes,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,yes,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,yes,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" -Output,yes,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" -Output,yes,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,yes,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,yes,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area -Output,yes,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,yes,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,yes,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,yes,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,yes,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,yes,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,yes,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,yes,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,yes,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" -Output,yes,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area -Output,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps -Output,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, -Output,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced -Output,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps -Output,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps -Output,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump -Output,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting -Output,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling -Output,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, -Output,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced -Output,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, -Output,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, -Output,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, -Output,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, -Output,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging -Output,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. -Output,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging -Output,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, -Output,yes,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,yes,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,yes,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,yes,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,yes,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,yes,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,yes,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. -Output,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. -Output,yes,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,yes,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -Output,yes,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,yes,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,yes,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,yes,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,yes,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,yes,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,yes,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,yes,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,yes,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,yes,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,yes,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,yes,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,yes,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,yes,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,yes,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,yes,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,yes,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,yes,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,yes,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,yes,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,yes,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,yes,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,yes,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,yes,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,yes,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,yes,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,yes,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,yes,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,yes,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,yes,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,yes,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,yes,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,yes,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,yes,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, -Calculated,yes,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,yes,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,yes,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,yes,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,yes,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy -Calculated,yes,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,yes,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,yes,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,yes,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,yes,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,yes,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,yes,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,yes,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,yes,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,yes,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,yes,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,yes,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,yes,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,yes,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,yes,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, -Calculated,yes,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,yes,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,yes,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,yes,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,yes,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,yes,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,yes,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. -Output,yes,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, -Output,yes,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,yes,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.fuel_oil.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.natural_gas.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,,,calc.weighted.emissions_reduction.propane.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Column Type,Import From Raw,Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes +Input,yes,yes,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,yes,yes,completed_status,,completed_status,,,,,,,,,, +Input,yes,yes,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,yes,yes,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,yes,yes,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. +Calculated,yes,yes,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Output,yes,yes,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" +Calculated,yes,yes,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,yes,yes,,,in.county_name,in.county_name,,,,,,,,,County name +Input,yes,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` +Input,yes,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` +Input,yes,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` +Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` +Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` +Input,yes,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` +Input,yes,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` +Input,yes,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` +Input,yes,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` +Input,yes,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` +Input,yes,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` +Input,yes,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` +Input,yes,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` +Input,yes,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` +Input,yes,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` +Input,yes,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` +Input,yes,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` +Input,yes,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` +Input,yes,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` +Input,yes,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` +Input,yes,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` +Input,yes,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` +Input,yes,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` +Input,yes,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` +Input,yes,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` +Input,yes,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` +Input,yes,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` +Input,yes,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` +Input,yes,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` +Input,yes,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` +Input,yes,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` +Input,yes,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` +Input,yes,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` +Input,yes,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` +Input,yes,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` +Input,yes,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` +Input,yes,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` +Input,yes,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` +Input,yes,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` +Input,yes,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` +Input,yes,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` +Input,yes,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` +Input,yes,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` +Input,yes,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` +Input,yes,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` +Input,yes,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` +Input,yes,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` +Input,yes,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` +Input,yes,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` +Input,yes,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` +Input,yes,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` +Input,yes,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` +Input,yes,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` +Input,yes,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` +Input,yes,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` +Input,yes,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` +Input,yes,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` +Input,yes,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` +Input,yes,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` +Input,yes,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` +Input,yes,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` +Input,yes,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` +Input,yes,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` +Input,yes,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` +Input,yes,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` +Input,yes,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` +Input,yes,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` +Input,yes,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` +Input,yes,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` +Input,yes,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` +Input,yes,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` +Input,yes,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` +Input,yes,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` +Input,yes,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` +Input,yes,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` +Input,yes,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` +Input,yes,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` +Input,yes,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` +Input,yes,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` +Input,yes,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` +Input,yes,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` +Input,yes,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` +Input,yes,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` +Input,yes,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` +Input,yes,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` +Input,yes,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` +Input,yes,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` +Input,yes,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` +Input,yes,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` +Input,yes,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` +Input,yes,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` +Input,yes,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` +Input,yes,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` +Input,yes,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` +Input,yes,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` +Input,yes,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` +Input,yes,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` +Input,yes,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` +Input,yes,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` +Input,yes,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` +Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` +Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` +Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` +Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` +Input,yes,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` +Input,yes,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` +Input,yes,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` +Input,yes,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` +Input,yes,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` +Input,yes,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` +Input,yes,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` +Input,yes,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` +Input,yes,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` +Input,yes,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` +Input,yes,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` +Input,yes,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` +Input,yes,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` +Input,yes,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` +Input,yes,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` +Input,yes,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` +Input,yes,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` +Input,yes,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` +Input,yes,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` +Input,yes,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` +Input,yes,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` +Input,yes,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` +Input,yes,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` +Input,yes,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` +Input,yes,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` +Input,yes,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` +Input,yes,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` +Input,yes,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` +Input,yes,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` +Input,yes,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` +Input,yes,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` +Input,yes,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` +Input,yes,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` +Input,yes,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,:ref:`overhangs` +Input,yes,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` +Input,yes,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` +Input,yes,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` +Input,yes,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` +Input,yes,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` +Input,yes,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` +Input,yes,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` +Input,yes,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` +Input,yes,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` +Input,yes,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` +Input,yes,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` +Input,yes,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` +Input,yes,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` +Input,yes,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` +Input,yes,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` +Input,yes,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` +Input,yes,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` +Input,yes,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` +Input,yes,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` +Input,yes,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` +Input,yes,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` +Input,yes,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` +Input,yes,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` +Input,yes,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` +Input,yes,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` +Input,yes,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,yes,yes,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,yes,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,yes,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,yes,yes,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,yes,yes,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,yes,yes,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,yes,yes,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +Input,yes,yes,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,yes,yes,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +Input,yes,yes,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. +Input,yes,yes,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,yes,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,yes,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. +Input,yes,yes,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. +Input,yes,yes,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. +Input,yes,yes,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. +Input,yes,yes,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Output,yes,yes,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area +Output,yes,yes,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area +Output,yes,yes,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" +Output,yes,yes,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,yes,yes,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,yes,yes,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" +Output,yes,yes,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" +Output,yes,yes,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,yes,yes,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,yes,yes,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area +Output,yes,yes,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,yes,yes,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,yes,yes,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,yes,yes,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,yes,yes,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,yes,yes,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,yes,yes,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,yes,yes,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,yes,yes,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" +Output,yes,yes,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area +Output,yes,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. +Output,yes,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,no,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,yes,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,yes,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps +Output,no,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, +Output,no,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced +Output,yes,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps +Output,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,yes,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps +Output,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump +Output,no,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,yes,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting +Output,yes,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling +Output,no,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, +Output,no,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,yes,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced +Output,yes,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, +Output,yes,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, +Output,no,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, +Output,no,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,yes,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,no,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, +Output,no,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,yes,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging +Output,yes,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. +Output,yes,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging +Output,yes,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,yes,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, +Output,yes,yes,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,yes,yes,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,yes,yes,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,yes,yes,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,yes,yes,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,yes,yes,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,yes,yes,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,yes,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,yes,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. +Output,yes,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. +Output,yes,yes,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,yes,yes,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,yes,yes,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,yes,yes,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,yes,yes,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,yes,yes,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,yes,yes,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,yes,yes,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,yes,yes,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,yes,yes,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,yes,yes,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,yes,yes,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,yes,yes,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,yes,yes,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,yes,yes,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,yes,yes,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,yes,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,yes,yes,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,yes,yes,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,yes,yes,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,yes,yes,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,yes,yes,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,yes,yes,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,yes,yes,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,yes,yes,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Calculated,yes,yes,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,no,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,yes,yes,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,yes,yes,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,yes,yes,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,yes,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.propane.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,,,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,,kg,,,,,,,, +Calculated,yes,yes,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,yes,yes,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,yes,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,yes,yes,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,yes,yes,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,yes,yes,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,yes,yes,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. +Output,yes,yes,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, +Output,yes,yes,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, +Calculated,yes,yes,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 249bb74717..770f237486 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -30,11 +30,12 @@ def remove_all_empty_cols(df: pl.DataFrame): cleaned_base = df.drop(all_empty_cols) return cleaned_base -def fix_site_energy_total(df: pl.LazyFrame, all_cols: List[str]): +def fix_site_energy_total(df: pl.LazyFrame): """ We need to do this because normally site energy total includes coal and wood but we don't want to include those. """ print("Removing coal and wood from energy totals") + all_cols = df.collect_schema().names() updated_cols = [] for suffix in ['', '_intensity', 'energy_consumption..kwh', 'energy_savings..kwh']: if f'out.electricity.total.{suffix}' not in df: @@ -51,12 +52,13 @@ def fix_site_energy_total(df: pl.LazyFrame, all_cols: List[str]): updated_cols.append(net_electricity_col.alias(f'out.electricity.net.{suffix}')) return df.with_columns(updated_cols) -def fix_all_fuels_emissions(df: pl.LazyFrame, all_cols: List[str]): +def fix_all_fuels_emissions(df: pl.LazyFrame): """ Recalculate out.all_fuels.total..co2e_kg columns using only the subset of fuel total columns. Basically, exclude wood from the all_fuel emissions. """ print("Removing coal and wood from emissions totals") + all_cols = df.collect_schema().names() all_fuel_cols = [] emissions_re = re.compile(r"^out\.emissions\.(electricity|natural_gas|fuel_oil|propane).(\w+)..co2e_kg") @@ -82,7 +84,8 @@ def get_col_maps(): pl.col("Published Annual Name").is_not_null() ).select( pl.col('Column Type').alias('column_type'), - pl.col('Include').alias('include'), + pl.col('Import From Raw').alias('import_from_raw'), + pl.col('Publish In Full').alias('publish_in_full'), pl.col("Annual Name").alias('column_name'), pl.col("Published Annual Name").alias('published_name'), pl.col("ResStock To Published Annual Unit Conversion Factor").alias("conversion_factor") From ee5acca0e387f363f8f99feaddc32489755933c9 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Wed, 1 Oct 2025 03:39:27 -0600 Subject: [PATCH 06/82] Set applicability and don't drop empty energy cols Dropping empty energy consumption columns on a per-upgrade basis results in errors for fuel-switching upgrades. Also, set applicability for all buildings. --- .../resstockpostproc/process_bsb_results.py | 28 +++++++++------- .../resstockpostproc/process_metadata.py | 33 ++++--------------- 2 files changed, 23 insertions(+), 38 deletions(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index a5102322cb..c2a85edb38 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -38,33 +38,31 @@ def export_metadata_and_annual_results(raw_results_dir: str, raw_results_dir = setup_fsspec_filesystem(raw_results_dir, aws_profile_name) output_dir = setup_fsspec_filesystem(output_dir, aws_profile_name) - # output_path = Path(output_dir) - # output_path.mkdir(parents=True, exist_ok=True) + # Find the raw results files pqt_glob = f'{raw_results_dir["fs_path"]}/**/*.parquet' result_files = raw_results_dir['fs'].glob(pqt_glob) baseline_files = [f for f in result_files if "up00" in Path(f).name.lower()] upgrade_files = [f for f in result_files if "up00" not in Path(f).name.lower()] - upgrade_files = upgrade_files[0:1] # TODO ANDREW WUZ HERE remove this - + # Information used across upgrades upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) upgrade_foo_col_schema = get_upgrade_foo_col_schema(upgrade_files, raw_results_dir) sim_out_cache_dir = Path(f"{output_dir['fs_path']}/cached_simulation_outputs") # Process and cache the baseline simulation outputs - # if not baseline_files: - # print("Error: No baseline files found") - # sys.exit(1) - # if len(baseline_files) > 1: - # print("Error: More than one baseline file found") - # sys.exit(1) upgrade_id = 0 baseline_file = baseline_files[0] print(f"Processing baseline file: {baseline_file}") baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) failed_bldgs = get_failed_building_list(baseline_df) bs_pub_df = process_simulation_outputs( - failed_bldgs, baseline_df, None, baseline_df, upgrade_id, upgrade_renamer, upgrade_foo_col_schema + failed_bldgs, + baseline_df, + None, + baseline_df, + upgrade_id, + upgrade_renamer, + upgrade_foo_col_schema ) cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, bs_pub_df) @@ -79,7 +77,13 @@ def export_metadata_and_annual_results(raw_results_dir: str, print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id} {'*'*100}") upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) up_df = process_simulation_outputs( - failed_bldgs, baseline_df, bs_pub_df, upgrade_df, upgrade_id, upgrade_renamer, upgrade_foo_col_schema + failed_bldgs, + baseline_df, + bs_pub_df, + upgrade_df, + upgrade_id, + upgrade_renamer, + upgrade_foo_col_schema ) cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, up_df) upgrade_ids.sort() diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index db1ff8682a..916ad6c302 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -51,6 +51,7 @@ def process_simulation_outputs( # TODO move no-op functionality for baseline vs. upgrade inside functions, add is_baseline as argument df = upgrade_raw_df + df = set_baseline_applicability(df) if is_baseline else df df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df) if not is_baseline else df df = replace_missing_buildings_with_baseline(df, base_raw_df, upgrade_num) if not is_baseline else df df = downselect_and_rename_cols(df, col_maps) # Per sdr_column_definitions.csv @@ -60,12 +61,10 @@ def process_simulation_outputs( df = add_county_column(df) df = add_puma_column(df) df = add_baseline_upgrade_name_col(df) if is_baseline else df - df = set_baseline_applicability(df) if is_baseline else df df = add_upgrade_id_col(df, upgrade_num) df = rename_upgrades(df, upgrade_renamer) df = fix_site_energy_total(df) df = add_upgrade_foo_cols(df) - df = remove_unused_consumption_cols(df) df = add_panel_contraint_cols(df) df = fix_all_fuels_emissions(df) df = downselect_fuel_emissions_cols(df) @@ -155,7 +154,9 @@ def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: - cols_at_start = set(upgrade_df.collect_schema().names()) + print('Replacing buildings missing from the upgrade with baseline data') + # All buildings present in the upgrade_df are there because the upgrade was applicable to them + upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) upgrade_name_df = upgrade_df.select(pl.col("apply_upgrade.upgrade_name").first()) missing_bldgs_df = baseline_df.join( upgrade_df, @@ -164,23 +165,17 @@ def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_d ) missing_bldgs_df = missing_bldgs_df.with_columns( [ - pl.lit(False).alias("applicability"), - pl.lit(upgrade_id).alias("upgrade"), + pl.lit(False).alias("applicability"), # Missing buildings are missing b/c upgrade wasn't applicable ] ).drop("apply_upgrade.upgrade_name") missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") - - cols_at_end = set(upgrade_df.collect_schema().names()) - if not cols_at_start == cols_at_end: - new_cols = cols_at_end - cols_at_start - print(f'Added: {new_cols}') - return upgrade_df + def downselect_and_rename_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyFrame: print('Downselecting and renaming columns from raw simulation outputs per sdr_column_definitions.csv') - transformed_cols = [] + transformed_cols = ['applicability'] # Special case all_cols = df.collect_schema().names() for col_map in col_maps: if col_map["column_type"] not in ["Input", "Output"]: @@ -348,20 +343,6 @@ def col_name_to_savings(col_name: str) -> str: return converted_col_name -def remove_unused_consumption_cols(df: pl.LazyFrame) -> pl.LazyFrame: - print("Removing unused (all-zero) energy consumption columns") - empty_cols = [] - all_cols = df.collect_schema().names() - out_cols = [col for col in all_cols if 'energy_consumption' in col] - engy_df = df.select(out_cols).collect().sum() - for col, val in engy_df.to_dicts()[0].items(): - if val == 0: - empty_cols.append(col) - print(f'Dropping unused (all-zeroes) energy column: {col}') - - return df.drop(empty_cols) - - def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: print("Adding weighted columns") all_cols = df.collect_schema().names() From f11675d1bd51da0393d08eae0f1de003c95aaf06 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Wed, 1 Oct 2025 03:44:54 -0600 Subject: [PATCH 07/82] Adds base to upgrade col consistency check --- postprocessing/resstockpostproc/process_bsb_results.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index c2a85edb38..f0b5b2e128 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -65,6 +65,7 @@ def export_metadata_and_annual_results(raw_results_dir: str, upgrade_foo_col_schema ) cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, bs_pub_df) + base_cols = set(sorted(bs_pub_df.collect_schema().names())) # Process and cache the upgrade simulation outputs upgrade_ids = [] @@ -86,6 +87,9 @@ def export_metadata_and_annual_results(raw_results_dir: str, upgrade_foo_col_schema ) cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, up_df) + up_cols = set(sorted(up_df.collect_schema().names())) + if not base_cols == up_cols: + raise ValueError(f"Column set in baseline and upgrade don't match") upgrade_ids.sort() # Define the geographic partitions to export From 1ee9d794952a9179c1d8218d6ab541f2506bc709 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Wed, 1 Oct 2025 21:26:49 -0600 Subject: [PATCH 08/82] Modifies emissions col names --- .../resstockpostproc/process_bsb_results.py | 2 +- .../publication/sdr_column_definitions.csv | 120 +++++------------- postprocessing/resstockpostproc/utils.py | 2 +- 3 files changed, 32 insertions(+), 92 deletions(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index f0b5b2e128..473c30e95a 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -68,7 +68,7 @@ def export_metadata_and_annual_results(raw_results_dir: str, base_cols = set(sorted(bs_pub_df.collect_schema().names())) # Process and cache the upgrade simulation outputs - upgrade_ids = [] + upgrade_ids = [0] for upgrade_file in upgrade_files: up_info = re.search(r"up(\d+)", Path(upgrade_file).name) if up_info is None: diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 4075ff5283..64b44954b2 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -331,77 +331,77 @@ Output,yes,yes,report_simulation_output.peak_electricity_winter_total_w,W,out.qo Output,yes,yes,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. Output,yes,yes,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. Output,yes,yes,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only @@ -657,21 +657,6 @@ Calculated,yes,yes,,,out.emissions.propane.total..co2e_kg,,,,,,,,,, Calculated,yes,yes,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, Calculated,yes,yes,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, Calculated,yes,yes,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_mid_case_25..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_mid_case_15..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_25..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_15..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_25..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_15..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.aer_high_re_cost_avg..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.aer_low_re_cost_avg..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.all_fuels.aer_mid_case_avg..co2e_kg,,,,,,,,,, Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, @@ -702,21 +687,6 @@ Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng Calculated,yes,yes,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, Calculated,yes,yes,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_kg,,kg,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_kg,,kg,,,,,,,, Calculated,yes,yes,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, Calculated,yes,yes,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, Calculated,yes,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, @@ -923,39 +893,24 @@ Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.all_fuels.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, @@ -1009,21 +964,6 @@ Calculated,yes,yes,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu Calculated,yes,yes,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, Calculated,yes,yes,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, Calculated,yes,yes,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 770f237486..e61f424ef9 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -68,7 +68,7 @@ def fix_all_fuels_emissions(df: pl.LazyFrame): scenario2cols[match[2]].append(col) for scenario, cols in scenario2cols.items(): - new_col = f'out.emissions.all_fuels.{scenario}..co2e_kg' + new_col = f'out.emissions.total.{scenario}..co2e_kg' all_fuel_cols.append(pl.sum_horizontal(cols).alias(new_col)) return df.with_columns(all_fuel_cols) From 157920363adf7418f955c1bb86d2ba96321d30d1 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Thu, 2 Oct 2025 15:37:44 -0600 Subject: [PATCH 09/82] Adds intensity columns Adds energy consumption and energy savings intensity (per sqft) columns for use in SightGlass --- .../resstockpostproc/process_metadata.py | 35 +++- .../publication/sdr_column_definitions.csv | 174 ++++++++++-------- 2 files changed, 133 insertions(+), 76 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 916ad6c302..3276ac588b 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -74,6 +74,7 @@ def process_simulation_outputs( else: df = add_saving_cols(df, base_pub_df) + df = add_intensity_cols(df) df = add_weighted_cols(df) df = add_missing_upgrade_cols(df, upgrade_col_schema) df = downselect_and_order_pub_cols(df, col_maps) # Per sdr_column_definitions.csv @@ -294,6 +295,36 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame return df +def col_name_to_intensity(col_name: str, new_units=None) -> str: + col_name = col_name.replace('energy_consumption', 'energy_consumption_intensity') + col_name = col_name.replace('energy_savings', 'energy_savings_intensity') + if new_units is not None: + old_units = units_from_col_name(col_name) + col_name = col_name.replace(f'..{old_units}', f'..{new_units}') + + return col_name + + +def add_intensity_cols(df: pl.LazyFrame) -> pl.LazyFrame: + print("Adding intensity columns") + all_cols = df.collect_schema().names() + int_cols = [col for col in all_cols if 'out.' in col and ( + ".energy_consumption" in col or + ".energy_savings" in col + )] + + for col in int_cols: + new_units = "kwh_per_ft2" + wtd_col_name = col_name_to_intensity(col, new_units) + df = df.with_columns( + pl.col(col) + .truediv(pl.col("in.sqft..ft2")) + .alias(wtd_col_name) + ) + + return df + + def col_name_to_weighted(col_name: str, new_units=None) -> str: col_name = col_name.replace('out.', 'calc.') col_name = col_name.replace('calc.', 'calc.weighted.') @@ -347,8 +378,8 @@ def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: print("Adding weighted columns") all_cols = df.collect_schema().names() wtd_cols = [col for col in all_cols if 'out.' in col and ( - ".energy_consumption" in col or - ".energy_savings" in col or + ".energy_consumption." in col or + ".energy_savings." in col or ".emissions." in col or ".emissions_reduction." in col )] diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 64b44954b2..366bbf51ab 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -693,80 +693,106 @@ Calculated,yes,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.n Calculated,yes,yes,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, Calculated,yes,yes,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, Calculated,yes,yes,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,yes,yes,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, -Calculated,yes,yes,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, Calculated,yes,yes,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. From 29bdd9ec592e96e8cfc71a1417ac8ab1ea88ae81 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Fri, 3 Oct 2025 10:59:38 -0600 Subject: [PATCH 10/82] Sets col dtypes for SightGlass --- postprocessing/resstockpostproc/process_metadata.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 3276ac588b..e420e6fad3 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -77,6 +77,7 @@ def process_simulation_outputs( df = add_intensity_cols(df) df = add_weighted_cols(df) df = add_missing_upgrade_cols(df, upgrade_col_schema) + df = adjust_col_dtypes(df) df = downselect_and_order_pub_cols(df, col_maps) # Per sdr_column_definitions.csv df = df.sort("bldg_id") return df @@ -539,6 +540,13 @@ def add_missing_upgrade_cols(df: pl.LazyFrame, upgrade_col_schema: dict) -> pl.L return df +def adjust_col_dtypes(df: pl.LazyFrame) -> pl.LazyFrame: + print("Adjusting column dtypes") + # Upgrade ID must be Athena bigint (np.int64) + df = df.with_columns(pl.col("upgrade").cast(pl.Int64)) + return df + + def downselect_fuel_emissions_cols(df: pl.LazyFrame): """ From c892601103656b8575620e96889fd54eebb1bb51 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 7 Oct 2025 01:14:11 -0600 Subject: [PATCH 11/82] Disable some outputs --- .../resources/publication/sdr_column_definitions.csv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 366bbf51ab..e3356fea81 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -172,7 +172,7 @@ Input,yes,yes,build_existing_model.water_heater_location,,in.water_heater_locati Input,yes,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` Input,yes,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` Input,yes,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,yes,yes,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. Input,yes,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. Input,yes,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. Input,yes,yes,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." @@ -209,8 +209,8 @@ Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_se Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,yes,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. Input,yes,yes,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. Input,yes,yes,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. @@ -427,7 +427,7 @@ Output,yes,yes,report_simulation_output.electric_panel_load_permanent_spa_pump_w Output,yes,yes,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" Output,yes,yes,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump Output,yes,yes,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_.well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Output,yes,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump Input,yes,yes,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" From 4dbc10e7cd29eb600b15bce6cd338901efc906f2 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 7 Oct 2025 01:48:06 -0600 Subject: [PATCH 12/82] Makes output logging more accurate --- postprocessing/resstockpostproc/process_metadata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index e420e6fad3..1fa0bebc58 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -668,7 +668,7 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e for file_type in file_types: file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) - print(f"Queuing {file_path}") + print(f"Writing {file_path}") input_args = (geo_df, output_dir, file_type, file_path) write_geo_data(input_args) else: @@ -680,7 +680,7 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e for file_type in file_types: file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) - print(f"Queuing {file_path}") + print(f"Writing {file_path}") input_args = (up_df, output_dir, file_type, file_path) write_geo_data(input_args) From a229501d5240eb4bd58ff909269296e5efa06559 Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 7 Oct 2025 12:39:41 -0600 Subject: [PATCH 13/82] update Note column based on ResStock Technical Development Guide --- .../publication/sdr_column_definitions.csv | 326 +++++++++--------- 1 file changed, 163 insertions(+), 163 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index e3356fea81..9fe2154fb2 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -8,169 +8,169 @@ Calculated,yes,yes,,,applicability,applicability,,,,,,,,,Whether the upgrade is Output,yes,yes,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" Calculated,yes,yes,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country Calculated,yes,yes,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` -Input,yes,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` -Input,yes,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` -Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` -Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` -Input,yes,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` -Input,yes,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` -Input,yes,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` -Input,yes,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` -Input,yes,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` -Input,yes,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` -Input,yes,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` -Input,yes,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` -Input,yes,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` -Input,yes,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` -Input,yes,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` -Input,yes,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` -Input,yes,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` -Input,yes,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` -Input,yes,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` -Input,yes,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` -Input,yes,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` -Input,yes,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` -Input,yes,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` -Input,yes,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` -Input,yes,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` -Input,yes,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` -Input,yes,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` -Input,yes,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` -Input,yes,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` -Input,yes,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` -Input,yes,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` -Input,yes,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` -Input,yes,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` -Input,yes,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` -Input,yes,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` -Input,yes,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` -Input,yes,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` -Input,yes,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` -Input,yes,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` -Input,yes,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,:ref:`electric_panel_service_rating` -Input,yes,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_rating_bin` -Input,yes,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` -Input,yes,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` -Input,yes,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` -Input,yes,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` -Input,yes,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` -Input,yes,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` -Input,yes,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` -Input,yes,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` -Input,yes,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` -Input,yes,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` -Input,yes,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` -Input,yes,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` -Input,yes,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` -Input,yes,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` -Input,yes,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` -Input,yes,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` -Input,yes,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` -Input,yes,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` -Input,yes,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` -Input,yes,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` -Input,yes,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` -Input,yes,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` -Input,yes,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` -Input,yes,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` -Input,yes,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` -Input,yes,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` -Input,yes,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` -Input,yes,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` -Input,yes,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` -Input,yes,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` -Input,yes,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` -Input,yes,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` -Input,yes,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` -Input,yes,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` -Input,yes,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` -Input,yes,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` -Input,yes,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` -Input,yes,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` -Input,yes,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` -Input,yes,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` -Input,yes,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` -Input,yes,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` -Input,yes,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` -Input,yes,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` -Input,yes,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` -Input,yes,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` -Input,yes,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` -Input,yes,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` -Input,yes,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` -Input,yes,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` -Input,yes,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` -Input,yes,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` -Input,yes,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` -Input,yes,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` -Input,yes,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` -Input,yes,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` -Input,yes,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` -Input,yes,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` -Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` -Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` -Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` -Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` -Input,yes,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` -Input,yes,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` -Input,yes,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` -Input,yes,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` -Input,yes,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` -Input,yes,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` -Input,yes,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` -Input,yes,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` -Input,yes,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` -Input,yes,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` -Input,yes,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` -Input,yes,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` -Input,yes,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` -Input,yes,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` -Input,yes,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` -Input,yes,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` -Input,yes,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` -Input,yes,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` -Input,yes,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` -Input,yes,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` -Input,yes,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` -Input,yes,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` -Input,yes,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` -Input,yes,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` -Input,yes,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` -Input,yes,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` -Input,yes,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` -Input,yes,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` -Input,yes,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` -Input,yes,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` -Input,yes,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` -Input,yes,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` -Input,yes,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` -Input,yes,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,:ref:`overhangs` -Input,yes,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` -Input,yes,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` -Input,yes,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` -Input,yes,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` -Input,yes,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` -Input,yes,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` -Input,yes,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` -Input,yes,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` -Input,yes,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` -Input,yes,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` -Input,yes,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` -Input,yes,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` -Input,yes,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` -Input,yes,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` -Input,yes,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` -Input,yes,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` -Input,yes,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` -Input,yes,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` -Input,yes,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` -Input,yes,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` -Input,yes,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` -Input,yes,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` -Input,yes,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` -Input,yes,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` -Input,yes,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` +Input,yes,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. +Input,yes,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +Input,yes,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. +Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." +Input,yes,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. +Input,yes,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). +Input,yes,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. +Input,yes,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. +Input,yes,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. +Input,yes,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. +Input,yes,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. +Input,yes,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." +Input,yes,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. +Input,yes,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. +Input,yes,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." +Input,yes,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. +Input,yes,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. +Input,yes,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,"The presence of a clothes washer in the dwelling unit." +Input,yes,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. +Input,yes,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. +Input,yes,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. +Input,yes,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. +Input,yes,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. +Input,yes,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. +Input,yes,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. +Input,yes,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. +Input,yes,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. +Input,yes,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +Input,yes,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." +Input,yes,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +Input,yes,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." +Input,yes,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,"The presence and rated efficiency of the dishwasher." +Input,yes,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. +Input,yes,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. +Input,yes,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. +Input,yes,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +Input,yes,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. +Input,yes,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. +Input,yes,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. +Input,yes,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. +Input,yes,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. +Input,yes,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. +Input,yes,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. +Input,yes,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." +Input,yes,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. +Input,yes,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. +Input,yes,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." +Input,yes,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. +Input,yes,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. +Input,yes,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. +Input,yes,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." +Input,yes,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. +Input,yes,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. +Input,yes,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. +Input,yes,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." +Input,yes,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,"The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey." +Input,yes,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +Input,yes,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. +Input,yes,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. +Input,yes,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." +Input,yes,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. +Input,yes,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. +Input,yes,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. +Input,yes,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. +Input,yes,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. +Input,yes,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +Input,yes,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. +Input,yes,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. +Input,yes,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. +Input,yes,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. +Input,yes,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. +Input,yes,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. +Input,yes,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). +Input,yes,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. +Input,yes,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. +Input,yes,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. +Input,yes,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +Input,yes,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. +Input,yes,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. +Input,yes,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. +Input,yes,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. +Input,yes,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. +Input,yes,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. +Input,yes,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +Input,yes,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. +Input,yes,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. +Input,yes,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." +Input,yes,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit +Input,yes,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. +Input,yes,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. +Input,yes,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). +Input,yes,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). +Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. +Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. +Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. +Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. +Input,yes,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. +Input,yes,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. +Input,yes,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). +Input,yes,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. +Input,yes,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. +Input,yes,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. +Input,yes,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. +Input,yes,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. +Input,yes,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. +Input,yes,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. +Input,yes,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. +Input,yes,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." +Input,yes,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. +Input,yes,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. +Input,yes,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +Input,yes,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. +Input,yes,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +Input,yes,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. +Input,yes,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. +Input,yes,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` +Input,yes,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. +Input,yes,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. +Input,yes,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. +Input,yes,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. +Input,yes,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. +Input,yes,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. +Input,yes,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. +Input,yes,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. +Input,yes,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +Input,yes,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. +Input,yes,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. +Input,yes,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" +Input,yes,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +Input,yes,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. +Input,yes,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +Input,yes,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. +Input,yes,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. +Input,yes,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. +Input,yes,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). +Input,yes,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. +Input,yes,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +Input,yes,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. +Input,yes,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. +Input,yes,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. +Input,yes,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. +Input,yes,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +Input,yes,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. +Input,yes,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. +Input,yes,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. +Input,yes,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. +Input,yes,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +Input,yes,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." +Input,yes,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. +Input,yes,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +Input,yes,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. +Input,yes,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." +Input,yes,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. Input,yes,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. Input,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. Input,yes,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. From df67daaccf22661ad0b3b192c7474763c29449ea Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 7 Oct 2025 16:18:52 -0600 Subject: [PATCH 14/82] notes --- .../resources/publication/sdr_column_definitions.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 9fe2154fb2..ce386de78c 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,6 +1,6 @@ Column Type,Import From Raw,Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes Input,yes,yes,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). -Input,yes,yes,completed_status,,completed_status,,,,,,,,,, +Input,yes,yes,completed_status,,completed_status,,,,,,,,,,The simulation status. Input,yes,yes,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number Input,yes,yes,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. Input,yes,yes,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. From bf61dc68006f352e3d3b1b6220fb326c8219bdee Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 8 Oct 2025 10:23:47 -0600 Subject: [PATCH 15/82] set no for some variables in the Publish in Full column --- .../publication/sdr_column_definitions.csv | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index ce386de78c..e51f97b523 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -175,24 +175,24 @@ Input,yes,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage Input,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. Input,yes,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. Input,yes,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. -Input,yes,yes,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,yes,yes,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,yes,yes,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,yes,yes,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,yes,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,yes,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,yes,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. Input,yes,yes,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." Input,yes,yes,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." Input,yes,yes,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. Input,yes,yes,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." Input,yes,yes,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,yes,yes,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,yes,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." @@ -201,12 +201,12 @@ Input,yes,yes,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in Input,yes,yes,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,yes,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." Input,yes,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." Input,yes,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." From ca2bd360c4b83c480ec1e7dee367e485cf563b7f Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 8 Oct 2025 14:53:02 -0600 Subject: [PATCH 16/82] data dictionary --- .../resources/publication/data_dictionary.tsv | 846 +++++++++++++++++ .../resources/publication/data_enum_dict.py | 308 ++++++ .../publication/enumeration_dictionary.tsv | 883 ++++++++++++++++++ 3 files changed, 2037 insertions(+) create mode 100644 postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv create mode 100644 postprocessing/resstockpostproc/resources/publication/data_enum_dict.py create mode 100644 postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv new file mode 100644 index 0000000000..edf479d86a --- /dev/null +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -0,0 +1,846 @@ +field_name field_location units field_description +bldg_id metadata_and_annual n/a The building unit number (between 1 and the number of samples). +completed_status metadata_and_annual n/a The simulation status. +upgrade metadata_and_annual n/a The upgrade number +in.upgrade_name metadata_and_annual n/a User-specificed name that describes the upgrade. +weight metadata_and_annual n/a Number of buildings this simulation represents. +applicability metadata_and_annual n/a Whether the upgrade is applicable to the building. Will be always True for baseline. +in.sqft..ft2 metadata_and_annual ft2 "Floor Area, Conditioned" +in.representative_income metadata_and_annual usd Average representative income of the country +in.county_name metadata_and_annual n/a County name +in.ahs_region metadata_and_annual n/a The American Housing Survey region that the sample is located. +in.aiannh_area metadata_and_annual n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +in.area_median_income metadata_and_annual n/a Area median income of the household occupying the dwelling unit. +in.ashrae_iecc_climate_zone_2004 metadata_and_annual n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +in.ashrae_iecc_climate_zone_2004_sub_cz_split metadata_and_annual n/a "Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." +in.bathroom_spot_vent_hour metadata_and_annual n/a Bathroom spot ventilation daily start hour. +in.battery metadata_and_annual n/a The size of an onsite battery (not used in baseline models). +in.bedrooms metadata_and_annual n/a The number of bedrooms in the dwelling unit. +in.building_america_climate_zone metadata_and_annual n/a The Building America Climate Zone that the sample is located. +in.cec_climate_zone metadata_and_annual n/a The California Energy Commission Climate Zone that the sample is located. +in.ceiling_fan metadata_and_annual n/a Presence and energy usage of ceiling fans at medium speed. +in.census_division metadata_and_annual n/a The U.S. Census Division that the sample is located. +in.census_division_recs metadata_and_annual n/a "Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." +in.census_region metadata_and_annual n/a The U.S. Census Region that the sample is located. +in.city metadata_and_annual n/a The City that the sample is located. +in.clothes_dryer metadata_and_annual n/a "The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." +in.clothes_dryer_usage_level metadata_and_annual n/a Clothes dryer energy usage level multiplier. +in.clothes_washer metadata_and_annual n/a Presence and rated efficiency of the clothes washer. +in.clothes_washer_presence metadata_and_annual n/a The presence of a clothes washer in the dwelling unit. +in.clothes_washer_usage_level metadata_and_annual n/a Clothes washer energy usage level multiplier. +in.cooking_range metadata_and_annual n/a Presence and fuel type of the cooking range. +in.cooking_range_usage_level metadata_and_annual n/a Cooking range energy usage level multiplier. +in.cooling_unavailable_days metadata_and_annual n/a Number of days in a year the cooling system is unavailable. +in.cooling_setpoint metadata_and_annual n/a Baseline cooling setpoint with no offset applied. +in.cooling_setpoint_has_offset metadata_and_annual n/a Presence of a cooling setpoint offset. +in.cooling_setpoint_offset_magnitude metadata_and_annual n/a The magnitude of cooling setpoint offset. +in.cooling_setpoint_offset_period metadata_and_annual n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +in.corridor metadata_and_annual n/a Type of corridor attached to multi-family units. +in.county metadata_and_annual n/a The U.S. County that the sample is located. +in.county_and_puma metadata_and_annual n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +in.county_metro_status metadata_and_annual n/a "The Metro Status of the county that the sample is located, based on MSA and MicroSA." +in.custom_state metadata_and_annual n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +in.dehumidifier metadata_and_annual n/a "Presence, water removal rate, and humidity setpoint of the dehumidifier." +in.dishwasher metadata_and_annual n/a The presence and rated efficiency of the dishwasher. +in.dishwasher_usage_level metadata_and_annual n/a Dishwasher energy usage level multiplier. +in.door_area metadata_and_annual n/a Area of exterior doors. +in.doors metadata_and_annual n/a Exterior door material and properties. +in.duct_leakage_and_insulation metadata_and_annual n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +in.duct_location metadata_and_annual n/a Location of Duct System. +in.eaves metadata_and_annual n/a Depth of roof eaves. +in.electric_panel_service_rating..a metadata_and_annual amp The rating of electric panel in Ampere. +in.electric_panel_service_rating_bin..a metadata_and_annual amp The rating bin of electric panel in Ampere. +in.electric_vehicle_battery metadata_and_annual n/a The type of electric vehicle and battery range in miles. +in.electric_vehicle_charge_at_home metadata_and_annual n/a The percentage a household would or do charge their electric vehicle at home. +in.electric_vehicle_charger metadata_and_annual n/a Type of electric vehicle charger used at the dwelling unit. +in.electric_vehicle_miles_traveled metadata_and_annual n/a "The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." +in.electric_vehicle_outlet_access metadata_and_annual n/a The unit has an outlet within 20 feet of vehicle parking. +in.electric_vehicle_ownership metadata_and_annual n/a The dwelling unit owns an electric vehicle. +in.energystar_climate_zone_2023 metadata_and_annual n/a "Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." +in.federal_poverty_level metadata_and_annual n/a Federal poverty level of the household occupying the dwelling unit. +in.generation_and_emissions_assessment_region metadata_and_annual n/a The generation and carbon emissions assessment region that the sample is located in. +in.geometry_attic_type metadata_and_annual n/a The dwelling unit attic type. +in.geometry_building_horizontal_location_mf metadata_and_annual n/a "Location of the single-family attached unit horizontally within the building (left, middle, right)." +in.geometry_building_horizontal_location_sfa metadata_and_annual n/a "Location of the single-family attached unit horizontally within the building (left, middle, right)." +in.geometry_building_level_mf metadata_and_annual n/a "Location of the multi-family unit vertically within the building (bottom, middle, top)." +in.geometry_building_number_units_mf metadata_and_annual n/a The number of dwelling units in the multi-family building. +in.geometry_building_number_units_sfa metadata_and_annual n/a Number of units in the single-family attached building. +in.geometry_building_type_acs metadata_and_annual n/a The building type classification according to the U.S. Census American Community Survey. +in.geometry_building_type_height metadata_and_annual n/a "The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." +in.geometry_building_type_recs metadata_and_annual n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +in.geometry_floor_area metadata_and_annual n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +in.geometry_floor_area_bin metadata_and_annual n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +in.geometry_foundation_type metadata_and_annual n/a The type of foundation. +in.geometry_garage metadata_and_annual n/a The size of an attached garage. +in.geometry_space_combination metadata_and_annual n/a "Valid combinations of building type, building level mf, attic, foundation, and garage." +in.geometry_stories metadata_and_annual n/a The number of building stories. +in.geometry_stories_low_rise metadata_and_annual n/a Number of building stories for low-rise buildings. +in.geometry_story_bin metadata_and_annual n/a The building has more than 8 or less than 8 stories. +in.geometry_wall_exterior_finish metadata_and_annual n/a Wall siding material and color. +in.geometry_wall_type metadata_and_annual n/a The wall material used for thermal mass calculations of exterior walls. +in.ground_thermal_conductivity metadata_and_annual n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +in.has_pv metadata_and_annual n/a The dwelling unit has a rooftop photovoltaic system. +in.heating_fuel metadata_and_annual n/a The primary fuel used for heating the dwelling unit. +in.heating_unavailable_days metadata_and_annual n/a Number of days in a year the heating system is unavailable. +in.heating_setpoint metadata_and_annual n/a Baseline heating setpoint with no offset applied. +in.heating_setpoint_has_offset metadata_and_annual n/a Presence of a heating setpoint offset. +in.heating_setpoint_offset_magnitude metadata_and_annual n/a Magnitude of the heating setpoint offset. +in.heating_setpoint_offset_period metadata_and_annual n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +in.holiday_lighting metadata_and_annual n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). +in.hot_water_distribution metadata_and_annual n/a Type of distribution system and presence of hot water piping insulation. +in.hot_water_fixtures metadata_and_annual n/a Hot water fixture usage and flow levels. +in.household_has_tribal_persons metadata_and_annual n/a The household occupying the dwelling unit has at least one tribal person in the household. +in.hvac_cooling_autosizing_factor metadata_and_annual n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +in.hvac_cooling_efficiency metadata_and_annual n/a The presence and efficiency of primary cooling system in the dwelling unit. +in.hvac_cooling_partial_space_conditioning metadata_and_annual n/a The fraction of the finished floor area that the cooling system provides cooling. +in.hvac_cooling_type metadata_and_annual n/a The presence and type of primary cooling system in the dwelling unit. +in.hvac_has_ducts metadata_and_annual n/a The presence of ducts in the dwelling unit. +in.hvac_has_shared_system metadata_and_annual n/a The presence of an HVAC system shared between multiple dwelling units. +in.hvac_has_zonal_electric_heating metadata_and_annual n/a Presence of electric baseboard heating. +in.hvac_heating_autosizing_factor metadata_and_annual n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +in.hvac_heating_efficiency metadata_and_annual n/a The presence and efficiency of the primary heating system in the dwelling unit. +in.hvac_heating_type metadata_and_annual n/a The presence and type of the primary heating system in the dwelling unit. +in.hvac_heating_type_and_fuel metadata_and_annual n/a "The presence, type, and fuel of primary heating system." +in.hvac_secondary_heating_efficiency metadata_and_annual n/a The efficiency and type of the secondary heating system. +in.hvac_secondary_heating_fuel metadata_and_annual n/a Secondary Heating Fuel for the dwelling unit +in.hvac_secondary_heating_partial_space_conditioning metadata_and_annual n/a The fraction of heating load served by secondary heating system. +in.hvac_secondary_heating_type metadata_and_annual n/a The efficiency and type of the secondary heating system. +in.hvac_shared_efficiencies metadata_and_annual n/a The presence and efficiency of the shared HVAC system. +in.hvac_system_is_faulted metadata_and_annual n/a The presence of the HVAC system having a fault (not used). +in.hvac_system_is_scaled metadata_and_annual n/a Whether the HVAC system has been undersized or oversized (not used). +in.hvac_system_single_speed_ac_airflow metadata_and_annual n/a Single speed central and room air conditioner actual air flow rates. +in.hvac_system_single_speed_ac_charge metadata_and_annual n/a Central and room air conditioner deviation between design/installed charge. +in.hvac_system_single_speed_ashp_airflow metadata_and_annual n/a Single speed air source heat pump actual air flow rates. +in.hvac_system_single_speed_ashp_charge metadata_and_annual n/a Air source heat pump deviation between design/installed charge. +in.income metadata_and_annual n/a Income of the household occupying the dwelling unit. +in.income_recs_2015 metadata_and_annual n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +in.income_recs_2020 metadata_and_annual n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +in.infiltration metadata_and_annual n/a Total infiltration to the dwelling unit. +in.insulation_ceiling metadata_and_annual n/a Ceiling insulation level (between the living space and unconditioned attic). +in.insulation_floor metadata_and_annual n/a Floor insulation level. +in.insulation_foundation_wall metadata_and_annual n/a Foundation walls insulation level. +in.insulation_rim_joist metadata_and_annual n/a Insulation level for rim joists. +in.insulation_roof metadata_and_annual n/a Finished roof insulation level. +in.insulation_slab metadata_and_annual n/a Slab insulation level. +in.insulation_wall metadata_and_annual n/a Wall construction type and insulation level. +in.interior_shading metadata_and_annual n/a Type of window interior shading. +in.iso_rto_region metadata_and_annual n/a The independent system operator or regional transmission organization region that the sample is located. +in.lighting metadata_and_annual n/a "Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." +in.lighting_interior_use metadata_and_annual n/a Interior lighting usage relative to the national average. +in.lighting_other_use metadata_and_annual n/a Exterior and garage lighting usage relative to the national average. +in.location_region metadata_and_annual n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +in.mechanical_ventilation metadata_and_annual n/a Mechanical ventilation type and efficiency. +in.metropolitan_and_micropolitan_statistical_area metadata_and_annual n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +in.misc_extra_refrigerator metadata_and_annual n/a The presence and rated efficiency of the secondary refrigerator. +in.misc_freezer metadata_and_annual n/a The presence and rated efficiency of a standalone freezer. +in.misc_gas_fireplace metadata_and_annual n/a Presence of a gas fireplace.` +in.misc_gas_grill metadata_and_annual n/a Presence of a gas grill. +in.misc_gas_lighting metadata_and_annual n/a Presence of exterior gas lighting. +in.misc_hot_tub_spa metadata_and_annual n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. +in.misc_pool metadata_and_annual n/a The presence of a pool at the dwelling unit. +in.misc_pool_heater metadata_and_annual n/a The heating fuel of the pool heater if there is a pool. +in.misc_pool_pump metadata_and_annual n/a Presence and size of pool pump. +in.misc_well_pump metadata_and_annual n/a Presence of well pump according to the use of well for domestic water source. +in.natural_ventilation metadata_and_annual n/a Schedule of natural ventilation from windows. +in.neighbors metadata_and_annual n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +in.occupants metadata_and_annual n/a The number of occupants living in the dwelling unit. +in.orientation metadata_and_annual n/a Orientation of the front of the dwelling unit as it faces the street. +in.overhangs metadata_and_annual n/a "Presence, depth, and location of window overhangs" +in.plug_load_diversity metadata_and_annual n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +in.plug_loads metadata_and_annual n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. +in.puma metadata_and_annual n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +in.puma_metro_status metadata_and_annual n/a The public use microdata area metropolitan status that the dwelling unit is located. +in.pv_orientation metadata_and_annual n/a The orientation of the photovoltaic system. +in.pv_system_size metadata_and_annual n/a The size of the photovoltaic system. +in.radiant_barrier metadata_and_annual n/a Presence of radiant barrier in the attic (not modeled). +in.range_spot_vent_hour metadata_and_annual n/a Range spot ventilation daily start hour. +in.reeds_balancing_area metadata_and_annual n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +in.refrigerator metadata_and_annual n/a The presence and rated efficiency of the primary refrigerator. +in.refrigerator_usage_level metadata_and_annual n/a Refrigerator energy usage level multiplier. +in.roof_material metadata_and_annual n/a Roof material and color. +in.state metadata_and_annual n/a The U.S. State the sample is located. +in.state_metro_median_income metadata_and_annual n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +in.tenure metadata_and_annual n/a The tenancy (owner or renter) of the household occupying the dwelling unit. +in.usage_level metadata_and_annual n/a Usage of major appliances relative to the national average. +in.vacancy_status metadata_and_annual n/a The vacancy status (occupied or vacant) of the dwelling unit. +in.vintage metadata_and_annual n/a Time period in which the building was constructed. +in.vintage_acs metadata_and_annual n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +in.water_heater_efficiency metadata_and_annual n/a "The efficiency, type, and heating fuel of water heater." +in.water_heater_fuel metadata_and_annual n/a The water heater fuel type. +in.water_heater_in_unit metadata_and_annual n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +in.water_heater_location metadata_and_annual n/a location of water heater. +in.window_areas metadata_and_annual n/a "Window to wall ratios of the front, back, left, and right walls." +in.windows metadata_and_annual n/a Construction type and efficiency levels of windows. +in.air_leakage_to_outside_ach50 metadata_and_annual n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +in.applicable metadata_and_annual n/a The measure was applied to the workflow. +in.buildstock_csv_path metadata_and_annual n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +in.units_represented metadata_and_annual n/a The number of dwelling units this simulation represents. Should always be one. +in.simulation_control_run_period_begin_day_of_month metadata_and_annual n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +in.simulation_control_run_period_begin_month metadata_and_annual n/a "This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +in.simulation_control_run_period_calendar_year metadata_and_annual n/a "This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +in.simulation_control_run_period_end_day_of_month metadata_and_annual n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +in.simulation_control_run_period_end_month metadata_and_annual n/a "This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +in.simulation_control_timestep metadata_and_annual n/a Value must be a divisor of 60. +in.utility_bill_electricity_fixed_charges metadata_and_annual usd "Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +in.utility_bill_electricity_marginal_rates metadata_and_annual usd "Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +in.utility_bill_fuel_oil_fixed_charges metadata_and_annual usd "Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +in.utility_bill_fuel_oil_marginal_rates metadata_and_annual usd "Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +in.utility_bill_natural_gas_fixed_charges metadata_and_annual usd "Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +in.utility_bill_natural_gas_marginal_rates metadata_and_annual usd "Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +in.utility_bill_propane_fixed_charges metadata_and_annual usd "Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +in.utility_bill_propane_marginal_rates metadata_and_annual usd "Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +in.utility_bill_scenario_names metadata_and_annual n/a "Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +in.utility_bill_simple_filepaths metadata_and_annual n/a "Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +in.weather_file_city metadata_and_annual n/a City from the EPW weather file. +in.weather_file_latitude metadata_and_annual n/a Latitude from the EPW weather file. +in.weather_file_longitude metadata_and_annual n/a Longitude from the EPW weather file. +in.heating_unavailable_period metadata_and_annual n/a Heating unavailable period. +in.cooling_unavailable_period metadata_and_annual n/a Cooling unavailable period. +out.params.door_area..ft2 metadata_and_annual ft2 Door Area +out.params.duct_unconditioned_surface_area..ft2 metadata_and_annual ft2 Duct Unconditioned Surface Area +out.params.floor_area_attic..ft2 metadata_and_annual ft2 "Floor Area, Attic" +out.params.floor_area_attic_insulation_increase..ft2_delta_r_value metadata_and_annual r_value "Floor Area, Attic * Insulation Increase" +out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 metadata_and_annual ach_50 "Floor Area, Conditioned * Infiltration Reduction" +out.params.floor_area_foundation..ft2 metadata_and_annual ft2 "Floor Area, Foundation" +out.params.floor_area_lighting..ft2 metadata_and_annual ft2 "Floor Area, Lighting" +out.params.flow_rate_mechanical_ventilation..cfm metadata_and_annual cfm "Flow Rate, Mechanical Ventilation" +out.params.rim_joist_area_above_grade_exterior..ft2 metadata_and_annual ft2 "Rim Joist Area, Above-Grade, Exterior" +out.params.roof_area..ft2 metadata_and_annual ft2 Roof Area +out.params.size_cooling_system_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Cooling System Primary" +out.params.size_heat_pump_backup_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heat Pump Backup Primary" +out.params.size_heating_system_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heating System Primary" +out.params.size_heating_system_secondary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heating System Secondary" +out.params.size_water_heater..gal metadata_and_annual gal "Size, Water Heater" +out.params.slab_perimeter_exposed_conditioned..ft metadata_and_annual ft "Slab Perimeter, Exposed, Conditioned" +out.params.wall_area_above_grade_conditioned..ft2 metadata_and_annual ft2 "Wall Area, Above-Grade, Conditioned" +out.params.wall_area_above_grade_exterior..ft2 metadata_and_annual ft2 "Wall Area, Above-Grade, Exterior" +out.params.wall_area_below_grade..ft2 metadata_and_annual ft2 "Wall Area, Below-Grade" +out.params.window_area..ft2 metadata_and_annual ft2 Window Area +out.params.hvac_geothermal_loop_borehole_trench_count metadata_and_annual n/a Number of boreholes used for the geothermal heat pump system. +out.params.hvac_geothermal_loop_borehole_trench_length..ft metadata_and_annual ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +out.electricity.ceiling_fan.energy_consumption..kwh metadata_and_annual kwh +out.electricity.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh +out.electricity.clothes_washer.energy_consumption..kwh metadata_and_annual kwh +out.electricity.cooling_fans_pumps.energy_consumption..kwh metadata_and_annual kwh Supply fan (air distribution) or circulating pump (geothermal loop) +out.electricity.cooling.energy_consumption..kwh metadata_and_annual kwh Excludes fans/pumps +out.electricity.dishwasher.energy_consumption..kwh metadata_and_annual kwh +out.electricity.ev_charging.energy_consumption..kwh metadata_and_annual kwh +out.electricity.freezer.energy_consumption..kwh metadata_and_annual kwh +out.electricity.heating_fans_pumps.energy_consumption..kwh metadata_and_annual kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +out.electricity.heating_hp_bkup.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup fans/pumps +out.electricity.heating_hp_bkup_fa.energy_consumption..kwh metadata_and_annual kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +out.electricity.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup and fans/pumps +out.electricity.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh +out.electricity.permanent_spa_pump.energy_consumption..kwh metadata_and_annual kwh +out.electricity.hot_water.energy_consumption..kwh metadata_and_annual kwh Excludes recirc pump and solar thermal pump +out.electricity.hot_water_solar_th.energy_consumption..kwh metadata_and_annual kwh Non-zero only when using detailed (not simple) solar thermal inputs +out.electricity.lighting_exterior.energy_consumption..kwh metadata_and_annual kwh Includes exterior holiday lighting +out.electricity.lighting_garage.energy_consumption..kwh metadata_and_annual kwh +out.electricity.lighting_interior.energy_consumption..kwh metadata_and_annual kwh +out.electricity.mech_vent.energy_consumption..kwh metadata_and_annual kwh Excludes preheating/precooling +out.electricity.plug_loads.energy_consumption..kwh metadata_and_annual kwh "Excludes independently reported plug loads (e.g., well pump)" +out.electricity.pool_heater.energy_consumption..kwh metadata_and_annual kwh +out.electricity.pool_pump.energy_consumption..kwh metadata_and_annual kwh +out.electricity.pv.energy_consumption..kwh metadata_and_annual kwh Negative value for any power produced +out.electricity.range_oven.energy_consumption..kwh metadata_and_annual kwh +out.electricity.refrigerator.energy_consumption..kwh metadata_and_annual kwh +out.electricity.television.energy_consumption..kwh metadata_and_annual kwh +out.electricity.well_pump.energy_consumption..kwh metadata_and_annual kwh +out.fuel_oil.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup +out.fuel_oil.hot_water.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.fireplace.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.grill.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup +out.natural_gas.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.hot_water.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.lighting.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.pool_heater.energy_consumption..kwh metadata_and_annual kwh +out.natural_gas.range_oven.energy_consumption..kwh metadata_and_annual kwh +out.propane.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh +out.propane.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup +out.propane.hot_water.energy_consumption..kwh metadata_and_annual kwh +out.propane.range_oven.energy_consumption..kwh metadata_and_annual kwh +out.site_energy.net.energy_consumption..kwh metadata_and_annual kwh Subtracts any power produced by PV or generators. +out.site_energy.total.energy_consumption..kwh metadata_and_annual kwh Includes any battery charging/discharging +out.electricity.net.energy_consumption..kwh metadata_and_annual kwh Subtracts any power produced by PV or generators. +out.electricity.total.energy_consumption..kwh metadata_and_annual kwh Includes any battery charging/discharging +out.fuel_oil.total.energy_consumption..kwh metadata_and_annual kwh "Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +out.natural_gas.total.energy_consumption..kwh metadata_and_annual kwh +out.propane.total.energy_consumption..kwh metadata_and_annual kwh +out.hot_water.clothes_washer..gal metadata_and_annual gal +out.hot_water.dishwasher..gal metadata_and_annual gal +out.hot_water.distribution_waste..gal metadata_and_annual gal +out.hot_water.fixtures..gal metadata_and_annual gal Showers and faucets. +out.capacity.cooling..btu_per_hr metadata_and_annual btu_h +out.capacity.heat_pump_backup..btu_per_hr metadata_and_annual btu_h +out.capacity.heating..btu_per_hr metadata_and_annual btu_h +out.load.cooling.energy_delivered..kbtu metadata_and_annual kbtu Includes HVAC distribution losses. +out.load.heating.energy_delivered..kbtu metadata_and_annual kbtu Includes HVAC distribution losses. +out.load.hot_water.energy_delivered..kbtu metadata_and_annual kbtu Includes contributions by desuperheaters or solar thermal systems. +out.load.hot_water.energy_solar_thermal..kbtu metadata_and_annual kbtu Water heater solar thermal energy. +out.load.hot_water.energy_tank_losses..kbtu metadata_and_annual kbtu Water heater tank losses energy. +out.load.cooling.peak..kbtu_per_hr metadata_and_annual kbtu_hr Includes HVAC distribution losses. +out.load.heating.peak..kbtu_per_hr metadata_and_annual kbtu_hr Includes HVAC distribution losses. +out.qoi.electricity.maximum_daily_peak_summer..kw metadata_and_annual kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +out.qoi.electricity.maximum_daily_peak_winter..kw metadata_and_annual kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +out.unmet_hours.cooling..hr metadata_and_annual hr Number of hours where the cooling setpoint is not maintained. +out.unmet_hours.ev_driving..hr metadata_and_annual hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. +out.unmet_hours.heating..hr metadata_and_annual hr Number of hours where the heating setpoint is not maintained. +out.emissions.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.emissions.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" +out.emissions.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" +out.utility_bills.electricity_bill..usd metadata_and_annual usd Scenario annual total charges for electricity. +out.utility_bills.fuel_oil_bill..usd metadata_and_annual usd Scenario annual total charges for fuel oil. +out.utility_bills.natural_gas_bill..usd metadata_and_annual usd Scenario annual total charges for natural gas. +out.utility_bills.propane_bill..usd metadata_and_annual usd Scenario annual total charges for propane. +out.utility_bills.total_bill..usd metadata_and_annual usd Scenario annual total charges. +out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w metadata_and_annual w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp "Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp "Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +out.params.panel_load_clothes_dryer..w metadata_and_annual w "Electric load of clothes dryer, for electric only" +out.params.panel_load_cooling..w metadata_and_annual w "Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +out.params.panel_load_dishwasher..w metadata_and_annual w Electric load of dishwasher +out.params.panel_load_ev_charging..w metadata_and_annual w Electric load of electric vehicle charging equipment +out.params.panel_load_heating..w metadata_and_annual w "Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +out.params.panel_load_hot_water..w metadata_and_annual w "Electric load of water heater, for electric only" +out.params.panel_load_mech_vent..w metadata_and_annual w Electric load of mechanical ventilation +out.params.panel_load_other..w metadata_and_annual w "Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +out.params.panel_load_permanent_spa_heat..w metadata_and_annual w "Electric load of permanent spa heater, for electric only" +out.params.panel_load_permanent_spa_pump..w metadata_and_annual w Electric load of permanent spa pump +out.params.panel_load_pool_heater..w metadata_and_annual w "Electric load of pool heater, for electric only" +out.params.panel_load_pool_pump..w metadata_and_annual w Electric load of pool pump +out.params.panel_load_range_oven..w metadata_and_annual w "Electric load of range oven, for electric only" +out.params.panel_load_.well_pump..w metadata_and_annual n/a +in.electric_panel_breaker_space_total_count metadata_and_annual count Total breaker spaces on electric panel +out.params.panel_breaker_space_occupied_count metadata_and_annual count Total occupied breaker spaces on electric panel +out.params.panel_breaker_space_headroom_count metadata_and_annual count "Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +out.params.panel_breaker_space_clothes_dryer_count metadata_and_annual count Breaker spaces occupied by clothes dryer +out.params.panel_breaker_space_cooling_count metadata_and_annual count Breaker spaces occupied by space cooling +out.params.panel_breaker_space_dishwasher_count metadata_and_annual count Breaker spaces occupied by dishwasher +out.params.panel_breaker_space_ev_charging_count metadata_and_annual count Breaker spaces occupied by electric vehicle charging equipment +out.params.panel_breaker_space_heating_count metadata_and_annual count Breaker spaces occupied by space heating +out.params.panel_breaker_space_hot_water_count metadata_and_annual count Breaker spaces occupied by water heater +out.params.panel_breaker_space_mech_vent_count metadata_and_annual count Breaker spaces occupied by mechanical ventilation +out.params.panel_breaker_space_other_count metadata_and_annual count Breaker spaces occupied by other loads +out.params.panel_breaker_space_permanent_spa_heat_count metadata_and_annual count Breaker spaces occupied by permanent spa heater +out.params.panel_breaker_space_permanent_spa_pump_count metadata_and_annual count Breaker spaces occupied by permanent spa pump +out.params.panel_breaker_space_pool_heater_count metadata_and_annual count Breaker spaces occupied by pool heater +out.params.panel_breaker_space_pool_pump_count metadata_and_annual count Breaker spaces occupied by pool pump +out.params.panel_breaker_space_range_oven_count metadata_and_annual count Breaker spaces occupied by range oven +out.params.panel_breaker_space_well_pump_count metadata_and_annual count Breaker spaces occupied by well pump +out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w metadata_and_annual w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +out.params.panel_breaker_space_occupied_savings_count metadata_and_annual count Number of breaker spaces reduced from an energy measure +out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based metadata_and_annual bool "Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +out.params.panel_constraint_breaker_space metadata_and_annual bool "Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based metadata_and_annual categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +out.energy_burden..percentage metadata_and_annual percentage Percentage of income spent on energy +out.electricity.ceiling_fan.energy_savings..kwh metadata_and_annual kwh +out.electricity.clothes_dryer.energy_savings..kwh metadata_and_annual kwh +out.electricity.clothes_washer.energy_savings..kwh metadata_and_annual kwh +out.electricity.cooling_fans_pumps.energy_savings..kwh metadata_and_annual kwh +out.electricity.cooling.energy_savings..kwh metadata_and_annual kwh +out.electricity.dishwasher.energy_savings..kwh metadata_and_annual kwh +out.electricity.ev_charging.energy_savings..kwh metadata_and_annual kwh +out.electricity.freezer.energy_savings..kwh metadata_and_annual kwh +out.electricity.heating_fans_pumps.energy_savings..kwh metadata_and_annual kwh +out.electricity.heating_hp_bkup.energy_savings..kwh metadata_and_annual kwh +out.electricity.heating_hp_bkup_fa.energy_savings..kwh metadata_and_annual kwh +out.electricity.heating.energy_savings..kwh metadata_and_annual kwh +out.electricity.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh +out.electricity.permanent_spa_pump.energy_savings..kwh metadata_and_annual kwh +out.electricity.hot_water.energy_savings..kwh metadata_and_annual kwh +out.electricity.hot_water_solar_th.energy_savings..kwh metadata_and_annual kwh +out.electricity.lighting_exterior.energy_savings..kwh metadata_and_annual kwh +out.electricity.lighting_garage.energy_savings..kwh metadata_and_annual kwh +out.electricity.lighting_interior.energy_savings..kwh metadata_and_annual kwh +out.electricity.mech_vent.energy_savings..kwh metadata_and_annual kwh +out.electricity.plug_loads.energy_savings..kwh metadata_and_annual kwh +out.electricity.pool_heater.energy_savings..kwh metadata_and_annual kwh +out.electricity.pool_pump.energy_savings..kwh metadata_and_annual kwh +out.electricity.pv.energy_savings..kwh metadata_and_annual kwh +out.electricity.range_oven.energy_savings..kwh metadata_and_annual kwh +out.electricity.refrigerator.energy_savings..kwh metadata_and_annual kwh +out.electricity.television.energy_savings..kwh metadata_and_annual kwh +out.electricity.well_pump.energy_savings..kwh metadata_and_annual kwh +out.fuel_oil.heating.energy_savings..kwh metadata_and_annual kwh +out.fuel_oil.hot_water.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.clothes_dryer.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.fireplace.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.grill.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.heating.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.hot_water.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.lighting.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.pool_heater.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.range_oven.energy_savings..kwh metadata_and_annual kwh +out.propane.clothes_dryer.energy_savings..kwh metadata_and_annual kwh +out.propane.heating.energy_savings..kwh metadata_and_annual kwh +out.propane.hot_water.energy_savings..kwh metadata_and_annual kwh +out.propane.range_oven.energy_savings..kwh metadata_and_annual kwh +out.site_energy.net.energy_savings..kwh metadata_and_annual kwh +out.site_energy.total.energy_savings..kwh metadata_and_annual kwh +out.electricity.net.energy_savings..kwh metadata_and_annual kwh +out.electricity.total.energy_savings..kwh metadata_and_annual kwh +out.fuel_oil.total.energy_savings..kwh metadata_and_annual kwh +out.natural_gas.total.energy_savings..kwh metadata_and_annual kwh +out.propane.total.energy_savings..kwh metadata_and_annual kwh +out.load.cooling.energy_delivered_savings..kbtu metadata_and_annual kbtu +out.load.heating.energy_delivered_savings..kbtu metadata_and_annual kbtu +out.load.hot_water.energy_delivered_savings..kbtu metadata_and_annual kbtu +out.load.hot_water.energy_solar_thermal_savings..kbtu metadata_and_annual kbtu +out.load.hot_water.energy_tank_losses_savings..kbtu metadata_and_annual kbtu +out.load.cooling.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr +out.load.heating.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr +out.qoi.electricity.maximum_daily_peak_savings_summer..kw metadata_and_annual kw +out.qoi.electricity.maximum_daily_peak_savings_winter..kw metadata_and_annual kw +out.unmet_hours_reduction.cooling..hr metadata_and_annual hour +out.unmet_hours_reduction.heating..hr metadata_and_annual hour +out.emissions.fuel_oil.total..co2e_kg metadata_and_annual n/a +out.emissions.natural_gas.total..co2e_kg metadata_and_annual n/a +out.emissions.propane.total..co2e_kg metadata_and_annual n/a +out.emissions_reduction.fuel_oil.total..co2e_kg metadata_and_annual n/a +out.emissions_reduction.natural_gas.total..co2e_kg metadata_and_annual n/a +out.emissions_reduction.propane.total..co2e_kg metadata_and_annual n/a +out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg +out.emissions_reduction.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg +out.utility_bills.electricity_bill_savings..usd metadata_and_annual usd +out.utility_bills.fuel_oil_bill_savings..usd metadata_and_annual usd +out.utility_bills.natural_gas_bill_savings..usd metadata_and_annual usd +out.utility_bills.propane_bill_savings..usd metadata_and_annual usd +out.utility_bills.total_bill_savings..usd metadata_and_annual usd +out.energy_burden_savings..percentage metadata_and_annual percentage +out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.pv.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.television.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.television.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.propane.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.site_energy.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +out.site_energy.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 +upgrade.electric_vehicle_charger metadata_and_annual n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +upgrade.electric_vehicle_efficiency_increase metadata_and_annual n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +upgrade.electric_vehicle_ownership metadata_and_annual n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +upgrade.heating_fuel metadata_and_annual n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +upgrade.hvac_cooling_efficiency metadata_and_annual n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +upgrade.hvac_cooling_partial_space_conditioning metadata_and_annual n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +upgrade.hvac_heating_efficiency metadata_and_annual n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +upgrade.hvac_heating_type_and_fuel metadata_and_annual n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +upgrade.infiltration_reduction metadata_and_annual n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +upgrade.insulation_ceiling metadata_and_annual n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +upgrade.water_heater_efficiency metadata_and_annual n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +upgrade.water_heater_fuel metadata_and_annual n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +upgrade.hvac_detailed_performance_data metadata_and_annual n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +upgrade.demand_flexibility_electric_vehicle metadata_and_annual n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +upgrade.demand_flexibility_hvac metadata_and_annual n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +upgrade.demand_flexibility_random_shift metadata_and_annual n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +upgrade.duct_leakage_and_insulation metadata_and_annual n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +upgrade.infiltration metadata_and_annual n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +upgrade.insulation_wall metadata_and_annual n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +upgrade.windows metadata_and_annual n/a Only appears when at least one building has this upgrade. +calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.clothes_washer.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.cooling.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.dishwasher.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.ev_charging.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.freezer.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.hot_water.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_garage.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_interior.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.mech_vent.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.net.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.plug_loads.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pool_pump.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pv.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.range_oven.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.refrigerator.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.television.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.total.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.electricity.well_pump.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.heating.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.total.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.fireplace.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.grill.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.heating.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.hot_water.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.lighting.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.range_oven.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.total.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.propane.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.propane.heating.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.propane.hot_water.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.propane.range_oven.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.propane.total.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.site_energy.net.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.site_energy.total.energy_consumption..tbtu metadata_and_annual tbtu +calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions.propane.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.propane.total..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.electricity.ceiling_fan.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.clothes_washer.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.cooling.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.dishwasher.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.ev_charging.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.freezer.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.hot_water.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_exterior.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_garage.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.lighting_interior.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.mech_vent.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.net.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.plug_loads.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pool_heater.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pool_pump.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.pv.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.range_oven.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.refrigerator.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.television.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.total.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.electricity.well_pump.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.heating.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.hot_water.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.fuel_oil.total.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.fireplace.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.grill.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.heating.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.hot_water.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.lighting.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.pool_heater.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.range_oven.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.natural_gas.total.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.propane.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.propane.heating.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.propane.hot_water.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.propane.range_oven.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.propane.total.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.site_energy.net.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.site_energy.total.energy_savings..tbtu metadata_and_annual tbtu +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt +models_used timeseries_aggregates n/a +units_represented timeseries_aggregates n/a +out.electricity.ceiling_fan.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.clothes_washer.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.cooling.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.cooling_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.dishwasher.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.ev_charging.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.freezer.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.heating.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.heating_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.heating_hp_bkup_fa.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.hot_water.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.hot_water_solar_th.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.lighting_exterior.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.lighting_garage.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.lighting_interior.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.mech_vent.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.net.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.permanent_spa_pump.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.plug_loads.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.pool_heater.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.pool_pump.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.pv.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.range_oven.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.refrigerator.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.television.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.total.energy_consumption..kwh timeseries_aggregates n/a +out.electricity.well_pump.energy_consumption..kwh timeseries_aggregates n/a +out.fuel_oil.heating.energy_consumption..kwh timeseries_aggregates n/a +out.fuel_oil.hot_water.energy_consumption..kwh timeseries_aggregates n/a +out.fuel_oil.total.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.fireplace.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.grill.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.heating.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.hot_water.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.lighting.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.pool_heater.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.range_oven.energy_consumption..kwh timeseries_aggregates n/a +out.natural_gas.total.energy_consumption..kwh timeseries_aggregates n/a +out.propane.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a +out.propane.heating.energy_consumption..kwh timeseries_aggregates n/a +out.propane.hot_water.energy_consumption..kwh timeseries_aggregates n/a +out.propane.range_oven.energy_consumption..kwh timeseries_aggregates n/a +out.propane.total.energy_consumption..kwh timeseries_aggregates n/a +out.site_energy.net.energy_consumption..kwh timeseries_aggregates n/a +out.site_energy.total.energy_consumption..kwh timeseries_aggregates n/a +out.emissions.electricity.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a +out.emissions.electricity.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a +out.emissions.natural_gas.total..co2e_kg timeseries_aggregates n/a +out.emissions.propane.total..co2e_kg timeseries_aggregates n/a +out.emissions.fuel_oil.total..co2e_kg timeseries_aggregates n/a +out.emissions.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a +out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a +out.emissions.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a +out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a +out.emissions.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a +out.emissions.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a +out.load.cooling.energy_delivered..kbtu timeseries_aggregates n/a +out.load.heating.energy_delivered..kbtu timeseries_aggregates n/a +out.load.heating_heat_pump_backup..kbtu timeseries_aggregates n/a +out.load.hot_water.energy_delivered..kbtu timeseries_aggregates n/a +out.load.hot_water_solar_thermal..kbtu timeseries_aggregates n/a +out.load.hot_water_tank_losses..kbtu timeseries_aggregates n/a diff --git a/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py b/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py new file mode 100644 index 0000000000..f8615efbfb --- /dev/null +++ b/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py @@ -0,0 +1,308 @@ +import pandas as pd +from functools import reduce + +def data_dictionary(df_meta_up0, df_tsagg_up0, df_sdr): + """ + generate data dictionary based on released resstock baseline annual + and timeseries data and sdr_column_definitions.csv. + """ + + # metadata_and_annual_results column names, units, and description + col_df_meta = pd.DataFrame(df_meta_up0.columns, columns=["field_name"]) + col_df_meta['field_location'] = 'metadata_and_annual' + col_df_meta_sdr = df_sdr[['Published Annual Name', + 'Published Annual Unit', + 'Notes']].rename(columns={ + 'Published Annual Name': 'field_name', + 'Published Annual Unit': 'units', + 'Notes': 'field_description' + }) + df_meta = pd.merge( + col_df_meta, col_df_meta_sdr, on="field_name", how="left" + ) + + # timeseries_aggregates column names, units, and description + col_df_tsagg = pd.DataFrame(df_tsagg_up0.columns, columns=["field_name"]) + col_df_tsagg['field_location'] = 'timeseries_aggregates' + col_df_tsagg_sdr = df_sdr[['Published Timeseries Name', + 'Published Timeseries Unit', + 'Notes']].rename(columns={ + 'Published Timeseries Name': 'field_name', + 'Published Timeseries Unit': 'units', + 'Notes': 'field_description' + }) + df_tsagg = pd.merge(col_df_tsagg, col_df_tsagg_sdr, on="field_name", how="left") + + #combine metadata_and_annual_results and timeseries_aggregates + df_dict = pd.concat([df_meta, df_tsagg], ignore_index=True) + df_dict['units'] = df_dict['units'].fillna('n/a') + + return df_dict + + +def chunk_list(lst, n): + """Split list into chunks of size n""" + for i in range(0, len(lst), n): + yield lst[i:i+n] + + +def split_list(df): + """ + Split long list in the allowable_enumerations + column into chunks of size n + """ + ids_to_split = ["in.representative_income", "in.county_and_puma"] + chunk_size = 1000 + + rows = [] + for _, row in df.iterrows(): + if row["field_name"] in ids_to_split: + # break into chunks + for chunk in chunk_list(row["allowable_enumerations"], chunk_size): + rows.append({"field_name": row["field_name"], + "data_type": row["data_type"], + "allowable_enumerations": chunk}) + else: + # keep as is + rows.append({"field_name": row["field_name"], + "data_type": row["data_type"], + "allowable_enumerations":row["allowable_enumerations"]}) + + formating_df = pd.DataFrame(rows) + + return formating_df + + +def isfloat(string): + """try convert string values to float""" + try: + float(string) + return True + except: + return False + + +def convert_to_numeric(s): + """Converts string values to int or float values if possible""" + if not type(s) == str: + return s + + if s.isnumeric(): + return int(s) + elif isfloat(s): + return float(s) + else: + return s + + +def safe_key(x): + """Generate a safe sort key for mixed-type values.""" + if x is None: + return (2, 0) # None last + try: + return (0, float(x)) # numeric values + except (ValueError, TypeError): + return (1, str(x)) # strings + + +def detect_dtype(values): + """Detect the data type of a sequence of values.""" + vals = [v for v in values if v is not None] + lowered = {str(v).strip().lower() for v in vals} + + boolean_sets = [ + {"yes", "no"}, + {"true", "false"} + ] + if any(lowered.issubset(bs) for bs in boolean_sets): + return "bool" + + return str(pd.Series(vals).dtypes) + + +def convert_to_int(df): + """ + Convert the values in allowable_enumerations column to int + for specific fields identified by prefix matching. + """ + prefixes = ( + "in.electric_panel_service_rating..a", + "in.electric_panel_breaker_space_total_count", + "out.params.panel_breaker_space" + ) + + mask = df["field_name"].str.startswith(prefixes, na=False) + + df.loc[mask, "allowable_enumerations"] = df.loc[mask, "allowable_enumerations"].apply( + lambda lst: [int(x) if x not in (None, "None") else None for x in lst] + ) + + return df + + +def revise_data_type(df): + """Revise the data type assignments in a DataFrame based on field name""" + dtype_float_prefixes = ["in.representative_income", "out.", "calc.weighted"] + dtype_float_end_strs = ["charges", "rates", "fees"] + dtype_integer_end_strs = ["count", "..w", "..a"] + dtype_integer = ["in.electric_panel_service_rating..a", + "in.electric_panel_breaker_space_total_count", + "in.geometry_building_number_units_mf", + "in.geometry_building_number_units_sfa"] + dtype_boolean = ["out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based", + "out.params.panel_constraint_breaker_space"] + dtype_string = ["bldg_id", + "out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based"] + + df.loc[df["field_name"].str.startswith(tuple(dtype_float_prefixes), na=False), \ + "data_type"] = "float" + mask = df["field_name"].str.startswith("in.utility_bill", na=False) & \ + df["field_name"].str.endswith(tuple(dtype_float_end_strs), na=False) + df.loc[mask, "data_type"] = "float" + mask = df["field_name"].str.startswith("out.", na=False) & \ + df["field_name"].str.endswith(tuple(dtype_integer_end_strs), na=False) + df.loc[mask, "data_type"] = "integer" + df.loc[df["field_name"].isin(dtype_integer), "data_type"] = "integer" + df.loc[df["field_name"].isin(dtype_boolean), "data_type"] = "boolean" + df.loc[df["field_name"].isin(dtype_string), "data_type"] = "string" + + return df + + +def enum(df): + """get allowable enumerations for the input dataframe for each columns.""" + enums = { + col: [convert_to_numeric(s) for s in sorted(df[col].unique(), key=safe_key)] + for col in df.columns + } + enums_list = list(enums.values()) + dtypes = {k: detect_dtype(v) for k, v in enums.items()} + + df_enums = pd.DataFrame({'field_location': 'metadata_and_annual', + 'field_name':df.columns, + 'data_type': list(dtypes.values()), + 'allowable_enumerations': enums_list}) + + dtype_map = { + 'float64': 'float', + 'int64': 'integer', + 'object': 'string', + 'bool': 'boolean' + } + + df_enums['data_type'] = df_enums['data_type'].map(dtype_map) + df_enums = convert_to_int(df_enums) + df_enums = split_list(df_enums) + + return df_enums + + +def merge_dfs(dfs): + """ + Merge a list of DataFrames on 'field_name', combining 'data_type' and 'allowable_enumerations'. + + Rules: + - field_name is the same across all DataFrames. + - data_type: if any of the DataFrames has a non-boolean type, use that type; + if all are boolean, keep 'boolean'. + - allowable_enumerations: combine all lists, keep unique values, and sort them. + """ + + # Start with field_name from the first df + field_names = dfs[0]['field_name'] + merged = pd.DataFrame({'field_name': field_names}) + + # Combine data_type + def combine_dtype_fn(field): + types = [df.loc[df['field_name'] == field, 'data_type'].values[0] for df in dfs] + non_bool = [t for t in types if t != 'boolean'] + return non_bool[0] if non_bool else 'boolean' + merged['data_type'] = merged['field_name'].apply(combine_dtype_fn) + + # Combine allowable_enumerations + def combine_enums_fn(field): + vals = [] + for df in dfs: + vals.extend(df.loc[df['field_name'] == field, 'allowable_enumerations'].values[0]) + return sorted(set(vals), key=safe_key) + merged['allowable_enumerations'] = merged['field_name'].apply(combine_enums_fn) + + return merged + +def enum_dict(df_data_dict, df_meta_up0, dfs_meta_up, up_list): + """ + generate enumeration dictionary based on data dictionary, + released resstock baseline and upgrade annual results + """ + #add baseline unique values to data dictionary + df_meta_up0 = df_meta_up0.drop(columns=df_meta_up0.columns[ + df_meta_up0.columns.str.startswith(("out.", "calc.weighted", "bldg_id")) + ]) + df_baseline_enum = enum(df_meta_up0) + df_enum_dict = pd.merge(df_data_dict, df_baseline_enum, on="field_name", how="left") + + # add upgrade values to data dictionary + upgrade_dfs = [] + prefixes = ("upgrade", + "out.params.panel_breaker_space", + "out.params.panel_constraint") + for up in up_list: + filtered_df = dfs_meta_up[up].loc[:, dfs_meta_up[up].columns.str.startswith(prefixes)] + temp = enum(filtered_df) + upgrade_dfs.append(temp) + + upgrade_merged_df = merge_dfs(upgrade_dfs) + df_enum_dict = ( + df_enum_dict.merge(upgrade_merged_df, on="field_name", how="left", suffixes=("", "_new")) + .assign( + allowable_enumerations=lambda d: d["allowable_enumerations_new"].combine_first(d["allowable_enumerations"]), + data_type=lambda d: d["data_type_new"].combine_first(d["data_type"]) + ) + .drop(columns=["allowable_enumerations_new", "data_type_new", "field_description"]) + ) + df_enum_dict = revise_data_type(df_enum_dict) + + df_enum_dict = df_enum_dict.fillna({'data_type': 'n/a', 'allowable_enumerations': 'n/a'}) + df_enum_dict['allowable_enumerations'] = df_enum_dict['allowable_enumerations'].apply( + lambda x: "|".join(map(str, x)) if isinstance(x, (list, tuple)) else str(x) + ) + + return df_enum_dict + + +def main(): + df_sdr = pd.read_csv("sdr_column_definitions.csv") + df_meta_up0 = pd.read_parquet("metadata_and_annual_results/upgrade0.parquet") + df_tsagg_up0 = pd.read_parquet("timeseries_aggregates/up00.parquet") + + dfs_meta_up = {} + up_list = [0,1,2,3] + for up in up_list: + dfs_meta_up[up] = pd.read_parquet(f"metadata_and_annual_results/upgrade{up}.parquet") + + df_data_dict = data_dictionary(df_meta_up0, df_tsagg_up0, df_sdr) + df_data_dict.to_csv("data_dictionary.tsv", sep='\t', index=None) + + df_enum_dict = enum_dict(df_data_dict, df_meta_up0, dfs_meta_up, up_list) + df_enum_dict.to_csv("enumeration_dictionary.tsv", sep='\t', index=None) + + +main() +""" +To run this code, you need download relevant OEDI data from resstock_amy2018_release_1 +field_name column values come from baseline metadata_and_annual_results and timeseries_aggregates. + +field_location column values are assigned based on the source of the field name: +"metadata_and_annual" if the field name is from baseline metadata_and_annual_results +"timeseries_aggregates" if the field name is from timeseries_aggregates + +units column values are obtained from sdr_column_definitions.csv. + +field_description values are taken from sdr_column_definitions.csv. + +allowable_enumerations come from baseline metadata_and_annual_results +and upgrade metadata_and_annual_results. If a field represents a continuous +value (e.g., out.site_energy.net.energy_savings..kwh), enumerations are omitted. + +data_type is derived from allowable_enumerations. +""" \ No newline at end of file diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv new file mode 100644 index 0000000000..de6d8f2e31 --- /dev/null +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -0,0 +1,883 @@ +field_name field_location units data_type allowable_enumerations +bldg_id metadata_and_annual n/a string n/a +completed_status metadata_and_annual n/a string Success +upgrade metadata_and_annual n/a integer 0|1|2|3 +in.upgrade_name metadata_and_annual n/a string Baseline +weight metadata_and_annual n/a float 253.9036727 +applicability metadata_and_annual n/a boolean TRUE +in.sqft..ft2 metadata_and_annual ft2 float 273.0|298.0|322.0|623.0|625.0|634.0|854.0|872.0|881.0|1138.0|1207.0|1228.0|1678.0|1682.0|1698.0|2115.0|2152.0|2179.0|2648.0|2663.0|2678.0|3171.0|3228.0|3310.0|5587.0|6348.0|7414.0 +in.representative_income metadata_and_annual usd float 4.0|11.0|20.0|21.0|22.0|30.0|40.0|42.0|43.0|53.0|65.0|97.0|101.0|103.0|108.0|124.0|139.0|152.0|161.0|162.0|165.0|182.0|196.0|202.0|215.0|216.0|221.0|232.0|248.0|268.0|281.0|295.0|303.0|309.0|313.0|317.0|322.0|324.0|354.0|361.0|364.0|372.0|376.0|378.0|387.0|388.0|394.0|400.0|404.0|412.0|430.0|464.0|483.0|516.0|527.0|536.0|537.0|547.0|556.0|569.0|577.0|599.0|606.0|609.0|612.0|619.0|636.0|639.0|648.0|666.0|671.0|697.0|707.0|708.0|709.0|719.0|722.0|728.0|735.0|738.0|741.0|748.0|752.0|756.0|758.0|762.0|770.0|778.0|784.0|791.0|798.0|802.0|810.0|815.0|822.0|825.0|832.0|836.0|843.0|849.0|858.0|859.0|864.0|869.0|891.0|896.0|908.0|909.0|913.0|918.0|940.0|945.0|960.0|966.0|972.0|983.0|987.0|999.0|1001.0|1005.0|1012.0|1020.0|1023.0|1031.0|1048.0|1055.0|1061.0|1073.0|1076.0|1080.0|1107.0|1111.0|1135.0|1162.0|1181.0|1189.0|1212.0|1258.0|1266.0|1286.0|1288.0|1297.0|1313.0|1341.0|1350.0|1351.0|1354.0|1363.0|1374.0|1403.0|1405.0|1414.0|1441.0|1444.0|1448.0|1459.0|1475.0|1476.0|1490.0|1491.0|1502.0|1503.0|1508.0|1513.0|1547.0|1610.0|1616.0|1621.0|1654.0|1687.0|1707.0|1718.0|1729.0|1754.0|1764.0|1804.0|1818.0|1836.0|1838.0|1857.0|1868.0|1869.0|1877.0|1880.0|1889.0|1898.0|1901.0|1909.0|1910.0|1928.0|1933.0|1959.0|1980.0|2018.0|2020.0|2040.0|2057.0|2063.0|2075.0|2096.0|2107.0|2109.0|2141.0|2146.0|2150.0|2168.0|2172.0|2183.0|2201.0|2212.0|2215.0|2220.0|2232.0|2254.0|2269.0|2291.0|2300.0|2312.0|2320.0|2323.0|2336.0|2338.0|2340.0|2343.0|2352.0|2362.0|2373.0|2383.0|2424.0|2466.0|2467.0|2469.0|2470.0|2478.0|2485.0|2523.0|2531.0|2533.0|2544.0|2556.0|2573.0|2576.0|2578.0|2580.0|2626.0|2636.0|2641.0|2647.0|2669.0|2677.0|2682.0|2683.0|2701.0|2713.0|2727.0|2742.0|2766.0|2777.0|2778.0|2798.0|2805.0|2826.0|2848.0|2856.0|2877.0|2898.0|2921.0|2929.0|2953.0|2957.0|2981.0|2984.0|2992.0|3005.0|3006.0|3042.0|3066.0|3082.0|3090.0|3091.0|3101.0|3111.0|3124.0|3131.0|3146.0|3174.0|3182.0|3187.0|3259.0|3264.0|3293.0|3296.0|3343.0|3349.0|3374.0|3383.0|3414.0|3424.0|3428.0|3434.0|3435.0|3457.0|3479.0|3481.0|3486.0|3507.0|3511.0|3536.0|3543.0|3561.0|3586.0|3592.0|3598.0|3616.0|3617.0|3633.0|3645.0|3647.0|3649.0|3671.0|3681.0|3691.0|3713.0|3738.0|3744.0|3755.0|3775.0|3782.0|3788.0|3797.0|3816.0|3836.0|3843.0|3865.0|3886.0|3889.0|3899.0|3919.0|3920.0|3929.0|3940.0|3972.0|4023.0|4030.0|4041.0|4051.0|4060.0|4091.0|4114.0|4116.0|4125.0|4127.0|4133.0|4142.0|4149.0|4154.0|4166.0|4181.0|4187.0|4219.0|4233.0|4268.0|4271.0|4280.0|4292.0|4293.0|4323.0|4332.0|4361.0|4380.0|4429.0|4445.0|4507.0|4515.0|4538.0|4545.0|4546.0|4562.0|4573.0|4581.0|4588.0|4590.0|4598.0|4616.0|4619.0|4640.0|4647.0|4648.0|4662.0|4687.0|4732.0|4734.0|4735.0|4748.0|4752.0|4754.0|4778.0|4808.0|4842.0|4845.0|4852.0|4862.0|4869.0|4894.0|4898.0|4899.0|4902.0|4909.0|4951.0|4959.0|4970.0|4990.0|5001.0|5009.0|5035.0|5051.0|5056.0|5066.0|5081.0|5093.0|5104.0|5136.0|5143.0|5152.0|5158.0|5165.0|5187.0|5188.0|5192.0|5208.0|5211.0|5219.0|5229.0|5240.0|5253.0|5295.0|5305.0|5324.0|5327.0|5335.0|5349.0|5354.0|5363.0|5367.0|5377.0|5385.0|5389.0|5431.0|5440.0|5442.0|5455.0|5475.0|5484.0|5508.0|5510.0|5515.0|5516.0|5536.0|5539.0|5554.0|5565.0|5570.0|5606.0|5618.0|5657.0|5662.0|5692.0|5693.0|5695.0|5721.0|5725.0|5758.0|5769.0|5776.0|5827.0|5834.0|5859.0|5871.0|5879.0|5904.0|5905.0|5908.0|5919.0|5943.0|5960.0|5982.0|6040.0|6051.0|6071.0|6086.0|6101.0|6103.0|6129.0|6137.0|6151.0|6159.0|6180.0|6182.0|6189.0|6212.0|6245.0|6247.0|6263.0|6279.0|6292.0|6328.0|6334.0|6354.0|6375.0|6395.0|6422.0|6425.0|6433.0|6465.0|6475.0|6494.0|6519.0|6526.0|6537.0|6538.0|6560.0|6580.0|6586.0|6591.0|6601.0|6624.0|6644.0|6667.0|6686.0|6688.0|6699.0|6705.0|6710.0|6745.0|6748.0|6750.0|6756.0|6764.0|6768.0|6784.0|6795.0|6834.0|6859.0|6866.0|6869.0|6870.0|6900.0|6913.0|6915.0|6952.0|6958.0|6966.0|6970.0|6978.0|6982.0|7011.0|7021.0|7066.0|7071.0|7084.0|7117.0|7119.0|7131.0|7139.0|7149.0|7175.0|7199.0|7214.0|7220.0|7233.0|7271.0|7273.0|7304.0|7324.0|7347.0|7354.0|7374.0|7383.0|7407.0|7408.0|7426.0|7455.0|7488.0|7500.0|7509.0|7515.0|7520.0|7529.0|7542.0|7578.0|7593.0|7600.0|7621.0|7633.0|7672.0|7675.0|7698.0|7715.0|7730.0|7778.0|7780.0|7805.0|7839.0|7879.0|7883.0|7887.0|7921.0|7944.0|7952.0|7980.0|8010.0|8015.0|8045.0|8051.0|8057.0|8081.0|8091.0|8108.0|8118.0|8148.0|8158.0|8180.0|8182.0|8204.0|8212.0|8244.0|8252.0|8263.0|8279.0|8297.0|8331.0|8341.0|8352.0|8362.0|8373.0|8374.0|8385.0|8406.0|8416.0|8436.0|8481.0|8502.0|8514.0|8520.0|8536.0|8543.0|8564.0|8586.0|8590.0|8609.0|8612.0|8626.0|8644.0|8648.0|8654.0|8664.0|8694.0|8716.0|8751.0|8752.0|8779.0|8784.0|8788.0|8795.0|8802.0|8808.0|8809.0|8819.0|8827.0|8859.0|8869.0|8871.0|8910.0|8912.0|8917.0|8964.0|8968.0|8974.0|9018.0|9069.0|9075.0|9091.0|9125.0|9176.0|9184.0|9192.0|9238.0|9253.0|9271.0|9281.0|9293.0|9314.0|9334.0|9339.0|9386.0|9400.0|9415.0|9440.0|9446.0|9454.0|9532.0|9554.0|9562.0|9592.0|9596.0|9597.0|9616.0|9672.0|9702.0|9724.0|9757.0|9797.0|9798.0|9808.0|9812.0|9832.0|9875.0|9886.0|9899.0|9914.0|9941.0|9960.0|9988.0|10005.0|10019.0|10090.0|10091.0|10109.0|10146.0|10157.0|10170.0|10198.0|10211.0|10229.0|10230.0|10293.0|10301.0|10306.0|10314.0|10324.0|10325.0|10372.0|10380.0|10404.0|10412.0|10418.0|10437.0|10441.0|10466.0|10483.0|10498.0|10513.0|10520.0|10521.0|10586.0|10588.0|10593.0|10595.0|10607.0|10624.0|10627.0|10645.0|10653.0|10662.0|10673.0|10686.0|10693.0|10697.0|10719.0|10727.0|10728.0|10735.0|10756.0|10768.0|10770.0|10788.0|10817.0|10830.0|10839.0|10861.0|10862.0|10882.0|10910.0|10913.0|10933.0|10950.0|10968.0|10971.0|10978.0|10995.0|10999.0|11000.0|11001.0|11052.0|11071.0|11075.0|11122.0|11132.0|11140.0|11153.0|11162.0|11164.0|11165.0|11213.0|11222.0|11242.0|11243.0|11263.0|11271.0|11274.0|11284.0|11291.0|11314.0|11315.0|11323.0|11344.0|11345.0|11346.0|11365.0|11379.0|11390.0|11400.0|11419.0|11420.0|11474.0|11540.0|11552.0|11593.0|11608.0|11611.0|11617.0|11624.0|11669.0|11700.0|11705.0|11717.0|11718.0|11730.0|11738.0|11758.0|11763.0|11768.0|11781.0|11789.0|11808.0|11819.0|11840.0|11869.0|11882.0|11894.0|11896.0|11910.0|11916.0|11917.0|11920.0|11928.0|11949.0|11965.0|11973.0|11993.0|12021.0|12022.0|12023.0|12033.0|12058.0|12068.0|12069.0|12071.0|12086.0|12088.0|12102.0|12108.0|12122.0|12128.0|12130.0|12152.0|12166.0|12171.0|12195.0|12203.0|12209.0|12210.0|12223.0|12243.0|12273.0|12274.0|12295.0|12318.0|12326.0|12328.0|12339.0|12345.0|12371.0|12394.0|12423.0|12425.0|12426.0|12440.0|12445.0|12468.0|12495.0|12512.0|12516.0|12523.0|12526.0|12542.0|12560.0|12581.0|12604.0|12613.0|12627.0|12640.0|12642.0|12643.0|12666.0|12675.0|12687.0|12706.0|12708.0|12713.0|12719.0|12756.0|12761.0|12774.0|12790.0|12810.0|12836.0|12857.0|12903.0|12926.0|12929.0|12930.0|12934.0|12957.0|12961.0|12976.0|13000.0|13019.0|13045.0|13049.0|13084.0|13099.0|13107.0|13141.0|13150.0|13171.0|13182.0|13183.0|13203.0|13205.0|13214.0|13225.0|13235.0|13258.0|13263.0|13275.0|13283.0|13285.0|13290.0|13311.0|13312.0|13321.0|13336.0|13350.0|13361.0|13365.0|13388.0|13393.0|13398.0|13404.0|13423.0|13426.0|13460.0|13463.0|13466.0|13471.0|13478.0|13485.0|13488.0|13506.0|13509.0|13533.0|13560.0|13576.0|13588.0|13590.0|13605.0|13614.0|13615.0|13618.0|13623.0|13633.0|13637.0|13646.0|13665.0|13667.0|13687.0|13697.0|13700.0|13708.0 +in.representative_income metadata_and_annual usd float 13710.0|13718.0|13722.0|13731.0|13738.0|13740.0|13750.0|13754.0|13783.0|13794.0|13795.0|13822.0|13826.0|13830.0|13839.0|13847.0|13851.0|13864.0|13868.0|13876.0|13883.0|13894.0|13910.0|13921.0|13925.0|13928.0|13938.0|13940.0|13955.0|13966.0|14000.0|14007.0|14026.0|14027.0|14041.0|14046.0|14051.0|14058.0|14061.0|14062.0|14090.0|14094.0|14101.0|14109.0|14110.0|14131.0|14137.0|14142.0|14154.0|14170.0|14187.0|14191.0|14214.0|14219.0|14234.0|14238.0|14243.0|14255.0|14262.0|14265.0|14269.0|14277.0|14286.0|14291.0|14294.0|14295.0|14343.0|14363.0|14384.0|14395.0|14424.0|14438.0|14441.0|14445.0|14448.0|14478.0|14485.0|14491.0|14543.0|14554.0|14556.0|14599.0|14607.0|14659.0|14688.0|14750.0|14764.0|14807.0|14849.0|14853.0|14910.0|14921.0|14956.0|14997.0|15019.0|15051.0|15060.0|15081.0|15136.0|15137.0|15162.0|15178.0|15234.0|15292.0|15322.0|15342.0|15351.0|15419.0|15440.0|15451.0|15455.0|15457.0|15472.0|15492.0|15559.0|15560.0|15565.0|15572.0|15575.0|15586.0|15596.0|15602.0|15606.0|15635.0|15657.0|15661.0|15667.0|15671.0|15672.0|15678.0|15703.0|15758.0|15769.0|15781.0|15782.0|15819.0|15828.0|15839.0|15850.0|15851.0|15869.0|15872.0|15903.0|15920.0|15939.0|15957.0|15960.0|15966.0|15967.0|15991.0|16002.0|16006.0|16008.0|16009.0|16048.0|16051.0|16066.0|16093.0|16099.0|16118.0|16143.0|16152.0|16154.0|16163.0|16172.0|16178.0|16185.0|16193.0|16199.0|16204.0|16209.0|16215.0|16225.0|16241.0|16251.0|16263.0|16269.0|16272.0|16282.0|16287.0|16336.0|16337.0|16344.0|16347.0|16349.0|16355.0|16357.0|16359.0|16388.0|16415.0|16423.0|16425.0|16427.0|16452.0|16456.0|16463.0|16465.0|16467.0|16483.0|16488.0|16496.0|16503.0|16509.0|16521.0|16526.0|16531.0|16532.0|16547.0|16553.0|16557.0|16585.0|16596.0|16597.0|16607.0|16637.0|16647.0|16654.0|16662.0|16667.0|16677.0|16692.0|16710.0|16713.0|16724.0|16746.0|16756.0|16757.0|16767.0|16769.0|16772.0|16790.0|16800.0|16801.0|16812.0|16823.0|16831.0|16843.0|16853.0|16862.0|16864.0|16874.0|16884.0|16895.0|16941.0|16950.0|16963.0|16967.0|16970.0|16977.0|16979.0|16985.0|17015.0|17035.0|17039.0|17064.0|17068.0|17072.0|17102.0|17106.0|17122.0|17132.0|17143.0|17172.0|17190.0|17203.0|17213.0|17222.0|17226.0|17263.0|17273.0|17281.0|17282.0|17288.0|17334.0|17354.0|17369.0|17390.0|17395.0|17401.0|17412.0|17415.0|17417.0|17431.0|17443.0|17474.0|17496.0|17497.0|17504.0|17507.0|17554.0|17586.0|17596.0|17605.0|17611.0|17627.0|17644.0|17648.0|17664.0|17678.0|17698.0|17712.0|17717.0|17719.0|17769.0|17779.0|17819.0|17876.0|17882.0|17884.0|17886.0|17888.0|17900.0|17917.0|17927.0|17928.0|17930.0|17936.0|17960.0|17969.0|17980.0|17981.0|17999.0|18001.0|18023.0|18033.0|18034.0|18078.0|18132.0|18140.0|18142.0|18152.0|18154.0|18167.0|18195.0|18213.0|18245.0|18248.0|18260.0|18267.0|18292.0|18324.0|18340.0|18350.0|18359.0|18363.0|18369.0|18379.0|18385.0|18389.0|18396.0|18410.0|18419.0|18455.0|18476.0|18486.0|18498.0|18508.0|18561.0|18566.0|18571.0|18587.0|18605.0|18613.0|18638.0|18649.0|18669.0|18672.0|18688.0|18700.0|18721.0|18751.0|18772.0|18774.0|18791.0|18865.0|18878.0|18890.0|18892.0|18898.0|18908.0|18957.0|18983.0|18991.0|19001.0|19004.0|19007.0|19014.0|19016.0|19038.0|19041.0|19061.0|19067.0|19072.0|19082.0|19088.0|19092.0|19099.0|19193.0|19226.0|19227.0|19232.0|19233.0|19247.0|19257.0|19288.0|19294.0|19327.0|19329.0|19333.0|19387.0|19394.0|19395.0|19412.0|19440.0|19460.0|19465.0|19481.0|19482.0|19484.0|19494.0|19500.0|19510.0|19535.0|19537.0|19567.0|19591.0|19597.0|19602.0|19644.0|19647.0|19657.0|19658.0|19686.0|19698.0|19708.0|19721.0|19728.0|19741.0|19752.0|19773.0|19774.0|19799.0|19826.0|19859.0|19870.0|19881.0|19886.0|19900.0|19907.0|19932.0|19988.0|20001.0|20010.0|20038.0|20070.0|20096.0|20102.0|20143.0|20181.0|20203.0|20205.0|20207.0|20213.0|20216.0|20278.0|20304.0|20310.0|20313.0|20354.0|20367.0|20396.0|20421.0|20423.0|20502.0|20506.0|20529.0|20586.0|20597.0|20610.0|20629.0|20633.0|20650.0|20654.0|20671.0|20680.0|20732.0|20745.0|20769.0|20784.0|20809.0|20835.0|20838.0|20885.0|20890.0|20896.0|20900.0|20910.0|20986.0|21011.0|21013.0|21031.0|21039.0|21092.0|21104.0|21132.0|21142.0|21144.0|21155.0|21159.0|21177.0|21181.0|21198.0|21210.0|21213.0|21229.0|21238.0|21248.0|21254.0|21255.0|21281.0|21285.0|21286.0|21303.0|21314.0|21334.0|21341.0|21344.0|21355.0|21362.0|21383.0|21393.0|21394.0|21426.0|21436.0|21447.0|21454.0|21470.0|21509.0|21533.0|21544.0|21545.0|21547.0|21558.0|21562.0|21567.0|21577.0|21598.0|21617.0|21619.0|21631.0|21640.0|21641.0|21643.0|21652.0|21660.0|21683.0|21694.0|21698.0|21706.0|21712.0|21723.0|21724.0|21728.0|21746.0|21754.0|21779.0|21782.0|21785.0|21788.0|21789.0|21791.0|21798.0|21812.0|21824.0|21826.0|21831.0|21839.0|21852.0|21856.0|21867.0|21877.0|21883.0|21898.0|21916.0|21920.0|21961.0|21970.0|21971.0|21973.0|21988.0|21994.0|21999.0|22000.0|22027.0|22038.0|22049.0|22051.0|22059.0|22062.0|22070.0|22072.0|22073.0|22090.0|22093.0|22094.0|22107.0|22109.0|22115.0|22122.0|22132.0|22133.0|22142.0|22147.0|22150.0|22156.0|22173.0|22177.0|22178.0|22187.0|22200.0|22205.0|22209.0|22220.0|22223.0|22241.0|22249.0|22252.0|22258.0|22262.0|22264.0|22274.0|22279.0|22284.0|22286.0|22290.0|22310.0|22312.0|22322.0|22324.0|22333.0|22348.0|22349.0|22352.0|22365.0|22369.0|22382.0|22405.0|22414.0|22425.0|22428.0|22434.0|22435.0|22436.0|22439.0|22441.0|22446.0|22452.0|22456.0|22464.0|22473.0|22478.0|22488.0|22506.0|22517.0|22521.0|22523.0|22526.0|22527.0|22537.0|22547.0|22564.0|22569.0|22579.0|22585.0|22587.0|22589.0|22590.0|22608.0|22615.0|22617.0|22618.0|22620.0|22623.0|22625.0|22647.0|22650.0|22664.0|22674.0|22678.0|22695.0|22703.0|22708.0|22713.0|22728.0|22738.0|22743.0|22745.0|22754.0|22757.0|22777.0|22789.0|22798.0|22800.0|22816.0|22822.0|22829.0|22841.0|22846.0|22874.0|22878.0|22885.0|22898.0|22908.0|22919.0|22920.0|22930.0|22933.0|22940.0|22948.0|22949.0|22960.0|22961.0|22972.0|22981.0|22990.0|22991.0|23001.0|23008.0|23014.0|23025.0|23026.0|23041.0|23052.0|23053.0|23063.0|23064.0|23079.0|23080.0|23087.0|23096.0|23105.0|23154.0|23202.0|23208.0|23218.0|23219.0|23230.0|23231.0|23232.0|23233.0|23249.0|23254.0|23264.0|23276.0|23284.0|23293.0|23296.0|23305.0|23307.0|23310.0|23333.0|23334.0|23338.0|23348.0|23359.0|23412.0|23422.0|23433.0|23435.0|23443.0|23490.0|23501.0|23517.0|23527.0|23538.0|23540.0|23587.0|23623.0|23648.0|23662.0|23678.0|23684.0|23754.0|23791.0|23803.0|23814.0|23876.0|23900.0|23932.0|23938.0|23954.0|23978.0|23981.0|23986.0|23992.0|24007.0|24013.0|24024.0|24041.0|24045.0|24094.0|24136.0|24150.0|24203.0|24243.0|24260.0|24311.0|24343.0|24383.0|24404.0|24467.0|24474.0|24505.0|24547.0|24548.0|24572.0|24582.0|24636.0|24657.0|24689.0|24713.0|24743.0|24749.0|24753.0|24755.0|24797.0|24888.0|24904.0|24910.0|24951.0|24990.0|25036.0|25052.0|25064.0|25089.0|25102.0|25119.0|25132.0|25142.0|25153.0|25175.0|25181.0|25186.0|25208.0|25215.0|25254.0|25264.0|25283.0|25290.0|25310.0|25331.0|25355.0|25374.0|25391.0|25437.0|25441.0|25456.0|25458.0|25469.0|25516.0|25521.0|25548.0|25558.0|25580.0|25607.0|25658.0|25715.0|25720.0|25733.0|25763.0|25767.0|25828.0|25860.0|25943.0|25981.0|25993.0|25999.0|26009.0|26031.0|26035.0|26039.0|26042.0|26044.0|26049.0|26055.0|26062.0|26084.0|26092.0|26093.0|26095.0|26101.0|26147.0|26154.0|26163.0|26180.0|26186.0|26233.0|26256.0|26264.0|26277.0|26284.0|26302.0|26304.0|26323.0|26344.0|26363.0|26364.0|26365.0|26385.0|26397.0|26405.0|26415.0|26428.0|26466.0|26471.0|26476.0|26493.0|26496.0|26512.0|26523.0|26525.0|26537.0|26548.0|26567.0|26568.0|26570.0|26576.0|26580.0|26581.0|26586.0|26609.0|26610.0|26621.0|26622.0|26651.0|26656.0|26663.0|26668.0|26671.0|26687.0|26688.0|26714.0|26718.0|26733.0|26736.0|26742.0|26750.0|26751.0|26752.0|26755.0|26766.0|26769.0|26785.0|26794.0|26796.0|26818.0|26827.0|26828.0|26840.0|26847.0|26882.0|26890.0|26892.0|26893.0|26904.0|26925.0|26931.0|26934.0|26935.0|26936.0|26944.0|26952.0|26958.0|26971.0|26986.0|26993.0|27012.0|27014.0|27018.0|27024.0|27051.0|27072.0|27083.0|27087.0|27089.0|27094.0|27096.0|27104.0|27120.0|27128.0|27130.0|27136.0|27139.0|27145.0|27148.0|27159.0|27167.0|27173.0|27174.0|27180.0 +in.representative_income metadata_and_annual usd float 27188.0|27198.0|27212.0|27227.0|27232.0|27240.0|27260.0|27265.0|27287.0|27293.0|27319.0|27324.0|27336.0|27347.0|27349.0|27358.0|27369.0|27375.0|27385.0|27391.0|27394.0|27395.0|27398.0|27405.0|27415.0|27416.0|27419.0|27423.0|27427.0|27431.0|27444.0|27456.0|27459.0|27466.0|27476.0|27480.0|27483.0|27498.0|27510.0|27519.0|27523.0|27526.0|27537.0|27540.0|27541.0|27542.0|27552.0|27557.0|27567.0|27570.0|27577.0|27597.0|27599.0|27612.0|27617.0|27627.0|27654.0|27660.0|27661.0|27664.0|27669.0|27671.0|27678.0|27682.0|27683.0|27695.0|27698.0|27705.0|27734.0|27736.0|27746.0|27754.0|27787.0|27788.0|27791.0|27800.0|27805.0|27840.0|27842.0|27859.0|27867.0|27876.0|27879.0|27880.0|27887.0|27890.0|27898.0|27909.0|27947.0|27952.0|27954.0|27957.0|27964.0|27981.0|27995.0|28024.0|28028.0|28082.0|28086.0|28092.0|28097.0|28103.0|28107.0|28113.0|28114.0|28116.0|28125.0|28133.0|28146.0|28148.0|28158.0|28159.0|28186.0|28188.0|28211.0|28213.0|28222.0|28232.0|28234.0|28243.0|28255.0|28264.0|28285.0|28309.0|28310.0|28317.0|28330.0|28339.0|28363.0|28376.0|28385.0|28395.0|28422.0|28436.0|28446.0|28486.0|28492.0|28495.0|28506.0|28511.0|28524.0|28554.0|28582.0|28587.0|28617.0|28661.0|28666.0|28675.0|28695.0|28697.0|28707.0|28758.0|28771.0|28777.0|28789.0|28791.0|28794.0|28812.0|28860.0|28870.0|28880.0|28890.0|28916.0|28920.0|28932.0|28957.0|28963.0|28983.0|28991.0|28994.0|29000.0|29002.0|29032.0|29045.0|29048.0|29065.0|29090.0|29122.0|29128.0|29173.0|29190.0|29193.0|29223.0|29294.0|29318.0|29335.0|29396.0|29413.0|29424.0|29498.0|29499.0|29509.0|29520.0|29529.0|29603.0|29604.0|29615.0|29627.0|29635.0|29706.0|29735.0|29740.0|29778.0|29809.0|29811.0|29821.0|29845.0|29850.0|29900.0|29929.0|29950.0|29951.0|30015.0|30056.0|30057.0|30102.0|30118.0|30145.0|30162.0|30164.0|30170.0|30180.0|30203.0|30222.0|30250.0|30253.0|30267.0|30272.0|30318.0|30325.0|30335.0|30341.0|30361.0|30379.0|30427.0|30429.0|30444.0|30466.0|30506.0|30513.0|30531.0|30578.0|30593.0|30607.0|30632.0|30732.0|30764.0|30795.0|30812.0|30829.0|30841.0|30851.0|30885.0|30900.0|30901.0|30916.0|30933.0|30945.0|31005.0|31009.0|31011.0|31034.0|31036.0|31046.0|31079.0|31088.0|31111.0|31117.0|31118.0|31128.0|31130.0|31171.0|31174.0|31205.0|31213.0|31225.0|31227.0|31237.0|31239.0|31314.0|31315.0|31324.0|31345.0|31353.0|31355.0|31356.0|31364.0|31369.0|31385.0|31420.0|31428.0|31431.0|31442.0|31446.0|31452.0|31460.0|31476.0|31507.0|31545.0|31562.0|31571.0|31574.0|31618.0|31636.0|31649.0|31652.0|31665.0|31666.0|31668.0|31703.0|31719.0|31720.0|31728.0|31760.0|31766.0|31769.0|31774.0|31784.0|31786.0|31789.0|31797.0|31810.0|31813.0|31820.0|31825.0|31828.0|31849.0|31862.0|31872.0|31874.0|31878.0|31880.0|31892.0|31903.0|31910.0|31924.0|31933.0|31936.0|31975.0|31981.0|31983.0|31997.0|32003.0|32014.0|32016.0|32022.0|32057.0|32071.0|32072.0|32075.0|32078.0|32079.0|32092.0|32096.0|32101.0|32112.0|32148.0|32174.0|32181.0|32185.0|32202.0|32205.0|32207.0|32215.0|32224.0|32231.0|32233.0|32236.0|32237.0|32243.0|32247.0|32254.0|32257.0|32260.0|32271.0|32281.0|32284.0|32306.0|32310.0|32324.0|32329.0|32334.0|32369.0|32375.0|32376.0|32385.0|32388.0|32414.0|32415.0|32418.0|32425.0|32436.0|32466.0|32468.0|32476.0|32483.0|32496.0|32503.0|32504.0|32515.0|32517.0|32522.0|32524.0|32526.0|32527.0|32561.0|32566.0|32577.0|32587.0|32588.0|32615.0|32618.0|32630.0|32640.0|32645.0|32650.0|32658.0|32659.0|32676.0|32684.0|32693.0|32697.0|32699.0|32703.0|32708.0|32712.0|32714.0|32729.0|32741.0|32758.0|32792.0|32798.0|32831.0|32846.0|32847.0|32852.0|32874.0|32890.0|32909.0|32914.0|32924.0|32955.0|32965.0|33009.0|33019.0|33027.0|33032.0|33062.0|33073.0|33075.0|33114.0|33133.0|33163.0|33171.0|33212.0|33220.0|33234.0|33247.0|33277.0|33316.0|33320.0|33326.0|33332.0|33335.0|33343.0|33367.0|33379.0|33385.0|33386.0|33408.0|33430.0|33431.0|33436.0|33450.0|33451.0|33459.0|33483.0|33491.0|33494.0|33522.0|33536.0|33537.0|33541.0|33588.0|33624.0|33626.0|33688.0|33706.0|33718.0|33728.0|33739.0|33761.0|33814.0|33819.0|33841.0|33853.0|33910.0|33921.0|33935.0|33943.0|33959.0|33981.0|34029.0|34035.0|34038.0|34042.0|34061.0|34080.0|34095.0|34102.0|34117.0|34132.0|34143.0|34169.0|34243.0|34245.0|34251.0|34255.0|34294.0|34305.0|34328.0|34345.0|34361.0|34383.0|34395.0|34420.0|34436.0|34453.0|34480.0|34486.0|34496.0|34511.0|34565.0|34576.0|34581.0|34586.0|34591.0|34597.0|34611.0|34648.0|34657.0|34668.0|34697.0|34760.0|34771.0|34801.0|34802.0|34832.0|34834.0|34850.0|34878.0|34898.0|34907.0|34950.0|34951.0|34953.0|34966.0|34995.0|35007.0|35012.0|35101.0|35115.0|35160.0|35200.0|35213.0|35214.0|35223.0|35254.0|35276.0|35329.0|35332.0|35355.0|35371.0|35375.0|35378.0|35424.0|35426.0|35435.0|35440.0|35463.0|35500.0|35504.0|35522.0|35532.0|35548.0|35557.0|35585.0|35587.0|35605.0|35638.0|35645.0|35646.0|35657.0|35740.0|35742.0|35752.0|35762.0|35853.0|35860.0|35867.0|35871.0|35874.0|35921.0|35961.0|35977.0|35997.0|36029.0|36042.0|36052.0|36059.0|36062.0|36067.0|36078.0|36082.0|36090.0|36123.0|36148.0|36165.0|36182.0|36196.0|36202.0|36204.0|36264.0|36273.0|36280.0|36286.0|36293.0|36299.0|36304.0|36321.0|36335.0|36347.0|36358.0|36359.0|36385.0|36389.0|36426.0|36466.0|36487.0|36490.0|36498.0|36511.0|36513.0|36520.0|36547.0|36567.0|36594.0|36596.0|36626.0|36637.0|36668.0|36671.0|36688.0|36719.0|36725.0|36736.0|36740.0|36743.0|36749.0|36768.0|36769.0|36803.0|36819.0|36820.0|36845.0|36848.0|36855.0|36870.0|36875.0|36880.0|36911.0|36919.0|36926.0|36927.0|36933.0|36953.0|36978.0|37006.0|37013.0|37019.0|37029.0|37030.0|37033.0|37066.0|37072.0|37098.0|37113.0|37122.0|37132.0|37133.0|37137.0|37142.0|37146.0|37153.0|37158.0|37163.0|37168.0|37169.0|37173.0|37177.0|37194.0|37195.0|37202.0|37214.0|37222.0|37228.0|37246.0|37267.0|37269.0|37270.0|37274.0|37276.0|37291.0|37333.0|37339.0|37354.0|37359.0|37364.0|37369.0|37375.0|37384.0|37390.0|37401.0|37410.0|37416.0|37436.0|37442.0|37463.0|37476.0|37484.0|37512.0|37514.0|37527.0|37546.0|37557.0|37573.0|37575.0|37576.0|37578.0|37587.0|37621.0|37635.0|37646.0|37653.0|37658.0|37676.0|37678.0|37685.0|37689.0|37692.0|37694.0|37710.0|37712.0|37723.0|37732.0|37742.0|37755.0|37763.0|37771.0|37774.0|37784.0|37786.0|37787.0|37818.0|37829.0|37873.0|37881.0|37891.0|37906.0|37923.0|37951.0|37966.0|37971.0|37976.0|37979.0|37987.0|38000.0|38002.0|38008.0|38012.0|38020.0|38052.0|38061.0|38062.0|38071.0|38140.0|38143.0|38162.0|38177.0|38183.0|38194.0|38229.0|38248.0|38267.0|38284.0|38314.0|38323.0|38324.0|38329.0|38335.0|38355.0|38360.0|38363.0|38396.0|38406.0|38410.0|38429.0|38433.0|38487.0|38493.0|38504.0|38507.0|38514.0|38515.0|38524.0|38525.0|38537.0|38573.0|38598.0|38603.0|38605.0|38607.0|38608.0|38616.0|38633.0|38639.0|38644.0|38648.0|38668.0|38683.0|38689.0|38713.0|38717.0|38719.0|38735.0|38749.0|38764.0|38767.0|38784.0|38789.0|38792.0|38804.0|38809.0|38826.0|38849.0|38859.0|38864.0|38873.0|38883.0|38886.0|38897.0|38948.0|38972.0|39012.0|39020.0|39042.0|39062.0|39073.0|39083.0|39092.0|39093.0|39113.0|39121.0|39123.0|39154.0|39157.0|39185.0|39194.0|39202.0|39214.0|39222.0|39223.0|39231.0|39238.0|39278.0|39288.0|39295.0|39298.0|39331.0|39337.0|39345.0|39350.0|39362.0|39363.0|39383.0|39442.0|39446.0|39505.0|39510.0|39556.0|39610.0|39664.0|39675.0|39711.0|39718.0|39761.0|39814.0|39825.0|39840.0|39845.0|39864.0|39917.0|39933.0|40002.0|40072.0|40075.0|40086.0|40103.0|40147.0|40194.0|40227.0|40233.0|40258.0|40286.0|40302.0|40362.0|40410.0|40469.0|40497.0|40507.0|40516.0|40536.0|40577.0|40608.0|40631.0|40683.0|40707.0|40709.0|40726.0|40733.0|40810.0|40845.0|40897.0|40898.0|40901.0|40948.0|40950.0|40953.0|40982.0|41012.0|41015.0|41032.0|41037.0|41058.0|41069.0|41077.0|41087.0|41090.0|41124.0|41130.0|41155.0|41167.0|41172.0|41186.0|41193.0|41209.0|41220.0|41232.0|41235.0|41247.0|41262.0|41274.0|41340.0|41356.0|41362.0|41366.0|41371.0|41382.0|41403.0|41406.0|41416.0|41446.0|41454.0|41464.0|41490.0|41506.0|41508.0|41531.0|41544.0|41562.0|41589.0|41599.0|41604.0|41628.0|41657.0|41668.0|41672.0|41674.0|41698.0|41699.0|41719.0|41762.0|41769.0|41774.0|41790.0|41793.0|41804.0|41814.0|41815.0|41820.0 +in.representative_income metadata_and_annual usd float 41826.0|41840.0|41847.0|41868.0|41877.0|41901.0|41908.0|41921.0|41941.0|41962.0|41972.0|41976.0|41987.0|42012.0|42013.0|42031.0|42063.0|42078.0|42079.0|42088.0|42095.0|42098.0|42099.0|42101.0|42104.0|42138.0|42153.0|42160.0|42166.0|42174.0|42176.0|42181.0|42184.0|42186.0|42195.0|42197.0|42203.0|42205.0|42216.0|42224.0|42229.0|42240.0|42246.0|42254.0|42275.0|42277.0|42279.0|42283.0|42290.0|42293.0|42294.0|42300.0|42305.0|42310.0|42316.0|42325.0|42331.0|42332.0|42348.0|42370.0|42374.0|42376.0|42380.0|42385.0|42387.0|42393.0|42401.0|42416.0|42420.0|42426.0|42434.0|42436.0|42441.0|42442.0|42445.0|42455.0|42463.0|42469.0|42474.0|42508.0|42513.0|42533.0|42547.0|42551.0|42563.0|42571.0|42572.0|42582.0|42603.0|42616.0|42625.0|42628.0|42643.0|42654.0|42659.0|42679.0|42680.0|42682.0|42690.0|42702.0|42705.0|42733.0|42739.0|42743.0|42745.0|42764.0|42776.0|42777.0|42780.0|42787.0|42797.0|42805.0|42807.0|42808.0|42810.0|42817.0|42826.0|42838.0|42849.0|42867.0|42871.0|42872.0|42894.0|42902.0|42909.0|42912.0|42916.0|42923.0|42929.0|42939.0|42954.0|42960.0|42964.0|42971.0|43002.0|43012.0|43026.0|43028.0|43042.0|43045.0|43066.0|43067.0|43073.0|43114.0|43166.0|43218.0|43219.0|43220.0|43224.0|43228.0|43234.0|43252.0|43270.0|43301.0|43315.0|43321.0|43324.0|43335.0|43344.0|43376.0|43407.0|43424.0|43446.0|43457.0|43465.0|43467.0|43480.0|43487.0|43498.0|43500.0|43528.0|43532.0|43548.0|43583.0|43600.0|43638.0|43640.0|43651.0|43657.0|43733.0|43739.0|43755.0|43766.0|43770.0|43795.0|43797.0|43810.0|43818.0|43840.0|43845.0|43871.0|43877.0|43889.0|43904.0|43940.0|43941.0|43947.0|43977.0|44011.0|44019.0|44030.0|44042.0|44043.0|44074.0|44080.0|44119.0|44143.0|44146.0|44167.0|44191.0|44237.0|44297.0|44299.0|44334.0|44335.0|44342.0|44394.0|44399.0|44407.0|44446.0|44495.0|44515.0|44548.0|44559.0|44569.0|44580.0|44610.0|44623.0|44655.0|44715.0|44731.0|44749.0|44763.0|44764.0|44797.0|44850.0|44868.0|44948.0|44971.0|45002.0|45056.0|45085.0|45164.0|45171.0|45178.0|45196.0|45243.0|45280.0|45299.0|45384.0|45401.0|45420.0|45454.0|45485.0|45559.0|45590.0|45598.0|45601.0|45622.0|45659.0|45664.0|45729.0|45760.0|45836.0|45898.0|45899.0|45951.0|45962.0|45992.0|46028.0|46051.0|46075.0|46136.0|46139.0|46169.0|46209.0|46223.0|46229.0|46240.0|46244.0|46255.0|46297.0|46298.0|46302.0|46418.0|46445.0|46455.0|46461.0|46462.0|46467.0|46480.0|46507.0|46508.0|46536.0|46539.0|46568.0|46570.0|46590.0|46614.0|46616.0|46622.0|46628.0|46669.0|46718.0|46719.0|46720.0|46723.0|46725.0|46741.0|46743.0|46755.0|46777.0|46784.0|46802.0|46806.0|46808.0|46823.0|46824.0|46839.0|46856.0|46869.0|46881.0|46900.0|46914.0|46921.0|46930.0|46931.0|46942.0|46962.0|46993.0|47001.0|47017.0|47028.0|47035.0|47044.0|47055.0|47060.0|47073.0|47108.0|47117.0|47156.0|47167.0|47174.0|47193.0|47194.0|47209.0|47211.0|47228.0|47236.0|47251.0|47253.0|47271.0|47275.0|47288.0|47303.0|47305.0|47323.0|47336.0|47346.0|47356.0|47368.0|47373.0|47376.0|47400.0|47406.0|47426.0|47436.0|47450.0|47452.0|47468.0|47477.0|47479.0|47487.0|47494.0|47503.0|47507.0|47510.0|47541.0|47542.0|47550.0|47563.0|47570.0|47571.0|47601.0|47605.0|47627.0|47631.0|47633.0|47653.0|47659.0|47661.0|47662.0|47663.0|47666.0|47668.0|47670.0|47672.0|47673.0|47679.0|47695.0|47699.0|47704.0|47705.0|47710.0|47714.0|47731.0|47756.0|47765.0|47767.0|47769.0|47774.0|47777.0|47778.0|47780.0|47789.0|47798.0|47816.0|47818.0|47838.0|47840.0|47854.0|47860.0|47876.0|47880.0|47881.0|47897.0|47901.0|47911.0|47918.0|47942.0|47944.0|47962.0|47973.0|47982.0|47983.0|48016.0|48026.0|48030.0|48033.0|48037.0|48038.0|48039.0|48060.0|48065.0|48069.0|48081.0|48083.0|48090.0|48184.0|48195.0|48232.0|48243.0|48251.0|48259.0|48264.0|48285.0|48305.0|48380.0|48383.0|48385.0|48396.0|48405.0|48407.0|48413.0|48434.0|48468.0|48479.0|48487.0|48495.0|48497.0|48507.0|48512.0|48529.0|48548.0|48558.0|48567.0|48586.0|48621.0|48627.0|48633.0|48684.0|48689.0|48699.0|48723.0|48735.0|48842.0|48889.0|48891.0|48895.0|48907.0|48994.0|49018.0|49035.0|49053.0|49107.0|49145.0|49161.0|49164.0|49194.0|49201.0|49218.0|49271.0|49295.0|49303.0|49355.0|49356.0|49375.0|49379.0|49453.0|49461.0|49485.0|49486.0|49493.0|49497.0|49510.0|49514.0|49608.0|49612.0|49672.0|49702.0|49778.0|49800.0|49810.0|49819.0|49840.0|49901.0|49915.0|49988.0|50002.0|50012.0|50023.0|50036.0|50047.0|50129.0|50131.0|50134.0|50141.0|50199.0|50204.0|50231.0|50237.0|50241.0|50281.0|50315.0|50323.0|50335.0|50345.0|50350.0|50356.0|50357.0|50366.0|50374.0|50378.0|50406.0|50410.0|50438.0|50452.0|50458.0|50463.0|50473.0|50490.0|50495.0|50516.0|50517.0|50546.0|50552.0|50558.0|50560.0|50566.0|50578.0|50599.0|50604.0|50608.0|50631.0|50639.0|50656.0|50667.0|50674.0|50709.0|50774.0|50789.0|50810.0|50832.0|50850.0|50911.0|50938.0|50980.0|50989.0|51033.0|51077.0|51096.0|51107.0|51187.0|51202.0|51214.0|51254.0|51255.0|51258.0|51285.0|51310.0|51315.0|51343.0|51359.0|51366.0|51376.0|51418.0|51430.0|51464.0|51469.0|51501.0|51517.0|51526.0|51538.0|51571.0|51573.0|51582.0|51618.0|51655.0|51666.0|51686.0|51696.0|51700.0|51741.0|51754.0|51776.0|51779.0|51802.0|51847.0|51855.0|51862.0|51886.0|51895.0|51917.0|51921.0|51949.0|51955.0|51971.0|52002.0|52036.0|52037.0|52062.0|52088.0|52097.0|52123.0|52138.0|52192.0|52224.0|52241.0|52309.0|52363.0|52385.0|52403.0|52406.0|52414.0|52427.0|52430.0|52457.0|52467.0|52501.0|52511.0|52614.0|52620.0|52624.0|52678.0|52706.0|52727.0|52741.0|52752.0|52760.0|52770.0|52773.0|52783.0|52814.0|52836.0|52867.0|52889.0|52921.0|52922.0|52932.0|52941.0|52943.0|52945.0|52975.0|52976.0|52997.0|53007.0|53016.0|53028.0|53030.0|53051.0|53063.0|53083.0|53120.0|53134.0|53152.0|53156.0|53159.0|53170.0|53174.0|53183.0|53194.0|53207.0|53243.0|53270.0|53285.0|53288.0|53326.0|53337.0|53351.0|53356.0|53366.0|53377.0|53396.0|53404.0|53411.0|53416.0|53447.0|53469.0|53484.0|53487.0|53538.0|53548.0|53566.0|53574.0|53575.0|53587.0|53623.0|53626.0|53635.0|53646.0|53656.0|53669.0|53672.0|53677.0|53698.0|53700.0|53701.0|53704.0|53740.0|53759.0|53760.0|53785.0|53790.0|53795.0|53801.0|53806.0|53816.0|53833.0|53838.0|53842.0|53848.0|53851.0|53887.0|53890.0|53898.0|53908.0|53912.0|53915.0|53922.0|53933.0|53941.0|53955.0|53964.0|53969.0|53992.0|53995.0|54017.0|54023.0|54024.0|54043.0|54045.0|54051.0|54059.0|54062.0|54063.0|54073.0|54077.0|54089.0|54096.0|54102.0|54110.0|54113.0|54120.0|54124.0|54133.0|54134.0|54144.0|54151.0|54155.0|54158.0|54168.0|54182.0|54185.0|54204.0|54207.0|54209.0|54228.0|54235.0|54236.0|54238.0|54241.0|54245.0|54247.0|54250.0|54254.0|54259.0|54265.0|54275.0|54277.0|54278.0|54286.0|54294.0|54312.0|54323.0|54326.0|54333.0|54346.0|54348.0|54358.0|54360.0|54365.0|54370.0|54376.0|54388.0|54399.0|54421.0|54424.0|54430.0|54432.0|54437.0|54438.0|54450.0|54456.0|54471.0|54488.0|54499.0|54523.0|54532.0|54533.0|54536.0|54558.0|54568.0|54586.0|54595.0|54596.0|54598.0|54599.0|54608.0|54615.0|54618.0|54626.0|54628.0|54638.0|54645.0|54649.0|54659.0|54679.0|54700.0|54705.0|54708.0|54730.0|54733.0|54740.0|54747.0|54753.0|54760.0|54762.0|54767.0|54774.0|54779.0|54780.0|54787.0|54793.0|54812.0|54819.0|54823.0|54832.0|54840.0|54851.0|54853.0|54871.0|54881.0|54904.0|54911.0|54920.0|54952.0|54957.0|54961.0|54963.0|54974.0|54977.0|54995.0|54998.0|55012.0|55028.0|55040.0|55053.0|55059.0|55063.0|55073.0|55079.0|55097.0|55101.0|55103.0|55114.0|55126.0|55132.0|55135.0|55153.0|55154.0|55158.0|55169.0|55174.0|55176.0|55208.0|55212.0|55215.0|55232.0|55235.0|55237.0|55239.0|55245.0|55255.0|55261.0|55266.0|55276.0|55286.0|55304.0|55316.0|55331.0|55358.0|55366.0|55367.0|55374.0|55385.0|55389.0|55396.0|55400.0|55401.0|55411.0|55419.0|55424.0|55456.0|55457.0|55460.0|55472.0|55482.0|55487.0|55493.0|55497.0|55507.0|55514.0|55536.0|55540.0|55546.0|55568.0|55588.0|55590.0|55594.0|55596.0|55601.0|55605.0|55609.0|55613.0|55616.0|55626.0|55631.0|55633.0|55637.0|55642.0|55647.0|55648.0|55659.0|55664.0|55671.0|55683.0|55687.0|55698.0|55699.0|55709.0|55712.0|55760.0|55767.0|55795.0|55806.0|55819.0|55841.0|55863.0|55873.0|55881.0|55890.0|55895.0|55905.0|55915.0|55925.0|55927.0|55932.0|55969.0|55998.0|56001.0 +in.representative_income metadata_and_annual usd float 56013.0|56021.0|56033.0|56034.0|56055.0|56063.0|56097.0|56105.0|56111.0|56132.0|56136.0|56141.0|56142.0|56154.0|56159.0|56164.0|56174.0|56190.0|56211.0|56214.0|56231.0|56238.0|56249.0|56277.0|56285.0|56292.0|56302.0|56314.0|56316.0|56317.0|56326.0|56338.0|56346.0|56366.0|56400.0|56405.0|56406.0|56410.0|56414.0|56438.0|56442.0|56467.0|56485.0|56486.0|56507.0|56508.0|56513.0|56516.0|56524.0|56538.0|56544.0|56571.0|56575.0|56578.0|56592.0|56605.0|56616.0|56619.0|56627.0|56633.0|56636.0|56664.0|56668.0|56669.0|56671.0|56678.0|56679.0|56685.0|56725.0|56729.0|56751.0|56757.0|56759.0|56781.0|56785.0|56786.0|56811.0|56833.0|56864.0|56876.0|56885.0|56892.0|56901.0|56909.0|56915.0|56916.0|56920.0|56941.0|56949.0|56952.0|56972.0|56981.0|57002.0|57023.0|57039.0|57057.0|57107.0|57161.0|57194.0|57205.0|57246.0|57269.0|57276.0|57297.0|57312.0|57373.0|57376.0|57422.0|57429.0|57452.0|57455.0|57477.0|57481.0|57555.0|57578.0|57602.0|57645.0|57655.0|57679.0|57687.0|57697.0|57752.0|57762.0|57792.0|57802.0|57824.0|57864.0|57881.0|57967.0|57977.0|57982.0|57999.0|58014.0|58021.0|58107.0|58109.0|58129.0|58172.0|58182.0|58184.0|58214.0|58235.0|58238.0|58285.0|58288.0|58299.0|58310.0|58319.0|58320.0|58396.0|58400.0|58425.0|58483.0|58487.0|58531.0|58540.0|58562.0|58563.0|58586.0|58588.0|58632.0|58669.0|58689.0|58690.0|58717.0|58752.0|58770.0|58790.0|58847.0|58885.0|58891.0|58896.0|58933.0|58999.0|59044.0|59057.0|59093.0|59102.0|59113.0|59147.0|59164.0|59201.0|59205.0|59210.0|59237.0|59254.0|59269.0|59309.0|59318.0|59320.0|59353.0|59362.0|59364.0|59366.0|59374.0|59412.0|59415.0|59426.0|59430.0|59447.0|59480.0|59498.0|59534.0|59599.0|59618.0|59642.0|59659.0|59679.0|59683.0|59690.0|59700.0|59720.0|59721.0|59824.0|59888.0|59928.0|59966.0|60003.0|60023.0|60030.0|60074.0|60085.0|60104.0|60113.0|60133.0|60182.0|60205.0|60221.0|60225.0|60237.0|60306.0|60326.0|60328.0|60340.0|60387.0|60398.0|60435.0|60465.0|60508.0|60619.0|60701.0|60723.0|60745.0|60751.0|60752.0|60758.0|60811.0|60831.0|60845.0|60852.0|60856.0|60876.0|60917.0|60956.0|60959.0|60972.0|60979.0|61046.0|61063.0|61083.0|61100.0|61114.0|61154.0|61165.0|61167.0|61265.0|61336.0|61390.0|61417.0|61427.0|61466.0|61475.0|61479.0|61518.0|61587.0|61588.0|61589.0|61616.0|61639.0|61641.0|61680.0|61716.0|61720.0|61723.0|61729.0|61732.0|61747.0|61756.0|61796.0|61800.0|61803.0|61805.0|61821.0|61831.0|61876.0|61883.0|61911.0|61922.0|61939.0|61942.0|61960.0|61971.0|62042.0|62045.0|62056.0|62063.0|62066.0|62094.0|62095.0|62104.0|62116.0|62124.0|62127.0|62145.0|62148.0|62153.0|62169.0|62188.0|62197.0|62215.0|62235.0|62292.0|62299.0|62305.0|62313.0|62321.0|62326.0|62328.0|62338.0|62343.0|62376.0|62403.0|62427.0|62433.0|62434.0|62454.0|62464.0|62488.0|62506.0|62516.0|62528.0|62578.0|62598.0|62602.0|62623.0|62629.0|62661.0|62668.0|62679.0|62689.0|62695.0|62707.0|62723.0|62749.0|62765.0|62797.0|62815.0|62818.0|62829.0|62850.0|62854.0|62857.0|62861.0|62867.0|62887.0|62904.0|62932.0|62942.0|62958.0|62960.0|62962.0|62977.0|62983.0|62992.0|63012.0|63022.0|63029.0|63053.0|63066.0|63073.0|63086.0|63090.0|63097.0|63101.0|63102.0|63111.0|63125.0|63134.0|63171.0|63201.0|63226.0|63228.0|63229.0|63234.0|63258.0|63265.0|63276.0|63287.0|63294.0|63302.0|63303.0|63319.0|63331.0|63344.0|63350.0|63357.0|63362.0|63381.0|63407.0|63435.0|63441.0|63473.0|63476.0|63477.0|63498.0|63510.0|63512.0|63526.0|63531.0|63537.0|63538.0|63540.0|63548.0|63550.0|63558.0|63571.0|63575.0|63579.0|63583.0|63588.0|63593.0|63619.0|63624.0|63639.0|63651.0|63655.0|63661.0|63670.0|63690.0|63692.0|63717.0|63719.0|63728.0|63731.0|63744.0|63747.0|63761.0|63763.0|63776.0|63791.0|63802.0|63803.0|63804.0|63825.0|63838.0|63841.0|63846.0|63856.0|63858.0|63859.0|63866.0|63882.0|63892.0|63898.0|63899.0|63909.0|63910.0|63912.0|63930.0|63942.0|63953.0|63978.0|63979.0|63988.0|64011.0|64012.0|64014.0|64023.0|64025.0|64036.0|64053.0|64072.0|64077.0|64078.0|64084.0|64085.0|64088.0|64096.0|64126.0|64128.0|64129.0|64139.0|64144.0|64156.0|64162.0|64191.0|64192.0|64208.0|64216.0|64226.0|64234.0|64236.0|64245.0|64260.0|64288.0|64310.0|64331.0|64340.0|64346.0|64352.0|64354.0|64357.0|64362.0|64363.0|64366.0|64374.0|64375.0|64396.0|64397.0|64404.0|64406.0|64407.0|64408.0|64411.0|64417.0|64447.0|64482.0|64487.0|64498.0|64504.0|64517.0|64531.0|64536.0|64542.0|64546.0|64548.0|64584.0|64595.0|64599.0|64600.0|64612.0|64613.0|64617.0|64645.0|64649.0|64669.0|64672.0|64680.0|64688.0|64699.0|64707.0|64714.0|64731.0|64739.0|64750.0|64753.0|64754.0|64775.0|64783.0|64791.0|64809.0|64815.0|64828.0|64829.0|64843.0|64857.0|64859.0|64886.0|64901.0|64911.0|64925.0|64936.0|64944.0|64952.0|64969.0|64981.0|64990.0|64992.0|65009.0|65023.0|65025.0|65028.0|65053.0|65063.0|65069.0|65074.0|65084.0|65098.0|65101.0|65109.0|65111.0|65115.0|65152.0|65169.0|65174.0|65183.0|65203.0|65212.0|65233.0|65255.0|65280.0|65321.0|65342.0|65351.0|65373.0|65383.0|65386.0|65407.0|65427.0|65457.0|65470.0|65481.0|65485.0|65508.0|65518.0|65553.0|65585.0|65586.0|65588.0|65649.0|65659.0|65662.0|65666.0|65671.0|65683.0|65693.0|65695.0|65703.0|65747.0|65749.0|65801.0|65807.0|65822.0|65827.0|65845.0|65865.0|65912.0|65913.0|65942.0|65945.0|65972.0|65974.0|65983.0|65993.0|65996.0|66219.0|66223.0|66229.0|66233.0|66245.0|66340.0|66341.0|66356.0|66426.0|66437.0|66449.0|66468.0|66502.0|66529.0|66531.0|66545.0|66554.0|66557.0|66569.0|66575.0|66597.0|66599.0|66611.0|66612.0|66629.0|66659.0|66661.0|66665.0|66670.0|66714.0|66719.0|66735.0|66757.0|66758.0|66771.0|66774.0|66775.0|66830.0|66836.0|66854.0|66862.0|66898.0|66920.0|66922.0|66930.0|66941.0|66983.0|66987.0|67000.0|67031.0|67045.0|67065.0|67074.0|67080.0|67090.0|67096.0|67117.0|67147.0|67175.0|67198.0|67205.0|67238.0|67259.0|67266.0|67276.0|67295.0|67305.0|67313.0|67327.0|67336.0|67341.0|67377.0|67390.0|67397.0|67421.0|67424.0|67457.0|67464.0|67478.0|67495.0|67529.0|67558.0|67560.0|67581.0|67627.0|67629.0|67637.0|67664.0|67700.0|67706.0|67735.0|67781.0|67789.0|67811.0|67815.0|67824.0|67838.0|67842.0|67853.0|67854.0|67863.0|67864.0|67869.0|67874.0|67882.0|67929.0|67930.0|67950.0|67962.0|67983.0|68043.0|68045.0|68057.0|68068.0|68076.0|68113.0|68128.0|68134.0|68164.0|68225.0|68237.0|68262.0|68271.0|68285.0|68310.0|68338.0|68379.0|68437.0|68465.0|68486.0|68518.0|68560.0|68567.0|68570.0|68592.0|68594.0|68602.0|68610.0|68615.0|68619.0|68639.0|68643.0|68690.0|68697.0|68700.0|68705.0|68715.0|68736.0|68755.0|68804.0|68808.0|68809.0|68820.0|68849.0|68850.0|68901.0|68905.0|68942.0|68963.0|68971.0|68972.0|68991.0|68992.0|69014.0|69023.0|69056.0|69063.0|69076.0|69084.0|69085.0|69096.0|69097.0|69103.0|69104.0|69107.0|69159.0|69182.0|69183.0|69195.0|69203.0|69221.0|69226.0|69237.0|69239.0|69314.0|69316.0|69345.0|69367.0|69386.0|69393.0|69397.0|69416.0|69452.0|69499.0|69520.0|69541.0|69552.0|69582.0|69599.0|69604.0|69667.0|69690.0|69700.0|69726.0|69733.0|69798.0|69815.0|69892.0|69902.0|69921.0|69936.0|69989.0|70014.0|70054.0|70104.0|70139.0|70231.0|70236.0|70237.0|70242.0|70262.0|70306.0|70339.0|70345.0|70447.0|70448.0|70508.0|70525.0|70551.0|70741.0|70848.0|70869.0|70878.0|70912.0|70955.0|70964.0|71062.0|71067.0|71095.0|71108.0|71114.0|71148.0|71186.0|71201.0|71203.0|71215.0|71273.0|71291.0|71311.0|71316.0|71322.0|71331.0|71354.0|71417.0|71427.0|71480.0|71491.0|71527.0|71535.0|71582.0|71608.0|71613.0|71635.0|71650.0|71700.0|71714.0|71720.0|71738.0|71755.0|71789.0|71814.0|71922.0|71959.0|72030.0|72040.0|72067.0|72098.0|72121.0|72124.0|72136.0|72182.0|72205.0|72212.0|72223.0|72225.0|72233.0|72240.0|72243.0|72283.0|72286.0|72294.0|72296.0|72305.0|72326.0|72351.0|72378.0|72399.0|72458.0|72501.0|72504.0|72511.0|72522.0|72543.0|72629.0|72635.0|72651.0|72662.0|72663.0|72672.0|72683.0|72717.0|72727.0|72768.0|72780.0|72781.0|72824.0|72849.0|72852.0|72887.0|72888.0|72932.0|72975.0|72986.0|72995.0|73033.0|73052.0|73079.0|73084.0|73094.0|73095.0|73102.0|73135.0|73147.0|73156.0|73190.0|73209.0|73212.0|73244.0|73255.0|73295.0|73301.0|73302.0|73346.0|73380.0|73409.0|73424.0|73438.0|73443.0|73472.0|73533.0|73539.0|73543.0|73559.0|73563.0|73569.0 +in.representative_income metadata_and_annual usd float 73591.0|73612.0|73623.0|73629.0|73640.0|73646.0|73660.0|73688.0|73695.0|73720.0|73724.0|73748.0|73751.0|73761.0|73769.0|73770.0|73782.0|73789.0|73823.0|73833.0|73841.0|73842.0|73843.0|73850.0|73852.0|73853.0|73854.0|73864.0|73875.0|73883.0|73902.0|73904.0|73914.0|73922.0|73928.0|73936.0|73939.0|73943.0|73949.0|73955.0|73961.0|74007.0|74011.0|74012.0|74022.0|74033.0|74042.0|74056.0|74061.0|74068.0|74069.0|74076.0|74086.0|74121.0|74138.0|74145.0|74153.0|74162.0|74165.0|74171.0|74176.0|74196.0|74197.0|74245.0|74250.0|74255.0|74266.0|74275.0|74280.0|74282.0|74295.0|74297.0|74305.0|74315.0|74332.0|74336.0|74337.0|74347.0|74350.0|74360.0|74375.0|74399.0|74413.0|74420.0|74422.0|74429.0|74444.0|74451.0|74453.0|74455.0|74471.0|74481.0|74487.0|74488.0|74491.0|74500.0|74516.0|74522.0|74529.0|74531.0|74539.0|74540.0|74549.0|74561.0|74562.0|74574.0|74604.0|74605.0|74606.0|74617.0|74637.0|74646.0|74650.0|74677.0|74680.0|74698.0|74700.0|74702.0|74703.0|74710.0|74712.0|74717.0|74736.0|74740.0|74750.0|74751.0|74755.0|74768.0|74780.0|74787.0|74811.0|74814.0|74819.0|74848.0|74865.0|74877.0|74883.0|74914.0|74920.0|74930.0|74946.0|74953.0|74956.0|74982.0|74985.0|74986.0|75004.0|75028.0|75034.0|75038.0|75057.0|75093.0|75097.0|75099.0|75131.0|75142.0|75152.0|75155.0|75162.0|75163.0|75165.0|75171.0|75172.0|75174.0|75205.0|75214.0|75215.0|75216.0|75219.0|75235.0|75249.0|75256.0|75286.0|75288.0|75302.0|75309.0|75317.0|75333.0|75357.0|75367.0|75378.0|75387.0|75399.0|75404.0|75426.0|75427.0|75451.0|75458.0|75462.0|75463.0|75464.0|75502.0|75510.0|75512.0|75518.0|75521.0|75524.0|75549.0|75559.0|75571.0|75573.0|75596.0|75603.0|75631.0|75632.0|75633.0|75643.0|75646.0|75677.0|75678.0|75687.0|75705.0|75709.0|75719.0|75721.0|75732.0|75741.0|75763.0|75786.0|75807.0|75812.0|75818.0|75824.0|75826.0|75839.0|75862.0|75864.0|75915.0|75925.0|75931.0|75933.0|75957.0|75963.0|75968.0|75973.0|75980.0|76013.0|76018.0|76037.0|76054.0|76065.0|76087.0|76149.0|76151.0|76163.0|76173.0|76224.0|76266.0|76283.0|76322.0|76337.0|76379.0|76389.0|76459.0|76468.0|76533.0|76537.0|76555.0|76564.0|76569.0|76589.0|76598.0|76601.0|76626.0|76637.0|76644.0|76669.0|76676.0|76752.0|76761.0|76776.0|76781.0|76843.0|76859.0|76872.0|76881.0|76912.0|76915.0|77003.0|77037.0|77048.0|77049.0|77070.0|77073.0|77074.0|77092.0|77106.0|77152.0|77159.0|77175.0|77181.0|77254.0|77256.0|77276.0|77302.0|77308.0|77320.0|77359.0|77377.0|77396.0|77470.0|77478.0|77483.0|77489.0|77503.0|77514.0|77525.0|77578.0|77579.0|77610.0|77616.0|77619.0|77668.0|77678.0|77686.0|77724.0|77740.0|77767.0|77794.0|77832.0|77865.0|77872.0|77878.0|77880.0|77902.0|77935.0|77983.0|78007.0|78081.0|78104.0|78136.0|78148.0|78171.0|78185.0|78226.0|78254.0|78280.0|78287.0|78372.0|78387.0|78390.0|78437.0|78438.0|78462.0|78494.0|78545.0|78550.0|78577.0|78589.0|78597.0|78615.0|78638.0|78659.0|78674.0|78689.0|78699.0|78701.0|78803.0|78885.0|78906.0|78978.0|78983.0|78993.0|79009.0|79071.0|79113.0|79144.0|79195.0|79198.0|79215.0|79221.0|79257.0|79296.0|79306.0|79318.0|79327.0|79397.0|79414.0|79422.0|79433.0|79522.0|79543.0|79599.0|79623.0|79650.0|79700.0|79703.0|79732.0|79800.0|79801.0|79834.0|79908.0|79955.0|80003.0|80045.0|80105.0|80150.0|80171.0|80206.0|80247.0|80307.0|80350.0|80361.0|80408.0|80453.0|80466.0|80468.0|80508.0|80509.0|80556.0|80603.0|80616.0|80637.0|80660.0|80678.0|80723.0|80763.0|80812.0|80831.0|80913.0|80927.0|80933.0|80939.0|80941.0|80992.0|80994.0|81014.0|81068.0|81072.0|81078.0|81099.0|81115.0|81121.0|81152.0|81153.0|81198.0|81205.0|81252.0|81278.0|81279.0|81310.0|81317.0|81360.0|81368.0|81382.0|81410.0|81416.0|81468.0|81475.0|81489.0|81521.0|81574.0|81575.0|81588.0|81620.0|81626.0|81668.0|81683.0|81689.0|81705.0|81791.0|81797.0|81806.0|81822.0|81878.0|81898.0|81904.0|81923.0|81943.0|81956.0|81977.0|81993.0|82000.0|82008.0|82024.0|82048.0|82059.0|82118.0|82154.0|82206.0|82207.0|82224.0|82270.0|82316.0|82327.0|82332.0|82333.0|82338.0|82364.0|82372.0|82375.0|82386.0|82398.0|82413.0|82421.0|82428.0|82440.0|82468.0|82494.0|82521.0|82523.0|82549.0|82556.0|82567.0|82573.0|82619.0|82681.0|82722.0|82763.0|82764.0|82766.0|82768.0|82786.0|82807.0|82809.0|82832.0|82870.0|82892.0|82908.0|82926.0|82929.0|82933.0|82978.0|82979.0|82980.0|82981.0|82988.0|82991.0|83009.0|83034.0|83043.0|83085.0|83099.0|83122.0|83135.0|83156.0|83193.0|83197.0|83209.0|83214.0|83236.0|83238.0|83255.0|83271.0|83299.0|83304.0|83310.0|83314.0|83341.0|83366.0|83367.0|83369.0|83388.0|83407.0|83412.0|83419.0|83464.0|83520.0|83525.0|83537.0|83539.0|83548.0|83589.0|83600.0|83610.0|83622.0|83629.0|83640.0|83665.0|83734.0|83737.0|83754.0|83822.0|83836.0|83839.0|83841.0|83845.0|83869.0|83943.0|83944.0|83960.0|83993.0|84044.0|84052.0|84060.0|84069.0|84166.0|84252.0|84276.0|84281.0|84369.0|84400.0|84421.0|84446.0|84448.0|84476.0|84480.0|84493.0|84504.0|84532.0|84579.0|84588.0|84601.0|84621.0|84635.0|84650.0|84655.0|84682.0|84709.0|84785.0|84790.0|84802.0|84803.0|84817.0|84888.0|84895.0|84907.0|84953.0|84974.0|84992.0|85002.0|85012.0|85044.0|85075.0|85095.0|85115.0|85124.0|85198.0|85256.0|85301.0|85340.0|85357.0|85368.0|85404.0|85411.0|85458.0|85476.0|85497.0|85507.0|85519.0|85525.0|85528.0|85554.0|85559.0|85569.0|85571.0|85573.0|85597.0|85616.0|85640.0|85650.0|85661.0|85662.0|85750.0|85761.0|85769.0|85786.0|85789.0|85816.0|85833.0|85845.0|85855.0|85868.0|85877.0|85887.0|85893.0|85897.0|85901.0|85913.0|85919.0|85933.0|85950.0|85982.0|85984.0|86003.0|86023.0|86048.0|86085.0|86115.0|86137.0|86150.0|86165.0|86188.0|86214.0|86222.0|86224.0|86266.0|86267.0|86305.0|86330.0|86332.0|86337.0|86367.0|86372.0|86435.0|86437.0|86439.0|86442.0|86448.0|86459.0|86470.0|86498.0|86502.0|86508.0|86520.0|86545.0|86548.0|86563.0|86567.0|86580.0|86604.0|86614.0|86620.0|86627.0|86642.0|86657.0|86660.0|86671.0|86707.0|86718.0|86724.0|86734.0|86745.0|86793.0|86816.0|86849.0|86852.0|86870.0|86872.0|86874.0|86889.0|86900.0|86913.0|86949.0|86950.0|86960.0|86971.0|86978.0|86982.0|87003.0|87024.0|87034.0|87054.0|87078.0|87086.0|87097.0|87111.0|87119.0|87121.0|87158.0|87194.0|87195.0|87216.0|87239.0|87244.0|87248.0|87261.0|87302.0|87321.0|87332.0|87356.0|87357.0|87364.0|87374.0|87388.0|87405.0|87406.0|87410.0|87414.0|87415.0|87426.0|87432.0|87453.0|87467.0|87475.0|87479.0|87486.0|87526.0|87540.0|87554.0|87570.0|87591.0|87594.0|87610.0|87630.0|87636.0|87638.0|87661.0|87680.0|87684.0|87721.0|87725.0|87743.0|87777.0|87778.0|87808.0|87829.0|87842.0|87848.0|87849.0|87852.0|87864.0|87879.0|87887.0|87902.0|87907.0|87912.0|87915.0|87930.0|87947.0|87982.0|88027.0|88038.0|88045.0|88055.0|88058.0|88066.0|88069.0|88086.0|88087.0|88135.0|88166.0|88186.0|88206.0|88222.0|88226.0|88231.0|88238.0|88282.0|88285.0|88287.0|88291.0|88306.0|88311.0|88313.0|88347.0|88364.0|88388.0|88396.0|88409.0|88437.0|88452.0|88464.0|88481.0|88489.0|88491.0|88506.0|88524.0|88549.0|88560.0|88590.0|88593.0|88597.0|88613.0|88618.0|88629.0|88635.0|88656.0|88667.0|88691.0|88705.0|88707.0|88717.0|88741.0|88746.0|88771.0|88776.0|88782.0|88798.0|88808.0|88812.0|88860.0|88868.0|88881.0|88892.0|88893.0|88904.0|88908.0|88911.0|88922.0|88944.0|88967.0|89020.0|89024.0|89093.0|89111.0|89115.0|89117.0|89125.0|89138.0|89139.0|89144.0|89167.0|89169.0|89175.0|89183.0|89196.0|89199.0|89208.0|89219.0|89220.0|89227.0|89231.0|89246.0|89247.0|89280.0|89290.0|89297.0|89303.0|89311.0|89325.0|89326.0|89347.0|89355.0|89416.0|89418.0|89431.0|89440.0|89451.0|89452.0|89489.0|89493.0|89499.0|89500.0|89501.0|89515.0|89525.0|89528.0|89530.0|89536.0|89539.0|89547.0|89552.0|89570.0|89580.0|89592.0|89600.0|89620.0|89633.0|89657.0|89661.0|89662.0|89680.0|89683.0|89689.0|89690.0|89694.0|89701.0|89708.0|89709.0|89710.0|89733.0|89736.0|89741.0|89747.0|89757.0|89762.0|89768.0|89787.0|89788.0|89798.0|89830.0|89873.0|89881.0|89913.0|89933.0|89939.0|89950.0|89955.0|89957.0|89974.0|89984.0|89994.0|90000.0|90005.0|90011.0|90014.0|90020.0|90025.0|90062.0|90064.0|90085.0|90087.0|90098.0|90105.0|90111.0|90112.0|90144.0|90149.0|90169.0|90170.0|90174.0|90176.0|90179.0|90181.0|90190.0|90206.0|90262.0|90264.0|90273.0 +in.representative_income metadata_and_annual usd float 90306.0|90307.0|90314.0|90352.0|90380.0|90381.0|90382.0|90385.0|90395.0|90408.0|90411.0|90425.0|90427.0|90435.0|90458.0|90475.0|90489.0|90506.0|90509.0|90519.0|90524.0|90590.0|90599.0|90629.0|90644.0|90653.0|90662.0|90664.0|90671.0|90706.0|90707.0|90709.0|90711.0|90749.0|90767.0|90789.0|90809.0|90812.0|90817.0|90822.0|90825.0|90833.0|90840.0|90844.0|90846.0|90852.0|90868.0|90871.0|90890.0|90896.0|90897.0|90902.0|90921.0|90922.0|90923.0|90933.0|90964.0|91014.0|91034.0|91047.0|91063.0|91065.0|91078.0|91096.0|91118.0|91119.0|91136.0|91157.0|91166.0|91171.0|91181.0|91192.0|91196.0|91221.0|91223.0|91247.0|91267.0|91294.0|91297.0|91308.0|91317.0|91369.0|91435.0|91448.0|91458.0|91462.0|91463.0|91483.0|91490.0|91506.0|91519.0|91552.0|91561.0|91585.0|91590.0|91593.0|91615.0|91624.0|91640.0|91659.0|91672.0|91696.0|91721.0|91726.0|91732.0|91735.0|91736.0|91750.0|91777.0|91799.0|91812.0|91819.0|91822.0|91837.0|91844.0|91850.0|91851.0|91856.0|91862.0|91888.0|91894.0|91902.0|91905.0|91916.0|91923.0|91941.0|91948.0|91949.0|91954.0|92017.0|92023.0|92024.0|92056.0|92102.0|92109.0|92164.0|92166.0|92209.0|92212.0|92226.0|92254.0|92267.0|92277.0|92278.0|92283.0|92295.0|92316.0|92317.0|92327.0|92358.0|92360.0|92366.0|92381.0|92403.0|92459.0|92508.0|92521.0|92531.0|92570.0|92573.0|92590.0|92595.0|92610.0|92624.0|92630.0|92639.0|92650.0|92700.0|92731.0|92746.0|92752.0|92791.0|92812.0|92819.0|92826.0|92842.0|92847.0|92851.0|92853.0|92856.0|92882.0|92911.0|92920.0|92945.0|92964.0|92974.0|92985.0|92996.0|93014.0|93037.0|93038.0|93068.0|93075.0|93099.0|93121.0|93122.0|93135.0|93143.0|93169.0|93186.0|93203.0|93228.0|93236.0|93243.0|93245.0|93285.0|93309.0|93333.0|93337.0|93347.0|93353.0|93391.0|93408.0|93438.0|93461.0|93484.0|93497.0|93499.0|93502.0|93552.0|93569.0|93605.0|93614.0|93625.0|93648.0|93691.0|93712.0|93741.0|93784.0|93831.0|93842.0|93852.0|93860.0|93923.0|93926.0|93943.0|94012.0|94023.0|94034.0|94038.0|94045.0|94099.0|94109.0|94146.0|94171.0|94197.0|94217.0|94236.0|94247.0|94249.0|94282.0|94325.0|94347.0|94356.0|94378.0|94440.0|94449.0|94481.0|94485.0|94493.0|94497.0|94517.0|94541.0|94550.0|94570.0|94571.0|94598.0|94607.0|94627.0|94651.0|94741.0|94752.0|94767.0|94786.0|94790.0|94822.0|94830.0|94853.0|94865.0|94873.0|94894.0|94913.0|94954.0|94973.0|94997.0|95000.0|95020.0|95055.0|95069.0|95081.0|95083.0|95099.0|95123.0|95162.0|95189.0|95194.0|95203.0|95215.0|95231.0|95297.0|95322.0|95358.0|95365.0|95389.0|95409.0|95427.0|95430.0|95442.0|95513.0|95514.0|95526.0|95547.0|95589.0|95652.0|95661.0|95718.0|95721.0|95730.0|95751.0|95762.0|95838.0|95864.0|95892.0|95925.0|95946.0|95964.0|95969.0|96004.0|96074.0|96132.0|96133.0|96161.0|96166.0|96180.0|96181.0|96201.0|96234.0|96285.0|96288.0|96337.0|96368.0|96396.0|96497.0|96519.0|96544.0|96570.0|96602.0|96647.0|96702.0|96707.0|96772.0|96813.0|96825.0|96853.0|96932.0|96950.0|96956.0|97024.0|97026.0|97040.0|97041.0|97060.0|97125.0|97148.0|97176.0|97243.0|97266.0|97340.0|97362.0|97369.0|97453.0|97458.0|97493.0|97551.0|97566.0|97577.0|97580.0|97617.0|97627.0|97674.0|97679.0|97709.0|97748.0|97762.0|97782.0|97791.0|98078.0|98085.0|98107.0|98113.0|98186.0|98221.0|98287.0|98366.0|98388.0|98477.0|98503.0|98538.0|98606.0|98682.0|98710.0|98790.0|98843.0|98863.0|98865.0|98928.0|98971.0|98994.0|99019.0|99079.0|99126.0|99187.0|99226.0|99294.0|99344.0|99370.0|99432.0|99502.0|99508.0|99535.0|99600.0|99617.0|99727.0|99802.0|99831.0|99871.0|99943.0|100004.0|100050.0|100153.0|100154.0|100188.0|100260.0|100293.0|100381.0|100399.0|100408.0|100475.0|100484.0|100560.0|100566.0|100609.0|100669.0|100689.0|100711.0|100808.0|100821.0|100824.0|100876.0|101012.0|101015.0|101024.0|101031.0|101043.0|101119.0|101132.0|101137.0|101185.0|101217.0|101226.0|101240.0|101242.0|101267.0|101274.0|101307.0|101333.0|101347.0|101348.0|101392.0|101419.0|101441.0|101456.0|101489.0|101495.0|101520.0|101542.0|101549.0|101559.0|101663.0|101664.0|101683.0|101701.0|101769.0|101780.0|101804.0|101823.0|101843.0|101875.0|101907.0|101924.0|101978.0|101988.0|102011.0|102020.0|102025.0|102086.0|102104.0|102114.0|102126.0|102158.0|102180.0|102192.0|102206.0|102223.0|102227.0|102235.0|102237.0|102318.0|102320.0|102354.0|102374.0|102407.0|102428.0|102514.0|102526.0|102667.0|102699.0|102719.0|102732.0|102752.0|102824.0|102833.0|102836.0|102861.0|102939.0|102950.0|103035.0|103051.0|103085.0|103128.0|103145.0|103159.0|103185.0|103197.0|103237.0|103245.0|103249.0|103319.0|103346.0|103352.0|103401.0|103509.0|103531.0|103558.0|103617.0|103649.0|103661.0|103695.0|103725.0|103736.0|103764.0|103773.0|103803.0|103833.0|103910.0|104006.0|104017.0|104025.0|104037.0|104045.0|104084.0|104124.0|104145.0|104151.0|104157.0|104177.0|104207.0|104212.0|104232.0|104247.0|104266.0|104280.0|104300.0|104332.0|104339.0|104348.0|104383.0|104388.0|104406.0|104447.0|104482.0|104511.0|104550.0|104554.0|104589.0|104617.0|104625.0|104629.0|104661.0|104692.0|104697.0|104723.0|104769.0|104777.0|104853.0|104859.0|104892.0|104899.0|104935.0|104954.0|104984.0|105001.0|105038.0|105045.0|105090.0|105105.0|105116.0|105130.0|105156.0|105195.0|105198.0|105208.0|105230.0|105238.0|105290.0|105295.0|105305.0|105311.0|105355.0|105357.0|105413.0|105415.0|105459.0|105466.0|105471.0|105489.0|105510.0|105514.0|105517.0|105520.0|105560.0|105566.0|105574.0|105620.0|105627.0|105632.0|105649.0|105651.0|105661.0|105670.0|105682.0|105691.0|105724.0|105734.0|105762.0|105775.0|105778.0|105827.0|105842.0|105857.0|105863.0|105886.0|105894.0|105897.0|105904.0|105924.0|105964.0|105994.0|106019.0|106035.0|106057.0|106069.0|106096.0|106102.0|106116.0|106135.0|106136.0|106165.0|106197.0|106199.0|106210.0|106239.0|106271.0|106281.0|106304.0|106318.0|106368.0|106379.0|106388.0|106409.0|106426.0|106439.0|106446.0|106469.0|106486.0|106523.0|106526.0|106570.0|106643.0|106652.0|106701.0|106716.0|106744.0|106772.0|106831.0|106836.0|106837.0|106873.0|106891.0|106915.0|106962.0|106966.0|106972.0|106974.0|106977.0|107023.0|107025.0|107042.0|107065.0|107074.0|107075.0|107087.0|107095.0|107106.0|107120.0|107130.0|107152.0|107197.0|107225.0|107238.0|107252.0|107254.0|107261.0|107264.0|107277.0|107281.0|107290.0|107349.0|107368.0|107374.0|107377.0|107431.0|107459.0|107463.0|107473.0|107477.0|107480.0|107549.0|107560.0|107570.0|107580.0|107593.0|107615.0|107616.0|107631.0|107632.0|107644.0|107667.0|107675.0|107684.0|107697.0|107712.0|107733.0|107744.0|107782.0|107803.0|107824.0|107833.0|107881.0|107882.0|107904.0|107930.0|107935.0|107966.0|107982.0|107985.0|108003.0|108023.0|108055.0|108057.0|108066.0|108068.0|108091.0|108096.0|108097.0|108101.0|108134.0|108146.0|108174.0|108194.0|108197.0|108200.0|108202.0|108204.0|108220.0|108307.0|108317.0|108355.0|108360.0|108364.0|108365.0|108368.0|108385.0|108405.0|108418.0|108440.0|108457.0|108463.0|108490.0|108503.0|108510.0|108525.0|108533.0|108560.0|108587.0|108591.0|108609.0|108633.0|108664.0|108688.0|108695.0|108715.0|108717.0|108719.0|108730.0|108740.0|108751.0|108756.0|108772.0|108783.0|108793.0|108803.0|108835.0|108848.0|108857.0|108864.0|108878.0|108888.0|108899.0|108901.0|108911.0|108933.0|108940.0|108995.0|109017.0|109047.0|109062.0|109074.0|109076.0|109096.0|109112.0|109133.0|109138.0|109146.0|109166.0|109182.0|109183.0|109224.0|109231.0|109237.0|109246.0|109256.0|109268.0|109277.0|109282.0|109288.0|109290.0|109294.0|109298.0|109309.0|109328.0|109333.0|109336.0|109345.0|109348.0|109362.0|109370.0|109399.0|109406.0|109408.0|109416.0|109429.0|109437.0|109438.0|109451.0|109452.0|109458.0|109468.0|109480.0|109492.0|109493.0|109500.0|109506.0|109514.0|109535.0|109540.0|109546.0|109559.0|109560.0|109573.0|109599.0|109601.0|109653.0|109685.0|109700.0|109702.0|109706.0|109732.0|109734.0|109742.0|109747.0|109752.0|109776.0|109785.0|109803.0|109809.0|109814.0|109816.0|109835.0|109853.0|109880.0|109918.0|109921.0|109927.0|109929.0|109943.0|109952.0|109956.0|109964.0|109975.0|109992.0|110029.0|110033.0|110049.0|110061.0|110078.0|110082.0|110086.0|110101.0|110106.0|110122.0|110128.0|110143.0|110147.0|110186.0|110187.0|110190.0|110207.0|110209.0|110217.0|110225.0|110257.0|110264.0|110294.0|110304.0|110305.0|110308.0|110312.0|110316.0|110318.0|110351.0|110358.0|110366.0|110389.0|110396.0|110409.0|110420.0|110434.0|110438.0|110449.0|110459.0|110468.0|110510.0|110520.0|110522.0|110533.0|110560.0|110566.0|110571.0|110576.0|110598.0|110603.0|110607.0|110611.0|110621.0|110623.0|110662.0|110672.0|110675.0|110712.0|110716.0|110741.0|110748.0|110776.0|110813.0|110856.0|110861.0|110891.0|110902.0|110925.0|110934.0|110940.0|110944.0|110963.0|110964.0|110975.0|110984.0|110995.0|111007.0|111015.0 +in.representative_income metadata_and_annual usd float 111040.0|111050.0|111072.0|111102.0|111126.0|111137.0|111155.0|111170.0|111180.0|111190.0|111237.0|111267.0|111274.0|111288.0|111310.0|111316.0|111318.0|111366.0|111387.0|111397.0|111407.0|111449.0|111470.0|111471.0|111483.0|111500.0|111505.0|111520.0|111531.0|111578.0|111581.0|111593.0|111613.0|111650.0|111656.0|111660.0|111665.0|111667.0|111672.0|111683.0|111706.0|111721.0|111722.0|111723.0|111762.0|111788.0|111799.0|111809.0|111810.0|111823.0|111850.0|111864.0|111869.0|111883.0|111893.0|111894.0|111907.0|111913.0|111918.0|111936.0|111999.0|112002.0|112009.0|112016.0|112068.0|112078.0|112118.0|112153.0|112168.0|112176.0|112210.0|112222.0|112226.0|112227.0|112261.0|112271.0|112288.0|112308.0|112316.0|112325.0|112328.0|112369.0|112390.0|112409.0|112418.0|112429.0|112477.0|112497.0|112531.0|112540.0|112583.0|112585.0|112605.0|112631.0|112634.0|112639.0|112653.0|112712.0|112717.0|112732.0|112734.0|112737.0|112801.0|112833.0|112841.0|112873.0|112876.0|112905.0|112910.0|112926.0|112944.0|112948.0|113015.0|113017.0|113022.0|113054.0|113075.0|113076.0|113204.0|113264.0|113278.0|113298.0|113302.0|113305.0|113307.0|113357.0|113370.0|113439.0|113449.0|113451.0|113460.0|113476.0|113557.0|113563.0|113623.0|113665.0|113666.0|113678.0|113687.0|113707.0|113709.0|113742.0|113786.0|113817.0|113828.0|113843.0|113872.0|113887.0|113897.0|113975.0|114001.0|114098.0|114107.0|114109.0|114157.0|114214.0|114235.0|114247.0|114319.0|114322.0|114340.0|114348.0|114388.0|114430.0|114491.0|114537.0|114550.0|114606.0|114635.0|114638.0|114644.0|114651.0|114688.0|114698.0|114741.0|114746.0|114752.0|114801.0|114847.0|114855.0|114903.0|114952.0|114962.0|115070.0|115074.0|115110.0|115213.0|115258.0|115268.0|115287.0|115288.0|115317.0|115352.0|115379.0|115409.0|115419.0|115460.0|115480.0|115503.0|115571.0|115585.0|115610.0|115653.0|115662.0|115688.0|115690.0|115729.0|115763.0|115795.0|115826.0|115829.0|115864.0|115932.0|115935.0|115965.0|115985.0|116007.0|116038.0|116040.0|116059.0|116066.0|116151.0|116218.0|116254.0|116259.0|116348.0|116450.0|116451.0|116533.0|116640.0|116690.0|116745.0|116760.0|116773.0|116850.0|116874.0|116967.0|117006.0|117069.0|117123.0|117157.0|117221.0|117276.0|117339.0|117360.0|117379.0|117480.0|117483.0|117650.0|117772.0|117783.0|117799.0|117884.0|117895.0|118169.0|118204.0|118221.0|118294.0|118616.0|118643.0|118744.0|118749.0|118823.0|118854.0|118938.0|119003.0|119046.0|119133.0|119170.0|119171.0|119241.0|119260.0|119284.0|119381.0|119475.0|119500.0|119592.0|119649.0|119697.0|119719.0|119909.0|120207.0|120225.0|120226.0|120269.0|120308.0|120310.0|120330.0|120364.0|120611.0|120647.0|120700.0|120712.0|120763.0|120905.0|120914.0|121013.0|121069.0|121085.0|121174.0|121196.0|121217.0|121321.0|121419.0|121451.0|121512.0|121711.0|121729.0|121837.0|121845.0|121864.0|121912.0|121943.0|122018.0|122026.0|122127.0|122155.0|122228.0|122366.0|122374.0|122418.0|122450.0|122461.0|122480.0|122526.0|122536.0|122545.0|122632.0|122634.0|122639.0|122695.0|122733.0|122845.0|122849.0|122861.0|122910.0|122990.0|123155.0|123248.0|123264.0|123339.0|123389.0|123403.0|123431.0|123440.0|123468.0|123490.0|123509.0|123522.0|123600.0|123642.0|123705.0|123714.0|123743.0|123774.0|123811.0|123822.0|123894.0|123916.0|123945.0|123981.0|123984.0|124032.0|124091.0|124092.0|124147.0|124186.0|124197.0|124219.0|124228.0|124280.0|124290.0|124305.0|124362.0|124393.0|124470.0|124520.0|124522.0|124549.0|124551.0|124591.0|124652.0|124686.0|124759.0|124795.0|124805.0|124854.0|124866.0|124899.0|124949.0|124955.0|124971.0|125011.0|125012.0|125021.0|125056.0|125076.0|125115.0|125157.0|125158.0|125165.0|125167.0|125219.0|125224.0|125235.0|125255.0|125258.0|125271.0|125287.0|125293.0|125321.0|125345.0|125356.0|125379.0|125442.0|125528.0|125536.0|125540.0|125550.0|125567.0|125581.0|125604.0|125659.0|125662.0|125701.0|125763.0|125778.0|125808.0|125814.0|125875.0|125878.0|125915.0|125920.0|125929.0|125935.0|125940.0|125944.0|125983.0|126025.0|126066.0|126199.0|126238.0|126250.0|126278.0|126329.0|126342.0|126344.0|126352.0|126369.0|126383.0|126447.0|126452.0|126470.0|126510.0|126523.0|126552.0|126559.0|126563.0|126571.0|126574.0|126616.0|126622.0|126629.0|126631.0|126633.0|126635.0|126659.0|126662.0|126667.0|126671.0|126672.0|126700.0|126720.0|126739.0|126764.0|126766.0|126773.0|126775.0|126847.0|126874.0|126882.0|126935.0|126955.0|126971.0|126975.0|126977.0|126989.0|126990.0|127049.0|127063.0|127075.0|127076.0|127185.0|127198.0|127204.0|127226.0|127278.0|127286.0|127298.0|127333.0|127379.0|127385.0|127409.0|127425.0|127460.0|127484.0|127487.0|127495.0|127502.0|127525.0|127554.0|127581.0|127582.0|127590.0|127603.0|127605.0|127607.0|127694.0|127723.0|127744.0|127751.0|127754.0|127772.0|127783.0|127818.0|127819.0|127828.0|127848.0|127859.0|127861.0|127864.0|127869.0|127871.0|127901.0|127912.0|127924.0|127928.0|127942.0|127952.0|127956.0|127983.0|127985.0|128024.0|128026.0|128034.0|128036.0|128062.0|128086.0|128106.0|128127.0|128155.0|128170.0|128209.0|128211.0|128230.0|128253.0|128268.0|128271.0|128287.0|128288.0|128303.0|128313.0|128331.0|128345.0|128357.0|128367.0|128373.0|128385.0|128389.0|128398.0|128416.0|128483.0|128492.0|128493.0|128518.0|128530.0|128538.0|128551.0|128557.0|128576.0|128588.0|128597.0|128599.0|128600.0|128622.0|128630.0|128684.0|128725.0|128738.0|128757.0|128768.0|128785.0|128793.0|128832.0|128835.0|128854.0|128867.0|128870.0|128921.0|128949.0|128952.0|128975.0|128978.0|128996.0|129008.0|129017.0|129029.0|129035.0|129045.0|129050.0|129076.0|129097.0|129109.0|129114.0|129136.0|129141.0|129159.0|129189.0|129198.0|129205.0|129235.0|129248.0|129249.0|129276.0|129300.0|129319.0|129321.0|129324.0|129332.0|129339.0|129347.0|129349.0|129350.0|129351.0|129369.0|129378.0|129389.0|129400.0|129440.0|129447.0|129468.0|129495.0|129500.0|129501.0|129505.0|129516.0|129544.0|129559.0|129571.0|129602.0|129611.0|129622.0|129635.0|129653.0|129654.0|129658.0|129667.0|129673.0|129695.0|129703.0|129705.0|129711.0|129732.0|129733.0|129737.0|129743.0|129753.0|129756.0|129780.0|129786.0|129788.0|129802.0|129819.0|129822.0|129824.0|129840.0|129854.0|129873.0|129885.0|129887.0|129905.0|129990.0|129994.0|129996.0|130006.0|130033.0|130042.0|130044.0|130048.0|130066.0|130088.0|130099.0|130102.0|130107.0|130118.0|130166.0|130169.0|130196.0|130197.0|130198.0|130210.0|130242.0|130272.0|130309.0|130314.0|130316.0|130327.0|130349.0|130355.0|130371.0|130410.0|130424.0|130445.0|130479.0|130488.0|130521.0|130532.0|130550.0|130582.0|130584.0|130634.0|130639.0|130642.0|130644.0|130672.0|130692.0|130703.0|130713.0|130746.0|130753.0|130769.0|130778.0|130782.0|130788.0|130789.0|130795.0|130800.0|130814.0|130823.0|130824.0|130844.0|130845.0|130862.0|130876.0|130899.0|130915.0|130930.0|130953.0|130961.0|131005.0|131045.0|131046.0|131061.0|131068.0|131077.0|131108.0|131117.0|131127.0|131144.0|131149.0|131169.0|131170.0|131191.0|131193.0|131201.0|131218.0|131248.0|131283.0|131299.0|131319.0|131349.0|131359.0|131369.0|131370.0|131390.0|131407.0|131420.0|131425.0|131440.0|131471.0|131497.0|131505.0|131510.0|131536.0|131601.0|131605.0|131612.0|131613.0|131614.0|131652.0|131709.0|131712.0|131717.0|131721.0|131723.0|131817.0|131820.0|131888.0|131922.0|131927.0|131983.0|132034.0|132037.0|132088.0|132108.0|132117.0|132121.0|132129.0|132142.0|132247.0|132249.0|132250.0|132260.0|132329.0|132354.0|132357.0|132363.0|132410.0|132438.0|132450.0|132464.0|132470.0|132645.0|132652.0|132667.0|132669.0|132678.0|132682.0|132733.0|132790.0|132880.0|132893.0|132898.0|132920.0|132935.0|133006.0|133092.0|133099.0|133107.0|133119.0|133137.0|133211.0|133215.0|133238.0|133241.0|133302.0|133330.0|133339.0|133367.0|133460.0|133462.0|133511.0|133535.0|133583.0|133619.0|133624.0|133640.0|133644.0|133703.0|133713.0|133743.0|133751.0|133762.0|133779.0|133784.0|133830.0|133844.0|133859.0|133870.0|133885.0|133956.0|133967.0|133978.0|133986.0|134040.0|134046.0|134088.0|134145.0|134172.0|134181.0|134182.0|134192.0|134194.0|134219.0|134235.0|134252.0|134288.0|134289.0|134411.0|134450.0|134502.0|134551.0|134604.0|134611.0|134707.0|134713.0|134718.0|134729.0|134811.0|134825.0|134854.0|134950.0|135017.0|135029.0|135040.0|135056.0|135059.0|135064.0|135095.0|135120.0|135211.0|135255.0|135258.0|135276.0|135306.0|135326.0|135359.0|135383.0|135411.0|135523.0|135566.0|135636.0|135662.0|135763.0|135844.0|135864.0|135938.0|136060.0|136113.0|136139.0|136150.0|136152.0|136193.0|136247.0|136254.0|136255.0|136269.0|136328.0|136370.0|136380.0|136389.0|136461.0|136466.0|136564.0|136668.0|136734.0|136788.0|136822.0|136865.0|136875.0|136888.0|136976.0|136977.0|137037.0|137080.0|137183.0|137257.0|137294.0|137327.0|137389.0|137402.0|137632.0|137674.0|137683.0|137760.0|138048.0|138154.0|138157.0|138188.0|138289.0|138301.0|138420.0|138491.0|138524.0|138834.0|138844.0|139033.0|139111.0|139165.0|139208.0|139218.0|139246.0|139273.0|139345.0|139349.0|139548.0|139596.0|139602.0|139762.0|139817.0|139976.0|139978.0|140246.0|140263.0|140277.0|140357.0|140407.0|140586.0|140678.0|140785.0 +in.representative_income metadata_and_annual usd float 141001.0|141051.0|141106.0|141269.0|141309.0|141317.0|141319.0|141420.0|141706.0|141824.0|141866.0|142103.0|142127.0|142318.0|142340.0|142371.0|142426.0|142430.0|142478.0|142479.0|142554.0|142557.0|142583.0|142650.0|142661.0|142683.0|142753.0|142769.0|142823.0|142936.0|142959.0|143110.0|143121.0|143138.0|143166.0|143198.0|143371.0|143378.0|143426.0|143434.0|143441.0|143486.0|143578.0|143585.0|143628.0|143637.0|143785.0|143811.0|143845.0|143849.0|143887.0|143907.0|143919.0|143954.0|143990.0|144047.0|144059.0|144077.0|144102.0|144164.0|144197.0|144249.0|144270.0|144271.0|144302.0|144350.0|144379.0|144404.0|144451.0|144458.0|144481.0|144506.0|144507.0|144549.0|144587.0|144653.0|144675.0|144713.0|144783.0|144797.0|144805.0|144891.0|144915.0|144919.0|144956.0|144971.0|144987.0|144999.0|145009.0|145022.0|145065.0|145096.0|145114.0|145158.0|145188.0|145240.0|145259.0|145289.0|145345.0|145360.0|145378.0|145430.0|145432.0|145435.0|145452.0|145453.0|145455.0|145481.0|145535.0|145547.0|145562.0|145641.0|145647.0|145667.0|145693.0|145744.0|145747.0|145796.0|145847.0|145852.0|145917.0|145989.0|146011.0|146063.0|146096.0|146156.0|146168.0|146188.0|146204.0|146246.0|146260.0|146269.0|146274.0|146296.0|146380.0|146404.0|146419.0|146441.0|146487.0|146512.0|146528.0|146558.0|146570.0|146633.0|146672.0|146673.0|146675.0|146676.0|146687.0|146693.0|146740.0|146749.0|146774.0|146801.0|146835.0|146875.0|146879.0|146944.0|146952.0|146955.0|146981.0|146982.0|147077.0|147106.0|147116.0|147118.0|147277.0|147279.0|147288.0|147322.0|147328.0|147330.0|147380.0|147385.0|147433.0|147481.0|147484.0|147501.0|147528.0|147540.0|147577.0|147600.0|147633.0|147656.0|147666.0|147676.0|147683.0|147697.0|147700.0|147706.0|147716.0|147792.0|147807.0|147819.0|147834.0|147856.0|147890.0|147891.0|147909.0|147910.0|147917.0|147932.0|147982.0|147986.0|148013.0|148029.0|148035.0|148057.0|148075.0|148078.0|148099.0|148117.0|148133.0|148136.0|148141.0|148176.0|148179.0|148191.0|148200.0|148220.0|148225.0|148267.0|148289.0|148309.0|148322.0|148330.0|148390.0|148420.0|148426.0|148456.0|148457.0|148458.0|148479.0|148488.0|148529.0|148542.0|148545.0|148561.0|148581.0|148587.0|148615.0|148628.0|148632.0|148640.0|148653.0|148736.0|148759.0|148773.0|148780.0|148781.0|148784.0|148794.0|148846.0|148868.0|148887.0|148889.0|148895.0|148910.0|148952.0|148995.0|148996.0|148997.0|149016.0|149026.0|149045.0|149068.0|149102.0|149107.0|149142.0|149191.0|149210.0|149211.0|149213.0|149251.0|149269.0|149299.0|149303.0|149321.0|149333.0|149343.0|149354.0|149371.0|149374.0|149420.0|149424.0|149429.0|149434.0|149457.0|149499.0|149512.0|149526.0|149531.0|149537.0|149543.0|149560.0|149569.0|149602.0|149612.0|149615.0|149645.0|149649.0|149693.0|149703.0|149734.0|149753.0|149767.0|149775.0|149805.0|149812.0|149818.0|149839.0|149854.0|149859.0|149861.0|149865.0|149870.0|149871.0|149894.0|149922.0|149932.0|149933.0|149956.0|149960.0|149969.0|149973.0|149986.0|149993.0|150018.0|150020.0|150076.0|150186.0|150209.0|150219.0|150231.0|150251.0|150261.0|150269.0|150281.0|150283.0|150294.0|150326.0|150386.0|150434.0|150436.0|150458.0|150466.0|150489.0|150492.0|150499.0|150508.0|150605.0|150652.0|150659.0|150663.0|150695.0|150704.0|150712.0|150725.0|150726.0|150747.0|150764.0|150798.0|150809.0|150815.0|150830.0|150851.0|150852.0|150902.0|150916.0|150927.0|150942.0|151004.0|151017.0|151034.0|151036.0|151107.0|151118.0|151219.0|151269.0|151311.0|151320.0|151336.0|151356.0|151421.0|151428.0|151461.0|151464.0|151473.0|151542.0|151547.0|151587.0|151589.0|151590.0|151652.0|151657.0|151673.0|151678.0|151693.0|151726.0|151758.0|151830.0|151863.0|151875.0|151893.0|151916.0|151926.0|151933.0|152001.0|152017.0|152022.0|152027.0|152108.0|152128.0|152139.0|152238.0|152242.0|152249.0|152259.0|152285.0|152345.0|152346.0|152383.0|152390.0|152410.0|152430.0|152431.0|152440.0|152494.0|152530.0|152536.0|152537.0|152539.0|152540.0|152563.0|152580.0|152602.0|152654.0|152706.0|152707.0|152734.0|152751.0|152758.0|152841.0|152859.0|152886.0|152918.0|152928.0|152985.0|153023.0|153068.0|153087.0|153102.0|153168.0|153171.0|153178.0|153182.0|153210.0|153325.0|153340.0|153364.0|153371.0|153396.0|153406.0|153427.0|153441.0|153445.0|153480.0|153497.0|153503.0|153504.0|153509.0|153540.0|153551.0|153583.0|153643.0|153656.0|153686.0|153691.0|153751.0|153867.0|153892.0|153967.0|153973.0|153983.0|154040.0|154047.0|154078.0|154097.0|154128.0|154147.0|154148.0|154183.0|154236.0|154305.0|154313.0|154350.0|154451.0|154508.0|154511.0|154605.0|154718.0|154738.0|154813.0|154816.0|154820.0|154924.0|155027.0|155080.0|155113.0|155130.0|155213.0|155217.0|155339.0|155371.0|155436.0|155554.0|155562.0|155587.0|155663.0|155749.0|155764.0|155865.0|155955.0|155976.0|156113.0|156368.0|156370.0|156560.0|156609.0|156832.0|156876.0|156884.0|156938.0|156977.0|157064.0|157153.0|157262.0|157533.0|157812.0|157856.0|157875.0|157904.0|158088.0|158181.0|158212.0|158391.0|158507.0|158830.0|158843.0|158924.0|159140.0|159209.0|159245.0|159351.0|159369.0|159514.0|159585.0|159603.0|159875.0|159910.0|159944.0|160081.0|160125.0|160233.0|160300.0|160512.0|160597.0|160613.0|160906.0|160910.0|160990.0|161031.0|161038.0|161113.0|161219.0|161319.0|161339.0|161422.0|161530.0|161566.0|161671.0|161724.0|161732.0|161871.0|161882.0|161938.0|162071.0|162075.0|162091.0|162103.0|162128.0|162305.0|162416.0|162437.0|162514.0|162620.0|162633.0|162734.0|162936.0|162949.0|163037.0|163043.0|163147.0|163151.0|163259.0|163379.0|163441.0|163464.0|163485.0|163542.0|163588.0|163701.0|163799.0|163846.0|163885.0|163898.0|163947.0|163980.0|163992.0|163995.0|164015.0|164048.0|164123.0|164202.0|164231.0|164250.0|164307.0|164351.0|164448.0|164452.0|164518.0|164553.0|164556.0|164664.0|164667.0|164755.0|164761.0|164804.0|164826.0|164856.0|164882.0|164940.0|164989.0|165046.0|165054.0|165058.0|165095.0|165096.0|165099.0|165151.0|165179.0|165204.0|165238.0|165312.0|165329.0|165362.0|165366.0|165373.0|165420.0|165462.0|165528.0|165573.0|165582.0|165633.0|165651.0|165664.0|165704.0|165714.0|165765.0|165784.0|165857.0|165890.0|165955.0|165960.0|165967.0|166068.0|166069.0|166078.0|166090.0|166100.0|166169.0|166170.0|166176.0|166270.0|166271.0|166281.0|166284.0|166360.0|166373.0|166385.0|166392.0|166411.0|166416.0|166427.0|166438.0|166472.0|166573.0|166597.0|166628.0|166673.0|166674.0|166703.0|166714.0|166723.0|166775.0|166839.0|166846.0|166900.0|166944.0|166975.0|166992.0|167041.0|167049.0|167095.0|167136.0|167137.0|167165.0|167243.0|167261.0|167280.0|167302.0|167364.0|167366.0|167381.0|167471.0|167507.0|167534.0|167682.0|167689.0|167700.0|167714.0|167756.0|167785.0|167788.0|167797.0|167825.0|167846.0|167886.0|167887.0|167893.0|167905.0|167927.0|167984.0|167987.0|167995.0|168005.0|168013.0|168023.0|168067.0|168070.0|168075.0|168088.0|168107.0|168126.0|168148.0|168189.0|168205.0|168209.0|168210.0|168229.0|168283.0|168317.0|168333.0|168338.0|168421.0|168424.0|168437.0|168492.0|168508.0|168526.0|168531.0|168575.0|168632.0|168634.0|168642.0|168661.0|168692.0|168745.0|168746.0|168757.0|168758.0|168790.0|168854.0|168877.0|168896.0|168947.0|168952.0|168969.0|169054.0|169064.0|169088.0|169098.0|169108.0|169158.0|169159.0|169176.0|169190.0|169202.0|169250.0|169261.0|169264.0|169282.0|169283.0|169310.0|169321.0|169342.0|169351.0|169364.0|169380.0|169401.0|169418.0|169423.0|169468.0|169475.0|169497.0|169518.0|169526.0|169538.0|169543.0|169580.0|169605.0|169634.0|169654.0|169659.0|169673.0|169704.0|169712.0|169742.0|169765.0|169777.0|169792.0|169802.0|169805.0|169820.0|169833.0|169839.0|169849.0|169862.0|169884.0|169958.0|169981.0|169984.0|170002.0|170048.0|170067.0|170087.0|170120.0|170138.0|170189.0|170209.0|170230.0|170249.0|170254.0|170310.0|170346.0|170356.0|170361.0|170365.0|170390.0|170396.0|170425.0|170427.0|170453.0|170464.0|170495.0|170499.0|170512.0|170530.0|170572.0|170613.0|170678.0|170715.0|170726.0|170740.0|170758.0|170772.0|170786.0|170808.0|170818.0|170823.0|170868.0|170893.0|170899.0|170911.0|170950.0|170952.0|171001.0|171004.0|171015.0|171018.0|171038.0|171084.0|171089.0|171108.0|171118.0|171119.0|171215.0|171220.0|171222.0|171232.0|171321.0|171322.0|171330.0|171362.0|171478.0|171486.0|171531.0|171624.0|171687.0|171725.0|171737.0|171751.0|171755.0|171775.0|171795.0|171827.0|171839.0|171859.0|171901.0|171924.0|171943.0|171966.0|171995.0|172028.0|172038.0|172135.0|172139.0|172182.0|172226.0|172260.0|172270.0|172288.0|172323.0|172331.0|172335.0|172407.0|172443.0|172503.0|172533.0|172551.0|172562.0|172604.0|172639.0|172718.0|172735.0|172745.0|172767.0|172821.0|172826.0|172847.0|172872.0|172929.0|172937.0|172987.0|173040.0|173068.0|173077.0|173080.0|173139.0|173181.0|173284.0|173311.0|173341.0|173362.0|173377.0|173388.0|173415.0|173469.0|173483.0|173490.0|173525.0|173588.0|173593.0|173631.0|173694.0|173745.0|173799.0|173846.0|173899.0|173903.0|174005.0|174009.0|174017.0|174027.0|174048.0|174064.0|174086.0|174109.0|174147.0|174149.0|174221.0|174250.0|174280.0|174316.0|174326.0|174351.0|174398.0|174542.0|174553.0|174650.0 +in.representative_income metadata_and_annual usd float 174728.0|174831.0|174854.0|174957.0|174972.0|175024.0|175036.0|175038.0|175064.0|175275.0|175294.0|175347.0|175378.0|175423.0|175466.0|175592.0|175634.0|175685.0|175765.0|175908.0|175941.0|175966.0|175981.0|176116.0|176248.0|176330.0|176361.0|176378.0|176472.0|176573.0|176657.0|176775.0|177197.0|177280.0|177305.0|177377.0|177385.0|177413.0|177583.0|177786.0|177806.0|177846.0|177925.0|178029.0|178190.0|178193.0|178228.0|178277.0|178648.0|178796.0|178966.0|179266.0|179283.0|179358.0|179452.0|179473.0|179574.0|179599.0|179695.0|179728.0|179806.0|179811.0|179886.0|180091.0|180236.0|180337.0|180505.0|180876.0|181174.0|181267.0|181392.0|181413.0|181519.0|181536.0|181603.0|181624.0|181681.0|181951.0|182155.0|182383.0|182447.0|182486.0|182533.0|182567.0|182600.0|182701.0|182735.0|182773.0|183008.0|183023.0|183032.0|183083.0|183185.0|183238.0|183345.0|183543.0|183572.0|183591.0|183599.0|183671.0|183991.0|184048.0|184134.0|184271.0|184328.0|184345.0|184351.0|184364.0|184452.0|184544.0|184566.0|184587.0|184630.0|184633.0|184661.0|184740.0|184857.0|184880.0|184940.0|184958.0|185030.0|185063.0|185074.0|185193.0|185247.0|185261.0|185277.0|185294.0|185352.0|185362.0|185385.0|185409.0|185421.0|185439.0|185505.0|185507.0|185713.0|185744.0|185863.0|185878.0|185968.0|186032.0|186069.0|186074.0|186170.0|186177.0|186244.0|186280.0|186291.0|186349.0|186381.0|186412.0|186487.0|186489.0|186587.0|186590.0|186608.0|186665.0|186675.0|186776.0|186796.0|186810.0|186876.0|186877.0|186887.0|186921.0|186975.0|186978.0|186982.0|186995.0|187003.0|187192.0|187208.0|187297.0|187382.0|187404.0|187415.0|187424.0|187462.0|187517.0|187518.0|187584.0|187639.0|187678.0|187685.0|187773.0|187786.0|187787.0|187854.0|187865.0|187868.0|187887.0|187907.0|187930.0|187950.0|187961.0|187983.0|187988.0|188001.0|188034.0|nan|1.0|10.0|31.0|32.0|61.0|62.0|64.0|71.0|72.0|74.0|82.0|86.0|91.0|95.0|105.0|121.0|126.0|129.0|134.0|138.0|141.0|145.0|151.0|155.0|169.0|171.0|173.0|179.0|183.0|185.0|192.0|194.0|200.0|204.0|205.0|207.0|211.0|212.0|222.0|225.0|236.0|242.0|243.0|247.0|253.0|258.0|259.0|263.0|264.0|270.0|279.0|283.0|289.0|290.0|293.0|299.0|300.0|311.0|320.0|330.0|333.0|343.0|344.0|345.0|348.0|351.0|356.0|369.0|374.0|379.0|382.0|402.0|406.0|411.0|418.0|422.0|424.0|429.0|433.0|434.0|443.0|444.0|450.0|454.0|455.0|465.0|473.0|474.0|487.0|495.0|505.0|506.0|507.0|519.0|526.0|532.0|541.0|545.0|551.0|557.0|558.0|562.0|574.0|579.0|590.0|591.0|595.0|596.0|605.0|616.0|624.0|626.0|633.0|643.0|644.0|646.0|654.0|657.0|659.0|677.0|681.0|686.0|687.0|691.0|692.0|696.0|701.0|702.0|712.0|717.0|724.0|729.0|759.0|773.0|774.0|781.0|789.0|794.0|800.0|804.0|805.0|808.0|816.0|818.0|826.0|833.0|838.0|853.0|856.0|865.0|876.0|879.0|881.0|886.0|897.0|899.0|902.0|907.0|919.0|923.0|928.0|929.0|934.0|938.0|949.0|950.0|951.0|955.0|959.0|970.0|980.0|981.0|990.0|991.0|994.0|1000.0|1002.0|1009.0|1010.0|1011.0|1015.0|1016.0|1021.0|1026.0|1041.0|1052.0|1059.0|1065.0|1071.0|1083.0|1091.0|1092.0|1095.0|1105.0|1106.0|1112.0|1116.0|1121.0|1125.0|1127.0|1141.0|1150.0|1160.0|1166.0|1170.0|1171.0|1177.0|1202.0|1222.0|1238.0|1244.0|1248.0|1253.0|1265.0|1279.0|1319.0|1329.0|1330.0|1331.0|1362.0|1364.0|1371.0|1372.0|1381.0|1392.0|1396.0|1407.0|1423.0|1434.0|1445.0|1455.0|1460.0|1465.0|1481.0|1495.0|1509.0|1510.0|1515.0|1517.0|1519.0|1524.0|1534.0|1535.0|1540.0|1546.0|1549.0|1561.0|1567.0|1568.0|1581.0|1587.0|1609.0|1614.0|1622.0|1626.0|1647.0|1650.0|1653.0|1671.0|1677.0|1682.0|1685.0|1688.0|1696.0|1697.0|1702.0|1717.0|1732.0|1737.0|1739.0|1740.0|1772.0|1778.0|1783.0|1784.0|1793.0|1805.0|1814.0|1815.0|1825.0|1835.0|1845.0|1858.0|1887.0|1890.0|1893.0|1919.0|1929.0|1937.0|1944.0|1970.0|1975.0|1977.0|1981.0|1986.0|1991.0|2000.0|2004.0|2021.0|2022.0|2024.0|2036.0|2039.0|2046.0|2053.0|2058.0|2072.0|2073.0|2076.0|2088.0|2098.0|2104.0|2106.0|2121.0|2129.0|2131.0|2140.0|2147.0|2148.0|2151.0|2156.0|2159.0|2161.0|2162.0|2166.0|2179.0|2189.0|2193.0|2204.0|2222.0|2226.0|2228.0|2233.0|2238.0|2243.0|2246.0|2257.0|2259.0|2260.0|2273.0|2276.0|2279.0|2285.0|2288.0|2308.0|2321.0|2331.0|2334.0|2341.0|2342.0|2353.0|2354.0|2355.0|2366.0|2374.0|2377.0|2384.0|2394.0|2399.0|2403.0|2405.0|2408.0|2414.0|2415.0|2420.0|2426.0|2431.0|2442.0|2455.0|2457.0|2475.0|2491.0|2503.0|2505.0|2515.0|2517.0|2525.0|2527.0|2538.0|2539.0|2550.0|2558.0|2571.0|2584.0|2586.0|2587.0|2593.0|2594.0|2598.0|2606.0|2609.0|2630.0|2640.0|2642.0|2651.0|2661.0|2689.0|2694.0|2700.0|2703.0|2707.0|2712.0|2715.0|2729.0|2748.0|2755.0|2756.0|2770.0|2775.0|2785.0|2788.0|2791.0|2808.0|2810.0|2815.0|2816.0|2820.0|2828.0|2836.0|2837.0|2842.0|2844.0|2858.0|2864.0|2888.0|2918.0|2939.0|2960.0|2966.0|2973.0|2979.0|2993.0|2996.0|3010.0|3012.0|3015.0|3016.0|3017.0|3022.0|3025.0|3027.0|3030.0|3032.0|3045.0|3047.0|3051.0|3059.0|3070.0|3094.0|3100.0|3113.0|3125.0|3133.0|3135.0|3153.0|3164.0|3179.0|3185.0|3197.0|3198.0|3199.0|3217.0|3220.0|3227.0|3232.0|3237.0|3241.0|3243.0|3248.0|3263.0|3269.0|3273.0|3274.0|3291.0|3301.0|3306.0|3317.0|3321.0|3322.0|3328.0|3333.0|3352.0|3360.0|3363.0|3365.0|3371.0|3372.0|3385.0|3391.0|3392.0|3394.0|3395.0|3403.0|3404.0|3427.0|3446.0|3448.0|3454.0|3455.0|3456.0|3465.0|3467.0|3478.0|3491.0|3496.0|3499.0|3506.0|3510.0|3512.0|3517.0|3533.0|3546.0|3548.0|3552.0|3559.0|3564.0|3566.0|3575.0|3583.0|3588.0|3589.0|3596.0|3607.0|3609.0|3610.0|3628.0|3631.0|3637.0|3638.0|3657.0|3659.0|3661.0|3667.0|3674.0|3675.0|3689.0|3696.0|3703.0|3704.0|3717.0|3723.0|3728.0|3735.0|3739.0|3743.0|3746.0|3749.0|3757.0|3760.0|3771.0|3786.0|3790.0|3793.0|3796.0|3803.0|3808.0|3811.0|3817.0|3822.0|3838.0|3839.0|3850.0|3858.0|3860.0|3864.0|3878.0|3879.0|3888.0|3890.0|3902.0|3910.0|3922.0|3950.0|3951.0|3952.0|3954.0|3955.0|3970.0|3971.0|3983.0|3984.0|3998.0|4004.0|4007.0|4011.0|4018.0|4019.0|4025.0|4034.0|4046.0|4052.0|4058.0|4062.0|4069.0|4071.0|4075.0|4079.0|4084.0|4085.0|4094.0|4101.0|4105.0|4106.0|4113.0|4121.0|4124.0|4147.0|4152.0|4157.0|4167.0|4175.0|4177.0|4182.0|4188.0|4192.0|4197.0|4198.0|4214.0|4217.0|4224.0|4229.0|4235.0|4243.0|4246.0|4247.0|4260.0|4267.0|4272.0|4290.0|4295.0|4313.0|4314.0|4315.0|4321.0|4324.0|4337.0|4344.0|4348.0|4357.0|4366.0|4374.0|4376.0|4388.0|4401.0|4414.0|4419.0|4422.0|4424.0|4430.0|4435.0|4440.0|4444.0|4450.0|4461.0|4473.0|4475.0|4476.0|4477.0|4503.0|4506.0|4509.0|4517.0|4519.0|4523.0|4535.0|4536.0|4539.0|4551.0|4576.0|4579.0|4582.0|4585.0|4591.0|4594.0|4600.0|4637.0|4642.0|4646.0|4667.0|4672.0|4679.0|4680.0|4683.0|4691.0|4693.0|4697.0|4701.0|4708.0|4724.0|4743.0|4744.0|4746.0|4755.0|4757.0|4776.0|4777.0|4786.0|4788.0|4796.0|4809.0|4819.0|4830.0|4838.0|4840.0|4841.0|4848.0|4849.0|4850.0|4858.0|4859.0|4872.0|4880.0|4883.0|4884.0|4889.0|4893.0|4916.0|4938.0|4940.0|4946.0|4950.0|4952.0|4957.0|4981.0|4982.0|4992.0|5010.0|5013.0|5024.0|5033.0|5045.0|5054.0|5062.0|5067.0|5071.0|5078.0|5091.0|5105.0|5111.0|5115.0|5119.0|5121.0|5131.0|5147.0|5153.0|5154.0|5167.0|5170.0|5178.0|5191.0|5202.0|5203.0|5216.0|5231.0|5241.0|5243.0|5245.0|5260.0|5262.0|5263.0|5271.0|5273.0|5282.0|5283.0|5293.0|5304.0|5307.0|5315.0|5318.0|5322.0|5344.0|5365.0|5368.0|5372.0|5378.0|5379.0|5381.0|5384.0|5392.0|5400.0|5403.0|5410.0|5421.0|5424.0|5429.0|5435.0|5446.0|5462.0|5464.0|5467.0|5474.0|5485.0|5495.0|5518.0|5521.0|5528.0|5543.0|5547.0|5550.0 +in.representative_income metadata_and_annual usd float 5556.0|5564.0|5576.0|5578.0|5580.0|5582.0|5588.0|5590.0|5593.0|5597.0|5603.0|5608.0|5610.0|5625.0|5627.0|5629.0|5637.0|5647.0|5667.0|5673.0|5683.0|5689.0|5694.0|5697.0|5699.0|5707.0|5711.0|5726.0|5732.0|5746.0|5755.0|5778.0|5791.0|5797.0|5800.0|5804.0|5806.0|5807.0|5808.0|5811.0|5813.0|5821.0|5829.0|5832.0|5838.0|5840.0|5849.0|5853.0|5872.0|5906.0|5909.0|5921.0|5931.0|5941.0|5951.0|5952.0|5958.0|5959.0|5968.0|5969.0|5979.0|5980.0|5989.0|5997.0|6008.0|6010.0|6011.0|6012.0|6022.0|6032.0|6037.0|6055.0|6057.0|6061.0|6062.0|6063.0|6065.0|6073.0|6081.0|6085.0|6087.0|6091.0|6105.0|6106.0|6116.0|6117.0|6119.0|6121.0|6148.0|6160.0|6162.0|6167.0|6202.0|6213.0|6219.0|6222.0|6224.0|6226.0|6243.0|6261.0|6267.0|6273.0|6278.0|6286.0|6293.0|6305.0|6313.0|6323.0|6336.0|6342.0|6348.0|6355.0|6359.0|6364.0|6369.0|6381.0|6394.0|6398.0|6406.0|6407.0|6429.0|6435.0|6441.0|6443.0|6447.0|6456.0|6459.0|6462.0|6469.0|6480.0|6483.0|6484.0|6486.0|6491.0|6498.0|6507.0|6515.0|6517.0|6535.0|6536.0|6540.0|6546.0|6548.0|6549.0|6550.0|6556.0|6561.0|6566.0|6569.0|6606.0|6611.0|6612.0|6616.0|6623.0|6645.0|6653.0|6655.0|6665.0|6677.0|6687.0|6698.0|6707.0|6709.0|6717.0|6719.0|6720.0|6737.0|6739.0|6741.0|6760.0|6763.0|6777.0|6787.0|6807.0|6808.0|6818.0|6824.0|6828.0|6829.0|6838.0|6849.0|6855.0|6861.0|6886.0|6910.0|6919.0|6937.0|6940.0|6959.0|6960.0|6962.0|6994.0|7002.0|7012.0|7014.0|7018.0|7023.0|7024.0|7028.0|7031.0|7035.0|7041.0|7045.0|7055.0|7063.0|7081.0|7087.0|7094.0|7110.0|7128.0|7132.0|7142.0|7148.0|7150.0|7160.0|7161.0|7169.0|7171.0|7172.0|7174.0|7179.0|7181.0|7185.0|7192.0|7196.0|7202.0|7203.0|7212.0|7223.0|7230.0|7235.0|7239.0|7246.0|7255.0|7262.0|7268.0|7277.0|7299.0|7310.0|7331.0|7336.0|7350.0|7351.0|7369.0|7379.0|7394.0|7416.0|7428.0|7433.0|7435.0|7444.0|7446.0|7450.0|7459.0|7467.0|7471.0|7475.0|7477.0|7478.0|7498.0|7504.0|7507.0|7516.0|7519.0|7536.0|7539.0|7540.0|7547.0|7551.0|7561.0|7562.0|7564.0|7572.0|7576.0|7581.0|7585.0|7589.0|7624.0|7632.0|7657.0|7665.0|7668.0|7677.0|7688.0|7705.0|7729.0|7731.0|7736.0|7741.0|7783.0|7788.0|7790.0|7804.0|7836.0|7849.0|7857.0|7868.0|7869.0|7888.0|7889.0|7891.0|7910.0|7931.0|7943.0|7950.0|7976.0|7985.0|7990.0|7993.0|7995.0|8028.0|8029.0|8031.0|8039.0|8041.0|8055.0|8062.0|8066.0|8076.0|8100.0|8101.0|8103.0|8105.0|8110.0|8121.0|8138.0|8152.0|8169.0|8211.0|8219.0|8223.0|8226.0|8247.0|8253.0|8265.0|8283.0|8287.0|8289.0|8303.0|8310.0|8318.0|8320.0|8355.0|8375.0|8384.0|8394.0|8399.0|8404.0|8426.0|8428.0|8432.0|8451.0|8457.0|8458.0|8469.0|8479.0|8480.0|8482.0|8485.0|8487.0|8489.0|8491.0|8497.0|8500.0|8505.0|8521.0|8525.0|8531.0|8556.0|8558.0|8561.0|8567.0|8588.0|8606.0|8616.0|8617.0|8645.0|8673.0|8687.0|8706.0|8711.0|8728.0|8748.0|8753.0|8758.0|8767.0|8770.0|8791.0|8798.0|8806.0|8829.0|8849.0|8856.0|8860.0|8868.0|8880.0|8889.0|8890.0|8914.0|8915.0|8922.0|8931.0|8932.0|8963.0|8980.0|8990.0|8996.0|9017.0|9030.0|9038.0|9051.0|9054.0|9056.0|9071.0|9076.0|9080.0|9086.0|9108.0|9119.0|9132.0|9142.0|9145.0|9154.0|9157.0|9163.0|9180.0|9185.0|9186.0|9189.0|9196.0|9206.0|9213.0|9232.0|9256.0|9275.0|9283.0|9285.0|9292.0|9333.0|9335.0|9366.0|9376.0|9394.0|9448.0|9450.0|9457.0|9468.0|9481.0|9490.0|9491.0|9495.0|9508.0|9510.0|9512.0|9523.0|9541.0|9545.0|9551.0|9617.0|9618.0|9629.0|9640.0|9647.0|9661.0|9681.0|9695.0|9697.0|9737.0|9747.0|9755.0|9766.0|9769.0|9771.0|9799.0|9809.0|9810.0|9819.0|9849.0|9853.0|9879.0|9902.0|9903.0|9930.0|9934.0|9940.0|9945.0|9950.0|9954.0|9972.0|9983.0|9998.0|10000.0|10004.0|10037.0|10038.0|10049.0|10080.0|10081.0|10101.0|10112.0|10114.0|10119.0|10122.0|10124.0|10132.0|10135.0|10144.0|10154.0|10166.0|10202.0|10221.0|10251.0|10265.0|10273.0|10283.0|10303.0|10334.0|10335.0|10336.0|10346.0|10351.0|10359.0|10366.0|10369.0|10392.0|10394.0|10426.0|10448.0|10451.0|10456.0|10459.0|10469.0|10479.0|10480.0|10481.0|10485.0|10490.0|10491.0|10502.0|10506.0|10509.0|10534.0|10546.0|10555.0|10557.0|10563.0|10569.0|10584.0|10585.0|10590.0|10599.0|10603.0|10606.0|10611.0|10621.0|10628.0|10631.0|10635.0|10636.0|10638.0|10640.0|10642.0|10648.0|10652.0|10659.0|10665.0|10667.0|10675.0|10676.0|10683.0|10695.0|10698.0|10706.0|10708.0|10713.0|10717.0|10718.0|10736.0|10740.0|10757.0|10762.0|10766.0|10767.0|10772.0|10773.0|10778.0|10782.0|10783.0|10792.0|10794.0|10805.0|10809.0|10810.0|10816.0|10819.0|10827.0|10832.0|10837.0|10842.0|10848.0|10851.0|10852.0|10859.0|10863.0|10870.0|10873.0|10874.0|10885.0|10891.0|10892.0|10895.0|10896.0|10900.0|10903.0|10905.0|10915.0|10926.0|10938.0|10940.0|10949.0|10970.0|10980.0|10984.0|10985.0|10989.0|10991.0|10993.0|11006.0|11010.0|11011.0|11021.0|11037.0|11051.0|11056.0|11057.0|11061.0|11062.0|11063.0|11064.0|11067.0|11074.0|11081.0|11084.0|11090.0|11091.0|11098.0|11105.0|11107.0|11111.0|11112.0|11121.0|11126.0|11129.0|11142.0|11150.0|11152.0|11160.0|11169.0|11172.0|11179.0|11183.0|11185.0|11192.0|11194.0|11196.0|11210.0|11212.0|11221.0|11226.0|11231.0|11233.0|11237.0|11250.0|11253.0|11264.0|11283.0|11293.0|11304.0|11308.0|11316.0|11330.0|11331.0|11334.0|11336.0|11348.0|11354.0|11356.0|11358.0|11364.0|11366.0|11368.0|11374.0|11384.0|11387.0|11394.0|11397.0|11405.0|11407.0|11409.0|11415.0|11424.0|11425.0|11429.0|11431.0|11432.0|11443.0|11449.0|11451.0|11453.0|11457.0|11464.0|11465.0|11469.0|11475.0|11485.0|11490.0|11491.0|11495.0|11503.0|11507.0|11511.0|11515.0|11516.0|11518.0|11519.0|11548.0|11551.0|11559.0|11561.0|11562.0|11563.0|11566.0|11571.0|11572.0|11573.0|11590.0|11594.0|11596.0|11600.0|11604.0|11605.0|11615.0|11618.0|11626.0|11628.0|11633.0|11634.0|11656.0|11657.0|11664.0|11666.0|11667.0|11685.0|11695.0|11703.0|11707.0|11713.0|11719.0|11722.0|11727.0|11728.0|11734.0|11744.0|11745.0|11748.0|11755.0|11756.0|11757.0|11759.0|11760.0|11765.0|11769.0|11776.0|11777.0|11778.0|11787.0|11788.0|11790.0|11800.0|11810.0|11812.0|11833.0|11834.0|11835.0|11842.0|11843.0|11846.0|11849.0|11851.0|11854.0|11861.0|11862.0|11872.0|11874.0|11879.0|11885.0|11903.0|11913.0|11918.0|11923.0|11926.0|11930.0|11938.0|11939.0|11944.0|11948.0|11958.0|11959.0|11960.0|11975.0|11981.0|11986.0|11989.0|11990.0|11991.0|11996.0|12004.0|12006.0|12011.0|12015.0|12036.0|12048.0|12061.0|12076.0|12079.0|12081.0|12096.0|12099.0|12101.0|12110.0|12112.0|12120.0|12123.0|12132.0|12133.0|12148.0|12155.0|12160.0|12177.0|12181.0|12184.0|12187.0|12192.0|12202.0|12220.0|12227.0|12230.0|12233.0|12237.0|12246.0|12248.0|12253.0|12255.0|12258.0|12263.0|12264.0|12275.0|12283.0|12314.0|12315.0|12323.0|12324.0|12334.0|12347.0|12355.0|12366.0|12372.0|12374.0|12377.0|12383.0|12387.0|12388.0|12392.0|12393.0|12398.0|12404.0|12408.0|12419.0|12420.0|12429.0|12434.0|12447.0|12452.0|12469.0|12475.0|12480.0|12485.0|12490.0|12497.0|12501.0|12527.0|12529.0|12534.0|12550.0|12552.0|12571.0|12577.0|12584.0|12588.0|12590.0|12592.0|12593.0|12603.0|12618.0|12624.0|12637.0|12645.0|12652.0|12655.0|12657.0|12659.0|12663.0|12676.0|12696.0|12707.0|12717.0|12728.0|12729.0|12739.0|12740.0|12749.0|12753.0|12759.0|12771.0|12784.0|12793.0|12795.0|12800.0|12803.0|12804.0|12814.0|12819.0|12829.0|12833.0|12842.0|12846.0|12855.0|12860.0|12866.0|12881.0|12882.0|12890.0|12892.0|12893.0|12911.0|12913.0|12914.0|12919.0|12923.0|12940.0|12944.0|12950.0|12954.0|12965.0|12966.0|12972.0|12984.0|12987.0|12989.0|12990.0|12993.0|12996.0|12998.0|13001.0|13006.0|13008.0|13010.0|13017.0|13021.0|13025.0|13030.0|13031.0|13032.0|13042.0|13048.0|13054.0|13058.0|13067.0|13071.0|13074.0|13075.0|13077.0|13081.0|13085.0|13091.0|13096.0|13098.0|13112.0|13117.0|13128.0|13132.0|13139.0|13151.0|13152.0|13161.0|13172.0|13174.0|13190.0|13192.0|13204.0 +in.representative_income metadata_and_annual usd float 13215.0|13233.0|13236.0|13247.0|13257.0|13267.0|13268.0|13272.0|13279.0|13288.0|13289.0|13294.0|13296.0|13300.0|13301.0|13304.0|13305.0|13306.0|13309.0|13314.0|13319.0|13331.0|13332.0|13333.0|13334.0|13338.0|13344.0|13354.0|13357.0|13358.0|13359.0|13362.0|13364.0|13366.0|13376.0|13384.0|13395.0|13397.0|13405.0|13407.0|13409.0|13411.0|13414.0|13415.0|13418.0|13419.0|13435.0|13436.0|13439.0|13445.0|13446.0|13450.0|13455.0|13465.0|13475.0|13484.0|13494.0|13499.0|13504.0|13507.0|13512.0|13516.0|13517.0|13521.0|13523.0|13526.0|13531.0|13536.0|13552.0|13567.0|13568.0|13569.0|13570.0|13579.0|13581.0|13592.0|13593.0|13595.0|13607.0|13611.0|13612.0|13625.0|13626.0|13627.0|13634.0|13635.0|13636.0|13643.0|13644.0|13654.0|13657.0|13668.0|13676.0|13688.0|13698.0|13706.0|13714.0|13723.0|13724.0|13729.0|13741.0|13752.0|13758.0|13765.0|13766.0|13773.0|13774.0|13776.0|13779.0|13781.0|13784.0|13800.0|13805.0|13808.0|13815.0|13848.0|13863.0|13873.0|13874.0|13875.0|13879.0|13889.0|13891.0|13892.0|13900.0|13901.0|13904.0|13912.0|13915.0|13917.0|13923.0|13930.0|13942.0|13945.0|13950.0|13952.0|13959.0|13960.0|13962.0|13965.0|13973.0|13974.0|13976.0|13983.0|13984.0|13992.0|13995.0|14001.0|14008.0|14011.0|14021.0|14052.0|14057.0|14071.0|14079.0|14086.0|14089.0|14095.0|14099.0|14100.0|14102.0|14111.0|14121.0|14124.0|14126.0|14132.0|14133.0|14143.0|14152.0|14156.0|14162.0|14182.0|14202.0|14212.0|14223.0|14225.0|14233.0|14241.0|14254.0|14273.0|14300.0|14306.0|14316.0|14324.0|14331.0|14334.0|14337.0|14341.0|14344.0|14364.0|14370.0|14371.0|14388.0|14389.0|14392.0|14399.0|14415.0|14418.0|14428.0|14435.0|14444.0|14451.0|14459.0|14461.0|14492.0|14500.0|14516.0|14546.0|14572.0|14574.0|14575.0|14578.0|14585.0|14586.0|14588.0|14626.0|14636.0|14646.0|14647.0|14652.0|14657.0|14662.0|14668.0|14676.0|14677.0|14695.0|14707.0|14716.0|14728.0|14743.0|14748.0|14760.0|14792.0|14803.0|14814.0|14833.0|14846.0|14861.0|14867.0|14870.0|14911.0|14925.0|14932.0|14950.0|14965.0|14976.0|15028.0|15031.0|15039.0|15049.0|15082.0|15083.0|15090.0|15112.0|15116.0|15125.0|15126.0|15131.0|15146.0|15148.0|15152.0|15170.0|15185.0|15186.0|15200.0|15203.0|15211.0|15213.0|15220.0|15223.0|15238.0|15243.0|15253.0|15265.0|15269.0|15286.0|15287.0|15296.0|15299.0|15302.0|15327.0|15334.0|15354.0|15369.0|15395.0|15397.0|15415.0|15425.0|15429.0|15430.0|15460.0|15480.0|15494.0|15503.0|15506.0|15508.0|15524.0|15543.0|15556.0|15564.0|15576.0|15585.0|15608.0|15615.0|15616.0|15626.0|15637.0|15647.0|15650.0|15653.0|15662.0|15689.0|15694.0|15699.0|15700.0|15714.0|15715.0|15718.0|15719.0|15729.0|15730.0|15732.0|15733.0|15735.0|15739.0|15743.0|15744.0|15759.0|15775.0|15780.0|15799.0|15802.0|15829.0|15833.0|15834.0|15840.0|15853.0|15859.0|15877.0|15883.0|15884.0|15887.0|15888.0|15890.0|15892.0|15900.0|15910.0|15914.0|15921.0|15924.0|15930.0|15936.0|15937.0|15945.0|15948.0|15970.0|15977.0|15988.0|15994.0|16011.0|16012.0|16021.0|16024.0|16027.0|16030.0|16031.0|16034.0|16038.0|16039.0|16040.0|16045.0|16056.0|16061.0|16070.0|16072.0|16091.0|16101.0|16103.0|16106.0|16111.0|16112.0|16119.0|16123.0|16131.0|16132.0|16133.0|16136.0|16145.0|16149.0|16153.0|16162.0|16173.0|16182.0|16183.0|16188.0|16197.0|16200.0|16207.0|16208.0|16213.0|16217.0|16219.0|16220.0|16222.0|16228.0|16231.0|16233.0|16235.0|16240.0|16252.0|16261.0|16262.0|16273.0|16274.0|16276.0|16283.0|16284.0|16293.0|16294.0|16297.0|16302.0|16305.0|16306.0|16307.0|16311.0|16315.0|16317.0|16318.0|16326.0|16330.0|16331.0|16332.0|16338.0|16364.0|16367.0|16370.0|16385.0|16400.0|16401.0|16402.0|16410.0|16413.0|16420.0|16424.0|16426.0|16435.0|16441.0|16442.0|16445.0|16455.0|16462.0|16472.0|16473.0|16477.0|16485.0|16486.0|16487.0|16493.0|16495.0|16497.0|16506.0|16513.0|16520.0|16533.0|16536.0|16537.0|16542.0|16545.0|16566.0|16568.0|16571.0|16584.0|16589.0|16600.0|16601.0|16603.0|16605.0|16610.0|16612.0|16617.0|16625.0|16627.0|16638.0|16639.0|16640.0|16642.0|16644.0|16650.0|16656.0|16657.0|16666.0|16668.0|16670.0|16671.0|16672.0|16682.0|16684.0|16685.0|16693.0|16704.0|16705.0|16708.0|16716.0|16726.0|16735.0|16736.0|16737.0|16738.0|16747.0|16748.0|16751.0|16758.0|16768.0|16778.0|16779.0|16780.0|16792.0|16799.0|16810.0|16819.0|16821.0|16839.0|16844.0|16854.0|16855.0|16859.0|16869.0|16872.0|16873.0|16875.0|16877.0|16880.0|16890.0|16898.0|16905.0|16916.0|16919.0|16920.0|16936.0|16937.0|16952.0|16961.0|16962.0|16971.0|16978.0|16996.0|17010.0|17011.0|17014.0|17017.0|17019.0|17021.0|17023.0|17024.0|17028.0|17031.0|17040.0|17041.0|17042.0|17046.0|17050.0|17051.0|17057.0|17071.0|17074.0|17083.0|17085.0|17090.0|17091.0|17092.0|17093.0|17095.0|17112.0|17126.0|17137.0|17138.0|17151.0|17152.0|17155.0|17158.0|17174.0|17175.0|17180.0|17181.0|17184.0|17194.0|17197.0|17200.0|17207.0|17208.0|17223.0|17227.0|17229.0|17234.0|17243.0|17245.0|17248.0|17250.0|17254.0|17256.0|17261.0|17264.0|17266.0|17276.0|17278.0|17285.0|17289.0|17292.0|17295.0|17298.0|17307.0|17308.0|17309.0|17318.0|17328.0|17342.0|17344.0|17347.0|17348.0|17359.0|17364.0|17367.0|17374.0|17379.0|17394.0|17396.0|17410.0|17411.0|17435.0|17441.0|17445.0|17446.0|17450.0|17453.0|17454.0|17455.0|17465.0|17476.0|17487.0|17493.0|17500.0|17513.0|17517.0|17519.0|17525.0|17535.0|17540.0|17561.0|17575.0|17577.0|17581.0|17583.0|17587.0|17597.0|17606.0|17609.0|17612.0|17638.0|17657.0|17662.0|17665.0|17669.0|17675.0|17680.0|17686.0|17690.0|17707.0|17720.0|17730.0|17734.0|17741.0|17744.0|17758.0|17770.0|17772.0|17778.0|17782.0|17793.0|17799.0|17803.0|17812.0|17823.0|17824.0|17828.0|17830.0|17836.0|17839.0|17844.0|17849.0|17863.0|17873.0|17880.0|17895.0|17905.0|17907.0|17910.0|17920.0|17925.0|17931.0|17943.0|17947.0|17948.0|17966.0|17968.0|17971.0|17984.0|17991.0|18012.0|18013.0|18035.0|18040.0|18041.0|18044.0|18050.0|18055.0|18067.0|18082.0|18086.0|18090.0|18092.0|18102.0|18107.0|18112.0|18114.0|18122.0|18146.0|18160.0|18174.0|18183.0|18184.0|18185.0|18192.0|18193.0|18206.0|18216.0|18217.0|18220.0|18224.0|18255.0|18257.0|18266.0|18271.0|18275.0|18277.0|18281.0|18284.0|18294.0|18303.0|18305.0|18356.0|18357.0|18361.0|18364.0|18368.0|18377.0|18388.0|18406.0|18407.0|18420.0|18422.0|18435.0|18445.0|18453.0|18454.0|18458.0|18463.0|18464.0|18474.0|18475.0|18488.0|18494.0|18495.0|18506.0|18509.0|18536.0|18539.0|18546.0|18550.0|18560.0|18563.0|18573.0|18584.0|18586.0|18614.0|18617.0|18618.0|18624.0|18628.0|18645.0|18660.0|18667.0|18671.0|18677.0|18678.0|18683.0|18693.0|18698.0|18711.0|18720.0|18729.0|18730.0|18731.0|18758.0|18763.0|18764.0|18773.0|18779.0|18785.0|18786.0|18789.0|18793.0|18794.0|18799.0|18800.0|18804.0|18822.0|18824.0|18829.0|18834.0|18835.0|18839.0|18855.0|18860.0|18870.0|18876.0|18882.0|18885.0|18886.0|18896.0|18903.0|18910.0|18914.0|18919.0|18941.0|18960.0|18962.0|18971.0|18978.0|18989.0|18992.0|18995.0|19000.0|19017.0|19021.0|19030.0|19032.0|19036.0|19040.0|19043.0|19046.0|19049.0|19053.0|19076.0|19096.0|19107.0|19113.0|19120.0|19124.0|19133.0|19142.0|19146.0|19150.0|19152.0|19154.0|19167.0|19171.0|19173.0|19175.0|19178.0|19182.0|19183.0|19185.0|19194.0|19195.0|19203.0|19204.0|19205.0|19211.0|19213.0|19215.0|19216.0|19218.0|19237.0|19241.0|19243.0|19244.0|19254.0|19258.0|19264.0|19265.0|19268.0|19284.0|19286.0|19300.0|19304.0|19305.0|19314.0|19318.0|19319.0|19321.0|19323.0|19330.0|19334.0|19340.0|19344.0|19351.0|19355.0|19357.0|19359.0|19362.0|19372.0|19375.0|19376.0|19381.0|19386.0|19392.0|19402.0|19405.0|19415.0|19416.0|19418.0|19422.0|19427.0|19429.0|19445.0|19447.0|19449.0|19450.0|19453.0|19455.0|19462.0|19470.0|19473.0|19474.0|19483.0|19489.0|19492.0|19496.0|19505.0|19514.0|19515.0|19516.0|19524.0|19526.0|19531.0|19536.0|19546.0|19557.0|19562.0|19563.0|19576.0|19578.0|19579.0|19587.0|19589.0|19616.0|19622.0|19626.0|19629.0|19632.0|19639.0|19649.0|19654.0|19655.0|19659.0|19665.0|19668.0|19678.0|19688.0|19697.0|19700.0|19701.0|19754.0|19762.0|19782.0|19795.0|19804.0|19812.0|19816.0|19837.0|19856.0|19894.0|19923.0|19935.0|19948.0|19966.0|19969.0|19979.0|19985.0|19999.0|20000.0|20041.0|20051.0|20073.0|20113.0|20129.0|20133.0|20140.0|20142.0|20150.0 +in.representative_income metadata_and_annual usd float 20162.0|20192.0|20195.0|20238.0|20245.0|20248.0|20253.0|20258.0|20259.0|20264.0|20267.0|20269.0|20284.0|20288.0|20292.0|20294.0|20302.0|20320.0|20324.0|20340.0|20344.0|20375.0|20378.0|20402.0|20405.0|20407.0|20443.0|20453.0|20459.0|20467.0|20496.0|20507.0|20515.0|20517.0|20526.0|20551.0|20556.0|20557.0|20565.0|20567.0|20570.0|20572.0|20607.0|20618.0|20619.0|20637.0|20640.0|20657.0|20668.0|20675.0|20678.0|20687.0|20691.0|20698.0|20708.0|20718.0|20748.0|20750.0|20766.0|20776.0|20777.0|20788.0|20799.0|20804.0|20805.0|20810.0|20825.0|20853.0|20858.0|20881.0|20907.0|20917.0|20919.0|20933.0|20937.0|20939.0|20943.0|20948.0|20949.0|20957.0|20961.0|20971.0|20975.0|20981.0|20987.0|20991.0|21007.0|21042.0|21048.0|21050.0|21051.0|21060.0|21069.0|21070.0|21071.0|21103.0|21112.0|21114.0|21119.0|21130.0|21147.0|21153.0|21167.0|21168.0|21176.0|21186.0|21190.0|21207.0|21208.0|21219.0|21221.0|21222.0|21223.0|21261.0|21265.0|21269.0|21273.0|21296.0|21297.0|21304.0|21324.0|21329.0|21350.0|21351.0|21361.0|21366.0|21375.0|21385.0|21388.0|21405.0|21408.0|21409.0|21411.0|21415.0|21440.0|21444.0|21448.0|21461.0|21469.0|21472.0|21474.0|21476.0|21480.0|21485.0|21486.0|21490.0|21491.0|21492.0|21496.0|21501.0|21506.0|21508.0|21514.0|21516.0|21523.0|21526.0|21539.0|21555.0|21557.0|21565.0|21566.0|21576.0|21588.0|21593.0|21597.0|21603.0|21607.0|21609.0|21610.0|21620.0|21630.0|21635.0|21646.0|21654.0|21662.0|21668.0|21672.0|21678.0|21681.0|21688.0|21691.0|21692.0|21695.0|21702.0|21704.0|21714.0|21716.0|21717.0|21718.0|21719.0|21727.0|21738.0|21739.0|21748.0|21749.0|21759.0|21760.0|21763.0|21767.0|21772.0|21780.0|21792.0|21795.0|21804.0|21805.0|21808.0|21815.0|21816.0|21819.0|21823.0|21834.0|21836.0|21845.0|21846.0|21866.0|21874.0|21880.0|21887.0|21888.0|21900.0|21901.0|21908.0|21909.0|21914.0|21918.0|21926.0|21928.0|21930.0|21934.0|21936.0|21941.0|21949.0|21950.0|21952.0|21966.0|21977.0|21990.0|21991.0|21996.0|21997.0|22001.0|22006.0|22017.0|22021.0|22031.0|22032.0|22041.0|22042.0|22043.0|22058.0|22063.0|22077.0|22083.0|22085.0|22086.0|22091.0|22096.0|22097.0|22102.0|22110.0|22114.0|22125.0|22128.0|22145.0|22148.0|22154.0|22157.0|22162.0|22163.0|22167.0|22168.0|22182.0|22183.0|22193.0|22199.0|22203.0|22204.0|22213.0|22215.0|22217.0|22221.0|22222.0|22224.0|22228.0|22231.0|22233.0|22236.0|22237.0|22238.0|22239.0|22242.0|22247.0|22253.0|22257.0|22268.0|22273.0|22292.0|22294.0|22295.0|22296.0|22300.0|22304.0|22306.0|22314.0|22316.0|22328.0|22332.0|22336.0|22341.0|22344.0|22346.0|22347.0|22351.0|22355.0|22357.0|22360.0|22372.0|22375.0|22377.0|22379.0|22383.0|22385.0|22392.0|22393.0|22396.0|22400.0|22404.0|22410.0|22419.0|22420.0|22430.0|22440.0|22445.0|22454.0|22460.0|22461.0|22465.0|22467.0|22469.0|22476.0|22484.0|22486.0|22489.0|22495.0|22496.0|22499.0|22500.0|22501.0|22503.0|22505.0|22507.0|22511.0|22512.0|22516.0|22532.0|22538.0|22542.0|22543.0|22546.0|22558.0|22560.0|22562.0|22568.0|22571.0|22582.0|22583.0|22588.0|22595.0|22597.0|22599.0|22604.0|22607.0|22616.0|22619.0|22621.0|22626.0|22627.0|22631.0|22636.0|22637.0|22651.0|22653.0|22658.0|22663.0|22668.0|22670.0|22671.0|22672.0|22679.0|22681.0|22683.0|22688.0|22690.0|22691.0|22692.0|22701.0|22712.0|22714.0|22716.0|22718.0|22723.0|22726.0|22733.0|22736.0|22737.0|22744.0|22746.0|22748.0|22755.0|22759.0|22763.0|22766.0|22767.0|22768.0|22779.0|22783.0|22785.0|22795.0|22799.0|22806.0|22809.0|22811.0|22819.0|22820.0|22826.0|22835.0|22839.0|22843.0|22849.0|22852.0|22856.0|22864.0|22871.0|22872.0|22875.0|22880.0|22888.0|22895.0|22906.0|22910.0|22917.0|22918.0|22928.0|22938.0|22950.0|22963.0|22969.0|22971.0|22980.0|22982.0|22985.0|22993.0|22997.0|22998.0|23002.0|23003.0|23007.0|23012.0|23016.0|23022.0|23031.0|23033.0|23036.0|23043.0|23047.0|23057.0|23062.0|23067.0|23069.0|23072.0|23074.0|23082.0|23085.0|23090.0|23099.0|23104.0|23107.0|23109.0|23111.0|23112.0|23122.0|23123.0|23132.0|23133.0|23135.0|23142.0|23143.0|23146.0|23156.0|23160.0|23162.0|23165.0|23166.0|23170.0|23173.0|23180.0|23183.0|23186.0|23187.0|23191.0|23194.0|23197.0|23205.0|23207.0|23210.0|23212.0|23213.0|23223.0|23229.0|23238.0|23240.0|23243.0|23260.0|23263.0|23268.0|23272.0|23273.0|23280.0|23298.0|23300.0|23304.0|23316.0|23324.0|23328.0|23344.0|23347.0|23355.0|23362.0|23382.0|23385.0|23391.0|23393.0|23401.0|23402.0|23405.0|23409.0|23414.0|23420.0|23424.0|23425.0|23438.0|23445.0|23447.0|23452.0|23455.0|23456.0|23457.0|23465.0|23466.0|23477.0|23479.0|23482.0|23486.0|23487.0|23491.0|23497.0|23498.0|23506.0|23507.0|23508.0|23514.0|23528.0|23536.0|23542.0|23544.0|23551.0|23555.0|23559.0|23565.0|23568.0|23608.0|23616.0|23620.0|23622.0|23630.0|23637.0|23645.0|23669.0|23672.0|23673.0|23676.0|23682.0|23691.0|23692.0|23697.0|23716.0|23724.0|23729.0|23738.0|23739.0|23744.0|23770.0|23771.0|23775.0|23781.0|23802.0|23809.0|23813.0|23827.0|23830.0|23831.0|23834.0|23839.0|23852.0|23857.0|23878.0|23890.0|23908.0|23915.0|23929.0|23939.0|23940.0|23951.0|23961.0|23971.0|23972.0|23991.0|24033.0|24038.0|24040.0|24043.0|24051.0|24056.0|24057.0|24071.0|24078.0|24086.0|24098.0|24116.0|24122.0|24131.0|24142.0|24146.0|24153.0|24163.0|24190.0|24200.0|24204.0|24213.0|24223.0|24225.0|24239.0|24254.0|24256.0|24261.0|24264.0|24267.0|24274.0|24300.0|24310.0|24314.0|24344.0|24350.0|24351.0|24362.0|24368.0|24393.0|24395.0|24408.0|24419.0|24421.0|24432.0|24445.0|24446.0|24448.0|24476.0|24478.0|24479.0|24484.0|24509.0|24527.0|24528.0|24529.0|24530.0|24541.0|24549.0|24557.0|24581.0|24601.0|24624.0|24625.0|24635.0|24637.0|24645.0|24648.0|24652.0|24672.0|24678.0|24711.0|24718.0|24732.0|24775.0|24779.0|24783.0|24817.0|24850.0|24858.0|24861.0|24893.0|24899.0|24959.0|24961.0|24973.0|24982.0|24993.0|24995.0|25001.0|25011.0|25057.0|25067.0|25082.0|25100.0|25112.0|25116.0|25137.0|25140.0|25159.0|25167.0|25205.0|25223.0|25226.0|25233.0|25247.0|25268.0|25269.0|25271.0|25279.0|25281.0|25282.0|25284.0|25294.0|25305.0|25306.0|25322.0|25334.0|25348.0|25395.0|25398.0|25416.0|25445.0|25476.0|25477.0|25494.0|25499.0|25520.0|25526.0|25534.0|25537.0|25557.0|25570.0|25577.0|25585.0|25621.0|25627.0|25628.0|25637.0|25650.0|25655.0|25677.0|25679.0|25683.0|25699.0|25705.0|25708.0|25749.0|25751.0|25753.0|25759.0|25785.0|25786.0|25795.0|25805.0|25817.0|25824.0|25834.0|25838.0|25870.0|25881.0|25890.0|25902.0|25913.0|25932.0|25933.0|25934.0|25942.0|25945.0|25953.0|25961.0|25970.0|25972.0|25975.0|25978.0|25989.0|25991.0|26003.0|26017.0|26020.0|26025.0|26050.0|26059.0|26061.0|26072.0|26076.0|26091.0|26096.0|26102.0|26117.0|26120.0|26137.0|26158.0|26192.0|26193.0|26197.0|26199.0|26203.0|26220.0|26223.0|26255.0|26260.0|26271.0|26299.0|26301.0|26309.0|26319.0|26322.0|26353.0|26377.0|26386.0|26388.0|26396.0|26407.0|26416.0|26417.0|26418.0|26420.0|26436.0|26439.0|26450.0|26453.0|26457.0|26472.0|26482.0|26508.0|26509.0|26515.0|26516.0|26526.0|26529.0|26550.0|26555.0|26566.0|26597.0|26598.0|26600.0|26601.0|26607.0|26611.0|26612.0|26640.0|26642.0|26648.0|26649.0|26653.0|26654.0|26666.0|26678.0|26681.0|26684.0|26689.0|26692.0|26701.0|26709.0|26724.0|26729.0|26734.0|26746.0|26749.0|26759.0|26762.0|26763.0|26767.0|26772.0|26773.0|26779.0|26783.0|26787.0|26799.0|26804.0|26808.0|26809.0|26819.0|26822.0|26825.0|26836.0|26838.0|26839.0|26849.0|26850.0|26853.0|26855.0|26859.0|26861.0|26869.0|26870.0|26871.0|26900.0|26901.0|26908.0|26914.0|26915.0|26917.0|26920.0|26921.0|26922.0|26924.0|26930.0|26933.0|26941.0|26945.0|26965.0|26966.0|26968.0|26972.0|26973.0|26977.0|26978.0|26979.0|26981.0|26982.0|26983.0|26988.0|26989.0|26991.0|26997.0|26998.0|27001.0|27003.0|27011.0|27013.0|27019.0|27020.0|27021.0|27023.0|27030.0|27031.0|27033.0|27034.0|27041.0|27044.0|27052.0|27055.0|27061.0|27062.0|27064.0|27065.0|27066.0|27074.0|27076.0|27086.0|27092.0|27093.0|27103.0|27107.0|27116.0|27121.0|27132.0|27138.0|27143.0|27147.0|27152.0|27153.0|27156.0|27163.0|27169.0|27184.0|27189.0|27191.0|27200.0|27209.0|27229.0|27230.0|27231.0|27238.0|27251.0|27256.0|27262.0|27270.0|27271.0|27274.0|27281.0|27282.0|27291.0|27292.0|27294.0|27295.0|27303.0|27314.0|27318.0|27320.0|27325.0 +in.representative_income metadata_and_annual usd float 27326.0|27333.0|27335.0|27342.0|27352.0|27357.0|27365.0|27373.0|27380.0|27401.0|27425.0|27436.0|27437.0|27441.0|27445.0|27448.0|27452.0|27457.0|27467.0|27470.0|27472.0|27484.0|27488.0|27492.0|27493.0|27496.0|27502.0|27504.0|27509.0|27514.0|27520.0|27531.0|27533.0|27534.0|27544.0|27546.0|27547.0|27550.0|27559.0|27560.0|27562.0|27563.0|27578.0|27583.0|27586.0|27587.0|27588.0|27606.0|27609.0|27610.0|27611.0|27621.0|27630.0|27631.0|27635.0|27638.0|27639.0|27641.0|27643.0|27646.0|27652.0|27653.0|27674.0|27692.0|27696.0|27703.0|27706.0|27717.0|27720.0|27726.0|27727.0|27738.0|27739.0|27747.0|27749.0|27750.0|27759.0|27768.0|27772.0|27775.0|27777.0|27779.0|27786.0|27790.0|27794.0|27799.0|27802.0|27803.0|27808.0|27809.0|27819.0|27822.0|27824.0|27829.0|27835.0|27847.0|27849.0|27852.0|27856.0|27860.0|27861.0|27870.0|27877.0|27888.0|27891.0|27894.0|27900.0|27901.0|27910.0|27911.0|27914.0|27919.0|27930.0|27931.0|27932.0|27941.0|27962.0|27971.0|27974.0|27984.0|27994.0|27996.0|28006.0|28010.0|28016.0|28017.0|28038.0|28042.0|28049.0|28052.0|28056.0|28060.0|28062.0|28063.0|28067.0|28070.0|28072.0|28076.0|28081.0|28084.0|28093.0|28095.0|28105.0|28109.0|28111.0|28127.0|28137.0|28147.0|28162.0|28163.0|28168.0|28169.0|28179.0|28182.0|28183.0|28190.0|28199.0|28200.0|28201.0|28203.0|28205.0|28216.0|28223.0|28233.0|28236.0|28238.0|28244.0|28253.0|28261.0|28276.0|28283.0|28284.0|28296.0|28313.0|28314.0|28328.0|28334.0|28335.0|28344.0|28345.0|28349.0|28350.0|28352.0|28355.0|28359.0|28365.0|28369.0|28371.0|28372.0|28379.0|28382.0|28384.0|28393.0|28404.0|28406.0|28416.0|28425.0|28455.0|28457.0|28459.0|28467.0|28468.0|28471.0|28474.0|28481.0|28485.0|28488.0|28494.0|28496.0|28500.0|28516.0|28525.0|28557.0|28571.0|28580.0|28589.0|28596.0|28600.0|28607.0|28611.0|28613.0|28623.0|28626.0|28632.0|28633.0|28638.0|28654.0|28665.0|28668.0|28671.0|28674.0|28685.0|28688.0|28719.0|28726.0|28734.0|28739.0|28740.0|28746.0|28769.0|28770.0|28802.0|28808.0|28822.0|28843.0|28848.0|28852.0|28872.0|28875.0|28896.0|28902.0|28912.0|28925.0|28931.0|28979.0|28981.0|28984.0|29011.0|29037.0|29038.0|29067.0|29069.0|29080.0|29087.0|29092.0|29097.0|29107.0|29112.0|29117.0|29139.0|29143.0|29144.0|29151.0|29153.0|29175.0|29177.0|29189.0|29198.0|29205.0|29212.0|29252.0|29262.0|29281.0|29299.0|29301.0|29305.0|29324.0|29329.0|29339.0|29345.0|29347.0|29365.0|29366.0|29371.0|29381.0|29389.0|29395.0|29402.0|29405.0|29407.0|29426.0|29443.0|29488.0|29496.0|29497.0|29506.0|29508.0|29561.0|29597.0|29645.0|29658.0|29687.0|29696.0|29698.0|29713.0|29746.0|29749.0|29789.0|29799.0|29819.0|29842.0|29864.0|29870.0|29897.0|29912.0|29917.0|29927.0|29943.0|29971.0|29985.0|30001.0|30003.0|30004.0|30035.0|30037.0|30046.0|30128.0|30152.0|30165.0|30174.0|30185.0|30191.0|30218.0|30271.0|30276.0|30296.0|30304.0|30307.0|30308.0|30314.0|30345.0|30355.0|30368.0|30373.0|30383.0|30389.0|30393.0|30395.0|30400.0|30404.0|30405.0|30411.0|30422.0|30426.0|30446.0|30467.0|30469.0|30476.0|30478.0|30486.0|30491.0|30499.0|30521.0|30539.0|30552.0|30557.0|30566.0|30583.0|30588.0|30597.0|30604.0|30617.0|30626.0|30634.0|30636.0|30638.0|30642.0|30647.0|30648.0|30658.0|30668.0|30676.0|30686.0|30688.0|30689.0|30698.0|30700.0|30701.0|30705.0|30708.0|30710.0|30729.0|30737.0|30755.0|30765.0|30767.0|30769.0|30779.0|30789.0|30792.0|30794.0|30808.0|30809.0|30820.0|30826.0|30840.0|30847.0|30858.0|30910.0|30917.0|30923.0|30944.0|30951.0|30952.0|30961.0|30962.0|30964.0|30969.0|30971.0|30978.0|30979.0|30984.0|31001.0|31012.0|31016.0|31017.0|31023.0|31028.0|31031.0|31044.0|31058.0|31068.0|31070.0|31072.0|31076.0|31078.0|31087.0|31112.0|31121.0|31123.0|31129.0|31131.0|31140.0|31148.0|31150.0|31152.0|31160.0|31163.0|31164.0|31169.0|31183.0|31185.0|31193.0|31195.0|31211.0|31216.0|31226.0|31228.0|31234.0|31241.0|31247.0|31253.0|31264.0|31269.0|31273.0|31274.0|31275.0|31277.0|31281.0|31291.0|31299.0|31322.0|31323.0|31325.0|31328.0|31330.0|31334.0|31343.0|31365.0|31366.0|31374.0|31377.0|31395.0|31398.0|31405.0|31408.0|31416.0|31433.0|31436.0|31438.0|31443.0|31451.0|31456.0|31463.0|31474.0|31480.0|31484.0|31490.0|31495.0|31496.0|31500.0|31505.0|31516.0|31517.0|31526.0|31527.0|31533.0|31538.0|31550.0|31560.0|31561.0|31567.0|31573.0|31583.0|31587.0|31593.0|31604.0|31612.0|31613.0|31614.0|31615.0|31617.0|31624.0|31628.0|31638.0|31645.0|31648.0|31654.0|31655.0|31658.0|31659.0|31662.0|31669.0|31678.0|31679.0|31681.0|31689.0|31690.0|31691.0|31695.0|31698.0|31705.0|31710.0|31713.0|31716.0|31717.0|31723.0|31727.0|31731.0|31733.0|31742.0|31743.0|31744.0|31754.0|31755.0|31756.0|31759.0|31764.0|31767.0|31770.0|31776.0|31777.0|31779.0|31794.0|31795.0|31799.0|31802.0|31807.0|31809.0|31817.0|31840.0|31841.0|31850.0|31859.0|31860.0|31863.0|31871.0|31875.0|31881.0|31882.0|31884.0|31891.0|31897.0|31898.0|31905.0|31906.0|31912.0|31917.0|31921.0|31923.0|31928.0|31931.0|31934.0|31938.0|31944.0|31951.0|31955.0|31965.0|31968.0|31971.0|31982.0|31985.0|31986.0|31989.0|31990.0|31992.0|31993.0|31996.0|32000.0|32001.0|32007.0|32025.0|32027.0|32031.0|32032.0|32035.0|32037.0|32039.0|32042.0|32050.0|32060.0|32082.0|32086.0|32090.0|32095.0|32099.0|32102.0|32106.0|32109.0|32113.0|32117.0|32119.0|32122.0|32123.0|32129.0|32133.0|32134.0|32141.0|32143.0|32147.0|32150.0|32153.0|32155.0|32161.0|32163.0|32165.0|32166.0|32180.0|32186.0|32191.0|32192.0|32195.0|32197.0|32198.0|32204.0|32208.0|32214.0|32219.0|32225.0|32240.0|32242.0|32246.0|32250.0|32252.0|32253.0|32255.0|32263.0|32264.0|32274.0|32289.0|32294.0|32302.0|32304.0|32305.0|32309.0|32321.0|32325.0|32326.0|32335.0|32342.0|32343.0|32345.0|32348.0|32355.0|32360.0|32365.0|32371.0|32378.0|32382.0|32393.0|32397.0|32399.0|32408.0|32416.0|32426.0|32429.0|32435.0|32440.0|32447.0|32450.0|32452.0|32456.0|32461.0|32472.0|32479.0|32481.0|32486.0|32490.0|32491.0|32493.0|32501.0|32507.0|32523.0|32529.0|32530.0|32533.0|32535.0|32545.0|32553.0|32554.0|32557.0|32559.0|32568.0|32571.0|32576.0|32579.0|32583.0|32586.0|32589.0|32594.0|32598.0|32607.0|32608.0|32612.0|32622.0|32625.0|32628.0|32631.0|32633.0|32634.0|32638.0|32643.0|32661.0|32678.0|32683.0|32686.0|32687.0|32695.0|32706.0|32716.0|32718.0|32724.0|32727.0|32735.0|32738.0|32739.0|32748.0|32761.0|32769.0|32770.0|32780.0|32788.0|32794.0|32800.0|32802.0|32803.0|32820.0|32824.0|32830.0|32840.0|32842.0|32850.0|32862.0|32870.0|32876.0|32879.0|32880.0|32901.0|32903.0|32904.0|32905.0|32921.0|32931.0|32937.0|32941.0|32945.0|32946.0|32957.0|32960.0|32961.0|32966.0|32969.0|32976.0|32979.0|33007.0|33017.0|33020.0|33034.0|33041.0|33042.0|33052.0|33056.0|33058.0|33063.0|33066.0|33082.0|33092.0|33095.0|33099.0|33105.0|33110.0|33117.0|33120.0|33130.0|33135.0|33138.0|33142.0|33143.0|33146.0|33160.0|33161.0|33167.0|33170.0|33180.0|33181.0|33183.0|33191.0|33192.0|33196.0|33199.0|33202.0|33203.0|33209.0|33223.0|33235.0|33252.0|33257.0|33262.0|33268.0|33274.0|33278.0|33282.0|33285.0|33289.0|33294.0|33299.0|33300.0|33304.0|33305.0|33309.0|33336.0|33337.0|33345.0|33347.0|33354.0|33357.0|33363.0|33365.0|33377.0|33378.0|33384.0|33397.0|33407.0|33416.0|33419.0|33467.0|33476.0|33500.0|33516.0|33526.0|33535.0|33546.0|33547.0|33581.0|33599.0|33600.0|33602.0|33604.0|33613.0|33615.0|33621.0|33625.0|33636.0|33638.0|33642.0|33645.0|33656.0|33663.0|33664.0|33684.0|33711.0|33722.0|33726.0|33733.0|33747.0|33749.0|33760.0|33765.0|33769.0|33775.0|33800.0|33815.0|33821.0|33831.0|33840.0|33848.0|33851.0|33862.0|33873.0|33880.0|33890.0|33919.0|33920.0|33927.0|33937.0|33941.0|33949.0|33953.0|33970.0|33974.0|33975.0|33986.0|33992.0|34012.0|34028.0|34032.0|34039.0|34051.0|34056.0|34064.0|34072.0|34082.0|34088.0|34092.0|34100.0|34101.0|34106.0|34110.0|34114.0|34120.0|34127.0|34136.0|34137.0|34140.0|34141.0|34147.0|34153.0|34154.0|34157.0|34162.0|34164.0|34189.0|34198.0|34200.0|34218.0|34222.0|34232.0|34244.0|34257.0|34265.0|34274.0|34284.0|34285.0|34295.0|34296.0|34301.0|34307.0|34314.0|34315.0|34325.0|34327.0|34337.0|34347.0|34348.0|34349.0|34351.0|34358.0|34359.0|34365.0|34366.0|34369.0|34375.0|34380.0|34391.0|34399.0|34404.0|34406.0|34409.0|34423.0|34425.0 +in.representative_income metadata_and_annual usd float 34434.0|34446.0|34450.0|34456.0|34457.0|34463.0|34466.0|34467.0|34473.0|34483.0|34489.0|34501.0|34507.0|34512.0|34513.0|34547.0|34554.0|34567.0|34571.0|34575.0|34580.0|34595.0|34608.0|34612.0|34618.0|34619.0|34633.0|34634.0|34640.0|34667.0|34672.0|34678.0|34683.0|34686.0|34687.0|34688.0|34698.0|34716.0|34719.0|34737.0|34749.0|34750.0|34764.0|34769.0|34780.0|34781.0|34791.0|34811.0|34823.0|34863.0|34866.0|34884.0|34887.0|34890.0|34899.0|34914.0|34921.0|34931.0|34997.0|35016.0|35045.0|35052.0|35069.0|35092.0|35093.0|35103.0|35119.0|35127.0|35133.0|35147.0|35151.0|35153.0|35163.0|35171.0|35173.0|35180.0|35193.0|35209.0|35224.0|35234.0|35256.0|35265.0|35294.0|35305.0|35316.0|35317.0|35343.0|35348.0|35361.0|35365.0|35406.0|35407.0|35416.0|35456.0|35461.0|35466.0|35467.0|35476.0|35482.0|35483.0|35486.0|35492.0|35498.0|35499.0|35507.0|35509.0|35515.0|35540.0|35544.0|35547.0|35577.0|35593.0|35598.0|35608.0|35616.0|35642.0|35650.0|35655.0|35658.0|35668.0|35677.0|35678.0|35688.0|35692.0|35693.0|35699.0|35702.0|35703.0|35717.0|35724.0|35729.0|35730.0|35735.0|35746.0|35758.0|35759.0|35763.0|35770.0|35775.0|35783.0|35789.0|35792.0|35800.0|35802.0|35807.0|35808.0|35810.0|35811.0|35825.0|35840.0|35857.0|35873.0|35893.0|35895.0|35901.0|35911.0|35925.0|35939.0|35941.0|35946.0|35947.0|35958.0|35962.0|35965.0|35968.0|35971.0|35972.0|35973.0|35975.0|35979.0|35981.0|35991.0|35993.0|36014.0|36015.0|36025.0|36026.0|36031.0|36033.0|36045.0|36046.0|36047.0|36049.0|36068.0|36073.0|36079.0|36088.0|36092.0|36094.0|36100.0|36101.0|36103.0|36109.0|36110.0|36111.0|36113.0|36121.0|36126.0|36132.0|36141.0|36142.0|36152.0|36153.0|36163.0|36166.0|36173.0|36175.0|36177.0|36180.0|36184.0|36185.0|36186.0|36193.0|36207.0|36208.0|36214.0|36216.0|36224.0|36228.0|36230.0|36233.0|36236.0|36240.0|36244.0|36250.0|36256.0|36257.0|36259.0|36261.0|36278.0|36282.0|36283.0|36289.0|36305.0|36307.0|36308.0|36310.0|36315.0|36318.0|36322.0|36326.0|36331.0|36336.0|36338.0|36348.0|36350.0|36355.0|36365.0|36375.0|36379.0|36382.0|36384.0|36388.0|36390.0|36395.0|36396.0|36400.0|36401.0|36405.0|36411.0|36412.0|36413.0|36416.0|36423.0|36431.0|36436.0|36443.0|36446.0|36448.0|36451.0|36455.0|36457.0|36460.0|36482.0|36486.0|36491.0|36497.0|36500.0|36502.0|36503.0|36507.0|36517.0|36519.0|36524.0|36531.0|36537.0|36539.0|36540.0|36542.0|36551.0|36552.0|36557.0|36561.0|36565.0|36574.0|36584.0|36586.0|36587.0|36592.0|36595.0|36598.0|36600.0|36605.0|36616.0|36617.0|36618.0|36627.0|36628.0|36638.0|36643.0|36648.0|36649.0|36658.0|36660.0|36661.0|36678.0|36682.0|36687.0|36697.0|36699.0|36700.0|36711.0|36720.0|36730.0|36731.0|36737.0|36744.0|36751.0|36755.0|36757.0|36766.0|36772.0|36777.0|36779.0|36782.0|36785.0|36790.0|36798.0|36800.0|36802.0|36805.0|36806.0|36816.0|36821.0|36822.0|36823.0|36824.0|36826.0|36830.0|36836.0|36840.0|36846.0|36850.0|36863.0|36873.0|36884.0|36888.0|36890.0|36905.0|36916.0|36931.0|36934.0|36937.0|36941.0|36952.0|36957.0|36964.0|36971.0|36974.0|36980.0|36985.0|36990.0|36991.0|37002.0|37017.0|37022.0|37034.0|37038.0|37042.0|37050.0|37060.0|37069.0|37071.0|37080.0|37085.0|37088.0|37091.0|37092.0|37093.0|37101.0|37103.0|37112.0|37117.0|37123.0|37135.0|37136.0|37143.0|37154.0|37164.0|37174.0|37184.0|37190.0|37204.0|37205.0|37206.0|37207.0|37210.0|37211.0|37215.0|37224.0|37227.0|37233.0|37235.0|37241.0|37249.0|37259.0|37281.0|37287.0|37292.0|37295.0|37297.0|37298.0|37325.0|37330.0|37345.0|37351.0|37356.0|37362.0|37365.0|37366.0|37380.0|37386.0|37388.0|37389.0|37398.0|37411.0|37413.0|37421.0|37424.0|37427.0|37428.0|37431.0|37438.0|37446.0|37451.0|37459.0|37464.0|37472.0|37473.0|37474.0|37481.0|37483.0|37485.0|37491.0|37492.0|37497.0|37518.0|37524.0|37544.0|37554.0|37558.0|37567.0|37571.0|37572.0|37574.0|37577.0|37581.0|37586.0|37596.0|37598.0|37600.0|37607.0|37613.0|37618.0|37625.0|37627.0|37633.0|37638.0|37640.0|37648.0|37650.0|37668.0|37669.0|37679.0|37688.0|37695.0|37698.0|37701.0|37709.0|37713.0|37721.0|37729.0|37730.0|37734.0|37745.0|37747.0|37748.0|37751.0|37759.0|37764.0|37769.0|37779.0|37793.0|37797.0|37800.0|37801.0|37803.0|37807.0|37813.0|37817.0|37821.0|37828.0|37834.0|37837.0|37838.0|37840.0|37849.0|37854.0|37860.0|37865.0|37867.0|37871.0|37880.0|37892.0|37893.0|37898.0|37902.0|37903.0|37904.0|37910.0|37914.0|37917.0|37922.0|37925.0|37935.0|37941.0|37957.0|37958.0|37962.0|37963.0|37968.0|37970.0|37981.0|37990.0|37992.0|37997.0|38004.0|38011.0|38019.0|38029.0|38033.0|38037.0|38043.0|38044.0|38050.0|38054.0|38058.0|38063.0|38065.0|38082.0|38084.0|38086.0|38088.0|38093.0|38103.0|38107.0|38108.0|38112.0|38113.0|38114.0|38123.0|38124.0|38130.0|38135.0|38153.0|38155.0|38163.0|38175.0|38176.0|38178.0|38180.0|38185.0|38188.0|38192.0|38196.0|38214.0|38215.0|38224.0|38230.0|38234.0|38244.0|38246.0|38250.0|38261.0|38268.0|38274.0|38277.0|38283.0|38287.0|38293.0|38302.0|38303.0|38313.0|38315.0|38325.0|38350.0|38356.0|38357.0|38365.0|38370.0|38376.0|38379.0|38380.0|38386.0|38388.0|38389.0|38390.0|38404.0|38416.0|38419.0|38422.0|38423.0|38430.0|38431.0|38432.0|38436.0|38440.0|38444.0|38450.0|38451.0|38462.0|38465.0|38469.0|38473.0|38476.0|38482.0|38494.0|38498.0|38508.0|38522.0|38535.0|38541.0|38545.0|38546.0|38547.0|38554.0|38555.0|38567.0|38576.0|38577.0|38579.0|38584.0|38587.0|38588.0|38591.0|38597.0|38618.0|38619.0|38621.0|38627.0|38630.0|38641.0|38652.0|38655.0|38659.0|38665.0|38679.0|38681.0|38687.0|38693.0|38697.0|38703.0|38704.0|38709.0|38716.0|38720.0|38724.0|38731.0|38736.0|38739.0|38742.0|38752.0|38769.0|38771.0|38779.0|38782.0|38787.0|38790.0|38800.0|38837.0|38840.0|38843.0|38851.0|38870.0|38881.0|38884.0|38891.0|38898.0|38901.0|38904.0|38906.0|38908.0|38911.0|38912.0|38915.0|38918.0|38929.0|38934.0|38962.0|38966.0|38968.0|38988.0|38989.0|38992.0|38999.0|39005.0|39006.0|39009.0|39010.0|39014.0|39021.0|39031.0|39046.0|39049.0|39058.0|39059.0|39071.0|39084.0|39095.0|39126.0|39134.0|39144.0|39147.0|39148.0|39163.0|39170.0|39173.0|39181.0|39188.0|39191.0|39195.0|39206.0|39208.0|39213.0|39216.0|39234.0|39237.0|39243.0|39244.0|39246.0|39254.0|39274.0|39284.0|39315.0|39319.0|39329.0|39342.0|39351.0|39360.0|39369.0|39381.0|39396.0|39401.0|39406.0|39413.0|39436.0|39437.0|39438.0|39463.0|39473.0|39486.0|39491.0|39497.0|39502.0|39515.0|39527.0|39535.0|39545.0|39547.0|39548.0|39559.0|39567.0|39569.0|39587.0|39598.0|39599.0|39608.0|39618.0|39628.0|39632.0|39653.0|39658.0|39690.0|39699.0|39719.0|39732.0|39738.0|39740.0|39759.0|39760.0|39772.0|39780.0|39800.0|39869.0|39880.0|39901.0|39965.0|39969.0|39977.0|39978.0|39981.0|40020.0|40039.0|40040.0|40096.0|40114.0|40124.0|40153.0|40181.0|40186.0|40201.0|40204.0|40216.0|40241.0|40254.0|40256.0|40275.0|40305.0|40317.0|40319.0|40329.0|40346.0|40357.0|40391.0|40398.0|40406.0|40412.0|40416.0|40424.0|40433.0|40436.0|40446.0|40454.0|40484.0|40496.0|40504.0|40517.0|40523.0|40526.0|40537.0|40539.0|40561.0|40588.0|40598.0|40602.0|40603.0|40604.0|40624.0|40625.0|40639.0|40641.0|40648.0|40658.0|40660.0|40679.0|40684.0|40688.0|40719.0|40722.0|40727.0|40732.0|40742.0|40743.0|40760.0|40770.0|40791.0|40800.0|40802.0|40812.0|40814.0|40821.0|40825.0|40830.0|40832.0|40834.0|40842.0|40856.0|40864.0|40867.0|40877.0|40887.0|40908.0|40911.0|40919.0|40920.0|40925.0|40961.0|40970.0|40971.0|40980.0|40985.0|40992.0|41004.0|41006.0|41010.0|41014.0|41024.0|41027.0|41031.0|41052.0|41059.0|41062.0|41068.0|41093.0|41113.0|41122.0|41133.0|41135.0|41137.0|41143.0|41145.0|41150.0|41153.0|41158.0|41166.0|41177.0|41183.0|41184.0|41185.0|41198.0|41207.0|41214.0|41221.0|41234.0|41240.0|41258.0|41266.0|41267.0|41269.0|41272.0|41273.0|41278.0|41279.0|41287.0|41289.0|41295.0|41299.0|41305.0|41306.0|41310.0|41315.0|41320.0|41327.0|41328.0|41338.0|41349.0|41360.0|41372.0|41376.0|41383.0|41386.0|41393.0|41402.0|41412.0|41414.0|41425.0|41426.0|41434.0|41435.0|41436.0|41439.0|41451.0|41458.0|41468.0|41500.0|41504.0|41507.0|41511.0|41516.0|41517.0|41543.0|41552.0|41553.0|41557.0|41558.0|41563.0|41567.0|41576.0|41582.0|41583.0|41585.0|41588.0|41596.0|41598.0|41609.0|41618.0|41619.0|41620.0|41631.0|41640.0 +in.representative_income metadata_and_annual usd float 41642.0|41647.0|41650.0|41654.0|41660.0|41669.0|41671.0|41679.0|41706.0|41710.0|41721.0|41722.0|41729.0|41741.0|41752.0|41753.0|41757.0|41759.0|41767.0|41773.0|41791.0|41801.0|41811.0|41825.0|41850.0|41857.0|41858.0|41861.0|41864.0|41866.0|41871.0|41875.0|41886.0|41888.0|41889.0|41890.0|41893.0|41900.0|41915.0|41919.0|41920.0|41922.0|41928.0|41929.0|41931.0|41939.0|41940.0|41943.0|41944.0|41948.0|41949.0|41950.0|41958.0|41965.0|41973.0|41974.0|41980.0|41982.0|41984.0|41998.0|42001.0|42009.0|42014.0|42021.0|42022.0|42024.0|42025.0|42030.0|42032.0|42036.0|42037.0|42042.0|42053.0|42056.0|42060.0|42069.0|42081.0|42083.0|42084.0|42090.0|42093.0|42109.0|42111.0|42114.0|42117.0|42123.0|42125.0|42131.0|42133.0|42135.0|42142.0|42145.0|42154.0|42161.0|42163.0|42164.0|42170.0|42172.0|42185.0|42187.0|42188.0|42191.0|42204.0|42214.0|42221.0|42234.0|42237.0|42238.0|42239.0|42244.0|42250.0|42258.0|42268.0|42280.0|42288.0|42289.0|42311.0|42320.0|42322.0|42323.0|42334.0|42339.0|42341.0|42342.0|42344.0|42346.0|42347.0|42349.0|42352.0|42353.0|42354.0|42355.0|42358.0|42365.0|42379.0|42390.0|42395.0|42403.0|42405.0|42406.0|42409.0|42411.0|42412.0|42413.0|42414.0|42422.0|42430.0|42438.0|42446.0|42448.0|42456.0|42464.0|42465.0|42466.0|42475.0|42479.0|42485.0|42487.0|42489.0|42495.0|42500.0|42503.0|42506.0|42507.0|42517.0|42519.0|42521.0|42527.0|42531.0|42537.0|42541.0|42553.0|42558.0|42561.0|42562.0|42573.0|42577.0|42578.0|42592.0|42595.0|42599.0|42606.0|42607.0|42617.0|42620.0|42622.0|42636.0|42638.0|42646.0|42648.0|42658.0|42661.0|42668.0|42674.0|42700.0|42701.0|42711.0|42712.0|42716.0|42717.0|42723.0|42724.0|42729.0|42744.0|42754.0|42766.0|42770.0|42790.0|42791.0|42800.0|42815.0|42816.0|42819.0|42824.0|42828.0|42830.0|42831.0|42840.0|42841.0|42852.0|42859.0|42862.0|42869.0|42873.0|42874.0|42880.0|42887.0|42891.0|42917.0|42918.0|42924.0|42927.0|42931.0|42933.0|42938.0|42942.0|42948.0|42949.0|42951.0|42961.0|42970.0|42972.0|42976.0|42978.0|42981.0|42983.0|42986.0|42992.0|43009.0|43017.0|43022.0|43024.0|43030.0|43032.0|43034.0|43049.0|43053.0|43062.0|43071.0|43077.0|43078.0|43081.0|43089.0|43098.0|43099.0|43103.0|43110.0|43121.0|43126.0|43128.0|43130.0|43131.0|43132.0|43133.0|43141.0|43143.0|43152.0|43153.0|43157.0|43163.0|43174.0|43185.0|43197.0|43198.0|43206.0|43208.0|43238.0|43239.0|43250.0|43260.0|43269.0|43271.0|43273.0|43280.0|43284.0|43292.0|43293.0|43306.0|43313.0|43327.0|43331.0|43337.0|43345.0|43351.0|43368.0|43373.0|43381.0|43383.0|43386.0|43389.0|43416.0|43435.0|43436.0|43439.0|43442.0|43445.0|43450.0|43455.0|43456.0|43460.0|43463.0|43474.0|43475.0|43476.0|43477.0|43489.0|43506.0|43507.0|43529.0|43537.0|43543.0|43545.0|43549.0|43555.0|43568.0|43571.0|43579.0|43582.0|43586.0|43587.0|43588.0|43597.0|43603.0|43610.0|43614.0|43616.0|43630.0|43648.0|43661.0|43671.0|43689.0|43694.0|43703.0|43711.0|43713.0|43732.0|43759.0|43775.0|43776.0|43782.0|43798.0|43820.0|43824.0|43827.0|43834.0|43837.0|43852.0|43865.0|43867.0|43914.0|43921.0|43931.0|43958.0|43976.0|43994.0|44005.0|44022.0|44033.0|44065.0|44083.0|44084.0|44088.0|44093.0|44112.0|44116.0|44129.0|44135.0|44145.0|44154.0|44179.0|44187.0|44188.0|44194.0|44198.0|44209.0|44226.0|44244.0|44249.0|44258.0|44262.0|44270.0|44279.0|44280.0|44293.0|44296.0|44314.0|44316.0|44343.0|44344.0|44345.0|44348.0|44352.0|44355.0|44357.0|44376.0|44378.0|44388.0|44396.0|44404.0|44420.0|44441.0|44452.0|44456.0|44461.0|44473.0|44474.0|44486.0|44487.0|44494.0|44504.0|44507.0|44520.0|44537.0|44547.0|44556.0|44557.0|44578.0|44608.0|44612.0|44648.0|44662.0|44666.0|44699.0|44765.0|44768.0|44800.0|44821.0|44840.0|44870.0|44872.0|44909.0|44926.0|44931.0|44951.0|44969.0|44978.0|44990.0|44991.0|45031.0|45052.0|45075.0|45119.0|45137.0|45153.0|45174.0|45192.0|45235.0|45239.0|45250.0|45253.0|45254.0|45272.0|45278.0|45292.0|45325.0|45340.0|45348.0|45356.0|45369.0|45376.0|45379.0|45390.0|45400.0|45407.0|45415.0|45418.0|45423.0|45455.0|45457.0|45466.0|45467.0|45477.0|45487.0|45493.0|45514.0|45525.0|45557.0|45558.0|45568.0|45580.0|45589.0|45596.0|45608.0|45610.0|45638.0|45639.0|45640.0|45643.0|45648.0|45650.0|45653.0|45694.0|45704.0|45709.0|45746.0|45749.0|45762.0|45769.0|45770.0|45796.0|45797.0|45810.0|45812.0|45843.0|45848.0|45861.0|45865.0|45866.0|45876.0|45880.0|45901.0|45917.0|45920.0|45921.0|45931.0|45944.0|45952.0|45954.0|45965.0|45981.0|45985.0|45990.0|45997.0|46002.0|46003.0|46017.0|46022.0|46023.0|46039.0|46044.0|46047.0|46053.0|46060.0|46063.0|46065.0|46083.0|46086.0|46097.0|46106.0|46113.0|46116.0|46126.0|46143.0|46147.0|46157.0|46158.0|46159.0|46164.0|46168.0|46184.0|46190.0|46191.0|46192.0|46199.0|46214.0|46220.0|46222.0|46233.0|46245.0|46248.0|46265.0|46266.0|46279.0|46281.0|46288.0|46306.0|46308.0|46312.0|46319.0|46335.0|46340.0|46352.0|46353.0|46357.0|46363.0|46366.0|46373.0|46375.0|46377.0|46381.0|46383.0|46385.0|46394.0|46402.0|46415.0|46425.0|46432.0|46434.0|46439.0|46444.0|46457.0|46482.0|46485.0|46498.0|46499.0|46501.0|46502.0|46514.0|46517.0|46518.0|46519.0|46534.0|46540.0|46544.0|46545.0|46550.0|46553.0|46556.0|46567.0|46571.0|46578.0|46588.0|46601.0|46603.0|46618.0|46620.0|46630.0|46633.0|46639.0|46656.0|46666.0|46676.0|46677.0|46678.0|46685.0|46694.0|46695.0|46699.0|46715.0|46729.0|46730.0|46734.0|46735.0|46744.0|46745.0|46747.0|46750.0|46759.0|46763.0|46766.0|46770.0|46781.0|46783.0|46785.0|46797.0|46804.0|46814.0|46817.0|46828.0|46830.0|46840.0|46845.0|46849.0|46851.0|46859.0|46860.0|46871.0|46879.0|46890.0|46892.0|46901.0|46903.0|46909.0|46911.0|46920.0|46925.0|46941.0|46952.0|46957.0|46959.0|46972.0|46982.0|46983.0|46985.0|47000.0|47004.0|47011.0|47012.0|47014.0|47024.0|47034.0|47043.0|47046.0|47058.0|47065.0|47071.0|47076.0|47086.0|47088.0|47091.0|47093.0|47097.0|47103.0|47105.0|47109.0|47119.0|47123.0|47125.0|47130.0|47137.0|47141.0|47146.0|47152.0|47157.0|47162.0|47163.0|47164.0|47169.0|47170.0|47171.0|47173.0|47178.0|47179.0|47183.0|47185.0|47189.0|47195.0|47206.0|47214.0|47217.0|47219.0|47224.0|47226.0|47232.0|47234.0|47241.0|47242.0|47243.0|47247.0|47255.0|47260.0|47264.0|47272.0|47280.0|47285.0|47286.0|47292.0|47295.0|47296.0|47299.0|47307.0|47314.0|47317.0|47325.0|47327.0|47328.0|47331.0|47334.0|47340.0|47344.0|47350.0|47352.0|47361.0|47364.0|47366.0|47379.0|47380.0|47385.0|47386.0|47388.0|47396.0|47399.0|47405.0|47414.0|47415.0|47416.0|47433.0|47444.0|47446.0|47447.0|47454.0|47457.0|47458.0|47462.0|47465.0|47467.0|47471.0|47476.0|47478.0|47480.0|47488.0|47497.0|47499.0|47500.0|47506.0|47515.0|47517.0|47519.0|47521.0|47522.0|47524.0|47527.0|47531.0|47532.0|47545.0|47548.0|47551.0|47554.0|47560.0|47562.0|47573.0|47574.0|47575.0|47578.0|47584.0|47591.0|47595.0|47599.0|47608.0|47616.0|47618.0|47626.0|47638.0|47640.0|47643.0|47649.0|47657.0|47665.0|47678.0|47681.0|47683.0|47689.0|47693.0|47703.0|47709.0|47712.0|47713.0|47721.0|47725.0|47729.0|47735.0|47742.0|47758.0|47760.0|47761.0|47764.0|47770.0|47784.0|47787.0|47790.0|47808.0|47821.0|47822.0|47825.0|47826.0|47829.0|47833.0|47852.0|47858.0|47862.0|47864.0|47869.0|47870.0|47872.0|47879.0|47890.0|47891.0|47899.0|47900.0|47919.0|47920.0|47930.0|47931.0|47941.0|47951.0|47953.0|47967.0|47974.0|47977.0|47979.0|47984.0|47985.0|47992.0|47993.0|48014.0|48019.0|48027.0|48032.0|48034.0|48042.0|48048.0|48049.0|48058.0|48085.0|48097.0|48101.0|48133.0|48139.0|48143.0|48153.0|48155.0|48157.0|48164.0|48168.0|48169.0|48189.0|48197.0|48198.0|48206.0|48209.0|48217.0|48220.0|48227.0|48234.0|48237.0|48238.0|48245.0|48248.0|48254.0|48262.0|48265.0|48272.0|48292.0|48295.0|48297.0|48300.0|48301.0|48308.0|48310.0|48315.0|48316.0|48322.0|48324.0|48327.0|48337.0|48344.0|48348.0|48354.0|48359.0|48362.0|48364.0|48369.0|48374.0|48375.0|48386.0|48392.0|48406.0|48427.0|48456.0|48457.0|48463.0|48466.0|48467.0|48469.0|48480.0|48489.0|48491.0|48496.0|48498.0|48499.0|48509.0|48513.0|48517.0|48519.0|48522.0|48524.0|48543.0|48546.0|48552.0|48554.0|48563.0|48564.0|48574.0|48581.0|48588.0|48589.0|48607.0|48617.0|48618.0|48623.0|48625.0|48628.0|48638.0|48642.0|48644.0|48653.0|48655.0|48659.0|48668.0|48686.0 +in.representative_income metadata_and_annual usd float 48692.0|48696.0|48706.0|48709.0|48713.0|48719.0|48730.0|48732.0|48746.0|48751.0|48759.0|48770.0|48777.0|48788.0|48790.0|48805.0|48807.0|48828.0|48829.0|48838.0|48850.0|48861.0|48881.0|48892.0|48933.0|48942.0|48945.0|48950.0|48973.0|48978.0|48992.0|49000.0|49007.0|49010.0|49024.0|49040.0|49056.0|49060.0|49068.0|49076.0|49078.0|49086.0|49093.0|49097.0|49100.0|49113.0|49144.0|49152.0|49168.0|49183.0|49190.0|49200.0|49215.0|49234.0|49250.0|49268.0|49269.0|49280.0|49283.0|49314.0|49323.0|49335.0|49377.0|49378.0|49396.0|49407.0|49413.0|49427.0|49477.0|49508.0|49538.0|49540.0|49566.0|49593.0|49594.0|49598.0|49637.0|49644.0|49647.0|49650.0|49659.0|49689.0|49695.0|49699.0|49700.0|49703.0|49712.0|49716.0|49729.0|49755.0|49767.0|49777.0|49808.0|49811.0|49830.0|49831.0|49841.0|49862.0|49871.0|49881.0|49883.0|49914.0|49918.0|49922.0|49947.0|49969.0|49982.0|49985.0|49999.0|50026.0|50041.0|50073.0|50093.0|50103.0|50104.0|50108.0|50147.0|50180.0|50184.0|50220.0|50221.0|50242.0|50253.0|50258.0|50263.0|50266.0|50271.0|50275.0|50302.0|50304.0|50305.0|50346.0|50355.0|50376.0|50393.0|50396.0|50399.0|50401.0|50404.0|50408.0|50421.0|50423.0|50426.0|50431.0|50442.0|50447.0|50455.0|50456.0|50474.0|50480.0|50484.0|50486.0|50491.0|50501.0|50507.0|50524.0|50531.0|50537.0|50541.0|50549.0|50554.0|50568.0|50569.0|50572.0|50581.0|50588.0|50593.0|50609.0|50615.0|50621.0|50634.0|50642.0|50645.0|50648.0|50652.0|50659.0|50663.0|50675.0|50695.0|50726.0|50727.0|50728.0|50729.0|50747.0|50760.0|50769.0|50775.0|50782.0|50784.0|50796.0|50799.0|50807.0|50841.0|50853.0|50868.0|50881.0|50882.0|50885.0|50890.0|50891.0|50922.0|50954.0|50955.0|50992.0|50998.0|51012.0|51040.0|51043.0|51046.0|51057.0|51083.0|51095.0|51099.0|51109.0|51113.0|51117.0|51128.0|51148.0|51159.0|51160.0|51163.0|51192.0|51204.0|51212.0|51215.0|51222.0|51231.0|51245.0|51247.0|51263.0|51265.0|51322.0|51323.0|51333.0|51354.0|51355.0|51397.0|51412.0|51416.0|51439.0|51450.0|51467.0|51472.0|51474.0|51493.0|51527.0|51528.0|51530.0|51532.0|51534.0|51568.0|51581.0|51593.0|51601.0|51614.0|51619.0|51633.0|51639.0|51646.0|51649.0|51651.0|51665.0|51676.0|51718.0|51719.0|51728.0|51750.0|51770.0|51781.0|51794.0|51800.0|51810.0|51820.0|51830.0|51834.0|51836.0|51841.0|51851.0|51863.0|51873.0|51882.0|51885.0|51900.0|51913.0|51929.0|51939.0|51941.0|51942.0|51944.0|51965.0|51975.0|51985.0|51992.0|51993.0|51995.0|52011.0|52016.0|52022.0|52027.0|52044.0|52045.0|52052.0|52068.0|52079.0|52083.0|52093.0|52103.0|52108.0|52111.0|52128.0|52129.0|52159.0|52170.0|52187.0|52195.0|52203.0|52243.0|52254.0|52274.0|52277.0|52295.0|52296.0|52298.0|52299.0|52306.0|52315.0|52319.0|52326.0|52331.0|52338.0|52346.0|52349.0|52350.0|52358.0|52367.0|52381.0|52386.0|52392.0|52393.0|52396.0|52397.0|52417.0|52419.0|52438.0|52449.0|52472.0|52491.0|52498.0|52514.0|52519.0|52528.0|52538.0|52542.0|52548.0|52551.0|52566.0|52578.0|52584.0|52592.0|52599.0|52600.0|52604.0|52618.0|52625.0|52629.0|52635.0|52642.0|52646.0|52667.0|52679.0|52688.0|52696.0|52705.0|52707.0|52719.0|52720.0|52730.0|52740.0|52749.0|52762.0|52779.0|52780.0|52781.0|52789.0|52792.0|52804.0|52811.0|52820.0|52825.0|52831.0|52835.0|52841.0|52847.0|52857.0|52871.0|52881.0|52888.0|52913.0|52953.0|52954.0|52964.0|52965.0|52982.0|52983.0|52994.0|53008.0|53026.0|53033.0|53047.0|53061.0|53078.0|53084.0|53093.0|53094.0|53110.0|53121.0|53136.0|53137.0|53151.0|53157.0|53162.0|53176.0|53195.0|53201.0|53205.0|53211.0|53223.0|53235.0|53238.0|53240.0|53247.0|53257.0|53258.0|53262.0|53267.0|53269.0|53286.0|53295.0|53296.0|53297.0|53299.0|53319.0|53321.0|53329.0|53336.0|53340.0|53342.0|53353.0|53359.0|53363.0|53364.0|53372.0|53374.0|53375.0|53376.0|53393.0|53398.0|53406.0|53415.0|53422.0|53429.0|53430.0|53437.0|53458.0|53461.0|53470.0|53479.0|53490.0|53495.0|53511.0|53521.0|53522.0|53532.0|53553.0|53554.0|53558.0|53562.0|53563.0|53565.0|53592.0|53597.0|53602.0|53605.0|53614.0|53616.0|53619.0|53621.0|53629.0|53637.0|53639.0|53651.0|53654.0|53655.0|53659.0|53667.0|53673.0|53679.0|53683.0|53684.0|53687.0|53690.0|53693.0|53694.0|53697.0|53708.0|53710.0|53716.0|53718.0|53722.0|53727.0|53729.0|53737.0|53739.0|53744.0|53745.0|53748.0|53758.0|53769.0|53775.0|53780.0|53781.0|53800.0|53807.0|53810.0|53812.0|53829.0|53840.0|53841.0|53844.0|53854.0|53855.0|53866.0|53869.0|53877.0|53878.0|53901.0|53909.0|53919.0|53920.0|53924.0|53925.0|53930.0|53942.0|53943.0|53945.0|53951.0|53959.0|53963.0|53970.0|53976.0|54002.0|54006.0|54012.0|54016.0|54028.0|54034.0|54038.0|54041.0|54048.0|54053.0|54056.0|54066.0|54067.0|54069.0|54079.0|54099.0|54101.0|54118.0|54122.0|54126.0|54131.0|54146.0|54153.0|54154.0|54164.0|54174.0|54175.0|54194.0|54203.0|54211.0|54220.0|54230.0|54239.0|54249.0|54266.0|54271.0|54272.0|54274.0|54295.0|54302.0|54307.0|54308.0|54309.0|54316.0|54327.0|54336.0|54338.0|54354.0|54359.0|54378.0|54381.0|54385.0|54396.0|54397.0|54402.0|54409.0|54413.0|54417.0|54418.0|54420.0|54434.0|54435.0|54445.0|54447.0|54461.0|54467.0|54477.0|54478.0|54480.0|54481.0|54487.0|54507.0|54508.0|54510.0|54521.0|54534.0|54540.0|54542.0|54548.0|54563.0|54564.0|54566.0|54576.0|54578.0|54585.0|54588.0|54607.0|54617.0|54619.0|54623.0|54627.0|54629.0|54639.0|54650.0|54657.0|54667.0|54669.0|54671.0|54672.0|54673.0|54681.0|54688.0|54689.0|54692.0|54698.0|54702.0|54704.0|54707.0|54709.0|54718.0|54720.0|54726.0|54734.0|54736.0|54746.0|54748.0|54750.0|54754.0|54756.0|54761.0|54769.0|54770.0|54784.0|54790.0|54797.0|54800.0|54811.0|54815.0|54816.0|54821.0|54822.0|54829.0|54831.0|54834.0|54842.0|54843.0|54844.0|54850.0|54861.0|54866.0|54873.0|54874.0|54884.0|54885.0|54888.0|54891.0|54896.0|54903.0|54906.0|54908.0|54913.0|54914.0|54918.0|54925.0|54931.0|54942.0|54944.0|54945.0|54955.0|54960.0|54968.0|54972.0|54976.0|54993.0|54997.0|55002.0|55017.0|55019.0|55039.0|55043.0|55044.0|55049.0|55050.0|55061.0|55068.0|55083.0|55093.0|55094.0|55095.0|55100.0|55104.0|55105.0|55109.0|55115.0|55121.0|55124.0|55134.0|55148.0|55156.0|55159.0|55162.0|55164.0|55175.0|55177.0|55179.0|55180.0|55182.0|55183.0|55184.0|55186.0|55191.0|55193.0|55197.0|55202.0|55204.0|55209.0|55224.0|55229.0|55230.0|55234.0|55240.0|55243.0|55265.0|55267.0|55272.0|55274.0|55277.0|55281.0|55282.0|55293.0|55295.0|55299.0|55305.0|55306.0|55309.0|55313.0|55320.0|55321.0|55326.0|55336.0|55337.0|55347.0|55348.0|55355.0|55356.0|55361.0|55369.0|55376.0|55377.0|55378.0|55379.0|55387.0|55390.0|55406.0|55412.0|55414.0|55417.0|55420.0|55428.0|55431.0|55432.0|55440.0|55441.0|55452.0|55465.0|55474.0|55475.0|55476.0|55488.0|55492.0|55496.0|55504.0|55509.0|55518.0|55519.0|55523.0|55528.0|55533.0|55537.0|55538.0|55541.0|55548.0|55551.0|55554.0|55558.0|55574.0|55578.0|55598.0|55606.0|55608.0|55617.0|55619.0|55622.0|55629.0|55638.0|55639.0|55644.0|55649.0|55662.0|55666.0|55669.0|55679.0|55688.0|55689.0|55690.0|55704.0|55726.0|55727.0|55729.0|55730.0|55733.0|55736.0|55740.0|55746.0|55750.0|55752.0|55756.0|55765.0|55766.0|55769.0|55780.0|55781.0|55787.0|55788.0|55799.0|55800.0|55801.0|55808.0|55811.0|55820.0|55830.0|55831.0|55843.0|55847.0|55850.0|55852.0|55858.0|55861.0|55866.0|55871.0|55883.0|55884.0|55894.0|55904.0|55912.0|55916.0|55917.0|55926.0|55936.0|55937.0|55941.0|55945.0|55947.0|55948.0|55957.0|55962.0|55964.0|55967.0|55972.0|55977.0|55980.0|55981.0|55986.0|55990.0|56000.0|56003.0|56008.0|56010.0|56018.0|56023.0|56028.0|56038.0|56042.0|56054.0|56073.0|56077.0|56083.0|56087.0|56089.0|56102.0|56114.0|56122.0|56131.0|56144.0|56152.0|56157.0|56163.0|56176.0|56181.0|56183.0|56184.0|56189.0|56194.0|56195.0|56200.0|56204.0|56206.0|56216.0|56221.0|56228.0|56230.0|56245.0|56253.0|56255.0|56265.0|56271.0|56274.0|56282.0|56293.0|56305.0|56336.0|56356.0|56359.0|56365.0|56376.0|56384.0|56396.0|56420.0|56421.0|56422.0|56424.0|56439.0|56447.0|56454.0|56462.0|56463.0|56465.0|56472.0|56476.0|56481.0|56495.0|56506.0|56511.0|56512.0|56514.0|56517.0|56518.0|56526.0|56528.0|56546.0|56548.0|56554.0|56562.0|56568.0|56580.0|56586.0|56588.0|56596.0|56598.0|56603.0|56628.0|56629.0|56646.0|56650.0|56654.0|56666.0|56674.0|56682.0|56699.0|56710.0 +in.representative_income metadata_and_annual usd float 56717.0|56720.0|56726.0|56728.0|56736.0|56738.0|56750.0|56761.0|56770.0|56771.0|56780.0|56792.0|56802.0|56818.0|56843.0|56851.0|56854.0|56871.0|56881.0|56887.0|56890.0|56897.0|56898.0|56917.0|56919.0|56922.0|56925.0|56936.0|56947.0|56959.0|56967.0|56968.0|56969.0|56986.0|56998.0|56999.0|57000.0|57022.0|57027.0|57040.0|57043.0|57049.0|57054.0|57062.0|57065.0|57073.0|57079.0|57086.0|57093.0|57101.0|57110.0|57118.0|57124.0|57128.0|57139.0|57143.0|57146.0|57149.0|57157.0|57159.0|57174.0|57202.0|57215.0|57225.0|57254.0|57265.0|57266.0|57268.0|57270.0|57275.0|57285.0|57287.0|57299.0|57301.0|57306.0|57308.0|57316.0|57319.0|57321.0|57322.0|57328.0|57340.0|57344.0|57346.0|57348.0|57356.0|57360.0|57362.0|57366.0|57371.0|57378.0|57383.0|57418.0|57434.0|57461.0|57463.0|57476.0|57483.0|57486.0|57488.0|57497.0|57503.0|57505.0|57508.0|57513.0|57514.0|57518.0|57537.0|57538.0|57545.0|57581.0|57589.0|57591.0|57619.0|57622.0|57624.0|57634.0|57639.0|57644.0|57658.0|57666.0|57699.0|57719.0|57730.0|57751.0|57761.0|57780.0|57782.0|57786.0|57794.0|57805.0|57838.0|57859.0|57863.0|57866.0|57871.0|57882.0|57885.0|57897.0|57898.0|57901.0|57902.0|57912.0|57913.0|57922.0|57932.0|57937.0|57956.0|57962.0|57971.0|57988.0|58003.0|58004.0|58024.0|58032.0|58035.0|58056.0|58071.0|58073.0|58083.0|58093.0|58098.0|58117.0|58120.0|58122.0|58130.0|58152.0|58164.0|58170.0|58173.0|58174.0|58181.0|58191.0|58202.0|58204.0|58205.0|58225.0|58236.0|58246.0|58256.0|58277.0|58278.0|58316.0|58318.0|58329.0|58331.0|58337.0|58346.0|58350.0|58357.0|58367.0|58380.0|58386.0|58410.0|58411.0|58421.0|58454.0|58478.0|58503.0|58538.0|58545.0|58557.0|58566.0|58578.0|58583.0|58610.0|58636.0|58657.0|58662.0|58664.0|58679.0|58696.0|58720.0|58742.0|58773.0|58777.0|58793.0|58801.0|58825.0|58845.0|58881.0|58900.0|58921.0|58922.0|58952.0|58968.0|58992.0|58993.0|59026.0|59040.0|59048.0|59050.0|59070.0|59072.0|59073.0|59079.0|59124.0|59154.0|59178.0|59184.0|59194.0|59221.0|59233.0|59242.0|59243.0|59248.0|59296.0|59319.0|59340.0|59372.0|59385.0|59397.0|59437.0|59459.0|59469.0|59484.0|59514.0|59533.0|59568.0|59577.0|59585.0|59625.0|59662.0|59680.0|59740.0|59743.0|59750.0|59791.0|59796.0|59801.0|59837.0|59845.0|59858.0|59898.0|59902.0|59934.0|60006.0|60007.0|60017.0|60058.0|60093.0|60112.0|60159.0|60177.0|60184.0|60197.0|60218.0|60290.0|60312.0|60323.0|60345.0|60350.0|60366.0|60392.0|60407.0|60429.0|60443.0|60477.0|60482.0|60484.0|60506.0|60535.0|60543.0|60547.0|60581.0|60609.0|60615.0|60616.0|60640.0|60649.0|60650.0|60669.0|60679.0|60680.0|60682.0|60687.0|60710.0|60740.0|60760.0|60779.0|60786.0|60789.0|60791.0|60830.0|60841.0|60843.0|60850.0|60861.0|60864.0|60885.0|60888.0|60892.0|60908.0|60912.0|60918.0|60928.0|60939.0|61013.0|61014.0|61062.0|61068.0|61079.0|61122.0|61168.0|61187.0|61188.0|61196.0|61199.0|61208.0|61215.0|61225.0|61230.0|61235.0|61248.0|61251.0|61255.0|61262.0|61268.0|61273.0|61283.0|61294.0|61299.0|61305.0|61316.0|61326.0|61340.0|61342.0|61348.0|61349.0|61351.0|61370.0|61371.0|61376.0|61378.0|61382.0|61401.0|61410.0|61414.0|61415.0|61436.0|61445.0|61453.0|61455.0|61458.0|61468.0|61483.0|61494.0|61508.0|61527.0|61530.0|61536.0|61557.0|61563.0|61578.0|61590.0|61619.0|61630.0|61659.0|61669.0|61681.0|61695.0|61707.0|61710.0|61726.0|61749.0|61781.0|61784.0|61809.0|61811.0|61814.0|61815.0|61841.0|61852.0|61861.0|61864.0|61881.0|61884.0|61887.0|61889.0|61895.0|61905.0|61907.0|61918.0|61923.0|61927.0|61929.0|61935.0|61937.0|61938.0|61953.0|61959.0|61962.0|61990.0|61993.0|62011.0|62019.0|62023.0|62024.0|62033.0|62040.0|62043.0|62052.0|62062.0|62064.0|62073.0|62082.0|62084.0|62099.0|62109.0|62123.0|62134.0|62156.0|62160.0|62171.0|62186.0|62195.0|62200.0|62214.0|62221.0|62225.0|62227.0|62233.0|62245.0|62246.0|62248.0|62254.0|62257.0|62260.0|62264.0|62269.0|62270.0|62275.0|62285.0|62296.0|62300.0|62303.0|62311.0|62312.0|62318.0|62322.0|62336.0|62344.0|62368.0|62375.0|62380.0|62382.0|62397.0|62407.0|62417.0|62437.0|62443.0|62451.0|62463.0|62474.0|62486.0|62494.0|62498.0|62505.0|62520.0|62529.0|62538.0|62558.0|62559.0|62569.0|62573.0|62582.0|62591.0|62603.0|62609.0|62613.0|62635.0|62640.0|62643.0|62647.0|62648.0|62654.0|62657.0|62667.0|62669.0|62678.0|62691.0|62700.0|62713.0|62721.0|62730.0|62732.0|62733.0|62743.0|62744.0|62750.0|62753.0|62754.0|62760.0|62762.0|62774.0|62775.0|62781.0|62791.0|62807.0|62831.0|62839.0|62844.0|62851.0|62871.0|62882.0|62883.0|62893.0|62902.0|62915.0|62918.0|62926.0|62929.0|62937.0|62940.0|62948.0|62950.0|62969.0|62981.0|62988.0|62990.0|62996.0|63032.0|63033.0|63035.0|63055.0|63067.0|63084.0|63089.0|63093.0|63094.0|63099.0|63100.0|63112.0|63115.0|63118.0|63122.0|63141.0|63143.0|63144.0|63150.0|63151.0|63173.0|63177.0|63178.0|63181.0|63183.0|63185.0|63186.0|63192.0|63197.0|63208.0|63217.0|63224.0|63227.0|63235.0|63240.0|63255.0|63269.0|63275.0|63280.0|63296.0|63297.0|63305.0|63308.0|63310.0|63316.0|63321.0|63323.0|63329.0|63334.0|63336.0|63337.0|63338.0|63340.0|63341.0|63346.0|63348.0|63355.0|63361.0|63365.0|63370.0|63372.0|63376.0|63378.0|63382.0|63387.0|63395.0|63403.0|63409.0|63413.0|63414.0|63417.0|63420.0|63424.0|63433.0|63434.0|63437.0|63439.0|63445.0|63462.0|63468.0|63471.0|63478.0|63480.0|63484.0|63488.0|63491.0|63505.0|63507.0|63516.0|63518.0|63519.0|63532.0|63549.0|63553.0|63561.0|63562.0|63568.0|63589.0|63592.0|63602.0|63603.0|63613.0|63614.0|63616.0|63622.0|63634.0|63635.0|63641.0|63643.0|63645.0|63649.0|63650.0|63659.0|63668.0|63669.0|63671.0|63677.0|63680.0|63693.0|63698.0|63704.0|63715.0|63726.0|63727.0|63736.0|63740.0|63748.0|63749.0|63751.0|63752.0|63754.0|63764.0|63769.0|63781.0|63782.0|63784.0|63800.0|63806.0|63809.0|63823.0|63824.0|63828.0|63831.0|63835.0|63842.0|63857.0|63865.0|63867.0|63870.0|63871.0|63888.0|63891.0|63895.0|63902.0|63919.0|63921.0|63922.0|63923.0|63941.0|63950.0|63952.0|63963.0|63964.0|63965.0|63966.0|63971.0|63973.0|63983.0|63992.0|63999.0|64001.0|64003.0|64018.0|64019.0|64029.0|64031.0|64033.0|64043.0|64063.0|64065.0|64075.0|64076.0|64080.0|64086.0|64090.0|64094.0|64101.0|64104.0|64106.0|64109.0|64113.0|64115.0|64121.0|64131.0|64136.0|64146.0|64154.0|64160.0|64164.0|64167.0|64178.0|64180.0|64183.0|64187.0|64189.0|64195.0|64198.0|64200.0|64201.0|64215.0|64225.0|64230.0|64235.0|64246.0|64266.0|64268.0|64276.0|64277.0|64299.0|64311.0|64315.0|64326.0|64337.0|64342.0|64353.0|64377.0|64393.0|64402.0|64414.0|64416.0|64418.0|64428.0|64436.0|64437.0|64438.0|64439.0|64445.0|64448.0|64450.0|64456.0|64457.0|64460.0|64465.0|64468.0|64474.0|64478.0|64489.0|64490.0|64493.0|64514.0|64525.0|64526.0|64527.0|64538.0|64547.0|64552.0|64559.0|64568.0|64569.0|64574.0|64590.0|64591.0|64602.0|64605.0|64610.0|64616.0|64620.0|64622.0|64623.0|64629.0|64641.0|64643.0|64647.0|64654.0|64659.0|64662.0|64665.0|64666.0|64670.0|64671.0|64675.0|64681.0|64686.0|64690.0|64694.0|64700.0|64708.0|64718.0|64720.0|64729.0|64764.0|64770.0|64780.0|64785.0|64802.0|64807.0|64811.0|64831.0|64833.0|64836.0|64837.0|64839.0|64841.0|64850.0|64851.0|64861.0|64869.0|64879.0|64882.0|64890.0|64893.0|64896.0|64898.0|64899.0|64902.0|64906.0|64915.0|64921.0|64932.0|64941.0|64947.0|64953.0|64956.0|64958.0|64964.0|64967.0|64973.0|64980.0|64991.0|65003.0|65006.0|65012.0|65015.0|65016.0|65033.0|65044.0|65048.0|65051.0|65055.0|65057.0|65062.0|65073.0|65083.0|65094.0|65107.0|65122.0|65144.0|65154.0|65159.0|65160.0|65184.0|65188.0|65206.0|65213.0|65219.0|65228.0|65260.0|65265.0|65266.0|65267.0|65269.0|65276.0|65278.0|65291.0|65309.0|65319.0|65322.0|65330.0|65333.0|65343.0|65356.0|65369.0|65370.0|65371.0|65394.0|65396.0|65421.0|65425.0|65433.0|65436.0|65456.0|65476.0|65477.0|65478.0|65480.0|65491.0|65497.0|65502.0|65509.0|65510.0|65523.0|65528.0|65542.0|65558.0|65563.0|65570.0|65577.0|65579.0|65597.0|65598.0|65599.0|65600.0|65607.0|65617.0|65619.0|65620.0|65623.0|65631.0|65639.0|65653.0|65660.0|65674.0|65676.0|65680.0|65690.0|65700.0|65702.0|65710.0|65714.0|65720.0|65730.0|65738.0|65740.0|65755.0|65757.0|65759.0|65760.0|65803.0|65805.0|65836.0|65837.0|65841.0|65851.0|65854.0|65858.0|65860.0|65861.0|65871.0|65872.0 +in.representative_income metadata_and_annual usd float 65875.0|65876.0|65887.0|65892.0|65902.0|65908.0|65909.0|65910.0|65919.0|65946.0|65952.0|65962.0|65988.0|66013.0|66016.0|66017.0|66019.0|66050.0|66054.0|66055.0|66063.0|66064.0|66081.0|66084.0|66106.0|66116.0|66120.0|66124.0|66150.0|66158.0|66165.0|66167.0|66177.0|66178.0|66232.0|66240.0|66253.0|66262.0|66266.0|66271.0|66286.0|66287.0|66308.0|66317.0|66322.0|66335.0|66336.0|66352.0|66361.0|66367.0|66384.0|66397.0|66427.0|66440.0|66446.0|66461.0|66467.0|66474.0|66481.0|66504.0|66506.0|66527.0|66528.0|66556.0|66567.0|66580.0|66604.0|66605.0|66608.0|66619.0|66631.0|66639.0|66643.0|66652.0|66672.0|66683.0|66693.0|66720.0|66730.0|66745.0|66769.0|66773.0|66776.0|66799.0|66801.0|66809.0|66811.0|66833.0|66838.0|66841.0|66848.0|66852.0|66872.0|66876.0|66880.0|66881.0|66890.0|66909.0|66913.0|66936.0|66957.0|66967.0|66968.0|66973.0|66990.0|66993.0|66994.0|67006.0|67009.0|67011.0|67013.0|67017.0|67026.0|67044.0|67054.0|67055.0|67073.0|67076.0|67097.0|67107.0|67110.0|67112.0|67126.0|67136.0|67145.0|67151.0|67165.0|67178.0|67195.0|67215.0|67216.0|67219.0|67230.0|67240.0|67250.0|67251.0|67267.0|67270.0|67273.0|67280.0|67284.0|67287.0|67302.0|67316.0|67326.0|67354.0|67356.0|67374.0|67379.0|67400.0|67402.0|67407.0|67411.0|67413.0|67431.0|67443.0|67466.0|67477.0|67488.0|67498.0|67518.0|67519.0|67539.0|67540.0|67548.0|67550.0|67551.0|67552.0|67573.0|67579.0|67587.0|67591.0|67600.0|67619.0|67620.0|67621.0|67634.0|67653.0|67659.0|67660.0|67680.0|67690.0|67694.0|67724.0|67730.0|67740.0|67746.0|67759.0|67761.0|67766.0|67773.0|67797.0|67818.0|67821.0|67831.0|67841.0|67884.0|67895.0|67912.0|67917.0|67921.0|67922.0|67941.0|67948.0|67959.0|67963.0|67970.0|67973.0|67986.0|67990.0|68003.0|68016.0|68022.0|68026.0|68064.0|68070.0|68073.0|68075.0|68080.0|68084.0|68085.0|68089.0|68091.0|68110.0|68118.0|68144.0|68145.0|68178.0|68179.0|68180.0|68185.0|68189.0|68207.0|68215.0|68222.0|68232.0|68233.0|68235.0|68239.0|68241.0|68242.0|68250.0|68251.0|68264.0|68275.0|68282.0|68286.0|68323.0|68349.0|68350.0|68364.0|68377.0|68380.0|68385.0|68387.0|68391.0|68393.0|68398.0|68402.0|68404.0|68406.0|68412.0|68414.0|68417.0|68444.0|68447.0|68468.0|68478.0|68488.0|68491.0|68497.0|68499.0|68501.0|68509.0|68512.0|68515.0|68520.0|68529.0|68547.0|68550.0|68559.0|68571.0|68572.0|68581.0|68589.0|68612.0|68623.0|68625.0|68626.0|68641.0|68649.0|68654.0|68655.0|68668.0|68679.0|68686.0|68695.0|68710.0|68718.0|68728.0|68729.0|68733.0|68740.0|68742.0|68750.0|68760.0|68761.0|68765.0|68776.0|68781.0|68783.0|68787.0|68791.0|68797.0|68802.0|68811.0|68813.0|68826.0|68828.0|68829.0|68830.0|68839.0|68856.0|68858.0|68866.0|68874.0|68880.0|68892.0|68908.0|68911.0|68912.0|68915.0|68919.0|68923.0|68929.0|68934.0|68937.0|68950.0|68966.0|68977.0|68979.0|68983.0|68988.0|68993.0|68997.0|69002.0|69003.0|69004.0|69007.0|69024.0|69028.0|69033.0|69035.0|69042.0|69046.0|69050.0|69053.0|69065.0|69077.0|69087.0|69094.0|69099.0|69118.0|69119.0|69125.0|69128.0|69129.0|69131.0|69138.0|69141.0|69149.0|69150.0|69161.0|69162.0|69164.0|69173.0|69211.0|69225.0|69231.0|69235.0|69247.0|69258.0|69262.0|69276.0|69286.0|69288.0|69290.0|69296.0|69313.0|69330.0|69340.0|69346.0|69365.0|69417.0|69441.0|69442.0|69464.0|69475.0|69478.0|69485.0|69498.0|69517.0|69518.0|69528.0|69535.0|69548.0|69560.0|69561.0|69571.0|69614.0|69623.0|69643.0|69675.0|69678.0|69687.0|69705.0|69709.0|69710.0|69721.0|69730.0|69747.0|69774.0|69778.0|69788.0|69799.0|69802.0|69830.0|69836.0|69850.0|69877.0|69880.0|69881.0|69903.0|69906.0|69912.0|69922.0|69932.0|69942.0|70003.0|70026.0|70031.0|70035.0|70096.0|70121.0|70123.0|70128.0|70131.0|70145.0|70204.0|70205.0|70252.0|70272.0|70285.0|70311.0|70386.0|70397.0|70407.0|70417.0|70418.0|70490.0|70518.0|70553.0|70555.0|70559.0|70564.0|70595.0|70609.0|70626.0|70633.0|70654.0|70659.0|70663.0|70680.0|70699.0|70710.0|70716.0|70725.0|70740.0|70751.0|70758.0|70764.0|70770.0|70785.0|70791.0|70799.0|70804.0|70811.0|70817.0|70826.0|70861.0|70862.0|70913.0|70943.0|70944.0|70963.0|70966.0|70975.0|70987.0|70993.0|70995.0|71013.0|71028.0|71041.0|71064.0|71081.0|71116.0|71117.0|71123.0|71155.0|71170.0|71190.0|71277.0|71299.0|71315.0|71336.0|71342.0|71365.0|71377.0|71384.0|71385.0|71397.0|71419.0|71451.0|71462.0|71496.0|71502.0|71508.0|71518.0|71569.0|71578.0|71583.0|71599.0|71602.0|71607.0|71609.0|71619.0|71644.0|71681.0|71686.0|71690.0|71706.0|71711.0|71724.0|71737.0|71744.0|71751.0|71758.0|71771.0|71776.0|71819.0|71821.0|71842.0|71852.0|71871.0|71878.0|71882.0|71892.0|71899.0|71900.0|71905.0|71912.0|71921.0|71924.0|71943.0|71973.0|71975.0|71983.0|71984.0|71996.0|72006.0|72013.0|72023.0|72028.0|72061.0|72068.0|72082.0|72091.0|72094.0|72100.0|72135.0|72139.0|72143.0|72145.0|72175.0|72201.0|72219.0|72229.0|72241.0|72256.0|72263.0|72267.0|72293.0|72325.0|72337.0|72346.0|72382.0|72391.0|72402.0|72408.0|72413.0|72415.0|72418.0|72423.0|72427.0|72434.0|72437.0|72445.0|72448.0|72452.0|72460.0|72462.0|72478.0|72479.0|72490.0|72497.0|72500.0|72503.0|72528.0|72557.0|72559.0|72565.0|72608.0|72611.0|72615.0|72640.0|72652.0|72655.0|72708.0|72716.0|72726.0|72730.0|72741.0|72742.0|72757.0|72769.0|72770.0|72800.0|72801.0|72802.0|72810.0|72811.0|72820.0|72825.0|72831.0|72835.0|72845.0|72856.0|72872.0|72873.0|72878.0|72895.0|72898.0|72909.0|72916.0|72919.0|72924.0|72926.0|72936.0|72947.0|72962.0|72965.0|72979.0|72983.0|72984.0|72996.0|72999.0|73005.0|73012.0|73015.0|73016.0|73027.0|73029.0|73031.0|73039.0|73040.0|73042.0|73043.0|73048.0|73074.0|73078.0|73080.0|73099.0|73109.0|73113.0|73119.0|73124.0|73125.0|73130.0|73145.0|73160.0|73185.0|73205.0|73206.0|73211.0|73220.0|73233.0|73236.0|73242.0|73254.0|73264.0|73269.0|73271.0|73274.0|73276.0|73278.0|73285.0|73298.0|73316.0|73326.0|73336.0|73337.0|73348.0|73364.0|73367.0|73377.0|73387.0|73388.0|73400.0|73407.0|73418.0|73421.0|73428.0|73439.0|73445.0|73460.0|73481.0|73483.0|73488.0|73494.0|73505.0|73506.0|73515.0|73516.0|73519.0|73526.0|73528.0|73532.0|73548.0|73553.0|73580.0|73594.0|73606.0|73619.0|73620.0|73625.0|73639.0|73650.0|73670.0|73673.0|73687.0|73698.0|73703.0|73710.0|73714.0|73717.0|73729.0|73738.0|73741.0|73744.0|73746.0|73759.0|73764.0|73775.0|73780.0|73781.0|73791.0|73796.0|73800.0|73811.0|73818.0|73821.0|73832.0|73836.0|73839.0|73872.0|73873.0|73884.0|73892.0|73893.0|73897.0|73898.0|73915.0|73917.0|73925.0|73929.0|73948.0|73958.0|73959.0|73960.0|73971.0|73981.0|73991.0|73993.0|74002.0|74003.0|74014.0|74017.0|74018.0|74025.0|74027.0|74043.0|74044.0|74049.0|74054.0|74055.0|74058.0|74065.0|74066.0|74074.0|74077.0|74089.0|74094.0|74104.0|74106.0|74110.0|74114.0|74117.0|74128.0|74130.0|74131.0|74143.0|74144.0|74147.0|74151.0|74157.0|74160.0|74166.0|74170.0|74173.0|74175.0|74182.0|74185.0|74192.0|74195.0|74200.0|74202.0|74216.0|74218.0|74224.0|74229.0|74230.0|74234.0|74239.0|74246.0|74254.0|74261.0|74264.0|74270.0|74276.0|74285.0|74306.0|74307.0|74310.0|74312.0|74316.0|74326.0|74327.0|74328.0|74331.0|74348.0|74357.0|74367.0|74371.0|74372.0|74376.0|74381.0|74390.0|74397.0|74402.0|74408.0|74417.0|74419.0|74433.0|74438.0|74439.0|74448.0|74466.0|74470.0|74476.0|74497.0|74508.0|74509.0|74511.0|74514.0|74551.0|74552.0|74557.0|74563.0|74581.0|74582.0|74594.0|74602.0|74609.0|74614.0|74616.0|74619.0|74639.0|74649.0|74651.0|74655.0|74660.0|74666.0|74674.0|74679.0|74682.0|74687.0|74690.0|74708.0|74714.0|74718.0|74719.0|74725.0|74739.0|74744.0|74757.0|74759.0|74760.0|74761.0|74771.0|74779.0|74781.0|74782.0|74790.0|74792.0|74798.0|74800.0|74801.0|74802.0|74803.0|74821.0|74824.0|74831.0|74832.0|74843.0|74847.0|74852.0|74862.0|74863.0|74873.0|74888.0|74892.0|74895.0|74898.0|74899.0|74909.0|74926.0|74927.0|74931.0|74934.0|74935.0|74940.0|74948.0|74950.0|74952.0|74961.0|74963.0|74968.0|74969.0|74972.0|74973.0|74981.0|74983.0|74993.0|75012.0|75013.0|75014.0|75017.0|75023.0|75035.0|75049.0|75054.0|75058.0|75062.0|75064.0|75088.0|75089.0|75090.0|75098.0|75104.0|75109.0|75114.0|75117.0|75119.0|75124.0|75136.0|75143.0|75146.0|75156.0|75158.0|75167.0|75175.0|75184.0|75190.0|75193.0|75195.0|75201.0|75203.0|75213.0|75224.0|75225.0 +in.representative_income metadata_and_annual usd float 75238.0|75244.0|75245.0|75247.0|75255.0|75275.0|75279.0|75292.0|75296.0|75298.0|75299.0|75303.0|75310.0|75313.0|75324.0|75327.0|75337.0|75341.0|75363.0|75368.0|75373.0|75381.0|75390.0|75395.0|75410.0|75417.0|75419.0|75421.0|75430.0|75435.0|75437.0|75440.0|75449.0|75450.0|75468.0|75474.0|75481.0|75484.0|75505.0|75517.0|75523.0|75526.0|75544.0|75545.0|75560.0|75567.0|75574.0|75575.0|75579.0|75585.0|75594.0|75605.0|75609.0|75611.0|75616.0|75625.0|75626.0|75640.0|75647.0|75655.0|75660.0|75666.0|75668.0|75670.0|75671.0|75695.0|75697.0|75698.0|75700.0|75713.0|75720.0|75745.0|75761.0|75774.0|75781.0|75784.0|75791.0|75795.0|75796.0|75801.0|75806.0|75811.0|75813.0|75821.0|75822.0|75828.0|75832.0|75846.0|75849.0|75852.0|75854.0|75856.0|75860.0|75870.0|75871.0|75872.0|75881.0|75882.0|75892.0|75893.0|75894.0|75902.0|75903.0|75912.0|75914.0|75923.0|75924.0|75936.0|75942.0|75946.0|75947.0|75952.0|75956.0|75964.0|75979.0|75985.0|75987.0|75988.0|75993.0|76000.0|76004.0|76005.0|76026.0|76044.0|76047.0|76057.0|76064.0|76066.0|76083.0|76086.0|76090.0|76094.0|76107.0|76114.0|76121.0|76129.0|76143.0|76162.0|76164.0|76165.0|76166.0|76172.0|76174.0|76183.0|76184.0|76193.0|76194.0|76195.0|76215.0|76227.0|76248.0|76250.0|76271.0|76281.0|76306.0|76309.0|76324.0|76328.0|76333.0|76335.0|76338.0|76343.0|76347.0|76354.0|76356.0|76367.0|76376.0|76390.0|76398.0|76407.0|76430.0|76431.0|76465.0|76483.0|76493.0|76498.0|76502.0|76512.0|76514.0|76518.0|76526.0|76543.0|76559.0|76579.0|76584.0|76585.0|76606.0|76612.0|76620.0|76630.0|76655.0|76670.0|76688.0|76691.0|76714.0|76724.0|76735.0|76740.0|76746.0|76753.0|76757.0|76760.0|76767.0|76771.0|76797.0|76805.0|76811.0|76813.0|76817.0|76821.0|76831.0|76832.0|76834.0|76838.0|76852.0|76864.0|76874.0|76902.0|76916.0|76923.0|76929.0|76933.0|76947.0|76957.0|76967.0|76973.0|76986.0|76996.0|76997.0|76999.0|77031.0|77036.0|77059.0|77077.0|77102.0|77111.0|77114.0|77127.0|77142.0|77145.0|77170.0|77172.0|77197.0|77204.0|77240.0|77250.0|77259.0|77265.0|77267.0|77269.0|77282.0|77288.0|77289.0|77297.0|77310.0|77323.0|77346.0|77353.0|77362.0|77364.0|77368.0|77379.0|77405.0|77409.0|77411.0|77421.0|77428.0|77440.0|77449.0|77462.0|77472.0|77473.0|77497.0|77524.0|77565.0|77577.0|77586.0|77589.0|77598.0|77599.0|77621.0|77664.0|77680.0|77700.0|77717.0|77728.0|77730.0|77753.0|77756.0|77761.0|77771.0|77781.0|77791.0|77804.0|77825.0|77830.0|77858.0|77875.0|77882.0|77885.0|77917.0|77933.0|77947.0|77956.0|77964.0|77978.0|77993.0|77998.0|78009.0|78034.0|78040.0|78041.0|78043.0|78052.0|78060.0|78083.0|78084.0|78118.0|78125.0|78132.0|78143.0|78145.0|78147.0|78157.0|78184.0|78199.0|78231.0|78252.0|78266.0|78286.0|78311.0|78313.0|78334.0|78357.0|78362.0|78378.0|78385.0|78411.0|78422.0|78442.0|78443.0|78469.0|78476.0|78488.0|78568.0|78574.0|78604.0|78609.0|78626.0|78648.0|78658.0|78666.0|78669.0|78670.0|78684.0|78690.0|78737.0|78741.0|78766.0|78779.0|78791.0|78797.0|78801.0|78812.0|78822.0|78842.0|78875.0|78892.0|78898.0|78901.0|78913.0|78929.0|78937.0|78943.0|78963.0|78974.0|78985.0|78988.0|78990.0|79006.0|79007.0|79037.0|79048.0|79091.0|79094.0|79095.0|79106.0|79125.0|79138.0|79164.0|79190.0|79201.0|79220.0|79222.0|79242.0|79251.0|79253.0|79267.0|79307.0|79317.0|79339.0|79340.0|79370.0|79412.0|79423.0|79435.0|79463.0|79464.0|79498.0|79517.0|79525.0|79545.0|79577.0|79628.0|79631.0|79639.0|79669.0|79728.0|79739.0|79758.0|79779.0|79793.0|79833.0|79843.0|79847.0|79864.0|79876.0|79897.0|79902.0|79918.0|79937.0|79940.0|79972.0|80041.0|80079.0|80084.0|80144.0|80187.0|80196.0|80203.0|80240.0|80255.0|80274.0|80279.0|80294.0|80309.0|80386.0|80401.0|80409.0|80474.0|80488.0|80495.0|80498.0|80513.0|80559.0|80572.0|80584.0|80593.0|80598.0|80608.0|80610.0|80614.0|80624.0|80630.0|80648.0|80670.0|80681.0|80711.0|80741.0|80783.0|80798.0|80819.0|80851.0|80862.0|80863.0|80865.0|80872.0|80877.0|80888.0|80903.0|80921.0|80923.0|80938.0|80943.0|80969.0|80996.0|81035.0|81036.0|81045.0|81046.0|81064.0|81067.0|81074.0|81092.0|81131.0|81135.0|81143.0|81165.0|81175.0|81183.0|81185.0|81216.0|81239.0|81249.0|81260.0|81274.0|81295.0|81300.0|81313.0|81332.0|81337.0|81341.0|81400.0|81418.0|81424.0|81457.0|81464.0|81484.0|81511.0|81516.0|81519.0|81522.0|81526.0|81552.0|81567.0|81582.0|81597.0|81608.0|81639.0|81653.0|81657.0|81691.0|81721.0|81732.0|81733.0|81744.0|81748.0|81753.0|81754.0|81785.0|81794.0|81795.0|81801.0|81816.0|81825.0|81838.0|81839.0|81845.0|81860.0|81861.0|81862.0|81872.0|81899.0|81903.0|81926.0|81968.0|81980.0|81995.0|82004.0|82012.0|82064.0|82103.0|82116.0|82120.0|82125.0|82127.0|82133.0|82135.0|82145.0|82148.0|82155.0|82169.0|82170.0|82175.0|82210.0|82226.0|82228.0|82247.0|82259.0|82276.0|82280.0|82310.0|82312.0|82351.0|82353.0|82357.0|82376.0|82377.0|82387.0|82397.0|82399.0|82407.0|82408.0|82416.0|82418.0|82430.0|82441.0|82442.0|82444.0|82451.0|82462.0|82471.0|82478.0|82506.0|82516.0|82526.0|82527.0|82528.0|82529.0|82534.0|82537.0|82548.0|82569.0|82571.0|82576.0|82589.0|82609.0|82610.0|82612.0|82623.0|82628.0|82630.0|82650.0|82655.0|82656.0|82660.0|82666.0|82671.0|82677.0|82710.0|82712.0|82731.0|82743.0|82761.0|82792.0|82796.0|82826.0|82828.0|82840.0|82842.0|82865.0|82872.0|82881.0|82894.0|82923.0|82935.0|82952.0|82956.0|82997.0|83001.0|83003.0|83013.0|83019.0|83024.0|83029.0|83031.0|83063.0|83064.0|83067.0|83084.0|83088.0|83095.0|83102.0|83103.0|83121.0|83139.0|83142.0|83145.0|83165.0|83186.0|83194.0|83196.0|83200.0|83208.0|83211.0|83229.0|83246.0|83257.0|83261.0|83282.0|83307.0|83324.0|83326.0|83329.0|83332.0|83337.0|83357.0|83409.0|83428.0|83438.0|83445.0|83458.0|83465.0|83478.0|83482.0|83493.0|83495.0|83499.0|83506.0|83514.0|83527.0|83531.0|83532.0|83546.0|83569.0|83615.0|83630.0|83643.0|83647.0|83650.0|83659.0|83666.0|83672.0|83680.0|83714.0|83718.0|83722.0|83729.0|83731.0|83736.0|83740.0|83741.0|83746.0|83751.0|83764.0|83792.0|83809.0|83842.0|83844.0|83857.0|83873.0|83888.0|83894.0|83947.0|83953.0|83968.0|83973.0|84046.0|84050.0|84051.0|84064.0|84074.0|84080.0|84095.0|84136.0|84145.0|84156.0|84157.0|84159.0|84168.0|84178.0|84206.0|84212.0|84216.0|84226.0|84246.0|84263.0|84266.0|84269.0|84287.0|84298.0|84308.0|84309.0|84311.0|84319.0|84347.0|84348.0|84373.0|84379.0|84381.0|84384.0|84385.0|84390.0|84396.0|84398.0|84411.0|84418.0|84438.0|84452.0|84474.0|84482.0|84497.0|84512.0|84526.0|84529.0|84538.0|84549.0|84553.0|84576.0|84586.0|84596.0|84598.0|84623.0|84632.0|84643.0|84674.0|84685.0|84695.0|84706.0|84726.0|84751.0|84771.0|84799.0|84816.0|84824.0|84837.0|84842.0|84852.0|84891.0|84909.0|84925.0|84928.0|84938.0|84954.0|84959.0|85014.0|85017.0|85028.0|85033.0|85054.0|85059.0|85069.0|85076.0|85082.0|85107.0|85125.0|85128.0|85140.0|85141.0|85155.0|85160.0|85163.0|85170.0|85175.0|85178.0|85185.0|85191.0|85212.0|85228.0|85232.0|85241.0|85249.0|85260.0|85264.0|85269.0|85279.0|85285.0|85287.0|85296.0|85312.0|85314.0|85318.0|85322.0|85336.0|85356.0|85358.0|85377.0|85398.0|85423.0|85427.0|85430.0|85433.0|85446.0|85448.0|85454.0|85465.0|85466.0|85477.0|85486.0|85539.0|85541.0|85544.0|85575.0|85590.0|85608.0|85611.0|85612.0|85621.0|85623.0|85634.0|85641.0|85643.0|85660.0|85665.0|85670.0|85681.0|85714.0|85715.0|85722.0|85740.0|85743.0|85753.0|85767.0|85842.0|85843.0|85862.0|85872.0|85876.0|85878.0|85880.0|85883.0|85898.0|85903.0|85908.0|85917.0|85920.0|85929.0|85961.0|85963.0|85967.0|86005.0|86006.0|86013.0|86019.0|86033.0|86035.0|86036.0|86037.0|86044.0|86056.0|86060.0|86064.0|86090.0|86114.0|86126.0|86135.0|86149.0|86156.0|86161.0|86177.0|86183.0|86198.0|86211.0|86218.0|86226.0|86230.0|86246.0|86263.0|86276.0|86298.0|86302.0|86340.0|86362.0|86398.0|86413.0|86415.0|86424.0|86425.0|86440.0|86458.0|86466.0|86468.0|86477.0|86478.0|86491.0|86499.0|86515.0|86519.0|86527.0|86530.0|86539.0|86542.0|86552.0|86553.0|86559.0|86562.0|86569.0|86583.0|86590.0|86599.0|86600.0|86636.0|86638.0|86647.0|86652.0|86653.0|86670.0|86681.0|86688.0|86690.0|86692.0|86694.0|86696.0|86697.0|86704.0|86714.0|86729.0|86730.0|86742.0|86762.0|86771.0|86773.0|86776.0|86786.0|86789.0|86794.0|86795.0|86799.0|86802.0|86807.0 +in.representative_income metadata_and_annual usd float 86822.0|86839.0|86842.0|86847.0|86859.0|86879.0|86893.0|86911.0|86924.0|86928.0|86933.0|86935.0|86951.0|86952.0|86953.0|86973.0|86975.0|86989.0|86995.0|87001.0|87005.0|87013.0|87016.0|87025.0|87026.0|87032.0|87043.0|87057.0|87075.0|87080.0|87095.0|87106.0|87112.0|87118.0|87125.0|87128.0|87133.0|87155.0|87164.0|87174.0|87176.0|87183.0|87196.0|87197.0|87209.0|87226.0|87236.0|87237.0|87247.0|87259.0|87271.0|87273.0|87277.0|87290.0|87297.0|87323.0|87327.0|87343.0|87353.0|87366.0|87377.0|87378.0|87379.0|87383.0|87398.0|87416.0|87419.0|87420.0|87422.0|87446.0|87465.0|87493.0|87508.0|87518.0|87523.0|87529.0|87533.0|87537.0|87543.0|87551.0|87557.0|87571.0|87573.0|87580.0|87583.0|87585.0|87595.0|87616.0|87626.0|87634.0|87637.0|87640.0|87641.0|87648.0|87650.0|87659.0|87673.0|87681.0|87690.0|87694.0|87700.0|87705.0|87707.0|87715.0|87728.0|87734.0|87739.0|87741.0|87755.0|87767.0|87782.0|87787.0|87795.0|87802.0|87806.0|87807.0|87828.0|87839.0|87859.0|87869.0|87880.0|87883.0|87889.0|87890.0|87893.0|87900.0|87903.0|87910.0|87919.0|87932.0|87937.0|87945.0|87950.0|87954.0|87963.0|87972.0|87984.0|87986.0|87997.0|88003.0|88004.0|88007.0|88023.0|88024.0|88034.0|88040.0|88044.0|88059.0|88076.0|88085.0|88095.0|88096.0|88102.0|88127.0|88130.0|88136.0|88137.0|88152.0|88155.0|88159.0|88165.0|88173.0|88177.0|88184.0|88189.0|88190.0|88216.0|88220.0|88254.0|88271.0|88274.0|88281.0|88292.0|88296.0|88303.0|88307.0|88308.0|88323.0|88329.0|88345.0|88354.0|88355.0|88376.0|88382.0|88383.0|88385.0|88386.0|88398.0|88404.0|88407.0|88415.0|88418.0|88429.0|88436.0|88440.0|88447.0|88456.0|88458.0|88463.0|88469.0|88473.0|88495.0|88499.0|88514.0|88517.0|88519.0|88529.0|88533.0|88535.0|88540.0|88545.0|88559.0|88564.0|88566.0|88587.0|88588.0|88599.0|88601.0|88602.0|88608.0|88609.0|88619.0|88620.0|88623.0|88631.0|88640.0|88646.0|88650.0|88653.0|88660.0|88685.0|88692.0|88728.0|88752.0|88756.0|88761.0|88775.0|88792.0|88814.0|88819.0|88828.0|88832.0|88840.0|88843.0|88848.0|88851.0|88858.0|88862.0|88863.0|88869.0|88883.0|88890.0|88898.0|88932.0|88956.0|88959.0|88974.0|88976.0|88989.0|88994.0|88998.0|89005.0|89008.0|89009.0|89015.0|89030.0|89059.0|89061.0|89064.0|89066.0|89072.0|89095.0|89096.0|89101.0|89105.0|89114.0|89118.0|89128.0|89150.0|89151.0|89166.0|89173.0|89174.0|89176.0|89178.0|89188.0|89200.0|89204.0|89230.0|89236.0|89240.0|89244.0|89258.0|89272.0|89273.0|89291.0|89292.0|89293.0|89295.0|89301.0|89305.0|89306.0|89324.0|89333.0|89334.0|89336.0|89343.0|89363.0|89364.0|89365.0|89375.0|89378.0|89384.0|89386.0|89398.0|89406.0|89423.0|89427.0|89429.0|89434.0|89437.0|89438.0|89441.0|89463.0|89471.0|89472.0|89483.0|89485.0|89508.0|89517.0|89524.0|89549.0|89550.0|89567.0|89571.0|89582.0|89590.0|89603.0|89621.0|89630.0|89637.0|89642.0|89660.0|89665.0|89673.0|89679.0|89700.0|89705.0|89711.0|89714.0|89716.0|89722.0|89731.0|89738.0|89742.0|89746.0|89751.0|89759.0|89778.0|89783.0|89792.0|89802.0|89804.0|89808.0|89810.0|89823.0|89826.0|89829.0|89832.0|89839.0|89842.0|89848.0|89851.0|89852.0|89862.0|89891.0|89893.0|89895.0|89899.0|89903.0|89905.0|89906.0|89912.0|89917.0|89921.0|89923.0|89928.0|89930.0|89943.0|89953.0|89960.0|89963.0|89973.0|89979.0|89982.0|89988.0|90004.0|90009.0|90017.0|90024.0|90046.0|90054.0|90069.0|90079.0|90088.0|90090.0|90095.0|90107.0|90116.0|90122.0|90125.0|90128.0|90137.0|90140.0|90160.0|90165.0|90180.0|90216.0|90219.0|90221.0|90223.0|90228.0|90230.0|90252.0|90274.0|90277.0|90286.0|90303.0|90327.0|90337.0|90338.0|90340.0|90348.0|90349.0|90351.0|90353.0|90355.0|90357.0|90360.0|90378.0|90386.0|90392.0|90397.0|90405.0|90407.0|90414.0|90438.0|90443.0|90457.0|90461.0|90467.0|90478.0|90485.0|90491.0|90535.0|90543.0|90546.0|90562.0|90570.0|90576.0|90593.0|90608.0|90610.0|90612.0|90632.0|90634.0|90640.0|90643.0|90651.0|90654.0|90661.0|90665.0|90683.0|90697.0|90702.0|90717.0|90728.0|90738.0|90759.0|90760.0|90761.0|90763.0|90764.0|90770.0|90771.0|90779.0|90781.0|90802.0|90814.0|90819.0|90829.0|90832.0|90835.0|90847.0|90854.0|90862.0|90864.0|90878.0|90881.0|90892.0|90900.0|90907.0|90912.0|90913.0|90943.0|90953.0|90970.0|90974.0|90976.0|90984.0|90994.0|90996.0|91000.0|91004.0|91005.0|91012.0|91023.0|91029.0|91030.0|91055.0|91077.0|91084.0|91090.0|91105.0|91114.0|91115.0|91135.0|91145.0|91150.0|91159.0|91186.0|91190.0|91216.0|91222.0|91232.0|91234.0|91241.0|91243.0|91244.0|91254.0|91275.0|91277.0|91283.0|91287.0|91299.0|91307.0|91329.0|91334.0|91351.0|91355.0|91361.0|91366.0|91386.0|91394.0|91398.0|91407.0|91418.0|91424.0|91428.0|91440.0|91445.0|91469.0|91487.0|91495.0|91499.0|91505.0|91509.0|91510.0|91511.0|91516.0|91523.0|91531.0|91538.0|91540.0|91542.0|91558.0|91566.0|91570.0|91580.0|91583.0|91587.0|91598.0|91603.0|91610.0|91619.0|91620.0|91645.0|91670.0|91674.0|91675.0|91678.0|91698.0|91717.0|91738.0|91751.0|91754.0|91761.0|91762.0|91764.0|91768.0|91772.0|91778.0|91780.0|91783.0|91802.0|91804.0|91810.0|91814.0|91820.0|91840.0|91841.0|91873.0|91878.0|91883.0|91887.0|91889.0|91904.0|91908.0|91926.0|91933.0|91940.0|91943.0|91962.0|91974.0|91977.0|91984.0|91993.0|91995.0|92002.0|92004.0|92005.0|92006.0|92014.0|92016.0|92018.0|92034.0|92044.0|92057.0|92067.0|92075.0|92082.0|92115.0|92119.0|92125.0|92131.0|92153.0|92171.0|92173.0|92185.0|92191.0|92216.0|92225.0|92251.0|92272.0|92287.0|92291.0|92297.0|92306.0|92315.0|92325.0|92331.0|92336.0|92337.0|92367.0|92371.0|92383.0|92386.0|92394.0|92404.0|92408.0|92418.0|92424.0|92428.0|92448.0|92456.0|92457.0|92467.0|92469.0|92477.0|92478.0|92488.0|92489.0|92493.0|92514.0|92529.0|92532.0|92593.0|92596.0|92600.0|92605.0|92608.0|92640.0|92666.0|92681.0|92686.0|92690.0|92704.0|92726.0|92728.0|92735.0|92747.0|92748.0|92769.0|92789.0|92800.0|92805.0|92816.0|92831.0|92832.0|92837.0|92841.0|92877.0|92890.0|92893.0|92903.0|92924.0|92933.0|92942.0|92954.0|92961.0|92962.0|92963.0|92984.0|92992.0|93006.0|93012.0|93016.0|93017.0|93028.0|93034.0|93039.0|93050.0|93060.0|93085.0|93086.0|93088.0|93094.0|93111.0|93137.0|93140.0|93153.0|93160.0|93164.0|93176.0|93180.0|93182.0|93212.0|93266.0|93267.0|93279.0|93283.0|93284.0|93299.0|93307.0|93331.0|93364.0|93367.0|93390.0|93396.0|93400.0|93402.0|93406.0|93411.0|93418.0|93419.0|93428.0|93430.0|93441.0|93442.0|93444.0|93449.0|93460.0|93509.0|93532.0|93539.0|93543.0|93562.0|93578.0|93584.0|93594.0|93623.0|93640.0|93644.0|93647.0|93649.0|93656.0|93658.0|93660.0|93661.0|93676.0|93681.0|93730.0|93754.0|93759.0|93772.0|93776.0|93777.0|93792.0|93794.0|93806.0|93820.0|93832.0|93844.0|93862.0|93863.0|93873.0|93883.0|93892.0|93893.0|93898.0|93902.0|93913.0|93915.0|93916.0|93947.0|93959.0|93962.0|93966.0|93970.0|93983.0|93994.0|94001.0|94002.0|94005.0|94018.0|94024.0|94026.0|94028.0|94065.0|94068.0|94071.0|94079.0|94085.0|94096.0|94113.0|94138.0|94141.0|94142.0|94163.0|94166.0|94172.0|94176.0|94226.0|94248.0|94250.0|94255.0|94270.0|94275.0|94277.0|94279.0|94285.0|94302.0|94303.0|94314.0|94326.0|94331.0|94348.0|94357.0|94387.0|94388.0|94398.0|94410.0|94418.0|94428.0|94433.0|94463.0|94469.0|94474.0|94496.0|94507.0|94529.0|94533.0|94556.0|94577.0|94582.0|94584.0|94603.0|94649.0|94661.0|94677.0|94678.0|94687.0|94689.0|94704.0|94731.0|94735.0|94739.0|94758.0|94770.0|94783.0|94784.0|94801.0|94809.0|94824.0|94847.0|94852.0|94880.0|94893.0|94898.0|94914.0|94924.0|94925.0|94928.0|94947.0|94967.0|94986.0|95017.0|95022.0|95038.0|95052.0|95054.0|95065.0|95073.0|95107.0|95114.0|95126.0|95135.0|95136.0|95151.0|95156.0|95168.0|95173.0|95176.0|95178.0|95199.0|95206.0|95212.0|95232.0|95234.0|95247.0|95254.0|95257.0|95277.0|95283.0|95286.0|95287.0|95290.0|95306.0|95312.0|95331.0|95336.0|95348.0|95354.0|95361.0|95378.0|95390.0|95405.0|95406.0|95420.0|95446.0|95459.0|95460.0|95463.0|95522.0|95536.0|95538.0|95542.0|95545.0|95548.0|95560.0|95580.0|95616.0|95622.0|95633.0|95644.0|95655.0|95665.0|95737.0|95752.0|95759.0|95772.0|95806.0|95816.0|95822.0|95839.0|95853.0|95859.0|95863.0|95884.0|95891.0|95912.0|95913.0|95935.0|95945.0|95966.0|95967.0|95974.0|95977.0|95984.0|95990.0|95994.0|96009.0|96014.0|96028.0|96054.0|96065.0|96075.0|96096.0|96118.0|96127.0 +in.representative_income metadata_and_annual usd float 96128.0|96174.0|96176.0|96216.0|96233.0|96265.0|96267.0|96270.0|96349.0|96378.0|96391.0|96400.0|96417.0|96428.0|96441.0|96444.0|96449.0|96469.0|96474.0|96479.0|96486.0|96494.0|96503.0|96523.0|96549.0|96594.0|96611.0|96612.0|96615.0|96616.0|96632.0|96643.0|96644.0|96671.0|96675.0|96696.0|96717.0|96724.0|96738.0|96740.0|96750.0|96762.0|96807.0|96810.0|96833.0|96873.0|96879.0|96893.0|96918.0|96923.0|96937.0|96974.0|96984.0|97008.0|97048.0|97050.0|97055.0|97075.0|97076.0|97105.0|97108.0|97111.0|97122.0|97129.0|97136.0|97146.0|97163.0|97235.0|97253.0|97254.0|97277.0|97287.0|97350.0|97370.0|97372.0|97377.0|97378.0|97382.0|97390.0|97408.0|97445.0|97459.0|97469.0|97472.0|97479.0|97501.0|97503.0|97512.0|97522.0|97575.0|97599.0|97609.0|97614.0|97615.0|97631.0|97657.0|97669.0|97681.0|97684.0|97711.0|97717.0|97730.0|97750.0|97793.0|97833.0|97863.0|97867.0|97879.0|97883.0|97884.0|97891.0|97898.0|97899.0|97934.0|97953.0|97973.0|97983.0|97984.0|97988.0|97994.0|97999.0|98006.0|98010.0|98035.0|98036.0|98091.0|98139.0|98143.0|98167.0|98183.0|98194.0|98206.0|98215.0|98298.0|98318.0|98323.0|98327.0|98395.0|98400.0|98431.0|98435.0|98469.0|98489.0|98500.0|98543.0|98590.0|98607.0|98647.0|98648.0|98650.0|98680.0|98691.0|98701.0|98711.0|98734.0|98742.0|98755.0|98758.0|98759.0|98762.0|98792.0|98811.0|98813.0|98816.0|98874.0|98893.0|98901.0|98906.0|98917.0|98922.0|98972.0|99014.0|99025.0|99026.0|99028.0|99035.0|99055.0|99071.0|99090.0|99095.0|99115.0|99122.0|99133.0|99176.0|99196.0|99207.0|99238.0|99246.0|99295.0|99297.0|99327.0|99329.0|99381.0|99397.0|99398.0|99402.0|99403.0|99415.0|99449.0|99499.0|99512.0|99555.0|99616.0|99620.0|99638.0|99652.0|99660.0|99674.0|99701.0|99723.0|99741.0|99766.0|99787.0|99835.0|99845.0|99850.0|99903.0|99938.0|99948.0|99960.0|99976.0|100025.0|100045.0|100051.0|100084.0|100105.0|100159.0|100174.0|100206.0|100219.0|100249.0|100257.0|100268.0|100269.0|100271.0|100307.0|100360.0|100368.0|100376.0|100464.0|100504.0|100508.0|100509.0|100535.0|100582.0|100592.0|100601.0|100604.0|100608.0|100610.0|100624.0|100668.0|100691.0|100700.0|100701.0|100714.0|100730.0|100731.0|100742.0|100773.0|100797.0|100812.0|100818.0|100842.0|100904.0|100913.0|100915.0|100926.0|100933.0|100968.0|100979.0|100991.0|101029.0|101035.0|101052.0|101083.0|101108.0|101116.0|101141.0|101173.0|101228.0|101237.0|101245.0|101254.0|101264.0|101270.0|101288.0|101297.0|101312.0|101318.0|101326.0|101337.0|101359.0|101368.0|101430.0|101443.0|101453.0|101467.0|101469.0|101474.0|101484.0|101488.0|101509.0|101564.0|101567.0|101570.0|101586.0|101598.0|101621.0|101627.0|101651.0|101656.0|101672.0|101691.0|101692.0|101693.0|101695.0|101699.0|101712.0|101715.0|101722.0|101732.0|101763.0|101773.0|101838.0|101870.0|101889.0|101914.0|101967.0|101980.0|101982.0|101989.0|101997.0|102004.0|102031.0|102033.0|102062.0|102085.0|102102.0|102117.0|102124.0|102138.0|102149.0|102176.0|102193.0|102207.0|102212.0|102216.0|102248.0|102256.0|102262.0|102267.0|102279.0|102297.0|102299.0|102306.0|102328.0|102378.0|102400.0|102402.0|102423.0|102429.0|102450.0|102461.0|102465.0|102506.0|102507.0|102530.0|102536.0|102570.0|102613.0|102622.0|102630.0|102631.0|102645.0|102656.0|102666.0|102729.0|102733.0|102753.0|102770.0|102783.0|102835.0|102877.0|102903.0|102904.0|102930.0|102934.0|102944.0|102969.0|103011.0|103040.0|103042.0|103052.0|103062.0|103077.0|103104.0|103111.0|103136.0|103140.0|103156.0|103166.0|103176.0|103207.0|103217.0|103255.0|103266.0|103267.0|103272.0|103293.0|103338.0|103351.0|103373.0|103386.0|103404.0|103424.0|103434.0|103435.0|103439.0|103440.0|103454.0|103457.0|103465.0|103478.0|103480.0|103538.0|103540.0|103548.0|103562.0|103583.0|103588.0|103615.0|103641.0|103648.0|103668.0|103671.0|103727.0|103742.0|103749.0|103768.0|103779.0|103826.0|103843.0|103844.0|103846.0|103867.0|103873.0|103877.0|103878.0|103930.0|103944.0|103952.0|103970.0|103985.0|103995.0|104026.0|104049.0|104055.0|104071.0|104073.0|104090.0|104120.0|104125.0|104129.0|104142.0|104146.0|104152.0|104179.0|104187.0|104195.0|104228.0|104259.0|104290.0|104297.0|104310.0|104350.0|104358.0|104370.0|104374.0|104393.0|104403.0|104449.0|104459.0|104486.0|104500.0|104510.0|104570.0|104634.0|104649.0|104651.0|104702.0|104733.0|104752.0|104773.0|104782.0|104785.0|104796.0|104805.0|104816.0|104828.0|104857.0|104876.0|104913.0|104933.0|104950.0|104961.0|104968.0|105000.0|105022.0|105035.0|105055.0|105065.0|105071.0|105095.0|105144.0|105173.0|105207.0|105217.0|105218.0|105241.0|105245.0|105250.0|105253.0|105257.0|105271.0|105286.0|105287.0|105310.0|105327.0|105341.0|105346.0|105348.0|105350.0|105353.0|105358.0|105359.0|105376.0|105381.0|105434.0|105454.0|105461.0|105475.0|105481.0|105492.0|105502.0|105508.0|105529.0|105534.0|105542.0|105550.0|105555.0|105562.0|105595.0|105619.0|105629.0|105631.0|105650.0|105671.0|105693.0|105695.0|105704.0|105759.0|105771.0|105777.0|105843.0|105879.0|105883.0|105908.0|105914.0|105919.0|105928.0|105930.0|105937.0|105950.0|105975.0|105982.0|105988.0|106002.0|106034.0|106051.0|106062.0|106065.0|106073.0|106083.0|106093.0|106112.0|106121.0|106146.0|106157.0|106166.0|106188.0|106198.0|106250.0|106261.0|106267.0|106272.0|106275.0|106282.0|106296.0|106308.0|106338.0|106343.0|106384.0|106399.0|106400.0|106403.0|106419.0|106425.0|106442.0|106464.0|106480.0|106490.0|106501.0|106510.0|106516.0|106518.0|106534.0|106549.0|106578.0|106580.0|106594.0|106600.0|106621.0|106644.0|106657.0|106668.0|106671.0|106693.0|106697.0|106705.0|106706.0|106718.0|106726.0|106733.0|106735.0|106741.0|106747.0|106751.0|106755.0|106765.0|106783.0|106787.0|106808.0|106852.0|106858.0|106859.0|106883.0|106894.0|106912.0|106926.0|106937.0|106945.0|106967.0|106970.0|106971.0|106988.0|106991.0|106999.0|107005.0|107013.0|107020.0|107053.0|107096.0|107102.0|107128.0|107131.0|107148.0|107159.0|107166.0|107167.0|107176.0|107182.0|107184.0|107205.0|107224.0|107236.0|107242.0|107251.0|107270.0|107271.0|107292.0|107298.0|107318.0|107322.0|107323.0|107338.0|107345.0|107346.0|107352.0|107355.0|107359.0|107367.0|107375.0|107378.0|107388.0|107399.0|107402.0|107410.0|107412.0|107429.0|107437.0|107446.0|107452.0|107458.0|107464.0|107479.0|107485.0|107504.0|107507.0|107517.0|107528.0|107529.0|107561.0|107581.0|107596.0|107613.0|107623.0|107671.0|107681.0|107688.0|107690.0|107698.0|107720.0|107723.0|107731.0|107735.0|107742.0|107749.0|107752.0|107763.0|107772.0|107775.0|107780.0|107781.0|107786.0|107787.0|107788.0|107792.0|107798.0|107802.0|107807.0|107818.0|107823.0|107831.0|107873.0|107874.0|107883.0|107886.0|107890.0|107897.0|107912.0|107917.0|107939.0|107949.0|107962.0|107989.0|107992.0|107993.0|107995.0|108013.0|108018.0|108026.0|108037.0|108039.0|108044.0|108047.0|108048.0|108075.0|108076.0|108079.0|108086.0|108090.0|108107.0|108116.0|108118.0|108122.0|108126.0|108136.0|108140.0|108145.0|108150.0|108155.0|108175.0|108177.0|108183.0|108187.0|108188.0|108193.0|108199.0|108209.0|108233.0|108252.0|108257.0|108263.0|108288.0|108296.0|108302.0|108308.0|108309.0|108311.0|108313.0|108320.0|108328.0|108333.0|108336.0|108338.0|108343.0|108350.0|108354.0|108366.0|108371.0|108389.0|108390.0|108392.0|108393.0|108394.0|108395.0|108414.0|108419.0|108423.0|108424.0|108427.0|108436.0|108451.0|108456.0|108459.0|108461.0|108466.0|108479.0|108509.0|108519.0|108536.0|108540.0|108552.0|108555.0|108567.0|108582.0|108588.0|108601.0|108604.0|108612.0|108618.0|108621.0|108624.0|108635.0|108652.0|108654.0|108661.0|108684.0|108692.0|108698.0|108709.0|108718.0|108726.0|108738.0|108742.0|108749.0|108757.0|108762.0|108769.0|108794.0|108804.0|108818.0|108839.0|108849.0|108852.0|108863.0|108869.0|108871.0|108877.0|108891.0|108894.0|108909.0|108912.0|108914.0|108921.0|108923.0|108927.0|108944.0|108956.0|108965.0|108973.0|108977.0|108983.0|108985.0|108993.0|109020.0|109024.0|109031.0|109042.0|109045.0|109057.0|109083.0|109098.0|109106.0|109116.0|109127.0|109128.0|109132.0|109152.0|109156.0|109158.0|109160.0|109162.0|109170.0|109191.0|109192.0|109194.0|109197.0|109200.0|109202.0|109213.0|109214.0|109217.0|109221.0|109225.0|109228.0|109236.0|109247.0|109257.0|109262.0|109272.0|109276.0|109308.0|109313.0|109344.0|109355.0|109361.0|109363.0|109365.0|109373.0|109385.0|109386.0|109396.0|109397.0|109417.0|109419.0|109427.0|109454.0|109472.0|109478.0|109488.0|109503.0|109505.0|109511.0|109516.0|109524.0|109550.0|109580.0|109592.0|109602.0|109613.0|109626.0|109633.0|109637.0|109641.0|109643.0|109644.0|109654.0|109661.0|109664.0|109667.0|109674.0|109679.0|109682.0|109689.0|109690.0|109692.0|109704.0|109711.0|109721.0|109726.0|109727.0|109736.0|109738.0|109741.0|109755.0|109761.0|109767.0|109769.0|109774.0|109798.0|109818.0|109819.0|109823.0|109830.0|109834.0|109850.0|109870.0|109881.0|109884.0|109887.0|109890.0|109892.0|109895.0|109904.0|109926.0|109995.0|109996.0|109997.0 +in.representative_income metadata_and_annual usd float 110005.0|110006.0|110018.0|110024.0|110025.0|110028.0|110045.0|110050.0|110056.0|110084.0|110093.0|110100.0|110111.0|110118.0|110121.0|110125.0|110126.0|110135.0|110136.0|110139.0|110156.0|110159.0|110165.0|110175.0|110183.0|110185.0|110206.0|110208.0|110210.0|110212.0|110227.0|110228.0|110229.0|110243.0|110251.0|110258.0|110262.0|110275.0|110279.0|110283.0|110296.0|110314.0|110319.0|110336.0|110337.0|110352.0|110380.0|110399.0|110402.0|110412.0|110413.0|110417.0|110424.0|110429.0|110431.0|110458.0|110467.0|110470.0|110523.0|110530.0|110556.0|110561.0|110568.0|110570.0|110572.0|110586.0|110587.0|110593.0|110628.0|110640.0|110642.0|110645.0|110647.0|110649.0|110659.0|110692.0|110705.0|110723.0|110733.0|110744.0|110749.0|110755.0|110766.0|110770.0|110778.0|110780.0|110783.0|110786.0|110788.0|110797.0|110801.0|110807.0|110809.0|110818.0|110823.0|110828.0|110839.0|110845.0|110860.0|110874.0|110881.0|110887.0|110889.0|110892.0|110914.0|110918.0|110923.0|110927.0|110932.0|110933.0|110945.0|110986.0|110989.0|110997.0|111003.0|111005.0|111018.0|111025.0|111029.0|111035.0|111037.0|111059.0|111081.0|111087.0|111103.0|111105.0|111116.0|111136.0|111139.0|111156.0|111168.0|111187.0|111191.0|111197.0|111210.0|111217.0|111232.0|111242.0|111247.0|111252.0|111261.0|111269.0|111282.0|111284.0|111294.0|111298.0|111300.0|111307.0|111332.0|111335.0|111343.0|111345.0|111368.0|111376.0|111419.0|111424.0|111429.0|111430.0|111431.0|111462.0|111521.0|111542.0|111549.0|111559.0|111567.0|111572.0|111574.0|111603.0|111621.0|111634.0|111639.0|111643.0|111685.0|111692.0|111704.0|111707.0|111718.0|111735.0|111740.0|111742.0|111746.0|111755.0|111757.0|111761.0|111773.0|111774.0|111778.0|111789.0|111796.0|111800.0|111828.0|111830.0|111832.0|111833.0|111841.0|111843.0|111853.0|111861.0|111882.0|111904.0|111915.0|111924.0|111925.0|111961.0|112025.0|112034.0|112035.0|112044.0|112045.0|112055.0|112076.0|112086.0|112104.0|112111.0|112121.0|112126.0|112164.0|112177.0|112207.0|112208.0|112229.0|112232.0|112247.0|112250.0|112283.0|112295.0|112305.0|112326.0|112336.0|112338.0|112345.0|112368.0|112370.0|112378.0|112412.0|112415.0|112421.0|112423.0|112428.0|112466.0|112471.0|112480.0|112496.0|112498.0|112502.0|112511.0|112526.0|112530.0|112532.0|112538.0|112550.0|112621.0|112629.0|112632.0|112641.0|112650.0|112655.0|112666.0|112693.0|112696.0|112697.0|112702.0|112704.0|112708.0|112714.0|112723.0|112752.0|112772.0|112790.0|112820.0|112821.0|112843.0|112851.0|112861.0|112874.0|112884.0|112885.0|112901.0|112911.0|112913.0|112934.0|112954.0|112964.0|112996.0|113034.0|113035.0|113046.0|113047.0|113061.0|113078.0|113128.0|113136.0|113141.0|113151.0|113159.0|113167.0|113187.0|113191.0|113195.0|113210.0|113233.0|113237.0|113238.0|113249.0|113253.0|113281.0|113288.0|113338.0|113341.0|113356.0|113369.0|113423.0|113431.0|113450.0|113463.0|113470.0|113511.0|113518.0|113539.0|113540.0|113542.0|113545.0|113551.0|113571.0|113581.0|113601.0|113614.0|113615.0|113641.0|113677.0|113679.0|113698.0|113717.0|113769.0|113774.0|113790.0|113792.0|113793.0|113796.0|113798.0|113833.0|113839.0|113842.0|113845.0|113882.0|113893.0|113908.0|113911.0|113919.0|113944.0|113946.0|113947.0|113950.0|113990.0|114002.0|114037.0|114045.0|114079.0|114097.0|114141.0|114146.0|114150.0|114182.0|114205.0|114215.0|114259.0|114284.0|114313.0|114365.0|114369.0|114376.0|114389.0|114421.0|114425.0|114449.0|114467.0|114480.0|114481.0|114490.0|114509.0|114530.0|114552.0|114594.0|114598.0|114615.0|114692.0|114709.0|114803.0|114853.0|114854.0|114859.0|114860.0|114894.0|114955.0|114967.0|115007.0|115016.0|115031.0|115056.0|115057.0|115120.0|115124.0|115136.0|115157.0|115162.0|115163.0|115178.0|115181.0|115247.0|115277.0|115298.0|115359.0|115374.0|115385.0|115394.0|115396.0|115502.0|115522.0|115561.0|115611.0|115626.0|115648.0|115717.0|115718.0|115743.0|115772.0|115783.0|115825.0|115828.0|115832.0|115894.0|115901.0|115933.0|115934.0|115943.0|115956.0|115986.0|115997.0|116042.0|116048.0|116090.0|116112.0|116141.0|116147.0|116155.0|116167.0|116197.0|116211.0|116212.0|116237.0|116244.0|116245.0|116255.0|116268.0|116308.0|116323.0|116362.0|116367.0|116369.0|116428.0|116469.0|116470.0|116475.0|116481.0|116482.0|116554.0|116555.0|116571.0|116577.0|116581.0|116583.0|116587.0|116604.0|116607.0|116657.0|116662.0|116672.0|116684.0|116712.0|116792.0|116812.0|116853.0|116864.0|116898.0|116907.0|116956.0|116975.0|117015.0|117027.0|117061.0|117124.0|117166.0|117177.0|117178.0|117188.0|117231.0|117268.0|117273.0|117328.0|117378.0|117393.0|117435.0|117447.0|117542.0|117555.0|117585.0|117588.0|117606.0|117619.0|117627.0|117637.0|117664.0|117688.0|117694.0|117720.0|117776.0|117792.0|117875.0|117879.0|117905.0|117972.0|117985.0|117987.0|117998.0|118079.0|118083.0|118086.0|118090.0|118095.0|118101.0|118116.0|118179.0|118187.0|118264.0|118273.0|118307.0|118326.0|118347.0|118348.0|118349.0|118389.0|118419.0|118432.0|118443.0|118490.0|118508.0|118538.0|118591.0|118617.0|118636.0|118668.0|118692.0|118720.0|118723.0|118733.0|118741.0|118753.0|118793.0|118813.0|118831.0|118852.0|118853.0|118862.0|118875.0|118894.0|118926.0|118945.0|118947.0|118960.0|118968.0|119030.0|119067.0|119096.0|119153.0|119175.0|119181.0|119186.0|119196.0|119197.0|119235.0|119252.0|119298.0|119308.0|119339.0|119392.0|119399.0|119442.0|119487.0|119583.0|119586.0|119601.0|119608.0|119702.0|119716.0|119797.0|119804.0|119824.0|119854.0|119904.0|119914.0|119932.0|119958.0|119968.0|120012.0|120014.0|120041.0|120061.0|120106.0|120119.0|120149.0|120164.0|120227.0|120248.0|120256.0|120268.0|120278.0|120288.0|120389.0|120391.0|120409.0|120441.0|120472.0|120473.0|120542.0|120577.0|120580.0|120597.0|120680.0|120688.0|120711.0|120813.0|120857.0|120870.0|120886.0|120890.0|120989.0|121015.0|121092.0|121116.0|121229.0|121238.0|121278.0|121280.0|121284.0|121299.0|121318.0|121337.0|121339.0|121385.0|121407.0|121444.0|121450.0|121453.0|121505.0|121514.0|121520.0|121552.0|121596.0|121608.0|121611.0|121621.0|121622.0|121702.0|121733.0|121740.0|121775.0|121804.0|121807.0|121815.0|121823.0|121918.0|121925.0|121928.0|121954.0|121970.0|121985.0|122046.0|122093.0|122123.0|122124.0|122158.0|122201.0|122227.0|122238.0|122240.0|122244.0|122309.0|122329.0|122330.0|122335.0|122413.0|122430.0|122434.0|122440.0|122485.0|122531.0|122551.0|122588.0|122611.0|122650.0|122666.0|122741.0|122743.0|122756.0|122774.0|122803.0|122834.0|122846.0|122887.0|122914.0|122935.0|122949.0|122957.0|122967.0|123015.0|123017.0|123020.0|123036.0|123040.0|123046.0|123065.0|123073.0|123080.0|123091.0|123124.0|123173.0|123178.0|123187.0|123224.0|123232.0|123238.0|123258.0|123278.0|123282.0|123354.0|123362.0|123369.0|123390.0|123447.0|123474.0|123494.0|123498.0|123541.0|123554.0|123568.0|123606.0|123658.0|123661.0|123671.0|123692.0|123769.0|123778.0|123795.0|123806.0|123816.0|123836.0|123844.0|123876.0|123877.0|123897.0|123898.0|123908.0|123929.0|123937.0|124005.0|124021.0|124026.0|124037.0|124038.0|124046.0|124084.0|124114.0|124127.0|124144.0|124146.0|124188.0|124198.0|124233.0|124248.0|124254.0|124268.0|124329.0|124338.0|124348.0|124349.0|124359.0|124413.0|124443.0|124450.0|124454.0|124496.0|124521.0|124542.0|124548.0|124578.0|124600.0|124610.0|124620.0|124628.0|124632.0|124635.0|124654.0|124660.0|124702.0|124707.0|124734.0|124740.0|124753.0|124765.0|124781.0|124845.0|124865.0|124892.0|124903.0|124909.0|124950.0|124957.0|124977.0|124994.0|125050.0|125054.0|125057.0|125075.0|125118.0|125182.0|125187.0|125194.0|125218.0|125226.0|125269.0|125274.0|125294.0|125323.0|125334.0|125346.0|125359.0|125363.0|125373.0|125382.0|125388.0|125392.0|125420.0|125424.0|125460.0|125480.0|125486.0|125498.0|125507.0|125509.0|125530.0|125561.0|125562.0|125594.0|125595.0|125598.0|125603.0|125625.0|125631.0|125642.0|125658.0|125667.0|125683.0|125692.0|125706.0|125709.0|125716.0|125730.0|125734.0|125762.0|125765.0|125767.0|125770.0|125782.0|125793.0|125803.0|125821.0|125830.0|125837.0|125853.0|125864.0|125894.0|125931.0|125946.0|125965.0|125973.0|125982.0|126012.0|126023.0|126026.0|126043.0|126054.0|126072.0|126091.0|126094.0|126123.0|126130.0|126131.0|126145.0|126147.0|126152.0|126167.0|126177.0|126198.0|126209.0|126218.0|126226.0|126229.0|126236.0|126258.0|126268.0|126302.0|126306.0|126311.0|126313.0|126325.0|126359.0|126364.0|126378.0|126384.0|126390.0|126410.0|126415.0|126437.0|126440.0|126456.0|126469.0|126478.0|126490.0|126506.0|126511.0|126521.0|126528.0|126556.0|126560.0|126569.0|126577.0|126611.0|126637.0|126652.0|126658.0|126673.0|126678.0|126690.0|126699.0|126768.0|126771.0|126776.0|126796.0|126804.0|126805.0|126806.0|126817.0|126822.0|126824.0|126825.0|126859.0|126869.0|126890.0|126903.0|126926.0|126946.0|126966.0|126999.0|127013.0|127023.0|127067.0|127074.0|127080.0|127081.0|127096.0|127101.0|127106.0|127116.0|127118.0|127126.0|127133.0|127143.0|127172.0|127177.0|127178.0|127208.0|127225.0|127228.0|127239.0|127261.0|127270.0|127280.0|127281.0|127288.0|127290.0|127309.0|127311.0|127329.0|127343.0|127358.0|127375.0|127388.0|127397.0|127399.0|127418.0 +in.representative_income metadata_and_annual usd float 127419.0|127428.0|127442.0|127477.0|127480.0|127493.0|127506.0|127517.0|127526.0|127528.0|127558.0|127560.0|127561.0|127566.0|127586.0|127618.0|127619.0|127628.0|127632.0|127633.0|127642.0|127646.0|127649.0|127654.0|127657.0|127673.0|127681.0|127682.0|127692.0|127701.0|127711.0|127713.0|127722.0|127726.0|127735.0|127740.0|127756.0|127765.0|127776.0|127794.0|127797.0|127820.0|127835.0|127884.0|127895.0|127900.0|127911.0|127915.0|127931.0|127935.0|127939.0|127941.0|127976.0|127977.0|127987.0|127992.0|127995.0|128001.0|128003.0|128016.0|128029.0|128037.0|128054.0|128116.0|128118.0|128131.0|128135.0|128144.0|128148.0|128154.0|128187.0|128191.0|128198.0|128219.0|128228.0|128240.0|128248.0|128252.0|128256.0|128263.0|128264.0|128267.0|128277.0|128283.0|128295.0|128298.0|128299.0|128304.0|128309.0|128319.0|128322.0|128333.0|128339.0|128342.0|128360.0|128363.0|128366.0|128374.0|128375.0|128379.0|128403.0|128405.0|128415.0|128440.0|128451.0|128468.0|128490.0|128503.0|128510.0|128511.0|128535.0|128545.0|128554.0|128578.0|128583.0|128591.0|128619.0|128642.0|128662.0|128683.0|128685.0|128692.0|128694.0|128706.0|128714.0|128721.0|128728.0|128735.0|128753.0|128767.0|128777.0|128792.0|128801.0|128814.0|128815.0|128818.0|128824.0|128825.0|128828.0|128844.0|128846.0|128850.0|128856.0|128862.0|128873.0|128879.0|128880.0|128881.0|128895.0|128900.0|128905.0|128911.0|128913.0|128914.0|128922.0|128926.0|128932.0|128936.0|128942.0|128953.0|128955.0|128962.0|128983.0|128985.0|128987.0|128994.0|129004.0|129019.0|129030.0|129066.0|129071.0|129082.0|129083.0|129093.0|129105.0|129116.0|129125.0|129127.0|129131.0|129137.0|129147.0|129153.0|129190.0|129210.0|129211.0|129221.0|129224.0|129231.0|129241.0|129243.0|129258.0|129259.0|129262.0|129273.0|129295.0|129299.0|129309.0|129329.0|129344.0|129354.0|129372.0|129402.0|129410.0|129416.0|129430.0|129449.0|129450.0|129451.0|129458.0|129470.0|129499.0|129506.0|129511.0|129514.0|129519.0|129522.0|129527.0|129528.0|129537.0|129549.0|129551.0|129555.0|129566.0|129587.0|129624.0|129642.0|129657.0|129678.0|129679.0|129687.0|129700.0|129701.0|129713.0|129716.0|129721.0|129727.0|129754.0|129765.0|129769.0|129775.0|129796.0|129804.0|129808.0|129810.0|129811.0|129818.0|129823.0|129829.0|129844.0|129845.0|129860.0|129875.0|129877.0|129883.0|129889.0|129908.0|129922.0|129926.0|129928.0|129932.0|129963.0|129965.0|129980.0|129983.0|129995.0|130005.0|130018.0|130026.0|130027.0|130034.0|130035.0|130056.0|130077.0|130081.0|130103.0|130113.0|130117.0|130127.0|130134.0|130138.0|130147.0|130149.0|130153.0|130156.0|130191.0|130208.0|130223.0|130233.0|130235.0|130244.0|130247.0|130250.0|130258.0|130261.0|130268.0|130276.0|130278.0|130282.0|130284.0|130293.0|130305.0|130320.0|130333.0|130338.0|130345.0|130359.0|130375.0|130379.0|130390.0|130403.0|130407.0|130413.0|130427.0|130435.0|130455.0|130467.0|130476.0|130487.0|130497.0|130508.0|130511.0|130531.0|130539.0|130543.0|130546.0|130551.0|130561.0|130575.0|130585.0|130612.0|130613.0|130618.0|130629.0|130633.0|130641.0|130645.0|130666.0|130671.0|130683.0|130685.0|130697.0|130704.0|130716.0|130726.0|130737.0|130743.0|130771.0|130791.0|130792.0|130798.0|130802.0|130809.0|130839.0|130853.0|130866.0|130886.0|130887.0|130891.0|130905.0|130931.0|130935.0|130939.0|130954.0|130965.0|130982.0|130994.0|131007.0|131011.0|131015.0|131016.0|131036.0|131047.0|131062.0|131066.0|131076.0|131088.0|131098.0|131111.0|131119.0|131139.0|131157.0|131176.0|131181.0|131197.0|131214.0|131229.0|131245.0|131246.0|131250.0|131277.0|131303.0|131323.0|131339.0|131340.0|131385.0|131389.0|131400.0|131404.0|131410.0|131424.0|131430.0|131446.0|131450.0|131458.0|131461.0|131470.0|131493.0|131508.0|131509.0|131516.0|131521.0|131552.0|131557.0|131572.0|131592.0|131602.0|131622.0|131633.0|131665.0|131666.0|131683.0|131693.0|131755.0|131766.0|131767.0|131768.0|131799.0|131818.0|131819.0|131824.0|131826.0|131847.0|131857.0|131860.0|131868.0|131871.0|131874.0|131925.0|131926.0|131930.0|131931.0|131938.0|131952.0|131991.0|132026.0|132035.0|132036.0|132046.0|132047.0|132055.0|132077.0|132078.0|132087.0|132109.0|132127.0|132131.0|132139.0|132141.0|132157.0|132177.0|132188.0|132196.0|132199.0|132206.0|132228.0|132232.0|132271.0|132284.0|132302.0|132320.0|132333.0|132336.0|132339.0|132381.0|132430.0|132459.0|132481.0|132490.0|132505.0|132531.0|132541.0|132554.0|132564.0|132571.0|132573.0|132604.0|132627.0|132628.0|132632.0|132651.0|132696.0|132725.0|132736.0|132748.0|132753.0|132758.0|132775.0|132786.0|132828.0|132834.0|132851.0|132866.0|132902.0|132910.0|132917.0|132954.0|132978.0|132986.0|133001.0|133028.0|133036.0|133057.0|133086.0|133108.0|133114.0|133133.0|133154.0|133160.0|133197.0|133204.0|133222.0|133264.0|133276.0|133297.0|133315.0|133322.0|133344.0|133365.0|133400.0|133407.0|133429.0|133430.0|133438.0|133440.0|133469.0|133491.0|133503.0|133513.0|133537.0|133541.0|133546.0|133553.0|133573.0|133623.0|133642.0|133647.0|133652.0|133654.0|133676.0|133724.0|133774.0|133776.0|133809.0|133883.0|133895.0|133925.0|133935.0|133939.0|133945.0|134086.0|134100.0|134140.0|134184.0|134186.0|134198.0|134203.0|134205.0|134214.0|134223.0|134243.0|134248.0|134278.0|134290.0|134295.0|134337.0|134347.0|134349.0|134357.0|134396.0|134398.0|134400.0|134409.0|134440.0|134462.0|134503.0|134519.0|134568.0|134576.0|134589.0|134627.0|134652.0|134673.0|134734.0|134753.0|134768.0|134769.0|134778.0|134788.0|134842.0|134885.0|134911.0|134914.0|134932.0|134955.0|134972.0|134990.0|135058.0|135070.0|135072.0|135081.0|135157.0|135167.0|135200.0|135221.0|135222.0|135223.0|135233.0|135254.0|135275.0|135319.0|135348.0|135430.0|135460.0|135469.0|135480.0|135491.0|135517.0|135533.0|135545.0|135561.0|135569.0|135599.0|135623.0|135664.0|135675.0|135707.0|135728.0|135792.0|135822.0|135833.0|135852.0|135865.0|135895.0|135898.0|135924.0|135966.0|136006.0|136031.0|136044.0|136049.0|136054.0|136221.0|136233.0|136333.0|136334.0|136355.0|136361.0|136413.0|136435.0|136463.0|136471.0|136521.0|136542.0|136571.0|136572.0|136587.0|136597.0|136650.0|136677.0|136680.0|136709.0|136758.0|136770.0|136774.0|136783.0|136793.0|136930.0|136973.0|136997.0|137004.0|137077.0|137079.0|137099.0|137140.0|137187.0|137188.0|137219.0|137222.0|137279.0|137309.0|137380.0|137416.0|137423.0|137481.0|137492.0|137509.0|137521.0|137531.0|137544.0|137566.0|137573.0|137596.0|137598.0|137663.0|137699.0|137731.0|137792.0|137795.0|137802.0|137831.0|137868.0|137879.0|137938.0|137942.0|137970.0|137986.0|138046.0|138084.0|138087.0|138111.0|138121.0|138192.0|138215.0|138260.0|138294.0|138311.0|138380.0|138390.0|138475.0|138575.0|138583.0|138592.0|138659.0|138689.0|138730.0|138732.0|138797.0|138830.0|138840.0|138955.0|138996.0|138997.0|139012.0|139057.0|139119.0|139198.0|139240.0|139333.0|139381.0|139400.0|139419.0|139430.0|139441.0|139453.0|139501.0|139555.0|139559.0|139630.0|139658.0|139677.0|139735.0|139764.0|139813.0|139818.0|139844.0|139865.0|139870.0|139947.0|140006.0|140052.0|140174.0|140245.0|140309.0|140368.0|140410.0|140450.0|140461.0|140473.0|140482.0|140484.0|140569.0|140579.0|140612.0|140622.0|140663.0|140674.0|140680.0|140690.0|140732.0|140790.0|140837.0|140885.0|140893.0|140895.0|140915.0|140943.0|141000.0|141109.0|141117.0|141205.0|141218.0|141266.0|141349.0|141464.0|141480.0|141481.0|141515.0|141521.0|141528.0|141542.0|141558.0|141619.0|141622.0|141623.0|141633.0|141654.0|141695.0|141721.0|141723.0|141739.0|141749.0|141758.0|141845.0|141896.0|141925.0|141928.0|141948.0|142018.0|142031.0|142081.0|142124.0|142157.0|142161.0|142190.0|142191.0|142211.0|142232.0|142237.0|142248.0|142266.0|142269.0|142347.0|142393.0|142406.0|142420.0|142433.0|142443.0|142451.0|142531.0|142547.0|142566.0|142615.0|142622.0|142632.0|142678.0|142688.0|142779.0|142784.0|142794.0|142814.0|142833.0|142835.0|142856.0|142876.0|142899.0|142908.0|142946.0|142984.0|143004.0|143037.0|143091.0|143105.0|143114.0|143163.0|143195.0|143216.0|143239.0|143269.0|143270.0|143340.0|143405.0|143520.0|143532.0|143643.0|143648.0|143693.0|143702.0|143713.0|143743.0|143744.0|143764.0|143770.0|143842.0|143897.0|143946.0|143949.0|143950.0|144006.0|144027.0|144057.0|144061.0|144081.0|144094.0|144135.0|144148.0|144165.0|144198.0|144219.0|144243.0|144300.0|144311.0|144351.0|144376.0|144442.0|144486.0|144533.0|144552.0|144558.0|144566.0|144567.0|144589.0|144594.0|144599.0|144602.0|144609.0|144622.0|144641.0|144643.0|144660.0|144671.0|144673.0|144692.0|144701.0|144703.0|144723.0|144754.0|144809.0|144816.0|144855.0|144868.0|144902.0|144914.0|144938.0|144945.0|144948.0|144959.0|144970.0|145002.0|145023.0|145026.0|145057.0|145075.0|145107.0|145125.0|145128.0|145130.0|145145.0|145161.0|145162.0|145172.0|145215.0|145219.0|145227.0|145228.0|145238.0|145271.0|145280.0|145323.0|145325.0|145332.0|145348.0|145373.0|145377.0|145389.0|145399.0|145461.0|145474.0|145511.0|145517.0|145537.0|145540.0|145557.0|145559.0|145569.0|145578.0|145579.0|145589.0|145609.0|145627.0|145642.0|145648.0|145649.0|145662.0|145663.0|145704.0|145734.0|145755.0|145757.0|145764.0|145775.0 +in.representative_income metadata_and_annual usd float 145827.0|145828.0|145831.0|145863.0|145865.0|145874.0|145878.0|145882.0|145883.0|145951.0|145957.0|145964.0|145966.0|145971.0|146002.0|146053.0|146067.0|146074.0|146079.0|146084.0|146101.0|146105.0|146109.0|146117.0|146123.0|146133.0|146161.0|146170.0|146179.0|146199.0|146208.0|146248.0|146261.0|146285.0|146291.0|146311.0|146327.0|146343.0|146363.0|146370.0|146375.0|146396.0|146405.0|146421.0|146464.0|146466.0|146471.0|146477.0|146481.0|146483.0|146485.0|146497.0|146501.0|146511.0|146518.0|146522.0|146525.0|146548.0|146569.0|146572.0|146580.0|146590.0|146592.0|146620.0|146631.0|146642.0|146674.0|146683.0|146706.0|146708.0|146724.0|146728.0|146744.0|146767.0|146775.0|146783.0|146786.0|146807.0|146823.0|146848.0|146905.0|146907.0|146919.0|146922.0|146946.0|146949.0|146959.0|146966.0|146976.0|147012.0|147013.0|147031.0|147042.0|147052.0|147063.0|147064.0|147085.0|147127.0|147128.0|147137.0|147147.0|147160.0|147170.0|147171.0|147178.0|147188.0|147193.0|147212.0|147213.0|147223.0|147229.0|147261.0|147268.0|147272.0|147276.0|147291.0|147309.0|147319.0|147376.0|147394.0|147430.0|147441.0|147442.0|147466.0|147489.0|147491.0|147492.0|147498.0|147516.0|147550.0|147560.0|147562.0|147571.0|147582.0|147592.0|147601.0|147602.0|147642.0|147643.0|147645.0|147646.0|147673.0|147685.0|147701.0|147703.0|147708.0|147729.0|147730.0|147734.0|147750.0|147764.0|147765.0|147784.0|147803.0|147809.0|147814.0|147817.0|147818.0|147825.0|147829.0|147858.0|147885.0|147888.0|147898.0|147900.0|147907.0|147921.0|147926.0|147936.0|147942.0|147943.0|147949.0|147954.0|147961.0|147966.0|147967.0|147972.0|148014.0|148016.0|148017.0|148024.0|148027.0|148046.0|148066.0|148068.0|148071.0|148077.0|148085.0|148087.0|148107.0|148118.0|148132.0|148137.0|148143.0|148158.0|148173.0|148187.0|148188.0|148199.0|148240.0|148243.0|148247.0|148261.0|148262.0|148265.0|148278.0|148288.0|148317.0|148332.0|148345.0|148348.0|148350.0|148383.0|148394.0|148412.0|148414.0|148415.0|148421.0|148435.0|148467.0|148471.0|148478.0|148481.0|148482.0|148485.0|148491.0|148512.0|148549.0|148552.0|148565.0|148566.0|148567.0|148572.0|148584.0|148592.0|148594.0|148623.0|148657.0|148668.0|148673.0|148684.0|148689.0|148693.0|148699.0|148706.0|148713.0|148721.0|148724.0|148738.0|148752.0|148763.0|148798.0|148805.0|148815.0|148835.0|148837.0|148838.0|148845.0|148847.0|148849.0|148865.0|148873.0|148896.0|148911.0|148918.0|148941.0|148943.0|148946.0|148973.0|149005.0|149027.0|149041.0|149047.0|149061.0|149079.0|149087.0|149097.0|149105.0|149109.0|149115.0|149121.0|149124.0|149126.0|149148.0|149198.0|149199.0|149209.0|149222.0|149226.0|149231.0|149256.0|149259.0|149263.0|149266.0|149272.0|149284.0|149292.0|149296.0|149316.0|149332.0|149341.0|149349.0|149386.0|149399.0|149400.0|149406.0|149438.0|149461.0|149501.0|149516.0|149549.0|149554.0|149556.0|149562.0|149563.0|149564.0|149583.0|149586.0|149591.0|149592.0|149596.0|149606.0|149622.0|149639.0|149653.0|149657.0|149664.0|149673.0|149699.0|149705.0|149710.0|149715.0|149724.0|149736.0|149746.0|149754.0|149764.0|149785.0|149794.0|149807.0|149808.0|149819.0|149830.0|149855.0|149864.0|149892.0|149906.0|149910.0|149912.0|149915.0|149965.0|149984.0|150007.0|150047.0|150057.0|150059.0|150068.0|150071.0|150077.0|150092.0|150108.0|150118.0|150122.0|150132.0|150176.0|150179.0|150190.0|150191.0|150197.0|150229.0|150284.0|150287.0|150292.0|150302.0|150304.0|150310.0|150315.0|150320.0|150336.0|150345.0|150358.0|150375.0|150378.0|150387.0|150391.0|150402.0|150406.0|150411.0|150412.0|150413.0|150423.0|150471.0|150488.0|150497.0|150509.0|150510.0|150512.0|150531.0|150541.0|150551.0|150592.0|150597.0|150602.0|150609.0|150613.0|150617.0|150619.0|150623.0|150643.0|150650.0|150660.0|150714.0|150731.0|150734.0|150752.0|150766.0|150774.0|150812.0|150820.0|150826.0|150833.0|150844.0|150861.0|150879.0|150889.0|150892.0|150895.0|150914.0|150920.0|150953.0|150956.0|150959.0|151019.0|151050.0|151051.0|151073.0|151079.0|151082.0|151104.0|151125.0|151141.0|151158.0|151165.0|151196.0|151211.0|151217.0|151230.0|151249.0|151252.0|151266.0|151267.0|151270.0|151277.0|151287.0|151294.0|151298.0|151314.0|151324.0|151331.0|151346.0|151352.0|151361.0|151363.0|151365.0|151367.0|151370.0|151374.0|151394.0|151410.0|151417.0|151442.0|151445.0|151460.0|151475.0|151482.0|151485.0|151494.0|151514.0|151521.0|151522.0|151526.0|151531.0|151532.0|151536.0|151562.0|151568.0|151571.0|151572.0|151592.0|151600.0|151611.0|151623.0|151633.0|151637.0|151654.0|151663.0|151683.0|151698.0|151724.0|151733.0|151734.0|151747.0|151768.0|151779.0|151786.0|151806.0|151808.0|151825.0|151839.0|151860.0|151881.0|151885.0|151887.0|151895.0|151904.0|151914.0|151924.0|151952.0|151969.0|151980.0|151985.0|152007.0|152036.0|152044.0|152054.0|152071.0|152074.0|152077.0|152083.0|152085.0|152130.0|152160.0|152167.0|152178.0|152180.0|152190.0|152206.0|152215.0|152229.0|152233.0|152269.0|152270.0|152300.0|152316.0|152317.0|152322.0|152330.0|152354.0|152357.0|152378.0|152387.0|152449.0|152454.0|152463.0|152470.0|152472.0|152481.0|152496.0|152532.0|152559.0|152562.0|152569.0|152570.0|152592.0|152603.0|152633.0|152645.0|152646.0|152656.0|152663.0|152666.0|152671.0|152692.0|152717.0|152759.0|152774.0|152779.0|152812.0|152835.0|152838.0|152843.0|152861.0|152919.0|152936.0|152939.0|152964.0|152967.0|152977.0|152986.0|152994.0|153006.0|153013.0|153037.0|153074.0|153076.0|153088.0|153108.0|153120.0|153128.0|153145.0|153172.0|153191.0|153192.0|153235.0|153239.0|153273.0|153287.0|153288.0|153290.0|153319.0|153342.0|153357.0|153377.0|153436.0|153449.0|153450.0|153471.0|153483.0|153507.0|153535.0|153542.0|153564.0|153582.0|153593.0|153604.0|153611.0|153633.0|153687.0|153697.0|153709.0|153718.0|153719.0|153744.0|153761.0|153789.0|153805.0|153815.0|153824.0|153845.0|153856.0|153859.0|153865.0|153879.0|153891.0|153896.0|153902.0|153932.0|153944.0|153946.0|153962.0|153966.0|153996.0|154011.0|154060.0|154066.0|154067.0|154068.0|154075.0|154082.0|154099.0|154141.0|154178.0|154181.0|154231.0|154249.0|154255.0|154264.0|154265.0|154289.0|154291.0|154342.0|154361.0|154379.0|154394.0|154404.0|154408.0|154437.0|154453.0|154469.0|154475.0|154486.0|154500.0|154502.0|154507.0|154522.0|154552.0|154561.0|154577.0|154582.0|154615.0|154626.0|154637.0|154658.0|154663.0|154677.0|154711.0|154754.0|154792.0|154831.0|154856.0|154861.0|154872.0|154896.0|154899.0|154921.0|154932.0|154940.0|154956.0|155006.0|155048.0|155057.0|155079.0|155134.0|155156.0|155158.0|155178.0|155188.0|155189.0|155221.0|155234.0|155238.0|155259.0|155263.0|155312.0|155337.0|155344.0|155361.0|155370.0|155429.0|155439.0|155449.0|155461.0|155479.0|155489.0|155542.0|155620.0|155641.0|155646.0|155650.0|155659.0|155696.0|155698.0|155731.0|155757.0|155766.0|155780.0|155804.0|155871.0|155966.0|155973.0|156020.0|156047.0|156058.0|156067.0|156079.0|156082.0|156092.0|156128.0|156162.0|156187.0|156197.0|156236.0|156265.0|156269.0|156292.0|156398.0|156402.0|156453.0|156471.0|156504.0|156509.0|156533.0|156535.0|156572.0|156574.0|156616.0|156623.0|156668.0|156673.0|156698.0|156723.0|156775.0|156776.0|156781.0|156840.0|156925.0|156982.0|156992.0|157003.0|157031.0|157046.0|157078.0|157089.0|157090.0|157100.0|157137.0|157145.0|157147.0|157179.0|157193.0|157208.0|157229.0|157260.0|157280.0|157317.0|157368.0|157371.0|157425.0|157472.0|157503.0|157547.0|157558.0|157583.0|157587.0|157641.0|157748.0|157750.0|157769.0|157797.0|157908.0|157915.0|157964.0|157986.0|158019.0|158189.0|158190.0|158203.0|158227.0|158289.0|158290.0|158297.0|158328.0|158333.0|158402.0|158431.0|158497.0|158505.0|158534.0|158593.0|158613.0|158638.0|158694.0|158721.0|158740.0|158741.0|158763.0|158795.0|158823.0|158870.0|158947.0|158961.0|158967.0|159035.0|159045.0|159050.0|159085.0|159098.0|159142.0|159218.0|159300.0|159407.0|159408.0|159462.0|159477.0|159552.0|159566.0|159622.0|159668.0|159742.0|159771.0|159802.0|159914.0|160007.0|160018.0|160089.0|160108.0|160158.0|160185.0|160260.0|160288.0|160341.0|160390.0|160411.0|160450.0|160511.0|160558.0|160588.0|160616.0|160666.0|160695.0|160698.0|160700.0|160803.0|160916.0|160932.0|160933.0|161009.0|161018.0|161044.0|161118.0|161124.0|161207.0|161216.0|161232.0|161320.0|161340.0|161354.0|161360.0|161447.0|161458.0|161461.0|161500.0|161522.0|161525.0|161623.0|161628.0|161661.0|161704.0|161734.0|161783.0|161825.0|161830.0|161835.0|161854.0|161876.0|161897.0|161927.0|161959.0|162027.0|162066.0|162072.0|162082.0|162092.0|162125.0|162136.0|162179.0|162199.0|162211.0|162229.0|162247.0|162280.0|162287.0|162304.0|162313.0|162330.0|162351.0|162367.0|162395.0|162409.0|162413.0|162449.0|162452.0|162454.0|162474.0|162503.0|162520.0|162556.0|162610.0|162628.0|162718.0|162719.0|162735.0|162743.0|162763.0|162831.0|162842.0|162935.0|162937.0|162970.0|163042.0|163138.0|163164.0|163165.0|163175.0|163227.0|163253.0|163273.0|163279.0|163293.0|163314.0|163347.0|163367.0|163382.0|163425.0|163475.0|163486.0|163507.0|163516.0|163537.0|163569.0|163623.0|163643.0|163675.0|163691.0|163692.0|163694.0|163745.0|163770.0|163780.0|163794.0 +in.representative_income metadata_and_annual usd float 163809.0|163907.0|163915.0|163918.0|163940.0|164001.0|164002.0|164023.0|164032.0|164079.0|164097.0|164104.0|164118.0|164130.0|164140.0|164149.0|164179.0|164185.0|164235.0|164238.0|164310.0|164338.0|164343.0|164345.0|164413.0|164423.0|164450.0|164465.0|164517.0|164550.0|164561.0|164582.0|164620.0|164654.0|164656.0|164663.0|164692.0|164709.0|164718.0|164722.0|164740.0|164765.0|164772.0|164775.0|164805.0|164835.0|164864.0|164880.0|164903.0|164929.0|164956.0|164957.0|164987.0|165011.0|165022.0|165032.0|165088.0|165104.0|165108.0|165113.0|165159.0|165171.0|165208.0|165228.0|165240.0|165257.0|165280.0|165311.0|165313.0|165341.0|165355.0|165361.0|165383.0|165419.0|165445.0|165468.0|165472.0|165499.0|165521.0|165526.0|165527.0|165548.0|165563.0|165580.0|165589.0|165590.0|165604.0|165616.0|165623.0|165636.0|165657.0|165678.0|165740.0|165744.0|165755.0|165770.0|165785.0|165840.0|165846.0|165848.0|165852.0|165858.0|165866.0|165868.0|165916.0|165930.0|165961.0|165995.0|166019.0|166064.0|166074.0|166106.0|166167.0|166200.0|166202.0|166206.0|166227.0|166229.0|166233.0|166259.0|166276.0|166277.0|166311.0|166320.0|166338.0|166364.0|166371.0|166393.0|166401.0|166417.0|166418.0|166421.0|166424.0|166431.0|166440.0|166469.0|166476.0|166500.0|166511.0|166523.0|166545.0|166562.0|166579.0|166600.0|166608.0|166640.0|166683.0|166684.0|166695.0|166698.0|166706.0|166707.0|166716.0|166733.0|166734.0|166786.0|166796.0|166806.0|166814.0|166819.0|166825.0|166876.0|166885.0|166888.0|166920.0|166921.0|166933.0|166947.0|166977.0|166987.0|167027.0|167029.0|167052.0|167078.0|167115.0|167127.0|167147.0|167149.0|167155.0|167176.0|167179.0|167198.0|167209.0|167218.0|167246.0|167250.0|167257.0|167275.0|167300.0|167311.0|167319.0|167322.0|167350.0|167397.0|167405.0|167421.0|167458.0|167472.0|167473.0|167477.0|167482.0|167490.0|167501.0|167505.0|167514.0|167516.0|167523.0|167526.0|167552.0|167565.0|167570.0|167577.0|167580.0|167581.0|167583.0|167592.0|167603.0|167611.0|167644.0|167646.0|167651.0|167662.0|167673.0|167677.0|167684.0|167704.0|167724.0|167735.0|167769.0|167776.0|167781.0|167808.0|167817.0|167823.0|167836.0|167838.0|167844.0|167862.0|167869.0|167876.0|167883.0|167900.0|167921.0|167931.0|167935.0|167959.0|167973.0|167988.0|167991.0|167999.0|168009.0|168030.0|168049.0|168055.0|168092.0|168096.0|168102.0|168104.0|168121.0|168136.0|168139.0|168157.0|168213.0|168218.0|168220.0|168230.0|168240.0|168272.0|168273.0|168281.0|168290.0|168306.0|168315.0|168326.0|168328.0|168329.0|168351.0|168359.0|168391.0|168392.0|168402.0|168446.0|168447.0|168457.0|168462.0|168478.0|168532.0|168536.0|168537.0|168539.0|168542.0|168553.0|168573.0|168586.0|168592.0|168593.0|168596.0|168607.0|168618.0|168624.0|168639.0|168640.0|168683.0|168694.0|168703.0|168704.0|168705.0|168716.0|168737.0|168747.0|168765.0|168767.0|168768.0|168769.0|168778.0|168780.0|168787.0|168795.0|168797.0|168800.0|168823.0|168842.0|168849.0|168882.0|168895.0|168899.0|168906.0|168907.0|168915.0|168920.0|168927.0|168959.0|168960.0|168972.0|168973.0|168985.0|168997.0|169001.0|169056.0|169058.0|169068.0|169093.0|169118.0|169138.0|169169.0|169177.0|169179.0|169189.0|169199.0|169209.0|169229.0|169241.0|169269.0|169271.0|169293.0|169300.0|169317.0|169343.0|169347.0|169369.0|169370.0|169385.0|169391.0|169411.0|169412.0|169452.0|169498.0|169501.0|169502.0|169523.0|169528.0|169571.0|169603.0|169612.0|169623.0|169626.0|169633.0|169638.0|169642.0|169648.0|169664.0|169674.0|169686.0|169688.0|169699.0|169707.0|169746.0|169748.0|169749.0|169755.0|169759.0|169788.0|169822.0|169823.0|169828.0|169854.0|169858.0|169880.0|169897.0|169903.0|169906.0|169912.0|169916.0|169927.0|169928.0|169957.0|169961.0|169962.0|169977.0|169991.0|170007.0|170022.0|170035.0|170058.0|170066.0|170088.0|170099.0|170108.0|170127.0|170141.0|170159.0|170161.0|170174.0|170175.0|170176.0|170178.0|170185.0|170210.0|170213.0|170221.0|170224.0|170240.0|170241.0|170250.0|170256.0|170260.0|170272.0|170282.0|170292.0|170304.0|170319.0|170324.0|170328.0|170363.0|170371.0|170411.0|170444.0|170496.0|170498.0|170518.0|170551.0|170569.0|170593.0|170603.0|170606.0|170625.0|170635.0|170682.0|170706.0|170711.0|170721.0|170732.0|170787.0|170801.0|170816.0|170840.0|170846.0|170852.0|170878.0|170891.0|170901.0|170917.0|170927.0|170930.0|170931.0|170941.0|170967.0|170973.0|170984.0|171057.0|171067.0|171142.0|171146.0|171163.0|171179.0|171188.0|171204.0|171241.0|171254.0|171268.0|171282.0|171324.0|171334.0|171354.0|171355.0|171373.0|171391.0|171398.0|171422.0|171427.0|171430.0|171436.0|171448.0|171449.0|171470.0|171523.0|171537.0|171551.0|171563.0|171569.0|171573.0|171579.0|171634.0|171644.0|171645.0|171654.0|171690.0|171698.0|171738.0|171763.0|171774.0|171803.0|171806.0|171826.0|171848.0|171849.0|171861.0|171870.0|171873.0|171876.0|171880.0|171888.0|171903.0|171911.0|171913.0|171927.0|171928.0|171940.0|171957.0|171964.0|171999.0|172011.0|172042.0|172043.0|172046.0|172048.0|172054.0|172059.0|172078.0|172111.0|172119.0|172129.0|172150.0|172183.0|172217.0|172230.0|172245.0|172253.0|172356.0|172396.0|172411.0|172428.0|172432.0|172458.0|172513.0|172587.0|172611.0|172649.0|172659.0|172665.0|172675.0|172717.0|172755.0|172769.0|172785.0|172797.0|172799.0|172812.0|172836.0|172850.0|172875.0|172886.0|172897.0|172932.0|172947.0|172954.0|172956.0|172976.0|172983.0|173004.0|173038.0|173061.0|173082.0|173092.0|173147.0|173166.0|173187.0|173200.0|173240.0|173255.0|173271.0|173286.0|173308.0|173325.0|173416.0|173456.0|173523.0|173543.0|173577.0|173598.0|173644.0|173664.0|173674.0|173684.0|173697.0|173716.0|173737.0|173739.0|173792.0|173795.0|173800.0|173896.0|173904.0|173913.0|173934.0|173944.0|173947.0|173956.0|173960.0|173983.0|174006.0|174031.0|174039.0|174096.0|174116.0|174126.0|174183.0|174328.0|174336.0|174390.0|174419.0|174432.0|174436.0|174457.0|174496.0|174522.0|174537.0|174610.0|174642.0|174654.0|174749.0|174755.0|174757.0|174759.0|174856.0|174865.0|174896.0|174928.0|174935.0|174959.0|174993.0|175025.0|175033.0|175058.0|175085.0|175140.0|175144.0|175149.0|175159.0|175187.0|175260.0|175360.0|175361.0|175381.0|175402.0|175442.0|175450.0|175462.0|175469.0|175487.0|175517.0|175554.0|175563.0|175577.0|175605.0|175617.0|175656.0|175664.0|175695.0|175723.0|175793.0|175806.0|175831.0|175863.0|175866.0|175938.0|175947.0|175967.0|176008.0|176014.0|176046.0|176062.0|176119.0|176121.0|176153.0|176181.0|176225.0|176260.0|176275.0|176304.0|176367.0|176409.0|176430.0|176441.0|176475.0|176482.0|176487.0|176541.0|176583.0|176585.0|176647.0|176765.0|176790.0|176857.0|176873.0|176876.0|176990.0|177119.0|177141.0|177173.0|177179.0|177200.0|177206.0|177410.0|177441.0|177482.0|177521.0|177616.0|177737.0|177954.0|177988.0|178018.0|178085.0|178123.0|178132.0|178235.0|178291.0|178331.0|178334.0|178392.0|178408.0|178418.0|178439.0|178441.0|178565.0|178601.0|178678.0|178729.0|178738.0|178761.0|178833.0|178854.0|178858.0|178926.0|178998.0|179051.0|179072.0|179163.0|179178.0|179200.0|179250.0|179267.0|179402.0|179481.0|179504.0|179588.0|179679.0|179726.0|179790.0|179803.0|179846.0|179910.0|179916.0|179989.0|180006.0|180114.0|180124.0|180232.0|180298.0|180316.0|180339.0|180401.0|180439.0|180513.0|180607.0|180628.0|180634.0|180654.0|180660.0|180715.0|180759.0|180816.0|180865.0|180978.0|180984.0|181020.0|181076.0|181087.0|181128.0|181220.0|181321.0|181422.0|181456.0|181551.0|181725.0|181742.0|181814.0|181826.0|181845.0|181846.0|181856.0|181886.0|181927.0|181948.0|181949.0|181961.0|181968.0|182028.0|182057.0|182059.0|182167.0|182257.0|182275.0|182331.0|182342.0|182432.0|182491.0|182552.0|182587.0|182599.0|182634.0|182671.0|182729.0|182763.0|182809.0|182836.0|182846.0|182873.0|182916.0|182924.0|182937.0|182974.0|182980.0|183033.0|183073.0|183079.0|183080.0|183139.0|183206.0|183240.0|183244.0|183341.0|183378.0|183392.0|183442.0|183453.0|183501.0|183516.0|183533.0|183544.0|183559.0|183560.0|183592.0|183601.0|183630.0|183637.0|183644.0|183665.0|183667.0|183680.0|183702.0|183745.0|183774.0|183784.0|183788.0|183805.0|183809.0|183825.0|183846.0|183856.0|183877.0|183882.0|183896.0|183922.0|183923.0|183947.0|183968.0|184004.0|184011.0|184096.0|184099.0|184112.0|184114.0|184149.0|184150.0|184200.0|184204.0|184218.0|184221.0|184240.0|184250.0|184293.0|184311.0|184321.0|184419.0|184423.0|184436.0|184442.0|184451.0|184491.0|184526.0|184527.0|184553.0|184556.0|184582.0|184584.0|184614.0|184652.0|184655.0|184676.0|184687.0|184733.0|184760.0|184762.0|184766.0|184795.0|184798.0|184803.0|184848.0|184868.0|184869.0|184873.0|184887.0|184890.0|184955.0|184978.0|185031.0|185042.0|185057.0|185059.0|185083.0|185085.0|185095.0|185109.0|185117.0|185119.0|185146.0|185160.0|185169.0|185187.0|185189.0|185249.0|185290.0|185301.0|185311.0|185399.0|185456.0|185463.0|185484.0|185488.0|185492.0|185564.0|185611.0|185624.0|185642.0|185653.0|185661.0|185665.0|185682.0|185707.0|185716.0|185750.0|185765.0|185766.0|185811.0|185816.0|185821.0|185841.0|185842.0|185847.0|185852.0|185867.0|185868.0|185874.0|185875.0|185906.0|185921.0|185927.0|185928.0|185949.0 +in.representative_income metadata_and_annual usd float 185971.0|185979.0|186022.0|186028.0|186029.0|186053.0|186057.0|186075.0|186089.0|186099.0|186119.0|186129.0|186133.0|186136.0|186138.0|186165.0|186208.0|186230.0|186239.0|186254.0|186271.0|186273.0|186275.0|186290.0|186308.0|186312.0|186338.0|186350.0|186372.0|186384.0|186402.0|186422.0|186454.0|186458.0|186473.0|186479.0|186497.0|186507.0|186521.0|186559.0|186565.0|186574.0|186598.0|186619.0|186673.0|186685.0|186687.0|186693.0|186771.0|186774.0|186781.0|186835.0|186899.0|186941.0|186963.0|187005.0|187008.0|187029.0|187079.0|187087.0|187099.0|187102.0|187106.0|187109.0|187111.0|187137.0|187159.0|187180.0|187190.0|187191.0|187207.0|187210.0|187245.0|187281.0|187312.0|187317.0|187354.0|187362.0|187386.0|187412.0|187429.0|187467.0|187483.0|187503.0|187509.0|187510.0|187516.0|187531.0|187567.0|187570.0|187596.0|187602.0|187614.0|187622.0|187628.0|187720.0|187724.0|187732.0|187735.0|187746.0|187807.0|187825.0|187827.0|187870.0|187878.0|187883.0|187904.0|187913.0|187927.0|187931.0|187937.0|187942.0|187982.0|188002.0|188015.0|188018.0|188023.0|188037.0|188061.0|188068.0|188079.0|188089.0|188099.0|188109.0|188112.0|188122.0|188137.0|188140.0|188142.0|188147.0|188163.0|188165.0|188175.0|188190.0|188194.0|188200.0|188205.0|188218.0|188223.0|188240.0|188241.0|188247.0|188251.0|188254.0|188261.0|188283.0|188291.0|188326.0|188331.0|188336.0|188342.0|188343.0|188352.0|188369.0|188391.0|188392.0|188395.0|188414.0|188432.0|188434.0|188446.0|188453.0|188458.0|188461.0|188468.0|188493.0|188498.0|188502.0|188533.0|188542.0|188550.0|188556.0|188563.0|188594.0|188596.0|188605.0|188621.0|188624.0|188627.0|188634.0|188650.0|188653.0|188669.0|188680.0|188695.0|188704.0|188712.0|188742.0|188744.0|188756.0|188758.0|188766.0|188775.0|188785.0|188790.0|188796.0|188809.0|188818.0|188820.0|188827.0|188842.0|188859.0|188866.0|188880.0|188897.0|188899.0|188907.0|188911.0|188917.0|188927.0|188938.0|188958.0|188959.0|188962.0|188972.0|188975.0|188981.0|188983.0|188985.0|188998.0|189008.0|189014.0|189035.0|189049.0|189065.0|189083.0|189084.0|189089.0|189090.0|189093.0|189099.0|189101.0|189116.0|189119.0|189126.0|189127.0|189136.0|189141.0|189147.0|189150.0|189169.0|189175.0|189190.0|189197.0|189200.0|189220.0|189228.0|189230.0|189249.0|189266.0|189270.0|189272.0|189292.0|189298.0|189301.0|189302.0|189303.0|189324.0|189333.0|189354.0|189356.0|189357.0|189374.0|189402.0|189406.0|189407.0|189421.0|189426.0|189428.0|189432.0|189456.0|189464.0|189475.0|189478.0|189503.0|189507.0|189513.0|189523.0|189542.0|189568.0|189571.0|189581.0|189603.0|189604.0|189618.0|189622.0|189635.0|189645.0|189678.0|189684.0|189705.0|189731.0|189732.0|189745.0|189766.0|189786.0|189788.0|189806.0|189820.0|189830.0|189839.0|189840.0|189847.0|189850.0|189868.0|189871.0|189872.0|189882.0|189890.0|189891.0|189892.0|189893.0|189894.0|189901.0|189907.0|189911.0|189935.0|189947.0|189958.0|189968.0|189983.0|189993.0|189997.0|190001.0|190008.0|190019.0|190030.0|190033.0|190040.0|190055.0|190059.0|190079.0|190085.0|190092.0|190093.0|190097.0|190104.0|190108.0|190109.0|190112.0|190119.0|190120.0|190129.0|190140.0|190145.0|190151.0|190160.0|190163.0|190172.0|190180.0|190189.0|190200.0|190210.0|190215.0|190217.0|190218.0|190231.0|190241.0|190251.0|190252.0|190258.0|190262.0|190269.0|190271.0|190303.0|190311.0|190313.0|190322.0|190324.0|190325.0|190344.0|190356.0|190365.0|190378.0|190407.0|190412.0|190430.0|190433.0|190454.0|190462.0|190472.0|190486.0|190487.0|190489.0|190513.0|190520.0|190525.0|190530.0|190536.0|190537.0|190542.0|190543.0|190546.0|190568.0|190595.0|190612.0|190614.0|190620.0|190645.0|190664.0|190673.0|190698.0|190701.0|190703.0|190704.0|190715.0|190716.0|190719.0|190736.0|190752.0|190757.0|190767.0|190778.0|190784.0|190795.0|190811.0|190816.0|190819.0|190859.0|190868.0|190871.0|190883.0|190904.0|190917.0|190919.0|190922.0|190937.0|190948.0|190958.0|190966.0|190977.0|190984.0|190989.0|191018.0|191025.0|191027.0|191031.0|191036.0|191046.0|191050.0|191054.0|191066.0|191074.0|191075.0|191095.0|191105.0|191119.0|191128.0|191135.0|191147.0|191160.0|191167.0|191170.0|191182.0|191200.0|191213.0|191220.0|191231.0|191243.0|191244.0|191245.0|191266.0|191275.0|191283.0|191289.0|191301.0|191306.0|191310.0|191321.0|191327.0|191332.0|191335.0|191342.0|191352.0|191384.0|191396.0|191411.0|191418.0|191422.0|191438.0|191445.0|191460.0|191475.0|191478.0|191503.0|191513.0|191516.0|191523.0|191540.0|191552.0|191567.0|191572.0|191611.0|191622.0|191625.0|191631.0|191644.0|191664.0|191675.0|191718.0|191726.0|191757.0|191761.0|191767.0|191776.0|191783.0|191801.0|191826.0|191827.0|191850.0|191857.0|191879.0|191881.0|191891.0|191895.0|191928.0|191932.0|191933.0|191938.0|191948.0|191954.0|191962.0|191974.0|191998.0|191999.0|192008.0|192018.0|192029.0|192044.0|192057.0|192069.0|192087.0|192097.0|192108.0|192109.0|192111.0|192130.0|192147.0|192149.0|192159.0|192181.0|192216.0|192231.0|192242.0|192254.0|192255.0|192263.0|192276.0|192294.0|192301.0|192308.0|192324.0|192332.0|192335.0|192345.0|192361.0|192362.0|192366.0|192378.0|192382.0|192413.0|192432.0|192433.0|192466.0|192469.0|192481.0|192518.0|192534.0|192540.0|192544.0|192571.0|192573.0|192576.0|192584.0|192587.0|192603.0|192624.0|192635.0|192645.0|192648.0|192658.0|192675.0|192676.0|192684.0|192686.0|192696.0|192716.0|192731.0|192736.0|192755.0|192778.0|192782.0|192792.0|192814.0|192840.0|192863.0|192867.0|192882.0|192887.0|192888.0|192899.0|192902.0|192933.0|192938.0|192972.0|192978.0|192985.0|192993.0|192995.0|193007.0|193039.0|193077.0|193080.0|193099.0|193113.0|193140.0|193151.0|193188.0|193190.0|193191.0|193204.0|193221.0|193241.0|193242.0|193253.0|193281.0|193294.0|193309.0|193328.0|193342.0|193397.0|193404.0|193415.0|193436.0|193443.0|193447.0|193483.0|193490.0|193501.0|193503.0|193512.0|193520.0|193543.0|193544.0|193590.0|193620.0|193626.0|193645.0|193650.0|193704.0|193707.0|193710.0|193729.0|193731.0|193746.0|193750.0|193757.0|193810.0|193837.0|193865.0|193913.0|193942.0|193944.0|193948.0|193972.0|193978.0|193987.0|194016.0|194047.0|194049.0|194052.0|194080.0|194120.0|194122.0|194153.0|194160.0|194187.0|194223.0|194225.0|194251.0|194253.0|194259.0|194268.0|194294.0|194303.0|194311.0|194325.0|194342.0|194348.0|194352.0|194355.0|194376.0|194402.0|194427.0|194429.0|194444.0|194453.0|194469.0|194485.0|194539.0|194554.0|194562.0|194575.0|194593.0|194595.0|194617.0|194625.0|194680.0|194701.0|194705.0|194723.0|194739.0|194756.0|194794.0|194797.0|194809.0|194831.0|194841.0|194857.0|194892.0|194917.0|194938.0|194944.0|194949.0|194958.0|194965.0|195025.0|195039.0|195046.0|195059.0|195099.0|195102.0|195133.0|195151.0|195160.0|195181.0|195208.0|195240.0|195313.0|195342.0|195349.0|195362.0|195367.0|195418.0|195457.0|195460.0|195461.0|195463.0|195486.0|195524.0|195563.0|195564.0|195565.0|195576.0|195583.0|195584.0|195595.0|195604.0|195619.0|195630.0|195667.0|195673.0|195735.0|195738.0|195743.0|195766.0|195770.0|195840.0|195946.0|195968.0|195976.0|195997.0|196012.0|196069.0|196079.0|196119.0|196157.0|196182.0|196199.0|196234.0|196271.0|196272.0|196322.0|196323.0|196394.0|196429.0|196441.0|196473.0|196491.0|196537.0|196578.0|196595.0|196612.0|196626.0|196645.0|196656.0|196675.0|196684.0|196776.0|196801.0|196851.0|196862.0|196877.0|196900.0|196978.0|196987.0|197000.0|197008.0|197078.0|197079.0|197085.0|197106.0|197180.0|197183.0|197186.0|197211.0|197214.0|197240.0|197281.0|197317.0|197382.0|197423.0|197440.0|197483.0|197510.0|197514.0|197584.0|197617.0|197622.0|197687.0|197726.0|197729.0|197786.0|197854.0|197944.0|197949.0|197988.0|198039.0|198059.0|198089.0|198158.0|198266.0|198276.0|198291.0|198373.0|198452.0|198481.0|198555.0|198589.0|198691.0|198695.0|198782.0|198803.0|198806.0|198914.0|198967.0|198999.0|199004.0|199018.0|199071.0|199201.0|199232.0|199302.0|199321.0|199373.0|199379.0|199426.0|199455.0|199483.0|199504.0|199586.0|199605.0|199662.0|199690.0|199742.0|199768.0|199779.0|199876.0|199887.0|199908.0|199994.0|200009.0|200102.0|200185.0|200211.0|200305.0|200319.0|200375.0|200413.0|200514.0|200586.0|200643.0|200735.0|200817.0|200843.0|200860.0|200864.0|200902.0|200968.0|201019.0|201133.0|201221.0|201272.0|201430.0|201507.0|201524.0|201609.0|201616.0|201649.0|201809.0|201827.0|201852.0|201856.0|201916.0|201963.0|202029.0|202048.0|202130.0|202156.0|202165.0|202168.0|202231.0|202345.0|202371.0|202393.0|202480.0|202484.0|202485.0|202534.0|202696.0|202785.0|202793.0|202882.0|202886.0|202887.0|202906.0|202912.0|202989.0|203039.0|203128.0|203196.0|203237.0|203275.0|203342.0|203539.0|203544.0|203605.0|203668.0|203712.0|203722.0|203740.0|203750.0|203856.0|203878.0|203884.0|203955.0|203961.0|203993.0|204049.0|204101.0|204170.0|204209.0|204220.0|204227.0|204277.0|204317.0|204425.0|204453.0|204478.0|204554.0|204594.0|204625.0|204641.0|204699.0|204749.0|204756.0|204846.0|204857.0|204879.0|205016.0|205029.0|205059.0|205226.0|205244.0|205259.0|205261.0|205289.0|205332.0|205362.0|205505.0|205542.0|205565.0|205649.0|205672.0|205775.0|205807.0|205830.0|205859.0|205969.0|206070.0 +in.representative_income metadata_and_annual usd float 206102.0|206175.0|206210.0|206291.0|206370.0|206393.0|206474.0|206478.0|206492.0|206497.0|206586.0|206650.0|206666.0|206676.0|206703.0|206746.0|206802.0|206807.0|206878.0|206914.0|206961.0|207029.0|207080.0|207175.0|207245.0|207283.0|207322.0|207332.0|207391.0|207441.0|207450.0|207498.0|207528.0|207547.0|207558.0|207605.0|207612.0|207686.0|207712.0|207757.0|207787.0|207838.0|207888.0|207968.0|208035.0|208045.0|208090.0|208180.0|208249.0|208354.0|208390.0|208421.0|208530.0|208559.0|208571.0|208595.0|208601.0|208638.0|208656.0|208679.0|208684.0|208785.0|208797.0|208812.0|208869.0|208875.0|209001.0|209039.0|209100.0|209179.0|209234.0|209287.0|209322.0|209343.0|209385.0|209550.0|209555.0|209569.0|209592.0|209605.0|209612.0|209694.0|209706.0|209752.0|209797.0|209804.0|209859.0|209866.0|209908.0|209935.0|210004.0|210009.0|210043.0|210110.0|210181.0|210211.0|210396.0|210413.0|210416.0|210476.0|210514.0|210611.0|210615.0|210692.0|210711.0|210757.0|210826.0|210827.0|210853.0|210921.0|210932.0|210933.0|210942.0|211015.0|211019.0|211037.0|211120.0|211139.0|211232.0|211242.0|211307.0|211322.0|211343.0|211448.0|211449.0|211470.0|211519.0|211524.0|211551.0|211556.0|211625.0|211654.0|211684.0|211708.0|211712.0|211765.0|211772.0|211792.0|211840.0|211860.0|211976.0|212015.0|212029.0|212130.0|212151.0|212204.0|212231.0|212273.0|212376.0|212397.0|212434.0|212479.0|212503.0|212511.0|212543.0|212636.0|212650.0|212714.0|212737.0|212757.0|212841.0|212853.0|212872.0|212892.0|212961.0|212972.0|212995.0|213030.0|213040.0|213069.0|213080.0|213141.0|213170.0|213177.0|213187.0|213201.0|213305.0|213361.0|213392.0|213509.0|213510.0|213545.0|213558.0|213614.0|213617.0|213646.0|213663.0|213747.0|213769.0|213831.0|213836.0|213933.0|213949.0|213980.0|214026.0|214041.0|214085.0|214129.0|214151.0|214233.0|214252.0|214257.0|214336.0|214401.0|214459.0|214474.0|214496.0|214507.0|214543.0|214555.0|214613.0|214656.0|214690.0|214733.0|214743.0|214748.0|214757.0|214868.0|214904.0|214949.0|214955.0|215013.0|215019.0|215058.0|215119.0|215140.0|215161.0|215230.0|215295.0|215351.0|215446.0|215456.0|215464.0|215548.0|215554.0|215561.0|215565.0|215574.0|215666.0|215676.0|215752.0|215763.0|215773.0|215780.0|215978.0|215986.0|216070.0|216085.0|216094.0|216105.0|216110.0|216171.0|216193.0|216194.0|216292.0|216300.0|216302.0|216310.0|216373.0|216408.0|216511.0|216605.0|216676.0|216689.0|216721.0|216770.0|216783.0|216811.0|216837.0|216878.0|216890.0|216914.0|216944.0|216979.0|217121.0|217144.0|217158.0|217174.0|217181.0|217212.0|217249.0|217259.0|217266.0|217280.0|217352.0|217373.0|217390.0|217430.0|217459.0|217499.0|217513.0|217588.0|217637.0|217686.0|217710.0|217715.0|217776.0|217787.0|217823.0|217888.0|217910.0|217946.0|217987.0|218018.0|218047.0|218049.0|218090.0|218092.0|218125.0|218152.0|218191.0|218255.0|218256.0|218262.0|218277.0|218304.0|218325.0|218339.0|218343.0|218363.0|218409.0|218410.0|218440.0|218447.0|218514.0|218536.0|218590.0|218620.0|218662.0|218668.0|218687.0|218725.0|218795.0|218830.0|218837.0|218977.0|218983.0|219042.0|219091.0|219120.0|219184.0|219199.0|219201.0|219232.0|219252.0|219282.0|219287.0|219302.0|219335.0|219358.0|219379.0|219404.0|219413.0|219421.0|219493.0|219551.0|219569.0|219628.0|219699.0|219707.0|219735.0|219767.0|219876.0|219909.0|220010.0|220057.0|220060.0|220096.0|220100.0|220111.0|220164.0|220202.0|220212.0|220318.0|220413.0|220414.0|220416.0|220422.0|220525.0|220616.0|220627.0|220632.0|220701.0|220717.0|220731.0|220740.0|220848.0|220919.0|220937.0|220956.0|221020.0|221130.0|221143.0|221151.0|221172.0|221222.0|221238.0|221280.0|221323.0|221345.0|221350.0|221361.0|221388.0|221453.0|221468.0|221497.0|221525.0|221556.0|221573.0|221605.0|221625.0|221659.0|221660.0|221667.0|221727.0|221742.0|221762.0|221774.0|221785.0|221814.0|221820.0|221865.0|221928.0|221929.0|221989.0|221994.0|222020.0|222030.0|222036.0|222058.0|222072.0|222132.0|222204.0|222206.0|222226.0|222232.0|222278.0|222333.0|222453.0|222484.0|222494.0|222522.0|222535.0|222577.0|222606.0|222627.0|222737.0|222740.0|222793.0|222804.0|222897.0|222939.0|222944.0|223000.0|223009.0|223063.0|223103.0|223170.0|223207.0|223222.0|223228.0|223242.0|223277.0|223310.0|223331.0|223333.0|223366.0|223412.0|223428.0|223441.0|223545.0|223549.0|223576.0|223600.0|223619.0|223646.0|223657.0|223679.0|223682.0|223707.0|223747.0|223765.0|223815.0|223826.0|223874.0|223892.0|223928.0|223954.0|223962.0|224031.0|224086.0|224104.0|224135.0|224136.0|224197.0|224202.0|224238.0|224252.0|224305.0|224315.0|224351.0|224444.0|224505.0|224521.0|224547.0|224563.0|224631.0|224728.0|224738.0|224754.0|224757.0|224767.0|224789.0|224846.0|224857.0|224888.0|224931.0|224954.0|224959.0|224995.0|225028.0|225053.0|225060.0|225062.0|225063.0|225084.0|225102.0|225262.0|225278.0|225288.0|225327.0|225363.0|225373.0|225380.0|225413.0|225425.0|225475.0|225494.0|225555.0|225565.0|225580.0|225639.0|225682.0|225685.0|225693.0|225710.0|225746.0|225795.0|225799.0|225818.0|225829.0|225861.0|225888.0|225897.0|225961.0|225969.0|226035.0|226070.0|226171.0|226175.0|226197.0|226213.0|226222.0|226251.0|226272.0|226283.0|226374.0|226387.0|226404.0|226467.0|226498.0|226530.0|226535.0|226635.0|226677.0|226712.0|226740.0|226778.0|226846.0|226866.0|226898.0|226909.0|226920.0|226927.0|226951.0|227004.0|227007.0|227023.0|227035.0|227081.0|227094.0|227115.0|227126.0|227137.0|227142.0|227162.0|227183.0|227229.0|227283.0|227312.0|227332.0|227373.0|227409.0|227413.0|227414.0|227434.0|227439.0|227464.0|227477.0|227485.0|227539.0|227571.0|227584.0|227601.0|227744.0|227763.0|227788.0|227795.0|227838.0|227870.0|227873.0|227880.0|227901.0|227914.0|227951.0|227979.0|227990.0|228006.0|228108.0|228160.0|228196.0|228229.0|228260.0|228293.0|228322.0|228363.0|228364.0|228394.0|228415.0|228428.0|228430.0|228467.0|228495.0|228519.0|228533.0|228537.0|228628.0|228645.0|228697.0|228736.0|228752.0|228765.0|228772.0|228777.0|228798.0|228849.0|228879.0|228899.0|228913.0|228952.0|228954.0|228982.0|229000.0|229014.0|229050.0|229059.0|229074.0|229077.0|229086.0|229147.0|229181.0|229192.0|229230.0|229267.0|229271.0|229289.0|229303.0|229313.0|229377.0|229395.0|229397.0|229404.0|229482.0|229485.0|229498.0|229503.0|229505.0|229555.0|229600.0|229601.0|229611.0|229705.0|229718.0|229725.0|229778.0|229808.0|229826.0|229891.0|229904.0|229910.0|229933.0|229962.0|230009.0|230014.0|230040.0|230053.0|230075.0|230111.0|230141.0|230147.0|230162.0|230172.0|230220.0|230255.0|230313.0|230326.0|230362.0|230368.0|230414.0|230432.0|230437.0|230485.0|230515.0|230529.0|230576.0|230594.0|230616.0|230633.0|230642.0|230680.0|230684.0|230717.0|230726.0|230747.0|230791.0|230818.0|230820.0|230839.0|230842.0|230919.0|230943.0|230959.0|230991.0|230996.0|231005.0|231020.0|231045.0|231060.0|231102.0|231116.0|231121.0|231145.0|231148.0|231170.0|231221.0|231222.0|231231.0|231275.0|231321.0|231323.0|231328.0|231355.0|231382.0|231424.0|231436.0|231486.0|231525.0|231544.0|231561.0|231592.0|231626.0|231651.0|231697.0|231727.0|231767.0|231802.0|231828.0|231865.0|231871.0|231908.0|231929.0|231961.0|231974.0|231977.0|232010.0|232013.0|232015.0|232023.0|232031.0|232077.0|232080.0|232118.0|232171.0|232180.0|232232.0|232294.0|232301.0|232315.0|232333.0|232355.0|232376.0|232386.0|232434.0|232441.0|232490.0|232535.0|232540.0|232572.0|232593.0|232604.0|232617.0|232625.0|232636.0|232646.0|232695.0|232715.0|232733.0|232737.0|232747.0|232751.0|232799.0|232838.0|232853.0|232857.0|232938.0|232939.0|232949.0|233040.0|233063.0|233068.0|233089.0|233109.0|233129.0|233141.0|233153.0|233170.0|233211.0|233222.0|233230.0|233261.0|233273.0|233279.0|233344.0|233367.0|233382.0|233485.0|233490.0|233521.0|233546.0|233582.0|233595.0|233647.0|233676.0|233697.0|233706.0|233728.0|233760.0|233798.0|233806.0|233807.0|233830.0|233849.0|233905.0|233911.0|233921.0|233933.0|233950.0|234000.0|234012.0|234017.0|234098.0|234123.0|234140.0|234152.0|234227.0|234243.0|234246.0|234253.0|234333.0|234346.0|234354.0|234374.0|234424.0|234439.0|234452.0|234460.0|234462.0|234548.0|234552.0|234556.0|234649.0|234656.0|234723.0|234756.0|234758.0|234759.0|234763.0|234859.0|234861.0|234871.0|234895.0|234966.0|235003.0|235061.0|235068.0|235071.0|235085.0|235110.0|235162.0|235171.0|235177.0|235187.0|235191.0|235192.0|235206.0|235218.0|235261.0|235263.0|235300.0|235364.0|235378.0|235398.0|235408.0|235434.0|235494.0|235515.0|235542.0|235563.0|235566.0|235687.0|235729.0|235739.0|235768.0|235780.0|235790.0|235810.0|235837.0|235867.0|235915.0|235919.0|235948.0|235970.0|235975.0|236023.0|236067.0|236099.0|236158.0|236172.0|236191.0|236203.0|236232.0|236266.0|236298.0|236337.0|236373.0|236374.0|236409.0|236442.0|236483.0|236505.0|236512.0|236525.0|236558.0|236567.0|236576.0|236588.0|236623.0|236654.0|236677.0|236696.0|236718.0|236731.0|236778.0|236793.0|236822.0|236842.0|236850.0|236864.0|236879.0|236915.0|236925.0|236947.0|236970.0|236980.0|237014.0|237027.0|237075.0|237087.0|237100.0|237121.0|237163.0|237180.0|237182.0|237233.0|237234.0|237272.0|237283.0|237287.0|237297.0|237318.0 +in.representative_income metadata_and_annual usd float 237321.0|237335.0|237337.0|237339.0|237384.0|237392.0|237433.0|237447.0|237471.0|237485.0|237487.0|237544.0|237554.0|237637.0|237687.0|237694.0|237703.0|237705.0|237708.0|237750.0|237757.0|237788.0|237811.0|237813.0|237853.0|237876.0|237889.0|237909.0|237919.0|237930.0|237973.0|237990.0|238025.0|238027.0|238077.0|238091.0|238101.0|238130.0|238131.0|238136.0|238192.0|238235.0|238244.0|238265.0|238287.0|238293.0|238306.0|238327.0|238341.0|238394.0|238410.0|238413.0|238435.0|238446.0|238460.0|238472.0|238495.0|238520.0|238552.0|238568.0|238575.0|238576.0|238596.0|238657.0|238675.0|238678.0|238699.0|238735.0|238763.0|238781.0|238783.0|238798.0|238843.0|238853.0|238868.0|238899.0|238946.0|238950.0|239000.0|239004.0|239057.0|239079.0|239091.0|239111.0|239152.0|239184.0|239194.0|239202.0|239216.0|239272.0|239297.0|239303.0|239324.0|239379.0|239380.0|239396.0|239404.0|239411.0|239432.0|239437.0|239459.0|239487.0|239540.0|239555.0|239593.0|239594.0|239606.0|239607.0|239649.0|239670.0|239692.0|239701.0|239710.0|239809.0|239812.0|239818.0|239864.0|239913.0|239916.0|239923.0|239948.0|240010.0|240019.0|240061.0|240111.0|240122.0|240130.0|240158.0|240162.0|240187.0|240188.0|240212.0|240226.0|240238.0|240240.0|240242.0|240296.0|240328.0|240339.0|240344.0|240350.0|240380.0|240404.0|240415.0|240450.0|240453.0|240513.0|240516.0|240517.0|240535.0|240556.0|240617.0|240621.0|240638.0|240640.0|240741.0|240766.0|240782.0|240837.0|240872.0|240882.0|240920.0|240945.0|240947.0|240967.0|240977.0|240981.0|240989.0|240999.0|241021.0|241050.0|241083.0|241085.0|241097.0|241099.0|241103.0|241122.0|241154.0|241160.0|241204.0|241218.0|241223.0|241257.0|241258.0|241294.0|241324.0|241360.0|241377.0|241399.0|241419.0|241425.0|241485.0|241504.0|241526.0|241537.0|241547.0|241566.0|241590.0|241593.0|241610.0|241627.0|241634.0|241658.0|241701.0|241768.0|241773.0|241794.0|241809.0|241821.0|241829.0|241848.0|241873.0|241876.0|241910.0|241927.0|241930.0|241940.0|241955.0|241978.0|241992.0|242026.0|242031.0|242063.0|242071.0|242134.0|242137.0|242172.0|242224.0|242233.0|242242.0|242273.0|242278.0|242288.0|242296.0|242334.0|242340.0|242349.0|242384.0|242392.0|242410.0|242432.0|242435.0|242455.0|242465.0|242492.0|242495.0|242517.0|242536.0|242546.0|242559.0|242565.0|242591.0|242597.0|242599.0|242637.0|242665.0|242673.0|242701.0|242707.0|242738.0|242770.0|242781.0|242804.0|242815.0|242839.0|242875.0|242886.0|242890.0|242907.0|242921.0|242940.0|242998.0|243011.0|243027.0|243029.0|243034.0|243041.0|243087.0|243106.0|243113.0|243132.0|243142.0|243171.0|243214.0|243243.0|243244.0|243297.0|243322.0|243344.0|243351.0|243382.0|243403.0|243423.0|243430.0|243434.0|243445.0|243458.0|243494.0|243505.0|243516.0|243546.0|243565.0|243614.0|243629.0|243646.0|243647.0|243673.0|243677.0|243720.0|243732.0|243738.0|243748.0|243754.0|243765.0|243770.0|243825.0|243835.0|243862.0|243888.0|243930.0|243939.0|243950.0|243970.0|243999.0|244024.0|244051.0|244115.0|244141.0|244145.0|244152.0|244186.0|244210.0|244248.0|244294.0|244352.0|244354.0|244404.0|244425.0|244454.0|244455.0|244458.0|244478.0|244532.0|244556.0|244563.0|244657.0|244661.0|244668.0|244725.0|244726.0|244746.0|244758.0|244763.0|244778.0|244834.0|244854.0|244867.0|244880.0|244890.0|244942.0|244960.0|244961.0|244970.0|244985.0|245011.0|245037.0|245052.0|245069.0|245073.0|245081.0|245102.0|245175.0|245177.0|245183.0|245208.0|245263.0|245267.0|245279.0|245283.0|245390.0|245397.0|245465.0|245483.0|245486.0|245498.0|245541.0|245566.0|245583.0|245589.0|245618.0|245667.0|245699.0|245712.0|245723.0|245754.0|245788.0|245807.0|245820.0|245828.0|245869.0|245876.0|245898.0|245914.0|245927.0|245934.0|245947.0|245959.0|245980.0|245991.0|246003.0|246039.0|246061.0|246071.0|246131.0|246142.0|246172.0|246207.0|246208.0|246238.0|246251.0|246273.0|246293.0|246311.0|246347.0|246356.0|246374.0|246390.0|246453.0|246464.0|246475.0|246517.0|246543.0|246546.0|246563.0|246567.0|246576.0|246600.0|246617.0|246620.0|246672.0|246679.0|246724.0|246754.0|246766.0|246778.0|246780.0|246859.0|246879.0|246883.0|246888.0|246893.0|246929.0|246980.0|246989.0|247000.0|247033.0|247081.0|247094.0|247108.0|247161.0|247189.0|247199.0|247216.0|247237.0|247239.0|247280.0|247284.0|247323.0|247335.0|247343.0|247385.0|247427.0|247430.0|247431.0|247484.0|247486.0|247516.0|247527.0|247535.0|247536.0|247548.0|247581.0|247587.0|247621.0|247634.0|247688.0|247695.0|247752.0|247755.0|247789.0|247832.0|247841.0|247858.0|247864.0|247890.0|247910.0|247937.0|247940.0|247966.0|247971.0|247991.0|248021.0|248028.0|248038.0|248064.0|248074.0|248086.0|248092.0|248117.0|248124.0|248149.0|248167.0|248170.0|248181.0|248193.0|248254.0|248271.0|248274.0|248292.0|248294.0|248359.0|248385.0|248398.0|248400.0|248465.0|248477.0|248496.0|248503.0|248508.0|248510.0|248538.0|248562.0|248570.0|248580.0|248611.0|248616.0|248619.0|248666.0|248670.0|248676.0|248698.0|248782.0|248786.0|248796.0|248799.0|248826.0|248887.0|248890.0|248900.0|248972.0|248993.0|249001.0|249026.0|249040.0|249048.0|249095.0|249098.0|249102.0|249108.0|249126.0|249139.0|249203.0|249255.0|249302.0|249309.0|249362.0|249405.0|249414.0|249435.0|249470.0|249506.0|249520.0|249577.0|249588.0|249593.0|249597.0|249599.0|249607.0|249611.0|249612.0|249625.0|249684.0|249696.0|249708.0|249717.0|249730.0|249804.0|249809.0|249818.0|249890.0|249899.0|249912.0|249921.0|249924.0|249942.0|250011.0|250024.0|250112.0|250114.0|250128.0|250129.0|250135.0|250152.0|250213.0|250230.0|250268.0|250282.0|250291.0|250296.0|250314.0|250324.0|250328.0|250345.0|250363.0|250415.0|250437.0|250453.0|250468.0|250485.0|250516.0|250540.0|250543.0|250561.0|250566.0|250575.0|250617.0|250643.0|250651.0|250669.0|250680.0|250705.0|250718.0|250757.0|250777.0|250785.0|250819.0|250849.0|250865.0|250880.0|250885.0|250952.0|250972.0|250981.0|250993.0|250994.0|250996.0|251021.0|251047.0|251056.0|251080.0|251101.0|251122.0|251159.0|251165.0|251187.0|251207.0|251209.0|251223.0|251236.0|251260.0|251262.0|251294.0|251317.0|251344.0|251354.0|251359.0|251401.0|251418.0|251425.0|251496.0|251508.0|251523.0|251526.0|251534.0|251571.0|251617.0|251629.0|251661.0|251675.0|251678.0|251688.0|251724.0|251726.0|251729.0|251734.0|251750.0|251754.0|251789.0|251829.0|251840.0|251858.0|251930.0|251984.0|252014.0|252046.0|252051.0|252073.0|252132.0|252153.0|252188.0|252190.0|252261.0|252271.0|252282.0|252294.0|252334.0|252368.0|252379.0|252390.0|252398.0|252422.0|252435.0|252473.0|252475.0|252521.0|252536.0|252578.0|252587.0|252603.0|252614.0|252668.0|252690.0|252706.0|252769.0|252789.0|252797.0|252809.0|252830.0|252839.0|252894.0|252913.0|252938.0|253012.0|253015.0|253041.0|253046.0|253101.0|253106.0|253119.0|253142.0|253147.0|253170.0|253208.0|253211.0|253220.0|253222.0|253227.0|253243.0|253262.0|253294.0|253316.0|253334.0|253338.0|253370.0|253377.0|253395.0|253398.0|253422.0|253428.0|253431.0|253432.0|253442.0|253445.0|253475.0|253527.0|253531.0|253546.0|253548.0|253586.0|253632.0|253634.0|253647.0|253655.0|253656.0|253675.0|253686.0|253694.0|253737.0|253738.0|253748.0|253758.0|253824.0|253844.0|253849.0|253871.0|253872.0|253911.0|253924.0|253949.0|253950.0|253964.0|253978.0|254019.0|254046.0|254051.0|254054.0|254127.0|254128.0|254160.0|254192.0|254253.0|254254.0|254266.0|254321.0|254334.0|254342.0|254355.0|254356.0|254371.0|254408.0|254450.0|254460.0|254477.0|254515.0|254557.0|254562.0|254658.0|254665.0|254687.0|254708.0|254759.0|254762.0|254769.0|254775.0|254789.0|254792.0|254829.0|254872.0|254883.0|254899.0|254944.0|254961.0|254991.0|255052.0|255062.0|255099.0|255207.0|255215.0|255221.0|255264.0|255266.0|255268.0|255279.0|255284.0|255299.0|255315.0|255320.0|255365.0|255388.0|255423.0|255425.0|255436.0|255481.0|255567.0|255577.0|255584.0|255588.0|255594.0|255637.0|255639.0|255668.0|255696.0|255742.0|255747.0|255769.0|255789.0|255800.0|255802.0|255810.0|255847.0|255855.0|255870.0|255903.0|255932.0|255963.0|255971.0|255986.0|256008.0|256034.0|256058.0|256071.0|256072.0|256102.0|256107.0|256110.0|256125.0|256164.0|256173.0|256179.0|256212.0|256216.0|256270.0|256314.0|256339.0|256375.0|256396.0|256405.0|256419.0|256447.0|256476.0|256554.0|256575.0|256577.0|256608.0|256612.0|256617.0|256626.0|256662.0|256678.0|256691.0|256720.0|256729.0|256797.0|256807.0|256828.0|256831.0|256860.0|256877.0|256880.0|256935.0|256981.0|256983.0|257038.0|257081.0|257082.0|257091.0|257113.0|257152.0|257163.0|257174.0|257183.0|257198.0|257206.0|257218.0|257238.0|257245.0|257260.0|257284.0|257323.0|257327.0|257334.0|257348.0|257368.0|257385.0|257387.0|257430.0|257450.0|257455.0|257554.0|257584.0|257587.0|257628.0|257640.0|257688.0|257789.0|257799.0|257851.0|257863.0|257884.0|257890.0|257896.0|257904.0|257909.0|257950.0|257955.0|257956.0|257966.0|257987.0|257989.0|257991.0|258016.0|258057.0|258069.0|258090.0|258092.0|258124.0|258164.0|258168.0|258173.0|258193.0|258232.0|258276.0|258314.0|258345.0|258378.0|258379.0|258395.0|258448.0|258487.0|258496.0|258503.0|258556.0|258585.0|258589.0|258593.0|258597.0|258600.0|258627.0|258665.0|258688.0 +in.representative_income metadata_and_annual usd float 258695.0|258698.0|258701.0|258745.0|258770.0|258773.0|258781.0|258792.0|258799.0|258801.0|258822.0|258850.0|258881.0|258895.0|258906.0|258916.0|258980.0|258997.0|259001.0|259011.0|259024.0|259102.0|259130.0|259151.0|259164.0|259203.0|259204.0|259206.0|259222.0|259223.0|259256.0|259304.0|259308.0|259312.0|259345.0|259405.0|259411.0|259421.0|259433.0|259513.0|259529.0|259607.0|259637.0|259644.0|259658.0|259668.0|259708.0|259745.0|259749.0|259774.0|259809.0|259823.0|259853.0|259855.0|259882.0|259892.0|259910.0|259926.0|259961.0|259989.0|260011.0|260030.0|260112.0|260118.0|260132.0|260150.0|260171.0|260177.0|260204.0|260235.0|260277.0|260286.0|260311.0|260355.0|260393.0|260419.0|260442.0|260487.0|260516.0|260526.0|260540.0|260545.0|260553.0|260594.0|260609.0|260617.0|260625.0|260628.0|260634.0|260640.0|260695.0|260699.0|260717.0|260718.0|260751.0|260757.0|260819.0|260848.0|260854.0|260870.0|260909.0|260920.0|260926.0|260933.0|260955.0|260958.0|261015.0|261021.0|261042.0|261057.0|261061.0|261063.0|261064.0|261120.0|261122.0|261150.0|261163.0|261170.0|261204.0|261205.0|261224.0|261226.0|261258.0|261267.0|261278.0|261325.0|261359.0|261370.0|261384.0|261387.0|261426.0|261437.0|261466.0|261473.0|261474.0|261475.0|261489.0|261492.0|261528.0|261537.0|261542.0|261547.0|261557.0|261577.0|261599.0|261628.0|261647.0|261648.0|261653.0|261689.0|261753.0|261797.0|261880.0|261886.0|261906.0|261922.0|261925.0|261931.0|261989.0|262014.0|262019.0|262032.0|262083.0|262091.0|262122.0|262133.0|262136.0|262144.0|262154.0|262157.0|262175.0|262196.0|262198.0|262211.0|262234.0|262274.0|262280.0|262298.0|262335.0|262338.0|262351.0|262386.0|262401.0|262436.0|262446.0|262492.0|262505.0|262532.0|262534.0|262537.0|262554.0|262565.0|262597.0|262608.0|262638.0|262648.0|262658.0|262663.0|262668.0|262698.0|262717.0|262739.0|262780.0|262787.0|262820.0|262840.0|262888.0|262917.0|262937.0|262941.0|262995.0|263018.0|263020.0|263042.0|263049.0|263083.0|263094.0|263102.0|263124.0|263135.0|263143.0|263163.0|263190.0|263210.0|263227.0|263244.0|263310.0|263330.0|263345.0|263352.0|263370.0|263403.0|263419.0|263425.0|263433.0|263435.0|263440.0|263446.0|263498.0|263532.0|263536.0|263635.0|263639.0|263643.0|263648.0|263651.0|263668.0|263743.0|263747.0|263749.0|263757.0|263778.0|263830.0|263846.0|263850.0|263851.0|263854.0|263915.0|263948.0|263951.0|263959.0|263961.0|263999.0|264052.0|264066.0|264069.0|264073.0|264102.0|264153.0|264175.0|264179.0|264207.0|264254.0|264258.0|264283.0|264284.0|264294.0|264335.0|264337.0|264355.0|264362.0|264390.0|264391.0|264436.0|264456.0|264464.0|264495.0|264499.0|264551.0|264557.0|264567.0|264599.0|264601.0|264605.0|264607.0|264658.0|264671.0|264706.0|264713.0|264715.0|264716.0|264737.0|264759.0|264774.0|264811.0|264823.0|264860.0|264877.0|264894.0|264917.0|264927.0|264931.0|264938.0|264955.0|265003.0|265023.0|265035.0|265083.0|265128.0|265142.0|265148.0|265163.0|265186.0|265233.0|265250.0|265255.0|265271.0|265290.0|265339.0|265363.0|265365.0|265444.0|265446.0|265464.0|265466.0|265496.0|265539.0|265571.0|265599.0|265668.0|265761.0|265769.0|265796.0|265810.0|265820.0|265828.0|265887.0|265921.0|265947.0|265969.0|265972.0|266000.0|266012.0|266025.0|266072.0|266108.0|266114.0|266120.0|266136.0|266141.0|266161.0|266166.0|266173.0|266216.0|266218.0|266228.0|266237.0|266239.0|266274.0|266288.0|266323.0|266336.0|266394.0|266398.0|266424.0|266430.0|266443.0|266509.0|266528.0|266552.0|266604.0|266645.0|266660.0|266678.0|266710.0|266733.0|266752.0|266768.0|266779.0|266815.0|266837.0|266847.0|266860.0|266876.0|266880.0|266921.0|266940.0|266967.0|266981.0|266984.0|267026.0|267043.0|267074.0|267092.0|267146.0|267147.0|267183.0|267237.0|267249.0|267265.0|267289.0|267293.0|267330.0|267342.0|267374.0|267385.0|267395.0|267417.0|267448.0|267456.0|267486.0|267525.0|267554.0|267559.0|267587.0|267611.0|267632.0|267662.0|267688.0|267718.0|267740.0|267750.0|267751.0|267765.0|267777.0|267779.0|267826.0|267848.0|267859.0|267868.0|267870.0|267879.0|267890.0|267933.0|267956.0|267971.0|267991.0|268032.0|268041.0|268042.0|268064.0|268072.0|268075.0|268080.0|268082.0|268092.0|268147.0|268174.0|268178.0|268194.0|268249.0|268255.0|268281.0|268295.0|268332.0|268362.0|268363.0|268384.0|268389.0|268397.0|268416.0|268436.0|268470.0|268480.0|268487.0|268497.0|268503.0|268523.0|268577.0|268590.0|268620.0|268631.0|268655.0|268684.0|268694.0|268699.0|268713.0|268714.0|268797.0|268800.0|268827.0|268879.0|268880.0|268899.0|268901.0|268925.0|268929.0|268941.0|269003.0|269030.0|269037.0|269038.0|269040.0|269067.0|269103.0|269106.0|269114.0|269135.0|269204.0|269209.0|269221.0|269253.0|269275.0|269305.0|269313.0|269346.0|269361.0|269436.0|269452.0|269469.0|269518.0|269527.0|269535.0|269543.0|269608.0|269642.0|269651.0|269663.0|269685.0|269709.0|269725.0|269750.0|269758.0|269768.0|269873.0|269911.0|269931.0|269956.0|269966.0|269972.0|269979.0|269990.0|270010.0|270012.0|270037.0|270080.0|270116.0|270117.0|270137.0|270148.0|270171.0|270190.0|270206.0|270214.0|270224.0|270225.0|270241.0|270313.0|270315.0|270333.0|270344.0|270371.0|270375.0|270401.0|270416.0|270441.0|270447.0|270509.0|270517.0|270550.0|270556.0|270611.0|270616.0|270617.0|270653.0|270658.0|270719.0|270729.0|270756.0|270766.0|270788.0|270823.0|270860.0|270874.0|270897.0|270951.0|270982.0|270992.0|271022.0|271034.0|271036.0|271046.0|271090.0|271123.0|271137.0|271139.0|271153.0|271154.0|271169.0|271173.0|271198.0|271224.0|271234.0|271244.0|271261.0|271272.0|271306.0|271351.0|271368.0|271414.0|271426.0|271456.0|271479.0|271522.0|271527.0|271561.0|271581.0|271582.0|271583.0|271626.0|271628.0|271630.0|271666.0|271690.0|271725.0|271729.0|271738.0|271772.0|271788.0|271797.0|271846.0|271931.0|271983.0|271994.0|272011.0|272032.0|272062.0|272089.0|272098.0|272119.0|272133.0|272138.0|272163.0|272180.0|272204.0|272227.0|272234.0|272263.0|272279.0|272299.0|272303.0|272334.0|272335.0|272407.0|272436.0|272480.0|272495.0|272510.0|272537.0|272559.0|272616.0|272656.0|272679.0|272721.0|272739.0|272753.0|272763.0|272818.0|272819.0|272860.0|272913.0|272922.0|272941.0|272943.0|272978.0|273053.0|273067.0|273080.0|273093.0|273129.0|273142.0|273143.0|273206.0|273224.0|273242.0|273244.0|273300.0|273335.0|273345.0|273359.0|273366.0|273407.0|273416.0|273438.0|273459.0|273462.0|273467.0|273490.0|273532.0|273541.0|273547.0|273565.0|273575.0|273623.0|273629.0|273648.0|273670.0|273696.0|273729.0|273733.0|273749.0|273771.0|273775.0|273791.0|273850.0|273881.0|273899.0|273943.0|273951.0|274007.0|274024.0|274042.0|274052.0|274072.0|274092.0|274153.0|274159.0|274160.0|274197.0|274223.0|274251.0|274254.0|274264.0|274266.0|274271.0|274303.0|274366.0|274373.0|274408.0|274430.0|274439.0|274469.0|274548.0|274573.0|274577.0|274620.0|274656.0|274658.0|274676.0|274725.0|274759.0|274779.0|274803.0|274814.0|274857.0|274860.0|274882.0|274941.0|274961.0|274979.0|274985.0|275062.0|275077.0|275104.0|275147.0|275164.0|275252.0|275265.0|275295.0|275304.0|275328.0|275358.0|275366.0|275397.0|275412.0|275421.0|275463.0|275480.0|275501.0|275520.0|275563.0|275568.0|275574.0|275604.0|275620.0|275674.0|275736.0|275751.0|275769.0|275770.0|275790.0|275811.0|275877.0|275885.0|275902.0|275914.0|275937.0|275972.0|275983.0|275990.0|276016.0|276073.0|276096.0|276127.0|276168.0|276174.0|276198.0|276275.0|276306.0|276359.0|276413.0|276430.0|276460.0|276492.0|276525.0|276532.0|276598.0|276600.0|276655.0|276679.0|276682.0|276708.0|276728.0|276735.0|276739.0|276768.0|276780.0|276834.0|276842.0|276888.0|276925.0|276945.0|276950.0|276971.0|276982.0|277013.0|277033.0|277048.0|277057.0|277083.0|277141.0|277151.0|277164.0|277180.0|277184.0|277244.0|277361.0|277386.0|277405.0|277461.0|277487.0|277588.0|277594.0|277667.0|277681.0|277685.0|277689.0|277781.0|277783.0|277789.0|277790.0|277808.0|277840.0|277873.0|277889.0|277891.0|277895.0|277897.0|277916.0|277977.0|277994.0|278002.0|278024.0|278048.0|278077.0|278080.0|278093.0|278099.0|278113.0|278182.0|278205.0|278221.0|278238.0|278255.0|278279.0|278295.0|278329.0|278345.0|278352.0|278416.0|278427.0|278492.0|278497.0|278501.0|278502.0|278560.0|278574.0|278627.0|278653.0|278698.0|278699.0|278732.0|278761.0|278774.0|278800.0|278801.0|278815.0|278820.0|278837.0|278905.0|278944.0|278989.0|279002.0|279008.0|279049.0|279085.0|279097.0|279101.0|279103.0|279111.0|279118.0|279154.0|279193.0|279204.0|279260.0|279280.0|279311.0|279317.0|279335.0|279406.0|279419.0|279420.0|279470.0|279483.0|279507.0|279523.0|279524.0|279534.0|279576.0|279634.0|279682.0|279709.0|279730.0|279781.0|279810.0|279841.0|279892.0|279921.0|279936.0|279955.0|280012.0|280039.0|280058.0|280084.0|280103.0|280113.0|280143.0|280170.0|280174.0|280209.0|280314.0|280348.0|280382.0|280416.0|280492.0|280525.0|280555.0|280599.0|280618.0|280630.0|280658.0|280707.0|280736.0|280762.0|280815.0|280820.0|280865.0|280916.0|280922.0|280947.0|280967.0|280976.0|281022.0|281029.0|281052.0|281053.0|281123.0|281174.0|281224.0|281244.0|281246.0|281263.0|281277.0|281297.0|281339.0|281351.0|281354.0|281368.0|281381.0|281426.0 +in.representative_income metadata_and_annual usd float 281560.0|281570.0|281577.0|281578.0|281580.0|281586.0|281596.0|281628.0|281653.0|281673.0|281677.0|281690.0|281726.0|281729.0|281791.0|281830.0|281841.0|281888.0|281937.0|281978.0|281999.0|282001.0|282003.0|282102.0|282107.0|282111.0|282123.0|282134.0|282205.0|282213.0|282288.0|282317.0|282318.0|282336.0|282356.0|282412.0|282423.0|282425.0|282435.0|282437.0|282489.0|282508.0|282514.0|282529.0|282538.0|282543.0|282618.0|282634.0|282650.0|282651.0|282709.0|282721.0|282759.0|282824.0|282841.0|282846.0|282867.0|282877.0|282891.0|282928.0|282942.0|282951.0|282961.0|283031.0|283043.0|283069.0|283073.0|283083.0|283115.0|283133.0|283161.0|283176.0|283192.0|283194.0|283267.0|283272.0|283289.0|283300.0|283340.0|283346.0|283390.0|283443.0|283447.0|283478.0|283498.0|283547.0|283548.0|283584.0|283605.0|283623.0|283637.0|283649.0|283653.0|283669.0|283689.0|283713.0|283731.0|283742.0|283750.0|283773.0|283820.0|283834.0|283851.0|283899.0|284006.0|284035.0|284053.0|284062.0|284093.0|284154.0|284163.0|284164.0|284165.0|284216.0|284250.0|284255.0|284268.0|284272.0|284322.0|284356.0|284371.0|284380.0|284427.0|284464.0|284474.0|284475.0|284488.0|284571.0|284595.0|284659.0|284679.0|284681.0|284700.0|284703.0|284744.0|284747.0|284786.0|284861.0|284894.0|284934.0|284962.0|284990.0|285000.0|285028.0|285094.0|285108.0|285136.0|285155.0|285164.0|285215.0|285244.0|285266.0|285299.0|285323.0|285366.0|285377.0|285403.0|285482.0|285506.0|285537.0|285568.0|285587.0|285609.0|285677.0|285691.0|285692.0|285713.0|285741.0|285752.0|285784.0|285798.0|285870.0|285871.0|285892.0|285918.0|285967.0|285972.0|286000.0|286009.0|286037.0|286061.0|286073.0|286074.0|286108.0|286124.0|286125.0|286162.0|286174.0|286181.0|286220.0|286228.0|286275.0|286290.0|286324.0|286332.0|286396.0|286434.0|286484.0|286486.0|286504.0|286522.0|286537.0|286547.0|286578.0|286610.0|286641.0|286642.0|286718.0|286744.0|286757.0|286811.0|286826.0|286830.0|286847.0|286853.0|286865.0|286874.0|286875.0|286879.0|286881.0|286958.0|286972.0|287041.0|287043.0|287053.0|287063.0|287083.0|287147.0|287156.0|287189.0|287208.0|287275.0|287285.0|287297.0|287380.0|287384.0|287386.0|287405.0|287470.0|287485.0|287487.0|287517.0|287544.0|287577.0|287588.0|287620.0|287621.0|287685.0|287689.0|287696.0|287729.0|287775.0|287790.0|287837.0|287879.0|287891.0|287908.0|287945.0|287946.0|287982.0|288002.0|288006.0|288013.0|288093.0|288118.0|288126.0|288144.0|288188.0|288222.0|288269.0|288291.0|288295.0|288329.0|288346.0|288351.0|288394.0|288396.0|288407.0|288435.0|288485.0|288498.0|288508.0|288598.0|288600.0|288649.0|288651.0|288701.0|288751.0|288758.0|288790.0|288807.0|288810.0|288858.0|288901.0|288910.0|288918.0|288962.0|289013.0|289068.0|289078.0|289080.0|289089.0|289242.0|289271.0|289295.0|289306.0|289322.0|289327.0|289384.0|289401.0|289407.0|289426.0|289508.0|289509.0|289510.0|289566.0|289594.0|289616.0|289632.0|289701.0|289710.0|289735.0|289806.0|289813.0|289827.0|289832.0|289838.0|289848.0|289851.0|289864.0|289874.0|289885.0|289890.0|289912.0|289916.0|289939.0|289998.0|290013.0|290016.0|290033.0|290070.0|290106.0|290122.0|290144.0|290153.0|290196.0|290214.0|290215.0|290227.0|290261.0|290316.0|290323.0|290333.0|290354.0|290389.0|290390.0|290417.0|290431.0|290439.0|290457.0|290486.0|290518.0|290539.0|290544.0|290560.0|290578.0|290609.0|290638.0|290646.0|290664.0|290690.0|290720.0|290766.0|290858.0|290862.0|290869.0|290901.0|290905.0|290921.0|290922.0|290973.0|291071.0|291076.0|291119.0|291128.0|291177.0|291225.0|291227.0|291231.0|291272.0|291282.0|291293.0|291295.0|291326.0|291334.0|291385.0|291387.0|291427.0|291442.0|291488.0|291493.0|291511.0|291528.0|291548.0|291656.0|291686.0|291695.0|291704.0|291727.0|291730.0|291763.0|291809.0|291834.0|291901.0|291915.0|291932.0|291943.0|291952.0|291978.0|292000.0|292051.0|292086.0|292107.0|292125.0|292134.0|292267.0|292314.0|292336.0|292337.0|292375.0|292379.0|292437.0|292444.0|292515.0|292520.0|292538.0|292568.0|292591.0|292623.0|292653.0|292654.0|292700.0|292726.0|292740.0|292758.0|292808.0|292813.0|292830.0|292837.0|292841.0|292864.0|292916.0|292932.0|292942.0|292970.0|292984.0|293023.0|293035.0|293043.0|293052.0|293058.0|293131.0|293144.0|293159.0|293180.0|293242.0|293267.0|293346.0|293373.0|293447.0|293449.0|293455.0|293548.0|293602.0|293672.0|293696.0|293749.0|293803.0|293812.0|293813.0|293851.0|293888.0|293913.0|293952.0|293964.0|293996.0|294053.0|294125.0|294154.0|294170.0|294235.0|294273.0|294318.0|294320.0|294340.0|294341.0|294374.0|294376.0|294377.0|294387.0|294428.0|294446.0|294480.0|294536.0|294659.0|294662.0|294686.0|294696.0|294769.0|294861.0|294962.0|294968.0|294973.0|294983.0|294996.0|295034.0|295077.0|295079.0|295124.0|295184.0|295198.0|295201.0|295253.0|295265.0|295289.0|295305.0|295306.0|295401.0|295408.0|295413.0|295467.0|295501.0|295508.0|295511.0|295521.0|295568.0|295575.0|295627.0|295711.0|295735.0|295743.0|295775.0|295779.0|295820.0|295832.0|295843.0|295871.0|295922.0|295924.0|295973.0|295979.0|296023.0|296027.0|296028.0|296049.0|296074.0|296130.0|296151.0|296175.0|296233.0|296239.0|296265.0|296272.0|296315.0|296344.0|296379.0|296449.0|296491.0|296543.0|296573.0|296579.0|296589.0|296594.0|296599.0|296608.0|296615.0|296629.0|296680.0|296697.0|296724.0|296781.0|296791.0|296795.0|296808.0|296854.0|296893.0|296983.0|297021.0|297024.0|297038.0|297058.0|297084.0|297108.0|297129.0|297131.0|297238.0|297248.0|297265.0|297291.0|297294.0|297316.0|297345.0|297346.0|297367.0|297399.0|297460.0|297488.0|297560.0|297574.0|297610.0|297663.0|297691.0|297737.0|297820.0|297883.0|297892.0|297976.0|297986.0|297989.0|297993.0|298090.0|298094.0|298101.0|298172.0|298195.0|298204.0|298209.0|298296.0|298318.0|298346.0|298348.0|298400.0|298418.0|298453.0|298599.0|298605.0|298634.0|298642.0|298665.0|298700.0|298741.0|298750.0|298761.0|298812.0|298849.0|298875.0|298902.0|298955.0|298980.0|299003.0|299009.0|299018.0|299104.0|299112.0|299121.0|299135.0|299139.0|299182.0|299183.0|299224.0|299278.0|299290.0|299314.0|299328.0|299385.0|299387.0|299431.0|299492.0|299506.0|299508.0|299533.0|299603.0|299609.0|299707.0|299718.0|299740.0|299831.0|299846.0|299896.0|299947.0|300013.0|300029.0|300035.0|300064.0|300114.0|300136.0|300152.0|300155.0|300215.0|300244.0|300262.0|300316.0|300351.0|300359.0|300370.0|300417.0|300458.0|300459.0|300478.0|300498.0|300518.0|300563.0|300566.0|300598.0|300609.0|300615.0|300619.0|300620.0|300668.0|300720.0|300721.0|300727.0|300773.0|300780.0|300821.0|300875.0|300911.0|300978.0|300984.0|301019.0|301023.0|301073.0|301127.0|301184.0|301185.0|301196.0|301287.0|301424.0|301442.0|301452.0|301528.0|301559.0|301597.0|301613.0|301617.0|301629.0|301640.0|301667.0|301699.0|301723.0|301730.0|301775.0|301828.0|301831.0|301854.0|301883.0|301892.0|301926.0|301961.0|302009.0|302030.0|302033.0|302047.0|302074.0|302099.0|302113.0|302134.0|302176.0|302208.0|302216.0|302235.0|302250.0|302283.0|302395.0|302482.0|302498.0|302532.0|302596.0|302639.0|302640.0|302672.0|302713.0|302820.0|302830.0|302834.0|302841.0|302855.0|302943.0|302989.0|303041.0|303044.0|303144.0|303145.0|303246.0|303247.0|303350.0|303410.0|303433.0|303448.0|303515.0|303549.0|303571.0|303609.0|303612.0|303633.0|303710.0|303720.0|303727.0|303751.0|303786.0|303822.0|303829.0|303866.0|303894.0|303953.0|303969.0|304043.0|304044.0|304054.0|304074.0|304108.0|304152.0|304155.0|304254.0|304256.0|304260.0|304279.0|304323.0|304357.0|304359.0|304465.0|304476.0|304559.0|304645.0|304691.0|304693.0|304781.0|304794.0|304801.0|304860.0|304862.0|304909.0|304992.0|305064.0|305074.0|305103.0|305124.0|305165.0|305289.0|305310.0|305340.0|305413.0|305468.0|305504.0|305546.0|305557.0|305569.0|305611.0|305625.0|305631.0|305665.0|305722.0|305771.0|305773.0|305836.0|305865.0|305913.0|305933.0|305941.0|305973.0|305978.0|306043.0|306046.0|306074.0|306135.0|306152.0|306238.0|306258.0|306276.0|306341.0|306362.0|306363.0|306377.0|306421.0|306445.0|306468.0|306489.0|306548.0|306574.0|306579.0|306637.0|306680.0|306685.0|306720.0|306788.0|306791.0|306853.0|306857.0|306864.0|306868.0|306890.0|306960.0|306983.0|306996.0|307006.0|307042.0|307070.0|307084.0|307167.0|307195.0|307199.0|307206.0|307275.0|307286.0|307312.0|307373.0|307476.0|307488.0|307490.0|307501.0|307579.0|307589.0|307609.0|307682.0|307690.0|307717.0|307734.0|307758.0|307791.0|307826.0|307839.0|307892.0|307934.0|307935.0|307944.0|307993.0|308080.0|308094.0|308095.0|308122.0|308156.0|308195.0|308226.0|308258.0|308327.0|308404.0|308456.0|308472.0|308474.0|308498.0|308500.0|308611.0|308724.0|308801.0|308902.0|308906.0|308912.0|308999.0|309014.0|309104.0|309105.0|309122.0|309153.0|309176.0|309205.0|309207.0|309218.0|309230.0|309261.0|309316.0|309329.0|309415.0|309435.0|309467.0|309487.0|309527.0|309539.0|309609.0|309637.0|309642.0|309663.0|309690.0|309745.0|309785.0|309791.0|309797.0|309849.0|309980.0|310003.0|310014.0|310054.0|310094.0|310115.0|310158.0|310226.0|310230.0|310261.0|310311.0|310334.0|310418.0|310442.0|310467.0|310519.0|310527.0|310582.0|310721.0|310777.0|310851.0|310871.0|310898.0 +in.representative_income metadata_and_annual usd float 310923.0|310978.0|310983.0|310990.0|311034.0|311086.0|311108.0|311125.0|311175.0|311189.0|311247.0|311300.0|311320.0|311372.0|311407.0|311425.0|311451.0|311499.0|311515.0|311601.0|311607.0|311630.0|311705.0|311730.0|311741.0|311808.0|311832.0|311932.0|311944.0|311953.0|312015.0|312089.0|312117.0|312135.0|312163.0|312256.0|312373.0|312374.0|312426.0|312427.0|312481.0|312530.0|312588.0|312640.0|312688.0|312691.0|312741.0|312796.0|312849.0|312857.0|312910.0|312943.0|313006.0|313017.0|313113.0|313145.0|313218.0|313233.0|313246.0|313313.0|313337.0|313429.0|313534.0|313549.0|313562.0|313639.0|313650.0|313662.0|313746.0|313768.0|313805.0|313953.0|314077.0|314155.0|314233.0|314273.0|314309.0|314315.0|314357.0|314368.0|314417.0|314458.0|314521.0|314525.0|314559.0|314593.0|314627.0|314633.0|314660.0|314694.0|314705.0|314735.0|314761.0|314800.0|314848.0|314950.0|314963.0|315005.0|315011.0|315065.0|315109.0|315165.0|315173.0|315216.0|315327.0|315367.0|315368.0|315389.0|315468.0|315485.0|315497.0|315569.0|315594.0|315624.0|315644.0|315670.0|315702.0|315787.0|315912.0|315930.0|315934.0|316023.0|316024.0|316037.0|316065.0|316140.0|316145.0|316175.0|316276.0|316382.0|316478.0|316482.0|316567.0|316578.0|316592.0|316656.0|316668.0|316680.0|316698.0|316862.0|316883.0|316902.0|316989.0|317015.0|317118.0|317186.0|317225.0|317275.0|317287.0|317331.0|317367.0|317418.0|317437.0|317438.0|317442.0|317526.0|317658.0|317687.0|317691.0|317741.0|317753.0|317766.0|317874.0|317955.0|318063.0|318070.0|318095.0|318112.0|318196.0|318199.0|318203.0|318278.0|318385.0|318491.0|318513.0|318630.0|318702.0|318718.0|318738.0|318802.0|318808.0|318814.0|318857.0|318903.0|318913.0|319009.0|319063.0|319124.0|319171.0|319206.0|319279.0|319307.0|319387.0|319509.0|319533.0|319546.0|319566.0|319684.0|319751.0|319756.0|319812.0|319819.0|319888.0|319920.0|319956.0|319995.0|320163.0|320178.0|320216.0|320266.0|320273.0|320274.0|320317.0|320369.0|320418.0|320424.0|320468.0|320601.0|320620.0|320653.0|320721.0|320782.0|320822.0|320874.0|320899.0|320916.0|320917.0|320961.0|320972.0|321024.0|321226.0|321261.0|321284.0|321298.0|321428.0|321440.0|321451.0|321548.0|321655.0|321760.0|321764.0|321813.0|321832.0|321866.0|321880.0|321933.0|321980.0|322019.0|322035.0|322050.0|322089.0|322142.0|322182.0|322236.0|322287.0|322329.0|322357.0|322393.0|322432.0|322438.0|322464.0|322628.0|322656.0|322710.0|322842.0|322845.0|322894.0|322920.0|322953.0|323044.0|323061.0|323108.0|323145.0|323237.0|323246.0|323257.0|323342.0|323448.0|323538.0|323658.0|323668.0|323751.0|323752.0|323764.0|323817.0|323824.0|323833.0|323876.0|323967.0|324083.0|324141.0|324181.0|324185.0|324195.0|324257.0|324259.0|324288.0|324291.0|324344.0|324357.0|324392.0|324396.0|324465.0|324495.0|324504.0|324573.0|324608.0|324742.0|324789.0|324818.0|324825.0|324863.0|324907.0|325005.0|325011.0|325041.0|325065.0|325114.0|325222.0|325255.0|325267.0|325320.0|325346.0|325423.0|325451.0|325526.0|325577.0|325761.0|325768.0|325815.0|325873.0|325939.0|325979.0|326108.0|326195.0|326200.0|326249.0|326277.0|326300.0|326302.0|326348.0|326401.0|326410.0|326506.0|326518.0|326611.0|326626.0|326651.0|326661.0|326782.0|326842.0|326855.0|326866.0|326883.0|326928.0|326933.0|326970.0|327034.0|327177.0|327188.0|327280.0|327287.0|327299.0|327349.0|327382.0|327402.0|327434.0|327449.0|327455.0|327666.0|327772.0|327792.0|327831.0|327939.0|327982.0|328001.0|328045.0|328046.0|328087.0|328194.0|328208.0|328297.0|328299.0|328463.0|328476.0|328499.0|328518.0|328600.0|328620.0|328827.0|329034.0|329037.0|329085.0|329095.0|329111.0|329136.0|329307.0|329327.0|329408.0|329446.0|329543.0|329549.0|329775.0|329858.0|329867.0|329934.0|329962.0|330064.0|330065.0|330092.0|330113.0|330117.0|330157.0|330300.0|330303.0|330317.0|330368.0|330374.0|330477.0|330515.0|330581.0|330620.0|330622.0|330623.0|330684.0|330786.0|330823.0|330913.0|330944.0|331041.0|331056.0|331096.0|331146.0|331159.0|331200.0|331267.0|331328.0|331354.0|331429.0|331480.0|331481.0|331612.0|331696.0|331704.0|331769.0|331833.0|331934.0|331951.0|331990.0|332024.0|332128.0|332136.0|332201.0|332232.0|332296.0|332314.0|332327.0|332338.0|332429.0|332641.0|332677.0|332769.0|332785.0|332798.0|332834.0|332843.0|332850.0|332877.0|332892.0|332984.0|333023.0|333037.0|333045.0|333150.0|333159.0|333198.0|333217.0|333247.0|333256.0|333344.0|333348.0|333361.0|333521.0|333600.0|333628.0|333675.0|333735.0|333778.0|333843.0|333853.0|333865.0|334087.0|334099.0|334190.0|334257.0|334272.0|334297.0|334310.0|334358.0|334405.0|334513.0|334521.0|334560.0|334594.0|334621.0|334661.0|334730.0|334732.0|334762.0|334916.0|334943.0|334946.0|335222.0|335292.0|335325.0|335365.0|335368.0|335428.0|335737.0|335787.0|335841.0|335873.0|335892.0|335989.0|335998.0|336026.0|336047.0|336097.0|336156.0|336176.0|336212.0|336253.0|336378.0|336420.0|336459.0|336525.0|336526.0|336566.0|336674.0|336782.0|336841.0|336964.0|336975.0|336984.0|337052.0|337063.0|337079.0|337107.0|337187.0|337263.0|337269.0|337285.0|337388.0|337431.0|337474.0|337491.0|337590.0|337599.0|337647.0|337793.0|337801.0|337863.0|337896.0|337903.0|337917.0|337922.0|338001.0|338136.0|338187.0|338212.0|338213.0|338298.0|338317.0|338351.0|338399.0|338409.0|338459.0|338511.0|338611.0|338634.0|338644.0|338674.0|338728.0|338803.0|338936.0|338951.0|339003.0|339005.0|339056.0|339141.0|339207.0|339210.0|339267.0|339348.0|339409.0|339414.0|339421.0|339583.0|339639.0|339689.0|339743.0|339794.0|339854.0|339914.0|340015.0|340110.0|340116.0|340284.0|340322.0|340348.0|340370.0|340379.0|340419.0|340520.0|340586.0|340637.0|340688.0|340702.0|340743.0|340823.0|340895.0|340924.0|340927.0|340996.0|341126.0|341227.0|341307.0|341357.0|341411.0|341428.0|341429.0|341482.0|341530.0|341571.0|341617.0|341644.0|341687.0|341692.0|341720.0|341894.0|342035.0|342077.0|342133.0|342237.0|342293.0|342323.0|342338.0|342430.0|342439.0|342442.0|342509.0|342617.0|342725.0|342742.0|342747.0|342941.0|343045.0|343075.0|343220.0|343247.0|343380.0|343449.0|343473.0|343504.0|343590.0|343611.0|343651.0|343698.0|343801.0|343805.0|343825.0|343954.0|344129.0|344238.0|344346.0|344358.0|344362.0|344459.0|344505.0|344577.0|344608.0|344631.0|344661.0|344670.0|344711.0|344792.0|344856.0|344877.0|344899.0|344965.0|344994.0|345006.0|345113.0|345172.0|345329.0|345435.0|345470.0|345489.0|345490.0|345500.0|345536.0|345639.0|345651.0|345700.0|345750.0|345794.0|345811.0|345822.0|345846.0|345911.0|345967.0|345975.0|346053.0|346122.0|346155.0|346182.0|346227.0|346278.0|346398.0|346480.0|346517.0|346568.0|346581.0|346616.0|346682.0|346723.0|346724.0|346754.0|346831.0|346965.0|346985.0|347084.0|347187.0|347261.0|347374.0|347387.0|347490.0|347587.0|347598.0|347600.0|347723.0|347797.0|347894.0|347911.0|347995.0|348012.0|348020.0|348135.0|348284.0|348334.0|348500.0|348528.0|348547.0|348560.0|348631.0|348702.0|348837.0|348871.0|348888.0|348992.0|349043.0|349075.0|349086.0|349117.0|349391.0|349409.0|349510.0|349662.0|349944.0|349971.0|350015.0|350016.0|350072.0|350075.0|350129.0|350196.0|350281.0|350288.0|350446.0|350520.0|350531.0|350588.0|350613.0|350680.0|350694.0|350722.0|350937.0|351017.0|351152.0|351184.0|351206.0|351369.0|351530.0|351606.0|351622.0|351725.0|351932.0|351935.0|352017.0|352036.0|352092.0|352233.0|352239.0|352339.0|352341.0|352449.0|352521.0|352541.0|352642.0|352646.0|352654.0|352665.0|352743.0|352756.0|352883.0|353165.0|353248.0|353293.0|353314.0|353324.0|353375.0|353529.0|353551.0|353582.0|353594.0|353637.0|353652.0|353808.0|353962.0|354098.0|354238.0|354286.0|354348.0|354394.0|354503.0|354558.0|354561.0|354679.0|354775.0|354804.0|354820.0|354826.0|354965.0|354980.0|355066.0|355097.0|355167.0|355232.0|355286.0|355312.0|355369.0|355403.0|355470.0|355475.0|355541.0|355633.0|355691.0|355824.0|355849.0|355851.0|355882.0|355954.0|355975.0|356063.0|356160.0|356371.0|356385.0|356456.0|356470.0|356480.0|356493.0|356541.0|356555.0|356682.0|356707.0|356825.0|356879.0|356883.0|357086.0|357089.0|357095.0|357173.0|357192.0|357295.0|357301.0|357459.0|357502.0|357511.0|357591.0|357635.0|357722.0|357780.0|357914.0|358283.0|358424.0|358566.0|358579.0|358601.0|358716.0|358758.0|358804.0|358842.0|358945.0|358982.0|359006.0|359152.0|359176.0|359605.0|359610.0|359620.0|359713.0|359796.0|359956.0|359977.0|360045.0|360080.0|360121.0|360142.0|360250.0|360337.0|360517.0|360571.0|360622.0|360625.0|360661.0|360675.0|360679.0|360861.0|360877.0|360886.0|360925.0|361008.0|361026.0|361097.0|361111.0|361127.0|361307.0|361329.0|361331.0|361413.0|361430.0|361476.0|361525.0|361624.0|361632.0|361730.0|361752.0|361854.0|361941.0|361957.0|361975.0|362075.0|362238.0|362363.0|362468.0|362504.0|362642.0|362658.0|362670.0|362714.0|362784.0|362825.0|362865.0|362889.0|362930.0|362996.0|363038.0|363040.0|363048.0|363072.0|363277.0|363349.0|363541.0|363587.0|363652.0|363734.0|363839.0|363854.0|363899.0|363902.0|364103.0|364119.0|364299.0|364366.0|364470.0|364559.0|364561.0|364662.0|364682.0|364736.0|364758.0|364763.0|364811.0|364833.0|364875.0|364894.0|364973.0|365134.0|365167.0|365199.0 +in.representative_income metadata_and_annual usd float 365238.0|365415.0|365420.0|365443.0|365481.0|365650.0|365673.0|365739.0|365847.0|365864.0|365906.0|366046.0|366077.0|366166.0|366265.0|366279.0|366475.0|366496.0|366683.0|366691.0|366713.0|366763.0|366885.0|366905.0|367003.0|367087.0|367094.0|367120.0|367197.0|367226.0|367360.0|367619.0|367636.0|367657.0|367693.0|367713.0|367774.0|367792.0|368058.0|368097.0|368163.0|368246.0|368602.0|368665.0|368703.0|368944.0|369112.0|369156.0|369196.0|369260.0|369267.0|369304.0|369323.0|369365.0|369503.0|369511.0|369534.0|369588.0|369639.0|369713.0|369725.0|369737.0|369953.0|370167.0|370287.0|370291.0|370340.0|370377.0|370447.0|370589.0|370709.0|370723.0|370725.0|370748.0|370877.0|371010.0|371013.0|371033.0|371127.0|371142.0|371198.0|371222.0|371322.0|371413.0|371432.0|371527.0|371548.0|371643.0|371681.0|371733.0|371854.0|372114.0|372276.0|372355.0|372487.0|372616.0|372664.0|372744.0|372762.0|372845.0|372916.0|372946.0|373076.0|373270.0|373330.0|373346.0|373451.0|373560.0|373627.0|373646.0|373754.0|373764.0|373843.0|373858.0|373929.0|374069.0|374211.0|374383.0|374385.0|374417.0|374419.0|374512.0|374599.0|374633.0|374663.0|374691.0|374764.0|374807.0|374865.0|374890.0|374923.0|374933.0|374977.0|375018.0|375140.0|375215.0|375385.0|375439.0|375449.0|375471.0|375571.0|375707.0|375772.0|375774.0|375787.0|375901.0|376004.0|376077.0|376112.0|376177.0|376178.0|376188.0|376243.0|376480.0|376494.0|376760.0|376780.0|376784.0|376868.0|376892.0|377084.0|377127.0|377300.0|377318.0|377338.0|377399.0|377511.0|377549.0|377615.0|377840.0|377854.0|377948.0|377961.0|378077.0|378130.0|378164.0|378178.0|378337.0|378391.0|378400.0|378543.0|378597.0|378603.0|378804.0|378853.0|378905.0|378928.0|379025.0|379063.0|379162.0|379236.0|379245.0|379265.0|379472.0|379574.0|379658.0|379673.0|379815.0|379884.0|379916.0|380001.0|380109.0|380219.0|380291.0|380501.0|380506.0|380538.0|380559.0|380606.0|380608.0|380647.0|380825.0|380866.0|381075.0|381085.0|381482.0|381513.0|381611.0|381638.0|381761.0|381767.0|381925.0|381947.0|382040.0|382066.0|382084.0|382148.0|382162.0|382255.0|382277.0|382340.0|382464.0|382486.0|382611.0|382643.0|382669.0|382822.0|382845.0|382900.0|383081.0|383185.0|383350.0|383436.0|383567.0|383700.0|383855.0|383877.0|384057.0|384295.0|384360.0|384423.0|384648.0|384732.0|384739.0|384835.0|384865.0|384931.0|385025.0|385052.0|385089.0|385133.0|385168.0|385248.0|385583.0|385691.0|385728.0|385763.0|385875.0|385986.0|386124.0|386178.0|386382.0|386441.0|386549.0|386710.0|386794.0|386808.0|386898.0|387041.0|387532.0|387564.0|387779.0|387826.0|387889.0|387989.0|388051.0|388095.0|388300.0|388588.0|388622.0|388727.0|388753.0|388857.0|388862.0|388906.0|388960.0|388969.0|389108.0|389149.0|389411.0|389663.0|389683.0|389782.0|389815.0|389833.0|389877.0|389889.0|390049.0|390158.0|390204.0|390266.0|390306.0|390590.0|390628.0|390732.0|390736.0|390825.0|390921.0|391023.0|391048.0|391128.0|391130.0|391195.0|391229.0|391379.0|391436.0|391594.0|391670.0|391734.0|391779.0|391809.0|391849.0|391891.0|391936.0|391952.0|392210.0|392229.0|392313.0|392883.0|392946.0|392983.0|393035.0|393419.0|393451.0|393633.0|393856.0|393956.0|393957.0|394015.0|394106.0|394156.0|394172.0|394180.0|394260.0|394422.0|394480.0|394587.0|394654.0|394825.0|394967.0|395017.0|395029.0|395169.0|395372.0|395452.0|395477.0|395636.0|395722.0|395730.0|395872.0|395938.0|396077.0|396103.0|396215.0|396280.0|396294.0|396371.0|396479.0|396482.0|396532.0|396533.0|396785.0|396903.0|397006.0|397176.0|397189.0|397218.0|397234.0|397315.0|397391.0|397613.0|397713.0|397721.0|397992.0|397997.0|398130.0|398199.0|398243.0|398249.0|398261.0|398347.0|398759.0|398910.0|398966.0|398993.0|399007.0|399108.0|399172.0|399323.0|399378.0|399557.0|399774.0|400017.0|400206.0|400314.0|400322.0|400396.0|400725.0|400750.0|400854.0|401028.0|401178.0|401179.0|401235.0|401287.0|401395.0|401470.0|401533.0|401699.0|401836.0|401910.0|402038.0|402067.0|402163.0|402221.0|402240.0|402266.0|402846.0|402908.0|403015.0|403048.0|403298.0|403339.0|403617.0|403856.0|404058.0|404096.0|404329.0|404441.0|404563.0|404636.0|404664.0|404691.0|405068.0|405077.0|405169.0|405177.0|405335.0|405360.0|405608.0|405764.0|405903.0|406023.0|406078.0|406160.0|406193.0|406234.0|406392.0|406684.0|406837.0|406908.0|407139.0|407184.0|407337.0|407374.0|407424.0|407681.0|407695.0|407710.0|407911.0|407940.0|408008.0|408099.0|408249.0|408402.0|408418.0|408455.0|408555.0|408576.0|408634.0|408958.0|409109.0|409187.0|409336.0|409614.0|409816.0|409820.0|409842.0|410057.0|410097.0|410119.0|410147.0|410208.0|410220.0|410241.0|410518.0|410576.0|410578.0|410624.0|410902.0|411129.0|411238.0|411296.0|411327.0|411331.0|411401.0|411659.0|411667.0|411929.0|412065.0|412139.0|412204.0|412581.0|412739.0|412793.0|412846.0|412993.0|413278.0|413385.0|413405.0|413820.0|413936.0|414159.0|414260.0|414460.0|414850.0|415057.0|415425.0|415440.0|415515.0|415525.0|415676.0|415765.0|415881.0|415981.0|416253.0|416316.0|416358.0|416499.0|416604.0|416737.0|416787.0|417062.0|417190.0|417624.0|417738.0|417998.0|418046.0|418099.0|418142.0|418146.0|418200.0|418466.0|418645.0|418682.0|418770.0|418806.0|418975.0|418995.0|419210.0|419222.0|419719.0|419733.0|419801.0|419839.0|420110.0|420220.0|420303.0|420624.0|420735.0|420792.0|420936.0|421230.0|421245.0|421383.0|421470.0|421509.0|421837.0|421843.0|421865.0|422053.0|422241.0|422248.0|422463.0|422510.0|422680.0|422767.0|422939.0|422948.0|423108.0|423154.0|423210.0|423544.0|423721.0|423926.0|424030.0|424261.0|424517.0|424545.0|424867.0|424959.0|424968.0|424969.0|425006.0|425217.0|425383.0|425408.0|425569.0|425622.0|425639.0|426029.0|426060.0|426159.0|426374.0|426506.0|426786.0|426799.0|426872.0|427021.0|427115.0|427232.0|427233.0|427291.0|427325.0|427352.0|427467.0|427537.0|427853.0|427866.0|428170.0|428191.0|428299.0|428307.0|429084.0|429224.0|429312.0|429342.0|429380.0|429487.0|429755.0|430027.0|430068.0|430115.0|430178.0|430193.0|430279.0|430322.0|430453.0|430912.0|431043.0|431107.0|431147.0|431432.0|431527.0|431534.0|431939.0|432178.0|432188.0|432210.0|432494.0|432600.0|432728.0|433210.0|433352.0|433409.0|433443.0|433766.0|433857.0|434242.0|434318.0|434349.0|434362.0|434447.0|434463.0|434498.0|434747.0|434757.0|434867.0|435273.0|435373.0|435446.0|435451.0|435552.0|435820.0|435928.0|435974.0|436079.0|436304.0|436655.0|436674.0|436764.0|437140.0|437266.0|437393.0|437556.0|437590.0|437662.0|437872.0|437967.0|437999.0|438290.0|438292.0|438367.0|438403.0|438611.0|438706.0|438715.0|438934.0|439050.0|439193.0|439398.0|439413.0|439427.0|439876.0|439967.0|440193.0|440224.0|440322.0|440430.0|440562.0|440832.0|440945.0|441029.0|441048.0|441188.0|441295.0|441572.0|441879.0|441912.0|442221.0|442261.0|442365.0|442453.0|442493.0|442561.0|442636.0|442934.0|442992.0|443215.0|443454.0|443656.0|443730.0|443989.0|444556.0|445154.0|445201.0|445381.0|445587.0|445887.0|446233.0|446234.0|447153.0|447205.0|447315.0|447494.0|447628.0|447650.0|448165.0|448208.0|448681.0|448702.0|448917.0|449473.0|449475.0|449515.0|449579.0|449775.0|449882.0|450204.0|450312.0|450525.0|450556.0|450745.0|450848.0|450951.0|451278.0|451372.0|451385.0|451415.0|451420.0|451636.0|451715.0|451737.0|451776.0|451900.0|451922.0|452040.0|452137.0|452242.0|452285.0|452374.0|452426.0|452566.0|452717.0|452808.0|452911.0|452995.0|453149.0|453220.0|453353.0|453555.0|453797.0|453839.0|453959.0|454219.0|454355.0|454496.0|454565.0|454664.0|454870.0|455143.0|455207.0|455274.0|455418.0|455589.0|455600.0|455695.0|455959.0|456080.0|456222.0|456592.0|457147.0|457290.0|457964.0|458332.0|458363.0|458553.0|458583.0|458753.0|458767.0|458859.0|458900.0|459009.0|459200.0|459386.0|459426.0|459436.0|459808.0|459818.0|460028.0|460124.0|460280.0|460348.0|460510.0|460626.0|460863.0|460968.0|460993.0|461059.0|461368.0|461583.0|461690.0|461793.0|461901.0|462091.0|462181.0|462646.0|462882.0|462972.0|463521.0|463730.0|463900.0|464153.0|464386.0|464396.0|464602.0|464667.0|464803.0|464818.0|464829.0|465165.0|465185.0|465683.0|465876.0|466136.0|466216.0|466732.0|466951.0|466993.0|467191.0|467195.0|467247.0|467697.0|468024.0|468245.0|468303.0|468707.0|468795.0|469010.0|469300.0|469342.0|469827.0|470171.0|470291.0|470355.0|470651.0|470728.0|471409.0|471738.0|471949.0|472598.0|472748.0|473436.0|473678.0|473758.0|473859.0|474045.0|474467.0|474468.0|474571.0|474572.0|475407.0|475499.0|475538.0|475778.0|476682.0|476687.0|476788.0|477568.0|477684.0|478108.0|478436.0|478491.0|478648.0|478791.0|478809.0|479510.0|479832.0|479846.0|480526.0|480829.0|481132.0|481479.0|481688.0|481889.0|481958.0|481979.0|482086.0|482204.0|482430.0|482615.0|482719.0|483266.0|483647.0|483751.0|483859.0|484051.0|484061.0|484064.0|484264.0|484870.0|484885.0|485199.0|485298.0|485347.0|485814.0|486174.0|486212.0|486846.0|487228.0|487292.0|487346.0|487356.0|487877.0|487900.0|487920.0|487991.0|488072.0|488283.0|488373.0|488705.0|488908.0|489020.0|489171.0|489337.0|490533.0|490971.0|491614.0|491639.0|492042.0|492078.0|492694.0|493343.0|493555.0|493787.0|493961.0|494109.0|494272.0|494610.0|494860.0 +in.representative_income metadata_and_annual usd float 494971.0|495138.0|496298.0|496470.0|496991.0|497016.0|497160.0|497774.0|498416.0|499223.0|499883.0|500022.0|500032.0|500254.0|500564.0|500938.0|501032.0|501234.0|501300.0|501492.0|501554.0|502042.0|502345.0|503052.0|503349.0|503447.0|503574.0|503607.0|504091.0|504380.0|504521.0|504903.0|505073.0|505156.0|505721.0|505745.0|506083.0|506210.0|507093.0|507174.0|507265.0|507295.0|507742.0|508815.0|509118.0|509374.0|510123.0|510376.0|510568.0|510846.0|511133.0|511335.0|511436.0|511600.0|511938.0|513659.0|514164.0|514332.0|514504.0|514695.0|515004.0|515073.0|515174.0|515384.0|515726.0|516032.0|516329.0|517068.0|517194.0|517402.0|517545.0|517789.0|518204.0|518476.0|518581.0|518820.0|518866.0|519336.0|519619.0|519720.0|519851.0|519921.0|520226.0|520623.0|520786.0|521639.0|521867.0|521915.0|522029.0|522282.0|523255.0|523462.0|523843.0|524139.0|524277.0|524916.0|525108.0|525193.0|525275.0|526041.0|526248.0|526660.0|527198.0|527296.0|527303.0|527619.0|527701.0|528103.0|528350.0|528352.0|528517.0|528990.0|529210.0|530167.0|530326.0|531198.0|531336.0|531591.0|531894.0|531943.0|532346.0|532671.0|532849.0|532996.0|533075.0|533357.0|533631.0|533752.0|533968.0|534685.0|535002.0|535324.0|535436.0|535651.0|536355.0|536387.0|537143.0|537216.0|538407.0|538871.0|539114.0|539215.0|539731.0|541012.0|541018.0|541438.0|541837.0|542044.0|542448.0|542544.0|542650.0|543166.0|543458.0|543472.0|543692.0|545312.0|545637.0|545989.0|547340.0|547762.0|548122.0|548395.0|548954.0|549014.0|549519.0|549868.0|551539.0|552086.0|552343.0|552549.0|552858.0|553363.0|553879.0|553899.0|554090.0|554195.0|554281.0|556590.0|557120.0|557389.0|557523.0|557570.0|557600.0|557804.0|558279.0|558941.0|559267.0|559995.0|560079.0|560327.0|560341.0|560555.0|560631.0|560764.0|560770.0|560985.0|561050.0|561136.0|561414.0|562105.0|562141.0|562487.0|564204.0|564514.0|564699.0|564869.0|566268.0|566641.0|566781.0|567299.0|567378.0|567787.0|568855.0|570227.0|570393.0|570617.0|571742.0|572149.0|572456.0|572649.0|573488.0|573705.0|576793.0|576869.0|576970.0|577515.0|578955.0|579217.0|579400.0|579662.0|579823.0|581826.0|582771.0|582883.0|583197.0|583957.0|584534.0|584601.0|585307.0|586695.0|587928.0|588470.0|588959.0|590010.0|590157.0|590397.0|591023.0|591470.0|592745.0|593638.0|594975.0|595765.0|596907.0|597005.0|597267.0|599121.0|599200.0|599274.0|599333.0|600026.0|600595.0|602046.0|602902.0|604431.0|606804.0|607097.0|608412.0|608557.0|609754.0|610633.0|611671.0|612148.0|614835.0|615178.0|616948.0|617634.0|617840.0|620109.0|620561.0|621487.0|622213.0|623431.0|625821.0|626221.0|626688.0|626894.0|627490.0|629041.0|629600.0|630424.0|632351.0|633155.0|634019.0|634371.0|635928.0|635965.0|636829.0|637402.0|637438.0|638412.0|642555.0|642654.0|645143.0|645281.0|645483.0|646149.0|646650.0|649578.0|650533.0|653194.0|653564.0|655877.0|659625.0|660171.0|661264.0|662292.0|662328.0|663665.0|667946.0|667968.0|669832.0|670972.0|671241.0|671512.0|671746.0|672757.0|672816.0|672838.0|673868.0|674737.0|677807.0|678428.0|680759.0|681344.0|682858.0|683853.0|685915.0|686899.0|687909.0|688081.0|689010.0|689369.0|692911.0|692960.0|693719.0|693984.0|694521.0|695198.0|699266.0|700259.0|701387.0|702859.0|703386.0|703553.0|705514.0|705547.0|707640.0|708062.0|709228.0|711647.0|712030.0|712253.0|712455.0|713218.0|715183.0|721244.0|721969.0|724578.0|725284.0|725780.0|731019.0|732355.0|733639.0|734132.0|740333.0|743058.0|743972.0|752547.0|752989.0|757409.0|759629.0|759974.0|760593.0|761637.0|763274.0|769230.0|771751.0|775777.0|776802.0|777812.0|778299.0|785502.0|787760.0|788959.0|792964.0|796802.0|797062.0|798337.0|804120.0|806160.0|812514.0|812681.0|821551.0|838012.0|842658.0|844820.0|849916.0|870030.0|880174.0|885986.0|898395.0|910125.0|922093.0|937415.0|945842.0|980808.0|988326.0|1004749.0|1009135.0|1023201.0|1032484.0|1035234.0|1066686.0|1096007.0|1114719.0|1165541.0|1216289.0|1278844.0|1328393.0|1648476.0|1771970.0 +in.county_name metadata_and_annual n/a string Abbeville County|Acadia Parish|Accomack County|Ada County|Adair County|Adams County|Addison County|Aiken County|Aitkin County|Alachua County|Alamance County|Alameda County|Alamosa County|Albany County|Albemarle County|Alcona County|Alcorn County|Aleutians East Borough|Aleutians West Census Area|Alexander County|Alexandria city|Alfalfa County|Alger County|Allamakee County|Allegan County|Allegany County|Alleghany County|Allegheny County|Allen County|Allen Parish|Allendale County|Alpena County|Alpine County|Amador County|Amelia County|Amherst County|Amite County|Anchorage Municipality|Anderson County|Andrew County|Andrews County|Androscoggin County|Angelina County|Anne Arundel County|Anoka County|Anson County|Antelope County|Antrim County|Apache County|Appanoose County|Appling County|Appomattox County|Aransas County|Arapahoe County|Archer County|Archuleta County|Arenac County|Arkansas County|Arlington County|Armstrong County|Aroostook County|Arthur County|Ascension Parish|Ashe County|Ashland County|Ashley County|Ashtabula County|Asotin County|Assumption Parish|Atascosa County|Atchison County|Athens County|Atkinson County|Atlantic County|Atoka County|Attala County|Audrain County|Audubon County|Auglaize County|Augusta County|Aurora County|Austin County|Autauga County|Avery County|Avoyelles Parish|Baca County|Bacon County|Bailey County|Baker County|Baldwin County|Ballard County|Baltimore County|Baltimore city|Bamberg County|Bandera County|Banks County|Banner County|Bannock County|Baraga County|Barber County|Barbour County|Barnes County|Barnstable County|Barnwell County|Barren County|Barron County|Barrow County|Barry County|Bartholomew County|Barton County|Bartow County|Bastrop County|Bates County|Bath County|Baxter County|Bay County|Bayfield County|Baylor County|Beadle County|Bear Lake County|Beaufort County|Beauregard Parish|Beaver County|Beaverhead County|Becker County|Beckham County|Bedford County|Bee County|Belknap County|Bell County|Belmont County|Beltrami County|Ben Hill County|Benewah County|Bennett County|Bennington County|Benson County|Bent County|Benton County|Benzie County|Bergen County|Berkeley County|Berks County|Berkshire County|Bernalillo County|Berrien County|Bertie County|Bethel Census Area|Bexar County|Bibb County|Bienville Parish|Big Horn County|Big Stone County|Billings County|Bingham County|Black Hawk County|Blackford County|Bladen County|Blaine County|Blair County|Blanco County|Bland County|Bleckley County|Bledsoe County|Blount County|Blue Earth County|Boise County|Bolivar County|Bollinger County|Bon Homme County|Bond County|Bonner County|Bonneville County|Boone County|Borden County|Bosque County|Bossier Parish|Botetourt County|Bottineau County|Boulder County|Boundary County|Bourbon County|Bowie County|Bowman County|Box Butte County|Box Elder County|Boyd County|Boyle County|Bracken County|Bradford County|Bradley County|Branch County|Brantley County|Braxton County|Brazoria County|Brazos County|Breathitt County|Breckinridge County|Bremer County|Brevard County|Brewster County|Briscoe County|Bristol Bay Borough|Bristol County|Bristol city|Broadwater County|Bronx County|Brooke County|Brookings County|Brooks County|Broome County|Broomfield County|Broward County|Brown County|Brule County|Brunswick County|Bryan County|Buchanan County|Buckingham County|Bucks County|Buena Vista County|Buena Vista city|Buffalo County|Bullitt County|Bulloch County|Bullock County|Buncombe County|Bureau County|Burke County|Burleigh County|Burleson County|Burlington County|Burnet County|Burnett County|Burt County|Butler County|Butte County|Butts County|Cabarrus County|Cabell County|Cache County|Caddo County|Caddo Parish|Calaveras County|Calcasieu Parish|Caldwell County|Caldwell Parish|Caledonia County|Calhoun County|Callahan County|Callaway County|Calloway County|Calumet County|Calvert County|Camas County|Cambria County|Camden County|Cameron County|Cameron Parish|Camp County|Campbell County|Canadian County|Candler County|Cannon County|Canyon County|Cape Girardeau County|Cape May County|Carbon County|Caribou County|Carlisle County|Carlton County|Caroline County|Carroll County|Carson City|Carson County|Carter County|Carteret County|Carver County|Cascade County|Casey County|Cass County|Cassia County|Castro County|Caswell County|Catahoula Parish|Catawba County|Catoosa County|Catron County|Cattaraugus County|Cavalier County|Cayuga County|Cecil County|Cedar County|Centre County|Cerro Gordo County|Chaffee County|Chambers County|Champaign County|Chariton County|Charles City County|Charles County|Charles Mix County|Charleston County|Charlevoix County|Charlotte County|Charlottesville city|Charlton County|Chase County|Chatham County|Chattahoochee County|Chattooga County|Chautauqua County|Chaves County|Cheatham County|Cheboygan County|Chelan County|Chemung County|Chenango County|Cherokee County|Cherry County|Chesapeake city|Cheshire County|Chester County|Chesterfield County|Cheyenne County|Chickasaw County|Chicot County|Childress County|Chilton County|Chippewa County|Chisago County|Chittenden County|Choctaw County|Chouteau County|Chowan County|Christian County|Churchill County|Cibola County|Cimarron County|Citrus County|Clackamas County|Claiborne County|Claiborne Parish|Clallam County|Clare County|Clarendon County|Clarion County|Clark County|Clarke County|Clatsop County|Clay County|Clayton County|Clear Creek County|Clearfield County|Clearwater County|Cleburne County|Clermont County|Cleveland County|Clinch County|Clinton County|Cloud County|Coahoma County|Coal County|Cobb County|Cochise County|Cochran County|Cocke County|Coconino County|Codington County|Coffee County|Coffey County|Coke County|Colbert County|Cole County|Coleman County|Coles County|Colfax County|Colleton County|Collier County|Collin County|Collingsworth County|Colonial Heights city|Colorado County|Colquitt County|Columbia County|Columbiana County|Columbus County|Colusa County|Comal County|Comanche County|Concho County|Concordia Parish|Conecuh County|Conejos County|Contra Costa County|Converse County|Conway County|Cook County|Cooke County|Cooper County|Coos County|Coosa County|Copiah County|Corson County|Cortland County|Coryell County|Coshocton County|Costilla County|Cottle County|Cotton County|Cottonwood County|Covington County|Covington city|Coweta County|Cowley County|Cowlitz County|Craig County|Craighead County|Crane County|Craven County|Crawford County|Creek County|Crenshaw County|Crisp County|Crittenden County|Crockett County|Crook County|Crosby County|Cross County|Crow Wing County|Crowley County|Culberson County|Cullman County|Culpeper County|Cumberland County|Cuming County|Currituck County|Curry County|Custer County|Cuyahoga County|Dade County|Daggett County|Dakota County|Dale County|Dallam County|Dallas County|Dane County|Daniels County|Danville city|Dare County|Darke County|Darlington County|Dauphin County|Davidson County|Davie County|Daviess County|Davis County|Davison County|Dawes County|Dawson County|Day County|De Baca County|De Soto Parish|De Witt County|DeKalb County|DeSoto County|DeWitt County|Deaf Smith County|Dearborn County|Decatur County|Deer Lodge County|Defiance County|Del Norte County|Delaware County|Delta County|Denali Borough|Dent County|Denton County|Denver County|Des Moines County|Deschutes County|Desha County|Deuel County|Dewey County|Dickens County|Dickenson County|Dickey County|Dickinson County|Dickson County|Dillingham Census Area|Dillon County|Dimmit County|Dinwiddie County|District of Columbia|Divide County|Dixie County|Dixon County|Doddridge County|Dodge County|Dolores County|Dona Ana County|Doniphan County|Donley County|Dooly County|Door County|Dorchester County|Dougherty County|Douglas County|Drew County|DuPage County|Dubois County|Dubuque County|Duchesne County|Dukes County|Dundy County|Dunklin County|Dunn County|Duplin County|Durham County|Dutchess County|Duval County|Dyer County|Eagle County|Early County|East Baton Rouge Parish|East Carroll Parish|East Feliciana Parish|Eastland County|Eaton County|Eau Claire County|Echols County|Ector County|Eddy County|Edgar County|Edgecombe County|Edgefield County|Edmonson County|Edmunds County|Edwards County|Effingham County|El Dorado County|El Paso County|Elbert County|Elk County|Elkhart County|Elko County|Elliott County|Ellis County|Ellsworth County|Elmore County|Emanuel County|Emery County|Emmet County|Emmons County|Emporia city|Erath County|Erie County|Escambia County|Esmeralda County|Essex County|Estill County|Etowah County|Eureka County|Evangeline Parish|Evans County|Fairbanks North Star Borough|Fairfax County|Fairfax city|Fairfield County|Fall River County|Fallon County|Falls Church city|Falls County|Fannin County|Faribault County|Faulk County|Faulkner County|Fauquier County|Fayette County|Fentress County|Fergus County|Ferry County|Fillmore County|Finney County|Fisher County|Flagler County|Flathead County|Fleming County|Florence County|Floyd County|Fluvanna County|Foard County|Fond du Lac County|Ford County|Forest County|Forrest County|Forsyth County|Fort Bend County|Foster County|Fountain County|Franklin County|Franklin Parish|Franklin city|Frederick County|Fredericksburg city|Freeborn County|Freestone County|Fremont County|Fresno County|Frio County|Frontier County|Fulton County|Furnas County|Gadsden County|Gage County|Gaines County|Galax city|Gallatin County|Gallia County|Galveston County|Garden County|Garfield County|Garland County|Garrard County|Garrett County|Garvin County|Garza County|Gasconade County|Gaston County|Gates County|Geary County|Geauga County|Gem County|Genesee County|Geneva County|Gentry County|George County|Georgetown County|Gibson County|Gila County|Gilchrist County|Giles County|Gillespie County|Gilliam County|Gilmer County|Gilpin County|Glacier County|Glades County|Gladwin County|Glascock County|Glasscock County|Glenn County|Gloucester County|Glynn County|Gogebic County|Golden Valley County|Goliad County|Gonzales County|Goochland County|Goodhue County|Gooding County|Gordon County|Goshen County|Gosper County|Gove County|Grady County|Grafton County|Graham County|Grainger County|Grand County|Grand Forks County|Grand Isle County|Grand Traverse County|Granite County|Grant County|Grant Parish|Granville County|Gratiot County|Graves County|Gray County|Grays Harbor County|Grayson County|Greeley County|Green County|Green Lake County|Greenbrier County|Greene County|Greenlee County|Greensville County|Greenup County|Greenville County|Greenwood County|Greer County|Gregg County|Gregory County|Grenada County|Griggs County|Grimes County|Grundy County|Guadalupe County|Guernsey County|Guilford County|Gulf County|Gunnison County|Guthrie County|Gwinnett County|Haakon County|Habersham County|Haines Borough|Hale County|Halifax County|Hall County|Hamblen County|Hamilton County|Hamlin County|Hampden County|Hampshire County|Hampton County|Hampton city|Hancock County|Hand County|Hanover County|Hansford County|Hanson County|Haralson County|Hardee County|Hardeman County|Hardin County|Harding County|Hardy County|Harford County|Harlan County|Harmon County|Harnett County|Harney County|Harper County|Harris County|Harrison County|Harrisonburg city|Hart County|Hartford County|Hartley County|Harvey County|Haskell County|Hawaii County|Hawkins County|Hayes County|Hays County|Haywood County|Heard County|Hemphill County|Hempstead County|Henderson County|Hendricks County|Hendry County|Hennepin County|Henrico County|Henry County|Herkimer County|Hernando County|Hertford County|Hettinger County|Hickman County|Hickory County|Hidalgo County|Highland County|Highlands County|Hill County|Hillsborough County|Hillsdale County|Hinds County|Hinsdale County|Hitchcock County|Hocking County|Hockley County|Hodgeman County|Hoke County|Holmes County|Holt County|Honolulu County|Hood County|Hood River County|Hooker County|Hoonah-Angoon Census Area|Hopewell city|Hopkins County|Horry County|Hot Spring County|Hot Springs County|Houghton County|Houston County|Howard County|Howell County|Hubbard County|Hudson County|Hudspeth County|Huerfano County|Hughes County|Humboldt County|Humphreys County|Hunt County|Hunterdon County|Huntingdon County|Huntington County|Huron County|Hutchinson County|Hyde County|Iberia Parish|Iberville Parish|Ida County|Idaho County|Imperial County|Independence County|Indian River County|Indiana County|Ingham County|Inyo County|Ionia County|Iosco County|Iowa County|Iredell County|Irion County|Iron County|Iroquois County|Irwin County|Isabella County|Isanti County|Island County|Isle of Wight County|Issaquena County|Itasca County|Itawamba County|Izard County|Jack County|Jackson County|Jackson Parish|James City County|Jasper County|Jay County|Jeff Davis County|Jefferson County|Jefferson Davis County|Jefferson Davis Parish|Jefferson Parish|Jenkins County|Jennings County|Jerauld County|Jerome County|Jersey County|Jessamine County|Jewell County|Jim Hogg County|Jim Wells County|Jo Daviess County|Johnson County|Johnston County|Jones County|Josephine County|Juab County|Judith Basin County|Juneau City and Borough|Juneau County|Juniata County|Kalamazoo County|Kalkaska County|Kanabec County|Kanawha County|Kandiyohi County|Kane County|Kankakee County|Karnes County|Kauai County|Kaufman County|Kay County|Kearney County|Kearny County|Keith County|Kemper County|Kenai Peninsula Borough|Kendall County|Kenedy County|Kennebec County|Kenosha County|Kent County|Kenton County|Keokuk County|Kern County|Kerr County|Kershaw County|Ketchikan Gateway Borough|Kewaunee County|Keweenaw County|Keya Paha County|Kidder County|Kimball County|Kimble County|King County|King George County|King William County|King and Queen County|Kingfisher County|Kingman County|Kings County|Kingsbury County|Kinney County|Kiowa County|Kit Carson County|Kitsap County|Kittitas County|Kittson County|Klamath County|Kleberg County|Klickitat County|Knott County|Knox County|Kodiak Island Borough|Koochiching County|Kootenai County|Kosciusko County|Kossuth County|Kusilvak Census Area|La Crosse County|La Paz County|La Plata County|La Salle County|La Salle Parish|LaGrange County|LaMoure County|LaPorte County|LaSalle County|Labette County|Lac qui Parle County|Lackawanna County|Laclede County|Lafayette County|Lafayette Parish|Lafourche Parish|Lake County|Lake and Peninsula Borough|Lake of the Woods County|Lamar County|Lamb County|Lamoille County|Lampasas County|Lancaster County|Lander County|Lane County|Langlade County|Lanier County|Lapeer County|Laramie County|Larimer County|Larue County|Las Animas County|Lassen County|Latah County|Latimer County|Lauderdale County|Laurel County|Laurens County|Lavaca County|Lawrence County|Le Flore County|Le Sueur County|Lea County|Leake County|Leavenworth County|Lebanon County|Lee County|Leelanau County|Leflore County|Lehigh County|Lemhi County|Lenawee County|Lenoir County|Leon County|Leslie County|Letcher County|Levy County|Lewis County|Lewis and Clark County|Lexington County|Lexington city|Liberty County|Licking County|Limestone County|Lincoln County|Lincoln Parish|Linn County|Lipscomb County|Litchfield County|Little River County|Live Oak County|Livingston County|Livingston Parish|Llano County|Logan County|Long County|Lonoke County|Lorain County|Los Alamos County|Los Angeles County|Loudon County|Loudoun County|Louisa County|Loup County|Love County|Lowndes County|Lubbock County|Lucas County|Luce County|Lumpkin County|Luna County|Lunenburg County|Luzerne County|Lycoming County|Lyman County|Lynchburg city|Lynn County|Lyon County|Mackinac County|Macomb County|Macon County|Macoupin County|Madera County|Madison County|Madison Parish|Magoffin County|Mahaska County|Mahnomen County|Mahoning County|Major County|Malheur County|Manassas Park city|Manassas city|Manatee County|Manistee County|Manitowoc County|Marathon County|Marengo County|Maricopa County|Maries County|Marin County|Marinette County|Marion County|Mariposa County|Marlboro County|Marquette County|Marshall County|Martin County|Martinsville city|Mason County|Massac County|Matagorda County|Matanuska-Susitna Borough|Mathews County|Maui County|Maury County|Maverick County|Mayes County|McClain County|McCone County|McCook County|McCormick County|McCracken County|McCreary County|McCulloch County|McCurtain County|McDonald County|McDonough County|McDowell County|McDuffie County|McHenry County|McIntosh County|McKean County|McKenzie County|McKinley County|McLean County|McLennan County|McLeod County|McMinn County|McMullen County|McNairy County|McPherson County|Meade County|Meagher County|Mecklenburg County|Mecosta County|Medina County|Meeker County|Meigs County|Mellette County|Menard County|Mendocino County|Menifee County|Menominee County|Merced County|Mercer County|Meriwether County|Merrick County|Merrimack County|Mesa County|Metcalfe County|Miami County|Miami-Dade County|Middlesex County|Midland County|Mifflin County|Milam County|Millard County|Mille Lacs County|Miller County|Mills County|Milwaukee County|Miner County|Mineral County|Mingo County|Minidoka County|Minnehaha County|Missaukee County|Mississippi County|Missoula County|Mitchell County|Mobile County|Modoc County|Moffat County|Mohave County|Moniteau County|Monmouth County|Mono County|Monona County|Monongalia County|Monroe County|Montague County|Montcalm County|Monterey County|Montezuma County|Montgomery County|Montmorency County|Montour County|Montrose County|Moody County|Moore County|Mora County|Morehouse Parish|Morgan County|Morrill County|Morris County|Morrison County|Morrow County|Morton County|Motley County|Moultrie County|Mountrail County|Mower County|Muhlenberg County|Multnomah County|Murray County|Muscatine County|Muscogee County|Muskegon County|Muskingum County|Muskogee County|Musselshell County|Nacogdoches County|Nance County|Nantucket County|Napa County|Nash County|Nassau County|Natchitoches Parish|Natrona County|Navajo County|Navarro County|Nelson County|Nemaha County|Neosho County|Neshoba County|Ness County|Nevada County|New Castle County|New Hanover County|New Haven County|New Kent County|New London County|New Madrid County|New York County|Newaygo County|Newberry County|Newport County|Newport News city|Newton County|Nez Perce County|Niagara County|Nicholas County|Nicollet County|Niobrara County|Noble County|Nobles County|Nodaway County|Nolan County|Nome Census Area|Norfolk County|Norfolk city|Norman County|North Slope Borough|Northampton County|Northumberland County|Northwest Arctic Borough|Norton County|Norton city|Nottoway County|Nowata County|Noxubee County|Nuckolls County|Nueces County|Nye County|O'Brien County|Oakland County|Obion County|Ocean County|Oceana County|Ochiltree County|Oconee County|Oconto County|Ogemaw County|Oglala Lakota County|Ogle County|Oglethorpe County|Ohio County|Okaloosa County|Okanogan County|Okeechobee County|Okfuskee County|Oklahoma County|Okmulgee County|Oktibbeha County|Oldham County|Oliver County|Olmsted County|Oneida County|Onondaga County|Onslow County|Ontario County|Ontonagon County|Orange County|Orangeburg County|Oregon County|Orleans County|Orleans Parish|Osage County|Osborne County|Osceola County|Oscoda County|Oswego County|Otero County|Otoe County|Otsego County|Ottawa County|Otter Tail County|Ouachita County|Ouachita Parish|Ouray County|Outagamie County|Overton County|Owen County|Owsley County|Owyhee County|Oxford County|Ozark County|Ozaukee County|Pacific County|Page County|Palm Beach County|Palo Alto County|Palo Pinto County|Pamlico County|Panola County|Park County|Parke County|Parker County|Parmer County|Pasco County|Pasquotank County|Passaic County|Patrick County|Paulding County|Pawnee County|Payette County|Payne County|Peach County|Pearl River County|Pecos County|Pembina County|Pemiscot County|Pend Oreille County|Pender County|Pendleton County|Pennington County|Penobscot County|Peoria County|Pepin County|Perkins County|Perquimans County|Perry County|Pershing County|Person County|Petersburg Borough|Petersburg city|Petroleum County|Pettis County|Phelps County|Philadelphia County|Phillips County|Piatt County|Pickaway County|Pickens County|Pickett County|Pierce County|Pike County|Pima County|Pinal County|Pine County|Pinellas County|Pipestone County|Piscataquis County|Pitkin County|Pitt County|Pittsburg County|Pittsylvania County|Piute County|Placer County|Plaquemines Parish|Platte County|Pleasants County|Plumas County|Plymouth County|Pocahontas County|Poinsett County|Pointe Coupee Parish|Polk County|Pondera County|Pontotoc County|Pope County|Poquoson city|Portage County|Porter County|Portsmouth city|Posey County|Pottawatomie County|Pottawattamie County|Potter County|Powder River County|Powell County|Power County|Poweshiek County|Powhatan County|Prairie County|Pratt County|Preble County|Prentiss County|Presidio County|Presque Isle County|Preston County|Price County|Prince Edward County|Prince George County|Prince George's County|Prince William County|Providence County|Prowers County|Pueblo County|Pulaski County|Pushmataha County|Putnam County|Quay County|Queen Anne's County|Queens County|Quitman County|Rabun County|Racine County|Radford city|Rains County|Raleigh County|Ralls County|Ramsey County|Randall County|Randolph County|Rankin County|Ransom County|Rapides Parish|Rappahannock County|Ravalli County|Rawlins County|Ray County|Reagan County|Real County|Red Lake County|Red River County|Red River Parish|Red Willow County|Redwood County|Reeves County|Refugio County|Reno County|Rensselaer County|Renville County|Republic County|Reynolds County|Rhea County|Rice County|Rich County|Richardson County|Richland County|Richland Parish|Richmond County|Richmond city|Riley County|Ringgold County|Rio Arriba County|Rio Blanco County|Rio Grande County|Ripley County|Ritchie County|Riverside County|Roane County|Roanoke County|Roanoke city|Roberts County|Robertson County|Robeson County|Rock County|Rock Island County|Rockbridge County|Rockcastle County|Rockdale County|Rockingham County|Rockland County|Rockwall County|Roger Mills County|Rogers County|Rolette County|Rooks County|Roosevelt County|Roscommon County|Roseau County|Rosebud County|Ross County|Routt County|Rowan County|Runnels County|Rush County|Rusk County|Russell County|Rutherford County|Rutland County|Sabine County|Sabine Parish|Sac County|Sacramento County|Sagadahoc County|Saginaw County|Saguache County|Salem County|Salem city|Saline County|Salt Lake County|Saluda County|Sampson County|San Augustine County|San Benito County|San Bernardino County|San Diego County|San Francisco County|San Jacinto County|San Joaquin County|San Juan County|San Luis Obispo County|San Mateo County|San Miguel County|San Patricio County|San Saba County|Sanborn County|Sanders County|Sandoval County|Sandusky County|Sangamon County|Sanilac County|Sanpete County|Santa Barbara County|Santa Clara County|Santa Cruz County|Santa Fe County|Santa Rosa County|Sarasota County|Saratoga County|Sargent County|Sarpy County|Sauk County|Saunders County|Sawyer County|Schenectady County|Schleicher County|Schley County|Schoharie County|Schoolcraft County|Schuyler County|Schuylkill County|Scioto County|Scotland County|Scott County|Scotts Bluff County|Screven County|Scurry County|Searcy County|Sebastian County|Sedgwick County|Seminole County|Seneca County|Sequatchie County|Sequoyah County|Sevier County|Seward County|Shackelford County|Shannon County|Sharkey County|Sharp County|Shasta County|Shawano County|Shawnee County|Sheboygan County|Shelby County|Shenandoah County|Sherburne County|Sheridan County|Sherman County|Shiawassee County|Shoshone County|Sibley County|Sierra County|Silver Bow County|Simpson County|Sioux County|Siskiyou County|Sitka City and Borough|Skagit County|Skagway Municipality|Skamania County|Slope County|Smith County|Smyth County|Snohomish County|Snyder County|Socorro County|Solano County|Somerset County|Somervell County|Sonoma County|Southampton County|Southeast Fairbanks Census Area|Spalding County|Spartanburg County|Spencer County|Spink County|Spokane County|Spotsylvania County|St. Bernard Parish|St. Charles County|St. Charles Parish|St. Clair County|St. Croix County|St. Francis County|St. Francois County|St. Helena Parish|St. James Parish|St. John the Baptist Parish|St. Johns County|St. Joseph County|St. Landry Parish|St. Lawrence County|St. Louis County|St. Louis city|St. Lucie County|St. Martin Parish|St. Mary Parish|St. Mary's County|St. Tammany Parish|Stafford County|Stanislaus County|Stanley County|Stanly County|Stanton County|Stark County|Starke County|Starr County|Staunton city|Ste. Genevieve County|Stearns County|Steele County|Stephens County|Stephenson County|Sterling County|Steuben County|Stevens County|Stewart County|Stillwater County|Stoddard County|Stokes County|Stone County|Stonewall County|Storey County|Story County|Strafford County|Stutsman County|Sublette County|Suffolk County|Suffolk city|Sullivan County|Sully County|Summers County|Summit County|Sumner County|Sumter County|Sunflower County|Surry County|Susquehanna County|Sussex County|Sutter County|Sutton County|Suwannee County|Swain County|Sweet Grass County|Sweetwater County|Swift County|Swisher County|Switzerland County|Talbot County|Taliaferro County|Talladega County|Tallahatchie County|Tallapoosa County|Tama County|Taney County|Tangipahoa Parish|Taos County|Tarrant County|Tate County|Tattnall County|Taylor County|Tazewell County|Tehama County|Telfair County|Teller County|Tensas Parish|Terrebonne Parish|Terrell County|Terry County|Teton County|Texas County|Thayer County|Thomas County|Throckmorton County|Thurston County|Tift County|Tillamook County|Tillman County|Tioga County|Tippah County|Tippecanoe County|Tipton County|Tishomingo County|Titus County|Todd County|Tolland County|Tom Green County|Tompkins County|Tooele County|Toole County|Toombs County|Torrance County|Towner County|Towns County|Traill County|Transylvania County|Traverse County|Travis County|Treasure County|Trego County|Trempealeau County|Treutlen County|Trigg County|Trimble County|Trinity County|Tripp County|Troup County|Trousdale County|Trumbull County|Tucker County|Tulare County|Tulsa County|Tunica County|Tuolumne County|Turner County|Tuscaloosa County|Tuscarawas County|Tuscola County|Twiggs County|Twin Falls County|Tyler County|Tyrrell County|Uinta County|Uintah County|Ulster County|Umatilla County|Unicoi County|Union County|Union Parish|Upshur County|Upson County|Upton County|Utah County|Uvalde County|Val Verde County|Valdez-Cordova Census Area|Valencia County|Valley County|Van Buren County|Van Wert County|Van Zandt County|Vance County|Vanderburgh County|Venango County|Ventura County|Vermilion County|Vermilion Parish|Vermillion County|Vernon County|Vernon Parish|Victoria County|Vigo County|Vilas County|Vinton County|Virginia Beach city|Volusia County|Wabash County|Wabasha County|Wabaunsee County|Wadena County|Wagoner County|Wahkiakum County|Wake County|Wakulla County|Waldo County|Walker County|Walla Walla County|Wallace County|Waller County|Wallowa County|Walsh County|Walthall County|Walton County|Walworth County|Wapello County|Ward County|Ware County|Warren County|Warrick County|Wasatch County|Wasco County|Waseca County|Washakie County|Washburn County|Washington County|Washington Parish|Washita County|Washoe County|Washtenaw County|Watauga County|Watonwan County|Waukesha County|Waupaca County|Waushara County|Wayne County|Waynesboro city|Weakley County|Webb County|Weber County|Webster County|Webster Parish|Weld County|Wells County|West Baton Rouge Parish|West Carroll Parish|West Feliciana Parish|Westchester County|Westmoreland County|Weston County|Wetzel County|Wexford County|Wharton County|Whatcom County|Wheatland County|Wheeler County|White County|White Pine County|Whiteside County|Whitfield County|Whitley County|Whitman County|Wibaux County|Wichita County|Wicomico County|Wilbarger County|Wilcox County|Wilkes County|Wilkin County|Wilkinson County|Will County|Willacy County|Williams County|Williamsburg County|Williamsburg city|Williamson County|Wilson County|Winchester city|Windham County|Windsor County|Winkler County|Winn Parish|Winnebago County|Winneshiek County|Winona County|Winston County|Wirt County|Wise County|Wolfe County|Wood County|Woodbury County|Woodford County|Woodruff County|Woods County|Woodson County|Woodward County|Worcester County|Worth County|Wrangell City and Borough|Wright County|Wyandot County|Wyandotte County|Wyoming County|Wythe County|Yadkin County|Yakima County|Yakutat City and Borough|Yalobusha County|Yamhill County|Yancey County|Yankton County|Yates County|Yavapai County|Yazoo County|Yell County|Yellow Medicine County|Yellowstone County|Yoakum County|Yolo County|York County|Young County|Yuba County|Yukon-Koyukuk Census Area|Yuma County|Zapata County|Zavala County|Ziebach County +in.ahs_region metadata_and_annual n/a string "CBSA Atlanta-Sandy Springs-Roswell, GA|CBSA Boston-Cambridge-Newton, MA-NH|CBSA Chicago-Naperville-Elgin, IL-IN-WI|CBSA Dallas-Fort Worth-Arlington, TX|CBSA Detroit-Warren-Dearborn, MI|CBSA Houston-The Woodlands-Sugar Land, TX|CBSA Los Angeles-Long Beach-Anaheim, CA|CBSA Miami-Fort Lauderdale-West Palm Beach, FL|CBSA New York-Newark-Jersey City, NY-NJ-PA|CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD|CBSA Phoenix-Mesa-Scottsdale, AZ|CBSA Riverside-San Bernardino-Ontario, CA|CBSA San Francisco-Oakland-Hayward, CA|CBSA Seattle-Tacoma-Bellevue, WA|CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV|Non-CBSA East North Central|Non-CBSA East South Central|Non-CBSA Middle Atlantic|Non-CBSA Mountain|Non-CBSA New England|Non-CBSA Pacific|Non-CBSA South Atlantic|Non-CBSA West North Central|Non-CBSA West South Central" +in.aiannh_area metadata_and_annual n/a boolean No|Yes +in.area_median_income metadata_and_annual n/a string 0-30%|100-120%|120-150%|150%+|30-60%|60-80%|80-100%|Not Available +in.ashrae_iecc_climate_zone_2004 metadata_and_annual n/a string 1A|2A|2B|3A|3B|3C|4A|4B|4C|5A|5B|6A|6B|7A|7AK|7B|8AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split metadata_and_annual n/a string "1A - FL|1A - HI|2A - FL, GA, AL, MS|2A - TX, LA|2B|3A|3B|3C|4A|4B|4C|5A|5B|6A|6B|7A|7AK|7B|8AK" +in.bathroom_spot_vent_hour metadata_and_annual n/a string Hour0|Hour1|Hour10|Hour11|Hour12|Hour13|Hour14|Hour15|Hour16|Hour17|Hour18|Hour19|Hour2|Hour20|Hour21|Hour22|Hour23|Hour3|Hour4|Hour5|Hour6|Hour7|Hour8|Hour9 +in.battery metadata_and_annual n/a string None +in.bedrooms metadata_and_annual n/a integer 1|2|3|4|5 +in.building_america_climate_zone metadata_and_annual n/a string Cold|Hot-Dry|Hot-Humid|Marine|Mixed-Dry|Mixed-Humid|Subarctic|Very Cold +in.cec_climate_zone metadata_and_annual n/a string 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|None +in.ceiling_fan metadata_and_annual n/a string "None|Standard Efficiency|Standard Efficiency, No usage" +in.census_division metadata_and_annual n/a string East North Central|East South Central|Middle Atlantic|Mountain|New England|Pacific|South Atlantic|West North Central|West South Central +in.census_division_recs metadata_and_annual n/a string East North Central|East South Central|Middle Atlantic|Mountain North|Mountain South|New England|Pacific|South Atlantic|West North Central|West South Central +in.census_region metadata_and_annual n/a string Midwest|Northeast|South|West +in.city metadata_and_annual n/a string "AK, Anchorage|AL, Auburn|AL, Birmingham|AL, Decatur|AL, Dothan|AL, Florence|AL, Gadsden|AL, Hoover|AL, Huntsville|AL, Madison|AL, Mobile|AL, Montgomery|AL, Phenix City|AL, Tuscaloosa|AR, Bentonville|AR, Conway|AR, Fayetteville|AR, Fort Smith|AR, Hot Springs|AR, Jonesboro|AR, Little Rock|AR, North Little Rock|AR, Pine Bluff|AR, Rogers|AR, Springdale|AZ, Apache Junction|AZ, Avondale|AZ, Buckeye|AZ, Bullhead City|AZ, Casa Grande|AZ, Casas Adobes|AZ, Catalina Foothills|AZ, Chandler|AZ, Flagstaff|AZ, Fortuna Foothills|AZ, Gilbert|AZ, Glendale|AZ, Goodyear|AZ, Green Valley|AZ, Lake Havasu City|AZ, Marana|AZ, Maricopa|AZ, Mesa|AZ, Oro Valley|AZ, Peoria|AZ, Phoenix|AZ, Prescott|AZ, Prescott Valley|AZ, San Tan Valley|AZ, Scottsdale|AZ, Sierra Vista|AZ, Sun City|AZ, Sun City West|AZ, Surprise|AZ, Tempe|AZ, Tucson|AZ, Yuma|CA, Alameda|CA, Alhambra|CA, Aliso Viejo|CA, Altadena|CA, Anaheim|CA, Antioch|CA, Apple Valley|CA, Arcadia|CA, Arden-Arcade|CA, Bakersfield|CA, Baldwin Park|CA, Bellflower|CA, Berkeley|CA, Beverly Hills|CA, Brea|CA, Brentwood|CA, Buena Park|CA, Burbank|CA, Camarillo|CA, Campbell|CA, Carlsbad|CA, Carmichael|CA, Carson|CA, Castro Valley|CA, Cathedral City|CA, Cerritos|CA, Chico|CA, Chino|CA, Chino Hills|CA, Chula Vista|CA, Citrus Heights|CA, Clovis|CA, Colton|CA, Compton|CA, Concord|CA, Corona|CA, Costa Mesa|CA, Covina|CA, Culver City|CA, Cupertino|CA, Cypress|CA, Daly City|CA, Dana Point|CA, Danville|CA, Davis|CA, Diamond Bar|CA, Downey|CA, Dublin|CA, East Los Angeles|CA, El Cajon|CA, El Dorado Hills|CA, El Monte|CA, Elk Grove|CA, Encinitas|CA, Escondido|CA, Fairfield|CA, Florence-Graham|CA, Florin|CA, Folsom|CA, Fontana|CA, Fountain Valley|CA, Fremont|CA, Fresno|CA, Fullerton|CA, Garden Grove|CA, Gardena|CA, Gilroy|CA, Glendale|CA, Glendora|CA, Hacienda Heights|CA, Hanford|CA, Hawthorne|CA, Hayward|CA, Hemet|CA, Hesperia|CA, Highland|CA, Huntington Beach|CA, Huntington Park|CA, Indio|CA, Inglewood|CA, Irvine|CA, La Habra|CA, La Mesa|CA, La Quinta|CA, Laguna Niguel|CA, Lake Elsinore|CA, Lake Forest|CA, Lakewood|CA, Lancaster|CA, Lincoln|CA, Livermore|CA, Lodi|CA, Long Beach|CA, Los Angeles|CA, Lynwood|CA, Madera|CA, Manhattan Beach|CA, Manteca|CA, Martinez|CA, Menifee|CA, Merced|CA, Milpitas|CA, Mission Viejo|CA, Modesto|CA, Montebello|CA, Monterey Park|CA, Moreno Valley|CA, Mountain View|CA, Murrieta|CA, Napa|CA, National City|CA, Newport Beach|CA, North Highlands|CA, Norwalk|CA, Novato|CA, Oakland|CA, Oceanside|CA, Ontario|CA, Orange|CA, Oxnard|CA, Palm Desert|CA, Palm Springs|CA, Palmdale|CA, Palo Alto|CA, Pasadena|CA, Perris|CA, Petaluma|CA, Pico Rivera|CA, Pittsburg|CA, Placentia|CA, Pleasanton|CA, Pomona|CA, Porterville|CA, Poway|CA, Rancho Cordova|CA, Rancho Cucamonga|CA, Rancho Palos Verdes|CA, Rancho Santa Margarita|CA, Redding|CA, Redlands|CA, Redondo Beach|CA, Redwood City|CA, Rialto|CA, Richmond|CA, Riverside|CA, Rocklin|CA, Rohnert Park|CA, Rosemead|CA, Roseville|CA, Rowland Heights|CA, Sacramento|CA, Salinas|CA, San Bernardino|CA, San Bruno|CA, San Buenaventura Ventura|CA, San Clemente|CA, San Diego|CA, San Francisco|CA, San Jose|CA, San Leandro|CA, San Luis Obispo|CA, San Marcos|CA, San Mateo|CA, San Rafael|CA, San Ramon|CA, Santa Ana|CA, Santa Barbara|CA, Santa Clara|CA, Santa Clarita|CA, Santa Cruz|CA, Santa Maria|CA, Santa Monica|CA, Santa Rosa|CA, Santee|CA, Simi Valley|CA, South Gate|CA, South Lake Tahoe|CA, South San Francisco|CA, South Whittier|CA, Stockton|CA, Sunnyvale|CA, Temecula|CA, Thousand Oaks|CA, Torrance|CA, Tracy|CA, Tulare|CA, Turlock|CA, Tustin|CA, Union City|CA, Upland|CA, Vacaville|CA, Vallejo|CA, Victorville|CA, Visalia|CA, Vista|CA, Walnut Creek|CA, West Covina|CA, West Hollywood|CA, West Sacramento|CA, Westminster|CA, Whittier|CA, Woodland|CA, Yorba Linda|CA, Yuba City|CA, Yucaipa|CO, Arvada|CO, Aurora|CO, Boulder|CO, Broomfield|CO, Castle Rock|CO, Centennial|CO, Colorado Springs|CO, Commerce City|CO, Denver|CO, Englewood|CO, Fort Collins|CO, Grand Junction|CO, Greeley|CO, Highlands Ranch|CO, Lakewood|CO, Littleton|CO, Longmont|CO, Loveland|CO, Parker|CO, Pueblo|CO, Thornton|CO, Westminster|CT, Bridgeport|CT, Bristol|CT, Danbury|CT, East Hartford|CT, Hartford|CT, Meriden|CT, Middletown|CT, Milford City Balance|CT, New Britain|CT, New Haven|CT, Norwalk|CT, Norwich|CT, Shelton|CT, Stamford|CT, Stratford|CT, Torrington|CT, Waterbury|CT, West Hartford|CT, West Haven|DC, Washington|DE, Dover|DE, Wilmington|FL, Alafaya|FL, Altamonte Springs|FL, Apopka|FL, Aventura|FL, Boca Raton|FL, Bonita Springs|FL, Boynton Beach|FL, Bradenton|FL, Brandon|FL, Cape Coral|FL, Carrollwood|FL, Clearwater|FL, Coconut Creek|FL, Coral Gables|FL, Coral Springs|FL, Country Club|FL, Dania Beach|FL, Davie|FL, Daytona Beach|FL, Deerfield Beach|FL, Delray Beach|FL, Deltona|FL, Doral|FL, Dunedin|FL, East Lake|FL, Estero|FL, Fort Lauderdale|FL, Fort Myers|FL, Fort Pierce|FL, Fountainebleau|FL, Four Corners|FL, Gainesville|FL, Greenacres|FL, Hallandale Beach|FL, Hialeah|FL, Hollywood|FL, Homestead|FL, Jacksonville|FL, Jupiter|FL, Kendale Lakes|FL, Kendall|FL, Kissimmee|FL, Lake Worth|FL, Lakeland|FL, Largo|FL, Lauderhill|FL, Lehigh Acres|FL, Marco Island|FL, Margate|FL, Melbourne|FL, Merritt Island|FL, Miami|FL, Miami Beach|FL, Miami Gardens|FL, Miramar|FL, Naples|FL, New Smyrna Beach|FL, North Fort Myers|FL, North Miami|FL, North Miami Beach|FL, North Port|FL, Oakland Park|FL, Ocala|FL, Orlando|FL, Ormond Beach|FL, Palm Bay|FL, Palm Beach Gardens|FL, Palm Coast|FL, Palm Harbor|FL, Panama City|FL, Panama City Beach|FL, Pembroke Pines|FL, Pensacola|FL, Pine Hills|FL, Pinellas Park|FL, Plantation|FL, Poinciana|FL, Pompano Beach|FL, Port Charlotte|FL, Port Orange|FL, Port St Lucie|FL, Riverview|FL, Riviera Beach|FL, Sanford|FL, Sarasota|FL, Spring Hill|FL, St Cloud|FL, St Petersburg|FL, Sun City Center|FL, Sunny Isles Beach|FL, Sunrise|FL, Tallahassee|FL, Tamarac|FL, Tamiami|FL, Tampa|FL, The Hammocks|FL, The Villages|FL, Titusville|FL, Town N Country|FL, University|FL, Venice|FL, Wellington|FL, Wesley Chapel|FL, West Palm Beach|FL, Weston|FL, Winter Haven|GA, Albany|GA, Alpharetta|GA, Athens-Clarke County Unified Government Balance|GA, Atlanta|GA, Augusta-Richmond County Consolidated Government Balance|GA, Columbus|GA, Dunwoody|GA, East Point|GA, Hinesville|GA, Johns Creek|GA, Mableton|GA, Macon|GA, Marietta|GA, Newnan|GA, North Atlanta|GA, Rome|GA, Roswell|GA, Sandy Springs|GA, Savannah|GA, Smyrna|GA, Valdosta|GA, Warner Robins|HI, East Honolulu|HI, Hilo|HI, Kailua|HI, Urban Honolulu|IA, Ames|IA, Ankeny|IA, Cedar Falls|IA, Cedar Rapids|IA, Council Bluffs|IA, Davenport|IA, Des Moines|IA, Dubuque|IA, Iowa City|IA, Marion|IA, Sioux City|IA, Urbandale|IA, Waterloo|IA, West Des Moines|ID, Boise City|ID, Caldwell|ID, Coeur Dalene|ID, Idaho Falls|ID, Meridian|ID, Nampa|ID, Pocatello|ID, Twin Falls|IL, Arlington Heights|IL, Aurora|IL, Belleville|IL, Berwyn|IL, Bloomington|IL, Bolingbrook|IL, Buffalo Grove|IL, Calumet City|IL, Carol Stream|IL, Champaign|IL, Chicago|IL, Cicero|IL, Crystal Lake|IL, Decatur|IL, Dekalb|IL, Des Plaines|IL, Downers Grove|IL, Elgin|IL, Elmhurst|IL, Evanston|IL, Glenview|IL, Hoffman Estates|IL, Joliet|IL, Lombard|IL, Moline|IL, Mount Prospect|IL, Naperville|IL, Normal|IL, Oak Lawn|IL, Oak Park|IL, Orland Park|IL, Palatine|IL, Peoria|IL, Quincy|IL, Rock Island|IL, Rockford|IL, Schaumburg|IL, Skokie|IL, Springfield|IL, Tinley Park|IL, Urbana|IL, Waukegan|IL, Wheaton|IL, Wheeling|IN, Anderson|IN, Bloomington|IN, Carmel|IN, Columbus|IN, Elkhart|IN, Evansville|IN, Fishers|IN, Fort Wayne|IN, Gary|IN, Greenwood|IN, Hammond|IN, Indianapolis City Balance|IN, Jeffersonville|IN, Kokomo|IN, Lafayette|IN, Lawrence|IN, Mishawaka|IN, Muncie|IN, New Albany|IN, Noblesville|IN, Portage|IN, Richmond|IN, South Bend|IN, Terre Haute|In another census Place|KS, Hutchinson|KS, Kansas City|KS, Lawrence|KS, Lenexa|KS, Manhattan|KS, Olathe|KS, Overland Park|KS, Salina|KS, Shawnee|KS, Topeka|KS, Wichita|KY, Bowling Green|KY, Covington|KY, Lexington-Fayette|KY, Louisville Jefferson County Metro Government Balance|KY, Owensboro|LA, Alexandria|LA, Baton Rouge|LA, Bossier City|LA, Kenner|LA, Lafayette|LA, Lake Charles|LA, Metairie|LA, Monroe|LA, New Orleans|LA, Shreveport|MA, Arlington|MA, Attleboro|MA, Barnstable Town|MA, Beverly|MA, Boston|MA, Brockton|MA, Brookline|MA, Cambridge|MA, Chicopee|MA, Everett|MA, Fall River|MA, Fitchburg|MA, Framingham|MA, Haverhill|MA, Holyoke|MA, Lawrence|MA, Leominster|MA, Lowell|MA, Lynn|MA, Malden|MA, Marlborough|MA, Medford|MA, Methuen Town|MA, New Bedford|MA, Newton|MA, Peabody|MA, Pittsfield|MA, Quincy|MA, Revere|MA, Salem|MA, Somerville|MA, Springfield|MA, Taunton|MA, Waltham|MA, Watertown Town|MA, Westfield|MA, Weymouth Town|MA, Woburn|MA, Worcester|MD, Annapolis|MD, Aspen Hill|MD, Baltimore|MD, Bel Air South|MD, Bethesda|MD, Bowie|MD, Catonsville|MD, Columbia|MD, Dundalk|MD, Ellicott City|MD, Essex|MD, Frederick|MD, Gaithersburg|MD, Germantown|MD, Glen Burnie|MD, Hagerstown|MD, North Bethesda|MD, Ocean City|MD, Odenton|MD, Potomac|MD, Rockville|MD, Severn|MD, Silver Spring|MD, Towson|MD, Waldorf|MD, Wheaton|MD, Woodlawn|ME, Bangor|ME, Lewiston|ME, Portland|MI, Ann Arbor|MI, Battle Creek|MI, Bay City|MI, Dearborn|MI, Dearborn Heights|MI, Detroit|MI, Farmington Hills|MI, Flint|MI, Grand Rapids|MI, Jackson|MI, Kalamazoo|MI, Kentwood|MI, Lansing|MI, Lincoln Park|MI, Livonia|MI, Midland|MI, Muskegon|MI, Novi|MI, Pontiac|MI, Portage|MI, Rochester Hills|MI, Roseville|MI, Royal Oak|MI, Saginaw|MI, Southfield|MI, St Clair Shores|MI, Sterling Heights|MI, Taylor|MI, Troy|MI, Warren|MI, Westland|MI, Wyoming|MN, Apple Valley|MN, Blaine|MN, Bloomington|MN, Brooklyn Park|MN, Burnsville|MN, Coon Rapids|MN, Duluth|MN, Eagan|MN, Eden Prairie|MN, Edina|MN, Lakeville|MN, Mankato|MN, Maple Grove|MN, Maplewood|MN, Minneapolis|MN, Minnetonka|MN, Moorhead|MN, Plymouth|MN, Richfield|MN, Rochester|MN, Roseville|MN, St Cloud|MN, St Louis Park|MN, St Paul|MN, Woodbury|MO, Blue Springs|MO, Cape Girardeau|MO, Chesterfield|MO, Columbia|MO, Florissant|MO, Independence|MO, Jefferson City|MO, Joplin|MO, Kansas City|MO, Lees Summit|MO, Ofallon|MO, Springfield|MO, St Charles|MO, St Joseph|MO, St Louis|MO, St Peters|MO, University City|MS, Biloxi|MS, Gulfport|MS, Hattiesburg|MS, Jackson|MS, Meridian|MS, Southaven|MS, Tupelo|MT, Billings|MT, Bozeman|MT, Butte-Silver Bow Balance|MT, Great Falls|MT, Missoula|NC, Asheville|NC, Burlington|NC, Cary|NC, Chapel Hill|NC, Charlotte|NC, Concord|NC, Durham|NC, Fayetteville|NC, Gastonia|NC, Goldsboro|NC, Greensboro|NC, Greenville|NC, Hickory|NC, High Point|NC, Huntersville|NC, Jacksonville|NC, Kannapolis|NC, Raleigh|NC, Rocky Mount|NC, Wilmington|NC, Wilson|NC, Winston-Salem|ND, Bismarck|ND, Fargo|ND, Grand Forks|ND, Minot|NE, Bellevue|NE, Grand Island|NE, Lincoln|NE, Omaha|NH, Concord|NH, Manchester|NH, Nashua|NJ, Atlantic City|NJ, Bayonne|NJ, Camden|NJ, Clifton|NJ, East Orange|NJ, Elizabeth|NJ, Fort Lee|NJ, Hackensack|NJ, Hoboken|NJ, Jersey City|NJ, Linden|NJ, New Brunswick|NJ, Newark|NJ, Ocean City|NJ, Passaic|NJ, Paterson|NJ, Perth Amboy|NJ, Plainfield|NJ, Sayreville|NJ, Toms River|NJ, Trenton|NJ, Union City|NJ, Vineland|NJ, West New York|NM, Albuquerque|NM, Clovis|NM, Farmington|NM, Las Cruces|NM, Rio Rancho|NM, Roswell|NM, Santa Fe|NM, South Valley|NV, Carson City|NV, Enterprise|NV, Henderson|NV, Las Vegas|NV, North Las Vegas|NV, Pahrump|NV, Paradise|NV, Reno|NV, Sparks|NV, Spring Valley|NV, Sunrise Manor|NV, Whitney|NY, Albany|NY, Binghamton|NY, Brighton|NY, Buffalo|NY, Cheektowaga|NY, Coram|NY, Hempstead|NY, Irondequoit|NY, Levittown|NY, Long Beach|NY, Mount Vernon|NY, New Rochelle|NY, New York|NY, Niagara Falls|NY, Rochester|NY, Rome|NY, Schenectady|NY, Syracuse|NY, Tonawanda|NY, Troy|NY, Utica|NY, West Seneca|NY, White Plains|NY, Yonkers|Not in a census Place|OH, Akron|OH, Beavercreek|OH, Boardman|OH, Canton|OH, Cincinnati|OH, Cleveland|OH, Cleveland Heights|OH, Columbus|OH, Cuyahoga Falls|OH, Dayton|OH, Delaware|OH, Dublin|OH, Elyria|OH, Euclid|OH, Fairborn|OH, Fairfield|OH, Findlay|OH, Grove City|OH, Hamilton|OH, Huber Heights|OH, Kettering|OH, Lakewood|OH, Lancaster|OH, Lima|OH, Lorain|OH, Mansfield|OH, Marion|OH, Mentor|OH, Middletown|OH, Newark|OH, Parma|OH, Springfield|OH, Stow|OH, Strongsville|OH, Toledo|OH, Warren|OH, Youngstown|OK, Bartlesville|OK, Broken Arrow|OK, Edmond|OK, Enid|OK, Lawton|OK, Midwest City|OK, Moore|OK, Muskogee|OK, Norman|OK, Oklahoma City|OK, Stillwater|OK, Tulsa|OR, Albany|OR, Aloha|OR, Beaverton|OR, Bend|OR, Corvallis|OR, Eugene|OR, Grants Pass|OR, Gresham|OR, Hillsboro|OR, Lake Oswego|OR, Medford|OR, Portland|OR, Salem|OR, Springfield|OR, Tigard|PA, Allentown|PA, Altoona|PA, Bethlehem|PA, Erie|PA, Harrisburg|PA, Lancaster|PA, Levittown|PA, Philadelphia|PA, Pittsburgh|PA, Reading|PA, Scranton|PA, Wilkes-Barre|PA, York|RI, Cranston|RI, East Providence|RI, Pawtucket|RI, Providence|RI, Warwick|RI, Woonsocket|SC, Charleston|SC, Columbia|SC, Florence|SC, Goose Creek|SC, Greenville|SC, Hilton Head Island|SC, Mount Pleasant|SC, Myrtle Beach|SC, North Charleston|SC, North Myrtle Beach|SC, Rock Hill|SC, Spartanburg|SC, Summerville|SC, Sumter|SD, Rapid City|SD, Sioux Falls|TN, Bartlett|TN, Chattanooga|TN, Clarksville|TN, Cleveland|TN, Collierville|TN, Columbia|TN, Franklin|TN, Germantown|TN, Hendersonville|TN, Jackson|TN, Johnson City|TN, Kingsport|TN, Knoxville|TN, Memphis|TN, Murfreesboro|TN, Nashville-Davidson Metropolitan Government Balance|TN, Smyrna|TX, Abilene|TX, Allen|TX, Amarillo|TX, Arlington|TX, Atascocita|TX, Austin|TX, Baytown|TX, Beaumont|TX, Bedford|TX, Brownsville|TX, Bryan|TX, Burleson|TX, Carrollton|TX, Cedar Hill|TX, Cedar Park|TX, College Station|TX, Conroe|TX, Coppell|TX, Corpus Christi|TX, Dallas|TX, Denton|TX, Desoto|TX, Edinburg|TX, El Paso|TX, Euless|TX, Flower Mound|TX, Fort Worth|TX, Frisco|TX, Galveston|TX, Garland|TX, Georgetown|TX, Grand Prairie|TX, Grapevine|TX, Haltom City|TX, Harlingen|TX, Houston|TX, Hurst|TX, Irving|TX, Keller|TX, Killeen|TX, Laredo|TX, League City|TX, Lewisville|TX, Longview|TX, Lubbock|TX, Lufkin|TX, Mansfield|TX, Mcallen|TX, Mckinney|TX, Mesquite|TX, Midland|TX, Mission|TX, Missouri City|TX, New Braunfels|TX, North Richland Hills|TX, Odessa|TX, Pasadena|TX, Pearland|TX, Pflugerville|TX, Pharr|TX, Plano|TX, Port Arthur|TX, Richardson|TX, Round Rock|TX, Rowlett|TX, San Angelo|TX, San Antonio|TX, San Marcos|TX, Sherman|TX, Spring|TX, Sugar Land|TX, Temple|TX, Texarkana|TX, Texas City|TX, The Colony|TX, The Woodlands|TX, Tyler|TX, Victoria|TX, Waco|TX, Wichita Falls|TX, Wylie|UT, Layton|UT, Lehi|UT, Logan|UT, Millcreek|UT, Murray|UT, Ogden|UT, Orem|UT, Provo|UT, Salt Lake City|UT, Sandy|UT, South Jordan|UT, St George|UT, Taylorsville|UT, West Jordan|UT, West Valley City|VA, Alexandria|VA, Arlington|VA, Ashburn|VA, Blacksburg|VA, Centreville|VA, Charlottesville|VA, Chesapeake|VA, Dale City|VA, Danville|VA, Hampton|VA, Harrisonburg|VA, Lake Ridge|VA, Leesburg|VA, Lynchburg|VA, Mclean|VA, Mechanicsville|VA, Newport News|VA, Norfolk|VA, Petersburg|VA, Portsmouth|VA, Reston|VA, Richmond|VA, Roanoke|VA, Suffolk|VA, Tuckahoe|VA, Virginia Beach|VT, Burlington|WA, Auburn|WA, Bellevue|WA, Bellingham|WA, Bremerton|WA, Edmonds|WA, Everett|WA, Federal Way|WA, Kennewick|WA, Kent|WA, Kirkland|WA, Lacey|WA, Lakewood|WA, Longview|WA, Marysville|WA, Olympia|WA, Pasco|WA, Puyallup|WA, Redmond|WA, Renton|WA, Richland|WA, Sammamish|WA, Seattle|WA, Shoreline|WA, South Hill|WA, Spokane|WA, Spokane Valley|WA, Tacoma|WA, Vancouver|WA, Yakima|WI, Appleton|WI, Beloit|WI, Eau Claire|WI, Fond Du Lac|WI, Green Bay|WI, Greenfield|WI, Janesville|WI, Kenosha|WI, La Crosse|WI, Madison|WI, Manitowoc|WI, Menomonee Falls|WI, Milwaukee|WI, New Berlin|WI, Oshkosh|WI, Racine|WI, Sheboygan|WI, Waukesha|WI, Wausau|WI, Wauwatosa|WI, West Allis|WV, Charleston|WV, Huntington|WV, Parkersburg|WY, Casper|WY, Cheyenne" +in.clothes_dryer metadata_and_annual n/a string Electric|Gas|None|Propane +in.clothes_dryer_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage +in.clothes_washer metadata_and_annual n/a string EnergyStar|None|Standard +in.clothes_washer_presence metadata_and_annual n/a string None|Yes +in.clothes_washer_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage +in.cooking_range metadata_and_annual n/a string Electric Induction|Electric Resistance|Gas|None|Propane +in.cooking_range_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage +in.cooling_unavailable_days metadata_and_annual n/a string 1 day|1 month|1 week|2 weeks|3 days|3 months|Never|Year round +in.cooling_setpoint metadata_and_annual n/a string 60F|62F|65F|67F|68F|70F|72F|75F|76F|78F|80F +in.cooling_setpoint_has_offset metadata_and_annual n/a boolean No|Yes +in.cooling_setpoint_offset_magnitude metadata_and_annual n/a string 0F|2F|5F|9F +in.cooling_setpoint_offset_period metadata_and_annual n/a string Day Setup|Day Setup +1h|Day Setup +2h|Day Setup +3h|Day Setup +4h|Day Setup +5h|Day Setup -1h|Day Setup -2h|Day Setup -3h|Day Setup -4h|Day Setup -5h|Day Setup and Night Setback|Day Setup and Night Setback +1h|Day Setup and Night Setback +2h|Day Setup and Night Setback +3h|Day Setup and Night Setback +4h|Day Setup and Night Setback +5h|Day Setup and Night Setback -1h|Day Setup and Night Setback -2h|Day Setup and Night Setback -3h|Day Setup and Night Setback -4h|Day Setup and Night Setback -5h|Day and Night Setup|Day and Night Setup +1h|Day and Night Setup +2h|Day and Night Setup +3h|Day and Night Setup +4h|Day and Night Setup +5h|Day and Night Setup -1h|Day and Night Setup -2h|Day and Night Setup -3h|Day and Night Setup -4h|Day and Night Setup -5h|Night Setback|Night Setback +1h|Night Setback +2h|Night Setback +3h|Night Setback +4h|Night Setback +5h|Night Setback -1h|Night Setback -2h|Night Setback -3h|Night Setback -4h|Night Setback -5h|Night Setup|Night Setup +1h|Night Setup +2h|Night Setup +3h|Night Setup +4h|Night Setup +5h|Night Setup -1h|Night Setup -2h|Night Setup -3h|Night Setup -4h|Night Setup -5h|None +in.corridor metadata_and_annual n/a string Double-Loaded Interior|Not Applicable +in.county metadata_and_annual n/a string "AK, Aleutians East Borough|AK, Aleutians West Census Area|AK, Anchorage Municipality|AK, Bethel Census Area|AK, Bristol Bay Borough|AK, Denali Borough|AK, Dillingham Census Area|AK, Fairbanks North Star Borough|AK, Haines Borough|AK, Hoonah-Angoon Census Area|AK, Juneau City and Borough|AK, Kenai Peninsula Borough|AK, Ketchikan Gateway Borough|AK, Kodiak Island Borough|AK, Kusilvak Census Area|AK, Lake and Peninsula Borough|AK, Matanuska-Susitna Borough|AK, Nome Census Area|AK, North Slope Borough|AK, Northwest Arctic Borough|AK, Petersburg Borough|AK, Sitka City and Borough|AK, Skagway Municipality|AK, Southeast Fairbanks Census Area|AK, Valdez-Cordova Census Area|AK, Wrangell City and Borough|AK, Yakutat City and Borough|AK, Yukon-Koyukuk Census Area|G0100010|G0100030|G0100050|G0100070|G0100090|G0100110|G0100130|G0100150|G0100170|G0100190|G0100210|G0100230|G0100250|G0100270|G0100290|G0100310|G0100330|G0100350|G0100370|G0100390|G0100410|G0100430|G0100450|G0100470|G0100490|G0100510|G0100530|G0100550|G0100570|G0100590|G0100610|G0100630|G0100650|G0100670|G0100690|G0100710|G0100730|G0100750|G0100770|G0100790|G0100810|G0100830|G0100850|G0100870|G0100890|G0100910|G0100930|G0100950|G0100970|G0100990|G0101010|G0101030|G0101050|G0101070|G0101090|G0101110|G0101130|G0101150|G0101170|G0101190|G0101210|G0101230|G0101250|G0101270|G0101290|G0101310|G0101330|G0400010|G0400030|G0400050|G0400070|G0400090|G0400110|G0400120|G0400130|G0400150|G0400170|G0400190|G0400210|G0400230|G0400250|G0400270|G0500010|G0500030|G0500050|G0500070|G0500090|G0500110|G0500130|G0500150|G0500170|G0500190|G0500210|G0500230|G0500250|G0500270|G0500290|G0500310|G0500330|G0500350|G0500370|G0500390|G0500410|G0500430|G0500450|G0500470|G0500490|G0500510|G0500530|G0500550|G0500570|G0500590|G0500610|G0500630|G0500650|G0500670|G0500690|G0500710|G0500730|G0500750|G0500770|G0500790|G0500810|G0500830|G0500850|G0500870|G0500890|G0500910|G0500930|G0500950|G0500970|G0500990|G0501010|G0501030|G0501050|G0501070|G0501090|G0501110|G0501130|G0501150|G0501170|G0501190|G0501210|G0501230|G0501250|G0501270|G0501290|G0501310|G0501330|G0501350|G0501370|G0501390|G0501410|G0501430|G0501450|G0501470|G0501490|G0600010|G0600030|G0600050|G0600070|G0600090|G0600110|G0600130|G0600150|G0600170|G0600190|G0600210|G0600230|G0600250|G0600270|G0600290|G0600310|G0600330|G0600350|G0600370|G0600390|G0600410|G0600430|G0600450|G0600470|G0600490|G0600510|G0600530|G0600550|G0600570|G0600590|G0600610|G0600630|G0600650|G0600670|G0600690|G0600710|G0600730|G0600750|G0600770|G0600790|G0600810|G0600830|G0600850|G0600870|G0600890|G0600910|G0600930|G0600950|G0600970|G0600990|G0601010|G0601030|G0601050|G0601070|G0601090|G0601110|G0601130|G0601150|G0800010|G0800030|G0800050|G0800070|G0800090|G0800110|G0800130|G0800140|G0800150|G0800170|G0800190|G0800210|G0800230|G0800250|G0800270|G0800290|G0800310|G0800330|G0800350|G0800370|G0800390|G0800410|G0800430|G0800450|G0800470|G0800490|G0800510|G0800530|G0800550|G0800570|G0800590|G0800610|G0800630|G0800650|G0800670|G0800690|G0800710|G0800730|G0800750|G0800770|G0800790|G0800810|G0800830|G0800850|G0800870|G0800890|G0800910|G0800930|G0800950|G0800970|G0800990|G0801010|G0801030|G0801050|G0801070|G0801090|G0801110|G0801130|G0801150|G0801170|G0801190|G0801210|G0801230|G0801250|G0900010|G0900030|G0900050|G0900070|G0900090|G0900110|G0900130|G0900150|G1000010|G1000030|G1000050|G1100010|G1200010|G1200030|G1200050|G1200070|G1200090|G1200110|G1200130|G1200150|G1200170|G1200190|G1200210|G1200230|G1200270|G1200290|G1200310|G1200330|G1200350|G1200370|G1200390|G1200410|G1200430|G1200450|G1200470|G1200490|G1200510|G1200530|G1200550|G1200570|G1200590|G1200610|G1200630|G1200650|G1200670|G1200690|G1200710|G1200730|G1200750|G1200770|G1200790|G1200810|G1200830|G1200850|G1200860|G1200870|G1200890|G1200910|G1200930|G1200950|G1200970|G1200990|G1201010|G1201030|G1201050|G1201070|G1201090|G1201110|G1201130|G1201150|G1201170|G1201190|G1201210|G1201230|G1201250|G1201270|G1201290|G1201310|G1201330|G1300010|G1300030|G1300050|G1300070|G1300090|G1300110|G1300130|G1300150|G1300170|G1300190|G1300210|G1300230|G1300250|G1300270|G1300290|G1300310|G1300330|G1300350|G1300370|G1300390|G1300430|G1300450|G1300470|G1300490|G1300510|G1300530|G1300550|G1300570|G1300590|G1300610|G1300630|G1300650|G1300670|G1300690|G1300710|G1300730|G1300750|G1300770|G1300790|G1300810|G1300830|G1300850|G1300870|G1300890|G1300910|G1300930|G1300950|G1300970|G1300990|G1301010|G1301030|G1301050|G1301070|G1301090|G1301110|G1301130|G1301150|G1301170|G1301190|G1301210|G1301230|G1301250|G1301270|G1301290|G1301310|G1301330|G1301350|G1301370|G1301390|G1301410|G1301430|G1301450|G1301470|G1301490|G1301510|G1301530|G1301550|G1301570|G1301590|G1301610|G1301630|G1301650|G1301670|G1301690|G1301710|G1301730|G1301750|G1301770|G1301790|G1301810|G1301830|G1301850|G1301870|G1301890|G1301910|G1301930|G1301950|G1301970|G1301990|G1302010|G1302050|G1302070|G1302090|G1302110|G1302130|G1302150|G1302170|G1302190|G1302210|G1302230|G1302250|G1302270|G1302290|G1302310|G1302330|G1302350|G1302370|G1302390|G1302410|G1302430|G1302450|G1302470|G1302490|G1302510|G1302530|G1302550|G1302570|G1302590|G1302610|G1302630|G1302650|G1302670|G1302690|G1302710|G1302730|G1302750|G1302770|G1302790|G1302810|G1302830|G1302850|G1302870|G1302890|G1302910|G1302930|G1302950|G1302970|G1302990|G1303010|G1303030|G1303050|G1303070|G1303090|G1303110|G1303130|G1303150|G1303170|G1303190|G1303210|G1600010|G1600030|G1600050|G1600070|G1600090|G1600110|G1600130|G1600150|G1600170|G1600190|G1600210|G1600230|G1600250|G1600270|G1600290|G1600310|G1600330|G1600350|G1600370|G1600390|G1600410|G1600430|G1600450|G1600470|G1600490|G1600510|G1600530|G1600550|G1600570|G1600590|G1600610|G1600630|G1600650|G1600670|G1600690|G1600710|G1600730|G1600750|G1600770|G1600790|G1600810|G1600830|G1600850|G1600870|G1700010|G1700030|G1700050|G1700070|G1700090|G1700110|G1700130|G1700150|G1700170|G1700190|G1700210|G1700230|G1700250|G1700270|G1700290|G1700310|G1700330|G1700350|G1700370|G1700390|G1700410|G1700430|G1700450|G1700470|G1700490|G1700510|G1700530|G1700550|G1700570|G1700590|G1700610|G1700630|G1700650|G1700670|G1700690|G1700710|G1700730|G1700750|G1700770|G1700790|G1700810|G1700830|G1700850|G1700870|G1700890|G1700910|G1700930|G1700950|G1700970|G1700990|G1701010|G1701030|G1701050|G1701070|G1701090|G1701110|G1701130|G1701150|G1701170|G1701190|G1701210|G1701230|G1701250|G1701270|G1701290|G1701310|G1701330|G1701350|G1701370|G1701390|G1701410|G1701430|G1701450|G1701470|G1701490|G1701510|G1701530|G1701550|G1701570|G1701590|G1701610|G1701630|G1701650|G1701670|G1701690|G1701710|G1701730|G1701750|G1701770|G1701790|G1701810|G1701830|G1701850|G1701870|G1701890|G1701910|G1701930|G1701950|G1701970|G1701990|G1702010|G1702030|G1800010|G1800030|G1800050|G1800070|G1800090|G1800110|G1800130|G1800150|G1800170|G1800190|G1800210|G1800230|G1800250|G1800270|G1800290|G1800310|G1800330|G1800350|G1800370|G1800390|G1800410|G1800430|G1800450|G1800470|G1800490|G1800510|G1800530|G1800550|G1800570|G1800590|G1800610|G1800630|G1800650|G1800670|G1800690|G1800710|G1800730|G1800750|G1800770|G1800790|G1800810|G1800830|G1800850|G1800870|G1800890|G1800910|G1800930|G1800950|G1800970|G1800990|G1801010|G1801030|G1801050|G1801070|G1801090|G1801110|G1801130|G1801150|G1801170|G1801190|G1801210|G1801230|G1801250|G1801270|G1801290|G1801310|G1801330|G1801350|G1801370|G1801390|G1801410|G1801430|G1801450|G1801470|G1801490|G1801510|G1801530|G1801550|G1801570|G1801590|G1801610|G1801630|G1801650|G1801670|G1801690|G1801710|G1801730|G1801750|G1801770|G1801790|G1801810|G1801830|G1900010|G1900030|G1900050|G1900070|G1900090|G1900110|G1900130|G1900150|G1900170|G1900190|G1900210|G1900230|G1900250|G1900270|G1900290|G1900310|G1900330|G1900350|G1900370|G1900390|G1900410|G1900430|G1900450|G1900470|G1900490|G1900510|G1900530|G1900550|G1900570|G1900590|G1900610|G1900630|G1900650|G1900670|G1900690|G1900710|G1900730|G1900750|G1900770|G1900790|G1900810|G1900830|G1900850|G1900870|G1900890|G1900910|G1900930|G1900950|G1900970|G1900990|G1901010|G1901030|G1901050|G1901070|G1901090|G1901110|G1901130|G1901150|G1901170|G1901190|G1901210|G1901230|G1901250|G1901270|G1901290|G1901310|G1901330|G1901350|G1901370|G1901390|G1901410|G1901430|G1901450|G1901470|G1901490|G1901510|G1901530|G1901550|G1901570|G1901590|G1901610|G1901630|G1901650|G1901670|G1901690|G1901710|G1901730|G1901750|G1901770|G1901790|G1901810|G1901830|G1901850|G1901870|G1901890|G1901910|G1901930|G1901950|G1901970|G2000010|G2000030|G2000050|G2000070|G2000090|G2000110|G2000130|G2000150|G2000170|G2000190|G2000210|G2000230|G2000250|G2000270|G2000290|G2000310|G2000330|G2000350|G2000370|G2000390|G2000410|G2000430|G2000450|G2000470|G2000490|G2000510|G2000530|G2000550|G2000570|G2000590|G2000610|G2000630|G2000650|G2000670|G2000690|G2000710|G2000730|G2000750|G2000770|G2000790|G2000810|G2000830|G2000850|G2000870|G2000890|G2000910|G2000930|G2000950|G2000970|G2000990|G2001010|G2001030|G2001050|G2001070|G2001090|G2001110|G2001130|G2001150|G2001170|G2001190|G2001210|G2001230|G2001250|G2001270|G2001290|G2001310|G2001330|G2001350|G2001370|G2001390|G2001410|G2001430|G2001450|G2001470|G2001490|G2001510|G2001530|G2001550|G2001570|G2001590|G2001610|G2001630|G2001650|G2001670|G2001690|G2001710|G2001730|G2001750|G2001770|G2001790|G2001810|G2001830|G2001850|G2001870|G2001890|G2001910|G2001930|G2001950|G2001970|G2001990|G2002010|G2002030|G2002050|G2002070|G2002090|G2100010|G2100030|G2100050|G2100070|G2100090|G2100110|G2100130|G2100150|G2100170|G2100190|G2100210|G2100230|G2100250|G2100270|G2100290|G2100310|G2100330|G2100350|G2100370|G2100390|G2100410|G2100430|G2100450|G2100470|G2100490|G2100510|G2100530|G2100550|G2100570|G2100590|G2100610|G2100630|G2100650|G2100670|G2100690|G2100710|G2100730|G2100750|G2100770|G2100790|G2100810|G2100830|G2100850|G2100870|G2100890|G2100910|G2100930|G2100950|G2100970|G2100990|G2101010|G2101030|G2101050|G2101070|G2101090|G2101110|G2101130|G2101150|G2101170|G2101190|G2101210|G2101230|G2101250|G2101270|G2101290|G2101310|G2101330|G2101350|G2101370|G2101390|G2101410|G2101430|G2101450|G2101470|G2101490|G2101510|G2101530|G2101550|G2101570|G2101590|G2101610|G2101630|G2101650|G2101670|G2101690|G2101710|G2101730|G2101750|G2101770|G2101790|G2101810|G2101830|G2101850|G2101870|G2101890|G2101910|G2101930|G2101950|G2101970|G2101990|G2102010|G2102030|G2102050|G2102070|G2102090|G2102110|G2102130|G2102150|G2102170|G2102190|G2102210|G2102230|G2102250|G2102270|G2102290|G2102310|G2102330|G2102350|G2102370|G2102390|G2200010|G2200030|G2200050|G2200070|G2200090|G2200110|G2200130|G2200150|G2200170|G2200190|G2200210|G2200230|G2200250|G2200270|G2200290|G2200310|G2200330|G2200350|G2200370|G2200390|G2200410|G2200430|G2200450|G2200470|G2200490|G2200510|G2200530|G2200550|G2200570|G2200590|G2200610|G2200630|G2200650|G2200670|G2200690|G2200710|G2200730|G2200750|G2200770|G2200790|G2200810|G2200830|G2200850|G2200870|G2200890|G2200910|G2200930|G2200950|G2200970|G2200990|G2201010|G2201030|G2201050|G2201070|G2201090|G2201110|G2201130|G2201150|G2201170|G2201190|G2201210|G2201230|G2201250|G2201270|G2300010|G2300030|G2300050|G2300070|G2300090|G2300110|G2300130|G2300150|G2300170|G2300190|G2300210|G2300230|G2300250|G2300270|G2300290|G2300310|G2400010|G2400030|G2400050|G2400090|G2400110|G2400130|G2400150|G2400170|G2400190|G2400210|G2400230|G2400250|G2400270|G2400290|G2400310|G2400330|G2400350|G2400370|G2400390|G2400410|G2400430|G2400450|G2400470|G2405100|G2500010|G2500030|G2500050|G2500070|G2500090|G2500110|G2500130|G2500150|G2500170|G2500190|G2500210|G2500230|G2500250|G2500270|G2600010|G2600030|G2600050|G2600070|G2600090|G2600110|G2600130|G2600150|G2600170|G2600190|G2600210|G2600230|G2600250|G2600270|G2600290|G2600310|G2600330|G2600350|G2600370|G2600390|G2600410|G2600430|G2600450|G2600470|G2600490|G2600510|G2600530|G2600550|G2600570|G2600590|G2600610|G2600630|G2600650|G2600670|G2600690|G2600710|G2600730|G2600750|G2600770|G2600790|G2600810|G2600830|G2600850|G2600870|G2600890|G2600910|G2600930|G2600950|G2600970|G2600990|G2601010|G2601030|G2601050|G2601070|G2601090|G2601110|G2601130|G2601150|G2601170|G2601190|G2601210|G2601230|G2601250|G2601270|G2601290|G2601310|G2601330|G2601350|G2601370|G2601390|G2601410|G2601430|G2601450|G2601470|G2601490|G2601510|G2601530|G2601550|G2601570|G2601590|G2601610|G2601630|G2601650|G2700010|G2700030|G2700050|G2700070|G2700090|G2700110|G2700130|G2700150|G2700170|G2700190|G2700210|G2700230|G2700250|G2700270|G2700290|G2700310|G2700330|G2700350|G2700370|G2700390|G2700410|G2700430|G2700450|G2700470|G2700490|G2700510|G2700530|G2700550|G2700570|G2700590|G2700610|G2700630|G2700650|G2700670|G2700690|G2700710|G2700730|G2700750|G2700770|G2700790|G2700810|G2700830|G2700850|G2700870|G2700890|G2700910|G2700930|G2700950|G2700970|G2700990|G2701010|G2701030|G2701050|G2701070|G2701090|G2701110|G2701130|G2701150|G2701170|G2701190|G2701210|G2701230|G2701250|G2701270|G2701290|G2701310|G2701330|G2701350|G2701370|G2701390|G2701410|G2701430|G2701450|G2701470|G2701490|G2701510|G2701530|G2701550|G2701570|G2701590|G2701610|G2701630|G2701650|G2701670|G2701690|G2701710|G2701730|G2800010|G2800030|G2800050|G2800070|G2800090|G2800110|G2800130|G2800150|G2800170|G2800190|G2800210|G2800230|G2800250|G2800270|G2800290|G2800310|G2800330|G2800350|G2800370|G2800390|G2800410|G2800430|G2800450|G2800470|G2800490|G2800510|G2800530|G2800550|G2800570|G2800590|G2800610|G2800630|G2800650|G2800670|G2800690|G2800710|G2800730|G2800750|G2800770|G2800790|G2800810|G2800830|G2800850|G2800870|G2800890|G2800910|G2800930|G2800950|G2800970|G2800990|G2801010|G2801030|G2801050|G2801070|G2801090|G2801110|G2801130|G2801150|G2801170|G2801190|G2801210|G2801230|G2801250|G2801270|G2801290|G2801310|G2801330|G2801350|G2801370|G2801390|G2801410|G2801430|G2801450|G2801470|G2801490|G2801510|G2801530|G2801550|G2801570|G2801590|G2801610|G2801630|G2900010|G2900030|G2900050|G2900070|G2900090|G2900110|G2900130|G2900150|G2900170|G2900190|G2900210|G2900230|G2900250|G2900270|G2900290|G2900310|G2900330|G2900350|G2900370|G2900390|G2900410|G2900430|G2900450|G2900470|G2900490|G2900510|G2900530|G2900550|G2900570|G2900590|G2900610|G2900630|G2900650|G2900670|G2900690|G2900710|G2900730|G2900750|G2900770|G2900790|G2900810|G2900830|G2900850|G2900870|G2900890|G2900910|G2900930|G2900950|G2900970|G2900990|G2901010|G2901030|G2901050|G2901070|G2901090|G2901110|G2901130|G2901150|G2901170|G2901190|G2901210|G2901230|G2901250|G2901270|G2901290|G2901310|G2901330|G2901350|G2901370|G2901390|G2901410|G2901430|G2901450|G2901470|G2901490|G2901510|G2901530|G2901550|G2901570|G2901590|G2901610|G2901630|G2901650|G2901670|G2901690|G2901710|G2901730|G2901750|G2901770|G2901790|G2901810|G2901830|G2901850|G2901860|G2901870|G2901890|G2901950|G2901970|G2901990|G2902010|G2902030|G2902050|G2902070|G2902090|G2902110|G2902130|G2902150|G2902170|G2902190|G2902210|G2902230|G2902250|G2902270|G2902290|G2905100|G3000010|G3000030|G3000050|G3000070|G3000090|G3000110|G3000130|G3000150|G3000170|G3000190|G3000210|G3000230|G3000250|G3000270|G3000290|G3000310|G3000330|G3000350|G3000370|G3000390|G3000410|G3000430|G3000450|G3000470|G3000490|G3000510|G3000530|G3000550|G3000570|G3000590|G3000610|G3000630|G3000650|G3000670|G3000690|G3000710|G3000730|G3000750|G3000770|G3000790|G3000810|G3000830|G3000850|G3000870|G3000890|G3000910|G3000930|G3000950|G3000970|G3000990|G3001010|G3001030|G3001050|G3001070|G3001090|G3001110|G3100010|G3100030|G3100050|G3100070|G3100090|G3100110|G3100130|G3100150|G3100170|G3100190|G3100210|G3100230|G3100250|G3100270|G3100290|G3100310|G3100330|G3100350|G3100370|G3100390|G3100410|G3100430|G3100450|G3100470|G3100490|G3100510|G3100530|G3100550|G3100570|G3100590|G3100610|G3100630|G3100650|G3100670|G3100690|G3100710|G3100730|G3100750|G3100770|G3100790|G3100810|G3100830|G3100850|G3100870|G3100890|G3100910|G3100930|G3100950|G3100970|G3100990|G3101010|G3101030|G3101050|G3101070|G3101090|G3101110|G3101130|G3101150|G3101170|G3101190|G3101210|G3101230|G3101250|G3101270|G3101290|G3101310|G3101330|G3101350|G3101370|G3101390|G3101410|G3101430|G3101450|G3101470|G3101490|G3101510|G3101530|G3101550|G3101570|G3101590|G3101610|G3101630|G3101650|G3101670|G3101690|G3101710|G3101730|G3101750|G3101770|G3101790|G3101810|G3101830|G3101850|G3200010|G3200030|G3200050|G3200070|G3200090|G3200110|G3200130|G3200150|G3200170|G3200190|G3200210|G3200230|G3200270|G3200290|G3200310|G3200330|G3205100|G3300010|G3300030|G3300050|G3300070|G3300090|G3300110|G3300130|G3300150|G3300170|G3300190|G3400010|G3400030|G3400050|G3400070|G3400090|G3400110|G3400130|G3400150|G3400170|G3400190|G3400210|G3400230|G3400250|G3400270|G3400290|G3400310|G3400330|G3400350|G3400370|G3400390|G3400410|G3500010|G3500030|G3500050|G3500060|G3500070|G3500090|G3500110|G3500130|G3500150|G3500170|G3500190|G3500210|G3500230|G3500250|G3500270|G3500280|G3500290|G3500310|G3500330|G3500350|G3500370|G3500390|G3500410|G3500430|G3500450|G3500470|G3500490|G3500510|G3500530|G3500550|G3500570|G3500590|G3500610|G3600010|G3600030|G3600050|G3600070|G3600090|G3600110|G3600130|G3600150|G3600170|G3600190|G3600210|G3600230|G3600250|G3600270|G3600290|G3600310|G3600330|G3600350|G3600370|G3600390|G3600410|G3600430|G3600450|G3600470|G3600490|G3600510|G3600530|G3600550|G3600570|G3600590|G3600610|G3600630|G3600650|G3600670|G3600690|G3600710|G3600730|G3600750|G3600770|G3600790|G3600810|G3600830|G3600850|G3600870|G3600890|G3600910|G3600930|G3600950|G3600970|G3600990|G3601010|G3601030|G3601050|G3601070|G3601090|G3601110|G3601130|G3601150|G3601170|G3601190|G3601210|G3601230|G3700010|G3700030|G3700050|G3700070|G3700090|G3700110|G3700130|G3700150|G3700170|G3700190|G3700210|G3700230|G3700250|G3700270|G3700290|G3700310|G3700330|G3700350|G3700370|G3700390|G3700410|G3700430|G3700450|G3700470|G3700490|G3700510|G3700530|G3700550|G3700570|G3700590|G3700610|G3700630|G3700650|G3700670|G3700690|G3700710|G3700730|G3700750|G3700770|G3700790|G3700810|G3700830|G3700850|G3700870|G3700890|G3700910|G3700930|G3700950|G3700970|G3700990|G3701010|G3701030|G3701050|G3701070|G3701090|G3701110|G3701130|G3701150|G3701170|G3701190|G3701210|G3701230|G3701250|G3701270|G3701290|G3701310|G3701330|G3701350|G3701370|G3701390|G3701410|G3701430|G3701450|G3701470|G3701490|G3701510|G3701530|G3701550|G3701570|G3701590|G3701610|G3701630|G3701650|G3701670|G3701690|G3701710|G3701730|G3701750|G3701770|G3701790|G3701810|G3701830|G3701850|G3701870|G3701890|G3701910|G3701930|G3701950|G3701970|G3701990|G3800010|G3800030|G3800050|G3800070|G3800090|G3800110|G3800130|G3800150|G3800170|G3800190|G3800210|G3800230|G3800250|G3800270|G3800290|G3800310|G3800330|G3800350|G3800370|G3800390|G3800410|G3800430|G3800450|G3800470|G3800490|G3800510|G3800530|G3800550|G3800570|G3800590|G3800610|G3800630|G3800650|G3800670|G3800690|G3800710|G3800730|G3800750|G3800770|G3800790|G3800810|G3800830|G3800850|G3800870|G3800890|G3800910|G3800930|G3800950|G3800970|G3800990|G3801010|G3801030|G3801050|G3900010|G3900030|G3900050|G3900070|G3900090|G3900110|G3900130|G3900150|G3900170|G3900190|G3900210|G3900230|G3900250|G3900270|G3900290|G3900310|G3900330|G3900350|G3900370|G3900390|G3900410|G3900430|G3900450|G3900470|G3900490|G3900510|G3900530|G3900550|G3900570|G3900590|G3900610|G3900630|G3900650|G3900670|G3900690|G3900710|G3900730|G3900750|G3900770|G3900790|G3900810|G3900830|G3900850|G3900870|G3900890|G3900910|G3900930|G3900950|G3900970|G3900990|G3901010|G3901030|G3901050|G3901070|G3901090|G3901110|G3901130|G3901150|G3901170|G3901190|G3901210|G3901230|G3901250|G3901270|G3901290|G3901310|G3901330|G3901350|G3901370|G3901390|G3901410|G3901430|G3901450|G3901470|G3901490|G3901510|G3901530|G3901550|G3901570|G3901590|G3901610|G3901630|G3901650|G3901670|G3901690|G3901710|G3901730|G3901750|G4000010|G4000030|G4000050|G4000070|G4000090|G4000110|G4000130|G4000150|G4000170|G4000190|G4000210|G4000230|G4000250|G4000270|G4000290|G4000310|G4000330|G4000350|G4000370|G4000390|G4000410|G4000430|G4000450|G4000470|G4000490|G4000510|G4000530|G4000550|G4000570|G4000590|G4000610|G4000630|G4000650|G4000670|G4000690|G4000710|G4000730|G4000750|G4000770|G4000790|G4000810|G4000830|G4000850|G4000870|G4000890|G4000910|G4000930|G4000950|G4000970|G4000990|G4001010|G4001030|G4001050|G4001070|G4001090|G4001110|G4001130|G4001150|G4001170|G4001190|G4001210|G4001230|G4001250|G4001270|G4001290|G4001310|G4001330|G4001350|G4001370|G4001390|G4001410|G4001430|G4001450|G4001470|G4001490|G4001510|G4001530|G4100010|G4100030|G4100050|G4100070|G4100090|G4100110|G4100130|G4100150|G4100170|G4100190|G4100210|G4100230|G4100250|G4100270|G4100290|G4100310|G4100330|G4100350|G4100370|G4100390|G4100410|G4100430|G4100450|G4100470|G4100490|G4100510|G4100530|G4100550|G4100570|G4100590|G4100610|G4100630|G4100650|G4100670|G4100690|G4100710|G4200010|G4200030|G4200050|G4200070|G4200090|G4200110|G4200130|G4200150|G4200170|G4200190|G4200210|G4200230|G4200250|G4200270|G4200290|G4200310|G4200330|G4200350|G4200370|G4200390|G4200410|G4200430|G4200450|G4200470|G4200490|G4200510|G4200530|G4200550|G4200570|G4200590|G4200610|G4200630|G4200650|G4200670|G4200690|G4200710|G4200730|G4200750|G4200770|G4200790|G4200810|G4200830|G4200850|G4200870|G4200890|G4200910|G4200930|G4200950|G4200970|G4200990|G4201010|G4201030|G4201050|G4201070|G4201090|G4201110|G4201130|G4201150|G4201170|G4201190|G4201210|G4201230|G4201250|G4201270|G4201290|G4201310|G4201330|G4400010|G4400030|G4400050|G4400070|G4400090|G4500010|G4500030|G4500050|G4500070|G4500090|G4500110|G4500130|G4500150|G4500170|G4500190|G4500210|G4500230|G4500250|G4500270|G4500290|G4500310|G4500330|G4500350|G4500370|G4500390|G4500410|G4500430|G4500450|G4500470|G4500490|G4500510|G4500530|G4500550|G4500570|G4500590|G4500610|G4500630|G4500650|G4500670|G4500690|G4500710|G4500730|G4500750|G4500770|G4500790|G4500810|G4500830|G4500850|G4500870|G4500890|G4500910|G4600030|G4600050|G4600070|G4600090|G4600110|G4600130|G4600150|G4600170|G4600190|G4600210|G4600230|G4600250|G4600270|G4600290|G4600310|G4600330|G4600350|G4600370|G4600390|G4600410|G4600430|G4600450|G4600470|G4600490|G4600510|G4600530|G4600550|G4600570|G4600590|G4600610|G4600630|G4600650|G4600670|G4600690|G4600710|G4600730|G4600750|G4600770|G4600790|G4600810|G4600830|G4600850|G4600870|G4600890|G4600910|G4600930|G4600950|G4600970|G4600990|G4601010|G4601020|G4601030|G4601050|G4601070|G4601090|G4601110|G4601150|G4601170|G4601190|G4601210|G4601230|G4601250|G4601270|G4601290|G4601350|G4601370|G4700010|G4700030|G4700050|G4700070|G4700090|G4700110|G4700130|G4700150|G4700170|G4700190|G4700210|G4700230|G4700250|G4700270|G4700290|G4700310|G4700330|G4700350|G4700370|G4700390|G4700410|G4700430|G4700450|G4700470|G4700490|G4700510|G4700530|G4700550|G4700570|G4700590|G4700610|G4700630|G4700650|G4700670|G4700690|G4700710|G4700730|G4700750|G4700770|G4700790|G4700810|G4700830|G4700850|G4700870|G4700890|G4700910|G4700930|G4700950|G4700970|G4700990|G4701010|G4701030|G4701050|G4701070|G4701090|G4701110|G4701130|G4701150|G4701170|G4701190|G4701210|G4701230|G4701250|G4701270|G4701290|G4701310|G4701330|G4701350|G4701370|G4701390|G4701410|G4701430|G4701450|G4701470|G4701490|G4701510|G4701530|G4701550|G4701570|G4701590|G4701610|G4701630|G4701650|G4701670|G4701690|G4701710|G4701730|G4701750|G4701770|G4701790|G4701810|G4701830|G4701850|G4701870|G4701890|G4800010|G4800030|G4800050|G4800070|G4800090|G4800110|G4800130|G4800150|G4800170|G4800190|G4800210|G4800230|G4800250|G4800270|G4800290|G4800310|G4800330|G4800350|G4800370|G4800390|G4800410|G4800430|G4800450|G4800470|G4800490|G4800510|G4800530|G4800550|G4800570|G4800590|G4800610|G4800630|G4800650|G4800670|G4800690|G4800710|G4800730|G4800750|G4800770|G4800790|G4800810|G4800830|G4800850|G4800870|G4800890|G4800910|G4800930|G4800950|G4800970|G4800990|G4801010|G4801030|G4801050|G4801070|G4801090|G4801110|G4801130|G4801150|G4801170|G4801190|G4801210|G4801230|G4801250|G4801270|G4801290|G4801310|G4801330|G4801350|G4801370|G4801390|G4801410|G4801430|G4801450|G4801470|G4801490|G4801510|G4801530|G4801550|G4801570|G4801590|G4801610|G4801630|G4801650|G4801670|G4801690|G4801710|G4801730|G4801750|G4801770|G4801790|G4801810|G4801830|G4801850|G4801870|G4801890|G4801910|G4801930|G4801950|G4801970|G4801990|G4802010|G4802030|G4802050|G4802070|G4802090|G4802110|G4802130|G4802150|G4802170|G4802190|G4802210|G4802230|G4802250|G4802270|G4802290|G4802310|G4802330|G4802350|G4802370|G4802390|G4802410|G4802430|G4802450|G4802470|G4802490|G4802510|G4802530|G4802550|G4802570|G4802590|G4802610|G4802630|G4802650|G4802670|G4802690|G4802710|G4802730|G4802750|G4802770|G4802790|G4802810|G4802830|G4802850|G4802870|G4802890|G4802910|G4802930|G4802950|G4802970|G4802990|G4803030|G4803050|G4803070|G4803090|G4803110|G4803130|G4803150|G4803170|G4803190|G4803210|G4803230|G4803250|G4803270|G4803290|G4803310|G4803330|G4803350|G4803370|G4803390|G4803410|G4803430|G4803450|G4803470|G4803490|G4803510|G4803530|G4803550|G4803570|G4803590|G4803610|G4803630|G4803650|G4803670|G4803690|G4803710|G4803730|G4803750|G4803770|G4803790|G4803810|G4803830|G4803850|G4803870|G4803890|G4803910|G4803930|G4803950|G4803970|G4803990|G4804010|G4804030|G4804050|G4804070|G4804090|G4804110|G4804130|G4804150|G4804170|G4804190|G4804210|G4804230|G4804250|G4804270|G4804290|G4804310|G4804330|G4804350|G4804370|G4804390|G4804410|G4804430|G4804450|G4804470|G4804490|G4804510|G4804530|G4804550|G4804570|G4804590|G4804610|G4804630|G4804650|G4804670|G4804690|G4804710|G4804730|G4804750|G4804770|G4804790|G4804810|G4804830|G4804850|G4804870|G4804890|G4804910|G4804930|G4804950|G4804970|G4804990|G4805010|G4805030|G4805050|G4805070|G4900010|G4900030|G4900050|G4900070|G4900090|G4900110|G4900130|G4900150|G4900170|G4900190|G4900210|G4900230|G4900250|G4900270|G4900290|G4900310|G4900330|G4900350|G4900370|G4900390|G4900410|G4900430|G4900450|G4900470|G4900490|G4900510|G4900530|G4900550|G4900570|G5000010|G5000030|G5000050|G5000070|G5000090|G5000110|G5000130|G5000150|G5000170|G5000190|G5000210|G5000230|G5000250|G5000270|G5100010|G5100030|G5100050|G5100070|G5100090|G5100110|G5100130|G5100150|G5100170|G5100190|G5100210|G5100230|G5100250|G5100270|G5100290|G5100310|G5100330|G5100350|G5100360|G5100370|G5100410|G5100430|G5100450|G5100470|G5100490|G5100510|G5100530|G5100570|G5100590|G5100610|G5100630|G5100650|G5100670|G5100690|G5100710|G5100730|G5100750|G5100770|G5100790|G5100810|G5100830|G5100850|G5100870|G5100890|G5100910|G5100930|G5100950|G5100970|G5100990|G5101010|G5101030|G5101050|G5101070|G5101090|G5101110|G5101130|G5101150|G5101170|G5101190|G5101210|G5101250|G5101270|G5101310|G5101330|G5101350|G5101370|G5101390|G5101410|G5101430|G5101450|G5101470|G5101490|G5101530|G5101550|G5101570|G5101590|G5101610|G5101630|G5101650|G5101670|G5101690|G5101710|G5101730|G5101750|G5101770|G5101790|G5101810|G5101830|G5101850|G5101870|G5101910|G5101930|G5101950|G5101970|G5101990|G5105100|G5105200|G5105300|G5105400|G5105500|G5105700|G5105800|G5105900|G5105950|G5106000|G5106100|G5106200|G5106300|G5106400|G5106500|G5106600|G5106700|G5106780|G5106800|G5106830|G5106850|G5106900|G5107000|G5107100|G5107200|G5107300|G5107350|G5107400|G5107500|G5107600|G5107700|G5107750|G5107900|G5108000|G5108100|G5108200|G5108300|G5108400|G5300010|G5300030|G5300050|G5300070|G5300090|G5300110|G5300130|G5300150|G5300170|G5300190|G5300210|G5300230|G5300250|G5300270|G5300290|G5300310|G5300330|G5300350|G5300370|G5300390|G5300410|G5300430|G5300450|G5300470|G5300490|G5300510|G5300530|G5300550|G5300570|G5300590|G5300610|G5300630|G5300650|G5300670|G5300690|G5300710|G5300730|G5300750|G5300770|G5400010|G5400030|G5400050|G5400070|G5400090|G5400110|G5400130|G5400150|G5400170|G5400190|G5400210|G5400230|G5400250|G5400270|G5400290|G5400310|G5400330|G5400350|G5400370|G5400390|G5400410|G5400430|G5400450|G5400470|G5400490|G5400510|G5400530|G5400550|G5400570|G5400590|G5400610|G5400630|G5400650|G5400670|G5400690|G5400710|G5400730|G5400750|G5400770|G5400790|G5400810|G5400830|G5400850|G5400870|G5400890|G5400910|G5400930|G5400950|G5400970|G5400990|G5401010|G5401030|G5401050|G5401070|G5401090|G5500010|G5500030|G5500050|G5500070|G5500090|G5500110|G5500130|G5500150|G5500170|G5500190|G5500210|G5500230|G5500250|G5500270|G5500290|G5500310|G5500330|G5500350|G5500370|G5500390|G5500410|G5500430|G5500450|G5500470|G5500490|G5500510|G5500530|G5500550|G5500570|G5500590|G5500610|G5500630|G5500650|G5500670|G5500690|G5500710|G5500730|G5500750|G5500770|G5500780|G5500790|G5500810|G5500830|G5500850|G5500870|G5500890|G5500910|G5500930|G5500950|G5500970|G5500990|G5501010|G5501030|G5501050|G5501070|G5501090|G5501110|G5501130|G5501150|G5501170|G5501190|G5501210|G5501230|G5501250|G5501270|G5501290|G5501310|G5501330|G5501350|G5501370|G5501390|G5501410|G5600010|G5600030|G5600050|G5600070|G5600090|G5600110|G5600130|G5600150|G5600170|G5600190|G5600210|G5600230|G5600250|G5600270|G5600290|G5600310|G5600330|G5600350|G5600370|G5600390|G5600410|G5600430|G5600450|HI, Hawaii County|HI, Honolulu County|HI, Kauai County|HI, Maui County" +in.county_and_puma metadata_and_annual n/a string "G0100010, G01002100|G0100030, G01002600|G0100050, G01002400|G0100070, G01001700|G0100090, G01000800|G0100110, G01002400|G0100130, G01002300|G0100150, G01001100|G0100170, G01001800|G0100190, G01001000|G0100210, G01001800|G0100230, G01002200|G0100250, G01002200|G0100270, G01001000|G0100290, G01001000|G0100310, G01002300|G0100330, G01000100|G0100350, G01002200|G0100370, G01001800|G0100390, G01002300|G0100410, G01002300|G0100430, G01000700|G0100450, G01002500|G0100470, G01001700|G0100490, G01000400|G0100510, G01002100|G0100530, G01002200|G0100550, G01000900|G0100570, G01001400|G0100590, G01000100|G0100610, G01002500|G0100630, G01001700|G0100650, G01001700|G0100670, G01002500|G0100690, G01002500|G0100710, G01000400|G0100730, G01001301|G0100730, G01001302|G0100730, G01001303|G0100730, G01001304|G0100730, G01001305|G0100750, G01001400|G0100770, G01000100|G0100790, G01000600|G0100810, G01001900|G0100830, G01000200|G0100850, G01002100|G0100870, G01002400|G0100890, G01000200|G0100890, G01000301|G0100890, G01000302|G0100890, G01000500|G0100910, G01001700|G0100930, G01000100|G0100930, G01001400|G0100950, G01000500|G0100970, G01002701|G0100970, G01002702|G0100970, G01002703|G0100990, G01002200|G0101010, G01002000|G0101010, G01002100|G0101030, G01000600|G0101050, G01001700|G0101070, G01001500|G0101090, G01002400|G0101110, G01001000|G0101130, G01002400|G0101150, G01000800|G0101170, G01001200|G0101190, G01001700|G0101210, G01001000|G0101230, G01001800|G0101250, G01001500|G0101250, G01001600|G0101270, G01001400|G0101290, G01002200|G0101310, G01002200|G0101330, G01000700|G0200130, G02000400|G0200160, G02000400|G0200200, G02000101|G0200200, G02000102|G0200500, G02000400|G0200600, G02000400|G0200680, G02000300|G0200700, G02000400|G0200900, G02000300|G0201000, G02000300|G0201050, G02000400|G0201100, G02000300|G0201220, G02000200|G0201300, G02000300|G0201500, G02000400|G0201580, G02000400|G0201640, G02000400|G0201700, G02000200|G0201800, G02000400|G0201850, G02000400|G0201880, G02000400|G0201950, G02000400|G0202200, G02000400|G0202300, G02000300|G0202400, G02000300|G0202610, G02000300|G0202750, G02000400|G0202820, G02000400|G0202900, G02000400|G0400010, G04000300|G0400030, G04000900|G0400050, G04000400|G0400070, G04000800|G0400090, G04000800|G0400110, G04000800|G0400120, G04000600|G0400130, G04000100|G0400130, G04000101|G0400130, G04000102|G0400130, G04000103|G0400130, G04000104|G0400130, G04000105|G0400130, G04000106|G0400130, G04000107|G0400130, G04000108|G0400130, G04000109|G0400130, G04000110|G0400130, G04000111|G0400130, G04000112|G0400130, G04000113|G0400130, G04000114|G0400130, G04000115|G0400130, G04000116|G0400130, G04000117|G0400130, G04000118|G0400130, G04000119|G0400130, G04000120|G0400130, G04000121|G0400130, G04000122|G0400130, G04000123|G0400130, G04000124|G0400130, G04000125|G0400130, G04000126|G0400130, G04000127|G0400130, G04000128|G0400130, G04000129|G0400130, G04000130|G0400130, G04000131|G0400130, G04000132|G0400130, G04000133|G0400130, G04000134|G0400150, G04000600|G0400170, G04000300|G0400190, G04000201|G0400190, G04000202|G0400190, G04000203|G0400190, G04000204|G0400190, G04000205|G0400190, G04000206|G0400190, G04000207|G0400190, G04000208|G0400190, G04000209|G0400210, G04000800|G0400210, G04000803|G0400210, G04000805|G0400210, G04000807|G0400230, G04000900|G0400250, G04000500|G0400270, G04000700|G0500010, G05001700|G0500010, G05001800|G0500030, G05001800|G0500050, G05000300|G0500070, G05000100|G0500090, G05000300|G0500110, G05001800|G0500130, G05001900|G0500150, G05000300|G0500170, G05001800|G0500190, G05001600|G0500210, G05000500|G0500230, G05000400|G0500250, G05001800|G0500270, G05001900|G0500290, G05001300|G0500310, G05000500|G0500310, G05000600|G0500330, G05001400|G0500350, G05000600|G0500370, G05000700|G0500390, G05001900|G0500410, G05001800|G0500430, G05001800|G0500450, G05001100|G0500470, G05001500|G0500490, G05000400|G0500510, G05001600|G0500530, G05001700|G0500550, G05000500|G0500570, G05002000|G0500590, G05001600|G0500610, G05001500|G0500630, G05000400|G0500650, G05000400|G0500670, G05000800|G0500690, G05001700|G0500710, G05001300|G0500730, G05002000|G0500750, G05000500|G0500770, G05000700|G0500790, G05001800|G0500810, G05002000|G0500830, G05001500|G0500850, G05001100|G0500870, G05000300|G0500890, G05000300|G0500910, G05002000|G0500930, G05000600|G0500950, G05000700|G0500970, G05001600|G0500990, G05002000|G0501010, G05000300|G0501030, G05001900|G0501050, G05001300|G0501070, G05000700|G0501090, G05002000|G0501110, G05000700|G0501130, G05001500|G0501150, G05001300|G0501170, G05000800|G0501190, G05000900|G0501190, G05001000|G0501210, G05000500|G0501230, G05000700|G0501250, G05001200|G0501270, G05001500|G0501290, G05000300|G0501310, G05001400|G0501330, G05001500|G0501350, G05000400|G0501370, G05000400|G0501390, G05001900|G0501410, G05000400|G0501430, G05000200|G0501450, G05000800|G0501470, G05000800|G0501490, G05001300|G0600010, G06000101|G0600010, G06000102|G0600010, G06000103|G0600010, G06000104|G0600010, G06000105|G0600010, G06000106|G0600010, G06000107|G0600010, G06000108|G0600010, G06000109|G0600010, G06000110|G0600030, G06000300|G0600050, G06000300|G0600070, G06000701|G0600070, G06000702|G0600090, G06000300|G0600110, G06001100|G0600130, G06001301|G0600130, G06001302|G0600130, G06001303|G0600130, G06001304|G0600130, G06001305|G0600130, G06001306|G0600130, G06001307|G0600130, G06001308|G0600130, G06001309|G0600150, G06001500|G0600170, G06001700|G0600190, G06001901|G0600190, G06001902|G0600190, G06001903|G0600190, G06001904|G0600190, G06001905|G0600190, G06001906|G0600190, G06001907|G0600210, G06001100|G0600230, G06002300|G0600250, G06002500|G0600270, G06000300|G0600290, G06002901|G0600290, G06002902|G0600290, G06002903|G0600290, G06002904|G0600290, G06002905|G0600310, G06003100|G0600330, G06003300|G0600350, G06001500|G0600370, G06003701|G0600370, G06003702|G0600370, G06003703|G0600370, G06003704|G0600370, G06003705|G0600370, G06003706|G0600370, G06003707|G0600370, G06003708|G0600370, G06003709|G0600370, G06003710|G0600370, G06003711|G0600370, G06003712|G0600370, G06003713|G0600370, G06003714|G0600370, G06003715|G0600370, G06003716|G0600370, G06003717|G0600370, G06003718|G0600370, G06003719|G0600370, G06003720|G0600370, G06003721|G0600370, G06003722|G0600370, G06003723|G0600370, G06003724|G0600370, G06003725|G0600370, G06003726|G0600370, G06003727|G0600370, G06003728|G0600370, G06003729|G0600370, G06003730|G0600370, G06003731|G0600370, G06003732|G0600370, G06003733|G0600370, G06003734|G0600370, G06003735|G0600370, G06003736|G0600370, G06003737|G0600370, G06003738|G0600370, G06003739|G0600370, G06003740|G0600370, G06003741|G0600370, G06003742|G0600370, G06003743|G0600370, G06003744|G0600370, G06003745|G0600370, G06003746|G0600370, G06003747|G0600370, G06003748|G0600370, G06003749|G0600370, G06003750|G0600370, G06003751|G0600370, G06003752|G0600370, G06003753|G0600370, G06003754|G0600370, G06003755|G0600370, G06003756|G0600370, G06003757|G0600370, G06003758|G0600370, G06003759|G0600370, G06003760|G0600370, G06003761|G0600370, G06003762|G0600370, G06003763|G0600370, G06003764|G0600370, G06003765|G0600370, G06003766|G0600370, G06003767|G0600370, G06003768|G0600370, G06003769|G0600390, G06003900|G0600410, G06004101|G0600410, G06004102|G0600430, G06000300|G0600450, G06003300|G0600470, G06004701|G0600470, G06004702|G0600490, G06001500|G0600510, G06000300|G0600530, G06005301|G0600530, G06005302|G0600530, G06005303|G0600550, G06005500|G0600570, G06005700|G0600590, G06005901|G0600590, G06005902|G0600590, G06005903|G0600590, G06005904|G0600590, G06005905|G0600590, G06005906|G0600590, G06005907|G0600590, G06005908|G0600590, G06005909|G0600590, G06005910|G0600590, G06005911|G0600590, G06005912|G0600590, G06005913|G0600590, G06005914|G0600590, G06005915|G0600590, G06005916|G0600590, G06005917|G0600590, G06005918|G0600610, G06006101|G0600610, G06006102|G0600610, G06006103|G0600630, G06001500|G0600650, G06006501|G0600650, G06006502|G0600650, G06006503|G0600650, G06006504|G0600650, G06006505|G0600650, G06006506|G0600650, G06006507|G0600650, G06006508|G0600650, G06006509|G0600650, G06006510|G0600650, G06006511|G0600650, G06006512|G0600650, G06006513|G0600650, G06006514|G0600650, G06006515|G0600670, G06006701|G0600670, G06006702|G0600670, G06006703|G0600670, G06006704|G0600670, G06006705|G0600670, G06006706|G0600670, G06006707|G0600670, G06006708|G0600670, G06006709|G0600670, G06006710|G0600670, G06006711|G0600670, G06006712|G0600690, G06005303|G0600710, G06007101|G0600710, G06007102|G0600710, G06007103|G0600710, G06007104|G0600710, G06007105|G0600710, G06007106|G0600710, G06007107|G0600710, G06007108|G0600710, G06007109|G0600710, G06007110|G0600710, G06007111|G0600710, G06007112|G0600710, G06007113|G0600710, G06007114|G0600710, G06007115|G0600730, G06007301|G0600730, G06007302|G0600730, G06007303|G0600730, G06007304|G0600730, G06007305|G0600730, G06007306|G0600730, G06007307|G0600730, G06007308|G0600730, G06007309|G0600730, G06007310|G0600730, G06007311|G0600730, G06007312|G0600730, G06007313|G0600730, G06007314|G0600730, G06007315|G0600730, G06007316|G0600730, G06007317|G0600730, G06007318|G0600730, G06007319|G0600730, G06007320|G0600730, G06007321|G0600730, G06007322|G0600750, G06007501|G0600750, G06007502|G0600750, G06007503|G0600750, G06007504|G0600750, G06007505|G0600750, G06007506|G0600750, G06007507|G0600770, G06007701|G0600770, G06007702|G0600770, G06007703|G0600770, G06007704|G0600790, G06007901|G0600790, G06007902|G0600810, G06008101|G0600810, G06008102|G0600810, G06008103|G0600810, G06008104|G0600810, G06008105|G0600810, G06008106|G0600830, G06008301|G0600830, G06008302|G0600830, G06008303|G0600850, G06008501|G0600850, G06008502|G0600850, G06008503|G0600850, G06008504|G0600850, G06008505|G0600850, G06008506|G0600850, G06008507|G0600850, G06008508|G0600850, G06008509|G0600850, G06008510|G0600850, G06008511|G0600850, G06008512|G0600850, G06008513|G0600850, G06008514|G0600870, G06008701|G0600870, G06008702|G0600890, G06008900|G0600910, G06005700|G0600930, G06001500|G0600950, G06009501|G0600950, G06009502|G0600950, G06009503|G0600970, G06009701|G0600970, G06009702|G0600970, G06009703|G0600990, G06009901|G0600990, G06009902|G0600990, G06009903|G0600990, G06009904|G0601010, G06010100|G0601030, G06001100|G0601050, G06001100|G0601070, G06010701|G0601070, G06010702|G0601070, G06010703|G0601090, G06000300|G0601110, G06011101|G0601110, G06011102|G0601110, G06011103|G0601110, G06011104|G0601110, G06011105|G0601110, G06011106|G0601130, G06011300|G0601150, G06010100|G0800010, G08000804|G0800010, G08000805|G0800010, G08000806|G0800010, G08000807|G0800010, G08000809|G0800010, G08000810|G0800010, G08000817|G0800010, G08000824|G0800030, G08000800|G0800050, G08000808|G0800050, G08000809|G0800050, G08000810|G0800050, G08000811|G0800050, G08000815|G0800050, G08000820|G0800050, G08000824|G0800070, G08000900|G0800090, G08000800|G0800110, G08000100|G0800130, G08000801|G0800130, G08000802|G0800130, G08000803|G0800130, G08000804|G0800140, G08000804|G0800140, G08000805|G0800150, G08000600|G0800170, G08000100|G0800190, G08000801|G0800210, G08000800|G0800230, G08000800|G0800250, G08000100|G0800270, G08000600|G0800290, G08001002|G0800310, G08000812|G0800310, G08000813|G0800310, G08000814|G0800310, G08000815|G0800310, G08000816|G0800330, G08000900|G0800350, G08000821|G0800350, G08000822|G0800350, G08000823|G0800370, G08000400|G0800390, G08000100|G0800390, G08000823|G0800410, G08004101|G0800410, G08004102|G0800410, G08004103|G0800410, G08004104|G0800410, G08004105|G0800410, G08004106|G0800430, G08000600|G0800450, G08000200|G0800470, G08000801|G0800490, G08000400|G0800510, G08000900|G0800530, G08000900|G0800550, G08000600|G0800570, G08000400|G0800590, G08000801|G0800590, G08000804|G0800590, G08000805|G0800590, G08000817|G0800590, G08000818|G0800590, G08000819|G0800590, G08000820|G0800590, G08000821|G0800610, G08000100|G0800630, G08000100|G0800650, G08000600|G0800670, G08000900|G0800690, G08000102|G0800690, G08000103|G0800710, G08000800|G0800730, G08000100|G0800750, G08000100|G0800770, G08001001|G0800770, G08001002|G0800790, G08000800|G0800810, G08000200|G0800830, G08000900|G0800850, G08001002|G0800870, G08000100|G0800890, G08000800|G0800910, G08001002|G0800930, G08000600|G0800950, G08000100|G0800970, G08000400|G0800990, G08000800|G0801010, G08000600|G0801010, G08000700|G0801010, G08000800|G0801030, G08000200|G0801050, G08000800|G0801070, G08000200|G0801090, G08000800|G0801110, G08000900|G0801130, G08001002|G0801150, G08000100|G0801170, G08000400|G0801190, G08004101|G0801210, G08000100|G0801230, G08000100|G0801230, G08000300|G0801230, G08000802|G0801230, G08000824|G0801250, G08000100|G0900010, G09000100|G0900010, G09000101|G0900010, G09000102|G0900010, G09000103|G0900010, G09000104|G0900010, G09000105|G0900030, G09000300|G0900030, G09000301|G0900030, G09000302|G0900030, G09000303|G0900030, G09000304|G0900030, G09000305|G0900030, G09000306|G0900050, G09000500|G0900070, G09000700|G0900090, G09000900|G0900090, G09000901|G0900090, G09000902|G0900090, G09000903|G0900090, G09000904|G0900090, G09000905|G0900090, G09000906|G0900110, G09001100|G0900110, G09001101|G0900130, G09001300|G0900150, G09001500|G1000010, G10000200|G1000030, G10000101|G1000030, G10000102|G1000030, G10000103|G1000030, G10000104|G1000050, G10000300|G1100010, G11000101|G1100010, G11000102|G1100010, G11000103|G1100010, G11000104|G1100010, G11000105|G1200010, G12000101|G1200010, G12000102|G1200030, G12008900|G1200050, G12000500|G1200070, G12002300|G1200090, G12000901|G1200090, G12000902|G1200090, G12000903|G1200090, G12000904|G1200110, G12001101|G1200110, G12001102|G1200110, G12001103|G1200110, G12001104|G1200110, G12001105|G1200110, G12001106|G1200110, G12001107|G1200110, G12001108|G1200110, G12001109|G1200110, G12001110|G1200110, G12001111|G1200110, G12001112|G1200110, G12001113|G1200110, G12001114|G1200130, G12006300|G1200150, G12001500|G1200170, G12001701|G1200190, G12001900|G1200210, G12002101|G1200210, G12002102|G1200210, G12002103|G1200230, G12002300|G1200270, G12002700|G1200290, G12002300|G1200310, G12003101|G1200310, G12003102|G1200310, G12003103|G1200310, G12003104|G1200310, G12003105|G1200310, G12003106|G1200310, G12003107|G1200330, G12003301|G1200330, G12003302|G1200350, G12003500|G1200370, G12006300|G1200390, G12006300|G1200410, G12002300|G1200430, G12009300|G1200450, G12006300|G1200470, G12012100|G1200490, G12002700|G1200510, G12009300|G1200530, G12005301|G1200550, G12002700|G1200550, G12009300|G1200570, G12005701|G1200570, G12005702|G1200570, G12005703|G1200570, G12005704|G1200570, G12005705|G1200570, G12005706|G1200570, G12005707|G1200570, G12005708|G1200590, G12000500|G1200610, G12006100|G1200630, G12006300|G1200650, G12006300|G1200670, G12012100|G1200690, G12006901|G1200690, G12006902|G1200690, G12006903|G1200710, G12007101|G1200710, G12007102|G1200710, G12007103|G1200710, G12007104|G1200710, G12007105|G1200730, G12007300|G1200730, G12007301|G1200750, G12002300|G1200770, G12006300|G1200790, G12012100|G1200810, G12008101|G1200810, G12008102|G1200810, G12008103|G1200830, G12008301|G1200830, G12008302|G1200830, G12008303|G1200850, G12008500|G1200860, G12008601|G1200860, G12008602|G1200860, G12008603|G1200860, G12008604|G1200860, G12008605|G1200860, G12008606|G1200860, G12008607|G1200860, G12008608|G1200860, G12008609|G1200860, G12008610|G1200860, G12008611|G1200860, G12008612|G1200860, G12008613|G1200860, G12008614|G1200860, G12008615|G1200860, G12008616|G1200860, G12008617|G1200860, G12008618|G1200860, G12008619|G1200860, G12008620|G1200860, G12008621|G1200860, G12008622|G1200860, G12008623|G1200860, G12008624|G1200860, G12008700|G1200870, G12008700|G1200890, G12008900|G1200910, G12009100|G1200930, G12009300|G1200950, G12009501|G1200950, G12009502|G1200950, G12009503|G1200950, G12009504|G1200950, G12009505|G1200950, G12009506|G1200950, G12009507|G1200950, G12009508|G1200950, G12009509|G1200950, G12009510|G1200970, G12009701|G1200970, G12009702|G1200990, G12009901|G1200990, G12009902|G1200990, G12009903|G1200990, G12009904|G1200990, G12009905|G1200990, G12009906|G1200990, G12009907|G1200990, G12009908|G1200990, G12009909|G1200990, G12009910|G1200990, G12009911|G1201010, G12010101|G1201010, G12010102|G1201010, G12010103|G1201010, G12010104|G1201030, G12010301|G1201030, G12010302|G1201030, G12010303|G1201030, G12010304|G1201030, G12010305|G1201030, G12010306|G1201030, G12010307|G1201030, G12010308|G1201050, G12010501|G1201050, G12010502|G1201050, G12010503|G1201050, G12010504|G1201070, G12010700|G1201090, G12010700|G1201090, G12010900|G1201110, G12011101|G1201110, G12011102|G1201130, G12011300|G1201150, G12011501|G1201150, G12011502|G1201150, G12011503|G1201170, G12011701|G1201170, G12011702|G1201170, G12011703|G1201170, G12011704|G1201190, G12006902|G1201190, G12006903|G1201210, G12012100|G1201230, G12012100|G1201250, G12002300|G1201270, G12003500|G1201270, G12012701|G1201270, G12012702|G1201270, G12012703|G1201270, G12012704|G1201290, G12006300|G1201310, G12000500|G1201330, G12000500|G1300010, G13001200|G1300030, G13000500|G1300050, G13000500|G1300070, G13001100|G1300090, G13001600|G1300110, G13003500|G1300130, G13003800|G1300150, G13002900|G1300170, G13000700|G1300190, G13000700|G1300210, G13001400|G1300230, G13001300|G1300250, G13000500|G1300270, G13000700|G1300290, G13000200|G1300310, G13000300|G1300330, G13004200|G1300350, G13001900|G1300370, G13001100|G1300390, G13000100|G1300430, G13001300|G1300450, G13002300|G1300470, G13002600|G1300490, G13000500|G1300510, G13000401|G1300510, G13000402|G1300530, G13001700|G1300550, G13002600|G1300570, G13003101|G1300570, G13003102|G1300590, G13003600|G1300610, G13001800|G1300630, G13005001|G1300630, G13005002|G1300650, G13000500|G1300670, G13003001|G1300670, G13003002|G1300670, G13003003|G1300670, G13003004|G1300670, G13003005|G1300690, G13000500|G1300710, G13000800|G1300730, G13004100|G1300750, G13000700|G1300770, G13002100|G1300790, G13001600|G1300810, G13001800|G1300830, G13002600|G1300850, G13003200|G1300870, G13001100|G1300890, G13001007|G1300890, G13001008|G1300890, G13002001|G1300890, G13002002|G1300890, G13002003|G1300890, G13002004|G1300910, G13001300|G1300930, G13001800|G1300950, G13000900|G1300970, G13004400|G1300990, G13001100|G1301010, G13000500|G1301030, G13000300|G1301050, G13003700|G1301070, G13001300|G1301090, G13001200|G1301110, G13002800|G1301130, G13002400|G1301150, G13002500|G1301170, G13003300|G1301190, G13003500|G1301210, G13001001|G1301210, G13001002|G1301210, G13001003|G1301210, G13001004|G1301210, G13001005|G1301210, G13001006|G1301210, G13001007|G1301210, G13004600|G1301230, G13002800|G1301250, G13004200|G1301270, G13000100|G1301290, G13002800|G1301310, G13001100|G1301330, G13003700|G1301350, G13004001|G1301350, G13004002|G1301350, G13004003|G1301350, G13004004|G1301350, G13004005|G1301350, G13004006|G1301370, G13003500|G1301390, G13003400|G1301410, G13004200|G1301430, G13002500|G1301450, G13001800|G1301470, G13003500|G1301490, G13002200|G1301510, G13006001|G1301510, G13006002|G1301530, G13001500|G1301550, G13000700|G1301570, G13003800|G1301590, G13003900|G1301610, G13001200|G1301630, G13004200|G1301650, G13004200|G1301670, G13001300|G1301690, G13001600|G1301710, G13001900|G1301730, G13000500|G1301750, G13001300|G1301770, G13000900|G1301790, G13000200|G1301810, G13004200|G1301830, G13000200|G1301850, G13000600|G1301870, G13003200|G1301890, G13004200|G1301910, G13000100|G1301930, G13001800|G1301950, G13003700|G1301970, G13001800|G1301990, G13002200|G1302010, G13001100|G1302050, G13001100|G1302070, G13001600|G1302090, G13001200|G1302110, G13003900|G1302130, G13002800|G1302150, G13001700|G1302170, G13004300|G1302190, G13003700|G1302210, G13003700|G1302230, G13004500|G1302250, G13001600|G1302270, G13002800|G1302290, G13000500|G1302310, G13001900|G1302330, G13002500|G1302350, G13001500|G1302370, G13001600|G1302390, G13001800|G1302410, G13003200|G1302430, G13001800|G1302450, G13004000|G1302470, G13004300" +in.county_and_puma metadata_and_annual n/a string "G1302490, G13001800|G1302510, G13000300|G1302530, G13001100|G1302550, G13001900|G1302570, G13003500|G1302590, G13001800|G1302610, G13001800|G1302630, G13001800|G1302650, G13004200|G1302670, G13001200|G1302690, G13001800|G1302710, G13001200|G1302730, G13001100|G1302750, G13000800|G1302770, G13000700|G1302790, G13001200|G1302810, G13003200|G1302830, G13001300|G1302850, G13002200|G1302870, G13000700|G1302890, G13001600|G1302910, G13003200|G1302930, G13001900|G1302950, G13002600|G1302970, G13003900|G1302990, G13000500|G1303010, G13004200|G1303030, G13004200|G1303050, G13001200|G1303070, G13001800|G1303090, G13001200|G1303110, G13003200|G1303130, G13002700|G1303150, G13001300|G1303170, G13004200|G1303190, G13001600|G1303210, G13000800|G1500010, G15000200|G1500030, G15000301|G1500030, G15000302|G1500030, G15000303|G1500030, G15000304|G1500030, G15000305|G1500030, G15000306|G1500030, G15000307|G1500030, G15000308|G1500070, G15000100|G1500090, G15000100|G1600010, G16000400|G1600010, G16000600|G1600010, G16000701|G1600010, G16000702|G1600010, G16000800|G1600030, G16000300|G1600050, G16001300|G1600070, G16001300|G1600090, G16000100|G1600110, G16001100|G1600110, G16001300|G1600130, G16001000|G1600150, G16000300|G1600170, G16000100|G1600190, G16001200|G1600210, G16000100|G1600230, G16000300|G1600250, G16001000|G1600270, G16000400|G1600270, G16000500|G1600270, G16000600|G1600290, G16001300|G1600310, G16000900|G1600330, G16000300|G1600350, G16000300|G1600370, G16000300|G1600390, G16001000|G1600410, G16001300|G1600430, G16001100|G1600450, G16000400|G1600470, G16001000|G1600490, G16000300|G1600510, G16001100|G1600530, G16001000|G1600550, G16000100|G1600550, G16000200|G1600570, G16000100|G1600590, G16000300|G1600610, G16000300|G1600630, G16001000|G1600650, G16001100|G1600670, G16001000|G1600690, G16000300|G1600710, G16001300|G1600730, G16000500|G1600750, G16000400|G1600770, G16001300|G1600790, G16000100|G1600810, G16001100|G1600830, G16000900|G1600850, G16000300|G1600870, G16000400|G1700010, G17000300|G1700030, G17000800|G1700050, G17000501|G1700070, G17002901|G1700090, G17000300|G1700110, G17002501|G1700130, G17000401|G1700150, G17000104|G1700170, G17000401|G1700190, G17002100|G1700210, G17001602|G1700230, G17000700|G1700250, G17000700|G1700270, G17000501|G1700290, G17000600|G1700310, G17003401|G1700310, G17003407|G1700310, G17003408|G1700310, G17003409|G1700310, G17003410|G1700310, G17003411|G1700310, G17003412|G1700310, G17003413|G1700310, G17003414|G1700310, G17003415|G1700310, G17003416|G1700310, G17003417|G1700310, G17003418|G1700310, G17003419|G1700310, G17003420|G1700310, G17003421|G1700310, G17003422|G1700310, G17003501|G1700310, G17003502|G1700310, G17003503|G1700310, G17003504|G1700310, G17003520|G1700310, G17003521|G1700310, G17003522|G1700310, G17003523|G1700310, G17003524|G1700310, G17003525|G1700310, G17003526|G1700310, G17003527|G1700310, G17003528|G1700310, G17003529|G1700310, G17003530|G1700310, G17003531|G1700310, G17003532|G1700330, G17000700|G1700350, G17000600|G1700370, G17002601|G1700390, G17001602|G1700410, G17000600|G1700430, G17003202|G1700430, G17003203|G1700430, G17003204|G1700430, G17003205|G1700430, G17003207|G1700430, G17003208|G1700430, G17003209|G1700450, G17000600|G1700470, G17000800|G1700490, G17000501|G1700510, G17000501|G1700530, G17002200|G1700550, G17000900|G1700570, G17000202|G1700590, G17000800|G1700610, G17000401|G1700630, G17003700|G1700650, G17000800|G1700670, G17000202|G1700690, G17000800|G1700710, G17000202|G1700730, G17000202|G1700750, G17002200|G1700770, G17000900|G1700790, G17000700|G1700810, G17001001|G1700830, G17000401|G1700850, G17000104|G1700870, G17000800|G1700890, G17003005|G1700890, G17003007|G1700890, G17003008|G1700890, G17003009|G1700910, G17002300|G1700930, G17003700|G1700950, G17002501|G1700970, G17003306|G1700970, G17003307|G1700970, G17003308|G1700970, G17003309|G1700970, G17003310|G1700990, G17002400|G1701010, G17000700|G1701030, G17000104|G1701050, G17002200|G1701070, G17001602|G1701090, G17000202|G1701110, G17003601|G1701110, G17003602|G1701130, G17002000|G1701150, G17001500|G1701170, G17000401|G1701190, G17001204|G1701190, G17001205|G1701210, G17001001|G1701230, G17002501|G1701250, G17000300|G1701270, G17000800|G1701290, G17001602|G1701310, G17000202|G1701330, G17001001|G1701350, G17000501|G1701370, G17000401|G1701390, G17001602|G1701410, G17002700|G1701430, G17001701|G1701450, G17000900|G1701470, G17001602|G1701490, G17000300|G1701510, G17000800|G1701530, G17000800|G1701550, G17002501|G1701570, G17001001|G1701590, G17000700|G1701610, G17000105|G1701630, G17001104|G1701630, G17001105|G1701650, G17000800|G1701670, G17001300|G1701690, G17000300|G1701710, G17000401|G1701730, G17001602|G1701750, G17002501|G1701770, G17002700|G1701790, G17001900|G1701810, G17000800|G1701830, G17002200|G1701850, G17000800|G1701870, G17000202|G1701890, G17001001|G1701910, G17000700|G1701930, G17000800|G1701950, G17000104|G1701970, G17003102|G1701970, G17003105|G1701970, G17003106|G1701970, G17003107|G1701970, G17003108|G1701990, G17000900|G1702010, G17002801|G1702010, G17002901|G1702030, G17002501|G1800010, G18000900|G1800030, G18001001|G1800030, G18001002|G1800030, G18001003|G1800050, G18002900|G1800070, G18001100|G1800090, G18001500|G1800110, G18001801|G1800130, G18002100|G1800150, G18001100|G1800170, G18001300|G1800190, G18003600|G1800210, G18001600|G1800230, G18001100|G1800250, G18003400|G1800270, G18002700|G1800290, G18003100|G1800310, G18003000|G1800330, G18000600|G1800350, G18002000|G1800370, G18003400|G1800390, G18000500|G1800410, G18002600|G1800430, G18003500|G1800450, G18001600|G1800470, G18003100|G1800490, G18000700|G1800510, G18003200|G1800530, G18001400|G1800550, G18002700|G1800570, G18001801|G1800570, G18001802|G1800570, G18001803|G1800590, G18002500|G1800610, G18003500|G1800630, G18002200|G1800650, G18001500|G1800670, G18001300|G1800690, G18000900|G1800710, G18002900|G1800730, G18000700|G1800750, G18001500|G1800770, G18003000|G1800790, G18003000|G1800810, G18002400|G1800830, G18003400|G1800850, G18000800|G1800870, G18000600|G1800890, G18000101|G1800890, G18000102|G1800890, G18000103|G1800890, G18000104|G1800910, G18000300|G1800930, G18002700|G1800950, G18001900|G1800970, G18002301|G1800970, G18002302|G1800970, G18002303|G1800970, G18002304|G1800970, G18002305|G1800970, G18002306|G1800970, G18002307|G1800990, G18000800|G1801010, G18002700|G1801030, G18001400|G1801050, G18002800|G1801070, G18001100|G1801090, G18002100|G1801110, G18000700|G1801130, G18000600|G1801150, G18003100|G1801170, G18002700|G1801190, G18002700|G1801210, G18001600|G1801230, G18003400|G1801250, G18003400|G1801270, G18000200|G1801290, G18003200|G1801310, G18000700|G1801330, G18002100|G1801350, G18001500|G1801370, G18003100|G1801390, G18002600|G1801410, G18000401|G1801410, G18000402|G1801430, G18003000|G1801450, G18002500|G1801470, G18003400|G1801490, G18000700|G1801510, G18000600|G1801530, G18001600|G1801550, G18003100|G1801570, G18001200|G1801590, G18001300|G1801610, G18002600|G1801630, G18003300|G1801650, G18001600|G1801670, G18001700|G1801690, G18001400|G1801710, G18001600|G1801730, G18003200|G1801750, G18003500|G1801770, G18002600|G1801790, G18000900|G1801810, G18001100|G1801830, G18000900|G1900010, G19001800|G1900030, G19001800|G1900050, G19000400|G1900070, G19001800|G1900090, G19001800|G1900110, G19001200|G1900130, G19000500|G1900150, G19001300|G1900170, G19000400|G1900190, G19000700|G1900210, G19001900|G1900230, G19000600|G1900250, G19001900|G1900270, G19001900|G1900290, G19002100|G1900310, G19000800|G1900330, G19000200|G1900350, G19001900|G1900370, G19000400|G1900390, G19001800|G1900410, G19000100|G1900430, G19000400|G1900450, G19000800|G1900470, G19001900|G1900490, G19001400|G1900490, G19001500|G1900510, G19002200|G1900530, G19001800|G1900550, G19000700|G1900570, G19002300|G1900590, G19000100|G1900610, G19000700|G1900630, G19000100|G1900650, G19000400|G1900670, G19000200|G1900690, G19000600|G1900710, G19002100|G1900730, G19001900|G1900750, G19000600|G1900770, G19001800|G1900790, G19000600|G1900810, G19000200|G1900830, G19000600|G1900850, G19002100|G1900870, G19002300|G1900890, G19000400|G1900910, G19000600|G1900930, G19001900|G1900950, G19001200|G1900970, G19000700|G1900990, G19001400|G1901010, G19002200|G1901030, G19001100|G1901050, G19000800|G1901070, G19002200|G1901090, G19000200|G1901110, G19002300|G1901130, G19001000|G1901150, G19002300|G1901170, G19001800|G1901190, G19000100|G1901210, G19001400|G1901230, G19002200|G1901250, G19001400|G1901270, G19001200|G1901290, G19002100|G1901310, G19000200|G1901330, G19001900|G1901350, G19001800|G1901370, G19002100|G1901390, G19000800|G1901410, G19000100|G1901430, G19000100|G1901450, G19002100|G1901470, G19000100|G1901490, G19002000|G1901510, G19001900|G1901530, G19001500|G1901530, G19001600|G1901530, G19001700|G1901550, G19002100|G1901570, G19001200|G1901590, G19001800|G1901610, G19001900|G1901630, G19000900|G1901650, G19002100|G1901670, G19000100|G1901690, G19001300|G1901710, G19001200|G1901730, G19001800|G1901750, G19001800|G1901770, G19002200|G1901790, G19002200|G1901810, G19001400|G1901830, G19002200|G1901850, G19001800|G1901870, G19000600|G1901890, G19000200|G1901910, G19000400|G1901930, G19002000|G1901950, G19000200|G1901970, G19000600|G2000010, G20001400|G2000030, G20001400|G2000050, G20000400|G2000070, G20001100|G2000090, G20001100|G2000110, G20001400|G2000130, G20000802|G2000150, G20001302|G2000150, G20001304|G2000170, G20000900|G2000190, G20000900|G2000210, G20001500|G2000230, G20000100|G2000250, G20001200|G2000270, G20000200|G2000290, G20000200|G2000310, G20000900|G2000330, G20001100|G2000350, G20000900|G2000350, G20001100|G2000370, G20001500|G2000390, G20000100|G2000410, G20000200|G2000430, G20000400|G2000450, G20000700|G2000470, G20001100|G2000490, G20000900|G2000510, G20000100|G2000530, G20000200|G2000550, G20001200|G2000570, G20001200|G2000590, G20001400|G2000610, G20000300|G2000630, G20000100|G2000650, G20000100|G2000670, G20001200|G2000690, G20001200|G2000710, G20000100|G2000730, G20000900|G2000750, G20001200|G2000770, G20001100|G2000790, G20001301|G2000810, G20001200|G2000830, G20001200|G2000850, G20000802|G2000870, G20000400|G2000890, G20000200|G2000910, G20000601|G2000910, G20000602|G2000910, G20000603|G2000910, G20000604|G2000930, G20001200|G2000950, G20001100|G2000970, G20001100|G2000990, G20001500|G2001010, G20000100|G2001030, G20000400|G2001050, G20000200|G2001070, G20001400|G2001090, G20000100|G2001110, G20000900|G2001130, G20001000|G2001150, G20000900|G2001170, G20000200|G2001190, G20001200|G2001210, G20001400|G2001230, G20000200|G2001250, G20001500|G2001270, G20000900|G2001290, G20001200|G2001310, G20000200|G2001330, G20001500|G2001350, G20000100|G2001370, G20000100|G2001390, G20000802|G2001410, G20000100|G2001430, G20000200|G2001450, G20001100|G2001470, G20000100|G2001490, G20000300|G2001510, G20001100|G2001530, G20000100|G2001550, G20001000|G2001570, G20000200|G2001590, G20001000|G2001610, G20000300|G2001630, G20000100|G2001650, G20001100|G2001670, G20000100|G2001690, G20000200|G2001710, G20000100|G2001730, G20001301|G2001730, G20001302|G2001730, G20001303|G2001730, G20001304|G2001750, G20001200|G2001770, G20000801|G2001770, G20000802|G2001790, G20000100|G2001810, G20000100|G2001830, G20000100|G2001850, G20001100|G2001870, G20001200|G2001890, G20001200|G2001910, G20001100|G2001930, G20000100|G2001950, G20000100|G2001970, G20000802|G2001990, G20000100|G2002010, G20000200|G2002030, G20000100|G2002050, G20000900|G2002070, G20000900|G2002090, G20000500|G2100010, G21000600|G2100030, G21000400|G2100050, G21002000|G2100070, G21000100|G2100090, G21000400|G2100110, G21002700|G2100130, G21000900|G2100150, G21002500|G2100170, G21002300|G2100190, G21002800|G2100210, G21002100|G2100230, G21002700|G2100250, G21001000|G2100270, G21001300|G2100290, G21001600|G2100310, G21000400|G2100330, G21000200|G2100350, G21000100|G2100370, G21002600|G2100390, G21000100|G2100410, G21002600|G2100430, G21002800|G2100450, G21000600|G2100470, G21000300|G2100490, G21002300|G2100510, G21000800|G2100530, G21000600|G2100550, G21000200|G2100570, G21000600|G2100590, G21001500|G2100610, G21000400|G2100630, G21002800|G2100650, G21002200|G2100670, G21001901|G2100670, G21001902|G2100690, G21002700|G2100710, G21001100|G2100730, G21002000|G2100750, G21000100|G2100770, G21002600|G2100790, G21002100|G2100810, G21002600|G2100830, G21000100|G2100850, G21001300|G2100870, G21000600|G2100890, G21002800|G2100910, G21001500|G2100930, G21001200|G2100930, G21001300|G2100950, G21000900|G2100970, G21002300|G2100990, G21000400|G2101010, G21001400|G2101030, G21001800|G2101050, G21000100|G2101070, G21000200|G2101090, G21000800|G2101110, G21001701|G2101110, G21001702|G2101110, G21001703|G2101110, G21001704|G2101110, G21001705|G2101110, G21001706|G2101130, G21002100|G2101150, G21001100|G2101170, G21002400|G2101190, G21001000|G2101210, G21000900|G2101230, G21001200|G2101250, G21000800|G2101270, G21002800|G2101290, G21001000|G2101310, G21001000|G2101330, G21001000|G2101350, G21002700|G2101370, G21002100|G2101390, G21000200|G2101410, G21000400|G2101430, G21000300|G2101450, G21000100|G2101470, G21000700|G2101490, G21001400|G2101510, G21002200|G2101530, G21001100|G2101550, G21001200|G2101570, G21000100|G2101590, G21001100|G2101610, G21002700|G2101630, G21001300|G2101650, G21002700|G2101670, G21002000|G2101690, G21000400|G2101710, G21000400|G2101730, G21002700|G2101750, G21002700|G2101770, G21000200|G2101790, G21001200|G2101810, G21002300|G2101830, G21001400|G2101850, G21001800|G2101870, G21002600|G2101890, G21001000|G2101910, G21002600|G2101930, G21001000|G2101950, G21001100|G2101970, G21002200|G2101990, G21000700|G2102010, G21002700|G2102030, G21000800|G2102050, G21002700|G2102070, G21000600|G2102090, G21002300|G2102110, G21001600|G2102110, G21001800|G2102130, G21000400|G2102150, G21001600|G2102170, G21000600|G2102190, G21000300|G2102210, G21000300|G2102230, G21001800|G2102250, G21001400|G2102270, G21000500|G2102290, G21001200|G2102310, G21000700|G2102330, G21001400|G2102350, G21000900|G2102370, G21001000|G2102390, G21002000|G2200010, G22001100|G2200030, G22000800|G2200050, G22001600|G2200070, G22002000|G2200090, G22000600|G2200110, G22000800|G2200130, G22000300|G2200150, G22000200|G2200170, G22000100|G2200170, G22000101|G2200190, G22000800|G2200190, G22000900|G2200210, G22000500|G2200230, G22000900|G2200250, G22000600|G2200270, G22000300|G2200290, G22000600|G2200310, G22000300|G2200330, G22001500|G2200330, G22001501|G2200330, G22001502|G2200350, G22000500|G2200370, G22001400|G2200390, G22001000|G2200410, G22000500|G2200430, G22000600|G2200450, G22001300|G2200470, G22001400|G2200490, G22000500|G2200510, G22002300|G2200510, G22002301|G2200510, G22002302|G2200510, G22002500|G2200530, G22000900|G2200550, G22001200|G2200550, G22001201|G2200570, G22002000|G2200590, G22000600|G2200610, G22000300|G2200630, G22001700|G2200650, G22000500|G2200670, G22000500|G2200690, G22000300|G2200710, G22002400|G2200710, G22002401|G2200710, G22002402|G2200730, G22000400|G2200750, G22002500|G2200770, G22001400|G2200790, G22000700|G2200810, G22000300|G2200830, G22000500|G2200850, G22000300|G2200870, G22002500|G2200890, G22001900|G2200910, G22001700|G2200930, G22001900|G2200950, G22001900|G2200970, G22001000|G2200990, G22001300|G2201010, G22001300|G2201030, G22002200|G2201030, G22002201|G2201050, G22001800|G2201070, G22000500|G2201090, G22002100|G2201110, G22000500|G2201130, G22001100|G2201150, G22000700|G2201170, G22001800|G2201190, G22000200|G2201210, G22001400|G2201230, G22000500|G2201250, G22001400|G2201270, G22000600|G2300010, G23000600|G2300030, G23000100|G2300050, G23000700|G2300050, G23000800|G2300050, G23000900|G2300050, G23001000|G2300070, G23000200|G2300090, G23000500|G2300110, G23000400|G2300130, G23000500|G2300150, G23000500|G2300170, G23000200|G2300190, G23000300|G2300210, G23000200|G2300230, G23000700|G2300250, G23000200|G2300270, G23000500|G2300290, G23000100|G2300310, G23000800|G2300310, G23000900|G2400010, G24000100|G2400030, G24001201|G2400030, G24001202|G2400030, G24001203|G2400030, G24001204|G2400050, G24000501|G2400050, G24000502|G2400050, G24000503|G2400050, G24000504|G2400050, G24000505|G2400050, G24000506|G2400050, G24000507|G2400090, G24001500|G2400110, G24001300|G2400130, G24000400|G2400150, G24000700|G2400170, G24001600|G2400190, G24001300|G2400210, G24000301|G2400210, G24000302|G2400230, G24000100|G2400250, G24000601|G2400250, G24000602|G2400270, G24000901|G2400270, G24000902|G2400290, G24001300|G2400310, G24001001|G2400310, G24001002|G2400310, G24001003|G2400310, G24001004|G2400310, G24001005|G2400310, G24001006|G2400310, G24001007|G2400330, G24001101|G2400330, G24001102|G2400330, G24001103|G2400330, G24001104|G2400330, G24001105|G2400330, G24001106|G2400330, G24001107|G2400350, G24001300|G2400370, G24001500|G2400390, G24001400|G2400410, G24001300|G2400430, G24000200|G2400450, G24001400|G2400470, G24001400|G2405100, G24000801|G2405100, G24000802|G2405100, G24000803|G2405100, G24000804|G2405100, G24000805|G2500010, G25004700|G2500010, G25004800|G2500030, G25000100|G2500050, G25004200|G2500050, G25004301|G2500050, G25004302|G2500050, G25004303|G2500050, G25004500|G2500050, G25004901|G2500070, G25004800|G2500090, G25000701|G2500090, G25000702|G2500090, G25000703|G2500090, G25000704|G2500090, G25001000|G2500090, G25001300|G2500090, G25002800|G2500110, G25000200|G2500130, G25001600|G2500130, G25001900|G2500130, G25001901|G2500130, G25001902|G2500150, G25000200|G2500150, G25001600|G2500170, G25000400|G2500170, G25000501|G2500170, G25000502|G2500170, G25000503|G2500170, G25000504|G2500170, G25000505|G2500170, G25000506|G2500170, G25000507|G2500170, G25000508|G2500170, G25001000|G2500170, G25001300|G2500170, G25001400|G2500170, G25002400|G2500170, G25002800|G2500170, G25003400|G2500170, G25003500|G2500190, G25004800|G2500210, G25002400|G2500210, G25003400|G2500210, G25003500|G2500210, G25003601|G2500210, G25003602|G2500210, G25003603|G2500210, G25003900|G2500210, G25004000|G2500210, G25004200|G2500230, G25003900|G2500230, G25004000|G2500230, G25004301|G2500230, G25004901|G2500230, G25004902|G2500230, G25004903|G2500250, G25003301|G2500250, G25003302|G2500250, G25003303|G2500250, G25003304|G2500250, G25003305|G2500250, G25003306|G2500270, G25000300|G2500270, G25000301|G2500270, G25000302|G2500270, G25000303|G2500270, G25000304|G2500270, G25000400|G2500270, G25001400|G2500270, G25002400|G2600010, G26000300|G2600030, G26000200|G2600050, G26000900|G2600070, G26000300|G2600090, G26000400|G2600110, G26001300|G2600130, G26000100|G2600150, G26002000|G2600170, G26001400|G2600190, G26000500|G2600210, G26002400|G2600230, G26002200|G2600250, G26002000|G2600270, G26002300|G2600290, G26000400|G2600310, G26000300|G2600330, G26000200|G2600350, G26001200|G2600370, G26001900|G2600390, G26000300|G2600410, G26000200|G2600430, G26000100|G2600450, G26001900|G2600470, G26000400|G2600490, G26001701|G2600490, G26001702|G2600490, G26001703|G2600490, G26001704|G2600510, G26001300|G2600530, G26000100|G2600550, G26000500|G2600570, G26001200|G2600590, G26002500|G2600610, G26000100|G2600630, G26001600|G2600650, G26001801|G2600650, G26001802|G2600670, G26001100|G2600690, G26001300|G2600710, G26000100|G2600730, G26001200|G2600750, G26002600|G2600770, G26002101|G2600770, G26002102|G2600790, G26000400|G2600810, G26001001|G2600810, G26001002|G2600810, G26001003|G2600810, G26001004|G2600830, G26000100|G2600850, G26000600|G2600870, G26001701|G2600890, G26000500|G2600910, G26002500|G2600930, G26002800|G2600950, G26000200|G2600970, G26000200|G2600990, G26003001|G2600990, G26003002|G2600990, G26003003|G2600990, G26003004|G2600990, G26003005|G2600990, G26003006|G2601010, G26000500|G2601030, G26000100|G2601050, G26000600|G2601070, G26001100|G2601090, G26000200|G2601110, G26001400|G2601130, G26000400|G2601150, G26003300|G2601170, G26001100|G2601190, G26000300|G2601210, G26000700|G2601230, G26000600|G2601250, G26002901|G2601250, G26002902" +in.county_and_puma metadata_and_annual n/a string "G2601250, G26002903|G2601250, G26002904|G2601250, G26002905|G2601250, G26002906|G2601250, G26002907|G2601250, G26002908|G2601270, G26000600|G2601290, G26001300|G2601310, G26000100|G2601330, G26001100|G2601350, G26000300|G2601370, G26000300|G2601390, G26000801|G2601390, G26000802|G2601410, G26000300|G2601430, G26001300|G2601450, G26001500|G2601470, G26003100|G2601490, G26002200|G2601510, G26001600|G2601530, G26000200|G2601550, G26001704|G2601570, G26001600|G2601590, G26002300|G2601610, G26002701|G2601610, G26002702|G2601610, G26002703|G2601630, G26003201|G2601630, G26003202|G2601630, G26003203|G2601630, G26003204|G2601630, G26003205|G2601630, G26003206|G2601630, G26003207|G2601630, G26003208|G2601630, G26003209|G2601630, G26003210|G2601630, G26003211|G2601630, G26003212|G2601630, G26003213|G2601650, G26000400|G2700010, G27000300|G2700030, G27001101|G2700030, G27001102|G2700030, G27001103|G2700050, G27000200|G2700070, G27000200|G2700090, G27001000|G2700110, G27000800|G2700130, G27002200|G2700150, G27002000|G2700170, G27000300|G2700170, G27000400|G2700190, G27001700|G2700210, G27000300|G2700230, G27002000|G2700250, G27000600|G2700270, G27000100|G2700290, G27000200|G2700310, G27000400|G2700330, G27002100|G2700350, G27000700|G2700370, G27001501|G2700370, G27001502|G2700370, G27001503|G2700390, G27002400|G2700410, G27000800|G2700430, G27002100|G2700450, G27002600|G2700470, G27002400|G2700490, G27002300|G2700510, G27000800|G2700530, G27001401|G2700530, G27001402|G2700530, G27001403|G2700530, G27001404|G2700530, G27001405|G2700530, G27001406|G2700530, G27001407|G2700530, G27001408|G2700530, G27001409|G2700530, G27001410|G2700550, G27002600|G2700570, G27000200|G2700590, G27000600|G2700610, G27000300|G2700630, G27002100|G2700650, G27000600|G2700670, G27001900|G2700690, G27000100|G2700710, G27000400|G2700730, G27002000|G2700750, G27000400|G2700770, G27000200|G2700790, G27002300|G2700810, G27002000|G2700830, G27002000|G2700850, G27001900|G2700870, G27000200|G2700890, G27000100|G2700910, G27002100|G2700930, G27001900|G2700950, G27000600|G2700970, G27000700|G2700990, G27002400|G2701010, G27002100|G2701030, G27002200|G2701050, G27002100|G2701070, G27000100|G2701090, G27002500|G2701110, G27000800|G2701130, G27000100|G2701150, G27000600|G2701170, G27002100|G2701190, G27000100|G2701210, G27000800|G2701230, G27001301|G2701230, G27001302|G2701230, G27001303|G2701230, G27001304|G2701250, G27000100|G2701270, G27002000|G2701290, G27001900|G2701310, G27002300|G2701330, G27002100|G2701350, G27000100|G2701370, G27000400|G2701370, G27000500|G2701390, G27001600|G2701390, G27001700|G2701410, G27001000|G2701430, G27001900|G2701450, G27000900|G2701470, G27002400|G2701490, G27000800|G2701510, G27000800|G2701530, G27000700|G2701550, G27000800|G2701570, G27002600|G2701590, G27000700|G2701610, G27002200|G2701630, G27001201|G2701630, G27001202|G2701650, G27002100|G2701670, G27000800|G2701690, G27002600|G2701710, G27001800|G2701730, G27002000|G2800010, G28001600|G2800030, G28000200|G2800050, G28001600|G2800070, G28000700|G2800090, G28000200|G2800110, G28000800|G2800130, G28000400|G2800150, G28000700|G2800170, G28000400|G2800190, G28000600|G2800210, G28001600|G2800230, G28001500|G2800250, G28000600|G2800270, G28000300|G2800290, G28001200|G2800310, G28001700|G2800330, G28000100|G2800350, G28001800|G2800370, G28001600|G2800390, G28001900|G2800410, G28001700|G2800430, G28000700|G2800450, G28001900|G2800470, G28002000|G2800490, G28001000|G2800490, G28001100|G2800490, G28001200|G2800510, G28000700|G2800530, G28000800|G2800550, G28000800|G2800570, G28000400|G2800590, G28002100|G2800610, G28001400|G2800630, G28001600|G2800650, G28001700|G2800670, G28001700|G2800690, G28001400|G2800710, G28000400|G2800730, G28001800|G2800750, G28001500|G2800770, G28001600|G2800790, G28001400|G2800810, G28000500|G2800830, G28000700|G2800850, G28001600|G2800870, G28000600|G2800890, G28000900|G2800890, G28001000|G2800910, G28001800|G2800930, G28000200|G2800950, G28000400|G2800970, G28000700|G2800990, G28001400|G2801010, G28001500|G2801030, G28000600|G2801050, G28000600|G2801070, G28000300|G2801090, G28001900|G2801110, G28001800|G2801130, G28001600|G2801150, G28000500|G2801170, G28000200|G2801190, G28000300|G2801210, G28001300|G2801230, G28001400|G2801250, G28000800|G2801270, G28001300|G2801290, G28001400|G2801310, G28001900|G2801330, G28000800|G2801350, G28000300|G2801370, G28000300|G2801390, G28000200|G2801410, G28000200|G2801430, G28000300|G2801450, G28000500|G2801470, G28001600|G2801490, G28001200|G2801510, G28000800|G2801530, G28001700|G2801550, G28000600|G2801570, G28001600|G2801590, G28000600|G2801610, G28000700|G2801630, G28000900|G2900010, G29000300|G2900030, G29000200|G2900050, G29000100|G2900070, G29000400|G2900090, G29002700|G2900110, G29001200|G2900130, G29001100|G2900150, G29001300|G2900170, G29002200|G2900190, G29000600|G2900210, G29000200|G2900230, G29002400|G2900250, G29000800|G2900270, G29000500|G2900290, G29001400|G2900310, G29002200|G2900330, G29000700|G2900350, G29002400|G2900370, G29001100|G2900390, G29001200|G2900410, G29000700|G2900430, G29002601|G2900450, G29000300|G2900470, G29000901|G2900470, G29000902|G2900470, G29000903|G2900490, G29000800|G2900510, G29000500|G2900530, G29000700|G2900550, G29001500|G2900570, G29001200|G2900590, G29001300|G2900610, G29000100|G2900630, G29000200|G2900650, G29001500|G2900670, G29002500|G2900690, G29002300|G2900710, G29001600|G2900730, G29001500|G2900750, G29000100|G2900770, G29002601|G2900770, G29002602|G2900770, G29002603|G2900790, G29000100|G2900810, G29000100|G2900830, G29001200|G2900850, G29001300|G2900870, G29000100|G2900890, G29000700|G2900910, G29002500|G2900930, G29002400|G2900950, G29001001|G2900950, G29001002|G2900950, G29001003|G2900950, G29001004|G2900950, G29001005|G2900970, G29002800|G2900990, G29002001|G2900990, G29002002|G2901010, G29000800|G2901030, G29000300|G2901050, G29001300|G2901070, G29000800|G2901090, G29001200|G2901110, G29000300|G2901130, G29000400|G2901150, G29000100|G2901170, G29000100|G2901190, G29002700|G2901210, G29000300|G2901230, G29002400|G2901250, G29001500|G2901270, G29000300|G2901290, G29000100|G2901310, G29001400|G2901330, G29002300|G2901350, G29000500|G2901370, G29000300|G2901390, G29000400|G2901410, G29001400|G2901430, G29002300|G2901450, G29002800|G2901470, G29000100|G2901490, G29002500|G2901510, G29000500|G2901530, G29002500|G2901550, G29002300|G2901570, G29002100|G2901590, G29000700|G2901610, G29001500|G2901630, G29000400|G2901650, G29000903|G2901670, G29001300|G2901690, G29001400|G2901710, G29000100|G2901730, G29000300|G2901750, G29000700|G2901770, G29000800|G2901790, G29002400|G2901810, G29002400|G2901830, G29001701|G2901830, G29001702|G2901830, G29001703|G2901850, G29001200|G2901860, G29002100|G2901870, G29002100|G2901890, G29001801|G2901890, G29001802|G2901890, G29001803|G2901890, G29001804|G2901890, G29001805|G2901890, G29001806|G2901890, G29001807|G2901890, G29001808|G2901950, G29000700|G2901970, G29000300|G2901990, G29000300|G2902010, G29002200|G2902030, G29002500|G2902050, G29000300|G2902070, G29002300|G2902090, G29002700|G2902110, G29000100|G2902130, G29002700|G2902150, G29002500|G2902170, G29001200|G2902190, G29000400|G2902210, G29002100|G2902230, G29002400|G2902250, G29002601|G2902270, G29000100|G2902290, G29002500|G2905100, G29001901|G2905100, G29001902|G3000010, G30000300|G3000030, G30000600|G3000050, G30000400|G3000070, G30000300|G3000090, G30000500|G3000110, G30000600|G3000130, G30000400|G3000150, G30000400|G3000170, G30000600|G3000190, G30000600|G3000210, G30000600|G3000230, G30000300|G3000250, G30000600|G3000270, G30000400|G3000290, G30000100|G3000310, G30000500|G3000330, G30000600|G3000350, G30000100|G3000370, G30000600|G3000390, G30000300|G3000410, G30000400|G3000430, G30000300|G3000450, G30000400|G3000470, G30000200|G3000490, G30000300|G3000510, G30000400|G3000530, G30000100|G3000550, G30000600|G3000570, G30000300|G3000590, G30000400|G3000610, G30000200|G3000630, G30000200|G3000650, G30000600|G3000670, G30000500|G3000690, G30000400|G3000710, G30000600|G3000730, G30000400|G3000750, G30000600|G3000770, G30000300|G3000790, G30000600|G3000810, G30000200|G3000830, G30000600|G3000850, G30000600|G3000870, G30000600|G3000890, G30000200|G3000910, G30000600|G3000930, G30000300|G3000950, G30000500|G3000970, G30000500|G3000990, G30000400|G3001010, G30000400|G3001030, G30000600|G3001050, G30000600|G3001070, G30000400|G3001090, G30000600|G3001110, G30000600|G3001110, G30000700|G3100010, G31000500|G3100030, G31000200|G3100050, G31000400|G3100070, G31000100|G3100090, G31000300|G3100110, G31000200|G3100130, G31000100|G3100150, G31000100|G3100170, G31000100|G3100190, G31000500|G3100210, G31000200|G3100230, G31000600|G3100250, G31000701|G3100270, G31000200|G3100290, G31000400|G3100310, G31000100|G3100330, G31000100|G3100350, G31000500|G3100370, G31000200|G3100390, G31000200|G3100410, G31000300|G3100430, G31000200|G3100450, G31000100|G3100470, G31000400|G3100490, G31000100|G3100510, G31000200|G3100530, G31000701|G3100550, G31000901|G3100550, G31000902|G3100550, G31000903|G3100550, G31000904|G3100570, G31000400|G3100590, G31000600|G3100610, G31000500|G3100630, G31000400|G3100650, G31000400|G3100670, G31000600|G3100690, G31000100|G3100710, G31000300|G3100730, G31000400|G3100750, G31000400|G3100770, G31000300|G3100790, G31000300|G3100810, G31000300|G3100830, G31000500|G3100850, G31000400|G3100870, G31000400|G3100890, G31000100|G3100910, G31000400|G3100930, G31000300|G3100950, G31000600|G3100970, G31000600|G3100990, G31000500|G3101010, G31000400|G3101030, G31000100|G3101050, G31000100|G3101070, G31000200|G3101090, G31000801|G3101090, G31000802|G3101110, G31000400|G3101130, G31000400|G3101150, G31000300|G3101170, G31000400|G3101190, G31000200|G3101210, G31000300|G3101230, G31000100|G3101250, G31000200|G3101270, G31000600|G3101290, G31000500|G3101310, G31000600|G3101330, G31000600|G3101350, G31000400|G3101370, G31000500|G3101390, G31000200|G3101410, G31000200|G3101430, G31000600|G3101450, G31000400|G3101470, G31000600|G3101490, G31000100|G3101510, G31000600|G3101530, G31000702|G3101550, G31000701|G3101570, G31000100|G3101590, G31000600|G3101610, G31000100|G3101630, G31000300|G3101650, G31000100|G3101670, G31000200|G3101690, G31000600|G3101710, G31000400|G3101730, G31000200|G3101750, G31000300|G3101770, G31000701|G3101790, G31000200|G3101810, G31000500|G3101830, G31000300|G3101850, G31000600|G3200010, G32000300|G3200030, G32000401|G3200030, G32000402|G3200030, G32000403|G3200030, G32000404|G3200030, G32000405|G3200030, G32000406|G3200030, G32000407|G3200030, G32000408|G3200030, G32000409|G3200030, G32000410|G3200030, G32000411|G3200030, G32000412|G3200030, G32000413|G3200050, G32000200|G3200070, G32000300|G3200090, G32000300|G3200110, G32000300|G3200130, G32000300|G3200150, G32000300|G3200170, G32000300|G3200190, G32000200|G3200210, G32000300|G3200230, G32000300|G3200270, G32000300|G3200290, G32000200|G3200310, G32000101|G3200310, G32000102|G3200310, G32000103|G3200330, G32000300|G3205100, G32000200|G3300010, G33000200|G3300030, G33000200|G3300030, G33000300|G3300050, G33000500|G3300070, G33000100|G3300090, G33000100|G3300110, G33000600|G3300110, G33000700|G3300110, G33000800|G3300110, G33000900|G3300130, G33000200|G3300130, G33000400|G3300130, G33000700|G3300150, G33000300|G3300150, G33000700|G3300150, G33001000|G3300170, G33000300|G3300190, G33000500|G3400010, G34000101|G3400010, G34000102|G3400010, G34002600|G3400030, G34000301|G3400030, G34000302|G3400030, G34000303|G3400030, G34000304|G3400030, G34000305|G3400030, G34000306|G3400030, G34000307|G3400030, G34000308|G3400050, G34002001|G3400050, G34002002|G3400050, G34002003|G3400070, G34002101|G3400070, G34002102|G3400070, G34002103|G3400070, G34002104|G3400090, G34002600|G3400110, G34002400|G3400110, G34002500|G3400130, G34001301|G3400130, G34001302|G3400130, G34001401|G3400130, G34001402|G3400130, G34001403|G3400130, G34001404|G3400150, G34002201|G3400150, G34002202|G3400170, G34000601|G3400170, G34000602|G3400170, G34000701|G3400170, G34000702|G3400170, G34000703|G3400190, G34000800|G3400210, G34002301|G3400210, G34002302|G3400210, G34002303|G3400230, G34000901|G3400230, G34000902|G3400230, G34000903|G3400230, G34000904|G3400230, G34000905|G3400230, G34000906|G3400230, G34000907|G3400250, G34001101|G3400250, G34001102|G3400250, G34001103|G3400250, G34001104|G3400250, G34001105|G3400250, G34001106|G3400270, G34001501|G3400270, G34001502|G3400270, G34001503|G3400270, G34001504|G3400290, G34001201|G3400290, G34001202|G3400290, G34001203|G3400290, G34001204|G3400290, G34001205|G3400310, G34000400|G3400310, G34000501|G3400310, G34000502|G3400310, G34000503|G3400330, G34002500|G3400350, G34001001|G3400350, G34001002|G3400350, G34001003|G3400370, G34001600|G3400390, G34001800|G3400390, G34001901|G3400390, G34001902|G3400390, G34001903|G3400390, G34001904|G3400410, G34001700|G3500010, G35000700|G3500010, G35000801|G3500010, G35000802|G3500010, G35000803|G3500010, G35000804|G3500010, G35000805|G3500010, G35000806|G3500030, G35000900|G3500050, G35001100|G3500060, G35000100|G3500070, G35000400|G3500090, G35000400|G3500110, G35000400|G3500130, G35001001|G3500130, G35001002|G3500150, G35001200|G3500170, G35000900|G3500190, G35000400|G3500210, G35000400|G3500230, G35000900|G3500250, G35001200|G3500270, G35001100|G3500280, G35000300|G3500290, G35000900|G3500310, G35000100|G3500330, G35000300|G3500350, G35001100|G3500370, G35000400|G3500390, G35000300|G3500410, G35000400|G3500430, G35000600|G3500450, G35000100|G3500450, G35000200|G3500470, G35000300|G3500490, G35000500|G3500510, G35000900|G3500530, G35000900|G3500550, G35000300|G3500570, G35000900|G3500590, G35000400|G3500610, G35000700|G3600010, G36002001|G3600010, G36002002|G3600030, G36002500|G3600050, G36003701|G3600050, G36003702|G3600050, G36003703|G3600050, G36003704|G3600050, G36003705|G3600050, G36003706|G3600050, G36003707|G3600050, G36003708|G3600050, G36003709|G3600050, G36003710|G3600070, G36002201|G3600070, G36002202|G3600070, G36002203|G3600090, G36002500|G3600110, G36000704|G3600130, G36002600|G3600150, G36002401|G3600150, G36002402|G3600170, G36002203|G3600190, G36000200|G3600210, G36002100|G3600230, G36001500|G3600250, G36002203|G3600270, G36002801|G3600270, G36002802|G3600290, G36001201|G3600290, G36001202|G3600290, G36001203|G3600290, G36001204|G3600290, G36001205|G3600290, G36001206|G3600290, G36001207|G3600310, G36000200|G3600330, G36000200|G3600350, G36001600|G3600370, G36001000|G3600390, G36002100|G3600410, G36000200|G3600430, G36000401|G3600430, G36000403|G3600450, G36000500|G3600470, G36004001|G3600470, G36004002|G3600470, G36004003|G3600470, G36004004|G3600470, G36004005|G3600470, G36004006|G3600470, G36004007|G3600470, G36004008|G3600470, G36004009|G3600470, G36004010|G3600470, G36004011|G3600470, G36004012|G3600470, G36004013|G3600470, G36004014|G3600470, G36004015|G3600470, G36004016|G3600470, G36004017|G3600470, G36004018|G3600490, G36000500|G3600510, G36001300|G3600530, G36001500|G3600550, G36000901|G3600550, G36000902|G3600550, G36000903|G3600550, G36000904|G3600550, G36000905|G3600550, G36000906|G3600570, G36001600|G3600590, G36003201|G3600590, G36003202|G3600590, G36003203|G3600590, G36003204|G3600590, G36003205|G3600590, G36003206|G3600590, G36003207|G3600590, G36003208|G3600590, G36003209|G3600590, G36003210|G3600590, G36003211|G3600590, G36003212|G3600610, G36003801|G3600610, G36003802|G3600610, G36003803|G3600610, G36003804|G3600610, G36003805|G3600610, G36003806|G3600610, G36003807|G3600610, G36003808|G3600610, G36003809|G3600610, G36003810|G3600630, G36001101|G3600630, G36001102|G3600650, G36000401|G3600650, G36000402|G3600650, G36000403|G3600670, G36000701|G3600670, G36000702|G3600670, G36000703|G3600670, G36000704|G3600690, G36001400|G3600710, G36002901|G3600710, G36002902|G3600710, G36002903|G3600730, G36001000|G3600750, G36000600|G3600770, G36000403|G3600790, G36003101|G3600810, G36004101|G3600810, G36004102|G3600810, G36004103|G3600810, G36004104|G3600810, G36004105|G3600810, G36004106|G3600810, G36004107|G3600810, G36004108|G3600810, G36004109|G3600810, G36004110|G3600810, G36004111|G3600810, G36004112|G3600810, G36004113|G3600810, G36004114|G3600830, G36001900|G3600850, G36003901|G3600850, G36003902|G3600850, G36003903|G3600870, G36003001|G3600870, G36003002|G3600870, G36003003|G3600890, G36000100|G3600910, G36001801|G3600910, G36001802|G3600930, G36001700|G3600950, G36000403|G3600970, G36002402|G3600990, G36000800|G3601010, G36002401|G3601010, G36002402|G3601030, G36003301|G3601030, G36003302|G3601030, G36003303|G3601030, G36003304|G3601030, G36003305|G3601030, G36003306|G3601030, G36003307|G3601030, G36003308|G3601030, G36003309|G3601030, G36003310|G3601030, G36003311|G3601030, G36003312|G3601030, G36003313|G3601050, G36002701|G3601070, G36002202|G3601090, G36002300|G3601110, G36002701|G3601110, G36002702|G3601130, G36000300|G3601150, G36000300|G3601170, G36000800|G3601190, G36003101|G3601190, G36003102|G3601190, G36003103|G3601190, G36003104|G3601190, G36003105|G3601190, G36003106|G3601190, G36003107|G3601210, G36001300|G3601230, G36001400|G3700010, G37001600|G3700030, G37002000|G3700050, G37000200|G3700070, G37005300|G3700090, G37000100|G3700110, G37000100|G3700130, G37004400|G3700150, G37000800|G3700170, G37004900|G3700190, G37004800|G3700210, G37002201|G3700210, G37002202|G3700230, G37002100|G3700250, G37003200|G3700250, G37003300|G3700270, G37002000|G3700290, G37000700|G3700310, G37004400|G3700330, G37000400|G3700350, G37002800|G3700370, G37001500|G3700390, G37002400|G3700410, G37000700|G3700430, G37002400|G3700450, G37002600|G3700450, G37002700|G3700470, G37004900|G3700490, G37004300|G3700510, G37005001|G3700510, G37005002|G3700510, G37005003|G3700530, G37000700|G3700550, G37000800|G3700570, G37003500|G3700590, G37001900|G3700610, G37003900|G3700630, G37001301|G3700630, G37001302|G3700650, G37000900|G3700670, G37001801|G3700670, G37001802|G3700670, G37001803|G3700690, G37000500|G3700710, G37003001|G3700710, G37003002|G3700730, G37000700|G3700750, G37002300|G3700770, G37000400|G3700790, G37001000|G3700810, G37001701|G3700810, G37001702|G3700810, G37001703|G3700810, G37001704|G3700830, G37000600|G3700850, G37003800|G3700870, G37002300|G3700890, G37002500|G3700910, G37000600|G3700930, G37005200|G3700950, G37000800|G3700970, G37001900|G3700970, G37002900|G3700990, G37002300|G3700990, G37002400|G3701010, G37001100|G3701030, G37004100|G3701050, G37001500|G3701070, G37004100|G3701090, G37002700|G3701110, G37002100|G3701130, G37002400|G3701150, G37002300|G3701170, G37000800|G3701190, G37003101|G3701190, G37003102|G3701190, G37003103|G3701190, G37003104|G3701190, G37003105|G3701190, G37003106|G3701190, G37003107|G3701190, G37003108|G3701210, G37000100|G3701230, G37003700|G3701250, G37003700|G3701270, G37000900|G3701290, G37004600|G3701290, G37004700|G3701310, G37000600|G3701330, G37004100|G3701330, G37004500|G3701350, G37001400|G3701370, G37004400|G3701390, G37000700|G3701410, G37004600|G3701430, G37000700|G3701450, G37000400|G3701470, G37004200|G3701490, G37002600|G3701510, G37003600|G3701530, G37005200|G3701550, G37004900|G3701550, G37005100|G3701570, G37000300|G3701590, G37003400|G3701610, G37002600|G3701630, G37003900|G3701650, G37005200|G3701670, G37003300|G3701690, G37000300|G3701710, G37000200|G3701730, G37002300|G3701750, G37002500|G3701770, G37000800|G3701790, G37005300|G3701790, G37005400|G3701810, G37000500|G3701830, G37001201|G3701830, G37001202|G3701830, G37001203|G3701830, G37001204|G3701830, G37001205|G3701830, G37001206|G3701830, G37001207|G3701830, G37001208|G3701850, G37000500|G3701850, G37000600|G3701870, G37000800|G3701890, G37000100|G3701910, G37004000|G3701930, G37000200|G3701950, G37001000|G3701970, G37001900|G3701990, G37000100|G3800010, G38000100|G3800030, G38000200|G3800050, G38000200|G3800070, G38000100|G3800090, G38000200|G3800110, G38000100|G3800130, G38000100|G3800150, G38000300|G3800170, G38000500|G3800190, G38000400" +in.county_and_puma metadata_and_annual n/a string "G3800210, G38000200|G3800230, G38000100|G3800250, G38000100|G3800270, G38000200|G3800290, G38000300|G3800310, G38000200|G3800330, G38000100|G3800350, G38000400|G3800370, G38000100|G3800390, G38000400|G3800410, G38000100|G3800430, G38000300|G3800450, G38000200|G3800470, G38000300|G3800490, G38000100|G3800510, G38000300|G3800530, G38000100|G3800550, G38000100|G3800570, G38000100|G3800590, G38000300|G3800610, G38000100|G3800630, G38000200|G3800650, G38000100|G3800670, G38000400|G3800690, G38000200|G3800710, G38000200|G3800730, G38000200|G3800750, G38000100|G3800770, G38000200|G3800790, G38000200|G3800810, G38000200|G3800830, G38000200|G3800850, G38000100|G3800870, G38000100|G3800890, G38000100|G3800910, G38000400|G3800930, G38000200|G3800950, G38000400|G3800970, G38000400|G3800990, G38000400|G3801010, G38000100|G3801030, G38000200|G3801050, G38000100|G3900010, G39005200|G3900030, G39002500|G3900050, G39002100|G3900070, G39001300|G3900090, G39005000|G3900110, G39002600|G3900130, G39003500|G3900150, G39005700|G3900170, G39005401|G3900170, G39005402|G3900170, G39005403|G3900190, G39003300|G3900210, G39002700|G3900230, G39004300|G3900250, G39005600|G3900250, G39005700|G3900270, G39005200|G3900290, G39003400|G3900310, G39002900|G3900330, G39002300|G3900350, G39000901|G3900350, G39000902|G3900350, G39000903|G3900350, G39000904|G3900350, G39000905|G3900350, G39000906|G3900350, G39000907|G3900350, G39000908|G3900350, G39000909|G3900350, G39000910|G3900370, G39004500|G3900390, G39000100|G3900410, G39004000|G3900430, G39000700|G3900450, G39003900|G3900470, G39004800|G3900490, G39004101|G3900490, G39004102|G3900490, G39004103|G3900490, G39004104|G3900490, G39004105|G3900490, G39004106|G3900490, G39004107|G3900490, G39004108|G3900490, G39004109|G3900490, G39004110|G3900490, G39004111|G3900510, G39000200|G3900530, G39005000|G3900550, G39001200|G3900570, G39004700|G3900590, G39002900|G3900610, G39005501|G3900610, G39005502|G3900610, G39005503|G3900610, G39005504|G3900610, G39005505|G3900610, G39005506|G3900610, G39005507|G3900630, G39002400|G3900650, G39002700|G3900670, G39003000|G3900690, G39000100|G3900710, G39005200|G3900730, G39004900|G3900750, G39002900|G3900770, G39002100|G3900790, G39004900|G3900810, G39003500|G3900830, G39002800|G3900850, G39001000|G3900850, G39001100|G3900850, G39001200|G3900870, G39005100|G3900890, G39003800|G3900910, G39002700|G3900930, G39000801|G3900930, G39000802|G3900950, G39000200|G3900950, G39000300|G3900950, G39000400|G3900950, G39000500|G3900950, G39000600|G3900970, G39004200|G3900990, G39001400|G3900990, G39001500|G3901010, G39002800|G3901030, G39001900|G3901050, G39005000|G3901070, G39002600|G3901090, G39004400|G3901110, G39003600|G3901130, G39004601|G3901130, G39004602|G3901130, G39004603|G3901130, G39004604|G3901150, G39003600|G3901170, G39002800|G3901190, G39003700|G3901210, G39003600|G3901230, G39000600|G3901250, G39000100|G3901270, G39003700|G3901290, G39004200|G3901310, G39004900|G3901330, G39001700|G3901350, G39004500|G3901370, G39002400|G3901390, G39002200|G3901410, G39004800|G3901430, G39000700|G3901450, G39005100|G3901470, G39002300|G3901490, G39004500|G3901510, G39003100|G3901510, G39003200|G3901510, G39003300|G3901530, G39001801|G3901530, G39001802|G3901530, G39001803|G3901530, G39001804|G3901530, G39001805|G3901550, G39001400|G3901550, G39001600|G3901570, G39003000|G3901590, G39004200|G3901610, G39002600|G3901630, G39004900|G3901650, G39005301|G3901650, G39005302|G3901670, G39003600|G3901690, G39002000|G3901710, G39000100|G3901730, G39000200|G3901730, G39000300|G3901730, G39000600|G3901750, G39002300|G4000010, G40000200|G4000030, G40000500|G4000050, G40000702|G4000070, G40000500|G4000090, G40000400|G4000110, G40000500|G4000130, G40000702|G4000150, G40000602|G4000170, G40000800|G4000190, G40000701|G4000210, G40000200|G4000230, G40000300|G4000250, G40000500|G4000270, G40000900|G4000290, G40000702|G4000310, G40000601|G4000310, G40000602|G4000330, G40000602|G4000350, G40000100|G4000370, G40001204|G4000370, G40001501|G4000370, G40001601|G4000390, G40000400|G4000410, G40000100|G4000430, G40000500|G4000450, G40000500|G4000470, G40001400|G4000490, G40000701|G4000510, G40001101|G4000530, G40000500|G4000550, G40000400|G4000570, G40000400|G4000590, G40000500|G4000610, G40000300|G4000630, G40001501|G4000650, G40000400|G4000670, G40000602|G4000690, G40000702|G4000710, G40001400|G4000730, G40000500|G4000750, G40000400|G4000770, G40000300|G4000790, G40000300|G4000810, G40001102|G4000830, G40001102|G4000850, G40000701|G4000870, G40001101|G4000890, G40000300|G4000910, G40001302|G4000930, G40000500|G4000950, G40000702|G4000970, G40000100|G4000990, G40000701|G4001010, G40001302|G4001030, G40001400|G4001050, G40000100|G4001070, G40001501|G4001090, G40001001|G4001090, G40001002|G4001090, G40001003|G4001090, G40001004|G4001090, G40001005|G4001090, G40001006|G4001110, G40001302|G4001130, G40001204|G4001130, G40001601|G4001150, G40000100|G4001170, G40001601|G4001190, G40001501|G4001210, G40000300|G4001230, G40000701|G4001230, G40000702|G4001250, G40001101|G4001250, G40001102|G4001270, G40000300|G4001290, G40000400|G4001310, G40000100|G4001310, G40001301|G4001330, G40001501|G4001350, G40000200|G4001370, G40000602|G4001390, G40000500|G4001410, G40000602|G4001430, G40001201|G4001430, G40001202|G4001430, G40001203|G4001430, G40001204|G4001450, G40001301|G4001450, G40001302|G4001470, G40001601|G4001490, G40000400|G4001510, G40000500|G4001530, G40000500|G4100010, G41000100|G4100030, G41000600|G4100050, G41001317|G4100050, G41001318|G4100050, G41001319|G4100070, G41000500|G4100090, G41000500|G4100110, G41000800|G4100130, G41000200|G4100150, G41000800|G4100170, G41000400|G4100190, G41001000|G4100210, G41000200|G4100230, G41000200|G4100250, G41000300|G4100270, G41000200|G4100290, G41000901|G4100290, G41000902|G4100310, G41000200|G4100330, G41000800|G4100350, G41000300|G4100370, G41000300|G4100390, G41000703|G4100390, G41000704|G4100390, G41000705|G4100410, G41000500|G4100430, G41000600|G4100450, G41000300|G4100470, G41001103|G4100470, G41001104|G4100470, G41001105|G4100490, G41000200|G4100510, G41001301|G4100510, G41001302|G4100510, G41001303|G4100510, G41001305|G4100510, G41001314|G4100510, G41001316|G4100530, G41001200|G4100550, G41000200|G4100570, G41000500|G4100590, G41000100|G4100610, G41000100|G4100630, G41000100|G4100650, G41000200|G4100670, G41001320|G4100670, G41001321|G4100670, G41001322|G4100670, G41001323|G4100670, G41001324|G4100690, G41000200|G4100710, G41001200|G4200010, G42003701|G4200030, G42001701|G4200030, G42001702|G4200030, G42001801|G4200030, G42001802|G4200030, G42001803|G4200030, G42001804|G4200030, G42001805|G4200030, G42001806|G4200030, G42001807|G4200050, G42001900|G4200070, G42001501|G4200070, G42001502|G4200090, G42003800|G4200110, G42002701|G4200110, G42002702|G4200110, G42002703|G4200130, G42002200|G4200150, G42000400|G4200170, G42003001|G4200170, G42003002|G4200170, G42003003|G4200170, G42003004|G4200190, G42001600|G4200210, G42002100|G4200230, G42000300|G4200250, G42002801|G4200270, G42001200|G4200290, G42003401|G4200290, G42003402|G4200290, G42003403|G4200290, G42003404|G4200310, G42001300|G4200330, G42000300|G4200350, G42000900|G4200370, G42000803|G4200390, G42000200|G4200410, G42002301|G4200410, G42002302|G4200430, G42002401|G4200430, G42002402|G4200450, G42003301|G4200450, G42003302|G4200450, G42003303|G4200450, G42003304|G4200470, G42000300|G4200490, G42000101|G4200490, G42000102|G4200510, G42003900|G4200530, G42001300|G4200550, G42003701|G4200550, G42003702|G4200570, G42003800|G4200590, G42004002|G4200610, G42002200|G4200630, G42001900|G4200650, G42001300|G4200670, G42001100|G4200690, G42000701|G4200690, G42000702|G4200710, G42003501|G4200710, G42003502|G4200710, G42003503|G4200710, G42003504|G4200730, G42001501|G4200750, G42002500|G4200770, G42002801|G4200770, G42002802|G4200770, G42002803|G4200770, G42002901|G4200790, G42000801|G4200790, G42000802|G4200790, G42000803|G4200810, G42000900|G4200830, G42000300|G4200850, G42001400|G4200870, G42001100|G4200890, G42000600|G4200910, G42003101|G4200910, G42003102|G4200910, G42003103|G4200910, G42003104|G4200910, G42003105|G4200910, G42003106|G4200930, G42001000|G4200950, G42002901|G4200950, G42002902|G4200970, G42001000|G4200990, G42002301|G4201010, G42003201|G4201010, G42003202|G4201010, G42003203|G4201010, G42003204|G4201010, G42003205|G4201010, G42003206|G4201010, G42003207|G4201010, G42003208|G4201010, G42003209|G4201010, G42003210|G4201010, G42003211|G4201030, G42000500|G4201050, G42000300|G4201070, G42002600|G4201090, G42001100|G4201110, G42003800|G4201130, G42000400|G4201150, G42000500|G4201170, G42000400|G4201190, G42001100|G4201210, G42001300|G4201230, G42000200|G4201250, G42004001|G4201250, G42004002|G4201270, G42000500|G4201290, G42002001|G4201290, G42002002|G4201290, G42002003|G4201310, G42000702|G4201330, G42003601|G4201330, G42003602|G4201330, G42003603|G4400010, G44000300|G4400030, G44000201|G4400050, G44000300|G4400070, G44000101|G4400070, G44000102|G4400070, G44000103|G4400070, G44000104|G4400090, G44000400|G4500010, G45001600|G4500030, G45001500|G4500050, G45001300|G4500070, G45000200|G4500090, G45001300|G4500110, G45001300|G4500130, G45001400|G4500150, G45001201|G4500150, G45001202|G4500150, G45001203|G4500150, G45001204|G4500170, G45000605|G4500190, G45001201|G4500190, G45001202|G4500190, G45001203|G4500190, G45001204|G4500210, G45000400|G4500230, G45000400|G4500250, G45000700|G4500270, G45000800|G4500290, G45001300|G4500310, G45000900|G4500330, G45001000|G4500350, G45001201|G4500350, G45001204|G4500370, G45001500|G4500390, G45000603|G4500410, G45000900|G4500430, G45001000|G4500450, G45000102|G4500450, G45000103|G4500450, G45000104|G4500450, G45000105|G4500470, G45001600|G4500490, G45001300|G4500510, G45001101|G4500510, G45001102|G4500530, G45001400|G4500550, G45000605|G4500570, G45000700|G4500590, G45000105|G4500610, G45000800|G4500630, G45000601|G4500630, G45000602|G4500650, G45001600|G4500670, G45001000|G4500690, G45000700|G4500710, G45000400|G4500730, G45000101|G4500750, G45001300|G4500770, G45000101|G4500790, G45000603|G4500790, G45000604|G4500790, G45000605|G4500810, G45000601|G4500830, G45000301|G4500830, G45000302|G4500850, G45000800|G4500870, G45000400|G4500890, G45000800|G4500910, G45000501|G4500910, G45000502|G4600030, G46000400|G4600050, G46000400|G4600070, G46000200|G4600090, G46000400|G4600110, G46000400|G4600130, G46000300|G4600150, G46000400|G4600170, G46000200|G4600190, G46000100|G4600210, G46000300|G4600230, G46000200|G4600250, G46000300|G4600270, G46000500|G4600290, G46000300|G4600310, G46000200|G4600330, G46000100|G4600350, G46000400|G4600370, G46000300|G4600390, G46000300|G4600410, G46000200|G4600430, G46000400|G4600450, G46000300|G4600470, G46000200|G4600490, G46000300|G4600510, G46000300|G4600530, G46000200|G4600550, G46000200|G4600570, G46000300|G4600590, G46000400|G4600610, G46000400|G4600630, G46000100|G4600650, G46000200|G4600670, G46000400|G4600690, G46000200|G4600710, G46000200|G4600730, G46000400|G4600750, G46000200|G4600770, G46000400|G4600790, G46000400|G4600810, G46000100|G4600830, G46000500|G4600830, G46000600|G4600850, G46000200|G4600870, G46000500|G4600890, G46000300|G4600910, G46000300|G4600930, G46000100|G4600950, G46000200|G4600970, G46000400|G4600990, G46000500|G4600990, G46000600|G4601010, G46000400|G4601020, G46000200|G4601030, G46000100|G4601050, G46000100|G4601070, G46000300|G4601090, G46000300|G4601110, G46000400|G4601150, G46000300|G4601170, G46000200|G4601190, G46000200|G4601210, G46000200|G4601230, G46000200|G4601250, G46000500|G4601270, G46000500|G4601290, G46000300|G4601350, G46000500|G4601370, G46000200|G4700010, G47001601|G4700030, G47002700|G4700050, G47000200|G4700070, G47002100|G4700090, G47001700|G4700110, G47001900|G4700130, G47000900|G4700150, G47000600|G4700170, G47000200|G4700190, G47001200|G4700210, G47000400|G4700230, G47003000|G4700250, G47000900|G4700270, G47000700|G4700290, G47001400|G4700310, G47002200|G4700330, G47000100|G4700350, G47000800|G4700370, G47002501|G4700370, G47002502|G4700370, G47002503|G4700370, G47002504|G4700370, G47002505|G4700390, G47002900|G4700410, G47000600|G4700430, G47000400|G4700450, G47000100|G4700470, G47003100|G4700490, G47000800|G4700510, G47002200|G4700530, G47000100|G4700550, G47002800|G4700570, G47001400|G4700590, G47001200|G4700610, G47002100|G4700630, G47001400|G4700650, G47002001|G4700650, G47002002|G4700650, G47002003|G4700670, G47000900|G4700690, G47002900|G4700710, G47002900|G4700730, G47001000|G4700750, G47002900|G4700770, G47002900|G4700790, G47000200|G4700810, G47000400|G4700830, G47000200|G4700850, G47000200|G4700870, G47000700|G4700890, G47001500|G4700910, G47001200|G4700930, G47001601|G4700930, G47001602|G4700930, G47001603|G4700930, G47001604|G4700950, G47000100|G4700970, G47003100|G4700990, G47002800|G4701010, G47002800|G4701030, G47002200|G4701050, G47001800|G4701070, G47001900|G4701090, G47002900|G4701110, G47000600|G4701130, G47003000|G4701150, G47002100|G4701170, G47002700|G4701190, G47002700|G4701210, G47002100|G4701230, G47001800|G4701250, G47000300|G4701270, G47002200|G4701290, G47000900|G4701310, G47000100|G4701330, G47000700|G4701350, G47002800|G4701370, G47000700|G4701390, G47001900|G4701410, G47000700|G4701430, G47002100|G4701450, G47001800|G4701470, G47000400|G4701490, G47002401|G4701490, G47002402|G4701510, G47000900|G4701530, G47002100|G4701550, G47001500|G4701570, G47003201|G4701570, G47003202|G4701570, G47003203|G4701570, G47003204|G4701570, G47003205|G4701570, G47003206|G4701570, G47003207|G4701570, G47003208|G4701590, G47000600|G4701610, G47000300|G4701630, G47001000|G4701630, G47001100|G4701650, G47000500|G4701670, G47003100|G4701690, G47000600|G4701710, G47001200|G4701730, G47001601|G4701750, G47000800|G4701770, G47000600|G4701790, G47001300|G4701810, G47002800|G4701830, G47000200|G4701850, G47000800|G4701870, G47002600|G4701890, G47002300|G4800010, G48001800|G4800030, G48003200|G4800050, G48004000|G4800070, G48006500|G4800090, G48000600|G4800110, G48000100|G4800130, G48006100|G4800150, G48005000|G4800170, G48000400|G4800190, G48006100|G4800210, G48005100|G4800230, G48000600|G4800250, G48006500|G4800270, G48003501|G4800270, G48003502|G4800290, G48005901|G4800290, G48005902|G4800290, G48005903|G4800290, G48005904|G4800290, G48005905|G4800290, G48005906|G4800290, G48005907|G4800290, G48005908|G4800290, G48005909|G4800290, G48005910|G4800290, G48005911|G4800290, G48005912|G4800290, G48005913|G4800290, G48005914|G4800290, G48005915|G4800290, G48005916|G4800310, G48006000|G4800330, G48002800|G4800350, G48003700|G4800370, G48001100|G4800390, G48004801|G4800390, G48004802|G4800390, G48004803|G4800410, G48003602|G4800430, G48003200|G4800450, G48000100|G4800470, G48006900|G4800490, G48002600|G4800510, G48003601|G4800530, G48003400|G4800550, G48005100|G4800570, G48005600|G4800590, G48002600|G4800610, G48006701|G4800610, G48006702|G4800610, G48006703|G4800630, G48001300|G4800650, G48000100|G4800670, G48001100|G4800690, G48000100|G4800710, G48004400|G4800730, G48001700|G4800750, G48000100|G4800770, G48000600|G4800790, G48000400|G4800810, G48002800|G4800830, G48002600|G4800850, G48001901|G4800850, G48001902|G4800850, G48001903|G4800850, G48001904|G4800850, G48001905|G4800850, G48001906|G4800850, G48001907|G4800870, G48000100|G4800890, G48005000|G4800910, G48005800|G4800930, G48002600|G4800950, G48002800|G4800970, G48000800|G4800990, G48003400|G4801010, G48000600|G4801030, G48003200|G4801050, G48002800|G4801070, G48000400|G4801090, G48003200|G4801110, G48000100|G4801130, G48002301|G4801130, G48002302|G4801130, G48002303|G4801130, G48002304|G4801130, G48002305|G4801130, G48002306|G4801130, G48002307|G4801130, G48002308|G4801130, G48002309|G4801130, G48002310|G4801130, G48002311|G4801130, G48002312|G4801130, G48002313|G4801130, G48002314|G4801130, G48002315|G4801130, G48002316|G4801130, G48002317|G4801130, G48002318|G4801130, G48002319|G4801130, G48002320|G4801130, G48002321|G4801130, G48002322|G4801150, G48002800|G4801170, G48000100|G4801190, G48001000|G4801210, G48002001|G4801210, G48002002|G4801210, G48002003|G4801210, G48002004|G4801210, G48002005|G4801210, G48002006|G4801230, G48005500|G4801250, G48000400|G4801270, G48006200|G4801290, G48000100|G4801310, G48006400|G4801330, G48002600|G4801350, G48003100|G4801370, G48006200|G4801390, G48002101|G4801410, G48003301|G4801410, G48003302|G4801410, G48003303|G4801410, G48003304|G4801410, G48003305|G4801410, G48003306|G4801430, G48002200|G4801450, G48003700|G4801470, G48000800|G4801490, G48005100|G4801510, G48002600|G4801530, G48000400|G4801550, G48000600|G4801570, G48004901|G4801570, G48004902|G4801570, G48004903|G4801570, G48004904|G4801570, G48004905|G4801590, G48001000|G4801610, G48003700|G4801630, G48006100|G4801650, G48003200|G4801670, G48004701|G4801670, G48004702|G4801690, G48000400|G4801710, G48006000|G4801730, G48002800|G4801750, G48005500|G4801770, G48005500|G4801790, G48000100|G4801810, G48000800|G4801830, G48001600|G4801850, G48003601|G4801870, G48005700|G4801890, G48000400|G4801910, G48000100|G4801930, G48003400|G4801950, G48000100|G4801970, G48000600|G4801990, G48004200|G4802010, G48004601|G4802010, G48004602|G4802010, G48004603|G4802010, G48004604|G4802010, G48004605|G4802010, G48004606|G4802010, G48004607|G4802010, G48004608|G4802010, G48004609|G4802010, G48004610|G4802010, G48004611|G4802010, G48004612|G4802010, G48004613|G4802010, G48004614|G4802010, G48004615|G4802010, G48004616|G4802010, G48004617|G4802010, G48004618|G4802010, G48004619|G4802010, G48004620|G4802010, G48004621|G4802010, G48004622|G4802010, G48004623|G4802010, G48004624|G4802010, G48004625|G4802010, G48004626|G4802010, G48004627|G4802010, G48004628|G4802010, G48004629|G4802010, G48004630|G4802010, G48004631|G4802010, G48004632|G4802010, G48004633|G4802010, G48004634|G4802010, G48004635|G4802010, G48004636|G4802010, G48004637|G4802010, G48004638|G4802030, G48001200|G4802050, G48000100|G4802070, G48002600|G4802090, G48005400|G4802110, G48000100|G4802130, G48001800|G4802150, G48006801|G4802150, G48006802|G4802150, G48006803|G4802150, G48006804|G4802150, G48006805|G4802150, G48006806|G4802150, G48006807|G4802170, G48003700|G4802190, G48000400|G4802210, G48002200|G4802230, G48001000|G4802250, G48003900|G4802270, G48002800|G4802290, G48003200|G4802310, G48000900|G4802330, G48000100|G4802350, G48002800|G4802370, G48000600|G4802390, G48005500|G4802410, G48004100|G4802430, G48003200|G4802450, G48004301|G4802450, G48004302|G4802470, G48006400|G4802490, G48006900|G4802510, G48002102|G4802530, G48002600|G4802550, G48005500|G4802570, G48001400|G4802590, G48006000|G4802610, G48006900|G4802630, G48002600|G4802650, G48006000|G4802670, G48002800|G4802690, G48000400|G4802710, G48006200|G4802730, G48006900|G4802750, G48002600|G4802770, G48001000|G4802790, G48000400|G4802810, G48003400|G4802830, G48006200|G4802850, G48005500|G4802870, G48005100|G4802890, G48003601|G4802910, G48004400|G4802930, G48003700|G4802950, G48000100|G4802970, G48006400|G4802990, G48003400|G4803030, G48000501|G4803030, G48000502|G4803050, G48000400|G4803070, G48002800|G4803090, G48003801|G4803090, G48003802|G4803110, G48006400|G4803130, G48003601|G4803150, G48001200|G4803170, G48002800|G4803190, G48002800|G4803210, G48005000|G4803230, G48006200|G4803250, G48006100|G4803270, G48002800|G4803290, G48003000|G4803310, G48003601|G4803330, G48003400|G4803350, G48002600|G4803370, G48000600|G4803390, G48004501|G4803390, G48004502|G4803390, G48004503|G4803390, G48004504|G4803410, G48000100|G4803430, G48001000|G4803450, G48000400|G4803470, G48004000|G4803490, G48003700|G4803510, G48004100|G4803530, G48002600|G4803550, G48006601|G4803550, G48006602|G4803550, G48006603|G4803570, G48000100|G4803590, G48000100|G4803610, G48004200|G4803630, G48002200|G4803650, G48001700|G4803670, G48002400|G4803690, G48000100|G4803710, G48003200|G4803730, G48003900|G4803750, G48000200|G4803770, G48003200|G4803790, G48001300|G4803810, G48000300" +in.county_and_puma metadata_and_annual n/a string "G4803830, G48002800|G4803850, G48006200|G4803870, G48001000|G4803890, G48003200|G4803910, G48006500|G4803930, G48000100|G4803950, G48003601|G4803970, G48000900|G4803990, G48002600|G4804010, G48001700|G4804030, G48004100|G4804050, G48004100|G4804070, G48003900|G4804090, G48006500|G4804110, G48003400|G4804130, G48002800|G4804150, G48002600|G4804170, G48002600|G4804190, G48004100|G4804210, G48000100|G4804230, G48001501|G4804230, G48001502|G4804250, G48002200|G4804270, G48006400|G4804290, G48002600|G4804310, G48002800|G4804330, G48002600|G4804350, G48002800|G4804370, G48000100|G4804390, G48002501|G4804390, G48002502|G4804390, G48002503|G4804390, G48002504|G4804390, G48002505|G4804390, G48002506|G4804390, G48002507|G4804390, G48002508|G4804390, G48002509|G4804390, G48002510|G4804390, G48002511|G4804390, G48002512|G4804390, G48002513|G4804390, G48002514|G4804390, G48002515|G4804390, G48002516|G4804410, G48002700|G4804430, G48003200|G4804450, G48000400|G4804470, G48002600|G4804490, G48001000|G4804510, G48002900|G4804530, G48005301|G4804530, G48005302|G4804530, G48005303|G4804530, G48005304|G4804530, G48005305|G4804530, G48005306|G4804530, G48005307|G4804530, G48005308|G4804530, G48005309|G4804550, G48003900|G4804570, G48004100|G4804590, G48001200|G4804610, G48002800|G4804630, G48006200|G4804650, G48006200|G4804670, G48001300|G4804690, G48005600|G4804710, G48003900|G4804730, G48005000|G4804750, G48003200|G4804770, G48003601|G4804790, G48006301|G4804790, G48006302|G4804810, G48005000|G4804830, G48000100|G4804850, G48000700|G4804870, G48000600|G4804890, G48006900|G4804910, G48005201|G4804910, G48005202|G4804910, G48005203|G4804910, G48005204|G4804930, G48005500|G4804950, G48003200|G4804970, G48000600|G4804990, G48001300|G4805010, G48000400|G4805030, G48000600|G4805050, G48006400|G4805070, G48006200|G4900010, G49021001|G4900030, G49003001|G4900050, G49005001|G4900070, G49013001|G4900090, G49013001|G4900110, G49011001|G4900110, G49011002|G4900130, G49013001|G4900150, G49013001|G4900170, G49021001|G4900190, G49013001|G4900210, G49021001|G4900230, G49021001|G4900250, G49021001|G4900270, G49021001|G4900290, G49005001|G4900310, G49021001|G4900330, G49005001|G4900350, G49035001|G4900350, G49035002|G4900350, G49035003|G4900350, G49035004|G4900350, G49035005|G4900350, G49035006|G4900350, G49035007|G4900350, G49035008|G4900350, G49035009|G4900370, G49013001|G4900390, G49021001|G4900410, G49021001|G4900430, G49005001|G4900450, G49003001|G4900470, G49013001|G4900490, G49049001|G4900490, G49049002|G4900490, G49049003|G4900490, G49049004|G4900510, G49013001|G4900530, G49053001|G4900550, G49021001|G4900570, G49057001|G4900570, G49057002|G5000010, G50000400|G5000030, G50000400|G5000050, G50000200|G5000070, G50000100|G5000090, G50000200|G5000110, G50000100|G5000130, G50000100|G5000150, G50000200|G5000170, G50000300|G5000190, G50000200|G5000210, G50000400|G5000230, G50000200|G5000250, G50000300|G5000270, G50000300|G5100010, G51051125|G5100030, G51051089|G5100030, G51051090|G5100050, G51051045|G5100070, G51051105|G5100090, G51051095|G5100110, G51051095|G5100130, G51001301|G5100130, G51001302|G5100150, G51051080|G5100170, G51051080|G5100190, G51051095|G5100210, G51051020|G5100230, G51051045|G5100250, G51051105|G5100270, G51051010|G5100290, G51051105|G5100310, G51051096|G5100330, G51051120|G5100350, G51051020|G5100360, G51051215|G5100370, G51051105|G5100410, G51004101|G5100410, G51004102|G5100410, G51004103|G5100430, G51051084|G5100450, G51051045|G5100470, G51051087|G5100490, G51051105|G5100510, G51051010|G5100530, G51051135|G5100570, G51051125|G5100590, G51059301|G5100590, G51059302|G5100590, G51059303|G5100590, G51059304|G5100590, G51059305|G5100590, G51059306|G5100590, G51059307|G5100590, G51059308|G5100590, G51059309|G5100610, G51051087|G5100630, G51051040|G5100650, G51051089|G5100670, G51051045|G5100690, G51051084|G5100710, G51051040|G5100730, G51051125|G5100750, G51051215|G5100770, G51051020|G5100790, G51051090|G5100810, G51051135|G5100830, G51051105|G5100850, G51051215|G5100870, G51051224|G5100870, G51051225|G5100890, G51051097|G5100910, G51051080|G5100930, G51051145|G5100950, G51051206|G5100970, G51051125|G5100990, G51051120|G5101010, G51051215|G5101030, G51051125|G5101050, G51051010|G5101070, G51010701|G5101070, G51010702|G5101070, G51010703|G5101090, G51051089|G5101110, G51051105|G5101130, G51051087|G5101150, G51051125|G5101170, G51051105|G5101190, G51051125|G5101210, G51051040|G5101250, G51051089|G5101270, G51051215|G5101310, G51051125|G5101330, G51051125|G5101350, G51051105|G5101370, G51051087|G5101390, G51051085|G5101410, G51051097|G5101430, G51051097|G5101450, G51051215|G5101470, G51051105|G5101490, G51051135|G5101530, G51051244|G5101530, G51051245|G5101530, G51051246|G5101550, G51051040|G5101570, G51051087|G5101590, G51051125|G5101610, G51051044|G5101610, G51051045|G5101630, G51051080|G5101650, G51051110|G5101670, G51051010|G5101690, G51051010|G5101710, G51051085|G5101730, G51051020|G5101750, G51051145|G5101770, G51051120|G5101790, G51051115|G5101810, G51051135|G5101830, G51051135|G5101850, G51051010|G5101870, G51051085|G5101910, G51051020|G5101930, G51051125|G5101950, G51051010|G5101970, G51051020|G5101990, G51051206|G5105100, G51051255|G5105200, G51051020|G5105300, G51051080|G5105400, G51051090|G5105500, G51055001|G5105500, G51055002|G5105700, G51051135|G5105800, G51051045|G5105900, G51051097|G5105950, G51051135|G5106000, G51059303|G5106100, G51059308|G5106200, G51051145|G5106300, G51051115|G5106400, G51051020|G5106500, G51051186|G5106600, G51051110|G5106700, G51051135|G5106780, G51051080|G5106800, G51051096|G5106830, G51051245|G5106850, G51051245|G5106900, G51051097|G5107000, G51051175|G5107100, G51051154|G5107100, G51051155|G5107200, G51051010|G5107300, G51051135|G5107350, G51051206|G5107400, G51051155|G5107500, G51051040|G5107600, G51051235|G5107700, G51051044|G5107750, G51051044|G5107900, G51051080|G5108000, G51051145|G5108100, G51051164|G5108100, G51051165|G5108100, G51051167|G5108200, G51051080|G5108300, G51051206|G5108400, G51051084|G5300010, G53010600|G5300030, G53010600|G5300050, G53010701|G5300050, G53010702|G5300050, G53010703|G5300070, G53010300|G5300090, G53011900|G5300110, G53011101|G5300110, G53011102|G5300110, G53011103|G5300110, G53011104|G5300130, G53010600|G5300150, G53011200|G5300170, G53010300|G5300190, G53010400|G5300210, G53010701|G5300210, G53010703|G5300230, G53010600|G5300250, G53010800|G5300270, G53011300|G5300290, G53010200|G5300310, G53011900|G5300330, G53011601|G5300330, G53011602|G5300330, G53011603|G5300330, G53011604|G5300330, G53011605|G5300330, G53011606|G5300330, G53011607|G5300330, G53011608|G5300330, G53011609|G5300330, G53011610|G5300330, G53011611|G5300330, G53011612|G5300330, G53011613|G5300330, G53011614|G5300330, G53011615|G5300330, G53011616|G5300350, G53011801|G5300350, G53011802|G5300370, G53010800|G5300390, G53011000|G5300410, G53011000|G5300430, G53010600|G5300450, G53011300|G5300470, G53010400|G5300490, G53011200|G5300510, G53010400|G5300530, G53011501|G5300530, G53011502|G5300530, G53011503|G5300530, G53011504|G5300530, G53011505|G5300530, G53011506|G5300530, G53011507|G5300550, G53010200|G5300570, G53010200|G5300590, G53011000|G5300610, G53011701|G5300610, G53011702|G5300610, G53011703|G5300610, G53011704|G5300610, G53011705|G5300610, G53011706|G5300630, G53010501|G5300630, G53010502|G5300630, G53010503|G5300630, G53010504|G5300650, G53010400|G5300670, G53011401|G5300670, G53011402|G5300690, G53011200|G5300710, G53010703|G5300730, G53010100|G5300750, G53010600|G5300770, G53010901|G5300770, G53010902|G5400010, G54000500|G5400030, G54000400|G5400050, G54000900|G5400070, G54000600|G5400090, G54000100|G5400110, G54000800|G5400130, G54000600|G5400150, G54001000|G5400170, G54000200|G5400190, G54001200|G5400210, G54000600|G5400230, G54000500|G5400250, G54001100|G5400270, G54000400|G5400290, G54000100|G5400310, G54000500|G5400330, G54000200|G5400350, G54000600|G5400370, G54000400|G5400390, G54001000|G5400410, G54000500|G5400430, G54000900|G5400450, G54001300|G5400470, G54001300|G5400490, G54000200|G5400510, G54000100|G5400530, G54000800|G5400550, G54001200|G5400570, G54000400|G5400590, G54001300|G5400610, G54000300|G5400630, G54001100|G5400650, G54000400|G5400670, G54001100|G5400690, G54000100|G5400710, G54000500|G5400730, G54000700|G5400750, G54001100|G5400770, G54000300|G5400790, G54000900|G5400810, G54001200|G5400830, G54000500|G5400850, G54000600|G5400870, G54000600|G5400890, G54001100|G5400910, G54000200|G5400930, G54000500|G5400950, G54000600|G5400970, G54000500|G5400990, G54000800|G5401010, G54001100|G5401030, G54000600|G5401050, G54000700|G5401070, G54000700|G5401090, G54001300|G5500010, G55001601|G5500030, G55000100|G5500050, G55055101|G5500070, G55000100|G5500090, G55000200|G5500090, G55000300|G5500110, G55000700|G5500130, G55000100|G5500150, G55001401|G5500170, G55055101|G5500170, G55055103|G5500190, G55055101|G5500210, G55001000|G5500230, G55000700|G5500250, G55000101|G5500250, G55000102|G5500250, G55000103|G5500270, G55001001|G5500290, G55001300|G5500310, G55000100|G5500330, G55055102|G5500350, G55055103|G5500370, G55001300|G5500390, G55001401|G5500410, G55000600|G5500430, G55000800|G5500450, G55000800|G5500470, G55001400|G5500490, G55000800|G5500510, G55000100|G5500530, G55000700|G5500550, G55001001|G5500570, G55001601|G5500590, G55010000|G5500610, G55001301|G5500630, G55000900|G5500650, G55000800|G5500670, G55000600|G5500690, G55000600|G5500710, G55001301|G5500730, G55001600|G5500750, G55001300|G5500770, G55001400|G5500780, G55001400|G5500790, G55040101|G5500790, G55040301|G5500790, G55040701|G5500790, G55041001|G5500790, G55041002|G5500790, G55041003|G5500790, G55041004|G5500790, G55041005|G5500810, G55000700|G5500830, G55001300|G5500850, G55000600|G5500870, G55001500|G5500890, G55020000|G5500910, G55000700|G5500930, G55000700|G5500950, G55055101|G5500970, G55001601|G5500990, G55000100|G5501010, G55030000|G5501030, G55000800|G5501050, G55002400|G5501070, G55000100|G5501090, G55055102|G5501110, G55001000|G5501130, G55000100|G5501150, G55001400|G5501170, G55002500|G5501190, G55000100|G5501210, G55000700|G5501230, G55000700|G5501250, G55000600|G5501270, G55050000|G5501290, G55000100|G5501310, G55020000|G5501330, G55070101|G5501330, G55070201|G5501330, G55070301|G5501350, G55001400|G5501370, G55001400|G5501390, G55001501|G5501410, G55001601|G5600010, G56000300|G5600030, G56000100|G5600050, G56000200|G5600070, G56000400|G5600090, G56000400|G5600110, G56000200|G5600130, G56000500|G5600150, G56000200|G5600170, G56000500|G5600190, G56000200|G5600210, G56000300|G5600230, G56000100|G5600250, G56000400|G5600270, G56000200|G5600290, G56000100|G5600310, G56000200|G5600330, G56000100|G5600350, G56000500|G5600370, G56000500|G5600390, G56000100|G5600410, G56000500|G5600430, G56000200|G5600450, G56000200" +in.county_metro_status metadata_and_annual n/a string Metropolitan|Non-Metropolitan +in.custom_state metadata_and_annual n/a string AK|Others +in.dehumidifier metadata_and_annual n/a string None +in.dishwasher metadata_and_annual n/a string 290 Rated kWh|318 Rated kWh|None +in.dishwasher_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage +in.door_area metadata_and_annual n/a string 20 ft^2 +in.doors metadata_and_annual n/a string Fiberglass +in.duct_leakage_and_insulation metadata_and_annual n/a string "0% Leakage to Outside, Uninsulated|10% Leakage to Outside, R-4|10% Leakage to Outside, R-6|10% Leakage to Outside, R-8|10% Leakage to Outside, Uninsulated|20% Leakage to Outside, R-4|20% Leakage to Outside, R-6|20% Leakage to Outside, R-8|20% Leakage to Outside, Uninsulated|30% Leakage to Outside, R-4|30% Leakage to Outside, R-6|30% Leakage to Outside, R-8|30% Leakage to Outside, Uninsulated|None" +in.duct_location metadata_and_annual n/a string Attic|Crawlspace|Garage|Heated Basement|Living Space|None|Unheated Basement +in.eaves metadata_and_annual n/a string 2 ft +in.electric_panel_service_rating..a metadata_and_annual amp integer 60|90|100|120|125|150|200|250|300|400 +in.electric_panel_service_rating_bin..a metadata_and_annual amp string 100|125|200|101-124|126-199|201+|<100 +in.electric_vehicle_battery metadata_and_annual n/a string "Compact, Battery Electric Vehicle, 200 mile range|Compact, Battery Electric Vehicle, 300 mile range|Midsize, Battery Electric Vehicle, 200 mile range|Midsize, Battery Electric Vehicle, 300 mile range|Pickup, Battery Electric Vehicle, 200 mile range|Pickup, Battery Electric Vehicle, 300 mile range|SUV, Battery Electric Vehicle, 200 mile range|SUV, Battery Electric Vehicle, 300 mile range" +in.electric_vehicle_charge_at_home metadata_and_annual n/a string 0-19%|100%|20-39%|40-59%|60-79%|80-99% +in.electric_vehicle_charger metadata_and_annual n/a string Level 1 charger|Level 2 charger|None +in.electric_vehicle_miles_traveled metadata_and_annual n/a integer 1000|3000|5000|7000|9000|11000|13000|15000|17000|19000|22500 +in.electric_vehicle_outlet_access metadata_and_annual n/a boolean No|Yes +in.electric_vehicle_ownership metadata_and_annual n/a boolean No|Yes +in.energystar_climate_zone_2023 metadata_and_annual n/a string North-Central|Northern|South-Central|Southern +in.federal_poverty_level metadata_and_annual n/a string 0-100%|100-150%|150-200%|200-300%|300-400%|400%+|Not Available +in.generation_and_emissions_assessment_region metadata_and_annual n/a string CAISO|ERCOT|FRCC|ISONE|MISO Central|MISO North|MISO South|NYISO|None|Northern Grid East|Northern Grid South|Northern Grid West|PJM East|PJM West|SERTP|SPP North|SPP South|West Connect North|West Connect South +in.geometry_attic_type metadata_and_annual n/a string Finished Attic or Cathedral Ceilings|None|Unvented Attic|Vented Attic +in.geometry_building_horizontal_location_mf metadata_and_annual n/a string Left|Middle|None|Not Applicable|Right +in.geometry_building_horizontal_location_sfa metadata_and_annual n/a string Left|Middle|None|Right +in.geometry_building_level_mf metadata_and_annual n/a string Bottom|Middle|None|Top +in.geometry_building_number_units_mf metadata_and_annual n/a integer 2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|24|30|36|43|67|116|183|326|None +in.geometry_building_number_units_sfa metadata_and_annual n/a integer 5|6|7|8|10|12|15|16|20|24|30|36|50|60|90|144|None +in.geometry_building_type_acs metadata_and_annual n/a string 10 to 19 Unit|2 Unit|20 to 49 Unit|3 or 4 Unit|5 to 9 Unit|50 or more Unit|Mobile Home|Single-Family Attached|Single-Family Detached +in.geometry_building_type_height metadata_and_annual n/a string "Mobile Home|Multi-Family with 2 - 4 Units|Multi-Family with 5+ Units, 1-3 Stories|Multi-Family with 5+ Units, 4-7 Stories|Multi-Family with 5+ Units, 8+ Stories|Single-Family Attached|Single-Family Detached" +in.geometry_building_type_recs metadata_and_annual n/a string Mobile Home|Multi-Family with 2 - 4 Units|Multi-Family with 5+ Units|Single-Family Attached|Single-Family Detached +in.geometry_floor_area metadata_and_annual n/a string 0-499|1000-1499|1500-1999|2000-2499|2500-2999|3000-3999|4000+|500-749|750-999 +in.geometry_floor_area_bin metadata_and_annual n/a string 0-1499|1500-2499|2500-3999|4000+ +in.geometry_foundation_type metadata_and_annual n/a string Ambient|Heated Basement|Slab|Unheated Basement|Unvented Crawlspace|Vented Crawlspace +in.geometry_garage metadata_and_annual n/a string 1 Car|2 Car|3 Car|None +in.geometry_space_combination metadata_and_annual n/a string "Mobile Home, Ambient, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage|Single-Family Attached, Heated Basement, Finished Attic, No Garage|Single-Family Attached, Heated Basement, No Attic, No Garage|Single-Family Attached, Heated Basement, Unvented Attic, No Garage|Single-Family Attached, Heated Basement, Vented Attic, No Garage|Single-Family Attached, Slab, Finished Attic, No Garage|Single-Family Attached, Slab, No Attic, No Garage|Single-Family Attached, Slab, Unvented Attic, No Garage|Single-Family Attached, Slab, Vented Attic, No Garage|Single-Family Attached, Unheated Basement, Finished Attic, No Garage|Single-Family Attached, Unheated Basement, No Attic, No Garage|Single-Family Attached, Unheated Basement, Unvented Attic, No Garage|Single-Family Attached, Unheated Basement, Vented Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage|Single-Family Attached, Unvented Crawlspace, No Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage|Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage|Single-Family Attached, Vented Crawlspace, No Attic, No Garage|Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage|Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage|Single-Family Detached, Ambient, Finished Attic, No Garage|Single-Family Detached, Ambient, No Attic, No Garage|Single-Family Detached, Ambient, Unvented Attic, No Garage|Single-Family Detached, Ambient, Vented Attic, No Garage|Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, No Garage|Single-Family Detached, Heated Basement, No Attic, 1 Car Garage|Single-Family Detached, Heated Basement, No Attic, 2 Car Garage|Single-Family Detached, Heated Basement, No Attic, 3 Car Garage|Single-Family Detached, Heated Basement, No Attic, No Garage|Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, No Garage|Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, No Garage|Single-Family Detached, Slab, Finished Attic, 1 Car Garage|Single-Family Detached, Slab, Finished Attic, 2 Car Garage|Single-Family Detached, Slab, Finished Attic, 3 Car Garage|Single-Family Detached, Slab, Finished Attic, No Garage|Single-Family Detached, Slab, No Attic, 1 Car Garage|Single-Family Detached, Slab, No Attic, 2 Car Garage|Single-Family Detached, Slab, No Attic, 3 Car Garage|Single-Family Detached, Slab, No Attic, No Garage|Single-Family Detached, Slab, Unvented Attic, 1 Car Garage|Single-Family Detached, Slab, Unvented Attic, 2 Car Garage|Single-Family Detached, Slab, Unvented Attic, 3 Car Garage|Single-Family Detached, Slab, Unvented Attic, No Garage|Single-Family Detached, Slab, Vented Attic, 1 Car Garage|Single-Family Detached, Slab, Vented Attic, 2 Car Garage|Single-Family Detached, Slab, Vented Attic, 3 Car Garage|Single-Family Detached, Slab, Vented Attic, No Garage|Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, No Garage|Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, No Attic, No Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, No Garage|Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage|Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, No Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +in.geometry_stories metadata_and_annual n/a integer 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|20|21|35 +in.geometry_stories_low_rise metadata_and_annual n/a string 1|2|3|4+ +in.geometry_story_bin metadata_and_annual n/a string 8+|<8 +in.geometry_wall_exterior_finish metadata_and_annual n/a string "Aluminum, Light|Brick, Light|Brick, Medium/Dark|Fiber-Cement, Light|None|Shingle, Asbestos, Medium|Shingle, Composition, Medium|Stucco, Light|Stucco, Medium/Dark|Vinyl, Light|Wood, Medium/Dark" +in.geometry_wall_type metadata_and_annual n/a string Brick|Concrete|Steel Frame|Wood Frame +in.ground_thermal_conductivity metadata_and_annual n/a float 0.5|0.8|1.1|1.4|1.7|2.0|2.3|2.6 +in.has_pv metadata_and_annual n/a boolean No|Yes +in.heating_fuel metadata_and_annual n/a string Electricity|Fuel Oil|Natural Gas|None|Other Fuel|Propane|Wood +in.heating_unavailable_days metadata_and_annual n/a string 1 day|1 month|1 week|2 weeks|3 days|3 months|Never|Year round +in.heating_setpoint metadata_and_annual n/a string 55F|60F|62F|65F|67F|68F|70F|72F|75F|76F|78F|80F +in.heating_setpoint_has_offset metadata_and_annual n/a boolean No|Yes +in.heating_setpoint_offset_magnitude metadata_and_annual n/a string 0F|12F|3F|6F +in.heating_setpoint_offset_period metadata_and_annual n/a string Day|Day +1h|Day +2h|Day +3h|Day +4h|Day +5h|Day -1h|Day -2h|Day -3h|Day -4h|Day -5h|Day and Night|Day and Night +1h|Day and Night +2h|Day and Night +3h|Day and Night +4h|Day and Night +5h|Day and Night -1h|Day and Night -2h|Day and Night -3h|Day and Night -4h|Day and Night -5h|Night|Night +1h|Night +2h|Night +3h|Night +4h|Night +5h|Night -1h|Night -2h|Night -3h|Night -4h|Night -5h|None +in.holiday_lighting metadata_and_annual n/a string No Exterior Use +in.hot_water_distribution metadata_and_annual n/a string Uninsulated +in.hot_water_fixtures metadata_and_annual n/a string 100% Usage|110% Usage|120% Usage|130% Usage|140% Usage|150% Usage|160% Usage|170% Usage|180% Usage|200% Usage|50% Usage|60% Usage|70% Usage|80% Usage|90% Usage +in.household_has_tribal_persons metadata_and_annual n/a string No|Not Available|Yes +in.hvac_cooling_autosizing_factor metadata_and_annual n/a string None +in.hvac_cooling_efficiency metadata_and_annual n/a string "AC, SEER 10|AC, SEER 13|AC, SEER 15|AC, SEER 8|Ducted Heat Pump|Non-Ducted Heat Pump|None|Room AC, EER 10.7|Room AC, EER 12.0|Room AC, EER 8.5|Room AC, EER 9.8|Shared Cooling" +in.hvac_cooling_partial_space_conditioning metadata_and_annual n/a string 100% Conditioned|20% Conditioned|40% Conditioned|60% Conditioned|80% Conditioned|<10% Conditioned|None +in.hvac_cooling_type metadata_and_annual n/a string Central AC|Ducted Heat Pump|Non-Ducted Heat Pump|None|Room AC +in.hvac_has_ducts metadata_and_annual n/a boolean No|Yes +in.hvac_has_shared_system metadata_and_annual n/a string Cooling Only|Heating Only|Heating and Cooling|None +in.hvac_has_zonal_electric_heating metadata_and_annual n/a boolean No|Yes +in.hvac_heating_autosizing_factor metadata_and_annual n/a string None +in.hvac_heating_efficiency metadata_and_annual n/a string "ASHP, SEER 10, 6.2 HSPF|ASHP, SEER 13, 7.7 HSPF|ASHP, SEER 15, 8.5 HSPF|Electric Baseboard, 100% Efficiency|Electric Boiler, 100% AFUE|Electric Furnace, 100% AFUE|Electric Wall Furnace, 100% AFUE|Fuel Boiler, 76% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 60% AFUE|Fuel Furnace, 76% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 92.5% AFUE|Fuel Wall/Floor Furnace, 60% AFUE|Fuel Wall/Floor Furnace, 68% AFUE|MSHP, SEER 14.5, 8.2 HSPF|MSHP, SEER 29.3, 14 HSPF|None|Shared Heating" +in.hvac_heating_type metadata_and_annual n/a string Ducted Heat Pump|Ducted Heating|Non-Ducted Heat Pump|Non-Ducted Heating|None +in.hvac_heating_type_and_fuel metadata_and_annual n/a string Electricity ASHP|Electricity Baseboard|Electricity Electric Boiler|Electricity Electric Furnace|Electricity Electric Wall Furnace|Electricity MSHP|Electricity Shared Heating|Fuel Oil Fuel Boiler|Fuel Oil Fuel Furnace|Fuel Oil Fuel Wall/Floor Furnace|Fuel Oil Shared Heating|Natural Gas Fuel Boiler|Natural Gas Fuel Furnace|Natural Gas Fuel Wall/Floor Furnace|Natural Gas Shared Heating|None|Other Fuel Fuel Boiler|Other Fuel Fuel Furnace|Other Fuel Fuel Wall/Floor Furnace|Other Fuel Shared Heating|Propane Fuel Boiler|Propane Fuel Furnace|Propane Fuel Wall/Floor Furnace|Propane Shared Heating|Void +in.hvac_secondary_heating_efficiency metadata_and_annual n/a string "Fuel Boiler, 76% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 92.5% AFUE|None" +in.hvac_secondary_heating_fuel metadata_and_annual n/a string Fuel Oil|Natural Gas|None|Wood +in.hvac_secondary_heating_partial_space_conditioning metadata_and_annual n/a string 0%|10%|20%|30%|40%|49% +in.hvac_secondary_heating_type metadata_and_annual n/a string Ducted Heating|Non-Ducted Heating|None +in.hvac_shared_efficiencies metadata_and_annual n/a string "Boiler Baseboards Heating Only, Electricity|Boiler Baseboards Heating Only, Fuel|Fan Coil Cooling Only|Fan Coil Heating and Cooling, Electricity|Fan Coil Heating and Cooling, Fuel|None" +in.hvac_system_is_faulted metadata_and_annual n/a boolean No +in.hvac_system_is_scaled metadata_and_annual n/a boolean No +in.hvac_system_single_speed_ac_airflow metadata_and_annual n/a string None +in.hvac_system_single_speed_ac_charge metadata_and_annual n/a string None +in.hvac_system_single_speed_ashp_airflow metadata_and_annual n/a string None +in.hvac_system_single_speed_ashp_charge metadata_and_annual n/a string None +in.income metadata_and_annual n/a string 10000-14999|100000-119999|120000-139999|140000-159999|15000-19999|160000-179999|180000-199999|20000-24999|200000+|25000-29999|30000-34999|35000-39999|40000-44999|45000-49999|50000-59999|60000-69999|70000-79999|80000-99999|<10000|Not Available +in.income_recs_2015 metadata_and_annual n/a string 100000-119999|120000-139999|140000+|20000-39999|40000-59999|60000-79999|80000-99999|<20000|Not Available +in.income_recs_2020 metadata_and_annual n/a string 100000-149999|150000+|20000-39999|40000-59999|60000-99999|<20000|Not Available +in.infiltration metadata_and_annual n/a string 1 ACH50|10 ACH50|15 ACH50|2 ACH50|20 ACH50|25 ACH50|3 ACH50|30 ACH50|4 ACH50|40 ACH50|5 ACH50|50 ACH50|6 ACH50|7 ACH50|8 ACH50 +in.insulation_ceiling metadata_and_annual n/a string None|R-13|R-19|R-30|R-38|R-49|R-7|Uninsulated +in.insulation_floor metadata_and_annual n/a string Ceiling R-13|Ceiling R-19|Ceiling R-30|None|Uninsulated +in.insulation_foundation_wall metadata_and_annual n/a string "None|Uninsulated|Wall R-10, Exterior|Wall R-15, Exterior|Wall R-5, Exterior" +in.insulation_rim_joist metadata_and_annual n/a string "None|R-10, Exterior|R-15, Exterior|R-5, Exterior|Uninsulated" +in.insulation_roof metadata_and_annual n/a string "Finished, R-13|Finished, R-19|Finished, R-30|Finished, R-38|Finished, R-49|Finished, R-7|Finished, Uninsulated|Unfinished, Uninsulated" +in.insulation_slab metadata_and_annual n/a string "2ft R10 Perimeter, Vertical|2ft R10 Under, Horizontal|2ft R5 Perimeter, Vertical|2ft R5 Under, Horizontal|None|Uninsulated" +in.insulation_wall metadata_and_annual n/a string "Brick, 12-in, 3-wythe, R-11|Brick, 12-in, 3-wythe, R-15|Brick, 12-in, 3-wythe, R-19|Brick, 12-in, 3-wythe, R-7|Brick, 12-in, 3-wythe, Uninsulated|CMU, 6-in Hollow, R-11|CMU, 6-in Hollow, R-15|CMU, 6-in Hollow, R-19|CMU, 6-in Hollow, R-7|CMU, 6-in Hollow, Uninsulated|Wood Stud, R-11|Wood Stud, R-15|Wood Stud, R-19|Wood Stud, R-7|Wood Stud, Uninsulated" +in.interior_shading metadata_and_annual n/a string "Summer = 0.7, Winter = 0.85" +in.iso_rto_region metadata_and_annual n/a string CAISO|ERCOT|MISO|NEISO|NYISO|None|PJM|SPP +in.lighting metadata_and_annual n/a string 100% CFL|100% Incandescent|100% LED +in.lighting_interior_use metadata_and_annual n/a string 100% Usage +in.lighting_other_use metadata_and_annual n/a string 100% Usage +in.location_region metadata_and_annual n/a string CR02|CR03|CR04|CR05|CR06|CR07|CR08|CR09|CR10|CR11|CRAK|CRHI +in.mechanical_ventilation metadata_and_annual n/a string None +in.metropolitan_and_micropolitan_statistical_area metadata_and_annual n/a string "Aberdeen, SD MicroSA|Aberdeen, WA MicroSA|Abilene, TX MSA|Ada, OK MicroSA|Adrian, MI MicroSA|Akron, OH MSA|Alamogordo, NM MicroSA|Albany, GA MSA|Albany, OR MSA|Albany-Schenectady-Troy, NY MSA|Albemarle, NC MicroSA|Albert Lea, MN MicroSA|Albertville, AL MicroSA|Albuquerque, NM MSA|Alexandria, LA MSA|Alexandria, MN MicroSA|Alice, TX MicroSA|Allentown-Bethlehem-Easton, PA-NJ MSA|Alma, MI MicroSA|Alpena, MI MicroSA|Altoona, PA MSA|Altus, OK MicroSA|Amarillo, TX MSA|Americus, GA MicroSA|Ames, IA MSA|Amsterdam, NY MicroSA|Anchorage, AK MSA|Andrews, TX MicroSA|Angola, IN MicroSA|Ann Arbor, MI MSA|Anniston-Oxford-Jacksonville, AL MSA|Appleton, WI MSA|Arcadia, FL MicroSA|Ardmore, OK MicroSA|Arkadelphia, AR MicroSA|Arkansas City-Winfield, KS MicroSA|Asheville, NC MSA|Ashland, OH MicroSA|Ashtabula, OH MicroSA|Astoria, OR MicroSA|Atchison, KS MicroSA|Athens, OH MicroSA|Athens, TN MicroSA|Athens, TX MicroSA|Athens-Clarke County, GA MSA|Atlanta-Sandy Springs-Roswell, GA MSA|Atlantic City-Hammonton, NJ MSA|Auburn, IN MicroSA|Auburn, NY MicroSA|Auburn-Opelika, AL MSA|Augusta-Richmond County, GA-SC MSA|Augusta-Waterville, ME MicroSA|Austin, MN MicroSA|Austin-Round Rock, TX MSA|Bainbridge, GA MicroSA|Bakersfield, CA MSA|Baltimore-Columbia-Towson, MD MSA|Bangor, ME MSA|Baraboo, WI MicroSA|Bardstown, KY MicroSA|Barnstable Town, MA MSA|Barre, VT MicroSA|Bartlesville, OK MicroSA|Bastrop, LA MicroSA|Batavia, NY MicroSA|Batesville, AR MicroSA|Baton Rouge, LA MSA|Battle Creek, MI MSA|Bay City, MI MSA|Bay City, TX MicroSA|Beatrice, NE MicroSA|Beaumont-Port Arthur, TX MSA|Beaver Dam, WI MicroSA|Beckley, WV MSA|Bedford, IN MicroSA|Beeville, TX MicroSA|Bellefontaine, OH MicroSA|Bellingham, WA MSA|Bemidji, MN MicroSA|Bend-Redmond, OR MSA|Bennettsville, SC MicroSA|Bennington, VT MicroSA|Berlin, NH-VT MicroSA|Big Rapids, MI MicroSA|Big Spring, TX MicroSA|Big Stone Gap, VA MicroSA|Billings, MT MSA|Binghamton, NY MSA|Birmingham-Hoover, AL MSA|Bismarck, ND MSA|Blackfoot, ID MicroSA|Blacksburg-Christiansburg-Radford, VA MSA|Bloomington, IL MSA|Bloomington, IN MSA|Bloomsburg-Berwick, PA MSA|Bluefield, WV-VA MicroSA|Blytheville, AR MicroSA|Bogalusa, LA MicroSA|Boise City, ID MSA|Boone, IA MicroSA|Boone, NC MicroSA|Borger, TX MicroSA|Boston-Cambridge-Newton, MA-NH MSA|Boulder, CO MSA|Bowling Green, KY MSA|Bozeman, MT MicroSA|Bradford, PA MicroSA|Brainerd, MN MicroSA|Branson, MO MicroSA|Breckenridge, CO MicroSA|Bremerton-Silverdale, WA MSA|Brenham, TX MicroSA|Brevard, NC MicroSA|Bridgeport-Stamford-Norwalk, CT MSA|Brookhaven, MS MicroSA|Brookings, OR MicroSA|Brookings, SD MicroSA|Brownsville-Harlingen, TX MSA|Brownwood, TX MicroSA|Brunswick, GA MSA|Bucyrus, OH MicroSA|Buffalo-Cheektowaga-Niagara Falls, NY MSA|Burley, ID MicroSA|Burlington, IA-IL MicroSA|Burlington, NC MSA|Burlington-South Burlington, VT MSA|Butte-Silver Bow, MT MicroSA|Cadillac, MI MicroSA|Calhoun, GA MicroSA|California-Lexington Park, MD MSA|Cambridge, MD MicroSA|Cambridge, OH MicroSA|Camden, AR MicroSA|Campbellsville, KY MicroSA|Canon City, CO MicroSA|Canton, IL MicroSA|Canton-Massillon, OH MSA|Cape Coral-Fort Myers, FL MSA|Cape Girardeau, MO-IL MSA|Carbondale-Marion, IL MSA|Carlsbad-Artesia, NM MicroSA|Carson City, NV MSA|Casper, WY MSA|Cedar City, UT MicroSA|Cedar Rapids, IA MSA|Cedartown, GA MicroSA|Celina, OH MicroSA|Centralia, IL MicroSA|Centralia, WA MicroSA|Chambersburg-Waynesboro, PA MSA|Champaign-Urbana, IL MSA|Charleston, WV MSA|Charleston-Mattoon, IL MicroSA|Charleston-North Charleston, SC MSA|Charlotte-Concord-Gastonia, NC-SC MSA|Charlottesville, VA MSA|Chattanooga, TN-GA MSA|Cheyenne, WY MSA|Chicago-Naperville-Elgin, IL-IN-WI MSA|Chico, CA MSA|Chillicothe, OH MicroSA|Cincinnati, OH-KY-IN MSA|Claremont-Lebanon, NH-VT MicroSA|Clarksburg, WV MicroSA|Clarksdale, MS MicroSA|Clarksville, TN-KY MSA|Clearlake, CA MicroSA|Cleveland, MS MicroSA|Cleveland, TN MSA|Cleveland-Elyria, OH MSA|Clewiston, FL MicroSA|Clinton, IA MicroSA|Clovis, NM MicroSA|Coeur d'Alene, ID MSA|Coffeyville, KS MicroSA|Coldwater, MI MicroSA|College Station-Bryan, TX MSA|Colorado Springs, CO MSA|Columbia, MO MSA|Columbia, SC MSA|Columbus, GA-AL MSA|Columbus, IN MSA|Columbus, MS MicroSA|Columbus, NE MicroSA|Columbus, OH MSA|Concord, NH MicroSA|Connersville, IN MicroSA|Cookeville, TN MicroSA|Coos Bay, OR MicroSA|Cordele, GA MicroSA|Corinth, MS MicroSA|Cornelia, GA MicroSA|Corning, NY MicroSA|Corpus Christi, TX MSA|Corsicana, TX MicroSA|Cortland, NY MicroSA|Corvallis, OR MSA|Coshocton, OH MicroSA|Craig, CO MicroSA|Crawfordsville, IN MicroSA|Crescent City, CA MicroSA|Crestview-Fort Walton Beach-Destin, FL MSA|Crossville, TN MicroSA|Cullman, AL MicroSA|Cullowhee, NC MicroSA|Cumberland, MD-WV MSA|Dallas-Fort Worth-Arlington, TX MSA|Dalton, GA MSA|Danville, IL MSA|Danville, KY MicroSA|Danville, VA MicroSA|Daphne-Fairhope-Foley, AL MSA|Davenport-Moline-Rock Island, IA-IL MSA|Dayton, OH MSA|Dayton, TN MicroSA|DeRidder, LA MicroSA|Decatur, AL MSA|Decatur, IL MSA|Decatur, IN MicroSA|Defiance, OH MicroSA|Del Rio, TX MicroSA|Deltona-Daytona Beach-Ormond Beach, FL MSA|Deming, NM MicroSA|Denver-Aurora-Lakewood, CO MSA|Des Moines-West Des Moines, IA MSA|Detroit-Warren-Dearborn, MI MSA|Dickinson, ND MicroSA|Dixon, IL MicroSA|Dodge City, KS MicroSA|Dothan, AL MSA|Douglas, GA MicroSA|Dover, DE MSA|DuBois, PA MicroSA|Dublin, GA MicroSA|Dubuque, IA MSA|Duluth, MN-WI MSA|Dumas, TX MicroSA|Duncan, OK MicroSA|Dunn, NC MicroSA|Durango, CO MicroSA|Durant, OK MicroSA|Durham-Chapel Hill, NC MSA|Dyersburg, TN MicroSA|Eagle Pass, TX MicroSA|East Stroudsburg, PA MSA|Easton, MD MicroSA|Eau Claire, WI MSA|Edwards, CO MicroSA|Effingham, IL MicroSA|El Campo, TX MicroSA|El Centro, CA MSA|El Dorado, AR MicroSA|El Paso, TX MSA|Elizabeth City, NC MicroSA|Elizabethtown-Fort Knox, KY MSA|Elk City, OK MicroSA|Elkhart-Goshen, IN MSA|Elkins, WV MicroSA|Elko, NV MicroSA|Ellensburg, WA MicroSA|Elmira, NY MSA|Emporia, KS MicroSA|Enid, OK MicroSA|Enterprise, AL MicroSA|Erie, PA MSA|Escanaba, MI MicroSA|Espanola, NM MicroSA|Eugene, OR MSA|Eureka-Arcata-Fortuna, CA MicroSA|Evanston, WY MicroSA|Evansville, IN-KY MSA|Fairbanks, AK MSA|Fairfield, IA MicroSA|Fairmont, WV MicroSA|Fallon, NV MicroSA|Fargo, ND-MN MSA|Faribault-Northfield, MN MicroSA|Farmington, MO MicroSA|Farmington, NM MSA|Fayetteville, NC MSA|Fayetteville-Springdale-Rogers, AR-MO MSA|Fergus Falls, MN MicroSA|Fernley, NV MicroSA|Findlay, OH MicroSA|Fitzgerald, GA MicroSA|Flagstaff, AZ MSA|Flint, MI MSA|Florence, SC MSA|Florence-Muscle Shoals, AL MSA|Fond du Lac, WI MSA|Forest City, NC MicroSA|Forrest City, AR MicroSA|Fort Collins, CO MSA|Fort Dodge, IA MicroSA|Fort Leonard Wood, MO MicroSA|Fort Madison-Keokuk, IA-IL-MO MicroSA|Fort Morgan, CO MicroSA|Fort Polk South, LA MicroSA|Fort Smith, AR-OK MSA|Fort Wayne, IN MSA|Frankfort, IN MicroSA|Frankfort, KY MicroSA|Fredericksburg, TX MicroSA|Freeport, IL MicroSA|Fremont, NE MicroSA|Fremont, OH MicroSA|Fresno, CA MSA|Gadsden, AL MSA|Gaffney, SC MicroSA|Gainesville, FL MSA|Gainesville, GA MSA|Gainesville, TX MicroSA|Galesburg, IL MicroSA|Gallup, NM MicroSA|Garden City, KS MicroSA|Gardnerville Ranchos, NV MicroSA|Georgetown, SC MicroSA|Gettysburg, PA MSA|Gillette, WY MicroSA|Glasgow, KY MicroSA|Glens Falls, NY MSA|Glenwood Springs, CO MicroSA|Gloversville, NY MicroSA|Goldsboro, NC MSA|Grand Forks, ND-MN MSA|Grand Island, NE MSA|Grand Junction, CO MSA|Grand Rapids-Wyoming, MI MSA|Grants Pass, OR MSA|Grants, NM MicroSA|Great Bend, KS MicroSA|Great Falls, MT MSA|Greeley, CO MSA|Green Bay, WI MSA|Greeneville, TN MicroSA|Greenfield Town, MA MicroSA|Greensboro-High Point, NC MSA|Greensburg, IN MicroSA|Greenville, MS MicroSA|Greenville, NC MSA|Greenville, OH MicroSA|Greenville-Anderson-Mauldin, SC MSA|Greenwood, MS MicroSA|Greenwood, SC MicroSA|Grenada, MS MicroSA|Gulfport-Biloxi-Pascagoula, MS MSA|Guymon, OK MicroSA|Hagerstown-Martinsburg, MD-WV MSA|Hailey, ID MicroSA|Hammond, LA MSA|Hanford-Corcoran, CA MSA|Hannibal, MO MicroSA|Harrisburg-Carlisle, PA MSA|Harrison, AR MicroSA|Harrisonburg, VA MSA|Hartford-West Hartford-East Hartford, CT MSA|Hastings, NE MicroSA|Hattiesburg, MS MSA|Hays, KS MicroSA|Heber, UT MicroSA|Helena, MT MicroSA|Helena-West Helena, AR MicroSA|Henderson, NC MicroSA|Hereford, TX MicroSA|Hermiston-Pendleton, OR MicroSA|Hickory-Lenoir-Morganton, NC MSA|Hillsdale, MI MicroSA|Hilo, HI MicroSA|Hilton Head Island-Bluffton-Beaufort, SC MSA|Hinesville, GA MSA|Hobbs, NM MicroSA|Holland, MI MicroSA|Homosassa Springs, FL MSA|Hood River, OR MicroSA|Hot Springs, AR MSA|Houghton, MI MicroSA|Houma-Thibodaux, LA MSA|Houston-The Woodlands-Sugar Land, TX MSA|Hudson, NY MicroSA|Huntingdon, PA MicroSA|Huntington, IN MicroSA|Huntington-Ashland, WV-KY-OH MSA|Huntsville, AL MSA|Huntsville, TX MicroSA|Huron, SD MicroSA|Hutchinson, KS MicroSA|Hutchinson, MN MicroSA|Idaho Falls, ID MSA|Indiana, PA MicroSA|Indianapolis-Carmel-Anderson, IN MSA|Indianola, MS MicroSA|Ionia, MI MicroSA|Iowa City, IA MSA|Iron Mountain, MI-WI MicroSA|Ithaca, NY MSA|Jackson, MI MSA|Jackson, MS MSA|Jackson, OH MicroSA|Jackson, TN MSA|Jackson, WY-ID MicroSA|Jacksonville, FL MSA|Jacksonville, IL MicroSA|Jacksonville, NC MSA|Jacksonville, TX MicroSA|Jamestown, ND MicroSA|Jamestown-Dunkirk-Fredonia, NY MicroSA|Janesville-Beloit, WI MSA|Jasper, IN MicroSA|Jefferson City, MO MSA|Jefferson, GA MicroSA|Jesup, GA MicroSA|Johnson City, TN MSA|Johnstown, PA MSA|Jonesboro, AR MSA|Joplin, MO MSA|Junction City, KS MicroSA|Juneau, AK MicroSA|Kahului-Wailuku-Lahaina, HI MSA|Kalamazoo-Portage, MI MSA|Kalispell, MT MicroSA|Kankakee, IL MSA|Kansas City, MO-KS MSA|Kapaa, HI MicroSA|Kearney, NE MicroSA|Keene, NH MicroSA|Kendallville, IN MicroSA|Kennett, MO MicroSA|Kennewick-Richland, WA MSA|Kerrville, TX MicroSA|Ketchikan, AK MicroSA|Key West, FL MicroSA|Kill Devil Hills, NC MicroSA|Killeen-Temple, TX MSA|Kingsport-Bristol-Bristol, TN-VA MSA|Kingston, NY MSA|Kingsville, TX MicroSA|Kinston, NC MicroSA|Kirksville, MO MicroSA|Klamath Falls, OR MicroSA|Knoxville, TN MSA|Kokomo, IN MSA|La Crosse-Onalaska, WI-MN MSA|La Grande, OR MicroSA|LaGrange, GA MicroSA|Laconia, NH MicroSA|Lafayette, LA MSA|Lafayette-West Lafayette, IN MSA|Lake Charles, LA MSA|Lake City, FL MicroSA|Lake Havasu City-Kingman, AZ MSA|Lakeland-Winter Haven, FL MSA|Lamesa, TX MicroSA|Lancaster, PA MSA|Lansing-East Lansing, MI MSA|Laramie, WY MicroSA|Laredo, TX MSA|Las Cruces, NM MSA|Las Vegas, NM MicroSA|Las Vegas-Henderson-Paradise, NV MSA|Laurel, MS MicroSA|Laurinburg, NC MicroSA|Lawrence, KS MSA|Lawrenceburg, TN MicroSA|Lawton, OK MSA|Lebanon, MO MicroSA|Lebanon, PA MSA|Levelland, TX MicroSA|Lewisburg, PA MicroSA|Lewisburg, TN MicroSA|Lewiston, ID-WA MSA|Lewiston-Auburn, ME MSA|Lewistown, PA MicroSA|Lexington, NE MicroSA|Lexington-Fayette, KY MSA|Liberal, KS MicroSA|Lima, OH MSA|Lincoln, IL MicroSA|Lincoln, NE MSA|Little Rock-North Little Rock-Conway, AR MSA|Lock Haven, PA MicroSA|Logan, UT-ID MSA|Logan, WV MicroSA|Logansport, IN MicroSA|London, KY MicroSA|Longview, TX MSA|Longview, WA MSA|Los Alamos, NM MicroSA|Los Angeles-Long Beach-Anaheim, CA MSA|Louisville/Jefferson County, KY-IN MSA|Lubbock, TX MSA|Ludington, MI MicroSA|Lufkin, TX MicroSA|Lumberton, NC MicroSA|Lynchburg, VA MSA|Macomb, IL MicroSA|Macon, GA MSA|Madera, CA MSA|Madison, IN MicroSA|Madison, WI MSA|Madisonville, KY MicroSA|Magnolia, AR MicroSA|Malone, NY MicroSA|Malvern, AR MicroSA|Manchester-Nashua, NH MSA|Manhattan, KS MSA|Manitowoc, WI MicroSA|Mankato-North Mankato, MN MSA|Mansfield, OH MSA|Marietta, OH MicroSA|Marinette, WI-MI MicroSA|Marion, IN MicroSA|Marion, NC MicroSA|Marion, OH MicroSA|Marquette, MI MicroSA|Marshall, MN MicroSA|Marshall, MO MicroSA|Marshall, TX MicroSA|Marshalltown, IA MicroSA|Martin, TN MicroSA|Martinsville, VA MicroSA|Maryville, MO MicroSA|Mason City, IA MicroSA|Mayfield, KY MicroSA|Maysville, KY MicroSA|McAlester, OK MicroSA|McAllen-Edinburg-Mission, TX MSA|McComb, MS MicroSA|McMinnville, TN MicroSA|McPherson, KS MicroSA|Meadville, PA MicroSA|Medford, OR MSA|Memphis, TN-MS-AR MSA|Menomonie, WI MicroSA|Merced, CA MSA|Meridian, MS MicroSA|Merrill, WI MicroSA|Mexico, MO MicroSA|Miami, OK MicroSA|Miami-Fort Lauderdale-West Palm Beach, FL MSA|Michigan City-La Porte, IN MSA|Middlesborough, KY MicroSA|Midland, MI MSA|Midland, TX MSA|Milledgeville, GA MicroSA|Milwaukee-Waukesha-West Allis, WI MSA|Mineral Wells, TX MicroSA|Minneapolis-St. Paul-Bloomington, MN-WI MSA|Minot, ND MicroSA|Missoula, MT MSA|Mitchell, SD MicroSA|Moberly, MO MicroSA|Mobile, AL MSA|Modesto, CA MSA|Monroe, LA MSA|Monroe, MI MSA|Montgomery, AL MSA|Montrose, CO MicroSA|Morehead City, NC MicroSA|Morgan City, LA MicroSA|Morgantown, WV MSA|Morristown, TN MSA|Moscow, ID MicroSA|Moses Lake, WA MicroSA|Moultrie, GA MicroSA|Mount Airy, NC MicroSA|Mount Pleasant, MI MicroSA|Mount Pleasant, TX MicroSA|Mount Sterling, KY MicroSA|Mount Vernon, IL MicroSA|Mount Vernon, OH MicroSA|Mount Vernon-Anacortes, WA MSA|Mountain Home, AR MicroSA|Mountain Home, ID MicroSA|Muncie, IN MSA|Murray, KY MicroSA|Muscatine, IA MicroSA|Muskegon, MI MSA|Muskogee, OK MicroSA|Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA|Nacogdoches, TX MicroSA|Napa, CA MSA|Naples-Immokalee-Marco Island, FL MSA|Nashville-Davidson--Murfreesboro--Franklin, TN MSA|Natchez, MS-LA MicroSA|Natchitoches, LA MicroSA|New Bern, NC MSA|New Castle, IN MicroSA|New Castle, PA MicroSA|New Haven-Milford, CT MSA|New Orleans-Metairie, LA MSA|New Philadelphia-Dover, OH MicroSA|New Ulm, MN MicroSA|New York-Newark-Jersey City, NY-NJ-PA MSA|Newberry, SC MicroSA|Newport, OR MicroSA|Newport, TN MicroSA|Newton, IA MicroSA|Niles-Benton Harbor, MI MSA|Nogales, AZ MicroSA|None|Norfolk, NE MicroSA|North Platte, NE MicroSA|North Port-Sarasota-Bradenton, FL MSA|North Vernon, IN MicroSA|North Wilkesboro, NC MicroSA|Norwalk, OH MicroSA|Norwich-New London, CT MSA|Oak Harbor, WA MicroSA|Ocala, FL MSA|Ocean City, NJ MSA|Odessa, TX MSA|Ogden-Clearfield, UT MSA|Ogdensburg-Massena, NY MicroSA|Oil City, PA MicroSA|Okeechobee, FL MicroSA|Oklahoma City, OK MSA|Olean, NY MicroSA|Olympia-Tumwater, WA MSA|Omaha-Council Bluffs, NE-IA MSA|Oneonta, NY MicroSA|Ontario, OR-ID MicroSA|Opelousas, LA MicroSA|Orangeburg, SC MicroSA|Orlando-Kissimmee-Sanford, FL MSA|Oshkosh-Neenah, WI MSA|Oskaloosa, IA MicroSA|Othello, WA MicroSA|Ottawa, KS MicroSA|Ottawa-Peru, IL MicroSA|Ottumwa, IA MicroSA|Owatonna, MN MicroSA|Owensboro, KY MSA|Owosso, MI MicroSA|Oxford, MS MicroSA|Oxford, NC MicroSA|Oxnard-Thousand Oaks-Ventura, CA MSA|Ozark, AL MicroSA|Paducah, KY-IL MicroSA|Pahrump, NV MicroSA|Palatka, FL MicroSA|Palestine, TX MicroSA|Palm Bay-Melbourne-Titusville, FL MSA|Pampa, TX MicroSA|Panama City, FL MSA|Paragould, AR MicroSA|Paris, TN MicroSA|Paris, TX MicroSA|Parkersburg-Vienna, WV MSA|Parsons, KS MicroSA|Payson, AZ MicroSA|Pecos, TX MicroSA|Pensacola-Ferry Pass-Brent, FL MSA|Peoria, IL MSA|Peru, IN MicroSA|Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA|Phoenix-Mesa-Scottsdale, AZ MSA|Picayune, MS MicroSA|Pierre, SD MicroSA|Pine Bluff, AR MSA|Pinehurst-Southern Pines, NC MicroSA|Pittsburg, KS MicroSA|Pittsburgh, PA MSA|Pittsfield, MA MSA|Plainview, TX MicroSA|Platteville, WI MicroSA|Plattsburgh, NY MicroSA|Plymouth, IN MicroSA|Pocatello, ID MSA|Point Pleasant, WV-OH MicroSA|Ponca City, OK MicroSA|Pontiac, IL MicroSA|Poplar Bluff, MO MicroSA|Port Angeles, WA MicroSA|Port Clinton, OH MicroSA|Port Lavaca, TX MicroSA|Port St. Lucie, FL MSA|Portales, NM MicroSA|Portland-South Portland, ME MSA|Portland-Vancouver-Hillsboro, OR-WA MSA|Portsmouth, OH MicroSA|Pottsville, PA MicroSA|Prescott, AZ MSA|Price, UT MicroSA|Prineville, OR MicroSA|Providence-Warwick, RI-MA MSA|Provo-Orem, UT MSA|Pueblo, CO MSA|Pullman, WA MicroSA|Punta Gorda, FL MSA|Quincy, IL-MO MicroSA|Racine, WI MSA|Raleigh, NC MSA|Rapid City, SD MSA|Raymondville, TX MicroSA|Reading, PA MSA|Red Bluff, CA MicroSA|Red Wing, MN MicroSA|Redding, CA MSA|Reno, NV MSA|Rexburg, ID MicroSA|Richmond, IN MicroSA|Richmond, VA MSA|Richmond-Berea, KY MicroSA|Rio Grande City, TX MicroSA|Riverside-San Bernardino-Ontario, CA MSA|Riverton, WY MicroSA|Roanoke Rapids, NC MicroSA|Roanoke, VA MSA|Rochelle, IL MicroSA|Rochester, MN MSA|Rochester, NY MSA|Rock Springs, WY MicroSA|Rockford, IL MSA|Rockingham, NC MicroSA|Rocky Mount, NC MSA|Rolla, MO MicroSA|Rome, GA MSA|Roseburg, OR MicroSA|Roswell, NM MicroSA|Russellville, AR MicroSA|Ruston, LA MicroSA|Rutland, VT MicroSA|Sacramento--Roseville--Arden-Arcade, CA MSA|Safford, AZ MicroSA|Saginaw, MI MSA|Salem, OH MicroSA|Salem, OR MSA|Salina, KS MicroSA|Salinas, CA MSA|Salisbury, MD-DE MSA|Salt Lake City, UT MSA|San Angelo, TX MSA|San Antonio-New Braunfels, TX MSA|San Diego-Carlsbad, CA MSA|San Francisco-Oakland-Hayward, CA MSA|San Jose-Sunnyvale-Santa Clara, CA MSA|San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA|Sandpoint, ID MicroSA|Sandusky, OH MicroSA|Sanford, NC MicroSA|Santa Cruz-Watsonville, CA MSA|Santa Fe, NM MSA|Santa Maria-Santa Barbara, CA MSA|Santa Rosa, CA MSA|Sault Ste. Marie, MI MicroSA|Savannah, GA MSA|Sayre, PA MicroSA|Scottsbluff, NE MicroSA|Scottsboro, AL MicroSA|Scranton--Wilkes-Barre--Hazleton, PA MSA|Searcy, AR MicroSA|Seattle-Tacoma-Bellevue, WA MSA|Sebastian-Vero Beach, FL MSA|Sebring, FL MSA|Sedalia, MO MicroSA|Selinsgrove, PA MicroSA|Selma, AL MicroSA|Seneca Falls, NY MicroSA|Seneca, SC MicroSA|Sevierville, TN MicroSA|Seymour, IN MicroSA|Shawano, WI MicroSA|Shawnee, OK MicroSA|Sheboygan, WI MSA|Shelby, NC MicroSA|Shelbyville, TN MicroSA|Shelton, WA MicroSA|Sheridan, WY MicroSA|Sherman-Denison, TX MSA|Show Low, AZ MicroSA|Shreveport-Bossier City, LA MSA|Sidney, OH MicroSA|Sierra Vista-Douglas, AZ MSA|Sikeston, MO MicroSA|Silver City, NM MicroSA|Sioux City, IA-NE-SD MSA|Sioux Falls, SD MSA|Snyder, TX MicroSA|Somerset, KY MicroSA|Somerset, PA MicroSA|Sonora, CA MicroSA|South Bend-Mishawaka, IN-MI MSA|Spartanburg, SC MSA|Spearfish, SD MicroSA|Spencer, IA MicroSA|Spirit Lake, IA MicroSA|Spokane-Spokane Valley, WA MSA|Springfield, IL MSA|Springfield, MA MSA|Springfield, MO MSA|Springfield, OH MSA|St. Cloud, MN MSA|St. George, UT MSA|St. Joseph, MO-KS MSA|St. Louis, MO-IL MSA|St. Marys, GA MicroSA|Starkville, MS MicroSA|State College, PA MSA|Statesboro, GA MicroSA|Staunton-Waynesboro, VA MSA|Steamboat Springs, CO MicroSA|Stephenville, TX MicroSA|Sterling, CO MicroSA|Sterling, IL MicroSA|Stevens Point, WI MicroSA|Stillwater, OK MicroSA|Stockton-Lodi, CA MSA|Storm Lake, IA MicroSA|Sturgis, MI MicroSA|Sulphur Springs, TX MicroSA|Summerville, GA MicroSA|Summit Park, UT MicroSA|Sumter, SC MSA|Sunbury, PA MicroSA|Susanville, CA MicroSA|Sweetwater, TX MicroSA|Syracuse, NY MSA|Tahlequah, OK MicroSA|Talladega-Sylacauga, AL MicroSA|Tallahassee, FL MSA|Tampa-St. Petersburg-Clearwater, FL MSA|Taos, NM MicroSA|Taylorville, IL MicroSA|Terre Haute, IN MSA|Texarkana, TX-AR MSA|The Dalles, OR MicroSA|The Villages, FL MSA|Thomaston, GA MicroSA|Thomasville, GA MicroSA|Tiffin, OH MicroSA|Tifton, GA MicroSA|Toccoa, GA MicroSA|Toledo, OH MSA|Topeka, KS MSA|Torrington, CT MicroSA|Traverse City, MI MicroSA|Trenton, NJ MSA|Troy, AL MicroSA|Truckee-Grass Valley, CA MicroSA|Tucson, AZ MSA|Tullahoma-Manchester, TN MicroSA|Tulsa, OK MSA|Tupelo, MS MicroSA|Tuscaloosa, AL MSA|Twin Falls, ID MicroSA|Tyler, TX MSA|Ukiah, CA MicroSA|Union City, TN-KY MicroSA|Urban Honolulu, HI MSA|Urbana, OH MicroSA|Utica-Rome, NY MSA|Uvalde, TX MicroSA|Valdosta, GA MSA|Vallejo-Fairfield, CA MSA|Valley, AL MicroSA|Van Wert, OH MicroSA|Vermillion, SD MicroSA|Vernal, UT MicroSA|Vernon, TX MicroSA|Vicksburg, MS MicroSA|Victoria, TX MSA|Vidalia, GA MicroSA|Vincennes, IN MicroSA|Vineland-Bridgeton, NJ MSA|Vineyard Haven, MA MicroSA|Virginia Beach-Norfolk-Newport News, VA-NC MSA|Visalia-Porterville, CA MSA|Wabash, IN MicroSA|Waco, TX MSA|Wahpeton, ND-MN MicroSA|Walla Walla, WA MSA|Wapakoneta, OH MicroSA|Warner Robins, GA MSA|Warren, PA MicroSA|Warrensburg, MO MicroSA|Warsaw, IN MicroSA|Washington Court House, OH MicroSA|Washington, IN MicroSA|Washington, NC MicroSA|Washington-Arlington-Alexandria, DC-VA-MD-WV MSA|Waterloo-Cedar Falls, IA MSA|Watertown, SD MicroSA|Watertown-Fort Atkinson, WI MicroSA|Watertown-Fort Drum, NY MSA|Wauchula, FL MicroSA|Wausau, WI MSA|Waycross, GA MicroSA|Weatherford, OK MicroSA|Weirton-Steubenville, WV-OH MSA|Wenatchee, WA MSA|West Plains, MO MicroSA|Wheeling, WV-OH MSA|Whitewater-Elkhorn, WI MicroSA|Wichita Falls, TX MSA|Wichita, KS MSA|Williamsport, PA MSA|Williston, ND MicroSA|Willmar, MN MicroSA|Wilmington, NC MSA|Wilmington, OH MicroSA|Wilson, NC MicroSA|Winchester, VA-WV MSA|Winnemucca, NV MicroSA|Winona, MN MicroSA|Winston-Salem, NC MSA|Wisconsin Rapids-Marshfield, WI MicroSA|Woodward, OK MicroSA|Wooster, OH MicroSA|Worcester, MA-CT MSA|Worthington, MN MicroSA|Yakima, WA MSA|Yankton, SD MicroSA|York-Hanover, PA MSA|Youngstown-Warren-Boardman, OH-PA MSA|Yuba City, CA MSA|Yuma, AZ MSA|Zanesville, OH MicroSA|Zapata, TX MicroSA" +in.misc_extra_refrigerator metadata_and_annual n/a string EF 10.2|EF 10.5|EF 15.9|EF 17.6|EF 19.9|EF 21.9|EF 6.7|None +in.misc_freezer metadata_and_annual n/a string "EF 12, National Average|None" +in.misc_gas_fireplace metadata_and_annual n/a string Gas Fireplace|None +in.misc_gas_grill metadata_and_annual n/a string Gas Grill|None +in.misc_gas_lighting metadata_and_annual n/a string Gas Lighting|None +in.misc_hot_tub_spa metadata_and_annual n/a string Electricity|Natural Gas|None|Other Fuel +in.misc_pool metadata_and_annual n/a string Has Pool|None +in.misc_pool_heater metadata_and_annual n/a string Electric Heat Pump|Electricity|Natural Gas|None|Other Fuel +in.misc_pool_pump metadata_and_annual n/a string 1.0 HP Pump|None +in.misc_well_pump metadata_and_annual n/a string None|Typical Efficiency +in.natural_ventilation metadata_and_annual n/a string "Cooling Season, 7 days/wk" +in.neighbors metadata_and_annual n/a string 2|4|7|12|27|Left/Right at 15ft|None +in.occupants metadata_and_annual n/a string 0|1|2|3|4|5|6|7|8|9|10+ +in.orientation metadata_and_annual n/a string East|North|Northeast|Northwest|South|Southeast|Southwest|West +in.overhangs metadata_and_annual n/a string None +in.plug_load_diversity metadata_and_annual n/a string 100%|200%|50% +in.plug_loads metadata_and_annual n/a string 100%|101%|102%|103%|104%|105%|106%|108%|110%|113%|119%|121%|123%|134%|137%|140%|144%|166%|78%|79%|82%|84%|85%|86%|89%|91%|94%|95%|96%|97%|99% +in.puma metadata_and_annual n/a string "AK, 00101|AK, 00102|AK, 00200|AK, 00300|AK, 00400|G01000100|G01000200|G01000301|G01000302|G01000400|G01000500|G01000600|G01000700|G01000800|G01000900|G01001000|G01001100|G01001200|G01001301|G01001302|G01001303|G01001304|G01001305|G01001400|G01001500|G01001600|G01001700|G01001800|G01001900|G01002000|G01002100|G01002200|G01002300|G01002400|G01002500|G01002600|G01002701|G01002702|G01002703|G04000100|G04000101|G04000102|G04000103|G04000104|G04000105|G04000106|G04000107|G04000108|G04000109|G04000110|G04000111|G04000112|G04000113|G04000114|G04000115|G04000116|G04000117|G04000118|G04000119|G04000120|G04000121|G04000122|G04000123|G04000124|G04000125|G04000126|G04000127|G04000128|G04000129|G04000130|G04000131|G04000132|G04000133|G04000134|G04000201|G04000202|G04000203|G04000204|G04000205|G04000206|G04000207|G04000208|G04000209|G04000300|G04000400|G04000500|G04000600|G04000700|G04000800|G04000803|G04000805|G04000807|G04000900|G05000100|G05000200|G05000300|G05000400|G05000500|G05000600|G05000700|G05000800|G05000900|G05001000|G05001100|G05001200|G05001300|G05001400|G05001500|G05001600|G05001700|G05001800|G05001900|G05002000|G06000101|G06000102|G06000103|G06000104|G06000105|G06000106|G06000107|G06000108|G06000109|G06000110|G06000300|G06000701|G06000702|G06001100|G06001301|G06001302|G06001303|G06001304|G06001305|G06001306|G06001307|G06001308|G06001309|G06001500|G06001700|G06001901|G06001902|G06001903|G06001904|G06001905|G06001906|G06001907|G06002300|G06002500|G06002901|G06002902|G06002903|G06002904|G06002905|G06003100|G06003300|G06003701|G06003702|G06003703|G06003704|G06003705|G06003706|G06003707|G06003708|G06003709|G06003710|G06003711|G06003712|G06003713|G06003714|G06003715|G06003716|G06003717|G06003718|G06003719|G06003720|G06003721|G06003722|G06003723|G06003724|G06003725|G06003726|G06003727|G06003728|G06003729|G06003730|G06003731|G06003732|G06003733|G06003734|G06003735|G06003736|G06003737|G06003738|G06003739|G06003740|G06003741|G06003742|G06003743|G06003744|G06003745|G06003746|G06003747|G06003748|G06003749|G06003750|G06003751|G06003752|G06003753|G06003754|G06003755|G06003756|G06003757|G06003758|G06003759|G06003760|G06003761|G06003762|G06003763|G06003764|G06003765|G06003766|G06003767|G06003768|G06003769|G06003900|G06004101|G06004102|G06004701|G06004702|G06005301|G06005302|G06005303|G06005500|G06005700|G06005901|G06005902|G06005903|G06005904|G06005905|G06005906|G06005907|G06005908|G06005909|G06005910|G06005911|G06005912|G06005913|G06005914|G06005915|G06005916|G06005917|G06005918|G06006101|G06006102|G06006103|G06006501|G06006502|G06006503|G06006504|G06006505|G06006506|G06006507|G06006508|G06006509|G06006510|G06006511|G06006512|G06006513|G06006514|G06006515|G06006701|G06006702|G06006703|G06006704|G06006705|G06006706|G06006707|G06006708|G06006709|G06006710|G06006711|G06006712|G06007101|G06007102|G06007103|G06007104|G06007105|G06007106|G06007107|G06007108|G06007109|G06007110|G06007111|G06007112|G06007113|G06007114|G06007115|G06007301|G06007302|G06007303|G06007304|G06007305|G06007306|G06007307|G06007308|G06007309|G06007310|G06007311|G06007312|G06007313|G06007314|G06007315|G06007316|G06007317|G06007318|G06007319|G06007320|G06007321|G06007322|G06007501|G06007502|G06007503|G06007504|G06007505|G06007506|G06007507|G06007701|G06007702|G06007703|G06007704|G06007901|G06007902|G06008101|G06008102|G06008103|G06008104|G06008105|G06008106|G06008301|G06008302|G06008303|G06008501|G06008502|G06008503|G06008504|G06008505|G06008506|G06008507|G06008508|G06008509|G06008510|G06008511|G06008512|G06008513|G06008514|G06008701|G06008702|G06008900|G06009501|G06009502|G06009503|G06009701|G06009702|G06009703|G06009901|G06009902|G06009903|G06009904|G06010100|G06010701|G06010702|G06010703|G06011101|G06011102|G06011103|G06011104|G06011105|G06011106|G06011300|G08000100|G08000102|G08000103|G08000200|G08000300|G08000400|G08000600|G08000700|G08000800|G08000801|G08000802|G08000803|G08000804|G08000805|G08000806|G08000807|G08000808|G08000809|G08000810|G08000811|G08000812|G08000813|G08000814|G08000815|G08000816|G08000817|G08000818|G08000819|G08000820|G08000821|G08000822|G08000823|G08000824|G08000900|G08001001|G08001002|G08004101|G08004102|G08004103|G08004104|G08004105|G08004106|G09000100|G09000101|G09000102|G09000103|G09000104|G09000105|G09000300|G09000301|G09000302|G09000303|G09000304|G09000305|G09000306|G09000500|G09000700|G09000900|G09000901|G09000902|G09000903|G09000904|G09000905|G09000906|G09001100|G09001101|G09001300|G09001500|G10000101|G10000102|G10000103|G10000104|G10000200|G10000300|G11000101|G11000102|G11000103|G11000104|G11000105|G12000101|G12000102|G12000500|G12000901|G12000902|G12000903|G12000904|G12001101|G12001102|G12001103|G12001104|G12001105|G12001106|G12001107|G12001108|G12001109|G12001110|G12001111|G12001112|G12001113|G12001114|G12001500|G12001701|G12001900|G12002101|G12002102|G12002103|G12002300|G12002700|G12003101|G12003102|G12003103|G12003104|G12003105|G12003106|G12003107|G12003301|G12003302|G12003500|G12005301|G12005701|G12005702|G12005703|G12005704|G12005705|G12005706|G12005707|G12005708|G12006100|G12006300|G12006901|G12006902|G12006903|G12007101|G12007102|G12007103|G12007104|G12007105|G12007300|G12007301|G12008101|G12008102|G12008103|G12008301|G12008302|G12008303|G12008500|G12008601|G12008602|G12008603|G12008604|G12008605|G12008606|G12008607|G12008608|G12008609|G12008610|G12008611|G12008612|G12008613|G12008614|G12008615|G12008616|G12008617|G12008618|G12008619|G12008620|G12008621|G12008622|G12008623|G12008624|G12008700|G12008900|G12009100|G12009300|G12009501|G12009502|G12009503|G12009504|G12009505|G12009506|G12009507|G12009508|G12009509|G12009510|G12009701|G12009702|G12009901|G12009902|G12009903|G12009904|G12009905|G12009906|G12009907|G12009908|G12009909|G12009910|G12009911|G12010101|G12010102|G12010103|G12010104|G12010301|G12010302|G12010303|G12010304|G12010305|G12010306|G12010307|G12010308|G12010501|G12010502|G12010503|G12010504|G12010700|G12010900|G12011101|G12011102|G12011300|G12011501|G12011502|G12011503|G12011701|G12011702|G12011703|G12011704|G12012100|G12012701|G12012702|G12012703|G12012704|G13000100|G13000200|G13000300|G13000401|G13000402|G13000500|G13000600|G13000700|G13000800|G13000900|G13001001|G13001002|G13001003|G13001004|G13001005|G13001006|G13001007|G13001008|G13001100|G13001200|G13001300|G13001400|G13001500|G13001600|G13001700|G13001800|G13001900|G13002001|G13002002|G13002003|G13002004|G13002100|G13002200|G13002300|G13002400|G13002500|G13002600|G13002700|G13002800|G13002900|G13003001|G13003002|G13003003|G13003004|G13003005|G13003101|G13003102|G13003200|G13003300|G13003400|G13003500|G13003600|G13003700|G13003800|G13003900|G13004000|G13004001|G13004002|G13004003|G13004004|G13004005|G13004006|G13004100|G13004200|G13004300|G13004400|G13004500|G13004600|G13005001|G13005002|G13006001|G13006002|G16000100|G16000200|G16000300|G16000400|G16000500|G16000600|G16000701|G16000702|G16000800|G16000900|G16001000|G16001100|G16001200|G16001300|G17000104|G17000105|G17000202|G17000300|G17000401|G17000501|G17000600|G17000700|G17000800|G17000900|G17001001|G17001104|G17001105|G17001204|G17001205|G17001300|G17001500|G17001602|G17001701|G17001900|G17002000|G17002100|G17002200|G17002300|G17002400|G17002501|G17002601|G17002700|G17002801|G17002901|G17003005|G17003007|G17003008|G17003009|G17003102|G17003105|G17003106|G17003107|G17003108|G17003202|G17003203|G17003204|G17003205|G17003207|G17003208|G17003209|G17003306|G17003307|G17003308|G17003309|G17003310|G17003401|G17003407|G17003408|G17003409|G17003410|G17003411|G17003412|G17003413|G17003414|G17003415|G17003416|G17003417|G17003418|G17003419|G17003420|G17003421|G17003422|G17003501|G17003502|G17003503|G17003504|G17003520|G17003521|G17003522|G17003523|G17003524|G17003525|G17003526|G17003527|G17003528|G17003529|G17003530|G17003531|G17003532|G17003601|G17003602|G17003700|G18000101|G18000102|G18000103|G18000104|G18000200|G18000300|G18000401|G18000402|G18000500|G18000600|G18000700|G18000800|G18000900|G18001001|G18001002|G18001003|G18001100|G18001200|G18001300|G18001400|G18001500|G18001600|G18001700|G18001801|G18001802|G18001803|G18001900|G18002000|G18002100|G18002200|G18002301|G18002302|G18002303|G18002304|G18002305|G18002306|G18002307|G18002400|G18002500|G18002600|G18002700|G18002800|G18002900|G18003000|G18003100|G18003200|G18003300|G18003400|G18003500|G18003600|G19000100|G19000200|G19000400|G19000500|G19000600|G19000700|G19000800|G19000900|G19001000|G19001100|G19001200|G19001300|G19001400|G19001500|G19001600|G19001700|G19001800|G19001900|G19002000|G19002100|G19002200|G19002300|G20000100|G20000200|G20000300|G20000400|G20000500|G20000601|G20000602|G20000603|G20000604|G20000700|G20000801|G20000802|G20000900|G20001000|G20001100|G20001200|G20001301|G20001302|G20001303|G20001304|G20001400|G20001500|G21000100|G21000200|G21000300|G21000400|G21000500|G21000600|G21000700|G21000800|G21000900|G21001000|G21001100|G21001200|G21001300|G21001400|G21001500|G21001600|G21001701|G21001702|G21001703|G21001704|G21001705|G21001706|G21001800|G21001901|G21001902|G21002000|G21002100|G21002200|G21002300|G21002400|G21002500|G21002600|G21002700|G21002800|G22000100|G22000101|G22000200|G22000300|G22000400|G22000500|G22000600|G22000700|G22000800|G22000900|G22001000|G22001100|G22001200|G22001201|G22001300|G22001400|G22001500|G22001501|G22001502|G22001600|G22001700|G22001800|G22001900|G22002000|G22002100|G22002200|G22002201|G22002300|G22002301|G22002302|G22002400|G22002401|G22002402|G22002500|G23000100|G23000200|G23000300|G23000400|G23000500|G23000600|G23000700|G23000800|G23000900|G23001000|G24000100|G24000200|G24000301|G24000302|G24000400|G24000501|G24000502|G24000503|G24000504|G24000505|G24000506|G24000507|G24000601|G24000602|G24000700|G24000801|G24000802|G24000803|G24000804|G24000805|G24000901|G24000902|G24001001|G24001002|G24001003|G24001004|G24001005|G24001006|G24001007|G24001101|G24001102|G24001103|G24001104|G24001105|G24001106|G24001107|G24001201|G24001202|G24001203|G24001204|G24001300|G24001400|G24001500|G24001600|G25000100|G25000200|G25000300|G25000301|G25000302|G25000303|G25000304|G25000400|G25000501|G25000502|G25000503|G25000504|G25000505|G25000506|G25000507|G25000508|G25000701|G25000702|G25000703|G25000704|G25001000|G25001300|G25001400|G25001600|G25001900|G25001901|G25001902|G25002400|G25002800|G25003301|G25003302|G25003303|G25003304|G25003305|G25003306|G25003400|G25003500|G25003601|G25003602|G25003603|G25003900|G25004000|G25004200|G25004301|G25004302|G25004303|G25004500|G25004700|G25004800|G25004901|G25004902|G25004903|G26000100|G26000200|G26000300|G26000400|G26000500|G26000600|G26000700|G26000801|G26000802|G26000900|G26001001|G26001002|G26001003|G26001004|G26001100|G26001200|G26001300|G26001400|G26001500|G26001600|G26001701|G26001702|G26001703|G26001704|G26001801|G26001802|G26001900|G26002000|G26002101|G26002102|G26002200|G26002300|G26002400|G26002500|G26002600|G26002701|G26002702|G26002703|G26002800|G26002901|G26002902|G26002903|G26002904|G26002905|G26002906|G26002907|G26002908|G26003001|G26003002|G26003003|G26003004|G26003005|G26003006|G26003100|G26003201|G26003202|G26003203|G26003204|G26003205|G26003206|G26003207|G26003208|G26003209|G26003210|G26003211|G26003212|G26003213|G26003300|G27000100|G27000200|G27000300|G27000400|G27000500|G27000600|G27000700|G27000800|G27000900|G27001000|G27001101|G27001102|G27001103|G27001201|G27001202|G27001301|G27001302|G27001303|G27001304|G27001401|G27001402|G27001403|G27001404|G27001405|G27001406|G27001407|G27001408|G27001409|G27001410|G27001501|G27001502|G27001503|G27001600|G27001700|G27001800|G27001900|G27002000|G27002100|G27002200|G27002300|G27002400|G27002500|G27002600|G28000100|G28000200|G28000300|G28000400|G28000500|G28000600|G28000700|G28000800|G28000900|G28001000|G28001100|G28001200|G28001300|G28001400|G28001500|G28001600|G28001700|G28001800|G28001900|G28002000|G28002100|G29000100|G29000200|G29000300|G29000400|G29000500|G29000600|G29000700|G29000800|G29000901|G29000902|G29000903|G29001001|G29001002|G29001003|G29001004|G29001005|G29001100|G29001200|G29001300|G29001400|G29001500|G29001600|G29001701|G29001702|G29001703|G29001801|G29001802|G29001803|G29001804|G29001805|G29001806|G29001807|G29001808|G29001901|G29001902|G29002001|G29002002|G29002100|G29002200|G29002300|G29002400|G29002500|G29002601|G29002602|G29002603|G29002700|G29002800|G30000100|G30000200|G30000300|G30000400|G30000500|G30000600|G30000700|G31000100|G31000200|G31000300|G31000400|G31000500|G31000600|G31000701|G31000702|G31000801|G31000802|G31000901|G31000902|G31000903|G31000904|G32000101|G32000102|G32000103|G32000200|G32000300|G32000401|G32000402|G32000403|G32000404|G32000405|G32000406|G32000407|G32000408|G32000409|G32000410|G32000411|G32000412|G32000413|G33000100|G33000200|G33000300|G33000400|G33000500|G33000600|G33000700|G33000800|G33000900|G33001000|G34000101|G34000102|G34000301|G34000302|G34000303|G34000304|G34000305|G34000306|G34000307|G34000308|G34000400|G34000501|G34000502|G34000503|G34000601|G34000602|G34000701|G34000702|G34000703|G34000800|G34000901|G34000902|G34000903|G34000904|G34000905|G34000906|G34000907|G34001001|G34001002|G34001003|G34001101|G34001102|G34001103|G34001104|G34001105|G34001106|G34001201|G34001202|G34001203|G34001204|G34001205|G34001301|G34001302|G34001401|G34001402|G34001403|G34001404|G34001501|G34001502|G34001503|G34001504|G34001600|G34001700|G34001800|G34001901|G34001902|G34001903|G34001904|G34002001|G34002002|G34002003|G34002101|G34002102|G34002103|G34002104|G34002201|G34002202|G34002301|G34002302|G34002303|G34002400|G34002500|G34002600|G35000100|G35000200|G35000300|G35000400|G35000500|G35000600|G35000700|G35000801|G35000802|G35000803|G35000804|G35000805|G35000806|G35000900|G35001001|G35001002|G35001100|G35001200|G36000100|G36000200|G36000300|G36000401|G36000402|G36000403|G36000500|G36000600|G36000701|G36000702|G36000703|G36000704|G36000800|G36000901|G36000902|G36000903|G36000904|G36000905|G36000906|G36001000|G36001101|G36001102|G36001201|G36001202|G36001203|G36001204|G36001205|G36001206|G36001207|G36001300|G36001400|G36001500|G36001600|G36001700|G36001801|G36001802|G36001900|G36002001|G36002002|G36002100|G36002201|G36002202|G36002203|G36002300|G36002401|G36002402|G36002500|G36002600|G36002701|G36002702|G36002801|G36002802|G36002901|G36002902|G36002903|G36003001|G36003002|G36003003|G36003101|G36003102|G36003103|G36003104|G36003105|G36003106|G36003107|G36003201|G36003202|G36003203|G36003204|G36003205|G36003206|G36003207|G36003208|G36003209|G36003210|G36003211|G36003212|G36003301|G36003302|G36003303|G36003304|G36003305|G36003306|G36003307|G36003308|G36003309|G36003310|G36003311|G36003312|G36003313|G36003701|G36003702|G36003703|G36003704|G36003705|G36003706|G36003707|G36003708|G36003709|G36003710|G36003801|G36003802|G36003803|G36003804|G36003805|G36003806|G36003807|G36003808|G36003809|G36003810|G36003901|G36003902|G36003903|G36004001|G36004002|G36004003|G36004004|G36004005|G36004006|G36004007|G36004008|G36004009|G36004010|G36004011|G36004012|G36004013|G36004014|G36004015|G36004016|G36004017|G36004018|G36004101|G36004102|G36004103|G36004104|G36004105|G36004106|G36004107|G36004108|G36004109|G36004110|G36004111|G36004112|G36004113|G36004114|G37000100|G37000200|G37000300|G37000400|G37000500|G37000600|G37000700|G37000800|G37000900|G37001000|G37001100|G37001201|G37001202|G37001203|G37001204|G37001205|G37001206|G37001207|G37001208|G37001301|G37001302|G37001400|G37001500|G37001600|G37001701|G37001702|G37001703|G37001704|G37001801|G37001802|G37001803|G37001900|G37002000|G37002100|G37002201|G37002202|G37002300|G37002400|G37002500|G37002600|G37002700|G37002800|G37002900|G37003001|G37003002|G37003101|G37003102|G37003103|G37003104|G37003105|G37003106|G37003107|G37003108|G37003200|G37003300|G37003400|G37003500|G37003600|G37003700|G37003800|G37003900|G37004000|G37004100|G37004200|G37004300|G37004400|G37004500|G37004600|G37004700|G37004800|G37004900|G37005001|G37005002|G37005003|G37005100|G37005200|G37005300|G37005400|G38000100|G38000200|G38000300|G38000400|G38000500|G39000100|G39000200|G39000300|G39000400|G39000500|G39000600|G39000700|G39000801|G39000802|G39000901|G39000902|G39000903|G39000904|G39000905|G39000906|G39000907|G39000908|G39000909|G39000910|G39001000|G39001100|G39001200|G39001300|G39001400|G39001500|G39001600|G39001700|G39001801|G39001802|G39001803|G39001804|G39001805|G39001900|G39002000|G39002100|G39002200|G39002300|G39002400|G39002500|G39002600|G39002700|G39002800|G39002900|G39003000|G39003100|G39003200|G39003300|G39003400|G39003500|G39003600|G39003700|G39003800|G39003900|G39004000|G39004101|G39004102|G39004103|G39004104|G39004105|G39004106|G39004107|G39004108|G39004109|G39004110|G39004111|G39004200|G39004300|G39004400|G39004500|G39004601|G39004602|G39004603|G39004604|G39004700|G39004800|G39004900|G39005000|G39005100|G39005200|G39005301|G39005302|G39005401|G39005402|G39005403|G39005501|G39005502|G39005503|G39005504|G39005505|G39005506|G39005507|G39005600|G39005700|G40000100|G40000200|G40000300|G40000400|G40000500|G40000601|G40000602|G40000701|G40000702|G40000800|G40000900|G40001001|G40001002|G40001003|G40001004|G40001005|G40001006|G40001101|G40001102|G40001201|G40001202|G40001203|G40001204|G40001301|G40001302|G40001400|G40001501|G40001601|G41000100|G41000200|G41000300|G41000400|G41000500|G41000600|G41000703|G41000704|G41000705|G41000800|G41000901|G41000902|G41001000|G41001103|G41001104|G41001105|G41001200|G41001301|G41001302|G41001303|G41001305|G41001314|G41001316|G41001317|G41001318|G41001319|G41001320|G41001321|G41001322|G41001323|G41001324|G42000101|G42000102|G42000200|G42000300|G42000400|G42000500|G42000600|G42000701|G42000702|G42000801|G42000802|G42000803|G42000900|G42001000|G42001100|G42001200|G42001300|G42001400|G42001501|G42001502|G42001600|G42001701|G42001702|G42001801|G42001802|G42001803|G42001804|G42001805|G42001806|G42001807|G42001900|G42002001|G42002002|G42002003|G42002100|G42002200|G42002301|G42002302|G42002401|G42002402|G42002500|G42002600|G42002701|G42002702|G42002703|G42002801|G42002802|G42002803|G42002901|G42002902|G42003001|G42003002|G42003003|G42003004|G42003101|G42003102|G42003103|G42003104|G42003105|G42003106|G42003201|G42003202|G42003203|G42003204|G42003205|G42003206|G42003207|G42003208|G42003209|G42003210|G42003211|G42003301|G42003302|G42003303|G42003304|G42003401|G42003402|G42003403|G42003404|G42003501|G42003502|G42003503|G42003504|G42003601|G42003602|G42003603|G42003701|G42003702|G42003800|G42003900|G42004001|G42004002|G44000101|G44000102|G44000103|G44000104|G44000201|G44000300|G44000400|G45000101|G45000102|G45000103|G45000104|G45000105|G45000200|G45000301|G45000302|G45000400|G45000501|G45000502|G45000601|G45000602|G45000603|G45000604|G45000605|G45000700|G45000800|G45000900|G45001000|G45001101|G45001102|G45001201|G45001202|G45001203|G45001204|G45001300|G45001400|G45001500|G45001600|G46000100|G46000200|G46000300|G46000400|G46000500|G46000600|G47000100|G47000200|G47000300|G47000400|G47000500|G47000600|G47000700|G47000800|G47000900|G47001000|G47001100|G47001200|G47001300|G47001400|G47001500|G47001601|G47001602|G47001603|G47001604|G47001700|G47001800|G47001900|G47002001|G47002002|G47002003|G47002100|G47002200|G47002300|G47002401|G47002402|G47002501|G47002502|G47002503|G47002504|G47002505|G47002600|G47002700|G47002800|G47002900|G47003000|G47003100|G47003201|G47003202|G47003203|G47003204|G47003205|G47003206|G47003207|G47003208|G48000100|G48000200|G48000300|G48000400|G48000501|G48000502|G48000600|G48000700|G48000800|G48000900|G48001000|G48001100|G48001200|G48001300|G48001400|G48001501|G48001502|G48001600|G48001700|G48001800|G48001901|G48001902|G48001903|G48001904|G48001905|G48001906|G48001907|G48002001|G48002002|G48002003|G48002004|G48002005|G48002006|G48002101|G48002102|G48002200|G48002301|G48002302|G48002303|G48002304|G48002305|G48002306|G48002307|G48002308|G48002309|G48002310|G48002311|G48002312|G48002313|G48002314|G48002315|G48002316|G48002317|G48002318|G48002319|G48002320|G48002321|G48002322|G48002400|G48002501|G48002502|G48002503|G48002504|G48002505|G48002506|G48002507|G48002508|G48002509|G48002510|G48002511|G48002512|G48002513|G48002514|G48002515|G48002516|G48002600|G48002700|G48002800|G48002900|G48003000|G48003100|G48003200|G48003301|G48003302|G48003303|G48003304|G48003305|G48003306|G48003400|G48003501|G48003502|G48003601|G48003602|G48003700|G48003801|G48003802|G48003900|G48004000|G48004100|G48004200|G48004301|G48004302|G48004400|G48004501|G48004502|G48004503|G48004504|G48004601|G48004602|G48004603|G48004604|G48004605|G48004606|G48004607|G48004608|G48004609|G48004610|G48004611|G48004612|G48004613|G48004614|G48004615|G48004616|G48004617|G48004618|G48004619|G48004620|G48004621|G48004622|G48004623|G48004624|G48004625|G48004626|G48004627|G48004628|G48004629|G48004630|G48004631|G48004632|G48004633|G48004634|G48004635|G48004636|G48004637|G48004638|G48004701|G48004702|G48004801|G48004802|G48004803|G48004901|G48004902|G48004903|G48004904|G48004905|G48005000|G48005100|G48005201|G48005202|G48005203|G48005204|G48005301|G48005302|G48005303|G48005304|G48005305|G48005306|G48005307|G48005308|G48005309|G48005400|G48005500|G48005600|G48005700|G48005800|G48005901|G48005902|G48005903|G48005904|G48005905|G48005906|G48005907|G48005908|G48005909|G48005910|G48005911|G48005912|G48005913|G48005914|G48005915|G48005916|G48006000|G48006100|G48006200|G48006301|G48006302|G48006400|G48006500|G48006601|G48006602|G48006603|G48006701|G48006702|G48006703|G48006801|G48006802|G48006803|G48006804|G48006805|G48006806|G48006807|G48006900|G49003001|G49005001|G49011001|G49011002|G49013001|G49021001|G49035001|G49035002|G49035003|G49035004|G49035005|G49035006|G49035007|G49035008|G49035009|G49049001|G49049002|G49049003|G49049004|G49053001|G49057001|G49057002|G50000100|G50000200|G50000300|G50000400|G51001301|G51001302|G51004101|G51004102|G51004103|G51010701|G51010702|G51010703|G51051010|G51051020|G51051040|G51051044|G51051045|G51051080|G51051084|G51051085|G51051087|G51051089|G51051090|G51051095|G51051096|G51051097|G51051105|G51051110|G51051115|G51051120|G51051125|G51051135|G51051145|G51051154|G51051155|G51051164|G51051165|G51051167|G51051175|G51051186|G51051206|G51051215|G51051224|G51051225|G51051235|G51051244|G51051245|G51051246|G51051255|G51055001|G51055002|G51059301|G51059302|G51059303|G51059304|G51059305|G51059306|G51059307|G51059308|G51059309|G53010100|G53010200|G53010300|G53010400|G53010501|G53010502|G53010503|G53010504|G53010600|G53010701|G53010702|G53010703|G53010800|G53010901|G53010902|G53011000|G53011101|G53011102|G53011103|G53011104|G53011200|G53011300|G53011401|G53011402|G53011501|G53011502|G53011503|G53011504|G53011505|G53011506|G53011507|G53011601|G53011602|G53011603|G53011604|G53011605|G53011606|G53011607|G53011608|G53011609|G53011610|G53011611|G53011612|G53011613|G53011614|G53011615|G53011616|G53011701|G53011702|G53011703|G53011704|G53011705|G53011706|G53011801|G53011802|G53011900|G54000100|G54000200|G54000300|G54000400|G54000500|G54000600|G54000700|G54000800|G54000900|G54001000|G54001100|G54001200|G54001300|G55000100|G55000101|G55000102|G55000103|G55000200|G55000300|G55000600|G55000700|G55000800|G55000900|G55001000|G55001001|G55001300|G55001301|G55001400|G55001401|G55001500|G55001501|G55001600|G55001601|G55002400|G55002500|G55010000|G55020000|G55030000|G55040101|G55040301|G55040701|G55041001|G55041002|G55041003|G55041004|G55041005|G55050000|G55055101|G55055102|G55055103|G55070101|G55070201|G55070301|G56000100|G56000200|G56000300|G56000400|G56000500|HI, 00100|HI, 00200|HI, 00301|HI, 00302|HI, 00303|HI, 00304|HI, 00305|HI, 00306|HI, 00307|HI, 00308" +in.puma_metro_status metadata_and_annual n/a string "In metro area, not/partially in principal city|In metro area, principal city|Not/partially in metro area" +in.pv_orientation metadata_and_annual n/a string East|None|North|Northeast|Northwest|South|Southeast|Southwest|West +in.pv_system_size metadata_and_annual n/a string 1.0 kWDC|11.0 kWDC|13.0 kWDC|3.0 kWDC|5.0 kWDC|7.0 kWDC|9.0 kWDC|None +in.radiant_barrier metadata_and_annual n/a string No|None +in.range_spot_vent_hour metadata_and_annual n/a string Hour0|Hour1|Hour10|Hour11|Hour12|Hour13|Hour14|Hour15|Hour16|Hour17|Hour18|Hour19|Hour2|Hour20|Hour21|Hour22|Hour23|Hour3|Hour4|Hour5|Hour6|Hour7|Hour8|Hour9 +in.reeds_balancing_area metadata_and_annual n/a string 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99|100|101|102|103|104|105|106|107|108|109|110|111|112|113|114|115|116|117|118|119|120|121|122|123|124|125|126|127|128|129|130|131|132|133|134|None +in.refrigerator metadata_and_annual n/a string EF 10.2|EF 10.5|EF 15.9|EF 17.6|EF 19.9|EF 21.9|EF 6.7|None +in.refrigerator_usage_level metadata_and_annual n/a string 100% Usage|105% Usage|95% Usage +in.roof_material metadata_and_annual n/a string "Asphalt Shingles, Medium|Composition Shingles|Metal, Dark|Slate|Tile, Clay or Ceramic|Tile, Concrete|Wood Shingles" +in.state metadata_and_annual n/a string AK|AL|AR|AZ|CA|CO|CT|DC|DE|FL|GA|HI|IA|ID|IL|IN|KS|KY|LA|MA|MD|ME|MI|MN|MO|MS|MT|NC|ND|NE|NH|NJ|NM|NV|NY|OH|OK|OR|PA|RI|SC|SD|TN|TX|UT|VA|VT|WA|WI|WV|WY +in.state_metro_median_income metadata_and_annual n/a string 0-30%|100-120%|120-150%|150%+|30-60%|60-80%|80-100%|Not Available +in.tenure metadata_and_annual n/a string Not Available|Owner|Renter +in.usage_level metadata_and_annual n/a string High|Low|Medium +in.vacancy_status metadata_and_annual n/a string Occupied|Vacant +in.vintage metadata_and_annual n/a string 1940s|1950s|1960s|1970s|1980s|1990s|2000s|2010s|<1940 +in.vintage_acs metadata_and_annual n/a string 1940-59|1960-79|1980-99|2000-09|2010s|<1940 +in.water_heater_efficiency metadata_and_annual n/a string "Electric Heat Pump, 50 gal, 3.45 UEF|Electric Premium|Electric Standard|Electric Tankless|FIXME Fuel Oil Indirect|Fuel Oil Premium|Fuel Oil Standard|Natural Gas Premium|Natural Gas Standard|Natural Gas Tankless|Other Fuel|Propane Premium|Propane Standard|Propane Tankless|Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, North, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Natural Gas Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Propane Standard Backup|Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup|Wood" +in.water_heater_fuel metadata_and_annual n/a string Electricity|Fuel Oil|Natural Gas|Other Fuel|Propane|Solar Thermal|Wood +in.water_heater_in_unit metadata_and_annual n/a boolean No|Yes +in.water_heater_location metadata_and_annual n/a string Attic|Conditioned Mechanical Room|Crawlspace|Garage|Heated Basement|Living Space|Outside|Unheated Basement +in.window_areas metadata_and_annual n/a string F12 B12 L12 R12|F15 B15 L15 R15|F18 B18 L18 R18|F30 B30 L30 R30|F6 B6 L6 R6|F9 B9 L9 R9 +in.windows metadata_and_annual n/a string "Double, Clear, Metal, Air|Double, Clear, Metal, Air, Exterior Clear Storm|Double, Clear, Non-metal, Air|Double, Clear, Non-metal, Air, Exterior Clear Storm|Double, Low-E, Non-metal, Air, M-Gain|Single, Clear, Metal|Single, Clear, Metal, Exterior Clear Storm|Single, Clear, Non-metal|Single, Clear, Non-metal, Exterior Clear Storm|Triple, Low-E, Non-metal, Air, L-Gain" +in.air_leakage_to_outside_ach50 metadata_and_annual n/a float 0.03094|0.06188|0.09282|0.09512|0.11826|0.12252|0.12376|0.1299|0.13124999999999998|0.1547|0.15501|0.16336|0.17324|0.175|0.17739|0.18564|0.19024|0.19484999999999997|0.2042|0.20668|0.21467999999999998|0.21658|0.21875|0.23512|0.23652|0.23779999999999998|0.24504|0.24752|0.25821|0.25835|0.2598|0.25986|0.26249999999999996|0.28536|0.28588|0.28624|0.29565|0.30624999999999997|0.3094|0.31002|0.32475|0.32672|0.3311|0.33292|0.34304999999999997|0.34428|0.34648|0.35|0.35268|0.35478|0.3578|0.36169|0.36358|0.36747|0.38048|0.38969999999999994|0.4084|0.41336|0.41391|0.42935999999999996|0.43034999999999995|0.43310000000000004|0.43401|0.4375|0.44432|0.45464999999999994|0.4574|0.46409999999999996|0.47024|0.47304|0.47559999999999997|0.48996|0.49008|0.49665000000000004|0.5|0.50092|0.51642|0.5167|0.51675|0.51956|0.5196|0.51972|0.53268|0.54084|0.54219|0.54537|0.5458|0.55913|0.56495|0.57175|0.57248|0.57868|0.5878|0.5913|0.60117|0.60249|0.60634|0.61245|0.6126|0.61435|0.6188|0.6201|0.6494500000000001|0.6495|0.65625|0.6622|0.66555|0.66584|0.66585|0.67404|0.67738|0.6860999999999999|0.68856|0.69296|0.70536|0.70956|0.7133999999999999|0.7156|0.72292|0.7233499999999999|0.7234499999999999|0.72716|0.73494|0.76534|0.7663|0.77232|0.77505|0.77934|0.78536|0.78716|0.79134|0.7990200000000001|0.80045|0.80156|0.8168|0.8268|0.82775|0.82782|0.82878|0.8311999999999999|0.84252|0.85743|0.8587199999999999|0.8606999999999999|0.8662000000000001|0.86802|0.875|0.8751|0.88267|0.88695|0.88864|0.89872|0.9036500000000001|0.90895|0.90923|0.9148|0.9321900000000001|0.94048|0.94608|0.9511999999999999|0.96396|0.97425|0.97992|0.9816999999999999|0.98696|0.9933000000000001|1.0|1.00184|1.0019500000000001|1.0126899999999999|1.0210000000000001|1.0334|1.0335|1.03524|1.03912|1.03944|1.06188|1.06536|1.0734|1.0878|1.09074|1.09077|1.0916|1.09375|1.11348|1.11784|1.11826|1.1234|1.12668|1.1299|1.14312|1.14345|1.1435|1.14496|1.1494499999999999|1.15306|1.15736|1.15885|1.16224|1.17324|1.1756|1.17804|1.18074|1.1826|1.189|1.20234|1.20237|1.20495|1.20498|1.21098|1.21268|1.2134|1.2210299999999998|1.2231|1.2249|1.2252|1.2287|1.2337|1.2431699999999999|1.24498|1.2593|1.2637800000000001|1.26511|1.2725300000000002|1.2794699999999999|1.28934|1.2910499999999998|1.29175|1.29642|1.2989000000000002|1.299|1.2993000000000001|1.31148|1.3125|1.3244|1.32816|1.32992|1.3311|1.3317|1.33296|1.3443|1.3446|1.34808|1.35144|1.35476|1.35813|1.35975|1.36358|1.37214|1.37438|1.37712|1.38032|1.38585|1.38592|1.39503|1.40144|1.40272|1.40273|1.41642|1.42575|1.4267999999999998|1.4312|1.44584|1.44594|1.4466999999999999|1.45432|1.45436|1.46988|1.47825|1.48044|1.48464|1.48498|1.5|1.5158999999999998|1.53068|1.5326|1.54464|1.5458|1.5501|1.55025|1.5518999999999998|1.57072|1.57276|1.57432|1.58268|1.5922|1.59282|1.5980400000000001|1.60083|1.60312|1.60316|1.61049|1.62252|1.6237499999999998|1.62804|1.62966|1.6317000000000002|1.6336|1.6353|1.63642|1.6374|1.6426800000000001|1.6550099999999999|1.6555|1.65756|1.65974|1.6623999999999999|1.66418|1.6723|1.67572|1.6767599999999998|1.67738|1.67739|1.68504|1.68693|1.6900199999999999|1.6948499999999997|1.70596|1.71468|1.71486|1.71525|1.71538|1.7213999999999998|1.7231100000000001|1.7246|1.7254|1.72718|1.72959|1.7324000000000002|1.73604|1.7389200000000002|1.74336|1.75|1.7502|1.75821|1.7598600000000002|1.7633999999999999|1.76534|1.77088|1.77232|1.7739|1.7765999999999997|1.77728|1.78716|1.789|1.7907899999999999|1.7912|1.79208|1.7924|1.79744|1.8073000000000001|1.81084|1.81344|1.8164699999999998|1.8179|1.8179500000000002|1.8201|1.82952|1.8346500000000001|1.83472|1.83735|1.8430499999999999|1.8478|1.8558|1.8643800000000001|1.86675|1.86747|1.88864|1.8889500000000001|1.8956|1.89951|1.901|1.9023999999999999|1.9036500000000003|1.91575|1.92792|1.9340099999999998|1.9446299999999999|1.94835|1.9485|1.94968|1.95984|1.96236|1.9633999999999998|1.96722|1.9679|1.97392|1.9866000000000001|1.9966499999999998|1.9975500000000002|2.0|2.0039000000000002|2.0039499999999997|2.0044199999999996|2.01231|2.0169|2.0212|2.0253799999999997|2.02716|2.03214|2.03505|2.0420000000000003|2.04537|2.05593|2.0594|2.06636|2.0668|2.067|2.07048|2.0719499999999997|2.07224|2.07615|2.0784599999999998|2.09496|2.1011699999999998|2.10216|2.1040799999999997|2.1063|2.12376|2.12463|2.13072|2.13245|2.13304|2.1468|2.14732|2.15175|2.15575|2.16336|2.16392|2.17005|2.175|2.1756|2.18154|2.1832|2.18409|2.1875|2.1877500000000003|2.19024|2.20668|2.2136|2.2216|2.22297|2.22696|2.22747|2.23568|2.23652|2.2405|2.2468|2.25336|2.25795|2.2598|2.26355|2.28066|2.28624|2.2864999999999998|2.2869|2.287|2.2894200000000002|2.2934|2.29602|2.29748|2.2988999999999997|2.30352|2.30523|2.30612|2.30975|2.31472|2.31696|2.3177|2.31856|2.3187|2.31956|2.32448|2.33838|2.34428|2.34501|2.34648|2.36148|2.3647799999999997|2.3652|2.3688|2.36985|2.37168|2.3740200000000002|2.37625|2.3776|2.378|2.38772|2.38944|2.3960399999999997|2.3963099999999997|2.40474|2.4099|2.41556|2.41636|2.41731|2.41792|2.42196|2.4268|2.43336|2.4364500000000002|2.44164|2.4420599999999997|2.44449|2.4462|2.4498|2.45463|2.4574|2.4674|2.48325|2.48361|2.4863399999999998|2.489|2.48961|2.48996|2.4936|2.5|2.50335|2.50845|2.51358|2.51607|2.5186|2.5265|2.5275600000000003|2.52798|2.52855|2.53268|2.5380599999999998|2.5451300000000003|2.55108|2.5589399999999998|2.562|2.5623|2.56599|2.57307|2.57868|2.5820999999999996|2.58295|2.5835|2.5837499999999998|2.5869|2.5903|2.59284|2.5978000000000003|2.598|2.5981199999999998|2.5986000000000002|2.5998|2.61348|2.61372|2.61393|2.61648|2.6187|2.62296|2.63668|2.6480099999999998|2.6488|2.64945|2.65188|2.6547|2.65632|2.65848|2.6622|2.6634|2.66592|2.6662999999999997|2.67256|2.68205|2.68308|2.6841500000000003|2.6868|2.68701|2.6886|2.6892|2.70288|2.7042|2.7049000000000003|2.70772|2.70952|2.71095|2.71626|2.71875|2.7195|2.71964|2.72082|2.72685|2.72716|2.7289999999999996|2.7378|2.74014|2.74124|2.74479|2.75208|2.75506|2.75835|2.76064|2.7682|2.77128|2.7717|2.77685|2.781|2.79006|2.7946|2.79565|2.80156|2.80288|2.80544|2.80553|2.8167|2.82475|2.83284|2.83296|2.8418|2.8434|2.8490699999999998|2.8515|2.8577999999999997|2.8624|2.8718500000000002|2.88265|2.8933999999999997|2.8982|2.90073|2.9055999999999997|2.90872|2.91212|2.9245200000000002|2.93035|2.9331|2.9450999999999996|2.94882|2.9565|2.961|2.96396|2.96928|2.96996|2.97044|2.98465|2.98494|2.98543|2.9868|3.0|3.00582|3.00585|3.0106|3.0180499999999997|3.0204500000000003|3.0224|3.0317999999999996|3.0332|3.0335|3.03425|3.03604|3.0577500000000004|3.06136|3.06225|3.0652|3.07136|3.0717499999999998|3.07364|3.08928|3.09904|3.09954|3.1005|3.1037999999999997|3.11024|3.11125|3.11245|3.11784|3.11976|3.12264|3.12488|3.12668|3.1367|3.1424399999999997|3.14825|3.14864|3.15304|3.15928|3.16224|3.16536|3.16585|3.16897|3.1844|3.18564|3.19388|3.19844|3.19956|3.2011|3.20632|3.2107599999999996|3.211|3.21368|3.22098|3.2228399999999997|3.22335|3.2265500000000005|3.2336500000000004|3.2410499999999995|3.24448|3.24504|3.24588|3.24725|3.2474999999999996|3.2486|3.25552|3.25604|3.25608|3.25932|3.2624999999999997|3.2706|3.27284|3.2748|3.2786999999999997|3.2853600000000003|3.29585|3.2964|3.3100199999999997|3.311|3.31148|3.31485|3.31512|3.31948|3.3247999999999998|3.32675|3.32775|3.32925|3.3322200000000004|3.33628|3.3378|3.3407|3.3446|3.35144|3.3535199999999996|3.35385|3.35476|3.35478|3.3615|3.37008|3.3701999999999996|3.37064|3.3714|3.3786|3.3800399999999997|3.38465|3.38564|3.3869|3.3896999999999995|3.39955|3.40144|3.40895|3.41192|3.416|3.4164|3.42088|3.42132|3.4265499999999998|3.42936|3.4303500000000002|3.4305|3.43076|3.43752|3.4427999999999996|3.4462200000000003|3.4492|3.4508|3.45918|3.4602500000000003|3.4641|3.46732|3.4778400000000005|3.48243|3.48464|3.48524|3.48672|3.5|3.50195|3.5036|3.5068|3.51642|3.5197200000000004|3.5326|3.5334|3.53568|3.5370999999999997|3.5410500000000003|3.54176|3.54464|3.5478|3.55225|3.5531999999999995|3.55456|3.5664000000000002|3.57432|3.578|3.5815799999999998|3.5824|3.58268|3.58416|3.5848|3.60816|3.6146000000000003|3.61485|3.61613|3.6167499999999997|3.62168|3.62454|3.6264199999999995|3.62688|3.62776|3.62804|3.6329399999999996|3.6358|3.6359000000000004|3.6397199999999996|3.6401499999999998|3.6402|3.65352|3.65756|3.65972|3.6661799999999998|3.6693000000000002|3.66944|3.6747|3.68568|3.6860999999999997|3.6956|3.6967|3.7011|3.70495|3.70596|3.708|3.7116|3.71165|3.71245|3.71305|3.7165799999999996|3.73282|3.7335|3.73494|3.73864|3.75781|3.7599799999999997|3.76325|3.77|3.77728|3.7779000000000003|3.7858799999999997|3.78686|3.7912|3.7915|3.79505|3.79902|3.8011|3.802|3.8047999999999997|3.8062499999999995|3.8117|3.8205999999999998|3.8267|3.8315|3.8329200000000005|3.8331500000000003|3.8392|3.8420500000000004|3.85584|3.8616|3.86169|3.8645|3.8680199999999996|3.87975|3.8875900000000003|3.8892599999999997|3.8967|3.8973000000000004|3.89936|3.9061000000000003|3.90835|3.9124399999999997|3.91391|3.9267999999999996|3.93444|3.9358|3.9359499999999996|3.9413|3.9433799999999994|3.9528000000000003|3.9546499999999996|3.95502|3.9567|3.9778199999999995|3.97992|3.9805|3.9850200000000005|3.99235|3.9932999999999996|3.9934|3.99385|3.9951000000000003|3.997|3.99805|4.0|4.00092|4.0078000000000005|4.007899999999999|4.008839999999999|4.01044|4.0112|4.01675|4.02059|4.02462|4.02885|4.0338|4.03571|4.0424|4.05432|4.0556|4.05748|4.05923|4.06158|4.06428|4.0678399999999995|4.0694|4.07005|4.0701|4.07415|4.07925|4.07946|4.0840000000000005|4.09074|4.09105|4.1024899999999995|4.10634|4.11186|4.1133|4.1188|4.1205|4.1223|4.13272|4.134|4.13875|4.13935|4.1438999999999995|4.1453999999999995|4.14935|4.1523|4.156|4.1569199999999995|4.15968|4.16045|4.17035|4.17225|4.178509999999999|4.18075|4.18152|4.1893|4.18992|4.19235|4.19345|4.19975|4.2023399999999995|4.20432|4.2081599999999995|4.2126|4.2133|4.21425|4.2248|4.2254000000000005|4.22863|4.2301|4.2313600000000005|4.23205|4.23843|4.2469|4.24752|4.24926|4.2518|4.262700000000001|4.2649|4.26608|4.27|4.2705|4.27665|4.28085|4.287850000000001|4.28845|4.2936|4.29464|4.29712|4.30045|4.3035|4.3115|4.32672|4.32784|4.33415|4.3401|4.35|4.35575|4.3558|4.3562|4.35655|4.35743|4.3664|4.36818|4.38048|4.4075500000000005|4.41336|4.41575|4.4196|4.4272|4.42825|4.4308|4.43219|4.44315|4.4432|4.44594|4.4539800000000005|4.45494|4.45566|4.46226|4.4679|4.47136|4.47304|4.478|4.47835|4.481|4.4936|4.50672|4.51269|4.5159|4.51825|4.5196|4.5271|4.5347|4.53505|4.53747|4.5447500000000005|4.549799999999999|4.55406|4.55418|4.55988|4.5668999999999995|4.57122|4.57195|4.57248|4.5729999999999995|4.5738|4.574|4.57404|4.57465|4.58336|4.5868|4.59018|4.59496|4.597799999999999|4.60704|4.6071|4.61046|4.61224|4.6195|4.62294|4.63245|4.63392|4.635|4.63712|4.6374|4.64079|4.64896|4.6501|4.65885|4.6733|4.67676|4.6769799999999995|4.68732|4.68856|4.69002|4.69296|4.69539|4.7061|4.7112|4.7125|4.7187600000000005|4.7216000000000005|4.72296|4.729559999999999|4.73004|4.7304|4.7376|4.73851|4.73892|4.739|4.7416599999999995|4.74336|4.7480400000000005|4.7525|4.7593700000000005|4.7667|4.77253|4.77544|4.7766|4.77888|4.7832|4.79082|4.7920799999999995|4.792619999999999|4.7971699999999995|4.7976600000000005|4.81344|4.8165|4.8198|4.8201|4.83105|4.83272|4.83462|4.83584|4.84392|4.84435|4.84974|4.8536|4.8548|4.86672|4.8742|4.88328|4.88406|4.88898|4.8924|4.8996|4.90273|4.90504|4.9059|4.9085|4.90926|4.90952|4.91344|4.9148|4.9348|4.94392|4.9446|4.95747|4.9665|4.96722|4.9726799999999995|4.97315|4.9749|4.978|4.97922|4.97992|4.9872|4.98888|5.0|5.00442|5.0067|5.00975|5.01296|5.0169|5.02716|5.03214|5.0372|5.0397|5.053|5.05596|5.0571|5.06536|5.07048|5.07846|5.096209999999999|5.10216|5.124|5.1246|5.13198|5.14614|5.15736|5.16248|5.164199999999999|5.1659|5.1674999999999995|5.1762|5.1806|5.18568|5.18693|5.1912|5.195600000000001|5.19631|5.19743|5.19827|5.1996|5.2009799999999995|5.2044|5.22696|5.22786|5.2374|5.24118|5.24592|5.26506|5.26855|5.2989|5.30201|5.303520000000001|5.30376|5.3081|5.3094|5.31307|5.3139|5.31696|5.3244|5.3268|5.33178|5.33309|5.33638|5.34512|5.35738|5.36148|5.3641|5.36616|5.36641|5.3683000000000005|5.3713999999999995|5.3736|5.37402|5.37488|5.3784|5.37887|5.39343|5.40576|5.40624|5.4084|5.409800000000001|5.4103|5.41544|5.41904|5.4219|5.4375|5.439|5.43928|5.44164|5.44206|5.4537|5.45385|5.45432|5.45622|5.457999999999999|5.46854|5.47169|5.4756|5.48028|5.48248|5.48634|5.48958|5.51012|5.51033|5.5167|5.5178199999999995|5.527559999999999|5.52852|5.52874|5.53392|5.5364|5.53938|5.54256|5.5537|5.55894|5.562|5.5674|5.5892|5.58929|5.5907599999999995|5.5913|5.59139|5.59727|5.60312|5.60576|5.61088|5.61536|5.615679999999999|5.617|5.61925|5.62345|5.6334|5.64039|5.6495|5.66568|5.66592|5.67784|5.6836|5.6868|5.69716|5.69807|5.703810000000001|5.715599999999999|5.71725|5.7248|5.72747|5.7292|5.7437000000000005|5.74725|5.75862|5.7653|5.768700000000001|5.7851|5.7867999999999995|5.79509|5.7964|5.80146|5.80909|5.8111999999999995|5.82036|5.82424|5.83849|5.84115|5.85305|5.8607|5.86502|5.8662|5.870830000000001|5.87965|5.888999999999999|5.890199999999999|5.89995|5.9037|5.913|5.91556|5.922|5.92214|5.92487|5.92792|5.93864|5.93992|5.94088|5.944000000000001|5.9693|5.9736|5.978|5.9787|5.98731|6.0|6.00383|6.0117|6.01185|6.0212|6.02475|6.040900000000001|6.0448|6.0549|6.0664|6.067|6.06781|6.0685|6.07208|6.098120000000001|6.09872|6.09917|6.10515|6.115500000000001|6.12272|6.1245|6.1304|6.13304|6.14257|6.14272|6.1434999999999995|6.14728|6.1685|6.17856|6.18205|6.1832|6.1874400000000005|6.19955|6.203119999999999|6.21585|6.22152|6.2225|6.2249|6.23568|6.24976|6.25336|6.25506|6.2661999999999995|6.2692|6.26969|6.29168|6.2965|6.29728|6.29752|6.30608|6.31856|6.3189|6.3196|6.32448|6.33072|6.3317|6.34858|6.34907|6.3556|6.3688|6.38776|6.38944|6.39016|6.39366|6.39688|6.397349999999999|6.40073|6.40451|6.41792|6.422|6.4268|6.44616|6.4467|6.4488199999999996|6.44994|6.46725|6.482099999999999|6.48543|6.48896|6.489000000000001|6.4945|6.51104|6.51208|6.51864|6.5412|6.54568|6.5573999999999995|6.58128|6.5917|6.5928|6.61024|6.622|6.62296|6.6297|6.6346|6.63896|6.6408000000000005|6.6495999999999995|6.65184|6.6555|6.6585|6.6648|6.67256|6.6756|6.6814|6.70288|6.7077|6.7196|6.7215|6.723|6.740399999999999|6.74128|6.7428|6.7572|6.76064|6.76816|6.7693|6.77128|6.7738|6.79065|6.798750000000001|6.7991|6.80288|6.8179|6.82392|6.832|6.8328|6.84264|6.8473500000000005|6.8530999999999995|6.8595|6.8607000000000005|6.880199999999999|6.885599999999999|6.9015|6.9016|6.9205000000000005|6.9282|6.929250000000001|6.93464|6.96928|6.97048|6.975149999999999|7.0|7.0039|7.0072|7.00995|7.0136|7.0192|7.02008|7.0652|7.07136|7.0821000000000005|7.0852|7.08928|7.12875|7.14864|7.156|7.1648|7.16536|7.2292000000000005|7.2297|7.233499999999999|7.25552|7.25608|7.2716|7.271800000000001|7.2802999999999995|7.2865|7.30704|7.3113|7.31512|7.31944|7.3494|7.37008|7.37136|7.4022|7.4099|7.41192|7.416|7.4232|7.4233|7.4261|7.46235|7.487399999999999|7.5|7.514550000000001|7.5265|7.55456|7.5794999999999995|7.583|7.5901|7.5998|7.6022|7.6187000000000005|7.6234|7.663|7.666300000000001|7.6784|7.684100000000001|7.7227500000000004|7.7232|7.729|7.74885|7.770899999999999|7.7868|7.794600000000001|7.7993999999999994|7.8066|7.812200000000001|7.8167|7.853599999999999|7.8561|7.8646|7.8716|7.871899999999999|7.8826|7.898199999999999|7.905600000000001|7.9134|7.9445|7.961|7.964099999999999|7.9847|7.9868|7.9877|7.990200000000001|7.9961|7.998899999999999|8.0|8.015600000000001|8.015799999999999|8.0224|8.0275|8.0335|8.05245|8.057099999999998|8.0577|8.097299999999999|8.1112|8.1126|8.114700000000001|8.1388|8.1401|8.1402|8.1483|8.15625|8.1585|8.1765|8.1821|8.187|8.2134|8.241|8.259|8.27505|8.2775|8.2787|8.287799999999999|8.2987|8.312|8.3148|8.33055|8.3407|8.3445|8.3615|8.3786|8.383799999999999|8.3847|8.3869|8.38695|8.3995|8.4252|8.4266|8.4285|8.450099999999999|8.450800000000001|8.4602|8.4641|8.47425|8.5036|8.5298|8.5299|8.54|8.541|8.5533|8.5734|8.5769|8.5938|8.607|8.61555|8.623|8.627|8.64795|8.6683|8.67765|8.6802|8.694600000000001|8.69835|8.7116|8.7131|8.7168|8.7751|8.79105|8.7993|8.8315|8.833499999999999|8.8392|8.8544|8.8565|8.8616|8.883|8.8863|8.8864|8.916|8.9358|8.953949999999999|8.956|8.9567|8.9604|8.962|8.981850000000001|8.9872|9.0204|9.0365|9.0542|9.061350000000001|9.0672|9.0694|9.0701|9.08235|9.089500000000001|9.08975|9.1005|9.1439|9.145999999999999|9.1476|9.1493|9.173250000000001|9.1736|9.18825|9.2126|9.2142|9.21525|9.239|9.2649|9.26985|9.27|9.279|9.3002|9.33375|9.33735|9.3466|9.3993|9.425|9.443200000000001|9.44475|9.49755|9.5676|9.57875|9.6396|9.67005|9.67965|9.723149999999999|9.7484|9.8118|9.817|9.8361|9.8395|9.8696|9.887550000000001|9.933|9.94455|9.9498|9.96255|9.98325|10.0|10.0195|10.01975|10.0221|10.06155|10.0845|10.106|10.1358|10.15395|10.1607|10.17525|10.19865|10.22685|10.27965|10.3318|10.352250000000002|10.3524|10.35975|10.3612|10.38075|10.3824|10.3923|10.3992|10.4088|10.4748|10.505849999999999|10.5108|10.5204|10.5288|10.531500000000001|10.6188|10.62315|10.6536|10.65675|10.66225|10.665199999999999|10.736600000000001|10.742799999999999|10.778749999999999|10.8168|10.819600000000001|10.875|10.878|10.9077|10.915999999999999|10.920449999999999|10.9512|11.0334|11.068|11.1074|11.11485|11.1348|11.13495|11.13735|11.13915|11.15565|11.1784|11.1826|11.2025|11.215|11.2311|11.234|11.257200000000001|11.2668|11.289750000000002|11.299|11.31775|11.3745|11.38515|11.38545|11.3934|11.3997|11.4033|11.42805|11.431199999999999|11.4325|11.4345|11.4351|11.4584|11.466999999999999|11.487400000000001|11.4945|11.499450000000001|11.5176|11.526150000000001|11.52855|11.5306|11.55735|11.5702|11.573599999999999|11.5848|11.5928|11.5935|11.5978|11.622399999999999|11.66535|11.6919|11.718300000000001|11.7214|11.72505|11.7324|11.777999999999999|11.7969|11.8074|11.807849999999998|11.8239|11.844|11.847299999999999|11.858400000000001|11.8701|11.888000000000002|11.9386|11.941500000000001|11.9472|11.9595|11.97705|11.9802|11.98155|11.994150000000001|12.0237|12.0272|12.0336|12.0495|12.05025|12.081800000000001|12.086549999999999|12.0896|12.134|12.137|12.166799999999999|12.18225|12.19965|12.208200000000001|12.21015|12.2103|12.22245|12.231000000000002|12.27315|12.286999999999999|12.337|12.3399|12.3598|12.361500000000001|12.41805|12.4317|12.437249999999999|12.445|12.44805|12.4498|12.4722|12.5|12.51105|12.51675|12.52425|12.532399999999999|12.567900000000002|12.57705|12.593|12.59925|12.632499999999999|12.6378|12.639899999999999|12.64275|12.6634|12.676200000000001|12.6903|12.69615|12.7554|12.7644|12.79485|12.81|12.811499999999999|12.82995|12.8934|12.906200000000002|12.91475|12.9345|12.9515|12.964199999999998|12.978000000000002|12.998999999999999|13.00245|13.067400000000001|13.069650000000001|13.0824|13.093499999999999|13.114799999999999|13.16265|13.244|13.24725|13.2588|13.2594|13.281600000000001|13.28475|13.292399999999999|13.311|13.317|13.331499999999998|13.3628|13.4037|13.4154|13.42075|13.434|13.43505|13.443|13.5144|13.520999999999999|13.5245|13.5386|13.5813|13.593749999999998|13.597500000000002|13.5982|13.604099999999999|13.60515|13.6358|13.645|13.689000000000002|13.706199999999999|13.71585|13.719|13.72395|13.760399999999999|13.79175|13.803|13.8032|13.8189|13.8213|13.841000000000001|13.8564|13.884250000000002|13.897350000000001|13.905000000000001|13.950299999999999|13.972999999999999|13.978250000000001|14.0078|14.0144|14.0272|14.0384|14.083499999999999|14.12375|14.164200000000001|14.164800000000001|14.209|14.216999999999999|14.289|14.323|14.351400000000002|14.359250000000001|14.41325|14.4594|14.46275|14.466999999999999|14.491000000000001|14.497250000000001|14.527999999999999|14.543600000000001|14.560599999999999|14.6226|14.65175|14.7225|14.804999999999998|14.8198|14.8464|14.8466|14.8522|14.860000000000001|14.92325|14.9247|14.934|14.974799999999998|15.0|15.034|15.053|15.10225|15.112|15.158999999999999|15.166|15.1675|15.17125|15.1802|15.1806|15.1912|15.1996|15.237400000000001|15.2468|15.28875|15.326|15.332600000000001|15.3568|15.358749999999999|15.368200000000002|15.3714|15.4098|15.445500000000001|15.4464|15.449750000000002|15.4977|15.541799999999999|15.553799999999999|15.556249999999999|15.562249999999999|15.5736|15.589200000000002|15.598799999999999|15.624400000000001|15.6334|15.665499999999998|15.7122|15.7292|15.74125|15.7432|15.743799999999998|15.7652|15.796399999999998|15.811200000000001|15.8268|15.82925|15.922|15.9694|15.9736|15.9754|15.9922|16.031599999999997|16.0448|16.067|16.1049|16.114199999999997|16.11675|16.13275|16.20525|16.2224|16.2252|16.229400000000002|16.266199999999998|16.269299999999998|16.2776|16.2802|16.2804|16.2966|16.3125|16.353|16.3642|16.3935|16.4268|16.4532|16.482|16.5501|16.555|16.5574|16.57425|16.575599999999998|16.5974|16.6296|16.638749999999998|16.6611|16.6814|16.689|16.7035|16.7572|16.767599999999998|16.76925|16.7694|16.7738|16.7739|16.799|16.8504|16.8532|16.857|16.893|16.900199999999998|16.901600000000002|16.9204|16.92325|16.9282|16.9485|16.99775|17.0072|17.04475|17.0596|17.08|17.082|17.1066|17.132749999999998|17.1468|17.1876|17.2311|17.246|17.25375|17.254|17.2959|17.301250000000003|17.3205|17.3366|17.3553|17.389200000000002|17.3967|17.4232|17.4262|17.4336|17.50975|17.534|17.548|17.5502|17.5821|17.663|17.6784|17.70525|17.7088|17.713|17.7232|17.76125|17.766|17.8716|17.907899999999998|17.9134|17.9208|17.924|18.0408|18.1084|18.122700000000002|18.1344|18.1388|18.1402|18.1795|18.20075|18.201|18.216250000000002|18.2878|18.291999999999998|18.2986|18.346500000000002|18.3472|18.4252|18.4284|18.4305|18.478|18.52475|18.5298|18.54|18.558|18.55825|18.56225|18.56525|18.6675|18.6747|18.7185|18.7986|18.81625|18.8895|18.9575|18.97525|18.975749999999998|18.9951|18.9995|19.046750000000003|19.058500000000002|19.1352|19.1575|19.16575|19.195999999999998|19.210250000000002|19.2792|19.308|19.3401|19.3593|19.446299999999997|19.4865|19.5305|19.54175|19.6615|19.6722|19.679|19.67975|19.7065|19.73125|19.7455|19.74875|19.764|19.7835|19.86125|19.8891|19.8996|19.961750000000002|19.9665|19.967|19.99025|20.0|20.0395|20.0442|20.055999999999997|20.1231|20.14425|20.212|20.2716|20.278|20.30375|20.3079|20.347|20.35025|20.3505|20.37075|20.3973|20.4537|20.45525|20.5593|20.566499999999998|20.594|20.602500000000003|20.6636|20.69675|20.704500000000003|20.7195|20.7224|20.74675|20.7615|20.7846|20.787|20.7984|20.85175|20.861250000000002|20.9465|20.9496|20.961750000000002|20.99875|21.011699999999998|21.0408|21.0576|21.066499999999998|21.07125|21.127000000000002|21.1505|21.16025|21.2463|21.274|21.330399999999997|21.349999999999998|21.3525|21.38325|21.473200000000002|21.485599999999998|21.557499999999997|21.6336|21.670749999999998|21.75|21.779|21.78275|21.840899999999998|21.8595|21.9024|22.0668|22.07875|22.098000000000003|22.136|22.14125|22.1757|22.2148|22.2297|22.2699|22.2747|22.2783|22.3395|22.3568|22.3652|22.39175|22.405|22.4622|22.5336|22.579500000000003|22.598|22.6355|22.6735|22.67525|22.722900000000003|22.749|22.7703|22.7994|22.8561|22.859750000000002|22.862399999999997|22.865|22.8702|22.87325|22.9168|22.933999999999997|22.974800000000002|22.989|23.031499999999998|23.0352|23.0355|23.052300000000002|23.0571|23.0612|23.1147|23.1404|23.16225|23.175|23.1856|23.1956|23.244799999999998|23.3838|23.436600000000002|23.4428|23.4501|23.5938|23.6148|23.615699999999997|23.6478|23.688|23.694599999999998|23.7402|23.776000000000003|23.8772|23.883000000000003|23.8944|23.9541|23.9604|23.9631|23.988300000000002|24.0672|24.099|24.163600000000002|24.1792|24.268|24.274|24.333599999999997|24.3645|24.416400000000003|24.4203|24.4449|24.5463|24.573999999999998|24.6798|24.723000000000003|24.8361|24.8634|24.874499999999998|24.89|24.8961|24.8996|24.9444|25.0|25.0335|25.064799999999998|25.135800000000003|25.1541|25.186|25.1985|25.264999999999997|25.279799999999998|25.2855|25.3268|25.352400000000003|25.3806|25.3923|25.5288|25.5897|25.62|25.622999999999998|25.6599|25.7868|25.812400000000004|25.8295|25.903|25.928399999999996|25.997999999999998|26.0049|26.134800000000002|26.139300000000002|26.186999999999998|26.229599999999998|26.4945|26.5176|26.5188|26.622|26.7256|26.8074|26.8308|26.8415|26.857|26.8701|27.0288|27.041999999999998|27.0772|27.187499999999996|27.1964|27.208199999999998|27.2103|27.2716|27.378000000000004|27.412399999999998|27.4317|27.4479|27.5835|27.606|27.6378|27.6426|27.682000000000002|27.7128|27.768500000000003|27.945999999999998|27.956500000000002|28.0156|28.0544|28.0768|28.166999999999998|28.2475|28.328400000000002|28.578|28.646|28.718500000000002|28.8265|28.982000000000003|29.055999999999997|29.121199999999998|29.146|29.3035|29.445|29.609999999999996|29.6396|29.6932|29.7044|29.720000000000002|29.8465|29.868|29.949599999999997|30.0|30.106|30.2045|30.224|30.332|30.335|30.3604|30.3612|30.474800000000002|30.4936|30.5775|30.652|30.7136|30.736400000000003|30.7428|31.112499999999997|31.124499999999998|31.178400000000003|31.2668|31.330999999999996|31.4584|31.4825|31.4864|31.5304|31.57|31.592799999999997|31.622400000000003|31.6536|31.6585|31.778|31.9388|31.9472|31.9844|32.0896|32.134|32.2335|32.2655|32.4105|32.4448|32.486000000000004|32.5552|32.5604|32.5932|32.7284|32.787|32.9064|32.964|33.1148|33.1485|33.1948|33.2592|33.277499999999996|33.3628|33.378|33.407|33.5144|33.5385|33.5388|33.714|33.786|33.803200000000004|33.8465|33.9955|34.0895|34.16|34.164|34.2132|34.5075|34.602500000000006|34.641|34.6732|34.8464|34.8524|35.0195|35.068|35.096|35.1004|35.326|35.3568|35.4105|35.426|35.5225|35.7432|35.8268|36.2776|36.2804|36.4015|36.432500000000005|36.5756|36.5972|36.8504|36.8568|37.0495|37.0596|37.08|37.1165|37.1305|37.437|37.915|37.9505|37.951499999999996|38.093500000000006|38.117000000000004|38.315|38.391999999999996|38.420500000000004|38.645|38.973|39.0835|39.323|39.358|39.3595|39.491|39.528|39.567|39.923500000000004|39.934|39.9805|40.0|40.111999999999995|40.556|40.694|40.7005|40.7415|40.9105|41.205000000000005|41.3935|41.439|41.4935|41.574|41.722500000000004|41.893|41.923500000000004|42.1425|42.254000000000005|42.699999999999996|42.7665|43.341499999999996|43.558|43.5655|44.1575|44.196000000000005|44.679|44.7835|45.347|45.3505|45.719500000000004|45.7465|46.062999999999995|50.0 +in.applicable metadata_and_annual n/a boolean TRUE +in.buildstock_csv_path metadata_and_annual n/a string buildstock.csv +in.units_represented metadata_and_annual n/a integer 1 +in.simulation_control_run_period_begin_day_of_month metadata_and_annual n/a integer 1 +in.simulation_control_run_period_begin_month metadata_and_annual n/a integer 1 +in.simulation_control_run_period_calendar_year metadata_and_annual n/a integer 2018 +in.simulation_control_run_period_end_day_of_month metadata_and_annual n/a integer 31 +in.simulation_control_run_period_end_month metadata_and_annual n/a integer 12 +in.simulation_control_timestep metadata_and_annual n/a integer 15 +in.utility_bill_electricity_fixed_charges metadata_and_annual usd float 13.8 +in.utility_bill_electricity_marginal_rates metadata_and_annual usd float 0.093792718|0.095708797|0.09623518|0.097183641|0.098152001|0.098685549|0.104342732|0.10788677|0.109361977|0.109475659|0.109586156|0.109780313|0.112014549|0.112391066|0.11263658|0.115311516|0.116761718|0.117508163|0.118167966|0.120336179|0.12212382|0.123340947|0.123565513|0.126507786|0.127150707|0.128706431|0.128973847|0.132607564|0.133635546|0.133848087|0.136443929|0.136793145|0.139605448|0.141584464|0.142604109|0.147789041|0.150543726|0.150884217|0.155457448|0.163560709|0.165542527|0.183661334|0.198047752|0.215063004|0.245262372|0.249571924|0.258502111|0.266971414|0.271402266|0.278485535|0.396489398 +in.utility_bill_fuel_oil_fixed_charges metadata_and_annual usd float 0 +in.utility_bill_fuel_oil_marginal_rates metadata_and_annual usd float 2.746846154|2.897307692|2.967307692|3.019076923|3.088538462|3.274230769|3.309538462|3.329769231|3.448461538|3.449153846|3.486230769|3.526538462|3.582692308|3.658923077|3.681153846|3.694307692|3.741846154|3.768230769|3.801|3.809384615|3.888615385|3.921|3.941846154|3.976461538|4.016307692|6.58 +in.utility_bill_natural_gas_fixed_charges metadata_and_annual usd float 4.95|10|10.8|11.38|13.16|13.24|13.5|14|14.6 +in.utility_bill_natural_gas_marginal_rates metadata_and_annual usd float 0.757959287|0.766550977|0.771145095|0.808926492|0.814349384|0.8619508|0.890533801|0.914474387|0.924764572|0.947964437|0.95950615|0.970288774|0.97273477|1.041230921|1.042071903|1.058096089|1.083933273|1.131644784|1.13368161|1.138438617|1.161648985|1.172535955|1.179455136|1.191737547|1.250961795|1.274823771|1.324122284|1.376099502|1.40010647|1.411150918|1.413705399|1.413742415|1.416042199|1.420968081|1.44004766|1.440901216|1.443628661|1.45183129|1.466099897|1.476893379|1.491501436|1.492142732|1.621992584|1.651841618|1.65263025|1.75104111|1.766762896|1.837640087|1.863660544|1.964713414|4.83842304 +in.utility_bill_propane_fixed_charges metadata_and_annual usd float 0 +in.utility_bill_propane_marginal_rates metadata_and_annual usd float 1.642230769|1.679230769|1.761461538|1.889|1.906153846|1.951692308|1.982692308|2.021384615|2.164692308|2.221692308|2.279153846|2.304384615|2.316615385|2.331384615|2.426692308|2.485153846|2.536923077|2.538846154|2.632769231|2.734153846|2.734461538|2.947230769|2.959615385|3.004846154|3.038615385|3.178923077|3.256230769|3.390230769|3.404923077|3.439923077|3.467538462|3.487846154|3.495|3.551923077|3.623384615|3.666076923|3.680615385|3.699076923|3.720461538|3.747769231|3.819769231|3.967076923|4.751615385|8.11 +in.utility_bill_scenario_names metadata_and_annual n/a string Utility Rates - Fixed + Variable +in.utility_bill_simple_filepaths metadata_and_annual n/a string data/utility_bills/sdr_rates/State.tsv +in.weather_file_city metadata_and_annual n/a string A L Mangham Jr Rgnl|Aberdeen Regional|Abilene Dyess Afb|Abilene Municipal|Accomack Co|Adirondack Rgnl|Ainsworth Municipal|Airborne Airpark|Aitkin Muni Kurtz Fl|Akron Akron Canton|Alamogordo White Sa|Alamosa Muni Awos|Albany County Airpo|Albany Municipal|Albert Lea Awos|Albuquerque Intl|Alexander Fld South|Alexandria Int|Algona|Alice Intl|Allegheny Co|Allentown A Bethle|Alliance Muni|Alma Bacon Co|Alpena Phelps Colli|Altoona Blair Co|Alturas Muni|Altus Afb|Amarillo Intl|Ames Muni|Anderson Rgnl|Andrews Afb Camp Sp|Angelina Co|Ann Arbor Municipal|Anniston Metropolit|Anoka Co Blaine|Antrim Co|Apalachicola Muni|Aransas Co|Arcata|Ardmore Downtown Exe|Arlington Muni|Arthur N Neu|Ashe Co|Asheboro Rgnl|Asheville Municipal|Ashtabula Co|Aspen Pitkin Co Sard|Astoria Clatsop|Athens Municipal|Atlanta Municipal|Atlantic City Intl|Atlantic Muni|Auburn Lewiston Muni|Audubon Co|Augusta Bush Field|Augusta State Arpt|Aurora Muni Al Pott|Aurora Municipal|Aurora State|Austin Camp Mabry|Austin Mueller Muni|Austin Muni|Baker City Muni|Baker Muni|Bakersfield Meadows|Baltimore Washingto|Bangor Intl|Baraboo Wisc Dells|Barksdale Afb|Barnstable Muni Boa|Batesville Rgnl|Baton Rouge Metro R|Baudette Intl|Beale Afb|Beatrice Muni|Beaufort Mcas|Beckley Raleigh Ct|Beeville Chase Naas|Bellingham Intl|Bemidji Municipal|Bentonville Muni Tha|Berlin Municipal|Bert Mooney|Beverly Muni|Big Piney Amos|Billings Logan Int|Binghamton Broome C|Birmingham|Birmingham Muni|Bisbee Douglas Intl|Bishop Airport|Bismarck Municipal|Block Island|Blue Canyon Nyack|Blue Ridge|Blythe|Boise Municipal|Boone Co|Boone Muni|Boscobel|Boston Logan Intl|Bowerman|Bowers Fld|Bowling Green Warre|Bowman Fld|Bradford Rgnl|Brainerd Lakes Rgnl|Branch Co Mem|Brazoria Co|Bremerton National|Brewster Fld|Bridgeport Igor I|Broken Bow Muni|Brookings Rgnl|Brownsville Intl|Brunswick Golden Is|Buckley Afb|Buffalo|Burke Lakefront|Burley Muni|Burlington Alamance|Burlington Intl|Burnet Muni Kate Cr|Burns Muni Amos|Butler Co Rgnl|Butler Co Scholter F|C David Campbell Fld|C M Schulz Sonoma Co|Cahokia St Louis|Cairns Aaf|Caldwell Awos|Camarillo|Cambridge Muni|Cannon Afb|Canyonlands Fld|Cape Girardeau Rgnl|Cape Hatteras|Cape May Co|Cape Newenham Afs|Capital City Arpt|Cartersville|Casper Natrona Coun|Cavern City Air Ter|Cecil Fld|Cedar City Rgnl|Cedar Rapids Muni|Centennial|Central Illinois Rg|Centreville|Challis|Chamberlain Amos|Chan Gurney Muni|Chandler Fld|Chanute Martin Johns|Chariton Muni|Charles B Wheeler D|Charleston Muni|Charlevoix Muni|Charlotte Co|Charlotte Douglas|Charlottesville Alb|Chattanooga Lovell|Cherry Capital|Cherry Point Mcas|Chesapeake|Cheyenne Warren Afb|Chicago Midway|Chicago Waukegan|Chicopee Falls West|Childress Municipal|Chippewa Valley Rgn|Cincinnati Greater|Cincinnati Muni Lun|Clarion Muni|Clayton Muni Amos|Clearfield Lawrence|Cleveland|Clines Corners|Clinton Muni|Clinton Sherman|Clintonville Muni|Cloquet Carlton Co|Clovis Muni|Cody Muni Awos|Coeur D Alene Air Te|Coffeyville Muni|Col James Jabara|Cold Bay|Coles Co Mem|Collin Co Rgnl|Colorado Plains Rgnl|Colorado Springs Mu|Columbia Gorge Rgnl|Columbia Metro|Columbia Owens Apt|Columbia Regional|Columbus Afb|Columbus Metropolit|Columbus Muni|Columbus Port Colum|Concord Buchanan|Concord Municipal|Concordia Blosser M|Converse Co|Copper Harbor|Corpus Christi Int|Cortez Muni|Corvallis Muni|Cotulla Lasalle Co|Council Bluffs Muni|Cox Fld|Craig Moffat|Craven Co Rgnl|Creston Muni|Crookston Muni Kirkw|Cross City Cross Ci|Crossville Mem Whit|Crystal|Culpeper Rgnl|Custer|Custer County|Cut Bank Muni|Dalhart Municipal|Dallas Hensley Field Nas|Dallas Love Fld|Dalton|Danbury Muni Arpt|Daniel Field|Danville Rgnl|Dare Co Rgnl|Davenport Muni|Davis Monthan Afb|Davison Aaf|Dawson Community|Dayton James M Cox|Dayton Wright Brothe|Dayton Wright Patte|Daytona Beach Intl|Decatur|Decorah Muni|Deer Park Arpt|Defiance Memorial|Dekalb Peachtree|Del Rio Intl|Delaware Co Johnson|Delta Co|Deming Muni|Denison Municipal|Denton Muni|Denver Internationa|Derby Fld|Des Moines Intl|Desert Rock|Destin Ft Walton|Detroit Lakes Wethin|Detroit Metropolita|Devils Lake Muni|Dickinson Muni|Dillant Hopkins|Dillingham Muni|Dillon Airport|Dinwiddie Co|Dodge City Awos|Dodge Co|Door Co Cherryland|Dothan Rgnl|Dover Afb|Doylestown|Drake Fld|Draughon Miller Cen|Du Bois Jefferson C|Dublin New Riv Vlly|Dubuque Municipal|Duluth Intl Airport|Dunkirk|Dupage|Durango La Plata Co|Dutch Harbor|Dutchess Co|Dyersburg Muni|Eagle Co Rgnl|Eagle Creek Airpark|Eagle River Union|Eastern Slopes Rgnl|Eastern Wv Rgnl She|Easterwood Fld|Edward F Knapp State|El Paso Intl Arpt|El Toro Mcas|Elizabeth City Cgas|Elkhart Morton Co|Elkins Randolph Cou|Elko Rgnl|Ellsworth Afb|Elmira Corning Rgnl|Ely Arpt Yelland Fld|Emporia Muni|Erie Intl Airport|Ernest A Love Fld|Esler Rgnl|Essex Co|Estherville Muni|Eugene Mahlon Sweet|Eureka Ramos|Evansville Regional|Executive|Fairchild Afb|Fairfield Co|Fairfield Muni|Fairfield Travis Af|Fairmont Muni Awos|Fallon Nas|Falls City Brenner|Fargo Hector Field|Farmington Rgnl|Farmville Rgnl|Fayette Rgnl Air Ctr|Fayetteville Rgnl G|Felts Fld|Findlay|Flagstaff Airport|Flint Bishop Intl|Florence Rgnl|Florida Keys Maratho|Floyd Bennett Mem|Flying Cloud|Fond Du Lac Co|Forbes Fld|Ford|Fort Benning|Fort Bragg Simmons|Fort Campbell Aaf|Fort Dodge Awos|Fort Drum Wheeler S|Fort Knox Godman|Fort Lauderdale Exec|Fort Lewis Gray Aaf|Fort Myers Page Fld|Fort Polk Army|Fort Sill|Fort Smith Muni|Fort Stockton Pecos|Fort Wayne Baer Fld|Fort Worth Alliance|Fort Worth Meacham|Four Corners Rgnl|Franklin Muni Jb Ros|Frederick Muni|Fremont Muni|Fresno Air Terminal|Friday Harbor|Frying Pan Shoals|Ft Riley Marshall|Fulton Co Arpt Brow|Gadsden Muni|Gage Shattuck|Gainesville Rgnl|Gallatin Fld|Gallup Muni|Galveston|Garden City Rgnl|Garfield Co Rgnl|Garrison|Gastonia Muni|Gaylord Rgnl|Georgetown Muni|Gillette Gillette C|Glasgow Intl Arpt|Glenwood Muni|Gocebic Iron Co|Goodland Renner Fie|Grand Forks Afb|Grand Forks Intl|Grand Island County|Grand Junction Walk|Grand Marias|Grand Rapids Itasca|Grand Rapids Kent C|Gratiot Community|Great Bend Muni|Great Falls Intl|Greater Buffalo Int|Greater Peoria Muni|Greater Pittsburgh I|Greater Rockford|Greeley Weld Co|Green Bay A Straub|Greenbrier Valley|Greensboro G High|Greenville|Greenville Greenvil|Greenwood Co|Greenwood Leflore|Grider Fld|Griffiss Airpark|Grissom Arb|Gulfport Biloxi Int|Gunnison Co Awos|Gustavus|Guthrie Muni|Hagerstown Rgnl Ric|Haines|Halifax Co|Hallock Muni|Hancock Co Bar Harbo|Hanford|Hanford Muni|Hanover Co Muni|Harriman And West|Harrisburg Capital|Harrisburg Intl|Harrison Marion Rgn|Harry Clever Fld|Harry P Williams Mem|Hartford Brainard|Hartness State|Hartnett County|Hastings Muni|Hattiesburg Laurel|Havre Amos|Hayden Yampa Awos|Hays Rgnl|Hayward Air Term|Helena Regional|Henderson City Co|Hermiston Muni|Hernando Co|Hettinger Muni|Hickory Rgnl|Hill Afb|Hill City Muni|Hillsdale Municipal|Hobart Muni|Homer|Hondo Muni|Honolulu Intl|Houghton County|Houghton Lake Rosco|Houston Dw Hooks|Houston Ellington|Houston Intercontin|Hunter Aaf|Huntingburg|Huntington Tri Stat|Huntsville|Huntsville Madison|Huron Co Mem|Huron Huron Regiona|Hutchinson Co|Hutchinson Muni|Hutchinson Muni Butl|Idaho Falls Rgnl|Iliamna Iliamna Air|Imperial Co|Indiana Co|Indianapolis I Mun|Ingalls Fld|International Falls|Iowa City Muni|Iowa Co|J F Kennedy Memorial|J L Helms Sevier Co|Jack Mc Namara Fld|Jackson Allen C Th|Jackson Carroll Arpt|Jackson Co Reynolds|Jackson Hole|Jackson Muni|Jacksonville Awos|Jacksonville Intnl|Jacksonville Muni|Jacksonville Nas|Jamestown Rgnl|Jefferson City Mem|Jerome Co|John H Batten|John Murtha Johnsto|Johnson Co|Johnson Co Executive|Johnson Co Industr|Joliet Rgnl|Jonesboro Muni|Joplin Rgnl|Jordan|Joslin Fld Magic Va|Juneau|Kalamazoo Battle Cr|Kalispell Glacier P|Kansas City Intl|Kearney Muni|Kenosha Rgnl|Keokuk Muni|Ketchikan Intl|Killeen Muni Awos|Kimble Co|King Salmon|Kingman|Kingsville Nas|Kirksville Rgnl|Kirsch Muni|Kit Carson County|Klamath Falls|Knoxville|Knoxville Municipal|Kodiak|L M Clayton|L O Simenstad Muni|La Crosse Municipal|La Grande Union Co|La Junta Muni|La Usc Downtown Cam|Lac Qui Parle Co|Laconia Muni|Lafayette Rgnl|Lake Charles Muni|Lake Co|Lake Tahoe|Lakefront|Lakeland Noble F Le|Lamar Muni|Lamoni Muni Airport|Lancaster|Langlade Co|Langley Afb Hampton|Lansing Capital Cit|Laramie Rgnl|Laredo Intl Airport|Las Vegas Mccarran|Las Vegas Municipal|Laughlin Afb|Laurence G Hanscom|Lawrence Muni|Lawrenceville Vincen|Lawton Municipal|Le Mars Muni|Lebanon Muni|Lee C Fine Mem|Lee Gilmer Mem|Leesburg Executive|Leesburg Rgnl|Lemhi Co|Lenawee Co|Lewis University|Lewiston Nez Perce|Lewistown Muni|Lexington Blue Gras|Liberal Muni|Lidgerwood Ramos|Lima Allen Co|Limon Muni|Lincoln Municipal|Litchfield Muni|Little Rock Adams F|Little Rock Afb|Livingston Co|Logan Cache|London Corbin Arpt|Lonesome Pine|Long Island Mac Art|Longview|Lorain Co Rgnl|Louisa Co Freeman Fl|Louisville Standifo|Lowell|Lubbock Lubbock Int|Luce Co|Lynchburg Mun P G|Mackinack Island|Macon Lewis Bwilso|Madera Muni|Madison Dane County|Malmstrom Afhp|Manassas Rgnl Davis|Manchester|Manhattan Rgnl|Manistee Co Blacker|Manistique Amos|Manitowoc Co|Mankata Rgnl Arpt|Mansfield Lahm Rgnl|Marfa Municipal|Marianna Muni|Marietta Dobbins Af|Marion Muni|Marseilles Island|Marshall Town Muni|Marshfield Muni|Marthas Vineyard|Mason City Muni|Mason Co|Mason Jewett Fld|Massena Intl Richar|Matinicus Rock|Maxton|Maxwell Afb|Mbs Intl|Mc Alester Rgnl|Mc Allen Miller Int|Mc Call Muni|Mc Clellan Afld|Mc Comb Pike Co Joh|Mc Connell Afb|Mc Gregor Executive|Mc Kellar Sipes Rgn|Mc Minnville Muni|Mccook Rgnl|Mecklenburg Brunswi|Medford Jackson Cou|Medicine Lodge Amos|Meeker|Melbourne Regional|Memorial Fld|Memphis Intl Arpt|Menominee Marinette|Merced Muni Macready|Mercer Co|Meriden Markham Muni|Meridian Key Field|Meridian Nas|Merrill Muni|Metcalf Fld|Miami|Michael J Smith Fld|Mid Ohio Valley Rgn|Middleton Fld|Middleton Island|Midland Midland Reg|Miles City|Millington Muni Arp|Millville Muni|Milwaukee Gen Mitc|Mineral Wells Muni|Minot Afb|Minot Intl|Miramar Mcas|Mission Fld|Missoula Johnson Be|Mitchell Muni|Mobile Bates Field|Mobile Downtown|Mobridge Muni|Modesto City Co Har|Moline Quad City|Monmouth Executive|Monroe Airport|Monroe Co|Monroe Muni|Monroe Rgnl|Montevideo Chippewa|Montgomery Co|Montgomery Dannelly|Monticello Muni|Monticello Rgnl|Montrose Rgnl|Moody Afb Valdosta|Moore Co|Mora Muni|Morgantown Muni Wal|Morris Muni|Morrisville Stowe St|Moses Lake Grant Co|Mount Ida|Mount Pleasant Muni|Mount Vernon|Mountain Empire|Mountain Home Afb|Mt Washington Rgnl|Mullan Awrs|Muscatine Muni|Muskegon|Muskogee Davis Fld|Myrtle Beach Civ|Nantucket Mem|Napa Co|Naples Muni|Nashville Metropoli|Natchez Hardy Awos|New Braunfels Muni|New Iberia Acadiana|New Orleans Moisant|New Orleans Nas Jrb|New River Mcas|New York John F Ke|New York La Guardia|Newark Intl Airport|Newnan Coweta Co|Newport|Newport News Willia|Newport State Beach|Newton City Co|Newton Muni|Niagara Falls Intl|Nogales Intl|Norfolk Intl Arpt|Norfolk Karl Stefan|Norfolk Ns|Norman Max Westheim|Norman Y Mineta San|North Bend Muni|North Central State|North Platte Lee Bi|Northeast Philadelph|Northeastern Rgnl|Northwest Alabama R|Norwood Mem|Nyc Central Park|Oak Ridge|Oakland Co Intl|Ocala Intl J Taylor|Ocean City Muni|Oconee Co Rgnl|Odessa Schlemeyer Fl|Offutt Afb|Ogden Hinckley Muni|Ohio State Universi|Oklahoma City W Ro|Oklahoma City Wiley|Olympia|Omaha|Omak|Ontaria Muni|Ontario Intl Arpt|Orange City Muni|Orange Co|Orangeburg Muni|Orlando Jetport|Orlando Sanford|Oroville Muni|Ortonville Muni Mart|Oscoda Wurtsmith|Oswego Co|Ottumwa Industrial|Outagamie Co Rgnl|Ozark Rgnl|Paducah Barkley|Page Muni Amos|Palacios Muni|Panama City Bay Co|Pangborn Mem|Park Falls Muni|Park Rapids Muni Kon|Patuxent River Nas|Peachtree City Falco|Pearson Fld|Pellston Rgnl Arpt|Pendleton Municipal|Penn Yan|Pensacola Rgnl|Perry Foley|Perry Stokes|Philadelphia Intl|Philip|Phoenix Sky Harbor|Pierre Rgnl|Pine Ridge|Pine River Rgnl|Pine Springs Guadalu|Pipestone Muni|Pitt Greenville|Plattsburgh Intl|Plymouth Municipal|Pocatello Municipal|Pocono Mountains Mun|Ponca City Muni|Pope Afb|Poplar Bluff Amos|Port Arthur Jeffers|Port Meadville|Porter Co Muni|Portland Hillsboro|Portland Intl Arpt|Portland Intnl Jet|Pottstown Limerick|Prairie Du Chien Mun|Presque Isle Awos|Price Carbon County|Princeton Muni|Providence Green St|Provo Muni|Pryor Fld Rgnl|Pueblo Memorial Aw|Pullman Moscow Rgnl|Purdue Univ|Quantico Mcaf|Quincy Rgnl Baldwin|Raleigh Raleigh Dur|Randolph Afb|Rapid City Regional|Rawlins Municipal|Reading Rgnl Carl|Red Bluff Municipal|Red Oak Muni|Red Wing Rgnl|Redding Municipal|Redwood Falls Muni|Reno Cannon Intl|Renton Muni|Republic|Rexburg Madison Co|Rhinelander Oneida|Rice Lake Rgnl Carls|Richard I Bong|Richard Lloyd Jones|Richmond Byrd Field|Rickenbacker Intl|Riverside March Afb|Riverton|Roanoke Municipal|Roben Hood|Robert Gray Aaf|Roberts Fld|Robins Afb|Rochester Monroe Co|Rochester Municipal|Rock Hill York Co|Rock Springs Sweetw|Rocky Mount Wilson|Rogers Muni Carter F|Rolla Vichy Airport|Rome Russell Ramos|Roseau Muni Billberg|Roseburg Rgnl|Roswell Industrial|Rush City Rgnl|Russell Muni|Russellville Rgnl|Rutherfordton|Rutland State|Sacramento Intl|Safford Rgnl|Salem Leckrone|Salem Mcnary|Salina Muni|Salinas Muni|Salisbury Ocean Cit|Salt Lake City Intl|San Angelo Mathis|San Antonio Intl|San Francisco Intl|San Luis Co Rgnl|San Marcos Muni|Sanderson Fld|Sanford Rgnl|Santa Barbara Muni|Santa Fe Co Muni|Sarasota Bradenton|Sault Ste Marie|Savannah Municipal|Sawyer Co|Sawyer Intl|Scappoose Industrial|Schenck Fld|Scott Afb Midameric|Scottsbluff Heilig|Searle Fld|Sedalia Memorial|Selfridge Angb|Seward|Sexton Summit|Seymour Johnson Afb|Shannon|Shaw Afb Sumter|Sheboygan Co Mem|Shelbyville Muni|Sheldon Muni|Shenandoah Muni|Shenandoah Valley Rg|Sheridan Co Arpt|Shreveport Regional|Sidney Muni Amos|Sidney Richland Muni|Sierra Blanca Rgnl|Silver Bay Muni|Sioux City Muni|Sioux Falls Foss Fi|Siskiyou Co|Sisseton Muni Arpt|Sitka|Skyhaven|Slidell|Smith Reynolds|Snohomish Co|Somerset Pulaski Co|South Arkansas Rgnl|South Bass Island|South Bend Stjosep|South Big Horn Co|South Jersey Rgnl|South St Paul Muni|Southeast Iowa Rgnl|Southern Illinois|Southern Wisc Rgnl|Southwest Florida I|Southwest Michigan|Spart Fort Mc Coy|Spencer|Spirit Of St Louis|Springfield Capital|Springfield Comanche|Springfield Muni|St Augustine|St Clair Co Intl|St Cloud Municipal|St George Muni|St Johns Industrial|St Joseph Rose Cra|St Louis Lambert|St Lucie Co Intl|St Paul Downtown Ho|St Petersburg Clear|Stanley Ranger Stn|Staples Muni|Stephenville Clark|Sterling Rockfalls|Stevens Point Muni|Stillwater Rgnl|Stinson Muni|Stockton Metropolit|Storm Lake Muni|Strother Fld|Stuttgart Muni|Suffolk Executive|Suger Land Rgnl|Sullivan Co Intl|Sussex Co|Sw Minnesota Rgnl|Syracuse Hancock|Tallahassee Municip|Tampa Intl Airport|Taos Muni Apt Awos|Taunton Muni|Taylor Co|Tekamah Muni|Terre Haute Intl Hu|Terrell Muni|Teterboro|Texarkana Rgnl Webb|The Oneill Muni J Ba|Thief River Falls Rg|Thomas Point|Tinker Afb|Toledo Express|Tonopah|Topeka Billard Muni|Torrington Muni|Trent Lott Intl|Trenton Mercer|Tri Cities|Tri Cities Rgnl|Tri City|Truckee Tahoe|Tulip City|Tulsa Intl Arpt Aw|Tupelo Cd Lemons|Tuscaloosa Rgnl|Twin County|Tyler Pounds Rgnl|Ukiah Muni|Univ Of Illinois Wi|University Park|Valdosta Rgnl|Valentine Amos|Valley Intl|Valparaiso Eglin Af|Vance Afb|Venango Rgnl|Venice Pier|Vernal|Vero Beach Muni|Vicksburg Tallulah|Victoria Victoria R|Virginia Highlands|Virginia Tech Arpt|Visalia Muni|W H Morse State|W K Kellogg|Waco Rgnl|Wadena|Wakefield Muni|Walla Walla Rgnl|Wallops Isl Stn|Walnut Ridge Rgnl|Washington Co|Washington Muni|Washington National|Waterbury Oxford|Waterloo Municipal|Watertown Intl|Watertown Muni|Waterville R Lafleur|Watsonville Muni|Waukesha Co|Wausau Downtown|Waycross Ware Co|Wayne Co|Webster City Muni|Wellsville Muni|Wendover Af Aux F|West Bend Muni|West Palm Beach In|West Plains Muni|West Point Ls|Westchester Co|Wexford Co|Wheaton Muni|Wheeling Ohio Co|White Sands|Whiteman Afb|Whiting Fld Nas Nort|Wichita Falls Sheps|Wichita Mid Contine|Wilkes Barre Scrant|William R Fairchild|Williamson Co Rgnl|Williamsport Lycomi|Williston Sloulin F|Willmar Rco|Willow Grove Nas Jr|Wilmington|Wilmington New Cast|Winchester Rgnl|Winder Barrow|Windham Airport|Windom Muni|Window Rock|Winkler Co|Winnemucca Muni|Winner|Winona Muni Conrad F|Winslow Aut|Wiscasset|Wittman Rgnl|Worcester Regional Arpt|Worland Muni|Worthington Muni|Wrangell|Yakima Air Terminal|Yeager|York|Youngstown Muni|Yuba Co|Yuma Intl Airport|Zanesville Muni +in.weather_file_latitude metadata_and_annual n/a float 20.901944|24.73|25.82|25.91|26.15|26.18|26.2|26.23|26.54|26.59|26.69|26.92|27.07|27.4|27.5|27.55|27.66|27.74|27.77|27.91|27.96|28.08|28.1|28.37|28.43|28.46|28.47|28.55|28.73|28.78|28.82|28.86|29.11|29.17|29.18|29.27|29.34|29.36|29.37|29.53|29.55|29.61|29.62|29.69|29.71|29.73|29.83|29.87|29.89|29.91|29.95|29.99|30.04|30.06|30.07|30.13|30.18|30.21|30.22|30.23|30.32|30.35|30.37|30.39|30.4|30.41|30.46|30.47|30.48|30.49|30.51|30.54|30.59|30.63|30.68|30.69|30.72|30.74|30.75|30.78|30.84|30.92|30.97|31.05|31.07|31.09|31.15|31.18|31.23|31.25|31.26|31.28|31.32|31.34|31.35|31.4|31.42|31.47|31.49|31.54|31.58|31.61|31.78|31.81|31.83|31.92|31.93|32.01|32.03|32.12|32.17|32.22|32.26|32.3|32.32|32.33|32.34|32.35|32.38|32.39|32.41|32.43|32.45|32.48|32.5|32.51|32.52|32.55|32.63|32.65|32.66|32.69|32.71|32.73|32.78|32.82|32.83|32.84|32.85|32.86|32.87|32.9|32.97|33.18|33.21|33.22|33.31|33.36|33.37|33.44|33.45|33.46|33.47|33.48|33.5|33.56|33.59|33.62|33.64|33.67|33.68|33.78|33.88|33.9|33.92|33.94|33.95|33.97|33.98|34.03|34.05|34.12|34.15|34.18|34.19|34.22|34.25|34.26|34.27|34.35|34.38|34.43|34.48|34.5|34.52|34.55|34.57|34.6|34.64|34.65|34.66|34.67|34.7|34.72|34.73|34.75|34.79|34.83|34.9|34.92|34.99|35.0|35.01|35.02|35.03|35.04|35.06|35.07|35.13|35.14|35.17|35.2|35.21|35.22|35.24|35.26|35.27|35.33|35.34|35.35|35.38|35.39|35.42|35.43|35.51|35.53|35.59|35.62|35.64|35.65|35.66|35.7|35.73|35.74|35.82|35.83|35.85|35.86|35.87|35.92|35.95|36.0|36.01|36.02|36.03|36.04|36.05|36.08|36.1|36.12|36.13|36.16|36.2|36.26|36.3|36.32|36.34|36.35|36.37|36.43|36.44|36.45|36.46|36.48|36.57|36.62|36.63|36.66|36.67|36.68|36.69|36.7|36.73|36.74|36.77|36.78|36.88|36.9|36.93|36.94|36.98|36.99|37.0|37.04|37.05|37.06|37.08|37.09|37.13|37.14|37.15|37.17|37.18|37.21|37.23|37.24|37.26|37.28|37.29|37.3|37.32|37.33|37.34|37.36|37.37|37.44|37.51|37.59|37.62|37.63|37.65|37.66|37.67|37.7|37.71|37.75|37.76|37.77|37.78|37.8|37.81|37.86|37.89|37.9|37.93|37.94|37.95|37.99|38.01|38.04|38.05|38.06|38.07|38.1|38.13|38.14|38.18|38.19|38.21|38.23|38.25|38.26|38.27|38.28|38.29|38.31|38.32|38.33|38.34|38.38|38.45|38.5|38.51|38.53|38.57|38.59|38.64|38.66|38.67|38.69|38.7|38.72|38.73|38.75|38.76|38.81|38.82|38.83|38.85|38.87|38.89|38.9|38.95|39.01|39.04|39.06|39.07|39.08|39.1|39.12|39.13|39.14|39.17|39.19|39.22|39.23|39.25|39.29|39.3|39.32|39.35|39.36|39.37|39.38|39.4|39.42|39.45|39.46|39.48|39.49|39.53|39.55|39.57|39.58|39.59|39.6|39.64|39.67|39.7|39.71|39.76|39.77|39.78|39.8|39.83|39.85|39.87|39.91|39.92|39.94|39.98|39.99|40.04|40.05|40.07|40.08|40.1|40.12|40.14|40.15|40.17|40.18|40.19|40.2|40.21|40.22|40.23|40.24|40.28|40.3|40.33|40.36|40.37|40.41|40.44|40.45|40.46|40.47|40.48|40.5|40.52|40.6|40.62|40.63|40.65|40.66|40.67|40.68|40.71|40.72|40.73|40.75|40.77|40.78|40.79|40.82|40.83|40.85|40.88|40.89|40.9|40.92|40.96|40.98|41.01|41.02|41.05|41.07|41.1|41.11|41.12|41.14|41.16|41.17|41.18|41.2|41.24|41.25|41.26|41.28|41.3|41.31|41.34|41.37|41.39|41.41|41.44|41.45|41.47|41.48|41.51|41.52|41.53|41.54|41.56|41.59|41.61|41.62|41.63|41.67|41.7|41.71|41.72|41.74|41.76|41.77|41.78|41.79|41.8|41.81|41.82|41.83|41.87|41.88|41.91|41.92|41.93|41.98|41.99|42.05|42.06|42.07|42.08|42.11|42.13|42.15|42.16|42.17|42.19|42.2|42.21|42.22|42.24|42.26|42.27|42.31|42.36|42.39|42.4|42.42|42.44|42.47|42.48|42.54|42.55|42.57|42.58|42.6|42.61|42.62|42.63|42.64|42.67|42.7|42.73|42.74|42.75|42.76|42.78|42.79|42.8|42.86|42.88|42.89|42.9|42.91|42.92|42.93|42.94|42.95|42.97|42.99|43.02|43.04|43.06|43.08|43.11|43.12|43.14|43.16|43.17|43.2|43.21|43.23|43.24|43.28|43.32|43.34|43.35|43.39|43.41|43.42|43.43|43.52|43.53|43.57|43.58|43.59|43.61|43.62|43.63|43.64|43.65|43.66|43.67|43.68|43.72|43.73|43.77|43.78|43.83|43.88|43.9|43.91|43.96|43.97|43.98|43.99|44.02|44.05|44.08|44.13|44.15|44.17|44.2|44.22|44.25|44.26|44.27|44.28|44.3|44.32|44.34|44.36|44.37|44.38|44.39|44.44|44.45|44.47|44.5|44.51|44.52|44.53|44.55|44.58|44.59|44.61|44.62|44.64|44.65|44.74|44.77|44.81|44.83|44.84|44.85|44.86|44.87|44.88|44.91|44.93|44.94|44.97|44.99|45.01|45.06|45.07|45.1|45.12|45.13|45.15|45.2|45.25|45.26|45.29|45.31|45.42|45.45|45.47|45.54|45.55|45.56|45.57|45.59|45.6|45.62|45.63|45.64|45.67|45.7|45.72|45.77|45.78|45.79|45.81|45.82|45.83|45.87|45.88|45.89|45.93|45.95|46.01|46.03|46.1|46.14|46.16|46.27|46.31|46.35|46.36|46.38|46.41|46.43|46.45|46.47|46.53|46.55|46.56|46.57|46.61|46.69|46.7|46.73|46.74|46.77|46.8|46.83|46.84|46.9|46.92|46.93|46.97|47.03|47.05|47.12|47.13|47.16|47.17|47.21|47.24|47.25|47.33|47.4|47.47|47.49|47.5|47.51|47.62|47.66|47.67|47.68|47.71|47.75|47.77|47.84|47.91|47.95|47.97|48.07|48.09|48.11|48.12|48.16|48.2|48.21|48.26|48.3|48.43|48.46|48.52|48.56|48.57|48.61|48.73|48.75|48.79|48.86|53.9|55.21|55.36|56.48|57.05|57.75|58.36|58.43|58.65|58.68|58.99|59.25|59.43|59.65|59.75|60.13 +in.weather_file_longitude metadata_and_annual n/a float -166.54|-162.72|-162.06|-158.55|-156.65|-156.433056|-154.92|-152.49|-151.48|-149.42|-146.33|-135.71|-135.52|-135.36|-134.58|-132.37|-131.71|-124.25|-124.24|-124.11|-124.07|-123.94|-123.88|-123.5|-123.38|-123.36|-123.29|-123.21|-123.2|-123.15|-123.13|-123.02|-123.0|-122.95|-122.9|-122.87|-122.86|-122.81|-122.77|-122.76|-122.66|-122.6|-122.55|-122.54|-122.47|-122.43|-122.4|-122.31|-122.28|-122.25|-122.21|-122.15|-122.12|-122.05|-121.95|-121.93|-121.79|-121.72|-121.62|-121.61|-121.59|-121.57|-121.44|-121.4|-121.24|-121.17|-121.15|-120.95|-120.71|-120.64|-120.57|-120.53|-120.51|-120.4|-120.21|-120.13|-120.11|-120.0|-119.84|-119.77|-119.72|-119.63|-119.6|-119.52|-119.38|-119.32|-119.26|-119.12|-119.1|-119.06|-118.95|-118.83|-118.7|-118.57|-118.36|-118.3|-118.29|-118.01|-117.81|-117.73|-117.65|-117.57|-117.42|-117.32|-117.25|-117.15|-117.11|-117.09|-117.01|-116.82|-116.63|-116.22|-116.1|-116.03|-116.01|-115.87|-115.8|-115.79|-115.6|-115.58|-115.16|-114.93|-114.85|-114.72|-114.6|-114.49|-114.46|-114.26|-114.22|-114.09|-114.02|-113.94|-113.87|-113.77|-113.58|-113.1|-112.57|-112.55|-112.51|-112.42|-112.38|-112.07|-112.01|-111.99|-111.97|-111.96|-111.88|-111.85|-111.72|-111.67|-111.45|-111.38|-111.19|-111.15|-110.88|-110.85|-110.75|-110.73|-110.72|-110.45|-110.11|-109.78|-109.75|-109.64|-109.6|-109.51|-109.47|-109.38|-109.07|-109.06|-108.95|-108.79|-108.63|-108.54|-108.46|-108.23|-108.08|-107.95|-107.9|-107.89|-107.76|-107.73|-107.72|-107.52|-107.22|-107.2|-107.03|-106.98|-106.95|-106.92|-106.87|-106.72|-106.62|-106.48|-106.47|-106.38|-106.32|-106.09|-105.98|-105.89|-105.87|-105.67|-105.66|-105.57|-105.54|-105.53|-105.39|-105.14|-104.85|-104.81|-104.8|-104.75|-104.71|-104.66|-104.62|-104.54|-104.5|-104.34|-104.26|-104.25|-104.18|-104.15|-104.02|-103.72|-103.64|-103.63|-103.6|-103.55|-103.53|-103.32|-103.23|-103.2|-103.15|-103.1|-103.07|-103.05|-102.99|-102.92|-102.8|-102.69|-102.66|-102.61|-102.55|-102.52|-102.39|-102.28|-102.21|-101.87|-101.82|-101.77|-101.71|-101.69|-101.6|-101.44|-101.39|-101.36|-101.28|-100.96|-100.92|-100.78|-100.75|-100.73|-100.67|-100.59|-100.55|-100.49|-100.41|-100.29|-99.98|-99.97|-99.85|-99.84|-99.83|-99.78|-99.77|-99.68|-99.64|-99.47|-99.33|-99.32|-99.28|-99.27|-99.22|-99.2|-99.17|-99.05|-99.0|-98.98|-98.9|-98.85|-98.83|-98.68|-98.55|-98.49|-98.47|-98.46|-98.43|-98.42|-98.4|-98.31|-98.28|-98.24|-98.23|-98.18|-98.06|-98.05|-98.04|-98.03|-97.99|-97.98|-97.86|-97.85|-97.83|-97.82|-97.77|-97.69|-97.68|-97.67|-97.66|-97.65|-97.6|-97.51|-97.45|-97.44|-97.43|-97.42|-97.4|-97.38|-97.36|-97.33|-97.32|-97.3|-97.27|-97.23|-97.22|-97.2|-97.18|-97.15|-97.12|-97.1|-97.09|-97.05|-97.04|-96.99|-96.97|-96.95|-96.93|-96.85|-96.81|-96.8|-96.76|-96.75|-96.68|-96.62|-96.59|-96.53|-96.52|-96.42|-96.4|-96.38|-96.36|-96.3|-96.27|-96.25|-96.19|-96.18|-96.17|-96.05|-96.02|-95.98|-95.97|-95.9|-95.89|-95.88|-95.83|-95.82|-95.78|-95.75|-95.7|-95.68|-95.66|-95.63|-95.59|-95.57|-95.55|-95.5|-95.48|-95.46|-95.45|-95.41|-95.4|-95.39|-95.37|-95.36|-95.32|-95.25|-95.23|-95.21|-95.2|-95.16|-95.1|-95.08|-95.07|-95.03|-95.02|-94.98|-94.93|-94.92|-94.91|-94.89|-94.86|-94.81|-94.78|-94.75|-94.74|-94.72|-94.71|-94.7|-94.61|-94.59|-94.5|-94.42|-94.4|-94.38|-94.37|-94.35|-94.3|-94.27|-94.22|-94.17|-94.13|-94.1|-94.05|-94.02|-94.01|-93.92|-93.9|-93.87|-93.84|-93.82|-93.75|-93.67|-93.66|-93.62|-93.61|-93.58|-93.55|-93.48|-93.47|-93.4|-93.39|-93.37|-93.35|-93.33|-93.27|-93.25|-93.23|-93.2|-93.19|-93.18|-93.16|-93.1|-93.05|-93.03|-93.02|-92.95|-92.93|-92.92|-92.81|-92.69|-92.56|-92.55|-92.54|-92.5|-92.49|-92.48|-92.47|-92.45|-92.4|-92.3|-92.25|-92.22|-92.19|-92.16|-92.15|-92.09|-92.04|-91.99|-91.97|-91.94|-91.9|-91.88|-91.77|-91.75|-91.73|-91.71|-91.7|-91.67|-91.64|-91.57|-91.54|-91.49|-91.44|-91.42|-91.4|-91.33|-91.3|-91.25|-91.19|-91.15|-91.14|-91.13|-91.12|-91.03|-90.93|-90.92|-90.73|-90.7|-90.68|-90.66|-90.65|-90.59|-90.52|-90.47|-90.45|-90.42|-90.37|-90.34|-90.33|-90.32|-90.3|-90.25|-90.24|-90.23|-90.19|-90.16|-90.12|-90.08|-90.03|-89.99|-89.87|-89.84|-89.83|-89.82|-89.77|-89.72|-89.7|-89.68|-89.67|-89.63|-89.58|-89.57|-89.52|-89.47|-89.4|-89.35|-89.34|-89.27|-89.25|-89.1|-89.09|-89.07|-89.04|-89.0|-88.95|-88.92|-88.87|-88.86|-88.77|-88.75|-88.73|-88.72|-88.7|-88.68|-88.57|-88.56|-88.53|-88.52|-88.51|-88.49|-88.48|-88.44|-88.28|-88.25|-88.23|-88.17|-88.12|-88.11|-88.08|-88.07|-87.94|-87.9|-87.88|-87.87|-87.85|-87.81|-87.75|-87.68|-87.67|-87.64|-87.62|-87.61|-87.54|-87.5|-87.42|-87.38|-87.3|-87.25|-87.19|-87.09|-87.04|-87.02|-87.01|-86.95|-86.94|-86.79|-86.78|-86.75|-86.69|-86.62|-86.52|-86.47|-86.44|-86.42|-86.4|-86.39|-86.36|-86.33|-86.3|-86.27|-86.24|-86.23|-86.15|-86.1|-86.08|-85.97|-85.86|-85.8|-85.73|-85.71|-85.68|-85.66|-85.58|-85.55|-85.52|-85.5|-85.45|-85.44|-85.42|-85.39|-85.27|-85.25|-85.21|-85.2|-85.19|-85.18|-85.16|-85.09|-85.05|-85.03|-85.0|-84.94|-84.9|-84.87|-84.85|-84.8|-84.77|-84.73|-84.7|-84.69|-84.67|-84.64|-84.61|-84.6|-84.58|-84.57|-84.53|-84.52|-84.46|-84.43|-84.42|-84.37|-84.35|-84.3|-84.23|-84.22|-84.19|-84.08|-84.05|-84.03|-83.99|-83.98|-83.83|-83.82|-83.8|-83.75|-83.67|-83.65|-83.6|-83.58|-83.57|-83.48|-83.43|-83.42|-83.37|-83.35|-83.33|-83.31|-83.28|-83.19|-83.11|-83.08|-83.06|-82.98|-82.92|-82.89|-82.88|-82.83|-82.71|-82.69|-82.66|-82.56|-82.54|-82.52|-82.51|-82.45|-82.4|-82.27|-82.22|-82.18|-82.16|-82.04|-82.03|-81.99|-81.97|-81.93|-81.89|-81.87|-81.86|-81.85|-81.81|-81.78|-81.76|-81.69|-81.68|-81.59|-81.45|-81.44|-81.42|-81.39|-81.34|-81.33|-81.27|-81.24|-81.21|-81.2|-81.16|-81.15|-81.13|-81.12|-81.06|-81.05|-81.0|-80.94|-80.86|-80.82|-80.72|-80.7|-80.67|-80.65|-80.62|-80.48|-80.42|-80.4|-80.38|-80.3|-80.28|-80.23|-80.22|-80.18|-80.17|-80.1|-80.04|-80.02|-79.97|-79.94|-79.92|-79.88|-79.85|-79.83|-79.73|-79.48|-79.38|-79.37|-79.35|-79.34|-79.21|-79.1|-79.03|-78.95|-78.94|-78.92|-78.9|-78.88|-78.83|-78.79|-78.74|-78.73|-78.64|-78.45|-78.43|-78.41|-78.32|-78.13|-78.05|-77.99|-77.98|-77.97|-77.96|-77.9|-77.89|-77.85|-77.84|-77.73|-77.71|-77.68|-77.61|-77.58|-77.55|-77.5|-77.44|-77.43|-77.38|-77.32|-77.3|-77.06|-77.05|-77.03|-77.01|-76.92|-76.9|-76.89|-76.88|-76.87|-76.85|-76.76|-76.68|-76.66|-76.6|-76.57|-76.49|-76.43|-76.4|-76.39|-76.35|-76.29|-76.28|-76.19|-76.18|-76.1|-76.02|-75.98|-75.96|-75.75|-75.73|-75.72|-75.7|-75.6|-75.56|-75.55|-75.51|-75.5|-75.47|-75.45|-75.41|-75.38|-75.36|-75.23|-75.15|-75.12|-75.08|-75.01|-74.9|-74.85|-74.84|-74.81|-74.78|-74.58|-74.28|-74.27|-74.21|-74.17|-74.12|-74.06|-73.97|-73.88|-73.8|-73.71|-73.61|-73.48|-73.47|-73.42|-73.25|-73.17|-73.15|-73.13|-73.1|-72.94|-72.83|-72.65|-72.61|-72.58|-72.53|-72.52|-72.31|-72.28|-72.18|-71.88|-71.58|-71.54|-71.5|-71.48|-71.44|-71.43|-71.42|-71.29|-71.28|-71.18|-71.17|-71.02|-71.01|-70.95|-70.92|-70.73|-70.7|-70.62|-70.3|-70.28|-70.06|-69.8|-69.71|-69.67|-69.58|-68.87|-68.82|-68.37|-68.03 +in.heating_unavailable_period metadata_and_annual n/a string Apr 1 - Apr 1|Apr 1 - Apr 14|Apr 1 - Apr 3|Apr 1 - Apr 30|Apr 1 - Apr 7|Apr 1 - Jun 29|Apr 10 - Apr 10|Apr 10 - Apr 12|Apr 10 - Apr 16|Apr 10 - Apr 23|Apr 10 - Jul 8|Apr 10 - May 9|Apr 11 - Apr 11|Apr 11 - Apr 13|Apr 11 - Apr 17|Apr 11 - Apr 24|Apr 11 - Jul 9|Apr 11 - May 10|Apr 12 - Apr 12|Apr 12 - Apr 14|Apr 12 - Apr 18|Apr 12 - Apr 25|Apr 12 - Jul 10|Apr 12 - May 11|Apr 13 - Apr 13|Apr 13 - Apr 15|Apr 13 - Apr 19|Apr 13 - Apr 26|Apr 13 - Jul 11|Apr 13 - May 12|Apr 14 - Apr 14|Apr 14 - Apr 16|Apr 14 - Apr 20|Apr 14 - Apr 27|Apr 14 - Jul 12|Apr 14 - May 13|Apr 15 - Apr 15|Apr 15 - Apr 17|Apr 15 - Apr 21|Apr 15 - Apr 28|Apr 15 - Jul 13|Apr 15 - May 14|Apr 16 - Apr 16|Apr 16 - Apr 18|Apr 16 - Apr 22|Apr 16 - Apr 29|Apr 16 - Jul 14|Apr 16 - May 15|Apr 17 - Apr 17|Apr 17 - Apr 19|Apr 17 - Apr 23|Apr 17 - Apr 30|Apr 17 - Jul 15|Apr 17 - May 16|Apr 18 - Apr 18|Apr 18 - Apr 20|Apr 18 - Apr 24|Apr 18 - Jul 16|Apr 18 - May 1|Apr 18 - May 17|Apr 19 - Apr 19|Apr 19 - Apr 21|Apr 19 - Apr 25|Apr 19 - Jul 17|Apr 19 - May 18|Apr 19 - May 2|Apr 2 - Apr 15|Apr 2 - Apr 2|Apr 2 - Apr 4|Apr 2 - Apr 8|Apr 2 - Jun 30|Apr 2 - May 1|Apr 20 - Apr 20|Apr 20 - Apr 22|Apr 20 - Apr 26|Apr 20 - Jul 18|Apr 20 - May 19|Apr 20 - May 3|Apr 21 - Apr 21|Apr 21 - Apr 23|Apr 21 - Apr 27|Apr 21 - Jul 19|Apr 21 - May 20|Apr 21 - May 4|Apr 22 - Apr 22|Apr 22 - Apr 24|Apr 22 - Apr 28|Apr 22 - Jul 20|Apr 22 - May 21|Apr 22 - May 5|Apr 23 - Apr 23|Apr 23 - Apr 25|Apr 23 - Apr 29|Apr 23 - Jul 21|Apr 23 - May 22|Apr 23 - May 6|Apr 24 - Apr 24|Apr 24 - Apr 26|Apr 24 - Apr 30|Apr 24 - Jul 22|Apr 24 - May 23|Apr 24 - May 7|Apr 25 - Apr 25|Apr 25 - Apr 27|Apr 25 - Jul 23|Apr 25 - May 1|Apr 25 - May 24|Apr 25 - May 8|Apr 26 - Apr 26|Apr 26 - Apr 28|Apr 26 - Jul 24|Apr 26 - May 2|Apr 26 - May 25|Apr 26 - May 9|Apr 27 - Apr 27|Apr 27 - Apr 29|Apr 27 - Jul 25|Apr 27 - May 10|Apr 27 - May 26|Apr 27 - May 3|Apr 28 - Apr 28|Apr 28 - Apr 30|Apr 28 - Jul 26|Apr 28 - May 11|Apr 28 - May 27|Apr 28 - May 4|Apr 29 - Apr 29|Apr 29 - Jul 27|Apr 29 - May 1|Apr 29 - May 12|Apr 29 - May 28|Apr 29 - May 5|Apr 3 - Apr 16|Apr 3 - Apr 3|Apr 3 - Apr 5|Apr 3 - Apr 9|Apr 3 - Jul 1|Apr 3 - May 2|Apr 30 - Apr 30|Apr 30 - Jul 28|Apr 30 - May 13|Apr 30 - May 2|Apr 30 - May 29|Apr 30 - May 6|Apr 4 - Apr 10|Apr 4 - Apr 17|Apr 4 - Apr 4|Apr 4 - Apr 6|Apr 4 - Jul 2|Apr 4 - May 3|Apr 5 - Apr 11|Apr 5 - Apr 18|Apr 5 - Apr 5|Apr 5 - Apr 7|Apr 5 - Jul 3|Apr 5 - May 4|Apr 6 - Apr 12|Apr 6 - Apr 19|Apr 6 - Apr 6|Apr 6 - Apr 8|Apr 6 - Jul 4|Apr 6 - May 5|Apr 7 - Apr 13|Apr 7 - Apr 20|Apr 7 - Apr 7|Apr 7 - Apr 9|Apr 7 - Jul 5|Apr 7 - May 6|Apr 8 - Apr 10|Apr 8 - Apr 14|Apr 8 - Apr 21|Apr 8 - Apr 8|Apr 8 - Jul 6|Apr 8 - May 7|Apr 9 - Apr 11|Apr 9 - Apr 15|Apr 9 - Apr 22|Apr 9 - Apr 9|Apr 9 - Jul 7|Apr 9 - May 8|Aug 1 - Aug 1|Aug 11 - Aug 13|Aug 11 - Aug 24|Aug 12 - Aug 12|Aug 12 - Aug 18|Aug 13 - Aug 15|Aug 13 - Aug 26|Aug 14 - Aug 20|Aug 15 - Aug 15|Aug 15 - Aug 17|Aug 16 - Sep 14|Aug 17 - Aug 17|Aug 17 - Aug 23|Aug 19 - Aug 21|Aug 19 - Sep 17|Aug 20 - Nov 17|Aug 24 - Aug 30|Aug 24 - Nov 21|Aug 24 - Sep 6|Aug 25 - Sep 23|Aug 26 - Aug 28|Aug 26 - Sep 24|Aug 26 - Sep 8|Aug 27 - Aug 27|Aug 27 - Sep 2|Aug 27 - Sep 25|Aug 27 - Sep 9|Aug 28 - Aug 28|Aug 29 - Sep 11|Aug 29 - Sep 4|Aug 3 - Aug 9|Aug 31 - Aug 31|Aug 31 - Sep 29|Aug 31 - Sep 6|Aug 4 - Sep 2|Aug 6 - Aug 12|Aug 6 - Aug 8|Aug 7 - Aug 13|Aug 8 - Aug 8|Aug 9 - Nov 6|Dec 1 - Dec 1|Dec 1 - Dec 14|Dec 1 - Dec 3|Dec 1 - Dec 30|Dec 1 - Dec 7|Dec 1 - Feb 28|Dec 10 - Dec 10|Dec 10 - Dec 12|Dec 10 - Dec 16|Dec 10 - Dec 23|Dec 10 - Jan 8|Dec 10 - Mar 9|Dec 11 - Dec 11|Dec 11 - Dec 13|Dec 11 - Dec 17|Dec 11 - Dec 24|Dec 11 - Jan 9|Dec 11 - Mar 10|Dec 12 - Dec 12|Dec 12 - Dec 14|Dec 12 - Dec 18|Dec 12 - Dec 25|Dec 12 - Jan 10|Dec 12 - Mar 11|Dec 13 - Dec 13|Dec 13 - Dec 15|Dec 13 - Dec 19|Dec 13 - Dec 26|Dec 13 - Jan 11|Dec 13 - Mar 12|Dec 14 - Dec 14|Dec 14 - Dec 16|Dec 14 - Dec 20|Dec 14 - Dec 27|Dec 14 - Jan 12|Dec 14 - Mar 13|Dec 15 - Dec 15|Dec 15 - Dec 17|Dec 15 - Dec 21|Dec 15 - Dec 28|Dec 15 - Jan 13|Dec 15 - Mar 14|Dec 16 - Dec 16|Dec 16 - Dec 18|Dec 16 - Dec 22|Dec 16 - Dec 29|Dec 16 - Jan 14|Dec 16 - Mar 15|Dec 17 - Dec 17|Dec 17 - Dec 19|Dec 17 - Dec 23|Dec 17 - Dec 30|Dec 17 - Jan 15|Dec 17 - Mar 16|Dec 18 - Dec 18|Dec 18 - Dec 20|Dec 18 - Dec 24|Dec 18 - Dec 31|Dec 18 - Jan 16|Dec 18 - Mar 17|Dec 19 - Dec 19|Dec 19 - Dec 21|Dec 19 - Dec 25|Dec 19 - Jan 1|Dec 19 - Jan 17|Dec 19 - Mar 18|Dec 2 - Dec 15|Dec 2 - Dec 2|Dec 2 - Dec 31|Dec 2 - Dec 4|Dec 2 - Dec 8|Dec 2 - Mar 1|Dec 20 - Dec 20|Dec 20 - Dec 22|Dec 20 - Dec 26|Dec 20 - Jan 18|Dec 20 - Jan 2|Dec 20 - Mar 19|Dec 21 - Dec 21|Dec 21 - Dec 23|Dec 21 - Dec 27|Dec 21 - Jan 19|Dec 21 - Jan 3|Dec 21 - Mar 20|Dec 22 - Dec 22|Dec 22 - Dec 24|Dec 22 - Dec 28|Dec 22 - Jan 20|Dec 22 - Jan 4|Dec 22 - Mar 21|Dec 23 - Dec 23|Dec 23 - Dec 25|Dec 23 - Dec 29|Dec 23 - Jan 21|Dec 23 - Jan 5|Dec 23 - Mar 22|Dec 24 - Dec 24|Dec 24 - Dec 26|Dec 24 - Dec 30|Dec 24 - Jan 22|Dec 24 - Jan 6|Dec 24 - Mar 23|Dec 25 - Dec 25|Dec 25 - Dec 27|Dec 25 - Dec 31|Dec 25 - Jan 23|Dec 25 - Jan 7|Dec 25 - Mar 24|Dec 26 - Dec 26|Dec 26 - Dec 28|Dec 26 - Jan 1|Dec 26 - Jan 24|Dec 26 - Jan 8|Dec 26 - Mar 25|Dec 27 - Dec 27|Dec 27 - Dec 29|Dec 27 - Jan 2|Dec 27 - Jan 25|Dec 27 - Jan 9|Dec 27 - Mar 26|Dec 28 - Dec 28|Dec 28 - Dec 30|Dec 28 - Jan 10|Dec 28 - Jan 26|Dec 28 - Jan 3|Dec 28 - Mar 27|Dec 29 - Dec 29|Dec 29 - Dec 31|Dec 29 - Jan 11|Dec 29 - Jan 27|Dec 29 - Jan 4|Dec 29 - Mar 28|Dec 3 - Dec 16|Dec 3 - Dec 3|Dec 3 - Dec 5|Dec 3 - Dec 9|Dec 3 - Jan 1|Dec 3 - Mar 2|Dec 30 - Dec 30|Dec 30 - Jan 1|Dec 30 - Jan 12|Dec 30 - Jan 28|Dec 30 - Jan 5|Dec 30 - Mar 29|Dec 31 - Dec 31|Dec 31 - Jan 13|Dec 31 - Jan 2|Dec 31 - Jan 29|Dec 31 - Jan 6|Dec 31 - Mar 30|Dec 4 - Dec 10|Dec 4 - Dec 17|Dec 4 - Dec 4|Dec 4 - Dec 6|Dec 4 - Jan 2|Dec 4 - Mar 3|Dec 5 - Dec 11|Dec 5 - Dec 18|Dec 5 - Dec 5|Dec 5 - Dec 7|Dec 5 - Jan 3|Dec 5 - Mar 4|Dec 6 - Dec 12|Dec 6 - Dec 19|Dec 6 - Dec 6|Dec 6 - Dec 8|Dec 6 - Jan 4|Dec 6 - Mar 5|Dec 7 - Dec 13|Dec 7 - Dec 20|Dec 7 - Dec 7|Dec 7 - Dec 9|Dec 7 - Jan 5|Dec 7 - Mar 6|Dec 8 - Dec 10|Dec 8 - Dec 14|Dec 8 - Dec 21|Dec 8 - Dec 8|Dec 8 - Jan 6|Dec 8 - Mar 7|Dec 9 - Dec 11|Dec 9 - Dec 15|Dec 9 - Dec 22|Dec 9 - Dec 9|Dec 9 - Jan 7|Dec 9 - Mar 8|Feb 1 - Feb 1|Feb 1 - Feb 14|Feb 1 - Feb 3|Feb 1 - Feb 7|Feb 1 - Mar 2|Feb 1 - May 1|Feb 10 - Feb 10|Feb 10 - Feb 12|Feb 10 - Feb 16|Feb 10 - Feb 23|Feb 10 - Mar 11|Feb 10 - May 10|Feb 11 - Feb 11|Feb 11 - Feb 13|Feb 11 - Feb 17|Feb 11 - Feb 24|Feb 11 - Mar 12|Feb 11 - May 11|Feb 12 - Feb 12|Feb 12 - Feb 14|Feb 12 - Feb 18|Feb 12 - Feb 25|Feb 12 - Mar 13|Feb 12 - May 12|Feb 13 - Feb 13|Feb 13 - Feb 15|Feb 13 - Feb 19|Feb 13 - Feb 26|Feb 13 - Mar 14|Feb 13 - May 13|Feb 14 - Feb 14|Feb 14 - Feb 16|Feb 14 - Feb 20|Feb 14 - Feb 27|Feb 14 - Mar 15|Feb 14 - May 14|Feb 15 - Feb 15|Feb 15 - Feb 17|Feb 15 - Feb 21|Feb 15 - Feb 28|Feb 15 - Mar 16|Feb 15 - May 15|Feb 16 - Feb 16|Feb 16 - Feb 18|Feb 16 - Feb 22|Feb 16 - Mar 1|Feb 16 - Mar 17|Feb 16 - May 16|Feb 17 - Feb 17|Feb 17 - Feb 19|Feb 17 - Feb 23|Feb 17 - Mar 18|Feb 17 - Mar 2|Feb 17 - May 17|Feb 18 - Feb 18|Feb 18 - Feb 20|Feb 18 - Feb 24|Feb 18 - Mar 19|Feb 18 - Mar 3|Feb 18 - May 18|Feb 19 - Feb 19|Feb 19 - Feb 21|Feb 19 - Feb 25|Feb 19 - Mar 20|Feb 19 - Mar 4|Feb 19 - May 19|Feb 2 - Feb 15|Feb 2 - Feb 2|Feb 2 - Feb 4|Feb 2 - Feb 8|Feb 2 - Mar 3|Feb 2 - May 2|Feb 20 - Feb 20|Feb 20 - Feb 22|Feb 20 - Feb 26|Feb 20 - Mar 21|Feb 20 - Mar 5|Feb 20 - May 20|Feb 21 - Feb 21|Feb 21 - Feb 23|Feb 21 - Feb 27|Feb 21 - Mar 22|Feb 21 - Mar 6|Feb 21 - May 21|Feb 22 - Feb 22|Feb 22 - Feb 24|Feb 22 - Feb 28|Feb 22 - Mar 23|Feb 22 - Mar 7|Feb 22 - May 22|Feb 23 - Feb 23|Feb 23 - Feb 25|Feb 23 - Mar 1|Feb 23 - Mar 24|Feb 23 - Mar 8|Feb 23 - May 23|Feb 24 - Feb 24|Feb 24 - Feb 26|Feb 24 - Mar 2|Feb 24 - Mar 25|Feb 24 - Mar 9|Feb 24 - May 24|Feb 25 - Feb 25|Feb 25 - Feb 27|Feb 25 - Mar 10|Feb 25 - Mar 26|Feb 25 - Mar 3|Feb 25 - May 25|Feb 26 - Feb 26|Feb 26 - Feb 28|Feb 26 - Mar 11|Feb 26 - Mar 27|Feb 26 - Mar 4|Feb 26 - May 26|Feb 27 - Feb 27|Feb 27 - Mar 1|Feb 27 - Mar 12|Feb 27 - Mar 28|Feb 27 - Mar 5|Feb 27 - May 27|Feb 28 - Feb 28|Feb 28 - Mar 13|Feb 28 - Mar 2|Feb 28 - Mar 29|Feb 28 - Mar 6|Feb 28 - May 28|Feb 3 - Feb 16|Feb 3 - Feb 3|Feb 3 - Feb 5|Feb 3 - Feb 9|Feb 3 - Mar 4|Feb 3 - May 3|Feb 4 - Feb 10|Feb 4 - Feb 17|Feb 4 - Feb 4|Feb 4 - Feb 6|Feb 4 - Mar 5|Feb 4 - May 4|Feb 5 - Feb 11|Feb 5 - Feb 18|Feb 5 - Feb 5|Feb 5 - Feb 7|Feb 5 - Mar 6|Feb 5 - May 5|Feb 6 - Feb 12|Feb 6 - Feb 19|Feb 6 - Feb 6|Feb 6 - Feb 8|Feb 6 - Mar 7|Feb 6 - May 6|Feb 7 - Feb 13|Feb 7 - Feb 20|Feb 7 - Feb 7|Feb 7 - Feb 9|Feb 7 - Mar 8|Feb 7 - May 7|Feb 8 - Feb 10|Feb 8 - Feb 14|Feb 8 - Feb 21|Feb 8 - Feb 8|Feb 8 - Mar 9|Feb 8 - May 8|Feb 9 - Feb 11|Feb 9 - Feb 15|Feb 9 - Feb 22|Feb 9 - Feb 9|Feb 9 - Mar 10|Feb 9 - May 9|Jan 1 - Dec 31|Jan 1 - Jan 1|Jan 1 - Jan 14|Jan 1 - Jan 3|Jan 1 - Jan 30|Jan 1 - Jan 7|Jan 1 - Mar 31|Jan 10 - Apr 9|Jan 10 - Feb 8|Jan 10 - Jan 10|Jan 10 - Jan 12|Jan 10 - Jan 16|Jan 10 - Jan 23|Jan 11 - Apr 10|Jan 11 - Feb 9|Jan 11 - Jan 11|Jan 11 - Jan 13|Jan 11 - Jan 17|Jan 11 - Jan 24|Jan 12 - Apr 11|Jan 12 - Feb 10|Jan 12 - Jan 12|Jan 12 - Jan 14|Jan 12 - Jan 18|Jan 12 - Jan 25|Jan 13 - Apr 12|Jan 13 - Feb 11|Jan 13 - Jan 13|Jan 13 - Jan 15|Jan 13 - Jan 19|Jan 13 - Jan 26|Jan 14 - Apr 13|Jan 14 - Feb 12|Jan 14 - Jan 14|Jan 14 - Jan 16|Jan 14 - Jan 20|Jan 14 - Jan 27|Jan 15 - Apr 14|Jan 15 - Feb 13|Jan 15 - Jan 15|Jan 15 - Jan 17|Jan 15 - Jan 21|Jan 15 - Jan 28|Jan 16 - Apr 15|Jan 16 - Feb 14|Jan 16 - Jan 16|Jan 16 - Jan 18|Jan 16 - Jan 22|Jan 16 - Jan 29|Jan 17 - Apr 16|Jan 17 - Feb 15|Jan 17 - Jan 17|Jan 17 - Jan 19|Jan 17 - Jan 23|Jan 17 - Jan 30|Jan 18 - Apr 17|Jan 18 - Feb 16|Jan 18 - Jan 18|Jan 18 - Jan 20|Jan 18 - Jan 24|Jan 18 - Jan 31|Jan 19 - Apr 18|Jan 19 - Feb 1|Jan 19 - Feb 17|Jan 19 - Jan 19|Jan 19 - Jan 21|Jan 19 - Jan 25|Jan 2 - Apr 1|Jan 2 - Jan 15|Jan 2 - Jan 2|Jan 2 - Jan 31|Jan 2 - Jan 4|Jan 2 - Jan 8|Jan 20 - Apr 19|Jan 20 - Feb 18|Jan 20 - Feb 2|Jan 20 - Jan 20|Jan 20 - Jan 22|Jan 20 - Jan 26|Jan 21 - Apr 20|Jan 21 - Feb 19|Jan 21 - Feb 3|Jan 21 - Jan 21|Jan 21 - Jan 23|Jan 21 - Jan 27|Jan 22 - Apr 21|Jan 22 - Feb 20|Jan 22 - Feb 4|Jan 22 - Jan 22|Jan 22 - Jan 24|Jan 22 - Jan 28|Jan 23 - Apr 22|Jan 23 - Feb 21|Jan 23 - Feb 5|Jan 23 - Jan 23|Jan 23 - Jan 25|Jan 23 - Jan 29|Jan 24 - Apr 23|Jan 24 - Feb 22|Jan 24 - Feb 6|Jan 24 - Jan 24|Jan 24 - Jan 26|Jan 24 - Jan 30|Jan 25 - Apr 24|Jan 25 - Feb 23|Jan 25 - Feb 7|Jan 25 - Jan 25|Jan 25 - Jan 27|Jan 25 - Jan 31|Jan 26 - Apr 25|Jan 26 - Feb 1|Jan 26 - Feb 24|Jan 26 - Feb 8|Jan 26 - Jan 26|Jan 26 - Jan 28|Jan 27 - Apr 26|Jan 27 - Feb 2|Jan 27 - Feb 25|Jan 27 - Feb 9|Jan 27 - Jan 27|Jan 27 - Jan 29|Jan 28 - Apr 27|Jan 28 - Feb 10|Jan 28 - Feb 26|Jan 28 - Feb 3|Jan 28 - Jan 28|Jan 28 - Jan 30|Jan 29 - Apr 28|Jan 29 - Feb 11|Jan 29 - Feb 27|Jan 29 - Feb 4|Jan 29 - Jan 29|Jan 29 - Jan 31|Jan 3 - Apr 2|Jan 3 - Feb 1|Jan 3 - Jan 16|Jan 3 - Jan 3|Jan 3 - Jan 5|Jan 3 - Jan 9|Jan 30 - Apr 29|Jan 30 - Feb 1|Jan 30 - Feb 12|Jan 30 - Feb 28|Jan 30 - Feb 5|Jan 30 - Jan 30|Jan 31 - Apr 30|Jan 31 - Feb 13|Jan 31 - Feb 2|Jan 31 - Feb 6|Jan 31 - Jan 31|Jan 31 - Mar 1|Jan 4 - Apr 3|Jan 4 - Feb 2|Jan 4 - Jan 10|Jan 4 - Jan 17|Jan 4 - Jan 4|Jan 4 - Jan 6|Jan 5 - Apr 4|Jan 5 - Feb 3|Jan 5 - Jan 11|Jan 5 - Jan 18|Jan 5 - Jan 5|Jan 5 - Jan 7|Jan 6 - Apr 5|Jan 6 - Feb 4|Jan 6 - Jan 12|Jan 6 - Jan 19|Jan 6 - Jan 6|Jan 6 - Jan 8|Jan 7 - Apr 6|Jan 7 - Feb 5|Jan 7 - Jan 13|Jan 7 - Jan 20|Jan 7 - Jan 7|Jan 7 - Jan 9|Jan 8 - Apr 7|Jan 8 - Feb 6|Jan 8 - Jan 10|Jan 8 - Jan 14|Jan 8 - Jan 21|Jan 8 - Jan 8|Jan 9 - Apr 8|Jan 9 - Feb 7|Jan 9 - Jan 11|Jan 9 - Jan 15|Jan 9 - Jan 22|Jan 9 - Jan 9|Jul 1 - Jul 1|Jul 1 - Jul 14|Jul 1 - Jul 3|Jul 1 - Jul 7|Jul 1 - Sep 28|Jul 10 - Aug 8|Jul 10 - Jul 10|Jul 10 - Jul 12|Jul 11 - Aug 9|Jul 11 - Jul 11|Jul 11 - Jul 13|Jul 11 - Jul 17|Jul 11 - Jul 24|Jul 12 - Jul 12|Jul 12 - Jul 14|Jul 12 - Jul 18|Jul 13 - Jul 13|Jul 13 - Oct 10|Jul 14 - Aug 12|Jul 14 - Jul 14|Jul 14 - Jul 16|Jul 14 - Jul 20|Jul 15 - Jul 15|Jul 15 - Jul 21|Jul 16 - Jul 16|Jul 16 - Jul 18|Jul 16 - Jul 22|Jul 16 - Oct 13|Jul 17 - Jul 17|Jul 17 - Jul 19|Jul 17 - Jul 23|Jul 18 - Aug 16|Jul 18 - Jul 18|Jul 18 - Jul 20|Jul 18 - Jul 24|Jul 18 - Jul 31|Jul 18 - Oct 15|Jul 19 - Aug 1|Jul 19 - Aug 17|Jul 19 - Jul 19|Jul 19 - Jul 21|Jul 19 - Jul 25|Jul 2 - Jul 31|Jul 2 - Jul 8|Jul 2 - Sep 29|Jul 20 - Jul 20|Jul 20 - Jul 22|Jul 21 - Aug 19|Jul 21 - Jul 21|Jul 21 - Jul 23|Jul 21 - Jul 27|Jul 22 - Aug 20|Jul 22 - Aug 4|Jul 22 - Jul 22|Jul 22 - Jul 24|Jul 22 - Oct 19|Jul 23 - Aug 21|Jul 23 - Jul 23|Jul 23 - Jul 25|Jul 24 - Aug 22|Jul 24 - Aug 6|Jul 24 - Jul 24|Jul 24 - Jul 26|Jul 24 - Jul 30|Jul 25 - Aug 23|Jul 25 - Aug 7|Jul 25 - Jul 25|Jul 25 - Jul 27|Jul 25 - Jul 31|Jul 25 - Oct 22|Jul 26 - Aug 1|Jul 26 - Jul 26|Jul 26 - Jul 28|Jul 26 - Oct 23|Jul 27 - Aug 2|Jul 27 - Aug 9|Jul 27 - Jul 29|Jul 27 - Oct 24|Jul 28 - Aug 3|Jul 28 - Jul 28|Jul 28 - Jul 30|Jul 29 - Aug 4|Jul 29 - Jul 29|Jul 29 - Jul 31|Jul 3 - Aug 1|Jul 3 - Jul 3|Jul 3 - Jul 5|Jul 3 - Jul 9|Jul 30 - Aug 1|Jul 30 - Aug 28|Jul 30 - Aug 5|Jul 30 - Jul 30|Jul 31 - Aug 2|Jul 31 - Aug 6|Jul 4 - Jul 17|Jul 4 - Jul 4|Jul 4 - Jul 6|Jul 5 - Jul 18|Jul 5 - Jul 5|Jul 5 - Jul 7|Jul 5 - Oct 2|Jul 6 - Jul 12|Jul 6 - Jul 6|Jul 6 - Jul 8|Jul 6 - Oct 3|Jul 7 - Jul 13|Jul 7 - Jul 20|Jul 7 - Jul 9|Jul 8 - Aug 6|Jul 8 - Jul 10|Jul 8 - Jul 8|Jul 8 - Oct 5|Jul 9 - Aug 7|Jul 9 - Jul 11|Jul 9 - Jul 15|Jul 9 - Jul 22|Jun 1 - Aug 29|Jun 1 - Jun 1|Jun 1 - Jun 14|Jun 1 - Jun 3|Jun 1 - Jun 7|Jun 10 - Jul 9|Jun 10 - Jun 10|Jun 10 - Jun 12|Jun 10 - Jun 16|Jun 10 - Sep 7|Jun 11 - Jul 10|Jun 11 - Jun 11|Jun 11 - Jun 13|Jun 11 - Jun 17|Jun 11 - Jun 24|Jun 11 - Sep 8|Jun 12 - Jul 11|Jun 12 - Jun 12|Jun 12 - Jun 14|Jun 12 - Jun 18|Jun 12 - Jun 25|Jun 12 - Sep 9|Jun 13 - Jun 13|Jun 13 - Jun 15|Jun 13 - Sep 10|Jun 14 - Jul 13|Jun 14 - Jun 14|Jun 14 - Jun 16|Jun 14 - Jun 20|Jun 14 - Sep 11|Jun 15 - Jul 14|Jun 15 - Jun 15|Jun 15 - Jun 17|Jun 15 - Jun 21|Jun 15 - Jun 28|Jun 16 - Jul 15|Jun 16 - Jun 16|Jun 16 - Jun 18|Jun 16 - Jun 22|Jun 16 - Jun 29|Jun 16 - Sep 13|Jun 17 - Jul 16|Jun 17 - Jun 17|Jun 17 - Jun 19|Jun 17 - Jun 23|Jun 17 - Jun 30|Jun 17 - Sep 14|Jun 18 - Jul 1|Jun 18 - Jul 17|Jun 18 - Jun 18|Jun 18 - Jun 20|Jun 18 - Jun 24|Jun 18 - Sep 15|Jun 19 - Jul 18|Jun 19 - Jul 2|Jun 19 - Jun 19|Jun 19 - Jun 21|Jun 19 - Jun 25|Jun 19 - Sep 16|Jun 2 - Aug 30|Jun 2 - Jul 1|Jun 2 - Jun 15|Jun 2 - Jun 2|Jun 2 - Jun 4|Jun 2 - Jun 8|Jun 20 - Jul 19|Jun 20 - Jul 3|Jun 20 - Jun 20|Jun 20 - Jun 22|Jun 20 - Jun 26|Jun 20 - Sep 17|Jun 21 - Jul 20|Jun 21 - Jul 4|Jun 21 - Jun 21|Jun 21 - Jun 23|Jun 21 - Jun 27|Jun 22 - Jul 21|Jun 22 - Jul 5|Jun 22 - Jun 22|Jun 22 - Jun 24|Jun 22 - Jun 28|Jun 22 - Sep 19|Jun 23 - Jul 22|Jun 23 - Jul 6|Jun 23 - Jun 23|Jun 23 - Jun 25|Jun 23 - Jun 29|Jun 23 - Sep 20|Jun 24 - Jul 23|Jun 24 - Jul 7|Jun 24 - Jun 24|Jun 24 - Jun 26|Jun 24 - Jun 30|Jun 24 - Sep 21|Jun 25 - Jul 1|Jun 25 - Jul 24|Jun 25 - Jul 8|Jun 25 - Jun 25|Jun 25 - Jun 27|Jun 25 - Sep 22|Jun 26 - Jul 2|Jun 26 - Jul 25|Jun 26 - Jun 26|Jun 26 - Jun 28|Jun 26 - Sep 23|Jun 27 - Jul 26|Jun 27 - Jul 3|Jun 27 - Jun 27|Jun 27 - Jun 29|Jun 27 - Sep 24|Jun 28 - Jul 11|Jun 28 - Jul 4|Jun 28 - Jun 28|Jun 28 - Jun 30|Jun 28 - Sep 25|Jun 29 - Jul 1|Jun 29 - Jul 12|Jun 29 - Jul 28|Jun 29 - Jul 5|Jun 29 - Jun 29|Jun 29 - Sep 26|Jun 3 - Aug 31|Jun 3 - Jul 2|Jun 3 - Jun 16|Jun 3 - Jun 3|Jun 3 - Jun 5|Jun 3 - Jun 9|Jun 30 - Jul 13|Jun 30 - Jul 2|Jun 30 - Jul 29|Jun 30 - Jul 6|Jun 30 - Jun 30|Jun 30 - Sep 27|Jun 4 - Jul 3|Jun 4 - Jun 10|Jun 4 - Jun 17|Jun 4 - Jun 4|Jun 4 - Jun 6|Jun 4 - Sep 1|Jun 5 - Jul 4|Jun 5 - Jun 11|Jun 5 - Jun 18|Jun 5 - Jun 5|Jun 5 - Jun 7|Jun 6 - Jul 5|Jun 6 - Jun 12|Jun 6 - Jun 19|Jun 6 - Jun 6|Jun 6 - Jun 8|Jun 6 - Sep 3|Jun 7 - Jul 6|Jun 7 - Jun 13|Jun 7 - Jun 20|Jun 7 - Jun 7|Jun 7 - Jun 9|Jun 8 - Jul 7|Jun 8 - Jun 10|Jun 8 - Jun 14|Jun 8 - Jun 21|Jun 8 - Jun 8|Jun 9 - Jul 8|Jun 9 - Jun 11|Jun 9 - Jun 22|Jun 9 - Jun 9|Jun 9 - Sep 6|Mar 1 - Mar 1|Mar 1 - Mar 14|Mar 1 - Mar 3|Mar 1 - Mar 30|Mar 1 - Mar 7|Mar 1 - May 29|Mar 10 - Apr 8|Mar 10 - Jun 7|Mar 10 - Mar 10|Mar 10 - Mar 12|Mar 10 - Mar 16|Mar 10 - Mar 23|Mar 11 - Apr 9|Mar 11 - Jun 8|Mar 11 - Mar 11|Mar 11 - Mar 13|Mar 11 - Mar 17|Mar 11 - Mar 24|Mar 12 - Apr 10|Mar 12 - Jun 9|Mar 12 - Mar 12|Mar 12 - Mar 14|Mar 12 - Mar 18|Mar 12 - Mar 25|Mar 13 - Apr 11|Mar 13 - Jun 10|Mar 13 - Mar 13|Mar 13 - Mar 15|Mar 13 - Mar 19|Mar 13 - Mar 26|Mar 14 - Apr 12|Mar 14 - Jun 11|Mar 14 - Mar 14|Mar 14 - Mar 16|Mar 14 - Mar 20|Mar 14 - Mar 27|Mar 15 - Apr 13|Mar 15 - Jun 12|Mar 15 - Mar 15|Mar 15 - Mar 17|Mar 15 - Mar 21|Mar 15 - Mar 28|Mar 16 - Apr 14|Mar 16 - Jun 13|Mar 16 - Mar 16|Mar 16 - Mar 18|Mar 16 - Mar 22|Mar 16 - Mar 29|Mar 17 - Apr 15|Mar 17 - Jun 14|Mar 17 - Mar 17|Mar 17 - Mar 19|Mar 17 - Mar 23|Mar 17 - Mar 30|Mar 18 - Apr 16|Mar 18 - Jun 15|Mar 18 - Mar 18|Mar 18 - Mar 20|Mar 18 - Mar 24|Mar 18 - Mar 31|Mar 19 - Apr 1|Mar 19 - Apr 17|Mar 19 - Jun 16|Mar 19 - Mar 19|Mar 19 - Mar 21|Mar 19 - Mar 25|Mar 2 - Mar 15|Mar 2 - Mar 2|Mar 2 - Mar 31|Mar 2 - Mar 4|Mar 2 - Mar 8|Mar 2 - May 30|Mar 20 - Apr 18|Mar 20 - Apr 2|Mar 20 - Jun 17|Mar 20 - Mar 20|Mar 20 - Mar 22|Mar 20 - Mar 26|Mar 21 - Apr 19|Mar 21 - Apr 3|Mar 21 - Jun 18|Mar 21 - Mar 21|Mar 21 - Mar 23|Mar 21 - Mar 27|Mar 22 - Apr 20|Mar 22 - Apr 4|Mar 22 - Jun 19|Mar 22 - Mar 22|Mar 22 - Mar 24|Mar 22 - Mar 28|Mar 23 - Apr 21|Mar 23 - Apr 5|Mar 23 - Jun 20|Mar 23 - Mar 23|Mar 23 - Mar 25|Mar 23 - Mar 29|Mar 24 - Apr 22|Mar 24 - Apr 6|Mar 24 - Jun 21|Mar 24 - Mar 24|Mar 24 - Mar 26|Mar 24 - Mar 30|Mar 25 - Apr 23|Mar 25 - Apr 7|Mar 25 - Jun 22|Mar 25 - Mar 25|Mar 25 - Mar 27|Mar 25 - Mar 31|Mar 26 - Apr 1|Mar 26 - Apr 24|Mar 26 - Apr 8|Mar 26 - Jun 23|Mar 26 - Mar 26|Mar 26 - Mar 28|Mar 27 - Apr 2|Mar 27 - Apr 25|Mar 27 - Apr 9|Mar 27 - Jun 24|Mar 27 - Mar 27|Mar 27 - Mar 29|Mar 28 - Apr 10|Mar 28 - Apr 26|Mar 28 - Apr 3|Mar 28 - Jun 25|Mar 28 - Mar 28|Mar 28 - Mar 30|Mar 29 - Apr 11|Mar 29 - Apr 27|Mar 29 - Apr 4|Mar 29 - Jun 26|Mar 29 - Mar 29|Mar 29 - Mar 31|Mar 3 - Apr 1|Mar 3 - Mar 16|Mar 3 - Mar 3|Mar 3 - Mar 5|Mar 3 - Mar 9|Mar 3 - May 31|Mar 30 - Apr 1|Mar 30 - Apr 12|Mar 30 - Apr 28|Mar 30 - Apr 5|Mar 30 - Jun 27|Mar 30 - Mar 30|Mar 31 - Apr 13|Mar 31 - Apr 2|Mar 31 - Apr 29|Mar 31 - Apr 6|Mar 31 - Jun 28|Mar 31 - Mar 31|Mar 4 - Apr 2|Mar 4 - Jun 1|Mar 4 - Mar 10|Mar 4 - Mar 17|Mar 4 - Mar 4|Mar 4 - Mar 6|Mar 5 - Apr 3|Mar 5 - Jun 2|Mar 5 - Mar 11|Mar 5 - Mar 18|Mar 5 - Mar 5|Mar 5 - Mar 7|Mar 6 - Apr 4|Mar 6 - Jun 3|Mar 6 - Mar 12|Mar 6 - Mar 19|Mar 6 - Mar 6|Mar 6 - Mar 8|Mar 7 - Apr 5|Mar 7 - Jun 4|Mar 7 - Mar 13|Mar 7 - Mar 20|Mar 7 - Mar 7|Mar 7 - Mar 9|Mar 8 - Apr 6|Mar 8 - Jun 5|Mar 8 - Mar 10|Mar 8 - Mar 14|Mar 8 - Mar 21|Mar 8 - Mar 8|Mar 9 - Apr 7|Mar 9 - Jun 6|Mar 9 - Mar 11|Mar 9 - Mar 15|Mar 9 - Mar 22|Mar 9 - Mar 9|May 1 - Jul 29|May 1 - May 1|May 1 - May 14|May 1 - May 3|May 1 - May 30|May 1 - May 7|May 10 - Aug 7|May 10 - Jun 8|May 10 - May 10|May 10 - May 12|May 10 - May 16|May 10 - May 23|May 11 - Aug 8|May 11 - Jun 9|May 11 - May 11|May 11 - May 13|May 11 - May 17|May 11 - May 24|May 12 - Aug 9|May 12 - Jun 10|May 12 - May 12|May 12 - May 14|May 12 - May 18|May 12 - May 25|May 13 - Aug 10|May 13 - Jun 11|May 13 - May 13|May 13 - May 15|May 13 - May 19|May 13 - May 26|May 14 - Aug 11|May 14 - Jun 12|May 14 - May 14|May 14 - May 16|May 14 - May 20|May 14 - May 27|May 15 - Aug 12|May 15 - Jun 13|May 15 - May 15|May 15 - May 17|May 15 - May 21|May 15 - May 28|May 16 - Aug 13|May 16 - Jun 14|May 16 - May 16|May 16 - May 18|May 16 - May 22|May 16 - May 29|May 17 - Aug 14|May 17 - Jun 15|May 17 - May 17|May 17 - May 19|May 17 - May 23|May 17 - May 30|May 18 - Aug 15|May 18 - Jun 16|May 18 - May 18|May 18 - May 20|May 18 - May 24|May 18 - May 31|May 19 - Aug 16|May 19 - Jun 1|May 19 - Jun 17|May 19 - May 19|May 19 - May 21|May 19 - May 25|May 2 - Jul 30|May 2 - May 15|May 2 - May 2|May 2 - May 31|May 2 - May 4|May 2 - May 8|May 20 - Aug 17|May 20 - Jun 18|May 20 - Jun 2|May 20 - May 20|May 20 - May 22|May 20 - May 26|May 21 - Aug 18|May 21 - Jun 19|May 21 - Jun 3|May 21 - May 21|May 21 - May 23|May 21 - May 27|May 22 - Aug 19|May 22 - Jun 20|May 22 - Jun 4|May 22 - May 22|May 22 - May 24|May 22 - May 28|May 23 - Aug 20|May 23 - Jun 21|May 23 - Jun 5|May 23 - May 23|May 23 - May 25|May 23 - May 29|May 24 - Aug 21|May 24 - Jun 22|May 24 - Jun 6|May 24 - May 24|May 24 - May 26|May 24 - May 30|May 25 - Aug 22|May 25 - Jun 23|May 25 - Jun 7|May 25 - May 25|May 25 - May 27|May 25 - May 31|May 26 - Aug 23|May 26 - Jun 1|May 26 - Jun 24|May 26 - Jun 8|May 26 - May 26|May 26 - May 28|May 27 - Aug 24|May 27 - Jun 2|May 27 - Jun 25|May 27 - Jun 9|May 27 - May 27|May 27 - May 29|May 28 - Aug 25|May 28 - Jun 10|May 28 - Jun 26|May 28 - Jun 3|May 28 - May 28|May 28 - May 30|May 29 - Aug 26|May 29 - Jun 11|May 29 - Jun 27|May 29 - Jun 4|May 29 - May 29|May 29 - May 31|May 3 - Jul 31|May 3 - Jun 1|May 3 - May 16|May 3 - May 3|May 3 - May 5|May 3 - May 9|May 30 - Aug 27|May 30 - Jun 1|May 30 - Jun 12|May 30 - Jun 28|May 30 - Jun 5|May 30 - May 30|May 31 - Aug 28|May 31 - Jun 13|May 31 - Jun 2|May 31 - Jun 29|May 31 - Jun 6|May 31 - May 31|May 4 - Aug 1|May 4 - Jun 2|May 4 - May 10|May 4 - May 17|May 4 - May 4|May 4 - May 6|May 5 - Aug 2|May 5 - Jun 3|May 5 - May 11|May 5 - May 18|May 5 - May 5|May 5 - May 7|May 6 - Aug 3|May 6 - Jun 4|May 6 - May 12|May 6 - May 19|May 6 - May 6|May 6 - May 8|May 7 - Aug 4|May 7 - Jun 5|May 7 - May 13|May 7 - May 20|May 7 - May 7|May 7 - May 9|May 8 - Aug 5|May 8 - Jun 6|May 8 - May 10|May 8 - May 14|May 8 - May 21|May 8 - May 8|May 9 - Aug 6|May 9 - Jun 7|May 9 - May 11|May 9 - May 15|May 9 - May 22|May 9 - May 9|Never|Nov 1 - Jan 29|Nov 1 - Nov 1|Nov 1 - Nov 14|Nov 1 - Nov 3|Nov 1 - Nov 30|Nov 1 - Nov 7|Nov 10 - Dec 9|Nov 10 - Feb 7|Nov 10 - Nov 10|Nov 10 - Nov 12|Nov 10 - Nov 16|Nov 10 - Nov 23|Nov 11 - Dec 10|Nov 11 - Feb 8|Nov 11 - Nov 11|Nov 11 - Nov 13|Nov 11 - Nov 17|Nov 11 - Nov 24|Nov 12 - Dec 11|Nov 12 - Feb 9|Nov 12 - Nov 12|Nov 12 - Nov 14|Nov 12 - Nov 18|Nov 12 - Nov 25|Nov 13 - Dec 12|Nov 13 - Feb 10|Nov 13 - Nov 13|Nov 13 - Nov 15|Nov 13 - Nov 19|Nov 13 - Nov 26|Nov 14 - Dec 13|Nov 14 - Feb 11|Nov 14 - Nov 14|Nov 14 - Nov 16|Nov 14 - Nov 20|Nov 14 - Nov 27|Nov 15 - Dec 14|Nov 15 - Feb 12|Nov 15 - Nov 15|Nov 15 - Nov 17|Nov 15 - Nov 21|Nov 15 - Nov 28|Nov 16 - Dec 15|Nov 16 - Feb 13|Nov 16 - Nov 16|Nov 16 - Nov 18|Nov 16 - Nov 22|Nov 16 - Nov 29|Nov 17 - Dec 16|Nov 17 - Feb 14|Nov 17 - Nov 17|Nov 17 - Nov 19|Nov 17 - Nov 23|Nov 17 - Nov 30|Nov 18 - Dec 1|Nov 18 - Dec 17|Nov 18 - Feb 15|Nov 18 - Nov 18|Nov 18 - Nov 20|Nov 18 - Nov 24|Nov 19 - Dec 18|Nov 19 - Dec 2|Nov 19 - Feb 16|Nov 19 - Nov 19|Nov 19 - Nov 21|Nov 19 - Nov 25|Nov 2 - Dec 1|Nov 2 - Jan 30|Nov 2 - Nov 15|Nov 2 - Nov 2|Nov 2 - Nov 4|Nov 2 - Nov 8|Nov 20 - Dec 19|Nov 20 - Dec 3|Nov 20 - Feb 17|Nov 20 - Nov 20|Nov 20 - Nov 22|Nov 20 - Nov 26|Nov 21 - Dec 20|Nov 21 - Dec 4|Nov 21 - Feb 18|Nov 21 - Nov 21|Nov 21 - Nov 23|Nov 21 - Nov 27|Nov 22 - Dec 21|Nov 22 - Dec 5|Nov 22 - Feb 19|Nov 22 - Nov 22|Nov 22 - Nov 24|Nov 22 - Nov 28|Nov 23 - Dec 22|Nov 23 - Dec 6|Nov 23 - Feb 20|Nov 23 - Nov 23|Nov 23 - Nov 25|Nov 23 - Nov 29|Nov 24 - Dec 23|Nov 24 - Dec 7|Nov 24 - Feb 21|Nov 24 - Nov 24|Nov 24 - Nov 26|Nov 24 - Nov 30|Nov 25 - Dec 1|Nov 25 - Dec 24|Nov 25 - Dec 8|Nov 25 - Feb 22|Nov 25 - Nov 25|Nov 25 - Nov 27|Nov 26 - Dec 2|Nov 26 - Dec 25|Nov 26 - Dec 9|Nov 26 - Feb 23|Nov 26 - Nov 26|Nov 26 - Nov 28|Nov 27 - Dec 10|Nov 27 - Dec 26|Nov 27 - Dec 3|Nov 27 - Feb 24|Nov 27 - Nov 27|Nov 27 - Nov 29|Nov 28 - Dec 11|Nov 28 - Dec 27|Nov 28 - Dec 4|Nov 28 - Feb 25|Nov 28 - Nov 28|Nov 28 - Nov 30|Nov 29 - Dec 1|Nov 29 - Dec 12|Nov 29 - Dec 28|Nov 29 - Dec 5|Nov 29 - Feb 26|Nov 29 - Nov 29|Nov 3 - Dec 2|Nov 3 - Jan 31|Nov 3 - Nov 16|Nov 3 - Nov 3|Nov 3 - Nov 5|Nov 3 - Nov 9|Nov 30 - Dec 13|Nov 30 - Dec 2|Nov 30 - Dec 29|Nov 30 - Dec 6|Nov 30 - Feb 27|Nov 30 - Nov 30|Nov 4 - Dec 3|Nov 4 - Feb 1|Nov 4 - Nov 10|Nov 4 - Nov 17|Nov 4 - Nov 4|Nov 4 - Nov 6|Nov 5 - Dec 4|Nov 5 - Feb 2|Nov 5 - Nov 11|Nov 5 - Nov 18|Nov 5 - Nov 5|Nov 5 - Nov 7|Nov 6 - Dec 5|Nov 6 - Feb 3|Nov 6 - Nov 12|Nov 6 - Nov 19|Nov 6 - Nov 6|Nov 6 - Nov 8|Nov 7 - Dec 6|Nov 7 - Feb 4|Nov 7 - Nov 13|Nov 7 - Nov 20|Nov 7 - Nov 7|Nov 7 - Nov 9|Nov 8 - Dec 7|Nov 8 - Feb 5|Nov 8 - Nov 10|Nov 8 - Nov 14|Nov 8 - Nov 21|Nov 8 - Nov 8|Nov 9 - Dec 8|Nov 9 - Feb 6|Nov 9 - Nov 11|Nov 9 - Nov 15|Nov 9 - Nov 22|Nov 9 - Nov 9|Oct 1 - Dec 29|Oct 1 - Oct 1|Oct 1 - Oct 14|Oct 1 - Oct 3|Oct 1 - Oct 30|Oct 1 - Oct 7|Oct 10 - Jan 7|Oct 10 - Nov 8|Oct 10 - Oct 10|Oct 10 - Oct 12|Oct 10 - Oct 16|Oct 10 - Oct 23|Oct 11 - Jan 8|Oct 11 - Nov 9|Oct 11 - Oct 11|Oct 11 - Oct 13|Oct 11 - Oct 17|Oct 11 - Oct 24|Oct 12 - Jan 9|Oct 12 - Nov 10|Oct 12 - Oct 12|Oct 12 - Oct 14|Oct 12 - Oct 18|Oct 12 - Oct 25|Oct 13 - Jan 10|Oct 13 - Nov 11|Oct 13 - Oct 13|Oct 13 - Oct 15|Oct 13 - Oct 19|Oct 13 - Oct 26|Oct 14 - Jan 11|Oct 14 - Nov 12|Oct 14 - Oct 14|Oct 14 - Oct 16|Oct 14 - Oct 20|Oct 14 - Oct 27|Oct 15 - Jan 12|Oct 15 - Nov 13|Oct 15 - Oct 15|Oct 15 - Oct 17|Oct 15 - Oct 21|Oct 15 - Oct 28|Oct 16 - Jan 13|Oct 16 - Nov 14|Oct 16 - Oct 16|Oct 16 - Oct 18|Oct 16 - Oct 22|Oct 16 - Oct 29|Oct 17 - Jan 14|Oct 17 - Nov 15|Oct 17 - Oct 17|Oct 17 - Oct 19|Oct 17 - Oct 23|Oct 17 - Oct 30|Oct 18 - Jan 15|Oct 18 - Nov 16|Oct 18 - Oct 18|Oct 18 - Oct 20|Oct 18 - Oct 24|Oct 18 - Oct 31|Oct 19 - Jan 16|Oct 19 - Nov 1|Oct 19 - Nov 17|Oct 19 - Oct 19|Oct 19 - Oct 21|Oct 19 - Oct 25|Oct 2 - Dec 30|Oct 2 - Oct 15|Oct 2 - Oct 2|Oct 2 - Oct 31|Oct 2 - Oct 4|Oct 2 - Oct 8|Oct 20 - Jan 17|Oct 20 - Nov 18|Oct 20 - Nov 2|Oct 20 - Oct 20|Oct 20 - Oct 22|Oct 20 - Oct 26|Oct 21 - Jan 18|Oct 21 - Nov 19|Oct 21 - Nov 3|Oct 21 - Oct 21|Oct 21 - Oct 23|Oct 21 - Oct 27|Oct 22 - Jan 19|Oct 22 - Nov 20|Oct 22 - Nov 4|Oct 22 - Oct 22|Oct 22 - Oct 24|Oct 22 - Oct 28|Oct 23 - Jan 20|Oct 23 - Nov 21|Oct 23 - Nov 5|Oct 23 - Oct 23|Oct 23 - Oct 25|Oct 23 - Oct 29|Oct 24 - Jan 21|Oct 24 - Nov 22|Oct 24 - Nov 6|Oct 24 - Oct 24|Oct 24 - Oct 26|Oct 24 - Oct 30|Oct 25 - Jan 22|Oct 25 - Nov 23|Oct 25 - Nov 7|Oct 25 - Oct 25|Oct 25 - Oct 27|Oct 25 - Oct 31|Oct 26 - Jan 23|Oct 26 - Nov 1|Oct 26 - Nov 24|Oct 26 - Nov 8|Oct 26 - Oct 26|Oct 26 - Oct 28|Oct 27 - Jan 24|Oct 27 - Nov 2|Oct 27 - Nov 25|Oct 27 - Nov 9|Oct 27 - Oct 27|Oct 27 - Oct 29|Oct 28 - Jan 25|Oct 28 - Nov 10|Oct 28 - Nov 26|Oct 28 - Nov 3|Oct 28 - Oct 28|Oct 28 - Oct 30|Oct 29 - Jan 26|Oct 29 - Nov 11|Oct 29 - Nov 27|Oct 29 - Nov 4|Oct 29 - Oct 29|Oct 29 - Oct 31|Oct 3 - Dec 31|Oct 3 - Nov 1|Oct 3 - Oct 16|Oct 3 - Oct 3|Oct 3 - Oct 5|Oct 3 - Oct 9|Oct 30 - Jan 27|Oct 30 - Nov 1|Oct 30 - Nov 12|Oct 30 - Nov 28|Oct 30 - Nov 5|Oct 30 - Oct 30|Oct 31 - Jan 28|Oct 31 - Nov 13|Oct 31 - Nov 2|Oct 31 - Nov 29|Oct 31 - Nov 6|Oct 31 - Oct 31|Oct 4 - Jan 1|Oct 4 - Nov 2|Oct 4 - Oct 10|Oct 4 - Oct 17|Oct 4 - Oct 4|Oct 4 - Oct 6|Oct 5 - Jan 2|Oct 5 - Nov 3|Oct 5 - Oct 11|Oct 5 - Oct 18|Oct 5 - Oct 5|Oct 5 - Oct 7|Oct 6 - Jan 3|Oct 6 - Nov 4|Oct 6 - Oct 12|Oct 6 - Oct 19|Oct 6 - Oct 6|Oct 6 - Oct 8|Oct 7 - Jan 4|Oct 7 - Nov 5|Oct 7 - Oct 13|Oct 7 - Oct 20|Oct 7 - Oct 7|Oct 7 - Oct 9|Oct 8 - Jan 5|Oct 8 - Nov 6|Oct 8 - Oct 10|Oct 8 - Oct 14|Oct 8 - Oct 21|Oct 8 - Oct 8|Oct 9 - Jan 6|Oct 9 - Nov 7|Oct 9 - Oct 11|Oct 9 - Oct 15|Oct 9 - Oct 22|Oct 9 - Oct 9|Sep 1 - Sep 1|Sep 1 - Sep 14|Sep 1 - Sep 3|Sep 1 - Sep 7|Sep 10 - Oct 9|Sep 10 - Sep 12|Sep 10 - Sep 16|Sep 10 - Sep 23|Sep 11 - Dec 9|Sep 11 - Oct 10|Sep 11 - Sep 11|Sep 11 - Sep 13|Sep 11 - Sep 17|Sep 11 - Sep 24|Sep 12 - Dec 10|Sep 12 - Oct 11|Sep 12 - Sep 12|Sep 12 - Sep 14|Sep 12 - Sep 18|Sep 13 - Dec 11|Sep 13 - Sep 13|Sep 13 - Sep 15|Sep 14 - Dec 12|Sep 14 - Oct 13|Sep 14 - Sep 14|Sep 14 - Sep 16|Sep 14 - Sep 20|Sep 15 - Dec 13|Sep 15 - Sep 15|Sep 15 - Sep 17|Sep 15 - Sep 21|Sep 16 - Dec 14|Sep 16 - Oct 15|Sep 16 - Sep 16|Sep 16 - Sep 18|Sep 16 - Sep 22|Sep 17 - Dec 15|Sep 17 - Sep 17|Sep 17 - Sep 19|Sep 17 - Sep 23|Sep 18 - Dec 16|Sep 18 - Sep 18|Sep 18 - Sep 20|Sep 18 - Sep 24|Sep 19 - Oct 18|Sep 19 - Oct 2|Sep 19 - Sep 19|Sep 19 - Sep 21|Sep 19 - Sep 25|Sep 2 - Sep 15|Sep 2 - Sep 2|Sep 2 - Sep 4|Sep 2 - Sep 8|Sep 20 - Oct 19|Sep 20 - Oct 3|Sep 20 - Sep 20|Sep 20 - Sep 22|Sep 20 - Sep 26|Sep 21 - Oct 4|Sep 21 - Sep 21|Sep 21 - Sep 23|Sep 21 - Sep 27|Sep 22 - Oct 21|Sep 22 - Sep 22|Sep 22 - Sep 24|Sep 23 - Dec 21|Sep 23 - Oct 22|Sep 23 - Oct 6|Sep 23 - Sep 23|Sep 23 - Sep 25|Sep 23 - Sep 29|Sep 24 - Dec 22|Sep 24 - Oct 23|Sep 24 - Oct 7|Sep 24 - Sep 24|Sep 24 - Sep 26|Sep 24 - Sep 30|Sep 25 - Dec 23|Sep 25 - Oct 1|Sep 25 - Oct 8|Sep 25 - Sep 25|Sep 25 - Sep 27|Sep 26 - Oct 2|Sep 26 - Oct 9|Sep 26 - Sep 26|Sep 26 - Sep 28|Sep 27 - Dec 25|Sep 27 - Oct 10|Sep 27 - Oct 26|Sep 27 - Oct 3|Sep 27 - Sep 27|Sep 27 - Sep 29|Sep 28 - Dec 26|Sep 28 - Oct 11|Sep 28 - Oct 27|Sep 28 - Oct 4|Sep 28 - Sep 28|Sep 28 - Sep 30|Sep 29 - Oct 1|Sep 29 - Oct 12|Sep 29 - Oct 28|Sep 29 - Oct 5|Sep 29 - Sep 29|Sep 3 - Oct 2|Sep 3 - Sep 16|Sep 3 - Sep 3|Sep 3 - Sep 5|Sep 3 - Sep 9|Sep 30 - Dec 28|Sep 30 - Oct 13|Sep 30 - Oct 2|Sep 30 - Oct 29|Sep 30 - Oct 6|Sep 30 - Sep 30|Sep 4 - Dec 2|Sep 4 - Oct 3|Sep 4 - Sep 10|Sep 4 - Sep 4|Sep 4 - Sep 6|Sep 5 - Dec 3|Sep 5 - Sep 18|Sep 5 - Sep 5|Sep 5 - Sep 7|Sep 6 - Oct 5|Sep 6 - Sep 12|Sep 6 - Sep 6|Sep 6 - Sep 8|Sep 7 - Dec 5|Sep 7 - Oct 6|Sep 7 - Sep 13|Sep 7 - Sep 20|Sep 7 - Sep 7|Sep 7 - Sep 9|Sep 8 - Dec 6|Sep 8 - Oct 7|Sep 8 - Sep 10|Sep 8 - Sep 14|Sep 8 - Sep 21|Sep 8 - Sep 8|Sep 9 - Dec 7|Sep 9 - Sep 11|Sep 9 - Sep 15|Sep 9 - Sep 22|Sep 9 - Sep 9 +in.cooling_unavailable_period metadata_and_annual n/a string Apr 1 - Apr 1|Apr 1 - Apr 14|Apr 1 - Apr 3|Apr 1 - Apr 30|Apr 1 - Apr 7|Apr 1 - Jun 29|Apr 10 - Apr 10|Apr 10 - Apr 12|Apr 10 - Apr 16|Apr 10 - Apr 23|Apr 10 - Jul 8|Apr 10 - May 9|Apr 11 - Apr 11|Apr 11 - Apr 13|Apr 11 - Apr 17|Apr 11 - Apr 24|Apr 11 - Jul 9|Apr 11 - May 10|Apr 12 - Apr 12|Apr 12 - Apr 14|Apr 12 - Apr 18|Apr 12 - Apr 25|Apr 12 - Jul 10|Apr 12 - May 11|Apr 13 - Apr 13|Apr 13 - Apr 15|Apr 13 - Apr 19|Apr 13 - Apr 26|Apr 13 - Jul 11|Apr 13 - May 12|Apr 14 - Apr 14|Apr 14 - Apr 16|Apr 14 - Apr 20|Apr 14 - Apr 27|Apr 14 - Jul 12|Apr 14 - May 13|Apr 15 - Apr 15|Apr 15 - Apr 17|Apr 15 - Apr 21|Apr 15 - Apr 28|Apr 15 - Jul 13|Apr 15 - May 14|Apr 16 - Apr 16|Apr 16 - Apr 18|Apr 16 - Apr 22|Apr 16 - Apr 29|Apr 16 - Jul 14|Apr 16 - May 15|Apr 17 - Apr 17|Apr 17 - Apr 19|Apr 17 - Apr 23|Apr 17 - Apr 30|Apr 17 - Jul 15|Apr 17 - May 16|Apr 18 - Apr 18|Apr 18 - Apr 20|Apr 18 - Apr 24|Apr 18 - Jul 16|Apr 18 - May 1|Apr 18 - May 17|Apr 19 - Apr 19|Apr 19 - Apr 21|Apr 19 - Apr 25|Apr 19 - Jul 17|Apr 19 - May 18|Apr 19 - May 2|Apr 2 - Apr 15|Apr 2 - Apr 2|Apr 2 - Apr 4|Apr 2 - Apr 8|Apr 2 - Jun 30|Apr 2 - May 1|Apr 20 - Apr 20|Apr 20 - Apr 22|Apr 20 - Apr 26|Apr 20 - Jul 18|Apr 20 - May 19|Apr 20 - May 3|Apr 21 - Apr 21|Apr 21 - Apr 23|Apr 21 - Apr 27|Apr 21 - Jul 19|Apr 21 - May 20|Apr 21 - May 4|Apr 22 - Apr 22|Apr 22 - Apr 24|Apr 22 - Apr 28|Apr 22 - Jul 20|Apr 22 - May 21|Apr 22 - May 5|Apr 23 - Apr 23|Apr 23 - Apr 25|Apr 23 - Apr 29|Apr 23 - Jul 21|Apr 23 - May 22|Apr 23 - May 6|Apr 24 - Apr 24|Apr 24 - Apr 26|Apr 24 - Apr 30|Apr 24 - Jul 22|Apr 24 - May 23|Apr 24 - May 7|Apr 25 - Apr 25|Apr 25 - Apr 27|Apr 25 - Jul 23|Apr 25 - May 1|Apr 25 - May 24|Apr 25 - May 8|Apr 26 - Apr 26|Apr 26 - Apr 28|Apr 26 - Jul 24|Apr 26 - May 2|Apr 26 - May 25|Apr 26 - May 9|Apr 27 - Apr 27|Apr 27 - Apr 29|Apr 27 - Jul 25|Apr 27 - May 10|Apr 27 - May 26|Apr 27 - May 3|Apr 28 - Apr 28|Apr 28 - Apr 30|Apr 28 - Jul 26|Apr 28 - May 11|Apr 28 - May 27|Apr 28 - May 4|Apr 29 - Apr 29|Apr 29 - Jul 27|Apr 29 - May 1|Apr 29 - May 12|Apr 29 - May 28|Apr 29 - May 5|Apr 3 - Apr 16|Apr 3 - Apr 3|Apr 3 - Apr 5|Apr 3 - Apr 9|Apr 3 - Jul 1|Apr 3 - May 2|Apr 30 - Apr 30|Apr 30 - Jul 28|Apr 30 - May 13|Apr 30 - May 2|Apr 30 - May 29|Apr 30 - May 6|Apr 4 - Apr 10|Apr 4 - Apr 17|Apr 4 - Apr 4|Apr 4 - Apr 6|Apr 4 - Jul 2|Apr 4 - May 3|Apr 5 - Apr 11|Apr 5 - Apr 18|Apr 5 - Apr 5|Apr 5 - Apr 7|Apr 5 - Jul 3|Apr 5 - May 4|Apr 6 - Apr 12|Apr 6 - Apr 19|Apr 6 - Apr 6|Apr 6 - Apr 8|Apr 6 - Jul 4|Apr 6 - May 5|Apr 7 - Apr 13|Apr 7 - Apr 20|Apr 7 - Apr 7|Apr 7 - Apr 9|Apr 7 - Jul 5|Apr 7 - May 6|Apr 8 - Apr 10|Apr 8 - Apr 14|Apr 8 - Apr 21|Apr 8 - Apr 8|Apr 8 - Jul 6|Apr 8 - May 7|Apr 9 - Apr 11|Apr 9 - Apr 15|Apr 9 - Apr 22|Apr 9 - Apr 9|Apr 9 - Jul 7|Apr 9 - May 8|Aug 1 - Aug 1|Aug 1 - Aug 14|Aug 1 - Aug 3|Aug 1 - Aug 30|Aug 1 - Aug 7|Aug 1 - Oct 29|Aug 10 - Aug 10|Aug 10 - Aug 12|Aug 10 - Aug 16|Aug 10 - Aug 23|Aug 10 - Nov 7|Aug 10 - Sep 8|Aug 11 - Aug 11|Aug 11 - Aug 13|Aug 11 - Aug 17|Aug 11 - Aug 24|Aug 11 - Nov 8|Aug 11 - Sep 9|Aug 12 - Aug 12|Aug 12 - Aug 14|Aug 12 - Aug 18|Aug 12 - Aug 25|Aug 12 - Nov 9|Aug 12 - Sep 10|Aug 13 - Aug 13|Aug 13 - Aug 15|Aug 13 - Aug 19|Aug 13 - Aug 26|Aug 13 - Nov 10|Aug 13 - Sep 11|Aug 14 - Aug 14|Aug 14 - Aug 16|Aug 14 - Aug 20|Aug 14 - Aug 27|Aug 14 - Nov 11|Aug 14 - Sep 12|Aug 15 - Aug 15|Aug 15 - Aug 17|Aug 15 - Aug 21|Aug 15 - Aug 28|Aug 15 - Nov 12|Aug 15 - Sep 13|Aug 16 - Aug 16|Aug 16 - Aug 18|Aug 16 - Aug 22|Aug 16 - Aug 29|Aug 16 - Nov 13|Aug 16 - Sep 14|Aug 17 - Aug 17|Aug 17 - Aug 19|Aug 17 - Aug 23|Aug 17 - Aug 30|Aug 17 - Nov 14|Aug 17 - Sep 15|Aug 18 - Aug 18|Aug 18 - Aug 20|Aug 18 - Aug 24|Aug 18 - Aug 31|Aug 18 - Nov 15|Aug 18 - Sep 16|Aug 19 - Aug 19|Aug 19 - Aug 21|Aug 19 - Aug 25|Aug 19 - Nov 16|Aug 19 - Sep 1|Aug 19 - Sep 17|Aug 2 - Aug 15|Aug 2 - Aug 2|Aug 2 - Aug 31|Aug 2 - Aug 4|Aug 2 - Aug 8|Aug 2 - Oct 30|Aug 20 - Aug 20|Aug 20 - Aug 22|Aug 20 - Aug 26|Aug 20 - Nov 17|Aug 20 - Sep 18|Aug 20 - Sep 2|Aug 21 - Aug 21|Aug 21 - Aug 23|Aug 21 - Aug 27|Aug 21 - Nov 18|Aug 21 - Sep 19|Aug 21 - Sep 3|Aug 22 - Aug 22|Aug 22 - Aug 24|Aug 22 - Aug 28|Aug 22 - Nov 19|Aug 22 - Sep 20|Aug 22 - Sep 4|Aug 23 - Aug 23|Aug 23 - Aug 25|Aug 23 - Aug 29|Aug 23 - Nov 20|Aug 23 - Sep 21|Aug 23 - Sep 5|Aug 24 - Aug 24|Aug 24 - Aug 26|Aug 24 - Aug 30|Aug 24 - Nov 21|Aug 24 - Sep 22|Aug 24 - Sep 6|Aug 25 - Aug 25|Aug 25 - Aug 27|Aug 25 - Aug 31|Aug 25 - Nov 22|Aug 25 - Sep 23|Aug 25 - Sep 7|Aug 26 - Aug 26|Aug 26 - Aug 28|Aug 26 - Nov 23|Aug 26 - Sep 1|Aug 26 - Sep 24|Aug 26 - Sep 8|Aug 27 - Aug 27|Aug 27 - Aug 29|Aug 27 - Nov 24|Aug 27 - Sep 2|Aug 27 - Sep 25|Aug 27 - Sep 9|Aug 28 - Aug 28|Aug 28 - Aug 30|Aug 28 - Nov 25|Aug 28 - Sep 10|Aug 28 - Sep 26|Aug 28 - Sep 3|Aug 29 - Aug 29|Aug 29 - Aug 31|Aug 29 - Nov 26|Aug 29 - Sep 11|Aug 29 - Sep 27|Aug 29 - Sep 4|Aug 3 - Aug 16|Aug 3 - Aug 3|Aug 3 - Aug 5|Aug 3 - Aug 9|Aug 3 - Oct 31|Aug 3 - Sep 1|Aug 30 - Aug 30|Aug 30 - Nov 27|Aug 30 - Sep 1|Aug 30 - Sep 12|Aug 30 - Sep 28|Aug 30 - Sep 5|Aug 31 - Aug 31|Aug 31 - Nov 28|Aug 31 - Sep 13|Aug 31 - Sep 2|Aug 31 - Sep 29|Aug 31 - Sep 6|Aug 4 - Aug 10|Aug 4 - Aug 17|Aug 4 - Aug 4|Aug 4 - Aug 6|Aug 4 - Nov 1|Aug 4 - Sep 2|Aug 5 - Aug 11|Aug 5 - Aug 18|Aug 5 - Aug 5|Aug 5 - Aug 7|Aug 5 - Nov 2|Aug 5 - Sep 3|Aug 6 - Aug 12|Aug 6 - Aug 19|Aug 6 - Aug 6|Aug 6 - Aug 8|Aug 6 - Nov 3|Aug 6 - Sep 4|Aug 7 - Aug 13|Aug 7 - Aug 20|Aug 7 - Aug 7|Aug 7 - Aug 9|Aug 7 - Nov 4|Aug 7 - Sep 5|Aug 8 - Aug 10|Aug 8 - Aug 14|Aug 8 - Aug 21|Aug 8 - Aug 8|Aug 8 - Nov 5|Aug 8 - Sep 6|Aug 9 - Aug 11|Aug 9 - Aug 15|Aug 9 - Aug 22|Aug 9 - Aug 9|Aug 9 - Nov 6|Aug 9 - Sep 7|Dec 1 - Dec 1|Dec 1 - Dec 14|Dec 1 - Dec 3|Dec 1 - Dec 30|Dec 10 - Dec 12|Dec 10 - Mar 9|Dec 11 - Dec 11|Dec 11 - Dec 24|Dec 11 - Mar 10|Dec 12 - Dec 18|Dec 12 - Dec 25|Dec 12 - Jan 10|Dec 12 - Mar 11|Dec 13 - Dec 19|Dec 13 - Dec 26|Dec 14 - Dec 16|Dec 14 - Jan 12|Dec 15 - Dec 17|Dec 15 - Dec 21|Dec 15 - Mar 14|Dec 16 - Dec 22|Dec 17 - Dec 17|Dec 18 - Dec 31|Dec 18 - Jan 16|Dec 19 - Dec 21|Dec 19 - Jan 1|Dec 19 - Jan 17|Dec 2 - Dec 15|Dec 2 - Dec 31|Dec 2 - Dec 4|Dec 20 - Dec 22|Dec 20 - Jan 18|Dec 20 - Jan 2|Dec 21 - Dec 21|Dec 21 - Dec 23|Dec 21 - Dec 27|Dec 21 - Jan 19|Dec 22 - Jan 20|Dec 22 - Mar 21|Dec 23 - Jan 21|Dec 23 - Jan 5|Dec 24 - Dec 26|Dec 24 - Jan 22|Dec 24 - Jan 6|Dec 25 - Dec 25|Dec 25 - Dec 27|Dec 27 - Dec 27|Dec 27 - Jan 2|Dec 27 - Jan 25|Dec 28 - Dec 30|Dec 28 - Jan 10|Dec 28 - Jan 3|Dec 29 - Dec 29|Dec 29 - Jan 27|Dec 3 - Dec 16|Dec 3 - Dec 5|Dec 3 - Mar 2|Dec 30 - Dec 30|Dec 30 - Jan 1|Dec 30 - Jan 28|Dec 30 - Mar 29|Dec 31 - Dec 31|Dec 31 - Jan 13|Dec 31 - Jan 6|Dec 4 - Dec 10|Dec 4 - Dec 17|Dec 4 - Dec 4|Dec 4 - Mar 3|Dec 5 - Dec 11|Dec 5 - Dec 5|Dec 5 - Dec 7|Dec 5 - Mar 4|Dec 6 - Dec 12|Dec 6 - Dec 8|Dec 6 - Jan 4|Dec 7 - Dec 13|Dec 7 - Dec 20|Dec 7 - Dec 9|Dec 8 - Dec 10|Dec 8 - Dec 8|Dec 8 - Jan 6|Dec 9 - Dec 11|Dec 9 - Dec 9|Dec 9 - Jan 7|Dec 9 - Mar 8|Feb 1 - Feb 14|Feb 1 - Feb 3|Feb 1 - Feb 7|Feb 1 - Mar 2|Feb 10 - Feb 10|Feb 10 - Feb 12|Feb 10 - Feb 16|Feb 10 - Feb 23|Feb 10 - Mar 11|Feb 11 - Feb 11|Feb 11 - Feb 24|Feb 11 - Mar 12|Feb 11 - May 11|Feb 12 - Feb 12|Feb 12 - Feb 14|Feb 12 - Feb 25|Feb 12 - Mar 13|Feb 12 - May 12|Feb 13 - Feb 15|Feb 13 - Feb 26|Feb 13 - Mar 14|Feb 13 - May 13|Feb 14 - Feb 16|Feb 14 - Feb 20|Feb 14 - Feb 27|Feb 14 - Mar 15|Feb 14 - May 14|Feb 15 - Feb 17|Feb 15 - Feb 21|Feb 15 - Feb 28|Feb 15 - Mar 16|Feb 15 - May 15|Feb 16 - Feb 18|Feb 16 - Feb 22|Feb 16 - Mar 1|Feb 17 - Feb 17|Feb 17 - Feb 19|Feb 17 - Mar 18|Feb 17 - Mar 2|Feb 18 - Feb 18|Feb 18 - Feb 20|Feb 18 - Feb 24|Feb 18 - Mar 19|Feb 18 - Mar 3|Feb 18 - May 18|Feb 19 - Feb 19|Feb 19 - Feb 21|Feb 19 - Feb 25|Feb 19 - Mar 20|Feb 19 - Mar 4|Feb 2 - Feb 2|Feb 2 - Feb 4|Feb 2 - Feb 8|Feb 2 - Mar 3|Feb 20 - Feb 22|Feb 20 - Feb 26|Feb 20 - Mar 5|Feb 21 - Feb 21|Feb 21 - Feb 23|Feb 21 - Feb 27|Feb 21 - Mar 22|Feb 21 - Mar 6|Feb 21 - May 21|Feb 22 - Feb 22|Feb 22 - Feb 24|Feb 22 - Feb 28|Feb 22 - Mar 23|Feb 22 - Mar 7|Feb 22 - May 22|Feb 23 - Feb 25|Feb 23 - Mar 1|Feb 23 - Mar 8|Feb 23 - May 23|Feb 24 - Feb 24|Feb 24 - Feb 26|Feb 24 - Mar 2|Feb 24 - Mar 25|Feb 24 - Mar 9|Feb 24 - May 24|Feb 25 - Feb 27|Feb 25 - Mar 10|Feb 25 - Mar 26|Feb 25 - Mar 3|Feb 26 - Feb 26|Feb 26 - Feb 28|Feb 26 - Mar 11|Feb 26 - Mar 27|Feb 26 - Mar 4|Feb 26 - May 26|Feb 27 - Feb 27|Feb 27 - Mar 1|Feb 27 - Mar 12|Feb 27 - Mar 5|Feb 27 - May 27|Feb 28 - Mar 13|Feb 28 - Mar 2|Feb 28 - Mar 29|Feb 28 - Mar 6|Feb 28 - May 28|Feb 3 - Feb 16|Feb 3 - Feb 5|Feb 3 - Feb 9|Feb 3 - Mar 4|Feb 3 - May 3|Feb 4 - Feb 10|Feb 4 - Feb 17|Feb 4 - Feb 4|Feb 4 - Feb 6|Feb 4 - Mar 5|Feb 4 - May 4|Feb 5 - Feb 11|Feb 5 - Feb 18|Feb 5 - Feb 5|Feb 5 - Feb 7|Feb 5 - Mar 6|Feb 5 - May 5|Feb 6 - Feb 12|Feb 6 - Feb 19|Feb 6 - Feb 6|Feb 6 - Feb 8|Feb 6 - Mar 7|Feb 7 - Feb 13|Feb 7 - Feb 7|Feb 7 - Feb 9|Feb 7 - Mar 8|Feb 7 - May 7|Feb 8 - Feb 10|Feb 8 - Feb 14|Feb 8 - Feb 21|Feb 8 - Feb 8|Feb 8 - Mar 9|Feb 8 - May 8|Feb 9 - Feb 11|Feb 9 - Feb 22|Feb 9 - Feb 9|Feb 9 - Mar 10|Feb 9 - May 9|Jan 1 - Dec 31|Jan 1 - Jan 3|Jan 1 - Jan 30|Jan 1 - Jan 7|Jan 1 - Mar 31|Jan 10 - Feb 8|Jan 10 - Jan 12|Jan 10 - Jan 23|Jan 11 - Feb 9|Jan 11 - Jan 13|Jan 11 - Jan 17|Jan 12 - Feb 10|Jan 12 - Jan 12|Jan 12 - Jan 14|Jan 12 - Jan 25|Jan 13 - Apr 12|Jan 13 - Jan 13|Jan 13 - Jan 15|Jan 13 - Jan 19|Jan 14 - Apr 13|Jan 14 - Jan 14|Jan 14 - Jan 20|Jan 14 - Jan 27|Jan 15 - Apr 14|Jan 15 - Feb 13|Jan 15 - Jan 17|Jan 15 - Jan 21|Jan 15 - Jan 28|Jan 16 - Jan 18|Jan 16 - Jan 22|Jan 16 - Jan 29|Jan 17 - Apr 16|Jan 17 - Feb 15|Jan 17 - Jan 17|Jan 17 - Jan 19|Jan 17 - Jan 30|Jan 18 - Apr 17|Jan 18 - Feb 16|Jan 18 - Jan 18|Jan 18 - Jan 20|Jan 18 - Jan 24|Jan 19 - Feb 1|Jan 19 - Feb 17|Jan 19 - Jan 21|Jan 19 - Jan 25|Jan 2 - Jan 4|Jan 2 - Jan 8|Jan 20 - Feb 18|Jan 20 - Feb 2|Jan 20 - Jan 22|Jan 20 - Jan 26|Jan 21 - Feb 19|Jan 21 - Jan 27|Jan 22 - Feb 20|Jan 22 - Feb 4|Jan 22 - Jan 24|Jan 22 - Jan 28|Jan 23 - Feb 21|Jan 23 - Jan 23|Jan 23 - Jan 25|Jan 24 - Apr 23|Jan 25 - Apr 24|Jan 25 - Feb 23|Jan 25 - Jan 25|Jan 25 - Jan 27|Jan 26 - Feb 1|Jan 26 - Feb 8|Jan 27 - Apr 26|Jan 27 - Feb 2|Jan 27 - Feb 25|Jan 27 - Feb 9|Jan 28 - Feb 10|Jan 28 - Feb 26|Jan 28 - Feb 3|Jan 28 - Jan 30|Jan 29 - Apr 28|Jan 29 - Feb 11|Jan 29 - Feb 27|Jan 29 - Jan 31|Jan 3 - Apr 2|Jan 3 - Feb 1|Jan 3 - Jan 16|Jan 3 - Jan 5|Jan 30 - Feb 28|Jan 30 - Feb 5|Jan 31 - Apr 30|Jan 31 - Feb 6|Jan 31 - Jan 31|Jan 31 - Mar 1|Jan 4 - Apr 3|Jan 4 - Feb 2|Jan 4 - Jan 6|Jan 5 - Jan 11|Jan 5 - Jan 7|Jan 6 - Apr 5|Jan 6 - Feb 4|Jan 6 - Jan 12|Jan 6 - Jan 19|Jan 6 - Jan 6|Jan 6 - Jan 8|Jan 7 - Feb 5|Jan 7 - Jan 13|Jan 7 - Jan 7|Jan 7 - Jan 9|Jan 8 - Feb 6|Jan 8 - Jan 10|Jan 8 - Jan 21|Jan 8 - Jan 8|Jan 9 - Apr 8|Jan 9 - Jan 11|Jan 9 - Jan 22|Jul 1 - Jul 1|Jul 1 - Jul 14|Jul 1 - Jul 3|Jul 1 - Jul 30|Jul 1 - Jul 7|Jul 1 - Sep 28|Jul 10 - Aug 8|Jul 10 - Jul 10|Jul 10 - Jul 12|Jul 10 - Jul 16|Jul 10 - Jul 23|Jul 10 - Oct 7|Jul 11 - Aug 9|Jul 11 - Jul 11|Jul 11 - Jul 13|Jul 11 - Jul 17|Jul 11 - Jul 24|Jul 11 - Oct 8|Jul 12 - Aug 10|Jul 12 - Jul 12|Jul 12 - Jul 14|Jul 12 - Jul 18|Jul 12 - Jul 25|Jul 12 - Oct 9|Jul 13 - Aug 11|Jul 13 - Jul 13|Jul 13 - Jul 15|Jul 13 - Jul 19|Jul 13 - Jul 26|Jul 13 - Oct 10|Jul 14 - Aug 12|Jul 14 - Jul 14|Jul 14 - Jul 16|Jul 14 - Jul 20|Jul 14 - Jul 27|Jul 14 - Oct 11|Jul 15 - Aug 13|Jul 15 - Jul 15|Jul 15 - Jul 17|Jul 15 - Jul 21|Jul 15 - Jul 28|Jul 15 - Oct 12|Jul 16 - Aug 14|Jul 16 - Jul 16|Jul 16 - Jul 18|Jul 16 - Jul 22|Jul 16 - Jul 29|Jul 16 - Oct 13|Jul 17 - Aug 15|Jul 17 - Jul 17|Jul 17 - Jul 19|Jul 17 - Jul 23|Jul 17 - Jul 30|Jul 17 - Oct 14|Jul 18 - Aug 16|Jul 18 - Jul 18|Jul 18 - Jul 20|Jul 18 - Jul 24|Jul 18 - Jul 31|Jul 18 - Oct 15|Jul 19 - Aug 1|Jul 19 - Aug 17|Jul 19 - Jul 19|Jul 19 - Jul 21|Jul 19 - Jul 25|Jul 19 - Oct 16|Jul 2 - Jul 15|Jul 2 - Jul 2|Jul 2 - Jul 31|Jul 2 - Jul 4|Jul 2 - Jul 8|Jul 2 - Sep 29|Jul 20 - Aug 18|Jul 20 - Aug 2|Jul 20 - Jul 20|Jul 20 - Jul 22|Jul 20 - Jul 26|Jul 20 - Oct 17|Jul 21 - Aug 19|Jul 21 - Aug 3|Jul 21 - Jul 21|Jul 21 - Jul 23|Jul 21 - Jul 27|Jul 21 - Oct 18|Jul 22 - Aug 20|Jul 22 - Aug 4|Jul 22 - Jul 22|Jul 22 - Jul 24|Jul 22 - Jul 28|Jul 22 - Oct 19|Jul 23 - Aug 21|Jul 23 - Aug 5|Jul 23 - Jul 23|Jul 23 - Jul 25|Jul 23 - Jul 29|Jul 23 - Oct 20|Jul 24 - Aug 22|Jul 24 - Aug 6|Jul 24 - Jul 24|Jul 24 - Jul 26|Jul 24 - Jul 30|Jul 24 - Oct 21|Jul 25 - Aug 23|Jul 25 - Aug 7|Jul 25 - Jul 25|Jul 25 - Jul 27|Jul 25 - Jul 31|Jul 25 - Oct 22|Jul 26 - Aug 1|Jul 26 - Aug 24|Jul 26 - Aug 8|Jul 26 - Jul 26|Jul 26 - Jul 28|Jul 26 - Oct 23|Jul 27 - Aug 2|Jul 27 - Aug 25|Jul 27 - Aug 9|Jul 27 - Jul 27|Jul 27 - Jul 29|Jul 27 - Oct 24|Jul 28 - Aug 10|Jul 28 - Aug 26|Jul 28 - Aug 3|Jul 28 - Jul 28|Jul 28 - Jul 30|Jul 28 - Oct 25|Jul 29 - Aug 11|Jul 29 - Aug 27|Jul 29 - Aug 4|Jul 29 - Jul 29|Jul 29 - Jul 31|Jul 29 - Oct 26|Jul 3 - Aug 1|Jul 3 - Jul 16|Jul 3 - Jul 3|Jul 3 - Jul 5|Jul 3 - Jul 9|Jul 3 - Sep 30|Jul 30 - Aug 1|Jul 30 - Aug 12|Jul 30 - Aug 28|Jul 30 - Aug 5|Jul 30 - Jul 30|Jul 30 - Oct 27|Jul 31 - Aug 13|Jul 31 - Aug 2|Jul 31 - Aug 29|Jul 31 - Aug 6|Jul 31 - Jul 31|Jul 31 - Oct 28|Jul 4 - Aug 2|Jul 4 - Jul 10|Jul 4 - Jul 17|Jul 4 - Jul 4|Jul 4 - Jul 6|Jul 4 - Oct 1|Jul 5 - Aug 3|Jul 5 - Jul 11|Jul 5 - Jul 18|Jul 5 - Jul 5|Jul 5 - Jul 7|Jul 5 - Oct 2|Jul 6 - Aug 4|Jul 6 - Jul 12|Jul 6 - Jul 19|Jul 6 - Jul 6|Jul 6 - Jul 8|Jul 6 - Oct 3|Jul 7 - Aug 5|Jul 7 - Jul 13|Jul 7 - Jul 20|Jul 7 - Jul 7|Jul 7 - Jul 9|Jul 7 - Oct 4|Jul 8 - Aug 6|Jul 8 - Jul 10|Jul 8 - Jul 14|Jul 8 - Jul 21|Jul 8 - Jul 8|Jul 8 - Oct 5|Jul 9 - Aug 7|Jul 9 - Jul 11|Jul 9 - Jul 15|Jul 9 - Jul 22|Jul 9 - Jul 9|Jul 9 - Oct 6|Jun 1 - Aug 29|Jun 1 - Jun 1|Jun 1 - Jun 14|Jun 1 - Jun 3|Jun 1 - Jun 30|Jun 1 - Jun 7|Jun 10 - Jul 9|Jun 10 - Jun 10|Jun 10 - Jun 12|Jun 10 - Jun 16|Jun 10 - Jun 23|Jun 10 - Sep 7|Jun 11 - Jul 10|Jun 11 - Jun 11|Jun 11 - Jun 13|Jun 11 - Jun 17|Jun 11 - Jun 24|Jun 11 - Sep 8|Jun 12 - Jul 11|Jun 12 - Jun 12|Jun 12 - Jun 14|Jun 12 - Jun 18|Jun 12 - Jun 25|Jun 12 - Sep 9|Jun 13 - Jul 12|Jun 13 - Jun 13|Jun 13 - Jun 15|Jun 13 - Jun 19|Jun 13 - Jun 26|Jun 13 - Sep 10|Jun 14 - Jul 13|Jun 14 - Jun 14|Jun 14 - Jun 16|Jun 14 - Jun 20|Jun 14 - Jun 27|Jun 14 - Sep 11|Jun 15 - Jul 14|Jun 15 - Jun 15|Jun 15 - Jun 17|Jun 15 - Jun 21|Jun 15 - Jun 28|Jun 15 - Sep 12|Jun 16 - Jul 15|Jun 16 - Jun 16|Jun 16 - Jun 18|Jun 16 - Jun 22|Jun 16 - Jun 29|Jun 16 - Sep 13|Jun 17 - Jul 16|Jun 17 - Jun 17|Jun 17 - Jun 19|Jun 17 - Jun 23|Jun 17 - Jun 30|Jun 17 - Sep 14|Jun 18 - Jul 1|Jun 18 - Jul 17|Jun 18 - Jun 18|Jun 18 - Jun 20|Jun 18 - Jun 24|Jun 18 - Sep 15|Jun 19 - Jul 18|Jun 19 - Jul 2|Jun 19 - Jun 19|Jun 19 - Jun 21|Jun 19 - Jun 25|Jun 19 - Sep 16|Jun 2 - Aug 30|Jun 2 - Jul 1|Jun 2 - Jun 15|Jun 2 - Jun 2|Jun 2 - Jun 4|Jun 2 - Jun 8|Jun 20 - Jul 19|Jun 20 - Jul 3|Jun 20 - Jun 20|Jun 20 - Jun 22|Jun 20 - Jun 26|Jun 20 - Sep 17|Jun 21 - Jul 20|Jun 21 - Jul 4|Jun 21 - Jun 21|Jun 21 - Jun 23|Jun 21 - Jun 27|Jun 21 - Sep 18|Jun 22 - Jul 21|Jun 22 - Jul 5|Jun 22 - Jun 22|Jun 22 - Jun 24|Jun 22 - Jun 28|Jun 22 - Sep 19|Jun 23 - Jul 22|Jun 23 - Jul 6|Jun 23 - Jun 23|Jun 23 - Jun 25|Jun 23 - Jun 29|Jun 23 - Sep 20|Jun 24 - Jul 23|Jun 24 - Jul 7|Jun 24 - Jun 24|Jun 24 - Jun 26|Jun 24 - Jun 30|Jun 24 - Sep 21|Jun 25 - Jul 1|Jun 25 - Jul 24|Jun 25 - Jul 8|Jun 25 - Jun 25|Jun 25 - Jun 27|Jun 25 - Sep 22|Jun 26 - Jul 2|Jun 26 - Jul 25|Jun 26 - Jul 9|Jun 26 - Jun 26|Jun 26 - Jun 28|Jun 26 - Sep 23|Jun 27 - Jul 10|Jun 27 - Jul 26|Jun 27 - Jul 3|Jun 27 - Jun 27|Jun 27 - Jun 29|Jun 27 - Sep 24|Jun 28 - Jul 11|Jun 28 - Jul 27|Jun 28 - Jul 4|Jun 28 - Jun 28|Jun 28 - Jun 30|Jun 28 - Sep 25|Jun 29 - Jul 1|Jun 29 - Jul 12|Jun 29 - Jul 28|Jun 29 - Jul 5|Jun 29 - Jun 29|Jun 29 - Sep 26|Jun 3 - Aug 31|Jun 3 - Jul 2|Jun 3 - Jun 16|Jun 3 - Jun 3|Jun 3 - Jun 5|Jun 3 - Jun 9|Jun 30 - Jul 13|Jun 30 - Jul 2|Jun 30 - Jul 29|Jun 30 - Jul 6|Jun 30 - Jun 30|Jun 30 - Sep 27|Jun 4 - Jul 3|Jun 4 - Jun 10|Jun 4 - Jun 17|Jun 4 - Jun 4|Jun 4 - Jun 6|Jun 4 - Sep 1|Jun 5 - Jul 4|Jun 5 - Jun 11|Jun 5 - Jun 18|Jun 5 - Jun 5|Jun 5 - Jun 7|Jun 5 - Sep 2|Jun 6 - Jul 5|Jun 6 - Jun 12|Jun 6 - Jun 19|Jun 6 - Jun 6|Jun 6 - Jun 8|Jun 6 - Sep 3|Jun 7 - Jul 6|Jun 7 - Jun 13|Jun 7 - Jun 20|Jun 7 - Jun 7|Jun 7 - Jun 9|Jun 7 - Sep 4|Jun 8 - Jul 7|Jun 8 - Jun 10|Jun 8 - Jun 14|Jun 8 - Jun 21|Jun 8 - Jun 8|Jun 8 - Sep 5|Jun 9 - Jul 8|Jun 9 - Jun 11|Jun 9 - Jun 15|Jun 9 - Jun 22|Jun 9 - Jun 9|Jun 9 - Sep 6|Mar 1 - Mar 1|Mar 1 - Mar 14|Mar 1 - Mar 3|Mar 1 - Mar 30|Mar 1 - Mar 7|Mar 1 - May 29|Mar 10 - Apr 8|Mar 10 - Jun 7|Mar 10 - Mar 10|Mar 10 - Mar 12|Mar 10 - Mar 16|Mar 10 - Mar 23|Mar 11 - Apr 9|Mar 11 - Jun 8|Mar 11 - Mar 13|Mar 11 - Mar 24|Mar 12 - Apr 10|Mar 12 - Jun 9|Mar 12 - Mar 12|Mar 12 - Mar 14|Mar 12 - Mar 18|Mar 12 - Mar 25|Mar 13 - Apr 11|Mar 13 - Mar 13|Mar 13 - Mar 15|Mar 13 - Mar 19|Mar 13 - Mar 26|Mar 14 - Mar 14|Mar 14 - Mar 16|Mar 14 - Mar 20|Mar 14 - Mar 27|Mar 15 - Apr 13|Mar 15 - Jun 12|Mar 15 - Mar 15|Mar 15 - Mar 17|Mar 15 - Mar 21|Mar 16 - Apr 14|Mar 16 - Jun 13|Mar 16 - Mar 16|Mar 16 - Mar 18|Mar 16 - Mar 22|Mar 16 - Mar 29|Mar 17 - Apr 15|Mar 17 - Jun 14|Mar 17 - Mar 17|Mar 17 - Mar 19|Mar 17 - Mar 23|Mar 17 - Mar 30|Mar 18 - Apr 16|Mar 18 - Jun 15|Mar 18 - Mar 20|Mar 18 - Mar 24|Mar 18 - Mar 31|Mar 19 - Apr 1|Mar 19 - Apr 17|Mar 19 - Jun 16|Mar 19 - Mar 21|Mar 19 - Mar 25|Mar 2 - Mar 15|Mar 2 - Mar 2|Mar 2 - Mar 31|Mar 2 - Mar 4|Mar 2 - Mar 8|Mar 2 - May 30|Mar 20 - Apr 18|Mar 20 - Mar 20|Mar 20 - Mar 22|Mar 20 - Mar 26|Mar 21 - Apr 19|Mar 21 - Jun 18|Mar 21 - Mar 21|Mar 21 - Mar 23|Mar 21 - Mar 27|Mar 22 - Apr 4|Mar 22 - Jun 19|Mar 22 - Mar 22|Mar 22 - Mar 28|Mar 23 - Apr 21|Mar 23 - Apr 5|Mar 23 - Jun 20|Mar 23 - Mar 23|Mar 23 - Mar 25|Mar 23 - Mar 29|Mar 24 - Apr 22|Mar 24 - Apr 6|Mar 24 - Mar 26|Mar 24 - Mar 30|Mar 25 - Apr 23|Mar 25 - Jun 22|Mar 25 - Mar 25|Mar 25 - Mar 27|Mar 25 - Mar 31|Mar 26 - Apr 1|Mar 26 - Apr 24|Mar 26 - Jun 23|Mar 26 - Mar 26|Mar 26 - Mar 28|Mar 27 - Apr 25|Mar 27 - Apr 9|Mar 27 - Mar 27|Mar 27 - Mar 29|Mar 28 - Apr 10|Mar 28 - Apr 26|Mar 28 - Apr 3|Mar 28 - Mar 28|Mar 28 - Mar 30|Mar 29 - Apr 11|Mar 29 - Apr 27|Mar 29 - Jun 26|Mar 29 - Mar 31|Mar 3 - Apr 1|Mar 3 - Mar 16|Mar 3 - Mar 3|Mar 3 - Mar 5|Mar 3 - Mar 9|Mar 3 - May 31|Mar 30 - Apr 1|Mar 30 - Apr 12|Mar 30 - Apr 28|Mar 30 - Apr 5|Mar 30 - Jun 27|Mar 30 - Mar 30|Mar 31 - Apr 13|Mar 31 - Apr 2|Mar 31 - Apr 29|Mar 31 - Apr 6|Mar 31 - Jun 28|Mar 31 - Mar 31|Mar 4 - Apr 2|Mar 4 - Jun 1|Mar 4 - Mar 10|Mar 4 - Mar 17|Mar 4 - Mar 6|Mar 5 - Apr 3|Mar 5 - Jun 2|Mar 5 - Mar 11|Mar 5 - Mar 18|Mar 5 - Mar 5|Mar 5 - Mar 7|Mar 6 - Apr 4|Mar 6 - Jun 3|Mar 6 - Mar 12|Mar 6 - Mar 19|Mar 6 - Mar 6|Mar 6 - Mar 8|Mar 7 - Apr 5|Mar 7 - Jun 4|Mar 7 - Mar 13|Mar 7 - Mar 20|Mar 7 - Mar 7|Mar 7 - Mar 9|Mar 8 - Apr 6|Mar 8 - Jun 5|Mar 8 - Mar 10|Mar 8 - Mar 14|Mar 8 - Mar 21|Mar 8 - Mar 8|Mar 9 - Apr 7|Mar 9 - Jun 6|Mar 9 - Mar 15|Mar 9 - Mar 22|May 1 - Jul 29|May 1 - May 1|May 1 - May 14|May 1 - May 3|May 1 - May 30|May 1 - May 7|May 10 - Aug 7|May 10 - Jun 8|May 10 - May 10|May 10 - May 12|May 10 - May 16|May 10 - May 23|May 11 - Aug 8|May 11 - Jun 9|May 11 - May 11|May 11 - May 13|May 11 - May 17|May 11 - May 24|May 12 - Aug 9|May 12 - Jun 10|May 12 - May 12|May 12 - May 14|May 12 - May 18|May 12 - May 25|May 13 - Aug 10|May 13 - Jun 11|May 13 - May 13|May 13 - May 15|May 13 - May 19|May 13 - May 26|May 14 - Aug 11|May 14 - Jun 12|May 14 - May 14|May 14 - May 16|May 14 - May 20|May 14 - May 27|May 15 - Aug 12|May 15 - Jun 13|May 15 - May 15|May 15 - May 17|May 15 - May 21|May 15 - May 28|May 16 - Aug 13|May 16 - Jun 14|May 16 - May 16|May 16 - May 18|May 16 - May 22|May 16 - May 29|May 17 - Aug 14|May 17 - Jun 15|May 17 - May 17|May 17 - May 19|May 17 - May 23|May 17 - May 30|May 18 - Aug 15|May 18 - Jun 16|May 18 - May 18|May 18 - May 20|May 18 - May 24|May 18 - May 31|May 19 - Aug 16|May 19 - Jun 1|May 19 - Jun 17|May 19 - May 19|May 19 - May 21|May 19 - May 25|May 2 - Jul 30|May 2 - May 15|May 2 - May 2|May 2 - May 31|May 2 - May 4|May 2 - May 8|May 20 - Aug 17|May 20 - Jun 18|May 20 - Jun 2|May 20 - May 20|May 20 - May 22|May 20 - May 26|May 21 - Aug 18|May 21 - Jun 19|May 21 - Jun 3|May 21 - May 21|May 21 - May 23|May 21 - May 27|May 22 - Aug 19|May 22 - Jun 20|May 22 - Jun 4|May 22 - May 22|May 22 - May 24|May 22 - May 28|May 23 - Aug 20|May 23 - Jun 21|May 23 - Jun 5|May 23 - May 23|May 23 - May 25|May 23 - May 29|May 24 - Aug 21|May 24 - Jun 22|May 24 - Jun 6|May 24 - May 24|May 24 - May 26|May 24 - May 30|May 25 - Aug 22|May 25 - Jun 23|May 25 - Jun 7|May 25 - May 25|May 25 - May 27|May 25 - May 31|May 26 - Aug 23|May 26 - Jun 1|May 26 - Jun 24|May 26 - Jun 8|May 26 - May 26|May 26 - May 28|May 27 - Aug 24|May 27 - Jun 2|May 27 - Jun 25|May 27 - Jun 9|May 27 - May 27|May 27 - May 29|May 28 - Aug 25|May 28 - Jun 10|May 28 - Jun 26|May 28 - Jun 3|May 28 - May 28|May 28 - May 30|May 29 - Aug 26|May 29 - Jun 11|May 29 - Jun 27|May 29 - Jun 4|May 29 - May 29|May 29 - May 31|May 3 - Jul 31|May 3 - Jun 1|May 3 - May 16|May 3 - May 3|May 3 - May 5|May 3 - May 9|May 30 - Aug 27|May 30 - Jun 1|May 30 - Jun 12|May 30 - Jun 28|May 30 - Jun 5|May 30 - May 30|May 31 - Aug 28|May 31 - Jun 13|May 31 - Jun 2|May 31 - Jun 29|May 31 - Jun 6|May 31 - May 31|May 4 - Aug 1|May 4 - Jun 2|May 4 - May 10|May 4 - May 17|May 4 - May 4|May 4 - May 6|May 5 - Aug 2|May 5 - Jun 3|May 5 - May 11|May 5 - May 18|May 5 - May 5|May 5 - May 7|May 6 - Aug 3|May 6 - Jun 4|May 6 - May 12|May 6 - May 19|May 6 - May 6|May 6 - May 8|May 7 - Aug 4|May 7 - Jun 5|May 7 - May 13|May 7 - May 20|May 7 - May 7|May 7 - May 9|May 8 - Aug 5|May 8 - Jun 6|May 8 - May 10|May 8 - May 14|May 8 - May 21|May 8 - May 8|May 9 - Aug 6|May 9 - Jun 7|May 9 - May 11|May 9 - May 15|May 9 - May 22|May 9 - May 9|Never|Nov 1 - Jan 29|Nov 1 - Nov 1|Nov 1 - Nov 14|Nov 1 - Nov 3|Nov 1 - Nov 30|Nov 1 - Nov 7|Nov 10 - Dec 9|Nov 10 - Feb 7|Nov 10 - Nov 10|Nov 10 - Nov 12|Nov 10 - Nov 16|Nov 10 - Nov 23|Nov 11 - Dec 10|Nov 11 - Feb 8|Nov 11 - Nov 11|Nov 11 - Nov 13|Nov 11 - Nov 17|Nov 11 - Nov 24|Nov 12 - Dec 11|Nov 12 - Feb 9|Nov 12 - Nov 12|Nov 12 - Nov 14|Nov 12 - Nov 18|Nov 12 - Nov 25|Nov 13 - Dec 12|Nov 13 - Feb 10|Nov 13 - Nov 13|Nov 13 - Nov 15|Nov 13 - Nov 19|Nov 13 - Nov 26|Nov 14 - Dec 13|Nov 14 - Feb 11|Nov 14 - Nov 14|Nov 14 - Nov 16|Nov 14 - Nov 20|Nov 14 - Nov 27|Nov 15 - Dec 14|Nov 15 - Feb 12|Nov 15 - Nov 15|Nov 15 - Nov 17|Nov 15 - Nov 21|Nov 15 - Nov 28|Nov 16 - Dec 15|Nov 16 - Feb 13|Nov 16 - Nov 16|Nov 16 - Nov 18|Nov 16 - Nov 22|Nov 16 - Nov 29|Nov 17 - Dec 16|Nov 17 - Feb 14|Nov 17 - Nov 17|Nov 17 - Nov 19|Nov 17 - Nov 23|Nov 17 - Nov 30|Nov 18 - Dec 1|Nov 18 - Dec 17|Nov 18 - Feb 15|Nov 18 - Nov 18|Nov 18 - Nov 20|Nov 18 - Nov 24|Nov 19 - Dec 18|Nov 19 - Dec 2|Nov 19 - Feb 16|Nov 19 - Nov 19|Nov 19 - Nov 21|Nov 19 - Nov 25|Nov 2 - Dec 1|Nov 2 - Jan 30|Nov 2 - Nov 15|Nov 2 - Nov 2|Nov 2 - Nov 4|Nov 2 - Nov 8|Nov 20 - Dec 19|Nov 20 - Dec 3|Nov 20 - Feb 17|Nov 20 - Nov 20|Nov 20 - Nov 22|Nov 20 - Nov 26|Nov 21 - Dec 20|Nov 21 - Dec 4|Nov 21 - Feb 18|Nov 21 - Nov 21|Nov 21 - Nov 23|Nov 21 - Nov 27|Nov 22 - Dec 21|Nov 22 - Dec 5|Nov 22 - Feb 19|Nov 22 - Nov 22|Nov 22 - Nov 24|Nov 22 - Nov 28|Nov 23 - Dec 22|Nov 23 - Dec 6|Nov 23 - Feb 20|Nov 23 - Nov 23|Nov 23 - Nov 25|Nov 23 - Nov 29|Nov 24 - Dec 23|Nov 24 - Dec 7|Nov 24 - Feb 21|Nov 24 - Nov 24|Nov 24 - Nov 26|Nov 24 - Nov 30|Nov 25 - Dec 1|Nov 25 - Dec 24|Nov 25 - Dec 8|Nov 25 - Feb 22|Nov 25 - Nov 25|Nov 25 - Nov 27|Nov 26 - Dec 2|Nov 26 - Dec 25|Nov 26 - Dec 9|Nov 26 - Feb 23|Nov 26 - Nov 26|Nov 26 - Nov 28|Nov 27 - Dec 10|Nov 27 - Dec 26|Nov 27 - Dec 3|Nov 27 - Feb 24|Nov 27 - Nov 27|Nov 27 - Nov 29|Nov 28 - Dec 11|Nov 28 - Dec 27|Nov 28 - Dec 4|Nov 28 - Feb 25|Nov 28 - Nov 28|Nov 28 - Nov 30|Nov 29 - Dec 1|Nov 29 - Dec 12|Nov 29 - Dec 28|Nov 29 - Dec 5|Nov 29 - Feb 26|Nov 29 - Nov 29|Nov 3 - Dec 2|Nov 3 - Jan 31|Nov 3 - Nov 16|Nov 3 - Nov 3|Nov 3 - Nov 5|Nov 3 - Nov 9|Nov 30 - Dec 13|Nov 30 - Dec 2|Nov 30 - Dec 29|Nov 30 - Dec 6|Nov 30 - Feb 27|Nov 30 - Nov 30|Nov 4 - Dec 3|Nov 4 - Feb 1|Nov 4 - Nov 10|Nov 4 - Nov 17|Nov 4 - Nov 4|Nov 4 - Nov 6|Nov 5 - Dec 4|Nov 5 - Feb 2|Nov 5 - Nov 18|Nov 5 - Nov 5|Nov 5 - Nov 7|Nov 6 - Dec 5|Nov 6 - Feb 3|Nov 6 - Nov 12|Nov 6 - Nov 19|Nov 6 - Nov 6|Nov 6 - Nov 8|Nov 7 - Dec 6|Nov 7 - Feb 4|Nov 7 - Nov 13|Nov 7 - Nov 20|Nov 7 - Nov 7|Nov 7 - Nov 9|Nov 8 - Dec 7|Nov 8 - Feb 5|Nov 8 - Nov 10|Nov 8 - Nov 14|Nov 8 - Nov 21|Nov 8 - Nov 8|Nov 9 - Dec 8|Nov 9 - Feb 6|Nov 9 - Nov 11|Nov 9 - Nov 15|Nov 9 - Nov 22|Nov 9 - Nov 9|Oct 1 - Dec 29|Oct 1 - Oct 1|Oct 1 - Oct 14|Oct 1 - Oct 3|Oct 1 - Oct 30|Oct 1 - Oct 7|Oct 10 - Jan 7|Oct 10 - Nov 8|Oct 10 - Oct 10|Oct 10 - Oct 12|Oct 10 - Oct 16|Oct 10 - Oct 23|Oct 11 - Jan 8|Oct 11 - Nov 9|Oct 11 - Oct 11|Oct 11 - Oct 13|Oct 11 - Oct 17|Oct 11 - Oct 24|Oct 12 - Jan 9|Oct 12 - Nov 10|Oct 12 - Oct 12|Oct 12 - Oct 14|Oct 12 - Oct 18|Oct 12 - Oct 25|Oct 13 - Jan 10|Oct 13 - Nov 11|Oct 13 - Oct 13|Oct 13 - Oct 15|Oct 13 - Oct 19|Oct 13 - Oct 26|Oct 14 - Jan 11|Oct 14 - Nov 12|Oct 14 - Oct 14|Oct 14 - Oct 16|Oct 14 - Oct 20|Oct 14 - Oct 27|Oct 15 - Jan 12|Oct 15 - Nov 13|Oct 15 - Oct 15|Oct 15 - Oct 17|Oct 15 - Oct 21|Oct 15 - Oct 28|Oct 16 - Jan 13|Oct 16 - Nov 14|Oct 16 - Oct 16|Oct 16 - Oct 18|Oct 16 - Oct 22|Oct 16 - Oct 29|Oct 17 - Jan 14|Oct 17 - Nov 15|Oct 17 - Oct 17|Oct 17 - Oct 19|Oct 17 - Oct 23|Oct 17 - Oct 30|Oct 18 - Jan 15|Oct 18 - Nov 16|Oct 18 - Oct 18|Oct 18 - Oct 20|Oct 18 - Oct 24|Oct 18 - Oct 31|Oct 19 - Jan 16|Oct 19 - Nov 1|Oct 19 - Nov 17|Oct 19 - Oct 19|Oct 19 - Oct 21|Oct 19 - Oct 25|Oct 2 - Dec 30|Oct 2 - Oct 15|Oct 2 - Oct 2|Oct 2 - Oct 31|Oct 2 - Oct 4|Oct 2 - Oct 8|Oct 20 - Jan 17|Oct 20 - Nov 18|Oct 20 - Nov 2|Oct 20 - Oct 20|Oct 20 - Oct 22|Oct 20 - Oct 26|Oct 21 - Jan 18|Oct 21 - Nov 19|Oct 21 - Nov 3|Oct 21 - Oct 21|Oct 21 - Oct 23|Oct 21 - Oct 27|Oct 22 - Jan 19|Oct 22 - Nov 20|Oct 22 - Nov 4|Oct 22 - Oct 22|Oct 22 - Oct 24|Oct 22 - Oct 28|Oct 23 - Jan 20|Oct 23 - Nov 21|Oct 23 - Nov 5|Oct 23 - Oct 23|Oct 23 - Oct 25|Oct 23 - Oct 29|Oct 24 - Jan 21|Oct 24 - Nov 22|Oct 24 - Nov 6|Oct 24 - Oct 24|Oct 24 - Oct 26|Oct 24 - Oct 30|Oct 25 - Jan 22|Oct 25 - Nov 23|Oct 25 - Nov 7|Oct 25 - Oct 25|Oct 25 - Oct 27|Oct 25 - Oct 31|Oct 26 - Jan 23|Oct 26 - Nov 1|Oct 26 - Nov 24|Oct 26 - Nov 8|Oct 26 - Oct 26|Oct 26 - Oct 28|Oct 27 - Jan 24|Oct 27 - Nov 2|Oct 27 - Nov 25|Oct 27 - Nov 9|Oct 27 - Oct 27|Oct 27 - Oct 29|Oct 28 - Jan 25|Oct 28 - Nov 10|Oct 28 - Nov 26|Oct 28 - Nov 3|Oct 28 - Oct 28|Oct 28 - Oct 30|Oct 29 - Jan 26|Oct 29 - Nov 11|Oct 29 - Nov 27|Oct 29 - Nov 4|Oct 29 - Oct 29|Oct 29 - Oct 31|Oct 3 - Dec 31|Oct 3 - Nov 1|Oct 3 - Oct 16|Oct 3 - Oct 3|Oct 3 - Oct 5|Oct 3 - Oct 9|Oct 30 - Jan 27|Oct 30 - Nov 1|Oct 30 - Nov 12|Oct 30 - Nov 28|Oct 30 - Nov 5|Oct 30 - Oct 30|Oct 31 - Jan 28|Oct 31 - Nov 13|Oct 31 - Nov 2|Oct 31 - Nov 29|Oct 31 - Nov 6|Oct 31 - Oct 31|Oct 4 - Jan 1|Oct 4 - Nov 2|Oct 4 - Oct 10|Oct 4 - Oct 17|Oct 4 - Oct 4|Oct 4 - Oct 6|Oct 5 - Jan 2|Oct 5 - Nov 3|Oct 5 - Oct 11|Oct 5 - Oct 18|Oct 5 - Oct 5|Oct 5 - Oct 7|Oct 6 - Jan 3|Oct 6 - Nov 4|Oct 6 - Oct 12|Oct 6 - Oct 19|Oct 6 - Oct 6|Oct 6 - Oct 8|Oct 7 - Jan 4|Oct 7 - Nov 5|Oct 7 - Oct 13|Oct 7 - Oct 20|Oct 7 - Oct 7|Oct 7 - Oct 9|Oct 8 - Jan 5|Oct 8 - Nov 6|Oct 8 - Oct 10|Oct 8 - Oct 14|Oct 8 - Oct 21|Oct 8 - Oct 8|Oct 9 - Jan 6|Oct 9 - Nov 7|Oct 9 - Oct 11|Oct 9 - Oct 15|Oct 9 - Oct 22|Oct 9 - Oct 9|Sep 1 - Nov 29|Sep 1 - Sep 1|Sep 1 - Sep 14|Sep 1 - Sep 3|Sep 1 - Sep 30|Sep 1 - Sep 7|Sep 10 - Dec 8|Sep 10 - Oct 9|Sep 10 - Sep 10|Sep 10 - Sep 12|Sep 10 - Sep 16|Sep 10 - Sep 23|Sep 11 - Dec 9|Sep 11 - Oct 10|Sep 11 - Sep 11|Sep 11 - Sep 13|Sep 11 - Sep 17|Sep 11 - Sep 24|Sep 12 - Dec 10|Sep 12 - Oct 11|Sep 12 - Sep 12|Sep 12 - Sep 14|Sep 12 - Sep 18|Sep 12 - Sep 25|Sep 13 - Dec 11|Sep 13 - Oct 12|Sep 13 - Sep 13|Sep 13 - Sep 15|Sep 13 - Sep 19|Sep 13 - Sep 26|Sep 14 - Dec 12|Sep 14 - Oct 13|Sep 14 - Sep 14|Sep 14 - Sep 16|Sep 14 - Sep 20|Sep 14 - Sep 27|Sep 15 - Dec 13|Sep 15 - Oct 14|Sep 15 - Sep 15|Sep 15 - Sep 17|Sep 15 - Sep 21|Sep 15 - Sep 28|Sep 16 - Dec 14|Sep 16 - Oct 15|Sep 16 - Sep 16|Sep 16 - Sep 18|Sep 16 - Sep 22|Sep 16 - Sep 29|Sep 17 - Dec 15|Sep 17 - Oct 16|Sep 17 - Sep 17|Sep 17 - Sep 19|Sep 17 - Sep 23|Sep 17 - Sep 30|Sep 18 - Dec 16|Sep 18 - Oct 1|Sep 18 - Oct 17|Sep 18 - Sep 18|Sep 18 - Sep 20|Sep 18 - Sep 24|Sep 19 - Dec 17|Sep 19 - Oct 18|Sep 19 - Oct 2|Sep 19 - Sep 19|Sep 19 - Sep 21|Sep 19 - Sep 25|Sep 2 - Nov 30|Sep 2 - Oct 1|Sep 2 - Sep 15|Sep 2 - Sep 2|Sep 2 - Sep 4|Sep 2 - Sep 8|Sep 20 - Dec 18|Sep 20 - Oct 19|Sep 20 - Oct 3|Sep 20 - Sep 20|Sep 20 - Sep 22|Sep 20 - Sep 26|Sep 21 - Dec 19|Sep 21 - Oct 20|Sep 21 - Oct 4|Sep 21 - Sep 21|Sep 21 - Sep 23|Sep 21 - Sep 27|Sep 22 - Dec 20|Sep 22 - Oct 21|Sep 22 - Oct 5|Sep 22 - Sep 22|Sep 22 - Sep 24|Sep 22 - Sep 28|Sep 23 - Dec 21|Sep 23 - Oct 22|Sep 23 - Oct 6|Sep 23 - Sep 23|Sep 23 - Sep 25|Sep 23 - Sep 29|Sep 24 - Dec 22|Sep 24 - Oct 23|Sep 24 - Oct 7|Sep 24 - Sep 24|Sep 24 - Sep 26|Sep 24 - Sep 30|Sep 25 - Dec 23|Sep 25 - Oct 1|Sep 25 - Oct 24|Sep 25 - Oct 8|Sep 25 - Sep 25|Sep 25 - Sep 27|Sep 26 - Dec 24|Sep 26 - Oct 2|Sep 26 - Oct 25|Sep 26 - Oct 9|Sep 26 - Sep 26|Sep 26 - Sep 28|Sep 27 - Dec 25|Sep 27 - Oct 10|Sep 27 - Oct 26|Sep 27 - Oct 3|Sep 27 - Sep 27|Sep 27 - Sep 29|Sep 28 - Dec 26|Sep 28 - Oct 11|Sep 28 - Oct 27|Sep 28 - Oct 4|Sep 28 - Sep 28|Sep 28 - Sep 30|Sep 29 - Dec 27|Sep 29 - Oct 1|Sep 29 - Oct 12|Sep 29 - Oct 28|Sep 29 - Oct 5|Sep 29 - Sep 29|Sep 3 - Dec 1|Sep 3 - Oct 2|Sep 3 - Sep 16|Sep 3 - Sep 3|Sep 3 - Sep 5|Sep 3 - Sep 9|Sep 30 - Dec 28|Sep 30 - Oct 13|Sep 30 - Oct 2|Sep 30 - Oct 29|Sep 30 - Oct 6|Sep 30 - Sep 30|Sep 4 - Dec 2|Sep 4 - Oct 3|Sep 4 - Sep 10|Sep 4 - Sep 17|Sep 4 - Sep 4|Sep 4 - Sep 6|Sep 5 - Dec 3|Sep 5 - Oct 4|Sep 5 - Sep 11|Sep 5 - Sep 18|Sep 5 - Sep 5|Sep 5 - Sep 7|Sep 6 - Dec 4|Sep 6 - Oct 5|Sep 6 - Sep 12|Sep 6 - Sep 19|Sep 6 - Sep 6|Sep 6 - Sep 8|Sep 7 - Dec 5|Sep 7 - Oct 6|Sep 7 - Sep 13|Sep 7 - Sep 20|Sep 7 - Sep 7|Sep 7 - Sep 9|Sep 8 - Dec 6|Sep 8 - Oct 7|Sep 8 - Sep 10|Sep 8 - Sep 14|Sep 8 - Sep 21|Sep 8 - Sep 8|Sep 9 - Dec 7|Sep 9 - Oct 8|Sep 9 - Sep 11|Sep 9 - Sep 15|Sep 9 - Sep 22|Sep 9 - Sep 9 +out.params.door_area..ft2 metadata_and_annual ft2 float n/a +out.params.duct_unconditioned_surface_area..ft2 metadata_and_annual ft2 float n/a +out.params.floor_area_attic..ft2 metadata_and_annual ft2 float n/a +out.params.floor_area_attic_insulation_increase..ft2_delta_r_value metadata_and_annual r_value float n/a +out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 metadata_and_annual ach_50 float n/a +out.params.floor_area_foundation..ft2 metadata_and_annual ft2 float n/a +out.params.floor_area_lighting..ft2 metadata_and_annual ft2 float n/a +out.params.flow_rate_mechanical_ventilation..cfm metadata_and_annual cfm float n/a +out.params.rim_joist_area_above_grade_exterior..ft2 metadata_and_annual ft2 float n/a +out.params.roof_area..ft2 metadata_and_annual ft2 float n/a +out.params.size_cooling_system_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a +out.params.size_heat_pump_backup_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a +out.params.size_heating_system_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a +out.params.size_heating_system_secondary..kbtu_per_hr metadata_and_annual k_btu_h float n/a +out.params.size_water_heater..gal metadata_and_annual gal float n/a +out.params.slab_perimeter_exposed_conditioned..ft metadata_and_annual ft float n/a +out.params.wall_area_above_grade_conditioned..ft2 metadata_and_annual ft2 float n/a +out.params.wall_area_above_grade_exterior..ft2 metadata_and_annual ft2 float n/a +out.params.wall_area_below_grade..ft2 metadata_and_annual ft2 float n/a +out.params.window_area..ft2 metadata_and_annual ft2 float n/a +out.params.hvac_geothermal_loop_borehole_trench_count metadata_and_annual n/a integer n/a +out.params.hvac_geothermal_loop_borehole_trench_length..ft metadata_and_annual ft float n/a +out.electricity.ceiling_fan.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.clothes_washer.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.cooling_fans_pumps.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.cooling.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.dishwasher.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.ev_charging.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.freezer.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.heating_fans_pumps.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.heating_hp_bkup.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.heating_hp_bkup_fa.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.heating.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.permanent_spa_pump.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.hot_water_solar_th.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_exterior.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_garage.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_interior.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.mech_vent.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.plug_loads.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.pool_heater.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.pool_pump.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.pv.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.refrigerator.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.television.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.well_pump.energy_consumption..kwh metadata_and_annual kwh float n/a +out.fuel_oil.heating.energy_consumption..kwh metadata_and_annual kwh float n/a +out.fuel_oil.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.fireplace.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.grill.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.heating.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.lighting.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.pool_heater.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a +out.propane.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a +out.propane.heating.energy_consumption..kwh metadata_and_annual kwh float n/a +out.propane.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a +out.propane.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a +out.site_energy.net.energy_consumption..kwh metadata_and_annual kwh float n/a +out.site_energy.total.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.net.energy_consumption..kwh metadata_and_annual kwh float n/a +out.electricity.total.energy_consumption..kwh metadata_and_annual kwh float n/a +out.fuel_oil.total.energy_consumption..kwh metadata_and_annual kwh float n/a +out.natural_gas.total.energy_consumption..kwh metadata_and_annual kwh float n/a +out.propane.total.energy_consumption..kwh metadata_and_annual kwh float n/a +out.hot_water.clothes_washer..gal metadata_and_annual gal float n/a +out.hot_water.dishwasher..gal metadata_and_annual gal float n/a +out.hot_water.distribution_waste..gal metadata_and_annual gal float n/a +out.hot_water.fixtures..gal metadata_and_annual gal float n/a +out.capacity.cooling..btu_per_hr metadata_and_annual btu_h float n/a +out.capacity.heat_pump_backup..btu_per_hr metadata_and_annual btu_h float n/a +out.capacity.heating..btu_per_hr metadata_and_annual btu_h float n/a +out.load.cooling.energy_delivered..kbtu metadata_and_annual kbtu float n/a +out.load.heating.energy_delivered..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_delivered..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_solar_thermal..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_tank_losses..kbtu metadata_and_annual kbtu float n/a +out.load.cooling.peak..kbtu_per_hr metadata_and_annual kbtu_hr float n/a +out.load.heating.peak..kbtu_per_hr metadata_and_annual kbtu_hr float n/a +out.qoi.electricity.maximum_daily_peak_summer..kw metadata_and_annual kw float n/a +out.qoi.electricity.maximum_daily_peak_winter..kw metadata_and_annual kw float n/a +out.unmet_hours.cooling..hr metadata_and_annual hr float n/a +out.unmet_hours.ev_driving..hr metadata_and_annual hr float n/a +out.unmet_hours.heating..hr metadata_and_annual hr float n/a +out.emissions.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a +out.utility_bills.electricity_bill..usd metadata_and_annual usd float n/a +out.utility_bills.fuel_oil_bill..usd metadata_and_annual usd float n/a +out.utility_bills.natural_gas_bill..usd metadata_and_annual usd float n/a +out.utility_bills.propane_bill..usd metadata_and_annual usd float n/a +out.utility_bills.total_bill..usd metadata_and_annual usd float n/a +out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w metadata_and_annual w integer n/a +out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a +out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a +out.params.panel_load_clothes_dryer..w metadata_and_annual w integer n/a +out.params.panel_load_cooling..w metadata_and_annual w integer n/a +out.params.panel_load_dishwasher..w metadata_and_annual w integer n/a +out.params.panel_load_ev_charging..w metadata_and_annual w integer n/a +out.params.panel_load_heating..w metadata_and_annual w integer n/a +out.params.panel_load_hot_water..w metadata_and_annual w integer n/a +out.params.panel_load_mech_vent..w metadata_and_annual w integer n/a +out.params.panel_load_other..w metadata_and_annual w integer n/a +out.params.panel_load_permanent_spa_heat..w metadata_and_annual w integer n/a +out.params.panel_load_permanent_spa_pump..w metadata_and_annual w integer n/a +out.params.panel_load_pool_heater..w metadata_and_annual w integer n/a +out.params.panel_load_pool_pump..w metadata_and_annual w integer n/a +out.params.panel_load_range_oven..w metadata_and_annual w integer n/a +out.params.panel_load_.well_pump..w metadata_and_annual n/a integer n/a +in.electric_panel_breaker_space_total_count metadata_and_annual count integer 8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60 +out.params.panel_breaker_space_occupied_count metadata_and_annual count integer 8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|43 +out.params.panel_breaker_space_headroom_count metadata_and_annual count integer 0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42 +out.params.panel_breaker_space_clothes_dryer_count metadata_and_annual count integer 0|2 +out.params.panel_breaker_space_cooling_count metadata_and_annual count integer 0|2|3|4|5|6|7|8|10|12|13|14|15|16 +out.params.panel_breaker_space_dishwasher_count metadata_and_annual count integer 0|1 +out.params.panel_breaker_space_ev_charging_count metadata_and_annual count integer 0|1|2 +out.params.panel_breaker_space_heating_count metadata_and_annual count integer 0|1|2|3|4|5|6|8|10|12|14|16|18|20|22|24|26 +out.params.panel_breaker_space_hot_water_count metadata_and_annual count integer 0|2|4|6 +out.params.panel_breaker_space_mech_vent_count metadata_and_annual count integer 2 +out.params.panel_breaker_space_other_count metadata_and_annual count integer 6 +out.params.panel_breaker_space_permanent_spa_heat_count metadata_and_annual count integer 0|2 +out.params.panel_breaker_space_permanent_spa_pump_count metadata_and_annual count integer 0|2 +out.params.panel_breaker_space_pool_heater_count metadata_and_annual count integer 0|2|6 +out.params.panel_breaker_space_pool_pump_count metadata_and_annual count integer 0|2 +out.params.panel_breaker_space_range_oven_count metadata_and_annual count integer 0|2 +out.params.panel_breaker_space_well_pump_count metadata_and_annual count integer 0|2 +out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w metadata_and_annual w integer n/a +out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a +out.params.panel_breaker_space_occupied_savings_count metadata_and_annual count integer 0|1|2|3|4|5|6|7|8|9|10|11|12|13|15|17|19|21|23|25 +out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based metadata_and_annual bool boolean False|True +out.params.panel_constraint_breaker_space metadata_and_annual bool boolean FALSE +out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based metadata_and_annual categorical string Capacity Constrained Only|No Constraint +out.energy_burden..percentage metadata_and_annual percentage float n/a +out.electricity.ceiling_fan.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.clothes_washer.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.cooling_fans_pumps.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.cooling.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.dishwasher.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.ev_charging.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.freezer.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.heating_fans_pumps.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.heating_hp_bkup.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.heating_hp_bkup_fa.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.heating.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.permanent_spa_pump.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.hot_water_solar_th.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_exterior.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_garage.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.lighting_interior.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.mech_vent.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.plug_loads.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.pool_heater.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.pool_pump.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.pv.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.refrigerator.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.television.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.well_pump.energy_savings..kwh metadata_and_annual kwh float n/a +out.fuel_oil.heating.energy_savings..kwh metadata_and_annual kwh float n/a +out.fuel_oil.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.fireplace.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.grill.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.heating.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.lighting.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.pool_heater.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a +out.propane.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a +out.propane.heating.energy_savings..kwh metadata_and_annual kwh float n/a +out.propane.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a +out.propane.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a +out.site_energy.net.energy_savings..kwh metadata_and_annual kwh float n/a +out.site_energy.total.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.net.energy_savings..kwh metadata_and_annual kwh float n/a +out.electricity.total.energy_savings..kwh metadata_and_annual kwh float n/a +out.fuel_oil.total.energy_savings..kwh metadata_and_annual kwh float n/a +out.natural_gas.total.energy_savings..kwh metadata_and_annual kwh float n/a +out.propane.total.energy_savings..kwh metadata_and_annual kwh float n/a +out.load.cooling.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a +out.load.heating.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_solar_thermal_savings..kbtu metadata_and_annual kbtu float n/a +out.load.hot_water.energy_tank_losses_savings..kbtu metadata_and_annual kbtu float n/a +out.load.cooling.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr float n/a +out.load.heating.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr float n/a +out.qoi.electricity.maximum_daily_peak_savings_summer..kw metadata_and_annual kw float n/a +out.qoi.electricity.maximum_daily_peak_savings_winter..kw metadata_and_annual kw float n/a +out.unmet_hours_reduction.cooling..hr metadata_and_annual hour float n/a +out.unmet_hours_reduction.heating..hr metadata_and_annual hour float n/a +out.emissions.fuel_oil.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions.natural_gas.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions.propane.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions_reduction.fuel_oil.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions_reduction.natural_gas.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions_reduction.propane.total..co2e_kg metadata_and_annual n/a float n/a +out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a +out.emissions_reduction.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a +out.utility_bills.electricity_bill_savings..usd metadata_and_annual usd float n/a +out.utility_bills.fuel_oil_bill_savings..usd metadata_and_annual usd float n/a +out.utility_bills.natural_gas_bill_savings..usd metadata_and_annual usd float n/a +out.utility_bills.propane_bill_savings..usd metadata_and_annual usd float n/a +out.utility_bills.total_bill_savings..usd metadata_and_annual usd float n/a +out.energy_burden_savings..percentage metadata_and_annual percentage float n/a +out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.pv.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.television.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.television.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.propane.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.site_energy.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +out.site_energy.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a +upgrade.electric_vehicle_charger metadata_and_annual n/a boolean None +upgrade.electric_vehicle_efficiency_increase metadata_and_annual n/a boolean None +upgrade.electric_vehicle_ownership metadata_and_annual n/a boolean None +upgrade.heating_fuel metadata_and_annual n/a string Natural Gas|None +upgrade.hvac_cooling_efficiency metadata_and_annual n/a string "AC, SEER 15|AC, SEER2 13.4|AC, SEER2 14.3|Ducted Heat Pump|Room AC, EER 12.0|None" +upgrade.hvac_cooling_partial_space_conditioning metadata_and_annual n/a boolean None +upgrade.hvac_heating_efficiency metadata_and_annual n/a string "ASHP, SEER2 14.3, 7.5 HSPF2|Electric Baseboard, 100% Efficiency|Electric Boiler, 100% AFUE|Electric Furnace, 100% AFUE|Electric Wall Furnace, 100% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 83% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 83% AFUE|Fuel Furnace, 88% AFUE|Fuel Furnace, 92.5% AFUE|Fuel Furnace, 95% AFUE|Fuel Wall/Floor Furnace, 60% AFUE|Fuel Wall/Floor Furnace, 68% AFUE|None" +upgrade.hvac_heating_type_and_fuel metadata_and_annual n/a string Natural Gas Fuel Furnace|None +upgrade.infiltration_reduction metadata_and_annual n/a boolean None +upgrade.insulation_ceiling metadata_and_annual n/a boolean None +upgrade.water_heater_efficiency metadata_and_annual n/a boolean None +upgrade.water_heater_fuel metadata_and_annual n/a boolean None +upgrade.hvac_detailed_performance_data metadata_and_annual n/a boolean None +upgrade.demand_flexibility_electric_vehicle metadata_and_annual n/a boolean None +upgrade.demand_flexibility_hvac metadata_and_annual n/a boolean None +upgrade.demand_flexibility_random_shift metadata_and_annual n/a boolean None +upgrade.duct_leakage_and_insulation metadata_and_annual n/a boolean None +upgrade.infiltration metadata_and_annual n/a boolean None +upgrade.insulation_wall metadata_and_annual n/a boolean None +upgrade.windows metadata_and_annual n/a boolean None +calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.clothes_washer.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.cooling.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.dishwasher.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.ev_charging.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.freezer.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_garage.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_interior.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.mech_vent.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.net.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.plug_loads.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pool_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pv.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.refrigerator.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.television.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.well_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.fireplace.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.grill.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.lighting.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.site_energy.net.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.site_energy.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a +calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions.propane.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.propane.total..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.electricity.ceiling_fan.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.clothes_washer.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.cooling.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.dishwasher.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.ev_charging.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.freezer.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_exterior.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_garage.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.lighting_interior.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.mech_vent.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.net.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.plug_loads.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pool_heater.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pool_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.pv.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.refrigerator.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.television.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.total.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.electricity.well_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.fuel_oil.total.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.fireplace.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.grill.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.lighting.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.pool_heater.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.natural_gas.total.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.propane.total.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.site_energy.net.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.site_energy.total.energy_savings..tbtu metadata_and_annual tbtu float n/a +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a +models_used timeseries_aggregates n/a n/a n/a +units_represented timeseries_aggregates n/a n/a n/a +out.electricity.ceiling_fan.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.clothes_washer.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.cooling.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.cooling_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.dishwasher.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.ev_charging.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.freezer.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.heating_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.heating_hp_bkup_fa.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.hot_water_solar_th.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.lighting_exterior.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.lighting_garage.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.lighting_interior.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.mech_vent.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.net.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.permanent_spa_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.plug_loads.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.pool_heater.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.pool_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.pv.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.refrigerator.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.television.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.total.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.electricity.well_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.fuel_oil.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.fuel_oil.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.fuel_oil.total.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.fireplace.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.grill.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.lighting.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.pool_heater.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.natural_gas.total.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.propane.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.propane.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.propane.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.propane.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.propane.total.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.site_energy.net.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.site_energy.total.energy_consumption..kwh timeseries_aggregates n/a float n/a +out.emissions.electricity.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.electricity.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.natural_gas.total..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.propane.total..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.fuel_oil.total..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a float n/a +out.emissions.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a float n/a +out.load.cooling.energy_delivered..kbtu timeseries_aggregates n/a float n/a +out.load.heating.energy_delivered..kbtu timeseries_aggregates n/a float n/a +out.load.heating_heat_pump_backup..kbtu timeseries_aggregates n/a float n/a +out.load.hot_water.energy_delivered..kbtu timeseries_aggregates n/a float n/a +out.load.hot_water_solar_thermal..kbtu timeseries_aggregates n/a float n/a +out.load.hot_water_tank_losses..kbtu timeseries_aggregates n/a float n/a From 4b4c1648721363dd2b659c00a6df3392dcf44db9 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 8 Oct 2025 15:22:57 -0600 Subject: [PATCH 17/82] out.component_load.XXX is not published in OEDI --- .../publication/sdr_column_definitions.csv | 80 +++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index e51f97b523..c5a638bc7c 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -445,46 +445,46 @@ Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_heate Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,yes,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,yes,yes,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,yes,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, Calculated,yes,yes,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure From db8200e91bbc7b2e3310beba54e3ed9bb6f6b36c Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 9 Oct 2025 18:07:56 -0600 Subject: [PATCH 18/82] Publish In Full for meta data --- .../resources/publication/data_dictionary.tsv | 1869 +++++++++-------- .../publication/sdr_column_definitions.csv | 20 +- 2 files changed, 1033 insertions(+), 856 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index edf479d86a..19a6ecd284 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -1,846 +1,1023 @@ -field_name field_location units field_description -bldg_id metadata_and_annual n/a The building unit number (between 1 and the number of samples). -completed_status metadata_and_annual n/a The simulation status. -upgrade metadata_and_annual n/a The upgrade number -in.upgrade_name metadata_and_annual n/a User-specificed name that describes the upgrade. -weight metadata_and_annual n/a Number of buildings this simulation represents. -applicability metadata_and_annual n/a Whether the upgrade is applicable to the building. Will be always True for baseline. -in.sqft..ft2 metadata_and_annual ft2 "Floor Area, Conditioned" -in.representative_income metadata_and_annual usd Average representative income of the country -in.county_name metadata_and_annual n/a County name -in.ahs_region metadata_and_annual n/a The American Housing Survey region that the sample is located. -in.aiannh_area metadata_and_annual n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -in.area_median_income metadata_and_annual n/a Area median income of the household occupying the dwelling unit. -in.ashrae_iecc_climate_zone_2004 metadata_and_annual n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -in.ashrae_iecc_climate_zone_2004_sub_cz_split metadata_and_annual n/a "Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." -in.bathroom_spot_vent_hour metadata_and_annual n/a Bathroom spot ventilation daily start hour. -in.battery metadata_and_annual n/a The size of an onsite battery (not used in baseline models). -in.bedrooms metadata_and_annual n/a The number of bedrooms in the dwelling unit. -in.building_america_climate_zone metadata_and_annual n/a The Building America Climate Zone that the sample is located. -in.cec_climate_zone metadata_and_annual n/a The California Energy Commission Climate Zone that the sample is located. -in.ceiling_fan metadata_and_annual n/a Presence and energy usage of ceiling fans at medium speed. -in.census_division metadata_and_annual n/a The U.S. Census Division that the sample is located. -in.census_division_recs metadata_and_annual n/a "Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." -in.census_region metadata_and_annual n/a The U.S. Census Region that the sample is located. -in.city metadata_and_annual n/a The City that the sample is located. -in.clothes_dryer metadata_and_annual n/a "The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." -in.clothes_dryer_usage_level metadata_and_annual n/a Clothes dryer energy usage level multiplier. -in.clothes_washer metadata_and_annual n/a Presence and rated efficiency of the clothes washer. -in.clothes_washer_presence metadata_and_annual n/a The presence of a clothes washer in the dwelling unit. -in.clothes_washer_usage_level metadata_and_annual n/a Clothes washer energy usage level multiplier. -in.cooking_range metadata_and_annual n/a Presence and fuel type of the cooking range. -in.cooking_range_usage_level metadata_and_annual n/a Cooking range energy usage level multiplier. -in.cooling_unavailable_days metadata_and_annual n/a Number of days in a year the cooling system is unavailable. -in.cooling_setpoint metadata_and_annual n/a Baseline cooling setpoint with no offset applied. -in.cooling_setpoint_has_offset metadata_and_annual n/a Presence of a cooling setpoint offset. -in.cooling_setpoint_offset_magnitude metadata_and_annual n/a The magnitude of cooling setpoint offset. -in.cooling_setpoint_offset_period metadata_and_annual n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -in.corridor metadata_and_annual n/a Type of corridor attached to multi-family units. -in.county metadata_and_annual n/a The U.S. County that the sample is located. -in.county_and_puma metadata_and_annual n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -in.county_metro_status metadata_and_annual n/a "The Metro Status of the county that the sample is located, based on MSA and MicroSA." -in.custom_state metadata_and_annual n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -in.dehumidifier metadata_and_annual n/a "Presence, water removal rate, and humidity setpoint of the dehumidifier." -in.dishwasher metadata_and_annual n/a The presence and rated efficiency of the dishwasher. -in.dishwasher_usage_level metadata_and_annual n/a Dishwasher energy usage level multiplier. -in.door_area metadata_and_annual n/a Area of exterior doors. -in.doors metadata_and_annual n/a Exterior door material and properties. -in.duct_leakage_and_insulation metadata_and_annual n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -in.duct_location metadata_and_annual n/a Location of Duct System. -in.eaves metadata_and_annual n/a Depth of roof eaves. -in.electric_panel_service_rating..a metadata_and_annual amp The rating of electric panel in Ampere. -in.electric_panel_service_rating_bin..a metadata_and_annual amp The rating bin of electric panel in Ampere. -in.electric_vehicle_battery metadata_and_annual n/a The type of electric vehicle and battery range in miles. -in.electric_vehicle_charge_at_home metadata_and_annual n/a The percentage a household would or do charge their electric vehicle at home. -in.electric_vehicle_charger metadata_and_annual n/a Type of electric vehicle charger used at the dwelling unit. -in.electric_vehicle_miles_traveled metadata_and_annual n/a "The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." -in.electric_vehicle_outlet_access metadata_and_annual n/a The unit has an outlet within 20 feet of vehicle parking. -in.electric_vehicle_ownership metadata_and_annual n/a The dwelling unit owns an electric vehicle. -in.energystar_climate_zone_2023 metadata_and_annual n/a "Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." -in.federal_poverty_level metadata_and_annual n/a Federal poverty level of the household occupying the dwelling unit. -in.generation_and_emissions_assessment_region metadata_and_annual n/a The generation and carbon emissions assessment region that the sample is located in. -in.geometry_attic_type metadata_and_annual n/a The dwelling unit attic type. -in.geometry_building_horizontal_location_mf metadata_and_annual n/a "Location of the single-family attached unit horizontally within the building (left, middle, right)." -in.geometry_building_horizontal_location_sfa metadata_and_annual n/a "Location of the single-family attached unit horizontally within the building (left, middle, right)." -in.geometry_building_level_mf metadata_and_annual n/a "Location of the multi-family unit vertically within the building (bottom, middle, top)." -in.geometry_building_number_units_mf metadata_and_annual n/a The number of dwelling units in the multi-family building. -in.geometry_building_number_units_sfa metadata_and_annual n/a Number of units in the single-family attached building. -in.geometry_building_type_acs metadata_and_annual n/a The building type classification according to the U.S. Census American Community Survey. -in.geometry_building_type_height metadata_and_annual n/a "The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." -in.geometry_building_type_recs metadata_and_annual n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. -in.geometry_floor_area metadata_and_annual n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -in.geometry_floor_area_bin metadata_and_annual n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. -in.geometry_foundation_type metadata_and_annual n/a The type of foundation. -in.geometry_garage metadata_and_annual n/a The size of an attached garage. -in.geometry_space_combination metadata_and_annual n/a "Valid combinations of building type, building level mf, attic, foundation, and garage." -in.geometry_stories metadata_and_annual n/a The number of building stories. -in.geometry_stories_low_rise metadata_and_annual n/a Number of building stories for low-rise buildings. -in.geometry_story_bin metadata_and_annual n/a The building has more than 8 or less than 8 stories. -in.geometry_wall_exterior_finish metadata_and_annual n/a Wall siding material and color. -in.geometry_wall_type metadata_and_annual n/a The wall material used for thermal mass calculations of exterior walls. -in.ground_thermal_conductivity metadata_and_annual n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -in.has_pv metadata_and_annual n/a The dwelling unit has a rooftop photovoltaic system. -in.heating_fuel metadata_and_annual n/a The primary fuel used for heating the dwelling unit. -in.heating_unavailable_days metadata_and_annual n/a Number of days in a year the heating system is unavailable. -in.heating_setpoint metadata_and_annual n/a Baseline heating setpoint with no offset applied. -in.heating_setpoint_has_offset metadata_and_annual n/a Presence of a heating setpoint offset. -in.heating_setpoint_offset_magnitude metadata_and_annual n/a Magnitude of the heating setpoint offset. -in.heating_setpoint_offset_period metadata_and_annual n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -in.holiday_lighting metadata_and_annual n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). -in.hot_water_distribution metadata_and_annual n/a Type of distribution system and presence of hot water piping insulation. -in.hot_water_fixtures metadata_and_annual n/a Hot water fixture usage and flow levels. -in.household_has_tribal_persons metadata_and_annual n/a The household occupying the dwelling unit has at least one tribal person in the household. -in.hvac_cooling_autosizing_factor metadata_and_annual n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -in.hvac_cooling_efficiency metadata_and_annual n/a The presence and efficiency of primary cooling system in the dwelling unit. -in.hvac_cooling_partial_space_conditioning metadata_and_annual n/a The fraction of the finished floor area that the cooling system provides cooling. -in.hvac_cooling_type metadata_and_annual n/a The presence and type of primary cooling system in the dwelling unit. -in.hvac_has_ducts metadata_and_annual n/a The presence of ducts in the dwelling unit. -in.hvac_has_shared_system metadata_and_annual n/a The presence of an HVAC system shared between multiple dwelling units. -in.hvac_has_zonal_electric_heating metadata_and_annual n/a Presence of electric baseboard heating. -in.hvac_heating_autosizing_factor metadata_and_annual n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -in.hvac_heating_efficiency metadata_and_annual n/a The presence and efficiency of the primary heating system in the dwelling unit. -in.hvac_heating_type metadata_and_annual n/a The presence and type of the primary heating system in the dwelling unit. -in.hvac_heating_type_and_fuel metadata_and_annual n/a "The presence, type, and fuel of primary heating system." -in.hvac_secondary_heating_efficiency metadata_and_annual n/a The efficiency and type of the secondary heating system. -in.hvac_secondary_heating_fuel metadata_and_annual n/a Secondary Heating Fuel for the dwelling unit -in.hvac_secondary_heating_partial_space_conditioning metadata_and_annual n/a The fraction of heating load served by secondary heating system. -in.hvac_secondary_heating_type metadata_and_annual n/a The efficiency and type of the secondary heating system. -in.hvac_shared_efficiencies metadata_and_annual n/a The presence and efficiency of the shared HVAC system. -in.hvac_system_is_faulted metadata_and_annual n/a The presence of the HVAC system having a fault (not used). -in.hvac_system_is_scaled metadata_and_annual n/a Whether the HVAC system has been undersized or oversized (not used). -in.hvac_system_single_speed_ac_airflow metadata_and_annual n/a Single speed central and room air conditioner actual air flow rates. -in.hvac_system_single_speed_ac_charge metadata_and_annual n/a Central and room air conditioner deviation between design/installed charge. -in.hvac_system_single_speed_ashp_airflow metadata_and_annual n/a Single speed air source heat pump actual air flow rates. -in.hvac_system_single_speed_ashp_charge metadata_and_annual n/a Air source heat pump deviation between design/installed charge. -in.income metadata_and_annual n/a Income of the household occupying the dwelling unit. -in.income_recs_2015 metadata_and_annual n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -in.income_recs_2020 metadata_and_annual n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. -in.infiltration metadata_and_annual n/a Total infiltration to the dwelling unit. -in.insulation_ceiling metadata_and_annual n/a Ceiling insulation level (between the living space and unconditioned attic). -in.insulation_floor metadata_and_annual n/a Floor insulation level. -in.insulation_foundation_wall metadata_and_annual n/a Foundation walls insulation level. -in.insulation_rim_joist metadata_and_annual n/a Insulation level for rim joists. -in.insulation_roof metadata_and_annual n/a Finished roof insulation level. -in.insulation_slab metadata_and_annual n/a Slab insulation level. -in.insulation_wall metadata_and_annual n/a Wall construction type and insulation level. -in.interior_shading metadata_and_annual n/a Type of window interior shading. -in.iso_rto_region metadata_and_annual n/a The independent system operator or regional transmission organization region that the sample is located. -in.lighting metadata_and_annual n/a "Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." -in.lighting_interior_use metadata_and_annual n/a Interior lighting usage relative to the national average. -in.lighting_other_use metadata_and_annual n/a Exterior and garage lighting usage relative to the national average. -in.location_region metadata_and_annual n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. -in.mechanical_ventilation metadata_and_annual n/a Mechanical ventilation type and efficiency. -in.metropolitan_and_micropolitan_statistical_area metadata_and_annual n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. -in.misc_extra_refrigerator metadata_and_annual n/a The presence and rated efficiency of the secondary refrigerator. -in.misc_freezer metadata_and_annual n/a The presence and rated efficiency of a standalone freezer. -in.misc_gas_fireplace metadata_and_annual n/a Presence of a gas fireplace.` -in.misc_gas_grill metadata_and_annual n/a Presence of a gas grill. -in.misc_gas_lighting metadata_and_annual n/a Presence of exterior gas lighting. -in.misc_hot_tub_spa metadata_and_annual n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. -in.misc_pool metadata_and_annual n/a The presence of a pool at the dwelling unit. -in.misc_pool_heater metadata_and_annual n/a The heating fuel of the pool heater if there is a pool. -in.misc_pool_pump metadata_and_annual n/a Presence and size of pool pump. -in.misc_well_pump metadata_and_annual n/a Presence of well pump according to the use of well for domestic water source. -in.natural_ventilation metadata_and_annual n/a Schedule of natural ventilation from windows. -in.neighbors metadata_and_annual n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -in.occupants metadata_and_annual n/a The number of occupants living in the dwelling unit. -in.orientation metadata_and_annual n/a Orientation of the front of the dwelling unit as it faces the street. -in.overhangs metadata_and_annual n/a "Presence, depth, and location of window overhangs" -in.plug_load_diversity metadata_and_annual n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -in.plug_loads metadata_and_annual n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. -in.puma metadata_and_annual n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -in.puma_metro_status metadata_and_annual n/a The public use microdata area metropolitan status that the dwelling unit is located. -in.pv_orientation metadata_and_annual n/a The orientation of the photovoltaic system. -in.pv_system_size metadata_and_annual n/a The size of the photovoltaic system. -in.radiant_barrier metadata_and_annual n/a Presence of radiant barrier in the attic (not modeled). -in.range_spot_vent_hour metadata_and_annual n/a Range spot ventilation daily start hour. -in.reeds_balancing_area metadata_and_annual n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. -in.refrigerator metadata_and_annual n/a The presence and rated efficiency of the primary refrigerator. -in.refrigerator_usage_level metadata_and_annual n/a Refrigerator energy usage level multiplier. -in.roof_material metadata_and_annual n/a Roof material and color. -in.state metadata_and_annual n/a The U.S. State the sample is located. -in.state_metro_median_income metadata_and_annual n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. -in.tenure metadata_and_annual n/a The tenancy (owner or renter) of the household occupying the dwelling unit. -in.usage_level metadata_and_annual n/a Usage of major appliances relative to the national average. -in.vacancy_status metadata_and_annual n/a The vacancy status (occupied or vacant) of the dwelling unit. -in.vintage metadata_and_annual n/a Time period in which the building was constructed. -in.vintage_acs metadata_and_annual n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. -in.water_heater_efficiency metadata_and_annual n/a "The efficiency, type, and heating fuel of water heater." -in.water_heater_fuel metadata_and_annual n/a The water heater fuel type. -in.water_heater_in_unit metadata_and_annual n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -in.water_heater_location metadata_and_annual n/a location of water heater. -in.window_areas metadata_and_annual n/a "Window to wall ratios of the front, back, left, and right walls." -in.windows metadata_and_annual n/a Construction type and efficiency levels of windows. -in.air_leakage_to_outside_ach50 metadata_and_annual n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -in.applicable metadata_and_annual n/a The measure was applied to the workflow. -in.buildstock_csv_path metadata_and_annual n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -in.units_represented metadata_and_annual n/a The number of dwelling units this simulation represents. Should always be one. -in.simulation_control_run_period_begin_day_of_month metadata_and_annual n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -in.simulation_control_run_period_begin_month metadata_and_annual n/a "This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -in.simulation_control_run_period_calendar_year metadata_and_annual n/a "This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -in.simulation_control_run_period_end_day_of_month metadata_and_annual n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -in.simulation_control_run_period_end_month metadata_and_annual n/a "This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." -in.simulation_control_timestep metadata_and_annual n/a Value must be a divisor of 60. -in.utility_bill_electricity_fixed_charges metadata_and_annual usd "Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -in.utility_bill_electricity_marginal_rates metadata_and_annual usd "Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -in.utility_bill_fuel_oil_fixed_charges metadata_and_annual usd "Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -in.utility_bill_fuel_oil_marginal_rates metadata_and_annual usd "Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -in.utility_bill_natural_gas_fixed_charges metadata_and_annual usd "Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -in.utility_bill_natural_gas_marginal_rates metadata_and_annual usd "Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -in.utility_bill_propane_fixed_charges metadata_and_annual usd "Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -in.utility_bill_propane_marginal_rates metadata_and_annual usd "Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -in.utility_bill_scenario_names metadata_and_annual n/a "Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." -in.utility_bill_simple_filepaths metadata_and_annual n/a "Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -in.weather_file_city metadata_and_annual n/a City from the EPW weather file. -in.weather_file_latitude metadata_and_annual n/a Latitude from the EPW weather file. -in.weather_file_longitude metadata_and_annual n/a Longitude from the EPW weather file. -in.heating_unavailable_period metadata_and_annual n/a Heating unavailable period. -in.cooling_unavailable_period metadata_and_annual n/a Cooling unavailable period. -out.params.door_area..ft2 metadata_and_annual ft2 Door Area -out.params.duct_unconditioned_surface_area..ft2 metadata_and_annual ft2 Duct Unconditioned Surface Area -out.params.floor_area_attic..ft2 metadata_and_annual ft2 "Floor Area, Attic" -out.params.floor_area_attic_insulation_increase..ft2_delta_r_value metadata_and_annual r_value "Floor Area, Attic * Insulation Increase" -out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 metadata_and_annual ach_50 "Floor Area, Conditioned * Infiltration Reduction" -out.params.floor_area_foundation..ft2 metadata_and_annual ft2 "Floor Area, Foundation" -out.params.floor_area_lighting..ft2 metadata_and_annual ft2 "Floor Area, Lighting" -out.params.flow_rate_mechanical_ventilation..cfm metadata_and_annual cfm "Flow Rate, Mechanical Ventilation" -out.params.rim_joist_area_above_grade_exterior..ft2 metadata_and_annual ft2 "Rim Joist Area, Above-Grade, Exterior" -out.params.roof_area..ft2 metadata_and_annual ft2 Roof Area -out.params.size_cooling_system_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Cooling System Primary" -out.params.size_heat_pump_backup_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heat Pump Backup Primary" -out.params.size_heating_system_primary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heating System Primary" -out.params.size_heating_system_secondary..kbtu_per_hr metadata_and_annual k_btu_h "Size, Heating System Secondary" -out.params.size_water_heater..gal metadata_and_annual gal "Size, Water Heater" -out.params.slab_perimeter_exposed_conditioned..ft metadata_and_annual ft "Slab Perimeter, Exposed, Conditioned" -out.params.wall_area_above_grade_conditioned..ft2 metadata_and_annual ft2 "Wall Area, Above-Grade, Conditioned" -out.params.wall_area_above_grade_exterior..ft2 metadata_and_annual ft2 "Wall Area, Above-Grade, Exterior" -out.params.wall_area_below_grade..ft2 metadata_and_annual ft2 "Wall Area, Below-Grade" -out.params.window_area..ft2 metadata_and_annual ft2 Window Area -out.params.hvac_geothermal_loop_borehole_trench_count metadata_and_annual n/a Number of boreholes used for the geothermal heat pump system. -out.params.hvac_geothermal_loop_borehole_trench_length..ft metadata_and_annual ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -out.electricity.ceiling_fan.energy_consumption..kwh metadata_and_annual kwh -out.electricity.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh -out.electricity.clothes_washer.energy_consumption..kwh metadata_and_annual kwh -out.electricity.cooling_fans_pumps.energy_consumption..kwh metadata_and_annual kwh Supply fan (air distribution) or circulating pump (geothermal loop) -out.electricity.cooling.energy_consumption..kwh metadata_and_annual kwh Excludes fans/pumps -out.electricity.dishwasher.energy_consumption..kwh metadata_and_annual kwh -out.electricity.ev_charging.energy_consumption..kwh metadata_and_annual kwh -out.electricity.freezer.energy_consumption..kwh metadata_and_annual kwh -out.electricity.heating_fans_pumps.energy_consumption..kwh metadata_and_annual kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -out.electricity.heating_hp_bkup.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup fans/pumps -out.electricity.heating_hp_bkup_fa.energy_consumption..kwh metadata_and_annual kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -out.electricity.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup and fans/pumps -out.electricity.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh -out.electricity.permanent_spa_pump.energy_consumption..kwh metadata_and_annual kwh -out.electricity.hot_water.energy_consumption..kwh metadata_and_annual kwh Excludes recirc pump and solar thermal pump -out.electricity.hot_water_solar_th.energy_consumption..kwh metadata_and_annual kwh Non-zero only when using detailed (not simple) solar thermal inputs -out.electricity.lighting_exterior.energy_consumption..kwh metadata_and_annual kwh Includes exterior holiday lighting -out.electricity.lighting_garage.energy_consumption..kwh metadata_and_annual kwh -out.electricity.lighting_interior.energy_consumption..kwh metadata_and_annual kwh -out.electricity.mech_vent.energy_consumption..kwh metadata_and_annual kwh Excludes preheating/precooling -out.electricity.plug_loads.energy_consumption..kwh metadata_and_annual kwh "Excludes independently reported plug loads (e.g., well pump)" -out.electricity.pool_heater.energy_consumption..kwh metadata_and_annual kwh -out.electricity.pool_pump.energy_consumption..kwh metadata_and_annual kwh -out.electricity.pv.energy_consumption..kwh metadata_and_annual kwh Negative value for any power produced -out.electricity.range_oven.energy_consumption..kwh metadata_and_annual kwh -out.electricity.refrigerator.energy_consumption..kwh metadata_and_annual kwh -out.electricity.television.energy_consumption..kwh metadata_and_annual kwh -out.electricity.well_pump.energy_consumption..kwh metadata_and_annual kwh -out.fuel_oil.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup -out.fuel_oil.hot_water.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.fireplace.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.grill.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup -out.natural_gas.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.hot_water.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.lighting.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.pool_heater.energy_consumption..kwh metadata_and_annual kwh -out.natural_gas.range_oven.energy_consumption..kwh metadata_and_annual kwh -out.propane.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh -out.propane.heating.energy_consumption..kwh metadata_and_annual kwh Excludes heat pump backup -out.propane.hot_water.energy_consumption..kwh metadata_and_annual kwh -out.propane.range_oven.energy_consumption..kwh metadata_and_annual kwh -out.site_energy.net.energy_consumption..kwh metadata_and_annual kwh Subtracts any power produced by PV or generators. -out.site_energy.total.energy_consumption..kwh metadata_and_annual kwh Includes any battery charging/discharging -out.electricity.net.energy_consumption..kwh metadata_and_annual kwh Subtracts any power produced by PV or generators. -out.electricity.total.energy_consumption..kwh metadata_and_annual kwh Includes any battery charging/discharging -out.fuel_oil.total.energy_consumption..kwh metadata_and_annual kwh "Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -out.natural_gas.total.energy_consumption..kwh metadata_and_annual kwh -out.propane.total.energy_consumption..kwh metadata_and_annual kwh -out.hot_water.clothes_washer..gal metadata_and_annual gal -out.hot_water.dishwasher..gal metadata_and_annual gal -out.hot_water.distribution_waste..gal metadata_and_annual gal -out.hot_water.fixtures..gal metadata_and_annual gal Showers and faucets. -out.capacity.cooling..btu_per_hr metadata_and_annual btu_h -out.capacity.heat_pump_backup..btu_per_hr metadata_and_annual btu_h -out.capacity.heating..btu_per_hr metadata_and_annual btu_h -out.load.cooling.energy_delivered..kbtu metadata_and_annual kbtu Includes HVAC distribution losses. -out.load.heating.energy_delivered..kbtu metadata_and_annual kbtu Includes HVAC distribution losses. -out.load.hot_water.energy_delivered..kbtu metadata_and_annual kbtu Includes contributions by desuperheaters or solar thermal systems. -out.load.hot_water.energy_solar_thermal..kbtu metadata_and_annual kbtu Water heater solar thermal energy. -out.load.hot_water.energy_tank_losses..kbtu metadata_and_annual kbtu Water heater tank losses energy. -out.load.cooling.peak..kbtu_per_hr metadata_and_annual kbtu_hr Includes HVAC distribution losses. -out.load.heating.peak..kbtu_per_hr metadata_and_annual kbtu_hr Includes HVAC distribution losses. -out.qoi.electricity.maximum_daily_peak_summer..kw metadata_and_annual kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -out.qoi.electricity.maximum_daily_peak_winter..kw metadata_and_annual kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -out.unmet_hours.cooling..hr metadata_and_annual hr Number of hours where the cooling setpoint is not maintained. -out.unmet_hours.ev_driving..hr metadata_and_annual hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. -out.unmet_hours.heating..hr metadata_and_annual hr Number of hours where the heating setpoint is not maintained. -out.emissions.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.emissions.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg "Scenario total emissions for Electricity only, includes any battery charging/discharging" -out.emissions.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg "Scenario total emissions, includes any battery charging/discharging" -out.utility_bills.electricity_bill..usd metadata_and_annual usd Scenario annual total charges for electricity. -out.utility_bills.fuel_oil_bill..usd metadata_and_annual usd Scenario annual total charges for fuel oil. -out.utility_bills.natural_gas_bill..usd metadata_and_annual usd Scenario annual total charges for natural gas. -out.utility_bills.propane_bill..usd metadata_and_annual usd Scenario annual total charges for propane. -out.utility_bills.total_bill..usd metadata_and_annual usd Scenario annual total charges. -out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w metadata_and_annual w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp "Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp "Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -out.params.panel_load_clothes_dryer..w metadata_and_annual w "Electric load of clothes dryer, for electric only" -out.params.panel_load_cooling..w metadata_and_annual w "Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -out.params.panel_load_dishwasher..w metadata_and_annual w Electric load of dishwasher -out.params.panel_load_ev_charging..w metadata_and_annual w Electric load of electric vehicle charging equipment -out.params.panel_load_heating..w metadata_and_annual w "Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -out.params.panel_load_hot_water..w metadata_and_annual w "Electric load of water heater, for electric only" -out.params.panel_load_mech_vent..w metadata_and_annual w Electric load of mechanical ventilation -out.params.panel_load_other..w metadata_and_annual w "Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -out.params.panel_load_permanent_spa_heat..w metadata_and_annual w "Electric load of permanent spa heater, for electric only" -out.params.panel_load_permanent_spa_pump..w metadata_and_annual w Electric load of permanent spa pump -out.params.panel_load_pool_heater..w metadata_and_annual w "Electric load of pool heater, for electric only" -out.params.panel_load_pool_pump..w metadata_and_annual w Electric load of pool pump -out.params.panel_load_range_oven..w metadata_and_annual w "Electric load of range oven, for electric only" -out.params.panel_load_.well_pump..w metadata_and_annual n/a -in.electric_panel_breaker_space_total_count metadata_and_annual count Total breaker spaces on electric panel -out.params.panel_breaker_space_occupied_count metadata_and_annual count Total occupied breaker spaces on electric panel -out.params.panel_breaker_space_headroom_count metadata_and_annual count "Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -out.params.panel_breaker_space_clothes_dryer_count metadata_and_annual count Breaker spaces occupied by clothes dryer -out.params.panel_breaker_space_cooling_count metadata_and_annual count Breaker spaces occupied by space cooling -out.params.panel_breaker_space_dishwasher_count metadata_and_annual count Breaker spaces occupied by dishwasher -out.params.panel_breaker_space_ev_charging_count metadata_and_annual count Breaker spaces occupied by electric vehicle charging equipment -out.params.panel_breaker_space_heating_count metadata_and_annual count Breaker spaces occupied by space heating -out.params.panel_breaker_space_hot_water_count metadata_and_annual count Breaker spaces occupied by water heater -out.params.panel_breaker_space_mech_vent_count metadata_and_annual count Breaker spaces occupied by mechanical ventilation -out.params.panel_breaker_space_other_count metadata_and_annual count Breaker spaces occupied by other loads -out.params.panel_breaker_space_permanent_spa_heat_count metadata_and_annual count Breaker spaces occupied by permanent spa heater -out.params.panel_breaker_space_permanent_spa_pump_count metadata_and_annual count Breaker spaces occupied by permanent spa pump -out.params.panel_breaker_space_pool_heater_count metadata_and_annual count Breaker spaces occupied by pool heater -out.params.panel_breaker_space_pool_pump_count metadata_and_annual count Breaker spaces occupied by pool pump -out.params.panel_breaker_space_range_oven_count metadata_and_annual count Breaker spaces occupied by range oven -out.params.panel_breaker_space_well_pump_count metadata_and_annual count Breaker spaces occupied by well pump -out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w metadata_and_annual w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -out.params.panel_breaker_space_occupied_savings_count metadata_and_annual count Number of breaker spaces reduced from an energy measure -out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based metadata_and_annual bool "Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -out.params.panel_constraint_breaker_space metadata_and_annual bool "Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based metadata_and_annual categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -out.energy_burden..percentage metadata_and_annual percentage Percentage of income spent on energy -out.electricity.ceiling_fan.energy_savings..kwh metadata_and_annual kwh -out.electricity.clothes_dryer.energy_savings..kwh metadata_and_annual kwh -out.electricity.clothes_washer.energy_savings..kwh metadata_and_annual kwh -out.electricity.cooling_fans_pumps.energy_savings..kwh metadata_and_annual kwh -out.electricity.cooling.energy_savings..kwh metadata_and_annual kwh -out.electricity.dishwasher.energy_savings..kwh metadata_and_annual kwh -out.electricity.ev_charging.energy_savings..kwh metadata_and_annual kwh -out.electricity.freezer.energy_savings..kwh metadata_and_annual kwh -out.electricity.heating_fans_pumps.energy_savings..kwh metadata_and_annual kwh -out.electricity.heating_hp_bkup.energy_savings..kwh metadata_and_annual kwh -out.electricity.heating_hp_bkup_fa.energy_savings..kwh metadata_and_annual kwh -out.electricity.heating.energy_savings..kwh metadata_and_annual kwh -out.electricity.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh -out.electricity.permanent_spa_pump.energy_savings..kwh metadata_and_annual kwh -out.electricity.hot_water.energy_savings..kwh metadata_and_annual kwh -out.electricity.hot_water_solar_th.energy_savings..kwh metadata_and_annual kwh -out.electricity.lighting_exterior.energy_savings..kwh metadata_and_annual kwh -out.electricity.lighting_garage.energy_savings..kwh metadata_and_annual kwh -out.electricity.lighting_interior.energy_savings..kwh metadata_and_annual kwh -out.electricity.mech_vent.energy_savings..kwh metadata_and_annual kwh -out.electricity.plug_loads.energy_savings..kwh metadata_and_annual kwh -out.electricity.pool_heater.energy_savings..kwh metadata_and_annual kwh -out.electricity.pool_pump.energy_savings..kwh metadata_and_annual kwh -out.electricity.pv.energy_savings..kwh metadata_and_annual kwh -out.electricity.range_oven.energy_savings..kwh metadata_and_annual kwh -out.electricity.refrigerator.energy_savings..kwh metadata_and_annual kwh -out.electricity.television.energy_savings..kwh metadata_and_annual kwh -out.electricity.well_pump.energy_savings..kwh metadata_and_annual kwh -out.fuel_oil.heating.energy_savings..kwh metadata_and_annual kwh -out.fuel_oil.hot_water.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.clothes_dryer.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.fireplace.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.grill.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.heating.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.hot_water.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.lighting.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.pool_heater.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.range_oven.energy_savings..kwh metadata_and_annual kwh -out.propane.clothes_dryer.energy_savings..kwh metadata_and_annual kwh -out.propane.heating.energy_savings..kwh metadata_and_annual kwh -out.propane.hot_water.energy_savings..kwh metadata_and_annual kwh -out.propane.range_oven.energy_savings..kwh metadata_and_annual kwh -out.site_energy.net.energy_savings..kwh metadata_and_annual kwh -out.site_energy.total.energy_savings..kwh metadata_and_annual kwh -out.electricity.net.energy_savings..kwh metadata_and_annual kwh -out.electricity.total.energy_savings..kwh metadata_and_annual kwh -out.fuel_oil.total.energy_savings..kwh metadata_and_annual kwh -out.natural_gas.total.energy_savings..kwh metadata_and_annual kwh -out.propane.total.energy_savings..kwh metadata_and_annual kwh -out.load.cooling.energy_delivered_savings..kbtu metadata_and_annual kbtu -out.load.heating.energy_delivered_savings..kbtu metadata_and_annual kbtu -out.load.hot_water.energy_delivered_savings..kbtu metadata_and_annual kbtu -out.load.hot_water.energy_solar_thermal_savings..kbtu metadata_and_annual kbtu -out.load.hot_water.energy_tank_losses_savings..kbtu metadata_and_annual kbtu -out.load.cooling.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr -out.load.heating.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr -out.qoi.electricity.maximum_daily_peak_savings_summer..kw metadata_and_annual kw -out.qoi.electricity.maximum_daily_peak_savings_winter..kw metadata_and_annual kw -out.unmet_hours_reduction.cooling..hr metadata_and_annual hour -out.unmet_hours_reduction.heating..hr metadata_and_annual hour -out.emissions.fuel_oil.total..co2e_kg metadata_and_annual n/a -out.emissions.natural_gas.total..co2e_kg metadata_and_annual n/a -out.emissions.propane.total..co2e_kg metadata_and_annual n/a -out.emissions_reduction.fuel_oil.total..co2e_kg metadata_and_annual n/a -out.emissions_reduction.natural_gas.total..co2e_kg metadata_and_annual n/a -out.emissions_reduction.propane.total..co2e_kg metadata_and_annual n/a -out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg -out.emissions_reduction.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg -out.utility_bills.electricity_bill_savings..usd metadata_and_annual usd -out.utility_bills.fuel_oil_bill_savings..usd metadata_and_annual usd -out.utility_bills.natural_gas_bill_savings..usd metadata_and_annual usd -out.utility_bills.propane_bill_savings..usd metadata_and_annual usd -out.utility_bills.total_bill_savings..usd metadata_and_annual usd -out.energy_burden_savings..percentage metadata_and_annual percentage -out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.pv.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.television.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.television.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.propane.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.site_energy.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -out.site_energy.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 -upgrade.electric_vehicle_charger metadata_and_annual n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -upgrade.electric_vehicle_efficiency_increase metadata_and_annual n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -upgrade.electric_vehicle_ownership metadata_and_annual n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -upgrade.heating_fuel metadata_and_annual n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -upgrade.hvac_cooling_efficiency metadata_and_annual n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -upgrade.hvac_cooling_partial_space_conditioning metadata_and_annual n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -upgrade.hvac_heating_efficiency metadata_and_annual n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -upgrade.hvac_heating_type_and_fuel metadata_and_annual n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -upgrade.infiltration_reduction metadata_and_annual n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -upgrade.insulation_ceiling metadata_and_annual n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -upgrade.water_heater_efficiency metadata_and_annual n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -upgrade.water_heater_fuel metadata_and_annual n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -upgrade.hvac_detailed_performance_data metadata_and_annual n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -upgrade.demand_flexibility_electric_vehicle metadata_and_annual n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -upgrade.demand_flexibility_hvac metadata_and_annual n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -upgrade.demand_flexibility_random_shift metadata_and_annual n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -upgrade.duct_leakage_and_insulation metadata_and_annual n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -upgrade.infiltration metadata_and_annual n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -upgrade.insulation_wall metadata_and_annual n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -upgrade.windows metadata_and_annual n/a Only appears when at least one building has this upgrade. -calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.clothes_washer.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.cooling.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.dishwasher.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.ev_charging.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.freezer.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.hot_water.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_garage.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_interior.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.mech_vent.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.net.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.plug_loads.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pool_pump.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pv.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.range_oven.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.refrigerator.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.television.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.total.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.electricity.well_pump.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.heating.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.total.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.fireplace.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.grill.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.heating.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.hot_water.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.lighting.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.range_oven.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.total.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.propane.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.propane.heating.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.propane.hot_water.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.propane.range_oven.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.propane.total.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.site_energy.net.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.site_energy.total.energy_consumption..tbtu metadata_and_annual tbtu -calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions.propane.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.propane.total..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.electricity.ceiling_fan.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.clothes_washer.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.cooling.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.dishwasher.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.ev_charging.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.freezer.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.hot_water.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_exterior.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_garage.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.lighting_interior.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.mech_vent.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.net.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.plug_loads.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pool_heater.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pool_pump.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.pv.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.range_oven.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.refrigerator.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.television.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.total.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.electricity.well_pump.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.heating.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.hot_water.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.fuel_oil.total.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.fireplace.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.grill.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.heating.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.hot_water.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.lighting.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.pool_heater.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.range_oven.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.natural_gas.total.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.propane.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.propane.heating.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.propane.hot_water.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.propane.range_oven.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.propane.total.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.site_energy.net.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.site_energy.total.energy_savings..tbtu metadata_and_annual tbtu -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt -models_used timeseries_aggregates n/a -units_represented timeseries_aggregates n/a -out.electricity.ceiling_fan.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.clothes_washer.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.cooling.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.cooling_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.dishwasher.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.ev_charging.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.freezer.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.heating.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.heating_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.heating_hp_bkup_fa.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.hot_water.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.hot_water_solar_th.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.lighting_exterior.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.lighting_garage.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.lighting_interior.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.mech_vent.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.net.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.permanent_spa_pump.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.plug_loads.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.pool_heater.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.pool_pump.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.pv.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.range_oven.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.refrigerator.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.television.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.total.energy_consumption..kwh timeseries_aggregates n/a -out.electricity.well_pump.energy_consumption..kwh timeseries_aggregates n/a -out.fuel_oil.heating.energy_consumption..kwh timeseries_aggregates n/a -out.fuel_oil.hot_water.energy_consumption..kwh timeseries_aggregates n/a -out.fuel_oil.total.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.fireplace.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.grill.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.heating.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.hot_water.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.lighting.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.pool_heater.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.range_oven.energy_consumption..kwh timeseries_aggregates n/a -out.natural_gas.total.energy_consumption..kwh timeseries_aggregates n/a -out.propane.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a -out.propane.heating.energy_consumption..kwh timeseries_aggregates n/a -out.propane.hot_water.energy_consumption..kwh timeseries_aggregates n/a -out.propane.range_oven.energy_consumption..kwh timeseries_aggregates n/a -out.propane.total.energy_consumption..kwh timeseries_aggregates n/a -out.site_energy.net.energy_consumption..kwh timeseries_aggregates n/a -out.site_energy.total.energy_consumption..kwh timeseries_aggregates n/a -out.emissions.electricity.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a -out.emissions.electricity.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a -out.emissions.natural_gas.total..co2e_kg timeseries_aggregates n/a -out.emissions.propane.total..co2e_kg timeseries_aggregates n/a -out.emissions.fuel_oil.total..co2e_kg timeseries_aggregates n/a -out.emissions.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a -out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a -out.emissions.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a -out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a -out.emissions.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a -out.emissions.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a -out.load.cooling.energy_delivered..kbtu timeseries_aggregates n/a -out.load.heating.energy_delivered..kbtu timeseries_aggregates n/a -out.load.heating_heat_pump_backup..kbtu timeseries_aggregates n/a -out.load.hot_water.energy_delivered..kbtu timeseries_aggregates n/a -out.load.hot_water_solar_thermal..kbtu timeseries_aggregates n/a -out.load.hot_water_tank_losses..kbtu timeseries_aggregates n/a +field_location field_name units field_description +metadata_and_annual bldg_id n/a The building unit number (between 1 and the number of samples). +metadata_and_annual completed_status n/a The simulation status. +metadata_and_annual upgrade n/a The upgrade number +metadata_and_annual in.upgrade_name n/a User-specificed name that describes the upgrade. +metadata_and_annual weight n/a Number of buildings this simulation represents. +metadata_and_annual applicability n/a Whether the upgrade is applicable to the building. Will be always True for baseline. +metadata_and_annual in.sqft..ft2 ft2 Floor Area, Conditioned +metadata_and_annual in.representative_income usd Average representative income of the country +metadata_and_annual in.county_name n/a County name +metadata_and_annual in.ahs_region n/a The American Housing Survey region that the sample is located. +metadata_and_annual in.aiannh_area n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +metadata_and_annual in.area_median_income n/a Area median income of the household occupying the dwelling unit. +metadata_and_annual in.ashrae_iecc_climate_zone_2004 n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI. +metadata_and_annual in.bathroom_spot_vent_hour n/a Bathroom spot ventilation daily start hour. +metadata_and_annual in.battery n/a The size of an onsite battery (not used in baseline models). +metadata_and_annual in.bedrooms n/a The number of bedrooms in the dwelling unit. +metadata_and_annual in.building_america_climate_zone n/a The Building America Climate Zone that the sample is located. +metadata_and_annual in.cec_climate_zone n/a The California Energy Commission Climate Zone that the sample is located. +metadata_and_annual in.ceiling_fan n/a Presence and energy usage of ceiling fans at medium speed. +metadata_and_annual in.census_division n/a The U.S. Census Division that the sample is located. +metadata_and_annual in.census_division_recs n/a Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). +metadata_and_annual in.census_region n/a The U.S. Census Region that the sample is located. +metadata_and_annual in.city n/a The City that the sample is located. +metadata_and_annual in.clothes_dryer n/a The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit. +metadata_and_annual in.clothes_dryer_usage_level n/a Clothes dryer energy usage level multiplier. +metadata_and_annual in.clothes_washer n/a Presence and rated efficiency of the clothes washer. +metadata_and_annual in.clothes_washer_presence n/a The presence of a clothes washer in the dwelling unit. +metadata_and_annual in.clothes_washer_usage_level n/a Clothes washer energy usage level multiplier. +metadata_and_annual in.cooking_range n/a Presence and fuel type of the cooking range. +metadata_and_annual in.cooking_range_usage_level n/a Cooking range energy usage level multiplier. +metadata_and_annual in.cooling_unavailable_days n/a Number of days in a year the cooling system is unavailable. +metadata_and_annual in.cooling_setpoint n/a Baseline cooling setpoint with no offset applied. +metadata_and_annual in.cooling_setpoint_has_offset n/a Presence of a cooling setpoint offset. +metadata_and_annual in.cooling_setpoint_offset_magnitude n/a The magnitude of cooling setpoint offset. +metadata_and_annual in.cooling_setpoint_offset_period n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +metadata_and_annual in.corridor n/a Type of corridor attached to multi-family units. +metadata_and_annual in.county n/a The U.S. County that the sample is located. +metadata_and_annual in.county_and_puma n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +metadata_and_annual in.county_metro_status n/a The Metro Status of the county that the sample is located, based on MSA and MicroSA. +metadata_and_annual in.custom_state n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +metadata_and_annual in.dehumidifier n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. +metadata_and_annual in.dishwasher n/a The presence and rated efficiency of the dishwasher. +metadata_and_annual in.dishwasher_usage_level n/a Dishwasher energy usage level multiplier. +metadata_and_annual in.door_area n/a Area of exterior doors. +metadata_and_annual in.doors n/a Exterior door material and properties. +metadata_and_annual in.duct_leakage_and_insulation n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +metadata_and_annual in.duct_location n/a Location of Duct System. +metadata_and_annual in.eaves n/a Depth of roof eaves. +metadata_and_annual in.electric_panel_service_rating..a amp The rating of electric panel in Ampere. +metadata_and_annual in.electric_panel_service_rating_bin..a amp The rating bin of electric panel in Ampere. +metadata_and_annual in.electric_vehicle_battery n/a The type of electric vehicle and battery range in miles. +metadata_and_annual in.electric_vehicle_charge_at_home n/a The percentage a household would or do charge their electric vehicle at home. +metadata_and_annual in.electric_vehicle_charger n/a Type of electric vehicle charger used at the dwelling unit. +metadata_and_annual in.electric_vehicle_miles_traveled n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. +metadata_and_annual in.electric_vehicle_outlet_access n/a The unit has an outlet within 20 feet of vehicle parking. +metadata_and_annual in.electric_vehicle_ownership n/a The dwelling unit owns an electric vehicle. +metadata_and_annual in.energystar_climate_zone_2023 n/a Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023. +metadata_and_annual in.federal_poverty_level n/a Federal poverty level of the household occupying the dwelling unit. +metadata_and_annual in.generation_and_emissions_assessment_region n/a The generation and carbon emissions assessment region that the sample is located in. +metadata_and_annual in.geometry_attic_type n/a The dwelling unit attic type. +metadata_and_annual in.geometry_building_horizontal_location_mf n/a Location of the single-family attached unit horizontally within the building (left, middle, right). +metadata_and_annual in.geometry_building_horizontal_location_sfa n/a Location of the single-family attached unit horizontally within the building (left, middle, right). +metadata_and_annual in.geometry_building_level_mf n/a Location of the multi-family unit vertically within the building (bottom, middle, top). +metadata_and_annual in.geometry_building_number_units_mf n/a The number of dwelling units in the multi-family building. +metadata_and_annual in.geometry_building_number_units_sfa n/a Number of units in the single-family attached building. +metadata_and_annual in.geometry_building_type_acs n/a The building type classification according to the U.S. Census American Community Survey. +metadata_and_annual in.geometry_building_type_height n/a The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise. +metadata_and_annual in.geometry_building_type_recs n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_floor_area n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +metadata_and_annual in.geometry_floor_area_bin n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_foundation_type n/a The type of foundation. +metadata_and_annual in.geometry_garage n/a The size of an attached garage. +metadata_and_annual in.geometry_space_combination n/a Valid combinations of building type, building level mf, attic, foundation, and garage. +metadata_and_annual in.geometry_stories n/a The number of building stories. +metadata_and_annual in.geometry_stories_low_rise n/a Number of building stories for low-rise buildings. +metadata_and_annual in.geometry_story_bin n/a The building has more than 8 or less than 8 stories. +metadata_and_annual in.geometry_wall_exterior_finish n/a Wall siding material and color. +metadata_and_annual in.geometry_wall_type n/a The wall material used for thermal mass calculations of exterior walls. +metadata_and_annual in.ground_thermal_conductivity n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +metadata_and_annual in.has_pv n/a The dwelling unit has a rooftop photovoltaic system. +metadata_and_annual in.heating_fuel n/a The primary fuel used for heating the dwelling unit. +metadata_and_annual in.heating_unavailable_days n/a Number of days in a year the heating system is unavailable. +metadata_and_annual in.heating_setpoint n/a Baseline heating setpoint with no offset applied. +metadata_and_annual in.heating_setpoint_has_offset n/a Presence of a heating setpoint offset. +metadata_and_annual in.heating_setpoint_offset_magnitude n/a Magnitude of the heating setpoint offset. +metadata_and_annual in.heating_setpoint_offset_period n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +metadata_and_annual in.holiday_lighting n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). +metadata_and_annual in.hot_water_distribution n/a Type of distribution system and presence of hot water piping insulation. +metadata_and_annual in.hot_water_fixtures n/a Hot water fixture usage and flow levels. +metadata_and_annual in.household_has_tribal_persons n/a The household occupying the dwelling unit has at least one tribal person in the household. +metadata_and_annual in.hvac_cooling_autosizing_factor n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +metadata_and_annual in.hvac_cooling_efficiency n/a The presence and efficiency of primary cooling system in the dwelling unit. +metadata_and_annual in.hvac_cooling_partial_space_conditioning n/a The fraction of the finished floor area that the cooling system provides cooling. +metadata_and_annual in.hvac_cooling_type n/a The presence and type of primary cooling system in the dwelling unit. +metadata_and_annual in.hvac_has_ducts n/a The presence of ducts in the dwelling unit. +metadata_and_annual in.hvac_has_shared_system n/a The presence of an HVAC system shared between multiple dwelling units. +metadata_and_annual in.hvac_has_zonal_electric_heating n/a Presence of electric baseboard heating. +metadata_and_annual in.hvac_heating_autosizing_factor n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +metadata_and_annual in.hvac_heating_efficiency n/a The presence and efficiency of the primary heating system in the dwelling unit. +metadata_and_annual in.hvac_heating_type n/a The presence and type of the primary heating system in the dwelling unit. +metadata_and_annual in.hvac_heating_type_and_fuel n/a The presence, type, and fuel of primary heating system. +metadata_and_annual in.hvac_secondary_heating_efficiency n/a The efficiency and type of the secondary heating system. +metadata_and_annual in.hvac_secondary_heating_fuel n/a Secondary Heating Fuel for the dwelling unit +metadata_and_annual in.hvac_secondary_heating_partial_space_conditioning n/a The fraction of heating load served by secondary heating system. +metadata_and_annual in.hvac_secondary_heating_type n/a The efficiency and type of the secondary heating system. +metadata_and_annual in.hvac_shared_efficiencies n/a The presence and efficiency of the shared HVAC system. +metadata_and_annual in.hvac_system_is_faulted n/a The presence of the HVAC system having a fault (not used). +metadata_and_annual in.hvac_system_is_scaled n/a Whether the HVAC system has been undersized or oversized (not used). +metadata_and_annual in.hvac_system_single_speed_ac_airflow n/a Single speed central and room air conditioner actual air flow rates. +metadata_and_annual in.hvac_system_single_speed_ac_charge n/a Central and room air conditioner deviation between design/installed charge. +metadata_and_annual in.hvac_system_single_speed_ashp_airflow n/a Single speed air source heat pump actual air flow rates. +metadata_and_annual in.hvac_system_single_speed_ashp_charge n/a Air source heat pump deviation between design/installed charge. +metadata_and_annual in.income n/a Income of the household occupying the dwelling unit. +metadata_and_annual in.income_recs_2015 n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.income_recs_2020 n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.infiltration n/a Total infiltration to the dwelling unit. +metadata_and_annual in.insulation_ceiling n/a Ceiling insulation level (between the living space and unconditioned attic). +metadata_and_annual in.insulation_floor n/a Floor insulation level. +metadata_and_annual in.insulation_foundation_wall n/a Foundation walls insulation level. +metadata_and_annual in.insulation_rim_joist n/a Insulation level for rim joists. +metadata_and_annual in.insulation_roof n/a Finished roof insulation level. +metadata_and_annual in.insulation_slab n/a Slab insulation level. +metadata_and_annual in.insulation_wall n/a Wall construction type and insulation level. +metadata_and_annual in.interior_shading n/a Type of window interior shading. +metadata_and_annual in.iso_rto_region n/a The independent system operator or regional transmission organization region that the sample is located. +metadata_and_annual in.lighting n/a Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options. +metadata_and_annual in.lighting_interior_use n/a Interior lighting usage relative to the national average. +metadata_and_annual in.lighting_other_use n/a Exterior and garage lighting usage relative to the national average. +metadata_and_annual in.location_region n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +metadata_and_annual in.mechanical_ventilation n/a Mechanical ventilation type and efficiency. +metadata_and_annual in.metropolitan_and_micropolitan_statistical_area n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +metadata_and_annual in.misc_extra_refrigerator n/a The presence and rated efficiency of the secondary refrigerator. +metadata_and_annual in.misc_freezer n/a The presence and rated efficiency of a standalone freezer. +metadata_and_annual in.misc_gas_fireplace n/a Presence of a gas fireplace.` +metadata_and_annual in.misc_gas_grill n/a Presence of a gas grill. +metadata_and_annual in.misc_gas_lighting n/a Presence of exterior gas lighting. +metadata_and_annual in.misc_hot_tub_spa n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. +metadata_and_annual in.misc_pool n/a The presence of a pool at the dwelling unit. +metadata_and_annual in.misc_pool_heater n/a The heating fuel of the pool heater if there is a pool. +metadata_and_annual in.misc_pool_pump n/a Presence and size of pool pump. +metadata_and_annual in.misc_well_pump n/a Presence of well pump according to the use of well for domestic water source. +metadata_and_annual in.natural_ventilation n/a Schedule of natural ventilation from windows. +metadata_and_annual in.neighbors n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +metadata_and_annual in.occupants n/a The number of occupants living in the dwelling unit. +metadata_and_annual in.orientation n/a Orientation of the front of the dwelling unit as it faces the street. +metadata_and_annual in.overhangs n/a Presence, depth, and location of window overhangs +metadata_and_annual in.plug_load_diversity n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +metadata_and_annual in.plug_loads n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. +metadata_and_annual in.puma n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +metadata_and_annual in.puma_metro_status n/a The public use microdata area metropolitan status that the dwelling unit is located. +metadata_and_annual in.pv_orientation n/a The orientation of the photovoltaic system. +metadata_and_annual in.pv_system_size n/a The size of the photovoltaic system. +metadata_and_annual in.radiant_barrier n/a Presence of radiant barrier in the attic (not modeled). +metadata_and_annual in.range_spot_vent_hour n/a Range spot ventilation daily start hour. +metadata_and_annual in.reeds_balancing_area n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +metadata_and_annual in.refrigerator n/a The presence and rated efficiency of the primary refrigerator. +metadata_and_annual in.refrigerator_usage_level n/a Refrigerator energy usage level multiplier. +metadata_and_annual in.roof_material n/a Roof material and color. +metadata_and_annual in.state n/a The U.S. State the sample is located. +metadata_and_annual in.state_metro_median_income n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +metadata_and_annual in.tenure n/a The tenancy (owner or renter) of the household occupying the dwelling unit. +metadata_and_annual in.usage_level n/a Usage of major appliances relative to the national average. +metadata_and_annual in.vacancy_status n/a The vacancy status (occupied or vacant) of the dwelling unit. +metadata_and_annual in.vintage n/a Time period in which the building was constructed. +metadata_and_annual in.vintage_acs n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +metadata_and_annual in.water_heater_efficiency n/a The efficiency, type, and heating fuel of water heater. +metadata_and_annual in.water_heater_fuel n/a The water heater fuel type. +metadata_and_annual in.water_heater_in_unit n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +metadata_and_annual in.water_heater_location n/a location of water heater. +metadata_and_annual in.window_areas n/a Window to wall ratios of the front, back, left, and right walls. +metadata_and_annual in.windows n/a Construction type and efficiency levels of windows. +metadata_and_annual in.air_leakage_to_outside_ach50 n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +metadata_and_annual in.buildstock_csv_path n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +metadata_and_annual in.units_represented n/a The number of dwelling units this simulation represents. Should always be one. +metadata_and_annual in.simulation_control_run_period_begin_day_of_month n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_begin_month n/a This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_calendar_year n/a This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. +metadata_and_annual in.simulation_control_run_period_end_day_of_month n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_end_month n/a This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.simulation_control_timestep n/a Value must be a divisor of 60. +metadata_and_annual in.utility_bill_electricity_fixed_charges usd Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_electricity_marginal_rates usd Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_fuel_oil_fixed_charges usd Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_fuel_oil_marginal_rates usd Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_natural_gas_fixed_charges usd Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_natural_gas_marginal_rates usd Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_propane_fixed_charges usd Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_propane_marginal_rates usd Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_scenario_names n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_simple_filepaths n/a Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header. +metadata_and_annual in.weather_file_city n/a City from the EPW weather file. +metadata_and_annual in.weather_file_latitude n/a Latitude from the EPW weather file. +metadata_and_annual in.weather_file_longitude n/a Longitude from the EPW weather file. +metadata_and_annual in.heating_unavailable_period n/a Heating unavailable period. +metadata_and_annual in.cooling_unavailable_period n/a Cooling unavailable period. +metadata_and_annual out.params.door_area..ft2 ft2 Door Area +metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 ft2 Duct Unconditioned Surface Area +metadata_and_annual out.params.floor_area_attic..ft2 ft2 Floor Area, Attic +metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value r_value Floor Area, Attic * Insulation Increase +metadata_and_annual out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 ach_50 Floor Area, Conditioned * Infiltration Reduction +metadata_and_annual out.params.floor_area_foundation..ft2 ft2 Floor Area, Foundation +metadata_and_annual out.params.floor_area_lighting..ft2 ft2 Floor Area, Lighting +metadata_and_annual out.params.flow_rate_mechanical_ventilation..cfm cfm Flow Rate, Mechanical Ventilation +metadata_and_annual out.params.rim_joist_area_above_grade_exterior..ft2 ft2 Rim Joist Area, Above-Grade, Exterior +metadata_and_annual out.params.roof_area..ft2 ft2 Roof Area +metadata_and_annual out.params.size_cooling_system_primary..kbtu_per_hr k_btu_h Size, Cooling System Primary +metadata_and_annual out.params.size_heat_pump_backup_primary..kbtu_per_hr k_btu_h Size, Heat Pump Backup Primary +metadata_and_annual out.params.size_heating_system_primary..kbtu_per_hr k_btu_h Size, Heating System Primary +metadata_and_annual out.params.size_heating_system_secondary..kbtu_per_hr k_btu_h Size, Heating System Secondary +metadata_and_annual out.params.size_water_heater..gal gal Size, Water Heater +metadata_and_annual out.params.slab_perimeter_exposed_conditioned..ft ft Slab Perimeter, Exposed, Conditioned +metadata_and_annual out.params.wall_area_above_grade_conditioned..ft2 ft2 Wall Area, Above-Grade, Conditioned +metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 ft2 Wall Area, Above-Grade, Exterior +metadata_and_annual out.params.wall_area_below_grade..ft2 ft2 Wall Area, Below-Grade +metadata_and_annual out.params.window_area..ft2 ft2 Window Area +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count n/a Number of boreholes used for the geothermal heat pump system. +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh kwh +metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh kwh +metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh kwh +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh kwh Supply fan (air distribution) or circulating pump (geothermal loop) +metadata_and_annual out.electricity.cooling.energy_consumption..kwh kwh Excludes fans/pumps +metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh kwh +metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh kwh +metadata_and_annual out.electricity.freezer.energy_consumption..kwh kwh +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh kwh Excludes heat pump backup fans/pumps +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +metadata_and_annual out.electricity.heating.energy_consumption..kwh kwh Excludes heat pump backup and fans/pumps +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh kwh +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh kwh +metadata_and_annual out.electricity.hot_water.energy_consumption..kwh kwh Excludes recirc pump and solar thermal pump +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh kwh Non-zero only when using detailed (not simple) solar thermal inputs +metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh kwh Includes exterior holiday lighting +metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh kwh +metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh kwh +metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh kwh Excludes preheating/precooling +metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh kwh Excludes independently reported plug loads (e.g., well pump) +metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh kwh +metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh kwh +metadata_and_annual out.electricity.pv.energy_consumption..kwh kwh Negative value for any power produced +metadata_and_annual out.electricity.range_oven.energy_consumption..kwh kwh +metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh kwh +metadata_and_annual out.electricity.television.energy_consumption..kwh kwh +metadata_and_annual out.electricity.well_pump.energy_consumption..kwh kwh +metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh kwh Excludes heat pump backup +metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.grill.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.heating.energy_consumption..kwh kwh Excludes heat pump backup +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh kwh +metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh kwh +metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh kwh +metadata_and_annual out.propane.heating.energy_consumption..kwh kwh Excludes heat pump backup +metadata_and_annual out.propane.hot_water.energy_consumption..kwh kwh +metadata_and_annual out.propane.range_oven.energy_consumption..kwh kwh +metadata_and_annual out.site_energy.net.energy_consumption..kwh kwh Subtracts any power produced by PV or generators. +metadata_and_annual out.site_energy.total.energy_consumption..kwh kwh Includes any battery charging/discharging +metadata_and_annual out.electricity.net.energy_consumption..kwh kwh Subtracts any power produced by PV or generators. +metadata_and_annual out.electricity.total.energy_consumption..kwh kwh Includes any battery charging/discharging +metadata_and_annual out.fuel_oil.total.energy_consumption..kwh kwh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +metadata_and_annual out.natural_gas.total.energy_consumption..kwh kwh +metadata_and_annual out.propane.total.energy_consumption..kwh kwh +metadata_and_annual out.hot_water.clothes_washer..gal gal +metadata_and_annual out.hot_water.dishwasher..gal gal +metadata_and_annual out.hot_water.distribution_waste..gal gal +metadata_and_annual out.hot_water.fixtures..gal gal Showers and faucets. +metadata_and_annual out.capacity.cooling..btu_per_hr btu_h +metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr btu_h +metadata_and_annual out.capacity.heating..btu_per_hr btu_h +metadata_and_annual out.load.cooling.energy_delivered..kbtu kbtu Includes HVAC distribution losses. +metadata_and_annual out.load.heating.energy_delivered..kbtu kbtu Includes HVAC distribution losses. +metadata_and_annual out.load.hot_water.energy_delivered..kbtu kbtu Includes contributions by desuperheaters or solar thermal systems. +metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu kbtu Water heater solar thermal energy. +metadata_and_annual out.load.hot_water.energy_tank_losses..kbtu kbtu Water heater tank losses energy. +metadata_and_annual out.load.cooling.peak..kbtu_per_hr kbtu_hr Includes HVAC distribution losses. +metadata_and_annual out.load.heating.peak..kbtu_per_hr kbtu_hr Includes HVAC distribution losses. +metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +metadata_and_annual out.unmet_hours.cooling..hr hr Number of hours where the cooling setpoint is not maintained. +metadata_and_annual out.unmet_hours.ev_driving..hr hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. +metadata_and_annual out.unmet_hours.heating..hr hr Number of hours where the heating setpoint is not maintained. +metadata_and_annual out.emissions.electricity.lrmer_mid_case_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_mid_case_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_mid_case_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_mid_case_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_high_re_cost_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_high_re_cost_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_low_re_cost_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_low_re_cost_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_mid_case_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_mid_case_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.utility_bills.electricity_bill..usd usd Scenario annual total charges for electricity. +metadata_and_annual out.utility_bills.fuel_oil_bill..usd usd Scenario annual total charges for fuel oil. +metadata_and_annual out.utility_bills.natural_gas_bill..usd usd Scenario annual total charges for natural gas. +metadata_and_annual out.utility_bills.propane_bill..usd usd Scenario annual total charges for propane. +metadata_and_annual out.utility_bills.total_bill..usd usd Scenario annual total charges. +metadata_and_annual out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a amp Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240 +metadata_and_annual out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a amp Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a +metadata_and_annual out.params.panel_load_clothes_dryer..w w Electric load of clothes dryer, for electric only +metadata_and_annual out.params.panel_load_cooling..w w Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both +metadata_and_annual out.params.panel_load_dishwasher..w w Electric load of dishwasher +metadata_and_annual out.params.panel_load_ev_charging..w w Electric load of electric vehicle charging equipment +metadata_and_annual out.params.panel_load_heating..w w Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both +metadata_and_annual out.params.panel_load_hot_water..w w Electric load of water heater, for electric only +metadata_and_annual out.params.panel_load_mech_vent..w w Electric load of mechanical ventilation +metadata_and_annual out.params.panel_load_other..w w Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal. +metadata_and_annual out.params.panel_load_permanent_spa_heat..w w Electric load of permanent spa heater, for electric only +metadata_and_annual out.params.panel_load_permanent_spa_pump..w w Electric load of permanent spa pump +metadata_and_annual out.params.panel_load_pool_heater..w w Electric load of pool heater, for electric only +metadata_and_annual out.params.panel_load_pool_pump..w w Electric load of pool pump +metadata_and_annual out.params.panel_load_range_oven..w w Electric load of range oven, for electric only +metadata_and_annual out.params.panel_load_well_pump..w w Electric load of well pump +metadata_and_annual in.electric_panel_breaker_space_total_count count Total breaker spaces on electric panel +metadata_and_annual out.params.panel_breaker_space_occupied_count count Total occupied breaker spaces on electric panel +metadata_and_annual out.params.panel_breaker_space_headroom_count count Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count +metadata_and_annual out.params.panel_breaker_space_clothes_dryer_count count Breaker spaces occupied by clothes dryer +metadata_and_annual out.params.panel_breaker_space_cooling_count count Breaker spaces occupied by space cooling +metadata_and_annual out.params.panel_breaker_space_dishwasher_count count Breaker spaces occupied by dishwasher +metadata_and_annual out.params.panel_breaker_space_ev_charging_count count Breaker spaces occupied by electric vehicle charging equipment +metadata_and_annual out.params.panel_breaker_space_heating_count count Breaker spaces occupied by space heating +metadata_and_annual out.params.panel_breaker_space_hot_water_count count Breaker spaces occupied by water heater +metadata_and_annual out.params.panel_breaker_space_mech_vent_count count Breaker spaces occupied by mechanical ventilation +metadata_and_annual out.params.panel_breaker_space_other_count count Breaker spaces occupied by other loads +metadata_and_annual out.params.panel_breaker_space_permanent_spa_heat_count count Breaker spaces occupied by permanent spa heater +metadata_and_annual out.params.panel_breaker_space_permanent_spa_pump_count count Breaker spaces occupied by permanent spa pump +metadata_and_annual out.params.panel_breaker_space_pool_heater_count count Breaker spaces occupied by pool heater +metadata_and_annual out.params.panel_breaker_space_pool_pump_count count Breaker spaces occupied by pool pump +metadata_and_annual out.params.panel_breaker_space_range_oven_count count Breaker spaces occupied by range oven +metadata_and_annual out.params.panel_breaker_space_well_pump_count count Breaker spaces occupied by well pump +metadata_and_annual out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_breaker_space_occupied_savings_count count Number of breaker spaces reduced from an energy measure +metadata_and_annual out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based bool Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0 +metadata_and_annual out.params.panel_constraint_breaker_space bool Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0 +metadata_and_annual out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +metadata_and_annual out.energy_burden..percentage percentage Percentage of income spent on energy +metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh kwh +metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh kwh +metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh kwh +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh kwh +metadata_and_annual out.electricity.cooling.energy_savings..kwh kwh +metadata_and_annual out.electricity.dishwasher.energy_savings..kwh kwh +metadata_and_annual out.electricity.ev_charging.energy_savings..kwh kwh +metadata_and_annual out.electricity.freezer.energy_savings..kwh kwh +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh kwh +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh kwh +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh kwh +metadata_and_annual out.electricity.heating.energy_savings..kwh kwh +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh kwh +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh kwh +metadata_and_annual out.electricity.hot_water.energy_savings..kwh kwh +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh kwh +metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh kwh +metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh kwh +metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh kwh +metadata_and_annual out.electricity.mech_vent.energy_savings..kwh kwh +metadata_and_annual out.electricity.plug_loads.energy_savings..kwh kwh +metadata_and_annual out.electricity.pool_heater.energy_savings..kwh kwh +metadata_and_annual out.electricity.pool_pump.energy_savings..kwh kwh +metadata_and_annual out.electricity.pv.energy_savings..kwh kwh +metadata_and_annual out.electricity.range_oven.energy_savings..kwh kwh +metadata_and_annual out.electricity.refrigerator.energy_savings..kwh kwh +metadata_and_annual out.electricity.television.energy_savings..kwh kwh +metadata_and_annual out.electricity.well_pump.energy_savings..kwh kwh +metadata_and_annual out.fuel_oil.heating.energy_savings..kwh kwh +metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.grill.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.heating.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.lighting.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh kwh +metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh kwh +metadata_and_annual out.propane.heating.energy_savings..kwh kwh +metadata_and_annual out.propane.hot_water.energy_savings..kwh kwh +metadata_and_annual out.propane.range_oven.energy_savings..kwh kwh +metadata_and_annual out.site_energy.net.energy_savings..kwh kwh +metadata_and_annual out.site_energy.total.energy_savings..kwh kwh +metadata_and_annual out.electricity.net.energy_savings..kwh kwh +metadata_and_annual out.electricity.total.energy_savings..kwh kwh +metadata_and_annual out.fuel_oil.total.energy_savings..kwh kwh +metadata_and_annual out.natural_gas.total.energy_savings..kwh kwh +metadata_and_annual out.propane.total.energy_savings..kwh kwh +metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu kbtu +metadata_and_annual out.load.heating.energy_delivered_savings..kbtu kbtu +metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu kbtu +metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu kbtu +metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu kbtu +metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr kbtu_hr +metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr kbtu_hr +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw kw +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw kw +metadata_and_annual out.unmet_hours_reduction.cooling..hr hour +metadata_and_annual out.unmet_hours_reduction.heating..hr hour +metadata_and_annual out.emissions.fuel_oil.total..co2e_kg n/a +metadata_and_annual out.emissions.natural_gas.total..co2e_kg n/a +metadata_and_annual out.emissions.propane.total..co2e_kg n/a +metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg n/a +metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg n/a +metadata_and_annual out.emissions_reduction.propane.total..co2e_kg n/a +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg kg +metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg kg +metadata_and_annual out.utility_bills.electricity_bill_savings..usd usd +metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd usd +metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd usd +metadata_and_annual out.utility_bills.propane_bill_savings..usd usd +metadata_and_annual out.utility_bills.total_bill_savings..usd usd +metadata_and_annual out.energy_burden_savings..percentage percentage +metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 +metadata_and_annual upgrade.clothes_dryer n/a Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.cooking_range n/a Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.cooling_setpoint_has_offset n/a Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.cooling_setpoint_offset_magnitude n/a Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.cooling_setpoint_offset_period n/a Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.electric_vehicle_charger n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.electric_vehicle_efficiency_increase n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.electric_vehicle_ownership n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.heating_fuel n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.heating_setpoint_has_offset n/a Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.heating_setpoint_offset_magnitude n/a Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.heating_setpoint_offset_period n/a Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_cooling_efficiency n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_heating_efficiency n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_heating_type_and_fuel n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_secondary_heating_efficiency n/a Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_secondary_heating_fuel n/a Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.infiltration_reduction n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.insulation_ceiling n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.misc_hot_tub_spa n/a Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.misc_pool_heater n/a Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.water_heater_efficiency n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.water_heater_fuel n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_detailed_performance_data n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.demand_flexibility_electric_vehicle n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.demand_flexibility_hvac n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.demand_flexibility_random_shift n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.duct_leakage_and_insulation n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.infiltration n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.insulation_wall n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.windows n/a Only appears when at least one building has this upgrade. +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu tbtu +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu tbtu +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt co2e_mmt +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption kWh +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption kWh +timeseries_aggregates out.electricity.clothes_washer.energy_consumption kWh +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption kWh Supply fan (air distribution) or circulating pump (geothermal loop) +timeseries_aggregates out.electricity.cooling.energy_consumption kWh Excludes fans/pumps +timeseries_aggregates out.electricity.dishwasher.energy_consumption kWh +timeseries_aggregates out.electricity.ev_charging.energy_consumption kWh +timeseries_aggregates out.electricity.freezer.energy_consumption kWh +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption kWh Excludes heat pump backup fans/pumps +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +timeseries_aggregates out.electricity.heating.energy_consumption kWh Excludes heat pump backup and fans/pumps +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption kWh +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption kWh +timeseries_aggregates out.electricity.hot_water.energy_consumption kWh Excludes recirc pump and solar thermal pump +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption kWh Non-zero only when using detailed (not simple) solar thermal inputs +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption kWh Includes exterior holiday lighting +timeseries_aggregates out.electricity.lighting_garage.energy_consumption kWh +timeseries_aggregates out.electricity.lighting_interior.energy_consumption kWh +timeseries_aggregates out.electricity.mech_vent.energy_consumption kWh Excludes preheating/precooling +timeseries_aggregates out.electricity.plug_loads.energy_consumption kWh Excludes independently reported plug loads (e.g., well pump) +timeseries_aggregates out.electricity.pool_heater.energy_consumption kWh +timeseries_aggregates out.electricity.pool_pump.energy_consumption kWh +timeseries_aggregates out.electricity.pv.energy_consumption kWh Negative value for any power produced +timeseries_aggregates out.electricity.range_oven.energy_consumption kWh +timeseries_aggregates out.electricity.refrigerator.energy_consumption kWh +timeseries_aggregates out.electricity.television.energy_consumption kWh +timeseries_aggregates out.electricity.well_pump.energy_consumption kWh +timeseries_aggregates out.fuel_oil.heating.energy_consumption kWh Excludes heat pump backup +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption kWh +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption kWh +timeseries_aggregates out.natural_gas.fireplace.energy_consumption kWh +timeseries_aggregates out.natural_gas.grill.energy_consumption kWh +timeseries_aggregates out.natural_gas.heating.energy_consumption kWh Excludes heat pump backup +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption kWh +timeseries_aggregates out.natural_gas.hot_water.energy_consumption kWh +timeseries_aggregates out.natural_gas.lighting.energy_consumption kWh +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption kWh +timeseries_aggregates out.natural_gas.range_oven.energy_consumption kWh +timeseries_aggregates out.propane.clothes_dryer.energy_consumption kWh +timeseries_aggregates out.propane.heating.energy_consumption kWh Excludes heat pump backup +timeseries_aggregates out.propane.hot_water.energy_consumption kWh +timeseries_aggregates out.propane.range_oven.energy_consumption kWh +timeseries_aggregates out.site_energy.net.energy_consumption kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.site_energy.total.energy_consumption kWh Includes any battery charging/discharging +timeseries_aggregates out.electricity.net.energy_consumption kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.electricity.total.energy_consumption kWh Includes any battery charging/discharging +timeseries_aggregates out.fuel_oil.total.energy_consumption kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +timeseries_aggregates out.natural_gas.total.energy_consumption kWh +timeseries_aggregates out.propane.total.energy_consumption kWh +timeseries_aggregates out.load.cooling.energy_delivered.kbtu kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.heating.energy_delivered.kbtu kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.hot_water.energy_delivered.kbtu kBtu Includes contributions by desuperheaters or solar thermal systems. +timeseries_aggregates out.load.hot_water.energy_solar_thermal.kbtu kBtu Water heater solar thermal energy. +timeseries_aggregates out.load.hot_water.energy_tank_losses.kbtu kBtu Water heater tank losses energy. +timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_midcase_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.electricity.battery.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.clothes_washer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.cooling.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.dehumidifier.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.dishwasher.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.ev_charging.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.freezer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.hot_water_recirc_p.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.lighting_garage.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.lighting_interior.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.mech_vent.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.mech_vent_precool.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.mech_vent_preheat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.plug_loads.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.pool_heater.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.pool_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.pv.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.refrigerator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.television.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.well_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.whole_house_fan.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.mech_vent_preheating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.mech_vent_preheat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.mech_vent_preheating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.site_energy.net.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.site_energy.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.net.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.fuel_oil.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.natural_gas.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.propane.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption.savings kWh +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption.savings kWh +timeseries_aggregates out.electricity.clothes_washer.energy_consumption.savings kWh +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption.savings kWh +timeseries_aggregates out.electricity.cooling.energy_consumption.savings kWh +timeseries_aggregates out.electricity.dishwasher.energy_consumption.savings kWh +timeseries_aggregates out.electricity.ev_charging.energy_consumption.savings kWh +timeseries_aggregates out.electricity.freezer.energy_consumption.savings kWh +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption.savings kWh +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption.savings kWh +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption.savings kWh +timeseries_aggregates out.electricity.heating.energy_consumption.savings kWh +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption.savings kWh +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption.savings kWh +timeseries_aggregates out.electricity.hot_water.energy_consumption.savings kWh +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption.savings kWh +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption.savings kWh +timeseries_aggregates out.electricity.lighting_garage.energy_consumption.savings kWh +timeseries_aggregates out.electricity.lighting_interior.energy_consumption.savings kWh +timeseries_aggregates out.electricity.mech_vent.energy_consumption.savings kWh +timeseries_aggregates out.electricity.plug_loads.energy_consumption.savings kWh +timeseries_aggregates out.electricity.pool_heater.energy_consumption.savings kWh +timeseries_aggregates out.electricity.pool_pump.energy_consumption.savings kWh +timeseries_aggregates out.electricity.pv.energy_consumption.savings kWh +timeseries_aggregates out.electricity.range_oven.energy_consumption.savings kWh +timeseries_aggregates out.electricity.refrigerator.energy_consumption.savings kWh +timeseries_aggregates out.electricity.television.energy_consumption.savings kWh +timeseries_aggregates out.electricity.well_pump.energy_consumption.savings kWh +timeseries_aggregates out.fuel_oil.heating.energy_consumption.savings kWh +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.fireplace.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.grill.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.heating.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.hot_water.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.lighting.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.range_oven.energy_consumption.savings kWh +timeseries_aggregates out.propane.clothes_dryer.energy_consumption.savings kWh +timeseries_aggregates out.propane.heating.energy_consumption.savings kWh +timeseries_aggregates out.propane.hot_water.energy_consumption.savings kWh +timeseries_aggregates out.propane.range_oven.energy_consumption.savings kWh +timeseries_aggregates out.site_energy.net.energy_consumption.savings kWh +timeseries_aggregates out.site_energy.total.energy_consumption.savings kWh +timeseries_aggregates out.electricity.net.energy_consumption.savings kWh +timeseries_aggregates out.electricity.total.energy_consumption.savings kWh +timeseries_aggregates out.fuel_oil.total.energy_consumption.savings kWh +timeseries_aggregates out.natural_gas.total.energy_consumption.savings kWh +timeseries_aggregates out.propane.total.energy_consumption.savings kWh +timeseries_aggregates out.load.cooling.energy_delivered.kbtu.savings kBtu +timeseries_aggregates out.load.heating.energy_delivered.kbtu.savings kBtu +timeseries_aggregates out.load.hot_water.energy_delivered.kbtu.savings kBtu +timeseries_aggregates out.load.hot_water.energy_solar_thermal.kbtu.savings kBtu +timeseries_aggregates out.load.hot_water.energy_tank_losses.kbtu.savings kBtu +timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg.savings kg +timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings kg +timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg.savings kg +timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg.savings kg +timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg.savings kg +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings kg +timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg.savings kg +timeseries_aggregates out.total.aer_midcase_avg.co2e_kg.savings kg +timeseries_aggregates out.outdoor_air_dryblub_temp.c C +timeseries_aggregates out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c C +timeseries_aggregates out.zone_mean_air_temp.attic_vented.c C +timeseries_aggregates out.zone_mean_air_temp.attic_unvented.c C +timeseries_aggregates out.zone_mean_air_temp.basement_unconditioned.c C +timeseries_aggregates out.zone_mean_air_temp.basement_conditioned.c C +timeseries_aggregates out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c C +timeseries_aggregates out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c C +timeseries_aggregates out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c C +timeseries_aggregates out.zone_mean_air_temp.garage.c C +timeseries_aggregates out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c C +timeseries_aggregates out.zone_mean_air_temp.crawlspace_unvented.c C +timeseries_aggregates out.zone_mean_air_temp.crawlspace_vented.c C +timeseries_aggregates out.zone_mean_air_temp.conditioned_space.c C diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index c5a638bc7c..139e55f8dc 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -793,18 +793,18 @@ Calculated,yes,yes,,,out.site_energy.net.energy_consumption_intensity..kwh_per_f Calculated,yes,yes,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, Calculated,yes,yes,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, Calculated,yes,yes,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. @@ -813,8 +813,8 @@ Calculated,yes,yes,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicate Calculated,yes,yes,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. From 4d3ffc79536e673635389595513c34f58754e191 Mon Sep 17 00:00:00 2001 From: Yingli Date: Fri, 10 Oct 2025 19:41:42 -0600 Subject: [PATCH 19/82] add Timeseries Publish In Full --- .../resources/publication/data_dictionary.tsv | 297 +-- .../publication/sdr_column_definitions.csv | 2014 ++++++++--------- 2 files changed, 1066 insertions(+), 1245 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index 19a6ecd284..6201b7ede0 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -565,18 +565,10 @@ metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual upgrade.clothes_dryer n/a Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.cooking_range n/a Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.cooling_setpoint_has_offset n/a Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.cooling_setpoint_offset_magnitude n/a Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.cooling_setpoint_offset_period n/a Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.electric_vehicle_charger n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.electric_vehicle_efficiency_increase n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.electric_vehicle_ownership n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.heating_fuel n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.heating_setpoint_has_offset n/a Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.heating_setpoint_offset_magnitude n/a Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.heating_setpoint_offset_period n/a Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_cooling_efficiency n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_heating_efficiency n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. @@ -585,8 +577,6 @@ metadata_and_annual upgrade.hvac_secondary_heating_efficiency n/a Indicates the metadata_and_annual upgrade.hvac_secondary_heating_fuel n/a Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.infiltration_reduction n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.insulation_ceiling n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.misc_hot_tub_spa n/a Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.misc_pool_heater n/a Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.water_heater_efficiency n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.water_heater_fuel n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_detailed_performance_data n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. @@ -763,61 +753,62 @@ metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_c metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt co2e_mmt metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt co2e_mmt -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption kWh -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption kWh -timeseries_aggregates out.electricity.clothes_washer.energy_consumption kWh -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption kWh Supply fan (air distribution) or circulating pump (geothermal loop) -timeseries_aggregates out.electricity.cooling.energy_consumption kWh Excludes fans/pumps -timeseries_aggregates out.electricity.dishwasher.energy_consumption kWh -timeseries_aggregates out.electricity.ev_charging.energy_consumption kWh -timeseries_aggregates out.electricity.freezer.energy_consumption kWh -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption kWh Excludes heat pump backup fans/pumps -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -timeseries_aggregates out.electricity.heating.energy_consumption kWh Excludes heat pump backup and fans/pumps -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption kWh -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption kWh -timeseries_aggregates out.electricity.hot_water.energy_consumption kWh Excludes recirc pump and solar thermal pump -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption kWh Non-zero only when using detailed (not simple) solar thermal inputs -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption kWh Includes exterior holiday lighting -timeseries_aggregates out.electricity.lighting_garage.energy_consumption kWh -timeseries_aggregates out.electricity.lighting_interior.energy_consumption kWh -timeseries_aggregates out.electricity.mech_vent.energy_consumption kWh Excludes preheating/precooling -timeseries_aggregates out.electricity.plug_loads.energy_consumption kWh Excludes independently reported plug loads (e.g., well pump) -timeseries_aggregates out.electricity.pool_heater.energy_consumption kWh -timeseries_aggregates out.electricity.pool_pump.energy_consumption kWh -timeseries_aggregates out.electricity.pv.energy_consumption kWh Negative value for any power produced -timeseries_aggregates out.electricity.range_oven.energy_consumption kWh -timeseries_aggregates out.electricity.refrigerator.energy_consumption kWh -timeseries_aggregates out.electricity.television.energy_consumption kWh -timeseries_aggregates out.electricity.well_pump.energy_consumption kWh -timeseries_aggregates out.fuel_oil.heating.energy_consumption kWh Excludes heat pump backup -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption kWh -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption kWh -timeseries_aggregates out.natural_gas.fireplace.energy_consumption kWh -timeseries_aggregates out.natural_gas.grill.energy_consumption kWh -timeseries_aggregates out.natural_gas.heating.energy_consumption kWh Excludes heat pump backup -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption kWh -timeseries_aggregates out.natural_gas.hot_water.energy_consumption kWh -timeseries_aggregates out.natural_gas.lighting.energy_consumption kWh -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption kWh -timeseries_aggregates out.natural_gas.range_oven.energy_consumption kWh -timeseries_aggregates out.propane.clothes_dryer.energy_consumption kWh -timeseries_aggregates out.propane.heating.energy_consumption kWh Excludes heat pump backup -timeseries_aggregates out.propane.hot_water.energy_consumption kWh -timeseries_aggregates out.propane.range_oven.energy_consumption kWh -timeseries_aggregates out.site_energy.net.energy_consumption kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.site_energy.total.energy_consumption kWh Includes any battery charging/discharging -timeseries_aggregates out.electricity.net.energy_consumption kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.electricity.total.energy_consumption kWh Includes any battery charging/discharging -timeseries_aggregates out.fuel_oil.total.energy_consumption kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -timeseries_aggregates out.natural_gas.total.energy_consumption kWh -timeseries_aggregates out.propane.total.energy_consumption kWh -timeseries_aggregates out.load.cooling.energy_delivered.kbtu kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.heating.energy_delivered.kbtu kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.hot_water.energy_delivered.kbtu kBtu Includes contributions by desuperheaters or solar thermal systems. -timeseries_aggregates out.load.hot_water.energy_solar_thermal.kbtu kBtu Water heater solar thermal energy. -timeseries_aggregates out.load.hot_water.energy_tank_losses.kbtu kBtu Water heater tank losses energy. +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh kWh Supply fan (air distribution) or circulating pump (geothermal loop) +timeseries_aggregates out.electricity.cooling.energy_consumption..kwh kWh Excludes fans/pumps +timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.freezer.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh kWh Excludes heat pump backup fans/pumps +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +timeseries_aggregates out.electricity.heating.energy_consumption..kwh kWh Excludes heat pump backup and fans/pumps +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh kWh Excludes recirc pump and solar thermal pump +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh kWh Non-zero only when using detailed (not simple) solar thermal inputs +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh kWh Includes exterior holiday lighting +timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh kWh Excludes preheating/precooling +timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh kWh Excludes independently reported plug loads (e.g., well pump) +timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.pv.energy_consumption..kwh kWh Negative value for any power produced +timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.television.energy_consumption..kwh kWh +timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh kWh +timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh kWh Excludes heat pump backup +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh kWh Excludes heat pump backup +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh kWh +timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh kWh +timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh kWh +timeseries_aggregates out.propane.heating.energy_consumption..kwh kWh Excludes heat pump backup +timeseries_aggregates out.propane.hot_water.energy_consumption..kwh kWh +timeseries_aggregates out.propane.range_oven.energy_consumption..kwh kWh +timeseries_aggregates out.site_energy.net.energy_consumption..kwh kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.site_energy.total.energy_consumption..kwh kWh Includes any battery charging/discharging +timeseries_aggregates out.electricity.net.energy_consumption..kwh kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.electricity.total.energy_consumption..kwh kWh Includes any battery charging/discharging +timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +timeseries_aggregates out.natural_gas.total.energy_consumption..kwh kWh +timeseries_aggregates out.propane.total.energy_consumption..kwh kWh +timeseries_aggregates out.load.cooling.energy_delivered..kbtu kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.heating.energy_delivered..kbtu kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.hot_water.energy_delivered..kbtu kBtu Includes contributions by desuperheaters or solar thermal systems. +timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu kBtu Water heater solar thermal energy. +timeseries_aggregates out.load.hot_water.energy_tank_losses..kbtu kBtu Water heater tank losses energy. timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging @@ -848,176 +839,6 @@ timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_k timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging timeseries_aggregates out.total.aer_midcase_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.electricity.battery.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.clothes_washer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.cooling.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.dehumidifier.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.dishwasher.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.ev_charging.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.freezer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.hot_water_recirc_p.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.lighting_garage.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.lighting_interior.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.mech_vent.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.mech_vent_precool.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.mech_vent_preheat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.plug_loads.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.pool_heater.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.pool_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.pv.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.refrigerator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.television.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.well_pump.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.whole_house_fan.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.mech_vent_preheating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.mech_vent_preheat.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.clothes_dryer.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.fireplace.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.generator.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.grill.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.heating_hp_bkup.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.heating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.hot_water.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.lighting.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.mech_vent_preheating.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.range_oven.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.site_energy.net.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.site_energy.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.net.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.fuel_oil.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.natural_gas.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.propane.total.energy_consumption_intensity kwh/sqft Calculated from annual energy consumption by dividing by conditioned floor area -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption.savings kWh -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption.savings kWh -timeseries_aggregates out.electricity.clothes_washer.energy_consumption.savings kWh -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption.savings kWh -timeseries_aggregates out.electricity.cooling.energy_consumption.savings kWh -timeseries_aggregates out.electricity.dishwasher.energy_consumption.savings kWh -timeseries_aggregates out.electricity.ev_charging.energy_consumption.savings kWh -timeseries_aggregates out.electricity.freezer.energy_consumption.savings kWh -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption.savings kWh -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption.savings kWh -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption.savings kWh -timeseries_aggregates out.electricity.heating.energy_consumption.savings kWh -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption.savings kWh -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption.savings kWh -timeseries_aggregates out.electricity.hot_water.energy_consumption.savings kWh -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption.savings kWh -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption.savings kWh -timeseries_aggregates out.electricity.lighting_garage.energy_consumption.savings kWh -timeseries_aggregates out.electricity.lighting_interior.energy_consumption.savings kWh -timeseries_aggregates out.electricity.mech_vent.energy_consumption.savings kWh -timeseries_aggregates out.electricity.plug_loads.energy_consumption.savings kWh -timeseries_aggregates out.electricity.pool_heater.energy_consumption.savings kWh -timeseries_aggregates out.electricity.pool_pump.energy_consumption.savings kWh -timeseries_aggregates out.electricity.pv.energy_consumption.savings kWh -timeseries_aggregates out.electricity.range_oven.energy_consumption.savings kWh -timeseries_aggregates out.electricity.refrigerator.energy_consumption.savings kWh -timeseries_aggregates out.electricity.television.energy_consumption.savings kWh -timeseries_aggregates out.electricity.well_pump.energy_consumption.savings kWh -timeseries_aggregates out.fuel_oil.heating.energy_consumption.savings kWh -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.fireplace.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.grill.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.heating.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.hot_water.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.lighting.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.range_oven.energy_consumption.savings kWh -timeseries_aggregates out.propane.clothes_dryer.energy_consumption.savings kWh -timeseries_aggregates out.propane.heating.energy_consumption.savings kWh -timeseries_aggregates out.propane.hot_water.energy_consumption.savings kWh -timeseries_aggregates out.propane.range_oven.energy_consumption.savings kWh -timeseries_aggregates out.site_energy.net.energy_consumption.savings kWh -timeseries_aggregates out.site_energy.total.energy_consumption.savings kWh -timeseries_aggregates out.electricity.net.energy_consumption.savings kWh -timeseries_aggregates out.electricity.total.energy_consumption.savings kWh -timeseries_aggregates out.fuel_oil.total.energy_consumption.savings kWh -timeseries_aggregates out.natural_gas.total.energy_consumption.savings kWh -timeseries_aggregates out.propane.total.energy_consumption.savings kWh -timeseries_aggregates out.load.cooling.energy_delivered.kbtu.savings kBtu -timeseries_aggregates out.load.heating.energy_delivered.kbtu.savings kBtu -timeseries_aggregates out.load.hot_water.energy_delivered.kbtu.savings kBtu -timeseries_aggregates out.load.hot_water.energy_solar_thermal.kbtu.savings kBtu -timeseries_aggregates out.load.hot_water.energy_tank_losses.kbtu.savings kBtu -timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg.savings kg -timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings kg -timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg.savings kg -timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg.savings kg -timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg.savings kg -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings kg -timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg.savings kg -timeseries_aggregates out.total.aer_midcase_avg.co2e_kg.savings kg -timeseries_aggregates out.outdoor_air_dryblub_temp.c C -timeseries_aggregates out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c C -timeseries_aggregates out.zone_mean_air_temp.attic_vented.c C -timeseries_aggregates out.zone_mean_air_temp.attic_unvented.c C -timeseries_aggregates out.zone_mean_air_temp.basement_unconditioned.c C -timeseries_aggregates out.zone_mean_air_temp.basement_conditioned.c C -timeseries_aggregates out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c C -timeseries_aggregates out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c C -timeseries_aggregates out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c C -timeseries_aggregates out.zone_mean_air_temp.garage.c C -timeseries_aggregates out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c C -timeseries_aggregates out.zone_mean_air_temp.crawlspace_unvented.c C -timeseries_aggregates out.zone_mean_air_temp.crawlspace_vented.c C -timeseries_aggregates out.zone_mean_air_temp.conditioned_space.c C +timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg n/a +timeseries_aggregates out.emissions.natural_gas.total..co2e_kg n/a +timeseries_aggregates out.emissions.propane.total..co2e_kg n/a diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 139e55f8dc..15ab1e8182 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,1007 +1,1007 @@ -Column Type,Import From Raw,Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,yes,yes,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). -Input,yes,yes,completed_status,,completed_status,,,,,,,,,,The simulation status. -Input,yes,yes,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number -Input,yes,yes,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,yes,yes,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. -Calculated,yes,yes,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. -Output,yes,yes,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,yes,yes,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country -Calculated,yes,yes,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,yes,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. -Input,yes,yes,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -Input,yes,yes,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. -Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -Input,yes,yes,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." -Input,yes,yes,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. -Input,yes,yes,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). -Input,yes,yes,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. -Input,yes,yes,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. -Input,yes,yes,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. -Input,yes,yes,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. -Input,yes,yes,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. -Input,yes,yes,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." -Input,yes,yes,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. -Input,yes,yes,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. -Input,yes,yes,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." -Input,yes,yes,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. -Input,yes,yes,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. -Input,yes,yes,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,"The presence of a clothes washer in the dwelling unit." -Input,yes,yes,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. -Input,yes,yes,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. -Input,yes,yes,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. -Input,yes,yes,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. -Input,yes,yes,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. -Input,yes,yes,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. -Input,yes,yes,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. -Input,yes,yes,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. -Input,yes,yes,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. -Input,yes,yes,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -Input,yes,yes,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." -Input,yes,yes,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -Input,yes,yes,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." -Input,yes,yes,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,"The presence and rated efficiency of the dishwasher." -Input,yes,yes,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. -Input,yes,yes,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. -Input,yes,yes,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. -Input,yes,yes,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -Input,yes,yes,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. -Input,yes,yes,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. -Input,yes,yes,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. -Input,yes,yes,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. -Input,yes,yes,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. -Input,yes,yes,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. -Input,yes,yes,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. -Input,yes,yes,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." -Input,yes,yes,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. -Input,yes,yes,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. -Input,yes,yes,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." -Input,yes,yes,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. -Input,yes,yes,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. -Input,yes,yes,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. -Input,yes,yes,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." -Input,yes,yes,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. -Input,yes,yes,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. -Input,yes,yes,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. -Input,yes,yes,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." -Input,yes,yes,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,"The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey." -Input,yes,yes,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -Input,yes,yes,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. -Input,yes,yes,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. -Input,yes,yes,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." -Input,yes,yes,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. -Input,yes,yes,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. -Input,yes,yes,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. -Input,yes,yes,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. -Input,yes,yes,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. -Input,yes,yes,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -Input,yes,yes,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. -Input,yes,yes,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. -Input,yes,yes,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. -Input,yes,yes,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. -Input,yes,yes,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. -Input,yes,yes,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. -Input,yes,yes,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). -Input,yes,yes,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. -Input,yes,yes,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. -Input,yes,yes,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. -Input,yes,yes,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -Input,yes,yes,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. -Input,yes,yes,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. -Input,yes,yes,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. -Input,yes,yes,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. -Input,yes,yes,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. -Input,yes,yes,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. -Input,yes,yes,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -Input,yes,yes,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. -Input,yes,yes,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. -Input,yes,yes,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." -Input,yes,yes,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit -Input,yes,yes,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. -Input,yes,yes,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. -Input,yes,yes,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). -Input,yes,yes,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). -Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. -Input,yes,yes,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. -Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. -Input,yes,yes,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. -Input,yes,yes,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. -Input,yes,yes,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. -Input,yes,yes,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). -Input,yes,yes,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. -Input,yes,yes,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. -Input,yes,yes,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. -Input,yes,yes,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. -Input,yes,yes,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. -Input,yes,yes,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. -Input,yes,yes,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. -Input,yes,yes,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. -Input,yes,yes,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." -Input,yes,yes,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. -Input,yes,yes,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. -Input,yes,yes,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. -Input,yes,yes,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. -Input,yes,yes,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. -Input,yes,yes,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. -Input,yes,yes,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. -Input,yes,yes,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` -Input,yes,yes,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. -Input,yes,yes,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. -Input,yes,yes,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. -Input,yes,yes,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. -Input,yes,yes,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. -Input,yes,yes,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. -Input,yes,yes,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. -Input,yes,yes,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. -Input,yes,yes,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -Input,yes,yes,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. -Input,yes,yes,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. -Input,yes,yes,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" -Input,yes,yes,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -Input,yes,yes,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. -Input,yes,yes,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -Input,yes,yes,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. -Input,yes,yes,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. -Input,yes,yes,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. -Input,yes,yes,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). -Input,yes,yes,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. -Input,yes,yes,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. -Input,yes,yes,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. -Input,yes,yes,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. -Input,yes,yes,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. -Input,yes,yes,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. -Input,yes,yes,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. -Input,yes,yes,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. -Input,yes,yes,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. -Input,yes,yes,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. -Input,yes,yes,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. -Input,yes,yes,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. -Input,yes,yes,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." -Input,yes,yes,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. -Input,yes,yes,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -Input,yes,yes,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. -Input,yes,yes,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." -Input,yes,yes,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. -Input,yes,yes,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,yes,yes,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,yes,yes,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. -Input,yes,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,yes,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,yes,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,yes,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -Input,yes,yes,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,yes,yes,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -Input,yes,yes,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,yes,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. -Input,yes,yes,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. -Input,yes,yes,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,yes,yes,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. -Input,yes,yes,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. -Output,yes,yes,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area -Output,yes,yes,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area -Output,yes,yes,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" -Output,yes,yes,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,yes,yes,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,yes,yes,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" -Output,yes,yes,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" -Output,yes,yes,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,yes,yes,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,yes,yes,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area -Output,yes,yes,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,yes,yes,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,yes,yes,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,yes,yes,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,yes,yes,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,yes,yes,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,yes,yes,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,yes,yes,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,yes,yes,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" -Output,yes,yes,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area -Output,yes,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,yes,yes,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,no,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,yes,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,yes,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps -Output,no,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, -Output,no,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced -Output,yes,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps -Output,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,yes,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps -Output,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump -Output,no,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,yes,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting -Output,yes,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling -Output,no,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, -Output,no,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,yes,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced -Output,yes,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, -Output,yes,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, -Output,no,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, -Output,no,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,yes,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed -Output,no,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, -Output,no,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,yes,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging -Output,yes,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. -Output,yes,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging -Output,yes,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,yes,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, -Output,yes,yes,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,yes,yes,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,yes,yes,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,yes,yes,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,yes,yes,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,yes,yes,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,yes,yes,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,yes,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,yes,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. -Output,yes,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. -Output,yes,yes,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,yes,yes,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -Output,yes,yes,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,yes,yes,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,yes,yes,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,yes,yes,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,yes,yes,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,yes,yes,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,yes,yes,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,yes,yes,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,yes,yes,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,yes,yes,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,yes,yes,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,yes,yes,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,yes,yes,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,yes,yes,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,yes,yes,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,yes,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, -Calculated,yes,yes,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,yes,yes,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,yes,yes,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,yes,yes,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,yes,yes,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy -Calculated,yes,yes,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,no,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,yes,yes,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,yes,yes,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,yes,yes,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,yes,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions.propane.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,yes,yes,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,yes,yes,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,yes,yes,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,yes,yes,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,yes,yes,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. -Output,yes,yes,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, -Output,yes,yes,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,yes,yes,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Column Type,Import From Raw,Publish In Full,Timeseries Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes +Input,yes,yes,no,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,yes,yes,no,completed_status,,completed_status,,,,,,,,,,The simulation status. +Input,yes,yes,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,yes,yes,no,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,yes,yes,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. +Calculated,yes,yes,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Output,yes,yes,no,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" +Calculated,yes,yes,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,yes,yes,no,,,in.county_name,in.county_name,,,,,,,,,County name +Input,yes,yes,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. +Input,yes,yes,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +Input,yes,yes,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. +Input,yes,yes,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +Input,yes,yes,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." +Input,yes,yes,no,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. +Input,yes,yes,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). +Input,yes,yes,no,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. +Input,yes,yes,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. +Input,yes,yes,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. +Input,yes,yes,no,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. +Input,yes,yes,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. +Input,yes,yes,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." +Input,yes,yes,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. +Input,yes,yes,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. +Input,yes,yes,no,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." +Input,yes,yes,no,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. +Input,yes,yes,no,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. +Input,yes,yes,no,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,The presence of a clothes washer in the dwelling unit. +Input,yes,yes,no,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. +Input,yes,yes,no,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. +Input,yes,yes,no,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. +Input,yes,yes,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. +Input,yes,yes,no,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. +Input,yes,yes,no,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. +Input,yes,yes,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. +Input,yes,yes,no,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,no,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. +Input,yes,yes,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. +Input,yes,yes,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +Input,yes,yes,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." +Input,yes,yes,no,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +Input,yes,yes,no,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." +Input,yes,yes,no,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,The presence and rated efficiency of the dishwasher. +Input,yes,yes,no,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. +Input,yes,yes,no,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. +Input,yes,yes,no,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. +Input,yes,yes,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +Input,yes,yes,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. +Input,yes,yes,no,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. +Input,yes,yes,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. +Input,yes,yes,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. +Input,yes,yes,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. +Input,yes,yes,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. +Input,yes,yes,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. +Input,yes,yes,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." +Input,yes,yes,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. +Input,yes,yes,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. +Input,yes,yes,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." +Input,yes,yes,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. +Input,yes,yes,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. +Input,yes,yes,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. +Input,yes,yes,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,no,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." +Input,yes,yes,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. +Input,yes,yes,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. +Input,yes,yes,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. +Input,yes,yes,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." +Input,yes,yes,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,no,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +Input,yes,yes,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,no,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. +Input,yes,yes,no,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. +Input,yes,yes,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." +Input,yes,yes,no,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. +Input,yes,yes,no,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. +Input,yes,yes,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. +Input,yes,yes,no,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. +Input,yes,yes,no,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. +Input,yes,yes,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +Input,yes,yes,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. +Input,yes,yes,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. +Input,yes,yes,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. +Input,yes,yes,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. +Input,yes,yes,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. +Input,yes,yes,no,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. +Input,yes,yes,no,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,no,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). +Input,yes,yes,no,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. +Input,yes,yes,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. +Input,yes,yes,no,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. +Input,yes,yes,no,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +Input,yes,yes,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. +Input,yes,yes,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. +Input,yes,yes,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. +Input,yes,yes,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. +Input,yes,yes,no,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. +Input,yes,yes,no,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. +Input,yes,yes,no,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +Input,yes,yes,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. +Input,yes,yes,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. +Input,yes,yes,no,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." +Input,yes,yes,no,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,no,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit +Input,yes,yes,no,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. +Input,yes,yes,no,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,no,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. +Input,yes,yes,no,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). +Input,yes,yes,no,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). +Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. +Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. +Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. +Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. +Input,yes,yes,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. +Input,yes,yes,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,no,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. +Input,yes,yes,no,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). +Input,yes,yes,no,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. +Input,yes,yes,no,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. +Input,yes,yes,no,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. +Input,yes,yes,no,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. +Input,yes,yes,no,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. +Input,yes,yes,no,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. +Input,yes,yes,no,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. +Input,yes,yes,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. +Input,yes,yes,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." +Input,yes,yes,no,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. +Input,yes,yes,no,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. +Input,yes,yes,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +Input,yes,yes,no,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. +Input,yes,yes,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +Input,yes,yes,no,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. +Input,yes,yes,no,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. +Input,yes,yes,no,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` +Input,yes,yes,no,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. +Input,yes,yes,no,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. +Input,yes,yes,no,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. +Input,yes,yes,no,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. +Input,yes,yes,no,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. +Input,yes,yes,no,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. +Input,yes,yes,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. +Input,yes,yes,no,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. +Input,yes,yes,no,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +Input,yes,yes,no,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. +Input,yes,yes,no,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. +Input,yes,yes,no,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" +Input,yes,yes,no,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +Input,yes,yes,no,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. +Input,yes,yes,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +Input,yes,yes,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. +Input,yes,yes,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. +Input,yes,yes,no,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. +Input,yes,yes,no,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). +Input,yes,yes,no,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. +Input,yes,yes,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +Input,yes,yes,no,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. +Input,yes,yes,no,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. +Input,yes,yes,no,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. +Input,yes,yes,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. +Input,yes,yes,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +Input,yes,yes,no,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. +Input,yes,yes,no,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. +Input,yes,yes,no,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. +Input,yes,yes,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. +Input,yes,yes,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +Input,yes,yes,no,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." +Input,yes,yes,no,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. +Input,yes,yes,no,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +Input,yes,yes,no,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. +Input,yes,yes,no,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." +Input,yes,yes,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. +Input,yes,yes,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,yes,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,yes,yes,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,yes,yes,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,yes,no,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,yes,no,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,yes,no,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,yes,no,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +Input,yes,yes,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,yes,yes,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +Input,yes,yes,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. +Input,yes,no,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,no,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,no,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,no,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,no,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. +Input,yes,yes,no,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. +Input,yes,yes,no,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. +Input,yes,yes,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. +Input,yes,yes,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Output,yes,yes,no,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area +Output,yes,yes,no,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area +Output,yes,yes,no,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" +Output,yes,yes,no,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,yes,yes,no,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,yes,yes,no,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" +Output,yes,yes,no,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" +Output,yes,yes,no,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,yes,yes,no,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,yes,yes,no,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area +Output,yes,yes,no,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,yes,yes,no,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,yes,yes,no,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,yes,yes,no,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,yes,yes,no,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,yes,yes,no,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,yes,yes,no,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,yes,yes,no,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,yes,yes,no,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" +Output,yes,yes,no,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area +Output,yes,yes,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. +Output,yes,yes,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,no,no,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,yes,yes,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,yes,yes,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Excludes fans/pumps +Output,no,no,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1, +Output,no,no,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Negative value for any power produced +Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,Excludes heat pump backup fans/pumps +Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Excludes heat pump backup and fans/pumps +Output,yes,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Excludes recirc pump and solar thermal pump +Output,no,no,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,Includes exterior holiday lighting +Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,Excludes preheating/precooling +Output,no,no,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1, +Output,no,no,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,yes,yes,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Negative value for any power produced +Output,yes,yes,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1, +Output,yes,yes,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1, +Output,no,no,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed +Output,no,no,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,yes,yes,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,Includes any battery charging/discharging +Output,yes,yes,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Subtracts any power produced by PV or generators. +Output,yes,yes,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,Includes any battery charging/discharging +Output,yes,yes,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,yes,yes,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,yes,yes,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,yes,yes,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,yes,yes,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,yes,yes,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,yes,yes,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,yes,yes,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,yes,yes,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,yes,yes,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Water heater solar thermal energy. +Output,yes,yes,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. +Output,yes,yes,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,yes,yes,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,yes,yes,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,yes,yes,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,yes,yes,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,yes,yes,no,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,yes,yes,no,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,no,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,yes,yes,no,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,yes,yes,no,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,no,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,yes,yes,no,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,yes,yes,no,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,yes,yes,no,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,yes,yes,no,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,yes,yes,no,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,yes,yes,no,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,yes,yes,no,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,yes,yes,no,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,yes,no,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,yes,no,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,yes,yes,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,yes,yes,no,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,yes,yes,no,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,yes,yes,no,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,yes,yes,no,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Calculated,yes,yes,no,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,no,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,no,no,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,yes,yes,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,yes,yes,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,yes,yes,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,yes,yes,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,, +Calculated,yes,yes,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,, +Calculated,yes,yes,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,, +Calculated,yes,yes,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,yes,yes,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,yes,yes,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,yes,yes,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,yes,yes,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,yes,yes,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,no,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,no,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,no,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. +Output,yes,yes,no,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, +Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, +Calculated,yes,yes,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, From 161234532244c24127d8a88d2c4fed065bf3c53e Mon Sep 17 00:00:00 2001 From: Yingli Date: Sun, 12 Oct 2025 10:46:24 -0600 Subject: [PATCH 20/82] add data type column --- .../resources/publication/data_dictionary.tsv | 1689 +++++++------- .../publication/sdr_column_definitions.csv | 2014 ++++++++--------- 2 files changed, 1852 insertions(+), 1851 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index 6201b7ede0..700f7eeca4 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -1,844 +1,845 @@ -field_location field_name units field_description -metadata_and_annual bldg_id n/a The building unit number (between 1 and the number of samples). -metadata_and_annual completed_status n/a The simulation status. -metadata_and_annual upgrade n/a The upgrade number -metadata_and_annual in.upgrade_name n/a User-specificed name that describes the upgrade. -metadata_and_annual weight n/a Number of buildings this simulation represents. -metadata_and_annual applicability n/a Whether the upgrade is applicable to the building. Will be always True for baseline. -metadata_and_annual in.sqft..ft2 ft2 Floor Area, Conditioned -metadata_and_annual in.representative_income usd Average representative income of the country -metadata_and_annual in.county_name n/a County name -metadata_and_annual in.ahs_region n/a The American Housing Survey region that the sample is located. -metadata_and_annual in.aiannh_area n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -metadata_and_annual in.area_median_income n/a Area median income of the household occupying the dwelling unit. -metadata_and_annual in.ashrae_iecc_climate_zone_2004 n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI. -metadata_and_annual in.bathroom_spot_vent_hour n/a Bathroom spot ventilation daily start hour. -metadata_and_annual in.battery n/a The size of an onsite battery (not used in baseline models). -metadata_and_annual in.bedrooms n/a The number of bedrooms in the dwelling unit. -metadata_and_annual in.building_america_climate_zone n/a The Building America Climate Zone that the sample is located. -metadata_and_annual in.cec_climate_zone n/a The California Energy Commission Climate Zone that the sample is located. -metadata_and_annual in.ceiling_fan n/a Presence and energy usage of ceiling fans at medium speed. -metadata_and_annual in.census_division n/a The U.S. Census Division that the sample is located. -metadata_and_annual in.census_division_recs n/a Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). -metadata_and_annual in.census_region n/a The U.S. Census Region that the sample is located. -metadata_and_annual in.city n/a The City that the sample is located. -metadata_and_annual in.clothes_dryer n/a The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit. -metadata_and_annual in.clothes_dryer_usage_level n/a Clothes dryer energy usage level multiplier. -metadata_and_annual in.clothes_washer n/a Presence and rated efficiency of the clothes washer. -metadata_and_annual in.clothes_washer_presence n/a The presence of a clothes washer in the dwelling unit. -metadata_and_annual in.clothes_washer_usage_level n/a Clothes washer energy usage level multiplier. -metadata_and_annual in.cooking_range n/a Presence and fuel type of the cooking range. -metadata_and_annual in.cooking_range_usage_level n/a Cooking range energy usage level multiplier. -metadata_and_annual in.cooling_unavailable_days n/a Number of days in a year the cooling system is unavailable. -metadata_and_annual in.cooling_setpoint n/a Baseline cooling setpoint with no offset applied. -metadata_and_annual in.cooling_setpoint_has_offset n/a Presence of a cooling setpoint offset. -metadata_and_annual in.cooling_setpoint_offset_magnitude n/a The magnitude of cooling setpoint offset. -metadata_and_annual in.cooling_setpoint_offset_period n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -metadata_and_annual in.corridor n/a Type of corridor attached to multi-family units. -metadata_and_annual in.county n/a The U.S. County that the sample is located. -metadata_and_annual in.county_and_puma n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -metadata_and_annual in.county_metro_status n/a The Metro Status of the county that the sample is located, based on MSA and MicroSA. -metadata_and_annual in.custom_state n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -metadata_and_annual in.dehumidifier n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. -metadata_and_annual in.dishwasher n/a The presence and rated efficiency of the dishwasher. -metadata_and_annual in.dishwasher_usage_level n/a Dishwasher energy usage level multiplier. -metadata_and_annual in.door_area n/a Area of exterior doors. -metadata_and_annual in.doors n/a Exterior door material and properties. -metadata_and_annual in.duct_leakage_and_insulation n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -metadata_and_annual in.duct_location n/a Location of Duct System. -metadata_and_annual in.eaves n/a Depth of roof eaves. -metadata_and_annual in.electric_panel_service_rating..a amp The rating of electric panel in Ampere. -metadata_and_annual in.electric_panel_service_rating_bin..a amp The rating bin of electric panel in Ampere. -metadata_and_annual in.electric_vehicle_battery n/a The type of electric vehicle and battery range in miles. -metadata_and_annual in.electric_vehicle_charge_at_home n/a The percentage a household would or do charge their electric vehicle at home. -metadata_and_annual in.electric_vehicle_charger n/a Type of electric vehicle charger used at the dwelling unit. -metadata_and_annual in.electric_vehicle_miles_traveled n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. -metadata_and_annual in.electric_vehicle_outlet_access n/a The unit has an outlet within 20 feet of vehicle parking. -metadata_and_annual in.electric_vehicle_ownership n/a The dwelling unit owns an electric vehicle. -metadata_and_annual in.energystar_climate_zone_2023 n/a Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023. -metadata_and_annual in.federal_poverty_level n/a Federal poverty level of the household occupying the dwelling unit. -metadata_and_annual in.generation_and_emissions_assessment_region n/a The generation and carbon emissions assessment region that the sample is located in. -metadata_and_annual in.geometry_attic_type n/a The dwelling unit attic type. -metadata_and_annual in.geometry_building_horizontal_location_mf n/a Location of the single-family attached unit horizontally within the building (left, middle, right). -metadata_and_annual in.geometry_building_horizontal_location_sfa n/a Location of the single-family attached unit horizontally within the building (left, middle, right). -metadata_and_annual in.geometry_building_level_mf n/a Location of the multi-family unit vertically within the building (bottom, middle, top). -metadata_and_annual in.geometry_building_number_units_mf n/a The number of dwelling units in the multi-family building. -metadata_and_annual in.geometry_building_number_units_sfa n/a Number of units in the single-family attached building. -metadata_and_annual in.geometry_building_type_acs n/a The building type classification according to the U.S. Census American Community Survey. -metadata_and_annual in.geometry_building_type_height n/a The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise. -metadata_and_annual in.geometry_building_type_recs n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. -metadata_and_annual in.geometry_floor_area n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -metadata_and_annual in.geometry_floor_area_bin n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. -metadata_and_annual in.geometry_foundation_type n/a The type of foundation. -metadata_and_annual in.geometry_garage n/a The size of an attached garage. -metadata_and_annual in.geometry_space_combination n/a Valid combinations of building type, building level mf, attic, foundation, and garage. -metadata_and_annual in.geometry_stories n/a The number of building stories. -metadata_and_annual in.geometry_stories_low_rise n/a Number of building stories for low-rise buildings. -metadata_and_annual in.geometry_story_bin n/a The building has more than 8 or less than 8 stories. -metadata_and_annual in.geometry_wall_exterior_finish n/a Wall siding material and color. -metadata_and_annual in.geometry_wall_type n/a The wall material used for thermal mass calculations of exterior walls. -metadata_and_annual in.ground_thermal_conductivity n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -metadata_and_annual in.has_pv n/a The dwelling unit has a rooftop photovoltaic system. -metadata_and_annual in.heating_fuel n/a The primary fuel used for heating the dwelling unit. -metadata_and_annual in.heating_unavailable_days n/a Number of days in a year the heating system is unavailable. -metadata_and_annual in.heating_setpoint n/a Baseline heating setpoint with no offset applied. -metadata_and_annual in.heating_setpoint_has_offset n/a Presence of a heating setpoint offset. -metadata_and_annual in.heating_setpoint_offset_magnitude n/a Magnitude of the heating setpoint offset. -metadata_and_annual in.heating_setpoint_offset_period n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -metadata_and_annual in.holiday_lighting n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). -metadata_and_annual in.hot_water_distribution n/a Type of distribution system and presence of hot water piping insulation. -metadata_and_annual in.hot_water_fixtures n/a Hot water fixture usage and flow levels. -metadata_and_annual in.household_has_tribal_persons n/a The household occupying the dwelling unit has at least one tribal person in the household. -metadata_and_annual in.hvac_cooling_autosizing_factor n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -metadata_and_annual in.hvac_cooling_efficiency n/a The presence and efficiency of primary cooling system in the dwelling unit. -metadata_and_annual in.hvac_cooling_partial_space_conditioning n/a The fraction of the finished floor area that the cooling system provides cooling. -metadata_and_annual in.hvac_cooling_type n/a The presence and type of primary cooling system in the dwelling unit. -metadata_and_annual in.hvac_has_ducts n/a The presence of ducts in the dwelling unit. -metadata_and_annual in.hvac_has_shared_system n/a The presence of an HVAC system shared between multiple dwelling units. -metadata_and_annual in.hvac_has_zonal_electric_heating n/a Presence of electric baseboard heating. -metadata_and_annual in.hvac_heating_autosizing_factor n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -metadata_and_annual in.hvac_heating_efficiency n/a The presence and efficiency of the primary heating system in the dwelling unit. -metadata_and_annual in.hvac_heating_type n/a The presence and type of the primary heating system in the dwelling unit. -metadata_and_annual in.hvac_heating_type_and_fuel n/a The presence, type, and fuel of primary heating system. -metadata_and_annual in.hvac_secondary_heating_efficiency n/a The efficiency and type of the secondary heating system. -metadata_and_annual in.hvac_secondary_heating_fuel n/a Secondary Heating Fuel for the dwelling unit -metadata_and_annual in.hvac_secondary_heating_partial_space_conditioning n/a The fraction of heating load served by secondary heating system. -metadata_and_annual in.hvac_secondary_heating_type n/a The efficiency and type of the secondary heating system. -metadata_and_annual in.hvac_shared_efficiencies n/a The presence and efficiency of the shared HVAC system. -metadata_and_annual in.hvac_system_is_faulted n/a The presence of the HVAC system having a fault (not used). -metadata_and_annual in.hvac_system_is_scaled n/a Whether the HVAC system has been undersized or oversized (not used). -metadata_and_annual in.hvac_system_single_speed_ac_airflow n/a Single speed central and room air conditioner actual air flow rates. -metadata_and_annual in.hvac_system_single_speed_ac_charge n/a Central and room air conditioner deviation between design/installed charge. -metadata_and_annual in.hvac_system_single_speed_ashp_airflow n/a Single speed air source heat pump actual air flow rates. -metadata_and_annual in.hvac_system_single_speed_ashp_charge n/a Air source heat pump deviation between design/installed charge. -metadata_and_annual in.income n/a Income of the household occupying the dwelling unit. -metadata_and_annual in.income_recs_2015 n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -metadata_and_annual in.income_recs_2020 n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. -metadata_and_annual in.infiltration n/a Total infiltration to the dwelling unit. -metadata_and_annual in.insulation_ceiling n/a Ceiling insulation level (between the living space and unconditioned attic). -metadata_and_annual in.insulation_floor n/a Floor insulation level. -metadata_and_annual in.insulation_foundation_wall n/a Foundation walls insulation level. -metadata_and_annual in.insulation_rim_joist n/a Insulation level for rim joists. -metadata_and_annual in.insulation_roof n/a Finished roof insulation level. -metadata_and_annual in.insulation_slab n/a Slab insulation level. -metadata_and_annual in.insulation_wall n/a Wall construction type and insulation level. -metadata_and_annual in.interior_shading n/a Type of window interior shading. -metadata_and_annual in.iso_rto_region n/a The independent system operator or regional transmission organization region that the sample is located. -metadata_and_annual in.lighting n/a Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options. -metadata_and_annual in.lighting_interior_use n/a Interior lighting usage relative to the national average. -metadata_and_annual in.lighting_other_use n/a Exterior and garage lighting usage relative to the national average. -metadata_and_annual in.location_region n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. -metadata_and_annual in.mechanical_ventilation n/a Mechanical ventilation type and efficiency. -metadata_and_annual in.metropolitan_and_micropolitan_statistical_area n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. -metadata_and_annual in.misc_extra_refrigerator n/a The presence and rated efficiency of the secondary refrigerator. -metadata_and_annual in.misc_freezer n/a The presence and rated efficiency of a standalone freezer. -metadata_and_annual in.misc_gas_fireplace n/a Presence of a gas fireplace.` -metadata_and_annual in.misc_gas_grill n/a Presence of a gas grill. -metadata_and_annual in.misc_gas_lighting n/a Presence of exterior gas lighting. -metadata_and_annual in.misc_hot_tub_spa n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. -metadata_and_annual in.misc_pool n/a The presence of a pool at the dwelling unit. -metadata_and_annual in.misc_pool_heater n/a The heating fuel of the pool heater if there is a pool. -metadata_and_annual in.misc_pool_pump n/a Presence and size of pool pump. -metadata_and_annual in.misc_well_pump n/a Presence of well pump according to the use of well for domestic water source. -metadata_and_annual in.natural_ventilation n/a Schedule of natural ventilation from windows. -metadata_and_annual in.neighbors n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -metadata_and_annual in.occupants n/a The number of occupants living in the dwelling unit. -metadata_and_annual in.orientation n/a Orientation of the front of the dwelling unit as it faces the street. -metadata_and_annual in.overhangs n/a Presence, depth, and location of window overhangs -metadata_and_annual in.plug_load_diversity n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -metadata_and_annual in.plug_loads n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. -metadata_and_annual in.puma n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -metadata_and_annual in.puma_metro_status n/a The public use microdata area metropolitan status that the dwelling unit is located. -metadata_and_annual in.pv_orientation n/a The orientation of the photovoltaic system. -metadata_and_annual in.pv_system_size n/a The size of the photovoltaic system. -metadata_and_annual in.radiant_barrier n/a Presence of radiant barrier in the attic (not modeled). -metadata_and_annual in.range_spot_vent_hour n/a Range spot ventilation daily start hour. -metadata_and_annual in.reeds_balancing_area n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. -metadata_and_annual in.refrigerator n/a The presence and rated efficiency of the primary refrigerator. -metadata_and_annual in.refrigerator_usage_level n/a Refrigerator energy usage level multiplier. -metadata_and_annual in.roof_material n/a Roof material and color. -metadata_and_annual in.state n/a The U.S. State the sample is located. -metadata_and_annual in.state_metro_median_income n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. -metadata_and_annual in.tenure n/a The tenancy (owner or renter) of the household occupying the dwelling unit. -metadata_and_annual in.usage_level n/a Usage of major appliances relative to the national average. -metadata_and_annual in.vacancy_status n/a The vacancy status (occupied or vacant) of the dwelling unit. -metadata_and_annual in.vintage n/a Time period in which the building was constructed. -metadata_and_annual in.vintage_acs n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. -metadata_and_annual in.water_heater_efficiency n/a The efficiency, type, and heating fuel of water heater. -metadata_and_annual in.water_heater_fuel n/a The water heater fuel type. -metadata_and_annual in.water_heater_in_unit n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -metadata_and_annual in.water_heater_location n/a location of water heater. -metadata_and_annual in.window_areas n/a Window to wall ratios of the front, back, left, and right walls. -metadata_and_annual in.windows n/a Construction type and efficiency levels of windows. -metadata_and_annual in.air_leakage_to_outside_ach50 n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -metadata_and_annual in.buildstock_csv_path n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -metadata_and_annual in.units_represented n/a The number of dwelling units this simulation represents. Should always be one. -metadata_and_annual in.simulation_control_run_period_begin_day_of_month n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_begin_month n/a This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_calendar_year n/a This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. -metadata_and_annual in.simulation_control_run_period_end_day_of_month n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_end_month n/a This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired. -metadata_and_annual in.simulation_control_timestep n/a Value must be a divisor of 60. -metadata_and_annual in.utility_bill_electricity_fixed_charges usd Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_electricity_marginal_rates usd Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_fuel_oil_fixed_charges usd Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_fuel_oil_marginal_rates usd Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_natural_gas_fixed_charges usd Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_natural_gas_marginal_rates usd Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_propane_fixed_charges usd Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_propane_marginal_rates usd Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_scenario_names n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_simple_filepaths n/a Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header. -metadata_and_annual in.weather_file_city n/a City from the EPW weather file. -metadata_and_annual in.weather_file_latitude n/a Latitude from the EPW weather file. -metadata_and_annual in.weather_file_longitude n/a Longitude from the EPW weather file. -metadata_and_annual in.heating_unavailable_period n/a Heating unavailable period. -metadata_and_annual in.cooling_unavailable_period n/a Cooling unavailable period. -metadata_and_annual out.params.door_area..ft2 ft2 Door Area -metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 ft2 Duct Unconditioned Surface Area -metadata_and_annual out.params.floor_area_attic..ft2 ft2 Floor Area, Attic -metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value r_value Floor Area, Attic * Insulation Increase -metadata_and_annual out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 ach_50 Floor Area, Conditioned * Infiltration Reduction -metadata_and_annual out.params.floor_area_foundation..ft2 ft2 Floor Area, Foundation -metadata_and_annual out.params.floor_area_lighting..ft2 ft2 Floor Area, Lighting -metadata_and_annual out.params.flow_rate_mechanical_ventilation..cfm cfm Flow Rate, Mechanical Ventilation -metadata_and_annual out.params.rim_joist_area_above_grade_exterior..ft2 ft2 Rim Joist Area, Above-Grade, Exterior -metadata_and_annual out.params.roof_area..ft2 ft2 Roof Area -metadata_and_annual out.params.size_cooling_system_primary..kbtu_per_hr k_btu_h Size, Cooling System Primary -metadata_and_annual out.params.size_heat_pump_backup_primary..kbtu_per_hr k_btu_h Size, Heat Pump Backup Primary -metadata_and_annual out.params.size_heating_system_primary..kbtu_per_hr k_btu_h Size, Heating System Primary -metadata_and_annual out.params.size_heating_system_secondary..kbtu_per_hr k_btu_h Size, Heating System Secondary -metadata_and_annual out.params.size_water_heater..gal gal Size, Water Heater -metadata_and_annual out.params.slab_perimeter_exposed_conditioned..ft ft Slab Perimeter, Exposed, Conditioned -metadata_and_annual out.params.wall_area_above_grade_conditioned..ft2 ft2 Wall Area, Above-Grade, Conditioned -metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 ft2 Wall Area, Above-Grade, Exterior -metadata_and_annual out.params.wall_area_below_grade..ft2 ft2 Wall Area, Below-Grade -metadata_and_annual out.params.window_area..ft2 ft2 Window Area -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count n/a Number of boreholes used for the geothermal heat pump system. -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh kwh -metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh kwh -metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh kwh -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh kwh Supply fan (air distribution) or circulating pump (geothermal loop) -metadata_and_annual out.electricity.cooling.energy_consumption..kwh kwh Excludes fans/pumps -metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh kwh -metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh kwh -metadata_and_annual out.electricity.freezer.energy_consumption..kwh kwh -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh kwh Excludes heat pump backup fans/pumps -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -metadata_and_annual out.electricity.heating.energy_consumption..kwh kwh Excludes heat pump backup and fans/pumps -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh kwh -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh kwh -metadata_and_annual out.electricity.hot_water.energy_consumption..kwh kwh Excludes recirc pump and solar thermal pump -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh kwh Non-zero only when using detailed (not simple) solar thermal inputs -metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh kwh Includes exterior holiday lighting -metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh kwh -metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh kwh -metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh kwh Excludes preheating/precooling -metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh kwh Excludes independently reported plug loads (e.g., well pump) -metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh kwh -metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh kwh -metadata_and_annual out.electricity.pv.energy_consumption..kwh kwh Negative value for any power produced -metadata_and_annual out.electricity.range_oven.energy_consumption..kwh kwh -metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh kwh -metadata_and_annual out.electricity.television.energy_consumption..kwh kwh -metadata_and_annual out.electricity.well_pump.energy_consumption..kwh kwh -metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh kwh Excludes heat pump backup -metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.grill.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.heating.energy_consumption..kwh kwh Excludes heat pump backup -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh kwh -metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh kwh -metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh kwh -metadata_and_annual out.propane.heating.energy_consumption..kwh kwh Excludes heat pump backup -metadata_and_annual out.propane.hot_water.energy_consumption..kwh kwh -metadata_and_annual out.propane.range_oven.energy_consumption..kwh kwh -metadata_and_annual out.site_energy.net.energy_consumption..kwh kwh Subtracts any power produced by PV or generators. -metadata_and_annual out.site_energy.total.energy_consumption..kwh kwh Includes any battery charging/discharging -metadata_and_annual out.electricity.net.energy_consumption..kwh kwh Subtracts any power produced by PV or generators. -metadata_and_annual out.electricity.total.energy_consumption..kwh kwh Includes any battery charging/discharging -metadata_and_annual out.fuel_oil.total.energy_consumption..kwh kwh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -metadata_and_annual out.natural_gas.total.energy_consumption..kwh kwh -metadata_and_annual out.propane.total.energy_consumption..kwh kwh -metadata_and_annual out.hot_water.clothes_washer..gal gal -metadata_and_annual out.hot_water.dishwasher..gal gal -metadata_and_annual out.hot_water.distribution_waste..gal gal -metadata_and_annual out.hot_water.fixtures..gal gal Showers and faucets. -metadata_and_annual out.capacity.cooling..btu_per_hr btu_h -metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr btu_h -metadata_and_annual out.capacity.heating..btu_per_hr btu_h -metadata_and_annual out.load.cooling.energy_delivered..kbtu kbtu Includes HVAC distribution losses. -metadata_and_annual out.load.heating.energy_delivered..kbtu kbtu Includes HVAC distribution losses. -metadata_and_annual out.load.hot_water.energy_delivered..kbtu kbtu Includes contributions by desuperheaters or solar thermal systems. -metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu kbtu Water heater solar thermal energy. -metadata_and_annual out.load.hot_water.energy_tank_losses..kbtu kbtu Water heater tank losses energy. -metadata_and_annual out.load.cooling.peak..kbtu_per_hr kbtu_hr Includes HVAC distribution losses. -metadata_and_annual out.load.heating.peak..kbtu_per_hr kbtu_hr Includes HVAC distribution losses. -metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -metadata_and_annual out.unmet_hours.cooling..hr hr Number of hours where the cooling setpoint is not maintained. -metadata_and_annual out.unmet_hours.ev_driving..hr hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. -metadata_and_annual out.unmet_hours.heating..hr hr Number of hours where the heating setpoint is not maintained. -metadata_and_annual out.emissions.electricity.lrmer_mid_case_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_mid_case_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_mid_case_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_mid_case_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_high_re_cost_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_high_re_cost_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_low_re_cost_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_low_re_cost_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_mid_case_avg..co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_mid_case_avg..co2e_kg kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.utility_bills.electricity_bill..usd usd Scenario annual total charges for electricity. -metadata_and_annual out.utility_bills.fuel_oil_bill..usd usd Scenario annual total charges for fuel oil. -metadata_and_annual out.utility_bills.natural_gas_bill..usd usd Scenario annual total charges for natural gas. -metadata_and_annual out.utility_bills.propane_bill..usd usd Scenario annual total charges for propane. -metadata_and_annual out.utility_bills.total_bill..usd usd Scenario annual total charges. -metadata_and_annual out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a amp Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240 -metadata_and_annual out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a amp Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a -metadata_and_annual out.params.panel_load_clothes_dryer..w w Electric load of clothes dryer, for electric only -metadata_and_annual out.params.panel_load_cooling..w w Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both -metadata_and_annual out.params.panel_load_dishwasher..w w Electric load of dishwasher -metadata_and_annual out.params.panel_load_ev_charging..w w Electric load of electric vehicle charging equipment -metadata_and_annual out.params.panel_load_heating..w w Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both -metadata_and_annual out.params.panel_load_hot_water..w w Electric load of water heater, for electric only -metadata_and_annual out.params.panel_load_mech_vent..w w Electric load of mechanical ventilation -metadata_and_annual out.params.panel_load_other..w w Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal. -metadata_and_annual out.params.panel_load_permanent_spa_heat..w w Electric load of permanent spa heater, for electric only -metadata_and_annual out.params.panel_load_permanent_spa_pump..w w Electric load of permanent spa pump -metadata_and_annual out.params.panel_load_pool_heater..w w Electric load of pool heater, for electric only -metadata_and_annual out.params.panel_load_pool_pump..w w Electric load of pool pump -metadata_and_annual out.params.panel_load_range_oven..w w Electric load of range oven, for electric only -metadata_and_annual out.params.panel_load_well_pump..w w Electric load of well pump -metadata_and_annual in.electric_panel_breaker_space_total_count count Total breaker spaces on electric panel -metadata_and_annual out.params.panel_breaker_space_occupied_count count Total occupied breaker spaces on electric panel -metadata_and_annual out.params.panel_breaker_space_headroom_count count Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count -metadata_and_annual out.params.panel_breaker_space_clothes_dryer_count count Breaker spaces occupied by clothes dryer -metadata_and_annual out.params.panel_breaker_space_cooling_count count Breaker spaces occupied by space cooling -metadata_and_annual out.params.panel_breaker_space_dishwasher_count count Breaker spaces occupied by dishwasher -metadata_and_annual out.params.panel_breaker_space_ev_charging_count count Breaker spaces occupied by electric vehicle charging equipment -metadata_and_annual out.params.panel_breaker_space_heating_count count Breaker spaces occupied by space heating -metadata_and_annual out.params.panel_breaker_space_hot_water_count count Breaker spaces occupied by water heater -metadata_and_annual out.params.panel_breaker_space_mech_vent_count count Breaker spaces occupied by mechanical ventilation -metadata_and_annual out.params.panel_breaker_space_other_count count Breaker spaces occupied by other loads -metadata_and_annual out.params.panel_breaker_space_permanent_spa_heat_count count Breaker spaces occupied by permanent spa heater -metadata_and_annual out.params.panel_breaker_space_permanent_spa_pump_count count Breaker spaces occupied by permanent spa pump -metadata_and_annual out.params.panel_breaker_space_pool_heater_count count Breaker spaces occupied by pool heater -metadata_and_annual out.params.panel_breaker_space_pool_pump_count count Breaker spaces occupied by pool pump -metadata_and_annual out.params.panel_breaker_space_range_oven_count count Breaker spaces occupied by range oven -metadata_and_annual out.params.panel_breaker_space_well_pump_count count Breaker spaces occupied by well pump -metadata_and_annual out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_breaker_space_occupied_savings_count count Number of breaker spaces reduced from an energy measure -metadata_and_annual out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based bool Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0 -metadata_and_annual out.params.panel_constraint_breaker_space bool Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0 -metadata_and_annual out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -metadata_and_annual out.energy_burden..percentage percentage Percentage of income spent on energy -metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh kwh -metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh kwh -metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh kwh -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh kwh -metadata_and_annual out.electricity.cooling.energy_savings..kwh kwh -metadata_and_annual out.electricity.dishwasher.energy_savings..kwh kwh -metadata_and_annual out.electricity.ev_charging.energy_savings..kwh kwh -metadata_and_annual out.electricity.freezer.energy_savings..kwh kwh -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh kwh -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh kwh -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh kwh -metadata_and_annual out.electricity.heating.energy_savings..kwh kwh -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh kwh -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh kwh -metadata_and_annual out.electricity.hot_water.energy_savings..kwh kwh -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh kwh -metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh kwh -metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh kwh -metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh kwh -metadata_and_annual out.electricity.mech_vent.energy_savings..kwh kwh -metadata_and_annual out.electricity.plug_loads.energy_savings..kwh kwh -metadata_and_annual out.electricity.pool_heater.energy_savings..kwh kwh -metadata_and_annual out.electricity.pool_pump.energy_savings..kwh kwh -metadata_and_annual out.electricity.pv.energy_savings..kwh kwh -metadata_and_annual out.electricity.range_oven.energy_savings..kwh kwh -metadata_and_annual out.electricity.refrigerator.energy_savings..kwh kwh -metadata_and_annual out.electricity.television.energy_savings..kwh kwh -metadata_and_annual out.electricity.well_pump.energy_savings..kwh kwh -metadata_and_annual out.fuel_oil.heating.energy_savings..kwh kwh -metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.grill.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.heating.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.lighting.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh kwh -metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh kwh -metadata_and_annual out.propane.heating.energy_savings..kwh kwh -metadata_and_annual out.propane.hot_water.energy_savings..kwh kwh -metadata_and_annual out.propane.range_oven.energy_savings..kwh kwh -metadata_and_annual out.site_energy.net.energy_savings..kwh kwh -metadata_and_annual out.site_energy.total.energy_savings..kwh kwh -metadata_and_annual out.electricity.net.energy_savings..kwh kwh -metadata_and_annual out.electricity.total.energy_savings..kwh kwh -metadata_and_annual out.fuel_oil.total.energy_savings..kwh kwh -metadata_and_annual out.natural_gas.total.energy_savings..kwh kwh -metadata_and_annual out.propane.total.energy_savings..kwh kwh -metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu kbtu -metadata_and_annual out.load.heating.energy_delivered_savings..kbtu kbtu -metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu kbtu -metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu kbtu -metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu kbtu -metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr kbtu_hr -metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr kbtu_hr -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw kw -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw kw -metadata_and_annual out.unmet_hours_reduction.cooling..hr hour -metadata_and_annual out.unmet_hours_reduction.heating..hr hour -metadata_and_annual out.emissions.fuel_oil.total..co2e_kg n/a -metadata_and_annual out.emissions.natural_gas.total..co2e_kg n/a -metadata_and_annual out.emissions.propane.total..co2e_kg n/a -metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg n/a -metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg n/a -metadata_and_annual out.emissions_reduction.propane.total..co2e_kg n/a -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg kg -metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg kg -metadata_and_annual out.utility_bills.electricity_bill_savings..usd usd -metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd usd -metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd usd -metadata_and_annual out.utility_bills.propane_bill_savings..usd usd -metadata_and_annual out.utility_bills.total_bill_savings..usd usd -metadata_and_annual out.energy_burden_savings..percentage percentage -metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 kwh_per_ft2 -metadata_and_annual upgrade.electric_vehicle_charger n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.electric_vehicle_efficiency_increase n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.electric_vehicle_ownership n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.heating_fuel n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_cooling_efficiency n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_heating_efficiency n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_heating_type_and_fuel n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_secondary_heating_efficiency n/a Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_secondary_heating_fuel n/a Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.infiltration_reduction n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.insulation_ceiling n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.water_heater_efficiency n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.water_heater_fuel n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_detailed_performance_data n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.demand_flexibility_electric_vehicle n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.demand_flexibility_hvac n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.demand_flexibility_random_shift n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.duct_leakage_and_insulation n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.infiltration n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.insulation_wall n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.windows n/a Only appears when at least one building has this upgrade. -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu tbtu -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu tbtu -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt co2e_mmt -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh kWh Supply fan (air distribution) or circulating pump (geothermal loop) -timeseries_aggregates out.electricity.cooling.energy_consumption..kwh kWh Excludes fans/pumps -timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.freezer.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh kWh Excludes heat pump backup fans/pumps -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -timeseries_aggregates out.electricity.heating.energy_consumption..kwh kWh Excludes heat pump backup and fans/pumps -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh kWh Excludes recirc pump and solar thermal pump -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh kWh Non-zero only when using detailed (not simple) solar thermal inputs -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh kWh Includes exterior holiday lighting -timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh kWh Excludes preheating/precooling -timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh kWh Excludes independently reported plug loads (e.g., well pump) -timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.pv.energy_consumption..kwh kWh Negative value for any power produced -timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.television.energy_consumption..kwh kWh -timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh kWh -timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh kWh Excludes heat pump backup -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh kWh Excludes heat pump backup -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh kWh -timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh kWh -timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh kWh -timeseries_aggregates out.propane.heating.energy_consumption..kwh kWh Excludes heat pump backup -timeseries_aggregates out.propane.hot_water.energy_consumption..kwh kWh -timeseries_aggregates out.propane.range_oven.energy_consumption..kwh kWh -timeseries_aggregates out.site_energy.net.energy_consumption..kwh kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.site_energy.total.energy_consumption..kwh kWh Includes any battery charging/discharging -timeseries_aggregates out.electricity.net.energy_consumption..kwh kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.electricity.total.energy_consumption..kwh kWh Includes any battery charging/discharging -timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -timeseries_aggregates out.natural_gas.total.energy_consumption..kwh kWh -timeseries_aggregates out.propane.total.energy_consumption..kwh kWh -timeseries_aggregates out.load.cooling.energy_delivered..kbtu kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.heating.energy_delivered..kbtu kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.hot_water.energy_delivered..kbtu kBtu Includes contributions by desuperheaters or solar thermal systems. -timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu kBtu Water heater solar thermal energy. -timeseries_aggregates out.load.hot_water.energy_tank_losses..kbtu kBtu Water heater tank losses energy. -timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_midcase_avg.co2e_kg kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg n/a -timeseries_aggregates out.emissions.natural_gas.total..co2e_kg n/a -timeseries_aggregates out.emissions.propane.total..co2e_kg n/a +field_location field_name data_type units field_description +metadata_and_annual bldg_id string n/a The building unit number (between 1 and the number of samples). +metadata_and_annual completed_status string n/a The simulation status. +metadata_and_annual upgrade string n/a The upgrade number +metadata_and_annual in.upgrade_name string n/a User-specificed name that describes the upgrade. +metadata_and_annual weight float n/a Number of buildings this simulation represents. +metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the building. Will be always True for baseline. +metadata_and_annual in.sqft..ft2 float ft2 Floor Area, Conditioned +metadata_and_annual in.representative_income float usd Average representative income of the country +metadata_and_annual in.county_name string n/a County name +metadata_and_annual in.ahs_region string n/a The American Housing Survey region that the sample is located. +metadata_and_annual in.aiannh_area boolean n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +metadata_and_annual in.area_median_income string n/a Area median income of the household occupying the dwelling unit. +metadata_and_annual in.ashrae_iecc_climate_zone_2004 string n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split string n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI. +metadata_and_annual in.bathroom_spot_vent_hour string n/a Bathroom spot ventilation daily start hour. +metadata_and_annual in.battery string n/a The size of an onsite battery (not used in baseline models). +metadata_and_annual in.bedrooms integer n/a The number of bedrooms in the dwelling unit. +metadata_and_annual in.building_america_climate_zone string n/a The Building America Climate Zone that the sample is located. +metadata_and_annual in.cec_climate_zone string n/a The California Energy Commission Climate Zone that the sample is located. +metadata_and_annual in.ceiling_fan string n/a Presence and energy usage of ceiling fans at medium speed. +metadata_and_annual in.census_division string n/a The U.S. Census Division that the sample is located. +metadata_and_annual in.census_division_recs string n/a Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). +metadata_and_annual in.census_region string n/a The U.S. Census Region that the sample is located. +metadata_and_annual in.city string n/a The City that the sample is located. +metadata_and_annual in.clothes_dryer string n/a The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit. +metadata_and_annual in.clothes_dryer_usage_level string n/a Clothes dryer energy usage level multiplier. +metadata_and_annual in.clothes_washer string n/a Presence and rated efficiency of the clothes washer. +metadata_and_annual in.clothes_washer_presence string n/a The presence of a clothes washer in the dwelling unit. +metadata_and_annual in.clothes_washer_usage_level string n/a Clothes washer energy usage level multiplier. +metadata_and_annual in.cooking_range string n/a Presence and fuel type of the cooking range. +metadata_and_annual in.cooking_range_usage_level string n/a Cooking range energy usage level multiplier. +metadata_and_annual in.cooling_unavailable_days string n/a Number of days in a year the cooling system is unavailable. +metadata_and_annual in.cooling_setpoint string n/a Baseline cooling setpoint with no offset applied. +metadata_and_annual in.cooling_setpoint_has_offset boolean n/a Presence of a cooling setpoint offset. +metadata_and_annual in.cooling_setpoint_offset_magnitude string n/a The magnitude of cooling setpoint offset. +metadata_and_annual in.cooling_setpoint_offset_period string n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +metadata_and_annual in.corridor string n/a Type of corridor attached to multi-family units. +metadata_and_annual in.county string n/a The U.S. County that the sample is located. +metadata_and_annual in.county_and_puma string n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +metadata_and_annual in.county_metro_status string n/a The Metro Status of the county that the sample is located, based on MSA and MicroSA. +metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +metadata_and_annual in.dehumidifier string n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. +metadata_and_annual in.dishwasher string n/a The presence and rated efficiency of the dishwasher. +metadata_and_annual in.dishwasher_usage_level string n/a Dishwasher energy usage level multiplier. +metadata_and_annual in.door_area string n/a Area of exterior doors. +metadata_and_annual in.doors string n/a Exterior door material and properties. +metadata_and_annual in.duct_leakage_and_insulation string n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +metadata_and_annual in.duct_location string n/a Location of Duct System. +metadata_and_annual in.eaves string n/a Depth of roof eaves. +metadata_and_annual in.electric_panel_service_rating..a integer amp The rating of electric panel in Ampere. +metadata_and_annual in.electric_panel_service_rating_bin..a string amp The rating bin of electric panel in Ampere. +metadata_and_annual in.electric_vehicle_battery string n/a The type of electric vehicle and battery range in miles. +metadata_and_annual in.electric_vehicle_charge_at_home string n/a The percentage a household would or do charge their electric vehicle at home. +metadata_and_annual in.electric_vehicle_charger string n/a Type of electric vehicle charger used at the dwelling unit. +metadata_and_annual in.electric_vehicle_miles_traveled integer n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. +metadata_and_annual in.electric_vehicle_outlet_access boolean n/a The unit has an outlet within 20 feet of vehicle parking. +metadata_and_annual in.electric_vehicle_ownership boolean n/a The dwelling unit owns an electric vehicle. +metadata_and_annual in.energystar_climate_zone_2023 string n/a Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023. +metadata_and_annual in.federal_poverty_level string n/a Federal poverty level of the household occupying the dwelling unit. +metadata_and_annual in.generation_and_emissions_assessment_region string n/a The generation and carbon emissions assessment region that the sample is located in. +metadata_and_annual in.geometry_attic_type string n/a The dwelling unit attic type. +metadata_and_annual in.geometry_building_horizontal_location_mf string n/a Location of the single-family attached unit horizontally within the building (left, middle, right). +metadata_and_annual in.geometry_building_horizontal_location_sfa string n/a Location of the single-family attached unit horizontally within the building (left, middle, right). +metadata_and_annual in.geometry_building_level_mf string n/a Location of the multi-family unit vertically within the building (bottom, middle, top). +metadata_and_annual in.geometry_building_number_units_mf integer n/a The number of dwelling units in the multi-family building. +metadata_and_annual in.geometry_building_number_units_sfa integer n/a Number of units in the single-family attached building. +metadata_and_annual in.geometry_building_type_acs string n/a The building type classification according to the U.S. Census American Community Survey. +metadata_and_annual in.geometry_building_type_height string n/a The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise. +metadata_and_annual in.geometry_building_type_recs string n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_floor_area string n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +metadata_and_annual in.geometry_floor_area_bin string n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_foundation_type string n/a The type of foundation. +metadata_and_annual in.geometry_garage string n/a The size of an attached garage. +metadata_and_annual in.geometry_space_combination string n/a Valid combinations of building type, building level mf, attic, foundation, and garage. +metadata_and_annual in.geometry_stories integer n/a The number of building stories. +metadata_and_annual in.geometry_stories_low_rise string n/a Number of building stories for low-rise buildings. +metadata_and_annual in.geometry_story_bin string n/a The building has more than 8 or less than 8 stories. +metadata_and_annual in.geometry_wall_exterior_finish string n/a Wall siding material and color. +metadata_and_annual in.geometry_wall_type string n/a The wall material used for thermal mass calculations of exterior walls. +metadata_and_annual in.ground_thermal_conductivity float n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +metadata_and_annual in.has_pv boolean n/a The dwelling unit has a rooftop photovoltaic system. +metadata_and_annual in.heating_fuel string n/a The primary fuel used for heating the dwelling unit. +metadata_and_annual in.heating_unavailable_days string n/a Number of days in a year the heating system is unavailable. +metadata_and_annual in.heating_setpoint string n/a Baseline heating setpoint with no offset applied. +metadata_and_annual in.heating_setpoint_has_offset boolean n/a Presence of a heating setpoint offset. +metadata_and_annual in.heating_setpoint_offset_magnitude string n/a Magnitude of the heating setpoint offset. +metadata_and_annual in.heating_setpoint_offset_period string n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +metadata_and_annual in.holiday_lighting string n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). +metadata_and_annual in.hot_water_distribution string n/a Type of distribution system and presence of hot water piping insulation. +metadata_and_annual in.hot_water_fixtures string n/a Hot water fixture usage and flow levels. +metadata_and_annual in.household_has_tribal_persons string n/a The household occupying the dwelling unit has at least one tribal person in the household. +metadata_and_annual in.hvac_cooling_autosizing_factor string n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +metadata_and_annual in.hvac_cooling_efficiency string n/a The presence and efficiency of primary cooling system in the dwelling unit. +metadata_and_annual in.hvac_cooling_partial_space_conditioning string n/a The fraction of the finished floor area that the cooling system provides cooling. +metadata_and_annual in.hvac_cooling_type string n/a The presence and type of primary cooling system in the dwelling unit. +metadata_and_annual in.hvac_has_ducts boolean n/a The presence of ducts in the dwelling unit. +metadata_and_annual in.hvac_has_shared_system string n/a The presence of an HVAC system shared between multiple dwelling units. +metadata_and_annual in.hvac_has_zonal_electric_heating boolean n/a Presence of electric baseboard heating. +metadata_and_annual in.hvac_heating_autosizing_factor string n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +metadata_and_annual in.hvac_heating_efficiency string n/a The presence and efficiency of the primary heating system in the dwelling unit. +metadata_and_annual in.hvac_heating_type string n/a The presence and type of the primary heating system in the dwelling unit. +metadata_and_annual in.hvac_heating_type_and_fuel string n/a The presence, type, and fuel of primary heating system. +metadata_and_annual in.hvac_secondary_heating_efficiency string n/a The efficiency and type of the secondary heating system. +metadata_and_annual in.hvac_secondary_heating_fuel string n/a Secondary Heating Fuel for the dwelling unit +metadata_and_annual in.hvac_secondary_heating_partial_space_conditioning string n/a The fraction of heating load served by secondary heating system. +metadata_and_annual in.hvac_secondary_heating_type string n/a The efficiency and type of the secondary heating system. +metadata_and_annual in.hvac_shared_efficiencies string n/a The presence and efficiency of the shared HVAC system. +metadata_and_annual in.hvac_system_is_faulted boolean n/a The presence of the HVAC system having a fault (not used). +metadata_and_annual in.hvac_system_is_scaled boolean n/a Whether the HVAC system has been undersized or oversized (not used). +metadata_and_annual in.hvac_system_single_speed_ac_airflow string n/a Single speed central and room air conditioner actual air flow rates. +metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and room air conditioner deviation between design/installed charge. +metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates. +metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge. +metadata_and_annual in.income string n/a Income of the household occupying the dwelling unit. +metadata_and_annual in.income_recs_2015 string n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.income_recs_2020 string n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.infiltration string n/a Total infiltration to the dwelling unit. +metadata_and_annual in.insulation_ceiling string n/a Ceiling insulation level (between the living space and unconditioned attic). +metadata_and_annual in.insulation_floor string n/a Floor insulation level. +metadata_and_annual in.insulation_foundation_wall string n/a Foundation walls insulation level. +metadata_and_annual in.insulation_rim_joist string n/a Insulation level for rim joists. +metadata_and_annual in.insulation_roof string n/a Finished roof insulation level. +metadata_and_annual in.insulation_slab string n/a Slab insulation level. +metadata_and_annual in.insulation_wall string n/a Wall construction type and insulation level. +metadata_and_annual in.interior_shading string n/a Type of window interior shading. +metadata_and_annual in.iso_rto_region string n/a The independent system operator or regional transmission organization region that the sample is located. +metadata_and_annual in.lighting string n/a Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options. +metadata_and_annual in.lighting_interior_use string n/a Interior lighting usage relative to the national average. +metadata_and_annual in.lighting_other_use string n/a Exterior and garage lighting usage relative to the national average. +metadata_and_annual in.location_region string n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +metadata_and_annual in.mechanical_ventilation string n/a Mechanical ventilation type and efficiency. +metadata_and_annual in.metropolitan_and_micropolitan_statistical_area string n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +metadata_and_annual in.misc_extra_refrigerator string n/a The presence and rated efficiency of the secondary refrigerator. +metadata_and_annual in.misc_freezer string n/a The presence and rated efficiency of a standalone freezer. +metadata_and_annual in.misc_gas_fireplace string n/a Presence of a gas fireplace.` +metadata_and_annual in.misc_gas_grill string n/a Presence of a gas grill. +metadata_and_annual in.misc_gas_lighting string n/a Presence of exterior gas lighting. +metadata_and_annual in.misc_hot_tub_spa string n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. +metadata_and_annual in.misc_pool string n/a The presence of a pool at the dwelling unit. +metadata_and_annual in.misc_pool_heater string n/a The heating fuel of the pool heater if there is a pool. +metadata_and_annual in.misc_pool_pump string n/a Presence and size of pool pump. +metadata_and_annual in.misc_well_pump string n/a Presence of well pump according to the use of well for domestic water source. +metadata_and_annual in.natural_ventilation string n/a Schedule of natural ventilation from windows. +metadata_and_annual in.neighbors string n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +metadata_and_annual in.occupants string n/a The number of occupants living in the dwelling unit. +metadata_and_annual in.orientation string n/a Orientation of the front of the dwelling unit as it faces the street. +metadata_and_annual in.overhangs string n/a Presence, depth, and location of window overhangs +metadata_and_annual in.plug_load_diversity string n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +metadata_and_annual in.plug_loads string n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. +metadata_and_annual in.puma string n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +metadata_and_annual in.puma_metro_status string n/a The public use microdata area metropolitan status that the dwelling unit is located. +metadata_and_annual in.pv_orientation string n/a The orientation of the photovoltaic system. +metadata_and_annual in.pv_system_size string n/a The size of the photovoltaic system. +metadata_and_annual in.radiant_barrier string n/a Presence of radiant barrier in the attic (not modeled). +metadata_and_annual in.range_spot_vent_hour string n/a Range spot ventilation daily start hour. +metadata_and_annual in.reeds_balancing_area string n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +metadata_and_annual in.refrigerator string n/a The presence and rated efficiency of the primary refrigerator. +metadata_and_annual in.refrigerator_usage_level string n/a Refrigerator energy usage level multiplier. +metadata_and_annual in.roof_material string n/a Roof material and color. +metadata_and_annual in.state string n/a The U.S. State the sample is located. +metadata_and_annual in.state_metro_median_income string n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +metadata_and_annual in.tenure string n/a The tenancy (owner or renter) of the household occupying the dwelling unit. +metadata_and_annual in.usage_level string n/a Usage of major appliances relative to the national average. +metadata_and_annual in.vacancy_status string n/a The vacancy status (occupied or vacant) of the dwelling unit. +metadata_and_annual in.vintage string n/a Time period in which the building was constructed. +metadata_and_annual in.vintage_acs string n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +metadata_and_annual in.water_heater_efficiency string n/a The efficiency, type, and heating fuel of water heater. +metadata_and_annual in.water_heater_fuel string n/a The water heater fuel type. +metadata_and_annual in.water_heater_in_unit boolean n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +metadata_and_annual in.water_heater_location string n/a location of water heater. +metadata_and_annual in.window_areas string n/a Window to wall ratios of the front, back, left, and right walls. +metadata_and_annual in.windows string n/a Construction type and efficiency levels of windows. +metadata_and_annual in.air_leakage_to_outside_ach50 float n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +metadata_and_annual in.applicable boolean n/a The measure was applied to the workflow. +metadata_and_annual in.buildstock_csv_path string n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +metadata_and_annual in.units_represented integer n/a The number of dwelling units this simulation represents. Should always be one. +metadata_and_annual in.simulation_control_run_period_begin_day_of_month integer n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_begin_month integer n/a This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_calendar_year integer n/a This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. +metadata_and_annual in.simulation_control_run_period_end_day_of_month integer n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_end_month integer n/a This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.simulation_control_timestep integer n/a Value must be a divisor of 60. +metadata_and_annual in.utility_bill_electricity_fixed_charges float usd Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_electricity_marginal_rates float usd Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_fuel_oil_fixed_charges float usd Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_fuel_oil_marginal_rates float usd Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_natural_gas_fixed_charges float usd Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_natural_gas_marginal_rates float usd Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_propane_fixed_charges float usd Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_propane_marginal_rates float usd Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_scenario_names string n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_simple_filepaths string n/a Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header. +metadata_and_annual in.weather_file_city string n/a City from the EPW weather file. +metadata_and_annual in.weather_file_latitude float n/a Latitude from the EPW weather file. +metadata_and_annual in.weather_file_longitude float n/a Longitude from the EPW weather file. +metadata_and_annual in.heating_unavailable_period string n/a Heating unavailable period. +metadata_and_annual in.cooling_unavailable_period string n/a Cooling unavailable period. +metadata_and_annual out.params.door_area..ft2 float ft2 Door Area +metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 float ft2 Duct Unconditioned Surface Area +metadata_and_annual out.params.floor_area_attic..ft2 float ft2 Floor Area, Attic +metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value float r_value Floor Area, Attic * Insulation Increase +metadata_and_annual out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 float ach_50 Floor Area, Conditioned * Infiltration Reduction +metadata_and_annual out.params.floor_area_foundation..ft2 float ft2 Floor Area, Foundation +metadata_and_annual out.params.floor_area_lighting..ft2 float ft2 Floor Area, Lighting +metadata_and_annual out.params.flow_rate_mechanical_ventilation..cfm float cfm Flow Rate, Mechanical Ventilation +metadata_and_annual out.params.rim_joist_area_above_grade_exterior..ft2 float ft2 Rim Joist Area, Above-Grade, Exterior +metadata_and_annual out.params.roof_area..ft2 float ft2 Roof Area +metadata_and_annual out.params.size_cooling_system_primary..kbtu_per_hr float k_btu_h Size, Cooling System Primary +metadata_and_annual out.params.size_heat_pump_backup_primary..kbtu_per_hr float k_btu_h Size, Heat Pump Backup Primary +metadata_and_annual out.params.size_heating_system_primary..kbtu_per_hr float k_btu_h Size, Heating System Primary +metadata_and_annual out.params.size_heating_system_secondary..kbtu_per_hr float k_btu_h Size, Heating System Secondary +metadata_and_annual out.params.size_water_heater..gal float gal Size, Water Heater +metadata_and_annual out.params.slab_perimeter_exposed_conditioned..ft float ft Slab Perimeter, Exposed, Conditioned +metadata_and_annual out.params.wall_area_above_grade_conditioned..ft2 float ft2 Wall Area, Above-Grade, Conditioned +metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 float ft2 Wall Area, Above-Grade, Exterior +metadata_and_annual out.params.wall_area_below_grade..ft2 float ft2 Wall Area, Below-Grade +metadata_and_annual out.params.window_area..ft2 float ft2 Window Area +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count integer n/a Number of boreholes used for the geothermal heat pump system. +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Supply fan (air distribution) or circulating pump (geothermal loop) +metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Excludes fans/pumps +metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Excludes heat pump backup fans/pumps +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Excludes heat pump backup and fans/pumps +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Excludes recirc pump and solar thermal pump +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Non-zero only when using detailed (not simple) solar thermal inputs +metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Includes exterior holiday lighting +metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh float kwh Excludes preheating/precooling +metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh float kwh Excludes independently reported plug loads (e.g., well pump) +metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.pv.energy_consumption..kwh float kwh Negative value for any power produced +metadata_and_annual out.electricity.range_oven.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.television.energy_consumption..kwh float kwh +metadata_and_annual out.electricity.well_pump.energy_consumption..kwh float kwh +metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh float kwh Excludes heat pump backup +metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.grill.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.heating.energy_consumption..kwh float kwh Excludes heat pump backup +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh float kwh +metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh float kwh +metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh float kwh +metadata_and_annual out.propane.heating.energy_consumption..kwh float kwh Excludes heat pump backup +metadata_and_annual out.propane.hot_water.energy_consumption..kwh float kwh +metadata_and_annual out.propane.range_oven.energy_consumption..kwh float kwh +metadata_and_annual out.site_energy.net.energy_consumption..kwh float kwh Subtracts any power produced by PV or generators. +metadata_and_annual out.site_energy.total.energy_consumption..kwh float kwh Includes any battery charging/discharging +metadata_and_annual out.electricity.net.energy_consumption..kwh float kwh Subtracts any power produced by PV or generators. +metadata_and_annual out.electricity.total.energy_consumption..kwh float kwh Includes any battery charging/discharging +metadata_and_annual out.fuel_oil.total.energy_consumption..kwh float kwh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +metadata_and_annual out.natural_gas.total.energy_consumption..kwh float kwh +metadata_and_annual out.propane.total.energy_consumption..kwh float kwh +metadata_and_annual out.hot_water.clothes_washer..gal float gal +metadata_and_annual out.hot_water.dishwasher..gal float gal +metadata_and_annual out.hot_water.distribution_waste..gal float gal +metadata_and_annual out.hot_water.fixtures..gal float gal Showers and faucets. +metadata_and_annual out.capacity.cooling..btu_per_hr float btu_h +metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr float btu_h +metadata_and_annual out.capacity.heating..btu_per_hr float btu_h +metadata_and_annual out.load.cooling.energy_delivered..kbtu float kbtu Includes HVAC distribution losses. +metadata_and_annual out.load.heating.energy_delivered..kbtu float kbtu Includes HVAC distribution losses. +metadata_and_annual out.load.hot_water.energy_delivered..kbtu float kbtu Includes contributions by desuperheaters or solar thermal systems. +metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu float kbtu Water heater solar thermal energy. +metadata_and_annual out.load.hot_water.energy_tank_losses..kbtu float kbtu Water heater tank losses energy. +metadata_and_annual out.load.cooling.peak..kbtu_per_hr float kbtu_hr Includes HVAC distribution losses. +metadata_and_annual out.load.heating.peak..kbtu_per_hr float kbtu_hr Includes HVAC distribution losses. +metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw float kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw float kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +metadata_and_annual out.unmet_hours.cooling..hr float hr Number of hours where the cooling setpoint is not maintained. +metadata_and_annual out.unmet_hours.ev_driving..hr float hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. +metadata_and_annual out.unmet_hours.heating..hr float hr Number of hours where the heating setpoint is not maintained. +metadata_and_annual out.emissions.electricity.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.emissions.electricity.aer_mid_case_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions.total.aer_mid_case_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +metadata_and_annual out.utility_bills.electricity_bill..usd float usd Scenario annual total charges for electricity. +metadata_and_annual out.utility_bills.fuel_oil_bill..usd float usd Scenario annual total charges for fuel oil. +metadata_and_annual out.utility_bills.natural_gas_bill..usd float usd Scenario annual total charges for natural gas. +metadata_and_annual out.utility_bills.propane_bill..usd float usd Scenario annual total charges for propane. +metadata_and_annual out.utility_bills.total_bill..usd float usd Scenario annual total charges. +metadata_and_annual out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w float w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a integer amp Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240 +metadata_and_annual out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a integer amp Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a +metadata_and_annual out.params.panel_load_clothes_dryer..w float w Electric load of clothes dryer, for electric only +metadata_and_annual out.params.panel_load_cooling..w float w Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both +metadata_and_annual out.params.panel_load_dishwasher..w float w Electric load of dishwasher +metadata_and_annual out.params.panel_load_ev_charging..w float w Electric load of electric vehicle charging equipment +metadata_and_annual out.params.panel_load_heating..w float w Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both +metadata_and_annual out.params.panel_load_hot_water..w float w Electric load of water heater, for electric only +metadata_and_annual out.params.panel_load_mech_vent..w float w Electric load of mechanical ventilation +metadata_and_annual out.params.panel_load_other..w float w Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal. +metadata_and_annual out.params.panel_load_permanent_spa_heat..w float w Electric load of permanent spa heater, for electric only +metadata_and_annual out.params.panel_load_permanent_spa_pump..w float w Electric load of permanent spa pump +metadata_and_annual out.params.panel_load_pool_heater..w float w Electric load of pool heater, for electric only +metadata_and_annual out.params.panel_load_pool_pump..w float w Electric load of pool pump +metadata_and_annual out.params.panel_load_range_oven..w float w Electric load of range oven, for electric only +metadata_and_annual out.params.panel_load_well_pump..w float w Electric load of well pump +metadata_and_annual in.electric_panel_breaker_space_total_count integer count Total breaker spaces on electric panel +metadata_and_annual out.params.panel_breaker_space_occupied_count integer count Total occupied breaker spaces on electric panel +metadata_and_annual out.params.panel_breaker_space_headroom_count integer count Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count +metadata_and_annual out.params.panel_breaker_space_clothes_dryer_count integer count Breaker spaces occupied by clothes dryer +metadata_and_annual out.params.panel_breaker_space_cooling_count integer count Breaker spaces occupied by space cooling +metadata_and_annual out.params.panel_breaker_space_dishwasher_count integer count Breaker spaces occupied by dishwasher +metadata_and_annual out.params.panel_breaker_space_ev_charging_count integer count Breaker spaces occupied by electric vehicle charging equipment +metadata_and_annual out.params.panel_breaker_space_heating_count integer count Breaker spaces occupied by space heating +metadata_and_annual out.params.panel_breaker_space_hot_water_count integer count Breaker spaces occupied by water heater +metadata_and_annual out.params.panel_breaker_space_mech_vent_count integer count Breaker spaces occupied by mechanical ventilation +metadata_and_annual out.params.panel_breaker_space_other_count integer count Breaker spaces occupied by other loads +metadata_and_annual out.params.panel_breaker_space_permanent_spa_heat_count integer count Breaker spaces occupied by permanent spa heater +metadata_and_annual out.params.panel_breaker_space_permanent_spa_pump_count integer count Breaker spaces occupied by permanent spa pump +metadata_and_annual out.params.panel_breaker_space_pool_heater_count integer count Breaker spaces occupied by pool heater +metadata_and_annual out.params.panel_breaker_space_pool_pump_count integer count Breaker spaces occupied by pool pump +metadata_and_annual out.params.panel_breaker_space_range_oven_count integer count Breaker spaces occupied by range oven +metadata_and_annual out.params.panel_breaker_space_well_pump_count integer count Breaker spaces occupied by well pump +metadata_and_annual out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w float w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a integer amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +metadata_and_annual out.params.panel_breaker_space_occupied_savings_count integer count Number of breaker spaces reduced from an energy measure +metadata_and_annual out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based boolean bool Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0 +metadata_and_annual out.params.panel_constraint_breaker_space boolean bool Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0 +metadata_and_annual out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based string categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +metadata_and_annual out.energy_burden..percentage float percentage Percentage of income spent on energy +metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh float kwh +metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh float kwh +metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh float kwh +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh float kwh +metadata_and_annual out.electricity.cooling.energy_savings..kwh float kwh +metadata_and_annual out.electricity.dishwasher.energy_savings..kwh float kwh +metadata_and_annual out.electricity.ev_charging.energy_savings..kwh float kwh +metadata_and_annual out.electricity.freezer.energy_savings..kwh float kwh +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh float kwh +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh float kwh +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh float kwh +metadata_and_annual out.electricity.heating.energy_savings..kwh float kwh +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh float kwh +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh float kwh +metadata_and_annual out.electricity.hot_water.energy_savings..kwh float kwh +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh float kwh +metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh float kwh +metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh float kwh +metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh float kwh +metadata_and_annual out.electricity.mech_vent.energy_savings..kwh float kwh +metadata_and_annual out.electricity.plug_loads.energy_savings..kwh float kwh +metadata_and_annual out.electricity.pool_heater.energy_savings..kwh float kwh +metadata_and_annual out.electricity.pool_pump.energy_savings..kwh float kwh +metadata_and_annual out.electricity.pv.energy_savings..kwh float kwh +metadata_and_annual out.electricity.range_oven.energy_savings..kwh float kwh +metadata_and_annual out.electricity.refrigerator.energy_savings..kwh float kwh +metadata_and_annual out.electricity.television.energy_savings..kwh float kwh +metadata_and_annual out.electricity.well_pump.energy_savings..kwh float kwh +metadata_and_annual out.fuel_oil.heating.energy_savings..kwh float kwh +metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.grill.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.heating.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.lighting.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh float kwh +metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh float kwh +metadata_and_annual out.propane.heating.energy_savings..kwh float kwh +metadata_and_annual out.propane.hot_water.energy_savings..kwh float kwh +metadata_and_annual out.propane.range_oven.energy_savings..kwh float kwh +metadata_and_annual out.site_energy.net.energy_savings..kwh float kwh +metadata_and_annual out.site_energy.total.energy_savings..kwh float kwh +metadata_and_annual out.electricity.net.energy_savings..kwh float kwh +metadata_and_annual out.electricity.total.energy_savings..kwh float kwh +metadata_and_annual out.fuel_oil.total.energy_savings..kwh float kwh +metadata_and_annual out.natural_gas.total.energy_savings..kwh float kwh +metadata_and_annual out.propane.total.energy_savings..kwh float kwh +metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu float kbtu +metadata_and_annual out.load.heating.energy_delivered_savings..kbtu float kbtu +metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu float kbtu +metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu float kbtu +metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu float kbtu +metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr float kbtu_hr +metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr float kbtu_hr +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw float kw +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw float kw +metadata_and_annual out.unmet_hours_reduction.cooling..hr float hour +metadata_and_annual out.unmet_hours_reduction.heating..hr float hour +metadata_and_annual out.emissions.fuel_oil.total..co2e_kg float n/a +metadata_and_annual out.emissions.natural_gas.total..co2e_kg float n/a +metadata_and_annual out.emissions.propane.total..co2e_kg float n/a +metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg float n/a +metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg float n/a +metadata_and_annual out.emissions_reduction.propane.total..co2e_kg float n/a +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg float kg +metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg float kg +metadata_and_annual out.utility_bills.electricity_bill_savings..usd float usd +metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd float usd +metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd float usd +metadata_and_annual out.utility_bills.propane_bill_savings..usd float usd +metadata_and_annual out.utility_bills.total_bill_savings..usd float usd +metadata_and_annual out.energy_burden_savings..percentage float percentage +metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual upgrade.electric_vehicle_charger string n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.electric_vehicle_efficiency_increase string n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.electric_vehicle_ownership string n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.heating_fuel string n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_cooling_efficiency string n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning string n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_heating_efficiency string n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_heating_type_and_fuel string n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_secondary_heating_efficiency string n/a Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_secondary_heating_fuel string n/a Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.infiltration_reduction string n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.insulation_ceiling string n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.water_heater_efficiency string n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.water_heater_fuel string n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.hvac_detailed_performance_data string n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +metadata_and_annual upgrade.demand_flexibility_electric_vehicle string n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.demand_flexibility_hvac string n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.demand_flexibility_random_shift string n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.duct_leakage_and_insulation string n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.infiltration string n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.insulation_wall string n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +metadata_and_annual upgrade.windows string n/a Only appears when at least one building has this upgrade. +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu float tbtu +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu float tbtu +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh float kWh Supply fan (air distribution) or circulating pump (geothermal loop) +timeseries_aggregates out.electricity.cooling.energy_consumption..kwh float kWh Excludes fans/pumps +timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.freezer.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh float kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh float kWh Excludes heat pump backup fans/pumps +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +timeseries_aggregates out.electricity.heating.energy_consumption..kwh float kWh Excludes heat pump backup and fans/pumps +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh float kWh Excludes recirc pump and solar thermal pump +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh float kWh Non-zero only when using detailed (not simple) solar thermal inputs +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh float kWh Includes exterior holiday lighting +timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh float kWh Excludes preheating/precooling +timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh float kWh Excludes independently reported plug loads (e.g., well pump) +timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.pv.energy_consumption..kwh float kWh Negative value for any power produced +timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.television.energy_consumption..kwh float kWh +timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh float kWh +timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh float kWh Excludes heat pump backup +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh float kWh Excludes heat pump backup +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh float kWh +timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh float kWh +timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh float kWh +timeseries_aggregates out.propane.heating.energy_consumption..kwh float kWh Excludes heat pump backup +timeseries_aggregates out.propane.hot_water.energy_consumption..kwh float kWh +timeseries_aggregates out.propane.range_oven.energy_consumption..kwh float kWh +timeseries_aggregates out.site_energy.net.energy_consumption..kwh float kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.site_energy.total.energy_consumption..kwh float kWh Includes any battery charging/discharging +timeseries_aggregates out.electricity.net.energy_consumption..kwh float kWh Subtracts any power produced by PV or generators. +timeseries_aggregates out.electricity.total.energy_consumption..kwh float kWh Includes any battery charging/discharging +timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh float kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +timeseries_aggregates out.natural_gas.total.energy_consumption..kwh float kWh +timeseries_aggregates out.propane.total.energy_consumption..kwh float kWh +timeseries_aggregates out.load.cooling.energy_delivered..kbtu float kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.heating.energy_delivered..kbtu float kBtu Includes HVAC distribution losses. +timeseries_aggregates out.load.hot_water.energy_delivered..kbtu float kBtu Includes contributions by desuperheaters or solar thermal systems. +timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu float kBtu Water heater solar thermal energy. +timeseries_aggregates out.load.hot_water.energy_tank_losses..kbtu float kBtu Water heater tank losses energy. +timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +timeseries_aggregates out.total.aer_midcase_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging +timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg float n/a +timeseries_aggregates out.emissions.natural_gas.total..co2e_kg float n/a +timeseries_aggregates out.emissions.propane.total..co2e_kg float n/a diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 15ab1e8182..5a8900ce04 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,1007 +1,1007 @@ -Column Type,Import From Raw,Publish In Full,Timeseries Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,yes,yes,no,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). -Input,yes,yes,no,completed_status,,completed_status,,,,,,,,,,The simulation status. -Input,yes,yes,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number -Input,yes,yes,no,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,yes,yes,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. -Calculated,yes,yes,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. -Output,yes,yes,no,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,yes,yes,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country -Calculated,yes,yes,no,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,yes,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. -Input,yes,yes,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -Input,yes,yes,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. -Input,yes,yes,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -Input,yes,yes,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." -Input,yes,yes,no,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. -Input,yes,yes,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). -Input,yes,yes,no,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. -Input,yes,yes,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. -Input,yes,yes,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. -Input,yes,yes,no,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. -Input,yes,yes,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. -Input,yes,yes,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." -Input,yes,yes,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. -Input,yes,yes,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. -Input,yes,yes,no,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." -Input,yes,yes,no,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. -Input,yes,yes,no,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. -Input,yes,yes,no,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,The presence of a clothes washer in the dwelling unit. -Input,yes,yes,no,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. -Input,yes,yes,no,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. -Input,yes,yes,no,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. -Input,yes,yes,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. -Input,yes,yes,no,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. -Input,yes,yes,no,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. -Input,yes,yes,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. -Input,yes,yes,no,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,no,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. -Input,yes,yes,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. -Input,yes,yes,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -Input,yes,yes,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." -Input,yes,yes,no,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -Input,yes,yes,no,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." -Input,yes,yes,no,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,The presence and rated efficiency of the dishwasher. -Input,yes,yes,no,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. -Input,yes,yes,no,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. -Input,yes,yes,no,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. -Input,yes,yes,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -Input,yes,yes,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. -Input,yes,yes,no,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. -Input,yes,yes,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. -Input,yes,yes,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. -Input,yes,yes,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. -Input,yes,yes,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. -Input,yes,yes,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. -Input,yes,yes,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." -Input,yes,yes,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. -Input,yes,yes,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. -Input,yes,yes,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." -Input,yes,yes,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. -Input,yes,yes,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. -Input,yes,yes,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. -Input,yes,yes,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,no,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." -Input,yes,yes,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. -Input,yes,yes,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. -Input,yes,yes,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. -Input,yes,yes,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." -Input,yes,yes,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,no,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -Input,yes,yes,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,no,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. -Input,yes,yes,no,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. -Input,yes,yes,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." -Input,yes,yes,no,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. -Input,yes,yes,no,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. -Input,yes,yes,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. -Input,yes,yes,no,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. -Input,yes,yes,no,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. -Input,yes,yes,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -Input,yes,yes,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. -Input,yes,yes,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. -Input,yes,yes,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. -Input,yes,yes,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. -Input,yes,yes,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. -Input,yes,yes,no,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. -Input,yes,yes,no,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,no,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). -Input,yes,yes,no,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. -Input,yes,yes,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. -Input,yes,yes,no,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. -Input,yes,yes,no,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -Input,yes,yes,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. -Input,yes,yes,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. -Input,yes,yes,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. -Input,yes,yes,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. -Input,yes,yes,no,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. -Input,yes,yes,no,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. -Input,yes,yes,no,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -Input,yes,yes,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. -Input,yes,yes,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. -Input,yes,yes,no,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." -Input,yes,yes,no,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,no,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit -Input,yes,yes,no,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. -Input,yes,yes,no,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,no,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. -Input,yes,yes,no,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). -Input,yes,yes,no,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). -Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. -Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. -Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. -Input,yes,yes,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. -Input,yes,yes,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. -Input,yes,yes,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,no,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. -Input,yes,yes,no,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). -Input,yes,yes,no,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. -Input,yes,yes,no,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. -Input,yes,yes,no,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. -Input,yes,yes,no,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. -Input,yes,yes,no,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. -Input,yes,yes,no,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. -Input,yes,yes,no,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. -Input,yes,yes,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. -Input,yes,yes,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." -Input,yes,yes,no,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. -Input,yes,yes,no,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. -Input,yes,yes,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. -Input,yes,yes,no,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. -Input,yes,yes,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. -Input,yes,yes,no,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. -Input,yes,yes,no,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. -Input,yes,yes,no,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` -Input,yes,yes,no,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. -Input,yes,yes,no,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. -Input,yes,yes,no,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. -Input,yes,yes,no,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. -Input,yes,yes,no,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. -Input,yes,yes,no,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. -Input,yes,yes,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. -Input,yes,yes,no,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. -Input,yes,yes,no,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -Input,yes,yes,no,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. -Input,yes,yes,no,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. -Input,yes,yes,no,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" -Input,yes,yes,no,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -Input,yes,yes,no,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. -Input,yes,yes,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -Input,yes,yes,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. -Input,yes,yes,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. -Input,yes,yes,no,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. -Input,yes,yes,no,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). -Input,yes,yes,no,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. -Input,yes,yes,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. -Input,yes,yes,no,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. -Input,yes,yes,no,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. -Input,yes,yes,no,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. -Input,yes,yes,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. -Input,yes,yes,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. -Input,yes,yes,no,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. -Input,yes,yes,no,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. -Input,yes,yes,no,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. -Input,yes,yes,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. -Input,yes,yes,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. -Input,yes,yes,no,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." -Input,yes,yes,no,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. -Input,yes,yes,no,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -Input,yes,yes,no,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. -Input,yes,yes,no,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." -Input,yes,yes,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. -Input,yes,yes,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,yes,yes,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,yes,yes,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,yes,yes,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. -Input,yes,no,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,yes,no,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,yes,no,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,yes,no,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -Input,yes,yes,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,yes,yes,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -Input,yes,yes,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,yes,no,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,no,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,no,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. -Input,yes,yes,no,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. -Input,yes,yes,no,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,yes,yes,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. -Input,yes,yes,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. -Output,yes,yes,no,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area -Output,yes,yes,no,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area -Output,yes,yes,no,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" -Output,yes,yes,no,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,yes,yes,no,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,yes,yes,no,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" -Output,yes,yes,no,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" -Output,yes,yes,no,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,yes,yes,no,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,yes,yes,no,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area -Output,yes,yes,no,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,yes,yes,no,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,yes,yes,no,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,yes,yes,no,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,yes,yes,no,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,yes,yes,no,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,yes,yes,no,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,yes,yes,no,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,yes,yes,no,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" -Output,yes,yes,no,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area -Output,yes,yes,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,yes,yes,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,no,no,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,yes,yes,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,yes,yes,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Excludes fans/pumps -Output,no,no,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1, -Output,no,no,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Negative value for any power produced -Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,Excludes heat pump backup fans/pumps -Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,yes,yes,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Excludes heat pump backup and fans/pumps -Output,yes,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Excludes recirc pump and solar thermal pump -Output,no,no,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,Includes exterior holiday lighting -Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,Excludes preheating/precooling -Output,no,no,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1, -Output,no,no,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,yes,yes,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Negative value for any power produced -Output,yes,yes,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1, -Output,yes,yes,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1, -Output,no,no,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed -Output,no,no,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,yes,yes,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,Includes any battery charging/discharging -Output,yes,yes,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Subtracts any power produced by PV or generators. -Output,yes,yes,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,Includes any battery charging/discharging -Output,yes,yes,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,yes,yes,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,yes,yes,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,yes,yes,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,yes,yes,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,yes,yes,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,yes,yes,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,yes,yes,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,yes,yes,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,yes,yes,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Water heater solar thermal energy. -Output,yes,yes,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. -Output,yes,yes,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,yes,yes,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) -Output,yes,yes,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,yes,yes,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,yes,yes,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,yes,yes,no,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,yes,yes,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,yes,yes,no,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,yes,yes,no,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,no,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,yes,yes,no,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,yes,yes,no,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,no,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,yes,yes,no,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,yes,yes,no,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,yes,yes,no,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,yes,yes,no,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,yes,yes,no,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,yes,yes,no,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,yes,yes,no,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,yes,yes,no,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,yes,yes,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,no,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,yes,no,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, -Calculated,yes,yes,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,yes,yes,no,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,yes,yes,no,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,yes,yes,no,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,yes,yes,no,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy -Calculated,yes,yes,no,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,no,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,no,no,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,yes,yes,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,yes,yes,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,yes,yes,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,yes,yes,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,, -Calculated,yes,yes,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,, -Calculated,yes,yes,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,, -Calculated,yes,yes,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,yes,yes,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,yes,yes,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,yes,yes,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,yes,yes,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,yes,yes,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,no,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,no,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,no,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. -Output,yes,yes,no,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, -Output,yes,yes,no,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,yes,yes,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Column Type,Import From Raw,Publish In Full,Data Type,Timeseries Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes +Input,yes,yes,string,no,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,yes,yes,string,no,completed_status,,completed_status,,,,,,,,,,The simulation status. +Input,yes,yes,string,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,yes,yes,string,no,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,yes,yes,float,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. +Calculated,yes,yes,boolean,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Output,yes,yes,float,no,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" +Calculated,yes,yes,float,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,yes,yes,string,no,,,in.county_name,in.county_name,,,,,,,,,County name +Input,yes,yes,string,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. +Input,yes,yes,boolean,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. +Input,yes,yes,string,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. +Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. +Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." +Input,yes,yes,string,no,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. +Input,yes,yes,string,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). +Input,yes,yes,integer,no,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. +Input,yes,yes,string,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. +Input,yes,yes,string,no,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. +Input,yes,yes,string,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. +Input,yes,yes,string,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." +Input,yes,yes,string,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. +Input,yes,yes,string,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. +Input,yes,yes,string,no,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." +Input,yes,yes,string,no,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. +Input,yes,yes,string,no,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. +Input,yes,yes,string,no,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,The presence of a clothes washer in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. +Input,yes,yes,string,no,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. +Input,yes,yes,string,no,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. +Input,yes,yes,string,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. +Input,yes,yes,string,no,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. +Input,yes,yes,boolean,no,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. +Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. +Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,string,no,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. +Input,yes,yes,string,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. +Input,yes,yes,string,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. +Input,yes,yes,string,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." +Input,yes,yes,string,no,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +Input,yes,yes,string,no,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." +Input,yes,yes,string,no,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,The presence and rated efficiency of the dishwasher. +Input,yes,yes,string,no,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. +Input,yes,yes,string,no,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. +Input,yes,yes,string,no,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. +Input,yes,yes,string,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +Input,yes,yes,string,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. +Input,yes,yes,string,no,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. +Input,yes,yes,integer,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. +Input,yes,yes,string,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. +Input,yes,yes,string,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. +Input,yes,yes,string,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. +Input,yes,yes,string,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. +Input,yes,yes,integer,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." +Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. +Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. +Input,yes,yes,string,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." +Input,yes,yes,string,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. +Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. +Input,yes,yes,string,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. +Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,string,no,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." +Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. +Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. +Input,yes,yes,string,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. +Input,yes,yes,string,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." +Input,yes,yes,string,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. +Input,yes,yes,string,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. +Input,yes,yes,string,no,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. +Input,yes,yes,string,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." +Input,yes,yes,integer,no,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. +Input,yes,yes,string,no,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. +Input,yes,yes,string,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. +Input,yes,yes,string,no,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. +Input,yes,yes,string,no,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. +Input,yes,yes,float,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. +Input,yes,yes,boolean,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. +Input,yes,yes,string,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. +Input,yes,yes,string,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. +Input,yes,yes,string,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. +Input,yes,yes,boolean,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. +Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. +Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. +Input,yes,yes,string,no,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). +Input,yes,yes,string,no,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. +Input,yes,yes,string,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. +Input,yes,yes,string,no,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). +Input,yes,yes,string,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. +Input,yes,yes,boolean,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. +Input,yes,yes,boolean,no,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. +Input,yes,yes,string,no,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). +Input,yes,yes,string,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." +Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit +Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. +Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. +Input,yes,yes,string,no,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. +Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). +Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. +Input,yes,yes,string,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. +Input,yes,yes,string,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. +Input,yes,yes,string,no,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). +Input,yes,yes,string,no,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. +Input,yes,yes,string,no,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. +Input,yes,yes,string,no,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. +Input,yes,yes,string,no,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. +Input,yes,yes,string,no,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. +Input,yes,yes,string,no,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. +Input,yes,yes,string,no,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. +Input,yes,yes,string,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. +Input,yes,yes,string,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." +Input,yes,yes,string,no,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. +Input,yes,yes,string,no,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. +Input,yes,yes,string,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +Input,yes,yes,string,no,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. +Input,yes,yes,string,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +Input,yes,yes,string,no,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. +Input,yes,yes,string,no,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. +Input,yes,yes,string,no,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` +Input,yes,yes,string,no,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. +Input,yes,yes,string,no,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. +Input,yes,yes,string,no,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. +Input,yes,yes,string,no,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. +Input,yes,yes,string,no,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. +Input,yes,yes,string,no,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. +Input,yes,yes,string,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. +Input,yes,yes,string,no,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. +Input,yes,yes,string,no,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. +Input,yes,yes,string,no,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. +Input,yes,yes,string,no,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" +Input,yes,yes,string,no,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. +Input,yes,yes,string,no,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. +Input,yes,yes,string,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. +Input,yes,yes,string,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. +Input,yes,yes,string,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. +Input,yes,yes,string,no,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. +Input,yes,yes,string,no,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). +Input,yes,yes,string,no,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. +Input,yes,yes,string,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +Input,yes,yes,string,no,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. +Input,yes,yes,string,no,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. +Input,yes,yes,string,no,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. +Input,yes,yes,string,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. +Input,yes,yes,string,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +Input,yes,yes,string,no,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. +Input,yes,yes,string,no,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. +Input,yes,yes,string,no,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. +Input,yes,yes,string,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. +Input,yes,yes,string,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +Input,yes,yes,string,no,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." +Input,yes,yes,string,no,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. +Input,yes,yes,boolean,no,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. +Input,yes,yes,string,no,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. +Input,yes,yes,string,no,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." +Input,yes,yes,string,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. +Input,yes,yes,float,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,yes,yes,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,yes,yes,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,yes,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,yes,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,yes,no,string,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,yes,no,float,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,integer,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. +Input,yes,no,string,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,no,string,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,yes,float,no,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,yes,no,string,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,yes,yes,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +Input,yes,yes,string,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,yes,no,float,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,yes,no,float,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,yes,yes,string,no,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. +Input,yes,yes,float,no,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. +Input,yes,yes,float,no,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. +Input,yes,yes,string,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. +Input,yes,yes,string,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Output,yes,yes,float,no,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area +Output,yes,yes,float,no,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area +Output,yes,yes,float,no,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" +Output,yes,yes,float,no,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,yes,yes,float,no,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,yes,yes,float,no,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" +Output,yes,yes,float,no,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" +Output,yes,yes,float,no,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,yes,yes,float,no,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,yes,yes,float,no,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area +Output,yes,yes,float,no,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,yes,yes,float,no,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,yes,yes,float,no,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,yes,yes,float,no,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,yes,yes,float,no,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,yes,yes,float,no,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,yes,yes,float,no,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,yes,yes,float,no,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,yes,yes,float,no,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" +Output,yes,yes,float,no,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area +Output,yes,yes,integer,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. +Output,yes,yes,float,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,no,no,float,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Excludes fans/pumps +Output,no,no,float,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1, +Output,no,no,float,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Negative value for any power produced +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,Excludes heat pump backup fans/pumps +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Excludes heat pump backup and fans/pumps +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Excludes recirc pump and solar thermal pump +Output,no,no,float,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,Includes exterior holiday lighting +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,Excludes preheating/precooling +Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1, +Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Negative value for any power produced +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1, +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1, +Output,no,no,float,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed +Output,no,no,float,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107, +Output,no,no,float,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,yes,yes,float,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,Includes any battery charging/discharging +Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Subtracts any power produced by PV or generators. +Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,Includes any battery charging/discharging +Output,yes,yes,float,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,yes,yes,float,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107, +Output,yes,yes,float,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,yes,yes,float,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,yes,yes,float,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,yes,yes,float,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. +Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Water heater solar thermal energy. +Output,yes,yes,float,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. +Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,float,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,yes,yes,float,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,yes,yes,float,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,yes,yes,float,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,yes,yes,integer,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,yes,yes,integer,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,yes,yes,float,no,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,yes,no,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,yes,yes,float,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,integer,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,yes,yes,integer,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,yes,yes,boolean,no,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,yes,yes,boolean,no,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,yes,yes,string,no,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,yes,yes,float,no,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Calculated,yes,yes,float,no,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,no,no,float,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,no,no,float,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,yes,yes,float,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,float,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,yes,yes,float,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,, +Calculated,yes,yes,float,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,, +Calculated,yes,yes,float,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,yes,yes,float,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,yes,yes,float,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,yes,yes,float,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,yes,yes,float,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,yes,yes,float,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,yes,yes,float,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,yes,no,string,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,yes,yes,string,no,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. +Output,yes,yes,float,no,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, +Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, From df28a536bf8e478c8fc01474fbe4a0725482cd09 Mon Sep 17 00:00:00 2001 From: Yingli Date: Sun, 12 Oct 2025 12:16:41 -0600 Subject: [PATCH 21/82] enumeration dictionary --- postprocessing/resstockpostproc/enum_dict.py | 71 + .../publication/enumeration_dictionary.tsv | 12542 ++++++++++++++-- 2 files changed, 11730 insertions(+), 883 deletions(-) create mode 100644 postprocessing/resstockpostproc/enum_dict.py diff --git a/postprocessing/resstockpostproc/enum_dict.py b/postprocessing/resstockpostproc/enum_dict.py new file mode 100644 index 0000000000..6471970a43 --- /dev/null +++ b/postprocessing/resstockpostproc/enum_dict.py @@ -0,0 +1,71 @@ +import pandas as pd +import pathlib + + +def enum(df): + """ + enumerations for a dataframe + """ + df_enum = ( + pd.concat( + [pd.DataFrame({'metadata_column': col, 'enumeration': df[col].unique()}) + for col in df.columns], + ignore_index=True + ) + ) + + return df_enum + + +def enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files): + #format buildstock.csv column names + df_bs_csv.columns = ['in.' + col.lower().replace(' ', '_') for col in df_bs_csv.columns] + df_bs_csv = df_bs_csv.drop('in.building', axis=1) + df_bs_csv = df_bs_csv.rename(columns={ + 'in.ashrae_iecc_climate_zone_2004_-_sub-cz_split': 'in.ashrae_iecc_climate_zone_2004_sub_cz_split', + 'in.income_recs2015': 'in.income_recs_2015', + 'in.income_recs2020': 'in.income_recs_2020' + }) + + #enumerations from buildstock.csv + df_enum_bs_csv = enum(df_bs_csv) + + df_data_dict_filter = df_data_dict[df_data_dict['field_location'] == 'metadata_and_annual'] + data_dict_columns = df_data_dict_filter['field_name'] + data_dict_columns = [x for x in data_dict_columns if not x.startswith(("out.", "calc.weighted", "bldg_id"))] + + bs_csv_columns = df_bs_csv.columns + leftover_columns = list(set(data_dict_columns) - set(bs_csv_columns)) + + #enumerations from released data + df_enum_meta = pd.DataFrame(columns=['metadata_column', 'enumeration']) + for up in up_files: + existing_cols = [c for c in leftover_columns if c in df_meta_up[up].columns] + df_meta_filter = df_meta_up[up][existing_cols] + df_meta_filter_enum = enum(df_meta_filter) + df_enum_meta = pd.concat([df_enum_meta, df_meta_filter_enum]).drop_duplicates(keep='first') + + df_enum_dict = pd.concat([df_enum_bs_csv, df_enum_meta]).drop_duplicates(keep='first') + df_enum_dict = df_enum_dict.dropna(subset=['enumeration']) + df_enum_dict = df_enum_dict.sort_values(by=['metadata_column', 'enumeration']) + + return df_enum_dict + + +def main(): + here = pathlib.Path(__file__).resolve().parent + test_path = here.parent.parent + df_data_dict = pd.read_csv(here / "resources" / "publication" / "data_dictionary.tsv", sep='\t') + df_bs_csv = pd.read_csv(test_path / "test" / "base_results" / "baseline"/ "annual"/ "buildstock.csv") + df_meta_up = {} + up_path = (test_path / "test" / "base_results" / "upgrades"/ "sdr_annual") + up_files = [f.name for f in up_path.glob('*.csv')] + for up in up_files: + df_meta_up[up] = pd.read_csv(test_path / "test" / "base_results" / "upgrades"/ "sdr_annual"/ up) + + df_enum_dict = enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files) + df_enum_dict.to_csv(here / "resources" / "publication" / "enumeration_dictionary.tsv", sep='\t', index=None) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv index de6d8f2e31..debc320273 100644 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -1,883 +1,11659 @@ -field_name field_location units data_type allowable_enumerations -bldg_id metadata_and_annual n/a string n/a -completed_status metadata_and_annual n/a string Success -upgrade metadata_and_annual n/a integer 0|1|2|3 -in.upgrade_name metadata_and_annual n/a string Baseline -weight metadata_and_annual n/a float 253.9036727 -applicability metadata_and_annual n/a boolean TRUE -in.sqft..ft2 metadata_and_annual ft2 float 273.0|298.0|322.0|623.0|625.0|634.0|854.0|872.0|881.0|1138.0|1207.0|1228.0|1678.0|1682.0|1698.0|2115.0|2152.0|2179.0|2648.0|2663.0|2678.0|3171.0|3228.0|3310.0|5587.0|6348.0|7414.0 -in.representative_income metadata_and_annual usd float 4.0|11.0|20.0|21.0|22.0|30.0|40.0|42.0|43.0|53.0|65.0|97.0|101.0|103.0|108.0|124.0|139.0|152.0|161.0|162.0|165.0|182.0|196.0|202.0|215.0|216.0|221.0|232.0|248.0|268.0|281.0|295.0|303.0|309.0|313.0|317.0|322.0|324.0|354.0|361.0|364.0|372.0|376.0|378.0|387.0|388.0|394.0|400.0|404.0|412.0|430.0|464.0|483.0|516.0|527.0|536.0|537.0|547.0|556.0|569.0|577.0|599.0|606.0|609.0|612.0|619.0|636.0|639.0|648.0|666.0|671.0|697.0|707.0|708.0|709.0|719.0|722.0|728.0|735.0|738.0|741.0|748.0|752.0|756.0|758.0|762.0|770.0|778.0|784.0|791.0|798.0|802.0|810.0|815.0|822.0|825.0|832.0|836.0|843.0|849.0|858.0|859.0|864.0|869.0|891.0|896.0|908.0|909.0|913.0|918.0|940.0|945.0|960.0|966.0|972.0|983.0|987.0|999.0|1001.0|1005.0|1012.0|1020.0|1023.0|1031.0|1048.0|1055.0|1061.0|1073.0|1076.0|1080.0|1107.0|1111.0|1135.0|1162.0|1181.0|1189.0|1212.0|1258.0|1266.0|1286.0|1288.0|1297.0|1313.0|1341.0|1350.0|1351.0|1354.0|1363.0|1374.0|1403.0|1405.0|1414.0|1441.0|1444.0|1448.0|1459.0|1475.0|1476.0|1490.0|1491.0|1502.0|1503.0|1508.0|1513.0|1547.0|1610.0|1616.0|1621.0|1654.0|1687.0|1707.0|1718.0|1729.0|1754.0|1764.0|1804.0|1818.0|1836.0|1838.0|1857.0|1868.0|1869.0|1877.0|1880.0|1889.0|1898.0|1901.0|1909.0|1910.0|1928.0|1933.0|1959.0|1980.0|2018.0|2020.0|2040.0|2057.0|2063.0|2075.0|2096.0|2107.0|2109.0|2141.0|2146.0|2150.0|2168.0|2172.0|2183.0|2201.0|2212.0|2215.0|2220.0|2232.0|2254.0|2269.0|2291.0|2300.0|2312.0|2320.0|2323.0|2336.0|2338.0|2340.0|2343.0|2352.0|2362.0|2373.0|2383.0|2424.0|2466.0|2467.0|2469.0|2470.0|2478.0|2485.0|2523.0|2531.0|2533.0|2544.0|2556.0|2573.0|2576.0|2578.0|2580.0|2626.0|2636.0|2641.0|2647.0|2669.0|2677.0|2682.0|2683.0|2701.0|2713.0|2727.0|2742.0|2766.0|2777.0|2778.0|2798.0|2805.0|2826.0|2848.0|2856.0|2877.0|2898.0|2921.0|2929.0|2953.0|2957.0|2981.0|2984.0|2992.0|3005.0|3006.0|3042.0|3066.0|3082.0|3090.0|3091.0|3101.0|3111.0|3124.0|3131.0|3146.0|3174.0|3182.0|3187.0|3259.0|3264.0|3293.0|3296.0|3343.0|3349.0|3374.0|3383.0|3414.0|3424.0|3428.0|3434.0|3435.0|3457.0|3479.0|3481.0|3486.0|3507.0|3511.0|3536.0|3543.0|3561.0|3586.0|3592.0|3598.0|3616.0|3617.0|3633.0|3645.0|3647.0|3649.0|3671.0|3681.0|3691.0|3713.0|3738.0|3744.0|3755.0|3775.0|3782.0|3788.0|3797.0|3816.0|3836.0|3843.0|3865.0|3886.0|3889.0|3899.0|3919.0|3920.0|3929.0|3940.0|3972.0|4023.0|4030.0|4041.0|4051.0|4060.0|4091.0|4114.0|4116.0|4125.0|4127.0|4133.0|4142.0|4149.0|4154.0|4166.0|4181.0|4187.0|4219.0|4233.0|4268.0|4271.0|4280.0|4292.0|4293.0|4323.0|4332.0|4361.0|4380.0|4429.0|4445.0|4507.0|4515.0|4538.0|4545.0|4546.0|4562.0|4573.0|4581.0|4588.0|4590.0|4598.0|4616.0|4619.0|4640.0|4647.0|4648.0|4662.0|4687.0|4732.0|4734.0|4735.0|4748.0|4752.0|4754.0|4778.0|4808.0|4842.0|4845.0|4852.0|4862.0|4869.0|4894.0|4898.0|4899.0|4902.0|4909.0|4951.0|4959.0|4970.0|4990.0|5001.0|5009.0|5035.0|5051.0|5056.0|5066.0|5081.0|5093.0|5104.0|5136.0|5143.0|5152.0|5158.0|5165.0|5187.0|5188.0|5192.0|5208.0|5211.0|5219.0|5229.0|5240.0|5253.0|5295.0|5305.0|5324.0|5327.0|5335.0|5349.0|5354.0|5363.0|5367.0|5377.0|5385.0|5389.0|5431.0|5440.0|5442.0|5455.0|5475.0|5484.0|5508.0|5510.0|5515.0|5516.0|5536.0|5539.0|5554.0|5565.0|5570.0|5606.0|5618.0|5657.0|5662.0|5692.0|5693.0|5695.0|5721.0|5725.0|5758.0|5769.0|5776.0|5827.0|5834.0|5859.0|5871.0|5879.0|5904.0|5905.0|5908.0|5919.0|5943.0|5960.0|5982.0|6040.0|6051.0|6071.0|6086.0|6101.0|6103.0|6129.0|6137.0|6151.0|6159.0|6180.0|6182.0|6189.0|6212.0|6245.0|6247.0|6263.0|6279.0|6292.0|6328.0|6334.0|6354.0|6375.0|6395.0|6422.0|6425.0|6433.0|6465.0|6475.0|6494.0|6519.0|6526.0|6537.0|6538.0|6560.0|6580.0|6586.0|6591.0|6601.0|6624.0|6644.0|6667.0|6686.0|6688.0|6699.0|6705.0|6710.0|6745.0|6748.0|6750.0|6756.0|6764.0|6768.0|6784.0|6795.0|6834.0|6859.0|6866.0|6869.0|6870.0|6900.0|6913.0|6915.0|6952.0|6958.0|6966.0|6970.0|6978.0|6982.0|7011.0|7021.0|7066.0|7071.0|7084.0|7117.0|7119.0|7131.0|7139.0|7149.0|7175.0|7199.0|7214.0|7220.0|7233.0|7271.0|7273.0|7304.0|7324.0|7347.0|7354.0|7374.0|7383.0|7407.0|7408.0|7426.0|7455.0|7488.0|7500.0|7509.0|7515.0|7520.0|7529.0|7542.0|7578.0|7593.0|7600.0|7621.0|7633.0|7672.0|7675.0|7698.0|7715.0|7730.0|7778.0|7780.0|7805.0|7839.0|7879.0|7883.0|7887.0|7921.0|7944.0|7952.0|7980.0|8010.0|8015.0|8045.0|8051.0|8057.0|8081.0|8091.0|8108.0|8118.0|8148.0|8158.0|8180.0|8182.0|8204.0|8212.0|8244.0|8252.0|8263.0|8279.0|8297.0|8331.0|8341.0|8352.0|8362.0|8373.0|8374.0|8385.0|8406.0|8416.0|8436.0|8481.0|8502.0|8514.0|8520.0|8536.0|8543.0|8564.0|8586.0|8590.0|8609.0|8612.0|8626.0|8644.0|8648.0|8654.0|8664.0|8694.0|8716.0|8751.0|8752.0|8779.0|8784.0|8788.0|8795.0|8802.0|8808.0|8809.0|8819.0|8827.0|8859.0|8869.0|8871.0|8910.0|8912.0|8917.0|8964.0|8968.0|8974.0|9018.0|9069.0|9075.0|9091.0|9125.0|9176.0|9184.0|9192.0|9238.0|9253.0|9271.0|9281.0|9293.0|9314.0|9334.0|9339.0|9386.0|9400.0|9415.0|9440.0|9446.0|9454.0|9532.0|9554.0|9562.0|9592.0|9596.0|9597.0|9616.0|9672.0|9702.0|9724.0|9757.0|9797.0|9798.0|9808.0|9812.0|9832.0|9875.0|9886.0|9899.0|9914.0|9941.0|9960.0|9988.0|10005.0|10019.0|10090.0|10091.0|10109.0|10146.0|10157.0|10170.0|10198.0|10211.0|10229.0|10230.0|10293.0|10301.0|10306.0|10314.0|10324.0|10325.0|10372.0|10380.0|10404.0|10412.0|10418.0|10437.0|10441.0|10466.0|10483.0|10498.0|10513.0|10520.0|10521.0|10586.0|10588.0|10593.0|10595.0|10607.0|10624.0|10627.0|10645.0|10653.0|10662.0|10673.0|10686.0|10693.0|10697.0|10719.0|10727.0|10728.0|10735.0|10756.0|10768.0|10770.0|10788.0|10817.0|10830.0|10839.0|10861.0|10862.0|10882.0|10910.0|10913.0|10933.0|10950.0|10968.0|10971.0|10978.0|10995.0|10999.0|11000.0|11001.0|11052.0|11071.0|11075.0|11122.0|11132.0|11140.0|11153.0|11162.0|11164.0|11165.0|11213.0|11222.0|11242.0|11243.0|11263.0|11271.0|11274.0|11284.0|11291.0|11314.0|11315.0|11323.0|11344.0|11345.0|11346.0|11365.0|11379.0|11390.0|11400.0|11419.0|11420.0|11474.0|11540.0|11552.0|11593.0|11608.0|11611.0|11617.0|11624.0|11669.0|11700.0|11705.0|11717.0|11718.0|11730.0|11738.0|11758.0|11763.0|11768.0|11781.0|11789.0|11808.0|11819.0|11840.0|11869.0|11882.0|11894.0|11896.0|11910.0|11916.0|11917.0|11920.0|11928.0|11949.0|11965.0|11973.0|11993.0|12021.0|12022.0|12023.0|12033.0|12058.0|12068.0|12069.0|12071.0|12086.0|12088.0|12102.0|12108.0|12122.0|12128.0|12130.0|12152.0|12166.0|12171.0|12195.0|12203.0|12209.0|12210.0|12223.0|12243.0|12273.0|12274.0|12295.0|12318.0|12326.0|12328.0|12339.0|12345.0|12371.0|12394.0|12423.0|12425.0|12426.0|12440.0|12445.0|12468.0|12495.0|12512.0|12516.0|12523.0|12526.0|12542.0|12560.0|12581.0|12604.0|12613.0|12627.0|12640.0|12642.0|12643.0|12666.0|12675.0|12687.0|12706.0|12708.0|12713.0|12719.0|12756.0|12761.0|12774.0|12790.0|12810.0|12836.0|12857.0|12903.0|12926.0|12929.0|12930.0|12934.0|12957.0|12961.0|12976.0|13000.0|13019.0|13045.0|13049.0|13084.0|13099.0|13107.0|13141.0|13150.0|13171.0|13182.0|13183.0|13203.0|13205.0|13214.0|13225.0|13235.0|13258.0|13263.0|13275.0|13283.0|13285.0|13290.0|13311.0|13312.0|13321.0|13336.0|13350.0|13361.0|13365.0|13388.0|13393.0|13398.0|13404.0|13423.0|13426.0|13460.0|13463.0|13466.0|13471.0|13478.0|13485.0|13488.0|13506.0|13509.0|13533.0|13560.0|13576.0|13588.0|13590.0|13605.0|13614.0|13615.0|13618.0|13623.0|13633.0|13637.0|13646.0|13665.0|13667.0|13687.0|13697.0|13700.0|13708.0 -in.representative_income metadata_and_annual usd float 13710.0|13718.0|13722.0|13731.0|13738.0|13740.0|13750.0|13754.0|13783.0|13794.0|13795.0|13822.0|13826.0|13830.0|13839.0|13847.0|13851.0|13864.0|13868.0|13876.0|13883.0|13894.0|13910.0|13921.0|13925.0|13928.0|13938.0|13940.0|13955.0|13966.0|14000.0|14007.0|14026.0|14027.0|14041.0|14046.0|14051.0|14058.0|14061.0|14062.0|14090.0|14094.0|14101.0|14109.0|14110.0|14131.0|14137.0|14142.0|14154.0|14170.0|14187.0|14191.0|14214.0|14219.0|14234.0|14238.0|14243.0|14255.0|14262.0|14265.0|14269.0|14277.0|14286.0|14291.0|14294.0|14295.0|14343.0|14363.0|14384.0|14395.0|14424.0|14438.0|14441.0|14445.0|14448.0|14478.0|14485.0|14491.0|14543.0|14554.0|14556.0|14599.0|14607.0|14659.0|14688.0|14750.0|14764.0|14807.0|14849.0|14853.0|14910.0|14921.0|14956.0|14997.0|15019.0|15051.0|15060.0|15081.0|15136.0|15137.0|15162.0|15178.0|15234.0|15292.0|15322.0|15342.0|15351.0|15419.0|15440.0|15451.0|15455.0|15457.0|15472.0|15492.0|15559.0|15560.0|15565.0|15572.0|15575.0|15586.0|15596.0|15602.0|15606.0|15635.0|15657.0|15661.0|15667.0|15671.0|15672.0|15678.0|15703.0|15758.0|15769.0|15781.0|15782.0|15819.0|15828.0|15839.0|15850.0|15851.0|15869.0|15872.0|15903.0|15920.0|15939.0|15957.0|15960.0|15966.0|15967.0|15991.0|16002.0|16006.0|16008.0|16009.0|16048.0|16051.0|16066.0|16093.0|16099.0|16118.0|16143.0|16152.0|16154.0|16163.0|16172.0|16178.0|16185.0|16193.0|16199.0|16204.0|16209.0|16215.0|16225.0|16241.0|16251.0|16263.0|16269.0|16272.0|16282.0|16287.0|16336.0|16337.0|16344.0|16347.0|16349.0|16355.0|16357.0|16359.0|16388.0|16415.0|16423.0|16425.0|16427.0|16452.0|16456.0|16463.0|16465.0|16467.0|16483.0|16488.0|16496.0|16503.0|16509.0|16521.0|16526.0|16531.0|16532.0|16547.0|16553.0|16557.0|16585.0|16596.0|16597.0|16607.0|16637.0|16647.0|16654.0|16662.0|16667.0|16677.0|16692.0|16710.0|16713.0|16724.0|16746.0|16756.0|16757.0|16767.0|16769.0|16772.0|16790.0|16800.0|16801.0|16812.0|16823.0|16831.0|16843.0|16853.0|16862.0|16864.0|16874.0|16884.0|16895.0|16941.0|16950.0|16963.0|16967.0|16970.0|16977.0|16979.0|16985.0|17015.0|17035.0|17039.0|17064.0|17068.0|17072.0|17102.0|17106.0|17122.0|17132.0|17143.0|17172.0|17190.0|17203.0|17213.0|17222.0|17226.0|17263.0|17273.0|17281.0|17282.0|17288.0|17334.0|17354.0|17369.0|17390.0|17395.0|17401.0|17412.0|17415.0|17417.0|17431.0|17443.0|17474.0|17496.0|17497.0|17504.0|17507.0|17554.0|17586.0|17596.0|17605.0|17611.0|17627.0|17644.0|17648.0|17664.0|17678.0|17698.0|17712.0|17717.0|17719.0|17769.0|17779.0|17819.0|17876.0|17882.0|17884.0|17886.0|17888.0|17900.0|17917.0|17927.0|17928.0|17930.0|17936.0|17960.0|17969.0|17980.0|17981.0|17999.0|18001.0|18023.0|18033.0|18034.0|18078.0|18132.0|18140.0|18142.0|18152.0|18154.0|18167.0|18195.0|18213.0|18245.0|18248.0|18260.0|18267.0|18292.0|18324.0|18340.0|18350.0|18359.0|18363.0|18369.0|18379.0|18385.0|18389.0|18396.0|18410.0|18419.0|18455.0|18476.0|18486.0|18498.0|18508.0|18561.0|18566.0|18571.0|18587.0|18605.0|18613.0|18638.0|18649.0|18669.0|18672.0|18688.0|18700.0|18721.0|18751.0|18772.0|18774.0|18791.0|18865.0|18878.0|18890.0|18892.0|18898.0|18908.0|18957.0|18983.0|18991.0|19001.0|19004.0|19007.0|19014.0|19016.0|19038.0|19041.0|19061.0|19067.0|19072.0|19082.0|19088.0|19092.0|19099.0|19193.0|19226.0|19227.0|19232.0|19233.0|19247.0|19257.0|19288.0|19294.0|19327.0|19329.0|19333.0|19387.0|19394.0|19395.0|19412.0|19440.0|19460.0|19465.0|19481.0|19482.0|19484.0|19494.0|19500.0|19510.0|19535.0|19537.0|19567.0|19591.0|19597.0|19602.0|19644.0|19647.0|19657.0|19658.0|19686.0|19698.0|19708.0|19721.0|19728.0|19741.0|19752.0|19773.0|19774.0|19799.0|19826.0|19859.0|19870.0|19881.0|19886.0|19900.0|19907.0|19932.0|19988.0|20001.0|20010.0|20038.0|20070.0|20096.0|20102.0|20143.0|20181.0|20203.0|20205.0|20207.0|20213.0|20216.0|20278.0|20304.0|20310.0|20313.0|20354.0|20367.0|20396.0|20421.0|20423.0|20502.0|20506.0|20529.0|20586.0|20597.0|20610.0|20629.0|20633.0|20650.0|20654.0|20671.0|20680.0|20732.0|20745.0|20769.0|20784.0|20809.0|20835.0|20838.0|20885.0|20890.0|20896.0|20900.0|20910.0|20986.0|21011.0|21013.0|21031.0|21039.0|21092.0|21104.0|21132.0|21142.0|21144.0|21155.0|21159.0|21177.0|21181.0|21198.0|21210.0|21213.0|21229.0|21238.0|21248.0|21254.0|21255.0|21281.0|21285.0|21286.0|21303.0|21314.0|21334.0|21341.0|21344.0|21355.0|21362.0|21383.0|21393.0|21394.0|21426.0|21436.0|21447.0|21454.0|21470.0|21509.0|21533.0|21544.0|21545.0|21547.0|21558.0|21562.0|21567.0|21577.0|21598.0|21617.0|21619.0|21631.0|21640.0|21641.0|21643.0|21652.0|21660.0|21683.0|21694.0|21698.0|21706.0|21712.0|21723.0|21724.0|21728.0|21746.0|21754.0|21779.0|21782.0|21785.0|21788.0|21789.0|21791.0|21798.0|21812.0|21824.0|21826.0|21831.0|21839.0|21852.0|21856.0|21867.0|21877.0|21883.0|21898.0|21916.0|21920.0|21961.0|21970.0|21971.0|21973.0|21988.0|21994.0|21999.0|22000.0|22027.0|22038.0|22049.0|22051.0|22059.0|22062.0|22070.0|22072.0|22073.0|22090.0|22093.0|22094.0|22107.0|22109.0|22115.0|22122.0|22132.0|22133.0|22142.0|22147.0|22150.0|22156.0|22173.0|22177.0|22178.0|22187.0|22200.0|22205.0|22209.0|22220.0|22223.0|22241.0|22249.0|22252.0|22258.0|22262.0|22264.0|22274.0|22279.0|22284.0|22286.0|22290.0|22310.0|22312.0|22322.0|22324.0|22333.0|22348.0|22349.0|22352.0|22365.0|22369.0|22382.0|22405.0|22414.0|22425.0|22428.0|22434.0|22435.0|22436.0|22439.0|22441.0|22446.0|22452.0|22456.0|22464.0|22473.0|22478.0|22488.0|22506.0|22517.0|22521.0|22523.0|22526.0|22527.0|22537.0|22547.0|22564.0|22569.0|22579.0|22585.0|22587.0|22589.0|22590.0|22608.0|22615.0|22617.0|22618.0|22620.0|22623.0|22625.0|22647.0|22650.0|22664.0|22674.0|22678.0|22695.0|22703.0|22708.0|22713.0|22728.0|22738.0|22743.0|22745.0|22754.0|22757.0|22777.0|22789.0|22798.0|22800.0|22816.0|22822.0|22829.0|22841.0|22846.0|22874.0|22878.0|22885.0|22898.0|22908.0|22919.0|22920.0|22930.0|22933.0|22940.0|22948.0|22949.0|22960.0|22961.0|22972.0|22981.0|22990.0|22991.0|23001.0|23008.0|23014.0|23025.0|23026.0|23041.0|23052.0|23053.0|23063.0|23064.0|23079.0|23080.0|23087.0|23096.0|23105.0|23154.0|23202.0|23208.0|23218.0|23219.0|23230.0|23231.0|23232.0|23233.0|23249.0|23254.0|23264.0|23276.0|23284.0|23293.0|23296.0|23305.0|23307.0|23310.0|23333.0|23334.0|23338.0|23348.0|23359.0|23412.0|23422.0|23433.0|23435.0|23443.0|23490.0|23501.0|23517.0|23527.0|23538.0|23540.0|23587.0|23623.0|23648.0|23662.0|23678.0|23684.0|23754.0|23791.0|23803.0|23814.0|23876.0|23900.0|23932.0|23938.0|23954.0|23978.0|23981.0|23986.0|23992.0|24007.0|24013.0|24024.0|24041.0|24045.0|24094.0|24136.0|24150.0|24203.0|24243.0|24260.0|24311.0|24343.0|24383.0|24404.0|24467.0|24474.0|24505.0|24547.0|24548.0|24572.0|24582.0|24636.0|24657.0|24689.0|24713.0|24743.0|24749.0|24753.0|24755.0|24797.0|24888.0|24904.0|24910.0|24951.0|24990.0|25036.0|25052.0|25064.0|25089.0|25102.0|25119.0|25132.0|25142.0|25153.0|25175.0|25181.0|25186.0|25208.0|25215.0|25254.0|25264.0|25283.0|25290.0|25310.0|25331.0|25355.0|25374.0|25391.0|25437.0|25441.0|25456.0|25458.0|25469.0|25516.0|25521.0|25548.0|25558.0|25580.0|25607.0|25658.0|25715.0|25720.0|25733.0|25763.0|25767.0|25828.0|25860.0|25943.0|25981.0|25993.0|25999.0|26009.0|26031.0|26035.0|26039.0|26042.0|26044.0|26049.0|26055.0|26062.0|26084.0|26092.0|26093.0|26095.0|26101.0|26147.0|26154.0|26163.0|26180.0|26186.0|26233.0|26256.0|26264.0|26277.0|26284.0|26302.0|26304.0|26323.0|26344.0|26363.0|26364.0|26365.0|26385.0|26397.0|26405.0|26415.0|26428.0|26466.0|26471.0|26476.0|26493.0|26496.0|26512.0|26523.0|26525.0|26537.0|26548.0|26567.0|26568.0|26570.0|26576.0|26580.0|26581.0|26586.0|26609.0|26610.0|26621.0|26622.0|26651.0|26656.0|26663.0|26668.0|26671.0|26687.0|26688.0|26714.0|26718.0|26733.0|26736.0|26742.0|26750.0|26751.0|26752.0|26755.0|26766.0|26769.0|26785.0|26794.0|26796.0|26818.0|26827.0|26828.0|26840.0|26847.0|26882.0|26890.0|26892.0|26893.0|26904.0|26925.0|26931.0|26934.0|26935.0|26936.0|26944.0|26952.0|26958.0|26971.0|26986.0|26993.0|27012.0|27014.0|27018.0|27024.0|27051.0|27072.0|27083.0|27087.0|27089.0|27094.0|27096.0|27104.0|27120.0|27128.0|27130.0|27136.0|27139.0|27145.0|27148.0|27159.0|27167.0|27173.0|27174.0|27180.0 -in.representative_income metadata_and_annual usd float 27188.0|27198.0|27212.0|27227.0|27232.0|27240.0|27260.0|27265.0|27287.0|27293.0|27319.0|27324.0|27336.0|27347.0|27349.0|27358.0|27369.0|27375.0|27385.0|27391.0|27394.0|27395.0|27398.0|27405.0|27415.0|27416.0|27419.0|27423.0|27427.0|27431.0|27444.0|27456.0|27459.0|27466.0|27476.0|27480.0|27483.0|27498.0|27510.0|27519.0|27523.0|27526.0|27537.0|27540.0|27541.0|27542.0|27552.0|27557.0|27567.0|27570.0|27577.0|27597.0|27599.0|27612.0|27617.0|27627.0|27654.0|27660.0|27661.0|27664.0|27669.0|27671.0|27678.0|27682.0|27683.0|27695.0|27698.0|27705.0|27734.0|27736.0|27746.0|27754.0|27787.0|27788.0|27791.0|27800.0|27805.0|27840.0|27842.0|27859.0|27867.0|27876.0|27879.0|27880.0|27887.0|27890.0|27898.0|27909.0|27947.0|27952.0|27954.0|27957.0|27964.0|27981.0|27995.0|28024.0|28028.0|28082.0|28086.0|28092.0|28097.0|28103.0|28107.0|28113.0|28114.0|28116.0|28125.0|28133.0|28146.0|28148.0|28158.0|28159.0|28186.0|28188.0|28211.0|28213.0|28222.0|28232.0|28234.0|28243.0|28255.0|28264.0|28285.0|28309.0|28310.0|28317.0|28330.0|28339.0|28363.0|28376.0|28385.0|28395.0|28422.0|28436.0|28446.0|28486.0|28492.0|28495.0|28506.0|28511.0|28524.0|28554.0|28582.0|28587.0|28617.0|28661.0|28666.0|28675.0|28695.0|28697.0|28707.0|28758.0|28771.0|28777.0|28789.0|28791.0|28794.0|28812.0|28860.0|28870.0|28880.0|28890.0|28916.0|28920.0|28932.0|28957.0|28963.0|28983.0|28991.0|28994.0|29000.0|29002.0|29032.0|29045.0|29048.0|29065.0|29090.0|29122.0|29128.0|29173.0|29190.0|29193.0|29223.0|29294.0|29318.0|29335.0|29396.0|29413.0|29424.0|29498.0|29499.0|29509.0|29520.0|29529.0|29603.0|29604.0|29615.0|29627.0|29635.0|29706.0|29735.0|29740.0|29778.0|29809.0|29811.0|29821.0|29845.0|29850.0|29900.0|29929.0|29950.0|29951.0|30015.0|30056.0|30057.0|30102.0|30118.0|30145.0|30162.0|30164.0|30170.0|30180.0|30203.0|30222.0|30250.0|30253.0|30267.0|30272.0|30318.0|30325.0|30335.0|30341.0|30361.0|30379.0|30427.0|30429.0|30444.0|30466.0|30506.0|30513.0|30531.0|30578.0|30593.0|30607.0|30632.0|30732.0|30764.0|30795.0|30812.0|30829.0|30841.0|30851.0|30885.0|30900.0|30901.0|30916.0|30933.0|30945.0|31005.0|31009.0|31011.0|31034.0|31036.0|31046.0|31079.0|31088.0|31111.0|31117.0|31118.0|31128.0|31130.0|31171.0|31174.0|31205.0|31213.0|31225.0|31227.0|31237.0|31239.0|31314.0|31315.0|31324.0|31345.0|31353.0|31355.0|31356.0|31364.0|31369.0|31385.0|31420.0|31428.0|31431.0|31442.0|31446.0|31452.0|31460.0|31476.0|31507.0|31545.0|31562.0|31571.0|31574.0|31618.0|31636.0|31649.0|31652.0|31665.0|31666.0|31668.0|31703.0|31719.0|31720.0|31728.0|31760.0|31766.0|31769.0|31774.0|31784.0|31786.0|31789.0|31797.0|31810.0|31813.0|31820.0|31825.0|31828.0|31849.0|31862.0|31872.0|31874.0|31878.0|31880.0|31892.0|31903.0|31910.0|31924.0|31933.0|31936.0|31975.0|31981.0|31983.0|31997.0|32003.0|32014.0|32016.0|32022.0|32057.0|32071.0|32072.0|32075.0|32078.0|32079.0|32092.0|32096.0|32101.0|32112.0|32148.0|32174.0|32181.0|32185.0|32202.0|32205.0|32207.0|32215.0|32224.0|32231.0|32233.0|32236.0|32237.0|32243.0|32247.0|32254.0|32257.0|32260.0|32271.0|32281.0|32284.0|32306.0|32310.0|32324.0|32329.0|32334.0|32369.0|32375.0|32376.0|32385.0|32388.0|32414.0|32415.0|32418.0|32425.0|32436.0|32466.0|32468.0|32476.0|32483.0|32496.0|32503.0|32504.0|32515.0|32517.0|32522.0|32524.0|32526.0|32527.0|32561.0|32566.0|32577.0|32587.0|32588.0|32615.0|32618.0|32630.0|32640.0|32645.0|32650.0|32658.0|32659.0|32676.0|32684.0|32693.0|32697.0|32699.0|32703.0|32708.0|32712.0|32714.0|32729.0|32741.0|32758.0|32792.0|32798.0|32831.0|32846.0|32847.0|32852.0|32874.0|32890.0|32909.0|32914.0|32924.0|32955.0|32965.0|33009.0|33019.0|33027.0|33032.0|33062.0|33073.0|33075.0|33114.0|33133.0|33163.0|33171.0|33212.0|33220.0|33234.0|33247.0|33277.0|33316.0|33320.0|33326.0|33332.0|33335.0|33343.0|33367.0|33379.0|33385.0|33386.0|33408.0|33430.0|33431.0|33436.0|33450.0|33451.0|33459.0|33483.0|33491.0|33494.0|33522.0|33536.0|33537.0|33541.0|33588.0|33624.0|33626.0|33688.0|33706.0|33718.0|33728.0|33739.0|33761.0|33814.0|33819.0|33841.0|33853.0|33910.0|33921.0|33935.0|33943.0|33959.0|33981.0|34029.0|34035.0|34038.0|34042.0|34061.0|34080.0|34095.0|34102.0|34117.0|34132.0|34143.0|34169.0|34243.0|34245.0|34251.0|34255.0|34294.0|34305.0|34328.0|34345.0|34361.0|34383.0|34395.0|34420.0|34436.0|34453.0|34480.0|34486.0|34496.0|34511.0|34565.0|34576.0|34581.0|34586.0|34591.0|34597.0|34611.0|34648.0|34657.0|34668.0|34697.0|34760.0|34771.0|34801.0|34802.0|34832.0|34834.0|34850.0|34878.0|34898.0|34907.0|34950.0|34951.0|34953.0|34966.0|34995.0|35007.0|35012.0|35101.0|35115.0|35160.0|35200.0|35213.0|35214.0|35223.0|35254.0|35276.0|35329.0|35332.0|35355.0|35371.0|35375.0|35378.0|35424.0|35426.0|35435.0|35440.0|35463.0|35500.0|35504.0|35522.0|35532.0|35548.0|35557.0|35585.0|35587.0|35605.0|35638.0|35645.0|35646.0|35657.0|35740.0|35742.0|35752.0|35762.0|35853.0|35860.0|35867.0|35871.0|35874.0|35921.0|35961.0|35977.0|35997.0|36029.0|36042.0|36052.0|36059.0|36062.0|36067.0|36078.0|36082.0|36090.0|36123.0|36148.0|36165.0|36182.0|36196.0|36202.0|36204.0|36264.0|36273.0|36280.0|36286.0|36293.0|36299.0|36304.0|36321.0|36335.0|36347.0|36358.0|36359.0|36385.0|36389.0|36426.0|36466.0|36487.0|36490.0|36498.0|36511.0|36513.0|36520.0|36547.0|36567.0|36594.0|36596.0|36626.0|36637.0|36668.0|36671.0|36688.0|36719.0|36725.0|36736.0|36740.0|36743.0|36749.0|36768.0|36769.0|36803.0|36819.0|36820.0|36845.0|36848.0|36855.0|36870.0|36875.0|36880.0|36911.0|36919.0|36926.0|36927.0|36933.0|36953.0|36978.0|37006.0|37013.0|37019.0|37029.0|37030.0|37033.0|37066.0|37072.0|37098.0|37113.0|37122.0|37132.0|37133.0|37137.0|37142.0|37146.0|37153.0|37158.0|37163.0|37168.0|37169.0|37173.0|37177.0|37194.0|37195.0|37202.0|37214.0|37222.0|37228.0|37246.0|37267.0|37269.0|37270.0|37274.0|37276.0|37291.0|37333.0|37339.0|37354.0|37359.0|37364.0|37369.0|37375.0|37384.0|37390.0|37401.0|37410.0|37416.0|37436.0|37442.0|37463.0|37476.0|37484.0|37512.0|37514.0|37527.0|37546.0|37557.0|37573.0|37575.0|37576.0|37578.0|37587.0|37621.0|37635.0|37646.0|37653.0|37658.0|37676.0|37678.0|37685.0|37689.0|37692.0|37694.0|37710.0|37712.0|37723.0|37732.0|37742.0|37755.0|37763.0|37771.0|37774.0|37784.0|37786.0|37787.0|37818.0|37829.0|37873.0|37881.0|37891.0|37906.0|37923.0|37951.0|37966.0|37971.0|37976.0|37979.0|37987.0|38000.0|38002.0|38008.0|38012.0|38020.0|38052.0|38061.0|38062.0|38071.0|38140.0|38143.0|38162.0|38177.0|38183.0|38194.0|38229.0|38248.0|38267.0|38284.0|38314.0|38323.0|38324.0|38329.0|38335.0|38355.0|38360.0|38363.0|38396.0|38406.0|38410.0|38429.0|38433.0|38487.0|38493.0|38504.0|38507.0|38514.0|38515.0|38524.0|38525.0|38537.0|38573.0|38598.0|38603.0|38605.0|38607.0|38608.0|38616.0|38633.0|38639.0|38644.0|38648.0|38668.0|38683.0|38689.0|38713.0|38717.0|38719.0|38735.0|38749.0|38764.0|38767.0|38784.0|38789.0|38792.0|38804.0|38809.0|38826.0|38849.0|38859.0|38864.0|38873.0|38883.0|38886.0|38897.0|38948.0|38972.0|39012.0|39020.0|39042.0|39062.0|39073.0|39083.0|39092.0|39093.0|39113.0|39121.0|39123.0|39154.0|39157.0|39185.0|39194.0|39202.0|39214.0|39222.0|39223.0|39231.0|39238.0|39278.0|39288.0|39295.0|39298.0|39331.0|39337.0|39345.0|39350.0|39362.0|39363.0|39383.0|39442.0|39446.0|39505.0|39510.0|39556.0|39610.0|39664.0|39675.0|39711.0|39718.0|39761.0|39814.0|39825.0|39840.0|39845.0|39864.0|39917.0|39933.0|40002.0|40072.0|40075.0|40086.0|40103.0|40147.0|40194.0|40227.0|40233.0|40258.0|40286.0|40302.0|40362.0|40410.0|40469.0|40497.0|40507.0|40516.0|40536.0|40577.0|40608.0|40631.0|40683.0|40707.0|40709.0|40726.0|40733.0|40810.0|40845.0|40897.0|40898.0|40901.0|40948.0|40950.0|40953.0|40982.0|41012.0|41015.0|41032.0|41037.0|41058.0|41069.0|41077.0|41087.0|41090.0|41124.0|41130.0|41155.0|41167.0|41172.0|41186.0|41193.0|41209.0|41220.0|41232.0|41235.0|41247.0|41262.0|41274.0|41340.0|41356.0|41362.0|41366.0|41371.0|41382.0|41403.0|41406.0|41416.0|41446.0|41454.0|41464.0|41490.0|41506.0|41508.0|41531.0|41544.0|41562.0|41589.0|41599.0|41604.0|41628.0|41657.0|41668.0|41672.0|41674.0|41698.0|41699.0|41719.0|41762.0|41769.0|41774.0|41790.0|41793.0|41804.0|41814.0|41815.0|41820.0 -in.representative_income metadata_and_annual usd float 41826.0|41840.0|41847.0|41868.0|41877.0|41901.0|41908.0|41921.0|41941.0|41962.0|41972.0|41976.0|41987.0|42012.0|42013.0|42031.0|42063.0|42078.0|42079.0|42088.0|42095.0|42098.0|42099.0|42101.0|42104.0|42138.0|42153.0|42160.0|42166.0|42174.0|42176.0|42181.0|42184.0|42186.0|42195.0|42197.0|42203.0|42205.0|42216.0|42224.0|42229.0|42240.0|42246.0|42254.0|42275.0|42277.0|42279.0|42283.0|42290.0|42293.0|42294.0|42300.0|42305.0|42310.0|42316.0|42325.0|42331.0|42332.0|42348.0|42370.0|42374.0|42376.0|42380.0|42385.0|42387.0|42393.0|42401.0|42416.0|42420.0|42426.0|42434.0|42436.0|42441.0|42442.0|42445.0|42455.0|42463.0|42469.0|42474.0|42508.0|42513.0|42533.0|42547.0|42551.0|42563.0|42571.0|42572.0|42582.0|42603.0|42616.0|42625.0|42628.0|42643.0|42654.0|42659.0|42679.0|42680.0|42682.0|42690.0|42702.0|42705.0|42733.0|42739.0|42743.0|42745.0|42764.0|42776.0|42777.0|42780.0|42787.0|42797.0|42805.0|42807.0|42808.0|42810.0|42817.0|42826.0|42838.0|42849.0|42867.0|42871.0|42872.0|42894.0|42902.0|42909.0|42912.0|42916.0|42923.0|42929.0|42939.0|42954.0|42960.0|42964.0|42971.0|43002.0|43012.0|43026.0|43028.0|43042.0|43045.0|43066.0|43067.0|43073.0|43114.0|43166.0|43218.0|43219.0|43220.0|43224.0|43228.0|43234.0|43252.0|43270.0|43301.0|43315.0|43321.0|43324.0|43335.0|43344.0|43376.0|43407.0|43424.0|43446.0|43457.0|43465.0|43467.0|43480.0|43487.0|43498.0|43500.0|43528.0|43532.0|43548.0|43583.0|43600.0|43638.0|43640.0|43651.0|43657.0|43733.0|43739.0|43755.0|43766.0|43770.0|43795.0|43797.0|43810.0|43818.0|43840.0|43845.0|43871.0|43877.0|43889.0|43904.0|43940.0|43941.0|43947.0|43977.0|44011.0|44019.0|44030.0|44042.0|44043.0|44074.0|44080.0|44119.0|44143.0|44146.0|44167.0|44191.0|44237.0|44297.0|44299.0|44334.0|44335.0|44342.0|44394.0|44399.0|44407.0|44446.0|44495.0|44515.0|44548.0|44559.0|44569.0|44580.0|44610.0|44623.0|44655.0|44715.0|44731.0|44749.0|44763.0|44764.0|44797.0|44850.0|44868.0|44948.0|44971.0|45002.0|45056.0|45085.0|45164.0|45171.0|45178.0|45196.0|45243.0|45280.0|45299.0|45384.0|45401.0|45420.0|45454.0|45485.0|45559.0|45590.0|45598.0|45601.0|45622.0|45659.0|45664.0|45729.0|45760.0|45836.0|45898.0|45899.0|45951.0|45962.0|45992.0|46028.0|46051.0|46075.0|46136.0|46139.0|46169.0|46209.0|46223.0|46229.0|46240.0|46244.0|46255.0|46297.0|46298.0|46302.0|46418.0|46445.0|46455.0|46461.0|46462.0|46467.0|46480.0|46507.0|46508.0|46536.0|46539.0|46568.0|46570.0|46590.0|46614.0|46616.0|46622.0|46628.0|46669.0|46718.0|46719.0|46720.0|46723.0|46725.0|46741.0|46743.0|46755.0|46777.0|46784.0|46802.0|46806.0|46808.0|46823.0|46824.0|46839.0|46856.0|46869.0|46881.0|46900.0|46914.0|46921.0|46930.0|46931.0|46942.0|46962.0|46993.0|47001.0|47017.0|47028.0|47035.0|47044.0|47055.0|47060.0|47073.0|47108.0|47117.0|47156.0|47167.0|47174.0|47193.0|47194.0|47209.0|47211.0|47228.0|47236.0|47251.0|47253.0|47271.0|47275.0|47288.0|47303.0|47305.0|47323.0|47336.0|47346.0|47356.0|47368.0|47373.0|47376.0|47400.0|47406.0|47426.0|47436.0|47450.0|47452.0|47468.0|47477.0|47479.0|47487.0|47494.0|47503.0|47507.0|47510.0|47541.0|47542.0|47550.0|47563.0|47570.0|47571.0|47601.0|47605.0|47627.0|47631.0|47633.0|47653.0|47659.0|47661.0|47662.0|47663.0|47666.0|47668.0|47670.0|47672.0|47673.0|47679.0|47695.0|47699.0|47704.0|47705.0|47710.0|47714.0|47731.0|47756.0|47765.0|47767.0|47769.0|47774.0|47777.0|47778.0|47780.0|47789.0|47798.0|47816.0|47818.0|47838.0|47840.0|47854.0|47860.0|47876.0|47880.0|47881.0|47897.0|47901.0|47911.0|47918.0|47942.0|47944.0|47962.0|47973.0|47982.0|47983.0|48016.0|48026.0|48030.0|48033.0|48037.0|48038.0|48039.0|48060.0|48065.0|48069.0|48081.0|48083.0|48090.0|48184.0|48195.0|48232.0|48243.0|48251.0|48259.0|48264.0|48285.0|48305.0|48380.0|48383.0|48385.0|48396.0|48405.0|48407.0|48413.0|48434.0|48468.0|48479.0|48487.0|48495.0|48497.0|48507.0|48512.0|48529.0|48548.0|48558.0|48567.0|48586.0|48621.0|48627.0|48633.0|48684.0|48689.0|48699.0|48723.0|48735.0|48842.0|48889.0|48891.0|48895.0|48907.0|48994.0|49018.0|49035.0|49053.0|49107.0|49145.0|49161.0|49164.0|49194.0|49201.0|49218.0|49271.0|49295.0|49303.0|49355.0|49356.0|49375.0|49379.0|49453.0|49461.0|49485.0|49486.0|49493.0|49497.0|49510.0|49514.0|49608.0|49612.0|49672.0|49702.0|49778.0|49800.0|49810.0|49819.0|49840.0|49901.0|49915.0|49988.0|50002.0|50012.0|50023.0|50036.0|50047.0|50129.0|50131.0|50134.0|50141.0|50199.0|50204.0|50231.0|50237.0|50241.0|50281.0|50315.0|50323.0|50335.0|50345.0|50350.0|50356.0|50357.0|50366.0|50374.0|50378.0|50406.0|50410.0|50438.0|50452.0|50458.0|50463.0|50473.0|50490.0|50495.0|50516.0|50517.0|50546.0|50552.0|50558.0|50560.0|50566.0|50578.0|50599.0|50604.0|50608.0|50631.0|50639.0|50656.0|50667.0|50674.0|50709.0|50774.0|50789.0|50810.0|50832.0|50850.0|50911.0|50938.0|50980.0|50989.0|51033.0|51077.0|51096.0|51107.0|51187.0|51202.0|51214.0|51254.0|51255.0|51258.0|51285.0|51310.0|51315.0|51343.0|51359.0|51366.0|51376.0|51418.0|51430.0|51464.0|51469.0|51501.0|51517.0|51526.0|51538.0|51571.0|51573.0|51582.0|51618.0|51655.0|51666.0|51686.0|51696.0|51700.0|51741.0|51754.0|51776.0|51779.0|51802.0|51847.0|51855.0|51862.0|51886.0|51895.0|51917.0|51921.0|51949.0|51955.0|51971.0|52002.0|52036.0|52037.0|52062.0|52088.0|52097.0|52123.0|52138.0|52192.0|52224.0|52241.0|52309.0|52363.0|52385.0|52403.0|52406.0|52414.0|52427.0|52430.0|52457.0|52467.0|52501.0|52511.0|52614.0|52620.0|52624.0|52678.0|52706.0|52727.0|52741.0|52752.0|52760.0|52770.0|52773.0|52783.0|52814.0|52836.0|52867.0|52889.0|52921.0|52922.0|52932.0|52941.0|52943.0|52945.0|52975.0|52976.0|52997.0|53007.0|53016.0|53028.0|53030.0|53051.0|53063.0|53083.0|53120.0|53134.0|53152.0|53156.0|53159.0|53170.0|53174.0|53183.0|53194.0|53207.0|53243.0|53270.0|53285.0|53288.0|53326.0|53337.0|53351.0|53356.0|53366.0|53377.0|53396.0|53404.0|53411.0|53416.0|53447.0|53469.0|53484.0|53487.0|53538.0|53548.0|53566.0|53574.0|53575.0|53587.0|53623.0|53626.0|53635.0|53646.0|53656.0|53669.0|53672.0|53677.0|53698.0|53700.0|53701.0|53704.0|53740.0|53759.0|53760.0|53785.0|53790.0|53795.0|53801.0|53806.0|53816.0|53833.0|53838.0|53842.0|53848.0|53851.0|53887.0|53890.0|53898.0|53908.0|53912.0|53915.0|53922.0|53933.0|53941.0|53955.0|53964.0|53969.0|53992.0|53995.0|54017.0|54023.0|54024.0|54043.0|54045.0|54051.0|54059.0|54062.0|54063.0|54073.0|54077.0|54089.0|54096.0|54102.0|54110.0|54113.0|54120.0|54124.0|54133.0|54134.0|54144.0|54151.0|54155.0|54158.0|54168.0|54182.0|54185.0|54204.0|54207.0|54209.0|54228.0|54235.0|54236.0|54238.0|54241.0|54245.0|54247.0|54250.0|54254.0|54259.0|54265.0|54275.0|54277.0|54278.0|54286.0|54294.0|54312.0|54323.0|54326.0|54333.0|54346.0|54348.0|54358.0|54360.0|54365.0|54370.0|54376.0|54388.0|54399.0|54421.0|54424.0|54430.0|54432.0|54437.0|54438.0|54450.0|54456.0|54471.0|54488.0|54499.0|54523.0|54532.0|54533.0|54536.0|54558.0|54568.0|54586.0|54595.0|54596.0|54598.0|54599.0|54608.0|54615.0|54618.0|54626.0|54628.0|54638.0|54645.0|54649.0|54659.0|54679.0|54700.0|54705.0|54708.0|54730.0|54733.0|54740.0|54747.0|54753.0|54760.0|54762.0|54767.0|54774.0|54779.0|54780.0|54787.0|54793.0|54812.0|54819.0|54823.0|54832.0|54840.0|54851.0|54853.0|54871.0|54881.0|54904.0|54911.0|54920.0|54952.0|54957.0|54961.0|54963.0|54974.0|54977.0|54995.0|54998.0|55012.0|55028.0|55040.0|55053.0|55059.0|55063.0|55073.0|55079.0|55097.0|55101.0|55103.0|55114.0|55126.0|55132.0|55135.0|55153.0|55154.0|55158.0|55169.0|55174.0|55176.0|55208.0|55212.0|55215.0|55232.0|55235.0|55237.0|55239.0|55245.0|55255.0|55261.0|55266.0|55276.0|55286.0|55304.0|55316.0|55331.0|55358.0|55366.0|55367.0|55374.0|55385.0|55389.0|55396.0|55400.0|55401.0|55411.0|55419.0|55424.0|55456.0|55457.0|55460.0|55472.0|55482.0|55487.0|55493.0|55497.0|55507.0|55514.0|55536.0|55540.0|55546.0|55568.0|55588.0|55590.0|55594.0|55596.0|55601.0|55605.0|55609.0|55613.0|55616.0|55626.0|55631.0|55633.0|55637.0|55642.0|55647.0|55648.0|55659.0|55664.0|55671.0|55683.0|55687.0|55698.0|55699.0|55709.0|55712.0|55760.0|55767.0|55795.0|55806.0|55819.0|55841.0|55863.0|55873.0|55881.0|55890.0|55895.0|55905.0|55915.0|55925.0|55927.0|55932.0|55969.0|55998.0|56001.0 -in.representative_income metadata_and_annual usd float 56013.0|56021.0|56033.0|56034.0|56055.0|56063.0|56097.0|56105.0|56111.0|56132.0|56136.0|56141.0|56142.0|56154.0|56159.0|56164.0|56174.0|56190.0|56211.0|56214.0|56231.0|56238.0|56249.0|56277.0|56285.0|56292.0|56302.0|56314.0|56316.0|56317.0|56326.0|56338.0|56346.0|56366.0|56400.0|56405.0|56406.0|56410.0|56414.0|56438.0|56442.0|56467.0|56485.0|56486.0|56507.0|56508.0|56513.0|56516.0|56524.0|56538.0|56544.0|56571.0|56575.0|56578.0|56592.0|56605.0|56616.0|56619.0|56627.0|56633.0|56636.0|56664.0|56668.0|56669.0|56671.0|56678.0|56679.0|56685.0|56725.0|56729.0|56751.0|56757.0|56759.0|56781.0|56785.0|56786.0|56811.0|56833.0|56864.0|56876.0|56885.0|56892.0|56901.0|56909.0|56915.0|56916.0|56920.0|56941.0|56949.0|56952.0|56972.0|56981.0|57002.0|57023.0|57039.0|57057.0|57107.0|57161.0|57194.0|57205.0|57246.0|57269.0|57276.0|57297.0|57312.0|57373.0|57376.0|57422.0|57429.0|57452.0|57455.0|57477.0|57481.0|57555.0|57578.0|57602.0|57645.0|57655.0|57679.0|57687.0|57697.0|57752.0|57762.0|57792.0|57802.0|57824.0|57864.0|57881.0|57967.0|57977.0|57982.0|57999.0|58014.0|58021.0|58107.0|58109.0|58129.0|58172.0|58182.0|58184.0|58214.0|58235.0|58238.0|58285.0|58288.0|58299.0|58310.0|58319.0|58320.0|58396.0|58400.0|58425.0|58483.0|58487.0|58531.0|58540.0|58562.0|58563.0|58586.0|58588.0|58632.0|58669.0|58689.0|58690.0|58717.0|58752.0|58770.0|58790.0|58847.0|58885.0|58891.0|58896.0|58933.0|58999.0|59044.0|59057.0|59093.0|59102.0|59113.0|59147.0|59164.0|59201.0|59205.0|59210.0|59237.0|59254.0|59269.0|59309.0|59318.0|59320.0|59353.0|59362.0|59364.0|59366.0|59374.0|59412.0|59415.0|59426.0|59430.0|59447.0|59480.0|59498.0|59534.0|59599.0|59618.0|59642.0|59659.0|59679.0|59683.0|59690.0|59700.0|59720.0|59721.0|59824.0|59888.0|59928.0|59966.0|60003.0|60023.0|60030.0|60074.0|60085.0|60104.0|60113.0|60133.0|60182.0|60205.0|60221.0|60225.0|60237.0|60306.0|60326.0|60328.0|60340.0|60387.0|60398.0|60435.0|60465.0|60508.0|60619.0|60701.0|60723.0|60745.0|60751.0|60752.0|60758.0|60811.0|60831.0|60845.0|60852.0|60856.0|60876.0|60917.0|60956.0|60959.0|60972.0|60979.0|61046.0|61063.0|61083.0|61100.0|61114.0|61154.0|61165.0|61167.0|61265.0|61336.0|61390.0|61417.0|61427.0|61466.0|61475.0|61479.0|61518.0|61587.0|61588.0|61589.0|61616.0|61639.0|61641.0|61680.0|61716.0|61720.0|61723.0|61729.0|61732.0|61747.0|61756.0|61796.0|61800.0|61803.0|61805.0|61821.0|61831.0|61876.0|61883.0|61911.0|61922.0|61939.0|61942.0|61960.0|61971.0|62042.0|62045.0|62056.0|62063.0|62066.0|62094.0|62095.0|62104.0|62116.0|62124.0|62127.0|62145.0|62148.0|62153.0|62169.0|62188.0|62197.0|62215.0|62235.0|62292.0|62299.0|62305.0|62313.0|62321.0|62326.0|62328.0|62338.0|62343.0|62376.0|62403.0|62427.0|62433.0|62434.0|62454.0|62464.0|62488.0|62506.0|62516.0|62528.0|62578.0|62598.0|62602.0|62623.0|62629.0|62661.0|62668.0|62679.0|62689.0|62695.0|62707.0|62723.0|62749.0|62765.0|62797.0|62815.0|62818.0|62829.0|62850.0|62854.0|62857.0|62861.0|62867.0|62887.0|62904.0|62932.0|62942.0|62958.0|62960.0|62962.0|62977.0|62983.0|62992.0|63012.0|63022.0|63029.0|63053.0|63066.0|63073.0|63086.0|63090.0|63097.0|63101.0|63102.0|63111.0|63125.0|63134.0|63171.0|63201.0|63226.0|63228.0|63229.0|63234.0|63258.0|63265.0|63276.0|63287.0|63294.0|63302.0|63303.0|63319.0|63331.0|63344.0|63350.0|63357.0|63362.0|63381.0|63407.0|63435.0|63441.0|63473.0|63476.0|63477.0|63498.0|63510.0|63512.0|63526.0|63531.0|63537.0|63538.0|63540.0|63548.0|63550.0|63558.0|63571.0|63575.0|63579.0|63583.0|63588.0|63593.0|63619.0|63624.0|63639.0|63651.0|63655.0|63661.0|63670.0|63690.0|63692.0|63717.0|63719.0|63728.0|63731.0|63744.0|63747.0|63761.0|63763.0|63776.0|63791.0|63802.0|63803.0|63804.0|63825.0|63838.0|63841.0|63846.0|63856.0|63858.0|63859.0|63866.0|63882.0|63892.0|63898.0|63899.0|63909.0|63910.0|63912.0|63930.0|63942.0|63953.0|63978.0|63979.0|63988.0|64011.0|64012.0|64014.0|64023.0|64025.0|64036.0|64053.0|64072.0|64077.0|64078.0|64084.0|64085.0|64088.0|64096.0|64126.0|64128.0|64129.0|64139.0|64144.0|64156.0|64162.0|64191.0|64192.0|64208.0|64216.0|64226.0|64234.0|64236.0|64245.0|64260.0|64288.0|64310.0|64331.0|64340.0|64346.0|64352.0|64354.0|64357.0|64362.0|64363.0|64366.0|64374.0|64375.0|64396.0|64397.0|64404.0|64406.0|64407.0|64408.0|64411.0|64417.0|64447.0|64482.0|64487.0|64498.0|64504.0|64517.0|64531.0|64536.0|64542.0|64546.0|64548.0|64584.0|64595.0|64599.0|64600.0|64612.0|64613.0|64617.0|64645.0|64649.0|64669.0|64672.0|64680.0|64688.0|64699.0|64707.0|64714.0|64731.0|64739.0|64750.0|64753.0|64754.0|64775.0|64783.0|64791.0|64809.0|64815.0|64828.0|64829.0|64843.0|64857.0|64859.0|64886.0|64901.0|64911.0|64925.0|64936.0|64944.0|64952.0|64969.0|64981.0|64990.0|64992.0|65009.0|65023.0|65025.0|65028.0|65053.0|65063.0|65069.0|65074.0|65084.0|65098.0|65101.0|65109.0|65111.0|65115.0|65152.0|65169.0|65174.0|65183.0|65203.0|65212.0|65233.0|65255.0|65280.0|65321.0|65342.0|65351.0|65373.0|65383.0|65386.0|65407.0|65427.0|65457.0|65470.0|65481.0|65485.0|65508.0|65518.0|65553.0|65585.0|65586.0|65588.0|65649.0|65659.0|65662.0|65666.0|65671.0|65683.0|65693.0|65695.0|65703.0|65747.0|65749.0|65801.0|65807.0|65822.0|65827.0|65845.0|65865.0|65912.0|65913.0|65942.0|65945.0|65972.0|65974.0|65983.0|65993.0|65996.0|66219.0|66223.0|66229.0|66233.0|66245.0|66340.0|66341.0|66356.0|66426.0|66437.0|66449.0|66468.0|66502.0|66529.0|66531.0|66545.0|66554.0|66557.0|66569.0|66575.0|66597.0|66599.0|66611.0|66612.0|66629.0|66659.0|66661.0|66665.0|66670.0|66714.0|66719.0|66735.0|66757.0|66758.0|66771.0|66774.0|66775.0|66830.0|66836.0|66854.0|66862.0|66898.0|66920.0|66922.0|66930.0|66941.0|66983.0|66987.0|67000.0|67031.0|67045.0|67065.0|67074.0|67080.0|67090.0|67096.0|67117.0|67147.0|67175.0|67198.0|67205.0|67238.0|67259.0|67266.0|67276.0|67295.0|67305.0|67313.0|67327.0|67336.0|67341.0|67377.0|67390.0|67397.0|67421.0|67424.0|67457.0|67464.0|67478.0|67495.0|67529.0|67558.0|67560.0|67581.0|67627.0|67629.0|67637.0|67664.0|67700.0|67706.0|67735.0|67781.0|67789.0|67811.0|67815.0|67824.0|67838.0|67842.0|67853.0|67854.0|67863.0|67864.0|67869.0|67874.0|67882.0|67929.0|67930.0|67950.0|67962.0|67983.0|68043.0|68045.0|68057.0|68068.0|68076.0|68113.0|68128.0|68134.0|68164.0|68225.0|68237.0|68262.0|68271.0|68285.0|68310.0|68338.0|68379.0|68437.0|68465.0|68486.0|68518.0|68560.0|68567.0|68570.0|68592.0|68594.0|68602.0|68610.0|68615.0|68619.0|68639.0|68643.0|68690.0|68697.0|68700.0|68705.0|68715.0|68736.0|68755.0|68804.0|68808.0|68809.0|68820.0|68849.0|68850.0|68901.0|68905.0|68942.0|68963.0|68971.0|68972.0|68991.0|68992.0|69014.0|69023.0|69056.0|69063.0|69076.0|69084.0|69085.0|69096.0|69097.0|69103.0|69104.0|69107.0|69159.0|69182.0|69183.0|69195.0|69203.0|69221.0|69226.0|69237.0|69239.0|69314.0|69316.0|69345.0|69367.0|69386.0|69393.0|69397.0|69416.0|69452.0|69499.0|69520.0|69541.0|69552.0|69582.0|69599.0|69604.0|69667.0|69690.0|69700.0|69726.0|69733.0|69798.0|69815.0|69892.0|69902.0|69921.0|69936.0|69989.0|70014.0|70054.0|70104.0|70139.0|70231.0|70236.0|70237.0|70242.0|70262.0|70306.0|70339.0|70345.0|70447.0|70448.0|70508.0|70525.0|70551.0|70741.0|70848.0|70869.0|70878.0|70912.0|70955.0|70964.0|71062.0|71067.0|71095.0|71108.0|71114.0|71148.0|71186.0|71201.0|71203.0|71215.0|71273.0|71291.0|71311.0|71316.0|71322.0|71331.0|71354.0|71417.0|71427.0|71480.0|71491.0|71527.0|71535.0|71582.0|71608.0|71613.0|71635.0|71650.0|71700.0|71714.0|71720.0|71738.0|71755.0|71789.0|71814.0|71922.0|71959.0|72030.0|72040.0|72067.0|72098.0|72121.0|72124.0|72136.0|72182.0|72205.0|72212.0|72223.0|72225.0|72233.0|72240.0|72243.0|72283.0|72286.0|72294.0|72296.0|72305.0|72326.0|72351.0|72378.0|72399.0|72458.0|72501.0|72504.0|72511.0|72522.0|72543.0|72629.0|72635.0|72651.0|72662.0|72663.0|72672.0|72683.0|72717.0|72727.0|72768.0|72780.0|72781.0|72824.0|72849.0|72852.0|72887.0|72888.0|72932.0|72975.0|72986.0|72995.0|73033.0|73052.0|73079.0|73084.0|73094.0|73095.0|73102.0|73135.0|73147.0|73156.0|73190.0|73209.0|73212.0|73244.0|73255.0|73295.0|73301.0|73302.0|73346.0|73380.0|73409.0|73424.0|73438.0|73443.0|73472.0|73533.0|73539.0|73543.0|73559.0|73563.0|73569.0 -in.representative_income metadata_and_annual usd float 73591.0|73612.0|73623.0|73629.0|73640.0|73646.0|73660.0|73688.0|73695.0|73720.0|73724.0|73748.0|73751.0|73761.0|73769.0|73770.0|73782.0|73789.0|73823.0|73833.0|73841.0|73842.0|73843.0|73850.0|73852.0|73853.0|73854.0|73864.0|73875.0|73883.0|73902.0|73904.0|73914.0|73922.0|73928.0|73936.0|73939.0|73943.0|73949.0|73955.0|73961.0|74007.0|74011.0|74012.0|74022.0|74033.0|74042.0|74056.0|74061.0|74068.0|74069.0|74076.0|74086.0|74121.0|74138.0|74145.0|74153.0|74162.0|74165.0|74171.0|74176.0|74196.0|74197.0|74245.0|74250.0|74255.0|74266.0|74275.0|74280.0|74282.0|74295.0|74297.0|74305.0|74315.0|74332.0|74336.0|74337.0|74347.0|74350.0|74360.0|74375.0|74399.0|74413.0|74420.0|74422.0|74429.0|74444.0|74451.0|74453.0|74455.0|74471.0|74481.0|74487.0|74488.0|74491.0|74500.0|74516.0|74522.0|74529.0|74531.0|74539.0|74540.0|74549.0|74561.0|74562.0|74574.0|74604.0|74605.0|74606.0|74617.0|74637.0|74646.0|74650.0|74677.0|74680.0|74698.0|74700.0|74702.0|74703.0|74710.0|74712.0|74717.0|74736.0|74740.0|74750.0|74751.0|74755.0|74768.0|74780.0|74787.0|74811.0|74814.0|74819.0|74848.0|74865.0|74877.0|74883.0|74914.0|74920.0|74930.0|74946.0|74953.0|74956.0|74982.0|74985.0|74986.0|75004.0|75028.0|75034.0|75038.0|75057.0|75093.0|75097.0|75099.0|75131.0|75142.0|75152.0|75155.0|75162.0|75163.0|75165.0|75171.0|75172.0|75174.0|75205.0|75214.0|75215.0|75216.0|75219.0|75235.0|75249.0|75256.0|75286.0|75288.0|75302.0|75309.0|75317.0|75333.0|75357.0|75367.0|75378.0|75387.0|75399.0|75404.0|75426.0|75427.0|75451.0|75458.0|75462.0|75463.0|75464.0|75502.0|75510.0|75512.0|75518.0|75521.0|75524.0|75549.0|75559.0|75571.0|75573.0|75596.0|75603.0|75631.0|75632.0|75633.0|75643.0|75646.0|75677.0|75678.0|75687.0|75705.0|75709.0|75719.0|75721.0|75732.0|75741.0|75763.0|75786.0|75807.0|75812.0|75818.0|75824.0|75826.0|75839.0|75862.0|75864.0|75915.0|75925.0|75931.0|75933.0|75957.0|75963.0|75968.0|75973.0|75980.0|76013.0|76018.0|76037.0|76054.0|76065.0|76087.0|76149.0|76151.0|76163.0|76173.0|76224.0|76266.0|76283.0|76322.0|76337.0|76379.0|76389.0|76459.0|76468.0|76533.0|76537.0|76555.0|76564.0|76569.0|76589.0|76598.0|76601.0|76626.0|76637.0|76644.0|76669.0|76676.0|76752.0|76761.0|76776.0|76781.0|76843.0|76859.0|76872.0|76881.0|76912.0|76915.0|77003.0|77037.0|77048.0|77049.0|77070.0|77073.0|77074.0|77092.0|77106.0|77152.0|77159.0|77175.0|77181.0|77254.0|77256.0|77276.0|77302.0|77308.0|77320.0|77359.0|77377.0|77396.0|77470.0|77478.0|77483.0|77489.0|77503.0|77514.0|77525.0|77578.0|77579.0|77610.0|77616.0|77619.0|77668.0|77678.0|77686.0|77724.0|77740.0|77767.0|77794.0|77832.0|77865.0|77872.0|77878.0|77880.0|77902.0|77935.0|77983.0|78007.0|78081.0|78104.0|78136.0|78148.0|78171.0|78185.0|78226.0|78254.0|78280.0|78287.0|78372.0|78387.0|78390.0|78437.0|78438.0|78462.0|78494.0|78545.0|78550.0|78577.0|78589.0|78597.0|78615.0|78638.0|78659.0|78674.0|78689.0|78699.0|78701.0|78803.0|78885.0|78906.0|78978.0|78983.0|78993.0|79009.0|79071.0|79113.0|79144.0|79195.0|79198.0|79215.0|79221.0|79257.0|79296.0|79306.0|79318.0|79327.0|79397.0|79414.0|79422.0|79433.0|79522.0|79543.0|79599.0|79623.0|79650.0|79700.0|79703.0|79732.0|79800.0|79801.0|79834.0|79908.0|79955.0|80003.0|80045.0|80105.0|80150.0|80171.0|80206.0|80247.0|80307.0|80350.0|80361.0|80408.0|80453.0|80466.0|80468.0|80508.0|80509.0|80556.0|80603.0|80616.0|80637.0|80660.0|80678.0|80723.0|80763.0|80812.0|80831.0|80913.0|80927.0|80933.0|80939.0|80941.0|80992.0|80994.0|81014.0|81068.0|81072.0|81078.0|81099.0|81115.0|81121.0|81152.0|81153.0|81198.0|81205.0|81252.0|81278.0|81279.0|81310.0|81317.0|81360.0|81368.0|81382.0|81410.0|81416.0|81468.0|81475.0|81489.0|81521.0|81574.0|81575.0|81588.0|81620.0|81626.0|81668.0|81683.0|81689.0|81705.0|81791.0|81797.0|81806.0|81822.0|81878.0|81898.0|81904.0|81923.0|81943.0|81956.0|81977.0|81993.0|82000.0|82008.0|82024.0|82048.0|82059.0|82118.0|82154.0|82206.0|82207.0|82224.0|82270.0|82316.0|82327.0|82332.0|82333.0|82338.0|82364.0|82372.0|82375.0|82386.0|82398.0|82413.0|82421.0|82428.0|82440.0|82468.0|82494.0|82521.0|82523.0|82549.0|82556.0|82567.0|82573.0|82619.0|82681.0|82722.0|82763.0|82764.0|82766.0|82768.0|82786.0|82807.0|82809.0|82832.0|82870.0|82892.0|82908.0|82926.0|82929.0|82933.0|82978.0|82979.0|82980.0|82981.0|82988.0|82991.0|83009.0|83034.0|83043.0|83085.0|83099.0|83122.0|83135.0|83156.0|83193.0|83197.0|83209.0|83214.0|83236.0|83238.0|83255.0|83271.0|83299.0|83304.0|83310.0|83314.0|83341.0|83366.0|83367.0|83369.0|83388.0|83407.0|83412.0|83419.0|83464.0|83520.0|83525.0|83537.0|83539.0|83548.0|83589.0|83600.0|83610.0|83622.0|83629.0|83640.0|83665.0|83734.0|83737.0|83754.0|83822.0|83836.0|83839.0|83841.0|83845.0|83869.0|83943.0|83944.0|83960.0|83993.0|84044.0|84052.0|84060.0|84069.0|84166.0|84252.0|84276.0|84281.0|84369.0|84400.0|84421.0|84446.0|84448.0|84476.0|84480.0|84493.0|84504.0|84532.0|84579.0|84588.0|84601.0|84621.0|84635.0|84650.0|84655.0|84682.0|84709.0|84785.0|84790.0|84802.0|84803.0|84817.0|84888.0|84895.0|84907.0|84953.0|84974.0|84992.0|85002.0|85012.0|85044.0|85075.0|85095.0|85115.0|85124.0|85198.0|85256.0|85301.0|85340.0|85357.0|85368.0|85404.0|85411.0|85458.0|85476.0|85497.0|85507.0|85519.0|85525.0|85528.0|85554.0|85559.0|85569.0|85571.0|85573.0|85597.0|85616.0|85640.0|85650.0|85661.0|85662.0|85750.0|85761.0|85769.0|85786.0|85789.0|85816.0|85833.0|85845.0|85855.0|85868.0|85877.0|85887.0|85893.0|85897.0|85901.0|85913.0|85919.0|85933.0|85950.0|85982.0|85984.0|86003.0|86023.0|86048.0|86085.0|86115.0|86137.0|86150.0|86165.0|86188.0|86214.0|86222.0|86224.0|86266.0|86267.0|86305.0|86330.0|86332.0|86337.0|86367.0|86372.0|86435.0|86437.0|86439.0|86442.0|86448.0|86459.0|86470.0|86498.0|86502.0|86508.0|86520.0|86545.0|86548.0|86563.0|86567.0|86580.0|86604.0|86614.0|86620.0|86627.0|86642.0|86657.0|86660.0|86671.0|86707.0|86718.0|86724.0|86734.0|86745.0|86793.0|86816.0|86849.0|86852.0|86870.0|86872.0|86874.0|86889.0|86900.0|86913.0|86949.0|86950.0|86960.0|86971.0|86978.0|86982.0|87003.0|87024.0|87034.0|87054.0|87078.0|87086.0|87097.0|87111.0|87119.0|87121.0|87158.0|87194.0|87195.0|87216.0|87239.0|87244.0|87248.0|87261.0|87302.0|87321.0|87332.0|87356.0|87357.0|87364.0|87374.0|87388.0|87405.0|87406.0|87410.0|87414.0|87415.0|87426.0|87432.0|87453.0|87467.0|87475.0|87479.0|87486.0|87526.0|87540.0|87554.0|87570.0|87591.0|87594.0|87610.0|87630.0|87636.0|87638.0|87661.0|87680.0|87684.0|87721.0|87725.0|87743.0|87777.0|87778.0|87808.0|87829.0|87842.0|87848.0|87849.0|87852.0|87864.0|87879.0|87887.0|87902.0|87907.0|87912.0|87915.0|87930.0|87947.0|87982.0|88027.0|88038.0|88045.0|88055.0|88058.0|88066.0|88069.0|88086.0|88087.0|88135.0|88166.0|88186.0|88206.0|88222.0|88226.0|88231.0|88238.0|88282.0|88285.0|88287.0|88291.0|88306.0|88311.0|88313.0|88347.0|88364.0|88388.0|88396.0|88409.0|88437.0|88452.0|88464.0|88481.0|88489.0|88491.0|88506.0|88524.0|88549.0|88560.0|88590.0|88593.0|88597.0|88613.0|88618.0|88629.0|88635.0|88656.0|88667.0|88691.0|88705.0|88707.0|88717.0|88741.0|88746.0|88771.0|88776.0|88782.0|88798.0|88808.0|88812.0|88860.0|88868.0|88881.0|88892.0|88893.0|88904.0|88908.0|88911.0|88922.0|88944.0|88967.0|89020.0|89024.0|89093.0|89111.0|89115.0|89117.0|89125.0|89138.0|89139.0|89144.0|89167.0|89169.0|89175.0|89183.0|89196.0|89199.0|89208.0|89219.0|89220.0|89227.0|89231.0|89246.0|89247.0|89280.0|89290.0|89297.0|89303.0|89311.0|89325.0|89326.0|89347.0|89355.0|89416.0|89418.0|89431.0|89440.0|89451.0|89452.0|89489.0|89493.0|89499.0|89500.0|89501.0|89515.0|89525.0|89528.0|89530.0|89536.0|89539.0|89547.0|89552.0|89570.0|89580.0|89592.0|89600.0|89620.0|89633.0|89657.0|89661.0|89662.0|89680.0|89683.0|89689.0|89690.0|89694.0|89701.0|89708.0|89709.0|89710.0|89733.0|89736.0|89741.0|89747.0|89757.0|89762.0|89768.0|89787.0|89788.0|89798.0|89830.0|89873.0|89881.0|89913.0|89933.0|89939.0|89950.0|89955.0|89957.0|89974.0|89984.0|89994.0|90000.0|90005.0|90011.0|90014.0|90020.0|90025.0|90062.0|90064.0|90085.0|90087.0|90098.0|90105.0|90111.0|90112.0|90144.0|90149.0|90169.0|90170.0|90174.0|90176.0|90179.0|90181.0|90190.0|90206.0|90262.0|90264.0|90273.0 -in.representative_income metadata_and_annual usd float 90306.0|90307.0|90314.0|90352.0|90380.0|90381.0|90382.0|90385.0|90395.0|90408.0|90411.0|90425.0|90427.0|90435.0|90458.0|90475.0|90489.0|90506.0|90509.0|90519.0|90524.0|90590.0|90599.0|90629.0|90644.0|90653.0|90662.0|90664.0|90671.0|90706.0|90707.0|90709.0|90711.0|90749.0|90767.0|90789.0|90809.0|90812.0|90817.0|90822.0|90825.0|90833.0|90840.0|90844.0|90846.0|90852.0|90868.0|90871.0|90890.0|90896.0|90897.0|90902.0|90921.0|90922.0|90923.0|90933.0|90964.0|91014.0|91034.0|91047.0|91063.0|91065.0|91078.0|91096.0|91118.0|91119.0|91136.0|91157.0|91166.0|91171.0|91181.0|91192.0|91196.0|91221.0|91223.0|91247.0|91267.0|91294.0|91297.0|91308.0|91317.0|91369.0|91435.0|91448.0|91458.0|91462.0|91463.0|91483.0|91490.0|91506.0|91519.0|91552.0|91561.0|91585.0|91590.0|91593.0|91615.0|91624.0|91640.0|91659.0|91672.0|91696.0|91721.0|91726.0|91732.0|91735.0|91736.0|91750.0|91777.0|91799.0|91812.0|91819.0|91822.0|91837.0|91844.0|91850.0|91851.0|91856.0|91862.0|91888.0|91894.0|91902.0|91905.0|91916.0|91923.0|91941.0|91948.0|91949.0|91954.0|92017.0|92023.0|92024.0|92056.0|92102.0|92109.0|92164.0|92166.0|92209.0|92212.0|92226.0|92254.0|92267.0|92277.0|92278.0|92283.0|92295.0|92316.0|92317.0|92327.0|92358.0|92360.0|92366.0|92381.0|92403.0|92459.0|92508.0|92521.0|92531.0|92570.0|92573.0|92590.0|92595.0|92610.0|92624.0|92630.0|92639.0|92650.0|92700.0|92731.0|92746.0|92752.0|92791.0|92812.0|92819.0|92826.0|92842.0|92847.0|92851.0|92853.0|92856.0|92882.0|92911.0|92920.0|92945.0|92964.0|92974.0|92985.0|92996.0|93014.0|93037.0|93038.0|93068.0|93075.0|93099.0|93121.0|93122.0|93135.0|93143.0|93169.0|93186.0|93203.0|93228.0|93236.0|93243.0|93245.0|93285.0|93309.0|93333.0|93337.0|93347.0|93353.0|93391.0|93408.0|93438.0|93461.0|93484.0|93497.0|93499.0|93502.0|93552.0|93569.0|93605.0|93614.0|93625.0|93648.0|93691.0|93712.0|93741.0|93784.0|93831.0|93842.0|93852.0|93860.0|93923.0|93926.0|93943.0|94012.0|94023.0|94034.0|94038.0|94045.0|94099.0|94109.0|94146.0|94171.0|94197.0|94217.0|94236.0|94247.0|94249.0|94282.0|94325.0|94347.0|94356.0|94378.0|94440.0|94449.0|94481.0|94485.0|94493.0|94497.0|94517.0|94541.0|94550.0|94570.0|94571.0|94598.0|94607.0|94627.0|94651.0|94741.0|94752.0|94767.0|94786.0|94790.0|94822.0|94830.0|94853.0|94865.0|94873.0|94894.0|94913.0|94954.0|94973.0|94997.0|95000.0|95020.0|95055.0|95069.0|95081.0|95083.0|95099.0|95123.0|95162.0|95189.0|95194.0|95203.0|95215.0|95231.0|95297.0|95322.0|95358.0|95365.0|95389.0|95409.0|95427.0|95430.0|95442.0|95513.0|95514.0|95526.0|95547.0|95589.0|95652.0|95661.0|95718.0|95721.0|95730.0|95751.0|95762.0|95838.0|95864.0|95892.0|95925.0|95946.0|95964.0|95969.0|96004.0|96074.0|96132.0|96133.0|96161.0|96166.0|96180.0|96181.0|96201.0|96234.0|96285.0|96288.0|96337.0|96368.0|96396.0|96497.0|96519.0|96544.0|96570.0|96602.0|96647.0|96702.0|96707.0|96772.0|96813.0|96825.0|96853.0|96932.0|96950.0|96956.0|97024.0|97026.0|97040.0|97041.0|97060.0|97125.0|97148.0|97176.0|97243.0|97266.0|97340.0|97362.0|97369.0|97453.0|97458.0|97493.0|97551.0|97566.0|97577.0|97580.0|97617.0|97627.0|97674.0|97679.0|97709.0|97748.0|97762.0|97782.0|97791.0|98078.0|98085.0|98107.0|98113.0|98186.0|98221.0|98287.0|98366.0|98388.0|98477.0|98503.0|98538.0|98606.0|98682.0|98710.0|98790.0|98843.0|98863.0|98865.0|98928.0|98971.0|98994.0|99019.0|99079.0|99126.0|99187.0|99226.0|99294.0|99344.0|99370.0|99432.0|99502.0|99508.0|99535.0|99600.0|99617.0|99727.0|99802.0|99831.0|99871.0|99943.0|100004.0|100050.0|100153.0|100154.0|100188.0|100260.0|100293.0|100381.0|100399.0|100408.0|100475.0|100484.0|100560.0|100566.0|100609.0|100669.0|100689.0|100711.0|100808.0|100821.0|100824.0|100876.0|101012.0|101015.0|101024.0|101031.0|101043.0|101119.0|101132.0|101137.0|101185.0|101217.0|101226.0|101240.0|101242.0|101267.0|101274.0|101307.0|101333.0|101347.0|101348.0|101392.0|101419.0|101441.0|101456.0|101489.0|101495.0|101520.0|101542.0|101549.0|101559.0|101663.0|101664.0|101683.0|101701.0|101769.0|101780.0|101804.0|101823.0|101843.0|101875.0|101907.0|101924.0|101978.0|101988.0|102011.0|102020.0|102025.0|102086.0|102104.0|102114.0|102126.0|102158.0|102180.0|102192.0|102206.0|102223.0|102227.0|102235.0|102237.0|102318.0|102320.0|102354.0|102374.0|102407.0|102428.0|102514.0|102526.0|102667.0|102699.0|102719.0|102732.0|102752.0|102824.0|102833.0|102836.0|102861.0|102939.0|102950.0|103035.0|103051.0|103085.0|103128.0|103145.0|103159.0|103185.0|103197.0|103237.0|103245.0|103249.0|103319.0|103346.0|103352.0|103401.0|103509.0|103531.0|103558.0|103617.0|103649.0|103661.0|103695.0|103725.0|103736.0|103764.0|103773.0|103803.0|103833.0|103910.0|104006.0|104017.0|104025.0|104037.0|104045.0|104084.0|104124.0|104145.0|104151.0|104157.0|104177.0|104207.0|104212.0|104232.0|104247.0|104266.0|104280.0|104300.0|104332.0|104339.0|104348.0|104383.0|104388.0|104406.0|104447.0|104482.0|104511.0|104550.0|104554.0|104589.0|104617.0|104625.0|104629.0|104661.0|104692.0|104697.0|104723.0|104769.0|104777.0|104853.0|104859.0|104892.0|104899.0|104935.0|104954.0|104984.0|105001.0|105038.0|105045.0|105090.0|105105.0|105116.0|105130.0|105156.0|105195.0|105198.0|105208.0|105230.0|105238.0|105290.0|105295.0|105305.0|105311.0|105355.0|105357.0|105413.0|105415.0|105459.0|105466.0|105471.0|105489.0|105510.0|105514.0|105517.0|105520.0|105560.0|105566.0|105574.0|105620.0|105627.0|105632.0|105649.0|105651.0|105661.0|105670.0|105682.0|105691.0|105724.0|105734.0|105762.0|105775.0|105778.0|105827.0|105842.0|105857.0|105863.0|105886.0|105894.0|105897.0|105904.0|105924.0|105964.0|105994.0|106019.0|106035.0|106057.0|106069.0|106096.0|106102.0|106116.0|106135.0|106136.0|106165.0|106197.0|106199.0|106210.0|106239.0|106271.0|106281.0|106304.0|106318.0|106368.0|106379.0|106388.0|106409.0|106426.0|106439.0|106446.0|106469.0|106486.0|106523.0|106526.0|106570.0|106643.0|106652.0|106701.0|106716.0|106744.0|106772.0|106831.0|106836.0|106837.0|106873.0|106891.0|106915.0|106962.0|106966.0|106972.0|106974.0|106977.0|107023.0|107025.0|107042.0|107065.0|107074.0|107075.0|107087.0|107095.0|107106.0|107120.0|107130.0|107152.0|107197.0|107225.0|107238.0|107252.0|107254.0|107261.0|107264.0|107277.0|107281.0|107290.0|107349.0|107368.0|107374.0|107377.0|107431.0|107459.0|107463.0|107473.0|107477.0|107480.0|107549.0|107560.0|107570.0|107580.0|107593.0|107615.0|107616.0|107631.0|107632.0|107644.0|107667.0|107675.0|107684.0|107697.0|107712.0|107733.0|107744.0|107782.0|107803.0|107824.0|107833.0|107881.0|107882.0|107904.0|107930.0|107935.0|107966.0|107982.0|107985.0|108003.0|108023.0|108055.0|108057.0|108066.0|108068.0|108091.0|108096.0|108097.0|108101.0|108134.0|108146.0|108174.0|108194.0|108197.0|108200.0|108202.0|108204.0|108220.0|108307.0|108317.0|108355.0|108360.0|108364.0|108365.0|108368.0|108385.0|108405.0|108418.0|108440.0|108457.0|108463.0|108490.0|108503.0|108510.0|108525.0|108533.0|108560.0|108587.0|108591.0|108609.0|108633.0|108664.0|108688.0|108695.0|108715.0|108717.0|108719.0|108730.0|108740.0|108751.0|108756.0|108772.0|108783.0|108793.0|108803.0|108835.0|108848.0|108857.0|108864.0|108878.0|108888.0|108899.0|108901.0|108911.0|108933.0|108940.0|108995.0|109017.0|109047.0|109062.0|109074.0|109076.0|109096.0|109112.0|109133.0|109138.0|109146.0|109166.0|109182.0|109183.0|109224.0|109231.0|109237.0|109246.0|109256.0|109268.0|109277.0|109282.0|109288.0|109290.0|109294.0|109298.0|109309.0|109328.0|109333.0|109336.0|109345.0|109348.0|109362.0|109370.0|109399.0|109406.0|109408.0|109416.0|109429.0|109437.0|109438.0|109451.0|109452.0|109458.0|109468.0|109480.0|109492.0|109493.0|109500.0|109506.0|109514.0|109535.0|109540.0|109546.0|109559.0|109560.0|109573.0|109599.0|109601.0|109653.0|109685.0|109700.0|109702.0|109706.0|109732.0|109734.0|109742.0|109747.0|109752.0|109776.0|109785.0|109803.0|109809.0|109814.0|109816.0|109835.0|109853.0|109880.0|109918.0|109921.0|109927.0|109929.0|109943.0|109952.0|109956.0|109964.0|109975.0|109992.0|110029.0|110033.0|110049.0|110061.0|110078.0|110082.0|110086.0|110101.0|110106.0|110122.0|110128.0|110143.0|110147.0|110186.0|110187.0|110190.0|110207.0|110209.0|110217.0|110225.0|110257.0|110264.0|110294.0|110304.0|110305.0|110308.0|110312.0|110316.0|110318.0|110351.0|110358.0|110366.0|110389.0|110396.0|110409.0|110420.0|110434.0|110438.0|110449.0|110459.0|110468.0|110510.0|110520.0|110522.0|110533.0|110560.0|110566.0|110571.0|110576.0|110598.0|110603.0|110607.0|110611.0|110621.0|110623.0|110662.0|110672.0|110675.0|110712.0|110716.0|110741.0|110748.0|110776.0|110813.0|110856.0|110861.0|110891.0|110902.0|110925.0|110934.0|110940.0|110944.0|110963.0|110964.0|110975.0|110984.0|110995.0|111007.0|111015.0 -in.representative_income metadata_and_annual usd float 111040.0|111050.0|111072.0|111102.0|111126.0|111137.0|111155.0|111170.0|111180.0|111190.0|111237.0|111267.0|111274.0|111288.0|111310.0|111316.0|111318.0|111366.0|111387.0|111397.0|111407.0|111449.0|111470.0|111471.0|111483.0|111500.0|111505.0|111520.0|111531.0|111578.0|111581.0|111593.0|111613.0|111650.0|111656.0|111660.0|111665.0|111667.0|111672.0|111683.0|111706.0|111721.0|111722.0|111723.0|111762.0|111788.0|111799.0|111809.0|111810.0|111823.0|111850.0|111864.0|111869.0|111883.0|111893.0|111894.0|111907.0|111913.0|111918.0|111936.0|111999.0|112002.0|112009.0|112016.0|112068.0|112078.0|112118.0|112153.0|112168.0|112176.0|112210.0|112222.0|112226.0|112227.0|112261.0|112271.0|112288.0|112308.0|112316.0|112325.0|112328.0|112369.0|112390.0|112409.0|112418.0|112429.0|112477.0|112497.0|112531.0|112540.0|112583.0|112585.0|112605.0|112631.0|112634.0|112639.0|112653.0|112712.0|112717.0|112732.0|112734.0|112737.0|112801.0|112833.0|112841.0|112873.0|112876.0|112905.0|112910.0|112926.0|112944.0|112948.0|113015.0|113017.0|113022.0|113054.0|113075.0|113076.0|113204.0|113264.0|113278.0|113298.0|113302.0|113305.0|113307.0|113357.0|113370.0|113439.0|113449.0|113451.0|113460.0|113476.0|113557.0|113563.0|113623.0|113665.0|113666.0|113678.0|113687.0|113707.0|113709.0|113742.0|113786.0|113817.0|113828.0|113843.0|113872.0|113887.0|113897.0|113975.0|114001.0|114098.0|114107.0|114109.0|114157.0|114214.0|114235.0|114247.0|114319.0|114322.0|114340.0|114348.0|114388.0|114430.0|114491.0|114537.0|114550.0|114606.0|114635.0|114638.0|114644.0|114651.0|114688.0|114698.0|114741.0|114746.0|114752.0|114801.0|114847.0|114855.0|114903.0|114952.0|114962.0|115070.0|115074.0|115110.0|115213.0|115258.0|115268.0|115287.0|115288.0|115317.0|115352.0|115379.0|115409.0|115419.0|115460.0|115480.0|115503.0|115571.0|115585.0|115610.0|115653.0|115662.0|115688.0|115690.0|115729.0|115763.0|115795.0|115826.0|115829.0|115864.0|115932.0|115935.0|115965.0|115985.0|116007.0|116038.0|116040.0|116059.0|116066.0|116151.0|116218.0|116254.0|116259.0|116348.0|116450.0|116451.0|116533.0|116640.0|116690.0|116745.0|116760.0|116773.0|116850.0|116874.0|116967.0|117006.0|117069.0|117123.0|117157.0|117221.0|117276.0|117339.0|117360.0|117379.0|117480.0|117483.0|117650.0|117772.0|117783.0|117799.0|117884.0|117895.0|118169.0|118204.0|118221.0|118294.0|118616.0|118643.0|118744.0|118749.0|118823.0|118854.0|118938.0|119003.0|119046.0|119133.0|119170.0|119171.0|119241.0|119260.0|119284.0|119381.0|119475.0|119500.0|119592.0|119649.0|119697.0|119719.0|119909.0|120207.0|120225.0|120226.0|120269.0|120308.0|120310.0|120330.0|120364.0|120611.0|120647.0|120700.0|120712.0|120763.0|120905.0|120914.0|121013.0|121069.0|121085.0|121174.0|121196.0|121217.0|121321.0|121419.0|121451.0|121512.0|121711.0|121729.0|121837.0|121845.0|121864.0|121912.0|121943.0|122018.0|122026.0|122127.0|122155.0|122228.0|122366.0|122374.0|122418.0|122450.0|122461.0|122480.0|122526.0|122536.0|122545.0|122632.0|122634.0|122639.0|122695.0|122733.0|122845.0|122849.0|122861.0|122910.0|122990.0|123155.0|123248.0|123264.0|123339.0|123389.0|123403.0|123431.0|123440.0|123468.0|123490.0|123509.0|123522.0|123600.0|123642.0|123705.0|123714.0|123743.0|123774.0|123811.0|123822.0|123894.0|123916.0|123945.0|123981.0|123984.0|124032.0|124091.0|124092.0|124147.0|124186.0|124197.0|124219.0|124228.0|124280.0|124290.0|124305.0|124362.0|124393.0|124470.0|124520.0|124522.0|124549.0|124551.0|124591.0|124652.0|124686.0|124759.0|124795.0|124805.0|124854.0|124866.0|124899.0|124949.0|124955.0|124971.0|125011.0|125012.0|125021.0|125056.0|125076.0|125115.0|125157.0|125158.0|125165.0|125167.0|125219.0|125224.0|125235.0|125255.0|125258.0|125271.0|125287.0|125293.0|125321.0|125345.0|125356.0|125379.0|125442.0|125528.0|125536.0|125540.0|125550.0|125567.0|125581.0|125604.0|125659.0|125662.0|125701.0|125763.0|125778.0|125808.0|125814.0|125875.0|125878.0|125915.0|125920.0|125929.0|125935.0|125940.0|125944.0|125983.0|126025.0|126066.0|126199.0|126238.0|126250.0|126278.0|126329.0|126342.0|126344.0|126352.0|126369.0|126383.0|126447.0|126452.0|126470.0|126510.0|126523.0|126552.0|126559.0|126563.0|126571.0|126574.0|126616.0|126622.0|126629.0|126631.0|126633.0|126635.0|126659.0|126662.0|126667.0|126671.0|126672.0|126700.0|126720.0|126739.0|126764.0|126766.0|126773.0|126775.0|126847.0|126874.0|126882.0|126935.0|126955.0|126971.0|126975.0|126977.0|126989.0|126990.0|127049.0|127063.0|127075.0|127076.0|127185.0|127198.0|127204.0|127226.0|127278.0|127286.0|127298.0|127333.0|127379.0|127385.0|127409.0|127425.0|127460.0|127484.0|127487.0|127495.0|127502.0|127525.0|127554.0|127581.0|127582.0|127590.0|127603.0|127605.0|127607.0|127694.0|127723.0|127744.0|127751.0|127754.0|127772.0|127783.0|127818.0|127819.0|127828.0|127848.0|127859.0|127861.0|127864.0|127869.0|127871.0|127901.0|127912.0|127924.0|127928.0|127942.0|127952.0|127956.0|127983.0|127985.0|128024.0|128026.0|128034.0|128036.0|128062.0|128086.0|128106.0|128127.0|128155.0|128170.0|128209.0|128211.0|128230.0|128253.0|128268.0|128271.0|128287.0|128288.0|128303.0|128313.0|128331.0|128345.0|128357.0|128367.0|128373.0|128385.0|128389.0|128398.0|128416.0|128483.0|128492.0|128493.0|128518.0|128530.0|128538.0|128551.0|128557.0|128576.0|128588.0|128597.0|128599.0|128600.0|128622.0|128630.0|128684.0|128725.0|128738.0|128757.0|128768.0|128785.0|128793.0|128832.0|128835.0|128854.0|128867.0|128870.0|128921.0|128949.0|128952.0|128975.0|128978.0|128996.0|129008.0|129017.0|129029.0|129035.0|129045.0|129050.0|129076.0|129097.0|129109.0|129114.0|129136.0|129141.0|129159.0|129189.0|129198.0|129205.0|129235.0|129248.0|129249.0|129276.0|129300.0|129319.0|129321.0|129324.0|129332.0|129339.0|129347.0|129349.0|129350.0|129351.0|129369.0|129378.0|129389.0|129400.0|129440.0|129447.0|129468.0|129495.0|129500.0|129501.0|129505.0|129516.0|129544.0|129559.0|129571.0|129602.0|129611.0|129622.0|129635.0|129653.0|129654.0|129658.0|129667.0|129673.0|129695.0|129703.0|129705.0|129711.0|129732.0|129733.0|129737.0|129743.0|129753.0|129756.0|129780.0|129786.0|129788.0|129802.0|129819.0|129822.0|129824.0|129840.0|129854.0|129873.0|129885.0|129887.0|129905.0|129990.0|129994.0|129996.0|130006.0|130033.0|130042.0|130044.0|130048.0|130066.0|130088.0|130099.0|130102.0|130107.0|130118.0|130166.0|130169.0|130196.0|130197.0|130198.0|130210.0|130242.0|130272.0|130309.0|130314.0|130316.0|130327.0|130349.0|130355.0|130371.0|130410.0|130424.0|130445.0|130479.0|130488.0|130521.0|130532.0|130550.0|130582.0|130584.0|130634.0|130639.0|130642.0|130644.0|130672.0|130692.0|130703.0|130713.0|130746.0|130753.0|130769.0|130778.0|130782.0|130788.0|130789.0|130795.0|130800.0|130814.0|130823.0|130824.0|130844.0|130845.0|130862.0|130876.0|130899.0|130915.0|130930.0|130953.0|130961.0|131005.0|131045.0|131046.0|131061.0|131068.0|131077.0|131108.0|131117.0|131127.0|131144.0|131149.0|131169.0|131170.0|131191.0|131193.0|131201.0|131218.0|131248.0|131283.0|131299.0|131319.0|131349.0|131359.0|131369.0|131370.0|131390.0|131407.0|131420.0|131425.0|131440.0|131471.0|131497.0|131505.0|131510.0|131536.0|131601.0|131605.0|131612.0|131613.0|131614.0|131652.0|131709.0|131712.0|131717.0|131721.0|131723.0|131817.0|131820.0|131888.0|131922.0|131927.0|131983.0|132034.0|132037.0|132088.0|132108.0|132117.0|132121.0|132129.0|132142.0|132247.0|132249.0|132250.0|132260.0|132329.0|132354.0|132357.0|132363.0|132410.0|132438.0|132450.0|132464.0|132470.0|132645.0|132652.0|132667.0|132669.0|132678.0|132682.0|132733.0|132790.0|132880.0|132893.0|132898.0|132920.0|132935.0|133006.0|133092.0|133099.0|133107.0|133119.0|133137.0|133211.0|133215.0|133238.0|133241.0|133302.0|133330.0|133339.0|133367.0|133460.0|133462.0|133511.0|133535.0|133583.0|133619.0|133624.0|133640.0|133644.0|133703.0|133713.0|133743.0|133751.0|133762.0|133779.0|133784.0|133830.0|133844.0|133859.0|133870.0|133885.0|133956.0|133967.0|133978.0|133986.0|134040.0|134046.0|134088.0|134145.0|134172.0|134181.0|134182.0|134192.0|134194.0|134219.0|134235.0|134252.0|134288.0|134289.0|134411.0|134450.0|134502.0|134551.0|134604.0|134611.0|134707.0|134713.0|134718.0|134729.0|134811.0|134825.0|134854.0|134950.0|135017.0|135029.0|135040.0|135056.0|135059.0|135064.0|135095.0|135120.0|135211.0|135255.0|135258.0|135276.0|135306.0|135326.0|135359.0|135383.0|135411.0|135523.0|135566.0|135636.0|135662.0|135763.0|135844.0|135864.0|135938.0|136060.0|136113.0|136139.0|136150.0|136152.0|136193.0|136247.0|136254.0|136255.0|136269.0|136328.0|136370.0|136380.0|136389.0|136461.0|136466.0|136564.0|136668.0|136734.0|136788.0|136822.0|136865.0|136875.0|136888.0|136976.0|136977.0|137037.0|137080.0|137183.0|137257.0|137294.0|137327.0|137389.0|137402.0|137632.0|137674.0|137683.0|137760.0|138048.0|138154.0|138157.0|138188.0|138289.0|138301.0|138420.0|138491.0|138524.0|138834.0|138844.0|139033.0|139111.0|139165.0|139208.0|139218.0|139246.0|139273.0|139345.0|139349.0|139548.0|139596.0|139602.0|139762.0|139817.0|139976.0|139978.0|140246.0|140263.0|140277.0|140357.0|140407.0|140586.0|140678.0|140785.0 -in.representative_income metadata_and_annual usd float 141001.0|141051.0|141106.0|141269.0|141309.0|141317.0|141319.0|141420.0|141706.0|141824.0|141866.0|142103.0|142127.0|142318.0|142340.0|142371.0|142426.0|142430.0|142478.0|142479.0|142554.0|142557.0|142583.0|142650.0|142661.0|142683.0|142753.0|142769.0|142823.0|142936.0|142959.0|143110.0|143121.0|143138.0|143166.0|143198.0|143371.0|143378.0|143426.0|143434.0|143441.0|143486.0|143578.0|143585.0|143628.0|143637.0|143785.0|143811.0|143845.0|143849.0|143887.0|143907.0|143919.0|143954.0|143990.0|144047.0|144059.0|144077.0|144102.0|144164.0|144197.0|144249.0|144270.0|144271.0|144302.0|144350.0|144379.0|144404.0|144451.0|144458.0|144481.0|144506.0|144507.0|144549.0|144587.0|144653.0|144675.0|144713.0|144783.0|144797.0|144805.0|144891.0|144915.0|144919.0|144956.0|144971.0|144987.0|144999.0|145009.0|145022.0|145065.0|145096.0|145114.0|145158.0|145188.0|145240.0|145259.0|145289.0|145345.0|145360.0|145378.0|145430.0|145432.0|145435.0|145452.0|145453.0|145455.0|145481.0|145535.0|145547.0|145562.0|145641.0|145647.0|145667.0|145693.0|145744.0|145747.0|145796.0|145847.0|145852.0|145917.0|145989.0|146011.0|146063.0|146096.0|146156.0|146168.0|146188.0|146204.0|146246.0|146260.0|146269.0|146274.0|146296.0|146380.0|146404.0|146419.0|146441.0|146487.0|146512.0|146528.0|146558.0|146570.0|146633.0|146672.0|146673.0|146675.0|146676.0|146687.0|146693.0|146740.0|146749.0|146774.0|146801.0|146835.0|146875.0|146879.0|146944.0|146952.0|146955.0|146981.0|146982.0|147077.0|147106.0|147116.0|147118.0|147277.0|147279.0|147288.0|147322.0|147328.0|147330.0|147380.0|147385.0|147433.0|147481.0|147484.0|147501.0|147528.0|147540.0|147577.0|147600.0|147633.0|147656.0|147666.0|147676.0|147683.0|147697.0|147700.0|147706.0|147716.0|147792.0|147807.0|147819.0|147834.0|147856.0|147890.0|147891.0|147909.0|147910.0|147917.0|147932.0|147982.0|147986.0|148013.0|148029.0|148035.0|148057.0|148075.0|148078.0|148099.0|148117.0|148133.0|148136.0|148141.0|148176.0|148179.0|148191.0|148200.0|148220.0|148225.0|148267.0|148289.0|148309.0|148322.0|148330.0|148390.0|148420.0|148426.0|148456.0|148457.0|148458.0|148479.0|148488.0|148529.0|148542.0|148545.0|148561.0|148581.0|148587.0|148615.0|148628.0|148632.0|148640.0|148653.0|148736.0|148759.0|148773.0|148780.0|148781.0|148784.0|148794.0|148846.0|148868.0|148887.0|148889.0|148895.0|148910.0|148952.0|148995.0|148996.0|148997.0|149016.0|149026.0|149045.0|149068.0|149102.0|149107.0|149142.0|149191.0|149210.0|149211.0|149213.0|149251.0|149269.0|149299.0|149303.0|149321.0|149333.0|149343.0|149354.0|149371.0|149374.0|149420.0|149424.0|149429.0|149434.0|149457.0|149499.0|149512.0|149526.0|149531.0|149537.0|149543.0|149560.0|149569.0|149602.0|149612.0|149615.0|149645.0|149649.0|149693.0|149703.0|149734.0|149753.0|149767.0|149775.0|149805.0|149812.0|149818.0|149839.0|149854.0|149859.0|149861.0|149865.0|149870.0|149871.0|149894.0|149922.0|149932.0|149933.0|149956.0|149960.0|149969.0|149973.0|149986.0|149993.0|150018.0|150020.0|150076.0|150186.0|150209.0|150219.0|150231.0|150251.0|150261.0|150269.0|150281.0|150283.0|150294.0|150326.0|150386.0|150434.0|150436.0|150458.0|150466.0|150489.0|150492.0|150499.0|150508.0|150605.0|150652.0|150659.0|150663.0|150695.0|150704.0|150712.0|150725.0|150726.0|150747.0|150764.0|150798.0|150809.0|150815.0|150830.0|150851.0|150852.0|150902.0|150916.0|150927.0|150942.0|151004.0|151017.0|151034.0|151036.0|151107.0|151118.0|151219.0|151269.0|151311.0|151320.0|151336.0|151356.0|151421.0|151428.0|151461.0|151464.0|151473.0|151542.0|151547.0|151587.0|151589.0|151590.0|151652.0|151657.0|151673.0|151678.0|151693.0|151726.0|151758.0|151830.0|151863.0|151875.0|151893.0|151916.0|151926.0|151933.0|152001.0|152017.0|152022.0|152027.0|152108.0|152128.0|152139.0|152238.0|152242.0|152249.0|152259.0|152285.0|152345.0|152346.0|152383.0|152390.0|152410.0|152430.0|152431.0|152440.0|152494.0|152530.0|152536.0|152537.0|152539.0|152540.0|152563.0|152580.0|152602.0|152654.0|152706.0|152707.0|152734.0|152751.0|152758.0|152841.0|152859.0|152886.0|152918.0|152928.0|152985.0|153023.0|153068.0|153087.0|153102.0|153168.0|153171.0|153178.0|153182.0|153210.0|153325.0|153340.0|153364.0|153371.0|153396.0|153406.0|153427.0|153441.0|153445.0|153480.0|153497.0|153503.0|153504.0|153509.0|153540.0|153551.0|153583.0|153643.0|153656.0|153686.0|153691.0|153751.0|153867.0|153892.0|153967.0|153973.0|153983.0|154040.0|154047.0|154078.0|154097.0|154128.0|154147.0|154148.0|154183.0|154236.0|154305.0|154313.0|154350.0|154451.0|154508.0|154511.0|154605.0|154718.0|154738.0|154813.0|154816.0|154820.0|154924.0|155027.0|155080.0|155113.0|155130.0|155213.0|155217.0|155339.0|155371.0|155436.0|155554.0|155562.0|155587.0|155663.0|155749.0|155764.0|155865.0|155955.0|155976.0|156113.0|156368.0|156370.0|156560.0|156609.0|156832.0|156876.0|156884.0|156938.0|156977.0|157064.0|157153.0|157262.0|157533.0|157812.0|157856.0|157875.0|157904.0|158088.0|158181.0|158212.0|158391.0|158507.0|158830.0|158843.0|158924.0|159140.0|159209.0|159245.0|159351.0|159369.0|159514.0|159585.0|159603.0|159875.0|159910.0|159944.0|160081.0|160125.0|160233.0|160300.0|160512.0|160597.0|160613.0|160906.0|160910.0|160990.0|161031.0|161038.0|161113.0|161219.0|161319.0|161339.0|161422.0|161530.0|161566.0|161671.0|161724.0|161732.0|161871.0|161882.0|161938.0|162071.0|162075.0|162091.0|162103.0|162128.0|162305.0|162416.0|162437.0|162514.0|162620.0|162633.0|162734.0|162936.0|162949.0|163037.0|163043.0|163147.0|163151.0|163259.0|163379.0|163441.0|163464.0|163485.0|163542.0|163588.0|163701.0|163799.0|163846.0|163885.0|163898.0|163947.0|163980.0|163992.0|163995.0|164015.0|164048.0|164123.0|164202.0|164231.0|164250.0|164307.0|164351.0|164448.0|164452.0|164518.0|164553.0|164556.0|164664.0|164667.0|164755.0|164761.0|164804.0|164826.0|164856.0|164882.0|164940.0|164989.0|165046.0|165054.0|165058.0|165095.0|165096.0|165099.0|165151.0|165179.0|165204.0|165238.0|165312.0|165329.0|165362.0|165366.0|165373.0|165420.0|165462.0|165528.0|165573.0|165582.0|165633.0|165651.0|165664.0|165704.0|165714.0|165765.0|165784.0|165857.0|165890.0|165955.0|165960.0|165967.0|166068.0|166069.0|166078.0|166090.0|166100.0|166169.0|166170.0|166176.0|166270.0|166271.0|166281.0|166284.0|166360.0|166373.0|166385.0|166392.0|166411.0|166416.0|166427.0|166438.0|166472.0|166573.0|166597.0|166628.0|166673.0|166674.0|166703.0|166714.0|166723.0|166775.0|166839.0|166846.0|166900.0|166944.0|166975.0|166992.0|167041.0|167049.0|167095.0|167136.0|167137.0|167165.0|167243.0|167261.0|167280.0|167302.0|167364.0|167366.0|167381.0|167471.0|167507.0|167534.0|167682.0|167689.0|167700.0|167714.0|167756.0|167785.0|167788.0|167797.0|167825.0|167846.0|167886.0|167887.0|167893.0|167905.0|167927.0|167984.0|167987.0|167995.0|168005.0|168013.0|168023.0|168067.0|168070.0|168075.0|168088.0|168107.0|168126.0|168148.0|168189.0|168205.0|168209.0|168210.0|168229.0|168283.0|168317.0|168333.0|168338.0|168421.0|168424.0|168437.0|168492.0|168508.0|168526.0|168531.0|168575.0|168632.0|168634.0|168642.0|168661.0|168692.0|168745.0|168746.0|168757.0|168758.0|168790.0|168854.0|168877.0|168896.0|168947.0|168952.0|168969.0|169054.0|169064.0|169088.0|169098.0|169108.0|169158.0|169159.0|169176.0|169190.0|169202.0|169250.0|169261.0|169264.0|169282.0|169283.0|169310.0|169321.0|169342.0|169351.0|169364.0|169380.0|169401.0|169418.0|169423.0|169468.0|169475.0|169497.0|169518.0|169526.0|169538.0|169543.0|169580.0|169605.0|169634.0|169654.0|169659.0|169673.0|169704.0|169712.0|169742.0|169765.0|169777.0|169792.0|169802.0|169805.0|169820.0|169833.0|169839.0|169849.0|169862.0|169884.0|169958.0|169981.0|169984.0|170002.0|170048.0|170067.0|170087.0|170120.0|170138.0|170189.0|170209.0|170230.0|170249.0|170254.0|170310.0|170346.0|170356.0|170361.0|170365.0|170390.0|170396.0|170425.0|170427.0|170453.0|170464.0|170495.0|170499.0|170512.0|170530.0|170572.0|170613.0|170678.0|170715.0|170726.0|170740.0|170758.0|170772.0|170786.0|170808.0|170818.0|170823.0|170868.0|170893.0|170899.0|170911.0|170950.0|170952.0|171001.0|171004.0|171015.0|171018.0|171038.0|171084.0|171089.0|171108.0|171118.0|171119.0|171215.0|171220.0|171222.0|171232.0|171321.0|171322.0|171330.0|171362.0|171478.0|171486.0|171531.0|171624.0|171687.0|171725.0|171737.0|171751.0|171755.0|171775.0|171795.0|171827.0|171839.0|171859.0|171901.0|171924.0|171943.0|171966.0|171995.0|172028.0|172038.0|172135.0|172139.0|172182.0|172226.0|172260.0|172270.0|172288.0|172323.0|172331.0|172335.0|172407.0|172443.0|172503.0|172533.0|172551.0|172562.0|172604.0|172639.0|172718.0|172735.0|172745.0|172767.0|172821.0|172826.0|172847.0|172872.0|172929.0|172937.0|172987.0|173040.0|173068.0|173077.0|173080.0|173139.0|173181.0|173284.0|173311.0|173341.0|173362.0|173377.0|173388.0|173415.0|173469.0|173483.0|173490.0|173525.0|173588.0|173593.0|173631.0|173694.0|173745.0|173799.0|173846.0|173899.0|173903.0|174005.0|174009.0|174017.0|174027.0|174048.0|174064.0|174086.0|174109.0|174147.0|174149.0|174221.0|174250.0|174280.0|174316.0|174326.0|174351.0|174398.0|174542.0|174553.0|174650.0 -in.representative_income metadata_and_annual usd float 174728.0|174831.0|174854.0|174957.0|174972.0|175024.0|175036.0|175038.0|175064.0|175275.0|175294.0|175347.0|175378.0|175423.0|175466.0|175592.0|175634.0|175685.0|175765.0|175908.0|175941.0|175966.0|175981.0|176116.0|176248.0|176330.0|176361.0|176378.0|176472.0|176573.0|176657.0|176775.0|177197.0|177280.0|177305.0|177377.0|177385.0|177413.0|177583.0|177786.0|177806.0|177846.0|177925.0|178029.0|178190.0|178193.0|178228.0|178277.0|178648.0|178796.0|178966.0|179266.0|179283.0|179358.0|179452.0|179473.0|179574.0|179599.0|179695.0|179728.0|179806.0|179811.0|179886.0|180091.0|180236.0|180337.0|180505.0|180876.0|181174.0|181267.0|181392.0|181413.0|181519.0|181536.0|181603.0|181624.0|181681.0|181951.0|182155.0|182383.0|182447.0|182486.0|182533.0|182567.0|182600.0|182701.0|182735.0|182773.0|183008.0|183023.0|183032.0|183083.0|183185.0|183238.0|183345.0|183543.0|183572.0|183591.0|183599.0|183671.0|183991.0|184048.0|184134.0|184271.0|184328.0|184345.0|184351.0|184364.0|184452.0|184544.0|184566.0|184587.0|184630.0|184633.0|184661.0|184740.0|184857.0|184880.0|184940.0|184958.0|185030.0|185063.0|185074.0|185193.0|185247.0|185261.0|185277.0|185294.0|185352.0|185362.0|185385.0|185409.0|185421.0|185439.0|185505.0|185507.0|185713.0|185744.0|185863.0|185878.0|185968.0|186032.0|186069.0|186074.0|186170.0|186177.0|186244.0|186280.0|186291.0|186349.0|186381.0|186412.0|186487.0|186489.0|186587.0|186590.0|186608.0|186665.0|186675.0|186776.0|186796.0|186810.0|186876.0|186877.0|186887.0|186921.0|186975.0|186978.0|186982.0|186995.0|187003.0|187192.0|187208.0|187297.0|187382.0|187404.0|187415.0|187424.0|187462.0|187517.0|187518.0|187584.0|187639.0|187678.0|187685.0|187773.0|187786.0|187787.0|187854.0|187865.0|187868.0|187887.0|187907.0|187930.0|187950.0|187961.0|187983.0|187988.0|188001.0|188034.0|nan|1.0|10.0|31.0|32.0|61.0|62.0|64.0|71.0|72.0|74.0|82.0|86.0|91.0|95.0|105.0|121.0|126.0|129.0|134.0|138.0|141.0|145.0|151.0|155.0|169.0|171.0|173.0|179.0|183.0|185.0|192.0|194.0|200.0|204.0|205.0|207.0|211.0|212.0|222.0|225.0|236.0|242.0|243.0|247.0|253.0|258.0|259.0|263.0|264.0|270.0|279.0|283.0|289.0|290.0|293.0|299.0|300.0|311.0|320.0|330.0|333.0|343.0|344.0|345.0|348.0|351.0|356.0|369.0|374.0|379.0|382.0|402.0|406.0|411.0|418.0|422.0|424.0|429.0|433.0|434.0|443.0|444.0|450.0|454.0|455.0|465.0|473.0|474.0|487.0|495.0|505.0|506.0|507.0|519.0|526.0|532.0|541.0|545.0|551.0|557.0|558.0|562.0|574.0|579.0|590.0|591.0|595.0|596.0|605.0|616.0|624.0|626.0|633.0|643.0|644.0|646.0|654.0|657.0|659.0|677.0|681.0|686.0|687.0|691.0|692.0|696.0|701.0|702.0|712.0|717.0|724.0|729.0|759.0|773.0|774.0|781.0|789.0|794.0|800.0|804.0|805.0|808.0|816.0|818.0|826.0|833.0|838.0|853.0|856.0|865.0|876.0|879.0|881.0|886.0|897.0|899.0|902.0|907.0|919.0|923.0|928.0|929.0|934.0|938.0|949.0|950.0|951.0|955.0|959.0|970.0|980.0|981.0|990.0|991.0|994.0|1000.0|1002.0|1009.0|1010.0|1011.0|1015.0|1016.0|1021.0|1026.0|1041.0|1052.0|1059.0|1065.0|1071.0|1083.0|1091.0|1092.0|1095.0|1105.0|1106.0|1112.0|1116.0|1121.0|1125.0|1127.0|1141.0|1150.0|1160.0|1166.0|1170.0|1171.0|1177.0|1202.0|1222.0|1238.0|1244.0|1248.0|1253.0|1265.0|1279.0|1319.0|1329.0|1330.0|1331.0|1362.0|1364.0|1371.0|1372.0|1381.0|1392.0|1396.0|1407.0|1423.0|1434.0|1445.0|1455.0|1460.0|1465.0|1481.0|1495.0|1509.0|1510.0|1515.0|1517.0|1519.0|1524.0|1534.0|1535.0|1540.0|1546.0|1549.0|1561.0|1567.0|1568.0|1581.0|1587.0|1609.0|1614.0|1622.0|1626.0|1647.0|1650.0|1653.0|1671.0|1677.0|1682.0|1685.0|1688.0|1696.0|1697.0|1702.0|1717.0|1732.0|1737.0|1739.0|1740.0|1772.0|1778.0|1783.0|1784.0|1793.0|1805.0|1814.0|1815.0|1825.0|1835.0|1845.0|1858.0|1887.0|1890.0|1893.0|1919.0|1929.0|1937.0|1944.0|1970.0|1975.0|1977.0|1981.0|1986.0|1991.0|2000.0|2004.0|2021.0|2022.0|2024.0|2036.0|2039.0|2046.0|2053.0|2058.0|2072.0|2073.0|2076.0|2088.0|2098.0|2104.0|2106.0|2121.0|2129.0|2131.0|2140.0|2147.0|2148.0|2151.0|2156.0|2159.0|2161.0|2162.0|2166.0|2179.0|2189.0|2193.0|2204.0|2222.0|2226.0|2228.0|2233.0|2238.0|2243.0|2246.0|2257.0|2259.0|2260.0|2273.0|2276.0|2279.0|2285.0|2288.0|2308.0|2321.0|2331.0|2334.0|2341.0|2342.0|2353.0|2354.0|2355.0|2366.0|2374.0|2377.0|2384.0|2394.0|2399.0|2403.0|2405.0|2408.0|2414.0|2415.0|2420.0|2426.0|2431.0|2442.0|2455.0|2457.0|2475.0|2491.0|2503.0|2505.0|2515.0|2517.0|2525.0|2527.0|2538.0|2539.0|2550.0|2558.0|2571.0|2584.0|2586.0|2587.0|2593.0|2594.0|2598.0|2606.0|2609.0|2630.0|2640.0|2642.0|2651.0|2661.0|2689.0|2694.0|2700.0|2703.0|2707.0|2712.0|2715.0|2729.0|2748.0|2755.0|2756.0|2770.0|2775.0|2785.0|2788.0|2791.0|2808.0|2810.0|2815.0|2816.0|2820.0|2828.0|2836.0|2837.0|2842.0|2844.0|2858.0|2864.0|2888.0|2918.0|2939.0|2960.0|2966.0|2973.0|2979.0|2993.0|2996.0|3010.0|3012.0|3015.0|3016.0|3017.0|3022.0|3025.0|3027.0|3030.0|3032.0|3045.0|3047.0|3051.0|3059.0|3070.0|3094.0|3100.0|3113.0|3125.0|3133.0|3135.0|3153.0|3164.0|3179.0|3185.0|3197.0|3198.0|3199.0|3217.0|3220.0|3227.0|3232.0|3237.0|3241.0|3243.0|3248.0|3263.0|3269.0|3273.0|3274.0|3291.0|3301.0|3306.0|3317.0|3321.0|3322.0|3328.0|3333.0|3352.0|3360.0|3363.0|3365.0|3371.0|3372.0|3385.0|3391.0|3392.0|3394.0|3395.0|3403.0|3404.0|3427.0|3446.0|3448.0|3454.0|3455.0|3456.0|3465.0|3467.0|3478.0|3491.0|3496.0|3499.0|3506.0|3510.0|3512.0|3517.0|3533.0|3546.0|3548.0|3552.0|3559.0|3564.0|3566.0|3575.0|3583.0|3588.0|3589.0|3596.0|3607.0|3609.0|3610.0|3628.0|3631.0|3637.0|3638.0|3657.0|3659.0|3661.0|3667.0|3674.0|3675.0|3689.0|3696.0|3703.0|3704.0|3717.0|3723.0|3728.0|3735.0|3739.0|3743.0|3746.0|3749.0|3757.0|3760.0|3771.0|3786.0|3790.0|3793.0|3796.0|3803.0|3808.0|3811.0|3817.0|3822.0|3838.0|3839.0|3850.0|3858.0|3860.0|3864.0|3878.0|3879.0|3888.0|3890.0|3902.0|3910.0|3922.0|3950.0|3951.0|3952.0|3954.0|3955.0|3970.0|3971.0|3983.0|3984.0|3998.0|4004.0|4007.0|4011.0|4018.0|4019.0|4025.0|4034.0|4046.0|4052.0|4058.0|4062.0|4069.0|4071.0|4075.0|4079.0|4084.0|4085.0|4094.0|4101.0|4105.0|4106.0|4113.0|4121.0|4124.0|4147.0|4152.0|4157.0|4167.0|4175.0|4177.0|4182.0|4188.0|4192.0|4197.0|4198.0|4214.0|4217.0|4224.0|4229.0|4235.0|4243.0|4246.0|4247.0|4260.0|4267.0|4272.0|4290.0|4295.0|4313.0|4314.0|4315.0|4321.0|4324.0|4337.0|4344.0|4348.0|4357.0|4366.0|4374.0|4376.0|4388.0|4401.0|4414.0|4419.0|4422.0|4424.0|4430.0|4435.0|4440.0|4444.0|4450.0|4461.0|4473.0|4475.0|4476.0|4477.0|4503.0|4506.0|4509.0|4517.0|4519.0|4523.0|4535.0|4536.0|4539.0|4551.0|4576.0|4579.0|4582.0|4585.0|4591.0|4594.0|4600.0|4637.0|4642.0|4646.0|4667.0|4672.0|4679.0|4680.0|4683.0|4691.0|4693.0|4697.0|4701.0|4708.0|4724.0|4743.0|4744.0|4746.0|4755.0|4757.0|4776.0|4777.0|4786.0|4788.0|4796.0|4809.0|4819.0|4830.0|4838.0|4840.0|4841.0|4848.0|4849.0|4850.0|4858.0|4859.0|4872.0|4880.0|4883.0|4884.0|4889.0|4893.0|4916.0|4938.0|4940.0|4946.0|4950.0|4952.0|4957.0|4981.0|4982.0|4992.0|5010.0|5013.0|5024.0|5033.0|5045.0|5054.0|5062.0|5067.0|5071.0|5078.0|5091.0|5105.0|5111.0|5115.0|5119.0|5121.0|5131.0|5147.0|5153.0|5154.0|5167.0|5170.0|5178.0|5191.0|5202.0|5203.0|5216.0|5231.0|5241.0|5243.0|5245.0|5260.0|5262.0|5263.0|5271.0|5273.0|5282.0|5283.0|5293.0|5304.0|5307.0|5315.0|5318.0|5322.0|5344.0|5365.0|5368.0|5372.0|5378.0|5379.0|5381.0|5384.0|5392.0|5400.0|5403.0|5410.0|5421.0|5424.0|5429.0|5435.0|5446.0|5462.0|5464.0|5467.0|5474.0|5485.0|5495.0|5518.0|5521.0|5528.0|5543.0|5547.0|5550.0 -in.representative_income metadata_and_annual usd float 5556.0|5564.0|5576.0|5578.0|5580.0|5582.0|5588.0|5590.0|5593.0|5597.0|5603.0|5608.0|5610.0|5625.0|5627.0|5629.0|5637.0|5647.0|5667.0|5673.0|5683.0|5689.0|5694.0|5697.0|5699.0|5707.0|5711.0|5726.0|5732.0|5746.0|5755.0|5778.0|5791.0|5797.0|5800.0|5804.0|5806.0|5807.0|5808.0|5811.0|5813.0|5821.0|5829.0|5832.0|5838.0|5840.0|5849.0|5853.0|5872.0|5906.0|5909.0|5921.0|5931.0|5941.0|5951.0|5952.0|5958.0|5959.0|5968.0|5969.0|5979.0|5980.0|5989.0|5997.0|6008.0|6010.0|6011.0|6012.0|6022.0|6032.0|6037.0|6055.0|6057.0|6061.0|6062.0|6063.0|6065.0|6073.0|6081.0|6085.0|6087.0|6091.0|6105.0|6106.0|6116.0|6117.0|6119.0|6121.0|6148.0|6160.0|6162.0|6167.0|6202.0|6213.0|6219.0|6222.0|6224.0|6226.0|6243.0|6261.0|6267.0|6273.0|6278.0|6286.0|6293.0|6305.0|6313.0|6323.0|6336.0|6342.0|6348.0|6355.0|6359.0|6364.0|6369.0|6381.0|6394.0|6398.0|6406.0|6407.0|6429.0|6435.0|6441.0|6443.0|6447.0|6456.0|6459.0|6462.0|6469.0|6480.0|6483.0|6484.0|6486.0|6491.0|6498.0|6507.0|6515.0|6517.0|6535.0|6536.0|6540.0|6546.0|6548.0|6549.0|6550.0|6556.0|6561.0|6566.0|6569.0|6606.0|6611.0|6612.0|6616.0|6623.0|6645.0|6653.0|6655.0|6665.0|6677.0|6687.0|6698.0|6707.0|6709.0|6717.0|6719.0|6720.0|6737.0|6739.0|6741.0|6760.0|6763.0|6777.0|6787.0|6807.0|6808.0|6818.0|6824.0|6828.0|6829.0|6838.0|6849.0|6855.0|6861.0|6886.0|6910.0|6919.0|6937.0|6940.0|6959.0|6960.0|6962.0|6994.0|7002.0|7012.0|7014.0|7018.0|7023.0|7024.0|7028.0|7031.0|7035.0|7041.0|7045.0|7055.0|7063.0|7081.0|7087.0|7094.0|7110.0|7128.0|7132.0|7142.0|7148.0|7150.0|7160.0|7161.0|7169.0|7171.0|7172.0|7174.0|7179.0|7181.0|7185.0|7192.0|7196.0|7202.0|7203.0|7212.0|7223.0|7230.0|7235.0|7239.0|7246.0|7255.0|7262.0|7268.0|7277.0|7299.0|7310.0|7331.0|7336.0|7350.0|7351.0|7369.0|7379.0|7394.0|7416.0|7428.0|7433.0|7435.0|7444.0|7446.0|7450.0|7459.0|7467.0|7471.0|7475.0|7477.0|7478.0|7498.0|7504.0|7507.0|7516.0|7519.0|7536.0|7539.0|7540.0|7547.0|7551.0|7561.0|7562.0|7564.0|7572.0|7576.0|7581.0|7585.0|7589.0|7624.0|7632.0|7657.0|7665.0|7668.0|7677.0|7688.0|7705.0|7729.0|7731.0|7736.0|7741.0|7783.0|7788.0|7790.0|7804.0|7836.0|7849.0|7857.0|7868.0|7869.0|7888.0|7889.0|7891.0|7910.0|7931.0|7943.0|7950.0|7976.0|7985.0|7990.0|7993.0|7995.0|8028.0|8029.0|8031.0|8039.0|8041.0|8055.0|8062.0|8066.0|8076.0|8100.0|8101.0|8103.0|8105.0|8110.0|8121.0|8138.0|8152.0|8169.0|8211.0|8219.0|8223.0|8226.0|8247.0|8253.0|8265.0|8283.0|8287.0|8289.0|8303.0|8310.0|8318.0|8320.0|8355.0|8375.0|8384.0|8394.0|8399.0|8404.0|8426.0|8428.0|8432.0|8451.0|8457.0|8458.0|8469.0|8479.0|8480.0|8482.0|8485.0|8487.0|8489.0|8491.0|8497.0|8500.0|8505.0|8521.0|8525.0|8531.0|8556.0|8558.0|8561.0|8567.0|8588.0|8606.0|8616.0|8617.0|8645.0|8673.0|8687.0|8706.0|8711.0|8728.0|8748.0|8753.0|8758.0|8767.0|8770.0|8791.0|8798.0|8806.0|8829.0|8849.0|8856.0|8860.0|8868.0|8880.0|8889.0|8890.0|8914.0|8915.0|8922.0|8931.0|8932.0|8963.0|8980.0|8990.0|8996.0|9017.0|9030.0|9038.0|9051.0|9054.0|9056.0|9071.0|9076.0|9080.0|9086.0|9108.0|9119.0|9132.0|9142.0|9145.0|9154.0|9157.0|9163.0|9180.0|9185.0|9186.0|9189.0|9196.0|9206.0|9213.0|9232.0|9256.0|9275.0|9283.0|9285.0|9292.0|9333.0|9335.0|9366.0|9376.0|9394.0|9448.0|9450.0|9457.0|9468.0|9481.0|9490.0|9491.0|9495.0|9508.0|9510.0|9512.0|9523.0|9541.0|9545.0|9551.0|9617.0|9618.0|9629.0|9640.0|9647.0|9661.0|9681.0|9695.0|9697.0|9737.0|9747.0|9755.0|9766.0|9769.0|9771.0|9799.0|9809.0|9810.0|9819.0|9849.0|9853.0|9879.0|9902.0|9903.0|9930.0|9934.0|9940.0|9945.0|9950.0|9954.0|9972.0|9983.0|9998.0|10000.0|10004.0|10037.0|10038.0|10049.0|10080.0|10081.0|10101.0|10112.0|10114.0|10119.0|10122.0|10124.0|10132.0|10135.0|10144.0|10154.0|10166.0|10202.0|10221.0|10251.0|10265.0|10273.0|10283.0|10303.0|10334.0|10335.0|10336.0|10346.0|10351.0|10359.0|10366.0|10369.0|10392.0|10394.0|10426.0|10448.0|10451.0|10456.0|10459.0|10469.0|10479.0|10480.0|10481.0|10485.0|10490.0|10491.0|10502.0|10506.0|10509.0|10534.0|10546.0|10555.0|10557.0|10563.0|10569.0|10584.0|10585.0|10590.0|10599.0|10603.0|10606.0|10611.0|10621.0|10628.0|10631.0|10635.0|10636.0|10638.0|10640.0|10642.0|10648.0|10652.0|10659.0|10665.0|10667.0|10675.0|10676.0|10683.0|10695.0|10698.0|10706.0|10708.0|10713.0|10717.0|10718.0|10736.0|10740.0|10757.0|10762.0|10766.0|10767.0|10772.0|10773.0|10778.0|10782.0|10783.0|10792.0|10794.0|10805.0|10809.0|10810.0|10816.0|10819.0|10827.0|10832.0|10837.0|10842.0|10848.0|10851.0|10852.0|10859.0|10863.0|10870.0|10873.0|10874.0|10885.0|10891.0|10892.0|10895.0|10896.0|10900.0|10903.0|10905.0|10915.0|10926.0|10938.0|10940.0|10949.0|10970.0|10980.0|10984.0|10985.0|10989.0|10991.0|10993.0|11006.0|11010.0|11011.0|11021.0|11037.0|11051.0|11056.0|11057.0|11061.0|11062.0|11063.0|11064.0|11067.0|11074.0|11081.0|11084.0|11090.0|11091.0|11098.0|11105.0|11107.0|11111.0|11112.0|11121.0|11126.0|11129.0|11142.0|11150.0|11152.0|11160.0|11169.0|11172.0|11179.0|11183.0|11185.0|11192.0|11194.0|11196.0|11210.0|11212.0|11221.0|11226.0|11231.0|11233.0|11237.0|11250.0|11253.0|11264.0|11283.0|11293.0|11304.0|11308.0|11316.0|11330.0|11331.0|11334.0|11336.0|11348.0|11354.0|11356.0|11358.0|11364.0|11366.0|11368.0|11374.0|11384.0|11387.0|11394.0|11397.0|11405.0|11407.0|11409.0|11415.0|11424.0|11425.0|11429.0|11431.0|11432.0|11443.0|11449.0|11451.0|11453.0|11457.0|11464.0|11465.0|11469.0|11475.0|11485.0|11490.0|11491.0|11495.0|11503.0|11507.0|11511.0|11515.0|11516.0|11518.0|11519.0|11548.0|11551.0|11559.0|11561.0|11562.0|11563.0|11566.0|11571.0|11572.0|11573.0|11590.0|11594.0|11596.0|11600.0|11604.0|11605.0|11615.0|11618.0|11626.0|11628.0|11633.0|11634.0|11656.0|11657.0|11664.0|11666.0|11667.0|11685.0|11695.0|11703.0|11707.0|11713.0|11719.0|11722.0|11727.0|11728.0|11734.0|11744.0|11745.0|11748.0|11755.0|11756.0|11757.0|11759.0|11760.0|11765.0|11769.0|11776.0|11777.0|11778.0|11787.0|11788.0|11790.0|11800.0|11810.0|11812.0|11833.0|11834.0|11835.0|11842.0|11843.0|11846.0|11849.0|11851.0|11854.0|11861.0|11862.0|11872.0|11874.0|11879.0|11885.0|11903.0|11913.0|11918.0|11923.0|11926.0|11930.0|11938.0|11939.0|11944.0|11948.0|11958.0|11959.0|11960.0|11975.0|11981.0|11986.0|11989.0|11990.0|11991.0|11996.0|12004.0|12006.0|12011.0|12015.0|12036.0|12048.0|12061.0|12076.0|12079.0|12081.0|12096.0|12099.0|12101.0|12110.0|12112.0|12120.0|12123.0|12132.0|12133.0|12148.0|12155.0|12160.0|12177.0|12181.0|12184.0|12187.0|12192.0|12202.0|12220.0|12227.0|12230.0|12233.0|12237.0|12246.0|12248.0|12253.0|12255.0|12258.0|12263.0|12264.0|12275.0|12283.0|12314.0|12315.0|12323.0|12324.0|12334.0|12347.0|12355.0|12366.0|12372.0|12374.0|12377.0|12383.0|12387.0|12388.0|12392.0|12393.0|12398.0|12404.0|12408.0|12419.0|12420.0|12429.0|12434.0|12447.0|12452.0|12469.0|12475.0|12480.0|12485.0|12490.0|12497.0|12501.0|12527.0|12529.0|12534.0|12550.0|12552.0|12571.0|12577.0|12584.0|12588.0|12590.0|12592.0|12593.0|12603.0|12618.0|12624.0|12637.0|12645.0|12652.0|12655.0|12657.0|12659.0|12663.0|12676.0|12696.0|12707.0|12717.0|12728.0|12729.0|12739.0|12740.0|12749.0|12753.0|12759.0|12771.0|12784.0|12793.0|12795.0|12800.0|12803.0|12804.0|12814.0|12819.0|12829.0|12833.0|12842.0|12846.0|12855.0|12860.0|12866.0|12881.0|12882.0|12890.0|12892.0|12893.0|12911.0|12913.0|12914.0|12919.0|12923.0|12940.0|12944.0|12950.0|12954.0|12965.0|12966.0|12972.0|12984.0|12987.0|12989.0|12990.0|12993.0|12996.0|12998.0|13001.0|13006.0|13008.0|13010.0|13017.0|13021.0|13025.0|13030.0|13031.0|13032.0|13042.0|13048.0|13054.0|13058.0|13067.0|13071.0|13074.0|13075.0|13077.0|13081.0|13085.0|13091.0|13096.0|13098.0|13112.0|13117.0|13128.0|13132.0|13139.0|13151.0|13152.0|13161.0|13172.0|13174.0|13190.0|13192.0|13204.0 -in.representative_income metadata_and_annual usd float 13215.0|13233.0|13236.0|13247.0|13257.0|13267.0|13268.0|13272.0|13279.0|13288.0|13289.0|13294.0|13296.0|13300.0|13301.0|13304.0|13305.0|13306.0|13309.0|13314.0|13319.0|13331.0|13332.0|13333.0|13334.0|13338.0|13344.0|13354.0|13357.0|13358.0|13359.0|13362.0|13364.0|13366.0|13376.0|13384.0|13395.0|13397.0|13405.0|13407.0|13409.0|13411.0|13414.0|13415.0|13418.0|13419.0|13435.0|13436.0|13439.0|13445.0|13446.0|13450.0|13455.0|13465.0|13475.0|13484.0|13494.0|13499.0|13504.0|13507.0|13512.0|13516.0|13517.0|13521.0|13523.0|13526.0|13531.0|13536.0|13552.0|13567.0|13568.0|13569.0|13570.0|13579.0|13581.0|13592.0|13593.0|13595.0|13607.0|13611.0|13612.0|13625.0|13626.0|13627.0|13634.0|13635.0|13636.0|13643.0|13644.0|13654.0|13657.0|13668.0|13676.0|13688.0|13698.0|13706.0|13714.0|13723.0|13724.0|13729.0|13741.0|13752.0|13758.0|13765.0|13766.0|13773.0|13774.0|13776.0|13779.0|13781.0|13784.0|13800.0|13805.0|13808.0|13815.0|13848.0|13863.0|13873.0|13874.0|13875.0|13879.0|13889.0|13891.0|13892.0|13900.0|13901.0|13904.0|13912.0|13915.0|13917.0|13923.0|13930.0|13942.0|13945.0|13950.0|13952.0|13959.0|13960.0|13962.0|13965.0|13973.0|13974.0|13976.0|13983.0|13984.0|13992.0|13995.0|14001.0|14008.0|14011.0|14021.0|14052.0|14057.0|14071.0|14079.0|14086.0|14089.0|14095.0|14099.0|14100.0|14102.0|14111.0|14121.0|14124.0|14126.0|14132.0|14133.0|14143.0|14152.0|14156.0|14162.0|14182.0|14202.0|14212.0|14223.0|14225.0|14233.0|14241.0|14254.0|14273.0|14300.0|14306.0|14316.0|14324.0|14331.0|14334.0|14337.0|14341.0|14344.0|14364.0|14370.0|14371.0|14388.0|14389.0|14392.0|14399.0|14415.0|14418.0|14428.0|14435.0|14444.0|14451.0|14459.0|14461.0|14492.0|14500.0|14516.0|14546.0|14572.0|14574.0|14575.0|14578.0|14585.0|14586.0|14588.0|14626.0|14636.0|14646.0|14647.0|14652.0|14657.0|14662.0|14668.0|14676.0|14677.0|14695.0|14707.0|14716.0|14728.0|14743.0|14748.0|14760.0|14792.0|14803.0|14814.0|14833.0|14846.0|14861.0|14867.0|14870.0|14911.0|14925.0|14932.0|14950.0|14965.0|14976.0|15028.0|15031.0|15039.0|15049.0|15082.0|15083.0|15090.0|15112.0|15116.0|15125.0|15126.0|15131.0|15146.0|15148.0|15152.0|15170.0|15185.0|15186.0|15200.0|15203.0|15211.0|15213.0|15220.0|15223.0|15238.0|15243.0|15253.0|15265.0|15269.0|15286.0|15287.0|15296.0|15299.0|15302.0|15327.0|15334.0|15354.0|15369.0|15395.0|15397.0|15415.0|15425.0|15429.0|15430.0|15460.0|15480.0|15494.0|15503.0|15506.0|15508.0|15524.0|15543.0|15556.0|15564.0|15576.0|15585.0|15608.0|15615.0|15616.0|15626.0|15637.0|15647.0|15650.0|15653.0|15662.0|15689.0|15694.0|15699.0|15700.0|15714.0|15715.0|15718.0|15719.0|15729.0|15730.0|15732.0|15733.0|15735.0|15739.0|15743.0|15744.0|15759.0|15775.0|15780.0|15799.0|15802.0|15829.0|15833.0|15834.0|15840.0|15853.0|15859.0|15877.0|15883.0|15884.0|15887.0|15888.0|15890.0|15892.0|15900.0|15910.0|15914.0|15921.0|15924.0|15930.0|15936.0|15937.0|15945.0|15948.0|15970.0|15977.0|15988.0|15994.0|16011.0|16012.0|16021.0|16024.0|16027.0|16030.0|16031.0|16034.0|16038.0|16039.0|16040.0|16045.0|16056.0|16061.0|16070.0|16072.0|16091.0|16101.0|16103.0|16106.0|16111.0|16112.0|16119.0|16123.0|16131.0|16132.0|16133.0|16136.0|16145.0|16149.0|16153.0|16162.0|16173.0|16182.0|16183.0|16188.0|16197.0|16200.0|16207.0|16208.0|16213.0|16217.0|16219.0|16220.0|16222.0|16228.0|16231.0|16233.0|16235.0|16240.0|16252.0|16261.0|16262.0|16273.0|16274.0|16276.0|16283.0|16284.0|16293.0|16294.0|16297.0|16302.0|16305.0|16306.0|16307.0|16311.0|16315.0|16317.0|16318.0|16326.0|16330.0|16331.0|16332.0|16338.0|16364.0|16367.0|16370.0|16385.0|16400.0|16401.0|16402.0|16410.0|16413.0|16420.0|16424.0|16426.0|16435.0|16441.0|16442.0|16445.0|16455.0|16462.0|16472.0|16473.0|16477.0|16485.0|16486.0|16487.0|16493.0|16495.0|16497.0|16506.0|16513.0|16520.0|16533.0|16536.0|16537.0|16542.0|16545.0|16566.0|16568.0|16571.0|16584.0|16589.0|16600.0|16601.0|16603.0|16605.0|16610.0|16612.0|16617.0|16625.0|16627.0|16638.0|16639.0|16640.0|16642.0|16644.0|16650.0|16656.0|16657.0|16666.0|16668.0|16670.0|16671.0|16672.0|16682.0|16684.0|16685.0|16693.0|16704.0|16705.0|16708.0|16716.0|16726.0|16735.0|16736.0|16737.0|16738.0|16747.0|16748.0|16751.0|16758.0|16768.0|16778.0|16779.0|16780.0|16792.0|16799.0|16810.0|16819.0|16821.0|16839.0|16844.0|16854.0|16855.0|16859.0|16869.0|16872.0|16873.0|16875.0|16877.0|16880.0|16890.0|16898.0|16905.0|16916.0|16919.0|16920.0|16936.0|16937.0|16952.0|16961.0|16962.0|16971.0|16978.0|16996.0|17010.0|17011.0|17014.0|17017.0|17019.0|17021.0|17023.0|17024.0|17028.0|17031.0|17040.0|17041.0|17042.0|17046.0|17050.0|17051.0|17057.0|17071.0|17074.0|17083.0|17085.0|17090.0|17091.0|17092.0|17093.0|17095.0|17112.0|17126.0|17137.0|17138.0|17151.0|17152.0|17155.0|17158.0|17174.0|17175.0|17180.0|17181.0|17184.0|17194.0|17197.0|17200.0|17207.0|17208.0|17223.0|17227.0|17229.0|17234.0|17243.0|17245.0|17248.0|17250.0|17254.0|17256.0|17261.0|17264.0|17266.0|17276.0|17278.0|17285.0|17289.0|17292.0|17295.0|17298.0|17307.0|17308.0|17309.0|17318.0|17328.0|17342.0|17344.0|17347.0|17348.0|17359.0|17364.0|17367.0|17374.0|17379.0|17394.0|17396.0|17410.0|17411.0|17435.0|17441.0|17445.0|17446.0|17450.0|17453.0|17454.0|17455.0|17465.0|17476.0|17487.0|17493.0|17500.0|17513.0|17517.0|17519.0|17525.0|17535.0|17540.0|17561.0|17575.0|17577.0|17581.0|17583.0|17587.0|17597.0|17606.0|17609.0|17612.0|17638.0|17657.0|17662.0|17665.0|17669.0|17675.0|17680.0|17686.0|17690.0|17707.0|17720.0|17730.0|17734.0|17741.0|17744.0|17758.0|17770.0|17772.0|17778.0|17782.0|17793.0|17799.0|17803.0|17812.0|17823.0|17824.0|17828.0|17830.0|17836.0|17839.0|17844.0|17849.0|17863.0|17873.0|17880.0|17895.0|17905.0|17907.0|17910.0|17920.0|17925.0|17931.0|17943.0|17947.0|17948.0|17966.0|17968.0|17971.0|17984.0|17991.0|18012.0|18013.0|18035.0|18040.0|18041.0|18044.0|18050.0|18055.0|18067.0|18082.0|18086.0|18090.0|18092.0|18102.0|18107.0|18112.0|18114.0|18122.0|18146.0|18160.0|18174.0|18183.0|18184.0|18185.0|18192.0|18193.0|18206.0|18216.0|18217.0|18220.0|18224.0|18255.0|18257.0|18266.0|18271.0|18275.0|18277.0|18281.0|18284.0|18294.0|18303.0|18305.0|18356.0|18357.0|18361.0|18364.0|18368.0|18377.0|18388.0|18406.0|18407.0|18420.0|18422.0|18435.0|18445.0|18453.0|18454.0|18458.0|18463.0|18464.0|18474.0|18475.0|18488.0|18494.0|18495.0|18506.0|18509.0|18536.0|18539.0|18546.0|18550.0|18560.0|18563.0|18573.0|18584.0|18586.0|18614.0|18617.0|18618.0|18624.0|18628.0|18645.0|18660.0|18667.0|18671.0|18677.0|18678.0|18683.0|18693.0|18698.0|18711.0|18720.0|18729.0|18730.0|18731.0|18758.0|18763.0|18764.0|18773.0|18779.0|18785.0|18786.0|18789.0|18793.0|18794.0|18799.0|18800.0|18804.0|18822.0|18824.0|18829.0|18834.0|18835.0|18839.0|18855.0|18860.0|18870.0|18876.0|18882.0|18885.0|18886.0|18896.0|18903.0|18910.0|18914.0|18919.0|18941.0|18960.0|18962.0|18971.0|18978.0|18989.0|18992.0|18995.0|19000.0|19017.0|19021.0|19030.0|19032.0|19036.0|19040.0|19043.0|19046.0|19049.0|19053.0|19076.0|19096.0|19107.0|19113.0|19120.0|19124.0|19133.0|19142.0|19146.0|19150.0|19152.0|19154.0|19167.0|19171.0|19173.0|19175.0|19178.0|19182.0|19183.0|19185.0|19194.0|19195.0|19203.0|19204.0|19205.0|19211.0|19213.0|19215.0|19216.0|19218.0|19237.0|19241.0|19243.0|19244.0|19254.0|19258.0|19264.0|19265.0|19268.0|19284.0|19286.0|19300.0|19304.0|19305.0|19314.0|19318.0|19319.0|19321.0|19323.0|19330.0|19334.0|19340.0|19344.0|19351.0|19355.0|19357.0|19359.0|19362.0|19372.0|19375.0|19376.0|19381.0|19386.0|19392.0|19402.0|19405.0|19415.0|19416.0|19418.0|19422.0|19427.0|19429.0|19445.0|19447.0|19449.0|19450.0|19453.0|19455.0|19462.0|19470.0|19473.0|19474.0|19483.0|19489.0|19492.0|19496.0|19505.0|19514.0|19515.0|19516.0|19524.0|19526.0|19531.0|19536.0|19546.0|19557.0|19562.0|19563.0|19576.0|19578.0|19579.0|19587.0|19589.0|19616.0|19622.0|19626.0|19629.0|19632.0|19639.0|19649.0|19654.0|19655.0|19659.0|19665.0|19668.0|19678.0|19688.0|19697.0|19700.0|19701.0|19754.0|19762.0|19782.0|19795.0|19804.0|19812.0|19816.0|19837.0|19856.0|19894.0|19923.0|19935.0|19948.0|19966.0|19969.0|19979.0|19985.0|19999.0|20000.0|20041.0|20051.0|20073.0|20113.0|20129.0|20133.0|20140.0|20142.0|20150.0 -in.representative_income metadata_and_annual usd float 20162.0|20192.0|20195.0|20238.0|20245.0|20248.0|20253.0|20258.0|20259.0|20264.0|20267.0|20269.0|20284.0|20288.0|20292.0|20294.0|20302.0|20320.0|20324.0|20340.0|20344.0|20375.0|20378.0|20402.0|20405.0|20407.0|20443.0|20453.0|20459.0|20467.0|20496.0|20507.0|20515.0|20517.0|20526.0|20551.0|20556.0|20557.0|20565.0|20567.0|20570.0|20572.0|20607.0|20618.0|20619.0|20637.0|20640.0|20657.0|20668.0|20675.0|20678.0|20687.0|20691.0|20698.0|20708.0|20718.0|20748.0|20750.0|20766.0|20776.0|20777.0|20788.0|20799.0|20804.0|20805.0|20810.0|20825.0|20853.0|20858.0|20881.0|20907.0|20917.0|20919.0|20933.0|20937.0|20939.0|20943.0|20948.0|20949.0|20957.0|20961.0|20971.0|20975.0|20981.0|20987.0|20991.0|21007.0|21042.0|21048.0|21050.0|21051.0|21060.0|21069.0|21070.0|21071.0|21103.0|21112.0|21114.0|21119.0|21130.0|21147.0|21153.0|21167.0|21168.0|21176.0|21186.0|21190.0|21207.0|21208.0|21219.0|21221.0|21222.0|21223.0|21261.0|21265.0|21269.0|21273.0|21296.0|21297.0|21304.0|21324.0|21329.0|21350.0|21351.0|21361.0|21366.0|21375.0|21385.0|21388.0|21405.0|21408.0|21409.0|21411.0|21415.0|21440.0|21444.0|21448.0|21461.0|21469.0|21472.0|21474.0|21476.0|21480.0|21485.0|21486.0|21490.0|21491.0|21492.0|21496.0|21501.0|21506.0|21508.0|21514.0|21516.0|21523.0|21526.0|21539.0|21555.0|21557.0|21565.0|21566.0|21576.0|21588.0|21593.0|21597.0|21603.0|21607.0|21609.0|21610.0|21620.0|21630.0|21635.0|21646.0|21654.0|21662.0|21668.0|21672.0|21678.0|21681.0|21688.0|21691.0|21692.0|21695.0|21702.0|21704.0|21714.0|21716.0|21717.0|21718.0|21719.0|21727.0|21738.0|21739.0|21748.0|21749.0|21759.0|21760.0|21763.0|21767.0|21772.0|21780.0|21792.0|21795.0|21804.0|21805.0|21808.0|21815.0|21816.0|21819.0|21823.0|21834.0|21836.0|21845.0|21846.0|21866.0|21874.0|21880.0|21887.0|21888.0|21900.0|21901.0|21908.0|21909.0|21914.0|21918.0|21926.0|21928.0|21930.0|21934.0|21936.0|21941.0|21949.0|21950.0|21952.0|21966.0|21977.0|21990.0|21991.0|21996.0|21997.0|22001.0|22006.0|22017.0|22021.0|22031.0|22032.0|22041.0|22042.0|22043.0|22058.0|22063.0|22077.0|22083.0|22085.0|22086.0|22091.0|22096.0|22097.0|22102.0|22110.0|22114.0|22125.0|22128.0|22145.0|22148.0|22154.0|22157.0|22162.0|22163.0|22167.0|22168.0|22182.0|22183.0|22193.0|22199.0|22203.0|22204.0|22213.0|22215.0|22217.0|22221.0|22222.0|22224.0|22228.0|22231.0|22233.0|22236.0|22237.0|22238.0|22239.0|22242.0|22247.0|22253.0|22257.0|22268.0|22273.0|22292.0|22294.0|22295.0|22296.0|22300.0|22304.0|22306.0|22314.0|22316.0|22328.0|22332.0|22336.0|22341.0|22344.0|22346.0|22347.0|22351.0|22355.0|22357.0|22360.0|22372.0|22375.0|22377.0|22379.0|22383.0|22385.0|22392.0|22393.0|22396.0|22400.0|22404.0|22410.0|22419.0|22420.0|22430.0|22440.0|22445.0|22454.0|22460.0|22461.0|22465.0|22467.0|22469.0|22476.0|22484.0|22486.0|22489.0|22495.0|22496.0|22499.0|22500.0|22501.0|22503.0|22505.0|22507.0|22511.0|22512.0|22516.0|22532.0|22538.0|22542.0|22543.0|22546.0|22558.0|22560.0|22562.0|22568.0|22571.0|22582.0|22583.0|22588.0|22595.0|22597.0|22599.0|22604.0|22607.0|22616.0|22619.0|22621.0|22626.0|22627.0|22631.0|22636.0|22637.0|22651.0|22653.0|22658.0|22663.0|22668.0|22670.0|22671.0|22672.0|22679.0|22681.0|22683.0|22688.0|22690.0|22691.0|22692.0|22701.0|22712.0|22714.0|22716.0|22718.0|22723.0|22726.0|22733.0|22736.0|22737.0|22744.0|22746.0|22748.0|22755.0|22759.0|22763.0|22766.0|22767.0|22768.0|22779.0|22783.0|22785.0|22795.0|22799.0|22806.0|22809.0|22811.0|22819.0|22820.0|22826.0|22835.0|22839.0|22843.0|22849.0|22852.0|22856.0|22864.0|22871.0|22872.0|22875.0|22880.0|22888.0|22895.0|22906.0|22910.0|22917.0|22918.0|22928.0|22938.0|22950.0|22963.0|22969.0|22971.0|22980.0|22982.0|22985.0|22993.0|22997.0|22998.0|23002.0|23003.0|23007.0|23012.0|23016.0|23022.0|23031.0|23033.0|23036.0|23043.0|23047.0|23057.0|23062.0|23067.0|23069.0|23072.0|23074.0|23082.0|23085.0|23090.0|23099.0|23104.0|23107.0|23109.0|23111.0|23112.0|23122.0|23123.0|23132.0|23133.0|23135.0|23142.0|23143.0|23146.0|23156.0|23160.0|23162.0|23165.0|23166.0|23170.0|23173.0|23180.0|23183.0|23186.0|23187.0|23191.0|23194.0|23197.0|23205.0|23207.0|23210.0|23212.0|23213.0|23223.0|23229.0|23238.0|23240.0|23243.0|23260.0|23263.0|23268.0|23272.0|23273.0|23280.0|23298.0|23300.0|23304.0|23316.0|23324.0|23328.0|23344.0|23347.0|23355.0|23362.0|23382.0|23385.0|23391.0|23393.0|23401.0|23402.0|23405.0|23409.0|23414.0|23420.0|23424.0|23425.0|23438.0|23445.0|23447.0|23452.0|23455.0|23456.0|23457.0|23465.0|23466.0|23477.0|23479.0|23482.0|23486.0|23487.0|23491.0|23497.0|23498.0|23506.0|23507.0|23508.0|23514.0|23528.0|23536.0|23542.0|23544.0|23551.0|23555.0|23559.0|23565.0|23568.0|23608.0|23616.0|23620.0|23622.0|23630.0|23637.0|23645.0|23669.0|23672.0|23673.0|23676.0|23682.0|23691.0|23692.0|23697.0|23716.0|23724.0|23729.0|23738.0|23739.0|23744.0|23770.0|23771.0|23775.0|23781.0|23802.0|23809.0|23813.0|23827.0|23830.0|23831.0|23834.0|23839.0|23852.0|23857.0|23878.0|23890.0|23908.0|23915.0|23929.0|23939.0|23940.0|23951.0|23961.0|23971.0|23972.0|23991.0|24033.0|24038.0|24040.0|24043.0|24051.0|24056.0|24057.0|24071.0|24078.0|24086.0|24098.0|24116.0|24122.0|24131.0|24142.0|24146.0|24153.0|24163.0|24190.0|24200.0|24204.0|24213.0|24223.0|24225.0|24239.0|24254.0|24256.0|24261.0|24264.0|24267.0|24274.0|24300.0|24310.0|24314.0|24344.0|24350.0|24351.0|24362.0|24368.0|24393.0|24395.0|24408.0|24419.0|24421.0|24432.0|24445.0|24446.0|24448.0|24476.0|24478.0|24479.0|24484.0|24509.0|24527.0|24528.0|24529.0|24530.0|24541.0|24549.0|24557.0|24581.0|24601.0|24624.0|24625.0|24635.0|24637.0|24645.0|24648.0|24652.0|24672.0|24678.0|24711.0|24718.0|24732.0|24775.0|24779.0|24783.0|24817.0|24850.0|24858.0|24861.0|24893.0|24899.0|24959.0|24961.0|24973.0|24982.0|24993.0|24995.0|25001.0|25011.0|25057.0|25067.0|25082.0|25100.0|25112.0|25116.0|25137.0|25140.0|25159.0|25167.0|25205.0|25223.0|25226.0|25233.0|25247.0|25268.0|25269.0|25271.0|25279.0|25281.0|25282.0|25284.0|25294.0|25305.0|25306.0|25322.0|25334.0|25348.0|25395.0|25398.0|25416.0|25445.0|25476.0|25477.0|25494.0|25499.0|25520.0|25526.0|25534.0|25537.0|25557.0|25570.0|25577.0|25585.0|25621.0|25627.0|25628.0|25637.0|25650.0|25655.0|25677.0|25679.0|25683.0|25699.0|25705.0|25708.0|25749.0|25751.0|25753.0|25759.0|25785.0|25786.0|25795.0|25805.0|25817.0|25824.0|25834.0|25838.0|25870.0|25881.0|25890.0|25902.0|25913.0|25932.0|25933.0|25934.0|25942.0|25945.0|25953.0|25961.0|25970.0|25972.0|25975.0|25978.0|25989.0|25991.0|26003.0|26017.0|26020.0|26025.0|26050.0|26059.0|26061.0|26072.0|26076.0|26091.0|26096.0|26102.0|26117.0|26120.0|26137.0|26158.0|26192.0|26193.0|26197.0|26199.0|26203.0|26220.0|26223.0|26255.0|26260.0|26271.0|26299.0|26301.0|26309.0|26319.0|26322.0|26353.0|26377.0|26386.0|26388.0|26396.0|26407.0|26416.0|26417.0|26418.0|26420.0|26436.0|26439.0|26450.0|26453.0|26457.0|26472.0|26482.0|26508.0|26509.0|26515.0|26516.0|26526.0|26529.0|26550.0|26555.0|26566.0|26597.0|26598.0|26600.0|26601.0|26607.0|26611.0|26612.0|26640.0|26642.0|26648.0|26649.0|26653.0|26654.0|26666.0|26678.0|26681.0|26684.0|26689.0|26692.0|26701.0|26709.0|26724.0|26729.0|26734.0|26746.0|26749.0|26759.0|26762.0|26763.0|26767.0|26772.0|26773.0|26779.0|26783.0|26787.0|26799.0|26804.0|26808.0|26809.0|26819.0|26822.0|26825.0|26836.0|26838.0|26839.0|26849.0|26850.0|26853.0|26855.0|26859.0|26861.0|26869.0|26870.0|26871.0|26900.0|26901.0|26908.0|26914.0|26915.0|26917.0|26920.0|26921.0|26922.0|26924.0|26930.0|26933.0|26941.0|26945.0|26965.0|26966.0|26968.0|26972.0|26973.0|26977.0|26978.0|26979.0|26981.0|26982.0|26983.0|26988.0|26989.0|26991.0|26997.0|26998.0|27001.0|27003.0|27011.0|27013.0|27019.0|27020.0|27021.0|27023.0|27030.0|27031.0|27033.0|27034.0|27041.0|27044.0|27052.0|27055.0|27061.0|27062.0|27064.0|27065.0|27066.0|27074.0|27076.0|27086.0|27092.0|27093.0|27103.0|27107.0|27116.0|27121.0|27132.0|27138.0|27143.0|27147.0|27152.0|27153.0|27156.0|27163.0|27169.0|27184.0|27189.0|27191.0|27200.0|27209.0|27229.0|27230.0|27231.0|27238.0|27251.0|27256.0|27262.0|27270.0|27271.0|27274.0|27281.0|27282.0|27291.0|27292.0|27294.0|27295.0|27303.0|27314.0|27318.0|27320.0|27325.0 -in.representative_income metadata_and_annual usd float 27326.0|27333.0|27335.0|27342.0|27352.0|27357.0|27365.0|27373.0|27380.0|27401.0|27425.0|27436.0|27437.0|27441.0|27445.0|27448.0|27452.0|27457.0|27467.0|27470.0|27472.0|27484.0|27488.0|27492.0|27493.0|27496.0|27502.0|27504.0|27509.0|27514.0|27520.0|27531.0|27533.0|27534.0|27544.0|27546.0|27547.0|27550.0|27559.0|27560.0|27562.0|27563.0|27578.0|27583.0|27586.0|27587.0|27588.0|27606.0|27609.0|27610.0|27611.0|27621.0|27630.0|27631.0|27635.0|27638.0|27639.0|27641.0|27643.0|27646.0|27652.0|27653.0|27674.0|27692.0|27696.0|27703.0|27706.0|27717.0|27720.0|27726.0|27727.0|27738.0|27739.0|27747.0|27749.0|27750.0|27759.0|27768.0|27772.0|27775.0|27777.0|27779.0|27786.0|27790.0|27794.0|27799.0|27802.0|27803.0|27808.0|27809.0|27819.0|27822.0|27824.0|27829.0|27835.0|27847.0|27849.0|27852.0|27856.0|27860.0|27861.0|27870.0|27877.0|27888.0|27891.0|27894.0|27900.0|27901.0|27910.0|27911.0|27914.0|27919.0|27930.0|27931.0|27932.0|27941.0|27962.0|27971.0|27974.0|27984.0|27994.0|27996.0|28006.0|28010.0|28016.0|28017.0|28038.0|28042.0|28049.0|28052.0|28056.0|28060.0|28062.0|28063.0|28067.0|28070.0|28072.0|28076.0|28081.0|28084.0|28093.0|28095.0|28105.0|28109.0|28111.0|28127.0|28137.0|28147.0|28162.0|28163.0|28168.0|28169.0|28179.0|28182.0|28183.0|28190.0|28199.0|28200.0|28201.0|28203.0|28205.0|28216.0|28223.0|28233.0|28236.0|28238.0|28244.0|28253.0|28261.0|28276.0|28283.0|28284.0|28296.0|28313.0|28314.0|28328.0|28334.0|28335.0|28344.0|28345.0|28349.0|28350.0|28352.0|28355.0|28359.0|28365.0|28369.0|28371.0|28372.0|28379.0|28382.0|28384.0|28393.0|28404.0|28406.0|28416.0|28425.0|28455.0|28457.0|28459.0|28467.0|28468.0|28471.0|28474.0|28481.0|28485.0|28488.0|28494.0|28496.0|28500.0|28516.0|28525.0|28557.0|28571.0|28580.0|28589.0|28596.0|28600.0|28607.0|28611.0|28613.0|28623.0|28626.0|28632.0|28633.0|28638.0|28654.0|28665.0|28668.0|28671.0|28674.0|28685.0|28688.0|28719.0|28726.0|28734.0|28739.0|28740.0|28746.0|28769.0|28770.0|28802.0|28808.0|28822.0|28843.0|28848.0|28852.0|28872.0|28875.0|28896.0|28902.0|28912.0|28925.0|28931.0|28979.0|28981.0|28984.0|29011.0|29037.0|29038.0|29067.0|29069.0|29080.0|29087.0|29092.0|29097.0|29107.0|29112.0|29117.0|29139.0|29143.0|29144.0|29151.0|29153.0|29175.0|29177.0|29189.0|29198.0|29205.0|29212.0|29252.0|29262.0|29281.0|29299.0|29301.0|29305.0|29324.0|29329.0|29339.0|29345.0|29347.0|29365.0|29366.0|29371.0|29381.0|29389.0|29395.0|29402.0|29405.0|29407.0|29426.0|29443.0|29488.0|29496.0|29497.0|29506.0|29508.0|29561.0|29597.0|29645.0|29658.0|29687.0|29696.0|29698.0|29713.0|29746.0|29749.0|29789.0|29799.0|29819.0|29842.0|29864.0|29870.0|29897.0|29912.0|29917.0|29927.0|29943.0|29971.0|29985.0|30001.0|30003.0|30004.0|30035.0|30037.0|30046.0|30128.0|30152.0|30165.0|30174.0|30185.0|30191.0|30218.0|30271.0|30276.0|30296.0|30304.0|30307.0|30308.0|30314.0|30345.0|30355.0|30368.0|30373.0|30383.0|30389.0|30393.0|30395.0|30400.0|30404.0|30405.0|30411.0|30422.0|30426.0|30446.0|30467.0|30469.0|30476.0|30478.0|30486.0|30491.0|30499.0|30521.0|30539.0|30552.0|30557.0|30566.0|30583.0|30588.0|30597.0|30604.0|30617.0|30626.0|30634.0|30636.0|30638.0|30642.0|30647.0|30648.0|30658.0|30668.0|30676.0|30686.0|30688.0|30689.0|30698.0|30700.0|30701.0|30705.0|30708.0|30710.0|30729.0|30737.0|30755.0|30765.0|30767.0|30769.0|30779.0|30789.0|30792.0|30794.0|30808.0|30809.0|30820.0|30826.0|30840.0|30847.0|30858.0|30910.0|30917.0|30923.0|30944.0|30951.0|30952.0|30961.0|30962.0|30964.0|30969.0|30971.0|30978.0|30979.0|30984.0|31001.0|31012.0|31016.0|31017.0|31023.0|31028.0|31031.0|31044.0|31058.0|31068.0|31070.0|31072.0|31076.0|31078.0|31087.0|31112.0|31121.0|31123.0|31129.0|31131.0|31140.0|31148.0|31150.0|31152.0|31160.0|31163.0|31164.0|31169.0|31183.0|31185.0|31193.0|31195.0|31211.0|31216.0|31226.0|31228.0|31234.0|31241.0|31247.0|31253.0|31264.0|31269.0|31273.0|31274.0|31275.0|31277.0|31281.0|31291.0|31299.0|31322.0|31323.0|31325.0|31328.0|31330.0|31334.0|31343.0|31365.0|31366.0|31374.0|31377.0|31395.0|31398.0|31405.0|31408.0|31416.0|31433.0|31436.0|31438.0|31443.0|31451.0|31456.0|31463.0|31474.0|31480.0|31484.0|31490.0|31495.0|31496.0|31500.0|31505.0|31516.0|31517.0|31526.0|31527.0|31533.0|31538.0|31550.0|31560.0|31561.0|31567.0|31573.0|31583.0|31587.0|31593.0|31604.0|31612.0|31613.0|31614.0|31615.0|31617.0|31624.0|31628.0|31638.0|31645.0|31648.0|31654.0|31655.0|31658.0|31659.0|31662.0|31669.0|31678.0|31679.0|31681.0|31689.0|31690.0|31691.0|31695.0|31698.0|31705.0|31710.0|31713.0|31716.0|31717.0|31723.0|31727.0|31731.0|31733.0|31742.0|31743.0|31744.0|31754.0|31755.0|31756.0|31759.0|31764.0|31767.0|31770.0|31776.0|31777.0|31779.0|31794.0|31795.0|31799.0|31802.0|31807.0|31809.0|31817.0|31840.0|31841.0|31850.0|31859.0|31860.0|31863.0|31871.0|31875.0|31881.0|31882.0|31884.0|31891.0|31897.0|31898.0|31905.0|31906.0|31912.0|31917.0|31921.0|31923.0|31928.0|31931.0|31934.0|31938.0|31944.0|31951.0|31955.0|31965.0|31968.0|31971.0|31982.0|31985.0|31986.0|31989.0|31990.0|31992.0|31993.0|31996.0|32000.0|32001.0|32007.0|32025.0|32027.0|32031.0|32032.0|32035.0|32037.0|32039.0|32042.0|32050.0|32060.0|32082.0|32086.0|32090.0|32095.0|32099.0|32102.0|32106.0|32109.0|32113.0|32117.0|32119.0|32122.0|32123.0|32129.0|32133.0|32134.0|32141.0|32143.0|32147.0|32150.0|32153.0|32155.0|32161.0|32163.0|32165.0|32166.0|32180.0|32186.0|32191.0|32192.0|32195.0|32197.0|32198.0|32204.0|32208.0|32214.0|32219.0|32225.0|32240.0|32242.0|32246.0|32250.0|32252.0|32253.0|32255.0|32263.0|32264.0|32274.0|32289.0|32294.0|32302.0|32304.0|32305.0|32309.0|32321.0|32325.0|32326.0|32335.0|32342.0|32343.0|32345.0|32348.0|32355.0|32360.0|32365.0|32371.0|32378.0|32382.0|32393.0|32397.0|32399.0|32408.0|32416.0|32426.0|32429.0|32435.0|32440.0|32447.0|32450.0|32452.0|32456.0|32461.0|32472.0|32479.0|32481.0|32486.0|32490.0|32491.0|32493.0|32501.0|32507.0|32523.0|32529.0|32530.0|32533.0|32535.0|32545.0|32553.0|32554.0|32557.0|32559.0|32568.0|32571.0|32576.0|32579.0|32583.0|32586.0|32589.0|32594.0|32598.0|32607.0|32608.0|32612.0|32622.0|32625.0|32628.0|32631.0|32633.0|32634.0|32638.0|32643.0|32661.0|32678.0|32683.0|32686.0|32687.0|32695.0|32706.0|32716.0|32718.0|32724.0|32727.0|32735.0|32738.0|32739.0|32748.0|32761.0|32769.0|32770.0|32780.0|32788.0|32794.0|32800.0|32802.0|32803.0|32820.0|32824.0|32830.0|32840.0|32842.0|32850.0|32862.0|32870.0|32876.0|32879.0|32880.0|32901.0|32903.0|32904.0|32905.0|32921.0|32931.0|32937.0|32941.0|32945.0|32946.0|32957.0|32960.0|32961.0|32966.0|32969.0|32976.0|32979.0|33007.0|33017.0|33020.0|33034.0|33041.0|33042.0|33052.0|33056.0|33058.0|33063.0|33066.0|33082.0|33092.0|33095.0|33099.0|33105.0|33110.0|33117.0|33120.0|33130.0|33135.0|33138.0|33142.0|33143.0|33146.0|33160.0|33161.0|33167.0|33170.0|33180.0|33181.0|33183.0|33191.0|33192.0|33196.0|33199.0|33202.0|33203.0|33209.0|33223.0|33235.0|33252.0|33257.0|33262.0|33268.0|33274.0|33278.0|33282.0|33285.0|33289.0|33294.0|33299.0|33300.0|33304.0|33305.0|33309.0|33336.0|33337.0|33345.0|33347.0|33354.0|33357.0|33363.0|33365.0|33377.0|33378.0|33384.0|33397.0|33407.0|33416.0|33419.0|33467.0|33476.0|33500.0|33516.0|33526.0|33535.0|33546.0|33547.0|33581.0|33599.0|33600.0|33602.0|33604.0|33613.0|33615.0|33621.0|33625.0|33636.0|33638.0|33642.0|33645.0|33656.0|33663.0|33664.0|33684.0|33711.0|33722.0|33726.0|33733.0|33747.0|33749.0|33760.0|33765.0|33769.0|33775.0|33800.0|33815.0|33821.0|33831.0|33840.0|33848.0|33851.0|33862.0|33873.0|33880.0|33890.0|33919.0|33920.0|33927.0|33937.0|33941.0|33949.0|33953.0|33970.0|33974.0|33975.0|33986.0|33992.0|34012.0|34028.0|34032.0|34039.0|34051.0|34056.0|34064.0|34072.0|34082.0|34088.0|34092.0|34100.0|34101.0|34106.0|34110.0|34114.0|34120.0|34127.0|34136.0|34137.0|34140.0|34141.0|34147.0|34153.0|34154.0|34157.0|34162.0|34164.0|34189.0|34198.0|34200.0|34218.0|34222.0|34232.0|34244.0|34257.0|34265.0|34274.0|34284.0|34285.0|34295.0|34296.0|34301.0|34307.0|34314.0|34315.0|34325.0|34327.0|34337.0|34347.0|34348.0|34349.0|34351.0|34358.0|34359.0|34365.0|34366.0|34369.0|34375.0|34380.0|34391.0|34399.0|34404.0|34406.0|34409.0|34423.0|34425.0 -in.representative_income metadata_and_annual usd float 34434.0|34446.0|34450.0|34456.0|34457.0|34463.0|34466.0|34467.0|34473.0|34483.0|34489.0|34501.0|34507.0|34512.0|34513.0|34547.0|34554.0|34567.0|34571.0|34575.0|34580.0|34595.0|34608.0|34612.0|34618.0|34619.0|34633.0|34634.0|34640.0|34667.0|34672.0|34678.0|34683.0|34686.0|34687.0|34688.0|34698.0|34716.0|34719.0|34737.0|34749.0|34750.0|34764.0|34769.0|34780.0|34781.0|34791.0|34811.0|34823.0|34863.0|34866.0|34884.0|34887.0|34890.0|34899.0|34914.0|34921.0|34931.0|34997.0|35016.0|35045.0|35052.0|35069.0|35092.0|35093.0|35103.0|35119.0|35127.0|35133.0|35147.0|35151.0|35153.0|35163.0|35171.0|35173.0|35180.0|35193.0|35209.0|35224.0|35234.0|35256.0|35265.0|35294.0|35305.0|35316.0|35317.0|35343.0|35348.0|35361.0|35365.0|35406.0|35407.0|35416.0|35456.0|35461.0|35466.0|35467.0|35476.0|35482.0|35483.0|35486.0|35492.0|35498.0|35499.0|35507.0|35509.0|35515.0|35540.0|35544.0|35547.0|35577.0|35593.0|35598.0|35608.0|35616.0|35642.0|35650.0|35655.0|35658.0|35668.0|35677.0|35678.0|35688.0|35692.0|35693.0|35699.0|35702.0|35703.0|35717.0|35724.0|35729.0|35730.0|35735.0|35746.0|35758.0|35759.0|35763.0|35770.0|35775.0|35783.0|35789.0|35792.0|35800.0|35802.0|35807.0|35808.0|35810.0|35811.0|35825.0|35840.0|35857.0|35873.0|35893.0|35895.0|35901.0|35911.0|35925.0|35939.0|35941.0|35946.0|35947.0|35958.0|35962.0|35965.0|35968.0|35971.0|35972.0|35973.0|35975.0|35979.0|35981.0|35991.0|35993.0|36014.0|36015.0|36025.0|36026.0|36031.0|36033.0|36045.0|36046.0|36047.0|36049.0|36068.0|36073.0|36079.0|36088.0|36092.0|36094.0|36100.0|36101.0|36103.0|36109.0|36110.0|36111.0|36113.0|36121.0|36126.0|36132.0|36141.0|36142.0|36152.0|36153.0|36163.0|36166.0|36173.0|36175.0|36177.0|36180.0|36184.0|36185.0|36186.0|36193.0|36207.0|36208.0|36214.0|36216.0|36224.0|36228.0|36230.0|36233.0|36236.0|36240.0|36244.0|36250.0|36256.0|36257.0|36259.0|36261.0|36278.0|36282.0|36283.0|36289.0|36305.0|36307.0|36308.0|36310.0|36315.0|36318.0|36322.0|36326.0|36331.0|36336.0|36338.0|36348.0|36350.0|36355.0|36365.0|36375.0|36379.0|36382.0|36384.0|36388.0|36390.0|36395.0|36396.0|36400.0|36401.0|36405.0|36411.0|36412.0|36413.0|36416.0|36423.0|36431.0|36436.0|36443.0|36446.0|36448.0|36451.0|36455.0|36457.0|36460.0|36482.0|36486.0|36491.0|36497.0|36500.0|36502.0|36503.0|36507.0|36517.0|36519.0|36524.0|36531.0|36537.0|36539.0|36540.0|36542.0|36551.0|36552.0|36557.0|36561.0|36565.0|36574.0|36584.0|36586.0|36587.0|36592.0|36595.0|36598.0|36600.0|36605.0|36616.0|36617.0|36618.0|36627.0|36628.0|36638.0|36643.0|36648.0|36649.0|36658.0|36660.0|36661.0|36678.0|36682.0|36687.0|36697.0|36699.0|36700.0|36711.0|36720.0|36730.0|36731.0|36737.0|36744.0|36751.0|36755.0|36757.0|36766.0|36772.0|36777.0|36779.0|36782.0|36785.0|36790.0|36798.0|36800.0|36802.0|36805.0|36806.0|36816.0|36821.0|36822.0|36823.0|36824.0|36826.0|36830.0|36836.0|36840.0|36846.0|36850.0|36863.0|36873.0|36884.0|36888.0|36890.0|36905.0|36916.0|36931.0|36934.0|36937.0|36941.0|36952.0|36957.0|36964.0|36971.0|36974.0|36980.0|36985.0|36990.0|36991.0|37002.0|37017.0|37022.0|37034.0|37038.0|37042.0|37050.0|37060.0|37069.0|37071.0|37080.0|37085.0|37088.0|37091.0|37092.0|37093.0|37101.0|37103.0|37112.0|37117.0|37123.0|37135.0|37136.0|37143.0|37154.0|37164.0|37174.0|37184.0|37190.0|37204.0|37205.0|37206.0|37207.0|37210.0|37211.0|37215.0|37224.0|37227.0|37233.0|37235.0|37241.0|37249.0|37259.0|37281.0|37287.0|37292.0|37295.0|37297.0|37298.0|37325.0|37330.0|37345.0|37351.0|37356.0|37362.0|37365.0|37366.0|37380.0|37386.0|37388.0|37389.0|37398.0|37411.0|37413.0|37421.0|37424.0|37427.0|37428.0|37431.0|37438.0|37446.0|37451.0|37459.0|37464.0|37472.0|37473.0|37474.0|37481.0|37483.0|37485.0|37491.0|37492.0|37497.0|37518.0|37524.0|37544.0|37554.0|37558.0|37567.0|37571.0|37572.0|37574.0|37577.0|37581.0|37586.0|37596.0|37598.0|37600.0|37607.0|37613.0|37618.0|37625.0|37627.0|37633.0|37638.0|37640.0|37648.0|37650.0|37668.0|37669.0|37679.0|37688.0|37695.0|37698.0|37701.0|37709.0|37713.0|37721.0|37729.0|37730.0|37734.0|37745.0|37747.0|37748.0|37751.0|37759.0|37764.0|37769.0|37779.0|37793.0|37797.0|37800.0|37801.0|37803.0|37807.0|37813.0|37817.0|37821.0|37828.0|37834.0|37837.0|37838.0|37840.0|37849.0|37854.0|37860.0|37865.0|37867.0|37871.0|37880.0|37892.0|37893.0|37898.0|37902.0|37903.0|37904.0|37910.0|37914.0|37917.0|37922.0|37925.0|37935.0|37941.0|37957.0|37958.0|37962.0|37963.0|37968.0|37970.0|37981.0|37990.0|37992.0|37997.0|38004.0|38011.0|38019.0|38029.0|38033.0|38037.0|38043.0|38044.0|38050.0|38054.0|38058.0|38063.0|38065.0|38082.0|38084.0|38086.0|38088.0|38093.0|38103.0|38107.0|38108.0|38112.0|38113.0|38114.0|38123.0|38124.0|38130.0|38135.0|38153.0|38155.0|38163.0|38175.0|38176.0|38178.0|38180.0|38185.0|38188.0|38192.0|38196.0|38214.0|38215.0|38224.0|38230.0|38234.0|38244.0|38246.0|38250.0|38261.0|38268.0|38274.0|38277.0|38283.0|38287.0|38293.0|38302.0|38303.0|38313.0|38315.0|38325.0|38350.0|38356.0|38357.0|38365.0|38370.0|38376.0|38379.0|38380.0|38386.0|38388.0|38389.0|38390.0|38404.0|38416.0|38419.0|38422.0|38423.0|38430.0|38431.0|38432.0|38436.0|38440.0|38444.0|38450.0|38451.0|38462.0|38465.0|38469.0|38473.0|38476.0|38482.0|38494.0|38498.0|38508.0|38522.0|38535.0|38541.0|38545.0|38546.0|38547.0|38554.0|38555.0|38567.0|38576.0|38577.0|38579.0|38584.0|38587.0|38588.0|38591.0|38597.0|38618.0|38619.0|38621.0|38627.0|38630.0|38641.0|38652.0|38655.0|38659.0|38665.0|38679.0|38681.0|38687.0|38693.0|38697.0|38703.0|38704.0|38709.0|38716.0|38720.0|38724.0|38731.0|38736.0|38739.0|38742.0|38752.0|38769.0|38771.0|38779.0|38782.0|38787.0|38790.0|38800.0|38837.0|38840.0|38843.0|38851.0|38870.0|38881.0|38884.0|38891.0|38898.0|38901.0|38904.0|38906.0|38908.0|38911.0|38912.0|38915.0|38918.0|38929.0|38934.0|38962.0|38966.0|38968.0|38988.0|38989.0|38992.0|38999.0|39005.0|39006.0|39009.0|39010.0|39014.0|39021.0|39031.0|39046.0|39049.0|39058.0|39059.0|39071.0|39084.0|39095.0|39126.0|39134.0|39144.0|39147.0|39148.0|39163.0|39170.0|39173.0|39181.0|39188.0|39191.0|39195.0|39206.0|39208.0|39213.0|39216.0|39234.0|39237.0|39243.0|39244.0|39246.0|39254.0|39274.0|39284.0|39315.0|39319.0|39329.0|39342.0|39351.0|39360.0|39369.0|39381.0|39396.0|39401.0|39406.0|39413.0|39436.0|39437.0|39438.0|39463.0|39473.0|39486.0|39491.0|39497.0|39502.0|39515.0|39527.0|39535.0|39545.0|39547.0|39548.0|39559.0|39567.0|39569.0|39587.0|39598.0|39599.0|39608.0|39618.0|39628.0|39632.0|39653.0|39658.0|39690.0|39699.0|39719.0|39732.0|39738.0|39740.0|39759.0|39760.0|39772.0|39780.0|39800.0|39869.0|39880.0|39901.0|39965.0|39969.0|39977.0|39978.0|39981.0|40020.0|40039.0|40040.0|40096.0|40114.0|40124.0|40153.0|40181.0|40186.0|40201.0|40204.0|40216.0|40241.0|40254.0|40256.0|40275.0|40305.0|40317.0|40319.0|40329.0|40346.0|40357.0|40391.0|40398.0|40406.0|40412.0|40416.0|40424.0|40433.0|40436.0|40446.0|40454.0|40484.0|40496.0|40504.0|40517.0|40523.0|40526.0|40537.0|40539.0|40561.0|40588.0|40598.0|40602.0|40603.0|40604.0|40624.0|40625.0|40639.0|40641.0|40648.0|40658.0|40660.0|40679.0|40684.0|40688.0|40719.0|40722.0|40727.0|40732.0|40742.0|40743.0|40760.0|40770.0|40791.0|40800.0|40802.0|40812.0|40814.0|40821.0|40825.0|40830.0|40832.0|40834.0|40842.0|40856.0|40864.0|40867.0|40877.0|40887.0|40908.0|40911.0|40919.0|40920.0|40925.0|40961.0|40970.0|40971.0|40980.0|40985.0|40992.0|41004.0|41006.0|41010.0|41014.0|41024.0|41027.0|41031.0|41052.0|41059.0|41062.0|41068.0|41093.0|41113.0|41122.0|41133.0|41135.0|41137.0|41143.0|41145.0|41150.0|41153.0|41158.0|41166.0|41177.0|41183.0|41184.0|41185.0|41198.0|41207.0|41214.0|41221.0|41234.0|41240.0|41258.0|41266.0|41267.0|41269.0|41272.0|41273.0|41278.0|41279.0|41287.0|41289.0|41295.0|41299.0|41305.0|41306.0|41310.0|41315.0|41320.0|41327.0|41328.0|41338.0|41349.0|41360.0|41372.0|41376.0|41383.0|41386.0|41393.0|41402.0|41412.0|41414.0|41425.0|41426.0|41434.0|41435.0|41436.0|41439.0|41451.0|41458.0|41468.0|41500.0|41504.0|41507.0|41511.0|41516.0|41517.0|41543.0|41552.0|41553.0|41557.0|41558.0|41563.0|41567.0|41576.0|41582.0|41583.0|41585.0|41588.0|41596.0|41598.0|41609.0|41618.0|41619.0|41620.0|41631.0|41640.0 -in.representative_income metadata_and_annual usd float 41642.0|41647.0|41650.0|41654.0|41660.0|41669.0|41671.0|41679.0|41706.0|41710.0|41721.0|41722.0|41729.0|41741.0|41752.0|41753.0|41757.0|41759.0|41767.0|41773.0|41791.0|41801.0|41811.0|41825.0|41850.0|41857.0|41858.0|41861.0|41864.0|41866.0|41871.0|41875.0|41886.0|41888.0|41889.0|41890.0|41893.0|41900.0|41915.0|41919.0|41920.0|41922.0|41928.0|41929.0|41931.0|41939.0|41940.0|41943.0|41944.0|41948.0|41949.0|41950.0|41958.0|41965.0|41973.0|41974.0|41980.0|41982.0|41984.0|41998.0|42001.0|42009.0|42014.0|42021.0|42022.0|42024.0|42025.0|42030.0|42032.0|42036.0|42037.0|42042.0|42053.0|42056.0|42060.0|42069.0|42081.0|42083.0|42084.0|42090.0|42093.0|42109.0|42111.0|42114.0|42117.0|42123.0|42125.0|42131.0|42133.0|42135.0|42142.0|42145.0|42154.0|42161.0|42163.0|42164.0|42170.0|42172.0|42185.0|42187.0|42188.0|42191.0|42204.0|42214.0|42221.0|42234.0|42237.0|42238.0|42239.0|42244.0|42250.0|42258.0|42268.0|42280.0|42288.0|42289.0|42311.0|42320.0|42322.0|42323.0|42334.0|42339.0|42341.0|42342.0|42344.0|42346.0|42347.0|42349.0|42352.0|42353.0|42354.0|42355.0|42358.0|42365.0|42379.0|42390.0|42395.0|42403.0|42405.0|42406.0|42409.0|42411.0|42412.0|42413.0|42414.0|42422.0|42430.0|42438.0|42446.0|42448.0|42456.0|42464.0|42465.0|42466.0|42475.0|42479.0|42485.0|42487.0|42489.0|42495.0|42500.0|42503.0|42506.0|42507.0|42517.0|42519.0|42521.0|42527.0|42531.0|42537.0|42541.0|42553.0|42558.0|42561.0|42562.0|42573.0|42577.0|42578.0|42592.0|42595.0|42599.0|42606.0|42607.0|42617.0|42620.0|42622.0|42636.0|42638.0|42646.0|42648.0|42658.0|42661.0|42668.0|42674.0|42700.0|42701.0|42711.0|42712.0|42716.0|42717.0|42723.0|42724.0|42729.0|42744.0|42754.0|42766.0|42770.0|42790.0|42791.0|42800.0|42815.0|42816.0|42819.0|42824.0|42828.0|42830.0|42831.0|42840.0|42841.0|42852.0|42859.0|42862.0|42869.0|42873.0|42874.0|42880.0|42887.0|42891.0|42917.0|42918.0|42924.0|42927.0|42931.0|42933.0|42938.0|42942.0|42948.0|42949.0|42951.0|42961.0|42970.0|42972.0|42976.0|42978.0|42981.0|42983.0|42986.0|42992.0|43009.0|43017.0|43022.0|43024.0|43030.0|43032.0|43034.0|43049.0|43053.0|43062.0|43071.0|43077.0|43078.0|43081.0|43089.0|43098.0|43099.0|43103.0|43110.0|43121.0|43126.0|43128.0|43130.0|43131.0|43132.0|43133.0|43141.0|43143.0|43152.0|43153.0|43157.0|43163.0|43174.0|43185.0|43197.0|43198.0|43206.0|43208.0|43238.0|43239.0|43250.0|43260.0|43269.0|43271.0|43273.0|43280.0|43284.0|43292.0|43293.0|43306.0|43313.0|43327.0|43331.0|43337.0|43345.0|43351.0|43368.0|43373.0|43381.0|43383.0|43386.0|43389.0|43416.0|43435.0|43436.0|43439.0|43442.0|43445.0|43450.0|43455.0|43456.0|43460.0|43463.0|43474.0|43475.0|43476.0|43477.0|43489.0|43506.0|43507.0|43529.0|43537.0|43543.0|43545.0|43549.0|43555.0|43568.0|43571.0|43579.0|43582.0|43586.0|43587.0|43588.0|43597.0|43603.0|43610.0|43614.0|43616.0|43630.0|43648.0|43661.0|43671.0|43689.0|43694.0|43703.0|43711.0|43713.0|43732.0|43759.0|43775.0|43776.0|43782.0|43798.0|43820.0|43824.0|43827.0|43834.0|43837.0|43852.0|43865.0|43867.0|43914.0|43921.0|43931.0|43958.0|43976.0|43994.0|44005.0|44022.0|44033.0|44065.0|44083.0|44084.0|44088.0|44093.0|44112.0|44116.0|44129.0|44135.0|44145.0|44154.0|44179.0|44187.0|44188.0|44194.0|44198.0|44209.0|44226.0|44244.0|44249.0|44258.0|44262.0|44270.0|44279.0|44280.0|44293.0|44296.0|44314.0|44316.0|44343.0|44344.0|44345.0|44348.0|44352.0|44355.0|44357.0|44376.0|44378.0|44388.0|44396.0|44404.0|44420.0|44441.0|44452.0|44456.0|44461.0|44473.0|44474.0|44486.0|44487.0|44494.0|44504.0|44507.0|44520.0|44537.0|44547.0|44556.0|44557.0|44578.0|44608.0|44612.0|44648.0|44662.0|44666.0|44699.0|44765.0|44768.0|44800.0|44821.0|44840.0|44870.0|44872.0|44909.0|44926.0|44931.0|44951.0|44969.0|44978.0|44990.0|44991.0|45031.0|45052.0|45075.0|45119.0|45137.0|45153.0|45174.0|45192.0|45235.0|45239.0|45250.0|45253.0|45254.0|45272.0|45278.0|45292.0|45325.0|45340.0|45348.0|45356.0|45369.0|45376.0|45379.0|45390.0|45400.0|45407.0|45415.0|45418.0|45423.0|45455.0|45457.0|45466.0|45467.0|45477.0|45487.0|45493.0|45514.0|45525.0|45557.0|45558.0|45568.0|45580.0|45589.0|45596.0|45608.0|45610.0|45638.0|45639.0|45640.0|45643.0|45648.0|45650.0|45653.0|45694.0|45704.0|45709.0|45746.0|45749.0|45762.0|45769.0|45770.0|45796.0|45797.0|45810.0|45812.0|45843.0|45848.0|45861.0|45865.0|45866.0|45876.0|45880.0|45901.0|45917.0|45920.0|45921.0|45931.0|45944.0|45952.0|45954.0|45965.0|45981.0|45985.0|45990.0|45997.0|46002.0|46003.0|46017.0|46022.0|46023.0|46039.0|46044.0|46047.0|46053.0|46060.0|46063.0|46065.0|46083.0|46086.0|46097.0|46106.0|46113.0|46116.0|46126.0|46143.0|46147.0|46157.0|46158.0|46159.0|46164.0|46168.0|46184.0|46190.0|46191.0|46192.0|46199.0|46214.0|46220.0|46222.0|46233.0|46245.0|46248.0|46265.0|46266.0|46279.0|46281.0|46288.0|46306.0|46308.0|46312.0|46319.0|46335.0|46340.0|46352.0|46353.0|46357.0|46363.0|46366.0|46373.0|46375.0|46377.0|46381.0|46383.0|46385.0|46394.0|46402.0|46415.0|46425.0|46432.0|46434.0|46439.0|46444.0|46457.0|46482.0|46485.0|46498.0|46499.0|46501.0|46502.0|46514.0|46517.0|46518.0|46519.0|46534.0|46540.0|46544.0|46545.0|46550.0|46553.0|46556.0|46567.0|46571.0|46578.0|46588.0|46601.0|46603.0|46618.0|46620.0|46630.0|46633.0|46639.0|46656.0|46666.0|46676.0|46677.0|46678.0|46685.0|46694.0|46695.0|46699.0|46715.0|46729.0|46730.0|46734.0|46735.0|46744.0|46745.0|46747.0|46750.0|46759.0|46763.0|46766.0|46770.0|46781.0|46783.0|46785.0|46797.0|46804.0|46814.0|46817.0|46828.0|46830.0|46840.0|46845.0|46849.0|46851.0|46859.0|46860.0|46871.0|46879.0|46890.0|46892.0|46901.0|46903.0|46909.0|46911.0|46920.0|46925.0|46941.0|46952.0|46957.0|46959.0|46972.0|46982.0|46983.0|46985.0|47000.0|47004.0|47011.0|47012.0|47014.0|47024.0|47034.0|47043.0|47046.0|47058.0|47065.0|47071.0|47076.0|47086.0|47088.0|47091.0|47093.0|47097.0|47103.0|47105.0|47109.0|47119.0|47123.0|47125.0|47130.0|47137.0|47141.0|47146.0|47152.0|47157.0|47162.0|47163.0|47164.0|47169.0|47170.0|47171.0|47173.0|47178.0|47179.0|47183.0|47185.0|47189.0|47195.0|47206.0|47214.0|47217.0|47219.0|47224.0|47226.0|47232.0|47234.0|47241.0|47242.0|47243.0|47247.0|47255.0|47260.0|47264.0|47272.0|47280.0|47285.0|47286.0|47292.0|47295.0|47296.0|47299.0|47307.0|47314.0|47317.0|47325.0|47327.0|47328.0|47331.0|47334.0|47340.0|47344.0|47350.0|47352.0|47361.0|47364.0|47366.0|47379.0|47380.0|47385.0|47386.0|47388.0|47396.0|47399.0|47405.0|47414.0|47415.0|47416.0|47433.0|47444.0|47446.0|47447.0|47454.0|47457.0|47458.0|47462.0|47465.0|47467.0|47471.0|47476.0|47478.0|47480.0|47488.0|47497.0|47499.0|47500.0|47506.0|47515.0|47517.0|47519.0|47521.0|47522.0|47524.0|47527.0|47531.0|47532.0|47545.0|47548.0|47551.0|47554.0|47560.0|47562.0|47573.0|47574.0|47575.0|47578.0|47584.0|47591.0|47595.0|47599.0|47608.0|47616.0|47618.0|47626.0|47638.0|47640.0|47643.0|47649.0|47657.0|47665.0|47678.0|47681.0|47683.0|47689.0|47693.0|47703.0|47709.0|47712.0|47713.0|47721.0|47725.0|47729.0|47735.0|47742.0|47758.0|47760.0|47761.0|47764.0|47770.0|47784.0|47787.0|47790.0|47808.0|47821.0|47822.0|47825.0|47826.0|47829.0|47833.0|47852.0|47858.0|47862.0|47864.0|47869.0|47870.0|47872.0|47879.0|47890.0|47891.0|47899.0|47900.0|47919.0|47920.0|47930.0|47931.0|47941.0|47951.0|47953.0|47967.0|47974.0|47977.0|47979.0|47984.0|47985.0|47992.0|47993.0|48014.0|48019.0|48027.0|48032.0|48034.0|48042.0|48048.0|48049.0|48058.0|48085.0|48097.0|48101.0|48133.0|48139.0|48143.0|48153.0|48155.0|48157.0|48164.0|48168.0|48169.0|48189.0|48197.0|48198.0|48206.0|48209.0|48217.0|48220.0|48227.0|48234.0|48237.0|48238.0|48245.0|48248.0|48254.0|48262.0|48265.0|48272.0|48292.0|48295.0|48297.0|48300.0|48301.0|48308.0|48310.0|48315.0|48316.0|48322.0|48324.0|48327.0|48337.0|48344.0|48348.0|48354.0|48359.0|48362.0|48364.0|48369.0|48374.0|48375.0|48386.0|48392.0|48406.0|48427.0|48456.0|48457.0|48463.0|48466.0|48467.0|48469.0|48480.0|48489.0|48491.0|48496.0|48498.0|48499.0|48509.0|48513.0|48517.0|48519.0|48522.0|48524.0|48543.0|48546.0|48552.0|48554.0|48563.0|48564.0|48574.0|48581.0|48588.0|48589.0|48607.0|48617.0|48618.0|48623.0|48625.0|48628.0|48638.0|48642.0|48644.0|48653.0|48655.0|48659.0|48668.0|48686.0 -in.representative_income metadata_and_annual usd float 48692.0|48696.0|48706.0|48709.0|48713.0|48719.0|48730.0|48732.0|48746.0|48751.0|48759.0|48770.0|48777.0|48788.0|48790.0|48805.0|48807.0|48828.0|48829.0|48838.0|48850.0|48861.0|48881.0|48892.0|48933.0|48942.0|48945.0|48950.0|48973.0|48978.0|48992.0|49000.0|49007.0|49010.0|49024.0|49040.0|49056.0|49060.0|49068.0|49076.0|49078.0|49086.0|49093.0|49097.0|49100.0|49113.0|49144.0|49152.0|49168.0|49183.0|49190.0|49200.0|49215.0|49234.0|49250.0|49268.0|49269.0|49280.0|49283.0|49314.0|49323.0|49335.0|49377.0|49378.0|49396.0|49407.0|49413.0|49427.0|49477.0|49508.0|49538.0|49540.0|49566.0|49593.0|49594.0|49598.0|49637.0|49644.0|49647.0|49650.0|49659.0|49689.0|49695.0|49699.0|49700.0|49703.0|49712.0|49716.0|49729.0|49755.0|49767.0|49777.0|49808.0|49811.0|49830.0|49831.0|49841.0|49862.0|49871.0|49881.0|49883.0|49914.0|49918.0|49922.0|49947.0|49969.0|49982.0|49985.0|49999.0|50026.0|50041.0|50073.0|50093.0|50103.0|50104.0|50108.0|50147.0|50180.0|50184.0|50220.0|50221.0|50242.0|50253.0|50258.0|50263.0|50266.0|50271.0|50275.0|50302.0|50304.0|50305.0|50346.0|50355.0|50376.0|50393.0|50396.0|50399.0|50401.0|50404.0|50408.0|50421.0|50423.0|50426.0|50431.0|50442.0|50447.0|50455.0|50456.0|50474.0|50480.0|50484.0|50486.0|50491.0|50501.0|50507.0|50524.0|50531.0|50537.0|50541.0|50549.0|50554.0|50568.0|50569.0|50572.0|50581.0|50588.0|50593.0|50609.0|50615.0|50621.0|50634.0|50642.0|50645.0|50648.0|50652.0|50659.0|50663.0|50675.0|50695.0|50726.0|50727.0|50728.0|50729.0|50747.0|50760.0|50769.0|50775.0|50782.0|50784.0|50796.0|50799.0|50807.0|50841.0|50853.0|50868.0|50881.0|50882.0|50885.0|50890.0|50891.0|50922.0|50954.0|50955.0|50992.0|50998.0|51012.0|51040.0|51043.0|51046.0|51057.0|51083.0|51095.0|51099.0|51109.0|51113.0|51117.0|51128.0|51148.0|51159.0|51160.0|51163.0|51192.0|51204.0|51212.0|51215.0|51222.0|51231.0|51245.0|51247.0|51263.0|51265.0|51322.0|51323.0|51333.0|51354.0|51355.0|51397.0|51412.0|51416.0|51439.0|51450.0|51467.0|51472.0|51474.0|51493.0|51527.0|51528.0|51530.0|51532.0|51534.0|51568.0|51581.0|51593.0|51601.0|51614.0|51619.0|51633.0|51639.0|51646.0|51649.0|51651.0|51665.0|51676.0|51718.0|51719.0|51728.0|51750.0|51770.0|51781.0|51794.0|51800.0|51810.0|51820.0|51830.0|51834.0|51836.0|51841.0|51851.0|51863.0|51873.0|51882.0|51885.0|51900.0|51913.0|51929.0|51939.0|51941.0|51942.0|51944.0|51965.0|51975.0|51985.0|51992.0|51993.0|51995.0|52011.0|52016.0|52022.0|52027.0|52044.0|52045.0|52052.0|52068.0|52079.0|52083.0|52093.0|52103.0|52108.0|52111.0|52128.0|52129.0|52159.0|52170.0|52187.0|52195.0|52203.0|52243.0|52254.0|52274.0|52277.0|52295.0|52296.0|52298.0|52299.0|52306.0|52315.0|52319.0|52326.0|52331.0|52338.0|52346.0|52349.0|52350.0|52358.0|52367.0|52381.0|52386.0|52392.0|52393.0|52396.0|52397.0|52417.0|52419.0|52438.0|52449.0|52472.0|52491.0|52498.0|52514.0|52519.0|52528.0|52538.0|52542.0|52548.0|52551.0|52566.0|52578.0|52584.0|52592.0|52599.0|52600.0|52604.0|52618.0|52625.0|52629.0|52635.0|52642.0|52646.0|52667.0|52679.0|52688.0|52696.0|52705.0|52707.0|52719.0|52720.0|52730.0|52740.0|52749.0|52762.0|52779.0|52780.0|52781.0|52789.0|52792.0|52804.0|52811.0|52820.0|52825.0|52831.0|52835.0|52841.0|52847.0|52857.0|52871.0|52881.0|52888.0|52913.0|52953.0|52954.0|52964.0|52965.0|52982.0|52983.0|52994.0|53008.0|53026.0|53033.0|53047.0|53061.0|53078.0|53084.0|53093.0|53094.0|53110.0|53121.0|53136.0|53137.0|53151.0|53157.0|53162.0|53176.0|53195.0|53201.0|53205.0|53211.0|53223.0|53235.0|53238.0|53240.0|53247.0|53257.0|53258.0|53262.0|53267.0|53269.0|53286.0|53295.0|53296.0|53297.0|53299.0|53319.0|53321.0|53329.0|53336.0|53340.0|53342.0|53353.0|53359.0|53363.0|53364.0|53372.0|53374.0|53375.0|53376.0|53393.0|53398.0|53406.0|53415.0|53422.0|53429.0|53430.0|53437.0|53458.0|53461.0|53470.0|53479.0|53490.0|53495.0|53511.0|53521.0|53522.0|53532.0|53553.0|53554.0|53558.0|53562.0|53563.0|53565.0|53592.0|53597.0|53602.0|53605.0|53614.0|53616.0|53619.0|53621.0|53629.0|53637.0|53639.0|53651.0|53654.0|53655.0|53659.0|53667.0|53673.0|53679.0|53683.0|53684.0|53687.0|53690.0|53693.0|53694.0|53697.0|53708.0|53710.0|53716.0|53718.0|53722.0|53727.0|53729.0|53737.0|53739.0|53744.0|53745.0|53748.0|53758.0|53769.0|53775.0|53780.0|53781.0|53800.0|53807.0|53810.0|53812.0|53829.0|53840.0|53841.0|53844.0|53854.0|53855.0|53866.0|53869.0|53877.0|53878.0|53901.0|53909.0|53919.0|53920.0|53924.0|53925.0|53930.0|53942.0|53943.0|53945.0|53951.0|53959.0|53963.0|53970.0|53976.0|54002.0|54006.0|54012.0|54016.0|54028.0|54034.0|54038.0|54041.0|54048.0|54053.0|54056.0|54066.0|54067.0|54069.0|54079.0|54099.0|54101.0|54118.0|54122.0|54126.0|54131.0|54146.0|54153.0|54154.0|54164.0|54174.0|54175.0|54194.0|54203.0|54211.0|54220.0|54230.0|54239.0|54249.0|54266.0|54271.0|54272.0|54274.0|54295.0|54302.0|54307.0|54308.0|54309.0|54316.0|54327.0|54336.0|54338.0|54354.0|54359.0|54378.0|54381.0|54385.0|54396.0|54397.0|54402.0|54409.0|54413.0|54417.0|54418.0|54420.0|54434.0|54435.0|54445.0|54447.0|54461.0|54467.0|54477.0|54478.0|54480.0|54481.0|54487.0|54507.0|54508.0|54510.0|54521.0|54534.0|54540.0|54542.0|54548.0|54563.0|54564.0|54566.0|54576.0|54578.0|54585.0|54588.0|54607.0|54617.0|54619.0|54623.0|54627.0|54629.0|54639.0|54650.0|54657.0|54667.0|54669.0|54671.0|54672.0|54673.0|54681.0|54688.0|54689.0|54692.0|54698.0|54702.0|54704.0|54707.0|54709.0|54718.0|54720.0|54726.0|54734.0|54736.0|54746.0|54748.0|54750.0|54754.0|54756.0|54761.0|54769.0|54770.0|54784.0|54790.0|54797.0|54800.0|54811.0|54815.0|54816.0|54821.0|54822.0|54829.0|54831.0|54834.0|54842.0|54843.0|54844.0|54850.0|54861.0|54866.0|54873.0|54874.0|54884.0|54885.0|54888.0|54891.0|54896.0|54903.0|54906.0|54908.0|54913.0|54914.0|54918.0|54925.0|54931.0|54942.0|54944.0|54945.0|54955.0|54960.0|54968.0|54972.0|54976.0|54993.0|54997.0|55002.0|55017.0|55019.0|55039.0|55043.0|55044.0|55049.0|55050.0|55061.0|55068.0|55083.0|55093.0|55094.0|55095.0|55100.0|55104.0|55105.0|55109.0|55115.0|55121.0|55124.0|55134.0|55148.0|55156.0|55159.0|55162.0|55164.0|55175.0|55177.0|55179.0|55180.0|55182.0|55183.0|55184.0|55186.0|55191.0|55193.0|55197.0|55202.0|55204.0|55209.0|55224.0|55229.0|55230.0|55234.0|55240.0|55243.0|55265.0|55267.0|55272.0|55274.0|55277.0|55281.0|55282.0|55293.0|55295.0|55299.0|55305.0|55306.0|55309.0|55313.0|55320.0|55321.0|55326.0|55336.0|55337.0|55347.0|55348.0|55355.0|55356.0|55361.0|55369.0|55376.0|55377.0|55378.0|55379.0|55387.0|55390.0|55406.0|55412.0|55414.0|55417.0|55420.0|55428.0|55431.0|55432.0|55440.0|55441.0|55452.0|55465.0|55474.0|55475.0|55476.0|55488.0|55492.0|55496.0|55504.0|55509.0|55518.0|55519.0|55523.0|55528.0|55533.0|55537.0|55538.0|55541.0|55548.0|55551.0|55554.0|55558.0|55574.0|55578.0|55598.0|55606.0|55608.0|55617.0|55619.0|55622.0|55629.0|55638.0|55639.0|55644.0|55649.0|55662.0|55666.0|55669.0|55679.0|55688.0|55689.0|55690.0|55704.0|55726.0|55727.0|55729.0|55730.0|55733.0|55736.0|55740.0|55746.0|55750.0|55752.0|55756.0|55765.0|55766.0|55769.0|55780.0|55781.0|55787.0|55788.0|55799.0|55800.0|55801.0|55808.0|55811.0|55820.0|55830.0|55831.0|55843.0|55847.0|55850.0|55852.0|55858.0|55861.0|55866.0|55871.0|55883.0|55884.0|55894.0|55904.0|55912.0|55916.0|55917.0|55926.0|55936.0|55937.0|55941.0|55945.0|55947.0|55948.0|55957.0|55962.0|55964.0|55967.0|55972.0|55977.0|55980.0|55981.0|55986.0|55990.0|56000.0|56003.0|56008.0|56010.0|56018.0|56023.0|56028.0|56038.0|56042.0|56054.0|56073.0|56077.0|56083.0|56087.0|56089.0|56102.0|56114.0|56122.0|56131.0|56144.0|56152.0|56157.0|56163.0|56176.0|56181.0|56183.0|56184.0|56189.0|56194.0|56195.0|56200.0|56204.0|56206.0|56216.0|56221.0|56228.0|56230.0|56245.0|56253.0|56255.0|56265.0|56271.0|56274.0|56282.0|56293.0|56305.0|56336.0|56356.0|56359.0|56365.0|56376.0|56384.0|56396.0|56420.0|56421.0|56422.0|56424.0|56439.0|56447.0|56454.0|56462.0|56463.0|56465.0|56472.0|56476.0|56481.0|56495.0|56506.0|56511.0|56512.0|56514.0|56517.0|56518.0|56526.0|56528.0|56546.0|56548.0|56554.0|56562.0|56568.0|56580.0|56586.0|56588.0|56596.0|56598.0|56603.0|56628.0|56629.0|56646.0|56650.0|56654.0|56666.0|56674.0|56682.0|56699.0|56710.0 -in.representative_income metadata_and_annual usd float 56717.0|56720.0|56726.0|56728.0|56736.0|56738.0|56750.0|56761.0|56770.0|56771.0|56780.0|56792.0|56802.0|56818.0|56843.0|56851.0|56854.0|56871.0|56881.0|56887.0|56890.0|56897.0|56898.0|56917.0|56919.0|56922.0|56925.0|56936.0|56947.0|56959.0|56967.0|56968.0|56969.0|56986.0|56998.0|56999.0|57000.0|57022.0|57027.0|57040.0|57043.0|57049.0|57054.0|57062.0|57065.0|57073.0|57079.0|57086.0|57093.0|57101.0|57110.0|57118.0|57124.0|57128.0|57139.0|57143.0|57146.0|57149.0|57157.0|57159.0|57174.0|57202.0|57215.0|57225.0|57254.0|57265.0|57266.0|57268.0|57270.0|57275.0|57285.0|57287.0|57299.0|57301.0|57306.0|57308.0|57316.0|57319.0|57321.0|57322.0|57328.0|57340.0|57344.0|57346.0|57348.0|57356.0|57360.0|57362.0|57366.0|57371.0|57378.0|57383.0|57418.0|57434.0|57461.0|57463.0|57476.0|57483.0|57486.0|57488.0|57497.0|57503.0|57505.0|57508.0|57513.0|57514.0|57518.0|57537.0|57538.0|57545.0|57581.0|57589.0|57591.0|57619.0|57622.0|57624.0|57634.0|57639.0|57644.0|57658.0|57666.0|57699.0|57719.0|57730.0|57751.0|57761.0|57780.0|57782.0|57786.0|57794.0|57805.0|57838.0|57859.0|57863.0|57866.0|57871.0|57882.0|57885.0|57897.0|57898.0|57901.0|57902.0|57912.0|57913.0|57922.0|57932.0|57937.0|57956.0|57962.0|57971.0|57988.0|58003.0|58004.0|58024.0|58032.0|58035.0|58056.0|58071.0|58073.0|58083.0|58093.0|58098.0|58117.0|58120.0|58122.0|58130.0|58152.0|58164.0|58170.0|58173.0|58174.0|58181.0|58191.0|58202.0|58204.0|58205.0|58225.0|58236.0|58246.0|58256.0|58277.0|58278.0|58316.0|58318.0|58329.0|58331.0|58337.0|58346.0|58350.0|58357.0|58367.0|58380.0|58386.0|58410.0|58411.0|58421.0|58454.0|58478.0|58503.0|58538.0|58545.0|58557.0|58566.0|58578.0|58583.0|58610.0|58636.0|58657.0|58662.0|58664.0|58679.0|58696.0|58720.0|58742.0|58773.0|58777.0|58793.0|58801.0|58825.0|58845.0|58881.0|58900.0|58921.0|58922.0|58952.0|58968.0|58992.0|58993.0|59026.0|59040.0|59048.0|59050.0|59070.0|59072.0|59073.0|59079.0|59124.0|59154.0|59178.0|59184.0|59194.0|59221.0|59233.0|59242.0|59243.0|59248.0|59296.0|59319.0|59340.0|59372.0|59385.0|59397.0|59437.0|59459.0|59469.0|59484.0|59514.0|59533.0|59568.0|59577.0|59585.0|59625.0|59662.0|59680.0|59740.0|59743.0|59750.0|59791.0|59796.0|59801.0|59837.0|59845.0|59858.0|59898.0|59902.0|59934.0|60006.0|60007.0|60017.0|60058.0|60093.0|60112.0|60159.0|60177.0|60184.0|60197.0|60218.0|60290.0|60312.0|60323.0|60345.0|60350.0|60366.0|60392.0|60407.0|60429.0|60443.0|60477.0|60482.0|60484.0|60506.0|60535.0|60543.0|60547.0|60581.0|60609.0|60615.0|60616.0|60640.0|60649.0|60650.0|60669.0|60679.0|60680.0|60682.0|60687.0|60710.0|60740.0|60760.0|60779.0|60786.0|60789.0|60791.0|60830.0|60841.0|60843.0|60850.0|60861.0|60864.0|60885.0|60888.0|60892.0|60908.0|60912.0|60918.0|60928.0|60939.0|61013.0|61014.0|61062.0|61068.0|61079.0|61122.0|61168.0|61187.0|61188.0|61196.0|61199.0|61208.0|61215.0|61225.0|61230.0|61235.0|61248.0|61251.0|61255.0|61262.0|61268.0|61273.0|61283.0|61294.0|61299.0|61305.0|61316.0|61326.0|61340.0|61342.0|61348.0|61349.0|61351.0|61370.0|61371.0|61376.0|61378.0|61382.0|61401.0|61410.0|61414.0|61415.0|61436.0|61445.0|61453.0|61455.0|61458.0|61468.0|61483.0|61494.0|61508.0|61527.0|61530.0|61536.0|61557.0|61563.0|61578.0|61590.0|61619.0|61630.0|61659.0|61669.0|61681.0|61695.0|61707.0|61710.0|61726.0|61749.0|61781.0|61784.0|61809.0|61811.0|61814.0|61815.0|61841.0|61852.0|61861.0|61864.0|61881.0|61884.0|61887.0|61889.0|61895.0|61905.0|61907.0|61918.0|61923.0|61927.0|61929.0|61935.0|61937.0|61938.0|61953.0|61959.0|61962.0|61990.0|61993.0|62011.0|62019.0|62023.0|62024.0|62033.0|62040.0|62043.0|62052.0|62062.0|62064.0|62073.0|62082.0|62084.0|62099.0|62109.0|62123.0|62134.0|62156.0|62160.0|62171.0|62186.0|62195.0|62200.0|62214.0|62221.0|62225.0|62227.0|62233.0|62245.0|62246.0|62248.0|62254.0|62257.0|62260.0|62264.0|62269.0|62270.0|62275.0|62285.0|62296.0|62300.0|62303.0|62311.0|62312.0|62318.0|62322.0|62336.0|62344.0|62368.0|62375.0|62380.0|62382.0|62397.0|62407.0|62417.0|62437.0|62443.0|62451.0|62463.0|62474.0|62486.0|62494.0|62498.0|62505.0|62520.0|62529.0|62538.0|62558.0|62559.0|62569.0|62573.0|62582.0|62591.0|62603.0|62609.0|62613.0|62635.0|62640.0|62643.0|62647.0|62648.0|62654.0|62657.0|62667.0|62669.0|62678.0|62691.0|62700.0|62713.0|62721.0|62730.0|62732.0|62733.0|62743.0|62744.0|62750.0|62753.0|62754.0|62760.0|62762.0|62774.0|62775.0|62781.0|62791.0|62807.0|62831.0|62839.0|62844.0|62851.0|62871.0|62882.0|62883.0|62893.0|62902.0|62915.0|62918.0|62926.0|62929.0|62937.0|62940.0|62948.0|62950.0|62969.0|62981.0|62988.0|62990.0|62996.0|63032.0|63033.0|63035.0|63055.0|63067.0|63084.0|63089.0|63093.0|63094.0|63099.0|63100.0|63112.0|63115.0|63118.0|63122.0|63141.0|63143.0|63144.0|63150.0|63151.0|63173.0|63177.0|63178.0|63181.0|63183.0|63185.0|63186.0|63192.0|63197.0|63208.0|63217.0|63224.0|63227.0|63235.0|63240.0|63255.0|63269.0|63275.0|63280.0|63296.0|63297.0|63305.0|63308.0|63310.0|63316.0|63321.0|63323.0|63329.0|63334.0|63336.0|63337.0|63338.0|63340.0|63341.0|63346.0|63348.0|63355.0|63361.0|63365.0|63370.0|63372.0|63376.0|63378.0|63382.0|63387.0|63395.0|63403.0|63409.0|63413.0|63414.0|63417.0|63420.0|63424.0|63433.0|63434.0|63437.0|63439.0|63445.0|63462.0|63468.0|63471.0|63478.0|63480.0|63484.0|63488.0|63491.0|63505.0|63507.0|63516.0|63518.0|63519.0|63532.0|63549.0|63553.0|63561.0|63562.0|63568.0|63589.0|63592.0|63602.0|63603.0|63613.0|63614.0|63616.0|63622.0|63634.0|63635.0|63641.0|63643.0|63645.0|63649.0|63650.0|63659.0|63668.0|63669.0|63671.0|63677.0|63680.0|63693.0|63698.0|63704.0|63715.0|63726.0|63727.0|63736.0|63740.0|63748.0|63749.0|63751.0|63752.0|63754.0|63764.0|63769.0|63781.0|63782.0|63784.0|63800.0|63806.0|63809.0|63823.0|63824.0|63828.0|63831.0|63835.0|63842.0|63857.0|63865.0|63867.0|63870.0|63871.0|63888.0|63891.0|63895.0|63902.0|63919.0|63921.0|63922.0|63923.0|63941.0|63950.0|63952.0|63963.0|63964.0|63965.0|63966.0|63971.0|63973.0|63983.0|63992.0|63999.0|64001.0|64003.0|64018.0|64019.0|64029.0|64031.0|64033.0|64043.0|64063.0|64065.0|64075.0|64076.0|64080.0|64086.0|64090.0|64094.0|64101.0|64104.0|64106.0|64109.0|64113.0|64115.0|64121.0|64131.0|64136.0|64146.0|64154.0|64160.0|64164.0|64167.0|64178.0|64180.0|64183.0|64187.0|64189.0|64195.0|64198.0|64200.0|64201.0|64215.0|64225.0|64230.0|64235.0|64246.0|64266.0|64268.0|64276.0|64277.0|64299.0|64311.0|64315.0|64326.0|64337.0|64342.0|64353.0|64377.0|64393.0|64402.0|64414.0|64416.0|64418.0|64428.0|64436.0|64437.0|64438.0|64439.0|64445.0|64448.0|64450.0|64456.0|64457.0|64460.0|64465.0|64468.0|64474.0|64478.0|64489.0|64490.0|64493.0|64514.0|64525.0|64526.0|64527.0|64538.0|64547.0|64552.0|64559.0|64568.0|64569.0|64574.0|64590.0|64591.0|64602.0|64605.0|64610.0|64616.0|64620.0|64622.0|64623.0|64629.0|64641.0|64643.0|64647.0|64654.0|64659.0|64662.0|64665.0|64666.0|64670.0|64671.0|64675.0|64681.0|64686.0|64690.0|64694.0|64700.0|64708.0|64718.0|64720.0|64729.0|64764.0|64770.0|64780.0|64785.0|64802.0|64807.0|64811.0|64831.0|64833.0|64836.0|64837.0|64839.0|64841.0|64850.0|64851.0|64861.0|64869.0|64879.0|64882.0|64890.0|64893.0|64896.0|64898.0|64899.0|64902.0|64906.0|64915.0|64921.0|64932.0|64941.0|64947.0|64953.0|64956.0|64958.0|64964.0|64967.0|64973.0|64980.0|64991.0|65003.0|65006.0|65012.0|65015.0|65016.0|65033.0|65044.0|65048.0|65051.0|65055.0|65057.0|65062.0|65073.0|65083.0|65094.0|65107.0|65122.0|65144.0|65154.0|65159.0|65160.0|65184.0|65188.0|65206.0|65213.0|65219.0|65228.0|65260.0|65265.0|65266.0|65267.0|65269.0|65276.0|65278.0|65291.0|65309.0|65319.0|65322.0|65330.0|65333.0|65343.0|65356.0|65369.0|65370.0|65371.0|65394.0|65396.0|65421.0|65425.0|65433.0|65436.0|65456.0|65476.0|65477.0|65478.0|65480.0|65491.0|65497.0|65502.0|65509.0|65510.0|65523.0|65528.0|65542.0|65558.0|65563.0|65570.0|65577.0|65579.0|65597.0|65598.0|65599.0|65600.0|65607.0|65617.0|65619.0|65620.0|65623.0|65631.0|65639.0|65653.0|65660.0|65674.0|65676.0|65680.0|65690.0|65700.0|65702.0|65710.0|65714.0|65720.0|65730.0|65738.0|65740.0|65755.0|65757.0|65759.0|65760.0|65803.0|65805.0|65836.0|65837.0|65841.0|65851.0|65854.0|65858.0|65860.0|65861.0|65871.0|65872.0 -in.representative_income metadata_and_annual usd float 65875.0|65876.0|65887.0|65892.0|65902.0|65908.0|65909.0|65910.0|65919.0|65946.0|65952.0|65962.0|65988.0|66013.0|66016.0|66017.0|66019.0|66050.0|66054.0|66055.0|66063.0|66064.0|66081.0|66084.0|66106.0|66116.0|66120.0|66124.0|66150.0|66158.0|66165.0|66167.0|66177.0|66178.0|66232.0|66240.0|66253.0|66262.0|66266.0|66271.0|66286.0|66287.0|66308.0|66317.0|66322.0|66335.0|66336.0|66352.0|66361.0|66367.0|66384.0|66397.0|66427.0|66440.0|66446.0|66461.0|66467.0|66474.0|66481.0|66504.0|66506.0|66527.0|66528.0|66556.0|66567.0|66580.0|66604.0|66605.0|66608.0|66619.0|66631.0|66639.0|66643.0|66652.0|66672.0|66683.0|66693.0|66720.0|66730.0|66745.0|66769.0|66773.0|66776.0|66799.0|66801.0|66809.0|66811.0|66833.0|66838.0|66841.0|66848.0|66852.0|66872.0|66876.0|66880.0|66881.0|66890.0|66909.0|66913.0|66936.0|66957.0|66967.0|66968.0|66973.0|66990.0|66993.0|66994.0|67006.0|67009.0|67011.0|67013.0|67017.0|67026.0|67044.0|67054.0|67055.0|67073.0|67076.0|67097.0|67107.0|67110.0|67112.0|67126.0|67136.0|67145.0|67151.0|67165.0|67178.0|67195.0|67215.0|67216.0|67219.0|67230.0|67240.0|67250.0|67251.0|67267.0|67270.0|67273.0|67280.0|67284.0|67287.0|67302.0|67316.0|67326.0|67354.0|67356.0|67374.0|67379.0|67400.0|67402.0|67407.0|67411.0|67413.0|67431.0|67443.0|67466.0|67477.0|67488.0|67498.0|67518.0|67519.0|67539.0|67540.0|67548.0|67550.0|67551.0|67552.0|67573.0|67579.0|67587.0|67591.0|67600.0|67619.0|67620.0|67621.0|67634.0|67653.0|67659.0|67660.0|67680.0|67690.0|67694.0|67724.0|67730.0|67740.0|67746.0|67759.0|67761.0|67766.0|67773.0|67797.0|67818.0|67821.0|67831.0|67841.0|67884.0|67895.0|67912.0|67917.0|67921.0|67922.0|67941.0|67948.0|67959.0|67963.0|67970.0|67973.0|67986.0|67990.0|68003.0|68016.0|68022.0|68026.0|68064.0|68070.0|68073.0|68075.0|68080.0|68084.0|68085.0|68089.0|68091.0|68110.0|68118.0|68144.0|68145.0|68178.0|68179.0|68180.0|68185.0|68189.0|68207.0|68215.0|68222.0|68232.0|68233.0|68235.0|68239.0|68241.0|68242.0|68250.0|68251.0|68264.0|68275.0|68282.0|68286.0|68323.0|68349.0|68350.0|68364.0|68377.0|68380.0|68385.0|68387.0|68391.0|68393.0|68398.0|68402.0|68404.0|68406.0|68412.0|68414.0|68417.0|68444.0|68447.0|68468.0|68478.0|68488.0|68491.0|68497.0|68499.0|68501.0|68509.0|68512.0|68515.0|68520.0|68529.0|68547.0|68550.0|68559.0|68571.0|68572.0|68581.0|68589.0|68612.0|68623.0|68625.0|68626.0|68641.0|68649.0|68654.0|68655.0|68668.0|68679.0|68686.0|68695.0|68710.0|68718.0|68728.0|68729.0|68733.0|68740.0|68742.0|68750.0|68760.0|68761.0|68765.0|68776.0|68781.0|68783.0|68787.0|68791.0|68797.0|68802.0|68811.0|68813.0|68826.0|68828.0|68829.0|68830.0|68839.0|68856.0|68858.0|68866.0|68874.0|68880.0|68892.0|68908.0|68911.0|68912.0|68915.0|68919.0|68923.0|68929.0|68934.0|68937.0|68950.0|68966.0|68977.0|68979.0|68983.0|68988.0|68993.0|68997.0|69002.0|69003.0|69004.0|69007.0|69024.0|69028.0|69033.0|69035.0|69042.0|69046.0|69050.0|69053.0|69065.0|69077.0|69087.0|69094.0|69099.0|69118.0|69119.0|69125.0|69128.0|69129.0|69131.0|69138.0|69141.0|69149.0|69150.0|69161.0|69162.0|69164.0|69173.0|69211.0|69225.0|69231.0|69235.0|69247.0|69258.0|69262.0|69276.0|69286.0|69288.0|69290.0|69296.0|69313.0|69330.0|69340.0|69346.0|69365.0|69417.0|69441.0|69442.0|69464.0|69475.0|69478.0|69485.0|69498.0|69517.0|69518.0|69528.0|69535.0|69548.0|69560.0|69561.0|69571.0|69614.0|69623.0|69643.0|69675.0|69678.0|69687.0|69705.0|69709.0|69710.0|69721.0|69730.0|69747.0|69774.0|69778.0|69788.0|69799.0|69802.0|69830.0|69836.0|69850.0|69877.0|69880.0|69881.0|69903.0|69906.0|69912.0|69922.0|69932.0|69942.0|70003.0|70026.0|70031.0|70035.0|70096.0|70121.0|70123.0|70128.0|70131.0|70145.0|70204.0|70205.0|70252.0|70272.0|70285.0|70311.0|70386.0|70397.0|70407.0|70417.0|70418.0|70490.0|70518.0|70553.0|70555.0|70559.0|70564.0|70595.0|70609.0|70626.0|70633.0|70654.0|70659.0|70663.0|70680.0|70699.0|70710.0|70716.0|70725.0|70740.0|70751.0|70758.0|70764.0|70770.0|70785.0|70791.0|70799.0|70804.0|70811.0|70817.0|70826.0|70861.0|70862.0|70913.0|70943.0|70944.0|70963.0|70966.0|70975.0|70987.0|70993.0|70995.0|71013.0|71028.0|71041.0|71064.0|71081.0|71116.0|71117.0|71123.0|71155.0|71170.0|71190.0|71277.0|71299.0|71315.0|71336.0|71342.0|71365.0|71377.0|71384.0|71385.0|71397.0|71419.0|71451.0|71462.0|71496.0|71502.0|71508.0|71518.0|71569.0|71578.0|71583.0|71599.0|71602.0|71607.0|71609.0|71619.0|71644.0|71681.0|71686.0|71690.0|71706.0|71711.0|71724.0|71737.0|71744.0|71751.0|71758.0|71771.0|71776.0|71819.0|71821.0|71842.0|71852.0|71871.0|71878.0|71882.0|71892.0|71899.0|71900.0|71905.0|71912.0|71921.0|71924.0|71943.0|71973.0|71975.0|71983.0|71984.0|71996.0|72006.0|72013.0|72023.0|72028.0|72061.0|72068.0|72082.0|72091.0|72094.0|72100.0|72135.0|72139.0|72143.0|72145.0|72175.0|72201.0|72219.0|72229.0|72241.0|72256.0|72263.0|72267.0|72293.0|72325.0|72337.0|72346.0|72382.0|72391.0|72402.0|72408.0|72413.0|72415.0|72418.0|72423.0|72427.0|72434.0|72437.0|72445.0|72448.0|72452.0|72460.0|72462.0|72478.0|72479.0|72490.0|72497.0|72500.0|72503.0|72528.0|72557.0|72559.0|72565.0|72608.0|72611.0|72615.0|72640.0|72652.0|72655.0|72708.0|72716.0|72726.0|72730.0|72741.0|72742.0|72757.0|72769.0|72770.0|72800.0|72801.0|72802.0|72810.0|72811.0|72820.0|72825.0|72831.0|72835.0|72845.0|72856.0|72872.0|72873.0|72878.0|72895.0|72898.0|72909.0|72916.0|72919.0|72924.0|72926.0|72936.0|72947.0|72962.0|72965.0|72979.0|72983.0|72984.0|72996.0|72999.0|73005.0|73012.0|73015.0|73016.0|73027.0|73029.0|73031.0|73039.0|73040.0|73042.0|73043.0|73048.0|73074.0|73078.0|73080.0|73099.0|73109.0|73113.0|73119.0|73124.0|73125.0|73130.0|73145.0|73160.0|73185.0|73205.0|73206.0|73211.0|73220.0|73233.0|73236.0|73242.0|73254.0|73264.0|73269.0|73271.0|73274.0|73276.0|73278.0|73285.0|73298.0|73316.0|73326.0|73336.0|73337.0|73348.0|73364.0|73367.0|73377.0|73387.0|73388.0|73400.0|73407.0|73418.0|73421.0|73428.0|73439.0|73445.0|73460.0|73481.0|73483.0|73488.0|73494.0|73505.0|73506.0|73515.0|73516.0|73519.0|73526.0|73528.0|73532.0|73548.0|73553.0|73580.0|73594.0|73606.0|73619.0|73620.0|73625.0|73639.0|73650.0|73670.0|73673.0|73687.0|73698.0|73703.0|73710.0|73714.0|73717.0|73729.0|73738.0|73741.0|73744.0|73746.0|73759.0|73764.0|73775.0|73780.0|73781.0|73791.0|73796.0|73800.0|73811.0|73818.0|73821.0|73832.0|73836.0|73839.0|73872.0|73873.0|73884.0|73892.0|73893.0|73897.0|73898.0|73915.0|73917.0|73925.0|73929.0|73948.0|73958.0|73959.0|73960.0|73971.0|73981.0|73991.0|73993.0|74002.0|74003.0|74014.0|74017.0|74018.0|74025.0|74027.0|74043.0|74044.0|74049.0|74054.0|74055.0|74058.0|74065.0|74066.0|74074.0|74077.0|74089.0|74094.0|74104.0|74106.0|74110.0|74114.0|74117.0|74128.0|74130.0|74131.0|74143.0|74144.0|74147.0|74151.0|74157.0|74160.0|74166.0|74170.0|74173.0|74175.0|74182.0|74185.0|74192.0|74195.0|74200.0|74202.0|74216.0|74218.0|74224.0|74229.0|74230.0|74234.0|74239.0|74246.0|74254.0|74261.0|74264.0|74270.0|74276.0|74285.0|74306.0|74307.0|74310.0|74312.0|74316.0|74326.0|74327.0|74328.0|74331.0|74348.0|74357.0|74367.0|74371.0|74372.0|74376.0|74381.0|74390.0|74397.0|74402.0|74408.0|74417.0|74419.0|74433.0|74438.0|74439.0|74448.0|74466.0|74470.0|74476.0|74497.0|74508.0|74509.0|74511.0|74514.0|74551.0|74552.0|74557.0|74563.0|74581.0|74582.0|74594.0|74602.0|74609.0|74614.0|74616.0|74619.0|74639.0|74649.0|74651.0|74655.0|74660.0|74666.0|74674.0|74679.0|74682.0|74687.0|74690.0|74708.0|74714.0|74718.0|74719.0|74725.0|74739.0|74744.0|74757.0|74759.0|74760.0|74761.0|74771.0|74779.0|74781.0|74782.0|74790.0|74792.0|74798.0|74800.0|74801.0|74802.0|74803.0|74821.0|74824.0|74831.0|74832.0|74843.0|74847.0|74852.0|74862.0|74863.0|74873.0|74888.0|74892.0|74895.0|74898.0|74899.0|74909.0|74926.0|74927.0|74931.0|74934.0|74935.0|74940.0|74948.0|74950.0|74952.0|74961.0|74963.0|74968.0|74969.0|74972.0|74973.0|74981.0|74983.0|74993.0|75012.0|75013.0|75014.0|75017.0|75023.0|75035.0|75049.0|75054.0|75058.0|75062.0|75064.0|75088.0|75089.0|75090.0|75098.0|75104.0|75109.0|75114.0|75117.0|75119.0|75124.0|75136.0|75143.0|75146.0|75156.0|75158.0|75167.0|75175.0|75184.0|75190.0|75193.0|75195.0|75201.0|75203.0|75213.0|75224.0|75225.0 -in.representative_income metadata_and_annual usd float 75238.0|75244.0|75245.0|75247.0|75255.0|75275.0|75279.0|75292.0|75296.0|75298.0|75299.0|75303.0|75310.0|75313.0|75324.0|75327.0|75337.0|75341.0|75363.0|75368.0|75373.0|75381.0|75390.0|75395.0|75410.0|75417.0|75419.0|75421.0|75430.0|75435.0|75437.0|75440.0|75449.0|75450.0|75468.0|75474.0|75481.0|75484.0|75505.0|75517.0|75523.0|75526.0|75544.0|75545.0|75560.0|75567.0|75574.0|75575.0|75579.0|75585.0|75594.0|75605.0|75609.0|75611.0|75616.0|75625.0|75626.0|75640.0|75647.0|75655.0|75660.0|75666.0|75668.0|75670.0|75671.0|75695.0|75697.0|75698.0|75700.0|75713.0|75720.0|75745.0|75761.0|75774.0|75781.0|75784.0|75791.0|75795.0|75796.0|75801.0|75806.0|75811.0|75813.0|75821.0|75822.0|75828.0|75832.0|75846.0|75849.0|75852.0|75854.0|75856.0|75860.0|75870.0|75871.0|75872.0|75881.0|75882.0|75892.0|75893.0|75894.0|75902.0|75903.0|75912.0|75914.0|75923.0|75924.0|75936.0|75942.0|75946.0|75947.0|75952.0|75956.0|75964.0|75979.0|75985.0|75987.0|75988.0|75993.0|76000.0|76004.0|76005.0|76026.0|76044.0|76047.0|76057.0|76064.0|76066.0|76083.0|76086.0|76090.0|76094.0|76107.0|76114.0|76121.0|76129.0|76143.0|76162.0|76164.0|76165.0|76166.0|76172.0|76174.0|76183.0|76184.0|76193.0|76194.0|76195.0|76215.0|76227.0|76248.0|76250.0|76271.0|76281.0|76306.0|76309.0|76324.0|76328.0|76333.0|76335.0|76338.0|76343.0|76347.0|76354.0|76356.0|76367.0|76376.0|76390.0|76398.0|76407.0|76430.0|76431.0|76465.0|76483.0|76493.0|76498.0|76502.0|76512.0|76514.0|76518.0|76526.0|76543.0|76559.0|76579.0|76584.0|76585.0|76606.0|76612.0|76620.0|76630.0|76655.0|76670.0|76688.0|76691.0|76714.0|76724.0|76735.0|76740.0|76746.0|76753.0|76757.0|76760.0|76767.0|76771.0|76797.0|76805.0|76811.0|76813.0|76817.0|76821.0|76831.0|76832.0|76834.0|76838.0|76852.0|76864.0|76874.0|76902.0|76916.0|76923.0|76929.0|76933.0|76947.0|76957.0|76967.0|76973.0|76986.0|76996.0|76997.0|76999.0|77031.0|77036.0|77059.0|77077.0|77102.0|77111.0|77114.0|77127.0|77142.0|77145.0|77170.0|77172.0|77197.0|77204.0|77240.0|77250.0|77259.0|77265.0|77267.0|77269.0|77282.0|77288.0|77289.0|77297.0|77310.0|77323.0|77346.0|77353.0|77362.0|77364.0|77368.0|77379.0|77405.0|77409.0|77411.0|77421.0|77428.0|77440.0|77449.0|77462.0|77472.0|77473.0|77497.0|77524.0|77565.0|77577.0|77586.0|77589.0|77598.0|77599.0|77621.0|77664.0|77680.0|77700.0|77717.0|77728.0|77730.0|77753.0|77756.0|77761.0|77771.0|77781.0|77791.0|77804.0|77825.0|77830.0|77858.0|77875.0|77882.0|77885.0|77917.0|77933.0|77947.0|77956.0|77964.0|77978.0|77993.0|77998.0|78009.0|78034.0|78040.0|78041.0|78043.0|78052.0|78060.0|78083.0|78084.0|78118.0|78125.0|78132.0|78143.0|78145.0|78147.0|78157.0|78184.0|78199.0|78231.0|78252.0|78266.0|78286.0|78311.0|78313.0|78334.0|78357.0|78362.0|78378.0|78385.0|78411.0|78422.0|78442.0|78443.0|78469.0|78476.0|78488.0|78568.0|78574.0|78604.0|78609.0|78626.0|78648.0|78658.0|78666.0|78669.0|78670.0|78684.0|78690.0|78737.0|78741.0|78766.0|78779.0|78791.0|78797.0|78801.0|78812.0|78822.0|78842.0|78875.0|78892.0|78898.0|78901.0|78913.0|78929.0|78937.0|78943.0|78963.0|78974.0|78985.0|78988.0|78990.0|79006.0|79007.0|79037.0|79048.0|79091.0|79094.0|79095.0|79106.0|79125.0|79138.0|79164.0|79190.0|79201.0|79220.0|79222.0|79242.0|79251.0|79253.0|79267.0|79307.0|79317.0|79339.0|79340.0|79370.0|79412.0|79423.0|79435.0|79463.0|79464.0|79498.0|79517.0|79525.0|79545.0|79577.0|79628.0|79631.0|79639.0|79669.0|79728.0|79739.0|79758.0|79779.0|79793.0|79833.0|79843.0|79847.0|79864.0|79876.0|79897.0|79902.0|79918.0|79937.0|79940.0|79972.0|80041.0|80079.0|80084.0|80144.0|80187.0|80196.0|80203.0|80240.0|80255.0|80274.0|80279.0|80294.0|80309.0|80386.0|80401.0|80409.0|80474.0|80488.0|80495.0|80498.0|80513.0|80559.0|80572.0|80584.0|80593.0|80598.0|80608.0|80610.0|80614.0|80624.0|80630.0|80648.0|80670.0|80681.0|80711.0|80741.0|80783.0|80798.0|80819.0|80851.0|80862.0|80863.0|80865.0|80872.0|80877.0|80888.0|80903.0|80921.0|80923.0|80938.0|80943.0|80969.0|80996.0|81035.0|81036.0|81045.0|81046.0|81064.0|81067.0|81074.0|81092.0|81131.0|81135.0|81143.0|81165.0|81175.0|81183.0|81185.0|81216.0|81239.0|81249.0|81260.0|81274.0|81295.0|81300.0|81313.0|81332.0|81337.0|81341.0|81400.0|81418.0|81424.0|81457.0|81464.0|81484.0|81511.0|81516.0|81519.0|81522.0|81526.0|81552.0|81567.0|81582.0|81597.0|81608.0|81639.0|81653.0|81657.0|81691.0|81721.0|81732.0|81733.0|81744.0|81748.0|81753.0|81754.0|81785.0|81794.0|81795.0|81801.0|81816.0|81825.0|81838.0|81839.0|81845.0|81860.0|81861.0|81862.0|81872.0|81899.0|81903.0|81926.0|81968.0|81980.0|81995.0|82004.0|82012.0|82064.0|82103.0|82116.0|82120.0|82125.0|82127.0|82133.0|82135.0|82145.0|82148.0|82155.0|82169.0|82170.0|82175.0|82210.0|82226.0|82228.0|82247.0|82259.0|82276.0|82280.0|82310.0|82312.0|82351.0|82353.0|82357.0|82376.0|82377.0|82387.0|82397.0|82399.0|82407.0|82408.0|82416.0|82418.0|82430.0|82441.0|82442.0|82444.0|82451.0|82462.0|82471.0|82478.0|82506.0|82516.0|82526.0|82527.0|82528.0|82529.0|82534.0|82537.0|82548.0|82569.0|82571.0|82576.0|82589.0|82609.0|82610.0|82612.0|82623.0|82628.0|82630.0|82650.0|82655.0|82656.0|82660.0|82666.0|82671.0|82677.0|82710.0|82712.0|82731.0|82743.0|82761.0|82792.0|82796.0|82826.0|82828.0|82840.0|82842.0|82865.0|82872.0|82881.0|82894.0|82923.0|82935.0|82952.0|82956.0|82997.0|83001.0|83003.0|83013.0|83019.0|83024.0|83029.0|83031.0|83063.0|83064.0|83067.0|83084.0|83088.0|83095.0|83102.0|83103.0|83121.0|83139.0|83142.0|83145.0|83165.0|83186.0|83194.0|83196.0|83200.0|83208.0|83211.0|83229.0|83246.0|83257.0|83261.0|83282.0|83307.0|83324.0|83326.0|83329.0|83332.0|83337.0|83357.0|83409.0|83428.0|83438.0|83445.0|83458.0|83465.0|83478.0|83482.0|83493.0|83495.0|83499.0|83506.0|83514.0|83527.0|83531.0|83532.0|83546.0|83569.0|83615.0|83630.0|83643.0|83647.0|83650.0|83659.0|83666.0|83672.0|83680.0|83714.0|83718.0|83722.0|83729.0|83731.0|83736.0|83740.0|83741.0|83746.0|83751.0|83764.0|83792.0|83809.0|83842.0|83844.0|83857.0|83873.0|83888.0|83894.0|83947.0|83953.0|83968.0|83973.0|84046.0|84050.0|84051.0|84064.0|84074.0|84080.0|84095.0|84136.0|84145.0|84156.0|84157.0|84159.0|84168.0|84178.0|84206.0|84212.0|84216.0|84226.0|84246.0|84263.0|84266.0|84269.0|84287.0|84298.0|84308.0|84309.0|84311.0|84319.0|84347.0|84348.0|84373.0|84379.0|84381.0|84384.0|84385.0|84390.0|84396.0|84398.0|84411.0|84418.0|84438.0|84452.0|84474.0|84482.0|84497.0|84512.0|84526.0|84529.0|84538.0|84549.0|84553.0|84576.0|84586.0|84596.0|84598.0|84623.0|84632.0|84643.0|84674.0|84685.0|84695.0|84706.0|84726.0|84751.0|84771.0|84799.0|84816.0|84824.0|84837.0|84842.0|84852.0|84891.0|84909.0|84925.0|84928.0|84938.0|84954.0|84959.0|85014.0|85017.0|85028.0|85033.0|85054.0|85059.0|85069.0|85076.0|85082.0|85107.0|85125.0|85128.0|85140.0|85141.0|85155.0|85160.0|85163.0|85170.0|85175.0|85178.0|85185.0|85191.0|85212.0|85228.0|85232.0|85241.0|85249.0|85260.0|85264.0|85269.0|85279.0|85285.0|85287.0|85296.0|85312.0|85314.0|85318.0|85322.0|85336.0|85356.0|85358.0|85377.0|85398.0|85423.0|85427.0|85430.0|85433.0|85446.0|85448.0|85454.0|85465.0|85466.0|85477.0|85486.0|85539.0|85541.0|85544.0|85575.0|85590.0|85608.0|85611.0|85612.0|85621.0|85623.0|85634.0|85641.0|85643.0|85660.0|85665.0|85670.0|85681.0|85714.0|85715.0|85722.0|85740.0|85743.0|85753.0|85767.0|85842.0|85843.0|85862.0|85872.0|85876.0|85878.0|85880.0|85883.0|85898.0|85903.0|85908.0|85917.0|85920.0|85929.0|85961.0|85963.0|85967.0|86005.0|86006.0|86013.0|86019.0|86033.0|86035.0|86036.0|86037.0|86044.0|86056.0|86060.0|86064.0|86090.0|86114.0|86126.0|86135.0|86149.0|86156.0|86161.0|86177.0|86183.0|86198.0|86211.0|86218.0|86226.0|86230.0|86246.0|86263.0|86276.0|86298.0|86302.0|86340.0|86362.0|86398.0|86413.0|86415.0|86424.0|86425.0|86440.0|86458.0|86466.0|86468.0|86477.0|86478.0|86491.0|86499.0|86515.0|86519.0|86527.0|86530.0|86539.0|86542.0|86552.0|86553.0|86559.0|86562.0|86569.0|86583.0|86590.0|86599.0|86600.0|86636.0|86638.0|86647.0|86652.0|86653.0|86670.0|86681.0|86688.0|86690.0|86692.0|86694.0|86696.0|86697.0|86704.0|86714.0|86729.0|86730.0|86742.0|86762.0|86771.0|86773.0|86776.0|86786.0|86789.0|86794.0|86795.0|86799.0|86802.0|86807.0 -in.representative_income metadata_and_annual usd float 86822.0|86839.0|86842.0|86847.0|86859.0|86879.0|86893.0|86911.0|86924.0|86928.0|86933.0|86935.0|86951.0|86952.0|86953.0|86973.0|86975.0|86989.0|86995.0|87001.0|87005.0|87013.0|87016.0|87025.0|87026.0|87032.0|87043.0|87057.0|87075.0|87080.0|87095.0|87106.0|87112.0|87118.0|87125.0|87128.0|87133.0|87155.0|87164.0|87174.0|87176.0|87183.0|87196.0|87197.0|87209.0|87226.0|87236.0|87237.0|87247.0|87259.0|87271.0|87273.0|87277.0|87290.0|87297.0|87323.0|87327.0|87343.0|87353.0|87366.0|87377.0|87378.0|87379.0|87383.0|87398.0|87416.0|87419.0|87420.0|87422.0|87446.0|87465.0|87493.0|87508.0|87518.0|87523.0|87529.0|87533.0|87537.0|87543.0|87551.0|87557.0|87571.0|87573.0|87580.0|87583.0|87585.0|87595.0|87616.0|87626.0|87634.0|87637.0|87640.0|87641.0|87648.0|87650.0|87659.0|87673.0|87681.0|87690.0|87694.0|87700.0|87705.0|87707.0|87715.0|87728.0|87734.0|87739.0|87741.0|87755.0|87767.0|87782.0|87787.0|87795.0|87802.0|87806.0|87807.0|87828.0|87839.0|87859.0|87869.0|87880.0|87883.0|87889.0|87890.0|87893.0|87900.0|87903.0|87910.0|87919.0|87932.0|87937.0|87945.0|87950.0|87954.0|87963.0|87972.0|87984.0|87986.0|87997.0|88003.0|88004.0|88007.0|88023.0|88024.0|88034.0|88040.0|88044.0|88059.0|88076.0|88085.0|88095.0|88096.0|88102.0|88127.0|88130.0|88136.0|88137.0|88152.0|88155.0|88159.0|88165.0|88173.0|88177.0|88184.0|88189.0|88190.0|88216.0|88220.0|88254.0|88271.0|88274.0|88281.0|88292.0|88296.0|88303.0|88307.0|88308.0|88323.0|88329.0|88345.0|88354.0|88355.0|88376.0|88382.0|88383.0|88385.0|88386.0|88398.0|88404.0|88407.0|88415.0|88418.0|88429.0|88436.0|88440.0|88447.0|88456.0|88458.0|88463.0|88469.0|88473.0|88495.0|88499.0|88514.0|88517.0|88519.0|88529.0|88533.0|88535.0|88540.0|88545.0|88559.0|88564.0|88566.0|88587.0|88588.0|88599.0|88601.0|88602.0|88608.0|88609.0|88619.0|88620.0|88623.0|88631.0|88640.0|88646.0|88650.0|88653.0|88660.0|88685.0|88692.0|88728.0|88752.0|88756.0|88761.0|88775.0|88792.0|88814.0|88819.0|88828.0|88832.0|88840.0|88843.0|88848.0|88851.0|88858.0|88862.0|88863.0|88869.0|88883.0|88890.0|88898.0|88932.0|88956.0|88959.0|88974.0|88976.0|88989.0|88994.0|88998.0|89005.0|89008.0|89009.0|89015.0|89030.0|89059.0|89061.0|89064.0|89066.0|89072.0|89095.0|89096.0|89101.0|89105.0|89114.0|89118.0|89128.0|89150.0|89151.0|89166.0|89173.0|89174.0|89176.0|89178.0|89188.0|89200.0|89204.0|89230.0|89236.0|89240.0|89244.0|89258.0|89272.0|89273.0|89291.0|89292.0|89293.0|89295.0|89301.0|89305.0|89306.0|89324.0|89333.0|89334.0|89336.0|89343.0|89363.0|89364.0|89365.0|89375.0|89378.0|89384.0|89386.0|89398.0|89406.0|89423.0|89427.0|89429.0|89434.0|89437.0|89438.0|89441.0|89463.0|89471.0|89472.0|89483.0|89485.0|89508.0|89517.0|89524.0|89549.0|89550.0|89567.0|89571.0|89582.0|89590.0|89603.0|89621.0|89630.0|89637.0|89642.0|89660.0|89665.0|89673.0|89679.0|89700.0|89705.0|89711.0|89714.0|89716.0|89722.0|89731.0|89738.0|89742.0|89746.0|89751.0|89759.0|89778.0|89783.0|89792.0|89802.0|89804.0|89808.0|89810.0|89823.0|89826.0|89829.0|89832.0|89839.0|89842.0|89848.0|89851.0|89852.0|89862.0|89891.0|89893.0|89895.0|89899.0|89903.0|89905.0|89906.0|89912.0|89917.0|89921.0|89923.0|89928.0|89930.0|89943.0|89953.0|89960.0|89963.0|89973.0|89979.0|89982.0|89988.0|90004.0|90009.0|90017.0|90024.0|90046.0|90054.0|90069.0|90079.0|90088.0|90090.0|90095.0|90107.0|90116.0|90122.0|90125.0|90128.0|90137.0|90140.0|90160.0|90165.0|90180.0|90216.0|90219.0|90221.0|90223.0|90228.0|90230.0|90252.0|90274.0|90277.0|90286.0|90303.0|90327.0|90337.0|90338.0|90340.0|90348.0|90349.0|90351.0|90353.0|90355.0|90357.0|90360.0|90378.0|90386.0|90392.0|90397.0|90405.0|90407.0|90414.0|90438.0|90443.0|90457.0|90461.0|90467.0|90478.0|90485.0|90491.0|90535.0|90543.0|90546.0|90562.0|90570.0|90576.0|90593.0|90608.0|90610.0|90612.0|90632.0|90634.0|90640.0|90643.0|90651.0|90654.0|90661.0|90665.0|90683.0|90697.0|90702.0|90717.0|90728.0|90738.0|90759.0|90760.0|90761.0|90763.0|90764.0|90770.0|90771.0|90779.0|90781.0|90802.0|90814.0|90819.0|90829.0|90832.0|90835.0|90847.0|90854.0|90862.0|90864.0|90878.0|90881.0|90892.0|90900.0|90907.0|90912.0|90913.0|90943.0|90953.0|90970.0|90974.0|90976.0|90984.0|90994.0|90996.0|91000.0|91004.0|91005.0|91012.0|91023.0|91029.0|91030.0|91055.0|91077.0|91084.0|91090.0|91105.0|91114.0|91115.0|91135.0|91145.0|91150.0|91159.0|91186.0|91190.0|91216.0|91222.0|91232.0|91234.0|91241.0|91243.0|91244.0|91254.0|91275.0|91277.0|91283.0|91287.0|91299.0|91307.0|91329.0|91334.0|91351.0|91355.0|91361.0|91366.0|91386.0|91394.0|91398.0|91407.0|91418.0|91424.0|91428.0|91440.0|91445.0|91469.0|91487.0|91495.0|91499.0|91505.0|91509.0|91510.0|91511.0|91516.0|91523.0|91531.0|91538.0|91540.0|91542.0|91558.0|91566.0|91570.0|91580.0|91583.0|91587.0|91598.0|91603.0|91610.0|91619.0|91620.0|91645.0|91670.0|91674.0|91675.0|91678.0|91698.0|91717.0|91738.0|91751.0|91754.0|91761.0|91762.0|91764.0|91768.0|91772.0|91778.0|91780.0|91783.0|91802.0|91804.0|91810.0|91814.0|91820.0|91840.0|91841.0|91873.0|91878.0|91883.0|91887.0|91889.0|91904.0|91908.0|91926.0|91933.0|91940.0|91943.0|91962.0|91974.0|91977.0|91984.0|91993.0|91995.0|92002.0|92004.0|92005.0|92006.0|92014.0|92016.0|92018.0|92034.0|92044.0|92057.0|92067.0|92075.0|92082.0|92115.0|92119.0|92125.0|92131.0|92153.0|92171.0|92173.0|92185.0|92191.0|92216.0|92225.0|92251.0|92272.0|92287.0|92291.0|92297.0|92306.0|92315.0|92325.0|92331.0|92336.0|92337.0|92367.0|92371.0|92383.0|92386.0|92394.0|92404.0|92408.0|92418.0|92424.0|92428.0|92448.0|92456.0|92457.0|92467.0|92469.0|92477.0|92478.0|92488.0|92489.0|92493.0|92514.0|92529.0|92532.0|92593.0|92596.0|92600.0|92605.0|92608.0|92640.0|92666.0|92681.0|92686.0|92690.0|92704.0|92726.0|92728.0|92735.0|92747.0|92748.0|92769.0|92789.0|92800.0|92805.0|92816.0|92831.0|92832.0|92837.0|92841.0|92877.0|92890.0|92893.0|92903.0|92924.0|92933.0|92942.0|92954.0|92961.0|92962.0|92963.0|92984.0|92992.0|93006.0|93012.0|93016.0|93017.0|93028.0|93034.0|93039.0|93050.0|93060.0|93085.0|93086.0|93088.0|93094.0|93111.0|93137.0|93140.0|93153.0|93160.0|93164.0|93176.0|93180.0|93182.0|93212.0|93266.0|93267.0|93279.0|93283.0|93284.0|93299.0|93307.0|93331.0|93364.0|93367.0|93390.0|93396.0|93400.0|93402.0|93406.0|93411.0|93418.0|93419.0|93428.0|93430.0|93441.0|93442.0|93444.0|93449.0|93460.0|93509.0|93532.0|93539.0|93543.0|93562.0|93578.0|93584.0|93594.0|93623.0|93640.0|93644.0|93647.0|93649.0|93656.0|93658.0|93660.0|93661.0|93676.0|93681.0|93730.0|93754.0|93759.0|93772.0|93776.0|93777.0|93792.0|93794.0|93806.0|93820.0|93832.0|93844.0|93862.0|93863.0|93873.0|93883.0|93892.0|93893.0|93898.0|93902.0|93913.0|93915.0|93916.0|93947.0|93959.0|93962.0|93966.0|93970.0|93983.0|93994.0|94001.0|94002.0|94005.0|94018.0|94024.0|94026.0|94028.0|94065.0|94068.0|94071.0|94079.0|94085.0|94096.0|94113.0|94138.0|94141.0|94142.0|94163.0|94166.0|94172.0|94176.0|94226.0|94248.0|94250.0|94255.0|94270.0|94275.0|94277.0|94279.0|94285.0|94302.0|94303.0|94314.0|94326.0|94331.0|94348.0|94357.0|94387.0|94388.0|94398.0|94410.0|94418.0|94428.0|94433.0|94463.0|94469.0|94474.0|94496.0|94507.0|94529.0|94533.0|94556.0|94577.0|94582.0|94584.0|94603.0|94649.0|94661.0|94677.0|94678.0|94687.0|94689.0|94704.0|94731.0|94735.0|94739.0|94758.0|94770.0|94783.0|94784.0|94801.0|94809.0|94824.0|94847.0|94852.0|94880.0|94893.0|94898.0|94914.0|94924.0|94925.0|94928.0|94947.0|94967.0|94986.0|95017.0|95022.0|95038.0|95052.0|95054.0|95065.0|95073.0|95107.0|95114.0|95126.0|95135.0|95136.0|95151.0|95156.0|95168.0|95173.0|95176.0|95178.0|95199.0|95206.0|95212.0|95232.0|95234.0|95247.0|95254.0|95257.0|95277.0|95283.0|95286.0|95287.0|95290.0|95306.0|95312.0|95331.0|95336.0|95348.0|95354.0|95361.0|95378.0|95390.0|95405.0|95406.0|95420.0|95446.0|95459.0|95460.0|95463.0|95522.0|95536.0|95538.0|95542.0|95545.0|95548.0|95560.0|95580.0|95616.0|95622.0|95633.0|95644.0|95655.0|95665.0|95737.0|95752.0|95759.0|95772.0|95806.0|95816.0|95822.0|95839.0|95853.0|95859.0|95863.0|95884.0|95891.0|95912.0|95913.0|95935.0|95945.0|95966.0|95967.0|95974.0|95977.0|95984.0|95990.0|95994.0|96009.0|96014.0|96028.0|96054.0|96065.0|96075.0|96096.0|96118.0|96127.0 -in.representative_income metadata_and_annual usd float 96128.0|96174.0|96176.0|96216.0|96233.0|96265.0|96267.0|96270.0|96349.0|96378.0|96391.0|96400.0|96417.0|96428.0|96441.0|96444.0|96449.0|96469.0|96474.0|96479.0|96486.0|96494.0|96503.0|96523.0|96549.0|96594.0|96611.0|96612.0|96615.0|96616.0|96632.0|96643.0|96644.0|96671.0|96675.0|96696.0|96717.0|96724.0|96738.0|96740.0|96750.0|96762.0|96807.0|96810.0|96833.0|96873.0|96879.0|96893.0|96918.0|96923.0|96937.0|96974.0|96984.0|97008.0|97048.0|97050.0|97055.0|97075.0|97076.0|97105.0|97108.0|97111.0|97122.0|97129.0|97136.0|97146.0|97163.0|97235.0|97253.0|97254.0|97277.0|97287.0|97350.0|97370.0|97372.0|97377.0|97378.0|97382.0|97390.0|97408.0|97445.0|97459.0|97469.0|97472.0|97479.0|97501.0|97503.0|97512.0|97522.0|97575.0|97599.0|97609.0|97614.0|97615.0|97631.0|97657.0|97669.0|97681.0|97684.0|97711.0|97717.0|97730.0|97750.0|97793.0|97833.0|97863.0|97867.0|97879.0|97883.0|97884.0|97891.0|97898.0|97899.0|97934.0|97953.0|97973.0|97983.0|97984.0|97988.0|97994.0|97999.0|98006.0|98010.0|98035.0|98036.0|98091.0|98139.0|98143.0|98167.0|98183.0|98194.0|98206.0|98215.0|98298.0|98318.0|98323.0|98327.0|98395.0|98400.0|98431.0|98435.0|98469.0|98489.0|98500.0|98543.0|98590.0|98607.0|98647.0|98648.0|98650.0|98680.0|98691.0|98701.0|98711.0|98734.0|98742.0|98755.0|98758.0|98759.0|98762.0|98792.0|98811.0|98813.0|98816.0|98874.0|98893.0|98901.0|98906.0|98917.0|98922.0|98972.0|99014.0|99025.0|99026.0|99028.0|99035.0|99055.0|99071.0|99090.0|99095.0|99115.0|99122.0|99133.0|99176.0|99196.0|99207.0|99238.0|99246.0|99295.0|99297.0|99327.0|99329.0|99381.0|99397.0|99398.0|99402.0|99403.0|99415.0|99449.0|99499.0|99512.0|99555.0|99616.0|99620.0|99638.0|99652.0|99660.0|99674.0|99701.0|99723.0|99741.0|99766.0|99787.0|99835.0|99845.0|99850.0|99903.0|99938.0|99948.0|99960.0|99976.0|100025.0|100045.0|100051.0|100084.0|100105.0|100159.0|100174.0|100206.0|100219.0|100249.0|100257.0|100268.0|100269.0|100271.0|100307.0|100360.0|100368.0|100376.0|100464.0|100504.0|100508.0|100509.0|100535.0|100582.0|100592.0|100601.0|100604.0|100608.0|100610.0|100624.0|100668.0|100691.0|100700.0|100701.0|100714.0|100730.0|100731.0|100742.0|100773.0|100797.0|100812.0|100818.0|100842.0|100904.0|100913.0|100915.0|100926.0|100933.0|100968.0|100979.0|100991.0|101029.0|101035.0|101052.0|101083.0|101108.0|101116.0|101141.0|101173.0|101228.0|101237.0|101245.0|101254.0|101264.0|101270.0|101288.0|101297.0|101312.0|101318.0|101326.0|101337.0|101359.0|101368.0|101430.0|101443.0|101453.0|101467.0|101469.0|101474.0|101484.0|101488.0|101509.0|101564.0|101567.0|101570.0|101586.0|101598.0|101621.0|101627.0|101651.0|101656.0|101672.0|101691.0|101692.0|101693.0|101695.0|101699.0|101712.0|101715.0|101722.0|101732.0|101763.0|101773.0|101838.0|101870.0|101889.0|101914.0|101967.0|101980.0|101982.0|101989.0|101997.0|102004.0|102031.0|102033.0|102062.0|102085.0|102102.0|102117.0|102124.0|102138.0|102149.0|102176.0|102193.0|102207.0|102212.0|102216.0|102248.0|102256.0|102262.0|102267.0|102279.0|102297.0|102299.0|102306.0|102328.0|102378.0|102400.0|102402.0|102423.0|102429.0|102450.0|102461.0|102465.0|102506.0|102507.0|102530.0|102536.0|102570.0|102613.0|102622.0|102630.0|102631.0|102645.0|102656.0|102666.0|102729.0|102733.0|102753.0|102770.0|102783.0|102835.0|102877.0|102903.0|102904.0|102930.0|102934.0|102944.0|102969.0|103011.0|103040.0|103042.0|103052.0|103062.0|103077.0|103104.0|103111.0|103136.0|103140.0|103156.0|103166.0|103176.0|103207.0|103217.0|103255.0|103266.0|103267.0|103272.0|103293.0|103338.0|103351.0|103373.0|103386.0|103404.0|103424.0|103434.0|103435.0|103439.0|103440.0|103454.0|103457.0|103465.0|103478.0|103480.0|103538.0|103540.0|103548.0|103562.0|103583.0|103588.0|103615.0|103641.0|103648.0|103668.0|103671.0|103727.0|103742.0|103749.0|103768.0|103779.0|103826.0|103843.0|103844.0|103846.0|103867.0|103873.0|103877.0|103878.0|103930.0|103944.0|103952.0|103970.0|103985.0|103995.0|104026.0|104049.0|104055.0|104071.0|104073.0|104090.0|104120.0|104125.0|104129.0|104142.0|104146.0|104152.0|104179.0|104187.0|104195.0|104228.0|104259.0|104290.0|104297.0|104310.0|104350.0|104358.0|104370.0|104374.0|104393.0|104403.0|104449.0|104459.0|104486.0|104500.0|104510.0|104570.0|104634.0|104649.0|104651.0|104702.0|104733.0|104752.0|104773.0|104782.0|104785.0|104796.0|104805.0|104816.0|104828.0|104857.0|104876.0|104913.0|104933.0|104950.0|104961.0|104968.0|105000.0|105022.0|105035.0|105055.0|105065.0|105071.0|105095.0|105144.0|105173.0|105207.0|105217.0|105218.0|105241.0|105245.0|105250.0|105253.0|105257.0|105271.0|105286.0|105287.0|105310.0|105327.0|105341.0|105346.0|105348.0|105350.0|105353.0|105358.0|105359.0|105376.0|105381.0|105434.0|105454.0|105461.0|105475.0|105481.0|105492.0|105502.0|105508.0|105529.0|105534.0|105542.0|105550.0|105555.0|105562.0|105595.0|105619.0|105629.0|105631.0|105650.0|105671.0|105693.0|105695.0|105704.0|105759.0|105771.0|105777.0|105843.0|105879.0|105883.0|105908.0|105914.0|105919.0|105928.0|105930.0|105937.0|105950.0|105975.0|105982.0|105988.0|106002.0|106034.0|106051.0|106062.0|106065.0|106073.0|106083.0|106093.0|106112.0|106121.0|106146.0|106157.0|106166.0|106188.0|106198.0|106250.0|106261.0|106267.0|106272.0|106275.0|106282.0|106296.0|106308.0|106338.0|106343.0|106384.0|106399.0|106400.0|106403.0|106419.0|106425.0|106442.0|106464.0|106480.0|106490.0|106501.0|106510.0|106516.0|106518.0|106534.0|106549.0|106578.0|106580.0|106594.0|106600.0|106621.0|106644.0|106657.0|106668.0|106671.0|106693.0|106697.0|106705.0|106706.0|106718.0|106726.0|106733.0|106735.0|106741.0|106747.0|106751.0|106755.0|106765.0|106783.0|106787.0|106808.0|106852.0|106858.0|106859.0|106883.0|106894.0|106912.0|106926.0|106937.0|106945.0|106967.0|106970.0|106971.0|106988.0|106991.0|106999.0|107005.0|107013.0|107020.0|107053.0|107096.0|107102.0|107128.0|107131.0|107148.0|107159.0|107166.0|107167.0|107176.0|107182.0|107184.0|107205.0|107224.0|107236.0|107242.0|107251.0|107270.0|107271.0|107292.0|107298.0|107318.0|107322.0|107323.0|107338.0|107345.0|107346.0|107352.0|107355.0|107359.0|107367.0|107375.0|107378.0|107388.0|107399.0|107402.0|107410.0|107412.0|107429.0|107437.0|107446.0|107452.0|107458.0|107464.0|107479.0|107485.0|107504.0|107507.0|107517.0|107528.0|107529.0|107561.0|107581.0|107596.0|107613.0|107623.0|107671.0|107681.0|107688.0|107690.0|107698.0|107720.0|107723.0|107731.0|107735.0|107742.0|107749.0|107752.0|107763.0|107772.0|107775.0|107780.0|107781.0|107786.0|107787.0|107788.0|107792.0|107798.0|107802.0|107807.0|107818.0|107823.0|107831.0|107873.0|107874.0|107883.0|107886.0|107890.0|107897.0|107912.0|107917.0|107939.0|107949.0|107962.0|107989.0|107992.0|107993.0|107995.0|108013.0|108018.0|108026.0|108037.0|108039.0|108044.0|108047.0|108048.0|108075.0|108076.0|108079.0|108086.0|108090.0|108107.0|108116.0|108118.0|108122.0|108126.0|108136.0|108140.0|108145.0|108150.0|108155.0|108175.0|108177.0|108183.0|108187.0|108188.0|108193.0|108199.0|108209.0|108233.0|108252.0|108257.0|108263.0|108288.0|108296.0|108302.0|108308.0|108309.0|108311.0|108313.0|108320.0|108328.0|108333.0|108336.0|108338.0|108343.0|108350.0|108354.0|108366.0|108371.0|108389.0|108390.0|108392.0|108393.0|108394.0|108395.0|108414.0|108419.0|108423.0|108424.0|108427.0|108436.0|108451.0|108456.0|108459.0|108461.0|108466.0|108479.0|108509.0|108519.0|108536.0|108540.0|108552.0|108555.0|108567.0|108582.0|108588.0|108601.0|108604.0|108612.0|108618.0|108621.0|108624.0|108635.0|108652.0|108654.0|108661.0|108684.0|108692.0|108698.0|108709.0|108718.0|108726.0|108738.0|108742.0|108749.0|108757.0|108762.0|108769.0|108794.0|108804.0|108818.0|108839.0|108849.0|108852.0|108863.0|108869.0|108871.0|108877.0|108891.0|108894.0|108909.0|108912.0|108914.0|108921.0|108923.0|108927.0|108944.0|108956.0|108965.0|108973.0|108977.0|108983.0|108985.0|108993.0|109020.0|109024.0|109031.0|109042.0|109045.0|109057.0|109083.0|109098.0|109106.0|109116.0|109127.0|109128.0|109132.0|109152.0|109156.0|109158.0|109160.0|109162.0|109170.0|109191.0|109192.0|109194.0|109197.0|109200.0|109202.0|109213.0|109214.0|109217.0|109221.0|109225.0|109228.0|109236.0|109247.0|109257.0|109262.0|109272.0|109276.0|109308.0|109313.0|109344.0|109355.0|109361.0|109363.0|109365.0|109373.0|109385.0|109386.0|109396.0|109397.0|109417.0|109419.0|109427.0|109454.0|109472.0|109478.0|109488.0|109503.0|109505.0|109511.0|109516.0|109524.0|109550.0|109580.0|109592.0|109602.0|109613.0|109626.0|109633.0|109637.0|109641.0|109643.0|109644.0|109654.0|109661.0|109664.0|109667.0|109674.0|109679.0|109682.0|109689.0|109690.0|109692.0|109704.0|109711.0|109721.0|109726.0|109727.0|109736.0|109738.0|109741.0|109755.0|109761.0|109767.0|109769.0|109774.0|109798.0|109818.0|109819.0|109823.0|109830.0|109834.0|109850.0|109870.0|109881.0|109884.0|109887.0|109890.0|109892.0|109895.0|109904.0|109926.0|109995.0|109996.0|109997.0 -in.representative_income metadata_and_annual usd float 110005.0|110006.0|110018.0|110024.0|110025.0|110028.0|110045.0|110050.0|110056.0|110084.0|110093.0|110100.0|110111.0|110118.0|110121.0|110125.0|110126.0|110135.0|110136.0|110139.0|110156.0|110159.0|110165.0|110175.0|110183.0|110185.0|110206.0|110208.0|110210.0|110212.0|110227.0|110228.0|110229.0|110243.0|110251.0|110258.0|110262.0|110275.0|110279.0|110283.0|110296.0|110314.0|110319.0|110336.0|110337.0|110352.0|110380.0|110399.0|110402.0|110412.0|110413.0|110417.0|110424.0|110429.0|110431.0|110458.0|110467.0|110470.0|110523.0|110530.0|110556.0|110561.0|110568.0|110570.0|110572.0|110586.0|110587.0|110593.0|110628.0|110640.0|110642.0|110645.0|110647.0|110649.0|110659.0|110692.0|110705.0|110723.0|110733.0|110744.0|110749.0|110755.0|110766.0|110770.0|110778.0|110780.0|110783.0|110786.0|110788.0|110797.0|110801.0|110807.0|110809.0|110818.0|110823.0|110828.0|110839.0|110845.0|110860.0|110874.0|110881.0|110887.0|110889.0|110892.0|110914.0|110918.0|110923.0|110927.0|110932.0|110933.0|110945.0|110986.0|110989.0|110997.0|111003.0|111005.0|111018.0|111025.0|111029.0|111035.0|111037.0|111059.0|111081.0|111087.0|111103.0|111105.0|111116.0|111136.0|111139.0|111156.0|111168.0|111187.0|111191.0|111197.0|111210.0|111217.0|111232.0|111242.0|111247.0|111252.0|111261.0|111269.0|111282.0|111284.0|111294.0|111298.0|111300.0|111307.0|111332.0|111335.0|111343.0|111345.0|111368.0|111376.0|111419.0|111424.0|111429.0|111430.0|111431.0|111462.0|111521.0|111542.0|111549.0|111559.0|111567.0|111572.0|111574.0|111603.0|111621.0|111634.0|111639.0|111643.0|111685.0|111692.0|111704.0|111707.0|111718.0|111735.0|111740.0|111742.0|111746.0|111755.0|111757.0|111761.0|111773.0|111774.0|111778.0|111789.0|111796.0|111800.0|111828.0|111830.0|111832.0|111833.0|111841.0|111843.0|111853.0|111861.0|111882.0|111904.0|111915.0|111924.0|111925.0|111961.0|112025.0|112034.0|112035.0|112044.0|112045.0|112055.0|112076.0|112086.0|112104.0|112111.0|112121.0|112126.0|112164.0|112177.0|112207.0|112208.0|112229.0|112232.0|112247.0|112250.0|112283.0|112295.0|112305.0|112326.0|112336.0|112338.0|112345.0|112368.0|112370.0|112378.0|112412.0|112415.0|112421.0|112423.0|112428.0|112466.0|112471.0|112480.0|112496.0|112498.0|112502.0|112511.0|112526.0|112530.0|112532.0|112538.0|112550.0|112621.0|112629.0|112632.0|112641.0|112650.0|112655.0|112666.0|112693.0|112696.0|112697.0|112702.0|112704.0|112708.0|112714.0|112723.0|112752.0|112772.0|112790.0|112820.0|112821.0|112843.0|112851.0|112861.0|112874.0|112884.0|112885.0|112901.0|112911.0|112913.0|112934.0|112954.0|112964.0|112996.0|113034.0|113035.0|113046.0|113047.0|113061.0|113078.0|113128.0|113136.0|113141.0|113151.0|113159.0|113167.0|113187.0|113191.0|113195.0|113210.0|113233.0|113237.0|113238.0|113249.0|113253.0|113281.0|113288.0|113338.0|113341.0|113356.0|113369.0|113423.0|113431.0|113450.0|113463.0|113470.0|113511.0|113518.0|113539.0|113540.0|113542.0|113545.0|113551.0|113571.0|113581.0|113601.0|113614.0|113615.0|113641.0|113677.0|113679.0|113698.0|113717.0|113769.0|113774.0|113790.0|113792.0|113793.0|113796.0|113798.0|113833.0|113839.0|113842.0|113845.0|113882.0|113893.0|113908.0|113911.0|113919.0|113944.0|113946.0|113947.0|113950.0|113990.0|114002.0|114037.0|114045.0|114079.0|114097.0|114141.0|114146.0|114150.0|114182.0|114205.0|114215.0|114259.0|114284.0|114313.0|114365.0|114369.0|114376.0|114389.0|114421.0|114425.0|114449.0|114467.0|114480.0|114481.0|114490.0|114509.0|114530.0|114552.0|114594.0|114598.0|114615.0|114692.0|114709.0|114803.0|114853.0|114854.0|114859.0|114860.0|114894.0|114955.0|114967.0|115007.0|115016.0|115031.0|115056.0|115057.0|115120.0|115124.0|115136.0|115157.0|115162.0|115163.0|115178.0|115181.0|115247.0|115277.0|115298.0|115359.0|115374.0|115385.0|115394.0|115396.0|115502.0|115522.0|115561.0|115611.0|115626.0|115648.0|115717.0|115718.0|115743.0|115772.0|115783.0|115825.0|115828.0|115832.0|115894.0|115901.0|115933.0|115934.0|115943.0|115956.0|115986.0|115997.0|116042.0|116048.0|116090.0|116112.0|116141.0|116147.0|116155.0|116167.0|116197.0|116211.0|116212.0|116237.0|116244.0|116245.0|116255.0|116268.0|116308.0|116323.0|116362.0|116367.0|116369.0|116428.0|116469.0|116470.0|116475.0|116481.0|116482.0|116554.0|116555.0|116571.0|116577.0|116581.0|116583.0|116587.0|116604.0|116607.0|116657.0|116662.0|116672.0|116684.0|116712.0|116792.0|116812.0|116853.0|116864.0|116898.0|116907.0|116956.0|116975.0|117015.0|117027.0|117061.0|117124.0|117166.0|117177.0|117178.0|117188.0|117231.0|117268.0|117273.0|117328.0|117378.0|117393.0|117435.0|117447.0|117542.0|117555.0|117585.0|117588.0|117606.0|117619.0|117627.0|117637.0|117664.0|117688.0|117694.0|117720.0|117776.0|117792.0|117875.0|117879.0|117905.0|117972.0|117985.0|117987.0|117998.0|118079.0|118083.0|118086.0|118090.0|118095.0|118101.0|118116.0|118179.0|118187.0|118264.0|118273.0|118307.0|118326.0|118347.0|118348.0|118349.0|118389.0|118419.0|118432.0|118443.0|118490.0|118508.0|118538.0|118591.0|118617.0|118636.0|118668.0|118692.0|118720.0|118723.0|118733.0|118741.0|118753.0|118793.0|118813.0|118831.0|118852.0|118853.0|118862.0|118875.0|118894.0|118926.0|118945.0|118947.0|118960.0|118968.0|119030.0|119067.0|119096.0|119153.0|119175.0|119181.0|119186.0|119196.0|119197.0|119235.0|119252.0|119298.0|119308.0|119339.0|119392.0|119399.0|119442.0|119487.0|119583.0|119586.0|119601.0|119608.0|119702.0|119716.0|119797.0|119804.0|119824.0|119854.0|119904.0|119914.0|119932.0|119958.0|119968.0|120012.0|120014.0|120041.0|120061.0|120106.0|120119.0|120149.0|120164.0|120227.0|120248.0|120256.0|120268.0|120278.0|120288.0|120389.0|120391.0|120409.0|120441.0|120472.0|120473.0|120542.0|120577.0|120580.0|120597.0|120680.0|120688.0|120711.0|120813.0|120857.0|120870.0|120886.0|120890.0|120989.0|121015.0|121092.0|121116.0|121229.0|121238.0|121278.0|121280.0|121284.0|121299.0|121318.0|121337.0|121339.0|121385.0|121407.0|121444.0|121450.0|121453.0|121505.0|121514.0|121520.0|121552.0|121596.0|121608.0|121611.0|121621.0|121622.0|121702.0|121733.0|121740.0|121775.0|121804.0|121807.0|121815.0|121823.0|121918.0|121925.0|121928.0|121954.0|121970.0|121985.0|122046.0|122093.0|122123.0|122124.0|122158.0|122201.0|122227.0|122238.0|122240.0|122244.0|122309.0|122329.0|122330.0|122335.0|122413.0|122430.0|122434.0|122440.0|122485.0|122531.0|122551.0|122588.0|122611.0|122650.0|122666.0|122741.0|122743.0|122756.0|122774.0|122803.0|122834.0|122846.0|122887.0|122914.0|122935.0|122949.0|122957.0|122967.0|123015.0|123017.0|123020.0|123036.0|123040.0|123046.0|123065.0|123073.0|123080.0|123091.0|123124.0|123173.0|123178.0|123187.0|123224.0|123232.0|123238.0|123258.0|123278.0|123282.0|123354.0|123362.0|123369.0|123390.0|123447.0|123474.0|123494.0|123498.0|123541.0|123554.0|123568.0|123606.0|123658.0|123661.0|123671.0|123692.0|123769.0|123778.0|123795.0|123806.0|123816.0|123836.0|123844.0|123876.0|123877.0|123897.0|123898.0|123908.0|123929.0|123937.0|124005.0|124021.0|124026.0|124037.0|124038.0|124046.0|124084.0|124114.0|124127.0|124144.0|124146.0|124188.0|124198.0|124233.0|124248.0|124254.0|124268.0|124329.0|124338.0|124348.0|124349.0|124359.0|124413.0|124443.0|124450.0|124454.0|124496.0|124521.0|124542.0|124548.0|124578.0|124600.0|124610.0|124620.0|124628.0|124632.0|124635.0|124654.0|124660.0|124702.0|124707.0|124734.0|124740.0|124753.0|124765.0|124781.0|124845.0|124865.0|124892.0|124903.0|124909.0|124950.0|124957.0|124977.0|124994.0|125050.0|125054.0|125057.0|125075.0|125118.0|125182.0|125187.0|125194.0|125218.0|125226.0|125269.0|125274.0|125294.0|125323.0|125334.0|125346.0|125359.0|125363.0|125373.0|125382.0|125388.0|125392.0|125420.0|125424.0|125460.0|125480.0|125486.0|125498.0|125507.0|125509.0|125530.0|125561.0|125562.0|125594.0|125595.0|125598.0|125603.0|125625.0|125631.0|125642.0|125658.0|125667.0|125683.0|125692.0|125706.0|125709.0|125716.0|125730.0|125734.0|125762.0|125765.0|125767.0|125770.0|125782.0|125793.0|125803.0|125821.0|125830.0|125837.0|125853.0|125864.0|125894.0|125931.0|125946.0|125965.0|125973.0|125982.0|126012.0|126023.0|126026.0|126043.0|126054.0|126072.0|126091.0|126094.0|126123.0|126130.0|126131.0|126145.0|126147.0|126152.0|126167.0|126177.0|126198.0|126209.0|126218.0|126226.0|126229.0|126236.0|126258.0|126268.0|126302.0|126306.0|126311.0|126313.0|126325.0|126359.0|126364.0|126378.0|126384.0|126390.0|126410.0|126415.0|126437.0|126440.0|126456.0|126469.0|126478.0|126490.0|126506.0|126511.0|126521.0|126528.0|126556.0|126560.0|126569.0|126577.0|126611.0|126637.0|126652.0|126658.0|126673.0|126678.0|126690.0|126699.0|126768.0|126771.0|126776.0|126796.0|126804.0|126805.0|126806.0|126817.0|126822.0|126824.0|126825.0|126859.0|126869.0|126890.0|126903.0|126926.0|126946.0|126966.0|126999.0|127013.0|127023.0|127067.0|127074.0|127080.0|127081.0|127096.0|127101.0|127106.0|127116.0|127118.0|127126.0|127133.0|127143.0|127172.0|127177.0|127178.0|127208.0|127225.0|127228.0|127239.0|127261.0|127270.0|127280.0|127281.0|127288.0|127290.0|127309.0|127311.0|127329.0|127343.0|127358.0|127375.0|127388.0|127397.0|127399.0|127418.0 -in.representative_income metadata_and_annual usd float 127419.0|127428.0|127442.0|127477.0|127480.0|127493.0|127506.0|127517.0|127526.0|127528.0|127558.0|127560.0|127561.0|127566.0|127586.0|127618.0|127619.0|127628.0|127632.0|127633.0|127642.0|127646.0|127649.0|127654.0|127657.0|127673.0|127681.0|127682.0|127692.0|127701.0|127711.0|127713.0|127722.0|127726.0|127735.0|127740.0|127756.0|127765.0|127776.0|127794.0|127797.0|127820.0|127835.0|127884.0|127895.0|127900.0|127911.0|127915.0|127931.0|127935.0|127939.0|127941.0|127976.0|127977.0|127987.0|127992.0|127995.0|128001.0|128003.0|128016.0|128029.0|128037.0|128054.0|128116.0|128118.0|128131.0|128135.0|128144.0|128148.0|128154.0|128187.0|128191.0|128198.0|128219.0|128228.0|128240.0|128248.0|128252.0|128256.0|128263.0|128264.0|128267.0|128277.0|128283.0|128295.0|128298.0|128299.0|128304.0|128309.0|128319.0|128322.0|128333.0|128339.0|128342.0|128360.0|128363.0|128366.0|128374.0|128375.0|128379.0|128403.0|128405.0|128415.0|128440.0|128451.0|128468.0|128490.0|128503.0|128510.0|128511.0|128535.0|128545.0|128554.0|128578.0|128583.0|128591.0|128619.0|128642.0|128662.0|128683.0|128685.0|128692.0|128694.0|128706.0|128714.0|128721.0|128728.0|128735.0|128753.0|128767.0|128777.0|128792.0|128801.0|128814.0|128815.0|128818.0|128824.0|128825.0|128828.0|128844.0|128846.0|128850.0|128856.0|128862.0|128873.0|128879.0|128880.0|128881.0|128895.0|128900.0|128905.0|128911.0|128913.0|128914.0|128922.0|128926.0|128932.0|128936.0|128942.0|128953.0|128955.0|128962.0|128983.0|128985.0|128987.0|128994.0|129004.0|129019.0|129030.0|129066.0|129071.0|129082.0|129083.0|129093.0|129105.0|129116.0|129125.0|129127.0|129131.0|129137.0|129147.0|129153.0|129190.0|129210.0|129211.0|129221.0|129224.0|129231.0|129241.0|129243.0|129258.0|129259.0|129262.0|129273.0|129295.0|129299.0|129309.0|129329.0|129344.0|129354.0|129372.0|129402.0|129410.0|129416.0|129430.0|129449.0|129450.0|129451.0|129458.0|129470.0|129499.0|129506.0|129511.0|129514.0|129519.0|129522.0|129527.0|129528.0|129537.0|129549.0|129551.0|129555.0|129566.0|129587.0|129624.0|129642.0|129657.0|129678.0|129679.0|129687.0|129700.0|129701.0|129713.0|129716.0|129721.0|129727.0|129754.0|129765.0|129769.0|129775.0|129796.0|129804.0|129808.0|129810.0|129811.0|129818.0|129823.0|129829.0|129844.0|129845.0|129860.0|129875.0|129877.0|129883.0|129889.0|129908.0|129922.0|129926.0|129928.0|129932.0|129963.0|129965.0|129980.0|129983.0|129995.0|130005.0|130018.0|130026.0|130027.0|130034.0|130035.0|130056.0|130077.0|130081.0|130103.0|130113.0|130117.0|130127.0|130134.0|130138.0|130147.0|130149.0|130153.0|130156.0|130191.0|130208.0|130223.0|130233.0|130235.0|130244.0|130247.0|130250.0|130258.0|130261.0|130268.0|130276.0|130278.0|130282.0|130284.0|130293.0|130305.0|130320.0|130333.0|130338.0|130345.0|130359.0|130375.0|130379.0|130390.0|130403.0|130407.0|130413.0|130427.0|130435.0|130455.0|130467.0|130476.0|130487.0|130497.0|130508.0|130511.0|130531.0|130539.0|130543.0|130546.0|130551.0|130561.0|130575.0|130585.0|130612.0|130613.0|130618.0|130629.0|130633.0|130641.0|130645.0|130666.0|130671.0|130683.0|130685.0|130697.0|130704.0|130716.0|130726.0|130737.0|130743.0|130771.0|130791.0|130792.0|130798.0|130802.0|130809.0|130839.0|130853.0|130866.0|130886.0|130887.0|130891.0|130905.0|130931.0|130935.0|130939.0|130954.0|130965.0|130982.0|130994.0|131007.0|131011.0|131015.0|131016.0|131036.0|131047.0|131062.0|131066.0|131076.0|131088.0|131098.0|131111.0|131119.0|131139.0|131157.0|131176.0|131181.0|131197.0|131214.0|131229.0|131245.0|131246.0|131250.0|131277.0|131303.0|131323.0|131339.0|131340.0|131385.0|131389.0|131400.0|131404.0|131410.0|131424.0|131430.0|131446.0|131450.0|131458.0|131461.0|131470.0|131493.0|131508.0|131509.0|131516.0|131521.0|131552.0|131557.0|131572.0|131592.0|131602.0|131622.0|131633.0|131665.0|131666.0|131683.0|131693.0|131755.0|131766.0|131767.0|131768.0|131799.0|131818.0|131819.0|131824.0|131826.0|131847.0|131857.0|131860.0|131868.0|131871.0|131874.0|131925.0|131926.0|131930.0|131931.0|131938.0|131952.0|131991.0|132026.0|132035.0|132036.0|132046.0|132047.0|132055.0|132077.0|132078.0|132087.0|132109.0|132127.0|132131.0|132139.0|132141.0|132157.0|132177.0|132188.0|132196.0|132199.0|132206.0|132228.0|132232.0|132271.0|132284.0|132302.0|132320.0|132333.0|132336.0|132339.0|132381.0|132430.0|132459.0|132481.0|132490.0|132505.0|132531.0|132541.0|132554.0|132564.0|132571.0|132573.0|132604.0|132627.0|132628.0|132632.0|132651.0|132696.0|132725.0|132736.0|132748.0|132753.0|132758.0|132775.0|132786.0|132828.0|132834.0|132851.0|132866.0|132902.0|132910.0|132917.0|132954.0|132978.0|132986.0|133001.0|133028.0|133036.0|133057.0|133086.0|133108.0|133114.0|133133.0|133154.0|133160.0|133197.0|133204.0|133222.0|133264.0|133276.0|133297.0|133315.0|133322.0|133344.0|133365.0|133400.0|133407.0|133429.0|133430.0|133438.0|133440.0|133469.0|133491.0|133503.0|133513.0|133537.0|133541.0|133546.0|133553.0|133573.0|133623.0|133642.0|133647.0|133652.0|133654.0|133676.0|133724.0|133774.0|133776.0|133809.0|133883.0|133895.0|133925.0|133935.0|133939.0|133945.0|134086.0|134100.0|134140.0|134184.0|134186.0|134198.0|134203.0|134205.0|134214.0|134223.0|134243.0|134248.0|134278.0|134290.0|134295.0|134337.0|134347.0|134349.0|134357.0|134396.0|134398.0|134400.0|134409.0|134440.0|134462.0|134503.0|134519.0|134568.0|134576.0|134589.0|134627.0|134652.0|134673.0|134734.0|134753.0|134768.0|134769.0|134778.0|134788.0|134842.0|134885.0|134911.0|134914.0|134932.0|134955.0|134972.0|134990.0|135058.0|135070.0|135072.0|135081.0|135157.0|135167.0|135200.0|135221.0|135222.0|135223.0|135233.0|135254.0|135275.0|135319.0|135348.0|135430.0|135460.0|135469.0|135480.0|135491.0|135517.0|135533.0|135545.0|135561.0|135569.0|135599.0|135623.0|135664.0|135675.0|135707.0|135728.0|135792.0|135822.0|135833.0|135852.0|135865.0|135895.0|135898.0|135924.0|135966.0|136006.0|136031.0|136044.0|136049.0|136054.0|136221.0|136233.0|136333.0|136334.0|136355.0|136361.0|136413.0|136435.0|136463.0|136471.0|136521.0|136542.0|136571.0|136572.0|136587.0|136597.0|136650.0|136677.0|136680.0|136709.0|136758.0|136770.0|136774.0|136783.0|136793.0|136930.0|136973.0|136997.0|137004.0|137077.0|137079.0|137099.0|137140.0|137187.0|137188.0|137219.0|137222.0|137279.0|137309.0|137380.0|137416.0|137423.0|137481.0|137492.0|137509.0|137521.0|137531.0|137544.0|137566.0|137573.0|137596.0|137598.0|137663.0|137699.0|137731.0|137792.0|137795.0|137802.0|137831.0|137868.0|137879.0|137938.0|137942.0|137970.0|137986.0|138046.0|138084.0|138087.0|138111.0|138121.0|138192.0|138215.0|138260.0|138294.0|138311.0|138380.0|138390.0|138475.0|138575.0|138583.0|138592.0|138659.0|138689.0|138730.0|138732.0|138797.0|138830.0|138840.0|138955.0|138996.0|138997.0|139012.0|139057.0|139119.0|139198.0|139240.0|139333.0|139381.0|139400.0|139419.0|139430.0|139441.0|139453.0|139501.0|139555.0|139559.0|139630.0|139658.0|139677.0|139735.0|139764.0|139813.0|139818.0|139844.0|139865.0|139870.0|139947.0|140006.0|140052.0|140174.0|140245.0|140309.0|140368.0|140410.0|140450.0|140461.0|140473.0|140482.0|140484.0|140569.0|140579.0|140612.0|140622.0|140663.0|140674.0|140680.0|140690.0|140732.0|140790.0|140837.0|140885.0|140893.0|140895.0|140915.0|140943.0|141000.0|141109.0|141117.0|141205.0|141218.0|141266.0|141349.0|141464.0|141480.0|141481.0|141515.0|141521.0|141528.0|141542.0|141558.0|141619.0|141622.0|141623.0|141633.0|141654.0|141695.0|141721.0|141723.0|141739.0|141749.0|141758.0|141845.0|141896.0|141925.0|141928.0|141948.0|142018.0|142031.0|142081.0|142124.0|142157.0|142161.0|142190.0|142191.0|142211.0|142232.0|142237.0|142248.0|142266.0|142269.0|142347.0|142393.0|142406.0|142420.0|142433.0|142443.0|142451.0|142531.0|142547.0|142566.0|142615.0|142622.0|142632.0|142678.0|142688.0|142779.0|142784.0|142794.0|142814.0|142833.0|142835.0|142856.0|142876.0|142899.0|142908.0|142946.0|142984.0|143004.0|143037.0|143091.0|143105.0|143114.0|143163.0|143195.0|143216.0|143239.0|143269.0|143270.0|143340.0|143405.0|143520.0|143532.0|143643.0|143648.0|143693.0|143702.0|143713.0|143743.0|143744.0|143764.0|143770.0|143842.0|143897.0|143946.0|143949.0|143950.0|144006.0|144027.0|144057.0|144061.0|144081.0|144094.0|144135.0|144148.0|144165.0|144198.0|144219.0|144243.0|144300.0|144311.0|144351.0|144376.0|144442.0|144486.0|144533.0|144552.0|144558.0|144566.0|144567.0|144589.0|144594.0|144599.0|144602.0|144609.0|144622.0|144641.0|144643.0|144660.0|144671.0|144673.0|144692.0|144701.0|144703.0|144723.0|144754.0|144809.0|144816.0|144855.0|144868.0|144902.0|144914.0|144938.0|144945.0|144948.0|144959.0|144970.0|145002.0|145023.0|145026.0|145057.0|145075.0|145107.0|145125.0|145128.0|145130.0|145145.0|145161.0|145162.0|145172.0|145215.0|145219.0|145227.0|145228.0|145238.0|145271.0|145280.0|145323.0|145325.0|145332.0|145348.0|145373.0|145377.0|145389.0|145399.0|145461.0|145474.0|145511.0|145517.0|145537.0|145540.0|145557.0|145559.0|145569.0|145578.0|145579.0|145589.0|145609.0|145627.0|145642.0|145648.0|145649.0|145662.0|145663.0|145704.0|145734.0|145755.0|145757.0|145764.0|145775.0 -in.representative_income metadata_and_annual usd float 145827.0|145828.0|145831.0|145863.0|145865.0|145874.0|145878.0|145882.0|145883.0|145951.0|145957.0|145964.0|145966.0|145971.0|146002.0|146053.0|146067.0|146074.0|146079.0|146084.0|146101.0|146105.0|146109.0|146117.0|146123.0|146133.0|146161.0|146170.0|146179.0|146199.0|146208.0|146248.0|146261.0|146285.0|146291.0|146311.0|146327.0|146343.0|146363.0|146370.0|146375.0|146396.0|146405.0|146421.0|146464.0|146466.0|146471.0|146477.0|146481.0|146483.0|146485.0|146497.0|146501.0|146511.0|146518.0|146522.0|146525.0|146548.0|146569.0|146572.0|146580.0|146590.0|146592.0|146620.0|146631.0|146642.0|146674.0|146683.0|146706.0|146708.0|146724.0|146728.0|146744.0|146767.0|146775.0|146783.0|146786.0|146807.0|146823.0|146848.0|146905.0|146907.0|146919.0|146922.0|146946.0|146949.0|146959.0|146966.0|146976.0|147012.0|147013.0|147031.0|147042.0|147052.0|147063.0|147064.0|147085.0|147127.0|147128.0|147137.0|147147.0|147160.0|147170.0|147171.0|147178.0|147188.0|147193.0|147212.0|147213.0|147223.0|147229.0|147261.0|147268.0|147272.0|147276.0|147291.0|147309.0|147319.0|147376.0|147394.0|147430.0|147441.0|147442.0|147466.0|147489.0|147491.0|147492.0|147498.0|147516.0|147550.0|147560.0|147562.0|147571.0|147582.0|147592.0|147601.0|147602.0|147642.0|147643.0|147645.0|147646.0|147673.0|147685.0|147701.0|147703.0|147708.0|147729.0|147730.0|147734.0|147750.0|147764.0|147765.0|147784.0|147803.0|147809.0|147814.0|147817.0|147818.0|147825.0|147829.0|147858.0|147885.0|147888.0|147898.0|147900.0|147907.0|147921.0|147926.0|147936.0|147942.0|147943.0|147949.0|147954.0|147961.0|147966.0|147967.0|147972.0|148014.0|148016.0|148017.0|148024.0|148027.0|148046.0|148066.0|148068.0|148071.0|148077.0|148085.0|148087.0|148107.0|148118.0|148132.0|148137.0|148143.0|148158.0|148173.0|148187.0|148188.0|148199.0|148240.0|148243.0|148247.0|148261.0|148262.0|148265.0|148278.0|148288.0|148317.0|148332.0|148345.0|148348.0|148350.0|148383.0|148394.0|148412.0|148414.0|148415.0|148421.0|148435.0|148467.0|148471.0|148478.0|148481.0|148482.0|148485.0|148491.0|148512.0|148549.0|148552.0|148565.0|148566.0|148567.0|148572.0|148584.0|148592.0|148594.0|148623.0|148657.0|148668.0|148673.0|148684.0|148689.0|148693.0|148699.0|148706.0|148713.0|148721.0|148724.0|148738.0|148752.0|148763.0|148798.0|148805.0|148815.0|148835.0|148837.0|148838.0|148845.0|148847.0|148849.0|148865.0|148873.0|148896.0|148911.0|148918.0|148941.0|148943.0|148946.0|148973.0|149005.0|149027.0|149041.0|149047.0|149061.0|149079.0|149087.0|149097.0|149105.0|149109.0|149115.0|149121.0|149124.0|149126.0|149148.0|149198.0|149199.0|149209.0|149222.0|149226.0|149231.0|149256.0|149259.0|149263.0|149266.0|149272.0|149284.0|149292.0|149296.0|149316.0|149332.0|149341.0|149349.0|149386.0|149399.0|149400.0|149406.0|149438.0|149461.0|149501.0|149516.0|149549.0|149554.0|149556.0|149562.0|149563.0|149564.0|149583.0|149586.0|149591.0|149592.0|149596.0|149606.0|149622.0|149639.0|149653.0|149657.0|149664.0|149673.0|149699.0|149705.0|149710.0|149715.0|149724.0|149736.0|149746.0|149754.0|149764.0|149785.0|149794.0|149807.0|149808.0|149819.0|149830.0|149855.0|149864.0|149892.0|149906.0|149910.0|149912.0|149915.0|149965.0|149984.0|150007.0|150047.0|150057.0|150059.0|150068.0|150071.0|150077.0|150092.0|150108.0|150118.0|150122.0|150132.0|150176.0|150179.0|150190.0|150191.0|150197.0|150229.0|150284.0|150287.0|150292.0|150302.0|150304.0|150310.0|150315.0|150320.0|150336.0|150345.0|150358.0|150375.0|150378.0|150387.0|150391.0|150402.0|150406.0|150411.0|150412.0|150413.0|150423.0|150471.0|150488.0|150497.0|150509.0|150510.0|150512.0|150531.0|150541.0|150551.0|150592.0|150597.0|150602.0|150609.0|150613.0|150617.0|150619.0|150623.0|150643.0|150650.0|150660.0|150714.0|150731.0|150734.0|150752.0|150766.0|150774.0|150812.0|150820.0|150826.0|150833.0|150844.0|150861.0|150879.0|150889.0|150892.0|150895.0|150914.0|150920.0|150953.0|150956.0|150959.0|151019.0|151050.0|151051.0|151073.0|151079.0|151082.0|151104.0|151125.0|151141.0|151158.0|151165.0|151196.0|151211.0|151217.0|151230.0|151249.0|151252.0|151266.0|151267.0|151270.0|151277.0|151287.0|151294.0|151298.0|151314.0|151324.0|151331.0|151346.0|151352.0|151361.0|151363.0|151365.0|151367.0|151370.0|151374.0|151394.0|151410.0|151417.0|151442.0|151445.0|151460.0|151475.0|151482.0|151485.0|151494.0|151514.0|151521.0|151522.0|151526.0|151531.0|151532.0|151536.0|151562.0|151568.0|151571.0|151572.0|151592.0|151600.0|151611.0|151623.0|151633.0|151637.0|151654.0|151663.0|151683.0|151698.0|151724.0|151733.0|151734.0|151747.0|151768.0|151779.0|151786.0|151806.0|151808.0|151825.0|151839.0|151860.0|151881.0|151885.0|151887.0|151895.0|151904.0|151914.0|151924.0|151952.0|151969.0|151980.0|151985.0|152007.0|152036.0|152044.0|152054.0|152071.0|152074.0|152077.0|152083.0|152085.0|152130.0|152160.0|152167.0|152178.0|152180.0|152190.0|152206.0|152215.0|152229.0|152233.0|152269.0|152270.0|152300.0|152316.0|152317.0|152322.0|152330.0|152354.0|152357.0|152378.0|152387.0|152449.0|152454.0|152463.0|152470.0|152472.0|152481.0|152496.0|152532.0|152559.0|152562.0|152569.0|152570.0|152592.0|152603.0|152633.0|152645.0|152646.0|152656.0|152663.0|152666.0|152671.0|152692.0|152717.0|152759.0|152774.0|152779.0|152812.0|152835.0|152838.0|152843.0|152861.0|152919.0|152936.0|152939.0|152964.0|152967.0|152977.0|152986.0|152994.0|153006.0|153013.0|153037.0|153074.0|153076.0|153088.0|153108.0|153120.0|153128.0|153145.0|153172.0|153191.0|153192.0|153235.0|153239.0|153273.0|153287.0|153288.0|153290.0|153319.0|153342.0|153357.0|153377.0|153436.0|153449.0|153450.0|153471.0|153483.0|153507.0|153535.0|153542.0|153564.0|153582.0|153593.0|153604.0|153611.0|153633.0|153687.0|153697.0|153709.0|153718.0|153719.0|153744.0|153761.0|153789.0|153805.0|153815.0|153824.0|153845.0|153856.0|153859.0|153865.0|153879.0|153891.0|153896.0|153902.0|153932.0|153944.0|153946.0|153962.0|153966.0|153996.0|154011.0|154060.0|154066.0|154067.0|154068.0|154075.0|154082.0|154099.0|154141.0|154178.0|154181.0|154231.0|154249.0|154255.0|154264.0|154265.0|154289.0|154291.0|154342.0|154361.0|154379.0|154394.0|154404.0|154408.0|154437.0|154453.0|154469.0|154475.0|154486.0|154500.0|154502.0|154507.0|154522.0|154552.0|154561.0|154577.0|154582.0|154615.0|154626.0|154637.0|154658.0|154663.0|154677.0|154711.0|154754.0|154792.0|154831.0|154856.0|154861.0|154872.0|154896.0|154899.0|154921.0|154932.0|154940.0|154956.0|155006.0|155048.0|155057.0|155079.0|155134.0|155156.0|155158.0|155178.0|155188.0|155189.0|155221.0|155234.0|155238.0|155259.0|155263.0|155312.0|155337.0|155344.0|155361.0|155370.0|155429.0|155439.0|155449.0|155461.0|155479.0|155489.0|155542.0|155620.0|155641.0|155646.0|155650.0|155659.0|155696.0|155698.0|155731.0|155757.0|155766.0|155780.0|155804.0|155871.0|155966.0|155973.0|156020.0|156047.0|156058.0|156067.0|156079.0|156082.0|156092.0|156128.0|156162.0|156187.0|156197.0|156236.0|156265.0|156269.0|156292.0|156398.0|156402.0|156453.0|156471.0|156504.0|156509.0|156533.0|156535.0|156572.0|156574.0|156616.0|156623.0|156668.0|156673.0|156698.0|156723.0|156775.0|156776.0|156781.0|156840.0|156925.0|156982.0|156992.0|157003.0|157031.0|157046.0|157078.0|157089.0|157090.0|157100.0|157137.0|157145.0|157147.0|157179.0|157193.0|157208.0|157229.0|157260.0|157280.0|157317.0|157368.0|157371.0|157425.0|157472.0|157503.0|157547.0|157558.0|157583.0|157587.0|157641.0|157748.0|157750.0|157769.0|157797.0|157908.0|157915.0|157964.0|157986.0|158019.0|158189.0|158190.0|158203.0|158227.0|158289.0|158290.0|158297.0|158328.0|158333.0|158402.0|158431.0|158497.0|158505.0|158534.0|158593.0|158613.0|158638.0|158694.0|158721.0|158740.0|158741.0|158763.0|158795.0|158823.0|158870.0|158947.0|158961.0|158967.0|159035.0|159045.0|159050.0|159085.0|159098.0|159142.0|159218.0|159300.0|159407.0|159408.0|159462.0|159477.0|159552.0|159566.0|159622.0|159668.0|159742.0|159771.0|159802.0|159914.0|160007.0|160018.0|160089.0|160108.0|160158.0|160185.0|160260.0|160288.0|160341.0|160390.0|160411.0|160450.0|160511.0|160558.0|160588.0|160616.0|160666.0|160695.0|160698.0|160700.0|160803.0|160916.0|160932.0|160933.0|161009.0|161018.0|161044.0|161118.0|161124.0|161207.0|161216.0|161232.0|161320.0|161340.0|161354.0|161360.0|161447.0|161458.0|161461.0|161500.0|161522.0|161525.0|161623.0|161628.0|161661.0|161704.0|161734.0|161783.0|161825.0|161830.0|161835.0|161854.0|161876.0|161897.0|161927.0|161959.0|162027.0|162066.0|162072.0|162082.0|162092.0|162125.0|162136.0|162179.0|162199.0|162211.0|162229.0|162247.0|162280.0|162287.0|162304.0|162313.0|162330.0|162351.0|162367.0|162395.0|162409.0|162413.0|162449.0|162452.0|162454.0|162474.0|162503.0|162520.0|162556.0|162610.0|162628.0|162718.0|162719.0|162735.0|162743.0|162763.0|162831.0|162842.0|162935.0|162937.0|162970.0|163042.0|163138.0|163164.0|163165.0|163175.0|163227.0|163253.0|163273.0|163279.0|163293.0|163314.0|163347.0|163367.0|163382.0|163425.0|163475.0|163486.0|163507.0|163516.0|163537.0|163569.0|163623.0|163643.0|163675.0|163691.0|163692.0|163694.0|163745.0|163770.0|163780.0|163794.0 -in.representative_income metadata_and_annual usd float 163809.0|163907.0|163915.0|163918.0|163940.0|164001.0|164002.0|164023.0|164032.0|164079.0|164097.0|164104.0|164118.0|164130.0|164140.0|164149.0|164179.0|164185.0|164235.0|164238.0|164310.0|164338.0|164343.0|164345.0|164413.0|164423.0|164450.0|164465.0|164517.0|164550.0|164561.0|164582.0|164620.0|164654.0|164656.0|164663.0|164692.0|164709.0|164718.0|164722.0|164740.0|164765.0|164772.0|164775.0|164805.0|164835.0|164864.0|164880.0|164903.0|164929.0|164956.0|164957.0|164987.0|165011.0|165022.0|165032.0|165088.0|165104.0|165108.0|165113.0|165159.0|165171.0|165208.0|165228.0|165240.0|165257.0|165280.0|165311.0|165313.0|165341.0|165355.0|165361.0|165383.0|165419.0|165445.0|165468.0|165472.0|165499.0|165521.0|165526.0|165527.0|165548.0|165563.0|165580.0|165589.0|165590.0|165604.0|165616.0|165623.0|165636.0|165657.0|165678.0|165740.0|165744.0|165755.0|165770.0|165785.0|165840.0|165846.0|165848.0|165852.0|165858.0|165866.0|165868.0|165916.0|165930.0|165961.0|165995.0|166019.0|166064.0|166074.0|166106.0|166167.0|166200.0|166202.0|166206.0|166227.0|166229.0|166233.0|166259.0|166276.0|166277.0|166311.0|166320.0|166338.0|166364.0|166371.0|166393.0|166401.0|166417.0|166418.0|166421.0|166424.0|166431.0|166440.0|166469.0|166476.0|166500.0|166511.0|166523.0|166545.0|166562.0|166579.0|166600.0|166608.0|166640.0|166683.0|166684.0|166695.0|166698.0|166706.0|166707.0|166716.0|166733.0|166734.0|166786.0|166796.0|166806.0|166814.0|166819.0|166825.0|166876.0|166885.0|166888.0|166920.0|166921.0|166933.0|166947.0|166977.0|166987.0|167027.0|167029.0|167052.0|167078.0|167115.0|167127.0|167147.0|167149.0|167155.0|167176.0|167179.0|167198.0|167209.0|167218.0|167246.0|167250.0|167257.0|167275.0|167300.0|167311.0|167319.0|167322.0|167350.0|167397.0|167405.0|167421.0|167458.0|167472.0|167473.0|167477.0|167482.0|167490.0|167501.0|167505.0|167514.0|167516.0|167523.0|167526.0|167552.0|167565.0|167570.0|167577.0|167580.0|167581.0|167583.0|167592.0|167603.0|167611.0|167644.0|167646.0|167651.0|167662.0|167673.0|167677.0|167684.0|167704.0|167724.0|167735.0|167769.0|167776.0|167781.0|167808.0|167817.0|167823.0|167836.0|167838.0|167844.0|167862.0|167869.0|167876.0|167883.0|167900.0|167921.0|167931.0|167935.0|167959.0|167973.0|167988.0|167991.0|167999.0|168009.0|168030.0|168049.0|168055.0|168092.0|168096.0|168102.0|168104.0|168121.0|168136.0|168139.0|168157.0|168213.0|168218.0|168220.0|168230.0|168240.0|168272.0|168273.0|168281.0|168290.0|168306.0|168315.0|168326.0|168328.0|168329.0|168351.0|168359.0|168391.0|168392.0|168402.0|168446.0|168447.0|168457.0|168462.0|168478.0|168532.0|168536.0|168537.0|168539.0|168542.0|168553.0|168573.0|168586.0|168592.0|168593.0|168596.0|168607.0|168618.0|168624.0|168639.0|168640.0|168683.0|168694.0|168703.0|168704.0|168705.0|168716.0|168737.0|168747.0|168765.0|168767.0|168768.0|168769.0|168778.0|168780.0|168787.0|168795.0|168797.0|168800.0|168823.0|168842.0|168849.0|168882.0|168895.0|168899.0|168906.0|168907.0|168915.0|168920.0|168927.0|168959.0|168960.0|168972.0|168973.0|168985.0|168997.0|169001.0|169056.0|169058.0|169068.0|169093.0|169118.0|169138.0|169169.0|169177.0|169179.0|169189.0|169199.0|169209.0|169229.0|169241.0|169269.0|169271.0|169293.0|169300.0|169317.0|169343.0|169347.0|169369.0|169370.0|169385.0|169391.0|169411.0|169412.0|169452.0|169498.0|169501.0|169502.0|169523.0|169528.0|169571.0|169603.0|169612.0|169623.0|169626.0|169633.0|169638.0|169642.0|169648.0|169664.0|169674.0|169686.0|169688.0|169699.0|169707.0|169746.0|169748.0|169749.0|169755.0|169759.0|169788.0|169822.0|169823.0|169828.0|169854.0|169858.0|169880.0|169897.0|169903.0|169906.0|169912.0|169916.0|169927.0|169928.0|169957.0|169961.0|169962.0|169977.0|169991.0|170007.0|170022.0|170035.0|170058.0|170066.0|170088.0|170099.0|170108.0|170127.0|170141.0|170159.0|170161.0|170174.0|170175.0|170176.0|170178.0|170185.0|170210.0|170213.0|170221.0|170224.0|170240.0|170241.0|170250.0|170256.0|170260.0|170272.0|170282.0|170292.0|170304.0|170319.0|170324.0|170328.0|170363.0|170371.0|170411.0|170444.0|170496.0|170498.0|170518.0|170551.0|170569.0|170593.0|170603.0|170606.0|170625.0|170635.0|170682.0|170706.0|170711.0|170721.0|170732.0|170787.0|170801.0|170816.0|170840.0|170846.0|170852.0|170878.0|170891.0|170901.0|170917.0|170927.0|170930.0|170931.0|170941.0|170967.0|170973.0|170984.0|171057.0|171067.0|171142.0|171146.0|171163.0|171179.0|171188.0|171204.0|171241.0|171254.0|171268.0|171282.0|171324.0|171334.0|171354.0|171355.0|171373.0|171391.0|171398.0|171422.0|171427.0|171430.0|171436.0|171448.0|171449.0|171470.0|171523.0|171537.0|171551.0|171563.0|171569.0|171573.0|171579.0|171634.0|171644.0|171645.0|171654.0|171690.0|171698.0|171738.0|171763.0|171774.0|171803.0|171806.0|171826.0|171848.0|171849.0|171861.0|171870.0|171873.0|171876.0|171880.0|171888.0|171903.0|171911.0|171913.0|171927.0|171928.0|171940.0|171957.0|171964.0|171999.0|172011.0|172042.0|172043.0|172046.0|172048.0|172054.0|172059.0|172078.0|172111.0|172119.0|172129.0|172150.0|172183.0|172217.0|172230.0|172245.0|172253.0|172356.0|172396.0|172411.0|172428.0|172432.0|172458.0|172513.0|172587.0|172611.0|172649.0|172659.0|172665.0|172675.0|172717.0|172755.0|172769.0|172785.0|172797.0|172799.0|172812.0|172836.0|172850.0|172875.0|172886.0|172897.0|172932.0|172947.0|172954.0|172956.0|172976.0|172983.0|173004.0|173038.0|173061.0|173082.0|173092.0|173147.0|173166.0|173187.0|173200.0|173240.0|173255.0|173271.0|173286.0|173308.0|173325.0|173416.0|173456.0|173523.0|173543.0|173577.0|173598.0|173644.0|173664.0|173674.0|173684.0|173697.0|173716.0|173737.0|173739.0|173792.0|173795.0|173800.0|173896.0|173904.0|173913.0|173934.0|173944.0|173947.0|173956.0|173960.0|173983.0|174006.0|174031.0|174039.0|174096.0|174116.0|174126.0|174183.0|174328.0|174336.0|174390.0|174419.0|174432.0|174436.0|174457.0|174496.0|174522.0|174537.0|174610.0|174642.0|174654.0|174749.0|174755.0|174757.0|174759.0|174856.0|174865.0|174896.0|174928.0|174935.0|174959.0|174993.0|175025.0|175033.0|175058.0|175085.0|175140.0|175144.0|175149.0|175159.0|175187.0|175260.0|175360.0|175361.0|175381.0|175402.0|175442.0|175450.0|175462.0|175469.0|175487.0|175517.0|175554.0|175563.0|175577.0|175605.0|175617.0|175656.0|175664.0|175695.0|175723.0|175793.0|175806.0|175831.0|175863.0|175866.0|175938.0|175947.0|175967.0|176008.0|176014.0|176046.0|176062.0|176119.0|176121.0|176153.0|176181.0|176225.0|176260.0|176275.0|176304.0|176367.0|176409.0|176430.0|176441.0|176475.0|176482.0|176487.0|176541.0|176583.0|176585.0|176647.0|176765.0|176790.0|176857.0|176873.0|176876.0|176990.0|177119.0|177141.0|177173.0|177179.0|177200.0|177206.0|177410.0|177441.0|177482.0|177521.0|177616.0|177737.0|177954.0|177988.0|178018.0|178085.0|178123.0|178132.0|178235.0|178291.0|178331.0|178334.0|178392.0|178408.0|178418.0|178439.0|178441.0|178565.0|178601.0|178678.0|178729.0|178738.0|178761.0|178833.0|178854.0|178858.0|178926.0|178998.0|179051.0|179072.0|179163.0|179178.0|179200.0|179250.0|179267.0|179402.0|179481.0|179504.0|179588.0|179679.0|179726.0|179790.0|179803.0|179846.0|179910.0|179916.0|179989.0|180006.0|180114.0|180124.0|180232.0|180298.0|180316.0|180339.0|180401.0|180439.0|180513.0|180607.0|180628.0|180634.0|180654.0|180660.0|180715.0|180759.0|180816.0|180865.0|180978.0|180984.0|181020.0|181076.0|181087.0|181128.0|181220.0|181321.0|181422.0|181456.0|181551.0|181725.0|181742.0|181814.0|181826.0|181845.0|181846.0|181856.0|181886.0|181927.0|181948.0|181949.0|181961.0|181968.0|182028.0|182057.0|182059.0|182167.0|182257.0|182275.0|182331.0|182342.0|182432.0|182491.0|182552.0|182587.0|182599.0|182634.0|182671.0|182729.0|182763.0|182809.0|182836.0|182846.0|182873.0|182916.0|182924.0|182937.0|182974.0|182980.0|183033.0|183073.0|183079.0|183080.0|183139.0|183206.0|183240.0|183244.0|183341.0|183378.0|183392.0|183442.0|183453.0|183501.0|183516.0|183533.0|183544.0|183559.0|183560.0|183592.0|183601.0|183630.0|183637.0|183644.0|183665.0|183667.0|183680.0|183702.0|183745.0|183774.0|183784.0|183788.0|183805.0|183809.0|183825.0|183846.0|183856.0|183877.0|183882.0|183896.0|183922.0|183923.0|183947.0|183968.0|184004.0|184011.0|184096.0|184099.0|184112.0|184114.0|184149.0|184150.0|184200.0|184204.0|184218.0|184221.0|184240.0|184250.0|184293.0|184311.0|184321.0|184419.0|184423.0|184436.0|184442.0|184451.0|184491.0|184526.0|184527.0|184553.0|184556.0|184582.0|184584.0|184614.0|184652.0|184655.0|184676.0|184687.0|184733.0|184760.0|184762.0|184766.0|184795.0|184798.0|184803.0|184848.0|184868.0|184869.0|184873.0|184887.0|184890.0|184955.0|184978.0|185031.0|185042.0|185057.0|185059.0|185083.0|185085.0|185095.0|185109.0|185117.0|185119.0|185146.0|185160.0|185169.0|185187.0|185189.0|185249.0|185290.0|185301.0|185311.0|185399.0|185456.0|185463.0|185484.0|185488.0|185492.0|185564.0|185611.0|185624.0|185642.0|185653.0|185661.0|185665.0|185682.0|185707.0|185716.0|185750.0|185765.0|185766.0|185811.0|185816.0|185821.0|185841.0|185842.0|185847.0|185852.0|185867.0|185868.0|185874.0|185875.0|185906.0|185921.0|185927.0|185928.0|185949.0 -in.representative_income metadata_and_annual usd float 185971.0|185979.0|186022.0|186028.0|186029.0|186053.0|186057.0|186075.0|186089.0|186099.0|186119.0|186129.0|186133.0|186136.0|186138.0|186165.0|186208.0|186230.0|186239.0|186254.0|186271.0|186273.0|186275.0|186290.0|186308.0|186312.0|186338.0|186350.0|186372.0|186384.0|186402.0|186422.0|186454.0|186458.0|186473.0|186479.0|186497.0|186507.0|186521.0|186559.0|186565.0|186574.0|186598.0|186619.0|186673.0|186685.0|186687.0|186693.0|186771.0|186774.0|186781.0|186835.0|186899.0|186941.0|186963.0|187005.0|187008.0|187029.0|187079.0|187087.0|187099.0|187102.0|187106.0|187109.0|187111.0|187137.0|187159.0|187180.0|187190.0|187191.0|187207.0|187210.0|187245.0|187281.0|187312.0|187317.0|187354.0|187362.0|187386.0|187412.0|187429.0|187467.0|187483.0|187503.0|187509.0|187510.0|187516.0|187531.0|187567.0|187570.0|187596.0|187602.0|187614.0|187622.0|187628.0|187720.0|187724.0|187732.0|187735.0|187746.0|187807.0|187825.0|187827.0|187870.0|187878.0|187883.0|187904.0|187913.0|187927.0|187931.0|187937.0|187942.0|187982.0|188002.0|188015.0|188018.0|188023.0|188037.0|188061.0|188068.0|188079.0|188089.0|188099.0|188109.0|188112.0|188122.0|188137.0|188140.0|188142.0|188147.0|188163.0|188165.0|188175.0|188190.0|188194.0|188200.0|188205.0|188218.0|188223.0|188240.0|188241.0|188247.0|188251.0|188254.0|188261.0|188283.0|188291.0|188326.0|188331.0|188336.0|188342.0|188343.0|188352.0|188369.0|188391.0|188392.0|188395.0|188414.0|188432.0|188434.0|188446.0|188453.0|188458.0|188461.0|188468.0|188493.0|188498.0|188502.0|188533.0|188542.0|188550.0|188556.0|188563.0|188594.0|188596.0|188605.0|188621.0|188624.0|188627.0|188634.0|188650.0|188653.0|188669.0|188680.0|188695.0|188704.0|188712.0|188742.0|188744.0|188756.0|188758.0|188766.0|188775.0|188785.0|188790.0|188796.0|188809.0|188818.0|188820.0|188827.0|188842.0|188859.0|188866.0|188880.0|188897.0|188899.0|188907.0|188911.0|188917.0|188927.0|188938.0|188958.0|188959.0|188962.0|188972.0|188975.0|188981.0|188983.0|188985.0|188998.0|189008.0|189014.0|189035.0|189049.0|189065.0|189083.0|189084.0|189089.0|189090.0|189093.0|189099.0|189101.0|189116.0|189119.0|189126.0|189127.0|189136.0|189141.0|189147.0|189150.0|189169.0|189175.0|189190.0|189197.0|189200.0|189220.0|189228.0|189230.0|189249.0|189266.0|189270.0|189272.0|189292.0|189298.0|189301.0|189302.0|189303.0|189324.0|189333.0|189354.0|189356.0|189357.0|189374.0|189402.0|189406.0|189407.0|189421.0|189426.0|189428.0|189432.0|189456.0|189464.0|189475.0|189478.0|189503.0|189507.0|189513.0|189523.0|189542.0|189568.0|189571.0|189581.0|189603.0|189604.0|189618.0|189622.0|189635.0|189645.0|189678.0|189684.0|189705.0|189731.0|189732.0|189745.0|189766.0|189786.0|189788.0|189806.0|189820.0|189830.0|189839.0|189840.0|189847.0|189850.0|189868.0|189871.0|189872.0|189882.0|189890.0|189891.0|189892.0|189893.0|189894.0|189901.0|189907.0|189911.0|189935.0|189947.0|189958.0|189968.0|189983.0|189993.0|189997.0|190001.0|190008.0|190019.0|190030.0|190033.0|190040.0|190055.0|190059.0|190079.0|190085.0|190092.0|190093.0|190097.0|190104.0|190108.0|190109.0|190112.0|190119.0|190120.0|190129.0|190140.0|190145.0|190151.0|190160.0|190163.0|190172.0|190180.0|190189.0|190200.0|190210.0|190215.0|190217.0|190218.0|190231.0|190241.0|190251.0|190252.0|190258.0|190262.0|190269.0|190271.0|190303.0|190311.0|190313.0|190322.0|190324.0|190325.0|190344.0|190356.0|190365.0|190378.0|190407.0|190412.0|190430.0|190433.0|190454.0|190462.0|190472.0|190486.0|190487.0|190489.0|190513.0|190520.0|190525.0|190530.0|190536.0|190537.0|190542.0|190543.0|190546.0|190568.0|190595.0|190612.0|190614.0|190620.0|190645.0|190664.0|190673.0|190698.0|190701.0|190703.0|190704.0|190715.0|190716.0|190719.0|190736.0|190752.0|190757.0|190767.0|190778.0|190784.0|190795.0|190811.0|190816.0|190819.0|190859.0|190868.0|190871.0|190883.0|190904.0|190917.0|190919.0|190922.0|190937.0|190948.0|190958.0|190966.0|190977.0|190984.0|190989.0|191018.0|191025.0|191027.0|191031.0|191036.0|191046.0|191050.0|191054.0|191066.0|191074.0|191075.0|191095.0|191105.0|191119.0|191128.0|191135.0|191147.0|191160.0|191167.0|191170.0|191182.0|191200.0|191213.0|191220.0|191231.0|191243.0|191244.0|191245.0|191266.0|191275.0|191283.0|191289.0|191301.0|191306.0|191310.0|191321.0|191327.0|191332.0|191335.0|191342.0|191352.0|191384.0|191396.0|191411.0|191418.0|191422.0|191438.0|191445.0|191460.0|191475.0|191478.0|191503.0|191513.0|191516.0|191523.0|191540.0|191552.0|191567.0|191572.0|191611.0|191622.0|191625.0|191631.0|191644.0|191664.0|191675.0|191718.0|191726.0|191757.0|191761.0|191767.0|191776.0|191783.0|191801.0|191826.0|191827.0|191850.0|191857.0|191879.0|191881.0|191891.0|191895.0|191928.0|191932.0|191933.0|191938.0|191948.0|191954.0|191962.0|191974.0|191998.0|191999.0|192008.0|192018.0|192029.0|192044.0|192057.0|192069.0|192087.0|192097.0|192108.0|192109.0|192111.0|192130.0|192147.0|192149.0|192159.0|192181.0|192216.0|192231.0|192242.0|192254.0|192255.0|192263.0|192276.0|192294.0|192301.0|192308.0|192324.0|192332.0|192335.0|192345.0|192361.0|192362.0|192366.0|192378.0|192382.0|192413.0|192432.0|192433.0|192466.0|192469.0|192481.0|192518.0|192534.0|192540.0|192544.0|192571.0|192573.0|192576.0|192584.0|192587.0|192603.0|192624.0|192635.0|192645.0|192648.0|192658.0|192675.0|192676.0|192684.0|192686.0|192696.0|192716.0|192731.0|192736.0|192755.0|192778.0|192782.0|192792.0|192814.0|192840.0|192863.0|192867.0|192882.0|192887.0|192888.0|192899.0|192902.0|192933.0|192938.0|192972.0|192978.0|192985.0|192993.0|192995.0|193007.0|193039.0|193077.0|193080.0|193099.0|193113.0|193140.0|193151.0|193188.0|193190.0|193191.0|193204.0|193221.0|193241.0|193242.0|193253.0|193281.0|193294.0|193309.0|193328.0|193342.0|193397.0|193404.0|193415.0|193436.0|193443.0|193447.0|193483.0|193490.0|193501.0|193503.0|193512.0|193520.0|193543.0|193544.0|193590.0|193620.0|193626.0|193645.0|193650.0|193704.0|193707.0|193710.0|193729.0|193731.0|193746.0|193750.0|193757.0|193810.0|193837.0|193865.0|193913.0|193942.0|193944.0|193948.0|193972.0|193978.0|193987.0|194016.0|194047.0|194049.0|194052.0|194080.0|194120.0|194122.0|194153.0|194160.0|194187.0|194223.0|194225.0|194251.0|194253.0|194259.0|194268.0|194294.0|194303.0|194311.0|194325.0|194342.0|194348.0|194352.0|194355.0|194376.0|194402.0|194427.0|194429.0|194444.0|194453.0|194469.0|194485.0|194539.0|194554.0|194562.0|194575.0|194593.0|194595.0|194617.0|194625.0|194680.0|194701.0|194705.0|194723.0|194739.0|194756.0|194794.0|194797.0|194809.0|194831.0|194841.0|194857.0|194892.0|194917.0|194938.0|194944.0|194949.0|194958.0|194965.0|195025.0|195039.0|195046.0|195059.0|195099.0|195102.0|195133.0|195151.0|195160.0|195181.0|195208.0|195240.0|195313.0|195342.0|195349.0|195362.0|195367.0|195418.0|195457.0|195460.0|195461.0|195463.0|195486.0|195524.0|195563.0|195564.0|195565.0|195576.0|195583.0|195584.0|195595.0|195604.0|195619.0|195630.0|195667.0|195673.0|195735.0|195738.0|195743.0|195766.0|195770.0|195840.0|195946.0|195968.0|195976.0|195997.0|196012.0|196069.0|196079.0|196119.0|196157.0|196182.0|196199.0|196234.0|196271.0|196272.0|196322.0|196323.0|196394.0|196429.0|196441.0|196473.0|196491.0|196537.0|196578.0|196595.0|196612.0|196626.0|196645.0|196656.0|196675.0|196684.0|196776.0|196801.0|196851.0|196862.0|196877.0|196900.0|196978.0|196987.0|197000.0|197008.0|197078.0|197079.0|197085.0|197106.0|197180.0|197183.0|197186.0|197211.0|197214.0|197240.0|197281.0|197317.0|197382.0|197423.0|197440.0|197483.0|197510.0|197514.0|197584.0|197617.0|197622.0|197687.0|197726.0|197729.0|197786.0|197854.0|197944.0|197949.0|197988.0|198039.0|198059.0|198089.0|198158.0|198266.0|198276.0|198291.0|198373.0|198452.0|198481.0|198555.0|198589.0|198691.0|198695.0|198782.0|198803.0|198806.0|198914.0|198967.0|198999.0|199004.0|199018.0|199071.0|199201.0|199232.0|199302.0|199321.0|199373.0|199379.0|199426.0|199455.0|199483.0|199504.0|199586.0|199605.0|199662.0|199690.0|199742.0|199768.0|199779.0|199876.0|199887.0|199908.0|199994.0|200009.0|200102.0|200185.0|200211.0|200305.0|200319.0|200375.0|200413.0|200514.0|200586.0|200643.0|200735.0|200817.0|200843.0|200860.0|200864.0|200902.0|200968.0|201019.0|201133.0|201221.0|201272.0|201430.0|201507.0|201524.0|201609.0|201616.0|201649.0|201809.0|201827.0|201852.0|201856.0|201916.0|201963.0|202029.0|202048.0|202130.0|202156.0|202165.0|202168.0|202231.0|202345.0|202371.0|202393.0|202480.0|202484.0|202485.0|202534.0|202696.0|202785.0|202793.0|202882.0|202886.0|202887.0|202906.0|202912.0|202989.0|203039.0|203128.0|203196.0|203237.0|203275.0|203342.0|203539.0|203544.0|203605.0|203668.0|203712.0|203722.0|203740.0|203750.0|203856.0|203878.0|203884.0|203955.0|203961.0|203993.0|204049.0|204101.0|204170.0|204209.0|204220.0|204227.0|204277.0|204317.0|204425.0|204453.0|204478.0|204554.0|204594.0|204625.0|204641.0|204699.0|204749.0|204756.0|204846.0|204857.0|204879.0|205016.0|205029.0|205059.0|205226.0|205244.0|205259.0|205261.0|205289.0|205332.0|205362.0|205505.0|205542.0|205565.0|205649.0|205672.0|205775.0|205807.0|205830.0|205859.0|205969.0|206070.0 -in.representative_income metadata_and_annual usd float 206102.0|206175.0|206210.0|206291.0|206370.0|206393.0|206474.0|206478.0|206492.0|206497.0|206586.0|206650.0|206666.0|206676.0|206703.0|206746.0|206802.0|206807.0|206878.0|206914.0|206961.0|207029.0|207080.0|207175.0|207245.0|207283.0|207322.0|207332.0|207391.0|207441.0|207450.0|207498.0|207528.0|207547.0|207558.0|207605.0|207612.0|207686.0|207712.0|207757.0|207787.0|207838.0|207888.0|207968.0|208035.0|208045.0|208090.0|208180.0|208249.0|208354.0|208390.0|208421.0|208530.0|208559.0|208571.0|208595.0|208601.0|208638.0|208656.0|208679.0|208684.0|208785.0|208797.0|208812.0|208869.0|208875.0|209001.0|209039.0|209100.0|209179.0|209234.0|209287.0|209322.0|209343.0|209385.0|209550.0|209555.0|209569.0|209592.0|209605.0|209612.0|209694.0|209706.0|209752.0|209797.0|209804.0|209859.0|209866.0|209908.0|209935.0|210004.0|210009.0|210043.0|210110.0|210181.0|210211.0|210396.0|210413.0|210416.0|210476.0|210514.0|210611.0|210615.0|210692.0|210711.0|210757.0|210826.0|210827.0|210853.0|210921.0|210932.0|210933.0|210942.0|211015.0|211019.0|211037.0|211120.0|211139.0|211232.0|211242.0|211307.0|211322.0|211343.0|211448.0|211449.0|211470.0|211519.0|211524.0|211551.0|211556.0|211625.0|211654.0|211684.0|211708.0|211712.0|211765.0|211772.0|211792.0|211840.0|211860.0|211976.0|212015.0|212029.0|212130.0|212151.0|212204.0|212231.0|212273.0|212376.0|212397.0|212434.0|212479.0|212503.0|212511.0|212543.0|212636.0|212650.0|212714.0|212737.0|212757.0|212841.0|212853.0|212872.0|212892.0|212961.0|212972.0|212995.0|213030.0|213040.0|213069.0|213080.0|213141.0|213170.0|213177.0|213187.0|213201.0|213305.0|213361.0|213392.0|213509.0|213510.0|213545.0|213558.0|213614.0|213617.0|213646.0|213663.0|213747.0|213769.0|213831.0|213836.0|213933.0|213949.0|213980.0|214026.0|214041.0|214085.0|214129.0|214151.0|214233.0|214252.0|214257.0|214336.0|214401.0|214459.0|214474.0|214496.0|214507.0|214543.0|214555.0|214613.0|214656.0|214690.0|214733.0|214743.0|214748.0|214757.0|214868.0|214904.0|214949.0|214955.0|215013.0|215019.0|215058.0|215119.0|215140.0|215161.0|215230.0|215295.0|215351.0|215446.0|215456.0|215464.0|215548.0|215554.0|215561.0|215565.0|215574.0|215666.0|215676.0|215752.0|215763.0|215773.0|215780.0|215978.0|215986.0|216070.0|216085.0|216094.0|216105.0|216110.0|216171.0|216193.0|216194.0|216292.0|216300.0|216302.0|216310.0|216373.0|216408.0|216511.0|216605.0|216676.0|216689.0|216721.0|216770.0|216783.0|216811.0|216837.0|216878.0|216890.0|216914.0|216944.0|216979.0|217121.0|217144.0|217158.0|217174.0|217181.0|217212.0|217249.0|217259.0|217266.0|217280.0|217352.0|217373.0|217390.0|217430.0|217459.0|217499.0|217513.0|217588.0|217637.0|217686.0|217710.0|217715.0|217776.0|217787.0|217823.0|217888.0|217910.0|217946.0|217987.0|218018.0|218047.0|218049.0|218090.0|218092.0|218125.0|218152.0|218191.0|218255.0|218256.0|218262.0|218277.0|218304.0|218325.0|218339.0|218343.0|218363.0|218409.0|218410.0|218440.0|218447.0|218514.0|218536.0|218590.0|218620.0|218662.0|218668.0|218687.0|218725.0|218795.0|218830.0|218837.0|218977.0|218983.0|219042.0|219091.0|219120.0|219184.0|219199.0|219201.0|219232.0|219252.0|219282.0|219287.0|219302.0|219335.0|219358.0|219379.0|219404.0|219413.0|219421.0|219493.0|219551.0|219569.0|219628.0|219699.0|219707.0|219735.0|219767.0|219876.0|219909.0|220010.0|220057.0|220060.0|220096.0|220100.0|220111.0|220164.0|220202.0|220212.0|220318.0|220413.0|220414.0|220416.0|220422.0|220525.0|220616.0|220627.0|220632.0|220701.0|220717.0|220731.0|220740.0|220848.0|220919.0|220937.0|220956.0|221020.0|221130.0|221143.0|221151.0|221172.0|221222.0|221238.0|221280.0|221323.0|221345.0|221350.0|221361.0|221388.0|221453.0|221468.0|221497.0|221525.0|221556.0|221573.0|221605.0|221625.0|221659.0|221660.0|221667.0|221727.0|221742.0|221762.0|221774.0|221785.0|221814.0|221820.0|221865.0|221928.0|221929.0|221989.0|221994.0|222020.0|222030.0|222036.0|222058.0|222072.0|222132.0|222204.0|222206.0|222226.0|222232.0|222278.0|222333.0|222453.0|222484.0|222494.0|222522.0|222535.0|222577.0|222606.0|222627.0|222737.0|222740.0|222793.0|222804.0|222897.0|222939.0|222944.0|223000.0|223009.0|223063.0|223103.0|223170.0|223207.0|223222.0|223228.0|223242.0|223277.0|223310.0|223331.0|223333.0|223366.0|223412.0|223428.0|223441.0|223545.0|223549.0|223576.0|223600.0|223619.0|223646.0|223657.0|223679.0|223682.0|223707.0|223747.0|223765.0|223815.0|223826.0|223874.0|223892.0|223928.0|223954.0|223962.0|224031.0|224086.0|224104.0|224135.0|224136.0|224197.0|224202.0|224238.0|224252.0|224305.0|224315.0|224351.0|224444.0|224505.0|224521.0|224547.0|224563.0|224631.0|224728.0|224738.0|224754.0|224757.0|224767.0|224789.0|224846.0|224857.0|224888.0|224931.0|224954.0|224959.0|224995.0|225028.0|225053.0|225060.0|225062.0|225063.0|225084.0|225102.0|225262.0|225278.0|225288.0|225327.0|225363.0|225373.0|225380.0|225413.0|225425.0|225475.0|225494.0|225555.0|225565.0|225580.0|225639.0|225682.0|225685.0|225693.0|225710.0|225746.0|225795.0|225799.0|225818.0|225829.0|225861.0|225888.0|225897.0|225961.0|225969.0|226035.0|226070.0|226171.0|226175.0|226197.0|226213.0|226222.0|226251.0|226272.0|226283.0|226374.0|226387.0|226404.0|226467.0|226498.0|226530.0|226535.0|226635.0|226677.0|226712.0|226740.0|226778.0|226846.0|226866.0|226898.0|226909.0|226920.0|226927.0|226951.0|227004.0|227007.0|227023.0|227035.0|227081.0|227094.0|227115.0|227126.0|227137.0|227142.0|227162.0|227183.0|227229.0|227283.0|227312.0|227332.0|227373.0|227409.0|227413.0|227414.0|227434.0|227439.0|227464.0|227477.0|227485.0|227539.0|227571.0|227584.0|227601.0|227744.0|227763.0|227788.0|227795.0|227838.0|227870.0|227873.0|227880.0|227901.0|227914.0|227951.0|227979.0|227990.0|228006.0|228108.0|228160.0|228196.0|228229.0|228260.0|228293.0|228322.0|228363.0|228364.0|228394.0|228415.0|228428.0|228430.0|228467.0|228495.0|228519.0|228533.0|228537.0|228628.0|228645.0|228697.0|228736.0|228752.0|228765.0|228772.0|228777.0|228798.0|228849.0|228879.0|228899.0|228913.0|228952.0|228954.0|228982.0|229000.0|229014.0|229050.0|229059.0|229074.0|229077.0|229086.0|229147.0|229181.0|229192.0|229230.0|229267.0|229271.0|229289.0|229303.0|229313.0|229377.0|229395.0|229397.0|229404.0|229482.0|229485.0|229498.0|229503.0|229505.0|229555.0|229600.0|229601.0|229611.0|229705.0|229718.0|229725.0|229778.0|229808.0|229826.0|229891.0|229904.0|229910.0|229933.0|229962.0|230009.0|230014.0|230040.0|230053.0|230075.0|230111.0|230141.0|230147.0|230162.0|230172.0|230220.0|230255.0|230313.0|230326.0|230362.0|230368.0|230414.0|230432.0|230437.0|230485.0|230515.0|230529.0|230576.0|230594.0|230616.0|230633.0|230642.0|230680.0|230684.0|230717.0|230726.0|230747.0|230791.0|230818.0|230820.0|230839.0|230842.0|230919.0|230943.0|230959.0|230991.0|230996.0|231005.0|231020.0|231045.0|231060.0|231102.0|231116.0|231121.0|231145.0|231148.0|231170.0|231221.0|231222.0|231231.0|231275.0|231321.0|231323.0|231328.0|231355.0|231382.0|231424.0|231436.0|231486.0|231525.0|231544.0|231561.0|231592.0|231626.0|231651.0|231697.0|231727.0|231767.0|231802.0|231828.0|231865.0|231871.0|231908.0|231929.0|231961.0|231974.0|231977.0|232010.0|232013.0|232015.0|232023.0|232031.0|232077.0|232080.0|232118.0|232171.0|232180.0|232232.0|232294.0|232301.0|232315.0|232333.0|232355.0|232376.0|232386.0|232434.0|232441.0|232490.0|232535.0|232540.0|232572.0|232593.0|232604.0|232617.0|232625.0|232636.0|232646.0|232695.0|232715.0|232733.0|232737.0|232747.0|232751.0|232799.0|232838.0|232853.0|232857.0|232938.0|232939.0|232949.0|233040.0|233063.0|233068.0|233089.0|233109.0|233129.0|233141.0|233153.0|233170.0|233211.0|233222.0|233230.0|233261.0|233273.0|233279.0|233344.0|233367.0|233382.0|233485.0|233490.0|233521.0|233546.0|233582.0|233595.0|233647.0|233676.0|233697.0|233706.0|233728.0|233760.0|233798.0|233806.0|233807.0|233830.0|233849.0|233905.0|233911.0|233921.0|233933.0|233950.0|234000.0|234012.0|234017.0|234098.0|234123.0|234140.0|234152.0|234227.0|234243.0|234246.0|234253.0|234333.0|234346.0|234354.0|234374.0|234424.0|234439.0|234452.0|234460.0|234462.0|234548.0|234552.0|234556.0|234649.0|234656.0|234723.0|234756.0|234758.0|234759.0|234763.0|234859.0|234861.0|234871.0|234895.0|234966.0|235003.0|235061.0|235068.0|235071.0|235085.0|235110.0|235162.0|235171.0|235177.0|235187.0|235191.0|235192.0|235206.0|235218.0|235261.0|235263.0|235300.0|235364.0|235378.0|235398.0|235408.0|235434.0|235494.0|235515.0|235542.0|235563.0|235566.0|235687.0|235729.0|235739.0|235768.0|235780.0|235790.0|235810.0|235837.0|235867.0|235915.0|235919.0|235948.0|235970.0|235975.0|236023.0|236067.0|236099.0|236158.0|236172.0|236191.0|236203.0|236232.0|236266.0|236298.0|236337.0|236373.0|236374.0|236409.0|236442.0|236483.0|236505.0|236512.0|236525.0|236558.0|236567.0|236576.0|236588.0|236623.0|236654.0|236677.0|236696.0|236718.0|236731.0|236778.0|236793.0|236822.0|236842.0|236850.0|236864.0|236879.0|236915.0|236925.0|236947.0|236970.0|236980.0|237014.0|237027.0|237075.0|237087.0|237100.0|237121.0|237163.0|237180.0|237182.0|237233.0|237234.0|237272.0|237283.0|237287.0|237297.0|237318.0 -in.representative_income metadata_and_annual usd float 237321.0|237335.0|237337.0|237339.0|237384.0|237392.0|237433.0|237447.0|237471.0|237485.0|237487.0|237544.0|237554.0|237637.0|237687.0|237694.0|237703.0|237705.0|237708.0|237750.0|237757.0|237788.0|237811.0|237813.0|237853.0|237876.0|237889.0|237909.0|237919.0|237930.0|237973.0|237990.0|238025.0|238027.0|238077.0|238091.0|238101.0|238130.0|238131.0|238136.0|238192.0|238235.0|238244.0|238265.0|238287.0|238293.0|238306.0|238327.0|238341.0|238394.0|238410.0|238413.0|238435.0|238446.0|238460.0|238472.0|238495.0|238520.0|238552.0|238568.0|238575.0|238576.0|238596.0|238657.0|238675.0|238678.0|238699.0|238735.0|238763.0|238781.0|238783.0|238798.0|238843.0|238853.0|238868.0|238899.0|238946.0|238950.0|239000.0|239004.0|239057.0|239079.0|239091.0|239111.0|239152.0|239184.0|239194.0|239202.0|239216.0|239272.0|239297.0|239303.0|239324.0|239379.0|239380.0|239396.0|239404.0|239411.0|239432.0|239437.0|239459.0|239487.0|239540.0|239555.0|239593.0|239594.0|239606.0|239607.0|239649.0|239670.0|239692.0|239701.0|239710.0|239809.0|239812.0|239818.0|239864.0|239913.0|239916.0|239923.0|239948.0|240010.0|240019.0|240061.0|240111.0|240122.0|240130.0|240158.0|240162.0|240187.0|240188.0|240212.0|240226.0|240238.0|240240.0|240242.0|240296.0|240328.0|240339.0|240344.0|240350.0|240380.0|240404.0|240415.0|240450.0|240453.0|240513.0|240516.0|240517.0|240535.0|240556.0|240617.0|240621.0|240638.0|240640.0|240741.0|240766.0|240782.0|240837.0|240872.0|240882.0|240920.0|240945.0|240947.0|240967.0|240977.0|240981.0|240989.0|240999.0|241021.0|241050.0|241083.0|241085.0|241097.0|241099.0|241103.0|241122.0|241154.0|241160.0|241204.0|241218.0|241223.0|241257.0|241258.0|241294.0|241324.0|241360.0|241377.0|241399.0|241419.0|241425.0|241485.0|241504.0|241526.0|241537.0|241547.0|241566.0|241590.0|241593.0|241610.0|241627.0|241634.0|241658.0|241701.0|241768.0|241773.0|241794.0|241809.0|241821.0|241829.0|241848.0|241873.0|241876.0|241910.0|241927.0|241930.0|241940.0|241955.0|241978.0|241992.0|242026.0|242031.0|242063.0|242071.0|242134.0|242137.0|242172.0|242224.0|242233.0|242242.0|242273.0|242278.0|242288.0|242296.0|242334.0|242340.0|242349.0|242384.0|242392.0|242410.0|242432.0|242435.0|242455.0|242465.0|242492.0|242495.0|242517.0|242536.0|242546.0|242559.0|242565.0|242591.0|242597.0|242599.0|242637.0|242665.0|242673.0|242701.0|242707.0|242738.0|242770.0|242781.0|242804.0|242815.0|242839.0|242875.0|242886.0|242890.0|242907.0|242921.0|242940.0|242998.0|243011.0|243027.0|243029.0|243034.0|243041.0|243087.0|243106.0|243113.0|243132.0|243142.0|243171.0|243214.0|243243.0|243244.0|243297.0|243322.0|243344.0|243351.0|243382.0|243403.0|243423.0|243430.0|243434.0|243445.0|243458.0|243494.0|243505.0|243516.0|243546.0|243565.0|243614.0|243629.0|243646.0|243647.0|243673.0|243677.0|243720.0|243732.0|243738.0|243748.0|243754.0|243765.0|243770.0|243825.0|243835.0|243862.0|243888.0|243930.0|243939.0|243950.0|243970.0|243999.0|244024.0|244051.0|244115.0|244141.0|244145.0|244152.0|244186.0|244210.0|244248.0|244294.0|244352.0|244354.0|244404.0|244425.0|244454.0|244455.0|244458.0|244478.0|244532.0|244556.0|244563.0|244657.0|244661.0|244668.0|244725.0|244726.0|244746.0|244758.0|244763.0|244778.0|244834.0|244854.0|244867.0|244880.0|244890.0|244942.0|244960.0|244961.0|244970.0|244985.0|245011.0|245037.0|245052.0|245069.0|245073.0|245081.0|245102.0|245175.0|245177.0|245183.0|245208.0|245263.0|245267.0|245279.0|245283.0|245390.0|245397.0|245465.0|245483.0|245486.0|245498.0|245541.0|245566.0|245583.0|245589.0|245618.0|245667.0|245699.0|245712.0|245723.0|245754.0|245788.0|245807.0|245820.0|245828.0|245869.0|245876.0|245898.0|245914.0|245927.0|245934.0|245947.0|245959.0|245980.0|245991.0|246003.0|246039.0|246061.0|246071.0|246131.0|246142.0|246172.0|246207.0|246208.0|246238.0|246251.0|246273.0|246293.0|246311.0|246347.0|246356.0|246374.0|246390.0|246453.0|246464.0|246475.0|246517.0|246543.0|246546.0|246563.0|246567.0|246576.0|246600.0|246617.0|246620.0|246672.0|246679.0|246724.0|246754.0|246766.0|246778.0|246780.0|246859.0|246879.0|246883.0|246888.0|246893.0|246929.0|246980.0|246989.0|247000.0|247033.0|247081.0|247094.0|247108.0|247161.0|247189.0|247199.0|247216.0|247237.0|247239.0|247280.0|247284.0|247323.0|247335.0|247343.0|247385.0|247427.0|247430.0|247431.0|247484.0|247486.0|247516.0|247527.0|247535.0|247536.0|247548.0|247581.0|247587.0|247621.0|247634.0|247688.0|247695.0|247752.0|247755.0|247789.0|247832.0|247841.0|247858.0|247864.0|247890.0|247910.0|247937.0|247940.0|247966.0|247971.0|247991.0|248021.0|248028.0|248038.0|248064.0|248074.0|248086.0|248092.0|248117.0|248124.0|248149.0|248167.0|248170.0|248181.0|248193.0|248254.0|248271.0|248274.0|248292.0|248294.0|248359.0|248385.0|248398.0|248400.0|248465.0|248477.0|248496.0|248503.0|248508.0|248510.0|248538.0|248562.0|248570.0|248580.0|248611.0|248616.0|248619.0|248666.0|248670.0|248676.0|248698.0|248782.0|248786.0|248796.0|248799.0|248826.0|248887.0|248890.0|248900.0|248972.0|248993.0|249001.0|249026.0|249040.0|249048.0|249095.0|249098.0|249102.0|249108.0|249126.0|249139.0|249203.0|249255.0|249302.0|249309.0|249362.0|249405.0|249414.0|249435.0|249470.0|249506.0|249520.0|249577.0|249588.0|249593.0|249597.0|249599.0|249607.0|249611.0|249612.0|249625.0|249684.0|249696.0|249708.0|249717.0|249730.0|249804.0|249809.0|249818.0|249890.0|249899.0|249912.0|249921.0|249924.0|249942.0|250011.0|250024.0|250112.0|250114.0|250128.0|250129.0|250135.0|250152.0|250213.0|250230.0|250268.0|250282.0|250291.0|250296.0|250314.0|250324.0|250328.0|250345.0|250363.0|250415.0|250437.0|250453.0|250468.0|250485.0|250516.0|250540.0|250543.0|250561.0|250566.0|250575.0|250617.0|250643.0|250651.0|250669.0|250680.0|250705.0|250718.0|250757.0|250777.0|250785.0|250819.0|250849.0|250865.0|250880.0|250885.0|250952.0|250972.0|250981.0|250993.0|250994.0|250996.0|251021.0|251047.0|251056.0|251080.0|251101.0|251122.0|251159.0|251165.0|251187.0|251207.0|251209.0|251223.0|251236.0|251260.0|251262.0|251294.0|251317.0|251344.0|251354.0|251359.0|251401.0|251418.0|251425.0|251496.0|251508.0|251523.0|251526.0|251534.0|251571.0|251617.0|251629.0|251661.0|251675.0|251678.0|251688.0|251724.0|251726.0|251729.0|251734.0|251750.0|251754.0|251789.0|251829.0|251840.0|251858.0|251930.0|251984.0|252014.0|252046.0|252051.0|252073.0|252132.0|252153.0|252188.0|252190.0|252261.0|252271.0|252282.0|252294.0|252334.0|252368.0|252379.0|252390.0|252398.0|252422.0|252435.0|252473.0|252475.0|252521.0|252536.0|252578.0|252587.0|252603.0|252614.0|252668.0|252690.0|252706.0|252769.0|252789.0|252797.0|252809.0|252830.0|252839.0|252894.0|252913.0|252938.0|253012.0|253015.0|253041.0|253046.0|253101.0|253106.0|253119.0|253142.0|253147.0|253170.0|253208.0|253211.0|253220.0|253222.0|253227.0|253243.0|253262.0|253294.0|253316.0|253334.0|253338.0|253370.0|253377.0|253395.0|253398.0|253422.0|253428.0|253431.0|253432.0|253442.0|253445.0|253475.0|253527.0|253531.0|253546.0|253548.0|253586.0|253632.0|253634.0|253647.0|253655.0|253656.0|253675.0|253686.0|253694.0|253737.0|253738.0|253748.0|253758.0|253824.0|253844.0|253849.0|253871.0|253872.0|253911.0|253924.0|253949.0|253950.0|253964.0|253978.0|254019.0|254046.0|254051.0|254054.0|254127.0|254128.0|254160.0|254192.0|254253.0|254254.0|254266.0|254321.0|254334.0|254342.0|254355.0|254356.0|254371.0|254408.0|254450.0|254460.0|254477.0|254515.0|254557.0|254562.0|254658.0|254665.0|254687.0|254708.0|254759.0|254762.0|254769.0|254775.0|254789.0|254792.0|254829.0|254872.0|254883.0|254899.0|254944.0|254961.0|254991.0|255052.0|255062.0|255099.0|255207.0|255215.0|255221.0|255264.0|255266.0|255268.0|255279.0|255284.0|255299.0|255315.0|255320.0|255365.0|255388.0|255423.0|255425.0|255436.0|255481.0|255567.0|255577.0|255584.0|255588.0|255594.0|255637.0|255639.0|255668.0|255696.0|255742.0|255747.0|255769.0|255789.0|255800.0|255802.0|255810.0|255847.0|255855.0|255870.0|255903.0|255932.0|255963.0|255971.0|255986.0|256008.0|256034.0|256058.0|256071.0|256072.0|256102.0|256107.0|256110.0|256125.0|256164.0|256173.0|256179.0|256212.0|256216.0|256270.0|256314.0|256339.0|256375.0|256396.0|256405.0|256419.0|256447.0|256476.0|256554.0|256575.0|256577.0|256608.0|256612.0|256617.0|256626.0|256662.0|256678.0|256691.0|256720.0|256729.0|256797.0|256807.0|256828.0|256831.0|256860.0|256877.0|256880.0|256935.0|256981.0|256983.0|257038.0|257081.0|257082.0|257091.0|257113.0|257152.0|257163.0|257174.0|257183.0|257198.0|257206.0|257218.0|257238.0|257245.0|257260.0|257284.0|257323.0|257327.0|257334.0|257348.0|257368.0|257385.0|257387.0|257430.0|257450.0|257455.0|257554.0|257584.0|257587.0|257628.0|257640.0|257688.0|257789.0|257799.0|257851.0|257863.0|257884.0|257890.0|257896.0|257904.0|257909.0|257950.0|257955.0|257956.0|257966.0|257987.0|257989.0|257991.0|258016.0|258057.0|258069.0|258090.0|258092.0|258124.0|258164.0|258168.0|258173.0|258193.0|258232.0|258276.0|258314.0|258345.0|258378.0|258379.0|258395.0|258448.0|258487.0|258496.0|258503.0|258556.0|258585.0|258589.0|258593.0|258597.0|258600.0|258627.0|258665.0|258688.0 -in.representative_income metadata_and_annual usd float 258695.0|258698.0|258701.0|258745.0|258770.0|258773.0|258781.0|258792.0|258799.0|258801.0|258822.0|258850.0|258881.0|258895.0|258906.0|258916.0|258980.0|258997.0|259001.0|259011.0|259024.0|259102.0|259130.0|259151.0|259164.0|259203.0|259204.0|259206.0|259222.0|259223.0|259256.0|259304.0|259308.0|259312.0|259345.0|259405.0|259411.0|259421.0|259433.0|259513.0|259529.0|259607.0|259637.0|259644.0|259658.0|259668.0|259708.0|259745.0|259749.0|259774.0|259809.0|259823.0|259853.0|259855.0|259882.0|259892.0|259910.0|259926.0|259961.0|259989.0|260011.0|260030.0|260112.0|260118.0|260132.0|260150.0|260171.0|260177.0|260204.0|260235.0|260277.0|260286.0|260311.0|260355.0|260393.0|260419.0|260442.0|260487.0|260516.0|260526.0|260540.0|260545.0|260553.0|260594.0|260609.0|260617.0|260625.0|260628.0|260634.0|260640.0|260695.0|260699.0|260717.0|260718.0|260751.0|260757.0|260819.0|260848.0|260854.0|260870.0|260909.0|260920.0|260926.0|260933.0|260955.0|260958.0|261015.0|261021.0|261042.0|261057.0|261061.0|261063.0|261064.0|261120.0|261122.0|261150.0|261163.0|261170.0|261204.0|261205.0|261224.0|261226.0|261258.0|261267.0|261278.0|261325.0|261359.0|261370.0|261384.0|261387.0|261426.0|261437.0|261466.0|261473.0|261474.0|261475.0|261489.0|261492.0|261528.0|261537.0|261542.0|261547.0|261557.0|261577.0|261599.0|261628.0|261647.0|261648.0|261653.0|261689.0|261753.0|261797.0|261880.0|261886.0|261906.0|261922.0|261925.0|261931.0|261989.0|262014.0|262019.0|262032.0|262083.0|262091.0|262122.0|262133.0|262136.0|262144.0|262154.0|262157.0|262175.0|262196.0|262198.0|262211.0|262234.0|262274.0|262280.0|262298.0|262335.0|262338.0|262351.0|262386.0|262401.0|262436.0|262446.0|262492.0|262505.0|262532.0|262534.0|262537.0|262554.0|262565.0|262597.0|262608.0|262638.0|262648.0|262658.0|262663.0|262668.0|262698.0|262717.0|262739.0|262780.0|262787.0|262820.0|262840.0|262888.0|262917.0|262937.0|262941.0|262995.0|263018.0|263020.0|263042.0|263049.0|263083.0|263094.0|263102.0|263124.0|263135.0|263143.0|263163.0|263190.0|263210.0|263227.0|263244.0|263310.0|263330.0|263345.0|263352.0|263370.0|263403.0|263419.0|263425.0|263433.0|263435.0|263440.0|263446.0|263498.0|263532.0|263536.0|263635.0|263639.0|263643.0|263648.0|263651.0|263668.0|263743.0|263747.0|263749.0|263757.0|263778.0|263830.0|263846.0|263850.0|263851.0|263854.0|263915.0|263948.0|263951.0|263959.0|263961.0|263999.0|264052.0|264066.0|264069.0|264073.0|264102.0|264153.0|264175.0|264179.0|264207.0|264254.0|264258.0|264283.0|264284.0|264294.0|264335.0|264337.0|264355.0|264362.0|264390.0|264391.0|264436.0|264456.0|264464.0|264495.0|264499.0|264551.0|264557.0|264567.0|264599.0|264601.0|264605.0|264607.0|264658.0|264671.0|264706.0|264713.0|264715.0|264716.0|264737.0|264759.0|264774.0|264811.0|264823.0|264860.0|264877.0|264894.0|264917.0|264927.0|264931.0|264938.0|264955.0|265003.0|265023.0|265035.0|265083.0|265128.0|265142.0|265148.0|265163.0|265186.0|265233.0|265250.0|265255.0|265271.0|265290.0|265339.0|265363.0|265365.0|265444.0|265446.0|265464.0|265466.0|265496.0|265539.0|265571.0|265599.0|265668.0|265761.0|265769.0|265796.0|265810.0|265820.0|265828.0|265887.0|265921.0|265947.0|265969.0|265972.0|266000.0|266012.0|266025.0|266072.0|266108.0|266114.0|266120.0|266136.0|266141.0|266161.0|266166.0|266173.0|266216.0|266218.0|266228.0|266237.0|266239.0|266274.0|266288.0|266323.0|266336.0|266394.0|266398.0|266424.0|266430.0|266443.0|266509.0|266528.0|266552.0|266604.0|266645.0|266660.0|266678.0|266710.0|266733.0|266752.0|266768.0|266779.0|266815.0|266837.0|266847.0|266860.0|266876.0|266880.0|266921.0|266940.0|266967.0|266981.0|266984.0|267026.0|267043.0|267074.0|267092.0|267146.0|267147.0|267183.0|267237.0|267249.0|267265.0|267289.0|267293.0|267330.0|267342.0|267374.0|267385.0|267395.0|267417.0|267448.0|267456.0|267486.0|267525.0|267554.0|267559.0|267587.0|267611.0|267632.0|267662.0|267688.0|267718.0|267740.0|267750.0|267751.0|267765.0|267777.0|267779.0|267826.0|267848.0|267859.0|267868.0|267870.0|267879.0|267890.0|267933.0|267956.0|267971.0|267991.0|268032.0|268041.0|268042.0|268064.0|268072.0|268075.0|268080.0|268082.0|268092.0|268147.0|268174.0|268178.0|268194.0|268249.0|268255.0|268281.0|268295.0|268332.0|268362.0|268363.0|268384.0|268389.0|268397.0|268416.0|268436.0|268470.0|268480.0|268487.0|268497.0|268503.0|268523.0|268577.0|268590.0|268620.0|268631.0|268655.0|268684.0|268694.0|268699.0|268713.0|268714.0|268797.0|268800.0|268827.0|268879.0|268880.0|268899.0|268901.0|268925.0|268929.0|268941.0|269003.0|269030.0|269037.0|269038.0|269040.0|269067.0|269103.0|269106.0|269114.0|269135.0|269204.0|269209.0|269221.0|269253.0|269275.0|269305.0|269313.0|269346.0|269361.0|269436.0|269452.0|269469.0|269518.0|269527.0|269535.0|269543.0|269608.0|269642.0|269651.0|269663.0|269685.0|269709.0|269725.0|269750.0|269758.0|269768.0|269873.0|269911.0|269931.0|269956.0|269966.0|269972.0|269979.0|269990.0|270010.0|270012.0|270037.0|270080.0|270116.0|270117.0|270137.0|270148.0|270171.0|270190.0|270206.0|270214.0|270224.0|270225.0|270241.0|270313.0|270315.0|270333.0|270344.0|270371.0|270375.0|270401.0|270416.0|270441.0|270447.0|270509.0|270517.0|270550.0|270556.0|270611.0|270616.0|270617.0|270653.0|270658.0|270719.0|270729.0|270756.0|270766.0|270788.0|270823.0|270860.0|270874.0|270897.0|270951.0|270982.0|270992.0|271022.0|271034.0|271036.0|271046.0|271090.0|271123.0|271137.0|271139.0|271153.0|271154.0|271169.0|271173.0|271198.0|271224.0|271234.0|271244.0|271261.0|271272.0|271306.0|271351.0|271368.0|271414.0|271426.0|271456.0|271479.0|271522.0|271527.0|271561.0|271581.0|271582.0|271583.0|271626.0|271628.0|271630.0|271666.0|271690.0|271725.0|271729.0|271738.0|271772.0|271788.0|271797.0|271846.0|271931.0|271983.0|271994.0|272011.0|272032.0|272062.0|272089.0|272098.0|272119.0|272133.0|272138.0|272163.0|272180.0|272204.0|272227.0|272234.0|272263.0|272279.0|272299.0|272303.0|272334.0|272335.0|272407.0|272436.0|272480.0|272495.0|272510.0|272537.0|272559.0|272616.0|272656.0|272679.0|272721.0|272739.0|272753.0|272763.0|272818.0|272819.0|272860.0|272913.0|272922.0|272941.0|272943.0|272978.0|273053.0|273067.0|273080.0|273093.0|273129.0|273142.0|273143.0|273206.0|273224.0|273242.0|273244.0|273300.0|273335.0|273345.0|273359.0|273366.0|273407.0|273416.0|273438.0|273459.0|273462.0|273467.0|273490.0|273532.0|273541.0|273547.0|273565.0|273575.0|273623.0|273629.0|273648.0|273670.0|273696.0|273729.0|273733.0|273749.0|273771.0|273775.0|273791.0|273850.0|273881.0|273899.0|273943.0|273951.0|274007.0|274024.0|274042.0|274052.0|274072.0|274092.0|274153.0|274159.0|274160.0|274197.0|274223.0|274251.0|274254.0|274264.0|274266.0|274271.0|274303.0|274366.0|274373.0|274408.0|274430.0|274439.0|274469.0|274548.0|274573.0|274577.0|274620.0|274656.0|274658.0|274676.0|274725.0|274759.0|274779.0|274803.0|274814.0|274857.0|274860.0|274882.0|274941.0|274961.0|274979.0|274985.0|275062.0|275077.0|275104.0|275147.0|275164.0|275252.0|275265.0|275295.0|275304.0|275328.0|275358.0|275366.0|275397.0|275412.0|275421.0|275463.0|275480.0|275501.0|275520.0|275563.0|275568.0|275574.0|275604.0|275620.0|275674.0|275736.0|275751.0|275769.0|275770.0|275790.0|275811.0|275877.0|275885.0|275902.0|275914.0|275937.0|275972.0|275983.0|275990.0|276016.0|276073.0|276096.0|276127.0|276168.0|276174.0|276198.0|276275.0|276306.0|276359.0|276413.0|276430.0|276460.0|276492.0|276525.0|276532.0|276598.0|276600.0|276655.0|276679.0|276682.0|276708.0|276728.0|276735.0|276739.0|276768.0|276780.0|276834.0|276842.0|276888.0|276925.0|276945.0|276950.0|276971.0|276982.0|277013.0|277033.0|277048.0|277057.0|277083.0|277141.0|277151.0|277164.0|277180.0|277184.0|277244.0|277361.0|277386.0|277405.0|277461.0|277487.0|277588.0|277594.0|277667.0|277681.0|277685.0|277689.0|277781.0|277783.0|277789.0|277790.0|277808.0|277840.0|277873.0|277889.0|277891.0|277895.0|277897.0|277916.0|277977.0|277994.0|278002.0|278024.0|278048.0|278077.0|278080.0|278093.0|278099.0|278113.0|278182.0|278205.0|278221.0|278238.0|278255.0|278279.0|278295.0|278329.0|278345.0|278352.0|278416.0|278427.0|278492.0|278497.0|278501.0|278502.0|278560.0|278574.0|278627.0|278653.0|278698.0|278699.0|278732.0|278761.0|278774.0|278800.0|278801.0|278815.0|278820.0|278837.0|278905.0|278944.0|278989.0|279002.0|279008.0|279049.0|279085.0|279097.0|279101.0|279103.0|279111.0|279118.0|279154.0|279193.0|279204.0|279260.0|279280.0|279311.0|279317.0|279335.0|279406.0|279419.0|279420.0|279470.0|279483.0|279507.0|279523.0|279524.0|279534.0|279576.0|279634.0|279682.0|279709.0|279730.0|279781.0|279810.0|279841.0|279892.0|279921.0|279936.0|279955.0|280012.0|280039.0|280058.0|280084.0|280103.0|280113.0|280143.0|280170.0|280174.0|280209.0|280314.0|280348.0|280382.0|280416.0|280492.0|280525.0|280555.0|280599.0|280618.0|280630.0|280658.0|280707.0|280736.0|280762.0|280815.0|280820.0|280865.0|280916.0|280922.0|280947.0|280967.0|280976.0|281022.0|281029.0|281052.0|281053.0|281123.0|281174.0|281224.0|281244.0|281246.0|281263.0|281277.0|281297.0|281339.0|281351.0|281354.0|281368.0|281381.0|281426.0 -in.representative_income metadata_and_annual usd float 281560.0|281570.0|281577.0|281578.0|281580.0|281586.0|281596.0|281628.0|281653.0|281673.0|281677.0|281690.0|281726.0|281729.0|281791.0|281830.0|281841.0|281888.0|281937.0|281978.0|281999.0|282001.0|282003.0|282102.0|282107.0|282111.0|282123.0|282134.0|282205.0|282213.0|282288.0|282317.0|282318.0|282336.0|282356.0|282412.0|282423.0|282425.0|282435.0|282437.0|282489.0|282508.0|282514.0|282529.0|282538.0|282543.0|282618.0|282634.0|282650.0|282651.0|282709.0|282721.0|282759.0|282824.0|282841.0|282846.0|282867.0|282877.0|282891.0|282928.0|282942.0|282951.0|282961.0|283031.0|283043.0|283069.0|283073.0|283083.0|283115.0|283133.0|283161.0|283176.0|283192.0|283194.0|283267.0|283272.0|283289.0|283300.0|283340.0|283346.0|283390.0|283443.0|283447.0|283478.0|283498.0|283547.0|283548.0|283584.0|283605.0|283623.0|283637.0|283649.0|283653.0|283669.0|283689.0|283713.0|283731.0|283742.0|283750.0|283773.0|283820.0|283834.0|283851.0|283899.0|284006.0|284035.0|284053.0|284062.0|284093.0|284154.0|284163.0|284164.0|284165.0|284216.0|284250.0|284255.0|284268.0|284272.0|284322.0|284356.0|284371.0|284380.0|284427.0|284464.0|284474.0|284475.0|284488.0|284571.0|284595.0|284659.0|284679.0|284681.0|284700.0|284703.0|284744.0|284747.0|284786.0|284861.0|284894.0|284934.0|284962.0|284990.0|285000.0|285028.0|285094.0|285108.0|285136.0|285155.0|285164.0|285215.0|285244.0|285266.0|285299.0|285323.0|285366.0|285377.0|285403.0|285482.0|285506.0|285537.0|285568.0|285587.0|285609.0|285677.0|285691.0|285692.0|285713.0|285741.0|285752.0|285784.0|285798.0|285870.0|285871.0|285892.0|285918.0|285967.0|285972.0|286000.0|286009.0|286037.0|286061.0|286073.0|286074.0|286108.0|286124.0|286125.0|286162.0|286174.0|286181.0|286220.0|286228.0|286275.0|286290.0|286324.0|286332.0|286396.0|286434.0|286484.0|286486.0|286504.0|286522.0|286537.0|286547.0|286578.0|286610.0|286641.0|286642.0|286718.0|286744.0|286757.0|286811.0|286826.0|286830.0|286847.0|286853.0|286865.0|286874.0|286875.0|286879.0|286881.0|286958.0|286972.0|287041.0|287043.0|287053.0|287063.0|287083.0|287147.0|287156.0|287189.0|287208.0|287275.0|287285.0|287297.0|287380.0|287384.0|287386.0|287405.0|287470.0|287485.0|287487.0|287517.0|287544.0|287577.0|287588.0|287620.0|287621.0|287685.0|287689.0|287696.0|287729.0|287775.0|287790.0|287837.0|287879.0|287891.0|287908.0|287945.0|287946.0|287982.0|288002.0|288006.0|288013.0|288093.0|288118.0|288126.0|288144.0|288188.0|288222.0|288269.0|288291.0|288295.0|288329.0|288346.0|288351.0|288394.0|288396.0|288407.0|288435.0|288485.0|288498.0|288508.0|288598.0|288600.0|288649.0|288651.0|288701.0|288751.0|288758.0|288790.0|288807.0|288810.0|288858.0|288901.0|288910.0|288918.0|288962.0|289013.0|289068.0|289078.0|289080.0|289089.0|289242.0|289271.0|289295.0|289306.0|289322.0|289327.0|289384.0|289401.0|289407.0|289426.0|289508.0|289509.0|289510.0|289566.0|289594.0|289616.0|289632.0|289701.0|289710.0|289735.0|289806.0|289813.0|289827.0|289832.0|289838.0|289848.0|289851.0|289864.0|289874.0|289885.0|289890.0|289912.0|289916.0|289939.0|289998.0|290013.0|290016.0|290033.0|290070.0|290106.0|290122.0|290144.0|290153.0|290196.0|290214.0|290215.0|290227.0|290261.0|290316.0|290323.0|290333.0|290354.0|290389.0|290390.0|290417.0|290431.0|290439.0|290457.0|290486.0|290518.0|290539.0|290544.0|290560.0|290578.0|290609.0|290638.0|290646.0|290664.0|290690.0|290720.0|290766.0|290858.0|290862.0|290869.0|290901.0|290905.0|290921.0|290922.0|290973.0|291071.0|291076.0|291119.0|291128.0|291177.0|291225.0|291227.0|291231.0|291272.0|291282.0|291293.0|291295.0|291326.0|291334.0|291385.0|291387.0|291427.0|291442.0|291488.0|291493.0|291511.0|291528.0|291548.0|291656.0|291686.0|291695.0|291704.0|291727.0|291730.0|291763.0|291809.0|291834.0|291901.0|291915.0|291932.0|291943.0|291952.0|291978.0|292000.0|292051.0|292086.0|292107.0|292125.0|292134.0|292267.0|292314.0|292336.0|292337.0|292375.0|292379.0|292437.0|292444.0|292515.0|292520.0|292538.0|292568.0|292591.0|292623.0|292653.0|292654.0|292700.0|292726.0|292740.0|292758.0|292808.0|292813.0|292830.0|292837.0|292841.0|292864.0|292916.0|292932.0|292942.0|292970.0|292984.0|293023.0|293035.0|293043.0|293052.0|293058.0|293131.0|293144.0|293159.0|293180.0|293242.0|293267.0|293346.0|293373.0|293447.0|293449.0|293455.0|293548.0|293602.0|293672.0|293696.0|293749.0|293803.0|293812.0|293813.0|293851.0|293888.0|293913.0|293952.0|293964.0|293996.0|294053.0|294125.0|294154.0|294170.0|294235.0|294273.0|294318.0|294320.0|294340.0|294341.0|294374.0|294376.0|294377.0|294387.0|294428.0|294446.0|294480.0|294536.0|294659.0|294662.0|294686.0|294696.0|294769.0|294861.0|294962.0|294968.0|294973.0|294983.0|294996.0|295034.0|295077.0|295079.0|295124.0|295184.0|295198.0|295201.0|295253.0|295265.0|295289.0|295305.0|295306.0|295401.0|295408.0|295413.0|295467.0|295501.0|295508.0|295511.0|295521.0|295568.0|295575.0|295627.0|295711.0|295735.0|295743.0|295775.0|295779.0|295820.0|295832.0|295843.0|295871.0|295922.0|295924.0|295973.0|295979.0|296023.0|296027.0|296028.0|296049.0|296074.0|296130.0|296151.0|296175.0|296233.0|296239.0|296265.0|296272.0|296315.0|296344.0|296379.0|296449.0|296491.0|296543.0|296573.0|296579.0|296589.0|296594.0|296599.0|296608.0|296615.0|296629.0|296680.0|296697.0|296724.0|296781.0|296791.0|296795.0|296808.0|296854.0|296893.0|296983.0|297021.0|297024.0|297038.0|297058.0|297084.0|297108.0|297129.0|297131.0|297238.0|297248.0|297265.0|297291.0|297294.0|297316.0|297345.0|297346.0|297367.0|297399.0|297460.0|297488.0|297560.0|297574.0|297610.0|297663.0|297691.0|297737.0|297820.0|297883.0|297892.0|297976.0|297986.0|297989.0|297993.0|298090.0|298094.0|298101.0|298172.0|298195.0|298204.0|298209.0|298296.0|298318.0|298346.0|298348.0|298400.0|298418.0|298453.0|298599.0|298605.0|298634.0|298642.0|298665.0|298700.0|298741.0|298750.0|298761.0|298812.0|298849.0|298875.0|298902.0|298955.0|298980.0|299003.0|299009.0|299018.0|299104.0|299112.0|299121.0|299135.0|299139.0|299182.0|299183.0|299224.0|299278.0|299290.0|299314.0|299328.0|299385.0|299387.0|299431.0|299492.0|299506.0|299508.0|299533.0|299603.0|299609.0|299707.0|299718.0|299740.0|299831.0|299846.0|299896.0|299947.0|300013.0|300029.0|300035.0|300064.0|300114.0|300136.0|300152.0|300155.0|300215.0|300244.0|300262.0|300316.0|300351.0|300359.0|300370.0|300417.0|300458.0|300459.0|300478.0|300498.0|300518.0|300563.0|300566.0|300598.0|300609.0|300615.0|300619.0|300620.0|300668.0|300720.0|300721.0|300727.0|300773.0|300780.0|300821.0|300875.0|300911.0|300978.0|300984.0|301019.0|301023.0|301073.0|301127.0|301184.0|301185.0|301196.0|301287.0|301424.0|301442.0|301452.0|301528.0|301559.0|301597.0|301613.0|301617.0|301629.0|301640.0|301667.0|301699.0|301723.0|301730.0|301775.0|301828.0|301831.0|301854.0|301883.0|301892.0|301926.0|301961.0|302009.0|302030.0|302033.0|302047.0|302074.0|302099.0|302113.0|302134.0|302176.0|302208.0|302216.0|302235.0|302250.0|302283.0|302395.0|302482.0|302498.0|302532.0|302596.0|302639.0|302640.0|302672.0|302713.0|302820.0|302830.0|302834.0|302841.0|302855.0|302943.0|302989.0|303041.0|303044.0|303144.0|303145.0|303246.0|303247.0|303350.0|303410.0|303433.0|303448.0|303515.0|303549.0|303571.0|303609.0|303612.0|303633.0|303710.0|303720.0|303727.0|303751.0|303786.0|303822.0|303829.0|303866.0|303894.0|303953.0|303969.0|304043.0|304044.0|304054.0|304074.0|304108.0|304152.0|304155.0|304254.0|304256.0|304260.0|304279.0|304323.0|304357.0|304359.0|304465.0|304476.0|304559.0|304645.0|304691.0|304693.0|304781.0|304794.0|304801.0|304860.0|304862.0|304909.0|304992.0|305064.0|305074.0|305103.0|305124.0|305165.0|305289.0|305310.0|305340.0|305413.0|305468.0|305504.0|305546.0|305557.0|305569.0|305611.0|305625.0|305631.0|305665.0|305722.0|305771.0|305773.0|305836.0|305865.0|305913.0|305933.0|305941.0|305973.0|305978.0|306043.0|306046.0|306074.0|306135.0|306152.0|306238.0|306258.0|306276.0|306341.0|306362.0|306363.0|306377.0|306421.0|306445.0|306468.0|306489.0|306548.0|306574.0|306579.0|306637.0|306680.0|306685.0|306720.0|306788.0|306791.0|306853.0|306857.0|306864.0|306868.0|306890.0|306960.0|306983.0|306996.0|307006.0|307042.0|307070.0|307084.0|307167.0|307195.0|307199.0|307206.0|307275.0|307286.0|307312.0|307373.0|307476.0|307488.0|307490.0|307501.0|307579.0|307589.0|307609.0|307682.0|307690.0|307717.0|307734.0|307758.0|307791.0|307826.0|307839.0|307892.0|307934.0|307935.0|307944.0|307993.0|308080.0|308094.0|308095.0|308122.0|308156.0|308195.0|308226.0|308258.0|308327.0|308404.0|308456.0|308472.0|308474.0|308498.0|308500.0|308611.0|308724.0|308801.0|308902.0|308906.0|308912.0|308999.0|309014.0|309104.0|309105.0|309122.0|309153.0|309176.0|309205.0|309207.0|309218.0|309230.0|309261.0|309316.0|309329.0|309415.0|309435.0|309467.0|309487.0|309527.0|309539.0|309609.0|309637.0|309642.0|309663.0|309690.0|309745.0|309785.0|309791.0|309797.0|309849.0|309980.0|310003.0|310014.0|310054.0|310094.0|310115.0|310158.0|310226.0|310230.0|310261.0|310311.0|310334.0|310418.0|310442.0|310467.0|310519.0|310527.0|310582.0|310721.0|310777.0|310851.0|310871.0|310898.0 -in.representative_income metadata_and_annual usd float 310923.0|310978.0|310983.0|310990.0|311034.0|311086.0|311108.0|311125.0|311175.0|311189.0|311247.0|311300.0|311320.0|311372.0|311407.0|311425.0|311451.0|311499.0|311515.0|311601.0|311607.0|311630.0|311705.0|311730.0|311741.0|311808.0|311832.0|311932.0|311944.0|311953.0|312015.0|312089.0|312117.0|312135.0|312163.0|312256.0|312373.0|312374.0|312426.0|312427.0|312481.0|312530.0|312588.0|312640.0|312688.0|312691.0|312741.0|312796.0|312849.0|312857.0|312910.0|312943.0|313006.0|313017.0|313113.0|313145.0|313218.0|313233.0|313246.0|313313.0|313337.0|313429.0|313534.0|313549.0|313562.0|313639.0|313650.0|313662.0|313746.0|313768.0|313805.0|313953.0|314077.0|314155.0|314233.0|314273.0|314309.0|314315.0|314357.0|314368.0|314417.0|314458.0|314521.0|314525.0|314559.0|314593.0|314627.0|314633.0|314660.0|314694.0|314705.0|314735.0|314761.0|314800.0|314848.0|314950.0|314963.0|315005.0|315011.0|315065.0|315109.0|315165.0|315173.0|315216.0|315327.0|315367.0|315368.0|315389.0|315468.0|315485.0|315497.0|315569.0|315594.0|315624.0|315644.0|315670.0|315702.0|315787.0|315912.0|315930.0|315934.0|316023.0|316024.0|316037.0|316065.0|316140.0|316145.0|316175.0|316276.0|316382.0|316478.0|316482.0|316567.0|316578.0|316592.0|316656.0|316668.0|316680.0|316698.0|316862.0|316883.0|316902.0|316989.0|317015.0|317118.0|317186.0|317225.0|317275.0|317287.0|317331.0|317367.0|317418.0|317437.0|317438.0|317442.0|317526.0|317658.0|317687.0|317691.0|317741.0|317753.0|317766.0|317874.0|317955.0|318063.0|318070.0|318095.0|318112.0|318196.0|318199.0|318203.0|318278.0|318385.0|318491.0|318513.0|318630.0|318702.0|318718.0|318738.0|318802.0|318808.0|318814.0|318857.0|318903.0|318913.0|319009.0|319063.0|319124.0|319171.0|319206.0|319279.0|319307.0|319387.0|319509.0|319533.0|319546.0|319566.0|319684.0|319751.0|319756.0|319812.0|319819.0|319888.0|319920.0|319956.0|319995.0|320163.0|320178.0|320216.0|320266.0|320273.0|320274.0|320317.0|320369.0|320418.0|320424.0|320468.0|320601.0|320620.0|320653.0|320721.0|320782.0|320822.0|320874.0|320899.0|320916.0|320917.0|320961.0|320972.0|321024.0|321226.0|321261.0|321284.0|321298.0|321428.0|321440.0|321451.0|321548.0|321655.0|321760.0|321764.0|321813.0|321832.0|321866.0|321880.0|321933.0|321980.0|322019.0|322035.0|322050.0|322089.0|322142.0|322182.0|322236.0|322287.0|322329.0|322357.0|322393.0|322432.0|322438.0|322464.0|322628.0|322656.0|322710.0|322842.0|322845.0|322894.0|322920.0|322953.0|323044.0|323061.0|323108.0|323145.0|323237.0|323246.0|323257.0|323342.0|323448.0|323538.0|323658.0|323668.0|323751.0|323752.0|323764.0|323817.0|323824.0|323833.0|323876.0|323967.0|324083.0|324141.0|324181.0|324185.0|324195.0|324257.0|324259.0|324288.0|324291.0|324344.0|324357.0|324392.0|324396.0|324465.0|324495.0|324504.0|324573.0|324608.0|324742.0|324789.0|324818.0|324825.0|324863.0|324907.0|325005.0|325011.0|325041.0|325065.0|325114.0|325222.0|325255.0|325267.0|325320.0|325346.0|325423.0|325451.0|325526.0|325577.0|325761.0|325768.0|325815.0|325873.0|325939.0|325979.0|326108.0|326195.0|326200.0|326249.0|326277.0|326300.0|326302.0|326348.0|326401.0|326410.0|326506.0|326518.0|326611.0|326626.0|326651.0|326661.0|326782.0|326842.0|326855.0|326866.0|326883.0|326928.0|326933.0|326970.0|327034.0|327177.0|327188.0|327280.0|327287.0|327299.0|327349.0|327382.0|327402.0|327434.0|327449.0|327455.0|327666.0|327772.0|327792.0|327831.0|327939.0|327982.0|328001.0|328045.0|328046.0|328087.0|328194.0|328208.0|328297.0|328299.0|328463.0|328476.0|328499.0|328518.0|328600.0|328620.0|328827.0|329034.0|329037.0|329085.0|329095.0|329111.0|329136.0|329307.0|329327.0|329408.0|329446.0|329543.0|329549.0|329775.0|329858.0|329867.0|329934.0|329962.0|330064.0|330065.0|330092.0|330113.0|330117.0|330157.0|330300.0|330303.0|330317.0|330368.0|330374.0|330477.0|330515.0|330581.0|330620.0|330622.0|330623.0|330684.0|330786.0|330823.0|330913.0|330944.0|331041.0|331056.0|331096.0|331146.0|331159.0|331200.0|331267.0|331328.0|331354.0|331429.0|331480.0|331481.0|331612.0|331696.0|331704.0|331769.0|331833.0|331934.0|331951.0|331990.0|332024.0|332128.0|332136.0|332201.0|332232.0|332296.0|332314.0|332327.0|332338.0|332429.0|332641.0|332677.0|332769.0|332785.0|332798.0|332834.0|332843.0|332850.0|332877.0|332892.0|332984.0|333023.0|333037.0|333045.0|333150.0|333159.0|333198.0|333217.0|333247.0|333256.0|333344.0|333348.0|333361.0|333521.0|333600.0|333628.0|333675.0|333735.0|333778.0|333843.0|333853.0|333865.0|334087.0|334099.0|334190.0|334257.0|334272.0|334297.0|334310.0|334358.0|334405.0|334513.0|334521.0|334560.0|334594.0|334621.0|334661.0|334730.0|334732.0|334762.0|334916.0|334943.0|334946.0|335222.0|335292.0|335325.0|335365.0|335368.0|335428.0|335737.0|335787.0|335841.0|335873.0|335892.0|335989.0|335998.0|336026.0|336047.0|336097.0|336156.0|336176.0|336212.0|336253.0|336378.0|336420.0|336459.0|336525.0|336526.0|336566.0|336674.0|336782.0|336841.0|336964.0|336975.0|336984.0|337052.0|337063.0|337079.0|337107.0|337187.0|337263.0|337269.0|337285.0|337388.0|337431.0|337474.0|337491.0|337590.0|337599.0|337647.0|337793.0|337801.0|337863.0|337896.0|337903.0|337917.0|337922.0|338001.0|338136.0|338187.0|338212.0|338213.0|338298.0|338317.0|338351.0|338399.0|338409.0|338459.0|338511.0|338611.0|338634.0|338644.0|338674.0|338728.0|338803.0|338936.0|338951.0|339003.0|339005.0|339056.0|339141.0|339207.0|339210.0|339267.0|339348.0|339409.0|339414.0|339421.0|339583.0|339639.0|339689.0|339743.0|339794.0|339854.0|339914.0|340015.0|340110.0|340116.0|340284.0|340322.0|340348.0|340370.0|340379.0|340419.0|340520.0|340586.0|340637.0|340688.0|340702.0|340743.0|340823.0|340895.0|340924.0|340927.0|340996.0|341126.0|341227.0|341307.0|341357.0|341411.0|341428.0|341429.0|341482.0|341530.0|341571.0|341617.0|341644.0|341687.0|341692.0|341720.0|341894.0|342035.0|342077.0|342133.0|342237.0|342293.0|342323.0|342338.0|342430.0|342439.0|342442.0|342509.0|342617.0|342725.0|342742.0|342747.0|342941.0|343045.0|343075.0|343220.0|343247.0|343380.0|343449.0|343473.0|343504.0|343590.0|343611.0|343651.0|343698.0|343801.0|343805.0|343825.0|343954.0|344129.0|344238.0|344346.0|344358.0|344362.0|344459.0|344505.0|344577.0|344608.0|344631.0|344661.0|344670.0|344711.0|344792.0|344856.0|344877.0|344899.0|344965.0|344994.0|345006.0|345113.0|345172.0|345329.0|345435.0|345470.0|345489.0|345490.0|345500.0|345536.0|345639.0|345651.0|345700.0|345750.0|345794.0|345811.0|345822.0|345846.0|345911.0|345967.0|345975.0|346053.0|346122.0|346155.0|346182.0|346227.0|346278.0|346398.0|346480.0|346517.0|346568.0|346581.0|346616.0|346682.0|346723.0|346724.0|346754.0|346831.0|346965.0|346985.0|347084.0|347187.0|347261.0|347374.0|347387.0|347490.0|347587.0|347598.0|347600.0|347723.0|347797.0|347894.0|347911.0|347995.0|348012.0|348020.0|348135.0|348284.0|348334.0|348500.0|348528.0|348547.0|348560.0|348631.0|348702.0|348837.0|348871.0|348888.0|348992.0|349043.0|349075.0|349086.0|349117.0|349391.0|349409.0|349510.0|349662.0|349944.0|349971.0|350015.0|350016.0|350072.0|350075.0|350129.0|350196.0|350281.0|350288.0|350446.0|350520.0|350531.0|350588.0|350613.0|350680.0|350694.0|350722.0|350937.0|351017.0|351152.0|351184.0|351206.0|351369.0|351530.0|351606.0|351622.0|351725.0|351932.0|351935.0|352017.0|352036.0|352092.0|352233.0|352239.0|352339.0|352341.0|352449.0|352521.0|352541.0|352642.0|352646.0|352654.0|352665.0|352743.0|352756.0|352883.0|353165.0|353248.0|353293.0|353314.0|353324.0|353375.0|353529.0|353551.0|353582.0|353594.0|353637.0|353652.0|353808.0|353962.0|354098.0|354238.0|354286.0|354348.0|354394.0|354503.0|354558.0|354561.0|354679.0|354775.0|354804.0|354820.0|354826.0|354965.0|354980.0|355066.0|355097.0|355167.0|355232.0|355286.0|355312.0|355369.0|355403.0|355470.0|355475.0|355541.0|355633.0|355691.0|355824.0|355849.0|355851.0|355882.0|355954.0|355975.0|356063.0|356160.0|356371.0|356385.0|356456.0|356470.0|356480.0|356493.0|356541.0|356555.0|356682.0|356707.0|356825.0|356879.0|356883.0|357086.0|357089.0|357095.0|357173.0|357192.0|357295.0|357301.0|357459.0|357502.0|357511.0|357591.0|357635.0|357722.0|357780.0|357914.0|358283.0|358424.0|358566.0|358579.0|358601.0|358716.0|358758.0|358804.0|358842.0|358945.0|358982.0|359006.0|359152.0|359176.0|359605.0|359610.0|359620.0|359713.0|359796.0|359956.0|359977.0|360045.0|360080.0|360121.0|360142.0|360250.0|360337.0|360517.0|360571.0|360622.0|360625.0|360661.0|360675.0|360679.0|360861.0|360877.0|360886.0|360925.0|361008.0|361026.0|361097.0|361111.0|361127.0|361307.0|361329.0|361331.0|361413.0|361430.0|361476.0|361525.0|361624.0|361632.0|361730.0|361752.0|361854.0|361941.0|361957.0|361975.0|362075.0|362238.0|362363.0|362468.0|362504.0|362642.0|362658.0|362670.0|362714.0|362784.0|362825.0|362865.0|362889.0|362930.0|362996.0|363038.0|363040.0|363048.0|363072.0|363277.0|363349.0|363541.0|363587.0|363652.0|363734.0|363839.0|363854.0|363899.0|363902.0|364103.0|364119.0|364299.0|364366.0|364470.0|364559.0|364561.0|364662.0|364682.0|364736.0|364758.0|364763.0|364811.0|364833.0|364875.0|364894.0|364973.0|365134.0|365167.0|365199.0 -in.representative_income metadata_and_annual usd float 365238.0|365415.0|365420.0|365443.0|365481.0|365650.0|365673.0|365739.0|365847.0|365864.0|365906.0|366046.0|366077.0|366166.0|366265.0|366279.0|366475.0|366496.0|366683.0|366691.0|366713.0|366763.0|366885.0|366905.0|367003.0|367087.0|367094.0|367120.0|367197.0|367226.0|367360.0|367619.0|367636.0|367657.0|367693.0|367713.0|367774.0|367792.0|368058.0|368097.0|368163.0|368246.0|368602.0|368665.0|368703.0|368944.0|369112.0|369156.0|369196.0|369260.0|369267.0|369304.0|369323.0|369365.0|369503.0|369511.0|369534.0|369588.0|369639.0|369713.0|369725.0|369737.0|369953.0|370167.0|370287.0|370291.0|370340.0|370377.0|370447.0|370589.0|370709.0|370723.0|370725.0|370748.0|370877.0|371010.0|371013.0|371033.0|371127.0|371142.0|371198.0|371222.0|371322.0|371413.0|371432.0|371527.0|371548.0|371643.0|371681.0|371733.0|371854.0|372114.0|372276.0|372355.0|372487.0|372616.0|372664.0|372744.0|372762.0|372845.0|372916.0|372946.0|373076.0|373270.0|373330.0|373346.0|373451.0|373560.0|373627.0|373646.0|373754.0|373764.0|373843.0|373858.0|373929.0|374069.0|374211.0|374383.0|374385.0|374417.0|374419.0|374512.0|374599.0|374633.0|374663.0|374691.0|374764.0|374807.0|374865.0|374890.0|374923.0|374933.0|374977.0|375018.0|375140.0|375215.0|375385.0|375439.0|375449.0|375471.0|375571.0|375707.0|375772.0|375774.0|375787.0|375901.0|376004.0|376077.0|376112.0|376177.0|376178.0|376188.0|376243.0|376480.0|376494.0|376760.0|376780.0|376784.0|376868.0|376892.0|377084.0|377127.0|377300.0|377318.0|377338.0|377399.0|377511.0|377549.0|377615.0|377840.0|377854.0|377948.0|377961.0|378077.0|378130.0|378164.0|378178.0|378337.0|378391.0|378400.0|378543.0|378597.0|378603.0|378804.0|378853.0|378905.0|378928.0|379025.0|379063.0|379162.0|379236.0|379245.0|379265.0|379472.0|379574.0|379658.0|379673.0|379815.0|379884.0|379916.0|380001.0|380109.0|380219.0|380291.0|380501.0|380506.0|380538.0|380559.0|380606.0|380608.0|380647.0|380825.0|380866.0|381075.0|381085.0|381482.0|381513.0|381611.0|381638.0|381761.0|381767.0|381925.0|381947.0|382040.0|382066.0|382084.0|382148.0|382162.0|382255.0|382277.0|382340.0|382464.0|382486.0|382611.0|382643.0|382669.0|382822.0|382845.0|382900.0|383081.0|383185.0|383350.0|383436.0|383567.0|383700.0|383855.0|383877.0|384057.0|384295.0|384360.0|384423.0|384648.0|384732.0|384739.0|384835.0|384865.0|384931.0|385025.0|385052.0|385089.0|385133.0|385168.0|385248.0|385583.0|385691.0|385728.0|385763.0|385875.0|385986.0|386124.0|386178.0|386382.0|386441.0|386549.0|386710.0|386794.0|386808.0|386898.0|387041.0|387532.0|387564.0|387779.0|387826.0|387889.0|387989.0|388051.0|388095.0|388300.0|388588.0|388622.0|388727.0|388753.0|388857.0|388862.0|388906.0|388960.0|388969.0|389108.0|389149.0|389411.0|389663.0|389683.0|389782.0|389815.0|389833.0|389877.0|389889.0|390049.0|390158.0|390204.0|390266.0|390306.0|390590.0|390628.0|390732.0|390736.0|390825.0|390921.0|391023.0|391048.0|391128.0|391130.0|391195.0|391229.0|391379.0|391436.0|391594.0|391670.0|391734.0|391779.0|391809.0|391849.0|391891.0|391936.0|391952.0|392210.0|392229.0|392313.0|392883.0|392946.0|392983.0|393035.0|393419.0|393451.0|393633.0|393856.0|393956.0|393957.0|394015.0|394106.0|394156.0|394172.0|394180.0|394260.0|394422.0|394480.0|394587.0|394654.0|394825.0|394967.0|395017.0|395029.0|395169.0|395372.0|395452.0|395477.0|395636.0|395722.0|395730.0|395872.0|395938.0|396077.0|396103.0|396215.0|396280.0|396294.0|396371.0|396479.0|396482.0|396532.0|396533.0|396785.0|396903.0|397006.0|397176.0|397189.0|397218.0|397234.0|397315.0|397391.0|397613.0|397713.0|397721.0|397992.0|397997.0|398130.0|398199.0|398243.0|398249.0|398261.0|398347.0|398759.0|398910.0|398966.0|398993.0|399007.0|399108.0|399172.0|399323.0|399378.0|399557.0|399774.0|400017.0|400206.0|400314.0|400322.0|400396.0|400725.0|400750.0|400854.0|401028.0|401178.0|401179.0|401235.0|401287.0|401395.0|401470.0|401533.0|401699.0|401836.0|401910.0|402038.0|402067.0|402163.0|402221.0|402240.0|402266.0|402846.0|402908.0|403015.0|403048.0|403298.0|403339.0|403617.0|403856.0|404058.0|404096.0|404329.0|404441.0|404563.0|404636.0|404664.0|404691.0|405068.0|405077.0|405169.0|405177.0|405335.0|405360.0|405608.0|405764.0|405903.0|406023.0|406078.0|406160.0|406193.0|406234.0|406392.0|406684.0|406837.0|406908.0|407139.0|407184.0|407337.0|407374.0|407424.0|407681.0|407695.0|407710.0|407911.0|407940.0|408008.0|408099.0|408249.0|408402.0|408418.0|408455.0|408555.0|408576.0|408634.0|408958.0|409109.0|409187.0|409336.0|409614.0|409816.0|409820.0|409842.0|410057.0|410097.0|410119.0|410147.0|410208.0|410220.0|410241.0|410518.0|410576.0|410578.0|410624.0|410902.0|411129.0|411238.0|411296.0|411327.0|411331.0|411401.0|411659.0|411667.0|411929.0|412065.0|412139.0|412204.0|412581.0|412739.0|412793.0|412846.0|412993.0|413278.0|413385.0|413405.0|413820.0|413936.0|414159.0|414260.0|414460.0|414850.0|415057.0|415425.0|415440.0|415515.0|415525.0|415676.0|415765.0|415881.0|415981.0|416253.0|416316.0|416358.0|416499.0|416604.0|416737.0|416787.0|417062.0|417190.0|417624.0|417738.0|417998.0|418046.0|418099.0|418142.0|418146.0|418200.0|418466.0|418645.0|418682.0|418770.0|418806.0|418975.0|418995.0|419210.0|419222.0|419719.0|419733.0|419801.0|419839.0|420110.0|420220.0|420303.0|420624.0|420735.0|420792.0|420936.0|421230.0|421245.0|421383.0|421470.0|421509.0|421837.0|421843.0|421865.0|422053.0|422241.0|422248.0|422463.0|422510.0|422680.0|422767.0|422939.0|422948.0|423108.0|423154.0|423210.0|423544.0|423721.0|423926.0|424030.0|424261.0|424517.0|424545.0|424867.0|424959.0|424968.0|424969.0|425006.0|425217.0|425383.0|425408.0|425569.0|425622.0|425639.0|426029.0|426060.0|426159.0|426374.0|426506.0|426786.0|426799.0|426872.0|427021.0|427115.0|427232.0|427233.0|427291.0|427325.0|427352.0|427467.0|427537.0|427853.0|427866.0|428170.0|428191.0|428299.0|428307.0|429084.0|429224.0|429312.0|429342.0|429380.0|429487.0|429755.0|430027.0|430068.0|430115.0|430178.0|430193.0|430279.0|430322.0|430453.0|430912.0|431043.0|431107.0|431147.0|431432.0|431527.0|431534.0|431939.0|432178.0|432188.0|432210.0|432494.0|432600.0|432728.0|433210.0|433352.0|433409.0|433443.0|433766.0|433857.0|434242.0|434318.0|434349.0|434362.0|434447.0|434463.0|434498.0|434747.0|434757.0|434867.0|435273.0|435373.0|435446.0|435451.0|435552.0|435820.0|435928.0|435974.0|436079.0|436304.0|436655.0|436674.0|436764.0|437140.0|437266.0|437393.0|437556.0|437590.0|437662.0|437872.0|437967.0|437999.0|438290.0|438292.0|438367.0|438403.0|438611.0|438706.0|438715.0|438934.0|439050.0|439193.0|439398.0|439413.0|439427.0|439876.0|439967.0|440193.0|440224.0|440322.0|440430.0|440562.0|440832.0|440945.0|441029.0|441048.0|441188.0|441295.0|441572.0|441879.0|441912.0|442221.0|442261.0|442365.0|442453.0|442493.0|442561.0|442636.0|442934.0|442992.0|443215.0|443454.0|443656.0|443730.0|443989.0|444556.0|445154.0|445201.0|445381.0|445587.0|445887.0|446233.0|446234.0|447153.0|447205.0|447315.0|447494.0|447628.0|447650.0|448165.0|448208.0|448681.0|448702.0|448917.0|449473.0|449475.0|449515.0|449579.0|449775.0|449882.0|450204.0|450312.0|450525.0|450556.0|450745.0|450848.0|450951.0|451278.0|451372.0|451385.0|451415.0|451420.0|451636.0|451715.0|451737.0|451776.0|451900.0|451922.0|452040.0|452137.0|452242.0|452285.0|452374.0|452426.0|452566.0|452717.0|452808.0|452911.0|452995.0|453149.0|453220.0|453353.0|453555.0|453797.0|453839.0|453959.0|454219.0|454355.0|454496.0|454565.0|454664.0|454870.0|455143.0|455207.0|455274.0|455418.0|455589.0|455600.0|455695.0|455959.0|456080.0|456222.0|456592.0|457147.0|457290.0|457964.0|458332.0|458363.0|458553.0|458583.0|458753.0|458767.0|458859.0|458900.0|459009.0|459200.0|459386.0|459426.0|459436.0|459808.0|459818.0|460028.0|460124.0|460280.0|460348.0|460510.0|460626.0|460863.0|460968.0|460993.0|461059.0|461368.0|461583.0|461690.0|461793.0|461901.0|462091.0|462181.0|462646.0|462882.0|462972.0|463521.0|463730.0|463900.0|464153.0|464386.0|464396.0|464602.0|464667.0|464803.0|464818.0|464829.0|465165.0|465185.0|465683.0|465876.0|466136.0|466216.0|466732.0|466951.0|466993.0|467191.0|467195.0|467247.0|467697.0|468024.0|468245.0|468303.0|468707.0|468795.0|469010.0|469300.0|469342.0|469827.0|470171.0|470291.0|470355.0|470651.0|470728.0|471409.0|471738.0|471949.0|472598.0|472748.0|473436.0|473678.0|473758.0|473859.0|474045.0|474467.0|474468.0|474571.0|474572.0|475407.0|475499.0|475538.0|475778.0|476682.0|476687.0|476788.0|477568.0|477684.0|478108.0|478436.0|478491.0|478648.0|478791.0|478809.0|479510.0|479832.0|479846.0|480526.0|480829.0|481132.0|481479.0|481688.0|481889.0|481958.0|481979.0|482086.0|482204.0|482430.0|482615.0|482719.0|483266.0|483647.0|483751.0|483859.0|484051.0|484061.0|484064.0|484264.0|484870.0|484885.0|485199.0|485298.0|485347.0|485814.0|486174.0|486212.0|486846.0|487228.0|487292.0|487346.0|487356.0|487877.0|487900.0|487920.0|487991.0|488072.0|488283.0|488373.0|488705.0|488908.0|489020.0|489171.0|489337.0|490533.0|490971.0|491614.0|491639.0|492042.0|492078.0|492694.0|493343.0|493555.0|493787.0|493961.0|494109.0|494272.0|494610.0|494860.0 -in.representative_income metadata_and_annual usd float 494971.0|495138.0|496298.0|496470.0|496991.0|497016.0|497160.0|497774.0|498416.0|499223.0|499883.0|500022.0|500032.0|500254.0|500564.0|500938.0|501032.0|501234.0|501300.0|501492.0|501554.0|502042.0|502345.0|503052.0|503349.0|503447.0|503574.0|503607.0|504091.0|504380.0|504521.0|504903.0|505073.0|505156.0|505721.0|505745.0|506083.0|506210.0|507093.0|507174.0|507265.0|507295.0|507742.0|508815.0|509118.0|509374.0|510123.0|510376.0|510568.0|510846.0|511133.0|511335.0|511436.0|511600.0|511938.0|513659.0|514164.0|514332.0|514504.0|514695.0|515004.0|515073.0|515174.0|515384.0|515726.0|516032.0|516329.0|517068.0|517194.0|517402.0|517545.0|517789.0|518204.0|518476.0|518581.0|518820.0|518866.0|519336.0|519619.0|519720.0|519851.0|519921.0|520226.0|520623.0|520786.0|521639.0|521867.0|521915.0|522029.0|522282.0|523255.0|523462.0|523843.0|524139.0|524277.0|524916.0|525108.0|525193.0|525275.0|526041.0|526248.0|526660.0|527198.0|527296.0|527303.0|527619.0|527701.0|528103.0|528350.0|528352.0|528517.0|528990.0|529210.0|530167.0|530326.0|531198.0|531336.0|531591.0|531894.0|531943.0|532346.0|532671.0|532849.0|532996.0|533075.0|533357.0|533631.0|533752.0|533968.0|534685.0|535002.0|535324.0|535436.0|535651.0|536355.0|536387.0|537143.0|537216.0|538407.0|538871.0|539114.0|539215.0|539731.0|541012.0|541018.0|541438.0|541837.0|542044.0|542448.0|542544.0|542650.0|543166.0|543458.0|543472.0|543692.0|545312.0|545637.0|545989.0|547340.0|547762.0|548122.0|548395.0|548954.0|549014.0|549519.0|549868.0|551539.0|552086.0|552343.0|552549.0|552858.0|553363.0|553879.0|553899.0|554090.0|554195.0|554281.0|556590.0|557120.0|557389.0|557523.0|557570.0|557600.0|557804.0|558279.0|558941.0|559267.0|559995.0|560079.0|560327.0|560341.0|560555.0|560631.0|560764.0|560770.0|560985.0|561050.0|561136.0|561414.0|562105.0|562141.0|562487.0|564204.0|564514.0|564699.0|564869.0|566268.0|566641.0|566781.0|567299.0|567378.0|567787.0|568855.0|570227.0|570393.0|570617.0|571742.0|572149.0|572456.0|572649.0|573488.0|573705.0|576793.0|576869.0|576970.0|577515.0|578955.0|579217.0|579400.0|579662.0|579823.0|581826.0|582771.0|582883.0|583197.0|583957.0|584534.0|584601.0|585307.0|586695.0|587928.0|588470.0|588959.0|590010.0|590157.0|590397.0|591023.0|591470.0|592745.0|593638.0|594975.0|595765.0|596907.0|597005.0|597267.0|599121.0|599200.0|599274.0|599333.0|600026.0|600595.0|602046.0|602902.0|604431.0|606804.0|607097.0|608412.0|608557.0|609754.0|610633.0|611671.0|612148.0|614835.0|615178.0|616948.0|617634.0|617840.0|620109.0|620561.0|621487.0|622213.0|623431.0|625821.0|626221.0|626688.0|626894.0|627490.0|629041.0|629600.0|630424.0|632351.0|633155.0|634019.0|634371.0|635928.0|635965.0|636829.0|637402.0|637438.0|638412.0|642555.0|642654.0|645143.0|645281.0|645483.0|646149.0|646650.0|649578.0|650533.0|653194.0|653564.0|655877.0|659625.0|660171.0|661264.0|662292.0|662328.0|663665.0|667946.0|667968.0|669832.0|670972.0|671241.0|671512.0|671746.0|672757.0|672816.0|672838.0|673868.0|674737.0|677807.0|678428.0|680759.0|681344.0|682858.0|683853.0|685915.0|686899.0|687909.0|688081.0|689010.0|689369.0|692911.0|692960.0|693719.0|693984.0|694521.0|695198.0|699266.0|700259.0|701387.0|702859.0|703386.0|703553.0|705514.0|705547.0|707640.0|708062.0|709228.0|711647.0|712030.0|712253.0|712455.0|713218.0|715183.0|721244.0|721969.0|724578.0|725284.0|725780.0|731019.0|732355.0|733639.0|734132.0|740333.0|743058.0|743972.0|752547.0|752989.0|757409.0|759629.0|759974.0|760593.0|761637.0|763274.0|769230.0|771751.0|775777.0|776802.0|777812.0|778299.0|785502.0|787760.0|788959.0|792964.0|796802.0|797062.0|798337.0|804120.0|806160.0|812514.0|812681.0|821551.0|838012.0|842658.0|844820.0|849916.0|870030.0|880174.0|885986.0|898395.0|910125.0|922093.0|937415.0|945842.0|980808.0|988326.0|1004749.0|1009135.0|1023201.0|1032484.0|1035234.0|1066686.0|1096007.0|1114719.0|1165541.0|1216289.0|1278844.0|1328393.0|1648476.0|1771970.0 -in.county_name metadata_and_annual n/a string Abbeville County|Acadia Parish|Accomack County|Ada County|Adair County|Adams County|Addison County|Aiken County|Aitkin County|Alachua County|Alamance County|Alameda County|Alamosa County|Albany County|Albemarle County|Alcona County|Alcorn County|Aleutians East Borough|Aleutians West Census Area|Alexander County|Alexandria city|Alfalfa County|Alger County|Allamakee County|Allegan County|Allegany County|Alleghany County|Allegheny County|Allen County|Allen Parish|Allendale County|Alpena County|Alpine County|Amador County|Amelia County|Amherst County|Amite County|Anchorage Municipality|Anderson County|Andrew County|Andrews County|Androscoggin County|Angelina County|Anne Arundel County|Anoka County|Anson County|Antelope County|Antrim County|Apache County|Appanoose County|Appling County|Appomattox County|Aransas County|Arapahoe County|Archer County|Archuleta County|Arenac County|Arkansas County|Arlington County|Armstrong County|Aroostook County|Arthur County|Ascension Parish|Ashe County|Ashland County|Ashley County|Ashtabula County|Asotin County|Assumption Parish|Atascosa County|Atchison County|Athens County|Atkinson County|Atlantic County|Atoka County|Attala County|Audrain County|Audubon County|Auglaize County|Augusta County|Aurora County|Austin County|Autauga County|Avery County|Avoyelles Parish|Baca County|Bacon County|Bailey County|Baker County|Baldwin County|Ballard County|Baltimore County|Baltimore city|Bamberg County|Bandera County|Banks County|Banner County|Bannock County|Baraga County|Barber County|Barbour County|Barnes County|Barnstable County|Barnwell County|Barren County|Barron County|Barrow County|Barry County|Bartholomew County|Barton County|Bartow County|Bastrop County|Bates County|Bath County|Baxter County|Bay County|Bayfield County|Baylor County|Beadle County|Bear Lake County|Beaufort County|Beauregard Parish|Beaver County|Beaverhead County|Becker County|Beckham County|Bedford County|Bee County|Belknap County|Bell County|Belmont County|Beltrami County|Ben Hill County|Benewah County|Bennett County|Bennington County|Benson County|Bent County|Benton County|Benzie County|Bergen County|Berkeley County|Berks County|Berkshire County|Bernalillo County|Berrien County|Bertie County|Bethel Census Area|Bexar County|Bibb County|Bienville Parish|Big Horn County|Big Stone County|Billings County|Bingham County|Black Hawk County|Blackford County|Bladen County|Blaine County|Blair County|Blanco County|Bland County|Bleckley County|Bledsoe County|Blount County|Blue Earth County|Boise County|Bolivar County|Bollinger County|Bon Homme County|Bond County|Bonner County|Bonneville County|Boone County|Borden County|Bosque County|Bossier Parish|Botetourt County|Bottineau County|Boulder County|Boundary County|Bourbon County|Bowie County|Bowman County|Box Butte County|Box Elder County|Boyd County|Boyle County|Bracken County|Bradford County|Bradley County|Branch County|Brantley County|Braxton County|Brazoria County|Brazos County|Breathitt County|Breckinridge County|Bremer County|Brevard County|Brewster County|Briscoe County|Bristol Bay Borough|Bristol County|Bristol city|Broadwater County|Bronx County|Brooke County|Brookings County|Brooks County|Broome County|Broomfield County|Broward County|Brown County|Brule County|Brunswick County|Bryan County|Buchanan County|Buckingham County|Bucks County|Buena Vista County|Buena Vista city|Buffalo County|Bullitt County|Bulloch County|Bullock County|Buncombe County|Bureau County|Burke County|Burleigh County|Burleson County|Burlington County|Burnet County|Burnett County|Burt County|Butler County|Butte County|Butts County|Cabarrus County|Cabell County|Cache County|Caddo County|Caddo Parish|Calaveras County|Calcasieu Parish|Caldwell County|Caldwell Parish|Caledonia County|Calhoun County|Callahan County|Callaway County|Calloway County|Calumet County|Calvert County|Camas County|Cambria County|Camden County|Cameron County|Cameron Parish|Camp County|Campbell County|Canadian County|Candler County|Cannon County|Canyon County|Cape Girardeau County|Cape May County|Carbon County|Caribou County|Carlisle County|Carlton County|Caroline County|Carroll County|Carson City|Carson County|Carter County|Carteret County|Carver County|Cascade County|Casey County|Cass County|Cassia County|Castro County|Caswell County|Catahoula Parish|Catawba County|Catoosa County|Catron County|Cattaraugus County|Cavalier County|Cayuga County|Cecil County|Cedar County|Centre County|Cerro Gordo County|Chaffee County|Chambers County|Champaign County|Chariton County|Charles City County|Charles County|Charles Mix County|Charleston County|Charlevoix County|Charlotte County|Charlottesville city|Charlton County|Chase County|Chatham County|Chattahoochee County|Chattooga County|Chautauqua County|Chaves County|Cheatham County|Cheboygan County|Chelan County|Chemung County|Chenango County|Cherokee County|Cherry County|Chesapeake city|Cheshire County|Chester County|Chesterfield County|Cheyenne County|Chickasaw County|Chicot County|Childress County|Chilton County|Chippewa County|Chisago County|Chittenden County|Choctaw County|Chouteau County|Chowan County|Christian County|Churchill County|Cibola County|Cimarron County|Citrus County|Clackamas County|Claiborne County|Claiborne Parish|Clallam County|Clare County|Clarendon County|Clarion County|Clark County|Clarke County|Clatsop County|Clay County|Clayton County|Clear Creek County|Clearfield County|Clearwater County|Cleburne County|Clermont County|Cleveland County|Clinch County|Clinton County|Cloud County|Coahoma County|Coal County|Cobb County|Cochise County|Cochran County|Cocke County|Coconino County|Codington County|Coffee County|Coffey County|Coke County|Colbert County|Cole County|Coleman County|Coles County|Colfax County|Colleton County|Collier County|Collin County|Collingsworth County|Colonial Heights city|Colorado County|Colquitt County|Columbia County|Columbiana County|Columbus County|Colusa County|Comal County|Comanche County|Concho County|Concordia Parish|Conecuh County|Conejos County|Contra Costa County|Converse County|Conway County|Cook County|Cooke County|Cooper County|Coos County|Coosa County|Copiah County|Corson County|Cortland County|Coryell County|Coshocton County|Costilla County|Cottle County|Cotton County|Cottonwood County|Covington County|Covington city|Coweta County|Cowley County|Cowlitz County|Craig County|Craighead County|Crane County|Craven County|Crawford County|Creek County|Crenshaw County|Crisp County|Crittenden County|Crockett County|Crook County|Crosby County|Cross County|Crow Wing County|Crowley County|Culberson County|Cullman County|Culpeper County|Cumberland County|Cuming County|Currituck County|Curry County|Custer County|Cuyahoga County|Dade County|Daggett County|Dakota County|Dale County|Dallam County|Dallas County|Dane County|Daniels County|Danville city|Dare County|Darke County|Darlington County|Dauphin County|Davidson County|Davie County|Daviess County|Davis County|Davison County|Dawes County|Dawson County|Day County|De Baca County|De Soto Parish|De Witt County|DeKalb County|DeSoto County|DeWitt County|Deaf Smith County|Dearborn County|Decatur County|Deer Lodge County|Defiance County|Del Norte County|Delaware County|Delta County|Denali Borough|Dent County|Denton County|Denver County|Des Moines County|Deschutes County|Desha County|Deuel County|Dewey County|Dickens County|Dickenson County|Dickey County|Dickinson County|Dickson County|Dillingham Census Area|Dillon County|Dimmit County|Dinwiddie County|District of Columbia|Divide County|Dixie County|Dixon County|Doddridge County|Dodge County|Dolores County|Dona Ana County|Doniphan County|Donley County|Dooly County|Door County|Dorchester County|Dougherty County|Douglas County|Drew County|DuPage County|Dubois County|Dubuque County|Duchesne County|Dukes County|Dundy County|Dunklin County|Dunn County|Duplin County|Durham County|Dutchess County|Duval County|Dyer County|Eagle County|Early County|East Baton Rouge Parish|East Carroll Parish|East Feliciana Parish|Eastland County|Eaton County|Eau Claire County|Echols County|Ector County|Eddy County|Edgar County|Edgecombe County|Edgefield County|Edmonson County|Edmunds County|Edwards County|Effingham County|El Dorado County|El Paso County|Elbert County|Elk County|Elkhart County|Elko County|Elliott County|Ellis County|Ellsworth County|Elmore County|Emanuel County|Emery County|Emmet County|Emmons County|Emporia city|Erath County|Erie County|Escambia County|Esmeralda County|Essex County|Estill County|Etowah County|Eureka County|Evangeline Parish|Evans County|Fairbanks North Star Borough|Fairfax County|Fairfax city|Fairfield County|Fall River County|Fallon County|Falls Church city|Falls County|Fannin County|Faribault County|Faulk County|Faulkner County|Fauquier County|Fayette County|Fentress County|Fergus County|Ferry County|Fillmore County|Finney County|Fisher County|Flagler County|Flathead County|Fleming County|Florence County|Floyd County|Fluvanna County|Foard County|Fond du Lac County|Ford County|Forest County|Forrest County|Forsyth County|Fort Bend County|Foster County|Fountain County|Franklin County|Franklin Parish|Franklin city|Frederick County|Fredericksburg city|Freeborn County|Freestone County|Fremont County|Fresno County|Frio County|Frontier County|Fulton County|Furnas County|Gadsden County|Gage County|Gaines County|Galax city|Gallatin County|Gallia County|Galveston County|Garden County|Garfield County|Garland County|Garrard County|Garrett County|Garvin County|Garza County|Gasconade County|Gaston County|Gates County|Geary County|Geauga County|Gem County|Genesee County|Geneva County|Gentry County|George County|Georgetown County|Gibson County|Gila County|Gilchrist County|Giles County|Gillespie County|Gilliam County|Gilmer County|Gilpin County|Glacier County|Glades County|Gladwin County|Glascock County|Glasscock County|Glenn County|Gloucester County|Glynn County|Gogebic County|Golden Valley County|Goliad County|Gonzales County|Goochland County|Goodhue County|Gooding County|Gordon County|Goshen County|Gosper County|Gove County|Grady County|Grafton County|Graham County|Grainger County|Grand County|Grand Forks County|Grand Isle County|Grand Traverse County|Granite County|Grant County|Grant Parish|Granville County|Gratiot County|Graves County|Gray County|Grays Harbor County|Grayson County|Greeley County|Green County|Green Lake County|Greenbrier County|Greene County|Greenlee County|Greensville County|Greenup County|Greenville County|Greenwood County|Greer County|Gregg County|Gregory County|Grenada County|Griggs County|Grimes County|Grundy County|Guadalupe County|Guernsey County|Guilford County|Gulf County|Gunnison County|Guthrie County|Gwinnett County|Haakon County|Habersham County|Haines Borough|Hale County|Halifax County|Hall County|Hamblen County|Hamilton County|Hamlin County|Hampden County|Hampshire County|Hampton County|Hampton city|Hancock County|Hand County|Hanover County|Hansford County|Hanson County|Haralson County|Hardee County|Hardeman County|Hardin County|Harding County|Hardy County|Harford County|Harlan County|Harmon County|Harnett County|Harney County|Harper County|Harris County|Harrison County|Harrisonburg city|Hart County|Hartford County|Hartley County|Harvey County|Haskell County|Hawaii County|Hawkins County|Hayes County|Hays County|Haywood County|Heard County|Hemphill County|Hempstead County|Henderson County|Hendricks County|Hendry County|Hennepin County|Henrico County|Henry County|Herkimer County|Hernando County|Hertford County|Hettinger County|Hickman County|Hickory County|Hidalgo County|Highland County|Highlands County|Hill County|Hillsborough County|Hillsdale County|Hinds County|Hinsdale County|Hitchcock County|Hocking County|Hockley County|Hodgeman County|Hoke County|Holmes County|Holt County|Honolulu County|Hood County|Hood River County|Hooker County|Hoonah-Angoon Census Area|Hopewell city|Hopkins County|Horry County|Hot Spring County|Hot Springs County|Houghton County|Houston County|Howard County|Howell County|Hubbard County|Hudson County|Hudspeth County|Huerfano County|Hughes County|Humboldt County|Humphreys County|Hunt County|Hunterdon County|Huntingdon County|Huntington County|Huron County|Hutchinson County|Hyde County|Iberia Parish|Iberville Parish|Ida County|Idaho County|Imperial County|Independence County|Indian River County|Indiana County|Ingham County|Inyo County|Ionia County|Iosco County|Iowa County|Iredell County|Irion County|Iron County|Iroquois County|Irwin County|Isabella County|Isanti County|Island County|Isle of Wight County|Issaquena County|Itasca County|Itawamba County|Izard County|Jack County|Jackson County|Jackson Parish|James City County|Jasper County|Jay County|Jeff Davis County|Jefferson County|Jefferson Davis County|Jefferson Davis Parish|Jefferson Parish|Jenkins County|Jennings County|Jerauld County|Jerome County|Jersey County|Jessamine County|Jewell County|Jim Hogg County|Jim Wells County|Jo Daviess County|Johnson County|Johnston County|Jones County|Josephine County|Juab County|Judith Basin County|Juneau City and Borough|Juneau County|Juniata County|Kalamazoo County|Kalkaska County|Kanabec County|Kanawha County|Kandiyohi County|Kane County|Kankakee County|Karnes County|Kauai County|Kaufman County|Kay County|Kearney County|Kearny County|Keith County|Kemper County|Kenai Peninsula Borough|Kendall County|Kenedy County|Kennebec County|Kenosha County|Kent County|Kenton County|Keokuk County|Kern County|Kerr County|Kershaw County|Ketchikan Gateway Borough|Kewaunee County|Keweenaw County|Keya Paha County|Kidder County|Kimball County|Kimble County|King County|King George County|King William County|King and Queen County|Kingfisher County|Kingman County|Kings County|Kingsbury County|Kinney County|Kiowa County|Kit Carson County|Kitsap County|Kittitas County|Kittson County|Klamath County|Kleberg County|Klickitat County|Knott County|Knox County|Kodiak Island Borough|Koochiching County|Kootenai County|Kosciusko County|Kossuth County|Kusilvak Census Area|La Crosse County|La Paz County|La Plata County|La Salle County|La Salle Parish|LaGrange County|LaMoure County|LaPorte County|LaSalle County|Labette County|Lac qui Parle County|Lackawanna County|Laclede County|Lafayette County|Lafayette Parish|Lafourche Parish|Lake County|Lake and Peninsula Borough|Lake of the Woods County|Lamar County|Lamb County|Lamoille County|Lampasas County|Lancaster County|Lander County|Lane County|Langlade County|Lanier County|Lapeer County|Laramie County|Larimer County|Larue County|Las Animas County|Lassen County|Latah County|Latimer County|Lauderdale County|Laurel County|Laurens County|Lavaca County|Lawrence County|Le Flore County|Le Sueur County|Lea County|Leake County|Leavenworth County|Lebanon County|Lee County|Leelanau County|Leflore County|Lehigh County|Lemhi County|Lenawee County|Lenoir County|Leon County|Leslie County|Letcher County|Levy County|Lewis County|Lewis and Clark County|Lexington County|Lexington city|Liberty County|Licking County|Limestone County|Lincoln County|Lincoln Parish|Linn County|Lipscomb County|Litchfield County|Little River County|Live Oak County|Livingston County|Livingston Parish|Llano County|Logan County|Long County|Lonoke County|Lorain County|Los Alamos County|Los Angeles County|Loudon County|Loudoun County|Louisa County|Loup County|Love County|Lowndes County|Lubbock County|Lucas County|Luce County|Lumpkin County|Luna County|Lunenburg County|Luzerne County|Lycoming County|Lyman County|Lynchburg city|Lynn County|Lyon County|Mackinac County|Macomb County|Macon County|Macoupin County|Madera County|Madison County|Madison Parish|Magoffin County|Mahaska County|Mahnomen County|Mahoning County|Major County|Malheur County|Manassas Park city|Manassas city|Manatee County|Manistee County|Manitowoc County|Marathon County|Marengo County|Maricopa County|Maries County|Marin County|Marinette County|Marion County|Mariposa County|Marlboro County|Marquette County|Marshall County|Martin County|Martinsville city|Mason County|Massac County|Matagorda County|Matanuska-Susitna Borough|Mathews County|Maui County|Maury County|Maverick County|Mayes County|McClain County|McCone County|McCook County|McCormick County|McCracken County|McCreary County|McCulloch County|McCurtain County|McDonald County|McDonough County|McDowell County|McDuffie County|McHenry County|McIntosh County|McKean County|McKenzie County|McKinley County|McLean County|McLennan County|McLeod County|McMinn County|McMullen County|McNairy County|McPherson County|Meade County|Meagher County|Mecklenburg County|Mecosta County|Medina County|Meeker County|Meigs County|Mellette County|Menard County|Mendocino County|Menifee County|Menominee County|Merced County|Mercer County|Meriwether County|Merrick County|Merrimack County|Mesa County|Metcalfe County|Miami County|Miami-Dade County|Middlesex County|Midland County|Mifflin County|Milam County|Millard County|Mille Lacs County|Miller County|Mills County|Milwaukee County|Miner County|Mineral County|Mingo County|Minidoka County|Minnehaha County|Missaukee County|Mississippi County|Missoula County|Mitchell County|Mobile County|Modoc County|Moffat County|Mohave County|Moniteau County|Monmouth County|Mono County|Monona County|Monongalia County|Monroe County|Montague County|Montcalm County|Monterey County|Montezuma County|Montgomery County|Montmorency County|Montour County|Montrose County|Moody County|Moore County|Mora County|Morehouse Parish|Morgan County|Morrill County|Morris County|Morrison County|Morrow County|Morton County|Motley County|Moultrie County|Mountrail County|Mower County|Muhlenberg County|Multnomah County|Murray County|Muscatine County|Muscogee County|Muskegon County|Muskingum County|Muskogee County|Musselshell County|Nacogdoches County|Nance County|Nantucket County|Napa County|Nash County|Nassau County|Natchitoches Parish|Natrona County|Navajo County|Navarro County|Nelson County|Nemaha County|Neosho County|Neshoba County|Ness County|Nevada County|New Castle County|New Hanover County|New Haven County|New Kent County|New London County|New Madrid County|New York County|Newaygo County|Newberry County|Newport County|Newport News city|Newton County|Nez Perce County|Niagara County|Nicholas County|Nicollet County|Niobrara County|Noble County|Nobles County|Nodaway County|Nolan County|Nome Census Area|Norfolk County|Norfolk city|Norman County|North Slope Borough|Northampton County|Northumberland County|Northwest Arctic Borough|Norton County|Norton city|Nottoway County|Nowata County|Noxubee County|Nuckolls County|Nueces County|Nye County|O'Brien County|Oakland County|Obion County|Ocean County|Oceana County|Ochiltree County|Oconee County|Oconto County|Ogemaw County|Oglala Lakota County|Ogle County|Oglethorpe County|Ohio County|Okaloosa County|Okanogan County|Okeechobee County|Okfuskee County|Oklahoma County|Okmulgee County|Oktibbeha County|Oldham County|Oliver County|Olmsted County|Oneida County|Onondaga County|Onslow County|Ontario County|Ontonagon County|Orange County|Orangeburg County|Oregon County|Orleans County|Orleans Parish|Osage County|Osborne County|Osceola County|Oscoda County|Oswego County|Otero County|Otoe County|Otsego County|Ottawa County|Otter Tail County|Ouachita County|Ouachita Parish|Ouray County|Outagamie County|Overton County|Owen County|Owsley County|Owyhee County|Oxford County|Ozark County|Ozaukee County|Pacific County|Page County|Palm Beach County|Palo Alto County|Palo Pinto County|Pamlico County|Panola County|Park County|Parke County|Parker County|Parmer County|Pasco County|Pasquotank County|Passaic County|Patrick County|Paulding County|Pawnee County|Payette County|Payne County|Peach County|Pearl River County|Pecos County|Pembina County|Pemiscot County|Pend Oreille County|Pender County|Pendleton County|Pennington County|Penobscot County|Peoria County|Pepin County|Perkins County|Perquimans County|Perry County|Pershing County|Person County|Petersburg Borough|Petersburg city|Petroleum County|Pettis County|Phelps County|Philadelphia County|Phillips County|Piatt County|Pickaway County|Pickens County|Pickett County|Pierce County|Pike County|Pima County|Pinal County|Pine County|Pinellas County|Pipestone County|Piscataquis County|Pitkin County|Pitt County|Pittsburg County|Pittsylvania County|Piute County|Placer County|Plaquemines Parish|Platte County|Pleasants County|Plumas County|Plymouth County|Pocahontas County|Poinsett County|Pointe Coupee Parish|Polk County|Pondera County|Pontotoc County|Pope County|Poquoson city|Portage County|Porter County|Portsmouth city|Posey County|Pottawatomie County|Pottawattamie County|Potter County|Powder River County|Powell County|Power County|Poweshiek County|Powhatan County|Prairie County|Pratt County|Preble County|Prentiss County|Presidio County|Presque Isle County|Preston County|Price County|Prince Edward County|Prince George County|Prince George's County|Prince William County|Providence County|Prowers County|Pueblo County|Pulaski County|Pushmataha County|Putnam County|Quay County|Queen Anne's County|Queens County|Quitman County|Rabun County|Racine County|Radford city|Rains County|Raleigh County|Ralls County|Ramsey County|Randall County|Randolph County|Rankin County|Ransom County|Rapides Parish|Rappahannock County|Ravalli County|Rawlins County|Ray County|Reagan County|Real County|Red Lake County|Red River County|Red River Parish|Red Willow County|Redwood County|Reeves County|Refugio County|Reno County|Rensselaer County|Renville County|Republic County|Reynolds County|Rhea County|Rice County|Rich County|Richardson County|Richland County|Richland Parish|Richmond County|Richmond city|Riley County|Ringgold County|Rio Arriba County|Rio Blanco County|Rio Grande County|Ripley County|Ritchie County|Riverside County|Roane County|Roanoke County|Roanoke city|Roberts County|Robertson County|Robeson County|Rock County|Rock Island County|Rockbridge County|Rockcastle County|Rockdale County|Rockingham County|Rockland County|Rockwall County|Roger Mills County|Rogers County|Rolette County|Rooks County|Roosevelt County|Roscommon County|Roseau County|Rosebud County|Ross County|Routt County|Rowan County|Runnels County|Rush County|Rusk County|Russell County|Rutherford County|Rutland County|Sabine County|Sabine Parish|Sac County|Sacramento County|Sagadahoc County|Saginaw County|Saguache County|Salem County|Salem city|Saline County|Salt Lake County|Saluda County|Sampson County|San Augustine County|San Benito County|San Bernardino County|San Diego County|San Francisco County|San Jacinto County|San Joaquin County|San Juan County|San Luis Obispo County|San Mateo County|San Miguel County|San Patricio County|San Saba County|Sanborn County|Sanders County|Sandoval County|Sandusky County|Sangamon County|Sanilac County|Sanpete County|Santa Barbara County|Santa Clara County|Santa Cruz County|Santa Fe County|Santa Rosa County|Sarasota County|Saratoga County|Sargent County|Sarpy County|Sauk County|Saunders County|Sawyer County|Schenectady County|Schleicher County|Schley County|Schoharie County|Schoolcraft County|Schuyler County|Schuylkill County|Scioto County|Scotland County|Scott County|Scotts Bluff County|Screven County|Scurry County|Searcy County|Sebastian County|Sedgwick County|Seminole County|Seneca County|Sequatchie County|Sequoyah County|Sevier County|Seward County|Shackelford County|Shannon County|Sharkey County|Sharp County|Shasta County|Shawano County|Shawnee County|Sheboygan County|Shelby County|Shenandoah County|Sherburne County|Sheridan County|Sherman County|Shiawassee County|Shoshone County|Sibley County|Sierra County|Silver Bow County|Simpson County|Sioux County|Siskiyou County|Sitka City and Borough|Skagit County|Skagway Municipality|Skamania County|Slope County|Smith County|Smyth County|Snohomish County|Snyder County|Socorro County|Solano County|Somerset County|Somervell County|Sonoma County|Southampton County|Southeast Fairbanks Census Area|Spalding County|Spartanburg County|Spencer County|Spink County|Spokane County|Spotsylvania County|St. Bernard Parish|St. Charles County|St. Charles Parish|St. Clair County|St. Croix County|St. Francis County|St. Francois County|St. Helena Parish|St. James Parish|St. John the Baptist Parish|St. Johns County|St. Joseph County|St. Landry Parish|St. Lawrence County|St. Louis County|St. Louis city|St. Lucie County|St. Martin Parish|St. Mary Parish|St. Mary's County|St. Tammany Parish|Stafford County|Stanislaus County|Stanley County|Stanly County|Stanton County|Stark County|Starke County|Starr County|Staunton city|Ste. Genevieve County|Stearns County|Steele County|Stephens County|Stephenson County|Sterling County|Steuben County|Stevens County|Stewart County|Stillwater County|Stoddard County|Stokes County|Stone County|Stonewall County|Storey County|Story County|Strafford County|Stutsman County|Sublette County|Suffolk County|Suffolk city|Sullivan County|Sully County|Summers County|Summit County|Sumner County|Sumter County|Sunflower County|Surry County|Susquehanna County|Sussex County|Sutter County|Sutton County|Suwannee County|Swain County|Sweet Grass County|Sweetwater County|Swift County|Swisher County|Switzerland County|Talbot County|Taliaferro County|Talladega County|Tallahatchie County|Tallapoosa County|Tama County|Taney County|Tangipahoa Parish|Taos County|Tarrant County|Tate County|Tattnall County|Taylor County|Tazewell County|Tehama County|Telfair County|Teller County|Tensas Parish|Terrebonne Parish|Terrell County|Terry County|Teton County|Texas County|Thayer County|Thomas County|Throckmorton County|Thurston County|Tift County|Tillamook County|Tillman County|Tioga County|Tippah County|Tippecanoe County|Tipton County|Tishomingo County|Titus County|Todd County|Tolland County|Tom Green County|Tompkins County|Tooele County|Toole County|Toombs County|Torrance County|Towner County|Towns County|Traill County|Transylvania County|Traverse County|Travis County|Treasure County|Trego County|Trempealeau County|Treutlen County|Trigg County|Trimble County|Trinity County|Tripp County|Troup County|Trousdale County|Trumbull County|Tucker County|Tulare County|Tulsa County|Tunica County|Tuolumne County|Turner County|Tuscaloosa County|Tuscarawas County|Tuscola County|Twiggs County|Twin Falls County|Tyler County|Tyrrell County|Uinta County|Uintah County|Ulster County|Umatilla County|Unicoi County|Union County|Union Parish|Upshur County|Upson County|Upton County|Utah County|Uvalde County|Val Verde County|Valdez-Cordova Census Area|Valencia County|Valley County|Van Buren County|Van Wert County|Van Zandt County|Vance County|Vanderburgh County|Venango County|Ventura County|Vermilion County|Vermilion Parish|Vermillion County|Vernon County|Vernon Parish|Victoria County|Vigo County|Vilas County|Vinton County|Virginia Beach city|Volusia County|Wabash County|Wabasha County|Wabaunsee County|Wadena County|Wagoner County|Wahkiakum County|Wake County|Wakulla County|Waldo County|Walker County|Walla Walla County|Wallace County|Waller County|Wallowa County|Walsh County|Walthall County|Walton County|Walworth County|Wapello County|Ward County|Ware County|Warren County|Warrick County|Wasatch County|Wasco County|Waseca County|Washakie County|Washburn County|Washington County|Washington Parish|Washita County|Washoe County|Washtenaw County|Watauga County|Watonwan County|Waukesha County|Waupaca County|Waushara County|Wayne County|Waynesboro city|Weakley County|Webb County|Weber County|Webster County|Webster Parish|Weld County|Wells County|West Baton Rouge Parish|West Carroll Parish|West Feliciana Parish|Westchester County|Westmoreland County|Weston County|Wetzel County|Wexford County|Wharton County|Whatcom County|Wheatland County|Wheeler County|White County|White Pine County|Whiteside County|Whitfield County|Whitley County|Whitman County|Wibaux County|Wichita County|Wicomico County|Wilbarger County|Wilcox County|Wilkes County|Wilkin County|Wilkinson County|Will County|Willacy County|Williams County|Williamsburg County|Williamsburg city|Williamson County|Wilson County|Winchester city|Windham County|Windsor County|Winkler County|Winn Parish|Winnebago County|Winneshiek County|Winona County|Winston County|Wirt County|Wise County|Wolfe County|Wood County|Woodbury County|Woodford County|Woodruff County|Woods County|Woodson County|Woodward County|Worcester County|Worth County|Wrangell City and Borough|Wright County|Wyandot County|Wyandotte County|Wyoming County|Wythe County|Yadkin County|Yakima County|Yakutat City and Borough|Yalobusha County|Yamhill County|Yancey County|Yankton County|Yates County|Yavapai County|Yazoo County|Yell County|Yellow Medicine County|Yellowstone County|Yoakum County|Yolo County|York County|Young County|Yuba County|Yukon-Koyukuk Census Area|Yuma County|Zapata County|Zavala County|Ziebach County -in.ahs_region metadata_and_annual n/a string "CBSA Atlanta-Sandy Springs-Roswell, GA|CBSA Boston-Cambridge-Newton, MA-NH|CBSA Chicago-Naperville-Elgin, IL-IN-WI|CBSA Dallas-Fort Worth-Arlington, TX|CBSA Detroit-Warren-Dearborn, MI|CBSA Houston-The Woodlands-Sugar Land, TX|CBSA Los Angeles-Long Beach-Anaheim, CA|CBSA Miami-Fort Lauderdale-West Palm Beach, FL|CBSA New York-Newark-Jersey City, NY-NJ-PA|CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD|CBSA Phoenix-Mesa-Scottsdale, AZ|CBSA Riverside-San Bernardino-Ontario, CA|CBSA San Francisco-Oakland-Hayward, CA|CBSA Seattle-Tacoma-Bellevue, WA|CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV|Non-CBSA East North Central|Non-CBSA East South Central|Non-CBSA Middle Atlantic|Non-CBSA Mountain|Non-CBSA New England|Non-CBSA Pacific|Non-CBSA South Atlantic|Non-CBSA West North Central|Non-CBSA West South Central" -in.aiannh_area metadata_and_annual n/a boolean No|Yes -in.area_median_income metadata_and_annual n/a string 0-30%|100-120%|120-150%|150%+|30-60%|60-80%|80-100%|Not Available -in.ashrae_iecc_climate_zone_2004 metadata_and_annual n/a string 1A|2A|2B|3A|3B|3C|4A|4B|4C|5A|5B|6A|6B|7A|7AK|7B|8AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split metadata_and_annual n/a string "1A - FL|1A - HI|2A - FL, GA, AL, MS|2A - TX, LA|2B|3A|3B|3C|4A|4B|4C|5A|5B|6A|6B|7A|7AK|7B|8AK" -in.bathroom_spot_vent_hour metadata_and_annual n/a string Hour0|Hour1|Hour10|Hour11|Hour12|Hour13|Hour14|Hour15|Hour16|Hour17|Hour18|Hour19|Hour2|Hour20|Hour21|Hour22|Hour23|Hour3|Hour4|Hour5|Hour6|Hour7|Hour8|Hour9 -in.battery metadata_and_annual n/a string None -in.bedrooms metadata_and_annual n/a integer 1|2|3|4|5 -in.building_america_climate_zone metadata_and_annual n/a string Cold|Hot-Dry|Hot-Humid|Marine|Mixed-Dry|Mixed-Humid|Subarctic|Very Cold -in.cec_climate_zone metadata_and_annual n/a string 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|None -in.ceiling_fan metadata_and_annual n/a string "None|Standard Efficiency|Standard Efficiency, No usage" -in.census_division metadata_and_annual n/a string East North Central|East South Central|Middle Atlantic|Mountain|New England|Pacific|South Atlantic|West North Central|West South Central -in.census_division_recs metadata_and_annual n/a string East North Central|East South Central|Middle Atlantic|Mountain North|Mountain South|New England|Pacific|South Atlantic|West North Central|West South Central -in.census_region metadata_and_annual n/a string Midwest|Northeast|South|West -in.city metadata_and_annual n/a string "AK, Anchorage|AL, Auburn|AL, Birmingham|AL, Decatur|AL, Dothan|AL, Florence|AL, Gadsden|AL, Hoover|AL, Huntsville|AL, Madison|AL, Mobile|AL, Montgomery|AL, Phenix City|AL, Tuscaloosa|AR, Bentonville|AR, Conway|AR, Fayetteville|AR, Fort Smith|AR, Hot Springs|AR, Jonesboro|AR, Little Rock|AR, North Little Rock|AR, Pine Bluff|AR, Rogers|AR, Springdale|AZ, Apache Junction|AZ, Avondale|AZ, Buckeye|AZ, Bullhead City|AZ, Casa Grande|AZ, Casas Adobes|AZ, Catalina Foothills|AZ, Chandler|AZ, Flagstaff|AZ, Fortuna Foothills|AZ, Gilbert|AZ, Glendale|AZ, Goodyear|AZ, Green Valley|AZ, Lake Havasu City|AZ, Marana|AZ, Maricopa|AZ, Mesa|AZ, Oro Valley|AZ, Peoria|AZ, Phoenix|AZ, Prescott|AZ, Prescott Valley|AZ, San Tan Valley|AZ, Scottsdale|AZ, Sierra Vista|AZ, Sun City|AZ, Sun City West|AZ, Surprise|AZ, Tempe|AZ, Tucson|AZ, Yuma|CA, Alameda|CA, Alhambra|CA, Aliso Viejo|CA, Altadena|CA, Anaheim|CA, Antioch|CA, Apple Valley|CA, Arcadia|CA, Arden-Arcade|CA, Bakersfield|CA, Baldwin Park|CA, Bellflower|CA, Berkeley|CA, Beverly Hills|CA, Brea|CA, Brentwood|CA, Buena Park|CA, Burbank|CA, Camarillo|CA, Campbell|CA, Carlsbad|CA, Carmichael|CA, Carson|CA, Castro Valley|CA, Cathedral City|CA, Cerritos|CA, Chico|CA, Chino|CA, Chino Hills|CA, Chula Vista|CA, Citrus Heights|CA, Clovis|CA, Colton|CA, Compton|CA, Concord|CA, Corona|CA, Costa Mesa|CA, Covina|CA, Culver City|CA, Cupertino|CA, Cypress|CA, Daly City|CA, Dana Point|CA, Danville|CA, Davis|CA, Diamond Bar|CA, Downey|CA, Dublin|CA, East Los Angeles|CA, El Cajon|CA, El Dorado Hills|CA, El Monte|CA, Elk Grove|CA, Encinitas|CA, Escondido|CA, Fairfield|CA, Florence-Graham|CA, Florin|CA, Folsom|CA, Fontana|CA, Fountain Valley|CA, Fremont|CA, Fresno|CA, Fullerton|CA, Garden Grove|CA, Gardena|CA, Gilroy|CA, Glendale|CA, Glendora|CA, Hacienda Heights|CA, Hanford|CA, Hawthorne|CA, Hayward|CA, Hemet|CA, Hesperia|CA, Highland|CA, Huntington Beach|CA, Huntington Park|CA, Indio|CA, Inglewood|CA, Irvine|CA, La Habra|CA, La Mesa|CA, La Quinta|CA, Laguna Niguel|CA, Lake Elsinore|CA, Lake Forest|CA, Lakewood|CA, Lancaster|CA, Lincoln|CA, Livermore|CA, Lodi|CA, Long Beach|CA, Los Angeles|CA, Lynwood|CA, Madera|CA, Manhattan Beach|CA, Manteca|CA, Martinez|CA, Menifee|CA, Merced|CA, Milpitas|CA, Mission Viejo|CA, Modesto|CA, Montebello|CA, Monterey Park|CA, Moreno Valley|CA, Mountain View|CA, Murrieta|CA, Napa|CA, National City|CA, Newport Beach|CA, North Highlands|CA, Norwalk|CA, Novato|CA, Oakland|CA, Oceanside|CA, Ontario|CA, Orange|CA, Oxnard|CA, Palm Desert|CA, Palm Springs|CA, Palmdale|CA, Palo Alto|CA, Pasadena|CA, Perris|CA, Petaluma|CA, Pico Rivera|CA, Pittsburg|CA, Placentia|CA, Pleasanton|CA, Pomona|CA, Porterville|CA, Poway|CA, Rancho Cordova|CA, Rancho Cucamonga|CA, Rancho Palos Verdes|CA, Rancho Santa Margarita|CA, Redding|CA, Redlands|CA, Redondo Beach|CA, Redwood City|CA, Rialto|CA, Richmond|CA, Riverside|CA, Rocklin|CA, Rohnert Park|CA, Rosemead|CA, Roseville|CA, Rowland Heights|CA, Sacramento|CA, Salinas|CA, San Bernardino|CA, San Bruno|CA, San Buenaventura Ventura|CA, San Clemente|CA, San Diego|CA, San Francisco|CA, San Jose|CA, San Leandro|CA, San Luis Obispo|CA, San Marcos|CA, San Mateo|CA, San Rafael|CA, San Ramon|CA, Santa Ana|CA, Santa Barbara|CA, Santa Clara|CA, Santa Clarita|CA, Santa Cruz|CA, Santa Maria|CA, Santa Monica|CA, Santa Rosa|CA, Santee|CA, Simi Valley|CA, South Gate|CA, South Lake Tahoe|CA, South San Francisco|CA, South Whittier|CA, Stockton|CA, Sunnyvale|CA, Temecula|CA, Thousand Oaks|CA, Torrance|CA, Tracy|CA, Tulare|CA, Turlock|CA, Tustin|CA, Union City|CA, Upland|CA, Vacaville|CA, Vallejo|CA, Victorville|CA, Visalia|CA, Vista|CA, Walnut Creek|CA, West Covina|CA, West Hollywood|CA, West Sacramento|CA, Westminster|CA, Whittier|CA, Woodland|CA, Yorba Linda|CA, Yuba City|CA, Yucaipa|CO, Arvada|CO, Aurora|CO, Boulder|CO, Broomfield|CO, Castle Rock|CO, Centennial|CO, Colorado Springs|CO, Commerce City|CO, Denver|CO, Englewood|CO, Fort Collins|CO, Grand Junction|CO, Greeley|CO, Highlands Ranch|CO, Lakewood|CO, Littleton|CO, Longmont|CO, Loveland|CO, Parker|CO, Pueblo|CO, Thornton|CO, Westminster|CT, Bridgeport|CT, Bristol|CT, Danbury|CT, East Hartford|CT, Hartford|CT, Meriden|CT, Middletown|CT, Milford City Balance|CT, New Britain|CT, New Haven|CT, Norwalk|CT, Norwich|CT, Shelton|CT, Stamford|CT, Stratford|CT, Torrington|CT, Waterbury|CT, West Hartford|CT, West Haven|DC, Washington|DE, Dover|DE, Wilmington|FL, Alafaya|FL, Altamonte Springs|FL, Apopka|FL, Aventura|FL, Boca Raton|FL, Bonita Springs|FL, Boynton Beach|FL, Bradenton|FL, Brandon|FL, Cape Coral|FL, Carrollwood|FL, Clearwater|FL, Coconut Creek|FL, Coral Gables|FL, Coral Springs|FL, Country Club|FL, Dania Beach|FL, Davie|FL, Daytona Beach|FL, Deerfield Beach|FL, Delray Beach|FL, Deltona|FL, Doral|FL, Dunedin|FL, East Lake|FL, Estero|FL, Fort Lauderdale|FL, Fort Myers|FL, Fort Pierce|FL, Fountainebleau|FL, Four Corners|FL, Gainesville|FL, Greenacres|FL, Hallandale Beach|FL, Hialeah|FL, Hollywood|FL, Homestead|FL, Jacksonville|FL, Jupiter|FL, Kendale Lakes|FL, Kendall|FL, Kissimmee|FL, Lake Worth|FL, Lakeland|FL, Largo|FL, Lauderhill|FL, Lehigh Acres|FL, Marco Island|FL, Margate|FL, Melbourne|FL, Merritt Island|FL, Miami|FL, Miami Beach|FL, Miami Gardens|FL, Miramar|FL, Naples|FL, New Smyrna Beach|FL, North Fort Myers|FL, North Miami|FL, North Miami Beach|FL, North Port|FL, Oakland Park|FL, Ocala|FL, Orlando|FL, Ormond Beach|FL, Palm Bay|FL, Palm Beach Gardens|FL, Palm Coast|FL, Palm Harbor|FL, Panama City|FL, Panama City Beach|FL, Pembroke Pines|FL, Pensacola|FL, Pine Hills|FL, Pinellas Park|FL, Plantation|FL, Poinciana|FL, Pompano Beach|FL, Port Charlotte|FL, Port Orange|FL, Port St Lucie|FL, Riverview|FL, Riviera Beach|FL, Sanford|FL, Sarasota|FL, Spring Hill|FL, St Cloud|FL, St Petersburg|FL, Sun City Center|FL, Sunny Isles Beach|FL, Sunrise|FL, Tallahassee|FL, Tamarac|FL, Tamiami|FL, Tampa|FL, The Hammocks|FL, The Villages|FL, Titusville|FL, Town N Country|FL, University|FL, Venice|FL, Wellington|FL, Wesley Chapel|FL, West Palm Beach|FL, Weston|FL, Winter Haven|GA, Albany|GA, Alpharetta|GA, Athens-Clarke County Unified Government Balance|GA, Atlanta|GA, Augusta-Richmond County Consolidated Government Balance|GA, Columbus|GA, Dunwoody|GA, East Point|GA, Hinesville|GA, Johns Creek|GA, Mableton|GA, Macon|GA, Marietta|GA, Newnan|GA, North Atlanta|GA, Rome|GA, Roswell|GA, Sandy Springs|GA, Savannah|GA, Smyrna|GA, Valdosta|GA, Warner Robins|HI, East Honolulu|HI, Hilo|HI, Kailua|HI, Urban Honolulu|IA, Ames|IA, Ankeny|IA, Cedar Falls|IA, Cedar Rapids|IA, Council Bluffs|IA, Davenport|IA, Des Moines|IA, Dubuque|IA, Iowa City|IA, Marion|IA, Sioux City|IA, Urbandale|IA, Waterloo|IA, West Des Moines|ID, Boise City|ID, Caldwell|ID, Coeur Dalene|ID, Idaho Falls|ID, Meridian|ID, Nampa|ID, Pocatello|ID, Twin Falls|IL, Arlington Heights|IL, Aurora|IL, Belleville|IL, Berwyn|IL, Bloomington|IL, Bolingbrook|IL, Buffalo Grove|IL, Calumet City|IL, Carol Stream|IL, Champaign|IL, Chicago|IL, Cicero|IL, Crystal Lake|IL, Decatur|IL, Dekalb|IL, Des Plaines|IL, Downers Grove|IL, Elgin|IL, Elmhurst|IL, Evanston|IL, Glenview|IL, Hoffman Estates|IL, Joliet|IL, Lombard|IL, Moline|IL, Mount Prospect|IL, Naperville|IL, Normal|IL, Oak Lawn|IL, Oak Park|IL, Orland Park|IL, Palatine|IL, Peoria|IL, Quincy|IL, Rock Island|IL, Rockford|IL, Schaumburg|IL, Skokie|IL, Springfield|IL, Tinley Park|IL, Urbana|IL, Waukegan|IL, Wheaton|IL, Wheeling|IN, Anderson|IN, Bloomington|IN, Carmel|IN, Columbus|IN, Elkhart|IN, Evansville|IN, Fishers|IN, Fort Wayne|IN, Gary|IN, Greenwood|IN, Hammond|IN, Indianapolis City Balance|IN, Jeffersonville|IN, Kokomo|IN, Lafayette|IN, Lawrence|IN, Mishawaka|IN, Muncie|IN, New Albany|IN, Noblesville|IN, Portage|IN, Richmond|IN, South Bend|IN, Terre Haute|In another census Place|KS, Hutchinson|KS, Kansas City|KS, Lawrence|KS, Lenexa|KS, Manhattan|KS, Olathe|KS, Overland Park|KS, Salina|KS, Shawnee|KS, Topeka|KS, Wichita|KY, Bowling Green|KY, Covington|KY, Lexington-Fayette|KY, Louisville Jefferson County Metro Government Balance|KY, Owensboro|LA, Alexandria|LA, Baton Rouge|LA, Bossier City|LA, Kenner|LA, Lafayette|LA, Lake Charles|LA, Metairie|LA, Monroe|LA, New Orleans|LA, Shreveport|MA, Arlington|MA, Attleboro|MA, Barnstable Town|MA, Beverly|MA, Boston|MA, Brockton|MA, Brookline|MA, Cambridge|MA, Chicopee|MA, Everett|MA, Fall River|MA, Fitchburg|MA, Framingham|MA, Haverhill|MA, Holyoke|MA, Lawrence|MA, Leominster|MA, Lowell|MA, Lynn|MA, Malden|MA, Marlborough|MA, Medford|MA, Methuen Town|MA, New Bedford|MA, Newton|MA, Peabody|MA, Pittsfield|MA, Quincy|MA, Revere|MA, Salem|MA, Somerville|MA, Springfield|MA, Taunton|MA, Waltham|MA, Watertown Town|MA, Westfield|MA, Weymouth Town|MA, Woburn|MA, Worcester|MD, Annapolis|MD, Aspen Hill|MD, Baltimore|MD, Bel Air South|MD, Bethesda|MD, Bowie|MD, Catonsville|MD, Columbia|MD, Dundalk|MD, Ellicott City|MD, Essex|MD, Frederick|MD, Gaithersburg|MD, Germantown|MD, Glen Burnie|MD, Hagerstown|MD, North Bethesda|MD, Ocean City|MD, Odenton|MD, Potomac|MD, Rockville|MD, Severn|MD, Silver Spring|MD, Towson|MD, Waldorf|MD, Wheaton|MD, Woodlawn|ME, Bangor|ME, Lewiston|ME, Portland|MI, Ann Arbor|MI, Battle Creek|MI, Bay City|MI, Dearborn|MI, Dearborn Heights|MI, Detroit|MI, Farmington Hills|MI, Flint|MI, Grand Rapids|MI, Jackson|MI, Kalamazoo|MI, Kentwood|MI, Lansing|MI, Lincoln Park|MI, Livonia|MI, Midland|MI, Muskegon|MI, Novi|MI, Pontiac|MI, Portage|MI, Rochester Hills|MI, Roseville|MI, Royal Oak|MI, Saginaw|MI, Southfield|MI, St Clair Shores|MI, Sterling Heights|MI, Taylor|MI, Troy|MI, Warren|MI, Westland|MI, Wyoming|MN, Apple Valley|MN, Blaine|MN, Bloomington|MN, Brooklyn Park|MN, Burnsville|MN, Coon Rapids|MN, Duluth|MN, Eagan|MN, Eden Prairie|MN, Edina|MN, Lakeville|MN, Mankato|MN, Maple Grove|MN, Maplewood|MN, Minneapolis|MN, Minnetonka|MN, Moorhead|MN, Plymouth|MN, Richfield|MN, Rochester|MN, Roseville|MN, St Cloud|MN, St Louis Park|MN, St Paul|MN, Woodbury|MO, Blue Springs|MO, Cape Girardeau|MO, Chesterfield|MO, Columbia|MO, Florissant|MO, Independence|MO, Jefferson City|MO, Joplin|MO, Kansas City|MO, Lees Summit|MO, Ofallon|MO, Springfield|MO, St Charles|MO, St Joseph|MO, St Louis|MO, St Peters|MO, University City|MS, Biloxi|MS, Gulfport|MS, Hattiesburg|MS, Jackson|MS, Meridian|MS, Southaven|MS, Tupelo|MT, Billings|MT, Bozeman|MT, Butte-Silver Bow Balance|MT, Great Falls|MT, Missoula|NC, Asheville|NC, Burlington|NC, Cary|NC, Chapel Hill|NC, Charlotte|NC, Concord|NC, Durham|NC, Fayetteville|NC, Gastonia|NC, Goldsboro|NC, Greensboro|NC, Greenville|NC, Hickory|NC, High Point|NC, Huntersville|NC, Jacksonville|NC, Kannapolis|NC, Raleigh|NC, Rocky Mount|NC, Wilmington|NC, Wilson|NC, Winston-Salem|ND, Bismarck|ND, Fargo|ND, Grand Forks|ND, Minot|NE, Bellevue|NE, Grand Island|NE, Lincoln|NE, Omaha|NH, Concord|NH, Manchester|NH, Nashua|NJ, Atlantic City|NJ, Bayonne|NJ, Camden|NJ, Clifton|NJ, East Orange|NJ, Elizabeth|NJ, Fort Lee|NJ, Hackensack|NJ, Hoboken|NJ, Jersey City|NJ, Linden|NJ, New Brunswick|NJ, Newark|NJ, Ocean City|NJ, Passaic|NJ, Paterson|NJ, Perth Amboy|NJ, Plainfield|NJ, Sayreville|NJ, Toms River|NJ, Trenton|NJ, Union City|NJ, Vineland|NJ, West New York|NM, Albuquerque|NM, Clovis|NM, Farmington|NM, Las Cruces|NM, Rio Rancho|NM, Roswell|NM, Santa Fe|NM, South Valley|NV, Carson City|NV, Enterprise|NV, Henderson|NV, Las Vegas|NV, North Las Vegas|NV, Pahrump|NV, Paradise|NV, Reno|NV, Sparks|NV, Spring Valley|NV, Sunrise Manor|NV, Whitney|NY, Albany|NY, Binghamton|NY, Brighton|NY, Buffalo|NY, Cheektowaga|NY, Coram|NY, Hempstead|NY, Irondequoit|NY, Levittown|NY, Long Beach|NY, Mount Vernon|NY, New Rochelle|NY, New York|NY, Niagara Falls|NY, Rochester|NY, Rome|NY, Schenectady|NY, Syracuse|NY, Tonawanda|NY, Troy|NY, Utica|NY, West Seneca|NY, White Plains|NY, Yonkers|Not in a census Place|OH, Akron|OH, Beavercreek|OH, Boardman|OH, Canton|OH, Cincinnati|OH, Cleveland|OH, Cleveland Heights|OH, Columbus|OH, Cuyahoga Falls|OH, Dayton|OH, Delaware|OH, Dublin|OH, Elyria|OH, Euclid|OH, Fairborn|OH, Fairfield|OH, Findlay|OH, Grove City|OH, Hamilton|OH, Huber Heights|OH, Kettering|OH, Lakewood|OH, Lancaster|OH, Lima|OH, Lorain|OH, Mansfield|OH, Marion|OH, Mentor|OH, Middletown|OH, Newark|OH, Parma|OH, Springfield|OH, Stow|OH, Strongsville|OH, Toledo|OH, Warren|OH, Youngstown|OK, Bartlesville|OK, Broken Arrow|OK, Edmond|OK, Enid|OK, Lawton|OK, Midwest City|OK, Moore|OK, Muskogee|OK, Norman|OK, Oklahoma City|OK, Stillwater|OK, Tulsa|OR, Albany|OR, Aloha|OR, Beaverton|OR, Bend|OR, Corvallis|OR, Eugene|OR, Grants Pass|OR, Gresham|OR, Hillsboro|OR, Lake Oswego|OR, Medford|OR, Portland|OR, Salem|OR, Springfield|OR, Tigard|PA, Allentown|PA, Altoona|PA, Bethlehem|PA, Erie|PA, Harrisburg|PA, Lancaster|PA, Levittown|PA, Philadelphia|PA, Pittsburgh|PA, Reading|PA, Scranton|PA, Wilkes-Barre|PA, York|RI, Cranston|RI, East Providence|RI, Pawtucket|RI, Providence|RI, Warwick|RI, Woonsocket|SC, Charleston|SC, Columbia|SC, Florence|SC, Goose Creek|SC, Greenville|SC, Hilton Head Island|SC, Mount Pleasant|SC, Myrtle Beach|SC, North Charleston|SC, North Myrtle Beach|SC, Rock Hill|SC, Spartanburg|SC, Summerville|SC, Sumter|SD, Rapid City|SD, Sioux Falls|TN, Bartlett|TN, Chattanooga|TN, Clarksville|TN, Cleveland|TN, Collierville|TN, Columbia|TN, Franklin|TN, Germantown|TN, Hendersonville|TN, Jackson|TN, Johnson City|TN, Kingsport|TN, Knoxville|TN, Memphis|TN, Murfreesboro|TN, Nashville-Davidson Metropolitan Government Balance|TN, Smyrna|TX, Abilene|TX, Allen|TX, Amarillo|TX, Arlington|TX, Atascocita|TX, Austin|TX, Baytown|TX, Beaumont|TX, Bedford|TX, Brownsville|TX, Bryan|TX, Burleson|TX, Carrollton|TX, Cedar Hill|TX, Cedar Park|TX, College Station|TX, Conroe|TX, Coppell|TX, Corpus Christi|TX, Dallas|TX, Denton|TX, Desoto|TX, Edinburg|TX, El Paso|TX, Euless|TX, Flower Mound|TX, Fort Worth|TX, Frisco|TX, Galveston|TX, Garland|TX, Georgetown|TX, Grand Prairie|TX, Grapevine|TX, Haltom City|TX, Harlingen|TX, Houston|TX, Hurst|TX, Irving|TX, Keller|TX, Killeen|TX, Laredo|TX, League City|TX, Lewisville|TX, Longview|TX, Lubbock|TX, Lufkin|TX, Mansfield|TX, Mcallen|TX, Mckinney|TX, Mesquite|TX, Midland|TX, Mission|TX, Missouri City|TX, New Braunfels|TX, North Richland Hills|TX, Odessa|TX, Pasadena|TX, Pearland|TX, Pflugerville|TX, Pharr|TX, Plano|TX, Port Arthur|TX, Richardson|TX, Round Rock|TX, Rowlett|TX, San Angelo|TX, San Antonio|TX, San Marcos|TX, Sherman|TX, Spring|TX, Sugar Land|TX, Temple|TX, Texarkana|TX, Texas City|TX, The Colony|TX, The Woodlands|TX, Tyler|TX, Victoria|TX, Waco|TX, Wichita Falls|TX, Wylie|UT, Layton|UT, Lehi|UT, Logan|UT, Millcreek|UT, Murray|UT, Ogden|UT, Orem|UT, Provo|UT, Salt Lake City|UT, Sandy|UT, South Jordan|UT, St George|UT, Taylorsville|UT, West Jordan|UT, West Valley City|VA, Alexandria|VA, Arlington|VA, Ashburn|VA, Blacksburg|VA, Centreville|VA, Charlottesville|VA, Chesapeake|VA, Dale City|VA, Danville|VA, Hampton|VA, Harrisonburg|VA, Lake Ridge|VA, Leesburg|VA, Lynchburg|VA, Mclean|VA, Mechanicsville|VA, Newport News|VA, Norfolk|VA, Petersburg|VA, Portsmouth|VA, Reston|VA, Richmond|VA, Roanoke|VA, Suffolk|VA, Tuckahoe|VA, Virginia Beach|VT, Burlington|WA, Auburn|WA, Bellevue|WA, Bellingham|WA, Bremerton|WA, Edmonds|WA, Everett|WA, Federal Way|WA, Kennewick|WA, Kent|WA, Kirkland|WA, Lacey|WA, Lakewood|WA, Longview|WA, Marysville|WA, Olympia|WA, Pasco|WA, Puyallup|WA, Redmond|WA, Renton|WA, Richland|WA, Sammamish|WA, Seattle|WA, Shoreline|WA, South Hill|WA, Spokane|WA, Spokane Valley|WA, Tacoma|WA, Vancouver|WA, Yakima|WI, Appleton|WI, Beloit|WI, Eau Claire|WI, Fond Du Lac|WI, Green Bay|WI, Greenfield|WI, Janesville|WI, Kenosha|WI, La Crosse|WI, Madison|WI, Manitowoc|WI, Menomonee Falls|WI, Milwaukee|WI, New Berlin|WI, Oshkosh|WI, Racine|WI, Sheboygan|WI, Waukesha|WI, Wausau|WI, Wauwatosa|WI, West Allis|WV, Charleston|WV, Huntington|WV, Parkersburg|WY, Casper|WY, Cheyenne" -in.clothes_dryer metadata_and_annual n/a string Electric|Gas|None|Propane -in.clothes_dryer_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage -in.clothes_washer metadata_and_annual n/a string EnergyStar|None|Standard -in.clothes_washer_presence metadata_and_annual n/a string None|Yes -in.clothes_washer_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage -in.cooking_range metadata_and_annual n/a string Electric Induction|Electric Resistance|Gas|None|Propane -in.cooking_range_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage -in.cooling_unavailable_days metadata_and_annual n/a string 1 day|1 month|1 week|2 weeks|3 days|3 months|Never|Year round -in.cooling_setpoint metadata_and_annual n/a string 60F|62F|65F|67F|68F|70F|72F|75F|76F|78F|80F -in.cooling_setpoint_has_offset metadata_and_annual n/a boolean No|Yes -in.cooling_setpoint_offset_magnitude metadata_and_annual n/a string 0F|2F|5F|9F -in.cooling_setpoint_offset_period metadata_and_annual n/a string Day Setup|Day Setup +1h|Day Setup +2h|Day Setup +3h|Day Setup +4h|Day Setup +5h|Day Setup -1h|Day Setup -2h|Day Setup -3h|Day Setup -4h|Day Setup -5h|Day Setup and Night Setback|Day Setup and Night Setback +1h|Day Setup and Night Setback +2h|Day Setup and Night Setback +3h|Day Setup and Night Setback +4h|Day Setup and Night Setback +5h|Day Setup and Night Setback -1h|Day Setup and Night Setback -2h|Day Setup and Night Setback -3h|Day Setup and Night Setback -4h|Day Setup and Night Setback -5h|Day and Night Setup|Day and Night Setup +1h|Day and Night Setup +2h|Day and Night Setup +3h|Day and Night Setup +4h|Day and Night Setup +5h|Day and Night Setup -1h|Day and Night Setup -2h|Day and Night Setup -3h|Day and Night Setup -4h|Day and Night Setup -5h|Night Setback|Night Setback +1h|Night Setback +2h|Night Setback +3h|Night Setback +4h|Night Setback +5h|Night Setback -1h|Night Setback -2h|Night Setback -3h|Night Setback -4h|Night Setback -5h|Night Setup|Night Setup +1h|Night Setup +2h|Night Setup +3h|Night Setup +4h|Night Setup +5h|Night Setup -1h|Night Setup -2h|Night Setup -3h|Night Setup -4h|Night Setup -5h|None -in.corridor metadata_and_annual n/a string Double-Loaded Interior|Not Applicable -in.county metadata_and_annual n/a string "AK, Aleutians East Borough|AK, Aleutians West Census Area|AK, Anchorage Municipality|AK, Bethel Census Area|AK, Bristol Bay Borough|AK, Denali Borough|AK, Dillingham Census Area|AK, Fairbanks North Star Borough|AK, Haines Borough|AK, Hoonah-Angoon Census Area|AK, Juneau City and Borough|AK, Kenai Peninsula Borough|AK, Ketchikan Gateway Borough|AK, Kodiak Island Borough|AK, Kusilvak Census Area|AK, Lake and Peninsula Borough|AK, Matanuska-Susitna Borough|AK, Nome Census Area|AK, North Slope Borough|AK, Northwest Arctic Borough|AK, Petersburg Borough|AK, Sitka City and Borough|AK, Skagway Municipality|AK, Southeast Fairbanks Census Area|AK, Valdez-Cordova Census Area|AK, Wrangell City and Borough|AK, Yakutat City and Borough|AK, Yukon-Koyukuk Census Area|G0100010|G0100030|G0100050|G0100070|G0100090|G0100110|G0100130|G0100150|G0100170|G0100190|G0100210|G0100230|G0100250|G0100270|G0100290|G0100310|G0100330|G0100350|G0100370|G0100390|G0100410|G0100430|G0100450|G0100470|G0100490|G0100510|G0100530|G0100550|G0100570|G0100590|G0100610|G0100630|G0100650|G0100670|G0100690|G0100710|G0100730|G0100750|G0100770|G0100790|G0100810|G0100830|G0100850|G0100870|G0100890|G0100910|G0100930|G0100950|G0100970|G0100990|G0101010|G0101030|G0101050|G0101070|G0101090|G0101110|G0101130|G0101150|G0101170|G0101190|G0101210|G0101230|G0101250|G0101270|G0101290|G0101310|G0101330|G0400010|G0400030|G0400050|G0400070|G0400090|G0400110|G0400120|G0400130|G0400150|G0400170|G0400190|G0400210|G0400230|G0400250|G0400270|G0500010|G0500030|G0500050|G0500070|G0500090|G0500110|G0500130|G0500150|G0500170|G0500190|G0500210|G0500230|G0500250|G0500270|G0500290|G0500310|G0500330|G0500350|G0500370|G0500390|G0500410|G0500430|G0500450|G0500470|G0500490|G0500510|G0500530|G0500550|G0500570|G0500590|G0500610|G0500630|G0500650|G0500670|G0500690|G0500710|G0500730|G0500750|G0500770|G0500790|G0500810|G0500830|G0500850|G0500870|G0500890|G0500910|G0500930|G0500950|G0500970|G0500990|G0501010|G0501030|G0501050|G0501070|G0501090|G0501110|G0501130|G0501150|G0501170|G0501190|G0501210|G0501230|G0501250|G0501270|G0501290|G0501310|G0501330|G0501350|G0501370|G0501390|G0501410|G0501430|G0501450|G0501470|G0501490|G0600010|G0600030|G0600050|G0600070|G0600090|G0600110|G0600130|G0600150|G0600170|G0600190|G0600210|G0600230|G0600250|G0600270|G0600290|G0600310|G0600330|G0600350|G0600370|G0600390|G0600410|G0600430|G0600450|G0600470|G0600490|G0600510|G0600530|G0600550|G0600570|G0600590|G0600610|G0600630|G0600650|G0600670|G0600690|G0600710|G0600730|G0600750|G0600770|G0600790|G0600810|G0600830|G0600850|G0600870|G0600890|G0600910|G0600930|G0600950|G0600970|G0600990|G0601010|G0601030|G0601050|G0601070|G0601090|G0601110|G0601130|G0601150|G0800010|G0800030|G0800050|G0800070|G0800090|G0800110|G0800130|G0800140|G0800150|G0800170|G0800190|G0800210|G0800230|G0800250|G0800270|G0800290|G0800310|G0800330|G0800350|G0800370|G0800390|G0800410|G0800430|G0800450|G0800470|G0800490|G0800510|G0800530|G0800550|G0800570|G0800590|G0800610|G0800630|G0800650|G0800670|G0800690|G0800710|G0800730|G0800750|G0800770|G0800790|G0800810|G0800830|G0800850|G0800870|G0800890|G0800910|G0800930|G0800950|G0800970|G0800990|G0801010|G0801030|G0801050|G0801070|G0801090|G0801110|G0801130|G0801150|G0801170|G0801190|G0801210|G0801230|G0801250|G0900010|G0900030|G0900050|G0900070|G0900090|G0900110|G0900130|G0900150|G1000010|G1000030|G1000050|G1100010|G1200010|G1200030|G1200050|G1200070|G1200090|G1200110|G1200130|G1200150|G1200170|G1200190|G1200210|G1200230|G1200270|G1200290|G1200310|G1200330|G1200350|G1200370|G1200390|G1200410|G1200430|G1200450|G1200470|G1200490|G1200510|G1200530|G1200550|G1200570|G1200590|G1200610|G1200630|G1200650|G1200670|G1200690|G1200710|G1200730|G1200750|G1200770|G1200790|G1200810|G1200830|G1200850|G1200860|G1200870|G1200890|G1200910|G1200930|G1200950|G1200970|G1200990|G1201010|G1201030|G1201050|G1201070|G1201090|G1201110|G1201130|G1201150|G1201170|G1201190|G1201210|G1201230|G1201250|G1201270|G1201290|G1201310|G1201330|G1300010|G1300030|G1300050|G1300070|G1300090|G1300110|G1300130|G1300150|G1300170|G1300190|G1300210|G1300230|G1300250|G1300270|G1300290|G1300310|G1300330|G1300350|G1300370|G1300390|G1300430|G1300450|G1300470|G1300490|G1300510|G1300530|G1300550|G1300570|G1300590|G1300610|G1300630|G1300650|G1300670|G1300690|G1300710|G1300730|G1300750|G1300770|G1300790|G1300810|G1300830|G1300850|G1300870|G1300890|G1300910|G1300930|G1300950|G1300970|G1300990|G1301010|G1301030|G1301050|G1301070|G1301090|G1301110|G1301130|G1301150|G1301170|G1301190|G1301210|G1301230|G1301250|G1301270|G1301290|G1301310|G1301330|G1301350|G1301370|G1301390|G1301410|G1301430|G1301450|G1301470|G1301490|G1301510|G1301530|G1301550|G1301570|G1301590|G1301610|G1301630|G1301650|G1301670|G1301690|G1301710|G1301730|G1301750|G1301770|G1301790|G1301810|G1301830|G1301850|G1301870|G1301890|G1301910|G1301930|G1301950|G1301970|G1301990|G1302010|G1302050|G1302070|G1302090|G1302110|G1302130|G1302150|G1302170|G1302190|G1302210|G1302230|G1302250|G1302270|G1302290|G1302310|G1302330|G1302350|G1302370|G1302390|G1302410|G1302430|G1302450|G1302470|G1302490|G1302510|G1302530|G1302550|G1302570|G1302590|G1302610|G1302630|G1302650|G1302670|G1302690|G1302710|G1302730|G1302750|G1302770|G1302790|G1302810|G1302830|G1302850|G1302870|G1302890|G1302910|G1302930|G1302950|G1302970|G1302990|G1303010|G1303030|G1303050|G1303070|G1303090|G1303110|G1303130|G1303150|G1303170|G1303190|G1303210|G1600010|G1600030|G1600050|G1600070|G1600090|G1600110|G1600130|G1600150|G1600170|G1600190|G1600210|G1600230|G1600250|G1600270|G1600290|G1600310|G1600330|G1600350|G1600370|G1600390|G1600410|G1600430|G1600450|G1600470|G1600490|G1600510|G1600530|G1600550|G1600570|G1600590|G1600610|G1600630|G1600650|G1600670|G1600690|G1600710|G1600730|G1600750|G1600770|G1600790|G1600810|G1600830|G1600850|G1600870|G1700010|G1700030|G1700050|G1700070|G1700090|G1700110|G1700130|G1700150|G1700170|G1700190|G1700210|G1700230|G1700250|G1700270|G1700290|G1700310|G1700330|G1700350|G1700370|G1700390|G1700410|G1700430|G1700450|G1700470|G1700490|G1700510|G1700530|G1700550|G1700570|G1700590|G1700610|G1700630|G1700650|G1700670|G1700690|G1700710|G1700730|G1700750|G1700770|G1700790|G1700810|G1700830|G1700850|G1700870|G1700890|G1700910|G1700930|G1700950|G1700970|G1700990|G1701010|G1701030|G1701050|G1701070|G1701090|G1701110|G1701130|G1701150|G1701170|G1701190|G1701210|G1701230|G1701250|G1701270|G1701290|G1701310|G1701330|G1701350|G1701370|G1701390|G1701410|G1701430|G1701450|G1701470|G1701490|G1701510|G1701530|G1701550|G1701570|G1701590|G1701610|G1701630|G1701650|G1701670|G1701690|G1701710|G1701730|G1701750|G1701770|G1701790|G1701810|G1701830|G1701850|G1701870|G1701890|G1701910|G1701930|G1701950|G1701970|G1701990|G1702010|G1702030|G1800010|G1800030|G1800050|G1800070|G1800090|G1800110|G1800130|G1800150|G1800170|G1800190|G1800210|G1800230|G1800250|G1800270|G1800290|G1800310|G1800330|G1800350|G1800370|G1800390|G1800410|G1800430|G1800450|G1800470|G1800490|G1800510|G1800530|G1800550|G1800570|G1800590|G1800610|G1800630|G1800650|G1800670|G1800690|G1800710|G1800730|G1800750|G1800770|G1800790|G1800810|G1800830|G1800850|G1800870|G1800890|G1800910|G1800930|G1800950|G1800970|G1800990|G1801010|G1801030|G1801050|G1801070|G1801090|G1801110|G1801130|G1801150|G1801170|G1801190|G1801210|G1801230|G1801250|G1801270|G1801290|G1801310|G1801330|G1801350|G1801370|G1801390|G1801410|G1801430|G1801450|G1801470|G1801490|G1801510|G1801530|G1801550|G1801570|G1801590|G1801610|G1801630|G1801650|G1801670|G1801690|G1801710|G1801730|G1801750|G1801770|G1801790|G1801810|G1801830|G1900010|G1900030|G1900050|G1900070|G1900090|G1900110|G1900130|G1900150|G1900170|G1900190|G1900210|G1900230|G1900250|G1900270|G1900290|G1900310|G1900330|G1900350|G1900370|G1900390|G1900410|G1900430|G1900450|G1900470|G1900490|G1900510|G1900530|G1900550|G1900570|G1900590|G1900610|G1900630|G1900650|G1900670|G1900690|G1900710|G1900730|G1900750|G1900770|G1900790|G1900810|G1900830|G1900850|G1900870|G1900890|G1900910|G1900930|G1900950|G1900970|G1900990|G1901010|G1901030|G1901050|G1901070|G1901090|G1901110|G1901130|G1901150|G1901170|G1901190|G1901210|G1901230|G1901250|G1901270|G1901290|G1901310|G1901330|G1901350|G1901370|G1901390|G1901410|G1901430|G1901450|G1901470|G1901490|G1901510|G1901530|G1901550|G1901570|G1901590|G1901610|G1901630|G1901650|G1901670|G1901690|G1901710|G1901730|G1901750|G1901770|G1901790|G1901810|G1901830|G1901850|G1901870|G1901890|G1901910|G1901930|G1901950|G1901970|G2000010|G2000030|G2000050|G2000070|G2000090|G2000110|G2000130|G2000150|G2000170|G2000190|G2000210|G2000230|G2000250|G2000270|G2000290|G2000310|G2000330|G2000350|G2000370|G2000390|G2000410|G2000430|G2000450|G2000470|G2000490|G2000510|G2000530|G2000550|G2000570|G2000590|G2000610|G2000630|G2000650|G2000670|G2000690|G2000710|G2000730|G2000750|G2000770|G2000790|G2000810|G2000830|G2000850|G2000870|G2000890|G2000910|G2000930|G2000950|G2000970|G2000990|G2001010|G2001030|G2001050|G2001070|G2001090|G2001110|G2001130|G2001150|G2001170|G2001190|G2001210|G2001230|G2001250|G2001270|G2001290|G2001310|G2001330|G2001350|G2001370|G2001390|G2001410|G2001430|G2001450|G2001470|G2001490|G2001510|G2001530|G2001550|G2001570|G2001590|G2001610|G2001630|G2001650|G2001670|G2001690|G2001710|G2001730|G2001750|G2001770|G2001790|G2001810|G2001830|G2001850|G2001870|G2001890|G2001910|G2001930|G2001950|G2001970|G2001990|G2002010|G2002030|G2002050|G2002070|G2002090|G2100010|G2100030|G2100050|G2100070|G2100090|G2100110|G2100130|G2100150|G2100170|G2100190|G2100210|G2100230|G2100250|G2100270|G2100290|G2100310|G2100330|G2100350|G2100370|G2100390|G2100410|G2100430|G2100450|G2100470|G2100490|G2100510|G2100530|G2100550|G2100570|G2100590|G2100610|G2100630|G2100650|G2100670|G2100690|G2100710|G2100730|G2100750|G2100770|G2100790|G2100810|G2100830|G2100850|G2100870|G2100890|G2100910|G2100930|G2100950|G2100970|G2100990|G2101010|G2101030|G2101050|G2101070|G2101090|G2101110|G2101130|G2101150|G2101170|G2101190|G2101210|G2101230|G2101250|G2101270|G2101290|G2101310|G2101330|G2101350|G2101370|G2101390|G2101410|G2101430|G2101450|G2101470|G2101490|G2101510|G2101530|G2101550|G2101570|G2101590|G2101610|G2101630|G2101650|G2101670|G2101690|G2101710|G2101730|G2101750|G2101770|G2101790|G2101810|G2101830|G2101850|G2101870|G2101890|G2101910|G2101930|G2101950|G2101970|G2101990|G2102010|G2102030|G2102050|G2102070|G2102090|G2102110|G2102130|G2102150|G2102170|G2102190|G2102210|G2102230|G2102250|G2102270|G2102290|G2102310|G2102330|G2102350|G2102370|G2102390|G2200010|G2200030|G2200050|G2200070|G2200090|G2200110|G2200130|G2200150|G2200170|G2200190|G2200210|G2200230|G2200250|G2200270|G2200290|G2200310|G2200330|G2200350|G2200370|G2200390|G2200410|G2200430|G2200450|G2200470|G2200490|G2200510|G2200530|G2200550|G2200570|G2200590|G2200610|G2200630|G2200650|G2200670|G2200690|G2200710|G2200730|G2200750|G2200770|G2200790|G2200810|G2200830|G2200850|G2200870|G2200890|G2200910|G2200930|G2200950|G2200970|G2200990|G2201010|G2201030|G2201050|G2201070|G2201090|G2201110|G2201130|G2201150|G2201170|G2201190|G2201210|G2201230|G2201250|G2201270|G2300010|G2300030|G2300050|G2300070|G2300090|G2300110|G2300130|G2300150|G2300170|G2300190|G2300210|G2300230|G2300250|G2300270|G2300290|G2300310|G2400010|G2400030|G2400050|G2400090|G2400110|G2400130|G2400150|G2400170|G2400190|G2400210|G2400230|G2400250|G2400270|G2400290|G2400310|G2400330|G2400350|G2400370|G2400390|G2400410|G2400430|G2400450|G2400470|G2405100|G2500010|G2500030|G2500050|G2500070|G2500090|G2500110|G2500130|G2500150|G2500170|G2500190|G2500210|G2500230|G2500250|G2500270|G2600010|G2600030|G2600050|G2600070|G2600090|G2600110|G2600130|G2600150|G2600170|G2600190|G2600210|G2600230|G2600250|G2600270|G2600290|G2600310|G2600330|G2600350|G2600370|G2600390|G2600410|G2600430|G2600450|G2600470|G2600490|G2600510|G2600530|G2600550|G2600570|G2600590|G2600610|G2600630|G2600650|G2600670|G2600690|G2600710|G2600730|G2600750|G2600770|G2600790|G2600810|G2600830|G2600850|G2600870|G2600890|G2600910|G2600930|G2600950|G2600970|G2600990|G2601010|G2601030|G2601050|G2601070|G2601090|G2601110|G2601130|G2601150|G2601170|G2601190|G2601210|G2601230|G2601250|G2601270|G2601290|G2601310|G2601330|G2601350|G2601370|G2601390|G2601410|G2601430|G2601450|G2601470|G2601490|G2601510|G2601530|G2601550|G2601570|G2601590|G2601610|G2601630|G2601650|G2700010|G2700030|G2700050|G2700070|G2700090|G2700110|G2700130|G2700150|G2700170|G2700190|G2700210|G2700230|G2700250|G2700270|G2700290|G2700310|G2700330|G2700350|G2700370|G2700390|G2700410|G2700430|G2700450|G2700470|G2700490|G2700510|G2700530|G2700550|G2700570|G2700590|G2700610|G2700630|G2700650|G2700670|G2700690|G2700710|G2700730|G2700750|G2700770|G2700790|G2700810|G2700830|G2700850|G2700870|G2700890|G2700910|G2700930|G2700950|G2700970|G2700990|G2701010|G2701030|G2701050|G2701070|G2701090|G2701110|G2701130|G2701150|G2701170|G2701190|G2701210|G2701230|G2701250|G2701270|G2701290|G2701310|G2701330|G2701350|G2701370|G2701390|G2701410|G2701430|G2701450|G2701470|G2701490|G2701510|G2701530|G2701550|G2701570|G2701590|G2701610|G2701630|G2701650|G2701670|G2701690|G2701710|G2701730|G2800010|G2800030|G2800050|G2800070|G2800090|G2800110|G2800130|G2800150|G2800170|G2800190|G2800210|G2800230|G2800250|G2800270|G2800290|G2800310|G2800330|G2800350|G2800370|G2800390|G2800410|G2800430|G2800450|G2800470|G2800490|G2800510|G2800530|G2800550|G2800570|G2800590|G2800610|G2800630|G2800650|G2800670|G2800690|G2800710|G2800730|G2800750|G2800770|G2800790|G2800810|G2800830|G2800850|G2800870|G2800890|G2800910|G2800930|G2800950|G2800970|G2800990|G2801010|G2801030|G2801050|G2801070|G2801090|G2801110|G2801130|G2801150|G2801170|G2801190|G2801210|G2801230|G2801250|G2801270|G2801290|G2801310|G2801330|G2801350|G2801370|G2801390|G2801410|G2801430|G2801450|G2801470|G2801490|G2801510|G2801530|G2801550|G2801570|G2801590|G2801610|G2801630|G2900010|G2900030|G2900050|G2900070|G2900090|G2900110|G2900130|G2900150|G2900170|G2900190|G2900210|G2900230|G2900250|G2900270|G2900290|G2900310|G2900330|G2900350|G2900370|G2900390|G2900410|G2900430|G2900450|G2900470|G2900490|G2900510|G2900530|G2900550|G2900570|G2900590|G2900610|G2900630|G2900650|G2900670|G2900690|G2900710|G2900730|G2900750|G2900770|G2900790|G2900810|G2900830|G2900850|G2900870|G2900890|G2900910|G2900930|G2900950|G2900970|G2900990|G2901010|G2901030|G2901050|G2901070|G2901090|G2901110|G2901130|G2901150|G2901170|G2901190|G2901210|G2901230|G2901250|G2901270|G2901290|G2901310|G2901330|G2901350|G2901370|G2901390|G2901410|G2901430|G2901450|G2901470|G2901490|G2901510|G2901530|G2901550|G2901570|G2901590|G2901610|G2901630|G2901650|G2901670|G2901690|G2901710|G2901730|G2901750|G2901770|G2901790|G2901810|G2901830|G2901850|G2901860|G2901870|G2901890|G2901950|G2901970|G2901990|G2902010|G2902030|G2902050|G2902070|G2902090|G2902110|G2902130|G2902150|G2902170|G2902190|G2902210|G2902230|G2902250|G2902270|G2902290|G2905100|G3000010|G3000030|G3000050|G3000070|G3000090|G3000110|G3000130|G3000150|G3000170|G3000190|G3000210|G3000230|G3000250|G3000270|G3000290|G3000310|G3000330|G3000350|G3000370|G3000390|G3000410|G3000430|G3000450|G3000470|G3000490|G3000510|G3000530|G3000550|G3000570|G3000590|G3000610|G3000630|G3000650|G3000670|G3000690|G3000710|G3000730|G3000750|G3000770|G3000790|G3000810|G3000830|G3000850|G3000870|G3000890|G3000910|G3000930|G3000950|G3000970|G3000990|G3001010|G3001030|G3001050|G3001070|G3001090|G3001110|G3100010|G3100030|G3100050|G3100070|G3100090|G3100110|G3100130|G3100150|G3100170|G3100190|G3100210|G3100230|G3100250|G3100270|G3100290|G3100310|G3100330|G3100350|G3100370|G3100390|G3100410|G3100430|G3100450|G3100470|G3100490|G3100510|G3100530|G3100550|G3100570|G3100590|G3100610|G3100630|G3100650|G3100670|G3100690|G3100710|G3100730|G3100750|G3100770|G3100790|G3100810|G3100830|G3100850|G3100870|G3100890|G3100910|G3100930|G3100950|G3100970|G3100990|G3101010|G3101030|G3101050|G3101070|G3101090|G3101110|G3101130|G3101150|G3101170|G3101190|G3101210|G3101230|G3101250|G3101270|G3101290|G3101310|G3101330|G3101350|G3101370|G3101390|G3101410|G3101430|G3101450|G3101470|G3101490|G3101510|G3101530|G3101550|G3101570|G3101590|G3101610|G3101630|G3101650|G3101670|G3101690|G3101710|G3101730|G3101750|G3101770|G3101790|G3101810|G3101830|G3101850|G3200010|G3200030|G3200050|G3200070|G3200090|G3200110|G3200130|G3200150|G3200170|G3200190|G3200210|G3200230|G3200270|G3200290|G3200310|G3200330|G3205100|G3300010|G3300030|G3300050|G3300070|G3300090|G3300110|G3300130|G3300150|G3300170|G3300190|G3400010|G3400030|G3400050|G3400070|G3400090|G3400110|G3400130|G3400150|G3400170|G3400190|G3400210|G3400230|G3400250|G3400270|G3400290|G3400310|G3400330|G3400350|G3400370|G3400390|G3400410|G3500010|G3500030|G3500050|G3500060|G3500070|G3500090|G3500110|G3500130|G3500150|G3500170|G3500190|G3500210|G3500230|G3500250|G3500270|G3500280|G3500290|G3500310|G3500330|G3500350|G3500370|G3500390|G3500410|G3500430|G3500450|G3500470|G3500490|G3500510|G3500530|G3500550|G3500570|G3500590|G3500610|G3600010|G3600030|G3600050|G3600070|G3600090|G3600110|G3600130|G3600150|G3600170|G3600190|G3600210|G3600230|G3600250|G3600270|G3600290|G3600310|G3600330|G3600350|G3600370|G3600390|G3600410|G3600430|G3600450|G3600470|G3600490|G3600510|G3600530|G3600550|G3600570|G3600590|G3600610|G3600630|G3600650|G3600670|G3600690|G3600710|G3600730|G3600750|G3600770|G3600790|G3600810|G3600830|G3600850|G3600870|G3600890|G3600910|G3600930|G3600950|G3600970|G3600990|G3601010|G3601030|G3601050|G3601070|G3601090|G3601110|G3601130|G3601150|G3601170|G3601190|G3601210|G3601230|G3700010|G3700030|G3700050|G3700070|G3700090|G3700110|G3700130|G3700150|G3700170|G3700190|G3700210|G3700230|G3700250|G3700270|G3700290|G3700310|G3700330|G3700350|G3700370|G3700390|G3700410|G3700430|G3700450|G3700470|G3700490|G3700510|G3700530|G3700550|G3700570|G3700590|G3700610|G3700630|G3700650|G3700670|G3700690|G3700710|G3700730|G3700750|G3700770|G3700790|G3700810|G3700830|G3700850|G3700870|G3700890|G3700910|G3700930|G3700950|G3700970|G3700990|G3701010|G3701030|G3701050|G3701070|G3701090|G3701110|G3701130|G3701150|G3701170|G3701190|G3701210|G3701230|G3701250|G3701270|G3701290|G3701310|G3701330|G3701350|G3701370|G3701390|G3701410|G3701430|G3701450|G3701470|G3701490|G3701510|G3701530|G3701550|G3701570|G3701590|G3701610|G3701630|G3701650|G3701670|G3701690|G3701710|G3701730|G3701750|G3701770|G3701790|G3701810|G3701830|G3701850|G3701870|G3701890|G3701910|G3701930|G3701950|G3701970|G3701990|G3800010|G3800030|G3800050|G3800070|G3800090|G3800110|G3800130|G3800150|G3800170|G3800190|G3800210|G3800230|G3800250|G3800270|G3800290|G3800310|G3800330|G3800350|G3800370|G3800390|G3800410|G3800430|G3800450|G3800470|G3800490|G3800510|G3800530|G3800550|G3800570|G3800590|G3800610|G3800630|G3800650|G3800670|G3800690|G3800710|G3800730|G3800750|G3800770|G3800790|G3800810|G3800830|G3800850|G3800870|G3800890|G3800910|G3800930|G3800950|G3800970|G3800990|G3801010|G3801030|G3801050|G3900010|G3900030|G3900050|G3900070|G3900090|G3900110|G3900130|G3900150|G3900170|G3900190|G3900210|G3900230|G3900250|G3900270|G3900290|G3900310|G3900330|G3900350|G3900370|G3900390|G3900410|G3900430|G3900450|G3900470|G3900490|G3900510|G3900530|G3900550|G3900570|G3900590|G3900610|G3900630|G3900650|G3900670|G3900690|G3900710|G3900730|G3900750|G3900770|G3900790|G3900810|G3900830|G3900850|G3900870|G3900890|G3900910|G3900930|G3900950|G3900970|G3900990|G3901010|G3901030|G3901050|G3901070|G3901090|G3901110|G3901130|G3901150|G3901170|G3901190|G3901210|G3901230|G3901250|G3901270|G3901290|G3901310|G3901330|G3901350|G3901370|G3901390|G3901410|G3901430|G3901450|G3901470|G3901490|G3901510|G3901530|G3901550|G3901570|G3901590|G3901610|G3901630|G3901650|G3901670|G3901690|G3901710|G3901730|G3901750|G4000010|G4000030|G4000050|G4000070|G4000090|G4000110|G4000130|G4000150|G4000170|G4000190|G4000210|G4000230|G4000250|G4000270|G4000290|G4000310|G4000330|G4000350|G4000370|G4000390|G4000410|G4000430|G4000450|G4000470|G4000490|G4000510|G4000530|G4000550|G4000570|G4000590|G4000610|G4000630|G4000650|G4000670|G4000690|G4000710|G4000730|G4000750|G4000770|G4000790|G4000810|G4000830|G4000850|G4000870|G4000890|G4000910|G4000930|G4000950|G4000970|G4000990|G4001010|G4001030|G4001050|G4001070|G4001090|G4001110|G4001130|G4001150|G4001170|G4001190|G4001210|G4001230|G4001250|G4001270|G4001290|G4001310|G4001330|G4001350|G4001370|G4001390|G4001410|G4001430|G4001450|G4001470|G4001490|G4001510|G4001530|G4100010|G4100030|G4100050|G4100070|G4100090|G4100110|G4100130|G4100150|G4100170|G4100190|G4100210|G4100230|G4100250|G4100270|G4100290|G4100310|G4100330|G4100350|G4100370|G4100390|G4100410|G4100430|G4100450|G4100470|G4100490|G4100510|G4100530|G4100550|G4100570|G4100590|G4100610|G4100630|G4100650|G4100670|G4100690|G4100710|G4200010|G4200030|G4200050|G4200070|G4200090|G4200110|G4200130|G4200150|G4200170|G4200190|G4200210|G4200230|G4200250|G4200270|G4200290|G4200310|G4200330|G4200350|G4200370|G4200390|G4200410|G4200430|G4200450|G4200470|G4200490|G4200510|G4200530|G4200550|G4200570|G4200590|G4200610|G4200630|G4200650|G4200670|G4200690|G4200710|G4200730|G4200750|G4200770|G4200790|G4200810|G4200830|G4200850|G4200870|G4200890|G4200910|G4200930|G4200950|G4200970|G4200990|G4201010|G4201030|G4201050|G4201070|G4201090|G4201110|G4201130|G4201150|G4201170|G4201190|G4201210|G4201230|G4201250|G4201270|G4201290|G4201310|G4201330|G4400010|G4400030|G4400050|G4400070|G4400090|G4500010|G4500030|G4500050|G4500070|G4500090|G4500110|G4500130|G4500150|G4500170|G4500190|G4500210|G4500230|G4500250|G4500270|G4500290|G4500310|G4500330|G4500350|G4500370|G4500390|G4500410|G4500430|G4500450|G4500470|G4500490|G4500510|G4500530|G4500550|G4500570|G4500590|G4500610|G4500630|G4500650|G4500670|G4500690|G4500710|G4500730|G4500750|G4500770|G4500790|G4500810|G4500830|G4500850|G4500870|G4500890|G4500910|G4600030|G4600050|G4600070|G4600090|G4600110|G4600130|G4600150|G4600170|G4600190|G4600210|G4600230|G4600250|G4600270|G4600290|G4600310|G4600330|G4600350|G4600370|G4600390|G4600410|G4600430|G4600450|G4600470|G4600490|G4600510|G4600530|G4600550|G4600570|G4600590|G4600610|G4600630|G4600650|G4600670|G4600690|G4600710|G4600730|G4600750|G4600770|G4600790|G4600810|G4600830|G4600850|G4600870|G4600890|G4600910|G4600930|G4600950|G4600970|G4600990|G4601010|G4601020|G4601030|G4601050|G4601070|G4601090|G4601110|G4601150|G4601170|G4601190|G4601210|G4601230|G4601250|G4601270|G4601290|G4601350|G4601370|G4700010|G4700030|G4700050|G4700070|G4700090|G4700110|G4700130|G4700150|G4700170|G4700190|G4700210|G4700230|G4700250|G4700270|G4700290|G4700310|G4700330|G4700350|G4700370|G4700390|G4700410|G4700430|G4700450|G4700470|G4700490|G4700510|G4700530|G4700550|G4700570|G4700590|G4700610|G4700630|G4700650|G4700670|G4700690|G4700710|G4700730|G4700750|G4700770|G4700790|G4700810|G4700830|G4700850|G4700870|G4700890|G4700910|G4700930|G4700950|G4700970|G4700990|G4701010|G4701030|G4701050|G4701070|G4701090|G4701110|G4701130|G4701150|G4701170|G4701190|G4701210|G4701230|G4701250|G4701270|G4701290|G4701310|G4701330|G4701350|G4701370|G4701390|G4701410|G4701430|G4701450|G4701470|G4701490|G4701510|G4701530|G4701550|G4701570|G4701590|G4701610|G4701630|G4701650|G4701670|G4701690|G4701710|G4701730|G4701750|G4701770|G4701790|G4701810|G4701830|G4701850|G4701870|G4701890|G4800010|G4800030|G4800050|G4800070|G4800090|G4800110|G4800130|G4800150|G4800170|G4800190|G4800210|G4800230|G4800250|G4800270|G4800290|G4800310|G4800330|G4800350|G4800370|G4800390|G4800410|G4800430|G4800450|G4800470|G4800490|G4800510|G4800530|G4800550|G4800570|G4800590|G4800610|G4800630|G4800650|G4800670|G4800690|G4800710|G4800730|G4800750|G4800770|G4800790|G4800810|G4800830|G4800850|G4800870|G4800890|G4800910|G4800930|G4800950|G4800970|G4800990|G4801010|G4801030|G4801050|G4801070|G4801090|G4801110|G4801130|G4801150|G4801170|G4801190|G4801210|G4801230|G4801250|G4801270|G4801290|G4801310|G4801330|G4801350|G4801370|G4801390|G4801410|G4801430|G4801450|G4801470|G4801490|G4801510|G4801530|G4801550|G4801570|G4801590|G4801610|G4801630|G4801650|G4801670|G4801690|G4801710|G4801730|G4801750|G4801770|G4801790|G4801810|G4801830|G4801850|G4801870|G4801890|G4801910|G4801930|G4801950|G4801970|G4801990|G4802010|G4802030|G4802050|G4802070|G4802090|G4802110|G4802130|G4802150|G4802170|G4802190|G4802210|G4802230|G4802250|G4802270|G4802290|G4802310|G4802330|G4802350|G4802370|G4802390|G4802410|G4802430|G4802450|G4802470|G4802490|G4802510|G4802530|G4802550|G4802570|G4802590|G4802610|G4802630|G4802650|G4802670|G4802690|G4802710|G4802730|G4802750|G4802770|G4802790|G4802810|G4802830|G4802850|G4802870|G4802890|G4802910|G4802930|G4802950|G4802970|G4802990|G4803030|G4803050|G4803070|G4803090|G4803110|G4803130|G4803150|G4803170|G4803190|G4803210|G4803230|G4803250|G4803270|G4803290|G4803310|G4803330|G4803350|G4803370|G4803390|G4803410|G4803430|G4803450|G4803470|G4803490|G4803510|G4803530|G4803550|G4803570|G4803590|G4803610|G4803630|G4803650|G4803670|G4803690|G4803710|G4803730|G4803750|G4803770|G4803790|G4803810|G4803830|G4803850|G4803870|G4803890|G4803910|G4803930|G4803950|G4803970|G4803990|G4804010|G4804030|G4804050|G4804070|G4804090|G4804110|G4804130|G4804150|G4804170|G4804190|G4804210|G4804230|G4804250|G4804270|G4804290|G4804310|G4804330|G4804350|G4804370|G4804390|G4804410|G4804430|G4804450|G4804470|G4804490|G4804510|G4804530|G4804550|G4804570|G4804590|G4804610|G4804630|G4804650|G4804670|G4804690|G4804710|G4804730|G4804750|G4804770|G4804790|G4804810|G4804830|G4804850|G4804870|G4804890|G4804910|G4804930|G4804950|G4804970|G4804990|G4805010|G4805030|G4805050|G4805070|G4900010|G4900030|G4900050|G4900070|G4900090|G4900110|G4900130|G4900150|G4900170|G4900190|G4900210|G4900230|G4900250|G4900270|G4900290|G4900310|G4900330|G4900350|G4900370|G4900390|G4900410|G4900430|G4900450|G4900470|G4900490|G4900510|G4900530|G4900550|G4900570|G5000010|G5000030|G5000050|G5000070|G5000090|G5000110|G5000130|G5000150|G5000170|G5000190|G5000210|G5000230|G5000250|G5000270|G5100010|G5100030|G5100050|G5100070|G5100090|G5100110|G5100130|G5100150|G5100170|G5100190|G5100210|G5100230|G5100250|G5100270|G5100290|G5100310|G5100330|G5100350|G5100360|G5100370|G5100410|G5100430|G5100450|G5100470|G5100490|G5100510|G5100530|G5100570|G5100590|G5100610|G5100630|G5100650|G5100670|G5100690|G5100710|G5100730|G5100750|G5100770|G5100790|G5100810|G5100830|G5100850|G5100870|G5100890|G5100910|G5100930|G5100950|G5100970|G5100990|G5101010|G5101030|G5101050|G5101070|G5101090|G5101110|G5101130|G5101150|G5101170|G5101190|G5101210|G5101250|G5101270|G5101310|G5101330|G5101350|G5101370|G5101390|G5101410|G5101430|G5101450|G5101470|G5101490|G5101530|G5101550|G5101570|G5101590|G5101610|G5101630|G5101650|G5101670|G5101690|G5101710|G5101730|G5101750|G5101770|G5101790|G5101810|G5101830|G5101850|G5101870|G5101910|G5101930|G5101950|G5101970|G5101990|G5105100|G5105200|G5105300|G5105400|G5105500|G5105700|G5105800|G5105900|G5105950|G5106000|G5106100|G5106200|G5106300|G5106400|G5106500|G5106600|G5106700|G5106780|G5106800|G5106830|G5106850|G5106900|G5107000|G5107100|G5107200|G5107300|G5107350|G5107400|G5107500|G5107600|G5107700|G5107750|G5107900|G5108000|G5108100|G5108200|G5108300|G5108400|G5300010|G5300030|G5300050|G5300070|G5300090|G5300110|G5300130|G5300150|G5300170|G5300190|G5300210|G5300230|G5300250|G5300270|G5300290|G5300310|G5300330|G5300350|G5300370|G5300390|G5300410|G5300430|G5300450|G5300470|G5300490|G5300510|G5300530|G5300550|G5300570|G5300590|G5300610|G5300630|G5300650|G5300670|G5300690|G5300710|G5300730|G5300750|G5300770|G5400010|G5400030|G5400050|G5400070|G5400090|G5400110|G5400130|G5400150|G5400170|G5400190|G5400210|G5400230|G5400250|G5400270|G5400290|G5400310|G5400330|G5400350|G5400370|G5400390|G5400410|G5400430|G5400450|G5400470|G5400490|G5400510|G5400530|G5400550|G5400570|G5400590|G5400610|G5400630|G5400650|G5400670|G5400690|G5400710|G5400730|G5400750|G5400770|G5400790|G5400810|G5400830|G5400850|G5400870|G5400890|G5400910|G5400930|G5400950|G5400970|G5400990|G5401010|G5401030|G5401050|G5401070|G5401090|G5500010|G5500030|G5500050|G5500070|G5500090|G5500110|G5500130|G5500150|G5500170|G5500190|G5500210|G5500230|G5500250|G5500270|G5500290|G5500310|G5500330|G5500350|G5500370|G5500390|G5500410|G5500430|G5500450|G5500470|G5500490|G5500510|G5500530|G5500550|G5500570|G5500590|G5500610|G5500630|G5500650|G5500670|G5500690|G5500710|G5500730|G5500750|G5500770|G5500780|G5500790|G5500810|G5500830|G5500850|G5500870|G5500890|G5500910|G5500930|G5500950|G5500970|G5500990|G5501010|G5501030|G5501050|G5501070|G5501090|G5501110|G5501130|G5501150|G5501170|G5501190|G5501210|G5501230|G5501250|G5501270|G5501290|G5501310|G5501330|G5501350|G5501370|G5501390|G5501410|G5600010|G5600030|G5600050|G5600070|G5600090|G5600110|G5600130|G5600150|G5600170|G5600190|G5600210|G5600230|G5600250|G5600270|G5600290|G5600310|G5600330|G5600350|G5600370|G5600390|G5600410|G5600430|G5600450|HI, Hawaii County|HI, Honolulu County|HI, Kauai County|HI, Maui County" -in.county_and_puma metadata_and_annual n/a string "G0100010, G01002100|G0100030, G01002600|G0100050, G01002400|G0100070, G01001700|G0100090, G01000800|G0100110, G01002400|G0100130, G01002300|G0100150, G01001100|G0100170, G01001800|G0100190, G01001000|G0100210, G01001800|G0100230, G01002200|G0100250, G01002200|G0100270, G01001000|G0100290, G01001000|G0100310, G01002300|G0100330, G01000100|G0100350, G01002200|G0100370, G01001800|G0100390, G01002300|G0100410, G01002300|G0100430, G01000700|G0100450, G01002500|G0100470, G01001700|G0100490, G01000400|G0100510, G01002100|G0100530, G01002200|G0100550, G01000900|G0100570, G01001400|G0100590, G01000100|G0100610, G01002500|G0100630, G01001700|G0100650, G01001700|G0100670, G01002500|G0100690, G01002500|G0100710, G01000400|G0100730, G01001301|G0100730, G01001302|G0100730, G01001303|G0100730, G01001304|G0100730, G01001305|G0100750, G01001400|G0100770, G01000100|G0100790, G01000600|G0100810, G01001900|G0100830, G01000200|G0100850, G01002100|G0100870, G01002400|G0100890, G01000200|G0100890, G01000301|G0100890, G01000302|G0100890, G01000500|G0100910, G01001700|G0100930, G01000100|G0100930, G01001400|G0100950, G01000500|G0100970, G01002701|G0100970, G01002702|G0100970, G01002703|G0100990, G01002200|G0101010, G01002000|G0101010, G01002100|G0101030, G01000600|G0101050, G01001700|G0101070, G01001500|G0101090, G01002400|G0101110, G01001000|G0101130, G01002400|G0101150, G01000800|G0101170, G01001200|G0101190, G01001700|G0101210, G01001000|G0101230, G01001800|G0101250, G01001500|G0101250, G01001600|G0101270, G01001400|G0101290, G01002200|G0101310, G01002200|G0101330, G01000700|G0200130, G02000400|G0200160, G02000400|G0200200, G02000101|G0200200, G02000102|G0200500, G02000400|G0200600, G02000400|G0200680, G02000300|G0200700, G02000400|G0200900, G02000300|G0201000, G02000300|G0201050, G02000400|G0201100, G02000300|G0201220, G02000200|G0201300, G02000300|G0201500, G02000400|G0201580, G02000400|G0201640, G02000400|G0201700, G02000200|G0201800, G02000400|G0201850, G02000400|G0201880, G02000400|G0201950, G02000400|G0202200, G02000400|G0202300, G02000300|G0202400, G02000300|G0202610, G02000300|G0202750, G02000400|G0202820, G02000400|G0202900, G02000400|G0400010, G04000300|G0400030, G04000900|G0400050, G04000400|G0400070, G04000800|G0400090, G04000800|G0400110, G04000800|G0400120, G04000600|G0400130, G04000100|G0400130, G04000101|G0400130, G04000102|G0400130, G04000103|G0400130, G04000104|G0400130, G04000105|G0400130, G04000106|G0400130, G04000107|G0400130, G04000108|G0400130, G04000109|G0400130, G04000110|G0400130, G04000111|G0400130, G04000112|G0400130, G04000113|G0400130, G04000114|G0400130, G04000115|G0400130, G04000116|G0400130, G04000117|G0400130, G04000118|G0400130, G04000119|G0400130, G04000120|G0400130, G04000121|G0400130, G04000122|G0400130, G04000123|G0400130, G04000124|G0400130, G04000125|G0400130, G04000126|G0400130, G04000127|G0400130, G04000128|G0400130, G04000129|G0400130, G04000130|G0400130, G04000131|G0400130, G04000132|G0400130, G04000133|G0400130, G04000134|G0400150, G04000600|G0400170, G04000300|G0400190, G04000201|G0400190, G04000202|G0400190, G04000203|G0400190, G04000204|G0400190, G04000205|G0400190, G04000206|G0400190, G04000207|G0400190, G04000208|G0400190, G04000209|G0400210, G04000800|G0400210, G04000803|G0400210, G04000805|G0400210, G04000807|G0400230, G04000900|G0400250, G04000500|G0400270, G04000700|G0500010, G05001700|G0500010, G05001800|G0500030, G05001800|G0500050, G05000300|G0500070, G05000100|G0500090, G05000300|G0500110, G05001800|G0500130, G05001900|G0500150, G05000300|G0500170, G05001800|G0500190, G05001600|G0500210, G05000500|G0500230, G05000400|G0500250, G05001800|G0500270, G05001900|G0500290, G05001300|G0500310, G05000500|G0500310, G05000600|G0500330, G05001400|G0500350, G05000600|G0500370, G05000700|G0500390, G05001900|G0500410, G05001800|G0500430, G05001800|G0500450, G05001100|G0500470, G05001500|G0500490, G05000400|G0500510, G05001600|G0500530, G05001700|G0500550, G05000500|G0500570, G05002000|G0500590, G05001600|G0500610, G05001500|G0500630, G05000400|G0500650, G05000400|G0500670, G05000800|G0500690, G05001700|G0500710, G05001300|G0500730, G05002000|G0500750, G05000500|G0500770, G05000700|G0500790, G05001800|G0500810, G05002000|G0500830, G05001500|G0500850, G05001100|G0500870, G05000300|G0500890, G05000300|G0500910, G05002000|G0500930, G05000600|G0500950, G05000700|G0500970, G05001600|G0500990, G05002000|G0501010, G05000300|G0501030, G05001900|G0501050, G05001300|G0501070, G05000700|G0501090, G05002000|G0501110, G05000700|G0501130, G05001500|G0501150, G05001300|G0501170, G05000800|G0501190, G05000900|G0501190, G05001000|G0501210, G05000500|G0501230, G05000700|G0501250, G05001200|G0501270, G05001500|G0501290, G05000300|G0501310, G05001400|G0501330, G05001500|G0501350, G05000400|G0501370, G05000400|G0501390, G05001900|G0501410, G05000400|G0501430, G05000200|G0501450, G05000800|G0501470, G05000800|G0501490, G05001300|G0600010, G06000101|G0600010, G06000102|G0600010, G06000103|G0600010, G06000104|G0600010, G06000105|G0600010, G06000106|G0600010, G06000107|G0600010, G06000108|G0600010, G06000109|G0600010, G06000110|G0600030, G06000300|G0600050, G06000300|G0600070, G06000701|G0600070, G06000702|G0600090, G06000300|G0600110, G06001100|G0600130, G06001301|G0600130, G06001302|G0600130, G06001303|G0600130, G06001304|G0600130, G06001305|G0600130, G06001306|G0600130, G06001307|G0600130, G06001308|G0600130, G06001309|G0600150, G06001500|G0600170, G06001700|G0600190, G06001901|G0600190, G06001902|G0600190, G06001903|G0600190, G06001904|G0600190, G06001905|G0600190, G06001906|G0600190, G06001907|G0600210, G06001100|G0600230, G06002300|G0600250, G06002500|G0600270, G06000300|G0600290, G06002901|G0600290, G06002902|G0600290, G06002903|G0600290, G06002904|G0600290, G06002905|G0600310, G06003100|G0600330, G06003300|G0600350, G06001500|G0600370, G06003701|G0600370, G06003702|G0600370, G06003703|G0600370, G06003704|G0600370, G06003705|G0600370, G06003706|G0600370, G06003707|G0600370, G06003708|G0600370, G06003709|G0600370, G06003710|G0600370, G06003711|G0600370, G06003712|G0600370, G06003713|G0600370, G06003714|G0600370, G06003715|G0600370, G06003716|G0600370, G06003717|G0600370, G06003718|G0600370, G06003719|G0600370, G06003720|G0600370, G06003721|G0600370, G06003722|G0600370, G06003723|G0600370, G06003724|G0600370, G06003725|G0600370, G06003726|G0600370, G06003727|G0600370, G06003728|G0600370, G06003729|G0600370, G06003730|G0600370, G06003731|G0600370, G06003732|G0600370, G06003733|G0600370, G06003734|G0600370, G06003735|G0600370, G06003736|G0600370, G06003737|G0600370, G06003738|G0600370, G06003739|G0600370, G06003740|G0600370, G06003741|G0600370, G06003742|G0600370, G06003743|G0600370, G06003744|G0600370, G06003745|G0600370, G06003746|G0600370, G06003747|G0600370, G06003748|G0600370, G06003749|G0600370, G06003750|G0600370, G06003751|G0600370, G06003752|G0600370, G06003753|G0600370, G06003754|G0600370, G06003755|G0600370, G06003756|G0600370, G06003757|G0600370, G06003758|G0600370, G06003759|G0600370, G06003760|G0600370, G06003761|G0600370, G06003762|G0600370, G06003763|G0600370, G06003764|G0600370, G06003765|G0600370, G06003766|G0600370, G06003767|G0600370, G06003768|G0600370, G06003769|G0600390, G06003900|G0600410, G06004101|G0600410, G06004102|G0600430, G06000300|G0600450, G06003300|G0600470, G06004701|G0600470, G06004702|G0600490, G06001500|G0600510, G06000300|G0600530, G06005301|G0600530, G06005302|G0600530, G06005303|G0600550, G06005500|G0600570, G06005700|G0600590, G06005901|G0600590, G06005902|G0600590, G06005903|G0600590, G06005904|G0600590, G06005905|G0600590, G06005906|G0600590, G06005907|G0600590, G06005908|G0600590, G06005909|G0600590, G06005910|G0600590, G06005911|G0600590, G06005912|G0600590, G06005913|G0600590, G06005914|G0600590, G06005915|G0600590, G06005916|G0600590, G06005917|G0600590, G06005918|G0600610, G06006101|G0600610, G06006102|G0600610, G06006103|G0600630, G06001500|G0600650, G06006501|G0600650, G06006502|G0600650, G06006503|G0600650, G06006504|G0600650, G06006505|G0600650, G06006506|G0600650, G06006507|G0600650, G06006508|G0600650, G06006509|G0600650, G06006510|G0600650, G06006511|G0600650, G06006512|G0600650, G06006513|G0600650, G06006514|G0600650, G06006515|G0600670, G06006701|G0600670, G06006702|G0600670, G06006703|G0600670, G06006704|G0600670, G06006705|G0600670, G06006706|G0600670, G06006707|G0600670, G06006708|G0600670, G06006709|G0600670, G06006710|G0600670, G06006711|G0600670, G06006712|G0600690, G06005303|G0600710, G06007101|G0600710, G06007102|G0600710, G06007103|G0600710, G06007104|G0600710, G06007105|G0600710, G06007106|G0600710, G06007107|G0600710, G06007108|G0600710, G06007109|G0600710, G06007110|G0600710, G06007111|G0600710, G06007112|G0600710, G06007113|G0600710, G06007114|G0600710, G06007115|G0600730, G06007301|G0600730, G06007302|G0600730, G06007303|G0600730, G06007304|G0600730, G06007305|G0600730, G06007306|G0600730, G06007307|G0600730, G06007308|G0600730, G06007309|G0600730, G06007310|G0600730, G06007311|G0600730, G06007312|G0600730, G06007313|G0600730, G06007314|G0600730, G06007315|G0600730, G06007316|G0600730, G06007317|G0600730, G06007318|G0600730, G06007319|G0600730, G06007320|G0600730, G06007321|G0600730, G06007322|G0600750, G06007501|G0600750, G06007502|G0600750, G06007503|G0600750, G06007504|G0600750, G06007505|G0600750, G06007506|G0600750, G06007507|G0600770, G06007701|G0600770, G06007702|G0600770, G06007703|G0600770, G06007704|G0600790, G06007901|G0600790, G06007902|G0600810, G06008101|G0600810, G06008102|G0600810, G06008103|G0600810, G06008104|G0600810, G06008105|G0600810, G06008106|G0600830, G06008301|G0600830, G06008302|G0600830, G06008303|G0600850, G06008501|G0600850, G06008502|G0600850, G06008503|G0600850, G06008504|G0600850, G06008505|G0600850, G06008506|G0600850, G06008507|G0600850, G06008508|G0600850, G06008509|G0600850, G06008510|G0600850, G06008511|G0600850, G06008512|G0600850, G06008513|G0600850, G06008514|G0600870, G06008701|G0600870, G06008702|G0600890, G06008900|G0600910, G06005700|G0600930, G06001500|G0600950, G06009501|G0600950, G06009502|G0600950, G06009503|G0600970, G06009701|G0600970, G06009702|G0600970, G06009703|G0600990, G06009901|G0600990, G06009902|G0600990, G06009903|G0600990, G06009904|G0601010, G06010100|G0601030, G06001100|G0601050, G06001100|G0601070, G06010701|G0601070, G06010702|G0601070, G06010703|G0601090, G06000300|G0601110, G06011101|G0601110, G06011102|G0601110, G06011103|G0601110, G06011104|G0601110, G06011105|G0601110, G06011106|G0601130, G06011300|G0601150, G06010100|G0800010, G08000804|G0800010, G08000805|G0800010, G08000806|G0800010, G08000807|G0800010, G08000809|G0800010, G08000810|G0800010, G08000817|G0800010, G08000824|G0800030, G08000800|G0800050, G08000808|G0800050, G08000809|G0800050, G08000810|G0800050, G08000811|G0800050, G08000815|G0800050, G08000820|G0800050, G08000824|G0800070, G08000900|G0800090, G08000800|G0800110, G08000100|G0800130, G08000801|G0800130, G08000802|G0800130, G08000803|G0800130, G08000804|G0800140, G08000804|G0800140, G08000805|G0800150, G08000600|G0800170, G08000100|G0800190, G08000801|G0800210, G08000800|G0800230, G08000800|G0800250, G08000100|G0800270, G08000600|G0800290, G08001002|G0800310, G08000812|G0800310, G08000813|G0800310, G08000814|G0800310, G08000815|G0800310, G08000816|G0800330, G08000900|G0800350, G08000821|G0800350, G08000822|G0800350, G08000823|G0800370, G08000400|G0800390, G08000100|G0800390, G08000823|G0800410, G08004101|G0800410, G08004102|G0800410, G08004103|G0800410, G08004104|G0800410, G08004105|G0800410, G08004106|G0800430, G08000600|G0800450, G08000200|G0800470, G08000801|G0800490, G08000400|G0800510, G08000900|G0800530, G08000900|G0800550, G08000600|G0800570, G08000400|G0800590, G08000801|G0800590, G08000804|G0800590, G08000805|G0800590, G08000817|G0800590, G08000818|G0800590, G08000819|G0800590, G08000820|G0800590, G08000821|G0800610, G08000100|G0800630, G08000100|G0800650, G08000600|G0800670, G08000900|G0800690, G08000102|G0800690, G08000103|G0800710, G08000800|G0800730, G08000100|G0800750, G08000100|G0800770, G08001001|G0800770, G08001002|G0800790, G08000800|G0800810, G08000200|G0800830, G08000900|G0800850, G08001002|G0800870, G08000100|G0800890, G08000800|G0800910, G08001002|G0800930, G08000600|G0800950, G08000100|G0800970, G08000400|G0800990, G08000800|G0801010, G08000600|G0801010, G08000700|G0801010, G08000800|G0801030, G08000200|G0801050, G08000800|G0801070, G08000200|G0801090, G08000800|G0801110, G08000900|G0801130, G08001002|G0801150, G08000100|G0801170, G08000400|G0801190, G08004101|G0801210, G08000100|G0801230, G08000100|G0801230, G08000300|G0801230, G08000802|G0801230, G08000824|G0801250, G08000100|G0900010, G09000100|G0900010, G09000101|G0900010, G09000102|G0900010, G09000103|G0900010, G09000104|G0900010, G09000105|G0900030, G09000300|G0900030, G09000301|G0900030, G09000302|G0900030, G09000303|G0900030, G09000304|G0900030, G09000305|G0900030, G09000306|G0900050, G09000500|G0900070, G09000700|G0900090, G09000900|G0900090, G09000901|G0900090, G09000902|G0900090, G09000903|G0900090, G09000904|G0900090, G09000905|G0900090, G09000906|G0900110, G09001100|G0900110, G09001101|G0900130, G09001300|G0900150, G09001500|G1000010, G10000200|G1000030, G10000101|G1000030, G10000102|G1000030, G10000103|G1000030, G10000104|G1000050, G10000300|G1100010, G11000101|G1100010, G11000102|G1100010, G11000103|G1100010, G11000104|G1100010, G11000105|G1200010, G12000101|G1200010, G12000102|G1200030, G12008900|G1200050, G12000500|G1200070, G12002300|G1200090, G12000901|G1200090, G12000902|G1200090, G12000903|G1200090, G12000904|G1200110, G12001101|G1200110, G12001102|G1200110, G12001103|G1200110, G12001104|G1200110, G12001105|G1200110, G12001106|G1200110, G12001107|G1200110, G12001108|G1200110, G12001109|G1200110, G12001110|G1200110, G12001111|G1200110, G12001112|G1200110, G12001113|G1200110, G12001114|G1200130, G12006300|G1200150, G12001500|G1200170, G12001701|G1200190, G12001900|G1200210, G12002101|G1200210, G12002102|G1200210, G12002103|G1200230, G12002300|G1200270, G12002700|G1200290, G12002300|G1200310, G12003101|G1200310, G12003102|G1200310, G12003103|G1200310, G12003104|G1200310, G12003105|G1200310, G12003106|G1200310, G12003107|G1200330, G12003301|G1200330, G12003302|G1200350, G12003500|G1200370, G12006300|G1200390, G12006300|G1200410, G12002300|G1200430, G12009300|G1200450, G12006300|G1200470, G12012100|G1200490, G12002700|G1200510, G12009300|G1200530, G12005301|G1200550, G12002700|G1200550, G12009300|G1200570, G12005701|G1200570, G12005702|G1200570, G12005703|G1200570, G12005704|G1200570, G12005705|G1200570, G12005706|G1200570, G12005707|G1200570, G12005708|G1200590, G12000500|G1200610, G12006100|G1200630, G12006300|G1200650, G12006300|G1200670, G12012100|G1200690, G12006901|G1200690, G12006902|G1200690, G12006903|G1200710, G12007101|G1200710, G12007102|G1200710, G12007103|G1200710, G12007104|G1200710, G12007105|G1200730, G12007300|G1200730, G12007301|G1200750, G12002300|G1200770, G12006300|G1200790, G12012100|G1200810, G12008101|G1200810, G12008102|G1200810, G12008103|G1200830, G12008301|G1200830, G12008302|G1200830, G12008303|G1200850, G12008500|G1200860, G12008601|G1200860, G12008602|G1200860, G12008603|G1200860, G12008604|G1200860, G12008605|G1200860, G12008606|G1200860, G12008607|G1200860, G12008608|G1200860, G12008609|G1200860, G12008610|G1200860, G12008611|G1200860, G12008612|G1200860, G12008613|G1200860, G12008614|G1200860, G12008615|G1200860, G12008616|G1200860, G12008617|G1200860, G12008618|G1200860, G12008619|G1200860, G12008620|G1200860, G12008621|G1200860, G12008622|G1200860, G12008623|G1200860, G12008624|G1200860, G12008700|G1200870, G12008700|G1200890, G12008900|G1200910, G12009100|G1200930, G12009300|G1200950, G12009501|G1200950, G12009502|G1200950, G12009503|G1200950, G12009504|G1200950, G12009505|G1200950, G12009506|G1200950, G12009507|G1200950, G12009508|G1200950, G12009509|G1200950, G12009510|G1200970, G12009701|G1200970, G12009702|G1200990, G12009901|G1200990, G12009902|G1200990, G12009903|G1200990, G12009904|G1200990, G12009905|G1200990, G12009906|G1200990, G12009907|G1200990, G12009908|G1200990, G12009909|G1200990, G12009910|G1200990, G12009911|G1201010, G12010101|G1201010, G12010102|G1201010, G12010103|G1201010, G12010104|G1201030, G12010301|G1201030, G12010302|G1201030, G12010303|G1201030, G12010304|G1201030, G12010305|G1201030, G12010306|G1201030, G12010307|G1201030, G12010308|G1201050, G12010501|G1201050, G12010502|G1201050, G12010503|G1201050, G12010504|G1201070, G12010700|G1201090, G12010700|G1201090, G12010900|G1201110, G12011101|G1201110, G12011102|G1201130, G12011300|G1201150, G12011501|G1201150, G12011502|G1201150, G12011503|G1201170, G12011701|G1201170, G12011702|G1201170, G12011703|G1201170, G12011704|G1201190, G12006902|G1201190, G12006903|G1201210, G12012100|G1201230, G12012100|G1201250, G12002300|G1201270, G12003500|G1201270, G12012701|G1201270, G12012702|G1201270, G12012703|G1201270, G12012704|G1201290, G12006300|G1201310, G12000500|G1201330, G12000500|G1300010, G13001200|G1300030, G13000500|G1300050, G13000500|G1300070, G13001100|G1300090, G13001600|G1300110, G13003500|G1300130, G13003800|G1300150, G13002900|G1300170, G13000700|G1300190, G13000700|G1300210, G13001400|G1300230, G13001300|G1300250, G13000500|G1300270, G13000700|G1300290, G13000200|G1300310, G13000300|G1300330, G13004200|G1300350, G13001900|G1300370, G13001100|G1300390, G13000100|G1300430, G13001300|G1300450, G13002300|G1300470, G13002600|G1300490, G13000500|G1300510, G13000401|G1300510, G13000402|G1300530, G13001700|G1300550, G13002600|G1300570, G13003101|G1300570, G13003102|G1300590, G13003600|G1300610, G13001800|G1300630, G13005001|G1300630, G13005002|G1300650, G13000500|G1300670, G13003001|G1300670, G13003002|G1300670, G13003003|G1300670, G13003004|G1300670, G13003005|G1300690, G13000500|G1300710, G13000800|G1300730, G13004100|G1300750, G13000700|G1300770, G13002100|G1300790, G13001600|G1300810, G13001800|G1300830, G13002600|G1300850, G13003200|G1300870, G13001100|G1300890, G13001007|G1300890, G13001008|G1300890, G13002001|G1300890, G13002002|G1300890, G13002003|G1300890, G13002004|G1300910, G13001300|G1300930, G13001800|G1300950, G13000900|G1300970, G13004400|G1300990, G13001100|G1301010, G13000500|G1301030, G13000300|G1301050, G13003700|G1301070, G13001300|G1301090, G13001200|G1301110, G13002800|G1301130, G13002400|G1301150, G13002500|G1301170, G13003300|G1301190, G13003500|G1301210, G13001001|G1301210, G13001002|G1301210, G13001003|G1301210, G13001004|G1301210, G13001005|G1301210, G13001006|G1301210, G13001007|G1301210, G13004600|G1301230, G13002800|G1301250, G13004200|G1301270, G13000100|G1301290, G13002800|G1301310, G13001100|G1301330, G13003700|G1301350, G13004001|G1301350, G13004002|G1301350, G13004003|G1301350, G13004004|G1301350, G13004005|G1301350, G13004006|G1301370, G13003500|G1301390, G13003400|G1301410, G13004200|G1301430, G13002500|G1301450, G13001800|G1301470, G13003500|G1301490, G13002200|G1301510, G13006001|G1301510, G13006002|G1301530, G13001500|G1301550, G13000700|G1301570, G13003800|G1301590, G13003900|G1301610, G13001200|G1301630, G13004200|G1301650, G13004200|G1301670, G13001300|G1301690, G13001600|G1301710, G13001900|G1301730, G13000500|G1301750, G13001300|G1301770, G13000900|G1301790, G13000200|G1301810, G13004200|G1301830, G13000200|G1301850, G13000600|G1301870, G13003200|G1301890, G13004200|G1301910, G13000100|G1301930, G13001800|G1301950, G13003700|G1301970, G13001800|G1301990, G13002200|G1302010, G13001100|G1302050, G13001100|G1302070, G13001600|G1302090, G13001200|G1302110, G13003900|G1302130, G13002800|G1302150, G13001700|G1302170, G13004300|G1302190, G13003700|G1302210, G13003700|G1302230, G13004500|G1302250, G13001600|G1302270, G13002800|G1302290, G13000500|G1302310, G13001900|G1302330, G13002500|G1302350, G13001500|G1302370, G13001600|G1302390, G13001800|G1302410, G13003200|G1302430, G13001800|G1302450, G13004000|G1302470, G13004300" -in.county_and_puma metadata_and_annual n/a string "G1302490, G13001800|G1302510, G13000300|G1302530, G13001100|G1302550, G13001900|G1302570, G13003500|G1302590, G13001800|G1302610, G13001800|G1302630, G13001800|G1302650, G13004200|G1302670, G13001200|G1302690, G13001800|G1302710, G13001200|G1302730, G13001100|G1302750, G13000800|G1302770, G13000700|G1302790, G13001200|G1302810, G13003200|G1302830, G13001300|G1302850, G13002200|G1302870, G13000700|G1302890, G13001600|G1302910, G13003200|G1302930, G13001900|G1302950, G13002600|G1302970, G13003900|G1302990, G13000500|G1303010, G13004200|G1303030, G13004200|G1303050, G13001200|G1303070, G13001800|G1303090, G13001200|G1303110, G13003200|G1303130, G13002700|G1303150, G13001300|G1303170, G13004200|G1303190, G13001600|G1303210, G13000800|G1500010, G15000200|G1500030, G15000301|G1500030, G15000302|G1500030, G15000303|G1500030, G15000304|G1500030, G15000305|G1500030, G15000306|G1500030, G15000307|G1500030, G15000308|G1500070, G15000100|G1500090, G15000100|G1600010, G16000400|G1600010, G16000600|G1600010, G16000701|G1600010, G16000702|G1600010, G16000800|G1600030, G16000300|G1600050, G16001300|G1600070, G16001300|G1600090, G16000100|G1600110, G16001100|G1600110, G16001300|G1600130, G16001000|G1600150, G16000300|G1600170, G16000100|G1600190, G16001200|G1600210, G16000100|G1600230, G16000300|G1600250, G16001000|G1600270, G16000400|G1600270, G16000500|G1600270, G16000600|G1600290, G16001300|G1600310, G16000900|G1600330, G16000300|G1600350, G16000300|G1600370, G16000300|G1600390, G16001000|G1600410, G16001300|G1600430, G16001100|G1600450, G16000400|G1600470, G16001000|G1600490, G16000300|G1600510, G16001100|G1600530, G16001000|G1600550, G16000100|G1600550, G16000200|G1600570, G16000100|G1600590, G16000300|G1600610, G16000300|G1600630, G16001000|G1600650, G16001100|G1600670, G16001000|G1600690, G16000300|G1600710, G16001300|G1600730, G16000500|G1600750, G16000400|G1600770, G16001300|G1600790, G16000100|G1600810, G16001100|G1600830, G16000900|G1600850, G16000300|G1600870, G16000400|G1700010, G17000300|G1700030, G17000800|G1700050, G17000501|G1700070, G17002901|G1700090, G17000300|G1700110, G17002501|G1700130, G17000401|G1700150, G17000104|G1700170, G17000401|G1700190, G17002100|G1700210, G17001602|G1700230, G17000700|G1700250, G17000700|G1700270, G17000501|G1700290, G17000600|G1700310, G17003401|G1700310, G17003407|G1700310, G17003408|G1700310, G17003409|G1700310, G17003410|G1700310, G17003411|G1700310, G17003412|G1700310, G17003413|G1700310, G17003414|G1700310, G17003415|G1700310, G17003416|G1700310, G17003417|G1700310, G17003418|G1700310, G17003419|G1700310, G17003420|G1700310, G17003421|G1700310, G17003422|G1700310, G17003501|G1700310, G17003502|G1700310, G17003503|G1700310, G17003504|G1700310, G17003520|G1700310, G17003521|G1700310, G17003522|G1700310, G17003523|G1700310, G17003524|G1700310, G17003525|G1700310, G17003526|G1700310, G17003527|G1700310, G17003528|G1700310, G17003529|G1700310, G17003530|G1700310, G17003531|G1700310, G17003532|G1700330, G17000700|G1700350, G17000600|G1700370, G17002601|G1700390, G17001602|G1700410, G17000600|G1700430, G17003202|G1700430, G17003203|G1700430, G17003204|G1700430, G17003205|G1700430, G17003207|G1700430, G17003208|G1700430, G17003209|G1700450, G17000600|G1700470, G17000800|G1700490, G17000501|G1700510, G17000501|G1700530, G17002200|G1700550, G17000900|G1700570, G17000202|G1700590, G17000800|G1700610, G17000401|G1700630, G17003700|G1700650, G17000800|G1700670, G17000202|G1700690, G17000800|G1700710, G17000202|G1700730, G17000202|G1700750, G17002200|G1700770, G17000900|G1700790, G17000700|G1700810, G17001001|G1700830, G17000401|G1700850, G17000104|G1700870, G17000800|G1700890, G17003005|G1700890, G17003007|G1700890, G17003008|G1700890, G17003009|G1700910, G17002300|G1700930, G17003700|G1700950, G17002501|G1700970, G17003306|G1700970, G17003307|G1700970, G17003308|G1700970, G17003309|G1700970, G17003310|G1700990, G17002400|G1701010, G17000700|G1701030, G17000104|G1701050, G17002200|G1701070, G17001602|G1701090, G17000202|G1701110, G17003601|G1701110, G17003602|G1701130, G17002000|G1701150, G17001500|G1701170, G17000401|G1701190, G17001204|G1701190, G17001205|G1701210, G17001001|G1701230, G17002501|G1701250, G17000300|G1701270, G17000800|G1701290, G17001602|G1701310, G17000202|G1701330, G17001001|G1701350, G17000501|G1701370, G17000401|G1701390, G17001602|G1701410, G17002700|G1701430, G17001701|G1701450, G17000900|G1701470, G17001602|G1701490, G17000300|G1701510, G17000800|G1701530, G17000800|G1701550, G17002501|G1701570, G17001001|G1701590, G17000700|G1701610, G17000105|G1701630, G17001104|G1701630, G17001105|G1701650, G17000800|G1701670, G17001300|G1701690, G17000300|G1701710, G17000401|G1701730, G17001602|G1701750, G17002501|G1701770, G17002700|G1701790, G17001900|G1701810, G17000800|G1701830, G17002200|G1701850, G17000800|G1701870, G17000202|G1701890, G17001001|G1701910, G17000700|G1701930, G17000800|G1701950, G17000104|G1701970, G17003102|G1701970, G17003105|G1701970, G17003106|G1701970, G17003107|G1701970, G17003108|G1701990, G17000900|G1702010, G17002801|G1702010, G17002901|G1702030, G17002501|G1800010, G18000900|G1800030, G18001001|G1800030, G18001002|G1800030, G18001003|G1800050, G18002900|G1800070, G18001100|G1800090, G18001500|G1800110, G18001801|G1800130, G18002100|G1800150, G18001100|G1800170, G18001300|G1800190, G18003600|G1800210, G18001600|G1800230, G18001100|G1800250, G18003400|G1800270, G18002700|G1800290, G18003100|G1800310, G18003000|G1800330, G18000600|G1800350, G18002000|G1800370, G18003400|G1800390, G18000500|G1800410, G18002600|G1800430, G18003500|G1800450, G18001600|G1800470, G18003100|G1800490, G18000700|G1800510, G18003200|G1800530, G18001400|G1800550, G18002700|G1800570, G18001801|G1800570, G18001802|G1800570, G18001803|G1800590, G18002500|G1800610, G18003500|G1800630, G18002200|G1800650, G18001500|G1800670, G18001300|G1800690, G18000900|G1800710, G18002900|G1800730, G18000700|G1800750, G18001500|G1800770, G18003000|G1800790, G18003000|G1800810, G18002400|G1800830, G18003400|G1800850, G18000800|G1800870, G18000600|G1800890, G18000101|G1800890, G18000102|G1800890, G18000103|G1800890, G18000104|G1800910, G18000300|G1800930, G18002700|G1800950, G18001900|G1800970, G18002301|G1800970, G18002302|G1800970, G18002303|G1800970, G18002304|G1800970, G18002305|G1800970, G18002306|G1800970, G18002307|G1800990, G18000800|G1801010, G18002700|G1801030, G18001400|G1801050, G18002800|G1801070, G18001100|G1801090, G18002100|G1801110, G18000700|G1801130, G18000600|G1801150, G18003100|G1801170, G18002700|G1801190, G18002700|G1801210, G18001600|G1801230, G18003400|G1801250, G18003400|G1801270, G18000200|G1801290, G18003200|G1801310, G18000700|G1801330, G18002100|G1801350, G18001500|G1801370, G18003100|G1801390, G18002600|G1801410, G18000401|G1801410, G18000402|G1801430, G18003000|G1801450, G18002500|G1801470, G18003400|G1801490, G18000700|G1801510, G18000600|G1801530, G18001600|G1801550, G18003100|G1801570, G18001200|G1801590, G18001300|G1801610, G18002600|G1801630, G18003300|G1801650, G18001600|G1801670, G18001700|G1801690, G18001400|G1801710, G18001600|G1801730, G18003200|G1801750, G18003500|G1801770, G18002600|G1801790, G18000900|G1801810, G18001100|G1801830, G18000900|G1900010, G19001800|G1900030, G19001800|G1900050, G19000400|G1900070, G19001800|G1900090, G19001800|G1900110, G19001200|G1900130, G19000500|G1900150, G19001300|G1900170, G19000400|G1900190, G19000700|G1900210, G19001900|G1900230, G19000600|G1900250, G19001900|G1900270, G19001900|G1900290, G19002100|G1900310, G19000800|G1900330, G19000200|G1900350, G19001900|G1900370, G19000400|G1900390, G19001800|G1900410, G19000100|G1900430, G19000400|G1900450, G19000800|G1900470, G19001900|G1900490, G19001400|G1900490, G19001500|G1900510, G19002200|G1900530, G19001800|G1900550, G19000700|G1900570, G19002300|G1900590, G19000100|G1900610, G19000700|G1900630, G19000100|G1900650, G19000400|G1900670, G19000200|G1900690, G19000600|G1900710, G19002100|G1900730, G19001900|G1900750, G19000600|G1900770, G19001800|G1900790, G19000600|G1900810, G19000200|G1900830, G19000600|G1900850, G19002100|G1900870, G19002300|G1900890, G19000400|G1900910, G19000600|G1900930, G19001900|G1900950, G19001200|G1900970, G19000700|G1900990, G19001400|G1901010, G19002200|G1901030, G19001100|G1901050, G19000800|G1901070, G19002200|G1901090, G19000200|G1901110, G19002300|G1901130, G19001000|G1901150, G19002300|G1901170, G19001800|G1901190, G19000100|G1901210, G19001400|G1901230, G19002200|G1901250, G19001400|G1901270, G19001200|G1901290, G19002100|G1901310, G19000200|G1901330, G19001900|G1901350, G19001800|G1901370, G19002100|G1901390, G19000800|G1901410, G19000100|G1901430, G19000100|G1901450, G19002100|G1901470, G19000100|G1901490, G19002000|G1901510, G19001900|G1901530, G19001500|G1901530, G19001600|G1901530, G19001700|G1901550, G19002100|G1901570, G19001200|G1901590, G19001800|G1901610, G19001900|G1901630, G19000900|G1901650, G19002100|G1901670, G19000100|G1901690, G19001300|G1901710, G19001200|G1901730, G19001800|G1901750, G19001800|G1901770, G19002200|G1901790, G19002200|G1901810, G19001400|G1901830, G19002200|G1901850, G19001800|G1901870, G19000600|G1901890, G19000200|G1901910, G19000400|G1901930, G19002000|G1901950, G19000200|G1901970, G19000600|G2000010, G20001400|G2000030, G20001400|G2000050, G20000400|G2000070, G20001100|G2000090, G20001100|G2000110, G20001400|G2000130, G20000802|G2000150, G20001302|G2000150, G20001304|G2000170, G20000900|G2000190, G20000900|G2000210, G20001500|G2000230, G20000100|G2000250, G20001200|G2000270, G20000200|G2000290, G20000200|G2000310, G20000900|G2000330, G20001100|G2000350, G20000900|G2000350, G20001100|G2000370, G20001500|G2000390, G20000100|G2000410, G20000200|G2000430, G20000400|G2000450, G20000700|G2000470, G20001100|G2000490, G20000900|G2000510, G20000100|G2000530, G20000200|G2000550, G20001200|G2000570, G20001200|G2000590, G20001400|G2000610, G20000300|G2000630, G20000100|G2000650, G20000100|G2000670, G20001200|G2000690, G20001200|G2000710, G20000100|G2000730, G20000900|G2000750, G20001200|G2000770, G20001100|G2000790, G20001301|G2000810, G20001200|G2000830, G20001200|G2000850, G20000802|G2000870, G20000400|G2000890, G20000200|G2000910, G20000601|G2000910, G20000602|G2000910, G20000603|G2000910, G20000604|G2000930, G20001200|G2000950, G20001100|G2000970, G20001100|G2000990, G20001500|G2001010, G20000100|G2001030, G20000400|G2001050, G20000200|G2001070, G20001400|G2001090, G20000100|G2001110, G20000900|G2001130, G20001000|G2001150, G20000900|G2001170, G20000200|G2001190, G20001200|G2001210, G20001400|G2001230, G20000200|G2001250, G20001500|G2001270, G20000900|G2001290, G20001200|G2001310, G20000200|G2001330, G20001500|G2001350, G20000100|G2001370, G20000100|G2001390, G20000802|G2001410, G20000100|G2001430, G20000200|G2001450, G20001100|G2001470, G20000100|G2001490, G20000300|G2001510, G20001100|G2001530, G20000100|G2001550, G20001000|G2001570, G20000200|G2001590, G20001000|G2001610, G20000300|G2001630, G20000100|G2001650, G20001100|G2001670, G20000100|G2001690, G20000200|G2001710, G20000100|G2001730, G20001301|G2001730, G20001302|G2001730, G20001303|G2001730, G20001304|G2001750, G20001200|G2001770, G20000801|G2001770, G20000802|G2001790, G20000100|G2001810, G20000100|G2001830, G20000100|G2001850, G20001100|G2001870, G20001200|G2001890, G20001200|G2001910, G20001100|G2001930, G20000100|G2001950, G20000100|G2001970, G20000802|G2001990, G20000100|G2002010, G20000200|G2002030, G20000100|G2002050, G20000900|G2002070, G20000900|G2002090, G20000500|G2100010, G21000600|G2100030, G21000400|G2100050, G21002000|G2100070, G21000100|G2100090, G21000400|G2100110, G21002700|G2100130, G21000900|G2100150, G21002500|G2100170, G21002300|G2100190, G21002800|G2100210, G21002100|G2100230, G21002700|G2100250, G21001000|G2100270, G21001300|G2100290, G21001600|G2100310, G21000400|G2100330, G21000200|G2100350, G21000100|G2100370, G21002600|G2100390, G21000100|G2100410, G21002600|G2100430, G21002800|G2100450, G21000600|G2100470, G21000300|G2100490, G21002300|G2100510, G21000800|G2100530, G21000600|G2100550, G21000200|G2100570, G21000600|G2100590, G21001500|G2100610, G21000400|G2100630, G21002800|G2100650, G21002200|G2100670, G21001901|G2100670, G21001902|G2100690, G21002700|G2100710, G21001100|G2100730, G21002000|G2100750, G21000100|G2100770, G21002600|G2100790, G21002100|G2100810, G21002600|G2100830, G21000100|G2100850, G21001300|G2100870, G21000600|G2100890, G21002800|G2100910, G21001500|G2100930, G21001200|G2100930, G21001300|G2100950, G21000900|G2100970, G21002300|G2100990, G21000400|G2101010, G21001400|G2101030, G21001800|G2101050, G21000100|G2101070, G21000200|G2101090, G21000800|G2101110, G21001701|G2101110, G21001702|G2101110, G21001703|G2101110, G21001704|G2101110, G21001705|G2101110, G21001706|G2101130, G21002100|G2101150, G21001100|G2101170, G21002400|G2101190, G21001000|G2101210, G21000900|G2101230, G21001200|G2101250, G21000800|G2101270, G21002800|G2101290, G21001000|G2101310, G21001000|G2101330, G21001000|G2101350, G21002700|G2101370, G21002100|G2101390, G21000200|G2101410, G21000400|G2101430, G21000300|G2101450, G21000100|G2101470, G21000700|G2101490, G21001400|G2101510, G21002200|G2101530, G21001100|G2101550, G21001200|G2101570, G21000100|G2101590, G21001100|G2101610, G21002700|G2101630, G21001300|G2101650, G21002700|G2101670, G21002000|G2101690, G21000400|G2101710, G21000400|G2101730, G21002700|G2101750, G21002700|G2101770, G21000200|G2101790, G21001200|G2101810, G21002300|G2101830, G21001400|G2101850, G21001800|G2101870, G21002600|G2101890, G21001000|G2101910, G21002600|G2101930, G21001000|G2101950, G21001100|G2101970, G21002200|G2101990, G21000700|G2102010, G21002700|G2102030, G21000800|G2102050, G21002700|G2102070, G21000600|G2102090, G21002300|G2102110, G21001600|G2102110, G21001800|G2102130, G21000400|G2102150, G21001600|G2102170, G21000600|G2102190, G21000300|G2102210, G21000300|G2102230, G21001800|G2102250, G21001400|G2102270, G21000500|G2102290, G21001200|G2102310, G21000700|G2102330, G21001400|G2102350, G21000900|G2102370, G21001000|G2102390, G21002000|G2200010, G22001100|G2200030, G22000800|G2200050, G22001600|G2200070, G22002000|G2200090, G22000600|G2200110, G22000800|G2200130, G22000300|G2200150, G22000200|G2200170, G22000100|G2200170, G22000101|G2200190, G22000800|G2200190, G22000900|G2200210, G22000500|G2200230, G22000900|G2200250, G22000600|G2200270, G22000300|G2200290, G22000600|G2200310, G22000300|G2200330, G22001500|G2200330, G22001501|G2200330, G22001502|G2200350, G22000500|G2200370, G22001400|G2200390, G22001000|G2200410, G22000500|G2200430, G22000600|G2200450, G22001300|G2200470, G22001400|G2200490, G22000500|G2200510, G22002300|G2200510, G22002301|G2200510, G22002302|G2200510, G22002500|G2200530, G22000900|G2200550, G22001200|G2200550, G22001201|G2200570, G22002000|G2200590, G22000600|G2200610, G22000300|G2200630, G22001700|G2200650, G22000500|G2200670, G22000500|G2200690, G22000300|G2200710, G22002400|G2200710, G22002401|G2200710, G22002402|G2200730, G22000400|G2200750, G22002500|G2200770, G22001400|G2200790, G22000700|G2200810, G22000300|G2200830, G22000500|G2200850, G22000300|G2200870, G22002500|G2200890, G22001900|G2200910, G22001700|G2200930, G22001900|G2200950, G22001900|G2200970, G22001000|G2200990, G22001300|G2201010, G22001300|G2201030, G22002200|G2201030, G22002201|G2201050, G22001800|G2201070, G22000500|G2201090, G22002100|G2201110, G22000500|G2201130, G22001100|G2201150, G22000700|G2201170, G22001800|G2201190, G22000200|G2201210, G22001400|G2201230, G22000500|G2201250, G22001400|G2201270, G22000600|G2300010, G23000600|G2300030, G23000100|G2300050, G23000700|G2300050, G23000800|G2300050, G23000900|G2300050, G23001000|G2300070, G23000200|G2300090, G23000500|G2300110, G23000400|G2300130, G23000500|G2300150, G23000500|G2300170, G23000200|G2300190, G23000300|G2300210, G23000200|G2300230, G23000700|G2300250, G23000200|G2300270, G23000500|G2300290, G23000100|G2300310, G23000800|G2300310, G23000900|G2400010, G24000100|G2400030, G24001201|G2400030, G24001202|G2400030, G24001203|G2400030, G24001204|G2400050, G24000501|G2400050, G24000502|G2400050, G24000503|G2400050, G24000504|G2400050, G24000505|G2400050, G24000506|G2400050, G24000507|G2400090, G24001500|G2400110, G24001300|G2400130, G24000400|G2400150, G24000700|G2400170, G24001600|G2400190, G24001300|G2400210, G24000301|G2400210, G24000302|G2400230, G24000100|G2400250, G24000601|G2400250, G24000602|G2400270, G24000901|G2400270, G24000902|G2400290, G24001300|G2400310, G24001001|G2400310, G24001002|G2400310, G24001003|G2400310, G24001004|G2400310, G24001005|G2400310, G24001006|G2400310, G24001007|G2400330, G24001101|G2400330, G24001102|G2400330, G24001103|G2400330, G24001104|G2400330, G24001105|G2400330, G24001106|G2400330, G24001107|G2400350, G24001300|G2400370, G24001500|G2400390, G24001400|G2400410, G24001300|G2400430, G24000200|G2400450, G24001400|G2400470, G24001400|G2405100, G24000801|G2405100, G24000802|G2405100, G24000803|G2405100, G24000804|G2405100, G24000805|G2500010, G25004700|G2500010, G25004800|G2500030, G25000100|G2500050, G25004200|G2500050, G25004301|G2500050, G25004302|G2500050, G25004303|G2500050, G25004500|G2500050, G25004901|G2500070, G25004800|G2500090, G25000701|G2500090, G25000702|G2500090, G25000703|G2500090, G25000704|G2500090, G25001000|G2500090, G25001300|G2500090, G25002800|G2500110, G25000200|G2500130, G25001600|G2500130, G25001900|G2500130, G25001901|G2500130, G25001902|G2500150, G25000200|G2500150, G25001600|G2500170, G25000400|G2500170, G25000501|G2500170, G25000502|G2500170, G25000503|G2500170, G25000504|G2500170, G25000505|G2500170, G25000506|G2500170, G25000507|G2500170, G25000508|G2500170, G25001000|G2500170, G25001300|G2500170, G25001400|G2500170, G25002400|G2500170, G25002800|G2500170, G25003400|G2500170, G25003500|G2500190, G25004800|G2500210, G25002400|G2500210, G25003400|G2500210, G25003500|G2500210, G25003601|G2500210, G25003602|G2500210, G25003603|G2500210, G25003900|G2500210, G25004000|G2500210, G25004200|G2500230, G25003900|G2500230, G25004000|G2500230, G25004301|G2500230, G25004901|G2500230, G25004902|G2500230, G25004903|G2500250, G25003301|G2500250, G25003302|G2500250, G25003303|G2500250, G25003304|G2500250, G25003305|G2500250, G25003306|G2500270, G25000300|G2500270, G25000301|G2500270, G25000302|G2500270, G25000303|G2500270, G25000304|G2500270, G25000400|G2500270, G25001400|G2500270, G25002400|G2600010, G26000300|G2600030, G26000200|G2600050, G26000900|G2600070, G26000300|G2600090, G26000400|G2600110, G26001300|G2600130, G26000100|G2600150, G26002000|G2600170, G26001400|G2600190, G26000500|G2600210, G26002400|G2600230, G26002200|G2600250, G26002000|G2600270, G26002300|G2600290, G26000400|G2600310, G26000300|G2600330, G26000200|G2600350, G26001200|G2600370, G26001900|G2600390, G26000300|G2600410, G26000200|G2600430, G26000100|G2600450, G26001900|G2600470, G26000400|G2600490, G26001701|G2600490, G26001702|G2600490, G26001703|G2600490, G26001704|G2600510, G26001300|G2600530, G26000100|G2600550, G26000500|G2600570, G26001200|G2600590, G26002500|G2600610, G26000100|G2600630, G26001600|G2600650, G26001801|G2600650, G26001802|G2600670, G26001100|G2600690, G26001300|G2600710, G26000100|G2600730, G26001200|G2600750, G26002600|G2600770, G26002101|G2600770, G26002102|G2600790, G26000400|G2600810, G26001001|G2600810, G26001002|G2600810, G26001003|G2600810, G26001004|G2600830, G26000100|G2600850, G26000600|G2600870, G26001701|G2600890, G26000500|G2600910, G26002500|G2600930, G26002800|G2600950, G26000200|G2600970, G26000200|G2600990, G26003001|G2600990, G26003002|G2600990, G26003003|G2600990, G26003004|G2600990, G26003005|G2600990, G26003006|G2601010, G26000500|G2601030, G26000100|G2601050, G26000600|G2601070, G26001100|G2601090, G26000200|G2601110, G26001400|G2601130, G26000400|G2601150, G26003300|G2601170, G26001100|G2601190, G26000300|G2601210, G26000700|G2601230, G26000600|G2601250, G26002901|G2601250, G26002902" -in.county_and_puma metadata_and_annual n/a string "G2601250, G26002903|G2601250, G26002904|G2601250, G26002905|G2601250, G26002906|G2601250, G26002907|G2601250, G26002908|G2601270, G26000600|G2601290, G26001300|G2601310, G26000100|G2601330, G26001100|G2601350, G26000300|G2601370, G26000300|G2601390, G26000801|G2601390, G26000802|G2601410, G26000300|G2601430, G26001300|G2601450, G26001500|G2601470, G26003100|G2601490, G26002200|G2601510, G26001600|G2601530, G26000200|G2601550, G26001704|G2601570, G26001600|G2601590, G26002300|G2601610, G26002701|G2601610, G26002702|G2601610, G26002703|G2601630, G26003201|G2601630, G26003202|G2601630, G26003203|G2601630, G26003204|G2601630, G26003205|G2601630, G26003206|G2601630, G26003207|G2601630, G26003208|G2601630, G26003209|G2601630, G26003210|G2601630, G26003211|G2601630, G26003212|G2601630, G26003213|G2601650, G26000400|G2700010, G27000300|G2700030, G27001101|G2700030, G27001102|G2700030, G27001103|G2700050, G27000200|G2700070, G27000200|G2700090, G27001000|G2700110, G27000800|G2700130, G27002200|G2700150, G27002000|G2700170, G27000300|G2700170, G27000400|G2700190, G27001700|G2700210, G27000300|G2700230, G27002000|G2700250, G27000600|G2700270, G27000100|G2700290, G27000200|G2700310, G27000400|G2700330, G27002100|G2700350, G27000700|G2700370, G27001501|G2700370, G27001502|G2700370, G27001503|G2700390, G27002400|G2700410, G27000800|G2700430, G27002100|G2700450, G27002600|G2700470, G27002400|G2700490, G27002300|G2700510, G27000800|G2700530, G27001401|G2700530, G27001402|G2700530, G27001403|G2700530, G27001404|G2700530, G27001405|G2700530, G27001406|G2700530, G27001407|G2700530, G27001408|G2700530, G27001409|G2700530, G27001410|G2700550, G27002600|G2700570, G27000200|G2700590, G27000600|G2700610, G27000300|G2700630, G27002100|G2700650, G27000600|G2700670, G27001900|G2700690, G27000100|G2700710, G27000400|G2700730, G27002000|G2700750, G27000400|G2700770, G27000200|G2700790, G27002300|G2700810, G27002000|G2700830, G27002000|G2700850, G27001900|G2700870, G27000200|G2700890, G27000100|G2700910, G27002100|G2700930, G27001900|G2700950, G27000600|G2700970, G27000700|G2700990, G27002400|G2701010, G27002100|G2701030, G27002200|G2701050, G27002100|G2701070, G27000100|G2701090, G27002500|G2701110, G27000800|G2701130, G27000100|G2701150, G27000600|G2701170, G27002100|G2701190, G27000100|G2701210, G27000800|G2701230, G27001301|G2701230, G27001302|G2701230, G27001303|G2701230, G27001304|G2701250, G27000100|G2701270, G27002000|G2701290, G27001900|G2701310, G27002300|G2701330, G27002100|G2701350, G27000100|G2701370, G27000400|G2701370, G27000500|G2701390, G27001600|G2701390, G27001700|G2701410, G27001000|G2701430, G27001900|G2701450, G27000900|G2701470, G27002400|G2701490, G27000800|G2701510, G27000800|G2701530, G27000700|G2701550, G27000800|G2701570, G27002600|G2701590, G27000700|G2701610, G27002200|G2701630, G27001201|G2701630, G27001202|G2701650, G27002100|G2701670, G27000800|G2701690, G27002600|G2701710, G27001800|G2701730, G27002000|G2800010, G28001600|G2800030, G28000200|G2800050, G28001600|G2800070, G28000700|G2800090, G28000200|G2800110, G28000800|G2800130, G28000400|G2800150, G28000700|G2800170, G28000400|G2800190, G28000600|G2800210, G28001600|G2800230, G28001500|G2800250, G28000600|G2800270, G28000300|G2800290, G28001200|G2800310, G28001700|G2800330, G28000100|G2800350, G28001800|G2800370, G28001600|G2800390, G28001900|G2800410, G28001700|G2800430, G28000700|G2800450, G28001900|G2800470, G28002000|G2800490, G28001000|G2800490, G28001100|G2800490, G28001200|G2800510, G28000700|G2800530, G28000800|G2800550, G28000800|G2800570, G28000400|G2800590, G28002100|G2800610, G28001400|G2800630, G28001600|G2800650, G28001700|G2800670, G28001700|G2800690, G28001400|G2800710, G28000400|G2800730, G28001800|G2800750, G28001500|G2800770, G28001600|G2800790, G28001400|G2800810, G28000500|G2800830, G28000700|G2800850, G28001600|G2800870, G28000600|G2800890, G28000900|G2800890, G28001000|G2800910, G28001800|G2800930, G28000200|G2800950, G28000400|G2800970, G28000700|G2800990, G28001400|G2801010, G28001500|G2801030, G28000600|G2801050, G28000600|G2801070, G28000300|G2801090, G28001900|G2801110, G28001800|G2801130, G28001600|G2801150, G28000500|G2801170, G28000200|G2801190, G28000300|G2801210, G28001300|G2801230, G28001400|G2801250, G28000800|G2801270, G28001300|G2801290, G28001400|G2801310, G28001900|G2801330, G28000800|G2801350, G28000300|G2801370, G28000300|G2801390, G28000200|G2801410, G28000200|G2801430, G28000300|G2801450, G28000500|G2801470, G28001600|G2801490, G28001200|G2801510, G28000800|G2801530, G28001700|G2801550, G28000600|G2801570, G28001600|G2801590, G28000600|G2801610, G28000700|G2801630, G28000900|G2900010, G29000300|G2900030, G29000200|G2900050, G29000100|G2900070, G29000400|G2900090, G29002700|G2900110, G29001200|G2900130, G29001100|G2900150, G29001300|G2900170, G29002200|G2900190, G29000600|G2900210, G29000200|G2900230, G29002400|G2900250, G29000800|G2900270, G29000500|G2900290, G29001400|G2900310, G29002200|G2900330, G29000700|G2900350, G29002400|G2900370, G29001100|G2900390, G29001200|G2900410, G29000700|G2900430, G29002601|G2900450, G29000300|G2900470, G29000901|G2900470, G29000902|G2900470, G29000903|G2900490, G29000800|G2900510, G29000500|G2900530, G29000700|G2900550, G29001500|G2900570, G29001200|G2900590, G29001300|G2900610, G29000100|G2900630, G29000200|G2900650, G29001500|G2900670, G29002500|G2900690, G29002300|G2900710, G29001600|G2900730, G29001500|G2900750, G29000100|G2900770, G29002601|G2900770, G29002602|G2900770, G29002603|G2900790, G29000100|G2900810, G29000100|G2900830, G29001200|G2900850, G29001300|G2900870, G29000100|G2900890, G29000700|G2900910, G29002500|G2900930, G29002400|G2900950, G29001001|G2900950, G29001002|G2900950, G29001003|G2900950, G29001004|G2900950, G29001005|G2900970, G29002800|G2900990, G29002001|G2900990, G29002002|G2901010, G29000800|G2901030, G29000300|G2901050, G29001300|G2901070, G29000800|G2901090, G29001200|G2901110, G29000300|G2901130, G29000400|G2901150, G29000100|G2901170, G29000100|G2901190, G29002700|G2901210, G29000300|G2901230, G29002400|G2901250, G29001500|G2901270, G29000300|G2901290, G29000100|G2901310, G29001400|G2901330, G29002300|G2901350, G29000500|G2901370, G29000300|G2901390, G29000400|G2901410, G29001400|G2901430, G29002300|G2901450, G29002800|G2901470, G29000100|G2901490, G29002500|G2901510, G29000500|G2901530, G29002500|G2901550, G29002300|G2901570, G29002100|G2901590, G29000700|G2901610, G29001500|G2901630, G29000400|G2901650, G29000903|G2901670, G29001300|G2901690, G29001400|G2901710, G29000100|G2901730, G29000300|G2901750, G29000700|G2901770, G29000800|G2901790, G29002400|G2901810, G29002400|G2901830, G29001701|G2901830, G29001702|G2901830, G29001703|G2901850, G29001200|G2901860, G29002100|G2901870, G29002100|G2901890, G29001801|G2901890, G29001802|G2901890, G29001803|G2901890, G29001804|G2901890, G29001805|G2901890, G29001806|G2901890, G29001807|G2901890, G29001808|G2901950, G29000700|G2901970, G29000300|G2901990, G29000300|G2902010, G29002200|G2902030, G29002500|G2902050, G29000300|G2902070, G29002300|G2902090, G29002700|G2902110, G29000100|G2902130, G29002700|G2902150, G29002500|G2902170, G29001200|G2902190, G29000400|G2902210, G29002100|G2902230, G29002400|G2902250, G29002601|G2902270, G29000100|G2902290, G29002500|G2905100, G29001901|G2905100, G29001902|G3000010, G30000300|G3000030, G30000600|G3000050, G30000400|G3000070, G30000300|G3000090, G30000500|G3000110, G30000600|G3000130, G30000400|G3000150, G30000400|G3000170, G30000600|G3000190, G30000600|G3000210, G30000600|G3000230, G30000300|G3000250, G30000600|G3000270, G30000400|G3000290, G30000100|G3000310, G30000500|G3000330, G30000600|G3000350, G30000100|G3000370, G30000600|G3000390, G30000300|G3000410, G30000400|G3000430, G30000300|G3000450, G30000400|G3000470, G30000200|G3000490, G30000300|G3000510, G30000400|G3000530, G30000100|G3000550, G30000600|G3000570, G30000300|G3000590, G30000400|G3000610, G30000200|G3000630, G30000200|G3000650, G30000600|G3000670, G30000500|G3000690, G30000400|G3000710, G30000600|G3000730, G30000400|G3000750, G30000600|G3000770, G30000300|G3000790, G30000600|G3000810, G30000200|G3000830, G30000600|G3000850, G30000600|G3000870, G30000600|G3000890, G30000200|G3000910, G30000600|G3000930, G30000300|G3000950, G30000500|G3000970, G30000500|G3000990, G30000400|G3001010, G30000400|G3001030, G30000600|G3001050, G30000600|G3001070, G30000400|G3001090, G30000600|G3001110, G30000600|G3001110, G30000700|G3100010, G31000500|G3100030, G31000200|G3100050, G31000400|G3100070, G31000100|G3100090, G31000300|G3100110, G31000200|G3100130, G31000100|G3100150, G31000100|G3100170, G31000100|G3100190, G31000500|G3100210, G31000200|G3100230, G31000600|G3100250, G31000701|G3100270, G31000200|G3100290, G31000400|G3100310, G31000100|G3100330, G31000100|G3100350, G31000500|G3100370, G31000200|G3100390, G31000200|G3100410, G31000300|G3100430, G31000200|G3100450, G31000100|G3100470, G31000400|G3100490, G31000100|G3100510, G31000200|G3100530, G31000701|G3100550, G31000901|G3100550, G31000902|G3100550, G31000903|G3100550, G31000904|G3100570, G31000400|G3100590, G31000600|G3100610, G31000500|G3100630, G31000400|G3100650, G31000400|G3100670, G31000600|G3100690, G31000100|G3100710, G31000300|G3100730, G31000400|G3100750, G31000400|G3100770, G31000300|G3100790, G31000300|G3100810, G31000300|G3100830, G31000500|G3100850, G31000400|G3100870, G31000400|G3100890, G31000100|G3100910, G31000400|G3100930, G31000300|G3100950, G31000600|G3100970, G31000600|G3100990, G31000500|G3101010, G31000400|G3101030, G31000100|G3101050, G31000100|G3101070, G31000200|G3101090, G31000801|G3101090, G31000802|G3101110, G31000400|G3101130, G31000400|G3101150, G31000300|G3101170, G31000400|G3101190, G31000200|G3101210, G31000300|G3101230, G31000100|G3101250, G31000200|G3101270, G31000600|G3101290, G31000500|G3101310, G31000600|G3101330, G31000600|G3101350, G31000400|G3101370, G31000500|G3101390, G31000200|G3101410, G31000200|G3101430, G31000600|G3101450, G31000400|G3101470, G31000600|G3101490, G31000100|G3101510, G31000600|G3101530, G31000702|G3101550, G31000701|G3101570, G31000100|G3101590, G31000600|G3101610, G31000100|G3101630, G31000300|G3101650, G31000100|G3101670, G31000200|G3101690, G31000600|G3101710, G31000400|G3101730, G31000200|G3101750, G31000300|G3101770, G31000701|G3101790, G31000200|G3101810, G31000500|G3101830, G31000300|G3101850, G31000600|G3200010, G32000300|G3200030, G32000401|G3200030, G32000402|G3200030, G32000403|G3200030, G32000404|G3200030, G32000405|G3200030, G32000406|G3200030, G32000407|G3200030, G32000408|G3200030, G32000409|G3200030, G32000410|G3200030, G32000411|G3200030, G32000412|G3200030, G32000413|G3200050, G32000200|G3200070, G32000300|G3200090, G32000300|G3200110, G32000300|G3200130, G32000300|G3200150, G32000300|G3200170, G32000300|G3200190, G32000200|G3200210, G32000300|G3200230, G32000300|G3200270, G32000300|G3200290, G32000200|G3200310, G32000101|G3200310, G32000102|G3200310, G32000103|G3200330, G32000300|G3205100, G32000200|G3300010, G33000200|G3300030, G33000200|G3300030, G33000300|G3300050, G33000500|G3300070, G33000100|G3300090, G33000100|G3300110, G33000600|G3300110, G33000700|G3300110, G33000800|G3300110, G33000900|G3300130, G33000200|G3300130, G33000400|G3300130, G33000700|G3300150, G33000300|G3300150, G33000700|G3300150, G33001000|G3300170, G33000300|G3300190, G33000500|G3400010, G34000101|G3400010, G34000102|G3400010, G34002600|G3400030, G34000301|G3400030, G34000302|G3400030, G34000303|G3400030, G34000304|G3400030, G34000305|G3400030, G34000306|G3400030, G34000307|G3400030, G34000308|G3400050, G34002001|G3400050, G34002002|G3400050, G34002003|G3400070, G34002101|G3400070, G34002102|G3400070, G34002103|G3400070, G34002104|G3400090, G34002600|G3400110, G34002400|G3400110, G34002500|G3400130, G34001301|G3400130, G34001302|G3400130, G34001401|G3400130, G34001402|G3400130, G34001403|G3400130, G34001404|G3400150, G34002201|G3400150, G34002202|G3400170, G34000601|G3400170, G34000602|G3400170, G34000701|G3400170, G34000702|G3400170, G34000703|G3400190, G34000800|G3400210, G34002301|G3400210, G34002302|G3400210, G34002303|G3400230, G34000901|G3400230, G34000902|G3400230, G34000903|G3400230, G34000904|G3400230, G34000905|G3400230, G34000906|G3400230, G34000907|G3400250, G34001101|G3400250, G34001102|G3400250, G34001103|G3400250, G34001104|G3400250, G34001105|G3400250, G34001106|G3400270, G34001501|G3400270, G34001502|G3400270, G34001503|G3400270, G34001504|G3400290, G34001201|G3400290, G34001202|G3400290, G34001203|G3400290, G34001204|G3400290, G34001205|G3400310, G34000400|G3400310, G34000501|G3400310, G34000502|G3400310, G34000503|G3400330, G34002500|G3400350, G34001001|G3400350, G34001002|G3400350, G34001003|G3400370, G34001600|G3400390, G34001800|G3400390, G34001901|G3400390, G34001902|G3400390, G34001903|G3400390, G34001904|G3400410, G34001700|G3500010, G35000700|G3500010, G35000801|G3500010, G35000802|G3500010, G35000803|G3500010, G35000804|G3500010, G35000805|G3500010, G35000806|G3500030, G35000900|G3500050, G35001100|G3500060, G35000100|G3500070, G35000400|G3500090, G35000400|G3500110, G35000400|G3500130, G35001001|G3500130, G35001002|G3500150, G35001200|G3500170, G35000900|G3500190, G35000400|G3500210, G35000400|G3500230, G35000900|G3500250, G35001200|G3500270, G35001100|G3500280, G35000300|G3500290, G35000900|G3500310, G35000100|G3500330, G35000300|G3500350, G35001100|G3500370, G35000400|G3500390, G35000300|G3500410, G35000400|G3500430, G35000600|G3500450, G35000100|G3500450, G35000200|G3500470, G35000300|G3500490, G35000500|G3500510, G35000900|G3500530, G35000900|G3500550, G35000300|G3500570, G35000900|G3500590, G35000400|G3500610, G35000700|G3600010, G36002001|G3600010, G36002002|G3600030, G36002500|G3600050, G36003701|G3600050, G36003702|G3600050, G36003703|G3600050, G36003704|G3600050, G36003705|G3600050, G36003706|G3600050, G36003707|G3600050, G36003708|G3600050, G36003709|G3600050, G36003710|G3600070, G36002201|G3600070, G36002202|G3600070, G36002203|G3600090, G36002500|G3600110, G36000704|G3600130, G36002600|G3600150, G36002401|G3600150, G36002402|G3600170, G36002203|G3600190, G36000200|G3600210, G36002100|G3600230, G36001500|G3600250, G36002203|G3600270, G36002801|G3600270, G36002802|G3600290, G36001201|G3600290, G36001202|G3600290, G36001203|G3600290, G36001204|G3600290, G36001205|G3600290, G36001206|G3600290, G36001207|G3600310, G36000200|G3600330, G36000200|G3600350, G36001600|G3600370, G36001000|G3600390, G36002100|G3600410, G36000200|G3600430, G36000401|G3600430, G36000403|G3600450, G36000500|G3600470, G36004001|G3600470, G36004002|G3600470, G36004003|G3600470, G36004004|G3600470, G36004005|G3600470, G36004006|G3600470, G36004007|G3600470, G36004008|G3600470, G36004009|G3600470, G36004010|G3600470, G36004011|G3600470, G36004012|G3600470, G36004013|G3600470, G36004014|G3600470, G36004015|G3600470, G36004016|G3600470, G36004017|G3600470, G36004018|G3600490, G36000500|G3600510, G36001300|G3600530, G36001500|G3600550, G36000901|G3600550, G36000902|G3600550, G36000903|G3600550, G36000904|G3600550, G36000905|G3600550, G36000906|G3600570, G36001600|G3600590, G36003201|G3600590, G36003202|G3600590, G36003203|G3600590, G36003204|G3600590, G36003205|G3600590, G36003206|G3600590, G36003207|G3600590, G36003208|G3600590, G36003209|G3600590, G36003210|G3600590, G36003211|G3600590, G36003212|G3600610, G36003801|G3600610, G36003802|G3600610, G36003803|G3600610, G36003804|G3600610, G36003805|G3600610, G36003806|G3600610, G36003807|G3600610, G36003808|G3600610, G36003809|G3600610, G36003810|G3600630, G36001101|G3600630, G36001102|G3600650, G36000401|G3600650, G36000402|G3600650, G36000403|G3600670, G36000701|G3600670, G36000702|G3600670, G36000703|G3600670, G36000704|G3600690, G36001400|G3600710, G36002901|G3600710, G36002902|G3600710, G36002903|G3600730, G36001000|G3600750, G36000600|G3600770, G36000403|G3600790, G36003101|G3600810, G36004101|G3600810, G36004102|G3600810, G36004103|G3600810, G36004104|G3600810, G36004105|G3600810, G36004106|G3600810, G36004107|G3600810, G36004108|G3600810, G36004109|G3600810, G36004110|G3600810, G36004111|G3600810, G36004112|G3600810, G36004113|G3600810, G36004114|G3600830, G36001900|G3600850, G36003901|G3600850, G36003902|G3600850, G36003903|G3600870, G36003001|G3600870, G36003002|G3600870, G36003003|G3600890, G36000100|G3600910, G36001801|G3600910, G36001802|G3600930, G36001700|G3600950, G36000403|G3600970, G36002402|G3600990, G36000800|G3601010, G36002401|G3601010, G36002402|G3601030, G36003301|G3601030, G36003302|G3601030, G36003303|G3601030, G36003304|G3601030, G36003305|G3601030, G36003306|G3601030, G36003307|G3601030, G36003308|G3601030, G36003309|G3601030, G36003310|G3601030, G36003311|G3601030, G36003312|G3601030, G36003313|G3601050, G36002701|G3601070, G36002202|G3601090, G36002300|G3601110, G36002701|G3601110, G36002702|G3601130, G36000300|G3601150, G36000300|G3601170, G36000800|G3601190, G36003101|G3601190, G36003102|G3601190, G36003103|G3601190, G36003104|G3601190, G36003105|G3601190, G36003106|G3601190, G36003107|G3601210, G36001300|G3601230, G36001400|G3700010, G37001600|G3700030, G37002000|G3700050, G37000200|G3700070, G37005300|G3700090, G37000100|G3700110, G37000100|G3700130, G37004400|G3700150, G37000800|G3700170, G37004900|G3700190, G37004800|G3700210, G37002201|G3700210, G37002202|G3700230, G37002100|G3700250, G37003200|G3700250, G37003300|G3700270, G37002000|G3700290, G37000700|G3700310, G37004400|G3700330, G37000400|G3700350, G37002800|G3700370, G37001500|G3700390, G37002400|G3700410, G37000700|G3700430, G37002400|G3700450, G37002600|G3700450, G37002700|G3700470, G37004900|G3700490, G37004300|G3700510, G37005001|G3700510, G37005002|G3700510, G37005003|G3700530, G37000700|G3700550, G37000800|G3700570, G37003500|G3700590, G37001900|G3700610, G37003900|G3700630, G37001301|G3700630, G37001302|G3700650, G37000900|G3700670, G37001801|G3700670, G37001802|G3700670, G37001803|G3700690, G37000500|G3700710, G37003001|G3700710, G37003002|G3700730, G37000700|G3700750, G37002300|G3700770, G37000400|G3700790, G37001000|G3700810, G37001701|G3700810, G37001702|G3700810, G37001703|G3700810, G37001704|G3700830, G37000600|G3700850, G37003800|G3700870, G37002300|G3700890, G37002500|G3700910, G37000600|G3700930, G37005200|G3700950, G37000800|G3700970, G37001900|G3700970, G37002900|G3700990, G37002300|G3700990, G37002400|G3701010, G37001100|G3701030, G37004100|G3701050, G37001500|G3701070, G37004100|G3701090, G37002700|G3701110, G37002100|G3701130, G37002400|G3701150, G37002300|G3701170, G37000800|G3701190, G37003101|G3701190, G37003102|G3701190, G37003103|G3701190, G37003104|G3701190, G37003105|G3701190, G37003106|G3701190, G37003107|G3701190, G37003108|G3701210, G37000100|G3701230, G37003700|G3701250, G37003700|G3701270, G37000900|G3701290, G37004600|G3701290, G37004700|G3701310, G37000600|G3701330, G37004100|G3701330, G37004500|G3701350, G37001400|G3701370, G37004400|G3701390, G37000700|G3701410, G37004600|G3701430, G37000700|G3701450, G37000400|G3701470, G37004200|G3701490, G37002600|G3701510, G37003600|G3701530, G37005200|G3701550, G37004900|G3701550, G37005100|G3701570, G37000300|G3701590, G37003400|G3701610, G37002600|G3701630, G37003900|G3701650, G37005200|G3701670, G37003300|G3701690, G37000300|G3701710, G37000200|G3701730, G37002300|G3701750, G37002500|G3701770, G37000800|G3701790, G37005300|G3701790, G37005400|G3701810, G37000500|G3701830, G37001201|G3701830, G37001202|G3701830, G37001203|G3701830, G37001204|G3701830, G37001205|G3701830, G37001206|G3701830, G37001207|G3701830, G37001208|G3701850, G37000500|G3701850, G37000600|G3701870, G37000800|G3701890, G37000100|G3701910, G37004000|G3701930, G37000200|G3701950, G37001000|G3701970, G37001900|G3701990, G37000100|G3800010, G38000100|G3800030, G38000200|G3800050, G38000200|G3800070, G38000100|G3800090, G38000200|G3800110, G38000100|G3800130, G38000100|G3800150, G38000300|G3800170, G38000500|G3800190, G38000400" -in.county_and_puma metadata_and_annual n/a string "G3800210, G38000200|G3800230, G38000100|G3800250, G38000100|G3800270, G38000200|G3800290, G38000300|G3800310, G38000200|G3800330, G38000100|G3800350, G38000400|G3800370, G38000100|G3800390, G38000400|G3800410, G38000100|G3800430, G38000300|G3800450, G38000200|G3800470, G38000300|G3800490, G38000100|G3800510, G38000300|G3800530, G38000100|G3800550, G38000100|G3800570, G38000100|G3800590, G38000300|G3800610, G38000100|G3800630, G38000200|G3800650, G38000100|G3800670, G38000400|G3800690, G38000200|G3800710, G38000200|G3800730, G38000200|G3800750, G38000100|G3800770, G38000200|G3800790, G38000200|G3800810, G38000200|G3800830, G38000200|G3800850, G38000100|G3800870, G38000100|G3800890, G38000100|G3800910, G38000400|G3800930, G38000200|G3800950, G38000400|G3800970, G38000400|G3800990, G38000400|G3801010, G38000100|G3801030, G38000200|G3801050, G38000100|G3900010, G39005200|G3900030, G39002500|G3900050, G39002100|G3900070, G39001300|G3900090, G39005000|G3900110, G39002600|G3900130, G39003500|G3900150, G39005700|G3900170, G39005401|G3900170, G39005402|G3900170, G39005403|G3900190, G39003300|G3900210, G39002700|G3900230, G39004300|G3900250, G39005600|G3900250, G39005700|G3900270, G39005200|G3900290, G39003400|G3900310, G39002900|G3900330, G39002300|G3900350, G39000901|G3900350, G39000902|G3900350, G39000903|G3900350, G39000904|G3900350, G39000905|G3900350, G39000906|G3900350, G39000907|G3900350, G39000908|G3900350, G39000909|G3900350, G39000910|G3900370, G39004500|G3900390, G39000100|G3900410, G39004000|G3900430, G39000700|G3900450, G39003900|G3900470, G39004800|G3900490, G39004101|G3900490, G39004102|G3900490, G39004103|G3900490, G39004104|G3900490, G39004105|G3900490, G39004106|G3900490, G39004107|G3900490, G39004108|G3900490, G39004109|G3900490, G39004110|G3900490, G39004111|G3900510, G39000200|G3900530, G39005000|G3900550, G39001200|G3900570, G39004700|G3900590, G39002900|G3900610, G39005501|G3900610, G39005502|G3900610, G39005503|G3900610, G39005504|G3900610, G39005505|G3900610, G39005506|G3900610, G39005507|G3900630, G39002400|G3900650, G39002700|G3900670, G39003000|G3900690, G39000100|G3900710, G39005200|G3900730, G39004900|G3900750, G39002900|G3900770, G39002100|G3900790, G39004900|G3900810, G39003500|G3900830, G39002800|G3900850, G39001000|G3900850, G39001100|G3900850, G39001200|G3900870, G39005100|G3900890, G39003800|G3900910, G39002700|G3900930, G39000801|G3900930, G39000802|G3900950, G39000200|G3900950, G39000300|G3900950, G39000400|G3900950, G39000500|G3900950, G39000600|G3900970, G39004200|G3900990, G39001400|G3900990, G39001500|G3901010, G39002800|G3901030, G39001900|G3901050, G39005000|G3901070, G39002600|G3901090, G39004400|G3901110, G39003600|G3901130, G39004601|G3901130, G39004602|G3901130, G39004603|G3901130, G39004604|G3901150, G39003600|G3901170, G39002800|G3901190, G39003700|G3901210, G39003600|G3901230, G39000600|G3901250, G39000100|G3901270, G39003700|G3901290, G39004200|G3901310, G39004900|G3901330, G39001700|G3901350, G39004500|G3901370, G39002400|G3901390, G39002200|G3901410, G39004800|G3901430, G39000700|G3901450, G39005100|G3901470, G39002300|G3901490, G39004500|G3901510, G39003100|G3901510, G39003200|G3901510, G39003300|G3901530, G39001801|G3901530, G39001802|G3901530, G39001803|G3901530, G39001804|G3901530, G39001805|G3901550, G39001400|G3901550, G39001600|G3901570, G39003000|G3901590, G39004200|G3901610, G39002600|G3901630, G39004900|G3901650, G39005301|G3901650, G39005302|G3901670, G39003600|G3901690, G39002000|G3901710, G39000100|G3901730, G39000200|G3901730, G39000300|G3901730, G39000600|G3901750, G39002300|G4000010, G40000200|G4000030, G40000500|G4000050, G40000702|G4000070, G40000500|G4000090, G40000400|G4000110, G40000500|G4000130, G40000702|G4000150, G40000602|G4000170, G40000800|G4000190, G40000701|G4000210, G40000200|G4000230, G40000300|G4000250, G40000500|G4000270, G40000900|G4000290, G40000702|G4000310, G40000601|G4000310, G40000602|G4000330, G40000602|G4000350, G40000100|G4000370, G40001204|G4000370, G40001501|G4000370, G40001601|G4000390, G40000400|G4000410, G40000100|G4000430, G40000500|G4000450, G40000500|G4000470, G40001400|G4000490, G40000701|G4000510, G40001101|G4000530, G40000500|G4000550, G40000400|G4000570, G40000400|G4000590, G40000500|G4000610, G40000300|G4000630, G40001501|G4000650, G40000400|G4000670, G40000602|G4000690, G40000702|G4000710, G40001400|G4000730, G40000500|G4000750, G40000400|G4000770, G40000300|G4000790, G40000300|G4000810, G40001102|G4000830, G40001102|G4000850, G40000701|G4000870, G40001101|G4000890, G40000300|G4000910, G40001302|G4000930, G40000500|G4000950, G40000702|G4000970, G40000100|G4000990, G40000701|G4001010, G40001302|G4001030, G40001400|G4001050, G40000100|G4001070, G40001501|G4001090, G40001001|G4001090, G40001002|G4001090, G40001003|G4001090, G40001004|G4001090, G40001005|G4001090, G40001006|G4001110, G40001302|G4001130, G40001204|G4001130, G40001601|G4001150, G40000100|G4001170, G40001601|G4001190, G40001501|G4001210, G40000300|G4001230, G40000701|G4001230, G40000702|G4001250, G40001101|G4001250, G40001102|G4001270, G40000300|G4001290, G40000400|G4001310, G40000100|G4001310, G40001301|G4001330, G40001501|G4001350, G40000200|G4001370, G40000602|G4001390, G40000500|G4001410, G40000602|G4001430, G40001201|G4001430, G40001202|G4001430, G40001203|G4001430, G40001204|G4001450, G40001301|G4001450, G40001302|G4001470, G40001601|G4001490, G40000400|G4001510, G40000500|G4001530, G40000500|G4100010, G41000100|G4100030, G41000600|G4100050, G41001317|G4100050, G41001318|G4100050, G41001319|G4100070, G41000500|G4100090, G41000500|G4100110, G41000800|G4100130, G41000200|G4100150, G41000800|G4100170, G41000400|G4100190, G41001000|G4100210, G41000200|G4100230, G41000200|G4100250, G41000300|G4100270, G41000200|G4100290, G41000901|G4100290, G41000902|G4100310, G41000200|G4100330, G41000800|G4100350, G41000300|G4100370, G41000300|G4100390, G41000703|G4100390, G41000704|G4100390, G41000705|G4100410, G41000500|G4100430, G41000600|G4100450, G41000300|G4100470, G41001103|G4100470, G41001104|G4100470, G41001105|G4100490, G41000200|G4100510, G41001301|G4100510, G41001302|G4100510, G41001303|G4100510, G41001305|G4100510, G41001314|G4100510, G41001316|G4100530, G41001200|G4100550, G41000200|G4100570, G41000500|G4100590, G41000100|G4100610, G41000100|G4100630, G41000100|G4100650, G41000200|G4100670, G41001320|G4100670, G41001321|G4100670, G41001322|G4100670, G41001323|G4100670, G41001324|G4100690, G41000200|G4100710, G41001200|G4200010, G42003701|G4200030, G42001701|G4200030, G42001702|G4200030, G42001801|G4200030, G42001802|G4200030, G42001803|G4200030, G42001804|G4200030, G42001805|G4200030, G42001806|G4200030, G42001807|G4200050, G42001900|G4200070, G42001501|G4200070, G42001502|G4200090, G42003800|G4200110, G42002701|G4200110, G42002702|G4200110, G42002703|G4200130, G42002200|G4200150, G42000400|G4200170, G42003001|G4200170, G42003002|G4200170, G42003003|G4200170, G42003004|G4200190, G42001600|G4200210, G42002100|G4200230, G42000300|G4200250, G42002801|G4200270, G42001200|G4200290, G42003401|G4200290, G42003402|G4200290, G42003403|G4200290, G42003404|G4200310, G42001300|G4200330, G42000300|G4200350, G42000900|G4200370, G42000803|G4200390, G42000200|G4200410, G42002301|G4200410, G42002302|G4200430, G42002401|G4200430, G42002402|G4200450, G42003301|G4200450, G42003302|G4200450, G42003303|G4200450, G42003304|G4200470, G42000300|G4200490, G42000101|G4200490, G42000102|G4200510, G42003900|G4200530, G42001300|G4200550, G42003701|G4200550, G42003702|G4200570, G42003800|G4200590, G42004002|G4200610, G42002200|G4200630, G42001900|G4200650, G42001300|G4200670, G42001100|G4200690, G42000701|G4200690, G42000702|G4200710, G42003501|G4200710, G42003502|G4200710, G42003503|G4200710, G42003504|G4200730, G42001501|G4200750, G42002500|G4200770, G42002801|G4200770, G42002802|G4200770, G42002803|G4200770, G42002901|G4200790, G42000801|G4200790, G42000802|G4200790, G42000803|G4200810, G42000900|G4200830, G42000300|G4200850, G42001400|G4200870, G42001100|G4200890, G42000600|G4200910, G42003101|G4200910, G42003102|G4200910, G42003103|G4200910, G42003104|G4200910, G42003105|G4200910, G42003106|G4200930, G42001000|G4200950, G42002901|G4200950, G42002902|G4200970, G42001000|G4200990, G42002301|G4201010, G42003201|G4201010, G42003202|G4201010, G42003203|G4201010, G42003204|G4201010, G42003205|G4201010, G42003206|G4201010, G42003207|G4201010, G42003208|G4201010, G42003209|G4201010, G42003210|G4201010, G42003211|G4201030, G42000500|G4201050, G42000300|G4201070, G42002600|G4201090, G42001100|G4201110, G42003800|G4201130, G42000400|G4201150, G42000500|G4201170, G42000400|G4201190, G42001100|G4201210, G42001300|G4201230, G42000200|G4201250, G42004001|G4201250, G42004002|G4201270, G42000500|G4201290, G42002001|G4201290, G42002002|G4201290, G42002003|G4201310, G42000702|G4201330, G42003601|G4201330, G42003602|G4201330, G42003603|G4400010, G44000300|G4400030, G44000201|G4400050, G44000300|G4400070, G44000101|G4400070, G44000102|G4400070, G44000103|G4400070, G44000104|G4400090, G44000400|G4500010, G45001600|G4500030, G45001500|G4500050, G45001300|G4500070, G45000200|G4500090, G45001300|G4500110, G45001300|G4500130, G45001400|G4500150, G45001201|G4500150, G45001202|G4500150, G45001203|G4500150, G45001204|G4500170, G45000605|G4500190, G45001201|G4500190, G45001202|G4500190, G45001203|G4500190, G45001204|G4500210, G45000400|G4500230, G45000400|G4500250, G45000700|G4500270, G45000800|G4500290, G45001300|G4500310, G45000900|G4500330, G45001000|G4500350, G45001201|G4500350, G45001204|G4500370, G45001500|G4500390, G45000603|G4500410, G45000900|G4500430, G45001000|G4500450, G45000102|G4500450, G45000103|G4500450, G45000104|G4500450, G45000105|G4500470, G45001600|G4500490, G45001300|G4500510, G45001101|G4500510, G45001102|G4500530, G45001400|G4500550, G45000605|G4500570, G45000700|G4500590, G45000105|G4500610, G45000800|G4500630, G45000601|G4500630, G45000602|G4500650, G45001600|G4500670, G45001000|G4500690, G45000700|G4500710, G45000400|G4500730, G45000101|G4500750, G45001300|G4500770, G45000101|G4500790, G45000603|G4500790, G45000604|G4500790, G45000605|G4500810, G45000601|G4500830, G45000301|G4500830, G45000302|G4500850, G45000800|G4500870, G45000400|G4500890, G45000800|G4500910, G45000501|G4500910, G45000502|G4600030, G46000400|G4600050, G46000400|G4600070, G46000200|G4600090, G46000400|G4600110, G46000400|G4600130, G46000300|G4600150, G46000400|G4600170, G46000200|G4600190, G46000100|G4600210, G46000300|G4600230, G46000200|G4600250, G46000300|G4600270, G46000500|G4600290, G46000300|G4600310, G46000200|G4600330, G46000100|G4600350, G46000400|G4600370, G46000300|G4600390, G46000300|G4600410, G46000200|G4600430, G46000400|G4600450, G46000300|G4600470, G46000200|G4600490, G46000300|G4600510, G46000300|G4600530, G46000200|G4600550, G46000200|G4600570, G46000300|G4600590, G46000400|G4600610, G46000400|G4600630, G46000100|G4600650, G46000200|G4600670, G46000400|G4600690, G46000200|G4600710, G46000200|G4600730, G46000400|G4600750, G46000200|G4600770, G46000400|G4600790, G46000400|G4600810, G46000100|G4600830, G46000500|G4600830, G46000600|G4600850, G46000200|G4600870, G46000500|G4600890, G46000300|G4600910, G46000300|G4600930, G46000100|G4600950, G46000200|G4600970, G46000400|G4600990, G46000500|G4600990, G46000600|G4601010, G46000400|G4601020, G46000200|G4601030, G46000100|G4601050, G46000100|G4601070, G46000300|G4601090, G46000300|G4601110, G46000400|G4601150, G46000300|G4601170, G46000200|G4601190, G46000200|G4601210, G46000200|G4601230, G46000200|G4601250, G46000500|G4601270, G46000500|G4601290, G46000300|G4601350, G46000500|G4601370, G46000200|G4700010, G47001601|G4700030, G47002700|G4700050, G47000200|G4700070, G47002100|G4700090, G47001700|G4700110, G47001900|G4700130, G47000900|G4700150, G47000600|G4700170, G47000200|G4700190, G47001200|G4700210, G47000400|G4700230, G47003000|G4700250, G47000900|G4700270, G47000700|G4700290, G47001400|G4700310, G47002200|G4700330, G47000100|G4700350, G47000800|G4700370, G47002501|G4700370, G47002502|G4700370, G47002503|G4700370, G47002504|G4700370, G47002505|G4700390, G47002900|G4700410, G47000600|G4700430, G47000400|G4700450, G47000100|G4700470, G47003100|G4700490, G47000800|G4700510, G47002200|G4700530, G47000100|G4700550, G47002800|G4700570, G47001400|G4700590, G47001200|G4700610, G47002100|G4700630, G47001400|G4700650, G47002001|G4700650, G47002002|G4700650, G47002003|G4700670, G47000900|G4700690, G47002900|G4700710, G47002900|G4700730, G47001000|G4700750, G47002900|G4700770, G47002900|G4700790, G47000200|G4700810, G47000400|G4700830, G47000200|G4700850, G47000200|G4700870, G47000700|G4700890, G47001500|G4700910, G47001200|G4700930, G47001601|G4700930, G47001602|G4700930, G47001603|G4700930, G47001604|G4700950, G47000100|G4700970, G47003100|G4700990, G47002800|G4701010, G47002800|G4701030, G47002200|G4701050, G47001800|G4701070, G47001900|G4701090, G47002900|G4701110, G47000600|G4701130, G47003000|G4701150, G47002100|G4701170, G47002700|G4701190, G47002700|G4701210, G47002100|G4701230, G47001800|G4701250, G47000300|G4701270, G47002200|G4701290, G47000900|G4701310, G47000100|G4701330, G47000700|G4701350, G47002800|G4701370, G47000700|G4701390, G47001900|G4701410, G47000700|G4701430, G47002100|G4701450, G47001800|G4701470, G47000400|G4701490, G47002401|G4701490, G47002402|G4701510, G47000900|G4701530, G47002100|G4701550, G47001500|G4701570, G47003201|G4701570, G47003202|G4701570, G47003203|G4701570, G47003204|G4701570, G47003205|G4701570, G47003206|G4701570, G47003207|G4701570, G47003208|G4701590, G47000600|G4701610, G47000300|G4701630, G47001000|G4701630, G47001100|G4701650, G47000500|G4701670, G47003100|G4701690, G47000600|G4701710, G47001200|G4701730, G47001601|G4701750, G47000800|G4701770, G47000600|G4701790, G47001300|G4701810, G47002800|G4701830, G47000200|G4701850, G47000800|G4701870, G47002600|G4701890, G47002300|G4800010, G48001800|G4800030, G48003200|G4800050, G48004000|G4800070, G48006500|G4800090, G48000600|G4800110, G48000100|G4800130, G48006100|G4800150, G48005000|G4800170, G48000400|G4800190, G48006100|G4800210, G48005100|G4800230, G48000600|G4800250, G48006500|G4800270, G48003501|G4800270, G48003502|G4800290, G48005901|G4800290, G48005902|G4800290, G48005903|G4800290, G48005904|G4800290, G48005905|G4800290, G48005906|G4800290, G48005907|G4800290, G48005908|G4800290, G48005909|G4800290, G48005910|G4800290, G48005911|G4800290, G48005912|G4800290, G48005913|G4800290, G48005914|G4800290, G48005915|G4800290, G48005916|G4800310, G48006000|G4800330, G48002800|G4800350, G48003700|G4800370, G48001100|G4800390, G48004801|G4800390, G48004802|G4800390, G48004803|G4800410, G48003602|G4800430, G48003200|G4800450, G48000100|G4800470, G48006900|G4800490, G48002600|G4800510, G48003601|G4800530, G48003400|G4800550, G48005100|G4800570, G48005600|G4800590, G48002600|G4800610, G48006701|G4800610, G48006702|G4800610, G48006703|G4800630, G48001300|G4800650, G48000100|G4800670, G48001100|G4800690, G48000100|G4800710, G48004400|G4800730, G48001700|G4800750, G48000100|G4800770, G48000600|G4800790, G48000400|G4800810, G48002800|G4800830, G48002600|G4800850, G48001901|G4800850, G48001902|G4800850, G48001903|G4800850, G48001904|G4800850, G48001905|G4800850, G48001906|G4800850, G48001907|G4800870, G48000100|G4800890, G48005000|G4800910, G48005800|G4800930, G48002600|G4800950, G48002800|G4800970, G48000800|G4800990, G48003400|G4801010, G48000600|G4801030, G48003200|G4801050, G48002800|G4801070, G48000400|G4801090, G48003200|G4801110, G48000100|G4801130, G48002301|G4801130, G48002302|G4801130, G48002303|G4801130, G48002304|G4801130, G48002305|G4801130, G48002306|G4801130, G48002307|G4801130, G48002308|G4801130, G48002309|G4801130, G48002310|G4801130, G48002311|G4801130, G48002312|G4801130, G48002313|G4801130, G48002314|G4801130, G48002315|G4801130, G48002316|G4801130, G48002317|G4801130, G48002318|G4801130, G48002319|G4801130, G48002320|G4801130, G48002321|G4801130, G48002322|G4801150, G48002800|G4801170, G48000100|G4801190, G48001000|G4801210, G48002001|G4801210, G48002002|G4801210, G48002003|G4801210, G48002004|G4801210, G48002005|G4801210, G48002006|G4801230, G48005500|G4801250, G48000400|G4801270, G48006200|G4801290, G48000100|G4801310, G48006400|G4801330, G48002600|G4801350, G48003100|G4801370, G48006200|G4801390, G48002101|G4801410, G48003301|G4801410, G48003302|G4801410, G48003303|G4801410, G48003304|G4801410, G48003305|G4801410, G48003306|G4801430, G48002200|G4801450, G48003700|G4801470, G48000800|G4801490, G48005100|G4801510, G48002600|G4801530, G48000400|G4801550, G48000600|G4801570, G48004901|G4801570, G48004902|G4801570, G48004903|G4801570, G48004904|G4801570, G48004905|G4801590, G48001000|G4801610, G48003700|G4801630, G48006100|G4801650, G48003200|G4801670, G48004701|G4801670, G48004702|G4801690, G48000400|G4801710, G48006000|G4801730, G48002800|G4801750, G48005500|G4801770, G48005500|G4801790, G48000100|G4801810, G48000800|G4801830, G48001600|G4801850, G48003601|G4801870, G48005700|G4801890, G48000400|G4801910, G48000100|G4801930, G48003400|G4801950, G48000100|G4801970, G48000600|G4801990, G48004200|G4802010, G48004601|G4802010, G48004602|G4802010, G48004603|G4802010, G48004604|G4802010, G48004605|G4802010, G48004606|G4802010, G48004607|G4802010, G48004608|G4802010, G48004609|G4802010, G48004610|G4802010, G48004611|G4802010, G48004612|G4802010, G48004613|G4802010, G48004614|G4802010, G48004615|G4802010, G48004616|G4802010, G48004617|G4802010, G48004618|G4802010, G48004619|G4802010, G48004620|G4802010, G48004621|G4802010, G48004622|G4802010, G48004623|G4802010, G48004624|G4802010, G48004625|G4802010, G48004626|G4802010, G48004627|G4802010, G48004628|G4802010, G48004629|G4802010, G48004630|G4802010, G48004631|G4802010, G48004632|G4802010, G48004633|G4802010, G48004634|G4802010, G48004635|G4802010, G48004636|G4802010, G48004637|G4802010, G48004638|G4802030, G48001200|G4802050, G48000100|G4802070, G48002600|G4802090, G48005400|G4802110, G48000100|G4802130, G48001800|G4802150, G48006801|G4802150, G48006802|G4802150, G48006803|G4802150, G48006804|G4802150, G48006805|G4802150, G48006806|G4802150, G48006807|G4802170, G48003700|G4802190, G48000400|G4802210, G48002200|G4802230, G48001000|G4802250, G48003900|G4802270, G48002800|G4802290, G48003200|G4802310, G48000900|G4802330, G48000100|G4802350, G48002800|G4802370, G48000600|G4802390, G48005500|G4802410, G48004100|G4802430, G48003200|G4802450, G48004301|G4802450, G48004302|G4802470, G48006400|G4802490, G48006900|G4802510, G48002102|G4802530, G48002600|G4802550, G48005500|G4802570, G48001400|G4802590, G48006000|G4802610, G48006900|G4802630, G48002600|G4802650, G48006000|G4802670, G48002800|G4802690, G48000400|G4802710, G48006200|G4802730, G48006900|G4802750, G48002600|G4802770, G48001000|G4802790, G48000400|G4802810, G48003400|G4802830, G48006200|G4802850, G48005500|G4802870, G48005100|G4802890, G48003601|G4802910, G48004400|G4802930, G48003700|G4802950, G48000100|G4802970, G48006400|G4802990, G48003400|G4803030, G48000501|G4803030, G48000502|G4803050, G48000400|G4803070, G48002800|G4803090, G48003801|G4803090, G48003802|G4803110, G48006400|G4803130, G48003601|G4803150, G48001200|G4803170, G48002800|G4803190, G48002800|G4803210, G48005000|G4803230, G48006200|G4803250, G48006100|G4803270, G48002800|G4803290, G48003000|G4803310, G48003601|G4803330, G48003400|G4803350, G48002600|G4803370, G48000600|G4803390, G48004501|G4803390, G48004502|G4803390, G48004503|G4803390, G48004504|G4803410, G48000100|G4803430, G48001000|G4803450, G48000400|G4803470, G48004000|G4803490, G48003700|G4803510, G48004100|G4803530, G48002600|G4803550, G48006601|G4803550, G48006602|G4803550, G48006603|G4803570, G48000100|G4803590, G48000100|G4803610, G48004200|G4803630, G48002200|G4803650, G48001700|G4803670, G48002400|G4803690, G48000100|G4803710, G48003200|G4803730, G48003900|G4803750, G48000200|G4803770, G48003200|G4803790, G48001300|G4803810, G48000300" -in.county_and_puma metadata_and_annual n/a string "G4803830, G48002800|G4803850, G48006200|G4803870, G48001000|G4803890, G48003200|G4803910, G48006500|G4803930, G48000100|G4803950, G48003601|G4803970, G48000900|G4803990, G48002600|G4804010, G48001700|G4804030, G48004100|G4804050, G48004100|G4804070, G48003900|G4804090, G48006500|G4804110, G48003400|G4804130, G48002800|G4804150, G48002600|G4804170, G48002600|G4804190, G48004100|G4804210, G48000100|G4804230, G48001501|G4804230, G48001502|G4804250, G48002200|G4804270, G48006400|G4804290, G48002600|G4804310, G48002800|G4804330, G48002600|G4804350, G48002800|G4804370, G48000100|G4804390, G48002501|G4804390, G48002502|G4804390, G48002503|G4804390, G48002504|G4804390, G48002505|G4804390, G48002506|G4804390, G48002507|G4804390, G48002508|G4804390, G48002509|G4804390, G48002510|G4804390, G48002511|G4804390, G48002512|G4804390, G48002513|G4804390, G48002514|G4804390, G48002515|G4804390, G48002516|G4804410, G48002700|G4804430, G48003200|G4804450, G48000400|G4804470, G48002600|G4804490, G48001000|G4804510, G48002900|G4804530, G48005301|G4804530, G48005302|G4804530, G48005303|G4804530, G48005304|G4804530, G48005305|G4804530, G48005306|G4804530, G48005307|G4804530, G48005308|G4804530, G48005309|G4804550, G48003900|G4804570, G48004100|G4804590, G48001200|G4804610, G48002800|G4804630, G48006200|G4804650, G48006200|G4804670, G48001300|G4804690, G48005600|G4804710, G48003900|G4804730, G48005000|G4804750, G48003200|G4804770, G48003601|G4804790, G48006301|G4804790, G48006302|G4804810, G48005000|G4804830, G48000100|G4804850, G48000700|G4804870, G48000600|G4804890, G48006900|G4804910, G48005201|G4804910, G48005202|G4804910, G48005203|G4804910, G48005204|G4804930, G48005500|G4804950, G48003200|G4804970, G48000600|G4804990, G48001300|G4805010, G48000400|G4805030, G48000600|G4805050, G48006400|G4805070, G48006200|G4900010, G49021001|G4900030, G49003001|G4900050, G49005001|G4900070, G49013001|G4900090, G49013001|G4900110, G49011001|G4900110, G49011002|G4900130, G49013001|G4900150, G49013001|G4900170, G49021001|G4900190, G49013001|G4900210, G49021001|G4900230, G49021001|G4900250, G49021001|G4900270, G49021001|G4900290, G49005001|G4900310, G49021001|G4900330, G49005001|G4900350, G49035001|G4900350, G49035002|G4900350, G49035003|G4900350, G49035004|G4900350, G49035005|G4900350, G49035006|G4900350, G49035007|G4900350, G49035008|G4900350, G49035009|G4900370, G49013001|G4900390, G49021001|G4900410, G49021001|G4900430, G49005001|G4900450, G49003001|G4900470, G49013001|G4900490, G49049001|G4900490, G49049002|G4900490, G49049003|G4900490, G49049004|G4900510, G49013001|G4900530, G49053001|G4900550, G49021001|G4900570, G49057001|G4900570, G49057002|G5000010, G50000400|G5000030, G50000400|G5000050, G50000200|G5000070, G50000100|G5000090, G50000200|G5000110, G50000100|G5000130, G50000100|G5000150, G50000200|G5000170, G50000300|G5000190, G50000200|G5000210, G50000400|G5000230, G50000200|G5000250, G50000300|G5000270, G50000300|G5100010, G51051125|G5100030, G51051089|G5100030, G51051090|G5100050, G51051045|G5100070, G51051105|G5100090, G51051095|G5100110, G51051095|G5100130, G51001301|G5100130, G51001302|G5100150, G51051080|G5100170, G51051080|G5100190, G51051095|G5100210, G51051020|G5100230, G51051045|G5100250, G51051105|G5100270, G51051010|G5100290, G51051105|G5100310, G51051096|G5100330, G51051120|G5100350, G51051020|G5100360, G51051215|G5100370, G51051105|G5100410, G51004101|G5100410, G51004102|G5100410, G51004103|G5100430, G51051084|G5100450, G51051045|G5100470, G51051087|G5100490, G51051105|G5100510, G51051010|G5100530, G51051135|G5100570, G51051125|G5100590, G51059301|G5100590, G51059302|G5100590, G51059303|G5100590, G51059304|G5100590, G51059305|G5100590, G51059306|G5100590, G51059307|G5100590, G51059308|G5100590, G51059309|G5100610, G51051087|G5100630, G51051040|G5100650, G51051089|G5100670, G51051045|G5100690, G51051084|G5100710, G51051040|G5100730, G51051125|G5100750, G51051215|G5100770, G51051020|G5100790, G51051090|G5100810, G51051135|G5100830, G51051105|G5100850, G51051215|G5100870, G51051224|G5100870, G51051225|G5100890, G51051097|G5100910, G51051080|G5100930, G51051145|G5100950, G51051206|G5100970, G51051125|G5100990, G51051120|G5101010, G51051215|G5101030, G51051125|G5101050, G51051010|G5101070, G51010701|G5101070, G51010702|G5101070, G51010703|G5101090, G51051089|G5101110, G51051105|G5101130, G51051087|G5101150, G51051125|G5101170, G51051105|G5101190, G51051125|G5101210, G51051040|G5101250, G51051089|G5101270, G51051215|G5101310, G51051125|G5101330, G51051125|G5101350, G51051105|G5101370, G51051087|G5101390, G51051085|G5101410, G51051097|G5101430, G51051097|G5101450, G51051215|G5101470, G51051105|G5101490, G51051135|G5101530, G51051244|G5101530, G51051245|G5101530, G51051246|G5101550, G51051040|G5101570, G51051087|G5101590, G51051125|G5101610, G51051044|G5101610, G51051045|G5101630, G51051080|G5101650, G51051110|G5101670, G51051010|G5101690, G51051010|G5101710, G51051085|G5101730, G51051020|G5101750, G51051145|G5101770, G51051120|G5101790, G51051115|G5101810, G51051135|G5101830, G51051135|G5101850, G51051010|G5101870, G51051085|G5101910, G51051020|G5101930, G51051125|G5101950, G51051010|G5101970, G51051020|G5101990, G51051206|G5105100, G51051255|G5105200, G51051020|G5105300, G51051080|G5105400, G51051090|G5105500, G51055001|G5105500, G51055002|G5105700, G51051135|G5105800, G51051045|G5105900, G51051097|G5105950, G51051135|G5106000, G51059303|G5106100, G51059308|G5106200, G51051145|G5106300, G51051115|G5106400, G51051020|G5106500, G51051186|G5106600, G51051110|G5106700, G51051135|G5106780, G51051080|G5106800, G51051096|G5106830, G51051245|G5106850, G51051245|G5106900, G51051097|G5107000, G51051175|G5107100, G51051154|G5107100, G51051155|G5107200, G51051010|G5107300, G51051135|G5107350, G51051206|G5107400, G51051155|G5107500, G51051040|G5107600, G51051235|G5107700, G51051044|G5107750, G51051044|G5107900, G51051080|G5108000, G51051145|G5108100, G51051164|G5108100, G51051165|G5108100, G51051167|G5108200, G51051080|G5108300, G51051206|G5108400, G51051084|G5300010, G53010600|G5300030, G53010600|G5300050, G53010701|G5300050, G53010702|G5300050, G53010703|G5300070, G53010300|G5300090, G53011900|G5300110, G53011101|G5300110, G53011102|G5300110, G53011103|G5300110, G53011104|G5300130, G53010600|G5300150, G53011200|G5300170, G53010300|G5300190, G53010400|G5300210, G53010701|G5300210, G53010703|G5300230, G53010600|G5300250, G53010800|G5300270, G53011300|G5300290, G53010200|G5300310, G53011900|G5300330, G53011601|G5300330, G53011602|G5300330, G53011603|G5300330, G53011604|G5300330, G53011605|G5300330, G53011606|G5300330, G53011607|G5300330, G53011608|G5300330, G53011609|G5300330, G53011610|G5300330, G53011611|G5300330, G53011612|G5300330, G53011613|G5300330, G53011614|G5300330, G53011615|G5300330, G53011616|G5300350, G53011801|G5300350, G53011802|G5300370, G53010800|G5300390, G53011000|G5300410, G53011000|G5300430, G53010600|G5300450, G53011300|G5300470, G53010400|G5300490, G53011200|G5300510, G53010400|G5300530, G53011501|G5300530, G53011502|G5300530, G53011503|G5300530, G53011504|G5300530, G53011505|G5300530, G53011506|G5300530, G53011507|G5300550, G53010200|G5300570, G53010200|G5300590, G53011000|G5300610, G53011701|G5300610, G53011702|G5300610, G53011703|G5300610, G53011704|G5300610, G53011705|G5300610, G53011706|G5300630, G53010501|G5300630, G53010502|G5300630, G53010503|G5300630, G53010504|G5300650, G53010400|G5300670, G53011401|G5300670, G53011402|G5300690, G53011200|G5300710, G53010703|G5300730, G53010100|G5300750, G53010600|G5300770, G53010901|G5300770, G53010902|G5400010, G54000500|G5400030, G54000400|G5400050, G54000900|G5400070, G54000600|G5400090, G54000100|G5400110, G54000800|G5400130, G54000600|G5400150, G54001000|G5400170, G54000200|G5400190, G54001200|G5400210, G54000600|G5400230, G54000500|G5400250, G54001100|G5400270, G54000400|G5400290, G54000100|G5400310, G54000500|G5400330, G54000200|G5400350, G54000600|G5400370, G54000400|G5400390, G54001000|G5400410, G54000500|G5400430, G54000900|G5400450, G54001300|G5400470, G54001300|G5400490, G54000200|G5400510, G54000100|G5400530, G54000800|G5400550, G54001200|G5400570, G54000400|G5400590, G54001300|G5400610, G54000300|G5400630, G54001100|G5400650, G54000400|G5400670, G54001100|G5400690, G54000100|G5400710, G54000500|G5400730, G54000700|G5400750, G54001100|G5400770, G54000300|G5400790, G54000900|G5400810, G54001200|G5400830, G54000500|G5400850, G54000600|G5400870, G54000600|G5400890, G54001100|G5400910, G54000200|G5400930, G54000500|G5400950, G54000600|G5400970, G54000500|G5400990, G54000800|G5401010, G54001100|G5401030, G54000600|G5401050, G54000700|G5401070, G54000700|G5401090, G54001300|G5500010, G55001601|G5500030, G55000100|G5500050, G55055101|G5500070, G55000100|G5500090, G55000200|G5500090, G55000300|G5500110, G55000700|G5500130, G55000100|G5500150, G55001401|G5500170, G55055101|G5500170, G55055103|G5500190, G55055101|G5500210, G55001000|G5500230, G55000700|G5500250, G55000101|G5500250, G55000102|G5500250, G55000103|G5500270, G55001001|G5500290, G55001300|G5500310, G55000100|G5500330, G55055102|G5500350, G55055103|G5500370, G55001300|G5500390, G55001401|G5500410, G55000600|G5500430, G55000800|G5500450, G55000800|G5500470, G55001400|G5500490, G55000800|G5500510, G55000100|G5500530, G55000700|G5500550, G55001001|G5500570, G55001601|G5500590, G55010000|G5500610, G55001301|G5500630, G55000900|G5500650, G55000800|G5500670, G55000600|G5500690, G55000600|G5500710, G55001301|G5500730, G55001600|G5500750, G55001300|G5500770, G55001400|G5500780, G55001400|G5500790, G55040101|G5500790, G55040301|G5500790, G55040701|G5500790, G55041001|G5500790, G55041002|G5500790, G55041003|G5500790, G55041004|G5500790, G55041005|G5500810, G55000700|G5500830, G55001300|G5500850, G55000600|G5500870, G55001500|G5500890, G55020000|G5500910, G55000700|G5500930, G55000700|G5500950, G55055101|G5500970, G55001601|G5500990, G55000100|G5501010, G55030000|G5501030, G55000800|G5501050, G55002400|G5501070, G55000100|G5501090, G55055102|G5501110, G55001000|G5501130, G55000100|G5501150, G55001400|G5501170, G55002500|G5501190, G55000100|G5501210, G55000700|G5501230, G55000700|G5501250, G55000600|G5501270, G55050000|G5501290, G55000100|G5501310, G55020000|G5501330, G55070101|G5501330, G55070201|G5501330, G55070301|G5501350, G55001400|G5501370, G55001400|G5501390, G55001501|G5501410, G55001601|G5600010, G56000300|G5600030, G56000100|G5600050, G56000200|G5600070, G56000400|G5600090, G56000400|G5600110, G56000200|G5600130, G56000500|G5600150, G56000200|G5600170, G56000500|G5600190, G56000200|G5600210, G56000300|G5600230, G56000100|G5600250, G56000400|G5600270, G56000200|G5600290, G56000100|G5600310, G56000200|G5600330, G56000100|G5600350, G56000500|G5600370, G56000500|G5600390, G56000100|G5600410, G56000500|G5600430, G56000200|G5600450, G56000200" -in.county_metro_status metadata_and_annual n/a string Metropolitan|Non-Metropolitan -in.custom_state metadata_and_annual n/a string AK|Others -in.dehumidifier metadata_and_annual n/a string None -in.dishwasher metadata_and_annual n/a string 290 Rated kWh|318 Rated kWh|None -in.dishwasher_usage_level metadata_and_annual n/a string 100% Usage|120% Usage|80% Usage -in.door_area metadata_and_annual n/a string 20 ft^2 -in.doors metadata_and_annual n/a string Fiberglass -in.duct_leakage_and_insulation metadata_and_annual n/a string "0% Leakage to Outside, Uninsulated|10% Leakage to Outside, R-4|10% Leakage to Outside, R-6|10% Leakage to Outside, R-8|10% Leakage to Outside, Uninsulated|20% Leakage to Outside, R-4|20% Leakage to Outside, R-6|20% Leakage to Outside, R-8|20% Leakage to Outside, Uninsulated|30% Leakage to Outside, R-4|30% Leakage to Outside, R-6|30% Leakage to Outside, R-8|30% Leakage to Outside, Uninsulated|None" -in.duct_location metadata_and_annual n/a string Attic|Crawlspace|Garage|Heated Basement|Living Space|None|Unheated Basement -in.eaves metadata_and_annual n/a string 2 ft -in.electric_panel_service_rating..a metadata_and_annual amp integer 60|90|100|120|125|150|200|250|300|400 -in.electric_panel_service_rating_bin..a metadata_and_annual amp string 100|125|200|101-124|126-199|201+|<100 -in.electric_vehicle_battery metadata_and_annual n/a string "Compact, Battery Electric Vehicle, 200 mile range|Compact, Battery Electric Vehicle, 300 mile range|Midsize, Battery Electric Vehicle, 200 mile range|Midsize, Battery Electric Vehicle, 300 mile range|Pickup, Battery Electric Vehicle, 200 mile range|Pickup, Battery Electric Vehicle, 300 mile range|SUV, Battery Electric Vehicle, 200 mile range|SUV, Battery Electric Vehicle, 300 mile range" -in.electric_vehicle_charge_at_home metadata_and_annual n/a string 0-19%|100%|20-39%|40-59%|60-79%|80-99% -in.electric_vehicle_charger metadata_and_annual n/a string Level 1 charger|Level 2 charger|None -in.electric_vehicle_miles_traveled metadata_and_annual n/a integer 1000|3000|5000|7000|9000|11000|13000|15000|17000|19000|22500 -in.electric_vehicle_outlet_access metadata_and_annual n/a boolean No|Yes -in.electric_vehicle_ownership metadata_and_annual n/a boolean No|Yes -in.energystar_climate_zone_2023 metadata_and_annual n/a string North-Central|Northern|South-Central|Southern -in.federal_poverty_level metadata_and_annual n/a string 0-100%|100-150%|150-200%|200-300%|300-400%|400%+|Not Available -in.generation_and_emissions_assessment_region metadata_and_annual n/a string CAISO|ERCOT|FRCC|ISONE|MISO Central|MISO North|MISO South|NYISO|None|Northern Grid East|Northern Grid South|Northern Grid West|PJM East|PJM West|SERTP|SPP North|SPP South|West Connect North|West Connect South -in.geometry_attic_type metadata_and_annual n/a string Finished Attic or Cathedral Ceilings|None|Unvented Attic|Vented Attic -in.geometry_building_horizontal_location_mf metadata_and_annual n/a string Left|Middle|None|Not Applicable|Right -in.geometry_building_horizontal_location_sfa metadata_and_annual n/a string Left|Middle|None|Right -in.geometry_building_level_mf metadata_and_annual n/a string Bottom|Middle|None|Top -in.geometry_building_number_units_mf metadata_and_annual n/a integer 2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|24|30|36|43|67|116|183|326|None -in.geometry_building_number_units_sfa metadata_and_annual n/a integer 5|6|7|8|10|12|15|16|20|24|30|36|50|60|90|144|None -in.geometry_building_type_acs metadata_and_annual n/a string 10 to 19 Unit|2 Unit|20 to 49 Unit|3 or 4 Unit|5 to 9 Unit|50 or more Unit|Mobile Home|Single-Family Attached|Single-Family Detached -in.geometry_building_type_height metadata_and_annual n/a string "Mobile Home|Multi-Family with 2 - 4 Units|Multi-Family with 5+ Units, 1-3 Stories|Multi-Family with 5+ Units, 4-7 Stories|Multi-Family with 5+ Units, 8+ Stories|Single-Family Attached|Single-Family Detached" -in.geometry_building_type_recs metadata_and_annual n/a string Mobile Home|Multi-Family with 2 - 4 Units|Multi-Family with 5+ Units|Single-Family Attached|Single-Family Detached -in.geometry_floor_area metadata_and_annual n/a string 0-499|1000-1499|1500-1999|2000-2499|2500-2999|3000-3999|4000+|500-749|750-999 -in.geometry_floor_area_bin metadata_and_annual n/a string 0-1499|1500-2499|2500-3999|4000+ -in.geometry_foundation_type metadata_and_annual n/a string Ambient|Heated Basement|Slab|Unheated Basement|Unvented Crawlspace|Vented Crawlspace -in.geometry_garage metadata_and_annual n/a string 1 Car|2 Car|3 Car|None -in.geometry_space_combination metadata_and_annual n/a string "Mobile Home, Ambient, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage|Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage|Single-Family Attached, Heated Basement, Finished Attic, No Garage|Single-Family Attached, Heated Basement, No Attic, No Garage|Single-Family Attached, Heated Basement, Unvented Attic, No Garage|Single-Family Attached, Heated Basement, Vented Attic, No Garage|Single-Family Attached, Slab, Finished Attic, No Garage|Single-Family Attached, Slab, No Attic, No Garage|Single-Family Attached, Slab, Unvented Attic, No Garage|Single-Family Attached, Slab, Vented Attic, No Garage|Single-Family Attached, Unheated Basement, Finished Attic, No Garage|Single-Family Attached, Unheated Basement, No Attic, No Garage|Single-Family Attached, Unheated Basement, Unvented Attic, No Garage|Single-Family Attached, Unheated Basement, Vented Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage|Single-Family Attached, Unvented Crawlspace, No Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage|Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage|Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage|Single-Family Attached, Vented Crawlspace, No Attic, No Garage|Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage|Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage|Single-Family Detached, Ambient, Finished Attic, No Garage|Single-Family Detached, Ambient, No Attic, No Garage|Single-Family Detached, Ambient, Unvented Attic, No Garage|Single-Family Detached, Ambient, Vented Attic, No Garage|Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Finished Attic, No Garage|Single-Family Detached, Heated Basement, No Attic, 1 Car Garage|Single-Family Detached, Heated Basement, No Attic, 2 Car Garage|Single-Family Detached, Heated Basement, No Attic, 3 Car Garage|Single-Family Detached, Heated Basement, No Attic, No Garage|Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Unvented Attic, No Garage|Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage|Single-Family Detached, Heated Basement, Vented Attic, No Garage|Single-Family Detached, Slab, Finished Attic, 1 Car Garage|Single-Family Detached, Slab, Finished Attic, 2 Car Garage|Single-Family Detached, Slab, Finished Attic, 3 Car Garage|Single-Family Detached, Slab, Finished Attic, No Garage|Single-Family Detached, Slab, No Attic, 1 Car Garage|Single-Family Detached, Slab, No Attic, 2 Car Garage|Single-Family Detached, Slab, No Attic, 3 Car Garage|Single-Family Detached, Slab, No Attic, No Garage|Single-Family Detached, Slab, Unvented Attic, 1 Car Garage|Single-Family Detached, Slab, Unvented Attic, 2 Car Garage|Single-Family Detached, Slab, Unvented Attic, 3 Car Garage|Single-Family Detached, Slab, Unvented Attic, No Garage|Single-Family Detached, Slab, Vented Attic, 1 Car Garage|Single-Family Detached, Slab, Vented Attic, 2 Car Garage|Single-Family Detached, Slab, Vented Attic, 3 Car Garage|Single-Family Detached, Slab, Vented Attic, No Garage|Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Finished Attic, No Garage|Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, No Attic, No Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Unvented Attic, No Garage|Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage|Single-Family Detached, Unheated Basement, Vented Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, No Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage|Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage|Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, No Attic, No Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage|Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -in.geometry_stories metadata_and_annual n/a integer 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|20|21|35 -in.geometry_stories_low_rise metadata_and_annual n/a string 1|2|3|4+ -in.geometry_story_bin metadata_and_annual n/a string 8+|<8 -in.geometry_wall_exterior_finish metadata_and_annual n/a string "Aluminum, Light|Brick, Light|Brick, Medium/Dark|Fiber-Cement, Light|None|Shingle, Asbestos, Medium|Shingle, Composition, Medium|Stucco, Light|Stucco, Medium/Dark|Vinyl, Light|Wood, Medium/Dark" -in.geometry_wall_type metadata_and_annual n/a string Brick|Concrete|Steel Frame|Wood Frame -in.ground_thermal_conductivity metadata_and_annual n/a float 0.5|0.8|1.1|1.4|1.7|2.0|2.3|2.6 -in.has_pv metadata_and_annual n/a boolean No|Yes -in.heating_fuel metadata_and_annual n/a string Electricity|Fuel Oil|Natural Gas|None|Other Fuel|Propane|Wood -in.heating_unavailable_days metadata_and_annual n/a string 1 day|1 month|1 week|2 weeks|3 days|3 months|Never|Year round -in.heating_setpoint metadata_and_annual n/a string 55F|60F|62F|65F|67F|68F|70F|72F|75F|76F|78F|80F -in.heating_setpoint_has_offset metadata_and_annual n/a boolean No|Yes -in.heating_setpoint_offset_magnitude metadata_and_annual n/a string 0F|12F|3F|6F -in.heating_setpoint_offset_period metadata_and_annual n/a string Day|Day +1h|Day +2h|Day +3h|Day +4h|Day +5h|Day -1h|Day -2h|Day -3h|Day -4h|Day -5h|Day and Night|Day and Night +1h|Day and Night +2h|Day and Night +3h|Day and Night +4h|Day and Night +5h|Day and Night -1h|Day and Night -2h|Day and Night -3h|Day and Night -4h|Day and Night -5h|Night|Night +1h|Night +2h|Night +3h|Night +4h|Night +5h|Night -1h|Night -2h|Night -3h|Night -4h|Night -5h|None -in.holiday_lighting metadata_and_annual n/a string No Exterior Use -in.hot_water_distribution metadata_and_annual n/a string Uninsulated -in.hot_water_fixtures metadata_and_annual n/a string 100% Usage|110% Usage|120% Usage|130% Usage|140% Usage|150% Usage|160% Usage|170% Usage|180% Usage|200% Usage|50% Usage|60% Usage|70% Usage|80% Usage|90% Usage -in.household_has_tribal_persons metadata_and_annual n/a string No|Not Available|Yes -in.hvac_cooling_autosizing_factor metadata_and_annual n/a string None -in.hvac_cooling_efficiency metadata_and_annual n/a string "AC, SEER 10|AC, SEER 13|AC, SEER 15|AC, SEER 8|Ducted Heat Pump|Non-Ducted Heat Pump|None|Room AC, EER 10.7|Room AC, EER 12.0|Room AC, EER 8.5|Room AC, EER 9.8|Shared Cooling" -in.hvac_cooling_partial_space_conditioning metadata_and_annual n/a string 100% Conditioned|20% Conditioned|40% Conditioned|60% Conditioned|80% Conditioned|<10% Conditioned|None -in.hvac_cooling_type metadata_and_annual n/a string Central AC|Ducted Heat Pump|Non-Ducted Heat Pump|None|Room AC -in.hvac_has_ducts metadata_and_annual n/a boolean No|Yes -in.hvac_has_shared_system metadata_and_annual n/a string Cooling Only|Heating Only|Heating and Cooling|None -in.hvac_has_zonal_electric_heating metadata_and_annual n/a boolean No|Yes -in.hvac_heating_autosizing_factor metadata_and_annual n/a string None -in.hvac_heating_efficiency metadata_and_annual n/a string "ASHP, SEER 10, 6.2 HSPF|ASHP, SEER 13, 7.7 HSPF|ASHP, SEER 15, 8.5 HSPF|Electric Baseboard, 100% Efficiency|Electric Boiler, 100% AFUE|Electric Furnace, 100% AFUE|Electric Wall Furnace, 100% AFUE|Fuel Boiler, 76% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 60% AFUE|Fuel Furnace, 76% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 92.5% AFUE|Fuel Wall/Floor Furnace, 60% AFUE|Fuel Wall/Floor Furnace, 68% AFUE|MSHP, SEER 14.5, 8.2 HSPF|MSHP, SEER 29.3, 14 HSPF|None|Shared Heating" -in.hvac_heating_type metadata_and_annual n/a string Ducted Heat Pump|Ducted Heating|Non-Ducted Heat Pump|Non-Ducted Heating|None -in.hvac_heating_type_and_fuel metadata_and_annual n/a string Electricity ASHP|Electricity Baseboard|Electricity Electric Boiler|Electricity Electric Furnace|Electricity Electric Wall Furnace|Electricity MSHP|Electricity Shared Heating|Fuel Oil Fuel Boiler|Fuel Oil Fuel Furnace|Fuel Oil Fuel Wall/Floor Furnace|Fuel Oil Shared Heating|Natural Gas Fuel Boiler|Natural Gas Fuel Furnace|Natural Gas Fuel Wall/Floor Furnace|Natural Gas Shared Heating|None|Other Fuel Fuel Boiler|Other Fuel Fuel Furnace|Other Fuel Fuel Wall/Floor Furnace|Other Fuel Shared Heating|Propane Fuel Boiler|Propane Fuel Furnace|Propane Fuel Wall/Floor Furnace|Propane Shared Heating|Void -in.hvac_secondary_heating_efficiency metadata_and_annual n/a string "Fuel Boiler, 76% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 92.5% AFUE|None" -in.hvac_secondary_heating_fuel metadata_and_annual n/a string Fuel Oil|Natural Gas|None|Wood -in.hvac_secondary_heating_partial_space_conditioning metadata_and_annual n/a string 0%|10%|20%|30%|40%|49% -in.hvac_secondary_heating_type metadata_and_annual n/a string Ducted Heating|Non-Ducted Heating|None -in.hvac_shared_efficiencies metadata_and_annual n/a string "Boiler Baseboards Heating Only, Electricity|Boiler Baseboards Heating Only, Fuel|Fan Coil Cooling Only|Fan Coil Heating and Cooling, Electricity|Fan Coil Heating and Cooling, Fuel|None" -in.hvac_system_is_faulted metadata_and_annual n/a boolean No -in.hvac_system_is_scaled metadata_and_annual n/a boolean No -in.hvac_system_single_speed_ac_airflow metadata_and_annual n/a string None -in.hvac_system_single_speed_ac_charge metadata_and_annual n/a string None -in.hvac_system_single_speed_ashp_airflow metadata_and_annual n/a string None -in.hvac_system_single_speed_ashp_charge metadata_and_annual n/a string None -in.income metadata_and_annual n/a string 10000-14999|100000-119999|120000-139999|140000-159999|15000-19999|160000-179999|180000-199999|20000-24999|200000+|25000-29999|30000-34999|35000-39999|40000-44999|45000-49999|50000-59999|60000-69999|70000-79999|80000-99999|<10000|Not Available -in.income_recs_2015 metadata_and_annual n/a string 100000-119999|120000-139999|140000+|20000-39999|40000-59999|60000-79999|80000-99999|<20000|Not Available -in.income_recs_2020 metadata_and_annual n/a string 100000-149999|150000+|20000-39999|40000-59999|60000-99999|<20000|Not Available -in.infiltration metadata_and_annual n/a string 1 ACH50|10 ACH50|15 ACH50|2 ACH50|20 ACH50|25 ACH50|3 ACH50|30 ACH50|4 ACH50|40 ACH50|5 ACH50|50 ACH50|6 ACH50|7 ACH50|8 ACH50 -in.insulation_ceiling metadata_and_annual n/a string None|R-13|R-19|R-30|R-38|R-49|R-7|Uninsulated -in.insulation_floor metadata_and_annual n/a string Ceiling R-13|Ceiling R-19|Ceiling R-30|None|Uninsulated -in.insulation_foundation_wall metadata_and_annual n/a string "None|Uninsulated|Wall R-10, Exterior|Wall R-15, Exterior|Wall R-5, Exterior" -in.insulation_rim_joist metadata_and_annual n/a string "None|R-10, Exterior|R-15, Exterior|R-5, Exterior|Uninsulated" -in.insulation_roof metadata_and_annual n/a string "Finished, R-13|Finished, R-19|Finished, R-30|Finished, R-38|Finished, R-49|Finished, R-7|Finished, Uninsulated|Unfinished, Uninsulated" -in.insulation_slab metadata_and_annual n/a string "2ft R10 Perimeter, Vertical|2ft R10 Under, Horizontal|2ft R5 Perimeter, Vertical|2ft R5 Under, Horizontal|None|Uninsulated" -in.insulation_wall metadata_and_annual n/a string "Brick, 12-in, 3-wythe, R-11|Brick, 12-in, 3-wythe, R-15|Brick, 12-in, 3-wythe, R-19|Brick, 12-in, 3-wythe, R-7|Brick, 12-in, 3-wythe, Uninsulated|CMU, 6-in Hollow, R-11|CMU, 6-in Hollow, R-15|CMU, 6-in Hollow, R-19|CMU, 6-in Hollow, R-7|CMU, 6-in Hollow, Uninsulated|Wood Stud, R-11|Wood Stud, R-15|Wood Stud, R-19|Wood Stud, R-7|Wood Stud, Uninsulated" -in.interior_shading metadata_and_annual n/a string "Summer = 0.7, Winter = 0.85" -in.iso_rto_region metadata_and_annual n/a string CAISO|ERCOT|MISO|NEISO|NYISO|None|PJM|SPP -in.lighting metadata_and_annual n/a string 100% CFL|100% Incandescent|100% LED -in.lighting_interior_use metadata_and_annual n/a string 100% Usage -in.lighting_other_use metadata_and_annual n/a string 100% Usage -in.location_region metadata_and_annual n/a string CR02|CR03|CR04|CR05|CR06|CR07|CR08|CR09|CR10|CR11|CRAK|CRHI -in.mechanical_ventilation metadata_and_annual n/a string None -in.metropolitan_and_micropolitan_statistical_area metadata_and_annual n/a string "Aberdeen, SD MicroSA|Aberdeen, WA MicroSA|Abilene, TX MSA|Ada, OK MicroSA|Adrian, MI MicroSA|Akron, OH MSA|Alamogordo, NM MicroSA|Albany, GA MSA|Albany, OR MSA|Albany-Schenectady-Troy, NY MSA|Albemarle, NC MicroSA|Albert Lea, MN MicroSA|Albertville, AL MicroSA|Albuquerque, NM MSA|Alexandria, LA MSA|Alexandria, MN MicroSA|Alice, TX MicroSA|Allentown-Bethlehem-Easton, PA-NJ MSA|Alma, MI MicroSA|Alpena, MI MicroSA|Altoona, PA MSA|Altus, OK MicroSA|Amarillo, TX MSA|Americus, GA MicroSA|Ames, IA MSA|Amsterdam, NY MicroSA|Anchorage, AK MSA|Andrews, TX MicroSA|Angola, IN MicroSA|Ann Arbor, MI MSA|Anniston-Oxford-Jacksonville, AL MSA|Appleton, WI MSA|Arcadia, FL MicroSA|Ardmore, OK MicroSA|Arkadelphia, AR MicroSA|Arkansas City-Winfield, KS MicroSA|Asheville, NC MSA|Ashland, OH MicroSA|Ashtabula, OH MicroSA|Astoria, OR MicroSA|Atchison, KS MicroSA|Athens, OH MicroSA|Athens, TN MicroSA|Athens, TX MicroSA|Athens-Clarke County, GA MSA|Atlanta-Sandy Springs-Roswell, GA MSA|Atlantic City-Hammonton, NJ MSA|Auburn, IN MicroSA|Auburn, NY MicroSA|Auburn-Opelika, AL MSA|Augusta-Richmond County, GA-SC MSA|Augusta-Waterville, ME MicroSA|Austin, MN MicroSA|Austin-Round Rock, TX MSA|Bainbridge, GA MicroSA|Bakersfield, CA MSA|Baltimore-Columbia-Towson, MD MSA|Bangor, ME MSA|Baraboo, WI MicroSA|Bardstown, KY MicroSA|Barnstable Town, MA MSA|Barre, VT MicroSA|Bartlesville, OK MicroSA|Bastrop, LA MicroSA|Batavia, NY MicroSA|Batesville, AR MicroSA|Baton Rouge, LA MSA|Battle Creek, MI MSA|Bay City, MI MSA|Bay City, TX MicroSA|Beatrice, NE MicroSA|Beaumont-Port Arthur, TX MSA|Beaver Dam, WI MicroSA|Beckley, WV MSA|Bedford, IN MicroSA|Beeville, TX MicroSA|Bellefontaine, OH MicroSA|Bellingham, WA MSA|Bemidji, MN MicroSA|Bend-Redmond, OR MSA|Bennettsville, SC MicroSA|Bennington, VT MicroSA|Berlin, NH-VT MicroSA|Big Rapids, MI MicroSA|Big Spring, TX MicroSA|Big Stone Gap, VA MicroSA|Billings, MT MSA|Binghamton, NY MSA|Birmingham-Hoover, AL MSA|Bismarck, ND MSA|Blackfoot, ID MicroSA|Blacksburg-Christiansburg-Radford, VA MSA|Bloomington, IL MSA|Bloomington, IN MSA|Bloomsburg-Berwick, PA MSA|Bluefield, WV-VA MicroSA|Blytheville, AR MicroSA|Bogalusa, LA MicroSA|Boise City, ID MSA|Boone, IA MicroSA|Boone, NC MicroSA|Borger, TX MicroSA|Boston-Cambridge-Newton, MA-NH MSA|Boulder, CO MSA|Bowling Green, KY MSA|Bozeman, MT MicroSA|Bradford, PA MicroSA|Brainerd, MN MicroSA|Branson, MO MicroSA|Breckenridge, CO MicroSA|Bremerton-Silverdale, WA MSA|Brenham, TX MicroSA|Brevard, NC MicroSA|Bridgeport-Stamford-Norwalk, CT MSA|Brookhaven, MS MicroSA|Brookings, OR MicroSA|Brookings, SD MicroSA|Brownsville-Harlingen, TX MSA|Brownwood, TX MicroSA|Brunswick, GA MSA|Bucyrus, OH MicroSA|Buffalo-Cheektowaga-Niagara Falls, NY MSA|Burley, ID MicroSA|Burlington, IA-IL MicroSA|Burlington, NC MSA|Burlington-South Burlington, VT MSA|Butte-Silver Bow, MT MicroSA|Cadillac, MI MicroSA|Calhoun, GA MicroSA|California-Lexington Park, MD MSA|Cambridge, MD MicroSA|Cambridge, OH MicroSA|Camden, AR MicroSA|Campbellsville, KY MicroSA|Canon City, CO MicroSA|Canton, IL MicroSA|Canton-Massillon, OH MSA|Cape Coral-Fort Myers, FL MSA|Cape Girardeau, MO-IL MSA|Carbondale-Marion, IL MSA|Carlsbad-Artesia, NM MicroSA|Carson City, NV MSA|Casper, WY MSA|Cedar City, UT MicroSA|Cedar Rapids, IA MSA|Cedartown, GA MicroSA|Celina, OH MicroSA|Centralia, IL MicroSA|Centralia, WA MicroSA|Chambersburg-Waynesboro, PA MSA|Champaign-Urbana, IL MSA|Charleston, WV MSA|Charleston-Mattoon, IL MicroSA|Charleston-North Charleston, SC MSA|Charlotte-Concord-Gastonia, NC-SC MSA|Charlottesville, VA MSA|Chattanooga, TN-GA MSA|Cheyenne, WY MSA|Chicago-Naperville-Elgin, IL-IN-WI MSA|Chico, CA MSA|Chillicothe, OH MicroSA|Cincinnati, OH-KY-IN MSA|Claremont-Lebanon, NH-VT MicroSA|Clarksburg, WV MicroSA|Clarksdale, MS MicroSA|Clarksville, TN-KY MSA|Clearlake, CA MicroSA|Cleveland, MS MicroSA|Cleveland, TN MSA|Cleveland-Elyria, OH MSA|Clewiston, FL MicroSA|Clinton, IA MicroSA|Clovis, NM MicroSA|Coeur d'Alene, ID MSA|Coffeyville, KS MicroSA|Coldwater, MI MicroSA|College Station-Bryan, TX MSA|Colorado Springs, CO MSA|Columbia, MO MSA|Columbia, SC MSA|Columbus, GA-AL MSA|Columbus, IN MSA|Columbus, MS MicroSA|Columbus, NE MicroSA|Columbus, OH MSA|Concord, NH MicroSA|Connersville, IN MicroSA|Cookeville, TN MicroSA|Coos Bay, OR MicroSA|Cordele, GA MicroSA|Corinth, MS MicroSA|Cornelia, GA MicroSA|Corning, NY MicroSA|Corpus Christi, TX MSA|Corsicana, TX MicroSA|Cortland, NY MicroSA|Corvallis, OR MSA|Coshocton, OH MicroSA|Craig, CO MicroSA|Crawfordsville, IN MicroSA|Crescent City, CA MicroSA|Crestview-Fort Walton Beach-Destin, FL MSA|Crossville, TN MicroSA|Cullman, AL MicroSA|Cullowhee, NC MicroSA|Cumberland, MD-WV MSA|Dallas-Fort Worth-Arlington, TX MSA|Dalton, GA MSA|Danville, IL MSA|Danville, KY MicroSA|Danville, VA MicroSA|Daphne-Fairhope-Foley, AL MSA|Davenport-Moline-Rock Island, IA-IL MSA|Dayton, OH MSA|Dayton, TN MicroSA|DeRidder, LA MicroSA|Decatur, AL MSA|Decatur, IL MSA|Decatur, IN MicroSA|Defiance, OH MicroSA|Del Rio, TX MicroSA|Deltona-Daytona Beach-Ormond Beach, FL MSA|Deming, NM MicroSA|Denver-Aurora-Lakewood, CO MSA|Des Moines-West Des Moines, IA MSA|Detroit-Warren-Dearborn, MI MSA|Dickinson, ND MicroSA|Dixon, IL MicroSA|Dodge City, KS MicroSA|Dothan, AL MSA|Douglas, GA MicroSA|Dover, DE MSA|DuBois, PA MicroSA|Dublin, GA MicroSA|Dubuque, IA MSA|Duluth, MN-WI MSA|Dumas, TX MicroSA|Duncan, OK MicroSA|Dunn, NC MicroSA|Durango, CO MicroSA|Durant, OK MicroSA|Durham-Chapel Hill, NC MSA|Dyersburg, TN MicroSA|Eagle Pass, TX MicroSA|East Stroudsburg, PA MSA|Easton, MD MicroSA|Eau Claire, WI MSA|Edwards, CO MicroSA|Effingham, IL MicroSA|El Campo, TX MicroSA|El Centro, CA MSA|El Dorado, AR MicroSA|El Paso, TX MSA|Elizabeth City, NC MicroSA|Elizabethtown-Fort Knox, KY MSA|Elk City, OK MicroSA|Elkhart-Goshen, IN MSA|Elkins, WV MicroSA|Elko, NV MicroSA|Ellensburg, WA MicroSA|Elmira, NY MSA|Emporia, KS MicroSA|Enid, OK MicroSA|Enterprise, AL MicroSA|Erie, PA MSA|Escanaba, MI MicroSA|Espanola, NM MicroSA|Eugene, OR MSA|Eureka-Arcata-Fortuna, CA MicroSA|Evanston, WY MicroSA|Evansville, IN-KY MSA|Fairbanks, AK MSA|Fairfield, IA MicroSA|Fairmont, WV MicroSA|Fallon, NV MicroSA|Fargo, ND-MN MSA|Faribault-Northfield, MN MicroSA|Farmington, MO MicroSA|Farmington, NM MSA|Fayetteville, NC MSA|Fayetteville-Springdale-Rogers, AR-MO MSA|Fergus Falls, MN MicroSA|Fernley, NV MicroSA|Findlay, OH MicroSA|Fitzgerald, GA MicroSA|Flagstaff, AZ MSA|Flint, MI MSA|Florence, SC MSA|Florence-Muscle Shoals, AL MSA|Fond du Lac, WI MSA|Forest City, NC MicroSA|Forrest City, AR MicroSA|Fort Collins, CO MSA|Fort Dodge, IA MicroSA|Fort Leonard Wood, MO MicroSA|Fort Madison-Keokuk, IA-IL-MO MicroSA|Fort Morgan, CO MicroSA|Fort Polk South, LA MicroSA|Fort Smith, AR-OK MSA|Fort Wayne, IN MSA|Frankfort, IN MicroSA|Frankfort, KY MicroSA|Fredericksburg, TX MicroSA|Freeport, IL MicroSA|Fremont, NE MicroSA|Fremont, OH MicroSA|Fresno, CA MSA|Gadsden, AL MSA|Gaffney, SC MicroSA|Gainesville, FL MSA|Gainesville, GA MSA|Gainesville, TX MicroSA|Galesburg, IL MicroSA|Gallup, NM MicroSA|Garden City, KS MicroSA|Gardnerville Ranchos, NV MicroSA|Georgetown, SC MicroSA|Gettysburg, PA MSA|Gillette, WY MicroSA|Glasgow, KY MicroSA|Glens Falls, NY MSA|Glenwood Springs, CO MicroSA|Gloversville, NY MicroSA|Goldsboro, NC MSA|Grand Forks, ND-MN MSA|Grand Island, NE MSA|Grand Junction, CO MSA|Grand Rapids-Wyoming, MI MSA|Grants Pass, OR MSA|Grants, NM MicroSA|Great Bend, KS MicroSA|Great Falls, MT MSA|Greeley, CO MSA|Green Bay, WI MSA|Greeneville, TN MicroSA|Greenfield Town, MA MicroSA|Greensboro-High Point, NC MSA|Greensburg, IN MicroSA|Greenville, MS MicroSA|Greenville, NC MSA|Greenville, OH MicroSA|Greenville-Anderson-Mauldin, SC MSA|Greenwood, MS MicroSA|Greenwood, SC MicroSA|Grenada, MS MicroSA|Gulfport-Biloxi-Pascagoula, MS MSA|Guymon, OK MicroSA|Hagerstown-Martinsburg, MD-WV MSA|Hailey, ID MicroSA|Hammond, LA MSA|Hanford-Corcoran, CA MSA|Hannibal, MO MicroSA|Harrisburg-Carlisle, PA MSA|Harrison, AR MicroSA|Harrisonburg, VA MSA|Hartford-West Hartford-East Hartford, CT MSA|Hastings, NE MicroSA|Hattiesburg, MS MSA|Hays, KS MicroSA|Heber, UT MicroSA|Helena, MT MicroSA|Helena-West Helena, AR MicroSA|Henderson, NC MicroSA|Hereford, TX MicroSA|Hermiston-Pendleton, OR MicroSA|Hickory-Lenoir-Morganton, NC MSA|Hillsdale, MI MicroSA|Hilo, HI MicroSA|Hilton Head Island-Bluffton-Beaufort, SC MSA|Hinesville, GA MSA|Hobbs, NM MicroSA|Holland, MI MicroSA|Homosassa Springs, FL MSA|Hood River, OR MicroSA|Hot Springs, AR MSA|Houghton, MI MicroSA|Houma-Thibodaux, LA MSA|Houston-The Woodlands-Sugar Land, TX MSA|Hudson, NY MicroSA|Huntingdon, PA MicroSA|Huntington, IN MicroSA|Huntington-Ashland, WV-KY-OH MSA|Huntsville, AL MSA|Huntsville, TX MicroSA|Huron, SD MicroSA|Hutchinson, KS MicroSA|Hutchinson, MN MicroSA|Idaho Falls, ID MSA|Indiana, PA MicroSA|Indianapolis-Carmel-Anderson, IN MSA|Indianola, MS MicroSA|Ionia, MI MicroSA|Iowa City, IA MSA|Iron Mountain, MI-WI MicroSA|Ithaca, NY MSA|Jackson, MI MSA|Jackson, MS MSA|Jackson, OH MicroSA|Jackson, TN MSA|Jackson, WY-ID MicroSA|Jacksonville, FL MSA|Jacksonville, IL MicroSA|Jacksonville, NC MSA|Jacksonville, TX MicroSA|Jamestown, ND MicroSA|Jamestown-Dunkirk-Fredonia, NY MicroSA|Janesville-Beloit, WI MSA|Jasper, IN MicroSA|Jefferson City, MO MSA|Jefferson, GA MicroSA|Jesup, GA MicroSA|Johnson City, TN MSA|Johnstown, PA MSA|Jonesboro, AR MSA|Joplin, MO MSA|Junction City, KS MicroSA|Juneau, AK MicroSA|Kahului-Wailuku-Lahaina, HI MSA|Kalamazoo-Portage, MI MSA|Kalispell, MT MicroSA|Kankakee, IL MSA|Kansas City, MO-KS MSA|Kapaa, HI MicroSA|Kearney, NE MicroSA|Keene, NH MicroSA|Kendallville, IN MicroSA|Kennett, MO MicroSA|Kennewick-Richland, WA MSA|Kerrville, TX MicroSA|Ketchikan, AK MicroSA|Key West, FL MicroSA|Kill Devil Hills, NC MicroSA|Killeen-Temple, TX MSA|Kingsport-Bristol-Bristol, TN-VA MSA|Kingston, NY MSA|Kingsville, TX MicroSA|Kinston, NC MicroSA|Kirksville, MO MicroSA|Klamath Falls, OR MicroSA|Knoxville, TN MSA|Kokomo, IN MSA|La Crosse-Onalaska, WI-MN MSA|La Grande, OR MicroSA|LaGrange, GA MicroSA|Laconia, NH MicroSA|Lafayette, LA MSA|Lafayette-West Lafayette, IN MSA|Lake Charles, LA MSA|Lake City, FL MicroSA|Lake Havasu City-Kingman, AZ MSA|Lakeland-Winter Haven, FL MSA|Lamesa, TX MicroSA|Lancaster, PA MSA|Lansing-East Lansing, MI MSA|Laramie, WY MicroSA|Laredo, TX MSA|Las Cruces, NM MSA|Las Vegas, NM MicroSA|Las Vegas-Henderson-Paradise, NV MSA|Laurel, MS MicroSA|Laurinburg, NC MicroSA|Lawrence, KS MSA|Lawrenceburg, TN MicroSA|Lawton, OK MSA|Lebanon, MO MicroSA|Lebanon, PA MSA|Levelland, TX MicroSA|Lewisburg, PA MicroSA|Lewisburg, TN MicroSA|Lewiston, ID-WA MSA|Lewiston-Auburn, ME MSA|Lewistown, PA MicroSA|Lexington, NE MicroSA|Lexington-Fayette, KY MSA|Liberal, KS MicroSA|Lima, OH MSA|Lincoln, IL MicroSA|Lincoln, NE MSA|Little Rock-North Little Rock-Conway, AR MSA|Lock Haven, PA MicroSA|Logan, UT-ID MSA|Logan, WV MicroSA|Logansport, IN MicroSA|London, KY MicroSA|Longview, TX MSA|Longview, WA MSA|Los Alamos, NM MicroSA|Los Angeles-Long Beach-Anaheim, CA MSA|Louisville/Jefferson County, KY-IN MSA|Lubbock, TX MSA|Ludington, MI MicroSA|Lufkin, TX MicroSA|Lumberton, NC MicroSA|Lynchburg, VA MSA|Macomb, IL MicroSA|Macon, GA MSA|Madera, CA MSA|Madison, IN MicroSA|Madison, WI MSA|Madisonville, KY MicroSA|Magnolia, AR MicroSA|Malone, NY MicroSA|Malvern, AR MicroSA|Manchester-Nashua, NH MSA|Manhattan, KS MSA|Manitowoc, WI MicroSA|Mankato-North Mankato, MN MSA|Mansfield, OH MSA|Marietta, OH MicroSA|Marinette, WI-MI MicroSA|Marion, IN MicroSA|Marion, NC MicroSA|Marion, OH MicroSA|Marquette, MI MicroSA|Marshall, MN MicroSA|Marshall, MO MicroSA|Marshall, TX MicroSA|Marshalltown, IA MicroSA|Martin, TN MicroSA|Martinsville, VA MicroSA|Maryville, MO MicroSA|Mason City, IA MicroSA|Mayfield, KY MicroSA|Maysville, KY MicroSA|McAlester, OK MicroSA|McAllen-Edinburg-Mission, TX MSA|McComb, MS MicroSA|McMinnville, TN MicroSA|McPherson, KS MicroSA|Meadville, PA MicroSA|Medford, OR MSA|Memphis, TN-MS-AR MSA|Menomonie, WI MicroSA|Merced, CA MSA|Meridian, MS MicroSA|Merrill, WI MicroSA|Mexico, MO MicroSA|Miami, OK MicroSA|Miami-Fort Lauderdale-West Palm Beach, FL MSA|Michigan City-La Porte, IN MSA|Middlesborough, KY MicroSA|Midland, MI MSA|Midland, TX MSA|Milledgeville, GA MicroSA|Milwaukee-Waukesha-West Allis, WI MSA|Mineral Wells, TX MicroSA|Minneapolis-St. Paul-Bloomington, MN-WI MSA|Minot, ND MicroSA|Missoula, MT MSA|Mitchell, SD MicroSA|Moberly, MO MicroSA|Mobile, AL MSA|Modesto, CA MSA|Monroe, LA MSA|Monroe, MI MSA|Montgomery, AL MSA|Montrose, CO MicroSA|Morehead City, NC MicroSA|Morgan City, LA MicroSA|Morgantown, WV MSA|Morristown, TN MSA|Moscow, ID MicroSA|Moses Lake, WA MicroSA|Moultrie, GA MicroSA|Mount Airy, NC MicroSA|Mount Pleasant, MI MicroSA|Mount Pleasant, TX MicroSA|Mount Sterling, KY MicroSA|Mount Vernon, IL MicroSA|Mount Vernon, OH MicroSA|Mount Vernon-Anacortes, WA MSA|Mountain Home, AR MicroSA|Mountain Home, ID MicroSA|Muncie, IN MSA|Murray, KY MicroSA|Muscatine, IA MicroSA|Muskegon, MI MSA|Muskogee, OK MicroSA|Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA|Nacogdoches, TX MicroSA|Napa, CA MSA|Naples-Immokalee-Marco Island, FL MSA|Nashville-Davidson--Murfreesboro--Franklin, TN MSA|Natchez, MS-LA MicroSA|Natchitoches, LA MicroSA|New Bern, NC MSA|New Castle, IN MicroSA|New Castle, PA MicroSA|New Haven-Milford, CT MSA|New Orleans-Metairie, LA MSA|New Philadelphia-Dover, OH MicroSA|New Ulm, MN MicroSA|New York-Newark-Jersey City, NY-NJ-PA MSA|Newberry, SC MicroSA|Newport, OR MicroSA|Newport, TN MicroSA|Newton, IA MicroSA|Niles-Benton Harbor, MI MSA|Nogales, AZ MicroSA|None|Norfolk, NE MicroSA|North Platte, NE MicroSA|North Port-Sarasota-Bradenton, FL MSA|North Vernon, IN MicroSA|North Wilkesboro, NC MicroSA|Norwalk, OH MicroSA|Norwich-New London, CT MSA|Oak Harbor, WA MicroSA|Ocala, FL MSA|Ocean City, NJ MSA|Odessa, TX MSA|Ogden-Clearfield, UT MSA|Ogdensburg-Massena, NY MicroSA|Oil City, PA MicroSA|Okeechobee, FL MicroSA|Oklahoma City, OK MSA|Olean, NY MicroSA|Olympia-Tumwater, WA MSA|Omaha-Council Bluffs, NE-IA MSA|Oneonta, NY MicroSA|Ontario, OR-ID MicroSA|Opelousas, LA MicroSA|Orangeburg, SC MicroSA|Orlando-Kissimmee-Sanford, FL MSA|Oshkosh-Neenah, WI MSA|Oskaloosa, IA MicroSA|Othello, WA MicroSA|Ottawa, KS MicroSA|Ottawa-Peru, IL MicroSA|Ottumwa, IA MicroSA|Owatonna, MN MicroSA|Owensboro, KY MSA|Owosso, MI MicroSA|Oxford, MS MicroSA|Oxford, NC MicroSA|Oxnard-Thousand Oaks-Ventura, CA MSA|Ozark, AL MicroSA|Paducah, KY-IL MicroSA|Pahrump, NV MicroSA|Palatka, FL MicroSA|Palestine, TX MicroSA|Palm Bay-Melbourne-Titusville, FL MSA|Pampa, TX MicroSA|Panama City, FL MSA|Paragould, AR MicroSA|Paris, TN MicroSA|Paris, TX MicroSA|Parkersburg-Vienna, WV MSA|Parsons, KS MicroSA|Payson, AZ MicroSA|Pecos, TX MicroSA|Pensacola-Ferry Pass-Brent, FL MSA|Peoria, IL MSA|Peru, IN MicroSA|Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA|Phoenix-Mesa-Scottsdale, AZ MSA|Picayune, MS MicroSA|Pierre, SD MicroSA|Pine Bluff, AR MSA|Pinehurst-Southern Pines, NC MicroSA|Pittsburg, KS MicroSA|Pittsburgh, PA MSA|Pittsfield, MA MSA|Plainview, TX MicroSA|Platteville, WI MicroSA|Plattsburgh, NY MicroSA|Plymouth, IN MicroSA|Pocatello, ID MSA|Point Pleasant, WV-OH MicroSA|Ponca City, OK MicroSA|Pontiac, IL MicroSA|Poplar Bluff, MO MicroSA|Port Angeles, WA MicroSA|Port Clinton, OH MicroSA|Port Lavaca, TX MicroSA|Port St. Lucie, FL MSA|Portales, NM MicroSA|Portland-South Portland, ME MSA|Portland-Vancouver-Hillsboro, OR-WA MSA|Portsmouth, OH MicroSA|Pottsville, PA MicroSA|Prescott, AZ MSA|Price, UT MicroSA|Prineville, OR MicroSA|Providence-Warwick, RI-MA MSA|Provo-Orem, UT MSA|Pueblo, CO MSA|Pullman, WA MicroSA|Punta Gorda, FL MSA|Quincy, IL-MO MicroSA|Racine, WI MSA|Raleigh, NC MSA|Rapid City, SD MSA|Raymondville, TX MicroSA|Reading, PA MSA|Red Bluff, CA MicroSA|Red Wing, MN MicroSA|Redding, CA MSA|Reno, NV MSA|Rexburg, ID MicroSA|Richmond, IN MicroSA|Richmond, VA MSA|Richmond-Berea, KY MicroSA|Rio Grande City, TX MicroSA|Riverside-San Bernardino-Ontario, CA MSA|Riverton, WY MicroSA|Roanoke Rapids, NC MicroSA|Roanoke, VA MSA|Rochelle, IL MicroSA|Rochester, MN MSA|Rochester, NY MSA|Rock Springs, WY MicroSA|Rockford, IL MSA|Rockingham, NC MicroSA|Rocky Mount, NC MSA|Rolla, MO MicroSA|Rome, GA MSA|Roseburg, OR MicroSA|Roswell, NM MicroSA|Russellville, AR MicroSA|Ruston, LA MicroSA|Rutland, VT MicroSA|Sacramento--Roseville--Arden-Arcade, CA MSA|Safford, AZ MicroSA|Saginaw, MI MSA|Salem, OH MicroSA|Salem, OR MSA|Salina, KS MicroSA|Salinas, CA MSA|Salisbury, MD-DE MSA|Salt Lake City, UT MSA|San Angelo, TX MSA|San Antonio-New Braunfels, TX MSA|San Diego-Carlsbad, CA MSA|San Francisco-Oakland-Hayward, CA MSA|San Jose-Sunnyvale-Santa Clara, CA MSA|San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA|Sandpoint, ID MicroSA|Sandusky, OH MicroSA|Sanford, NC MicroSA|Santa Cruz-Watsonville, CA MSA|Santa Fe, NM MSA|Santa Maria-Santa Barbara, CA MSA|Santa Rosa, CA MSA|Sault Ste. Marie, MI MicroSA|Savannah, GA MSA|Sayre, PA MicroSA|Scottsbluff, NE MicroSA|Scottsboro, AL MicroSA|Scranton--Wilkes-Barre--Hazleton, PA MSA|Searcy, AR MicroSA|Seattle-Tacoma-Bellevue, WA MSA|Sebastian-Vero Beach, FL MSA|Sebring, FL MSA|Sedalia, MO MicroSA|Selinsgrove, PA MicroSA|Selma, AL MicroSA|Seneca Falls, NY MicroSA|Seneca, SC MicroSA|Sevierville, TN MicroSA|Seymour, IN MicroSA|Shawano, WI MicroSA|Shawnee, OK MicroSA|Sheboygan, WI MSA|Shelby, NC MicroSA|Shelbyville, TN MicroSA|Shelton, WA MicroSA|Sheridan, WY MicroSA|Sherman-Denison, TX MSA|Show Low, AZ MicroSA|Shreveport-Bossier City, LA MSA|Sidney, OH MicroSA|Sierra Vista-Douglas, AZ MSA|Sikeston, MO MicroSA|Silver City, NM MicroSA|Sioux City, IA-NE-SD MSA|Sioux Falls, SD MSA|Snyder, TX MicroSA|Somerset, KY MicroSA|Somerset, PA MicroSA|Sonora, CA MicroSA|South Bend-Mishawaka, IN-MI MSA|Spartanburg, SC MSA|Spearfish, SD MicroSA|Spencer, IA MicroSA|Spirit Lake, IA MicroSA|Spokane-Spokane Valley, WA MSA|Springfield, IL MSA|Springfield, MA MSA|Springfield, MO MSA|Springfield, OH MSA|St. Cloud, MN MSA|St. George, UT MSA|St. Joseph, MO-KS MSA|St. Louis, MO-IL MSA|St. Marys, GA MicroSA|Starkville, MS MicroSA|State College, PA MSA|Statesboro, GA MicroSA|Staunton-Waynesboro, VA MSA|Steamboat Springs, CO MicroSA|Stephenville, TX MicroSA|Sterling, CO MicroSA|Sterling, IL MicroSA|Stevens Point, WI MicroSA|Stillwater, OK MicroSA|Stockton-Lodi, CA MSA|Storm Lake, IA MicroSA|Sturgis, MI MicroSA|Sulphur Springs, TX MicroSA|Summerville, GA MicroSA|Summit Park, UT MicroSA|Sumter, SC MSA|Sunbury, PA MicroSA|Susanville, CA MicroSA|Sweetwater, TX MicroSA|Syracuse, NY MSA|Tahlequah, OK MicroSA|Talladega-Sylacauga, AL MicroSA|Tallahassee, FL MSA|Tampa-St. Petersburg-Clearwater, FL MSA|Taos, NM MicroSA|Taylorville, IL MicroSA|Terre Haute, IN MSA|Texarkana, TX-AR MSA|The Dalles, OR MicroSA|The Villages, FL MSA|Thomaston, GA MicroSA|Thomasville, GA MicroSA|Tiffin, OH MicroSA|Tifton, GA MicroSA|Toccoa, GA MicroSA|Toledo, OH MSA|Topeka, KS MSA|Torrington, CT MicroSA|Traverse City, MI MicroSA|Trenton, NJ MSA|Troy, AL MicroSA|Truckee-Grass Valley, CA MicroSA|Tucson, AZ MSA|Tullahoma-Manchester, TN MicroSA|Tulsa, OK MSA|Tupelo, MS MicroSA|Tuscaloosa, AL MSA|Twin Falls, ID MicroSA|Tyler, TX MSA|Ukiah, CA MicroSA|Union City, TN-KY MicroSA|Urban Honolulu, HI MSA|Urbana, OH MicroSA|Utica-Rome, NY MSA|Uvalde, TX MicroSA|Valdosta, GA MSA|Vallejo-Fairfield, CA MSA|Valley, AL MicroSA|Van Wert, OH MicroSA|Vermillion, SD MicroSA|Vernal, UT MicroSA|Vernon, TX MicroSA|Vicksburg, MS MicroSA|Victoria, TX MSA|Vidalia, GA MicroSA|Vincennes, IN MicroSA|Vineland-Bridgeton, NJ MSA|Vineyard Haven, MA MicroSA|Virginia Beach-Norfolk-Newport News, VA-NC MSA|Visalia-Porterville, CA MSA|Wabash, IN MicroSA|Waco, TX MSA|Wahpeton, ND-MN MicroSA|Walla Walla, WA MSA|Wapakoneta, OH MicroSA|Warner Robins, GA MSA|Warren, PA MicroSA|Warrensburg, MO MicroSA|Warsaw, IN MicroSA|Washington Court House, OH MicroSA|Washington, IN MicroSA|Washington, NC MicroSA|Washington-Arlington-Alexandria, DC-VA-MD-WV MSA|Waterloo-Cedar Falls, IA MSA|Watertown, SD MicroSA|Watertown-Fort Atkinson, WI MicroSA|Watertown-Fort Drum, NY MSA|Wauchula, FL MicroSA|Wausau, WI MSA|Waycross, GA MicroSA|Weatherford, OK MicroSA|Weirton-Steubenville, WV-OH MSA|Wenatchee, WA MSA|West Plains, MO MicroSA|Wheeling, WV-OH MSA|Whitewater-Elkhorn, WI MicroSA|Wichita Falls, TX MSA|Wichita, KS MSA|Williamsport, PA MSA|Williston, ND MicroSA|Willmar, MN MicroSA|Wilmington, NC MSA|Wilmington, OH MicroSA|Wilson, NC MicroSA|Winchester, VA-WV MSA|Winnemucca, NV MicroSA|Winona, MN MicroSA|Winston-Salem, NC MSA|Wisconsin Rapids-Marshfield, WI MicroSA|Woodward, OK MicroSA|Wooster, OH MicroSA|Worcester, MA-CT MSA|Worthington, MN MicroSA|Yakima, WA MSA|Yankton, SD MicroSA|York-Hanover, PA MSA|Youngstown-Warren-Boardman, OH-PA MSA|Yuba City, CA MSA|Yuma, AZ MSA|Zanesville, OH MicroSA|Zapata, TX MicroSA" -in.misc_extra_refrigerator metadata_and_annual n/a string EF 10.2|EF 10.5|EF 15.9|EF 17.6|EF 19.9|EF 21.9|EF 6.7|None -in.misc_freezer metadata_and_annual n/a string "EF 12, National Average|None" -in.misc_gas_fireplace metadata_and_annual n/a string Gas Fireplace|None -in.misc_gas_grill metadata_and_annual n/a string Gas Grill|None -in.misc_gas_lighting metadata_and_annual n/a string Gas Lighting|None -in.misc_hot_tub_spa metadata_and_annual n/a string Electricity|Natural Gas|None|Other Fuel -in.misc_pool metadata_and_annual n/a string Has Pool|None -in.misc_pool_heater metadata_and_annual n/a string Electric Heat Pump|Electricity|Natural Gas|None|Other Fuel -in.misc_pool_pump metadata_and_annual n/a string 1.0 HP Pump|None -in.misc_well_pump metadata_and_annual n/a string None|Typical Efficiency -in.natural_ventilation metadata_and_annual n/a string "Cooling Season, 7 days/wk" -in.neighbors metadata_and_annual n/a string 2|4|7|12|27|Left/Right at 15ft|None -in.occupants metadata_and_annual n/a string 0|1|2|3|4|5|6|7|8|9|10+ -in.orientation metadata_and_annual n/a string East|North|Northeast|Northwest|South|Southeast|Southwest|West -in.overhangs metadata_and_annual n/a string None -in.plug_load_diversity metadata_and_annual n/a string 100%|200%|50% -in.plug_loads metadata_and_annual n/a string 100%|101%|102%|103%|104%|105%|106%|108%|110%|113%|119%|121%|123%|134%|137%|140%|144%|166%|78%|79%|82%|84%|85%|86%|89%|91%|94%|95%|96%|97%|99% -in.puma metadata_and_annual n/a string "AK, 00101|AK, 00102|AK, 00200|AK, 00300|AK, 00400|G01000100|G01000200|G01000301|G01000302|G01000400|G01000500|G01000600|G01000700|G01000800|G01000900|G01001000|G01001100|G01001200|G01001301|G01001302|G01001303|G01001304|G01001305|G01001400|G01001500|G01001600|G01001700|G01001800|G01001900|G01002000|G01002100|G01002200|G01002300|G01002400|G01002500|G01002600|G01002701|G01002702|G01002703|G04000100|G04000101|G04000102|G04000103|G04000104|G04000105|G04000106|G04000107|G04000108|G04000109|G04000110|G04000111|G04000112|G04000113|G04000114|G04000115|G04000116|G04000117|G04000118|G04000119|G04000120|G04000121|G04000122|G04000123|G04000124|G04000125|G04000126|G04000127|G04000128|G04000129|G04000130|G04000131|G04000132|G04000133|G04000134|G04000201|G04000202|G04000203|G04000204|G04000205|G04000206|G04000207|G04000208|G04000209|G04000300|G04000400|G04000500|G04000600|G04000700|G04000800|G04000803|G04000805|G04000807|G04000900|G05000100|G05000200|G05000300|G05000400|G05000500|G05000600|G05000700|G05000800|G05000900|G05001000|G05001100|G05001200|G05001300|G05001400|G05001500|G05001600|G05001700|G05001800|G05001900|G05002000|G06000101|G06000102|G06000103|G06000104|G06000105|G06000106|G06000107|G06000108|G06000109|G06000110|G06000300|G06000701|G06000702|G06001100|G06001301|G06001302|G06001303|G06001304|G06001305|G06001306|G06001307|G06001308|G06001309|G06001500|G06001700|G06001901|G06001902|G06001903|G06001904|G06001905|G06001906|G06001907|G06002300|G06002500|G06002901|G06002902|G06002903|G06002904|G06002905|G06003100|G06003300|G06003701|G06003702|G06003703|G06003704|G06003705|G06003706|G06003707|G06003708|G06003709|G06003710|G06003711|G06003712|G06003713|G06003714|G06003715|G06003716|G06003717|G06003718|G06003719|G06003720|G06003721|G06003722|G06003723|G06003724|G06003725|G06003726|G06003727|G06003728|G06003729|G06003730|G06003731|G06003732|G06003733|G06003734|G06003735|G06003736|G06003737|G06003738|G06003739|G06003740|G06003741|G06003742|G06003743|G06003744|G06003745|G06003746|G06003747|G06003748|G06003749|G06003750|G06003751|G06003752|G06003753|G06003754|G06003755|G06003756|G06003757|G06003758|G06003759|G06003760|G06003761|G06003762|G06003763|G06003764|G06003765|G06003766|G06003767|G06003768|G06003769|G06003900|G06004101|G06004102|G06004701|G06004702|G06005301|G06005302|G06005303|G06005500|G06005700|G06005901|G06005902|G06005903|G06005904|G06005905|G06005906|G06005907|G06005908|G06005909|G06005910|G06005911|G06005912|G06005913|G06005914|G06005915|G06005916|G06005917|G06005918|G06006101|G06006102|G06006103|G06006501|G06006502|G06006503|G06006504|G06006505|G06006506|G06006507|G06006508|G06006509|G06006510|G06006511|G06006512|G06006513|G06006514|G06006515|G06006701|G06006702|G06006703|G06006704|G06006705|G06006706|G06006707|G06006708|G06006709|G06006710|G06006711|G06006712|G06007101|G06007102|G06007103|G06007104|G06007105|G06007106|G06007107|G06007108|G06007109|G06007110|G06007111|G06007112|G06007113|G06007114|G06007115|G06007301|G06007302|G06007303|G06007304|G06007305|G06007306|G06007307|G06007308|G06007309|G06007310|G06007311|G06007312|G06007313|G06007314|G06007315|G06007316|G06007317|G06007318|G06007319|G06007320|G06007321|G06007322|G06007501|G06007502|G06007503|G06007504|G06007505|G06007506|G06007507|G06007701|G06007702|G06007703|G06007704|G06007901|G06007902|G06008101|G06008102|G06008103|G06008104|G06008105|G06008106|G06008301|G06008302|G06008303|G06008501|G06008502|G06008503|G06008504|G06008505|G06008506|G06008507|G06008508|G06008509|G06008510|G06008511|G06008512|G06008513|G06008514|G06008701|G06008702|G06008900|G06009501|G06009502|G06009503|G06009701|G06009702|G06009703|G06009901|G06009902|G06009903|G06009904|G06010100|G06010701|G06010702|G06010703|G06011101|G06011102|G06011103|G06011104|G06011105|G06011106|G06011300|G08000100|G08000102|G08000103|G08000200|G08000300|G08000400|G08000600|G08000700|G08000800|G08000801|G08000802|G08000803|G08000804|G08000805|G08000806|G08000807|G08000808|G08000809|G08000810|G08000811|G08000812|G08000813|G08000814|G08000815|G08000816|G08000817|G08000818|G08000819|G08000820|G08000821|G08000822|G08000823|G08000824|G08000900|G08001001|G08001002|G08004101|G08004102|G08004103|G08004104|G08004105|G08004106|G09000100|G09000101|G09000102|G09000103|G09000104|G09000105|G09000300|G09000301|G09000302|G09000303|G09000304|G09000305|G09000306|G09000500|G09000700|G09000900|G09000901|G09000902|G09000903|G09000904|G09000905|G09000906|G09001100|G09001101|G09001300|G09001500|G10000101|G10000102|G10000103|G10000104|G10000200|G10000300|G11000101|G11000102|G11000103|G11000104|G11000105|G12000101|G12000102|G12000500|G12000901|G12000902|G12000903|G12000904|G12001101|G12001102|G12001103|G12001104|G12001105|G12001106|G12001107|G12001108|G12001109|G12001110|G12001111|G12001112|G12001113|G12001114|G12001500|G12001701|G12001900|G12002101|G12002102|G12002103|G12002300|G12002700|G12003101|G12003102|G12003103|G12003104|G12003105|G12003106|G12003107|G12003301|G12003302|G12003500|G12005301|G12005701|G12005702|G12005703|G12005704|G12005705|G12005706|G12005707|G12005708|G12006100|G12006300|G12006901|G12006902|G12006903|G12007101|G12007102|G12007103|G12007104|G12007105|G12007300|G12007301|G12008101|G12008102|G12008103|G12008301|G12008302|G12008303|G12008500|G12008601|G12008602|G12008603|G12008604|G12008605|G12008606|G12008607|G12008608|G12008609|G12008610|G12008611|G12008612|G12008613|G12008614|G12008615|G12008616|G12008617|G12008618|G12008619|G12008620|G12008621|G12008622|G12008623|G12008624|G12008700|G12008900|G12009100|G12009300|G12009501|G12009502|G12009503|G12009504|G12009505|G12009506|G12009507|G12009508|G12009509|G12009510|G12009701|G12009702|G12009901|G12009902|G12009903|G12009904|G12009905|G12009906|G12009907|G12009908|G12009909|G12009910|G12009911|G12010101|G12010102|G12010103|G12010104|G12010301|G12010302|G12010303|G12010304|G12010305|G12010306|G12010307|G12010308|G12010501|G12010502|G12010503|G12010504|G12010700|G12010900|G12011101|G12011102|G12011300|G12011501|G12011502|G12011503|G12011701|G12011702|G12011703|G12011704|G12012100|G12012701|G12012702|G12012703|G12012704|G13000100|G13000200|G13000300|G13000401|G13000402|G13000500|G13000600|G13000700|G13000800|G13000900|G13001001|G13001002|G13001003|G13001004|G13001005|G13001006|G13001007|G13001008|G13001100|G13001200|G13001300|G13001400|G13001500|G13001600|G13001700|G13001800|G13001900|G13002001|G13002002|G13002003|G13002004|G13002100|G13002200|G13002300|G13002400|G13002500|G13002600|G13002700|G13002800|G13002900|G13003001|G13003002|G13003003|G13003004|G13003005|G13003101|G13003102|G13003200|G13003300|G13003400|G13003500|G13003600|G13003700|G13003800|G13003900|G13004000|G13004001|G13004002|G13004003|G13004004|G13004005|G13004006|G13004100|G13004200|G13004300|G13004400|G13004500|G13004600|G13005001|G13005002|G13006001|G13006002|G16000100|G16000200|G16000300|G16000400|G16000500|G16000600|G16000701|G16000702|G16000800|G16000900|G16001000|G16001100|G16001200|G16001300|G17000104|G17000105|G17000202|G17000300|G17000401|G17000501|G17000600|G17000700|G17000800|G17000900|G17001001|G17001104|G17001105|G17001204|G17001205|G17001300|G17001500|G17001602|G17001701|G17001900|G17002000|G17002100|G17002200|G17002300|G17002400|G17002501|G17002601|G17002700|G17002801|G17002901|G17003005|G17003007|G17003008|G17003009|G17003102|G17003105|G17003106|G17003107|G17003108|G17003202|G17003203|G17003204|G17003205|G17003207|G17003208|G17003209|G17003306|G17003307|G17003308|G17003309|G17003310|G17003401|G17003407|G17003408|G17003409|G17003410|G17003411|G17003412|G17003413|G17003414|G17003415|G17003416|G17003417|G17003418|G17003419|G17003420|G17003421|G17003422|G17003501|G17003502|G17003503|G17003504|G17003520|G17003521|G17003522|G17003523|G17003524|G17003525|G17003526|G17003527|G17003528|G17003529|G17003530|G17003531|G17003532|G17003601|G17003602|G17003700|G18000101|G18000102|G18000103|G18000104|G18000200|G18000300|G18000401|G18000402|G18000500|G18000600|G18000700|G18000800|G18000900|G18001001|G18001002|G18001003|G18001100|G18001200|G18001300|G18001400|G18001500|G18001600|G18001700|G18001801|G18001802|G18001803|G18001900|G18002000|G18002100|G18002200|G18002301|G18002302|G18002303|G18002304|G18002305|G18002306|G18002307|G18002400|G18002500|G18002600|G18002700|G18002800|G18002900|G18003000|G18003100|G18003200|G18003300|G18003400|G18003500|G18003600|G19000100|G19000200|G19000400|G19000500|G19000600|G19000700|G19000800|G19000900|G19001000|G19001100|G19001200|G19001300|G19001400|G19001500|G19001600|G19001700|G19001800|G19001900|G19002000|G19002100|G19002200|G19002300|G20000100|G20000200|G20000300|G20000400|G20000500|G20000601|G20000602|G20000603|G20000604|G20000700|G20000801|G20000802|G20000900|G20001000|G20001100|G20001200|G20001301|G20001302|G20001303|G20001304|G20001400|G20001500|G21000100|G21000200|G21000300|G21000400|G21000500|G21000600|G21000700|G21000800|G21000900|G21001000|G21001100|G21001200|G21001300|G21001400|G21001500|G21001600|G21001701|G21001702|G21001703|G21001704|G21001705|G21001706|G21001800|G21001901|G21001902|G21002000|G21002100|G21002200|G21002300|G21002400|G21002500|G21002600|G21002700|G21002800|G22000100|G22000101|G22000200|G22000300|G22000400|G22000500|G22000600|G22000700|G22000800|G22000900|G22001000|G22001100|G22001200|G22001201|G22001300|G22001400|G22001500|G22001501|G22001502|G22001600|G22001700|G22001800|G22001900|G22002000|G22002100|G22002200|G22002201|G22002300|G22002301|G22002302|G22002400|G22002401|G22002402|G22002500|G23000100|G23000200|G23000300|G23000400|G23000500|G23000600|G23000700|G23000800|G23000900|G23001000|G24000100|G24000200|G24000301|G24000302|G24000400|G24000501|G24000502|G24000503|G24000504|G24000505|G24000506|G24000507|G24000601|G24000602|G24000700|G24000801|G24000802|G24000803|G24000804|G24000805|G24000901|G24000902|G24001001|G24001002|G24001003|G24001004|G24001005|G24001006|G24001007|G24001101|G24001102|G24001103|G24001104|G24001105|G24001106|G24001107|G24001201|G24001202|G24001203|G24001204|G24001300|G24001400|G24001500|G24001600|G25000100|G25000200|G25000300|G25000301|G25000302|G25000303|G25000304|G25000400|G25000501|G25000502|G25000503|G25000504|G25000505|G25000506|G25000507|G25000508|G25000701|G25000702|G25000703|G25000704|G25001000|G25001300|G25001400|G25001600|G25001900|G25001901|G25001902|G25002400|G25002800|G25003301|G25003302|G25003303|G25003304|G25003305|G25003306|G25003400|G25003500|G25003601|G25003602|G25003603|G25003900|G25004000|G25004200|G25004301|G25004302|G25004303|G25004500|G25004700|G25004800|G25004901|G25004902|G25004903|G26000100|G26000200|G26000300|G26000400|G26000500|G26000600|G26000700|G26000801|G26000802|G26000900|G26001001|G26001002|G26001003|G26001004|G26001100|G26001200|G26001300|G26001400|G26001500|G26001600|G26001701|G26001702|G26001703|G26001704|G26001801|G26001802|G26001900|G26002000|G26002101|G26002102|G26002200|G26002300|G26002400|G26002500|G26002600|G26002701|G26002702|G26002703|G26002800|G26002901|G26002902|G26002903|G26002904|G26002905|G26002906|G26002907|G26002908|G26003001|G26003002|G26003003|G26003004|G26003005|G26003006|G26003100|G26003201|G26003202|G26003203|G26003204|G26003205|G26003206|G26003207|G26003208|G26003209|G26003210|G26003211|G26003212|G26003213|G26003300|G27000100|G27000200|G27000300|G27000400|G27000500|G27000600|G27000700|G27000800|G27000900|G27001000|G27001101|G27001102|G27001103|G27001201|G27001202|G27001301|G27001302|G27001303|G27001304|G27001401|G27001402|G27001403|G27001404|G27001405|G27001406|G27001407|G27001408|G27001409|G27001410|G27001501|G27001502|G27001503|G27001600|G27001700|G27001800|G27001900|G27002000|G27002100|G27002200|G27002300|G27002400|G27002500|G27002600|G28000100|G28000200|G28000300|G28000400|G28000500|G28000600|G28000700|G28000800|G28000900|G28001000|G28001100|G28001200|G28001300|G28001400|G28001500|G28001600|G28001700|G28001800|G28001900|G28002000|G28002100|G29000100|G29000200|G29000300|G29000400|G29000500|G29000600|G29000700|G29000800|G29000901|G29000902|G29000903|G29001001|G29001002|G29001003|G29001004|G29001005|G29001100|G29001200|G29001300|G29001400|G29001500|G29001600|G29001701|G29001702|G29001703|G29001801|G29001802|G29001803|G29001804|G29001805|G29001806|G29001807|G29001808|G29001901|G29001902|G29002001|G29002002|G29002100|G29002200|G29002300|G29002400|G29002500|G29002601|G29002602|G29002603|G29002700|G29002800|G30000100|G30000200|G30000300|G30000400|G30000500|G30000600|G30000700|G31000100|G31000200|G31000300|G31000400|G31000500|G31000600|G31000701|G31000702|G31000801|G31000802|G31000901|G31000902|G31000903|G31000904|G32000101|G32000102|G32000103|G32000200|G32000300|G32000401|G32000402|G32000403|G32000404|G32000405|G32000406|G32000407|G32000408|G32000409|G32000410|G32000411|G32000412|G32000413|G33000100|G33000200|G33000300|G33000400|G33000500|G33000600|G33000700|G33000800|G33000900|G33001000|G34000101|G34000102|G34000301|G34000302|G34000303|G34000304|G34000305|G34000306|G34000307|G34000308|G34000400|G34000501|G34000502|G34000503|G34000601|G34000602|G34000701|G34000702|G34000703|G34000800|G34000901|G34000902|G34000903|G34000904|G34000905|G34000906|G34000907|G34001001|G34001002|G34001003|G34001101|G34001102|G34001103|G34001104|G34001105|G34001106|G34001201|G34001202|G34001203|G34001204|G34001205|G34001301|G34001302|G34001401|G34001402|G34001403|G34001404|G34001501|G34001502|G34001503|G34001504|G34001600|G34001700|G34001800|G34001901|G34001902|G34001903|G34001904|G34002001|G34002002|G34002003|G34002101|G34002102|G34002103|G34002104|G34002201|G34002202|G34002301|G34002302|G34002303|G34002400|G34002500|G34002600|G35000100|G35000200|G35000300|G35000400|G35000500|G35000600|G35000700|G35000801|G35000802|G35000803|G35000804|G35000805|G35000806|G35000900|G35001001|G35001002|G35001100|G35001200|G36000100|G36000200|G36000300|G36000401|G36000402|G36000403|G36000500|G36000600|G36000701|G36000702|G36000703|G36000704|G36000800|G36000901|G36000902|G36000903|G36000904|G36000905|G36000906|G36001000|G36001101|G36001102|G36001201|G36001202|G36001203|G36001204|G36001205|G36001206|G36001207|G36001300|G36001400|G36001500|G36001600|G36001700|G36001801|G36001802|G36001900|G36002001|G36002002|G36002100|G36002201|G36002202|G36002203|G36002300|G36002401|G36002402|G36002500|G36002600|G36002701|G36002702|G36002801|G36002802|G36002901|G36002902|G36002903|G36003001|G36003002|G36003003|G36003101|G36003102|G36003103|G36003104|G36003105|G36003106|G36003107|G36003201|G36003202|G36003203|G36003204|G36003205|G36003206|G36003207|G36003208|G36003209|G36003210|G36003211|G36003212|G36003301|G36003302|G36003303|G36003304|G36003305|G36003306|G36003307|G36003308|G36003309|G36003310|G36003311|G36003312|G36003313|G36003701|G36003702|G36003703|G36003704|G36003705|G36003706|G36003707|G36003708|G36003709|G36003710|G36003801|G36003802|G36003803|G36003804|G36003805|G36003806|G36003807|G36003808|G36003809|G36003810|G36003901|G36003902|G36003903|G36004001|G36004002|G36004003|G36004004|G36004005|G36004006|G36004007|G36004008|G36004009|G36004010|G36004011|G36004012|G36004013|G36004014|G36004015|G36004016|G36004017|G36004018|G36004101|G36004102|G36004103|G36004104|G36004105|G36004106|G36004107|G36004108|G36004109|G36004110|G36004111|G36004112|G36004113|G36004114|G37000100|G37000200|G37000300|G37000400|G37000500|G37000600|G37000700|G37000800|G37000900|G37001000|G37001100|G37001201|G37001202|G37001203|G37001204|G37001205|G37001206|G37001207|G37001208|G37001301|G37001302|G37001400|G37001500|G37001600|G37001701|G37001702|G37001703|G37001704|G37001801|G37001802|G37001803|G37001900|G37002000|G37002100|G37002201|G37002202|G37002300|G37002400|G37002500|G37002600|G37002700|G37002800|G37002900|G37003001|G37003002|G37003101|G37003102|G37003103|G37003104|G37003105|G37003106|G37003107|G37003108|G37003200|G37003300|G37003400|G37003500|G37003600|G37003700|G37003800|G37003900|G37004000|G37004100|G37004200|G37004300|G37004400|G37004500|G37004600|G37004700|G37004800|G37004900|G37005001|G37005002|G37005003|G37005100|G37005200|G37005300|G37005400|G38000100|G38000200|G38000300|G38000400|G38000500|G39000100|G39000200|G39000300|G39000400|G39000500|G39000600|G39000700|G39000801|G39000802|G39000901|G39000902|G39000903|G39000904|G39000905|G39000906|G39000907|G39000908|G39000909|G39000910|G39001000|G39001100|G39001200|G39001300|G39001400|G39001500|G39001600|G39001700|G39001801|G39001802|G39001803|G39001804|G39001805|G39001900|G39002000|G39002100|G39002200|G39002300|G39002400|G39002500|G39002600|G39002700|G39002800|G39002900|G39003000|G39003100|G39003200|G39003300|G39003400|G39003500|G39003600|G39003700|G39003800|G39003900|G39004000|G39004101|G39004102|G39004103|G39004104|G39004105|G39004106|G39004107|G39004108|G39004109|G39004110|G39004111|G39004200|G39004300|G39004400|G39004500|G39004601|G39004602|G39004603|G39004604|G39004700|G39004800|G39004900|G39005000|G39005100|G39005200|G39005301|G39005302|G39005401|G39005402|G39005403|G39005501|G39005502|G39005503|G39005504|G39005505|G39005506|G39005507|G39005600|G39005700|G40000100|G40000200|G40000300|G40000400|G40000500|G40000601|G40000602|G40000701|G40000702|G40000800|G40000900|G40001001|G40001002|G40001003|G40001004|G40001005|G40001006|G40001101|G40001102|G40001201|G40001202|G40001203|G40001204|G40001301|G40001302|G40001400|G40001501|G40001601|G41000100|G41000200|G41000300|G41000400|G41000500|G41000600|G41000703|G41000704|G41000705|G41000800|G41000901|G41000902|G41001000|G41001103|G41001104|G41001105|G41001200|G41001301|G41001302|G41001303|G41001305|G41001314|G41001316|G41001317|G41001318|G41001319|G41001320|G41001321|G41001322|G41001323|G41001324|G42000101|G42000102|G42000200|G42000300|G42000400|G42000500|G42000600|G42000701|G42000702|G42000801|G42000802|G42000803|G42000900|G42001000|G42001100|G42001200|G42001300|G42001400|G42001501|G42001502|G42001600|G42001701|G42001702|G42001801|G42001802|G42001803|G42001804|G42001805|G42001806|G42001807|G42001900|G42002001|G42002002|G42002003|G42002100|G42002200|G42002301|G42002302|G42002401|G42002402|G42002500|G42002600|G42002701|G42002702|G42002703|G42002801|G42002802|G42002803|G42002901|G42002902|G42003001|G42003002|G42003003|G42003004|G42003101|G42003102|G42003103|G42003104|G42003105|G42003106|G42003201|G42003202|G42003203|G42003204|G42003205|G42003206|G42003207|G42003208|G42003209|G42003210|G42003211|G42003301|G42003302|G42003303|G42003304|G42003401|G42003402|G42003403|G42003404|G42003501|G42003502|G42003503|G42003504|G42003601|G42003602|G42003603|G42003701|G42003702|G42003800|G42003900|G42004001|G42004002|G44000101|G44000102|G44000103|G44000104|G44000201|G44000300|G44000400|G45000101|G45000102|G45000103|G45000104|G45000105|G45000200|G45000301|G45000302|G45000400|G45000501|G45000502|G45000601|G45000602|G45000603|G45000604|G45000605|G45000700|G45000800|G45000900|G45001000|G45001101|G45001102|G45001201|G45001202|G45001203|G45001204|G45001300|G45001400|G45001500|G45001600|G46000100|G46000200|G46000300|G46000400|G46000500|G46000600|G47000100|G47000200|G47000300|G47000400|G47000500|G47000600|G47000700|G47000800|G47000900|G47001000|G47001100|G47001200|G47001300|G47001400|G47001500|G47001601|G47001602|G47001603|G47001604|G47001700|G47001800|G47001900|G47002001|G47002002|G47002003|G47002100|G47002200|G47002300|G47002401|G47002402|G47002501|G47002502|G47002503|G47002504|G47002505|G47002600|G47002700|G47002800|G47002900|G47003000|G47003100|G47003201|G47003202|G47003203|G47003204|G47003205|G47003206|G47003207|G47003208|G48000100|G48000200|G48000300|G48000400|G48000501|G48000502|G48000600|G48000700|G48000800|G48000900|G48001000|G48001100|G48001200|G48001300|G48001400|G48001501|G48001502|G48001600|G48001700|G48001800|G48001901|G48001902|G48001903|G48001904|G48001905|G48001906|G48001907|G48002001|G48002002|G48002003|G48002004|G48002005|G48002006|G48002101|G48002102|G48002200|G48002301|G48002302|G48002303|G48002304|G48002305|G48002306|G48002307|G48002308|G48002309|G48002310|G48002311|G48002312|G48002313|G48002314|G48002315|G48002316|G48002317|G48002318|G48002319|G48002320|G48002321|G48002322|G48002400|G48002501|G48002502|G48002503|G48002504|G48002505|G48002506|G48002507|G48002508|G48002509|G48002510|G48002511|G48002512|G48002513|G48002514|G48002515|G48002516|G48002600|G48002700|G48002800|G48002900|G48003000|G48003100|G48003200|G48003301|G48003302|G48003303|G48003304|G48003305|G48003306|G48003400|G48003501|G48003502|G48003601|G48003602|G48003700|G48003801|G48003802|G48003900|G48004000|G48004100|G48004200|G48004301|G48004302|G48004400|G48004501|G48004502|G48004503|G48004504|G48004601|G48004602|G48004603|G48004604|G48004605|G48004606|G48004607|G48004608|G48004609|G48004610|G48004611|G48004612|G48004613|G48004614|G48004615|G48004616|G48004617|G48004618|G48004619|G48004620|G48004621|G48004622|G48004623|G48004624|G48004625|G48004626|G48004627|G48004628|G48004629|G48004630|G48004631|G48004632|G48004633|G48004634|G48004635|G48004636|G48004637|G48004638|G48004701|G48004702|G48004801|G48004802|G48004803|G48004901|G48004902|G48004903|G48004904|G48004905|G48005000|G48005100|G48005201|G48005202|G48005203|G48005204|G48005301|G48005302|G48005303|G48005304|G48005305|G48005306|G48005307|G48005308|G48005309|G48005400|G48005500|G48005600|G48005700|G48005800|G48005901|G48005902|G48005903|G48005904|G48005905|G48005906|G48005907|G48005908|G48005909|G48005910|G48005911|G48005912|G48005913|G48005914|G48005915|G48005916|G48006000|G48006100|G48006200|G48006301|G48006302|G48006400|G48006500|G48006601|G48006602|G48006603|G48006701|G48006702|G48006703|G48006801|G48006802|G48006803|G48006804|G48006805|G48006806|G48006807|G48006900|G49003001|G49005001|G49011001|G49011002|G49013001|G49021001|G49035001|G49035002|G49035003|G49035004|G49035005|G49035006|G49035007|G49035008|G49035009|G49049001|G49049002|G49049003|G49049004|G49053001|G49057001|G49057002|G50000100|G50000200|G50000300|G50000400|G51001301|G51001302|G51004101|G51004102|G51004103|G51010701|G51010702|G51010703|G51051010|G51051020|G51051040|G51051044|G51051045|G51051080|G51051084|G51051085|G51051087|G51051089|G51051090|G51051095|G51051096|G51051097|G51051105|G51051110|G51051115|G51051120|G51051125|G51051135|G51051145|G51051154|G51051155|G51051164|G51051165|G51051167|G51051175|G51051186|G51051206|G51051215|G51051224|G51051225|G51051235|G51051244|G51051245|G51051246|G51051255|G51055001|G51055002|G51059301|G51059302|G51059303|G51059304|G51059305|G51059306|G51059307|G51059308|G51059309|G53010100|G53010200|G53010300|G53010400|G53010501|G53010502|G53010503|G53010504|G53010600|G53010701|G53010702|G53010703|G53010800|G53010901|G53010902|G53011000|G53011101|G53011102|G53011103|G53011104|G53011200|G53011300|G53011401|G53011402|G53011501|G53011502|G53011503|G53011504|G53011505|G53011506|G53011507|G53011601|G53011602|G53011603|G53011604|G53011605|G53011606|G53011607|G53011608|G53011609|G53011610|G53011611|G53011612|G53011613|G53011614|G53011615|G53011616|G53011701|G53011702|G53011703|G53011704|G53011705|G53011706|G53011801|G53011802|G53011900|G54000100|G54000200|G54000300|G54000400|G54000500|G54000600|G54000700|G54000800|G54000900|G54001000|G54001100|G54001200|G54001300|G55000100|G55000101|G55000102|G55000103|G55000200|G55000300|G55000600|G55000700|G55000800|G55000900|G55001000|G55001001|G55001300|G55001301|G55001400|G55001401|G55001500|G55001501|G55001600|G55001601|G55002400|G55002500|G55010000|G55020000|G55030000|G55040101|G55040301|G55040701|G55041001|G55041002|G55041003|G55041004|G55041005|G55050000|G55055101|G55055102|G55055103|G55070101|G55070201|G55070301|G56000100|G56000200|G56000300|G56000400|G56000500|HI, 00100|HI, 00200|HI, 00301|HI, 00302|HI, 00303|HI, 00304|HI, 00305|HI, 00306|HI, 00307|HI, 00308" -in.puma_metro_status metadata_and_annual n/a string "In metro area, not/partially in principal city|In metro area, principal city|Not/partially in metro area" -in.pv_orientation metadata_and_annual n/a string East|None|North|Northeast|Northwest|South|Southeast|Southwest|West -in.pv_system_size metadata_and_annual n/a string 1.0 kWDC|11.0 kWDC|13.0 kWDC|3.0 kWDC|5.0 kWDC|7.0 kWDC|9.0 kWDC|None -in.radiant_barrier metadata_and_annual n/a string No|None -in.range_spot_vent_hour metadata_and_annual n/a string Hour0|Hour1|Hour10|Hour11|Hour12|Hour13|Hour14|Hour15|Hour16|Hour17|Hour18|Hour19|Hour2|Hour20|Hour21|Hour22|Hour23|Hour3|Hour4|Hour5|Hour6|Hour7|Hour8|Hour9 -in.reeds_balancing_area metadata_and_annual n/a string 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99|100|101|102|103|104|105|106|107|108|109|110|111|112|113|114|115|116|117|118|119|120|121|122|123|124|125|126|127|128|129|130|131|132|133|134|None -in.refrigerator metadata_and_annual n/a string EF 10.2|EF 10.5|EF 15.9|EF 17.6|EF 19.9|EF 21.9|EF 6.7|None -in.refrigerator_usage_level metadata_and_annual n/a string 100% Usage|105% Usage|95% Usage -in.roof_material metadata_and_annual n/a string "Asphalt Shingles, Medium|Composition Shingles|Metal, Dark|Slate|Tile, Clay or Ceramic|Tile, Concrete|Wood Shingles" -in.state metadata_and_annual n/a string AK|AL|AR|AZ|CA|CO|CT|DC|DE|FL|GA|HI|IA|ID|IL|IN|KS|KY|LA|MA|MD|ME|MI|MN|MO|MS|MT|NC|ND|NE|NH|NJ|NM|NV|NY|OH|OK|OR|PA|RI|SC|SD|TN|TX|UT|VA|VT|WA|WI|WV|WY -in.state_metro_median_income metadata_and_annual n/a string 0-30%|100-120%|120-150%|150%+|30-60%|60-80%|80-100%|Not Available -in.tenure metadata_and_annual n/a string Not Available|Owner|Renter -in.usage_level metadata_and_annual n/a string High|Low|Medium -in.vacancy_status metadata_and_annual n/a string Occupied|Vacant -in.vintage metadata_and_annual n/a string 1940s|1950s|1960s|1970s|1980s|1990s|2000s|2010s|<1940 -in.vintage_acs metadata_and_annual n/a string 1940-59|1960-79|1980-99|2000-09|2010s|<1940 -in.water_heater_efficiency metadata_and_annual n/a string "Electric Heat Pump, 50 gal, 3.45 UEF|Electric Premium|Electric Standard|Electric Tankless|FIXME Fuel Oil Indirect|Fuel Oil Premium|Fuel Oil Standard|Natural Gas Premium|Natural Gas Standard|Natural Gas Tankless|Other Fuel|Propane Premium|Propane Standard|Propane Tankless|Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, North, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Natural Gas Standard Backup|Solar Thermal, 40 sqft, South, Roof Pitch, Propane Standard Backup|Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup|Wood" -in.water_heater_fuel metadata_and_annual n/a string Electricity|Fuel Oil|Natural Gas|Other Fuel|Propane|Solar Thermal|Wood -in.water_heater_in_unit metadata_and_annual n/a boolean No|Yes -in.water_heater_location metadata_and_annual n/a string Attic|Conditioned Mechanical Room|Crawlspace|Garage|Heated Basement|Living Space|Outside|Unheated Basement -in.window_areas metadata_and_annual n/a string F12 B12 L12 R12|F15 B15 L15 R15|F18 B18 L18 R18|F30 B30 L30 R30|F6 B6 L6 R6|F9 B9 L9 R9 -in.windows metadata_and_annual n/a string "Double, Clear, Metal, Air|Double, Clear, Metal, Air, Exterior Clear Storm|Double, Clear, Non-metal, Air|Double, Clear, Non-metal, Air, Exterior Clear Storm|Double, Low-E, Non-metal, Air, M-Gain|Single, Clear, Metal|Single, Clear, Metal, Exterior Clear Storm|Single, Clear, Non-metal|Single, Clear, Non-metal, Exterior Clear Storm|Triple, Low-E, Non-metal, Air, L-Gain" -in.air_leakage_to_outside_ach50 metadata_and_annual n/a float 0.03094|0.06188|0.09282|0.09512|0.11826|0.12252|0.12376|0.1299|0.13124999999999998|0.1547|0.15501|0.16336|0.17324|0.175|0.17739|0.18564|0.19024|0.19484999999999997|0.2042|0.20668|0.21467999999999998|0.21658|0.21875|0.23512|0.23652|0.23779999999999998|0.24504|0.24752|0.25821|0.25835|0.2598|0.25986|0.26249999999999996|0.28536|0.28588|0.28624|0.29565|0.30624999999999997|0.3094|0.31002|0.32475|0.32672|0.3311|0.33292|0.34304999999999997|0.34428|0.34648|0.35|0.35268|0.35478|0.3578|0.36169|0.36358|0.36747|0.38048|0.38969999999999994|0.4084|0.41336|0.41391|0.42935999999999996|0.43034999999999995|0.43310000000000004|0.43401|0.4375|0.44432|0.45464999999999994|0.4574|0.46409999999999996|0.47024|0.47304|0.47559999999999997|0.48996|0.49008|0.49665000000000004|0.5|0.50092|0.51642|0.5167|0.51675|0.51956|0.5196|0.51972|0.53268|0.54084|0.54219|0.54537|0.5458|0.55913|0.56495|0.57175|0.57248|0.57868|0.5878|0.5913|0.60117|0.60249|0.60634|0.61245|0.6126|0.61435|0.6188|0.6201|0.6494500000000001|0.6495|0.65625|0.6622|0.66555|0.66584|0.66585|0.67404|0.67738|0.6860999999999999|0.68856|0.69296|0.70536|0.70956|0.7133999999999999|0.7156|0.72292|0.7233499999999999|0.7234499999999999|0.72716|0.73494|0.76534|0.7663|0.77232|0.77505|0.77934|0.78536|0.78716|0.79134|0.7990200000000001|0.80045|0.80156|0.8168|0.8268|0.82775|0.82782|0.82878|0.8311999999999999|0.84252|0.85743|0.8587199999999999|0.8606999999999999|0.8662000000000001|0.86802|0.875|0.8751|0.88267|0.88695|0.88864|0.89872|0.9036500000000001|0.90895|0.90923|0.9148|0.9321900000000001|0.94048|0.94608|0.9511999999999999|0.96396|0.97425|0.97992|0.9816999999999999|0.98696|0.9933000000000001|1.0|1.00184|1.0019500000000001|1.0126899999999999|1.0210000000000001|1.0334|1.0335|1.03524|1.03912|1.03944|1.06188|1.06536|1.0734|1.0878|1.09074|1.09077|1.0916|1.09375|1.11348|1.11784|1.11826|1.1234|1.12668|1.1299|1.14312|1.14345|1.1435|1.14496|1.1494499999999999|1.15306|1.15736|1.15885|1.16224|1.17324|1.1756|1.17804|1.18074|1.1826|1.189|1.20234|1.20237|1.20495|1.20498|1.21098|1.21268|1.2134|1.2210299999999998|1.2231|1.2249|1.2252|1.2287|1.2337|1.2431699999999999|1.24498|1.2593|1.2637800000000001|1.26511|1.2725300000000002|1.2794699999999999|1.28934|1.2910499999999998|1.29175|1.29642|1.2989000000000002|1.299|1.2993000000000001|1.31148|1.3125|1.3244|1.32816|1.32992|1.3311|1.3317|1.33296|1.3443|1.3446|1.34808|1.35144|1.35476|1.35813|1.35975|1.36358|1.37214|1.37438|1.37712|1.38032|1.38585|1.38592|1.39503|1.40144|1.40272|1.40273|1.41642|1.42575|1.4267999999999998|1.4312|1.44584|1.44594|1.4466999999999999|1.45432|1.45436|1.46988|1.47825|1.48044|1.48464|1.48498|1.5|1.5158999999999998|1.53068|1.5326|1.54464|1.5458|1.5501|1.55025|1.5518999999999998|1.57072|1.57276|1.57432|1.58268|1.5922|1.59282|1.5980400000000001|1.60083|1.60312|1.60316|1.61049|1.62252|1.6237499999999998|1.62804|1.62966|1.6317000000000002|1.6336|1.6353|1.63642|1.6374|1.6426800000000001|1.6550099999999999|1.6555|1.65756|1.65974|1.6623999999999999|1.66418|1.6723|1.67572|1.6767599999999998|1.67738|1.67739|1.68504|1.68693|1.6900199999999999|1.6948499999999997|1.70596|1.71468|1.71486|1.71525|1.71538|1.7213999999999998|1.7231100000000001|1.7246|1.7254|1.72718|1.72959|1.7324000000000002|1.73604|1.7389200000000002|1.74336|1.75|1.7502|1.75821|1.7598600000000002|1.7633999999999999|1.76534|1.77088|1.77232|1.7739|1.7765999999999997|1.77728|1.78716|1.789|1.7907899999999999|1.7912|1.79208|1.7924|1.79744|1.8073000000000001|1.81084|1.81344|1.8164699999999998|1.8179|1.8179500000000002|1.8201|1.82952|1.8346500000000001|1.83472|1.83735|1.8430499999999999|1.8478|1.8558|1.8643800000000001|1.86675|1.86747|1.88864|1.8889500000000001|1.8956|1.89951|1.901|1.9023999999999999|1.9036500000000003|1.91575|1.92792|1.9340099999999998|1.9446299999999999|1.94835|1.9485|1.94968|1.95984|1.96236|1.9633999999999998|1.96722|1.9679|1.97392|1.9866000000000001|1.9966499999999998|1.9975500000000002|2.0|2.0039000000000002|2.0039499999999997|2.0044199999999996|2.01231|2.0169|2.0212|2.0253799999999997|2.02716|2.03214|2.03505|2.0420000000000003|2.04537|2.05593|2.0594|2.06636|2.0668|2.067|2.07048|2.0719499999999997|2.07224|2.07615|2.0784599999999998|2.09496|2.1011699999999998|2.10216|2.1040799999999997|2.1063|2.12376|2.12463|2.13072|2.13245|2.13304|2.1468|2.14732|2.15175|2.15575|2.16336|2.16392|2.17005|2.175|2.1756|2.18154|2.1832|2.18409|2.1875|2.1877500000000003|2.19024|2.20668|2.2136|2.2216|2.22297|2.22696|2.22747|2.23568|2.23652|2.2405|2.2468|2.25336|2.25795|2.2598|2.26355|2.28066|2.28624|2.2864999999999998|2.2869|2.287|2.2894200000000002|2.2934|2.29602|2.29748|2.2988999999999997|2.30352|2.30523|2.30612|2.30975|2.31472|2.31696|2.3177|2.31856|2.3187|2.31956|2.32448|2.33838|2.34428|2.34501|2.34648|2.36148|2.3647799999999997|2.3652|2.3688|2.36985|2.37168|2.3740200000000002|2.37625|2.3776|2.378|2.38772|2.38944|2.3960399999999997|2.3963099999999997|2.40474|2.4099|2.41556|2.41636|2.41731|2.41792|2.42196|2.4268|2.43336|2.4364500000000002|2.44164|2.4420599999999997|2.44449|2.4462|2.4498|2.45463|2.4574|2.4674|2.48325|2.48361|2.4863399999999998|2.489|2.48961|2.48996|2.4936|2.5|2.50335|2.50845|2.51358|2.51607|2.5186|2.5265|2.5275600000000003|2.52798|2.52855|2.53268|2.5380599999999998|2.5451300000000003|2.55108|2.5589399999999998|2.562|2.5623|2.56599|2.57307|2.57868|2.5820999999999996|2.58295|2.5835|2.5837499999999998|2.5869|2.5903|2.59284|2.5978000000000003|2.598|2.5981199999999998|2.5986000000000002|2.5998|2.61348|2.61372|2.61393|2.61648|2.6187|2.62296|2.63668|2.6480099999999998|2.6488|2.64945|2.65188|2.6547|2.65632|2.65848|2.6622|2.6634|2.66592|2.6662999999999997|2.67256|2.68205|2.68308|2.6841500000000003|2.6868|2.68701|2.6886|2.6892|2.70288|2.7042|2.7049000000000003|2.70772|2.70952|2.71095|2.71626|2.71875|2.7195|2.71964|2.72082|2.72685|2.72716|2.7289999999999996|2.7378|2.74014|2.74124|2.74479|2.75208|2.75506|2.75835|2.76064|2.7682|2.77128|2.7717|2.77685|2.781|2.79006|2.7946|2.79565|2.80156|2.80288|2.80544|2.80553|2.8167|2.82475|2.83284|2.83296|2.8418|2.8434|2.8490699999999998|2.8515|2.8577999999999997|2.8624|2.8718500000000002|2.88265|2.8933999999999997|2.8982|2.90073|2.9055999999999997|2.90872|2.91212|2.9245200000000002|2.93035|2.9331|2.9450999999999996|2.94882|2.9565|2.961|2.96396|2.96928|2.96996|2.97044|2.98465|2.98494|2.98543|2.9868|3.0|3.00582|3.00585|3.0106|3.0180499999999997|3.0204500000000003|3.0224|3.0317999999999996|3.0332|3.0335|3.03425|3.03604|3.0577500000000004|3.06136|3.06225|3.0652|3.07136|3.0717499999999998|3.07364|3.08928|3.09904|3.09954|3.1005|3.1037999999999997|3.11024|3.11125|3.11245|3.11784|3.11976|3.12264|3.12488|3.12668|3.1367|3.1424399999999997|3.14825|3.14864|3.15304|3.15928|3.16224|3.16536|3.16585|3.16897|3.1844|3.18564|3.19388|3.19844|3.19956|3.2011|3.20632|3.2107599999999996|3.211|3.21368|3.22098|3.2228399999999997|3.22335|3.2265500000000005|3.2336500000000004|3.2410499999999995|3.24448|3.24504|3.24588|3.24725|3.2474999999999996|3.2486|3.25552|3.25604|3.25608|3.25932|3.2624999999999997|3.2706|3.27284|3.2748|3.2786999999999997|3.2853600000000003|3.29585|3.2964|3.3100199999999997|3.311|3.31148|3.31485|3.31512|3.31948|3.3247999999999998|3.32675|3.32775|3.32925|3.3322200000000004|3.33628|3.3378|3.3407|3.3446|3.35144|3.3535199999999996|3.35385|3.35476|3.35478|3.3615|3.37008|3.3701999999999996|3.37064|3.3714|3.3786|3.3800399999999997|3.38465|3.38564|3.3869|3.3896999999999995|3.39955|3.40144|3.40895|3.41192|3.416|3.4164|3.42088|3.42132|3.4265499999999998|3.42936|3.4303500000000002|3.4305|3.43076|3.43752|3.4427999999999996|3.4462200000000003|3.4492|3.4508|3.45918|3.4602500000000003|3.4641|3.46732|3.4778400000000005|3.48243|3.48464|3.48524|3.48672|3.5|3.50195|3.5036|3.5068|3.51642|3.5197200000000004|3.5326|3.5334|3.53568|3.5370999999999997|3.5410500000000003|3.54176|3.54464|3.5478|3.55225|3.5531999999999995|3.55456|3.5664000000000002|3.57432|3.578|3.5815799999999998|3.5824|3.58268|3.58416|3.5848|3.60816|3.6146000000000003|3.61485|3.61613|3.6167499999999997|3.62168|3.62454|3.6264199999999995|3.62688|3.62776|3.62804|3.6329399999999996|3.6358|3.6359000000000004|3.6397199999999996|3.6401499999999998|3.6402|3.65352|3.65756|3.65972|3.6661799999999998|3.6693000000000002|3.66944|3.6747|3.68568|3.6860999999999997|3.6956|3.6967|3.7011|3.70495|3.70596|3.708|3.7116|3.71165|3.71245|3.71305|3.7165799999999996|3.73282|3.7335|3.73494|3.73864|3.75781|3.7599799999999997|3.76325|3.77|3.77728|3.7779000000000003|3.7858799999999997|3.78686|3.7912|3.7915|3.79505|3.79902|3.8011|3.802|3.8047999999999997|3.8062499999999995|3.8117|3.8205999999999998|3.8267|3.8315|3.8329200000000005|3.8331500000000003|3.8392|3.8420500000000004|3.85584|3.8616|3.86169|3.8645|3.8680199999999996|3.87975|3.8875900000000003|3.8892599999999997|3.8967|3.8973000000000004|3.89936|3.9061000000000003|3.90835|3.9124399999999997|3.91391|3.9267999999999996|3.93444|3.9358|3.9359499999999996|3.9413|3.9433799999999994|3.9528000000000003|3.9546499999999996|3.95502|3.9567|3.9778199999999995|3.97992|3.9805|3.9850200000000005|3.99235|3.9932999999999996|3.9934|3.99385|3.9951000000000003|3.997|3.99805|4.0|4.00092|4.0078000000000005|4.007899999999999|4.008839999999999|4.01044|4.0112|4.01675|4.02059|4.02462|4.02885|4.0338|4.03571|4.0424|4.05432|4.0556|4.05748|4.05923|4.06158|4.06428|4.0678399999999995|4.0694|4.07005|4.0701|4.07415|4.07925|4.07946|4.0840000000000005|4.09074|4.09105|4.1024899999999995|4.10634|4.11186|4.1133|4.1188|4.1205|4.1223|4.13272|4.134|4.13875|4.13935|4.1438999999999995|4.1453999999999995|4.14935|4.1523|4.156|4.1569199999999995|4.15968|4.16045|4.17035|4.17225|4.178509999999999|4.18075|4.18152|4.1893|4.18992|4.19235|4.19345|4.19975|4.2023399999999995|4.20432|4.2081599999999995|4.2126|4.2133|4.21425|4.2248|4.2254000000000005|4.22863|4.2301|4.2313600000000005|4.23205|4.23843|4.2469|4.24752|4.24926|4.2518|4.262700000000001|4.2649|4.26608|4.27|4.2705|4.27665|4.28085|4.287850000000001|4.28845|4.2936|4.29464|4.29712|4.30045|4.3035|4.3115|4.32672|4.32784|4.33415|4.3401|4.35|4.35575|4.3558|4.3562|4.35655|4.35743|4.3664|4.36818|4.38048|4.4075500000000005|4.41336|4.41575|4.4196|4.4272|4.42825|4.4308|4.43219|4.44315|4.4432|4.44594|4.4539800000000005|4.45494|4.45566|4.46226|4.4679|4.47136|4.47304|4.478|4.47835|4.481|4.4936|4.50672|4.51269|4.5159|4.51825|4.5196|4.5271|4.5347|4.53505|4.53747|4.5447500000000005|4.549799999999999|4.55406|4.55418|4.55988|4.5668999999999995|4.57122|4.57195|4.57248|4.5729999999999995|4.5738|4.574|4.57404|4.57465|4.58336|4.5868|4.59018|4.59496|4.597799999999999|4.60704|4.6071|4.61046|4.61224|4.6195|4.62294|4.63245|4.63392|4.635|4.63712|4.6374|4.64079|4.64896|4.6501|4.65885|4.6733|4.67676|4.6769799999999995|4.68732|4.68856|4.69002|4.69296|4.69539|4.7061|4.7112|4.7125|4.7187600000000005|4.7216000000000005|4.72296|4.729559999999999|4.73004|4.7304|4.7376|4.73851|4.73892|4.739|4.7416599999999995|4.74336|4.7480400000000005|4.7525|4.7593700000000005|4.7667|4.77253|4.77544|4.7766|4.77888|4.7832|4.79082|4.7920799999999995|4.792619999999999|4.7971699999999995|4.7976600000000005|4.81344|4.8165|4.8198|4.8201|4.83105|4.83272|4.83462|4.83584|4.84392|4.84435|4.84974|4.8536|4.8548|4.86672|4.8742|4.88328|4.88406|4.88898|4.8924|4.8996|4.90273|4.90504|4.9059|4.9085|4.90926|4.90952|4.91344|4.9148|4.9348|4.94392|4.9446|4.95747|4.9665|4.96722|4.9726799999999995|4.97315|4.9749|4.978|4.97922|4.97992|4.9872|4.98888|5.0|5.00442|5.0067|5.00975|5.01296|5.0169|5.02716|5.03214|5.0372|5.0397|5.053|5.05596|5.0571|5.06536|5.07048|5.07846|5.096209999999999|5.10216|5.124|5.1246|5.13198|5.14614|5.15736|5.16248|5.164199999999999|5.1659|5.1674999999999995|5.1762|5.1806|5.18568|5.18693|5.1912|5.195600000000001|5.19631|5.19743|5.19827|5.1996|5.2009799999999995|5.2044|5.22696|5.22786|5.2374|5.24118|5.24592|5.26506|5.26855|5.2989|5.30201|5.303520000000001|5.30376|5.3081|5.3094|5.31307|5.3139|5.31696|5.3244|5.3268|5.33178|5.33309|5.33638|5.34512|5.35738|5.36148|5.3641|5.36616|5.36641|5.3683000000000005|5.3713999999999995|5.3736|5.37402|5.37488|5.3784|5.37887|5.39343|5.40576|5.40624|5.4084|5.409800000000001|5.4103|5.41544|5.41904|5.4219|5.4375|5.439|5.43928|5.44164|5.44206|5.4537|5.45385|5.45432|5.45622|5.457999999999999|5.46854|5.47169|5.4756|5.48028|5.48248|5.48634|5.48958|5.51012|5.51033|5.5167|5.5178199999999995|5.527559999999999|5.52852|5.52874|5.53392|5.5364|5.53938|5.54256|5.5537|5.55894|5.562|5.5674|5.5892|5.58929|5.5907599999999995|5.5913|5.59139|5.59727|5.60312|5.60576|5.61088|5.61536|5.615679999999999|5.617|5.61925|5.62345|5.6334|5.64039|5.6495|5.66568|5.66592|5.67784|5.6836|5.6868|5.69716|5.69807|5.703810000000001|5.715599999999999|5.71725|5.7248|5.72747|5.7292|5.7437000000000005|5.74725|5.75862|5.7653|5.768700000000001|5.7851|5.7867999999999995|5.79509|5.7964|5.80146|5.80909|5.8111999999999995|5.82036|5.82424|5.83849|5.84115|5.85305|5.8607|5.86502|5.8662|5.870830000000001|5.87965|5.888999999999999|5.890199999999999|5.89995|5.9037|5.913|5.91556|5.922|5.92214|5.92487|5.92792|5.93864|5.93992|5.94088|5.944000000000001|5.9693|5.9736|5.978|5.9787|5.98731|6.0|6.00383|6.0117|6.01185|6.0212|6.02475|6.040900000000001|6.0448|6.0549|6.0664|6.067|6.06781|6.0685|6.07208|6.098120000000001|6.09872|6.09917|6.10515|6.115500000000001|6.12272|6.1245|6.1304|6.13304|6.14257|6.14272|6.1434999999999995|6.14728|6.1685|6.17856|6.18205|6.1832|6.1874400000000005|6.19955|6.203119999999999|6.21585|6.22152|6.2225|6.2249|6.23568|6.24976|6.25336|6.25506|6.2661999999999995|6.2692|6.26969|6.29168|6.2965|6.29728|6.29752|6.30608|6.31856|6.3189|6.3196|6.32448|6.33072|6.3317|6.34858|6.34907|6.3556|6.3688|6.38776|6.38944|6.39016|6.39366|6.39688|6.397349999999999|6.40073|6.40451|6.41792|6.422|6.4268|6.44616|6.4467|6.4488199999999996|6.44994|6.46725|6.482099999999999|6.48543|6.48896|6.489000000000001|6.4945|6.51104|6.51208|6.51864|6.5412|6.54568|6.5573999999999995|6.58128|6.5917|6.5928|6.61024|6.622|6.62296|6.6297|6.6346|6.63896|6.6408000000000005|6.6495999999999995|6.65184|6.6555|6.6585|6.6648|6.67256|6.6756|6.6814|6.70288|6.7077|6.7196|6.7215|6.723|6.740399999999999|6.74128|6.7428|6.7572|6.76064|6.76816|6.7693|6.77128|6.7738|6.79065|6.798750000000001|6.7991|6.80288|6.8179|6.82392|6.832|6.8328|6.84264|6.8473500000000005|6.8530999999999995|6.8595|6.8607000000000005|6.880199999999999|6.885599999999999|6.9015|6.9016|6.9205000000000005|6.9282|6.929250000000001|6.93464|6.96928|6.97048|6.975149999999999|7.0|7.0039|7.0072|7.00995|7.0136|7.0192|7.02008|7.0652|7.07136|7.0821000000000005|7.0852|7.08928|7.12875|7.14864|7.156|7.1648|7.16536|7.2292000000000005|7.2297|7.233499999999999|7.25552|7.25608|7.2716|7.271800000000001|7.2802999999999995|7.2865|7.30704|7.3113|7.31512|7.31944|7.3494|7.37008|7.37136|7.4022|7.4099|7.41192|7.416|7.4232|7.4233|7.4261|7.46235|7.487399999999999|7.5|7.514550000000001|7.5265|7.55456|7.5794999999999995|7.583|7.5901|7.5998|7.6022|7.6187000000000005|7.6234|7.663|7.666300000000001|7.6784|7.684100000000001|7.7227500000000004|7.7232|7.729|7.74885|7.770899999999999|7.7868|7.794600000000001|7.7993999999999994|7.8066|7.812200000000001|7.8167|7.853599999999999|7.8561|7.8646|7.8716|7.871899999999999|7.8826|7.898199999999999|7.905600000000001|7.9134|7.9445|7.961|7.964099999999999|7.9847|7.9868|7.9877|7.990200000000001|7.9961|7.998899999999999|8.0|8.015600000000001|8.015799999999999|8.0224|8.0275|8.0335|8.05245|8.057099999999998|8.0577|8.097299999999999|8.1112|8.1126|8.114700000000001|8.1388|8.1401|8.1402|8.1483|8.15625|8.1585|8.1765|8.1821|8.187|8.2134|8.241|8.259|8.27505|8.2775|8.2787|8.287799999999999|8.2987|8.312|8.3148|8.33055|8.3407|8.3445|8.3615|8.3786|8.383799999999999|8.3847|8.3869|8.38695|8.3995|8.4252|8.4266|8.4285|8.450099999999999|8.450800000000001|8.4602|8.4641|8.47425|8.5036|8.5298|8.5299|8.54|8.541|8.5533|8.5734|8.5769|8.5938|8.607|8.61555|8.623|8.627|8.64795|8.6683|8.67765|8.6802|8.694600000000001|8.69835|8.7116|8.7131|8.7168|8.7751|8.79105|8.7993|8.8315|8.833499999999999|8.8392|8.8544|8.8565|8.8616|8.883|8.8863|8.8864|8.916|8.9358|8.953949999999999|8.956|8.9567|8.9604|8.962|8.981850000000001|8.9872|9.0204|9.0365|9.0542|9.061350000000001|9.0672|9.0694|9.0701|9.08235|9.089500000000001|9.08975|9.1005|9.1439|9.145999999999999|9.1476|9.1493|9.173250000000001|9.1736|9.18825|9.2126|9.2142|9.21525|9.239|9.2649|9.26985|9.27|9.279|9.3002|9.33375|9.33735|9.3466|9.3993|9.425|9.443200000000001|9.44475|9.49755|9.5676|9.57875|9.6396|9.67005|9.67965|9.723149999999999|9.7484|9.8118|9.817|9.8361|9.8395|9.8696|9.887550000000001|9.933|9.94455|9.9498|9.96255|9.98325|10.0|10.0195|10.01975|10.0221|10.06155|10.0845|10.106|10.1358|10.15395|10.1607|10.17525|10.19865|10.22685|10.27965|10.3318|10.352250000000002|10.3524|10.35975|10.3612|10.38075|10.3824|10.3923|10.3992|10.4088|10.4748|10.505849999999999|10.5108|10.5204|10.5288|10.531500000000001|10.6188|10.62315|10.6536|10.65675|10.66225|10.665199999999999|10.736600000000001|10.742799999999999|10.778749999999999|10.8168|10.819600000000001|10.875|10.878|10.9077|10.915999999999999|10.920449999999999|10.9512|11.0334|11.068|11.1074|11.11485|11.1348|11.13495|11.13735|11.13915|11.15565|11.1784|11.1826|11.2025|11.215|11.2311|11.234|11.257200000000001|11.2668|11.289750000000002|11.299|11.31775|11.3745|11.38515|11.38545|11.3934|11.3997|11.4033|11.42805|11.431199999999999|11.4325|11.4345|11.4351|11.4584|11.466999999999999|11.487400000000001|11.4945|11.499450000000001|11.5176|11.526150000000001|11.52855|11.5306|11.55735|11.5702|11.573599999999999|11.5848|11.5928|11.5935|11.5978|11.622399999999999|11.66535|11.6919|11.718300000000001|11.7214|11.72505|11.7324|11.777999999999999|11.7969|11.8074|11.807849999999998|11.8239|11.844|11.847299999999999|11.858400000000001|11.8701|11.888000000000002|11.9386|11.941500000000001|11.9472|11.9595|11.97705|11.9802|11.98155|11.994150000000001|12.0237|12.0272|12.0336|12.0495|12.05025|12.081800000000001|12.086549999999999|12.0896|12.134|12.137|12.166799999999999|12.18225|12.19965|12.208200000000001|12.21015|12.2103|12.22245|12.231000000000002|12.27315|12.286999999999999|12.337|12.3399|12.3598|12.361500000000001|12.41805|12.4317|12.437249999999999|12.445|12.44805|12.4498|12.4722|12.5|12.51105|12.51675|12.52425|12.532399999999999|12.567900000000002|12.57705|12.593|12.59925|12.632499999999999|12.6378|12.639899999999999|12.64275|12.6634|12.676200000000001|12.6903|12.69615|12.7554|12.7644|12.79485|12.81|12.811499999999999|12.82995|12.8934|12.906200000000002|12.91475|12.9345|12.9515|12.964199999999998|12.978000000000002|12.998999999999999|13.00245|13.067400000000001|13.069650000000001|13.0824|13.093499999999999|13.114799999999999|13.16265|13.244|13.24725|13.2588|13.2594|13.281600000000001|13.28475|13.292399999999999|13.311|13.317|13.331499999999998|13.3628|13.4037|13.4154|13.42075|13.434|13.43505|13.443|13.5144|13.520999999999999|13.5245|13.5386|13.5813|13.593749999999998|13.597500000000002|13.5982|13.604099999999999|13.60515|13.6358|13.645|13.689000000000002|13.706199999999999|13.71585|13.719|13.72395|13.760399999999999|13.79175|13.803|13.8032|13.8189|13.8213|13.841000000000001|13.8564|13.884250000000002|13.897350000000001|13.905000000000001|13.950299999999999|13.972999999999999|13.978250000000001|14.0078|14.0144|14.0272|14.0384|14.083499999999999|14.12375|14.164200000000001|14.164800000000001|14.209|14.216999999999999|14.289|14.323|14.351400000000002|14.359250000000001|14.41325|14.4594|14.46275|14.466999999999999|14.491000000000001|14.497250000000001|14.527999999999999|14.543600000000001|14.560599999999999|14.6226|14.65175|14.7225|14.804999999999998|14.8198|14.8464|14.8466|14.8522|14.860000000000001|14.92325|14.9247|14.934|14.974799999999998|15.0|15.034|15.053|15.10225|15.112|15.158999999999999|15.166|15.1675|15.17125|15.1802|15.1806|15.1912|15.1996|15.237400000000001|15.2468|15.28875|15.326|15.332600000000001|15.3568|15.358749999999999|15.368200000000002|15.3714|15.4098|15.445500000000001|15.4464|15.449750000000002|15.4977|15.541799999999999|15.553799999999999|15.556249999999999|15.562249999999999|15.5736|15.589200000000002|15.598799999999999|15.624400000000001|15.6334|15.665499999999998|15.7122|15.7292|15.74125|15.7432|15.743799999999998|15.7652|15.796399999999998|15.811200000000001|15.8268|15.82925|15.922|15.9694|15.9736|15.9754|15.9922|16.031599999999997|16.0448|16.067|16.1049|16.114199999999997|16.11675|16.13275|16.20525|16.2224|16.2252|16.229400000000002|16.266199999999998|16.269299999999998|16.2776|16.2802|16.2804|16.2966|16.3125|16.353|16.3642|16.3935|16.4268|16.4532|16.482|16.5501|16.555|16.5574|16.57425|16.575599999999998|16.5974|16.6296|16.638749999999998|16.6611|16.6814|16.689|16.7035|16.7572|16.767599999999998|16.76925|16.7694|16.7738|16.7739|16.799|16.8504|16.8532|16.857|16.893|16.900199999999998|16.901600000000002|16.9204|16.92325|16.9282|16.9485|16.99775|17.0072|17.04475|17.0596|17.08|17.082|17.1066|17.132749999999998|17.1468|17.1876|17.2311|17.246|17.25375|17.254|17.2959|17.301250000000003|17.3205|17.3366|17.3553|17.389200000000002|17.3967|17.4232|17.4262|17.4336|17.50975|17.534|17.548|17.5502|17.5821|17.663|17.6784|17.70525|17.7088|17.713|17.7232|17.76125|17.766|17.8716|17.907899999999998|17.9134|17.9208|17.924|18.0408|18.1084|18.122700000000002|18.1344|18.1388|18.1402|18.1795|18.20075|18.201|18.216250000000002|18.2878|18.291999999999998|18.2986|18.346500000000002|18.3472|18.4252|18.4284|18.4305|18.478|18.52475|18.5298|18.54|18.558|18.55825|18.56225|18.56525|18.6675|18.6747|18.7185|18.7986|18.81625|18.8895|18.9575|18.97525|18.975749999999998|18.9951|18.9995|19.046750000000003|19.058500000000002|19.1352|19.1575|19.16575|19.195999999999998|19.210250000000002|19.2792|19.308|19.3401|19.3593|19.446299999999997|19.4865|19.5305|19.54175|19.6615|19.6722|19.679|19.67975|19.7065|19.73125|19.7455|19.74875|19.764|19.7835|19.86125|19.8891|19.8996|19.961750000000002|19.9665|19.967|19.99025|20.0|20.0395|20.0442|20.055999999999997|20.1231|20.14425|20.212|20.2716|20.278|20.30375|20.3079|20.347|20.35025|20.3505|20.37075|20.3973|20.4537|20.45525|20.5593|20.566499999999998|20.594|20.602500000000003|20.6636|20.69675|20.704500000000003|20.7195|20.7224|20.74675|20.7615|20.7846|20.787|20.7984|20.85175|20.861250000000002|20.9465|20.9496|20.961750000000002|20.99875|21.011699999999998|21.0408|21.0576|21.066499999999998|21.07125|21.127000000000002|21.1505|21.16025|21.2463|21.274|21.330399999999997|21.349999999999998|21.3525|21.38325|21.473200000000002|21.485599999999998|21.557499999999997|21.6336|21.670749999999998|21.75|21.779|21.78275|21.840899999999998|21.8595|21.9024|22.0668|22.07875|22.098000000000003|22.136|22.14125|22.1757|22.2148|22.2297|22.2699|22.2747|22.2783|22.3395|22.3568|22.3652|22.39175|22.405|22.4622|22.5336|22.579500000000003|22.598|22.6355|22.6735|22.67525|22.722900000000003|22.749|22.7703|22.7994|22.8561|22.859750000000002|22.862399999999997|22.865|22.8702|22.87325|22.9168|22.933999999999997|22.974800000000002|22.989|23.031499999999998|23.0352|23.0355|23.052300000000002|23.0571|23.0612|23.1147|23.1404|23.16225|23.175|23.1856|23.1956|23.244799999999998|23.3838|23.436600000000002|23.4428|23.4501|23.5938|23.6148|23.615699999999997|23.6478|23.688|23.694599999999998|23.7402|23.776000000000003|23.8772|23.883000000000003|23.8944|23.9541|23.9604|23.9631|23.988300000000002|24.0672|24.099|24.163600000000002|24.1792|24.268|24.274|24.333599999999997|24.3645|24.416400000000003|24.4203|24.4449|24.5463|24.573999999999998|24.6798|24.723000000000003|24.8361|24.8634|24.874499999999998|24.89|24.8961|24.8996|24.9444|25.0|25.0335|25.064799999999998|25.135800000000003|25.1541|25.186|25.1985|25.264999999999997|25.279799999999998|25.2855|25.3268|25.352400000000003|25.3806|25.3923|25.5288|25.5897|25.62|25.622999999999998|25.6599|25.7868|25.812400000000004|25.8295|25.903|25.928399999999996|25.997999999999998|26.0049|26.134800000000002|26.139300000000002|26.186999999999998|26.229599999999998|26.4945|26.5176|26.5188|26.622|26.7256|26.8074|26.8308|26.8415|26.857|26.8701|27.0288|27.041999999999998|27.0772|27.187499999999996|27.1964|27.208199999999998|27.2103|27.2716|27.378000000000004|27.412399999999998|27.4317|27.4479|27.5835|27.606|27.6378|27.6426|27.682000000000002|27.7128|27.768500000000003|27.945999999999998|27.956500000000002|28.0156|28.0544|28.0768|28.166999999999998|28.2475|28.328400000000002|28.578|28.646|28.718500000000002|28.8265|28.982000000000003|29.055999999999997|29.121199999999998|29.146|29.3035|29.445|29.609999999999996|29.6396|29.6932|29.7044|29.720000000000002|29.8465|29.868|29.949599999999997|30.0|30.106|30.2045|30.224|30.332|30.335|30.3604|30.3612|30.474800000000002|30.4936|30.5775|30.652|30.7136|30.736400000000003|30.7428|31.112499999999997|31.124499999999998|31.178400000000003|31.2668|31.330999999999996|31.4584|31.4825|31.4864|31.5304|31.57|31.592799999999997|31.622400000000003|31.6536|31.6585|31.778|31.9388|31.9472|31.9844|32.0896|32.134|32.2335|32.2655|32.4105|32.4448|32.486000000000004|32.5552|32.5604|32.5932|32.7284|32.787|32.9064|32.964|33.1148|33.1485|33.1948|33.2592|33.277499999999996|33.3628|33.378|33.407|33.5144|33.5385|33.5388|33.714|33.786|33.803200000000004|33.8465|33.9955|34.0895|34.16|34.164|34.2132|34.5075|34.602500000000006|34.641|34.6732|34.8464|34.8524|35.0195|35.068|35.096|35.1004|35.326|35.3568|35.4105|35.426|35.5225|35.7432|35.8268|36.2776|36.2804|36.4015|36.432500000000005|36.5756|36.5972|36.8504|36.8568|37.0495|37.0596|37.08|37.1165|37.1305|37.437|37.915|37.9505|37.951499999999996|38.093500000000006|38.117000000000004|38.315|38.391999999999996|38.420500000000004|38.645|38.973|39.0835|39.323|39.358|39.3595|39.491|39.528|39.567|39.923500000000004|39.934|39.9805|40.0|40.111999999999995|40.556|40.694|40.7005|40.7415|40.9105|41.205000000000005|41.3935|41.439|41.4935|41.574|41.722500000000004|41.893|41.923500000000004|42.1425|42.254000000000005|42.699999999999996|42.7665|43.341499999999996|43.558|43.5655|44.1575|44.196000000000005|44.679|44.7835|45.347|45.3505|45.719500000000004|45.7465|46.062999999999995|50.0 -in.applicable metadata_and_annual n/a boolean TRUE -in.buildstock_csv_path metadata_and_annual n/a string buildstock.csv -in.units_represented metadata_and_annual n/a integer 1 -in.simulation_control_run_period_begin_day_of_month metadata_and_annual n/a integer 1 -in.simulation_control_run_period_begin_month metadata_and_annual n/a integer 1 -in.simulation_control_run_period_calendar_year metadata_and_annual n/a integer 2018 -in.simulation_control_run_period_end_day_of_month metadata_and_annual n/a integer 31 -in.simulation_control_run_period_end_month metadata_and_annual n/a integer 12 -in.simulation_control_timestep metadata_and_annual n/a integer 15 -in.utility_bill_electricity_fixed_charges metadata_and_annual usd float 13.8 -in.utility_bill_electricity_marginal_rates metadata_and_annual usd float 0.093792718|0.095708797|0.09623518|0.097183641|0.098152001|0.098685549|0.104342732|0.10788677|0.109361977|0.109475659|0.109586156|0.109780313|0.112014549|0.112391066|0.11263658|0.115311516|0.116761718|0.117508163|0.118167966|0.120336179|0.12212382|0.123340947|0.123565513|0.126507786|0.127150707|0.128706431|0.128973847|0.132607564|0.133635546|0.133848087|0.136443929|0.136793145|0.139605448|0.141584464|0.142604109|0.147789041|0.150543726|0.150884217|0.155457448|0.163560709|0.165542527|0.183661334|0.198047752|0.215063004|0.245262372|0.249571924|0.258502111|0.266971414|0.271402266|0.278485535|0.396489398 -in.utility_bill_fuel_oil_fixed_charges metadata_and_annual usd float 0 -in.utility_bill_fuel_oil_marginal_rates metadata_and_annual usd float 2.746846154|2.897307692|2.967307692|3.019076923|3.088538462|3.274230769|3.309538462|3.329769231|3.448461538|3.449153846|3.486230769|3.526538462|3.582692308|3.658923077|3.681153846|3.694307692|3.741846154|3.768230769|3.801|3.809384615|3.888615385|3.921|3.941846154|3.976461538|4.016307692|6.58 -in.utility_bill_natural_gas_fixed_charges metadata_and_annual usd float 4.95|10|10.8|11.38|13.16|13.24|13.5|14|14.6 -in.utility_bill_natural_gas_marginal_rates metadata_and_annual usd float 0.757959287|0.766550977|0.771145095|0.808926492|0.814349384|0.8619508|0.890533801|0.914474387|0.924764572|0.947964437|0.95950615|0.970288774|0.97273477|1.041230921|1.042071903|1.058096089|1.083933273|1.131644784|1.13368161|1.138438617|1.161648985|1.172535955|1.179455136|1.191737547|1.250961795|1.274823771|1.324122284|1.376099502|1.40010647|1.411150918|1.413705399|1.413742415|1.416042199|1.420968081|1.44004766|1.440901216|1.443628661|1.45183129|1.466099897|1.476893379|1.491501436|1.492142732|1.621992584|1.651841618|1.65263025|1.75104111|1.766762896|1.837640087|1.863660544|1.964713414|4.83842304 -in.utility_bill_propane_fixed_charges metadata_and_annual usd float 0 -in.utility_bill_propane_marginal_rates metadata_and_annual usd float 1.642230769|1.679230769|1.761461538|1.889|1.906153846|1.951692308|1.982692308|2.021384615|2.164692308|2.221692308|2.279153846|2.304384615|2.316615385|2.331384615|2.426692308|2.485153846|2.536923077|2.538846154|2.632769231|2.734153846|2.734461538|2.947230769|2.959615385|3.004846154|3.038615385|3.178923077|3.256230769|3.390230769|3.404923077|3.439923077|3.467538462|3.487846154|3.495|3.551923077|3.623384615|3.666076923|3.680615385|3.699076923|3.720461538|3.747769231|3.819769231|3.967076923|4.751615385|8.11 -in.utility_bill_scenario_names metadata_and_annual n/a string Utility Rates - Fixed + Variable -in.utility_bill_simple_filepaths metadata_and_annual n/a string data/utility_bills/sdr_rates/State.tsv -in.weather_file_city metadata_and_annual n/a string A L Mangham Jr Rgnl|Aberdeen Regional|Abilene Dyess Afb|Abilene Municipal|Accomack Co|Adirondack Rgnl|Ainsworth Municipal|Airborne Airpark|Aitkin Muni Kurtz Fl|Akron Akron Canton|Alamogordo White Sa|Alamosa Muni Awos|Albany County Airpo|Albany Municipal|Albert Lea Awos|Albuquerque Intl|Alexander Fld South|Alexandria Int|Algona|Alice Intl|Allegheny Co|Allentown A Bethle|Alliance Muni|Alma Bacon Co|Alpena Phelps Colli|Altoona Blair Co|Alturas Muni|Altus Afb|Amarillo Intl|Ames Muni|Anderson Rgnl|Andrews Afb Camp Sp|Angelina Co|Ann Arbor Municipal|Anniston Metropolit|Anoka Co Blaine|Antrim Co|Apalachicola Muni|Aransas Co|Arcata|Ardmore Downtown Exe|Arlington Muni|Arthur N Neu|Ashe Co|Asheboro Rgnl|Asheville Municipal|Ashtabula Co|Aspen Pitkin Co Sard|Astoria Clatsop|Athens Municipal|Atlanta Municipal|Atlantic City Intl|Atlantic Muni|Auburn Lewiston Muni|Audubon Co|Augusta Bush Field|Augusta State Arpt|Aurora Muni Al Pott|Aurora Municipal|Aurora State|Austin Camp Mabry|Austin Mueller Muni|Austin Muni|Baker City Muni|Baker Muni|Bakersfield Meadows|Baltimore Washingto|Bangor Intl|Baraboo Wisc Dells|Barksdale Afb|Barnstable Muni Boa|Batesville Rgnl|Baton Rouge Metro R|Baudette Intl|Beale Afb|Beatrice Muni|Beaufort Mcas|Beckley Raleigh Ct|Beeville Chase Naas|Bellingham Intl|Bemidji Municipal|Bentonville Muni Tha|Berlin Municipal|Bert Mooney|Beverly Muni|Big Piney Amos|Billings Logan Int|Binghamton Broome C|Birmingham|Birmingham Muni|Bisbee Douglas Intl|Bishop Airport|Bismarck Municipal|Block Island|Blue Canyon Nyack|Blue Ridge|Blythe|Boise Municipal|Boone Co|Boone Muni|Boscobel|Boston Logan Intl|Bowerman|Bowers Fld|Bowling Green Warre|Bowman Fld|Bradford Rgnl|Brainerd Lakes Rgnl|Branch Co Mem|Brazoria Co|Bremerton National|Brewster Fld|Bridgeport Igor I|Broken Bow Muni|Brookings Rgnl|Brownsville Intl|Brunswick Golden Is|Buckley Afb|Buffalo|Burke Lakefront|Burley Muni|Burlington Alamance|Burlington Intl|Burnet Muni Kate Cr|Burns Muni Amos|Butler Co Rgnl|Butler Co Scholter F|C David Campbell Fld|C M Schulz Sonoma Co|Cahokia St Louis|Cairns Aaf|Caldwell Awos|Camarillo|Cambridge Muni|Cannon Afb|Canyonlands Fld|Cape Girardeau Rgnl|Cape Hatteras|Cape May Co|Cape Newenham Afs|Capital City Arpt|Cartersville|Casper Natrona Coun|Cavern City Air Ter|Cecil Fld|Cedar City Rgnl|Cedar Rapids Muni|Centennial|Central Illinois Rg|Centreville|Challis|Chamberlain Amos|Chan Gurney Muni|Chandler Fld|Chanute Martin Johns|Chariton Muni|Charles B Wheeler D|Charleston Muni|Charlevoix Muni|Charlotte Co|Charlotte Douglas|Charlottesville Alb|Chattanooga Lovell|Cherry Capital|Cherry Point Mcas|Chesapeake|Cheyenne Warren Afb|Chicago Midway|Chicago Waukegan|Chicopee Falls West|Childress Municipal|Chippewa Valley Rgn|Cincinnati Greater|Cincinnati Muni Lun|Clarion Muni|Clayton Muni Amos|Clearfield Lawrence|Cleveland|Clines Corners|Clinton Muni|Clinton Sherman|Clintonville Muni|Cloquet Carlton Co|Clovis Muni|Cody Muni Awos|Coeur D Alene Air Te|Coffeyville Muni|Col James Jabara|Cold Bay|Coles Co Mem|Collin Co Rgnl|Colorado Plains Rgnl|Colorado Springs Mu|Columbia Gorge Rgnl|Columbia Metro|Columbia Owens Apt|Columbia Regional|Columbus Afb|Columbus Metropolit|Columbus Muni|Columbus Port Colum|Concord Buchanan|Concord Municipal|Concordia Blosser M|Converse Co|Copper Harbor|Corpus Christi Int|Cortez Muni|Corvallis Muni|Cotulla Lasalle Co|Council Bluffs Muni|Cox Fld|Craig Moffat|Craven Co Rgnl|Creston Muni|Crookston Muni Kirkw|Cross City Cross Ci|Crossville Mem Whit|Crystal|Culpeper Rgnl|Custer|Custer County|Cut Bank Muni|Dalhart Municipal|Dallas Hensley Field Nas|Dallas Love Fld|Dalton|Danbury Muni Arpt|Daniel Field|Danville Rgnl|Dare Co Rgnl|Davenport Muni|Davis Monthan Afb|Davison Aaf|Dawson Community|Dayton James M Cox|Dayton Wright Brothe|Dayton Wright Patte|Daytona Beach Intl|Decatur|Decorah Muni|Deer Park Arpt|Defiance Memorial|Dekalb Peachtree|Del Rio Intl|Delaware Co Johnson|Delta Co|Deming Muni|Denison Municipal|Denton Muni|Denver Internationa|Derby Fld|Des Moines Intl|Desert Rock|Destin Ft Walton|Detroit Lakes Wethin|Detroit Metropolita|Devils Lake Muni|Dickinson Muni|Dillant Hopkins|Dillingham Muni|Dillon Airport|Dinwiddie Co|Dodge City Awos|Dodge Co|Door Co Cherryland|Dothan Rgnl|Dover Afb|Doylestown|Drake Fld|Draughon Miller Cen|Du Bois Jefferson C|Dublin New Riv Vlly|Dubuque Municipal|Duluth Intl Airport|Dunkirk|Dupage|Durango La Plata Co|Dutch Harbor|Dutchess Co|Dyersburg Muni|Eagle Co Rgnl|Eagle Creek Airpark|Eagle River Union|Eastern Slopes Rgnl|Eastern Wv Rgnl She|Easterwood Fld|Edward F Knapp State|El Paso Intl Arpt|El Toro Mcas|Elizabeth City Cgas|Elkhart Morton Co|Elkins Randolph Cou|Elko Rgnl|Ellsworth Afb|Elmira Corning Rgnl|Ely Arpt Yelland Fld|Emporia Muni|Erie Intl Airport|Ernest A Love Fld|Esler Rgnl|Essex Co|Estherville Muni|Eugene Mahlon Sweet|Eureka Ramos|Evansville Regional|Executive|Fairchild Afb|Fairfield Co|Fairfield Muni|Fairfield Travis Af|Fairmont Muni Awos|Fallon Nas|Falls City Brenner|Fargo Hector Field|Farmington Rgnl|Farmville Rgnl|Fayette Rgnl Air Ctr|Fayetteville Rgnl G|Felts Fld|Findlay|Flagstaff Airport|Flint Bishop Intl|Florence Rgnl|Florida Keys Maratho|Floyd Bennett Mem|Flying Cloud|Fond Du Lac Co|Forbes Fld|Ford|Fort Benning|Fort Bragg Simmons|Fort Campbell Aaf|Fort Dodge Awos|Fort Drum Wheeler S|Fort Knox Godman|Fort Lauderdale Exec|Fort Lewis Gray Aaf|Fort Myers Page Fld|Fort Polk Army|Fort Sill|Fort Smith Muni|Fort Stockton Pecos|Fort Wayne Baer Fld|Fort Worth Alliance|Fort Worth Meacham|Four Corners Rgnl|Franklin Muni Jb Ros|Frederick Muni|Fremont Muni|Fresno Air Terminal|Friday Harbor|Frying Pan Shoals|Ft Riley Marshall|Fulton Co Arpt Brow|Gadsden Muni|Gage Shattuck|Gainesville Rgnl|Gallatin Fld|Gallup Muni|Galveston|Garden City Rgnl|Garfield Co Rgnl|Garrison|Gastonia Muni|Gaylord Rgnl|Georgetown Muni|Gillette Gillette C|Glasgow Intl Arpt|Glenwood Muni|Gocebic Iron Co|Goodland Renner Fie|Grand Forks Afb|Grand Forks Intl|Grand Island County|Grand Junction Walk|Grand Marias|Grand Rapids Itasca|Grand Rapids Kent C|Gratiot Community|Great Bend Muni|Great Falls Intl|Greater Buffalo Int|Greater Peoria Muni|Greater Pittsburgh I|Greater Rockford|Greeley Weld Co|Green Bay A Straub|Greenbrier Valley|Greensboro G High|Greenville|Greenville Greenvil|Greenwood Co|Greenwood Leflore|Grider Fld|Griffiss Airpark|Grissom Arb|Gulfport Biloxi Int|Gunnison Co Awos|Gustavus|Guthrie Muni|Hagerstown Rgnl Ric|Haines|Halifax Co|Hallock Muni|Hancock Co Bar Harbo|Hanford|Hanford Muni|Hanover Co Muni|Harriman And West|Harrisburg Capital|Harrisburg Intl|Harrison Marion Rgn|Harry Clever Fld|Harry P Williams Mem|Hartford Brainard|Hartness State|Hartnett County|Hastings Muni|Hattiesburg Laurel|Havre Amos|Hayden Yampa Awos|Hays Rgnl|Hayward Air Term|Helena Regional|Henderson City Co|Hermiston Muni|Hernando Co|Hettinger Muni|Hickory Rgnl|Hill Afb|Hill City Muni|Hillsdale Municipal|Hobart Muni|Homer|Hondo Muni|Honolulu Intl|Houghton County|Houghton Lake Rosco|Houston Dw Hooks|Houston Ellington|Houston Intercontin|Hunter Aaf|Huntingburg|Huntington Tri Stat|Huntsville|Huntsville Madison|Huron Co Mem|Huron Huron Regiona|Hutchinson Co|Hutchinson Muni|Hutchinson Muni Butl|Idaho Falls Rgnl|Iliamna Iliamna Air|Imperial Co|Indiana Co|Indianapolis I Mun|Ingalls Fld|International Falls|Iowa City Muni|Iowa Co|J F Kennedy Memorial|J L Helms Sevier Co|Jack Mc Namara Fld|Jackson Allen C Th|Jackson Carroll Arpt|Jackson Co Reynolds|Jackson Hole|Jackson Muni|Jacksonville Awos|Jacksonville Intnl|Jacksonville Muni|Jacksonville Nas|Jamestown Rgnl|Jefferson City Mem|Jerome Co|John H Batten|John Murtha Johnsto|Johnson Co|Johnson Co Executive|Johnson Co Industr|Joliet Rgnl|Jonesboro Muni|Joplin Rgnl|Jordan|Joslin Fld Magic Va|Juneau|Kalamazoo Battle Cr|Kalispell Glacier P|Kansas City Intl|Kearney Muni|Kenosha Rgnl|Keokuk Muni|Ketchikan Intl|Killeen Muni Awos|Kimble Co|King Salmon|Kingman|Kingsville Nas|Kirksville Rgnl|Kirsch Muni|Kit Carson County|Klamath Falls|Knoxville|Knoxville Municipal|Kodiak|L M Clayton|L O Simenstad Muni|La Crosse Municipal|La Grande Union Co|La Junta Muni|La Usc Downtown Cam|Lac Qui Parle Co|Laconia Muni|Lafayette Rgnl|Lake Charles Muni|Lake Co|Lake Tahoe|Lakefront|Lakeland Noble F Le|Lamar Muni|Lamoni Muni Airport|Lancaster|Langlade Co|Langley Afb Hampton|Lansing Capital Cit|Laramie Rgnl|Laredo Intl Airport|Las Vegas Mccarran|Las Vegas Municipal|Laughlin Afb|Laurence G Hanscom|Lawrence Muni|Lawrenceville Vincen|Lawton Municipal|Le Mars Muni|Lebanon Muni|Lee C Fine Mem|Lee Gilmer Mem|Leesburg Executive|Leesburg Rgnl|Lemhi Co|Lenawee Co|Lewis University|Lewiston Nez Perce|Lewistown Muni|Lexington Blue Gras|Liberal Muni|Lidgerwood Ramos|Lima Allen Co|Limon Muni|Lincoln Municipal|Litchfield Muni|Little Rock Adams F|Little Rock Afb|Livingston Co|Logan Cache|London Corbin Arpt|Lonesome Pine|Long Island Mac Art|Longview|Lorain Co Rgnl|Louisa Co Freeman Fl|Louisville Standifo|Lowell|Lubbock Lubbock Int|Luce Co|Lynchburg Mun P G|Mackinack Island|Macon Lewis Bwilso|Madera Muni|Madison Dane County|Malmstrom Afhp|Manassas Rgnl Davis|Manchester|Manhattan Rgnl|Manistee Co Blacker|Manistique Amos|Manitowoc Co|Mankata Rgnl Arpt|Mansfield Lahm Rgnl|Marfa Municipal|Marianna Muni|Marietta Dobbins Af|Marion Muni|Marseilles Island|Marshall Town Muni|Marshfield Muni|Marthas Vineyard|Mason City Muni|Mason Co|Mason Jewett Fld|Massena Intl Richar|Matinicus Rock|Maxton|Maxwell Afb|Mbs Intl|Mc Alester Rgnl|Mc Allen Miller Int|Mc Call Muni|Mc Clellan Afld|Mc Comb Pike Co Joh|Mc Connell Afb|Mc Gregor Executive|Mc Kellar Sipes Rgn|Mc Minnville Muni|Mccook Rgnl|Mecklenburg Brunswi|Medford Jackson Cou|Medicine Lodge Amos|Meeker|Melbourne Regional|Memorial Fld|Memphis Intl Arpt|Menominee Marinette|Merced Muni Macready|Mercer Co|Meriden Markham Muni|Meridian Key Field|Meridian Nas|Merrill Muni|Metcalf Fld|Miami|Michael J Smith Fld|Mid Ohio Valley Rgn|Middleton Fld|Middleton Island|Midland Midland Reg|Miles City|Millington Muni Arp|Millville Muni|Milwaukee Gen Mitc|Mineral Wells Muni|Minot Afb|Minot Intl|Miramar Mcas|Mission Fld|Missoula Johnson Be|Mitchell Muni|Mobile Bates Field|Mobile Downtown|Mobridge Muni|Modesto City Co Har|Moline Quad City|Monmouth Executive|Monroe Airport|Monroe Co|Monroe Muni|Monroe Rgnl|Montevideo Chippewa|Montgomery Co|Montgomery Dannelly|Monticello Muni|Monticello Rgnl|Montrose Rgnl|Moody Afb Valdosta|Moore Co|Mora Muni|Morgantown Muni Wal|Morris Muni|Morrisville Stowe St|Moses Lake Grant Co|Mount Ida|Mount Pleasant Muni|Mount Vernon|Mountain Empire|Mountain Home Afb|Mt Washington Rgnl|Mullan Awrs|Muscatine Muni|Muskegon|Muskogee Davis Fld|Myrtle Beach Civ|Nantucket Mem|Napa Co|Naples Muni|Nashville Metropoli|Natchez Hardy Awos|New Braunfels Muni|New Iberia Acadiana|New Orleans Moisant|New Orleans Nas Jrb|New River Mcas|New York John F Ke|New York La Guardia|Newark Intl Airport|Newnan Coweta Co|Newport|Newport News Willia|Newport State Beach|Newton City Co|Newton Muni|Niagara Falls Intl|Nogales Intl|Norfolk Intl Arpt|Norfolk Karl Stefan|Norfolk Ns|Norman Max Westheim|Norman Y Mineta San|North Bend Muni|North Central State|North Platte Lee Bi|Northeast Philadelph|Northeastern Rgnl|Northwest Alabama R|Norwood Mem|Nyc Central Park|Oak Ridge|Oakland Co Intl|Ocala Intl J Taylor|Ocean City Muni|Oconee Co Rgnl|Odessa Schlemeyer Fl|Offutt Afb|Ogden Hinckley Muni|Ohio State Universi|Oklahoma City W Ro|Oklahoma City Wiley|Olympia|Omaha|Omak|Ontaria Muni|Ontario Intl Arpt|Orange City Muni|Orange Co|Orangeburg Muni|Orlando Jetport|Orlando Sanford|Oroville Muni|Ortonville Muni Mart|Oscoda Wurtsmith|Oswego Co|Ottumwa Industrial|Outagamie Co Rgnl|Ozark Rgnl|Paducah Barkley|Page Muni Amos|Palacios Muni|Panama City Bay Co|Pangborn Mem|Park Falls Muni|Park Rapids Muni Kon|Patuxent River Nas|Peachtree City Falco|Pearson Fld|Pellston Rgnl Arpt|Pendleton Municipal|Penn Yan|Pensacola Rgnl|Perry Foley|Perry Stokes|Philadelphia Intl|Philip|Phoenix Sky Harbor|Pierre Rgnl|Pine Ridge|Pine River Rgnl|Pine Springs Guadalu|Pipestone Muni|Pitt Greenville|Plattsburgh Intl|Plymouth Municipal|Pocatello Municipal|Pocono Mountains Mun|Ponca City Muni|Pope Afb|Poplar Bluff Amos|Port Arthur Jeffers|Port Meadville|Porter Co Muni|Portland Hillsboro|Portland Intl Arpt|Portland Intnl Jet|Pottstown Limerick|Prairie Du Chien Mun|Presque Isle Awos|Price Carbon County|Princeton Muni|Providence Green St|Provo Muni|Pryor Fld Rgnl|Pueblo Memorial Aw|Pullman Moscow Rgnl|Purdue Univ|Quantico Mcaf|Quincy Rgnl Baldwin|Raleigh Raleigh Dur|Randolph Afb|Rapid City Regional|Rawlins Municipal|Reading Rgnl Carl|Red Bluff Municipal|Red Oak Muni|Red Wing Rgnl|Redding Municipal|Redwood Falls Muni|Reno Cannon Intl|Renton Muni|Republic|Rexburg Madison Co|Rhinelander Oneida|Rice Lake Rgnl Carls|Richard I Bong|Richard Lloyd Jones|Richmond Byrd Field|Rickenbacker Intl|Riverside March Afb|Riverton|Roanoke Municipal|Roben Hood|Robert Gray Aaf|Roberts Fld|Robins Afb|Rochester Monroe Co|Rochester Municipal|Rock Hill York Co|Rock Springs Sweetw|Rocky Mount Wilson|Rogers Muni Carter F|Rolla Vichy Airport|Rome Russell Ramos|Roseau Muni Billberg|Roseburg Rgnl|Roswell Industrial|Rush City Rgnl|Russell Muni|Russellville Rgnl|Rutherfordton|Rutland State|Sacramento Intl|Safford Rgnl|Salem Leckrone|Salem Mcnary|Salina Muni|Salinas Muni|Salisbury Ocean Cit|Salt Lake City Intl|San Angelo Mathis|San Antonio Intl|San Francisco Intl|San Luis Co Rgnl|San Marcos Muni|Sanderson Fld|Sanford Rgnl|Santa Barbara Muni|Santa Fe Co Muni|Sarasota Bradenton|Sault Ste Marie|Savannah Municipal|Sawyer Co|Sawyer Intl|Scappoose Industrial|Schenck Fld|Scott Afb Midameric|Scottsbluff Heilig|Searle Fld|Sedalia Memorial|Selfridge Angb|Seward|Sexton Summit|Seymour Johnson Afb|Shannon|Shaw Afb Sumter|Sheboygan Co Mem|Shelbyville Muni|Sheldon Muni|Shenandoah Muni|Shenandoah Valley Rg|Sheridan Co Arpt|Shreveport Regional|Sidney Muni Amos|Sidney Richland Muni|Sierra Blanca Rgnl|Silver Bay Muni|Sioux City Muni|Sioux Falls Foss Fi|Siskiyou Co|Sisseton Muni Arpt|Sitka|Skyhaven|Slidell|Smith Reynolds|Snohomish Co|Somerset Pulaski Co|South Arkansas Rgnl|South Bass Island|South Bend Stjosep|South Big Horn Co|South Jersey Rgnl|South St Paul Muni|Southeast Iowa Rgnl|Southern Illinois|Southern Wisc Rgnl|Southwest Florida I|Southwest Michigan|Spart Fort Mc Coy|Spencer|Spirit Of St Louis|Springfield Capital|Springfield Comanche|Springfield Muni|St Augustine|St Clair Co Intl|St Cloud Municipal|St George Muni|St Johns Industrial|St Joseph Rose Cra|St Louis Lambert|St Lucie Co Intl|St Paul Downtown Ho|St Petersburg Clear|Stanley Ranger Stn|Staples Muni|Stephenville Clark|Sterling Rockfalls|Stevens Point Muni|Stillwater Rgnl|Stinson Muni|Stockton Metropolit|Storm Lake Muni|Strother Fld|Stuttgart Muni|Suffolk Executive|Suger Land Rgnl|Sullivan Co Intl|Sussex Co|Sw Minnesota Rgnl|Syracuse Hancock|Tallahassee Municip|Tampa Intl Airport|Taos Muni Apt Awos|Taunton Muni|Taylor Co|Tekamah Muni|Terre Haute Intl Hu|Terrell Muni|Teterboro|Texarkana Rgnl Webb|The Oneill Muni J Ba|Thief River Falls Rg|Thomas Point|Tinker Afb|Toledo Express|Tonopah|Topeka Billard Muni|Torrington Muni|Trent Lott Intl|Trenton Mercer|Tri Cities|Tri Cities Rgnl|Tri City|Truckee Tahoe|Tulip City|Tulsa Intl Arpt Aw|Tupelo Cd Lemons|Tuscaloosa Rgnl|Twin County|Tyler Pounds Rgnl|Ukiah Muni|Univ Of Illinois Wi|University Park|Valdosta Rgnl|Valentine Amos|Valley Intl|Valparaiso Eglin Af|Vance Afb|Venango Rgnl|Venice Pier|Vernal|Vero Beach Muni|Vicksburg Tallulah|Victoria Victoria R|Virginia Highlands|Virginia Tech Arpt|Visalia Muni|W H Morse State|W K Kellogg|Waco Rgnl|Wadena|Wakefield Muni|Walla Walla Rgnl|Wallops Isl Stn|Walnut Ridge Rgnl|Washington Co|Washington Muni|Washington National|Waterbury Oxford|Waterloo Municipal|Watertown Intl|Watertown Muni|Waterville R Lafleur|Watsonville Muni|Waukesha Co|Wausau Downtown|Waycross Ware Co|Wayne Co|Webster City Muni|Wellsville Muni|Wendover Af Aux F|West Bend Muni|West Palm Beach In|West Plains Muni|West Point Ls|Westchester Co|Wexford Co|Wheaton Muni|Wheeling Ohio Co|White Sands|Whiteman Afb|Whiting Fld Nas Nort|Wichita Falls Sheps|Wichita Mid Contine|Wilkes Barre Scrant|William R Fairchild|Williamson Co Rgnl|Williamsport Lycomi|Williston Sloulin F|Willmar Rco|Willow Grove Nas Jr|Wilmington|Wilmington New Cast|Winchester Rgnl|Winder Barrow|Windham Airport|Windom Muni|Window Rock|Winkler Co|Winnemucca Muni|Winner|Winona Muni Conrad F|Winslow Aut|Wiscasset|Wittman Rgnl|Worcester Regional Arpt|Worland Muni|Worthington Muni|Wrangell|Yakima Air Terminal|Yeager|York|Youngstown Muni|Yuba Co|Yuma Intl Airport|Zanesville Muni -in.weather_file_latitude metadata_and_annual n/a float 20.901944|24.73|25.82|25.91|26.15|26.18|26.2|26.23|26.54|26.59|26.69|26.92|27.07|27.4|27.5|27.55|27.66|27.74|27.77|27.91|27.96|28.08|28.1|28.37|28.43|28.46|28.47|28.55|28.73|28.78|28.82|28.86|29.11|29.17|29.18|29.27|29.34|29.36|29.37|29.53|29.55|29.61|29.62|29.69|29.71|29.73|29.83|29.87|29.89|29.91|29.95|29.99|30.04|30.06|30.07|30.13|30.18|30.21|30.22|30.23|30.32|30.35|30.37|30.39|30.4|30.41|30.46|30.47|30.48|30.49|30.51|30.54|30.59|30.63|30.68|30.69|30.72|30.74|30.75|30.78|30.84|30.92|30.97|31.05|31.07|31.09|31.15|31.18|31.23|31.25|31.26|31.28|31.32|31.34|31.35|31.4|31.42|31.47|31.49|31.54|31.58|31.61|31.78|31.81|31.83|31.92|31.93|32.01|32.03|32.12|32.17|32.22|32.26|32.3|32.32|32.33|32.34|32.35|32.38|32.39|32.41|32.43|32.45|32.48|32.5|32.51|32.52|32.55|32.63|32.65|32.66|32.69|32.71|32.73|32.78|32.82|32.83|32.84|32.85|32.86|32.87|32.9|32.97|33.18|33.21|33.22|33.31|33.36|33.37|33.44|33.45|33.46|33.47|33.48|33.5|33.56|33.59|33.62|33.64|33.67|33.68|33.78|33.88|33.9|33.92|33.94|33.95|33.97|33.98|34.03|34.05|34.12|34.15|34.18|34.19|34.22|34.25|34.26|34.27|34.35|34.38|34.43|34.48|34.5|34.52|34.55|34.57|34.6|34.64|34.65|34.66|34.67|34.7|34.72|34.73|34.75|34.79|34.83|34.9|34.92|34.99|35.0|35.01|35.02|35.03|35.04|35.06|35.07|35.13|35.14|35.17|35.2|35.21|35.22|35.24|35.26|35.27|35.33|35.34|35.35|35.38|35.39|35.42|35.43|35.51|35.53|35.59|35.62|35.64|35.65|35.66|35.7|35.73|35.74|35.82|35.83|35.85|35.86|35.87|35.92|35.95|36.0|36.01|36.02|36.03|36.04|36.05|36.08|36.1|36.12|36.13|36.16|36.2|36.26|36.3|36.32|36.34|36.35|36.37|36.43|36.44|36.45|36.46|36.48|36.57|36.62|36.63|36.66|36.67|36.68|36.69|36.7|36.73|36.74|36.77|36.78|36.88|36.9|36.93|36.94|36.98|36.99|37.0|37.04|37.05|37.06|37.08|37.09|37.13|37.14|37.15|37.17|37.18|37.21|37.23|37.24|37.26|37.28|37.29|37.3|37.32|37.33|37.34|37.36|37.37|37.44|37.51|37.59|37.62|37.63|37.65|37.66|37.67|37.7|37.71|37.75|37.76|37.77|37.78|37.8|37.81|37.86|37.89|37.9|37.93|37.94|37.95|37.99|38.01|38.04|38.05|38.06|38.07|38.1|38.13|38.14|38.18|38.19|38.21|38.23|38.25|38.26|38.27|38.28|38.29|38.31|38.32|38.33|38.34|38.38|38.45|38.5|38.51|38.53|38.57|38.59|38.64|38.66|38.67|38.69|38.7|38.72|38.73|38.75|38.76|38.81|38.82|38.83|38.85|38.87|38.89|38.9|38.95|39.01|39.04|39.06|39.07|39.08|39.1|39.12|39.13|39.14|39.17|39.19|39.22|39.23|39.25|39.29|39.3|39.32|39.35|39.36|39.37|39.38|39.4|39.42|39.45|39.46|39.48|39.49|39.53|39.55|39.57|39.58|39.59|39.6|39.64|39.67|39.7|39.71|39.76|39.77|39.78|39.8|39.83|39.85|39.87|39.91|39.92|39.94|39.98|39.99|40.04|40.05|40.07|40.08|40.1|40.12|40.14|40.15|40.17|40.18|40.19|40.2|40.21|40.22|40.23|40.24|40.28|40.3|40.33|40.36|40.37|40.41|40.44|40.45|40.46|40.47|40.48|40.5|40.52|40.6|40.62|40.63|40.65|40.66|40.67|40.68|40.71|40.72|40.73|40.75|40.77|40.78|40.79|40.82|40.83|40.85|40.88|40.89|40.9|40.92|40.96|40.98|41.01|41.02|41.05|41.07|41.1|41.11|41.12|41.14|41.16|41.17|41.18|41.2|41.24|41.25|41.26|41.28|41.3|41.31|41.34|41.37|41.39|41.41|41.44|41.45|41.47|41.48|41.51|41.52|41.53|41.54|41.56|41.59|41.61|41.62|41.63|41.67|41.7|41.71|41.72|41.74|41.76|41.77|41.78|41.79|41.8|41.81|41.82|41.83|41.87|41.88|41.91|41.92|41.93|41.98|41.99|42.05|42.06|42.07|42.08|42.11|42.13|42.15|42.16|42.17|42.19|42.2|42.21|42.22|42.24|42.26|42.27|42.31|42.36|42.39|42.4|42.42|42.44|42.47|42.48|42.54|42.55|42.57|42.58|42.6|42.61|42.62|42.63|42.64|42.67|42.7|42.73|42.74|42.75|42.76|42.78|42.79|42.8|42.86|42.88|42.89|42.9|42.91|42.92|42.93|42.94|42.95|42.97|42.99|43.02|43.04|43.06|43.08|43.11|43.12|43.14|43.16|43.17|43.2|43.21|43.23|43.24|43.28|43.32|43.34|43.35|43.39|43.41|43.42|43.43|43.52|43.53|43.57|43.58|43.59|43.61|43.62|43.63|43.64|43.65|43.66|43.67|43.68|43.72|43.73|43.77|43.78|43.83|43.88|43.9|43.91|43.96|43.97|43.98|43.99|44.02|44.05|44.08|44.13|44.15|44.17|44.2|44.22|44.25|44.26|44.27|44.28|44.3|44.32|44.34|44.36|44.37|44.38|44.39|44.44|44.45|44.47|44.5|44.51|44.52|44.53|44.55|44.58|44.59|44.61|44.62|44.64|44.65|44.74|44.77|44.81|44.83|44.84|44.85|44.86|44.87|44.88|44.91|44.93|44.94|44.97|44.99|45.01|45.06|45.07|45.1|45.12|45.13|45.15|45.2|45.25|45.26|45.29|45.31|45.42|45.45|45.47|45.54|45.55|45.56|45.57|45.59|45.6|45.62|45.63|45.64|45.67|45.7|45.72|45.77|45.78|45.79|45.81|45.82|45.83|45.87|45.88|45.89|45.93|45.95|46.01|46.03|46.1|46.14|46.16|46.27|46.31|46.35|46.36|46.38|46.41|46.43|46.45|46.47|46.53|46.55|46.56|46.57|46.61|46.69|46.7|46.73|46.74|46.77|46.8|46.83|46.84|46.9|46.92|46.93|46.97|47.03|47.05|47.12|47.13|47.16|47.17|47.21|47.24|47.25|47.33|47.4|47.47|47.49|47.5|47.51|47.62|47.66|47.67|47.68|47.71|47.75|47.77|47.84|47.91|47.95|47.97|48.07|48.09|48.11|48.12|48.16|48.2|48.21|48.26|48.3|48.43|48.46|48.52|48.56|48.57|48.61|48.73|48.75|48.79|48.86|53.9|55.21|55.36|56.48|57.05|57.75|58.36|58.43|58.65|58.68|58.99|59.25|59.43|59.65|59.75|60.13 -in.weather_file_longitude metadata_and_annual n/a float -166.54|-162.72|-162.06|-158.55|-156.65|-156.433056|-154.92|-152.49|-151.48|-149.42|-146.33|-135.71|-135.52|-135.36|-134.58|-132.37|-131.71|-124.25|-124.24|-124.11|-124.07|-123.94|-123.88|-123.5|-123.38|-123.36|-123.29|-123.21|-123.2|-123.15|-123.13|-123.02|-123.0|-122.95|-122.9|-122.87|-122.86|-122.81|-122.77|-122.76|-122.66|-122.6|-122.55|-122.54|-122.47|-122.43|-122.4|-122.31|-122.28|-122.25|-122.21|-122.15|-122.12|-122.05|-121.95|-121.93|-121.79|-121.72|-121.62|-121.61|-121.59|-121.57|-121.44|-121.4|-121.24|-121.17|-121.15|-120.95|-120.71|-120.64|-120.57|-120.53|-120.51|-120.4|-120.21|-120.13|-120.11|-120.0|-119.84|-119.77|-119.72|-119.63|-119.6|-119.52|-119.38|-119.32|-119.26|-119.12|-119.1|-119.06|-118.95|-118.83|-118.7|-118.57|-118.36|-118.3|-118.29|-118.01|-117.81|-117.73|-117.65|-117.57|-117.42|-117.32|-117.25|-117.15|-117.11|-117.09|-117.01|-116.82|-116.63|-116.22|-116.1|-116.03|-116.01|-115.87|-115.8|-115.79|-115.6|-115.58|-115.16|-114.93|-114.85|-114.72|-114.6|-114.49|-114.46|-114.26|-114.22|-114.09|-114.02|-113.94|-113.87|-113.77|-113.58|-113.1|-112.57|-112.55|-112.51|-112.42|-112.38|-112.07|-112.01|-111.99|-111.97|-111.96|-111.88|-111.85|-111.72|-111.67|-111.45|-111.38|-111.19|-111.15|-110.88|-110.85|-110.75|-110.73|-110.72|-110.45|-110.11|-109.78|-109.75|-109.64|-109.6|-109.51|-109.47|-109.38|-109.07|-109.06|-108.95|-108.79|-108.63|-108.54|-108.46|-108.23|-108.08|-107.95|-107.9|-107.89|-107.76|-107.73|-107.72|-107.52|-107.22|-107.2|-107.03|-106.98|-106.95|-106.92|-106.87|-106.72|-106.62|-106.48|-106.47|-106.38|-106.32|-106.09|-105.98|-105.89|-105.87|-105.67|-105.66|-105.57|-105.54|-105.53|-105.39|-105.14|-104.85|-104.81|-104.8|-104.75|-104.71|-104.66|-104.62|-104.54|-104.5|-104.34|-104.26|-104.25|-104.18|-104.15|-104.02|-103.72|-103.64|-103.63|-103.6|-103.55|-103.53|-103.32|-103.23|-103.2|-103.15|-103.1|-103.07|-103.05|-102.99|-102.92|-102.8|-102.69|-102.66|-102.61|-102.55|-102.52|-102.39|-102.28|-102.21|-101.87|-101.82|-101.77|-101.71|-101.69|-101.6|-101.44|-101.39|-101.36|-101.28|-100.96|-100.92|-100.78|-100.75|-100.73|-100.67|-100.59|-100.55|-100.49|-100.41|-100.29|-99.98|-99.97|-99.85|-99.84|-99.83|-99.78|-99.77|-99.68|-99.64|-99.47|-99.33|-99.32|-99.28|-99.27|-99.22|-99.2|-99.17|-99.05|-99.0|-98.98|-98.9|-98.85|-98.83|-98.68|-98.55|-98.49|-98.47|-98.46|-98.43|-98.42|-98.4|-98.31|-98.28|-98.24|-98.23|-98.18|-98.06|-98.05|-98.04|-98.03|-97.99|-97.98|-97.86|-97.85|-97.83|-97.82|-97.77|-97.69|-97.68|-97.67|-97.66|-97.65|-97.6|-97.51|-97.45|-97.44|-97.43|-97.42|-97.4|-97.38|-97.36|-97.33|-97.32|-97.3|-97.27|-97.23|-97.22|-97.2|-97.18|-97.15|-97.12|-97.1|-97.09|-97.05|-97.04|-96.99|-96.97|-96.95|-96.93|-96.85|-96.81|-96.8|-96.76|-96.75|-96.68|-96.62|-96.59|-96.53|-96.52|-96.42|-96.4|-96.38|-96.36|-96.3|-96.27|-96.25|-96.19|-96.18|-96.17|-96.05|-96.02|-95.98|-95.97|-95.9|-95.89|-95.88|-95.83|-95.82|-95.78|-95.75|-95.7|-95.68|-95.66|-95.63|-95.59|-95.57|-95.55|-95.5|-95.48|-95.46|-95.45|-95.41|-95.4|-95.39|-95.37|-95.36|-95.32|-95.25|-95.23|-95.21|-95.2|-95.16|-95.1|-95.08|-95.07|-95.03|-95.02|-94.98|-94.93|-94.92|-94.91|-94.89|-94.86|-94.81|-94.78|-94.75|-94.74|-94.72|-94.71|-94.7|-94.61|-94.59|-94.5|-94.42|-94.4|-94.38|-94.37|-94.35|-94.3|-94.27|-94.22|-94.17|-94.13|-94.1|-94.05|-94.02|-94.01|-93.92|-93.9|-93.87|-93.84|-93.82|-93.75|-93.67|-93.66|-93.62|-93.61|-93.58|-93.55|-93.48|-93.47|-93.4|-93.39|-93.37|-93.35|-93.33|-93.27|-93.25|-93.23|-93.2|-93.19|-93.18|-93.16|-93.1|-93.05|-93.03|-93.02|-92.95|-92.93|-92.92|-92.81|-92.69|-92.56|-92.55|-92.54|-92.5|-92.49|-92.48|-92.47|-92.45|-92.4|-92.3|-92.25|-92.22|-92.19|-92.16|-92.15|-92.09|-92.04|-91.99|-91.97|-91.94|-91.9|-91.88|-91.77|-91.75|-91.73|-91.71|-91.7|-91.67|-91.64|-91.57|-91.54|-91.49|-91.44|-91.42|-91.4|-91.33|-91.3|-91.25|-91.19|-91.15|-91.14|-91.13|-91.12|-91.03|-90.93|-90.92|-90.73|-90.7|-90.68|-90.66|-90.65|-90.59|-90.52|-90.47|-90.45|-90.42|-90.37|-90.34|-90.33|-90.32|-90.3|-90.25|-90.24|-90.23|-90.19|-90.16|-90.12|-90.08|-90.03|-89.99|-89.87|-89.84|-89.83|-89.82|-89.77|-89.72|-89.7|-89.68|-89.67|-89.63|-89.58|-89.57|-89.52|-89.47|-89.4|-89.35|-89.34|-89.27|-89.25|-89.1|-89.09|-89.07|-89.04|-89.0|-88.95|-88.92|-88.87|-88.86|-88.77|-88.75|-88.73|-88.72|-88.7|-88.68|-88.57|-88.56|-88.53|-88.52|-88.51|-88.49|-88.48|-88.44|-88.28|-88.25|-88.23|-88.17|-88.12|-88.11|-88.08|-88.07|-87.94|-87.9|-87.88|-87.87|-87.85|-87.81|-87.75|-87.68|-87.67|-87.64|-87.62|-87.61|-87.54|-87.5|-87.42|-87.38|-87.3|-87.25|-87.19|-87.09|-87.04|-87.02|-87.01|-86.95|-86.94|-86.79|-86.78|-86.75|-86.69|-86.62|-86.52|-86.47|-86.44|-86.42|-86.4|-86.39|-86.36|-86.33|-86.3|-86.27|-86.24|-86.23|-86.15|-86.1|-86.08|-85.97|-85.86|-85.8|-85.73|-85.71|-85.68|-85.66|-85.58|-85.55|-85.52|-85.5|-85.45|-85.44|-85.42|-85.39|-85.27|-85.25|-85.21|-85.2|-85.19|-85.18|-85.16|-85.09|-85.05|-85.03|-85.0|-84.94|-84.9|-84.87|-84.85|-84.8|-84.77|-84.73|-84.7|-84.69|-84.67|-84.64|-84.61|-84.6|-84.58|-84.57|-84.53|-84.52|-84.46|-84.43|-84.42|-84.37|-84.35|-84.3|-84.23|-84.22|-84.19|-84.08|-84.05|-84.03|-83.99|-83.98|-83.83|-83.82|-83.8|-83.75|-83.67|-83.65|-83.6|-83.58|-83.57|-83.48|-83.43|-83.42|-83.37|-83.35|-83.33|-83.31|-83.28|-83.19|-83.11|-83.08|-83.06|-82.98|-82.92|-82.89|-82.88|-82.83|-82.71|-82.69|-82.66|-82.56|-82.54|-82.52|-82.51|-82.45|-82.4|-82.27|-82.22|-82.18|-82.16|-82.04|-82.03|-81.99|-81.97|-81.93|-81.89|-81.87|-81.86|-81.85|-81.81|-81.78|-81.76|-81.69|-81.68|-81.59|-81.45|-81.44|-81.42|-81.39|-81.34|-81.33|-81.27|-81.24|-81.21|-81.2|-81.16|-81.15|-81.13|-81.12|-81.06|-81.05|-81.0|-80.94|-80.86|-80.82|-80.72|-80.7|-80.67|-80.65|-80.62|-80.48|-80.42|-80.4|-80.38|-80.3|-80.28|-80.23|-80.22|-80.18|-80.17|-80.1|-80.04|-80.02|-79.97|-79.94|-79.92|-79.88|-79.85|-79.83|-79.73|-79.48|-79.38|-79.37|-79.35|-79.34|-79.21|-79.1|-79.03|-78.95|-78.94|-78.92|-78.9|-78.88|-78.83|-78.79|-78.74|-78.73|-78.64|-78.45|-78.43|-78.41|-78.32|-78.13|-78.05|-77.99|-77.98|-77.97|-77.96|-77.9|-77.89|-77.85|-77.84|-77.73|-77.71|-77.68|-77.61|-77.58|-77.55|-77.5|-77.44|-77.43|-77.38|-77.32|-77.3|-77.06|-77.05|-77.03|-77.01|-76.92|-76.9|-76.89|-76.88|-76.87|-76.85|-76.76|-76.68|-76.66|-76.6|-76.57|-76.49|-76.43|-76.4|-76.39|-76.35|-76.29|-76.28|-76.19|-76.18|-76.1|-76.02|-75.98|-75.96|-75.75|-75.73|-75.72|-75.7|-75.6|-75.56|-75.55|-75.51|-75.5|-75.47|-75.45|-75.41|-75.38|-75.36|-75.23|-75.15|-75.12|-75.08|-75.01|-74.9|-74.85|-74.84|-74.81|-74.78|-74.58|-74.28|-74.27|-74.21|-74.17|-74.12|-74.06|-73.97|-73.88|-73.8|-73.71|-73.61|-73.48|-73.47|-73.42|-73.25|-73.17|-73.15|-73.13|-73.1|-72.94|-72.83|-72.65|-72.61|-72.58|-72.53|-72.52|-72.31|-72.28|-72.18|-71.88|-71.58|-71.54|-71.5|-71.48|-71.44|-71.43|-71.42|-71.29|-71.28|-71.18|-71.17|-71.02|-71.01|-70.95|-70.92|-70.73|-70.7|-70.62|-70.3|-70.28|-70.06|-69.8|-69.71|-69.67|-69.58|-68.87|-68.82|-68.37|-68.03 -in.heating_unavailable_period metadata_and_annual n/a string Apr 1 - Apr 1|Apr 1 - Apr 14|Apr 1 - Apr 3|Apr 1 - Apr 30|Apr 1 - Apr 7|Apr 1 - Jun 29|Apr 10 - Apr 10|Apr 10 - Apr 12|Apr 10 - Apr 16|Apr 10 - Apr 23|Apr 10 - Jul 8|Apr 10 - May 9|Apr 11 - Apr 11|Apr 11 - Apr 13|Apr 11 - Apr 17|Apr 11 - Apr 24|Apr 11 - Jul 9|Apr 11 - May 10|Apr 12 - Apr 12|Apr 12 - Apr 14|Apr 12 - Apr 18|Apr 12 - Apr 25|Apr 12 - Jul 10|Apr 12 - May 11|Apr 13 - Apr 13|Apr 13 - Apr 15|Apr 13 - Apr 19|Apr 13 - Apr 26|Apr 13 - Jul 11|Apr 13 - May 12|Apr 14 - Apr 14|Apr 14 - Apr 16|Apr 14 - Apr 20|Apr 14 - Apr 27|Apr 14 - Jul 12|Apr 14 - May 13|Apr 15 - Apr 15|Apr 15 - Apr 17|Apr 15 - Apr 21|Apr 15 - Apr 28|Apr 15 - Jul 13|Apr 15 - May 14|Apr 16 - Apr 16|Apr 16 - Apr 18|Apr 16 - Apr 22|Apr 16 - Apr 29|Apr 16 - Jul 14|Apr 16 - May 15|Apr 17 - Apr 17|Apr 17 - Apr 19|Apr 17 - Apr 23|Apr 17 - Apr 30|Apr 17 - Jul 15|Apr 17 - May 16|Apr 18 - Apr 18|Apr 18 - Apr 20|Apr 18 - Apr 24|Apr 18 - Jul 16|Apr 18 - May 1|Apr 18 - May 17|Apr 19 - Apr 19|Apr 19 - Apr 21|Apr 19 - Apr 25|Apr 19 - Jul 17|Apr 19 - May 18|Apr 19 - May 2|Apr 2 - Apr 15|Apr 2 - Apr 2|Apr 2 - Apr 4|Apr 2 - Apr 8|Apr 2 - Jun 30|Apr 2 - May 1|Apr 20 - Apr 20|Apr 20 - Apr 22|Apr 20 - Apr 26|Apr 20 - Jul 18|Apr 20 - May 19|Apr 20 - May 3|Apr 21 - Apr 21|Apr 21 - Apr 23|Apr 21 - Apr 27|Apr 21 - Jul 19|Apr 21 - May 20|Apr 21 - May 4|Apr 22 - Apr 22|Apr 22 - Apr 24|Apr 22 - Apr 28|Apr 22 - Jul 20|Apr 22 - May 21|Apr 22 - May 5|Apr 23 - Apr 23|Apr 23 - Apr 25|Apr 23 - Apr 29|Apr 23 - Jul 21|Apr 23 - May 22|Apr 23 - May 6|Apr 24 - Apr 24|Apr 24 - Apr 26|Apr 24 - Apr 30|Apr 24 - Jul 22|Apr 24 - May 23|Apr 24 - May 7|Apr 25 - Apr 25|Apr 25 - Apr 27|Apr 25 - Jul 23|Apr 25 - May 1|Apr 25 - May 24|Apr 25 - May 8|Apr 26 - Apr 26|Apr 26 - Apr 28|Apr 26 - Jul 24|Apr 26 - May 2|Apr 26 - May 25|Apr 26 - May 9|Apr 27 - Apr 27|Apr 27 - Apr 29|Apr 27 - Jul 25|Apr 27 - May 10|Apr 27 - May 26|Apr 27 - May 3|Apr 28 - Apr 28|Apr 28 - Apr 30|Apr 28 - Jul 26|Apr 28 - May 11|Apr 28 - May 27|Apr 28 - May 4|Apr 29 - Apr 29|Apr 29 - Jul 27|Apr 29 - May 1|Apr 29 - May 12|Apr 29 - May 28|Apr 29 - May 5|Apr 3 - Apr 16|Apr 3 - Apr 3|Apr 3 - Apr 5|Apr 3 - Apr 9|Apr 3 - Jul 1|Apr 3 - May 2|Apr 30 - Apr 30|Apr 30 - Jul 28|Apr 30 - May 13|Apr 30 - May 2|Apr 30 - May 29|Apr 30 - May 6|Apr 4 - Apr 10|Apr 4 - Apr 17|Apr 4 - Apr 4|Apr 4 - Apr 6|Apr 4 - Jul 2|Apr 4 - May 3|Apr 5 - Apr 11|Apr 5 - Apr 18|Apr 5 - Apr 5|Apr 5 - Apr 7|Apr 5 - Jul 3|Apr 5 - May 4|Apr 6 - Apr 12|Apr 6 - Apr 19|Apr 6 - Apr 6|Apr 6 - Apr 8|Apr 6 - Jul 4|Apr 6 - May 5|Apr 7 - Apr 13|Apr 7 - Apr 20|Apr 7 - Apr 7|Apr 7 - Apr 9|Apr 7 - Jul 5|Apr 7 - May 6|Apr 8 - Apr 10|Apr 8 - Apr 14|Apr 8 - Apr 21|Apr 8 - Apr 8|Apr 8 - Jul 6|Apr 8 - May 7|Apr 9 - Apr 11|Apr 9 - Apr 15|Apr 9 - Apr 22|Apr 9 - Apr 9|Apr 9 - Jul 7|Apr 9 - May 8|Aug 1 - Aug 1|Aug 11 - Aug 13|Aug 11 - Aug 24|Aug 12 - Aug 12|Aug 12 - Aug 18|Aug 13 - Aug 15|Aug 13 - Aug 26|Aug 14 - Aug 20|Aug 15 - Aug 15|Aug 15 - Aug 17|Aug 16 - Sep 14|Aug 17 - Aug 17|Aug 17 - Aug 23|Aug 19 - Aug 21|Aug 19 - Sep 17|Aug 20 - Nov 17|Aug 24 - Aug 30|Aug 24 - Nov 21|Aug 24 - Sep 6|Aug 25 - Sep 23|Aug 26 - Aug 28|Aug 26 - Sep 24|Aug 26 - Sep 8|Aug 27 - Aug 27|Aug 27 - Sep 2|Aug 27 - Sep 25|Aug 27 - Sep 9|Aug 28 - Aug 28|Aug 29 - Sep 11|Aug 29 - Sep 4|Aug 3 - Aug 9|Aug 31 - Aug 31|Aug 31 - Sep 29|Aug 31 - Sep 6|Aug 4 - Sep 2|Aug 6 - Aug 12|Aug 6 - Aug 8|Aug 7 - Aug 13|Aug 8 - Aug 8|Aug 9 - Nov 6|Dec 1 - Dec 1|Dec 1 - Dec 14|Dec 1 - Dec 3|Dec 1 - Dec 30|Dec 1 - Dec 7|Dec 1 - Feb 28|Dec 10 - Dec 10|Dec 10 - Dec 12|Dec 10 - Dec 16|Dec 10 - Dec 23|Dec 10 - Jan 8|Dec 10 - Mar 9|Dec 11 - Dec 11|Dec 11 - Dec 13|Dec 11 - Dec 17|Dec 11 - Dec 24|Dec 11 - Jan 9|Dec 11 - Mar 10|Dec 12 - Dec 12|Dec 12 - Dec 14|Dec 12 - Dec 18|Dec 12 - Dec 25|Dec 12 - Jan 10|Dec 12 - Mar 11|Dec 13 - Dec 13|Dec 13 - Dec 15|Dec 13 - Dec 19|Dec 13 - Dec 26|Dec 13 - Jan 11|Dec 13 - Mar 12|Dec 14 - Dec 14|Dec 14 - Dec 16|Dec 14 - Dec 20|Dec 14 - Dec 27|Dec 14 - Jan 12|Dec 14 - Mar 13|Dec 15 - Dec 15|Dec 15 - Dec 17|Dec 15 - Dec 21|Dec 15 - Dec 28|Dec 15 - Jan 13|Dec 15 - Mar 14|Dec 16 - Dec 16|Dec 16 - Dec 18|Dec 16 - Dec 22|Dec 16 - Dec 29|Dec 16 - Jan 14|Dec 16 - Mar 15|Dec 17 - Dec 17|Dec 17 - Dec 19|Dec 17 - Dec 23|Dec 17 - Dec 30|Dec 17 - Jan 15|Dec 17 - Mar 16|Dec 18 - Dec 18|Dec 18 - Dec 20|Dec 18 - Dec 24|Dec 18 - Dec 31|Dec 18 - Jan 16|Dec 18 - Mar 17|Dec 19 - Dec 19|Dec 19 - Dec 21|Dec 19 - Dec 25|Dec 19 - Jan 1|Dec 19 - Jan 17|Dec 19 - Mar 18|Dec 2 - Dec 15|Dec 2 - Dec 2|Dec 2 - Dec 31|Dec 2 - Dec 4|Dec 2 - Dec 8|Dec 2 - Mar 1|Dec 20 - Dec 20|Dec 20 - Dec 22|Dec 20 - Dec 26|Dec 20 - Jan 18|Dec 20 - Jan 2|Dec 20 - Mar 19|Dec 21 - Dec 21|Dec 21 - Dec 23|Dec 21 - Dec 27|Dec 21 - Jan 19|Dec 21 - Jan 3|Dec 21 - Mar 20|Dec 22 - Dec 22|Dec 22 - Dec 24|Dec 22 - Dec 28|Dec 22 - Jan 20|Dec 22 - Jan 4|Dec 22 - Mar 21|Dec 23 - Dec 23|Dec 23 - Dec 25|Dec 23 - Dec 29|Dec 23 - Jan 21|Dec 23 - Jan 5|Dec 23 - Mar 22|Dec 24 - Dec 24|Dec 24 - Dec 26|Dec 24 - Dec 30|Dec 24 - Jan 22|Dec 24 - Jan 6|Dec 24 - Mar 23|Dec 25 - Dec 25|Dec 25 - Dec 27|Dec 25 - Dec 31|Dec 25 - Jan 23|Dec 25 - Jan 7|Dec 25 - Mar 24|Dec 26 - Dec 26|Dec 26 - Dec 28|Dec 26 - Jan 1|Dec 26 - Jan 24|Dec 26 - Jan 8|Dec 26 - Mar 25|Dec 27 - Dec 27|Dec 27 - Dec 29|Dec 27 - Jan 2|Dec 27 - Jan 25|Dec 27 - Jan 9|Dec 27 - Mar 26|Dec 28 - Dec 28|Dec 28 - Dec 30|Dec 28 - Jan 10|Dec 28 - Jan 26|Dec 28 - Jan 3|Dec 28 - Mar 27|Dec 29 - Dec 29|Dec 29 - Dec 31|Dec 29 - Jan 11|Dec 29 - Jan 27|Dec 29 - Jan 4|Dec 29 - Mar 28|Dec 3 - Dec 16|Dec 3 - Dec 3|Dec 3 - Dec 5|Dec 3 - Dec 9|Dec 3 - Jan 1|Dec 3 - Mar 2|Dec 30 - Dec 30|Dec 30 - Jan 1|Dec 30 - Jan 12|Dec 30 - Jan 28|Dec 30 - Jan 5|Dec 30 - Mar 29|Dec 31 - Dec 31|Dec 31 - Jan 13|Dec 31 - Jan 2|Dec 31 - Jan 29|Dec 31 - Jan 6|Dec 31 - Mar 30|Dec 4 - Dec 10|Dec 4 - Dec 17|Dec 4 - Dec 4|Dec 4 - Dec 6|Dec 4 - Jan 2|Dec 4 - Mar 3|Dec 5 - Dec 11|Dec 5 - Dec 18|Dec 5 - Dec 5|Dec 5 - Dec 7|Dec 5 - Jan 3|Dec 5 - Mar 4|Dec 6 - Dec 12|Dec 6 - Dec 19|Dec 6 - Dec 6|Dec 6 - Dec 8|Dec 6 - Jan 4|Dec 6 - Mar 5|Dec 7 - Dec 13|Dec 7 - Dec 20|Dec 7 - Dec 7|Dec 7 - Dec 9|Dec 7 - Jan 5|Dec 7 - Mar 6|Dec 8 - Dec 10|Dec 8 - Dec 14|Dec 8 - Dec 21|Dec 8 - Dec 8|Dec 8 - Jan 6|Dec 8 - Mar 7|Dec 9 - Dec 11|Dec 9 - Dec 15|Dec 9 - Dec 22|Dec 9 - Dec 9|Dec 9 - Jan 7|Dec 9 - Mar 8|Feb 1 - Feb 1|Feb 1 - Feb 14|Feb 1 - Feb 3|Feb 1 - Feb 7|Feb 1 - Mar 2|Feb 1 - May 1|Feb 10 - Feb 10|Feb 10 - Feb 12|Feb 10 - Feb 16|Feb 10 - Feb 23|Feb 10 - Mar 11|Feb 10 - May 10|Feb 11 - Feb 11|Feb 11 - Feb 13|Feb 11 - Feb 17|Feb 11 - Feb 24|Feb 11 - Mar 12|Feb 11 - May 11|Feb 12 - Feb 12|Feb 12 - Feb 14|Feb 12 - Feb 18|Feb 12 - Feb 25|Feb 12 - Mar 13|Feb 12 - May 12|Feb 13 - Feb 13|Feb 13 - Feb 15|Feb 13 - Feb 19|Feb 13 - Feb 26|Feb 13 - Mar 14|Feb 13 - May 13|Feb 14 - Feb 14|Feb 14 - Feb 16|Feb 14 - Feb 20|Feb 14 - Feb 27|Feb 14 - Mar 15|Feb 14 - May 14|Feb 15 - Feb 15|Feb 15 - Feb 17|Feb 15 - Feb 21|Feb 15 - Feb 28|Feb 15 - Mar 16|Feb 15 - May 15|Feb 16 - Feb 16|Feb 16 - Feb 18|Feb 16 - Feb 22|Feb 16 - Mar 1|Feb 16 - Mar 17|Feb 16 - May 16|Feb 17 - Feb 17|Feb 17 - Feb 19|Feb 17 - Feb 23|Feb 17 - Mar 18|Feb 17 - Mar 2|Feb 17 - May 17|Feb 18 - Feb 18|Feb 18 - Feb 20|Feb 18 - Feb 24|Feb 18 - Mar 19|Feb 18 - Mar 3|Feb 18 - May 18|Feb 19 - Feb 19|Feb 19 - Feb 21|Feb 19 - Feb 25|Feb 19 - Mar 20|Feb 19 - Mar 4|Feb 19 - May 19|Feb 2 - Feb 15|Feb 2 - Feb 2|Feb 2 - Feb 4|Feb 2 - Feb 8|Feb 2 - Mar 3|Feb 2 - May 2|Feb 20 - Feb 20|Feb 20 - Feb 22|Feb 20 - Feb 26|Feb 20 - Mar 21|Feb 20 - Mar 5|Feb 20 - May 20|Feb 21 - Feb 21|Feb 21 - Feb 23|Feb 21 - Feb 27|Feb 21 - Mar 22|Feb 21 - Mar 6|Feb 21 - May 21|Feb 22 - Feb 22|Feb 22 - Feb 24|Feb 22 - Feb 28|Feb 22 - Mar 23|Feb 22 - Mar 7|Feb 22 - May 22|Feb 23 - Feb 23|Feb 23 - Feb 25|Feb 23 - Mar 1|Feb 23 - Mar 24|Feb 23 - Mar 8|Feb 23 - May 23|Feb 24 - Feb 24|Feb 24 - Feb 26|Feb 24 - Mar 2|Feb 24 - Mar 25|Feb 24 - Mar 9|Feb 24 - May 24|Feb 25 - Feb 25|Feb 25 - Feb 27|Feb 25 - Mar 10|Feb 25 - Mar 26|Feb 25 - Mar 3|Feb 25 - May 25|Feb 26 - Feb 26|Feb 26 - Feb 28|Feb 26 - Mar 11|Feb 26 - Mar 27|Feb 26 - Mar 4|Feb 26 - May 26|Feb 27 - Feb 27|Feb 27 - Mar 1|Feb 27 - Mar 12|Feb 27 - Mar 28|Feb 27 - Mar 5|Feb 27 - May 27|Feb 28 - Feb 28|Feb 28 - Mar 13|Feb 28 - Mar 2|Feb 28 - Mar 29|Feb 28 - Mar 6|Feb 28 - May 28|Feb 3 - Feb 16|Feb 3 - Feb 3|Feb 3 - Feb 5|Feb 3 - Feb 9|Feb 3 - Mar 4|Feb 3 - May 3|Feb 4 - Feb 10|Feb 4 - Feb 17|Feb 4 - Feb 4|Feb 4 - Feb 6|Feb 4 - Mar 5|Feb 4 - May 4|Feb 5 - Feb 11|Feb 5 - Feb 18|Feb 5 - Feb 5|Feb 5 - Feb 7|Feb 5 - Mar 6|Feb 5 - May 5|Feb 6 - Feb 12|Feb 6 - Feb 19|Feb 6 - Feb 6|Feb 6 - Feb 8|Feb 6 - Mar 7|Feb 6 - May 6|Feb 7 - Feb 13|Feb 7 - Feb 20|Feb 7 - Feb 7|Feb 7 - Feb 9|Feb 7 - Mar 8|Feb 7 - May 7|Feb 8 - Feb 10|Feb 8 - Feb 14|Feb 8 - Feb 21|Feb 8 - Feb 8|Feb 8 - Mar 9|Feb 8 - May 8|Feb 9 - Feb 11|Feb 9 - Feb 15|Feb 9 - Feb 22|Feb 9 - Feb 9|Feb 9 - Mar 10|Feb 9 - May 9|Jan 1 - Dec 31|Jan 1 - Jan 1|Jan 1 - Jan 14|Jan 1 - Jan 3|Jan 1 - Jan 30|Jan 1 - Jan 7|Jan 1 - Mar 31|Jan 10 - Apr 9|Jan 10 - Feb 8|Jan 10 - Jan 10|Jan 10 - Jan 12|Jan 10 - Jan 16|Jan 10 - Jan 23|Jan 11 - Apr 10|Jan 11 - Feb 9|Jan 11 - Jan 11|Jan 11 - Jan 13|Jan 11 - Jan 17|Jan 11 - Jan 24|Jan 12 - Apr 11|Jan 12 - Feb 10|Jan 12 - Jan 12|Jan 12 - Jan 14|Jan 12 - Jan 18|Jan 12 - Jan 25|Jan 13 - Apr 12|Jan 13 - Feb 11|Jan 13 - Jan 13|Jan 13 - Jan 15|Jan 13 - Jan 19|Jan 13 - Jan 26|Jan 14 - Apr 13|Jan 14 - Feb 12|Jan 14 - Jan 14|Jan 14 - Jan 16|Jan 14 - Jan 20|Jan 14 - Jan 27|Jan 15 - Apr 14|Jan 15 - Feb 13|Jan 15 - Jan 15|Jan 15 - Jan 17|Jan 15 - Jan 21|Jan 15 - Jan 28|Jan 16 - Apr 15|Jan 16 - Feb 14|Jan 16 - Jan 16|Jan 16 - Jan 18|Jan 16 - Jan 22|Jan 16 - Jan 29|Jan 17 - Apr 16|Jan 17 - Feb 15|Jan 17 - Jan 17|Jan 17 - Jan 19|Jan 17 - Jan 23|Jan 17 - Jan 30|Jan 18 - Apr 17|Jan 18 - Feb 16|Jan 18 - Jan 18|Jan 18 - Jan 20|Jan 18 - Jan 24|Jan 18 - Jan 31|Jan 19 - Apr 18|Jan 19 - Feb 1|Jan 19 - Feb 17|Jan 19 - Jan 19|Jan 19 - Jan 21|Jan 19 - Jan 25|Jan 2 - Apr 1|Jan 2 - Jan 15|Jan 2 - Jan 2|Jan 2 - Jan 31|Jan 2 - Jan 4|Jan 2 - Jan 8|Jan 20 - Apr 19|Jan 20 - Feb 18|Jan 20 - Feb 2|Jan 20 - Jan 20|Jan 20 - Jan 22|Jan 20 - Jan 26|Jan 21 - Apr 20|Jan 21 - Feb 19|Jan 21 - Feb 3|Jan 21 - Jan 21|Jan 21 - Jan 23|Jan 21 - Jan 27|Jan 22 - Apr 21|Jan 22 - Feb 20|Jan 22 - Feb 4|Jan 22 - Jan 22|Jan 22 - Jan 24|Jan 22 - Jan 28|Jan 23 - Apr 22|Jan 23 - Feb 21|Jan 23 - Feb 5|Jan 23 - Jan 23|Jan 23 - Jan 25|Jan 23 - Jan 29|Jan 24 - Apr 23|Jan 24 - Feb 22|Jan 24 - Feb 6|Jan 24 - Jan 24|Jan 24 - Jan 26|Jan 24 - Jan 30|Jan 25 - Apr 24|Jan 25 - Feb 23|Jan 25 - Feb 7|Jan 25 - Jan 25|Jan 25 - Jan 27|Jan 25 - Jan 31|Jan 26 - Apr 25|Jan 26 - Feb 1|Jan 26 - Feb 24|Jan 26 - Feb 8|Jan 26 - Jan 26|Jan 26 - Jan 28|Jan 27 - Apr 26|Jan 27 - Feb 2|Jan 27 - Feb 25|Jan 27 - Feb 9|Jan 27 - Jan 27|Jan 27 - Jan 29|Jan 28 - Apr 27|Jan 28 - Feb 10|Jan 28 - Feb 26|Jan 28 - Feb 3|Jan 28 - Jan 28|Jan 28 - Jan 30|Jan 29 - Apr 28|Jan 29 - Feb 11|Jan 29 - Feb 27|Jan 29 - Feb 4|Jan 29 - Jan 29|Jan 29 - Jan 31|Jan 3 - Apr 2|Jan 3 - Feb 1|Jan 3 - Jan 16|Jan 3 - Jan 3|Jan 3 - Jan 5|Jan 3 - Jan 9|Jan 30 - Apr 29|Jan 30 - Feb 1|Jan 30 - Feb 12|Jan 30 - Feb 28|Jan 30 - Feb 5|Jan 30 - Jan 30|Jan 31 - Apr 30|Jan 31 - Feb 13|Jan 31 - Feb 2|Jan 31 - Feb 6|Jan 31 - Jan 31|Jan 31 - Mar 1|Jan 4 - Apr 3|Jan 4 - Feb 2|Jan 4 - Jan 10|Jan 4 - Jan 17|Jan 4 - Jan 4|Jan 4 - Jan 6|Jan 5 - Apr 4|Jan 5 - Feb 3|Jan 5 - Jan 11|Jan 5 - Jan 18|Jan 5 - Jan 5|Jan 5 - Jan 7|Jan 6 - Apr 5|Jan 6 - Feb 4|Jan 6 - Jan 12|Jan 6 - Jan 19|Jan 6 - Jan 6|Jan 6 - Jan 8|Jan 7 - Apr 6|Jan 7 - Feb 5|Jan 7 - Jan 13|Jan 7 - Jan 20|Jan 7 - Jan 7|Jan 7 - Jan 9|Jan 8 - Apr 7|Jan 8 - Feb 6|Jan 8 - Jan 10|Jan 8 - Jan 14|Jan 8 - Jan 21|Jan 8 - Jan 8|Jan 9 - Apr 8|Jan 9 - Feb 7|Jan 9 - Jan 11|Jan 9 - Jan 15|Jan 9 - Jan 22|Jan 9 - Jan 9|Jul 1 - Jul 1|Jul 1 - Jul 14|Jul 1 - Jul 3|Jul 1 - Jul 7|Jul 1 - Sep 28|Jul 10 - Aug 8|Jul 10 - Jul 10|Jul 10 - Jul 12|Jul 11 - Aug 9|Jul 11 - Jul 11|Jul 11 - Jul 13|Jul 11 - Jul 17|Jul 11 - Jul 24|Jul 12 - Jul 12|Jul 12 - Jul 14|Jul 12 - Jul 18|Jul 13 - Jul 13|Jul 13 - Oct 10|Jul 14 - Aug 12|Jul 14 - Jul 14|Jul 14 - Jul 16|Jul 14 - Jul 20|Jul 15 - Jul 15|Jul 15 - Jul 21|Jul 16 - Jul 16|Jul 16 - Jul 18|Jul 16 - Jul 22|Jul 16 - Oct 13|Jul 17 - Jul 17|Jul 17 - Jul 19|Jul 17 - Jul 23|Jul 18 - Aug 16|Jul 18 - Jul 18|Jul 18 - Jul 20|Jul 18 - Jul 24|Jul 18 - Jul 31|Jul 18 - Oct 15|Jul 19 - Aug 1|Jul 19 - Aug 17|Jul 19 - Jul 19|Jul 19 - Jul 21|Jul 19 - Jul 25|Jul 2 - Jul 31|Jul 2 - Jul 8|Jul 2 - Sep 29|Jul 20 - Jul 20|Jul 20 - Jul 22|Jul 21 - Aug 19|Jul 21 - Jul 21|Jul 21 - Jul 23|Jul 21 - Jul 27|Jul 22 - Aug 20|Jul 22 - Aug 4|Jul 22 - Jul 22|Jul 22 - Jul 24|Jul 22 - Oct 19|Jul 23 - Aug 21|Jul 23 - Jul 23|Jul 23 - Jul 25|Jul 24 - Aug 22|Jul 24 - Aug 6|Jul 24 - Jul 24|Jul 24 - Jul 26|Jul 24 - Jul 30|Jul 25 - Aug 23|Jul 25 - Aug 7|Jul 25 - Jul 25|Jul 25 - Jul 27|Jul 25 - Jul 31|Jul 25 - Oct 22|Jul 26 - Aug 1|Jul 26 - Jul 26|Jul 26 - Jul 28|Jul 26 - Oct 23|Jul 27 - Aug 2|Jul 27 - Aug 9|Jul 27 - Jul 29|Jul 27 - Oct 24|Jul 28 - Aug 3|Jul 28 - Jul 28|Jul 28 - Jul 30|Jul 29 - Aug 4|Jul 29 - Jul 29|Jul 29 - Jul 31|Jul 3 - Aug 1|Jul 3 - Jul 3|Jul 3 - Jul 5|Jul 3 - Jul 9|Jul 30 - Aug 1|Jul 30 - Aug 28|Jul 30 - Aug 5|Jul 30 - Jul 30|Jul 31 - Aug 2|Jul 31 - Aug 6|Jul 4 - Jul 17|Jul 4 - Jul 4|Jul 4 - Jul 6|Jul 5 - Jul 18|Jul 5 - Jul 5|Jul 5 - Jul 7|Jul 5 - Oct 2|Jul 6 - Jul 12|Jul 6 - Jul 6|Jul 6 - Jul 8|Jul 6 - Oct 3|Jul 7 - Jul 13|Jul 7 - Jul 20|Jul 7 - Jul 9|Jul 8 - Aug 6|Jul 8 - Jul 10|Jul 8 - Jul 8|Jul 8 - Oct 5|Jul 9 - Aug 7|Jul 9 - Jul 11|Jul 9 - Jul 15|Jul 9 - Jul 22|Jun 1 - Aug 29|Jun 1 - Jun 1|Jun 1 - Jun 14|Jun 1 - Jun 3|Jun 1 - Jun 7|Jun 10 - Jul 9|Jun 10 - Jun 10|Jun 10 - Jun 12|Jun 10 - Jun 16|Jun 10 - Sep 7|Jun 11 - Jul 10|Jun 11 - Jun 11|Jun 11 - Jun 13|Jun 11 - Jun 17|Jun 11 - Jun 24|Jun 11 - Sep 8|Jun 12 - Jul 11|Jun 12 - Jun 12|Jun 12 - Jun 14|Jun 12 - Jun 18|Jun 12 - Jun 25|Jun 12 - Sep 9|Jun 13 - Jun 13|Jun 13 - Jun 15|Jun 13 - Sep 10|Jun 14 - Jul 13|Jun 14 - Jun 14|Jun 14 - Jun 16|Jun 14 - Jun 20|Jun 14 - Sep 11|Jun 15 - Jul 14|Jun 15 - Jun 15|Jun 15 - Jun 17|Jun 15 - Jun 21|Jun 15 - Jun 28|Jun 16 - Jul 15|Jun 16 - Jun 16|Jun 16 - Jun 18|Jun 16 - Jun 22|Jun 16 - Jun 29|Jun 16 - Sep 13|Jun 17 - Jul 16|Jun 17 - Jun 17|Jun 17 - Jun 19|Jun 17 - Jun 23|Jun 17 - Jun 30|Jun 17 - Sep 14|Jun 18 - Jul 1|Jun 18 - Jul 17|Jun 18 - Jun 18|Jun 18 - Jun 20|Jun 18 - Jun 24|Jun 18 - Sep 15|Jun 19 - Jul 18|Jun 19 - Jul 2|Jun 19 - Jun 19|Jun 19 - Jun 21|Jun 19 - Jun 25|Jun 19 - Sep 16|Jun 2 - Aug 30|Jun 2 - Jul 1|Jun 2 - Jun 15|Jun 2 - Jun 2|Jun 2 - Jun 4|Jun 2 - Jun 8|Jun 20 - Jul 19|Jun 20 - Jul 3|Jun 20 - Jun 20|Jun 20 - Jun 22|Jun 20 - Jun 26|Jun 20 - Sep 17|Jun 21 - Jul 20|Jun 21 - Jul 4|Jun 21 - Jun 21|Jun 21 - Jun 23|Jun 21 - Jun 27|Jun 22 - Jul 21|Jun 22 - Jul 5|Jun 22 - Jun 22|Jun 22 - Jun 24|Jun 22 - Jun 28|Jun 22 - Sep 19|Jun 23 - Jul 22|Jun 23 - Jul 6|Jun 23 - Jun 23|Jun 23 - Jun 25|Jun 23 - Jun 29|Jun 23 - Sep 20|Jun 24 - Jul 23|Jun 24 - Jul 7|Jun 24 - Jun 24|Jun 24 - Jun 26|Jun 24 - Jun 30|Jun 24 - Sep 21|Jun 25 - Jul 1|Jun 25 - Jul 24|Jun 25 - Jul 8|Jun 25 - Jun 25|Jun 25 - Jun 27|Jun 25 - Sep 22|Jun 26 - Jul 2|Jun 26 - Jul 25|Jun 26 - Jun 26|Jun 26 - Jun 28|Jun 26 - Sep 23|Jun 27 - Jul 26|Jun 27 - Jul 3|Jun 27 - Jun 27|Jun 27 - Jun 29|Jun 27 - Sep 24|Jun 28 - Jul 11|Jun 28 - Jul 4|Jun 28 - Jun 28|Jun 28 - Jun 30|Jun 28 - Sep 25|Jun 29 - Jul 1|Jun 29 - Jul 12|Jun 29 - Jul 28|Jun 29 - Jul 5|Jun 29 - Jun 29|Jun 29 - Sep 26|Jun 3 - Aug 31|Jun 3 - Jul 2|Jun 3 - Jun 16|Jun 3 - Jun 3|Jun 3 - Jun 5|Jun 3 - Jun 9|Jun 30 - Jul 13|Jun 30 - Jul 2|Jun 30 - Jul 29|Jun 30 - Jul 6|Jun 30 - Jun 30|Jun 30 - Sep 27|Jun 4 - Jul 3|Jun 4 - Jun 10|Jun 4 - Jun 17|Jun 4 - Jun 4|Jun 4 - Jun 6|Jun 4 - Sep 1|Jun 5 - Jul 4|Jun 5 - Jun 11|Jun 5 - Jun 18|Jun 5 - Jun 5|Jun 5 - Jun 7|Jun 6 - Jul 5|Jun 6 - Jun 12|Jun 6 - Jun 19|Jun 6 - Jun 6|Jun 6 - Jun 8|Jun 6 - Sep 3|Jun 7 - Jul 6|Jun 7 - Jun 13|Jun 7 - Jun 20|Jun 7 - Jun 7|Jun 7 - Jun 9|Jun 8 - Jul 7|Jun 8 - Jun 10|Jun 8 - Jun 14|Jun 8 - Jun 21|Jun 8 - Jun 8|Jun 9 - Jul 8|Jun 9 - Jun 11|Jun 9 - Jun 22|Jun 9 - Jun 9|Jun 9 - Sep 6|Mar 1 - Mar 1|Mar 1 - Mar 14|Mar 1 - Mar 3|Mar 1 - Mar 30|Mar 1 - Mar 7|Mar 1 - May 29|Mar 10 - Apr 8|Mar 10 - Jun 7|Mar 10 - Mar 10|Mar 10 - Mar 12|Mar 10 - Mar 16|Mar 10 - Mar 23|Mar 11 - Apr 9|Mar 11 - Jun 8|Mar 11 - Mar 11|Mar 11 - Mar 13|Mar 11 - Mar 17|Mar 11 - Mar 24|Mar 12 - Apr 10|Mar 12 - Jun 9|Mar 12 - Mar 12|Mar 12 - Mar 14|Mar 12 - Mar 18|Mar 12 - Mar 25|Mar 13 - Apr 11|Mar 13 - Jun 10|Mar 13 - Mar 13|Mar 13 - Mar 15|Mar 13 - Mar 19|Mar 13 - Mar 26|Mar 14 - Apr 12|Mar 14 - Jun 11|Mar 14 - Mar 14|Mar 14 - Mar 16|Mar 14 - Mar 20|Mar 14 - Mar 27|Mar 15 - Apr 13|Mar 15 - Jun 12|Mar 15 - Mar 15|Mar 15 - Mar 17|Mar 15 - Mar 21|Mar 15 - Mar 28|Mar 16 - Apr 14|Mar 16 - Jun 13|Mar 16 - Mar 16|Mar 16 - Mar 18|Mar 16 - Mar 22|Mar 16 - Mar 29|Mar 17 - Apr 15|Mar 17 - Jun 14|Mar 17 - Mar 17|Mar 17 - Mar 19|Mar 17 - Mar 23|Mar 17 - Mar 30|Mar 18 - Apr 16|Mar 18 - Jun 15|Mar 18 - Mar 18|Mar 18 - Mar 20|Mar 18 - Mar 24|Mar 18 - Mar 31|Mar 19 - Apr 1|Mar 19 - Apr 17|Mar 19 - Jun 16|Mar 19 - Mar 19|Mar 19 - Mar 21|Mar 19 - Mar 25|Mar 2 - Mar 15|Mar 2 - Mar 2|Mar 2 - Mar 31|Mar 2 - Mar 4|Mar 2 - Mar 8|Mar 2 - May 30|Mar 20 - Apr 18|Mar 20 - Apr 2|Mar 20 - Jun 17|Mar 20 - Mar 20|Mar 20 - Mar 22|Mar 20 - Mar 26|Mar 21 - Apr 19|Mar 21 - Apr 3|Mar 21 - Jun 18|Mar 21 - Mar 21|Mar 21 - Mar 23|Mar 21 - Mar 27|Mar 22 - Apr 20|Mar 22 - Apr 4|Mar 22 - Jun 19|Mar 22 - Mar 22|Mar 22 - Mar 24|Mar 22 - Mar 28|Mar 23 - Apr 21|Mar 23 - Apr 5|Mar 23 - Jun 20|Mar 23 - Mar 23|Mar 23 - Mar 25|Mar 23 - Mar 29|Mar 24 - Apr 22|Mar 24 - Apr 6|Mar 24 - Jun 21|Mar 24 - Mar 24|Mar 24 - Mar 26|Mar 24 - Mar 30|Mar 25 - Apr 23|Mar 25 - Apr 7|Mar 25 - Jun 22|Mar 25 - Mar 25|Mar 25 - Mar 27|Mar 25 - Mar 31|Mar 26 - Apr 1|Mar 26 - Apr 24|Mar 26 - Apr 8|Mar 26 - Jun 23|Mar 26 - Mar 26|Mar 26 - Mar 28|Mar 27 - Apr 2|Mar 27 - Apr 25|Mar 27 - Apr 9|Mar 27 - Jun 24|Mar 27 - Mar 27|Mar 27 - Mar 29|Mar 28 - Apr 10|Mar 28 - Apr 26|Mar 28 - Apr 3|Mar 28 - Jun 25|Mar 28 - Mar 28|Mar 28 - Mar 30|Mar 29 - Apr 11|Mar 29 - Apr 27|Mar 29 - Apr 4|Mar 29 - Jun 26|Mar 29 - Mar 29|Mar 29 - Mar 31|Mar 3 - Apr 1|Mar 3 - Mar 16|Mar 3 - Mar 3|Mar 3 - Mar 5|Mar 3 - Mar 9|Mar 3 - May 31|Mar 30 - Apr 1|Mar 30 - Apr 12|Mar 30 - Apr 28|Mar 30 - Apr 5|Mar 30 - Jun 27|Mar 30 - Mar 30|Mar 31 - Apr 13|Mar 31 - Apr 2|Mar 31 - Apr 29|Mar 31 - Apr 6|Mar 31 - Jun 28|Mar 31 - Mar 31|Mar 4 - Apr 2|Mar 4 - Jun 1|Mar 4 - Mar 10|Mar 4 - Mar 17|Mar 4 - Mar 4|Mar 4 - Mar 6|Mar 5 - Apr 3|Mar 5 - Jun 2|Mar 5 - Mar 11|Mar 5 - Mar 18|Mar 5 - Mar 5|Mar 5 - Mar 7|Mar 6 - Apr 4|Mar 6 - Jun 3|Mar 6 - Mar 12|Mar 6 - Mar 19|Mar 6 - Mar 6|Mar 6 - Mar 8|Mar 7 - Apr 5|Mar 7 - Jun 4|Mar 7 - Mar 13|Mar 7 - Mar 20|Mar 7 - Mar 7|Mar 7 - Mar 9|Mar 8 - Apr 6|Mar 8 - Jun 5|Mar 8 - Mar 10|Mar 8 - Mar 14|Mar 8 - Mar 21|Mar 8 - Mar 8|Mar 9 - Apr 7|Mar 9 - Jun 6|Mar 9 - Mar 11|Mar 9 - Mar 15|Mar 9 - Mar 22|Mar 9 - Mar 9|May 1 - Jul 29|May 1 - May 1|May 1 - May 14|May 1 - May 3|May 1 - May 30|May 1 - May 7|May 10 - Aug 7|May 10 - Jun 8|May 10 - May 10|May 10 - May 12|May 10 - May 16|May 10 - May 23|May 11 - Aug 8|May 11 - Jun 9|May 11 - May 11|May 11 - May 13|May 11 - May 17|May 11 - May 24|May 12 - Aug 9|May 12 - Jun 10|May 12 - May 12|May 12 - May 14|May 12 - May 18|May 12 - May 25|May 13 - Aug 10|May 13 - Jun 11|May 13 - May 13|May 13 - May 15|May 13 - May 19|May 13 - May 26|May 14 - Aug 11|May 14 - Jun 12|May 14 - May 14|May 14 - May 16|May 14 - May 20|May 14 - May 27|May 15 - Aug 12|May 15 - Jun 13|May 15 - May 15|May 15 - May 17|May 15 - May 21|May 15 - May 28|May 16 - Aug 13|May 16 - Jun 14|May 16 - May 16|May 16 - May 18|May 16 - May 22|May 16 - May 29|May 17 - Aug 14|May 17 - Jun 15|May 17 - May 17|May 17 - May 19|May 17 - May 23|May 17 - May 30|May 18 - Aug 15|May 18 - Jun 16|May 18 - May 18|May 18 - May 20|May 18 - May 24|May 18 - May 31|May 19 - Aug 16|May 19 - Jun 1|May 19 - Jun 17|May 19 - May 19|May 19 - May 21|May 19 - May 25|May 2 - Jul 30|May 2 - May 15|May 2 - May 2|May 2 - May 31|May 2 - May 4|May 2 - May 8|May 20 - Aug 17|May 20 - Jun 18|May 20 - Jun 2|May 20 - May 20|May 20 - May 22|May 20 - May 26|May 21 - Aug 18|May 21 - Jun 19|May 21 - Jun 3|May 21 - May 21|May 21 - May 23|May 21 - May 27|May 22 - Aug 19|May 22 - Jun 20|May 22 - Jun 4|May 22 - May 22|May 22 - May 24|May 22 - May 28|May 23 - Aug 20|May 23 - Jun 21|May 23 - Jun 5|May 23 - May 23|May 23 - May 25|May 23 - May 29|May 24 - Aug 21|May 24 - Jun 22|May 24 - Jun 6|May 24 - May 24|May 24 - May 26|May 24 - May 30|May 25 - Aug 22|May 25 - Jun 23|May 25 - Jun 7|May 25 - May 25|May 25 - May 27|May 25 - May 31|May 26 - Aug 23|May 26 - Jun 1|May 26 - Jun 24|May 26 - Jun 8|May 26 - May 26|May 26 - May 28|May 27 - Aug 24|May 27 - Jun 2|May 27 - Jun 25|May 27 - Jun 9|May 27 - May 27|May 27 - May 29|May 28 - Aug 25|May 28 - Jun 10|May 28 - Jun 26|May 28 - Jun 3|May 28 - May 28|May 28 - May 30|May 29 - Aug 26|May 29 - Jun 11|May 29 - Jun 27|May 29 - Jun 4|May 29 - May 29|May 29 - May 31|May 3 - Jul 31|May 3 - Jun 1|May 3 - May 16|May 3 - May 3|May 3 - May 5|May 3 - May 9|May 30 - Aug 27|May 30 - Jun 1|May 30 - Jun 12|May 30 - Jun 28|May 30 - Jun 5|May 30 - May 30|May 31 - Aug 28|May 31 - Jun 13|May 31 - Jun 2|May 31 - Jun 29|May 31 - Jun 6|May 31 - May 31|May 4 - Aug 1|May 4 - Jun 2|May 4 - May 10|May 4 - May 17|May 4 - May 4|May 4 - May 6|May 5 - Aug 2|May 5 - Jun 3|May 5 - May 11|May 5 - May 18|May 5 - May 5|May 5 - May 7|May 6 - Aug 3|May 6 - Jun 4|May 6 - May 12|May 6 - May 19|May 6 - May 6|May 6 - May 8|May 7 - Aug 4|May 7 - Jun 5|May 7 - May 13|May 7 - May 20|May 7 - May 7|May 7 - May 9|May 8 - Aug 5|May 8 - Jun 6|May 8 - May 10|May 8 - May 14|May 8 - May 21|May 8 - May 8|May 9 - Aug 6|May 9 - Jun 7|May 9 - May 11|May 9 - May 15|May 9 - May 22|May 9 - May 9|Never|Nov 1 - Jan 29|Nov 1 - Nov 1|Nov 1 - Nov 14|Nov 1 - Nov 3|Nov 1 - Nov 30|Nov 1 - Nov 7|Nov 10 - Dec 9|Nov 10 - Feb 7|Nov 10 - Nov 10|Nov 10 - Nov 12|Nov 10 - Nov 16|Nov 10 - Nov 23|Nov 11 - Dec 10|Nov 11 - Feb 8|Nov 11 - Nov 11|Nov 11 - Nov 13|Nov 11 - Nov 17|Nov 11 - Nov 24|Nov 12 - Dec 11|Nov 12 - Feb 9|Nov 12 - Nov 12|Nov 12 - Nov 14|Nov 12 - Nov 18|Nov 12 - Nov 25|Nov 13 - Dec 12|Nov 13 - Feb 10|Nov 13 - Nov 13|Nov 13 - Nov 15|Nov 13 - Nov 19|Nov 13 - Nov 26|Nov 14 - Dec 13|Nov 14 - Feb 11|Nov 14 - Nov 14|Nov 14 - Nov 16|Nov 14 - Nov 20|Nov 14 - Nov 27|Nov 15 - Dec 14|Nov 15 - Feb 12|Nov 15 - Nov 15|Nov 15 - Nov 17|Nov 15 - Nov 21|Nov 15 - Nov 28|Nov 16 - Dec 15|Nov 16 - Feb 13|Nov 16 - Nov 16|Nov 16 - Nov 18|Nov 16 - Nov 22|Nov 16 - Nov 29|Nov 17 - Dec 16|Nov 17 - Feb 14|Nov 17 - Nov 17|Nov 17 - Nov 19|Nov 17 - Nov 23|Nov 17 - Nov 30|Nov 18 - Dec 1|Nov 18 - Dec 17|Nov 18 - Feb 15|Nov 18 - Nov 18|Nov 18 - Nov 20|Nov 18 - Nov 24|Nov 19 - Dec 18|Nov 19 - Dec 2|Nov 19 - Feb 16|Nov 19 - Nov 19|Nov 19 - Nov 21|Nov 19 - Nov 25|Nov 2 - Dec 1|Nov 2 - Jan 30|Nov 2 - Nov 15|Nov 2 - Nov 2|Nov 2 - Nov 4|Nov 2 - Nov 8|Nov 20 - Dec 19|Nov 20 - Dec 3|Nov 20 - Feb 17|Nov 20 - Nov 20|Nov 20 - Nov 22|Nov 20 - Nov 26|Nov 21 - Dec 20|Nov 21 - Dec 4|Nov 21 - Feb 18|Nov 21 - Nov 21|Nov 21 - Nov 23|Nov 21 - Nov 27|Nov 22 - Dec 21|Nov 22 - Dec 5|Nov 22 - Feb 19|Nov 22 - Nov 22|Nov 22 - Nov 24|Nov 22 - Nov 28|Nov 23 - Dec 22|Nov 23 - Dec 6|Nov 23 - Feb 20|Nov 23 - Nov 23|Nov 23 - Nov 25|Nov 23 - Nov 29|Nov 24 - Dec 23|Nov 24 - Dec 7|Nov 24 - Feb 21|Nov 24 - Nov 24|Nov 24 - Nov 26|Nov 24 - Nov 30|Nov 25 - Dec 1|Nov 25 - Dec 24|Nov 25 - Dec 8|Nov 25 - Feb 22|Nov 25 - Nov 25|Nov 25 - Nov 27|Nov 26 - Dec 2|Nov 26 - Dec 25|Nov 26 - Dec 9|Nov 26 - Feb 23|Nov 26 - Nov 26|Nov 26 - Nov 28|Nov 27 - Dec 10|Nov 27 - Dec 26|Nov 27 - Dec 3|Nov 27 - Feb 24|Nov 27 - Nov 27|Nov 27 - Nov 29|Nov 28 - Dec 11|Nov 28 - Dec 27|Nov 28 - Dec 4|Nov 28 - Feb 25|Nov 28 - Nov 28|Nov 28 - Nov 30|Nov 29 - Dec 1|Nov 29 - Dec 12|Nov 29 - Dec 28|Nov 29 - Dec 5|Nov 29 - Feb 26|Nov 29 - Nov 29|Nov 3 - Dec 2|Nov 3 - Jan 31|Nov 3 - Nov 16|Nov 3 - Nov 3|Nov 3 - Nov 5|Nov 3 - Nov 9|Nov 30 - Dec 13|Nov 30 - Dec 2|Nov 30 - Dec 29|Nov 30 - Dec 6|Nov 30 - Feb 27|Nov 30 - Nov 30|Nov 4 - Dec 3|Nov 4 - Feb 1|Nov 4 - Nov 10|Nov 4 - Nov 17|Nov 4 - Nov 4|Nov 4 - Nov 6|Nov 5 - Dec 4|Nov 5 - Feb 2|Nov 5 - Nov 11|Nov 5 - Nov 18|Nov 5 - Nov 5|Nov 5 - Nov 7|Nov 6 - Dec 5|Nov 6 - Feb 3|Nov 6 - Nov 12|Nov 6 - Nov 19|Nov 6 - Nov 6|Nov 6 - Nov 8|Nov 7 - Dec 6|Nov 7 - Feb 4|Nov 7 - Nov 13|Nov 7 - Nov 20|Nov 7 - Nov 7|Nov 7 - Nov 9|Nov 8 - Dec 7|Nov 8 - Feb 5|Nov 8 - Nov 10|Nov 8 - Nov 14|Nov 8 - Nov 21|Nov 8 - Nov 8|Nov 9 - Dec 8|Nov 9 - Feb 6|Nov 9 - Nov 11|Nov 9 - Nov 15|Nov 9 - Nov 22|Nov 9 - Nov 9|Oct 1 - Dec 29|Oct 1 - Oct 1|Oct 1 - Oct 14|Oct 1 - Oct 3|Oct 1 - Oct 30|Oct 1 - Oct 7|Oct 10 - Jan 7|Oct 10 - Nov 8|Oct 10 - Oct 10|Oct 10 - Oct 12|Oct 10 - Oct 16|Oct 10 - Oct 23|Oct 11 - Jan 8|Oct 11 - Nov 9|Oct 11 - Oct 11|Oct 11 - Oct 13|Oct 11 - Oct 17|Oct 11 - Oct 24|Oct 12 - Jan 9|Oct 12 - Nov 10|Oct 12 - Oct 12|Oct 12 - Oct 14|Oct 12 - Oct 18|Oct 12 - Oct 25|Oct 13 - Jan 10|Oct 13 - Nov 11|Oct 13 - Oct 13|Oct 13 - Oct 15|Oct 13 - Oct 19|Oct 13 - Oct 26|Oct 14 - Jan 11|Oct 14 - Nov 12|Oct 14 - Oct 14|Oct 14 - Oct 16|Oct 14 - Oct 20|Oct 14 - Oct 27|Oct 15 - Jan 12|Oct 15 - Nov 13|Oct 15 - Oct 15|Oct 15 - Oct 17|Oct 15 - Oct 21|Oct 15 - Oct 28|Oct 16 - Jan 13|Oct 16 - Nov 14|Oct 16 - Oct 16|Oct 16 - Oct 18|Oct 16 - Oct 22|Oct 16 - Oct 29|Oct 17 - Jan 14|Oct 17 - Nov 15|Oct 17 - Oct 17|Oct 17 - Oct 19|Oct 17 - Oct 23|Oct 17 - Oct 30|Oct 18 - Jan 15|Oct 18 - Nov 16|Oct 18 - Oct 18|Oct 18 - Oct 20|Oct 18 - Oct 24|Oct 18 - Oct 31|Oct 19 - Jan 16|Oct 19 - Nov 1|Oct 19 - Nov 17|Oct 19 - Oct 19|Oct 19 - Oct 21|Oct 19 - Oct 25|Oct 2 - Dec 30|Oct 2 - Oct 15|Oct 2 - Oct 2|Oct 2 - Oct 31|Oct 2 - Oct 4|Oct 2 - Oct 8|Oct 20 - Jan 17|Oct 20 - Nov 18|Oct 20 - Nov 2|Oct 20 - Oct 20|Oct 20 - Oct 22|Oct 20 - Oct 26|Oct 21 - Jan 18|Oct 21 - Nov 19|Oct 21 - Nov 3|Oct 21 - Oct 21|Oct 21 - Oct 23|Oct 21 - Oct 27|Oct 22 - Jan 19|Oct 22 - Nov 20|Oct 22 - Nov 4|Oct 22 - Oct 22|Oct 22 - Oct 24|Oct 22 - Oct 28|Oct 23 - Jan 20|Oct 23 - Nov 21|Oct 23 - Nov 5|Oct 23 - Oct 23|Oct 23 - Oct 25|Oct 23 - Oct 29|Oct 24 - Jan 21|Oct 24 - Nov 22|Oct 24 - Nov 6|Oct 24 - Oct 24|Oct 24 - Oct 26|Oct 24 - Oct 30|Oct 25 - Jan 22|Oct 25 - Nov 23|Oct 25 - Nov 7|Oct 25 - Oct 25|Oct 25 - Oct 27|Oct 25 - Oct 31|Oct 26 - Jan 23|Oct 26 - Nov 1|Oct 26 - Nov 24|Oct 26 - Nov 8|Oct 26 - Oct 26|Oct 26 - Oct 28|Oct 27 - Jan 24|Oct 27 - Nov 2|Oct 27 - Nov 25|Oct 27 - Nov 9|Oct 27 - Oct 27|Oct 27 - Oct 29|Oct 28 - Jan 25|Oct 28 - Nov 10|Oct 28 - Nov 26|Oct 28 - Nov 3|Oct 28 - Oct 28|Oct 28 - Oct 30|Oct 29 - Jan 26|Oct 29 - Nov 11|Oct 29 - Nov 27|Oct 29 - Nov 4|Oct 29 - Oct 29|Oct 29 - Oct 31|Oct 3 - Dec 31|Oct 3 - Nov 1|Oct 3 - Oct 16|Oct 3 - Oct 3|Oct 3 - Oct 5|Oct 3 - Oct 9|Oct 30 - Jan 27|Oct 30 - Nov 1|Oct 30 - Nov 12|Oct 30 - Nov 28|Oct 30 - Nov 5|Oct 30 - Oct 30|Oct 31 - Jan 28|Oct 31 - Nov 13|Oct 31 - Nov 2|Oct 31 - Nov 29|Oct 31 - Nov 6|Oct 31 - Oct 31|Oct 4 - Jan 1|Oct 4 - Nov 2|Oct 4 - Oct 10|Oct 4 - Oct 17|Oct 4 - Oct 4|Oct 4 - Oct 6|Oct 5 - Jan 2|Oct 5 - Nov 3|Oct 5 - Oct 11|Oct 5 - Oct 18|Oct 5 - Oct 5|Oct 5 - Oct 7|Oct 6 - Jan 3|Oct 6 - Nov 4|Oct 6 - Oct 12|Oct 6 - Oct 19|Oct 6 - Oct 6|Oct 6 - Oct 8|Oct 7 - Jan 4|Oct 7 - Nov 5|Oct 7 - Oct 13|Oct 7 - Oct 20|Oct 7 - Oct 7|Oct 7 - Oct 9|Oct 8 - Jan 5|Oct 8 - Nov 6|Oct 8 - Oct 10|Oct 8 - Oct 14|Oct 8 - Oct 21|Oct 8 - Oct 8|Oct 9 - Jan 6|Oct 9 - Nov 7|Oct 9 - Oct 11|Oct 9 - Oct 15|Oct 9 - Oct 22|Oct 9 - Oct 9|Sep 1 - Sep 1|Sep 1 - Sep 14|Sep 1 - Sep 3|Sep 1 - Sep 7|Sep 10 - Oct 9|Sep 10 - Sep 12|Sep 10 - Sep 16|Sep 10 - Sep 23|Sep 11 - Dec 9|Sep 11 - Oct 10|Sep 11 - Sep 11|Sep 11 - Sep 13|Sep 11 - Sep 17|Sep 11 - Sep 24|Sep 12 - Dec 10|Sep 12 - Oct 11|Sep 12 - Sep 12|Sep 12 - Sep 14|Sep 12 - Sep 18|Sep 13 - Dec 11|Sep 13 - Sep 13|Sep 13 - Sep 15|Sep 14 - Dec 12|Sep 14 - Oct 13|Sep 14 - Sep 14|Sep 14 - Sep 16|Sep 14 - Sep 20|Sep 15 - Dec 13|Sep 15 - Sep 15|Sep 15 - Sep 17|Sep 15 - Sep 21|Sep 16 - Dec 14|Sep 16 - Oct 15|Sep 16 - Sep 16|Sep 16 - Sep 18|Sep 16 - Sep 22|Sep 17 - Dec 15|Sep 17 - Sep 17|Sep 17 - Sep 19|Sep 17 - Sep 23|Sep 18 - Dec 16|Sep 18 - Sep 18|Sep 18 - Sep 20|Sep 18 - Sep 24|Sep 19 - Oct 18|Sep 19 - Oct 2|Sep 19 - Sep 19|Sep 19 - Sep 21|Sep 19 - Sep 25|Sep 2 - Sep 15|Sep 2 - Sep 2|Sep 2 - Sep 4|Sep 2 - Sep 8|Sep 20 - Oct 19|Sep 20 - Oct 3|Sep 20 - Sep 20|Sep 20 - Sep 22|Sep 20 - Sep 26|Sep 21 - Oct 4|Sep 21 - Sep 21|Sep 21 - Sep 23|Sep 21 - Sep 27|Sep 22 - Oct 21|Sep 22 - Sep 22|Sep 22 - Sep 24|Sep 23 - Dec 21|Sep 23 - Oct 22|Sep 23 - Oct 6|Sep 23 - Sep 23|Sep 23 - Sep 25|Sep 23 - Sep 29|Sep 24 - Dec 22|Sep 24 - Oct 23|Sep 24 - Oct 7|Sep 24 - Sep 24|Sep 24 - Sep 26|Sep 24 - Sep 30|Sep 25 - Dec 23|Sep 25 - Oct 1|Sep 25 - Oct 8|Sep 25 - Sep 25|Sep 25 - Sep 27|Sep 26 - Oct 2|Sep 26 - Oct 9|Sep 26 - Sep 26|Sep 26 - Sep 28|Sep 27 - Dec 25|Sep 27 - Oct 10|Sep 27 - Oct 26|Sep 27 - Oct 3|Sep 27 - Sep 27|Sep 27 - Sep 29|Sep 28 - Dec 26|Sep 28 - Oct 11|Sep 28 - Oct 27|Sep 28 - Oct 4|Sep 28 - Sep 28|Sep 28 - Sep 30|Sep 29 - Oct 1|Sep 29 - Oct 12|Sep 29 - Oct 28|Sep 29 - Oct 5|Sep 29 - Sep 29|Sep 3 - Oct 2|Sep 3 - Sep 16|Sep 3 - Sep 3|Sep 3 - Sep 5|Sep 3 - Sep 9|Sep 30 - Dec 28|Sep 30 - Oct 13|Sep 30 - Oct 2|Sep 30 - Oct 29|Sep 30 - Oct 6|Sep 30 - Sep 30|Sep 4 - Dec 2|Sep 4 - Oct 3|Sep 4 - Sep 10|Sep 4 - Sep 4|Sep 4 - Sep 6|Sep 5 - Dec 3|Sep 5 - Sep 18|Sep 5 - Sep 5|Sep 5 - Sep 7|Sep 6 - Oct 5|Sep 6 - Sep 12|Sep 6 - Sep 6|Sep 6 - Sep 8|Sep 7 - Dec 5|Sep 7 - Oct 6|Sep 7 - Sep 13|Sep 7 - Sep 20|Sep 7 - Sep 7|Sep 7 - Sep 9|Sep 8 - Dec 6|Sep 8 - Oct 7|Sep 8 - Sep 10|Sep 8 - Sep 14|Sep 8 - Sep 21|Sep 8 - Sep 8|Sep 9 - Dec 7|Sep 9 - Sep 11|Sep 9 - Sep 15|Sep 9 - Sep 22|Sep 9 - Sep 9 -in.cooling_unavailable_period metadata_and_annual n/a string Apr 1 - Apr 1|Apr 1 - Apr 14|Apr 1 - Apr 3|Apr 1 - Apr 30|Apr 1 - Apr 7|Apr 1 - Jun 29|Apr 10 - Apr 10|Apr 10 - Apr 12|Apr 10 - Apr 16|Apr 10 - Apr 23|Apr 10 - Jul 8|Apr 10 - May 9|Apr 11 - Apr 11|Apr 11 - Apr 13|Apr 11 - Apr 17|Apr 11 - Apr 24|Apr 11 - Jul 9|Apr 11 - May 10|Apr 12 - Apr 12|Apr 12 - Apr 14|Apr 12 - Apr 18|Apr 12 - Apr 25|Apr 12 - Jul 10|Apr 12 - May 11|Apr 13 - Apr 13|Apr 13 - Apr 15|Apr 13 - Apr 19|Apr 13 - Apr 26|Apr 13 - Jul 11|Apr 13 - May 12|Apr 14 - Apr 14|Apr 14 - Apr 16|Apr 14 - Apr 20|Apr 14 - Apr 27|Apr 14 - Jul 12|Apr 14 - May 13|Apr 15 - Apr 15|Apr 15 - Apr 17|Apr 15 - Apr 21|Apr 15 - Apr 28|Apr 15 - Jul 13|Apr 15 - May 14|Apr 16 - Apr 16|Apr 16 - Apr 18|Apr 16 - Apr 22|Apr 16 - Apr 29|Apr 16 - Jul 14|Apr 16 - May 15|Apr 17 - Apr 17|Apr 17 - Apr 19|Apr 17 - Apr 23|Apr 17 - Apr 30|Apr 17 - Jul 15|Apr 17 - May 16|Apr 18 - Apr 18|Apr 18 - Apr 20|Apr 18 - Apr 24|Apr 18 - Jul 16|Apr 18 - May 1|Apr 18 - May 17|Apr 19 - Apr 19|Apr 19 - Apr 21|Apr 19 - Apr 25|Apr 19 - Jul 17|Apr 19 - May 18|Apr 19 - May 2|Apr 2 - Apr 15|Apr 2 - Apr 2|Apr 2 - Apr 4|Apr 2 - Apr 8|Apr 2 - Jun 30|Apr 2 - May 1|Apr 20 - Apr 20|Apr 20 - Apr 22|Apr 20 - Apr 26|Apr 20 - Jul 18|Apr 20 - May 19|Apr 20 - May 3|Apr 21 - Apr 21|Apr 21 - Apr 23|Apr 21 - Apr 27|Apr 21 - Jul 19|Apr 21 - May 20|Apr 21 - May 4|Apr 22 - Apr 22|Apr 22 - Apr 24|Apr 22 - Apr 28|Apr 22 - Jul 20|Apr 22 - May 21|Apr 22 - May 5|Apr 23 - Apr 23|Apr 23 - Apr 25|Apr 23 - Apr 29|Apr 23 - Jul 21|Apr 23 - May 22|Apr 23 - May 6|Apr 24 - Apr 24|Apr 24 - Apr 26|Apr 24 - Apr 30|Apr 24 - Jul 22|Apr 24 - May 23|Apr 24 - May 7|Apr 25 - Apr 25|Apr 25 - Apr 27|Apr 25 - Jul 23|Apr 25 - May 1|Apr 25 - May 24|Apr 25 - May 8|Apr 26 - Apr 26|Apr 26 - Apr 28|Apr 26 - Jul 24|Apr 26 - May 2|Apr 26 - May 25|Apr 26 - May 9|Apr 27 - Apr 27|Apr 27 - Apr 29|Apr 27 - Jul 25|Apr 27 - May 10|Apr 27 - May 26|Apr 27 - May 3|Apr 28 - Apr 28|Apr 28 - Apr 30|Apr 28 - Jul 26|Apr 28 - May 11|Apr 28 - May 27|Apr 28 - May 4|Apr 29 - Apr 29|Apr 29 - Jul 27|Apr 29 - May 1|Apr 29 - May 12|Apr 29 - May 28|Apr 29 - May 5|Apr 3 - Apr 16|Apr 3 - Apr 3|Apr 3 - Apr 5|Apr 3 - Apr 9|Apr 3 - Jul 1|Apr 3 - May 2|Apr 30 - Apr 30|Apr 30 - Jul 28|Apr 30 - May 13|Apr 30 - May 2|Apr 30 - May 29|Apr 30 - May 6|Apr 4 - Apr 10|Apr 4 - Apr 17|Apr 4 - Apr 4|Apr 4 - Apr 6|Apr 4 - Jul 2|Apr 4 - May 3|Apr 5 - Apr 11|Apr 5 - Apr 18|Apr 5 - Apr 5|Apr 5 - Apr 7|Apr 5 - Jul 3|Apr 5 - May 4|Apr 6 - Apr 12|Apr 6 - Apr 19|Apr 6 - Apr 6|Apr 6 - Apr 8|Apr 6 - Jul 4|Apr 6 - May 5|Apr 7 - Apr 13|Apr 7 - Apr 20|Apr 7 - Apr 7|Apr 7 - Apr 9|Apr 7 - Jul 5|Apr 7 - May 6|Apr 8 - Apr 10|Apr 8 - Apr 14|Apr 8 - Apr 21|Apr 8 - Apr 8|Apr 8 - Jul 6|Apr 8 - May 7|Apr 9 - Apr 11|Apr 9 - Apr 15|Apr 9 - Apr 22|Apr 9 - Apr 9|Apr 9 - Jul 7|Apr 9 - May 8|Aug 1 - Aug 1|Aug 1 - Aug 14|Aug 1 - Aug 3|Aug 1 - Aug 30|Aug 1 - Aug 7|Aug 1 - Oct 29|Aug 10 - Aug 10|Aug 10 - Aug 12|Aug 10 - Aug 16|Aug 10 - Aug 23|Aug 10 - Nov 7|Aug 10 - Sep 8|Aug 11 - Aug 11|Aug 11 - Aug 13|Aug 11 - Aug 17|Aug 11 - Aug 24|Aug 11 - Nov 8|Aug 11 - Sep 9|Aug 12 - Aug 12|Aug 12 - Aug 14|Aug 12 - Aug 18|Aug 12 - Aug 25|Aug 12 - Nov 9|Aug 12 - Sep 10|Aug 13 - Aug 13|Aug 13 - Aug 15|Aug 13 - Aug 19|Aug 13 - Aug 26|Aug 13 - Nov 10|Aug 13 - Sep 11|Aug 14 - Aug 14|Aug 14 - Aug 16|Aug 14 - Aug 20|Aug 14 - Aug 27|Aug 14 - Nov 11|Aug 14 - Sep 12|Aug 15 - Aug 15|Aug 15 - Aug 17|Aug 15 - Aug 21|Aug 15 - Aug 28|Aug 15 - Nov 12|Aug 15 - Sep 13|Aug 16 - Aug 16|Aug 16 - Aug 18|Aug 16 - Aug 22|Aug 16 - Aug 29|Aug 16 - Nov 13|Aug 16 - Sep 14|Aug 17 - Aug 17|Aug 17 - Aug 19|Aug 17 - Aug 23|Aug 17 - Aug 30|Aug 17 - Nov 14|Aug 17 - Sep 15|Aug 18 - Aug 18|Aug 18 - Aug 20|Aug 18 - Aug 24|Aug 18 - Aug 31|Aug 18 - Nov 15|Aug 18 - Sep 16|Aug 19 - Aug 19|Aug 19 - Aug 21|Aug 19 - Aug 25|Aug 19 - Nov 16|Aug 19 - Sep 1|Aug 19 - Sep 17|Aug 2 - Aug 15|Aug 2 - Aug 2|Aug 2 - Aug 31|Aug 2 - Aug 4|Aug 2 - Aug 8|Aug 2 - Oct 30|Aug 20 - Aug 20|Aug 20 - Aug 22|Aug 20 - Aug 26|Aug 20 - Nov 17|Aug 20 - Sep 18|Aug 20 - Sep 2|Aug 21 - Aug 21|Aug 21 - Aug 23|Aug 21 - Aug 27|Aug 21 - Nov 18|Aug 21 - Sep 19|Aug 21 - Sep 3|Aug 22 - Aug 22|Aug 22 - Aug 24|Aug 22 - Aug 28|Aug 22 - Nov 19|Aug 22 - Sep 20|Aug 22 - Sep 4|Aug 23 - Aug 23|Aug 23 - Aug 25|Aug 23 - Aug 29|Aug 23 - Nov 20|Aug 23 - Sep 21|Aug 23 - Sep 5|Aug 24 - Aug 24|Aug 24 - Aug 26|Aug 24 - Aug 30|Aug 24 - Nov 21|Aug 24 - Sep 22|Aug 24 - Sep 6|Aug 25 - Aug 25|Aug 25 - Aug 27|Aug 25 - Aug 31|Aug 25 - Nov 22|Aug 25 - Sep 23|Aug 25 - Sep 7|Aug 26 - Aug 26|Aug 26 - Aug 28|Aug 26 - Nov 23|Aug 26 - Sep 1|Aug 26 - Sep 24|Aug 26 - Sep 8|Aug 27 - Aug 27|Aug 27 - Aug 29|Aug 27 - Nov 24|Aug 27 - Sep 2|Aug 27 - Sep 25|Aug 27 - Sep 9|Aug 28 - Aug 28|Aug 28 - Aug 30|Aug 28 - Nov 25|Aug 28 - Sep 10|Aug 28 - Sep 26|Aug 28 - Sep 3|Aug 29 - Aug 29|Aug 29 - Aug 31|Aug 29 - Nov 26|Aug 29 - Sep 11|Aug 29 - Sep 27|Aug 29 - Sep 4|Aug 3 - Aug 16|Aug 3 - Aug 3|Aug 3 - Aug 5|Aug 3 - Aug 9|Aug 3 - Oct 31|Aug 3 - Sep 1|Aug 30 - Aug 30|Aug 30 - Nov 27|Aug 30 - Sep 1|Aug 30 - Sep 12|Aug 30 - Sep 28|Aug 30 - Sep 5|Aug 31 - Aug 31|Aug 31 - Nov 28|Aug 31 - Sep 13|Aug 31 - Sep 2|Aug 31 - Sep 29|Aug 31 - Sep 6|Aug 4 - Aug 10|Aug 4 - Aug 17|Aug 4 - Aug 4|Aug 4 - Aug 6|Aug 4 - Nov 1|Aug 4 - Sep 2|Aug 5 - Aug 11|Aug 5 - Aug 18|Aug 5 - Aug 5|Aug 5 - Aug 7|Aug 5 - Nov 2|Aug 5 - Sep 3|Aug 6 - Aug 12|Aug 6 - Aug 19|Aug 6 - Aug 6|Aug 6 - Aug 8|Aug 6 - Nov 3|Aug 6 - Sep 4|Aug 7 - Aug 13|Aug 7 - Aug 20|Aug 7 - Aug 7|Aug 7 - Aug 9|Aug 7 - Nov 4|Aug 7 - Sep 5|Aug 8 - Aug 10|Aug 8 - Aug 14|Aug 8 - Aug 21|Aug 8 - Aug 8|Aug 8 - Nov 5|Aug 8 - Sep 6|Aug 9 - Aug 11|Aug 9 - Aug 15|Aug 9 - Aug 22|Aug 9 - Aug 9|Aug 9 - Nov 6|Aug 9 - Sep 7|Dec 1 - Dec 1|Dec 1 - Dec 14|Dec 1 - Dec 3|Dec 1 - Dec 30|Dec 10 - Dec 12|Dec 10 - Mar 9|Dec 11 - Dec 11|Dec 11 - Dec 24|Dec 11 - Mar 10|Dec 12 - Dec 18|Dec 12 - Dec 25|Dec 12 - Jan 10|Dec 12 - Mar 11|Dec 13 - Dec 19|Dec 13 - Dec 26|Dec 14 - Dec 16|Dec 14 - Jan 12|Dec 15 - Dec 17|Dec 15 - Dec 21|Dec 15 - Mar 14|Dec 16 - Dec 22|Dec 17 - Dec 17|Dec 18 - Dec 31|Dec 18 - Jan 16|Dec 19 - Dec 21|Dec 19 - Jan 1|Dec 19 - Jan 17|Dec 2 - Dec 15|Dec 2 - Dec 31|Dec 2 - Dec 4|Dec 20 - Dec 22|Dec 20 - Jan 18|Dec 20 - Jan 2|Dec 21 - Dec 21|Dec 21 - Dec 23|Dec 21 - Dec 27|Dec 21 - Jan 19|Dec 22 - Jan 20|Dec 22 - Mar 21|Dec 23 - Jan 21|Dec 23 - Jan 5|Dec 24 - Dec 26|Dec 24 - Jan 22|Dec 24 - Jan 6|Dec 25 - Dec 25|Dec 25 - Dec 27|Dec 27 - Dec 27|Dec 27 - Jan 2|Dec 27 - Jan 25|Dec 28 - Dec 30|Dec 28 - Jan 10|Dec 28 - Jan 3|Dec 29 - Dec 29|Dec 29 - Jan 27|Dec 3 - Dec 16|Dec 3 - Dec 5|Dec 3 - Mar 2|Dec 30 - Dec 30|Dec 30 - Jan 1|Dec 30 - Jan 28|Dec 30 - Mar 29|Dec 31 - Dec 31|Dec 31 - Jan 13|Dec 31 - Jan 6|Dec 4 - Dec 10|Dec 4 - Dec 17|Dec 4 - Dec 4|Dec 4 - Mar 3|Dec 5 - Dec 11|Dec 5 - Dec 5|Dec 5 - Dec 7|Dec 5 - Mar 4|Dec 6 - Dec 12|Dec 6 - Dec 8|Dec 6 - Jan 4|Dec 7 - Dec 13|Dec 7 - Dec 20|Dec 7 - Dec 9|Dec 8 - Dec 10|Dec 8 - Dec 8|Dec 8 - Jan 6|Dec 9 - Dec 11|Dec 9 - Dec 9|Dec 9 - Jan 7|Dec 9 - Mar 8|Feb 1 - Feb 14|Feb 1 - Feb 3|Feb 1 - Feb 7|Feb 1 - Mar 2|Feb 10 - Feb 10|Feb 10 - Feb 12|Feb 10 - Feb 16|Feb 10 - Feb 23|Feb 10 - Mar 11|Feb 11 - Feb 11|Feb 11 - Feb 24|Feb 11 - Mar 12|Feb 11 - May 11|Feb 12 - Feb 12|Feb 12 - Feb 14|Feb 12 - Feb 25|Feb 12 - Mar 13|Feb 12 - May 12|Feb 13 - Feb 15|Feb 13 - Feb 26|Feb 13 - Mar 14|Feb 13 - May 13|Feb 14 - Feb 16|Feb 14 - Feb 20|Feb 14 - Feb 27|Feb 14 - Mar 15|Feb 14 - May 14|Feb 15 - Feb 17|Feb 15 - Feb 21|Feb 15 - Feb 28|Feb 15 - Mar 16|Feb 15 - May 15|Feb 16 - Feb 18|Feb 16 - Feb 22|Feb 16 - Mar 1|Feb 17 - Feb 17|Feb 17 - Feb 19|Feb 17 - Mar 18|Feb 17 - Mar 2|Feb 18 - Feb 18|Feb 18 - Feb 20|Feb 18 - Feb 24|Feb 18 - Mar 19|Feb 18 - Mar 3|Feb 18 - May 18|Feb 19 - Feb 19|Feb 19 - Feb 21|Feb 19 - Feb 25|Feb 19 - Mar 20|Feb 19 - Mar 4|Feb 2 - Feb 2|Feb 2 - Feb 4|Feb 2 - Feb 8|Feb 2 - Mar 3|Feb 20 - Feb 22|Feb 20 - Feb 26|Feb 20 - Mar 5|Feb 21 - Feb 21|Feb 21 - Feb 23|Feb 21 - Feb 27|Feb 21 - Mar 22|Feb 21 - Mar 6|Feb 21 - May 21|Feb 22 - Feb 22|Feb 22 - Feb 24|Feb 22 - Feb 28|Feb 22 - Mar 23|Feb 22 - Mar 7|Feb 22 - May 22|Feb 23 - Feb 25|Feb 23 - Mar 1|Feb 23 - Mar 8|Feb 23 - May 23|Feb 24 - Feb 24|Feb 24 - Feb 26|Feb 24 - Mar 2|Feb 24 - Mar 25|Feb 24 - Mar 9|Feb 24 - May 24|Feb 25 - Feb 27|Feb 25 - Mar 10|Feb 25 - Mar 26|Feb 25 - Mar 3|Feb 26 - Feb 26|Feb 26 - Feb 28|Feb 26 - Mar 11|Feb 26 - Mar 27|Feb 26 - Mar 4|Feb 26 - May 26|Feb 27 - Feb 27|Feb 27 - Mar 1|Feb 27 - Mar 12|Feb 27 - Mar 5|Feb 27 - May 27|Feb 28 - Mar 13|Feb 28 - Mar 2|Feb 28 - Mar 29|Feb 28 - Mar 6|Feb 28 - May 28|Feb 3 - Feb 16|Feb 3 - Feb 5|Feb 3 - Feb 9|Feb 3 - Mar 4|Feb 3 - May 3|Feb 4 - Feb 10|Feb 4 - Feb 17|Feb 4 - Feb 4|Feb 4 - Feb 6|Feb 4 - Mar 5|Feb 4 - May 4|Feb 5 - Feb 11|Feb 5 - Feb 18|Feb 5 - Feb 5|Feb 5 - Feb 7|Feb 5 - Mar 6|Feb 5 - May 5|Feb 6 - Feb 12|Feb 6 - Feb 19|Feb 6 - Feb 6|Feb 6 - Feb 8|Feb 6 - Mar 7|Feb 7 - Feb 13|Feb 7 - Feb 7|Feb 7 - Feb 9|Feb 7 - Mar 8|Feb 7 - May 7|Feb 8 - Feb 10|Feb 8 - Feb 14|Feb 8 - Feb 21|Feb 8 - Feb 8|Feb 8 - Mar 9|Feb 8 - May 8|Feb 9 - Feb 11|Feb 9 - Feb 22|Feb 9 - Feb 9|Feb 9 - Mar 10|Feb 9 - May 9|Jan 1 - Dec 31|Jan 1 - Jan 3|Jan 1 - Jan 30|Jan 1 - Jan 7|Jan 1 - Mar 31|Jan 10 - Feb 8|Jan 10 - Jan 12|Jan 10 - Jan 23|Jan 11 - Feb 9|Jan 11 - Jan 13|Jan 11 - Jan 17|Jan 12 - Feb 10|Jan 12 - Jan 12|Jan 12 - Jan 14|Jan 12 - Jan 25|Jan 13 - Apr 12|Jan 13 - Jan 13|Jan 13 - Jan 15|Jan 13 - Jan 19|Jan 14 - Apr 13|Jan 14 - Jan 14|Jan 14 - Jan 20|Jan 14 - Jan 27|Jan 15 - Apr 14|Jan 15 - Feb 13|Jan 15 - Jan 17|Jan 15 - Jan 21|Jan 15 - Jan 28|Jan 16 - Jan 18|Jan 16 - Jan 22|Jan 16 - Jan 29|Jan 17 - Apr 16|Jan 17 - Feb 15|Jan 17 - Jan 17|Jan 17 - Jan 19|Jan 17 - Jan 30|Jan 18 - Apr 17|Jan 18 - Feb 16|Jan 18 - Jan 18|Jan 18 - Jan 20|Jan 18 - Jan 24|Jan 19 - Feb 1|Jan 19 - Feb 17|Jan 19 - Jan 21|Jan 19 - Jan 25|Jan 2 - Jan 4|Jan 2 - Jan 8|Jan 20 - Feb 18|Jan 20 - Feb 2|Jan 20 - Jan 22|Jan 20 - Jan 26|Jan 21 - Feb 19|Jan 21 - Jan 27|Jan 22 - Feb 20|Jan 22 - Feb 4|Jan 22 - Jan 24|Jan 22 - Jan 28|Jan 23 - Feb 21|Jan 23 - Jan 23|Jan 23 - Jan 25|Jan 24 - Apr 23|Jan 25 - Apr 24|Jan 25 - Feb 23|Jan 25 - Jan 25|Jan 25 - Jan 27|Jan 26 - Feb 1|Jan 26 - Feb 8|Jan 27 - Apr 26|Jan 27 - Feb 2|Jan 27 - Feb 25|Jan 27 - Feb 9|Jan 28 - Feb 10|Jan 28 - Feb 26|Jan 28 - Feb 3|Jan 28 - Jan 30|Jan 29 - Apr 28|Jan 29 - Feb 11|Jan 29 - Feb 27|Jan 29 - Jan 31|Jan 3 - Apr 2|Jan 3 - Feb 1|Jan 3 - Jan 16|Jan 3 - Jan 5|Jan 30 - Feb 28|Jan 30 - Feb 5|Jan 31 - Apr 30|Jan 31 - Feb 6|Jan 31 - Jan 31|Jan 31 - Mar 1|Jan 4 - Apr 3|Jan 4 - Feb 2|Jan 4 - Jan 6|Jan 5 - Jan 11|Jan 5 - Jan 7|Jan 6 - Apr 5|Jan 6 - Feb 4|Jan 6 - Jan 12|Jan 6 - Jan 19|Jan 6 - Jan 6|Jan 6 - Jan 8|Jan 7 - Feb 5|Jan 7 - Jan 13|Jan 7 - Jan 7|Jan 7 - Jan 9|Jan 8 - Feb 6|Jan 8 - Jan 10|Jan 8 - Jan 21|Jan 8 - Jan 8|Jan 9 - Apr 8|Jan 9 - Jan 11|Jan 9 - Jan 22|Jul 1 - Jul 1|Jul 1 - Jul 14|Jul 1 - Jul 3|Jul 1 - Jul 30|Jul 1 - Jul 7|Jul 1 - Sep 28|Jul 10 - Aug 8|Jul 10 - Jul 10|Jul 10 - Jul 12|Jul 10 - Jul 16|Jul 10 - Jul 23|Jul 10 - Oct 7|Jul 11 - Aug 9|Jul 11 - Jul 11|Jul 11 - Jul 13|Jul 11 - Jul 17|Jul 11 - Jul 24|Jul 11 - Oct 8|Jul 12 - Aug 10|Jul 12 - Jul 12|Jul 12 - Jul 14|Jul 12 - Jul 18|Jul 12 - Jul 25|Jul 12 - Oct 9|Jul 13 - Aug 11|Jul 13 - Jul 13|Jul 13 - Jul 15|Jul 13 - Jul 19|Jul 13 - Jul 26|Jul 13 - Oct 10|Jul 14 - Aug 12|Jul 14 - Jul 14|Jul 14 - Jul 16|Jul 14 - Jul 20|Jul 14 - Jul 27|Jul 14 - Oct 11|Jul 15 - Aug 13|Jul 15 - Jul 15|Jul 15 - Jul 17|Jul 15 - Jul 21|Jul 15 - Jul 28|Jul 15 - Oct 12|Jul 16 - Aug 14|Jul 16 - Jul 16|Jul 16 - Jul 18|Jul 16 - Jul 22|Jul 16 - Jul 29|Jul 16 - Oct 13|Jul 17 - Aug 15|Jul 17 - Jul 17|Jul 17 - Jul 19|Jul 17 - Jul 23|Jul 17 - Jul 30|Jul 17 - Oct 14|Jul 18 - Aug 16|Jul 18 - Jul 18|Jul 18 - Jul 20|Jul 18 - Jul 24|Jul 18 - Jul 31|Jul 18 - Oct 15|Jul 19 - Aug 1|Jul 19 - Aug 17|Jul 19 - Jul 19|Jul 19 - Jul 21|Jul 19 - Jul 25|Jul 19 - Oct 16|Jul 2 - Jul 15|Jul 2 - Jul 2|Jul 2 - Jul 31|Jul 2 - Jul 4|Jul 2 - Jul 8|Jul 2 - Sep 29|Jul 20 - Aug 18|Jul 20 - Aug 2|Jul 20 - Jul 20|Jul 20 - Jul 22|Jul 20 - Jul 26|Jul 20 - Oct 17|Jul 21 - Aug 19|Jul 21 - Aug 3|Jul 21 - Jul 21|Jul 21 - Jul 23|Jul 21 - Jul 27|Jul 21 - Oct 18|Jul 22 - Aug 20|Jul 22 - Aug 4|Jul 22 - Jul 22|Jul 22 - Jul 24|Jul 22 - Jul 28|Jul 22 - Oct 19|Jul 23 - Aug 21|Jul 23 - Aug 5|Jul 23 - Jul 23|Jul 23 - Jul 25|Jul 23 - Jul 29|Jul 23 - Oct 20|Jul 24 - Aug 22|Jul 24 - Aug 6|Jul 24 - Jul 24|Jul 24 - Jul 26|Jul 24 - Jul 30|Jul 24 - Oct 21|Jul 25 - Aug 23|Jul 25 - Aug 7|Jul 25 - Jul 25|Jul 25 - Jul 27|Jul 25 - Jul 31|Jul 25 - Oct 22|Jul 26 - Aug 1|Jul 26 - Aug 24|Jul 26 - Aug 8|Jul 26 - Jul 26|Jul 26 - Jul 28|Jul 26 - Oct 23|Jul 27 - Aug 2|Jul 27 - Aug 25|Jul 27 - Aug 9|Jul 27 - Jul 27|Jul 27 - Jul 29|Jul 27 - Oct 24|Jul 28 - Aug 10|Jul 28 - Aug 26|Jul 28 - Aug 3|Jul 28 - Jul 28|Jul 28 - Jul 30|Jul 28 - Oct 25|Jul 29 - Aug 11|Jul 29 - Aug 27|Jul 29 - Aug 4|Jul 29 - Jul 29|Jul 29 - Jul 31|Jul 29 - Oct 26|Jul 3 - Aug 1|Jul 3 - Jul 16|Jul 3 - Jul 3|Jul 3 - Jul 5|Jul 3 - Jul 9|Jul 3 - Sep 30|Jul 30 - Aug 1|Jul 30 - Aug 12|Jul 30 - Aug 28|Jul 30 - Aug 5|Jul 30 - Jul 30|Jul 30 - Oct 27|Jul 31 - Aug 13|Jul 31 - Aug 2|Jul 31 - Aug 29|Jul 31 - Aug 6|Jul 31 - Jul 31|Jul 31 - Oct 28|Jul 4 - Aug 2|Jul 4 - Jul 10|Jul 4 - Jul 17|Jul 4 - Jul 4|Jul 4 - Jul 6|Jul 4 - Oct 1|Jul 5 - Aug 3|Jul 5 - Jul 11|Jul 5 - Jul 18|Jul 5 - Jul 5|Jul 5 - Jul 7|Jul 5 - Oct 2|Jul 6 - Aug 4|Jul 6 - Jul 12|Jul 6 - Jul 19|Jul 6 - Jul 6|Jul 6 - Jul 8|Jul 6 - Oct 3|Jul 7 - Aug 5|Jul 7 - Jul 13|Jul 7 - Jul 20|Jul 7 - Jul 7|Jul 7 - Jul 9|Jul 7 - Oct 4|Jul 8 - Aug 6|Jul 8 - Jul 10|Jul 8 - Jul 14|Jul 8 - Jul 21|Jul 8 - Jul 8|Jul 8 - Oct 5|Jul 9 - Aug 7|Jul 9 - Jul 11|Jul 9 - Jul 15|Jul 9 - Jul 22|Jul 9 - Jul 9|Jul 9 - Oct 6|Jun 1 - Aug 29|Jun 1 - Jun 1|Jun 1 - Jun 14|Jun 1 - Jun 3|Jun 1 - Jun 30|Jun 1 - Jun 7|Jun 10 - Jul 9|Jun 10 - Jun 10|Jun 10 - Jun 12|Jun 10 - Jun 16|Jun 10 - Jun 23|Jun 10 - Sep 7|Jun 11 - Jul 10|Jun 11 - Jun 11|Jun 11 - Jun 13|Jun 11 - Jun 17|Jun 11 - Jun 24|Jun 11 - Sep 8|Jun 12 - Jul 11|Jun 12 - Jun 12|Jun 12 - Jun 14|Jun 12 - Jun 18|Jun 12 - Jun 25|Jun 12 - Sep 9|Jun 13 - Jul 12|Jun 13 - Jun 13|Jun 13 - Jun 15|Jun 13 - Jun 19|Jun 13 - Jun 26|Jun 13 - Sep 10|Jun 14 - Jul 13|Jun 14 - Jun 14|Jun 14 - Jun 16|Jun 14 - Jun 20|Jun 14 - Jun 27|Jun 14 - Sep 11|Jun 15 - Jul 14|Jun 15 - Jun 15|Jun 15 - Jun 17|Jun 15 - Jun 21|Jun 15 - Jun 28|Jun 15 - Sep 12|Jun 16 - Jul 15|Jun 16 - Jun 16|Jun 16 - Jun 18|Jun 16 - Jun 22|Jun 16 - Jun 29|Jun 16 - Sep 13|Jun 17 - Jul 16|Jun 17 - Jun 17|Jun 17 - Jun 19|Jun 17 - Jun 23|Jun 17 - Jun 30|Jun 17 - Sep 14|Jun 18 - Jul 1|Jun 18 - Jul 17|Jun 18 - Jun 18|Jun 18 - Jun 20|Jun 18 - Jun 24|Jun 18 - Sep 15|Jun 19 - Jul 18|Jun 19 - Jul 2|Jun 19 - Jun 19|Jun 19 - Jun 21|Jun 19 - Jun 25|Jun 19 - Sep 16|Jun 2 - Aug 30|Jun 2 - Jul 1|Jun 2 - Jun 15|Jun 2 - Jun 2|Jun 2 - Jun 4|Jun 2 - Jun 8|Jun 20 - Jul 19|Jun 20 - Jul 3|Jun 20 - Jun 20|Jun 20 - Jun 22|Jun 20 - Jun 26|Jun 20 - Sep 17|Jun 21 - Jul 20|Jun 21 - Jul 4|Jun 21 - Jun 21|Jun 21 - Jun 23|Jun 21 - Jun 27|Jun 21 - Sep 18|Jun 22 - Jul 21|Jun 22 - Jul 5|Jun 22 - Jun 22|Jun 22 - Jun 24|Jun 22 - Jun 28|Jun 22 - Sep 19|Jun 23 - Jul 22|Jun 23 - Jul 6|Jun 23 - Jun 23|Jun 23 - Jun 25|Jun 23 - Jun 29|Jun 23 - Sep 20|Jun 24 - Jul 23|Jun 24 - Jul 7|Jun 24 - Jun 24|Jun 24 - Jun 26|Jun 24 - Jun 30|Jun 24 - Sep 21|Jun 25 - Jul 1|Jun 25 - Jul 24|Jun 25 - Jul 8|Jun 25 - Jun 25|Jun 25 - Jun 27|Jun 25 - Sep 22|Jun 26 - Jul 2|Jun 26 - Jul 25|Jun 26 - Jul 9|Jun 26 - Jun 26|Jun 26 - Jun 28|Jun 26 - Sep 23|Jun 27 - Jul 10|Jun 27 - Jul 26|Jun 27 - Jul 3|Jun 27 - Jun 27|Jun 27 - Jun 29|Jun 27 - Sep 24|Jun 28 - Jul 11|Jun 28 - Jul 27|Jun 28 - Jul 4|Jun 28 - Jun 28|Jun 28 - Jun 30|Jun 28 - Sep 25|Jun 29 - Jul 1|Jun 29 - Jul 12|Jun 29 - Jul 28|Jun 29 - Jul 5|Jun 29 - Jun 29|Jun 29 - Sep 26|Jun 3 - Aug 31|Jun 3 - Jul 2|Jun 3 - Jun 16|Jun 3 - Jun 3|Jun 3 - Jun 5|Jun 3 - Jun 9|Jun 30 - Jul 13|Jun 30 - Jul 2|Jun 30 - Jul 29|Jun 30 - Jul 6|Jun 30 - Jun 30|Jun 30 - Sep 27|Jun 4 - Jul 3|Jun 4 - Jun 10|Jun 4 - Jun 17|Jun 4 - Jun 4|Jun 4 - Jun 6|Jun 4 - Sep 1|Jun 5 - Jul 4|Jun 5 - Jun 11|Jun 5 - Jun 18|Jun 5 - Jun 5|Jun 5 - Jun 7|Jun 5 - Sep 2|Jun 6 - Jul 5|Jun 6 - Jun 12|Jun 6 - Jun 19|Jun 6 - Jun 6|Jun 6 - Jun 8|Jun 6 - Sep 3|Jun 7 - Jul 6|Jun 7 - Jun 13|Jun 7 - Jun 20|Jun 7 - Jun 7|Jun 7 - Jun 9|Jun 7 - Sep 4|Jun 8 - Jul 7|Jun 8 - Jun 10|Jun 8 - Jun 14|Jun 8 - Jun 21|Jun 8 - Jun 8|Jun 8 - Sep 5|Jun 9 - Jul 8|Jun 9 - Jun 11|Jun 9 - Jun 15|Jun 9 - Jun 22|Jun 9 - Jun 9|Jun 9 - Sep 6|Mar 1 - Mar 1|Mar 1 - Mar 14|Mar 1 - Mar 3|Mar 1 - Mar 30|Mar 1 - Mar 7|Mar 1 - May 29|Mar 10 - Apr 8|Mar 10 - Jun 7|Mar 10 - Mar 10|Mar 10 - Mar 12|Mar 10 - Mar 16|Mar 10 - Mar 23|Mar 11 - Apr 9|Mar 11 - Jun 8|Mar 11 - Mar 13|Mar 11 - Mar 24|Mar 12 - Apr 10|Mar 12 - Jun 9|Mar 12 - Mar 12|Mar 12 - Mar 14|Mar 12 - Mar 18|Mar 12 - Mar 25|Mar 13 - Apr 11|Mar 13 - Mar 13|Mar 13 - Mar 15|Mar 13 - Mar 19|Mar 13 - Mar 26|Mar 14 - Mar 14|Mar 14 - Mar 16|Mar 14 - Mar 20|Mar 14 - Mar 27|Mar 15 - Apr 13|Mar 15 - Jun 12|Mar 15 - Mar 15|Mar 15 - Mar 17|Mar 15 - Mar 21|Mar 16 - Apr 14|Mar 16 - Jun 13|Mar 16 - Mar 16|Mar 16 - Mar 18|Mar 16 - Mar 22|Mar 16 - Mar 29|Mar 17 - Apr 15|Mar 17 - Jun 14|Mar 17 - Mar 17|Mar 17 - Mar 19|Mar 17 - Mar 23|Mar 17 - Mar 30|Mar 18 - Apr 16|Mar 18 - Jun 15|Mar 18 - Mar 20|Mar 18 - Mar 24|Mar 18 - Mar 31|Mar 19 - Apr 1|Mar 19 - Apr 17|Mar 19 - Jun 16|Mar 19 - Mar 21|Mar 19 - Mar 25|Mar 2 - Mar 15|Mar 2 - Mar 2|Mar 2 - Mar 31|Mar 2 - Mar 4|Mar 2 - Mar 8|Mar 2 - May 30|Mar 20 - Apr 18|Mar 20 - Mar 20|Mar 20 - Mar 22|Mar 20 - Mar 26|Mar 21 - Apr 19|Mar 21 - Jun 18|Mar 21 - Mar 21|Mar 21 - Mar 23|Mar 21 - Mar 27|Mar 22 - Apr 4|Mar 22 - Jun 19|Mar 22 - Mar 22|Mar 22 - Mar 28|Mar 23 - Apr 21|Mar 23 - Apr 5|Mar 23 - Jun 20|Mar 23 - Mar 23|Mar 23 - Mar 25|Mar 23 - Mar 29|Mar 24 - Apr 22|Mar 24 - Apr 6|Mar 24 - Mar 26|Mar 24 - Mar 30|Mar 25 - Apr 23|Mar 25 - Jun 22|Mar 25 - Mar 25|Mar 25 - Mar 27|Mar 25 - Mar 31|Mar 26 - Apr 1|Mar 26 - Apr 24|Mar 26 - Jun 23|Mar 26 - Mar 26|Mar 26 - Mar 28|Mar 27 - Apr 25|Mar 27 - Apr 9|Mar 27 - Mar 27|Mar 27 - Mar 29|Mar 28 - Apr 10|Mar 28 - Apr 26|Mar 28 - Apr 3|Mar 28 - Mar 28|Mar 28 - Mar 30|Mar 29 - Apr 11|Mar 29 - Apr 27|Mar 29 - Jun 26|Mar 29 - Mar 31|Mar 3 - Apr 1|Mar 3 - Mar 16|Mar 3 - Mar 3|Mar 3 - Mar 5|Mar 3 - Mar 9|Mar 3 - May 31|Mar 30 - Apr 1|Mar 30 - Apr 12|Mar 30 - Apr 28|Mar 30 - Apr 5|Mar 30 - Jun 27|Mar 30 - Mar 30|Mar 31 - Apr 13|Mar 31 - Apr 2|Mar 31 - Apr 29|Mar 31 - Apr 6|Mar 31 - Jun 28|Mar 31 - Mar 31|Mar 4 - Apr 2|Mar 4 - Jun 1|Mar 4 - Mar 10|Mar 4 - Mar 17|Mar 4 - Mar 6|Mar 5 - Apr 3|Mar 5 - Jun 2|Mar 5 - Mar 11|Mar 5 - Mar 18|Mar 5 - Mar 5|Mar 5 - Mar 7|Mar 6 - Apr 4|Mar 6 - Jun 3|Mar 6 - Mar 12|Mar 6 - Mar 19|Mar 6 - Mar 6|Mar 6 - Mar 8|Mar 7 - Apr 5|Mar 7 - Jun 4|Mar 7 - Mar 13|Mar 7 - Mar 20|Mar 7 - Mar 7|Mar 7 - Mar 9|Mar 8 - Apr 6|Mar 8 - Jun 5|Mar 8 - Mar 10|Mar 8 - Mar 14|Mar 8 - Mar 21|Mar 8 - Mar 8|Mar 9 - Apr 7|Mar 9 - Jun 6|Mar 9 - Mar 15|Mar 9 - Mar 22|May 1 - Jul 29|May 1 - May 1|May 1 - May 14|May 1 - May 3|May 1 - May 30|May 1 - May 7|May 10 - Aug 7|May 10 - Jun 8|May 10 - May 10|May 10 - May 12|May 10 - May 16|May 10 - May 23|May 11 - Aug 8|May 11 - Jun 9|May 11 - May 11|May 11 - May 13|May 11 - May 17|May 11 - May 24|May 12 - Aug 9|May 12 - Jun 10|May 12 - May 12|May 12 - May 14|May 12 - May 18|May 12 - May 25|May 13 - Aug 10|May 13 - Jun 11|May 13 - May 13|May 13 - May 15|May 13 - May 19|May 13 - May 26|May 14 - Aug 11|May 14 - Jun 12|May 14 - May 14|May 14 - May 16|May 14 - May 20|May 14 - May 27|May 15 - Aug 12|May 15 - Jun 13|May 15 - May 15|May 15 - May 17|May 15 - May 21|May 15 - May 28|May 16 - Aug 13|May 16 - Jun 14|May 16 - May 16|May 16 - May 18|May 16 - May 22|May 16 - May 29|May 17 - Aug 14|May 17 - Jun 15|May 17 - May 17|May 17 - May 19|May 17 - May 23|May 17 - May 30|May 18 - Aug 15|May 18 - Jun 16|May 18 - May 18|May 18 - May 20|May 18 - May 24|May 18 - May 31|May 19 - Aug 16|May 19 - Jun 1|May 19 - Jun 17|May 19 - May 19|May 19 - May 21|May 19 - May 25|May 2 - Jul 30|May 2 - May 15|May 2 - May 2|May 2 - May 31|May 2 - May 4|May 2 - May 8|May 20 - Aug 17|May 20 - Jun 18|May 20 - Jun 2|May 20 - May 20|May 20 - May 22|May 20 - May 26|May 21 - Aug 18|May 21 - Jun 19|May 21 - Jun 3|May 21 - May 21|May 21 - May 23|May 21 - May 27|May 22 - Aug 19|May 22 - Jun 20|May 22 - Jun 4|May 22 - May 22|May 22 - May 24|May 22 - May 28|May 23 - Aug 20|May 23 - Jun 21|May 23 - Jun 5|May 23 - May 23|May 23 - May 25|May 23 - May 29|May 24 - Aug 21|May 24 - Jun 22|May 24 - Jun 6|May 24 - May 24|May 24 - May 26|May 24 - May 30|May 25 - Aug 22|May 25 - Jun 23|May 25 - Jun 7|May 25 - May 25|May 25 - May 27|May 25 - May 31|May 26 - Aug 23|May 26 - Jun 1|May 26 - Jun 24|May 26 - Jun 8|May 26 - May 26|May 26 - May 28|May 27 - Aug 24|May 27 - Jun 2|May 27 - Jun 25|May 27 - Jun 9|May 27 - May 27|May 27 - May 29|May 28 - Aug 25|May 28 - Jun 10|May 28 - Jun 26|May 28 - Jun 3|May 28 - May 28|May 28 - May 30|May 29 - Aug 26|May 29 - Jun 11|May 29 - Jun 27|May 29 - Jun 4|May 29 - May 29|May 29 - May 31|May 3 - Jul 31|May 3 - Jun 1|May 3 - May 16|May 3 - May 3|May 3 - May 5|May 3 - May 9|May 30 - Aug 27|May 30 - Jun 1|May 30 - Jun 12|May 30 - Jun 28|May 30 - Jun 5|May 30 - May 30|May 31 - Aug 28|May 31 - Jun 13|May 31 - Jun 2|May 31 - Jun 29|May 31 - Jun 6|May 31 - May 31|May 4 - Aug 1|May 4 - Jun 2|May 4 - May 10|May 4 - May 17|May 4 - May 4|May 4 - May 6|May 5 - Aug 2|May 5 - Jun 3|May 5 - May 11|May 5 - May 18|May 5 - May 5|May 5 - May 7|May 6 - Aug 3|May 6 - Jun 4|May 6 - May 12|May 6 - May 19|May 6 - May 6|May 6 - May 8|May 7 - Aug 4|May 7 - Jun 5|May 7 - May 13|May 7 - May 20|May 7 - May 7|May 7 - May 9|May 8 - Aug 5|May 8 - Jun 6|May 8 - May 10|May 8 - May 14|May 8 - May 21|May 8 - May 8|May 9 - Aug 6|May 9 - Jun 7|May 9 - May 11|May 9 - May 15|May 9 - May 22|May 9 - May 9|Never|Nov 1 - Jan 29|Nov 1 - Nov 1|Nov 1 - Nov 14|Nov 1 - Nov 3|Nov 1 - Nov 30|Nov 1 - Nov 7|Nov 10 - Dec 9|Nov 10 - Feb 7|Nov 10 - Nov 10|Nov 10 - Nov 12|Nov 10 - Nov 16|Nov 10 - Nov 23|Nov 11 - Dec 10|Nov 11 - Feb 8|Nov 11 - Nov 11|Nov 11 - Nov 13|Nov 11 - Nov 17|Nov 11 - Nov 24|Nov 12 - Dec 11|Nov 12 - Feb 9|Nov 12 - Nov 12|Nov 12 - Nov 14|Nov 12 - Nov 18|Nov 12 - Nov 25|Nov 13 - Dec 12|Nov 13 - Feb 10|Nov 13 - Nov 13|Nov 13 - Nov 15|Nov 13 - Nov 19|Nov 13 - Nov 26|Nov 14 - Dec 13|Nov 14 - Feb 11|Nov 14 - Nov 14|Nov 14 - Nov 16|Nov 14 - Nov 20|Nov 14 - Nov 27|Nov 15 - Dec 14|Nov 15 - Feb 12|Nov 15 - Nov 15|Nov 15 - Nov 17|Nov 15 - Nov 21|Nov 15 - Nov 28|Nov 16 - Dec 15|Nov 16 - Feb 13|Nov 16 - Nov 16|Nov 16 - Nov 18|Nov 16 - Nov 22|Nov 16 - Nov 29|Nov 17 - Dec 16|Nov 17 - Feb 14|Nov 17 - Nov 17|Nov 17 - Nov 19|Nov 17 - Nov 23|Nov 17 - Nov 30|Nov 18 - Dec 1|Nov 18 - Dec 17|Nov 18 - Feb 15|Nov 18 - Nov 18|Nov 18 - Nov 20|Nov 18 - Nov 24|Nov 19 - Dec 18|Nov 19 - Dec 2|Nov 19 - Feb 16|Nov 19 - Nov 19|Nov 19 - Nov 21|Nov 19 - Nov 25|Nov 2 - Dec 1|Nov 2 - Jan 30|Nov 2 - Nov 15|Nov 2 - Nov 2|Nov 2 - Nov 4|Nov 2 - Nov 8|Nov 20 - Dec 19|Nov 20 - Dec 3|Nov 20 - Feb 17|Nov 20 - Nov 20|Nov 20 - Nov 22|Nov 20 - Nov 26|Nov 21 - Dec 20|Nov 21 - Dec 4|Nov 21 - Feb 18|Nov 21 - Nov 21|Nov 21 - Nov 23|Nov 21 - Nov 27|Nov 22 - Dec 21|Nov 22 - Dec 5|Nov 22 - Feb 19|Nov 22 - Nov 22|Nov 22 - Nov 24|Nov 22 - Nov 28|Nov 23 - Dec 22|Nov 23 - Dec 6|Nov 23 - Feb 20|Nov 23 - Nov 23|Nov 23 - Nov 25|Nov 23 - Nov 29|Nov 24 - Dec 23|Nov 24 - Dec 7|Nov 24 - Feb 21|Nov 24 - Nov 24|Nov 24 - Nov 26|Nov 24 - Nov 30|Nov 25 - Dec 1|Nov 25 - Dec 24|Nov 25 - Dec 8|Nov 25 - Feb 22|Nov 25 - Nov 25|Nov 25 - Nov 27|Nov 26 - Dec 2|Nov 26 - Dec 25|Nov 26 - Dec 9|Nov 26 - Feb 23|Nov 26 - Nov 26|Nov 26 - Nov 28|Nov 27 - Dec 10|Nov 27 - Dec 26|Nov 27 - Dec 3|Nov 27 - Feb 24|Nov 27 - Nov 27|Nov 27 - Nov 29|Nov 28 - Dec 11|Nov 28 - Dec 27|Nov 28 - Dec 4|Nov 28 - Feb 25|Nov 28 - Nov 28|Nov 28 - Nov 30|Nov 29 - Dec 1|Nov 29 - Dec 12|Nov 29 - Dec 28|Nov 29 - Dec 5|Nov 29 - Feb 26|Nov 29 - Nov 29|Nov 3 - Dec 2|Nov 3 - Jan 31|Nov 3 - Nov 16|Nov 3 - Nov 3|Nov 3 - Nov 5|Nov 3 - Nov 9|Nov 30 - Dec 13|Nov 30 - Dec 2|Nov 30 - Dec 29|Nov 30 - Dec 6|Nov 30 - Feb 27|Nov 30 - Nov 30|Nov 4 - Dec 3|Nov 4 - Feb 1|Nov 4 - Nov 10|Nov 4 - Nov 17|Nov 4 - Nov 4|Nov 4 - Nov 6|Nov 5 - Dec 4|Nov 5 - Feb 2|Nov 5 - Nov 18|Nov 5 - Nov 5|Nov 5 - Nov 7|Nov 6 - Dec 5|Nov 6 - Feb 3|Nov 6 - Nov 12|Nov 6 - Nov 19|Nov 6 - Nov 6|Nov 6 - Nov 8|Nov 7 - Dec 6|Nov 7 - Feb 4|Nov 7 - Nov 13|Nov 7 - Nov 20|Nov 7 - Nov 7|Nov 7 - Nov 9|Nov 8 - Dec 7|Nov 8 - Feb 5|Nov 8 - Nov 10|Nov 8 - Nov 14|Nov 8 - Nov 21|Nov 8 - Nov 8|Nov 9 - Dec 8|Nov 9 - Feb 6|Nov 9 - Nov 11|Nov 9 - Nov 15|Nov 9 - Nov 22|Nov 9 - Nov 9|Oct 1 - Dec 29|Oct 1 - Oct 1|Oct 1 - Oct 14|Oct 1 - Oct 3|Oct 1 - Oct 30|Oct 1 - Oct 7|Oct 10 - Jan 7|Oct 10 - Nov 8|Oct 10 - Oct 10|Oct 10 - Oct 12|Oct 10 - Oct 16|Oct 10 - Oct 23|Oct 11 - Jan 8|Oct 11 - Nov 9|Oct 11 - Oct 11|Oct 11 - Oct 13|Oct 11 - Oct 17|Oct 11 - Oct 24|Oct 12 - Jan 9|Oct 12 - Nov 10|Oct 12 - Oct 12|Oct 12 - Oct 14|Oct 12 - Oct 18|Oct 12 - Oct 25|Oct 13 - Jan 10|Oct 13 - Nov 11|Oct 13 - Oct 13|Oct 13 - Oct 15|Oct 13 - Oct 19|Oct 13 - Oct 26|Oct 14 - Jan 11|Oct 14 - Nov 12|Oct 14 - Oct 14|Oct 14 - Oct 16|Oct 14 - Oct 20|Oct 14 - Oct 27|Oct 15 - Jan 12|Oct 15 - Nov 13|Oct 15 - Oct 15|Oct 15 - Oct 17|Oct 15 - Oct 21|Oct 15 - Oct 28|Oct 16 - Jan 13|Oct 16 - Nov 14|Oct 16 - Oct 16|Oct 16 - Oct 18|Oct 16 - Oct 22|Oct 16 - Oct 29|Oct 17 - Jan 14|Oct 17 - Nov 15|Oct 17 - Oct 17|Oct 17 - Oct 19|Oct 17 - Oct 23|Oct 17 - Oct 30|Oct 18 - Jan 15|Oct 18 - Nov 16|Oct 18 - Oct 18|Oct 18 - Oct 20|Oct 18 - Oct 24|Oct 18 - Oct 31|Oct 19 - Jan 16|Oct 19 - Nov 1|Oct 19 - Nov 17|Oct 19 - Oct 19|Oct 19 - Oct 21|Oct 19 - Oct 25|Oct 2 - Dec 30|Oct 2 - Oct 15|Oct 2 - Oct 2|Oct 2 - Oct 31|Oct 2 - Oct 4|Oct 2 - Oct 8|Oct 20 - Jan 17|Oct 20 - Nov 18|Oct 20 - Nov 2|Oct 20 - Oct 20|Oct 20 - Oct 22|Oct 20 - Oct 26|Oct 21 - Jan 18|Oct 21 - Nov 19|Oct 21 - Nov 3|Oct 21 - Oct 21|Oct 21 - Oct 23|Oct 21 - Oct 27|Oct 22 - Jan 19|Oct 22 - Nov 20|Oct 22 - Nov 4|Oct 22 - Oct 22|Oct 22 - Oct 24|Oct 22 - Oct 28|Oct 23 - Jan 20|Oct 23 - Nov 21|Oct 23 - Nov 5|Oct 23 - Oct 23|Oct 23 - Oct 25|Oct 23 - Oct 29|Oct 24 - Jan 21|Oct 24 - Nov 22|Oct 24 - Nov 6|Oct 24 - Oct 24|Oct 24 - Oct 26|Oct 24 - Oct 30|Oct 25 - Jan 22|Oct 25 - Nov 23|Oct 25 - Nov 7|Oct 25 - Oct 25|Oct 25 - Oct 27|Oct 25 - Oct 31|Oct 26 - Jan 23|Oct 26 - Nov 1|Oct 26 - Nov 24|Oct 26 - Nov 8|Oct 26 - Oct 26|Oct 26 - Oct 28|Oct 27 - Jan 24|Oct 27 - Nov 2|Oct 27 - Nov 25|Oct 27 - Nov 9|Oct 27 - Oct 27|Oct 27 - Oct 29|Oct 28 - Jan 25|Oct 28 - Nov 10|Oct 28 - Nov 26|Oct 28 - Nov 3|Oct 28 - Oct 28|Oct 28 - Oct 30|Oct 29 - Jan 26|Oct 29 - Nov 11|Oct 29 - Nov 27|Oct 29 - Nov 4|Oct 29 - Oct 29|Oct 29 - Oct 31|Oct 3 - Dec 31|Oct 3 - Nov 1|Oct 3 - Oct 16|Oct 3 - Oct 3|Oct 3 - Oct 5|Oct 3 - Oct 9|Oct 30 - Jan 27|Oct 30 - Nov 1|Oct 30 - Nov 12|Oct 30 - Nov 28|Oct 30 - Nov 5|Oct 30 - Oct 30|Oct 31 - Jan 28|Oct 31 - Nov 13|Oct 31 - Nov 2|Oct 31 - Nov 29|Oct 31 - Nov 6|Oct 31 - Oct 31|Oct 4 - Jan 1|Oct 4 - Nov 2|Oct 4 - Oct 10|Oct 4 - Oct 17|Oct 4 - Oct 4|Oct 4 - Oct 6|Oct 5 - Jan 2|Oct 5 - Nov 3|Oct 5 - Oct 11|Oct 5 - Oct 18|Oct 5 - Oct 5|Oct 5 - Oct 7|Oct 6 - Jan 3|Oct 6 - Nov 4|Oct 6 - Oct 12|Oct 6 - Oct 19|Oct 6 - Oct 6|Oct 6 - Oct 8|Oct 7 - Jan 4|Oct 7 - Nov 5|Oct 7 - Oct 13|Oct 7 - Oct 20|Oct 7 - Oct 7|Oct 7 - Oct 9|Oct 8 - Jan 5|Oct 8 - Nov 6|Oct 8 - Oct 10|Oct 8 - Oct 14|Oct 8 - Oct 21|Oct 8 - Oct 8|Oct 9 - Jan 6|Oct 9 - Nov 7|Oct 9 - Oct 11|Oct 9 - Oct 15|Oct 9 - Oct 22|Oct 9 - Oct 9|Sep 1 - Nov 29|Sep 1 - Sep 1|Sep 1 - Sep 14|Sep 1 - Sep 3|Sep 1 - Sep 30|Sep 1 - Sep 7|Sep 10 - Dec 8|Sep 10 - Oct 9|Sep 10 - Sep 10|Sep 10 - Sep 12|Sep 10 - Sep 16|Sep 10 - Sep 23|Sep 11 - Dec 9|Sep 11 - Oct 10|Sep 11 - Sep 11|Sep 11 - Sep 13|Sep 11 - Sep 17|Sep 11 - Sep 24|Sep 12 - Dec 10|Sep 12 - Oct 11|Sep 12 - Sep 12|Sep 12 - Sep 14|Sep 12 - Sep 18|Sep 12 - Sep 25|Sep 13 - Dec 11|Sep 13 - Oct 12|Sep 13 - Sep 13|Sep 13 - Sep 15|Sep 13 - Sep 19|Sep 13 - Sep 26|Sep 14 - Dec 12|Sep 14 - Oct 13|Sep 14 - Sep 14|Sep 14 - Sep 16|Sep 14 - Sep 20|Sep 14 - Sep 27|Sep 15 - Dec 13|Sep 15 - Oct 14|Sep 15 - Sep 15|Sep 15 - Sep 17|Sep 15 - Sep 21|Sep 15 - Sep 28|Sep 16 - Dec 14|Sep 16 - Oct 15|Sep 16 - Sep 16|Sep 16 - Sep 18|Sep 16 - Sep 22|Sep 16 - Sep 29|Sep 17 - Dec 15|Sep 17 - Oct 16|Sep 17 - Sep 17|Sep 17 - Sep 19|Sep 17 - Sep 23|Sep 17 - Sep 30|Sep 18 - Dec 16|Sep 18 - Oct 1|Sep 18 - Oct 17|Sep 18 - Sep 18|Sep 18 - Sep 20|Sep 18 - Sep 24|Sep 19 - Dec 17|Sep 19 - Oct 18|Sep 19 - Oct 2|Sep 19 - Sep 19|Sep 19 - Sep 21|Sep 19 - Sep 25|Sep 2 - Nov 30|Sep 2 - Oct 1|Sep 2 - Sep 15|Sep 2 - Sep 2|Sep 2 - Sep 4|Sep 2 - Sep 8|Sep 20 - Dec 18|Sep 20 - Oct 19|Sep 20 - Oct 3|Sep 20 - Sep 20|Sep 20 - Sep 22|Sep 20 - Sep 26|Sep 21 - Dec 19|Sep 21 - Oct 20|Sep 21 - Oct 4|Sep 21 - Sep 21|Sep 21 - Sep 23|Sep 21 - Sep 27|Sep 22 - Dec 20|Sep 22 - Oct 21|Sep 22 - Oct 5|Sep 22 - Sep 22|Sep 22 - Sep 24|Sep 22 - Sep 28|Sep 23 - Dec 21|Sep 23 - Oct 22|Sep 23 - Oct 6|Sep 23 - Sep 23|Sep 23 - Sep 25|Sep 23 - Sep 29|Sep 24 - Dec 22|Sep 24 - Oct 23|Sep 24 - Oct 7|Sep 24 - Sep 24|Sep 24 - Sep 26|Sep 24 - Sep 30|Sep 25 - Dec 23|Sep 25 - Oct 1|Sep 25 - Oct 24|Sep 25 - Oct 8|Sep 25 - Sep 25|Sep 25 - Sep 27|Sep 26 - Dec 24|Sep 26 - Oct 2|Sep 26 - Oct 25|Sep 26 - Oct 9|Sep 26 - Sep 26|Sep 26 - Sep 28|Sep 27 - Dec 25|Sep 27 - Oct 10|Sep 27 - Oct 26|Sep 27 - Oct 3|Sep 27 - Sep 27|Sep 27 - Sep 29|Sep 28 - Dec 26|Sep 28 - Oct 11|Sep 28 - Oct 27|Sep 28 - Oct 4|Sep 28 - Sep 28|Sep 28 - Sep 30|Sep 29 - Dec 27|Sep 29 - Oct 1|Sep 29 - Oct 12|Sep 29 - Oct 28|Sep 29 - Oct 5|Sep 29 - Sep 29|Sep 3 - Dec 1|Sep 3 - Oct 2|Sep 3 - Sep 16|Sep 3 - Sep 3|Sep 3 - Sep 5|Sep 3 - Sep 9|Sep 30 - Dec 28|Sep 30 - Oct 13|Sep 30 - Oct 2|Sep 30 - Oct 29|Sep 30 - Oct 6|Sep 30 - Sep 30|Sep 4 - Dec 2|Sep 4 - Oct 3|Sep 4 - Sep 10|Sep 4 - Sep 17|Sep 4 - Sep 4|Sep 4 - Sep 6|Sep 5 - Dec 3|Sep 5 - Oct 4|Sep 5 - Sep 11|Sep 5 - Sep 18|Sep 5 - Sep 5|Sep 5 - Sep 7|Sep 6 - Dec 4|Sep 6 - Oct 5|Sep 6 - Sep 12|Sep 6 - Sep 19|Sep 6 - Sep 6|Sep 6 - Sep 8|Sep 7 - Dec 5|Sep 7 - Oct 6|Sep 7 - Sep 13|Sep 7 - Sep 20|Sep 7 - Sep 7|Sep 7 - Sep 9|Sep 8 - Dec 6|Sep 8 - Oct 7|Sep 8 - Sep 10|Sep 8 - Sep 14|Sep 8 - Sep 21|Sep 8 - Sep 8|Sep 9 - Dec 7|Sep 9 - Oct 8|Sep 9 - Sep 11|Sep 9 - Sep 15|Sep 9 - Sep 22|Sep 9 - Sep 9 -out.params.door_area..ft2 metadata_and_annual ft2 float n/a -out.params.duct_unconditioned_surface_area..ft2 metadata_and_annual ft2 float n/a -out.params.floor_area_attic..ft2 metadata_and_annual ft2 float n/a -out.params.floor_area_attic_insulation_increase..ft2_delta_r_value metadata_and_annual r_value float n/a -out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 metadata_and_annual ach_50 float n/a -out.params.floor_area_foundation..ft2 metadata_and_annual ft2 float n/a -out.params.floor_area_lighting..ft2 metadata_and_annual ft2 float n/a -out.params.flow_rate_mechanical_ventilation..cfm metadata_and_annual cfm float n/a -out.params.rim_joist_area_above_grade_exterior..ft2 metadata_and_annual ft2 float n/a -out.params.roof_area..ft2 metadata_and_annual ft2 float n/a -out.params.size_cooling_system_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a -out.params.size_heat_pump_backup_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a -out.params.size_heating_system_primary..kbtu_per_hr metadata_and_annual k_btu_h float n/a -out.params.size_heating_system_secondary..kbtu_per_hr metadata_and_annual k_btu_h float n/a -out.params.size_water_heater..gal metadata_and_annual gal float n/a -out.params.slab_perimeter_exposed_conditioned..ft metadata_and_annual ft float n/a -out.params.wall_area_above_grade_conditioned..ft2 metadata_and_annual ft2 float n/a -out.params.wall_area_above_grade_exterior..ft2 metadata_and_annual ft2 float n/a -out.params.wall_area_below_grade..ft2 metadata_and_annual ft2 float n/a -out.params.window_area..ft2 metadata_and_annual ft2 float n/a -out.params.hvac_geothermal_loop_borehole_trench_count metadata_and_annual n/a integer n/a -out.params.hvac_geothermal_loop_borehole_trench_length..ft metadata_and_annual ft float n/a -out.electricity.ceiling_fan.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.clothes_washer.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.cooling_fans_pumps.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.cooling.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.dishwasher.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.ev_charging.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.freezer.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.heating_fans_pumps.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.heating_hp_bkup.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.heating_hp_bkup_fa.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.heating.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.permanent_spa_pump.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.hot_water_solar_th.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_exterior.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_garage.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_interior.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.mech_vent.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.plug_loads.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.pool_heater.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.pool_pump.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.pv.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.refrigerator.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.television.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.well_pump.energy_consumption..kwh metadata_and_annual kwh float n/a -out.fuel_oil.heating.energy_consumption..kwh metadata_and_annual kwh float n/a -out.fuel_oil.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.fireplace.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.grill.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.heating.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.permanent_spa_heat.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.lighting.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.pool_heater.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a -out.propane.clothes_dryer.energy_consumption..kwh metadata_and_annual kwh float n/a -out.propane.heating.energy_consumption..kwh metadata_and_annual kwh float n/a -out.propane.hot_water.energy_consumption..kwh metadata_and_annual kwh float n/a -out.propane.range_oven.energy_consumption..kwh metadata_and_annual kwh float n/a -out.site_energy.net.energy_consumption..kwh metadata_and_annual kwh float n/a -out.site_energy.total.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.net.energy_consumption..kwh metadata_and_annual kwh float n/a -out.electricity.total.energy_consumption..kwh metadata_and_annual kwh float n/a -out.fuel_oil.total.energy_consumption..kwh metadata_and_annual kwh float n/a -out.natural_gas.total.energy_consumption..kwh metadata_and_annual kwh float n/a -out.propane.total.energy_consumption..kwh metadata_and_annual kwh float n/a -out.hot_water.clothes_washer..gal metadata_and_annual gal float n/a -out.hot_water.dishwasher..gal metadata_and_annual gal float n/a -out.hot_water.distribution_waste..gal metadata_and_annual gal float n/a -out.hot_water.fixtures..gal metadata_and_annual gal float n/a -out.capacity.cooling..btu_per_hr metadata_and_annual btu_h float n/a -out.capacity.heat_pump_backup..btu_per_hr metadata_and_annual btu_h float n/a -out.capacity.heating..btu_per_hr metadata_and_annual btu_h float n/a -out.load.cooling.energy_delivered..kbtu metadata_and_annual kbtu float n/a -out.load.heating.energy_delivered..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_delivered..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_solar_thermal..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_tank_losses..kbtu metadata_and_annual kbtu float n/a -out.load.cooling.peak..kbtu_per_hr metadata_and_annual kbtu_hr float n/a -out.load.heating.peak..kbtu_per_hr metadata_and_annual kbtu_hr float n/a -out.qoi.electricity.maximum_daily_peak_summer..kw metadata_and_annual kw float n/a -out.qoi.electricity.maximum_daily_peak_winter..kw metadata_and_annual kw float n/a -out.unmet_hours.cooling..hr metadata_and_annual hr float n/a -out.unmet_hours.ev_driving..hr metadata_and_annual hr float n/a -out.unmet_hours.heating..hr metadata_and_annual hr float n/a -out.emissions.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a -out.utility_bills.electricity_bill..usd metadata_and_annual usd float n/a -out.utility_bills.fuel_oil_bill..usd metadata_and_annual usd float n/a -out.utility_bills.natural_gas_bill..usd metadata_and_annual usd float n/a -out.utility_bills.propane_bill..usd metadata_and_annual usd float n/a -out.utility_bills.total_bill..usd metadata_and_annual usd float n/a -out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w metadata_and_annual w integer n/a -out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a -out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a -out.params.panel_load_clothes_dryer..w metadata_and_annual w integer n/a -out.params.panel_load_cooling..w metadata_and_annual w integer n/a -out.params.panel_load_dishwasher..w metadata_and_annual w integer n/a -out.params.panel_load_ev_charging..w metadata_and_annual w integer n/a -out.params.panel_load_heating..w metadata_and_annual w integer n/a -out.params.panel_load_hot_water..w metadata_and_annual w integer n/a -out.params.panel_load_mech_vent..w metadata_and_annual w integer n/a -out.params.panel_load_other..w metadata_and_annual w integer n/a -out.params.panel_load_permanent_spa_heat..w metadata_and_annual w integer n/a -out.params.panel_load_permanent_spa_pump..w metadata_and_annual w integer n/a -out.params.panel_load_pool_heater..w metadata_and_annual w integer n/a -out.params.panel_load_pool_pump..w metadata_and_annual w integer n/a -out.params.panel_load_range_oven..w metadata_and_annual w integer n/a -out.params.panel_load_.well_pump..w metadata_and_annual n/a integer n/a -in.electric_panel_breaker_space_total_count metadata_and_annual count integer 8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60 -out.params.panel_breaker_space_occupied_count metadata_and_annual count integer 8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|43 -out.params.panel_breaker_space_headroom_count metadata_and_annual count integer 0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42 -out.params.panel_breaker_space_clothes_dryer_count metadata_and_annual count integer 0|2 -out.params.panel_breaker_space_cooling_count metadata_and_annual count integer 0|2|3|4|5|6|7|8|10|12|13|14|15|16 -out.params.panel_breaker_space_dishwasher_count metadata_and_annual count integer 0|1 -out.params.panel_breaker_space_ev_charging_count metadata_and_annual count integer 0|1|2 -out.params.panel_breaker_space_heating_count metadata_and_annual count integer 0|1|2|3|4|5|6|8|10|12|14|16|18|20|22|24|26 -out.params.panel_breaker_space_hot_water_count metadata_and_annual count integer 0|2|4|6 -out.params.panel_breaker_space_mech_vent_count metadata_and_annual count integer 2 -out.params.panel_breaker_space_other_count metadata_and_annual count integer 6 -out.params.panel_breaker_space_permanent_spa_heat_count metadata_and_annual count integer 0|2 -out.params.panel_breaker_space_permanent_spa_pump_count metadata_and_annual count integer 0|2 -out.params.panel_breaker_space_pool_heater_count metadata_and_annual count integer 0|2|6 -out.params.panel_breaker_space_pool_pump_count metadata_and_annual count integer 0|2 -out.params.panel_breaker_space_range_oven_count metadata_and_annual count integer 0|2 -out.params.panel_breaker_space_well_pump_count metadata_and_annual count integer 0|2 -out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w metadata_and_annual w integer n/a -out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a metadata_and_annual amp integer n/a -out.params.panel_breaker_space_occupied_savings_count metadata_and_annual count integer 0|1|2|3|4|5|6|7|8|9|10|11|12|13|15|17|19|21|23|25 -out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based metadata_and_annual bool boolean False|True -out.params.panel_constraint_breaker_space metadata_and_annual bool boolean FALSE -out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based metadata_and_annual categorical string Capacity Constrained Only|No Constraint -out.energy_burden..percentage metadata_and_annual percentage float n/a -out.electricity.ceiling_fan.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.clothes_washer.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.cooling_fans_pumps.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.cooling.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.dishwasher.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.ev_charging.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.freezer.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.heating_fans_pumps.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.heating_hp_bkup.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.heating_hp_bkup_fa.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.heating.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.permanent_spa_pump.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.hot_water_solar_th.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_exterior.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_garage.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.lighting_interior.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.mech_vent.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.plug_loads.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.pool_heater.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.pool_pump.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.pv.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.refrigerator.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.television.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.well_pump.energy_savings..kwh metadata_and_annual kwh float n/a -out.fuel_oil.heating.energy_savings..kwh metadata_and_annual kwh float n/a -out.fuel_oil.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.fireplace.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.grill.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.heating.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.permanent_spa_heat.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.lighting.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.pool_heater.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a -out.propane.clothes_dryer.energy_savings..kwh metadata_and_annual kwh float n/a -out.propane.heating.energy_savings..kwh metadata_and_annual kwh float n/a -out.propane.hot_water.energy_savings..kwh metadata_and_annual kwh float n/a -out.propane.range_oven.energy_savings..kwh metadata_and_annual kwh float n/a -out.site_energy.net.energy_savings..kwh metadata_and_annual kwh float n/a -out.site_energy.total.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.net.energy_savings..kwh metadata_and_annual kwh float n/a -out.electricity.total.energy_savings..kwh metadata_and_annual kwh float n/a -out.fuel_oil.total.energy_savings..kwh metadata_and_annual kwh float n/a -out.natural_gas.total.energy_savings..kwh metadata_and_annual kwh float n/a -out.propane.total.energy_savings..kwh metadata_and_annual kwh float n/a -out.load.cooling.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a -out.load.heating.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_delivered_savings..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_solar_thermal_savings..kbtu metadata_and_annual kbtu float n/a -out.load.hot_water.energy_tank_losses_savings..kbtu metadata_and_annual kbtu float n/a -out.load.cooling.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr float n/a -out.load.heating.peak_savings..kbtu_per_hr metadata_and_annual kbtu_hr float n/a -out.qoi.electricity.maximum_daily_peak_savings_summer..kw metadata_and_annual kw float n/a -out.qoi.electricity.maximum_daily_peak_savings_winter..kw metadata_and_annual kw float n/a -out.unmet_hours_reduction.cooling..hr metadata_and_annual hour float n/a -out.unmet_hours_reduction.heating..hr metadata_and_annual hour float n/a -out.emissions.fuel_oil.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions.natural_gas.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions.propane.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions_reduction.fuel_oil.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions_reduction.natural_gas.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions_reduction.propane.total..co2e_kg metadata_and_annual n/a float n/a -out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a -out.emissions_reduction.total.aer_mid_case_avg..co2e_kg metadata_and_annual kg float n/a -out.utility_bills.electricity_bill_savings..usd metadata_and_annual usd float n/a -out.utility_bills.fuel_oil_bill_savings..usd metadata_and_annual usd float n/a -out.utility_bills.natural_gas_bill_savings..usd metadata_and_annual usd float n/a -out.utility_bills.propane_bill_savings..usd metadata_and_annual usd float n/a -out.utility_bills.total_bill_savings..usd metadata_and_annual usd float n/a -out.energy_burden_savings..percentage metadata_and_annual percentage float n/a -out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.pv.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.television.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.television.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.heating.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.heating.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.propane.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.site_energy.net.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -out.site_energy.total.energy_savings_intensity..kwh_per_ft2 metadata_and_annual kwh_per_ft2 float n/a -upgrade.electric_vehicle_charger metadata_and_annual n/a boolean None -upgrade.electric_vehicle_efficiency_increase metadata_and_annual n/a boolean None -upgrade.electric_vehicle_ownership metadata_and_annual n/a boolean None -upgrade.heating_fuel metadata_and_annual n/a string Natural Gas|None -upgrade.hvac_cooling_efficiency metadata_and_annual n/a string "AC, SEER 15|AC, SEER2 13.4|AC, SEER2 14.3|Ducted Heat Pump|Room AC, EER 12.0|None" -upgrade.hvac_cooling_partial_space_conditioning metadata_and_annual n/a boolean None -upgrade.hvac_heating_efficiency metadata_and_annual n/a string "ASHP, SEER2 14.3, 7.5 HSPF2|Electric Baseboard, 100% Efficiency|Electric Boiler, 100% AFUE|Electric Furnace, 100% AFUE|Electric Wall Furnace, 100% AFUE|Fuel Boiler, 80% AFUE|Fuel Boiler, 83% AFUE|Fuel Boiler, 90% AFUE|Fuel Furnace, 80% AFUE|Fuel Furnace, 83% AFUE|Fuel Furnace, 88% AFUE|Fuel Furnace, 92.5% AFUE|Fuel Furnace, 95% AFUE|Fuel Wall/Floor Furnace, 60% AFUE|Fuel Wall/Floor Furnace, 68% AFUE|None" -upgrade.hvac_heating_type_and_fuel metadata_and_annual n/a string Natural Gas Fuel Furnace|None -upgrade.infiltration_reduction metadata_and_annual n/a boolean None -upgrade.insulation_ceiling metadata_and_annual n/a boolean None -upgrade.water_heater_efficiency metadata_and_annual n/a boolean None -upgrade.water_heater_fuel metadata_and_annual n/a boolean None -upgrade.hvac_detailed_performance_data metadata_and_annual n/a boolean None -upgrade.demand_flexibility_electric_vehicle metadata_and_annual n/a boolean None -upgrade.demand_flexibility_hvac metadata_and_annual n/a boolean None -upgrade.demand_flexibility_random_shift metadata_and_annual n/a boolean None -upgrade.duct_leakage_and_insulation metadata_and_annual n/a boolean None -upgrade.infiltration metadata_and_annual n/a boolean None -upgrade.insulation_wall metadata_and_annual n/a boolean None -upgrade.windows metadata_and_annual n/a boolean None -calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.clothes_washer.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.cooling.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.dishwasher.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.ev_charging.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.freezer.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_garage.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_interior.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.mech_vent.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.net.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.plug_loads.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pool_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pv.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.refrigerator.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.television.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.well_pump.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.fireplace.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.grill.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.lighting.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.clothes_dryer.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.heating.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.hot_water.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.range_oven.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.site_energy.net.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.site_energy.total.energy_consumption..tbtu metadata_and_annual tbtu float n/a -calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions.propane.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.propane.total..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.electricity.ceiling_fan.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.clothes_washer.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.cooling.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.dishwasher.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.ev_charging.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.freezer.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_exterior.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_garage.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.lighting_interior.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.mech_vent.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.net.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.plug_loads.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pool_heater.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pool_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.pv.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.refrigerator.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.television.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.total.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.electricity.well_pump.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.fuel_oil.total.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.fireplace.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.grill.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.lighting.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.pool_heater.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.natural_gas.total.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.clothes_dryer.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.heating.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.hot_water.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.range_oven.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.propane.total.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.site_energy.net.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.site_energy.total.energy_savings..tbtu metadata_and_annual tbtu float n/a -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt metadata_and_annual co2e_mmt float n/a -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt metadata_and_annual co2e_mmt float n/a -models_used timeseries_aggregates n/a n/a n/a -units_represented timeseries_aggregates n/a n/a n/a -out.electricity.ceiling_fan.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.clothes_washer.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.cooling.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.cooling_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.dishwasher.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.ev_charging.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.freezer.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.heating_fans_pumps.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.heating_hp_bkup_fa.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.hot_water_solar_th.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.lighting_exterior.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.lighting_garage.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.lighting_interior.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.mech_vent.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.net.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.permanent_spa_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.plug_loads.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.pool_heater.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.pool_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.pv.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.refrigerator.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.television.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.total.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.electricity.well_pump.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.fuel_oil.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.fuel_oil.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.fuel_oil.total.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.fireplace.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.grill.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.heating_hp_bkup.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.lighting.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.permanent_spa_heat.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.pool_heater.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.natural_gas.total.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.propane.clothes_dryer.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.propane.heating.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.propane.hot_water.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.propane.range_oven.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.propane.total.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.site_energy.net.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.site_energy.total.energy_consumption..kwh timeseries_aggregates n/a float n/a -out.emissions.electricity.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.electricity.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.natural_gas.total..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.propane.total..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.fuel_oil.total..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.aer_highrecost_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.aer_lowrecost_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.aer_midcase_avg..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_highrecost_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_highrecost_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_lowrecost_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_lowrecost_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_midcase_15..co2e_kg timeseries_aggregates n/a float n/a -out.emissions.total.lrmer_midcase_25..co2e_kg timeseries_aggregates n/a float n/a -out.load.cooling.energy_delivered..kbtu timeseries_aggregates n/a float n/a -out.load.heating.energy_delivered..kbtu timeseries_aggregates n/a float n/a -out.load.heating_heat_pump_backup..kbtu timeseries_aggregates n/a float n/a -out.load.hot_water.energy_delivered..kbtu timeseries_aggregates n/a float n/a -out.load.hot_water_solar_thermal..kbtu timeseries_aggregates n/a float n/a -out.load.hot_water_tank_losses..kbtu timeseries_aggregates n/a float n/a +metadata_column enumeration +applicability False +applicability True +in.ahs_region CBSA Atlanta-Sandy Springs-Roswell, GA +in.ahs_region CBSA Boston-Cambridge-Newton, MA-NH +in.ahs_region CBSA Chicago-Naperville-Elgin, IL-IN-WI +in.ahs_region CBSA Dallas-Fort Worth-Arlington, TX +in.ahs_region CBSA Detroit-Warren-Dearborn, MI +in.ahs_region CBSA Houston-The Woodlands-Sugar Land, TX +in.ahs_region CBSA Los Angeles-Long Beach-Anaheim, CA +in.ahs_region CBSA Miami-Fort Lauderdale-West Palm Beach, FL +in.ahs_region CBSA New York-Newark-Jersey City, NY-NJ-PA +in.ahs_region CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD +in.ahs_region CBSA Phoenix-Mesa-Scottsdale, AZ +in.ahs_region CBSA Riverside-San Bernardino-Ontario, CA +in.ahs_region CBSA San Francisco-Oakland-Hayward, CA +in.ahs_region CBSA Seattle-Tacoma-Bellevue, WA +in.ahs_region CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV +in.ahs_region Non-CBSA East North Central +in.ahs_region Non-CBSA East South Central +in.ahs_region Non-CBSA Middle Atlantic +in.ahs_region Non-CBSA Mountain +in.ahs_region Non-CBSA New England +in.ahs_region Non-CBSA Pacific +in.ahs_region Non-CBSA South Atlantic +in.ahs_region Non-CBSA West North Central +in.ahs_region Non-CBSA West South Central +in.aiannh_area No +in.aiannh_area Yes +in.applicable True +in.area_median_income 0-30% +in.area_median_income 100-120% +in.area_median_income 120-150% +in.area_median_income 150%+ +in.area_median_income 30-60% +in.area_median_income 60-80% +in.area_median_income 80-100% +in.area_median_income Not Available +in.ashrae_iecc_climate_zone_2004 1A +in.ashrae_iecc_climate_zone_2004 2A +in.ashrae_iecc_climate_zone_2004 2B +in.ashrae_iecc_climate_zone_2004 3A +in.ashrae_iecc_climate_zone_2004 3B +in.ashrae_iecc_climate_zone_2004 3C +in.ashrae_iecc_climate_zone_2004 4A +in.ashrae_iecc_climate_zone_2004 4B +in.ashrae_iecc_climate_zone_2004 4C +in.ashrae_iecc_climate_zone_2004 5A +in.ashrae_iecc_climate_zone_2004 5B +in.ashrae_iecc_climate_zone_2004 6A +in.ashrae_iecc_climate_zone_2004 6B +in.ashrae_iecc_climate_zone_2004 7A +in.ashrae_iecc_climate_zone_2004 7AK +in.ashrae_iecc_climate_zone_2004 7B +in.ashrae_iecc_climate_zone_2004 8AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI +in.ashrae_iecc_climate_zone_2004_sub_cz_split 2A - FL, GA, AL, MS +in.ashrae_iecc_climate_zone_2004_sub_cz_split 2A - TX, LA +in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK +in.bathroom_spot_vent_hour Hour0 +in.bathroom_spot_vent_hour Hour1 +in.bathroom_spot_vent_hour Hour10 +in.bathroom_spot_vent_hour Hour11 +in.bathroom_spot_vent_hour Hour12 +in.bathroom_spot_vent_hour Hour13 +in.bathroom_spot_vent_hour Hour14 +in.bathroom_spot_vent_hour Hour15 +in.bathroom_spot_vent_hour Hour16 +in.bathroom_spot_vent_hour Hour17 +in.bathroom_spot_vent_hour Hour18 +in.bathroom_spot_vent_hour Hour19 +in.bathroom_spot_vent_hour Hour2 +in.bathroom_spot_vent_hour Hour20 +in.bathroom_spot_vent_hour Hour21 +in.bathroom_spot_vent_hour Hour22 +in.bathroom_spot_vent_hour Hour23 +in.bathroom_spot_vent_hour Hour3 +in.bathroom_spot_vent_hour Hour4 +in.bathroom_spot_vent_hour Hour5 +in.bathroom_spot_vent_hour Hour6 +in.bathroom_spot_vent_hour Hour7 +in.bathroom_spot_vent_hour Hour8 +in.bathroom_spot_vent_hour Hour9 +in.bedrooms 1 +in.bedrooms 2 +in.bedrooms 3 +in.bedrooms 4 +in.bedrooms 5 +in.building_america_climate_zone Cold +in.building_america_climate_zone Hot-Dry +in.building_america_climate_zone Hot-Humid +in.building_america_climate_zone Marine +in.building_america_climate_zone Mixed-Dry +in.building_america_climate_zone Mixed-Humid +in.building_america_climate_zone Subarctic +in.building_america_climate_zone Very Cold +in.buildstock_csv_path buildstock.csv +in.cec_climate_zone 1.0 +in.cec_climate_zone 2.0 +in.cec_climate_zone 3.0 +in.cec_climate_zone 4.0 +in.cec_climate_zone 5.0 +in.cec_climate_zone 6.0 +in.cec_climate_zone 7.0 +in.cec_climate_zone 8.0 +in.cec_climate_zone 9.0 +in.cec_climate_zone 10.0 +in.cec_climate_zone 11.0 +in.cec_climate_zone 12.0 +in.cec_climate_zone 13.0 +in.cec_climate_zone 14.0 +in.cec_climate_zone 15.0 +in.cec_climate_zone 16.0 +in.ceiling_fan Standard Efficiency +in.ceiling_fan Standard Efficiency, No usage +in.census_division East North Central +in.census_division East South Central +in.census_division Middle Atlantic +in.census_division Mountain +in.census_division New England +in.census_division Pacific +in.census_division South Atlantic +in.census_division West North Central +in.census_division West South Central +in.census_division_recs East North Central +in.census_division_recs East South Central +in.census_division_recs Middle Atlantic +in.census_division_recs Mountain North +in.census_division_recs Mountain South +in.census_division_recs New England +in.census_division_recs Pacific +in.census_division_recs South Atlantic +in.census_division_recs West North Central +in.census_division_recs West South Central +in.census_region Midwest +in.census_region Northeast +in.census_region South +in.census_region West +in.city AK, Anchorage +in.city AL, Auburn +in.city AL, Birmingham +in.city AL, Decatur +in.city AL, Dothan +in.city AL, Florence +in.city AL, Gadsden +in.city AL, Hoover +in.city AL, Huntsville +in.city AL, Madison +in.city AL, Mobile +in.city AL, Montgomery +in.city AL, Phenix City +in.city AL, Tuscaloosa +in.city AR, Bentonville +in.city AR, Conway +in.city AR, Fayetteville +in.city AR, Fort Smith +in.city AR, Hot Springs +in.city AR, Jonesboro +in.city AR, Little Rock +in.city AR, North Little Rock +in.city AR, Pine Bluff +in.city AR, Rogers +in.city AR, Springdale +in.city AZ, Apache Junction +in.city AZ, Avondale +in.city AZ, Buckeye +in.city AZ, Bullhead City +in.city AZ, Casa Grande +in.city AZ, Casas Adobes +in.city AZ, Catalina Foothills +in.city AZ, Chandler +in.city AZ, Flagstaff +in.city AZ, Fortuna Foothills +in.city AZ, Gilbert +in.city AZ, Glendale +in.city AZ, Goodyear +in.city AZ, Green Valley +in.city AZ, Lake Havasu City +in.city AZ, Marana +in.city AZ, Maricopa +in.city AZ, Mesa +in.city AZ, Oro Valley +in.city AZ, Peoria +in.city AZ, Phoenix +in.city AZ, Prescott +in.city AZ, Prescott Valley +in.city AZ, San Tan Valley +in.city AZ, Scottsdale +in.city AZ, Sierra Vista +in.city AZ, Sun City +in.city AZ, Sun City West +in.city AZ, Surprise +in.city AZ, Tempe +in.city AZ, Tucson +in.city AZ, Yuma +in.city CA, Alameda +in.city CA, Alhambra +in.city CA, Aliso Viejo +in.city CA, Altadena +in.city CA, Anaheim +in.city CA, Antioch +in.city CA, Apple Valley +in.city CA, Arcadia +in.city CA, Arden-Arcade +in.city CA, Bakersfield +in.city CA, Baldwin Park +in.city CA, Bellflower +in.city CA, Berkeley +in.city CA, Beverly Hills +in.city CA, Brea +in.city CA, Brentwood +in.city CA, Buena Park +in.city CA, Burbank +in.city CA, Camarillo +in.city CA, Campbell +in.city CA, Carlsbad +in.city CA, Carmichael +in.city CA, Carson +in.city CA, Castro Valley +in.city CA, Cathedral City +in.city CA, Cerritos +in.city CA, Chico +in.city CA, Chino +in.city CA, Chino Hills +in.city CA, Chula Vista +in.city CA, Citrus Heights +in.city CA, Clovis +in.city CA, Colton +in.city CA, Compton +in.city CA, Concord +in.city CA, Corona +in.city CA, Costa Mesa +in.city CA, Covina +in.city CA, Culver City +in.city CA, Cupertino +in.city CA, Cypress +in.city CA, Daly City +in.city CA, Dana Point +in.city CA, Danville +in.city CA, Davis +in.city CA, Diamond Bar +in.city CA, Downey +in.city CA, Dublin +in.city CA, East Los Angeles +in.city CA, El Cajon +in.city CA, El Dorado Hills +in.city CA, El Monte +in.city CA, Elk Grove +in.city CA, Encinitas +in.city CA, Escondido +in.city CA, Fairfield +in.city CA, Florence-Graham +in.city CA, Florin +in.city CA, Folsom +in.city CA, Fontana +in.city CA, Fountain Valley +in.city CA, Fremont +in.city CA, Fresno +in.city CA, Fullerton +in.city CA, Garden Grove +in.city CA, Gardena +in.city CA, Gilroy +in.city CA, Glendale +in.city CA, Glendora +in.city CA, Hacienda Heights +in.city CA, Hanford +in.city CA, Hawthorne +in.city CA, Hayward +in.city CA, Hemet +in.city CA, Hesperia +in.city CA, Highland +in.city CA, Huntington Beach +in.city CA, Huntington Park +in.city CA, Indio +in.city CA, Inglewood +in.city CA, Irvine +in.city CA, La Habra +in.city CA, La Mesa +in.city CA, La Quinta +in.city CA, Laguna Niguel +in.city CA, Lake Elsinore +in.city CA, Lake Forest +in.city CA, Lakewood +in.city CA, Lancaster +in.city CA, Lincoln +in.city CA, Livermore +in.city CA, Lodi +in.city CA, Long Beach +in.city CA, Los Angeles +in.city CA, Lynwood +in.city CA, Madera +in.city CA, Manhattan Beach +in.city CA, Manteca +in.city CA, Martinez +in.city CA, Menifee +in.city CA, Merced +in.city CA, Milpitas +in.city CA, Mission Viejo +in.city CA, Modesto +in.city CA, Montebello +in.city CA, Monterey Park +in.city CA, Moreno Valley +in.city CA, Mountain View +in.city CA, Murrieta +in.city CA, Napa +in.city CA, National City +in.city CA, Newport Beach +in.city CA, North Highlands +in.city CA, Norwalk +in.city CA, Novato +in.city CA, Oakland +in.city CA, Oceanside +in.city CA, Ontario +in.city CA, Orange +in.city CA, Oxnard +in.city CA, Palm Desert +in.city CA, Palm Springs +in.city CA, Palmdale +in.city CA, Palo Alto +in.city CA, Pasadena +in.city CA, Perris +in.city CA, Petaluma +in.city CA, Pico Rivera +in.city CA, Pittsburg +in.city CA, Placentia +in.city CA, Pleasanton +in.city CA, Pomona +in.city CA, Porterville +in.city CA, Poway +in.city CA, Rancho Cordova +in.city CA, Rancho Cucamonga +in.city CA, Rancho Palos Verdes +in.city CA, Rancho Santa Margarita +in.city CA, Redding +in.city CA, Redlands +in.city CA, Redondo Beach +in.city CA, Redwood City +in.city CA, Rialto +in.city CA, Richmond +in.city CA, Riverside +in.city CA, Rocklin +in.city CA, Rohnert Park +in.city CA, Rosemead +in.city CA, Roseville +in.city CA, Rowland Heights +in.city CA, Sacramento +in.city CA, Salinas +in.city CA, San Bernardino +in.city CA, San Bruno +in.city CA, San Buenaventura Ventura +in.city CA, San Clemente +in.city CA, San Diego +in.city CA, San Francisco +in.city CA, San Jose +in.city CA, San Leandro +in.city CA, San Luis Obispo +in.city CA, San Marcos +in.city CA, San Mateo +in.city CA, San Rafael +in.city CA, San Ramon +in.city CA, Santa Ana +in.city CA, Santa Barbara +in.city CA, Santa Clara +in.city CA, Santa Clarita +in.city CA, Santa Cruz +in.city CA, Santa Maria +in.city CA, Santa Monica +in.city CA, Santa Rosa +in.city CA, Santee +in.city CA, Simi Valley +in.city CA, South Gate +in.city CA, South Lake Tahoe +in.city CA, South San Francisco +in.city CA, South Whittier +in.city CA, Stockton +in.city CA, Sunnyvale +in.city CA, Temecula +in.city CA, Thousand Oaks +in.city CA, Torrance +in.city CA, Tracy +in.city CA, Tulare +in.city CA, Turlock +in.city CA, Tustin +in.city CA, Union City +in.city CA, Upland +in.city CA, Vacaville +in.city CA, Vallejo +in.city CA, Victorville +in.city CA, Visalia +in.city CA, Vista +in.city CA, Walnut Creek +in.city CA, West Covina +in.city CA, West Hollywood +in.city CA, West Sacramento +in.city CA, Westminster +in.city CA, Whittier +in.city CA, Woodland +in.city CA, Yorba Linda +in.city CA, Yuba City +in.city CA, Yucaipa +in.city CO, Arvada +in.city CO, Aurora +in.city CO, Boulder +in.city CO, Broomfield +in.city CO, Castle Rock +in.city CO, Centennial +in.city CO, Colorado Springs +in.city CO, Commerce City +in.city CO, Denver +in.city CO, Englewood +in.city CO, Fort Collins +in.city CO, Grand Junction +in.city CO, Greeley +in.city CO, Highlands Ranch +in.city CO, Lakewood +in.city CO, Littleton +in.city CO, Longmont +in.city CO, Loveland +in.city CO, Parker +in.city CO, Pueblo +in.city CO, Thornton +in.city CO, Westminster +in.city CT, Bridgeport +in.city CT, Bristol +in.city CT, Danbury +in.city CT, East Hartford +in.city CT, Hartford +in.city CT, Meriden +in.city CT, Middletown +in.city CT, Milford City Balance +in.city CT, New Britain +in.city CT, New Haven +in.city CT, Norwalk +in.city CT, Norwich +in.city CT, Shelton +in.city CT, Stamford +in.city CT, Stratford +in.city CT, Torrington +in.city CT, Waterbury +in.city CT, West Hartford +in.city CT, West Haven +in.city DC, Washington +in.city DE, Dover +in.city DE, Wilmington +in.city FL, Alafaya +in.city FL, Altamonte Springs +in.city FL, Apopka +in.city FL, Aventura +in.city FL, Boca Raton +in.city FL, Bonita Springs +in.city FL, Boynton Beach +in.city FL, Bradenton +in.city FL, Brandon +in.city FL, Cape Coral +in.city FL, Carrollwood +in.city FL, Clearwater +in.city FL, Coconut Creek +in.city FL, Coral Gables +in.city FL, Coral Springs +in.city FL, Country Club +in.city FL, Dania Beach +in.city FL, Davie +in.city FL, Daytona Beach +in.city FL, Deerfield Beach +in.city FL, Delray Beach +in.city FL, Deltona +in.city FL, Doral +in.city FL, Dunedin +in.city FL, East Lake +in.city FL, Estero +in.city FL, Fort Lauderdale +in.city FL, Fort Myers +in.city FL, Fort Pierce +in.city FL, Fountainebleau +in.city FL, Four Corners +in.city FL, Gainesville +in.city FL, Greenacres +in.city FL, Hallandale Beach +in.city FL, Hialeah +in.city FL, Hollywood +in.city FL, Homestead +in.city FL, Jacksonville +in.city FL, Jupiter +in.city FL, Kendale Lakes +in.city FL, Kendall +in.city FL, Kissimmee +in.city FL, Lake Worth +in.city FL, Lakeland +in.city FL, Largo +in.city FL, Lauderhill +in.city FL, Lehigh Acres +in.city FL, Marco Island +in.city FL, Margate +in.city FL, Melbourne +in.city FL, Merritt Island +in.city FL, Miami +in.city FL, Miami Beach +in.city FL, Miami Gardens +in.city FL, Miramar +in.city FL, Naples +in.city FL, New Smyrna Beach +in.city FL, North Fort Myers +in.city FL, North Miami +in.city FL, North Miami Beach +in.city FL, North Port +in.city FL, Oakland Park +in.city FL, Ocala +in.city FL, Orlando +in.city FL, Ormond Beach +in.city FL, Palm Bay +in.city FL, Palm Beach Gardens +in.city FL, Palm Coast +in.city FL, Palm Harbor +in.city FL, Panama City +in.city FL, Panama City Beach +in.city FL, Pembroke Pines +in.city FL, Pensacola +in.city FL, Pine Hills +in.city FL, Pinellas Park +in.city FL, Plantation +in.city FL, Poinciana +in.city FL, Pompano Beach +in.city FL, Port Charlotte +in.city FL, Port Orange +in.city FL, Port St Lucie +in.city FL, Riverview +in.city FL, Riviera Beach +in.city FL, Sanford +in.city FL, Sarasota +in.city FL, Spring Hill +in.city FL, St Cloud +in.city FL, St Petersburg +in.city FL, Sun City Center +in.city FL, Sunny Isles Beach +in.city FL, Sunrise +in.city FL, Tallahassee +in.city FL, Tamarac +in.city FL, Tamiami +in.city FL, Tampa +in.city FL, The Hammocks +in.city FL, The Villages +in.city FL, Titusville +in.city FL, Town N Country +in.city FL, University +in.city FL, Venice +in.city FL, Wellington +in.city FL, Wesley Chapel +in.city FL, West Palm Beach +in.city FL, Weston +in.city FL, Winter Haven +in.city GA, Albany +in.city GA, Alpharetta +in.city GA, Athens-Clarke County Unified Government Balance +in.city GA, Atlanta +in.city GA, Augusta-Richmond County Consolidated Government Balance +in.city GA, Columbus +in.city GA, Dunwoody +in.city GA, East Point +in.city GA, Hinesville +in.city GA, Johns Creek +in.city GA, Mableton +in.city GA, Macon +in.city GA, Marietta +in.city GA, Newnan +in.city GA, North Atlanta +in.city GA, Rome +in.city GA, Roswell +in.city GA, Sandy Springs +in.city GA, Savannah +in.city GA, Smyrna +in.city GA, Valdosta +in.city GA, Warner Robins +in.city HI, East Honolulu +in.city HI, Hilo +in.city HI, Kailua +in.city HI, Urban Honolulu +in.city IA, Ames +in.city IA, Ankeny +in.city IA, Cedar Falls +in.city IA, Cedar Rapids +in.city IA, Council Bluffs +in.city IA, Davenport +in.city IA, Des Moines +in.city IA, Dubuque +in.city IA, Iowa City +in.city IA, Marion +in.city IA, Sioux City +in.city IA, Urbandale +in.city IA, Waterloo +in.city IA, West Des Moines +in.city ID, Boise City +in.city ID, Caldwell +in.city ID, Coeur Dalene +in.city ID, Idaho Falls +in.city ID, Meridian +in.city ID, Nampa +in.city ID, Pocatello +in.city ID, Twin Falls +in.city IL, Arlington Heights +in.city IL, Aurora +in.city IL, Belleville +in.city IL, Berwyn +in.city IL, Bloomington +in.city IL, Bolingbrook +in.city IL, Buffalo Grove +in.city IL, Calumet City +in.city IL, Carol Stream +in.city IL, Champaign +in.city IL, Chicago +in.city IL, Cicero +in.city IL, Crystal Lake +in.city IL, Decatur +in.city IL, Dekalb +in.city IL, Des Plaines +in.city IL, Downers Grove +in.city IL, Elgin +in.city IL, Elmhurst +in.city IL, Evanston +in.city IL, Glenview +in.city IL, Hoffman Estates +in.city IL, Joliet +in.city IL, Lombard +in.city IL, Moline +in.city IL, Mount Prospect +in.city IL, Naperville +in.city IL, Normal +in.city IL, Oak Lawn +in.city IL, Oak Park +in.city IL, Orland Park +in.city IL, Palatine +in.city IL, Peoria +in.city IL, Quincy +in.city IL, Rock Island +in.city IL, Rockford +in.city IL, Schaumburg +in.city IL, Skokie +in.city IL, Springfield +in.city IL, Tinley Park +in.city IL, Urbana +in.city IL, Waukegan +in.city IL, Wheaton +in.city IL, Wheeling +in.city IN, Anderson +in.city IN, Bloomington +in.city IN, Carmel +in.city IN, Columbus +in.city IN, Elkhart +in.city IN, Evansville +in.city IN, Fishers +in.city IN, Fort Wayne +in.city IN, Gary +in.city IN, Greenwood +in.city IN, Hammond +in.city IN, Indianapolis City Balance +in.city IN, Jeffersonville +in.city IN, Kokomo +in.city IN, Lafayette +in.city IN, Lawrence +in.city IN, Mishawaka +in.city IN, Muncie +in.city IN, New Albany +in.city IN, Noblesville +in.city IN, Portage +in.city IN, Richmond +in.city IN, South Bend +in.city IN, Terre Haute +in.city In another census Place +in.city KS, Hutchinson +in.city KS, Kansas City +in.city KS, Lawrence +in.city KS, Lenexa +in.city KS, Manhattan +in.city KS, Olathe +in.city KS, Overland Park +in.city KS, Salina +in.city KS, Shawnee +in.city KS, Topeka +in.city KS, Wichita +in.city KY, Bowling Green +in.city KY, Covington +in.city KY, Lexington-Fayette +in.city KY, Louisville Jefferson County Metro Government Balance +in.city KY, Owensboro +in.city LA, Alexandria +in.city LA, Baton Rouge +in.city LA, Bossier City +in.city LA, Kenner +in.city LA, Lafayette +in.city LA, Lake Charles +in.city LA, Metairie +in.city LA, Monroe +in.city LA, New Orleans +in.city LA, Shreveport +in.city MA, Arlington +in.city MA, Attleboro +in.city MA, Barnstable Town +in.city MA, Beverly +in.city MA, Boston +in.city MA, Brockton +in.city MA, Brookline +in.city MA, Cambridge +in.city MA, Chicopee +in.city MA, Everett +in.city MA, Fall River +in.city MA, Fitchburg +in.city MA, Framingham +in.city MA, Haverhill +in.city MA, Holyoke +in.city MA, Lawrence +in.city MA, Leominster +in.city MA, Lowell +in.city MA, Lynn +in.city MA, Malden +in.city MA, Marlborough +in.city MA, Medford +in.city MA, Methuen Town +in.city MA, New Bedford +in.city MA, Newton +in.city MA, Peabody +in.city MA, Pittsfield +in.city MA, Quincy +in.city MA, Revere +in.city MA, Salem +in.city MA, Somerville +in.city MA, Springfield +in.city MA, Taunton +in.city MA, Waltham +in.city MA, Watertown Town +in.city MA, Westfield +in.city MA, Weymouth Town +in.city MA, Woburn +in.city MA, Worcester +in.city MD, Annapolis +in.city MD, Aspen Hill +in.city MD, Baltimore +in.city MD, Bel Air South +in.city MD, Bethesda +in.city MD, Bowie +in.city MD, Catonsville +in.city MD, Columbia +in.city MD, Dundalk +in.city MD, Ellicott City +in.city MD, Essex +in.city MD, Frederick +in.city MD, Gaithersburg +in.city MD, Germantown +in.city MD, Glen Burnie +in.city MD, Hagerstown +in.city MD, North Bethesda +in.city MD, Ocean City +in.city MD, Odenton +in.city MD, Potomac +in.city MD, Rockville +in.city MD, Severn +in.city MD, Silver Spring +in.city MD, Towson +in.city MD, Waldorf +in.city MD, Wheaton +in.city MD, Woodlawn +in.city ME, Bangor +in.city ME, Lewiston +in.city ME, Portland +in.city MI, Ann Arbor +in.city MI, Battle Creek +in.city MI, Bay City +in.city MI, Dearborn +in.city MI, Dearborn Heights +in.city MI, Detroit +in.city MI, Farmington Hills +in.city MI, Flint +in.city MI, Grand Rapids +in.city MI, Jackson +in.city MI, Kalamazoo +in.city MI, Kentwood +in.city MI, Lansing +in.city MI, Lincoln Park +in.city MI, Livonia +in.city MI, Midland +in.city MI, Muskegon +in.city MI, Novi +in.city MI, Pontiac +in.city MI, Portage +in.city MI, Rochester Hills +in.city MI, Roseville +in.city MI, Royal Oak +in.city MI, Saginaw +in.city MI, Southfield +in.city MI, St Clair Shores +in.city MI, Sterling Heights +in.city MI, Taylor +in.city MI, Troy +in.city MI, Warren +in.city MI, Westland +in.city MI, Wyoming +in.city MN, Apple Valley +in.city MN, Blaine +in.city MN, Bloomington +in.city MN, Brooklyn Park +in.city MN, Burnsville +in.city MN, Coon Rapids +in.city MN, Duluth +in.city MN, Eagan +in.city MN, Eden Prairie +in.city MN, Edina +in.city MN, Lakeville +in.city MN, Mankato +in.city MN, Maple Grove +in.city MN, Maplewood +in.city MN, Minneapolis +in.city MN, Minnetonka +in.city MN, Moorhead +in.city MN, Plymouth +in.city MN, Richfield +in.city MN, Rochester +in.city MN, Roseville +in.city MN, St Cloud +in.city MN, St Louis Park +in.city MN, St Paul +in.city MN, Woodbury +in.city MO, Blue Springs +in.city MO, Cape Girardeau +in.city MO, Chesterfield +in.city MO, Columbia +in.city MO, Florissant +in.city MO, Independence +in.city MO, Jefferson City +in.city MO, Joplin +in.city MO, Kansas City +in.city MO, Lees Summit +in.city MO, Ofallon +in.city MO, Springfield +in.city MO, St Charles +in.city MO, St Joseph +in.city MO, St Louis +in.city MO, St Peters +in.city MO, University City +in.city MS, Biloxi +in.city MS, Gulfport +in.city MS, Hattiesburg +in.city MS, Jackson +in.city MS, Meridian +in.city MS, Southaven +in.city MS, Tupelo +in.city MT, Billings +in.city MT, Bozeman +in.city MT, Butte-Silver Bow Balance +in.city MT, Great Falls +in.city MT, Missoula +in.city NC, Asheville +in.city NC, Burlington +in.city NC, Cary +in.city NC, Chapel Hill +in.city NC, Charlotte +in.city NC, Concord +in.city NC, Durham +in.city NC, Fayetteville +in.city NC, Gastonia +in.city NC, Goldsboro +in.city NC, Greensboro +in.city NC, Greenville +in.city NC, Hickory +in.city NC, High Point +in.city NC, Huntersville +in.city NC, Jacksonville +in.city NC, Kannapolis +in.city NC, Raleigh +in.city NC, Rocky Mount +in.city NC, Wilmington +in.city NC, Wilson +in.city NC, Winston-Salem +in.city ND, Bismarck +in.city ND, Fargo +in.city ND, Grand Forks +in.city ND, Minot +in.city NE, Bellevue +in.city NE, Grand Island +in.city NE, Lincoln +in.city NE, Omaha +in.city NH, Concord +in.city NH, Manchester +in.city NH, Nashua +in.city NJ, Atlantic City +in.city NJ, Bayonne +in.city NJ, Camden +in.city NJ, Clifton +in.city NJ, East Orange +in.city NJ, Elizabeth +in.city NJ, Fort Lee +in.city NJ, Hackensack +in.city NJ, Hoboken +in.city NJ, Jersey City +in.city NJ, Linden +in.city NJ, New Brunswick +in.city NJ, Newark +in.city NJ, Ocean City +in.city NJ, Passaic +in.city NJ, Paterson +in.city NJ, Perth Amboy +in.city NJ, Plainfield +in.city NJ, Sayreville +in.city NJ, Toms River +in.city NJ, Trenton +in.city NJ, Union City +in.city NJ, Vineland +in.city NJ, West New York +in.city NM, Albuquerque +in.city NM, Clovis +in.city NM, Farmington +in.city NM, Las Cruces +in.city NM, Rio Rancho +in.city NM, Roswell +in.city NM, Santa Fe +in.city NM, South Valley +in.city NV, Carson City +in.city NV, Enterprise +in.city NV, Henderson +in.city NV, Las Vegas +in.city NV, North Las Vegas +in.city NV, Pahrump +in.city NV, Paradise +in.city NV, Reno +in.city NV, Sparks +in.city NV, Spring Valley +in.city NV, Sunrise Manor +in.city NV, Whitney +in.city NY, Albany +in.city NY, Binghamton +in.city NY, Brighton +in.city NY, Buffalo +in.city NY, Cheektowaga +in.city NY, Coram +in.city NY, Hempstead +in.city NY, Irondequoit +in.city NY, Levittown +in.city NY, Long Beach +in.city NY, Mount Vernon +in.city NY, New Rochelle +in.city NY, New York +in.city NY, Niagara Falls +in.city NY, Rochester +in.city NY, Rome +in.city NY, Schenectady +in.city NY, Syracuse +in.city NY, Tonawanda +in.city NY, Troy +in.city NY, Utica +in.city NY, West Seneca +in.city NY, White Plains +in.city NY, Yonkers +in.city Not in a census Place +in.city OH, Akron +in.city OH, Beavercreek +in.city OH, Boardman +in.city OH, Canton +in.city OH, Cincinnati +in.city OH, Cleveland +in.city OH, Cleveland Heights +in.city OH, Columbus +in.city OH, Cuyahoga Falls +in.city OH, Dayton +in.city OH, Delaware +in.city OH, Dublin +in.city OH, Elyria +in.city OH, Euclid +in.city OH, Fairborn +in.city OH, Fairfield +in.city OH, Findlay +in.city OH, Grove City +in.city OH, Hamilton +in.city OH, Huber Heights +in.city OH, Kettering +in.city OH, Lakewood +in.city OH, Lancaster +in.city OH, Lima +in.city OH, Lorain +in.city OH, Mansfield +in.city OH, Marion +in.city OH, Mentor +in.city OH, Middletown +in.city OH, Newark +in.city OH, Parma +in.city OH, Springfield +in.city OH, Stow +in.city OH, Strongsville +in.city OH, Toledo +in.city OH, Warren +in.city OH, Youngstown +in.city OK, Bartlesville +in.city OK, Broken Arrow +in.city OK, Edmond +in.city OK, Enid +in.city OK, Lawton +in.city OK, Midwest City +in.city OK, Moore +in.city OK, Muskogee +in.city OK, Norman +in.city OK, Oklahoma City +in.city OK, Stillwater +in.city OK, Tulsa +in.city OR, Albany +in.city OR, Aloha +in.city OR, Beaverton +in.city OR, Bend +in.city OR, Corvallis +in.city OR, Eugene +in.city OR, Grants Pass +in.city OR, Gresham +in.city OR, Hillsboro +in.city OR, Lake Oswego +in.city OR, Medford +in.city OR, Portland +in.city OR, Salem +in.city OR, Springfield +in.city OR, Tigard +in.city PA, Allentown +in.city PA, Altoona +in.city PA, Bethlehem +in.city PA, Erie +in.city PA, Harrisburg +in.city PA, Lancaster +in.city PA, Levittown +in.city PA, Philadelphia +in.city PA, Pittsburgh +in.city PA, Reading +in.city PA, Scranton +in.city PA, Wilkes-Barre +in.city PA, York +in.city RI, Cranston +in.city RI, East Providence +in.city RI, Pawtucket +in.city RI, Providence +in.city RI, Warwick +in.city RI, Woonsocket +in.city SC, Charleston +in.city SC, Columbia +in.city SC, Florence +in.city SC, Goose Creek +in.city SC, Greenville +in.city SC, Hilton Head Island +in.city SC, Mount Pleasant +in.city SC, Myrtle Beach +in.city SC, North Charleston +in.city SC, North Myrtle Beach +in.city SC, Rock Hill +in.city SC, Spartanburg +in.city SC, Summerville +in.city SC, Sumter +in.city SD, Rapid City +in.city SD, Sioux Falls +in.city TN, Bartlett +in.city TN, Chattanooga +in.city TN, Clarksville +in.city TN, Cleveland +in.city TN, Collierville +in.city TN, Columbia +in.city TN, Franklin +in.city TN, Germantown +in.city TN, Hendersonville +in.city TN, Jackson +in.city TN, Johnson City +in.city TN, Kingsport +in.city TN, Knoxville +in.city TN, Memphis +in.city TN, Murfreesboro +in.city TN, Nashville-Davidson Metropolitan Government Balance +in.city TN, Smyrna +in.city TX, Abilene +in.city TX, Allen +in.city TX, Amarillo +in.city TX, Arlington +in.city TX, Atascocita +in.city TX, Austin +in.city TX, Baytown +in.city TX, Beaumont +in.city TX, Bedford +in.city TX, Brownsville +in.city TX, Bryan +in.city TX, Burleson +in.city TX, Carrollton +in.city TX, Cedar Hill +in.city TX, Cedar Park +in.city TX, College Station +in.city TX, Conroe +in.city TX, Coppell +in.city TX, Corpus Christi +in.city TX, Dallas +in.city TX, Denton +in.city TX, Desoto +in.city TX, Edinburg +in.city TX, El Paso +in.city TX, Euless +in.city TX, Flower Mound +in.city TX, Fort Worth +in.city TX, Frisco +in.city TX, Galveston +in.city TX, Garland +in.city TX, Georgetown +in.city TX, Grand Prairie +in.city TX, Grapevine +in.city TX, Haltom City +in.city TX, Harlingen +in.city TX, Houston +in.city TX, Hurst +in.city TX, Irving +in.city TX, Keller +in.city TX, Killeen +in.city TX, Laredo +in.city TX, League City +in.city TX, Lewisville +in.city TX, Longview +in.city TX, Lubbock +in.city TX, Lufkin +in.city TX, Mansfield +in.city TX, Mcallen +in.city TX, Mckinney +in.city TX, Mesquite +in.city TX, Midland +in.city TX, Mission +in.city TX, Missouri City +in.city TX, New Braunfels +in.city TX, North Richland Hills +in.city TX, Odessa +in.city TX, Pasadena +in.city TX, Pearland +in.city TX, Pflugerville +in.city TX, Pharr +in.city TX, Plano +in.city TX, Port Arthur +in.city TX, Richardson +in.city TX, Round Rock +in.city TX, Rowlett +in.city TX, San Angelo +in.city TX, San Antonio +in.city TX, San Marcos +in.city TX, Sherman +in.city TX, Spring +in.city TX, Sugar Land +in.city TX, Temple +in.city TX, Texarkana +in.city TX, Texas City +in.city TX, The Colony +in.city TX, The Woodlands +in.city TX, Tyler +in.city TX, Victoria +in.city TX, Waco +in.city TX, Wichita Falls +in.city TX, Wylie +in.city UT, Layton +in.city UT, Lehi +in.city UT, Logan +in.city UT, Millcreek +in.city UT, Murray +in.city UT, Ogden +in.city UT, Orem +in.city UT, Provo +in.city UT, Salt Lake City +in.city UT, Sandy +in.city UT, South Jordan +in.city UT, St George +in.city UT, Taylorsville +in.city UT, West Jordan +in.city UT, West Valley City +in.city VA, Alexandria +in.city VA, Arlington +in.city VA, Ashburn +in.city VA, Blacksburg +in.city VA, Centreville +in.city VA, Charlottesville +in.city VA, Chesapeake +in.city VA, Dale City +in.city VA, Danville +in.city VA, Hampton +in.city VA, Harrisonburg +in.city VA, Lake Ridge +in.city VA, Leesburg +in.city VA, Lynchburg +in.city VA, Mclean +in.city VA, Mechanicsville +in.city VA, Newport News +in.city VA, Norfolk +in.city VA, Petersburg +in.city VA, Portsmouth +in.city VA, Reston +in.city VA, Richmond +in.city VA, Roanoke +in.city VA, Suffolk +in.city VA, Tuckahoe +in.city VA, Virginia Beach +in.city VT, Burlington +in.city WA, Auburn +in.city WA, Bellevue +in.city WA, Bellingham +in.city WA, Bremerton +in.city WA, Edmonds +in.city WA, Everett +in.city WA, Federal Way +in.city WA, Kennewick +in.city WA, Kent +in.city WA, Kirkland +in.city WA, Lacey +in.city WA, Lakewood +in.city WA, Longview +in.city WA, Marysville +in.city WA, Olympia +in.city WA, Pasco +in.city WA, Puyallup +in.city WA, Redmond +in.city WA, Renton +in.city WA, Richland +in.city WA, Sammamish +in.city WA, Seattle +in.city WA, Shoreline +in.city WA, South Hill +in.city WA, Spokane +in.city WA, Spokane Valley +in.city WA, Tacoma +in.city WA, Vancouver +in.city WA, Yakima +in.city WI, Appleton +in.city WI, Beloit +in.city WI, Eau Claire +in.city WI, Fond Du Lac +in.city WI, Green Bay +in.city WI, Greenfield +in.city WI, Janesville +in.city WI, Kenosha +in.city WI, La Crosse +in.city WI, Madison +in.city WI, Manitowoc +in.city WI, Menomonee Falls +in.city WI, Milwaukee +in.city WI, New Berlin +in.city WI, Oshkosh +in.city WI, Racine +in.city WI, Sheboygan +in.city WI, Waukesha +in.city WI, Wausau +in.city WI, Wauwatosa +in.city WI, West Allis +in.city WV, Charleston +in.city WV, Huntington +in.city WV, Parkersburg +in.city WY, Casper +in.city WY, Cheyenne +in.clothes_dryer Electric +in.clothes_dryer Gas +in.clothes_dryer Propane +in.clothes_dryer_usage_level 100% Usage +in.clothes_dryer_usage_level 120% Usage +in.clothes_dryer_usage_level 80% Usage +in.clothes_washer EnergyStar +in.clothes_washer Standard +in.clothes_washer_presence Yes +in.clothes_washer_usage_level 100% Usage +in.clothes_washer_usage_level 120% Usage +in.clothes_washer_usage_level 80% Usage +in.cooking_range Electric Induction +in.cooking_range Electric Resistance +in.cooking_range Gas +in.cooking_range Propane +in.cooking_range_usage_level 100% Usage +in.cooking_range_usage_level 120% Usage +in.cooking_range_usage_level 80% Usage +in.cooling_setpoint 60F +in.cooling_setpoint 62F +in.cooling_setpoint 65F +in.cooling_setpoint 67F +in.cooling_setpoint 68F +in.cooling_setpoint 70F +in.cooling_setpoint 72F +in.cooling_setpoint 75F +in.cooling_setpoint 76F +in.cooling_setpoint 78F +in.cooling_setpoint 80F +in.cooling_setpoint_has_offset No +in.cooling_setpoint_has_offset Yes +in.cooling_setpoint_offset_magnitude 0F +in.cooling_setpoint_offset_magnitude 2F +in.cooling_setpoint_offset_magnitude 5F +in.cooling_setpoint_offset_magnitude 9F +in.cooling_setpoint_offset_period Day Setup +in.cooling_setpoint_offset_period Day Setup +1h +in.cooling_setpoint_offset_period Day Setup +2h +in.cooling_setpoint_offset_period Day Setup +3h +in.cooling_setpoint_offset_period Day Setup +4h +in.cooling_setpoint_offset_period Day Setup +5h +in.cooling_setpoint_offset_period Day Setup -1h +in.cooling_setpoint_offset_period Day Setup -2h +in.cooling_setpoint_offset_period Day Setup -3h +in.cooling_setpoint_offset_period Day Setup -4h +in.cooling_setpoint_offset_period Day Setup -5h +in.cooling_setpoint_offset_period Day Setup and Night Setback +in.cooling_setpoint_offset_period Day Setup and Night Setback +1h +in.cooling_setpoint_offset_period Day Setup and Night Setback +2h +in.cooling_setpoint_offset_period Day Setup and Night Setback +3h +in.cooling_setpoint_offset_period Day Setup and Night Setback +4h +in.cooling_setpoint_offset_period Day Setup and Night Setback +5h +in.cooling_setpoint_offset_period Day Setup and Night Setback -1h +in.cooling_setpoint_offset_period Day Setup and Night Setback -2h +in.cooling_setpoint_offset_period Day Setup and Night Setback -3h +in.cooling_setpoint_offset_period Day Setup and Night Setback -4h +in.cooling_setpoint_offset_period Day Setup and Night Setback -5h +in.cooling_setpoint_offset_period Day and Night Setup +in.cooling_setpoint_offset_period Day and Night Setup +1h +in.cooling_setpoint_offset_period Day and Night Setup +2h +in.cooling_setpoint_offset_period Day and Night Setup +3h +in.cooling_setpoint_offset_period Day and Night Setup +4h +in.cooling_setpoint_offset_period Day and Night Setup +5h +in.cooling_setpoint_offset_period Day and Night Setup -1h +in.cooling_setpoint_offset_period Day and Night Setup -2h +in.cooling_setpoint_offset_period Day and Night Setup -3h +in.cooling_setpoint_offset_period Day and Night Setup -4h +in.cooling_setpoint_offset_period Day and Night Setup -5h +in.cooling_setpoint_offset_period Night Setback +in.cooling_setpoint_offset_period Night Setback +1h +in.cooling_setpoint_offset_period Night Setback +2h +in.cooling_setpoint_offset_period Night Setback +3h +in.cooling_setpoint_offset_period Night Setback +4h +in.cooling_setpoint_offset_period Night Setback +5h +in.cooling_setpoint_offset_period Night Setback -1h +in.cooling_setpoint_offset_period Night Setback -2h +in.cooling_setpoint_offset_period Night Setback -3h +in.cooling_setpoint_offset_period Night Setback -4h +in.cooling_setpoint_offset_period Night Setback -5h +in.cooling_setpoint_offset_period Night Setup +in.cooling_setpoint_offset_period Night Setup +1h +in.cooling_setpoint_offset_period Night Setup +2h +in.cooling_setpoint_offset_period Night Setup +3h +in.cooling_setpoint_offset_period Night Setup +4h +in.cooling_setpoint_offset_period Night Setup +5h +in.cooling_setpoint_offset_period Night Setup -1h +in.cooling_setpoint_offset_period Night Setup -2h +in.cooling_setpoint_offset_period Night Setup -3h +in.cooling_setpoint_offset_period Night Setup -4h +in.cooling_setpoint_offset_period Night Setup -5h +in.cooling_unavailable_days 1 day +in.cooling_unavailable_days 1 month +in.cooling_unavailable_days 1 week +in.cooling_unavailable_days 2 weeks +in.cooling_unavailable_days 3 days +in.cooling_unavailable_days 3 months +in.cooling_unavailable_days Never +in.cooling_unavailable_days Year round +in.cooling_unavailable_period Jul 21 - Jul 21 +in.cooling_unavailable_period Never +in.corridor Double-Loaded Interior +in.corridor Not Applicable +in.county AK, Anchorage Municipality +in.county AK, Bethel Census Area +in.county AK, Fairbanks North Star Borough +in.county AK, Juneau City and Borough +in.county AK, Kenai Peninsula Borough +in.county AK, Ketchikan Gateway Borough +in.county AK, Kodiak Island Borough +in.county AK, Matanuska-Susitna Borough +in.county AK, Valdez-Cordova Census Area +in.county AL, Autauga County +in.county AL, Baldwin County +in.county AL, Barbour County +in.county AL, Bibb County +in.county AL, Blount County +in.county AL, Butler County +in.county AL, Calhoun County +in.county AL, Chambers County +in.county AL, Cherokee County +in.county AL, Chilton County +in.county AL, Choctaw County +in.county AL, Clarke County +in.county AL, Clay County +in.county AL, Cleburne County +in.county AL, Coffee County +in.county AL, Colbert County +in.county AL, Conecuh County +in.county AL, Covington County +in.county AL, Crenshaw County +in.county AL, Cullman County +in.county AL, Dale County +in.county AL, Dallas County +in.county AL, DeKalb County +in.county AL, Elmore County +in.county AL, Escambia County +in.county AL, Etowah County +in.county AL, Fayette County +in.county AL, Franklin County +in.county AL, Geneva County +in.county AL, Hale County +in.county AL, Henry County +in.county AL, Houston County +in.county AL, Jackson County +in.county AL, Jefferson County +in.county AL, Lamar County +in.county AL, Lauderdale County +in.county AL, Lawrence County +in.county AL, Lee County +in.county AL, Limestone County +in.county AL, Macon County +in.county AL, Madison County +in.county AL, Marengo County +in.county AL, Marion County +in.county AL, Marshall County +in.county AL, Mobile County +in.county AL, Monroe County +in.county AL, Montgomery County +in.county AL, Morgan County +in.county AL, Pickens County +in.county AL, Pike County +in.county AL, Randolph County +in.county AL, Russell County +in.county AL, Shelby County +in.county AL, St. Clair County +in.county AL, Sumter County +in.county AL, Talladega County +in.county AL, Tallapoosa County +in.county AL, Tuscaloosa County +in.county AL, Walker County +in.county AL, Washington County +in.county AL, Winston County +in.county AR, Ashley County +in.county AR, Baxter County +in.county AR, Benton County +in.county AR, Boone County +in.county AR, Carroll County +in.county AR, Clark County +in.county AR, Clay County +in.county AR, Cleburne County +in.county AR, Columbia County +in.county AR, Conway County +in.county AR, Craighead County +in.county AR, Crawford County +in.county AR, Crittenden County +in.county AR, Cross County +in.county AR, Drew County +in.county AR, Faulkner County +in.county AR, Franklin County +in.county AR, Fulton County +in.county AR, Garland County +in.county AR, Grant County +in.county AR, Greene County +in.county AR, Hempstead County +in.county AR, Hot Spring County +in.county AR, Independence County +in.county AR, Izard County +in.county AR, Jackson County +in.county AR, Jefferson County +in.county AR, Johnson County +in.county AR, Lawrence County +in.county AR, Logan County +in.county AR, Lonoke County +in.county AR, Madison County +in.county AR, Marion County +in.county AR, Miller County +in.county AR, Mississippi County +in.county AR, Ouachita County +in.county AR, Phillips County +in.county AR, Poinsett County +in.county AR, Polk County +in.county AR, Pope County +in.county AR, Pulaski County +in.county AR, Randolph County +in.county AR, Saline County +in.county AR, Sebastian County +in.county AR, Sevier County +in.county AR, Sharp County +in.county AR, St. Francis County +in.county AR, Stone County +in.county AR, Union County +in.county AR, Van Buren County +in.county AR, Washington County +in.county AR, White County +in.county AR, Yell County +in.county AZ, Apache County +in.county AZ, Cochise County +in.county AZ, Coconino County +in.county AZ, Gila County +in.county AZ, Graham County +in.county AZ, La Paz County +in.county AZ, Maricopa County +in.county AZ, Mohave County +in.county AZ, Navajo County +in.county AZ, Pima County +in.county AZ, Pinal County +in.county AZ, Santa Cruz County +in.county AZ, Yavapai County +in.county AZ, Yuma County +in.county CA, Alameda County +in.county CA, Amador County +in.county CA, Butte County +in.county CA, Calaveras County +in.county CA, Colusa County +in.county CA, Contra Costa County +in.county CA, Del Norte County +in.county CA, El Dorado County +in.county CA, Fresno County +in.county CA, Glenn County +in.county CA, Humboldt County +in.county CA, Imperial County +in.county CA, Inyo County +in.county CA, Kern County +in.county CA, Kings County +in.county CA, Lake County +in.county CA, Lassen County +in.county CA, Los Angeles County +in.county CA, Madera County +in.county CA, Marin County +in.county CA, Mariposa County +in.county CA, Mendocino County +in.county CA, Merced County +in.county CA, Mono County +in.county CA, Monterey County +in.county CA, Napa County +in.county CA, Nevada County +in.county CA, Orange County +in.county CA, Placer County +in.county CA, Plumas County +in.county CA, Riverside County +in.county CA, Sacramento County +in.county CA, San Benito County +in.county CA, San Bernardino County +in.county CA, San Diego County +in.county CA, San Francisco County +in.county CA, San Joaquin County +in.county CA, San Luis Obispo County +in.county CA, San Mateo County +in.county CA, Santa Barbara County +in.county CA, Santa Clara County +in.county CA, Santa Cruz County +in.county CA, Shasta County +in.county CA, Siskiyou County +in.county CA, Solano County +in.county CA, Sonoma County +in.county CA, Stanislaus County +in.county CA, Sutter County +in.county CA, Tehama County +in.county CA, Trinity County +in.county CA, Tulare County +in.county CA, Tuolumne County +in.county CA, Ventura County +in.county CA, Yolo County +in.county CA, Yuba County +in.county CO, Adams County +in.county CO, Alamosa County +in.county CO, Arapahoe County +in.county CO, Archuleta County +in.county CO, Boulder County +in.county CO, Broomfield County +in.county CO, Chaffee County +in.county CO, Delta County +in.county CO, Denver County +in.county CO, Douglas County +in.county CO, Eagle County +in.county CO, El Paso County +in.county CO, Elbert County +in.county CO, Fremont County +in.county CO, Garfield County +in.county CO, Grand County +in.county CO, Gunnison County +in.county CO, Jefferson County +in.county CO, La Plata County +in.county CO, Larimer County +in.county CO, Las Animas County +in.county CO, Logan County +in.county CO, Mesa County +in.county CO, Moffat County +in.county CO, Montezuma County +in.county CO, Montrose County +in.county CO, Morgan County +in.county CO, Otero County +in.county CO, Park County +in.county CO, Pitkin County +in.county CO, Pueblo County +in.county CO, Rio Grande County +in.county CO, Routt County +in.county CO, San Miguel County +in.county CO, Summit County +in.county CO, Teller County +in.county CO, Weld County +in.county CT, Fairfield County +in.county CT, Hartford County +in.county CT, Litchfield County +in.county CT, Middlesex County +in.county CT, New Haven County +in.county CT, New London County +in.county CT, Tolland County +in.county CT, Windham County +in.county DC, District of Columbia +in.county DE, Kent County +in.county DE, New Castle County +in.county DE, Sussex County +in.county FL, Alachua County +in.county FL, Baker County +in.county FL, Bay County +in.county FL, Bradford County +in.county FL, Brevard County +in.county FL, Broward County +in.county FL, Charlotte County +in.county FL, Citrus County +in.county FL, Clay County +in.county FL, Collier County +in.county FL, Columbia County +in.county FL, DeSoto County +in.county FL, Dixie County +in.county FL, Duval County +in.county FL, Escambia County +in.county FL, Flagler County +in.county FL, Franklin County +in.county FL, Gadsden County +in.county FL, Gilchrist County +in.county FL, Gulf County +in.county FL, Hardee County +in.county FL, Hendry County +in.county FL, Hernando County +in.county FL, Highlands County +in.county FL, Hillsborough County +in.county FL, Holmes County +in.county FL, Indian River County +in.county FL, Jackson County +in.county FL, Lake County +in.county FL, Lee County +in.county FL, Leon County +in.county FL, Levy County +in.county FL, Madison County +in.county FL, Manatee County +in.county FL, Marion County +in.county FL, Martin County +in.county FL, Miami-Dade County +in.county FL, Monroe County +in.county FL, Nassau County +in.county FL, Okaloosa County +in.county FL, Okeechobee County +in.county FL, Orange County +in.county FL, Osceola County +in.county FL, Palm Beach County +in.county FL, Pasco County +in.county FL, Pinellas County +in.county FL, Polk County +in.county FL, Putnam County +in.county FL, Santa Rosa County +in.county FL, Sarasota County +in.county FL, Seminole County +in.county FL, St. Johns County +in.county FL, St. Lucie County +in.county FL, Sumter County +in.county FL, Suwannee County +in.county FL, Taylor County +in.county FL, Volusia County +in.county FL, Wakulla County +in.county FL, Walton County +in.county FL, Washington County +in.county GA, Appling County +in.county GA, Baldwin County +in.county GA, Banks County +in.county GA, Barrow County +in.county GA, Bartow County +in.county GA, Ben Hill County +in.county GA, Berrien County +in.county GA, Bibb County +in.county GA, Brantley County +in.county GA, Brooks County +in.county GA, Bryan County +in.county GA, Bulloch County +in.county GA, Burke County +in.county GA, Butts County +in.county GA, Camden County +in.county GA, Carroll County +in.county GA, Catoosa County +in.county GA, Chatham County +in.county GA, Chattooga County +in.county GA, Cherokee County +in.county GA, Clarke County +in.county GA, Clayton County +in.county GA, Cobb County +in.county GA, Coffee County +in.county GA, Colquitt County +in.county GA, Columbia County +in.county GA, Cook County +in.county GA, Coweta County +in.county GA, Crisp County +in.county GA, Dade County +in.county GA, Dawson County +in.county GA, DeKalb County +in.county GA, Decatur County +in.county GA, Dodge County +in.county GA, Dougherty County +in.county GA, Douglas County +in.county GA, Effingham County +in.county GA, Elbert County +in.county GA, Emanuel County +in.county GA, Fannin County +in.county GA, Fayette County +in.county GA, Floyd County +in.county GA, Forsyth County +in.county GA, Franklin County +in.county GA, Fulton County +in.county GA, Gilmer County +in.county GA, Glynn County +in.county GA, Gordon County +in.county GA, Grady County +in.county GA, Greene County +in.county GA, Gwinnett County +in.county GA, Habersham County +in.county GA, Hall County +in.county GA, Haralson County +in.county GA, Harris County +in.county GA, Hart County +in.county GA, Henry County +in.county GA, Houston County +in.county GA, Jackson County +in.county GA, Jefferson County +in.county GA, Jones County +in.county GA, Lamar County +in.county GA, Laurens County +in.county GA, Lee County +in.county GA, Liberty County +in.county GA, Lowndes County +in.county GA, Lumpkin County +in.county GA, Madison County +in.county GA, McDuffie County +in.county GA, McIntosh County +in.county GA, Meriwether County +in.county GA, Mitchell County +in.county GA, Monroe County +in.county GA, Morgan County +in.county GA, Murray County +in.county GA, Muscogee County +in.county GA, Newton County +in.county GA, Oconee County +in.county GA, Paulding County +in.county GA, Peach County +in.county GA, Pickens County +in.county GA, Pierce County +in.county GA, Pike County +in.county GA, Polk County +in.county GA, Putnam County +in.county GA, Rabun County +in.county GA, Richmond County +in.county GA, Rockdale County +in.county GA, Screven County +in.county GA, Spalding County +in.county GA, Stephens County +in.county GA, Sumter County +in.county GA, Tattnall County +in.county GA, Telfair County +in.county GA, Thomas County +in.county GA, Tift County +in.county GA, Toombs County +in.county GA, Towns County +in.county GA, Troup County +in.county GA, Union County +in.county GA, Upson County +in.county GA, Walker County +in.county GA, Walton County +in.county GA, Ware County +in.county GA, Washington County +in.county GA, Wayne County +in.county GA, White County +in.county GA, Whitfield County +in.county GA, Worth County +in.county HI, Hawaii County +in.county HI, Honolulu County +in.county HI, Kauai County +in.county HI, Maui County +in.county IA, Allamakee County +in.county IA, Appanoose County +in.county IA, Benton County +in.county IA, Black Hawk County +in.county IA, Boone County +in.county IA, Bremer County +in.county IA, Buchanan County +in.county IA, Buena Vista County +in.county IA, Butler County +in.county IA, Carroll County +in.county IA, Cass County +in.county IA, Cedar County +in.county IA, Cerro Gordo County +in.county IA, Clay County +in.county IA, Clayton County +in.county IA, Clinton County +in.county IA, Crawford County +in.county IA, Dallas County +in.county IA, Delaware County +in.county IA, Des Moines County +in.county IA, Dickinson County +in.county IA, Dubuque County +in.county IA, Fayette County +in.county IA, Floyd County +in.county IA, Hamilton County +in.county IA, Hardin County +in.county IA, Harrison County +in.county IA, Henry County +in.county IA, Iowa County +in.county IA, Jackson County +in.county IA, Jasper County +in.county IA, Jefferson County +in.county IA, Johnson County +in.county IA, Jones County +in.county IA, Kossuth County +in.county IA, Lee County +in.county IA, Linn County +in.county IA, Madison County +in.county IA, Mahaska County +in.county IA, Marion County +in.county IA, Marshall County +in.county IA, Muscatine County +in.county IA, O'Brien County +in.county IA, Page County +in.county IA, Plymouth County +in.county IA, Polk County +in.county IA, Pottawattamie County +in.county IA, Poweshiek County +in.county IA, Scott County +in.county IA, Sioux County +in.county IA, Story County +in.county IA, Tama County +in.county IA, Wapello County +in.county IA, Warren County +in.county IA, Washington County +in.county IA, Webster County +in.county IA, Winneshiek County +in.county IA, Woodbury County +in.county ID, Ada County +in.county ID, Bannock County +in.county ID, Bingham County +in.county ID, Blaine County +in.county ID, Bonner County +in.county ID, Bonneville County +in.county ID, Canyon County +in.county ID, Cassia County +in.county ID, Elmore County +in.county ID, Fremont County +in.county ID, Gem County +in.county ID, Gooding County +in.county ID, Idaho County +in.county ID, Jefferson County +in.county ID, Jerome County +in.county ID, Kootenai County +in.county ID, Latah County +in.county ID, Madison County +in.county ID, Minidoka County +in.county ID, Nez Perce County +in.county ID, Payette County +in.county ID, Shoshone County +in.county ID, Teton County +in.county ID, Twin Falls County +in.county ID, Valley County +in.county IL, Adams County +in.county IL, Bond County +in.county IL, Boone County +in.county IL, Bureau County +in.county IL, Carroll County +in.county IL, Champaign County +in.county IL, Christian County +in.county IL, Clark County +in.county IL, Clinton County +in.county IL, Coles County +in.county IL, Cook County +in.county IL, Crawford County +in.county IL, De Witt County +in.county IL, DeKalb County +in.county IL, Douglas County +in.county IL, DuPage County +in.county IL, Edgar County +in.county IL, Effingham County +in.county IL, Fayette County +in.county IL, Franklin County +in.county IL, Fulton County +in.county IL, Grundy County +in.county IL, Hancock County +in.county IL, Henry County +in.county IL, Iroquois County +in.county IL, Jackson County +in.county IL, Jefferson County +in.county IL, Jersey County +in.county IL, Jo Daviess County +in.county IL, Kane County +in.county IL, Kankakee County +in.county IL, Kendall County +in.county IL, Knox County +in.county IL, LaSalle County +in.county IL, Lake County +in.county IL, Lee County +in.county IL, Livingston County +in.county IL, Logan County +in.county IL, Macon County +in.county IL, Macoupin County +in.county IL, Madison County +in.county IL, Marion County +in.county IL, Mason County +in.county IL, Massac County +in.county IL, McDonough County +in.county IL, McHenry County +in.county IL, McLean County +in.county IL, Mercer County +in.county IL, Monroe County +in.county IL, Montgomery County +in.county IL, Morgan County +in.county IL, Ogle County +in.county IL, Peoria County +in.county IL, Perry County +in.county IL, Piatt County +in.county IL, Pike County +in.county IL, Randolph County +in.county IL, Richland County +in.county IL, Rock Island County +in.county IL, Saline County +in.county IL, Sangamon County +in.county IL, Shelby County +in.county IL, St. Clair County +in.county IL, Stephenson County +in.county IL, Tazewell County +in.county IL, Union County +in.county IL, Vermilion County +in.county IL, Warren County +in.county IL, Washington County +in.county IL, Wayne County +in.county IL, White County +in.county IL, Whiteside County +in.county IL, Will County +in.county IL, Williamson County +in.county IL, Winnebago County +in.county IL, Woodford County +in.county IN, Adams County +in.county IN, Allen County +in.county IN, Bartholomew County +in.county IN, Boone County +in.county IN, Brown County +in.county IN, Carroll County +in.county IN, Cass County +in.county IN, Clark County +in.county IN, Clay County +in.county IN, Clinton County +in.county IN, Daviess County +in.county IN, DeKalb County +in.county IN, Dearborn County +in.county IN, Decatur County +in.county IN, Delaware County +in.county IN, Dubois County +in.county IN, Elkhart County +in.county IN, Fayette County +in.county IN, Floyd County +in.county IN, Fountain County +in.county IN, Franklin County +in.county IN, Fulton County +in.county IN, Gibson County +in.county IN, Grant County +in.county IN, Greene County +in.county IN, Hamilton County +in.county IN, Hancock County +in.county IN, Harrison County +in.county IN, Hendricks County +in.county IN, Henry County +in.county IN, Howard County +in.county IN, Huntington County +in.county IN, Jackson County +in.county IN, Jasper County +in.county IN, Jay County +in.county IN, Jefferson County +in.county IN, Jennings County +in.county IN, Johnson County +in.county IN, Knox County +in.county IN, Kosciusko County +in.county IN, LaGrange County +in.county IN, LaPorte County +in.county IN, Lake County +in.county IN, Lawrence County +in.county IN, Madison County +in.county IN, Marion County +in.county IN, Marshall County +in.county IN, Miami County +in.county IN, Monroe County +in.county IN, Montgomery County +in.county IN, Morgan County +in.county IN, Noble County +in.county IN, Orange County +in.county IN, Owen County +in.county IN, Parke County +in.county IN, Perry County +in.county IN, Porter County +in.county IN, Posey County +in.county IN, Putnam County +in.county IN, Randolph County +in.county IN, Ripley County +in.county IN, Rush County +in.county IN, Scott County +in.county IN, Shelby County +in.county IN, Spencer County +in.county IN, St. Joseph County +in.county IN, Starke County +in.county IN, Steuben County +in.county IN, Sullivan County +in.county IN, Tippecanoe County +in.county IN, Tipton County +in.county IN, Vanderburgh County +in.county IN, Vermillion County +in.county IN, Vigo County +in.county IN, Wabash County +in.county IN, Warrick County +in.county IN, Washington County +in.county IN, Wayne County +in.county IN, Wells County +in.county IN, White County +in.county IN, Whitley County +in.county KS, Atchison County +in.county KS, Barton County +in.county KS, Bourbon County +in.county KS, Butler County +in.county KS, Cherokee County +in.county KS, Cowley County +in.county KS, Crawford County +in.county KS, Dickinson County +in.county KS, Douglas County +in.county KS, Ellis County +in.county KS, Finney County +in.county KS, Ford County +in.county KS, Franklin County +in.county KS, Geary County +in.county KS, Harvey County +in.county KS, Jefferson County +in.county KS, Johnson County +in.county KS, Labette County +in.county KS, Leavenworth County +in.county KS, Lyon County +in.county KS, McPherson County +in.county KS, Miami County +in.county KS, Montgomery County +in.county KS, Neosho County +in.county KS, Osage County +in.county KS, Pottawatomie County +in.county KS, Reno County +in.county KS, Riley County +in.county KS, Saline County +in.county KS, Sedgwick County +in.county KS, Seward County +in.county KS, Shawnee County +in.county KS, Sumner County +in.county KS, Wyandotte County +in.county KY, Adair County +in.county KY, Allen County +in.county KY, Anderson County +in.county KY, Barren County +in.county KY, Bell County +in.county KY, Boone County +in.county KY, Bourbon County +in.county KY, Boyd County +in.county KY, Boyle County +in.county KY, Breckinridge County +in.county KY, Bullitt County +in.county KY, Calloway County +in.county KY, Campbell County +in.county KY, Carter County +in.county KY, Casey County +in.county KY, Christian County +in.county KY, Clark County +in.county KY, Clay County +in.county KY, Daviess County +in.county KY, Estill County +in.county KY, Fayette County +in.county KY, Fleming County +in.county KY, Floyd County +in.county KY, Franklin County +in.county KY, Garrard County +in.county KY, Grant County +in.county KY, Graves County +in.county KY, Grayson County +in.county KY, Greenup County +in.county KY, Hardin County +in.county KY, Harlan County +in.county KY, Harrison County +in.county KY, Hart County +in.county KY, Henderson County +in.county KY, Henry County +in.county KY, Hopkins County +in.county KY, Jefferson County +in.county KY, Jessamine County +in.county KY, Johnson County +in.county KY, Kenton County +in.county KY, Knott County +in.county KY, Knox County +in.county KY, Laurel County +in.county KY, Lawrence County +in.county KY, Letcher County +in.county KY, Lincoln County +in.county KY, Logan County +in.county KY, Madison County +in.county KY, Marion County +in.county KY, Marshall County +in.county KY, Mason County +in.county KY, McCracken County +in.county KY, McCreary County +in.county KY, Meade County +in.county KY, Mercer County +in.county KY, Montgomery County +in.county KY, Muhlenberg County +in.county KY, Nelson County +in.county KY, Ohio County +in.county KY, Oldham County +in.county KY, Perry County +in.county KY, Pike County +in.county KY, Pulaski County +in.county KY, Rockcastle County +in.county KY, Rowan County +in.county KY, Russell County +in.county KY, Scott County +in.county KY, Shelby County +in.county KY, Simpson County +in.county KY, Spencer County +in.county KY, Taylor County +in.county KY, Trigg County +in.county KY, Warren County +in.county KY, Wayne County +in.county KY, Whitley County +in.county KY, Woodford County +in.county LA, Acadia Parish +in.county LA, Allen Parish +in.county LA, Ascension Parish +in.county LA, Assumption Parish +in.county LA, Avoyelles Parish +in.county LA, Beauregard Parish +in.county LA, Bienville Parish +in.county LA, Bossier Parish +in.county LA, Caddo Parish +in.county LA, Calcasieu Parish +in.county LA, Claiborne Parish +in.county LA, Concordia Parish +in.county LA, De Soto Parish +in.county LA, East Baton Rouge Parish +in.county LA, East Feliciana Parish +in.county LA, Evangeline Parish +in.county LA, Franklin Parish +in.county LA, Grant Parish +in.county LA, Iberia Parish +in.county LA, Iberville Parish +in.county LA, Jackson Parish +in.county LA, Jefferson Davis Parish +in.county LA, Jefferson Parish +in.county LA, Lafayette Parish +in.county LA, Lafourche Parish +in.county LA, Lincoln Parish +in.county LA, Livingston Parish +in.county LA, Morehouse Parish +in.county LA, Natchitoches Parish +in.county LA, Orleans Parish +in.county LA, Ouachita Parish +in.county LA, Plaquemines Parish +in.county LA, Pointe Coupee Parish +in.county LA, Rapides Parish +in.county LA, Richland Parish +in.county LA, Sabine Parish +in.county LA, St. Bernard Parish +in.county LA, St. Charles Parish +in.county LA, St. James Parish +in.county LA, St. John the Baptist Parish +in.county LA, St. Landry Parish +in.county LA, St. Martin Parish +in.county LA, St. Mary Parish +in.county LA, St. Tammany Parish +in.county LA, Tangipahoa Parish +in.county LA, Terrebonne Parish +in.county LA, Union Parish +in.county LA, Vermilion Parish +in.county LA, Vernon Parish +in.county LA, Washington Parish +in.county LA, Webster Parish +in.county LA, West Baton Rouge Parish +in.county LA, Winn Parish +in.county MA, Barnstable County +in.county MA, Berkshire County +in.county MA, Bristol County +in.county MA, Dukes County +in.county MA, Essex County +in.county MA, Franklin County +in.county MA, Hampden County +in.county MA, Hampshire County +in.county MA, Middlesex County +in.county MA, Nantucket County +in.county MA, Norfolk County +in.county MA, Plymouth County +in.county MA, Suffolk County +in.county MA, Worcester County +in.county MD, Allegany County +in.county MD, Anne Arundel County +in.county MD, Baltimore County +in.county MD, Baltimore city +in.county MD, Calvert County +in.county MD, Caroline County +in.county MD, Carroll County +in.county MD, Cecil County +in.county MD, Charles County +in.county MD, Dorchester County +in.county MD, Frederick County +in.county MD, Garrett County +in.county MD, Harford County +in.county MD, Howard County +in.county MD, Kent County +in.county MD, Montgomery County +in.county MD, Prince George's County +in.county MD, Queen Anne's County +in.county MD, Somerset County +in.county MD, St. Mary's County +in.county MD, Talbot County +in.county MD, Washington County +in.county MD, Wicomico County +in.county MD, Worcester County +in.county ME, Androscoggin County +in.county ME, Aroostook County +in.county ME, Cumberland County +in.county ME, Franklin County +in.county ME, Hancock County +in.county ME, Kennebec County +in.county ME, Knox County +in.county ME, Lincoln County +in.county ME, Oxford County +in.county ME, Penobscot County +in.county ME, Piscataquis County +in.county ME, Sagadahoc County +in.county ME, Somerset County +in.county ME, Waldo County +in.county ME, Washington County +in.county ME, York County +in.county MI, Alcona County +in.county MI, Alger County +in.county MI, Allegan County +in.county MI, Alpena County +in.county MI, Antrim County +in.county MI, Arenac County +in.county MI, Barry County +in.county MI, Bay County +in.county MI, Benzie County +in.county MI, Berrien County +in.county MI, Branch County +in.county MI, Calhoun County +in.county MI, Cass County +in.county MI, Charlevoix County +in.county MI, Cheboygan County +in.county MI, Chippewa County +in.county MI, Clare County +in.county MI, Clinton County +in.county MI, Crawford County +in.county MI, Delta County +in.county MI, Dickinson County +in.county MI, Eaton County +in.county MI, Emmet County +in.county MI, Genesee County +in.county MI, Gladwin County +in.county MI, Gogebic County +in.county MI, Grand Traverse County +in.county MI, Gratiot County +in.county MI, Hillsdale County +in.county MI, Houghton County +in.county MI, Huron County +in.county MI, Ingham County +in.county MI, Ionia County +in.county MI, Iosco County +in.county MI, Iron County +in.county MI, Isabella County +in.county MI, Jackson County +in.county MI, Kalamazoo County +in.county MI, Kalkaska County +in.county MI, Kent County +in.county MI, Lake County +in.county MI, Lapeer County +in.county MI, Leelanau County +in.county MI, Lenawee County +in.county MI, Livingston County +in.county MI, Mackinac County +in.county MI, Macomb County +in.county MI, Manistee County +in.county MI, Marquette County +in.county MI, Mason County +in.county MI, Mecosta County +in.county MI, Menominee County +in.county MI, Midland County +in.county MI, Missaukee County +in.county MI, Monroe County +in.county MI, Montcalm County +in.county MI, Montmorency County +in.county MI, Muskegon County +in.county MI, Newaygo County +in.county MI, Oakland County +in.county MI, Oceana County +in.county MI, Ogemaw County +in.county MI, Osceola County +in.county MI, Oscoda County +in.county MI, Otsego County +in.county MI, Ottawa County +in.county MI, Presque Isle County +in.county MI, Roscommon County +in.county MI, Saginaw County +in.county MI, Sanilac County +in.county MI, Schoolcraft County +in.county MI, Shiawassee County +in.county MI, St. Clair County +in.county MI, St. Joseph County +in.county MI, Tuscola County +in.county MI, Van Buren County +in.county MI, Washtenaw County +in.county MI, Wayne County +in.county MI, Wexford County +in.county MN, Aitkin County +in.county MN, Anoka County +in.county MN, Becker County +in.county MN, Beltrami County +in.county MN, Benton County +in.county MN, Blue Earth County +in.county MN, Brown County +in.county MN, Carlton County +in.county MN, Carver County +in.county MN, Cass County +in.county MN, Chisago County +in.county MN, Clay County +in.county MN, Cook County +in.county MN, Crow Wing County +in.county MN, Dakota County +in.county MN, Dodge County +in.county MN, Douglas County +in.county MN, Faribault County +in.county MN, Fillmore County +in.county MN, Freeborn County +in.county MN, Goodhue County +in.county MN, Hennepin County +in.county MN, Houston County +in.county MN, Hubbard County +in.county MN, Isanti County +in.county MN, Itasca County +in.county MN, Kanabec County +in.county MN, Kandiyohi County +in.county MN, Koochiching County +in.county MN, Lake County +in.county MN, Le Sueur County +in.county MN, Lyon County +in.county MN, Martin County +in.county MN, McLeod County +in.county MN, Meeker County +in.county MN, Mille Lacs County +in.county MN, Morrison County +in.county MN, Mower County +in.county MN, Nicollet County +in.county MN, Nobles County +in.county MN, Olmsted County +in.county MN, Otter Tail County +in.county MN, Pennington County +in.county MN, Pine County +in.county MN, Polk County +in.county MN, Ramsey County +in.county MN, Redwood County +in.county MN, Renville County +in.county MN, Rice County +in.county MN, Roseau County +in.county MN, Scott County +in.county MN, Sherburne County +in.county MN, St. Louis County +in.county MN, Stearns County +in.county MN, Steele County +in.county MN, Todd County +in.county MN, Wabasha County +in.county MN, Wadena County +in.county MN, Waseca County +in.county MN, Washington County +in.county MN, Winona County +in.county MN, Wright County +in.county MO, Adair County +in.county MO, Andrew County +in.county MO, Audrain County +in.county MO, Barry County +in.county MO, Bates County +in.county MO, Benton County +in.county MO, Boone County +in.county MO, Buchanan County +in.county MO, Butler County +in.county MO, Callaway County +in.county MO, Camden County +in.county MO, Cape Girardeau County +in.county MO, Cass County +in.county MO, Cedar County +in.county MO, Christian County +in.county MO, Clay County +in.county MO, Clinton County +in.county MO, Cole County +in.county MO, Cooper County +in.county MO, Crawford County +in.county MO, Dallas County +in.county MO, Dent County +in.county MO, Dunklin County +in.county MO, Franklin County +in.county MO, Gasconade County +in.county MO, Greene County +in.county MO, Henry County +in.county MO, Hickory County +in.county MO, Howell County +in.county MO, Jackson County +in.county MO, Jasper County +in.county MO, Jefferson County +in.county MO, Johnson County +in.county MO, Laclede County +in.county MO, Lafayette County +in.county MO, Lawrence County +in.county MO, Lincoln County +in.county MO, Livingston County +in.county MO, Macon County +in.county MO, Marion County +in.county MO, McDonald County +in.county MO, Miller County +in.county MO, Morgan County +in.county MO, New Madrid County +in.county MO, Newton County +in.county MO, Nodaway County +in.county MO, Osage County +in.county MO, Pemiscot County +in.county MO, Perry County +in.county MO, Pettis County +in.county MO, Phelps County +in.county MO, Pike County +in.county MO, Platte County +in.county MO, Polk County +in.county MO, Pulaski County +in.county MO, Randolph County +in.county MO, Ray County +in.county MO, Ripley County +in.county MO, Saline County +in.county MO, Scott County +in.county MO, St. Charles County +in.county MO, St. Francois County +in.county MO, St. Louis County +in.county MO, St. Louis city +in.county MO, Ste. Genevieve County +in.county MO, Stoddard County +in.county MO, Stone County +in.county MO, Taney County +in.county MO, Texas County +in.county MO, Vernon County +in.county MO, Warren County +in.county MO, Washington County +in.county MO, Wayne County +in.county MO, Webster County +in.county MO, Wright County +in.county MS, Adams County +in.county MS, Alcorn County +in.county MS, Amite County +in.county MS, Attala County +in.county MS, Bolivar County +in.county MS, Calhoun County +in.county MS, Chickasaw County +in.county MS, Clarke County +in.county MS, Clay County +in.county MS, Coahoma County +in.county MS, Copiah County +in.county MS, Covington County +in.county MS, DeSoto County +in.county MS, Forrest County +in.county MS, George County +in.county MS, Grenada County +in.county MS, Hancock County +in.county MS, Harrison County +in.county MS, Hinds County +in.county MS, Holmes County +in.county MS, Itawamba County +in.county MS, Jackson County +in.county MS, Jasper County +in.county MS, Jones County +in.county MS, Lafayette County +in.county MS, Lamar County +in.county MS, Lauderdale County +in.county MS, Leake County +in.county MS, Lee County +in.county MS, Leflore County +in.county MS, Lincoln County +in.county MS, Lowndes County +in.county MS, Madison County +in.county MS, Marion County +in.county MS, Marshall County +in.county MS, Monroe County +in.county MS, Neshoba County +in.county MS, Newton County +in.county MS, Oktibbeha County +in.county MS, Panola County +in.county MS, Pearl River County +in.county MS, Pike County +in.county MS, Pontotoc County +in.county MS, Prentiss County +in.county MS, Rankin County +in.county MS, Scott County +in.county MS, Simpson County +in.county MS, Smith County +in.county MS, Stone County +in.county MS, Sunflower County +in.county MS, Tate County +in.county MS, Tippah County +in.county MS, Tishomingo County +in.county MS, Union County +in.county MS, Walthall County +in.county MS, Warren County +in.county MS, Washington County +in.county MS, Wayne County +in.county MS, Winston County +in.county MS, Yazoo County +in.county MT, Carbon County +in.county MT, Cascade County +in.county MT, Custer County +in.county MT, Fergus County +in.county MT, Flathead County +in.county MT, Gallatin County +in.county MT, Hill County +in.county MT, Lake County +in.county MT, Lewis and Clark County +in.county MT, Lincoln County +in.county MT, Madison County +in.county MT, Missoula County +in.county MT, Park County +in.county MT, Ravalli County +in.county MT, Sanders County +in.county MT, Silver Bow County +in.county MT, Yellowstone County +in.county NC, Alamance County +in.county NC, Alexander County +in.county NC, Alleghany County +in.county NC, Anson County +in.county NC, Ashe County +in.county NC, Avery County +in.county NC, Beaufort County +in.county NC, Bertie County +in.county NC, Bladen County +in.county NC, Brunswick County +in.county NC, Buncombe County +in.county NC, Burke County +in.county NC, Cabarrus County +in.county NC, Caldwell County +in.county NC, Carteret County +in.county NC, Caswell County +in.county NC, Catawba County +in.county NC, Chatham County +in.county NC, Cherokee County +in.county NC, Chowan County +in.county NC, Clay County +in.county NC, Cleveland County +in.county NC, Columbus County +in.county NC, Craven County +in.county NC, Cumberland County +in.county NC, Currituck County +in.county NC, Dare County +in.county NC, Davidson County +in.county NC, Davie County +in.county NC, Duplin County +in.county NC, Durham County +in.county NC, Edgecombe County +in.county NC, Forsyth County +in.county NC, Franklin County +in.county NC, Gaston County +in.county NC, Granville County +in.county NC, Greene County +in.county NC, Guilford County +in.county NC, Halifax County +in.county NC, Harnett County +in.county NC, Haywood County +in.county NC, Henderson County +in.county NC, Hertford County +in.county NC, Hoke County +in.county NC, Iredell County +in.county NC, Jackson County +in.county NC, Johnston County +in.county NC, Lee County +in.county NC, Lenoir County +in.county NC, Lincoln County +in.county NC, Macon County +in.county NC, Madison County +in.county NC, Martin County +in.county NC, McDowell County +in.county NC, Mecklenburg County +in.county NC, Mitchell County +in.county NC, Montgomery County +in.county NC, Moore County +in.county NC, Nash County +in.county NC, New Hanover County +in.county NC, Northampton County +in.county NC, Onslow County +in.county NC, Orange County +in.county NC, Pamlico County +in.county NC, Pasquotank County +in.county NC, Pender County +in.county NC, Perquimans County +in.county NC, Person County +in.county NC, Pitt County +in.county NC, Polk County +in.county NC, Randolph County +in.county NC, Richmond County +in.county NC, Robeson County +in.county NC, Rockingham County +in.county NC, Rowan County +in.county NC, Rutherford County +in.county NC, Sampson County +in.county NC, Scotland County +in.county NC, Stanly County +in.county NC, Stokes County +in.county NC, Surry County +in.county NC, Swain County +in.county NC, Transylvania County +in.county NC, Union County +in.county NC, Vance County +in.county NC, Wake County +in.county NC, Warren County +in.county NC, Watauga County +in.county NC, Wayne County +in.county NC, Wilkes County +in.county NC, Wilson County +in.county NC, Yadkin County +in.county NC, Yancey County +in.county ND, Barnes County +in.county ND, Burleigh County +in.county ND, Cass County +in.county ND, Grand Forks County +in.county ND, McLean County +in.county ND, Morton County +in.county ND, Ramsey County +in.county ND, Richland County +in.county ND, Stark County +in.county ND, Stutsman County +in.county ND, Ward County +in.county ND, Williams County +in.county NE, Adams County +in.county NE, Buffalo County +in.county NE, Cass County +in.county NE, Dakota County +in.county NE, Dawson County +in.county NE, Dodge County +in.county NE, Douglas County +in.county NE, Gage County +in.county NE, Hall County +in.county NE, Lancaster County +in.county NE, Lincoln County +in.county NE, Madison County +in.county NE, Otoe County +in.county NE, Platte County +in.county NE, Sarpy County +in.county NE, Saunders County +in.county NE, Scotts Bluff County +in.county NE, Seward County +in.county NE, Washington County +in.county NH, Belknap County +in.county NH, Carroll County +in.county NH, Cheshire County +in.county NH, Coos County +in.county NH, Grafton County +in.county NH, Hillsborough County +in.county NH, Merrimack County +in.county NH, Rockingham County +in.county NH, Strafford County +in.county NH, Sullivan County +in.county NJ, Atlantic County +in.county NJ, Bergen County +in.county NJ, Burlington County +in.county NJ, Camden County +in.county NJ, Cape May County +in.county NJ, Cumberland County +in.county NJ, Essex County +in.county NJ, Gloucester County +in.county NJ, Hudson County +in.county NJ, Hunterdon County +in.county NJ, Mercer County +in.county NJ, Middlesex County +in.county NJ, Monmouth County +in.county NJ, Morris County +in.county NJ, Ocean County +in.county NJ, Passaic County +in.county NJ, Salem County +in.county NJ, Somerset County +in.county NJ, Sussex County +in.county NJ, Union County +in.county NJ, Warren County +in.county NM, Bernalillo County +in.county NM, Chaves County +in.county NM, Cibola County +in.county NM, Colfax County +in.county NM, Curry County +in.county NM, Dona Ana County +in.county NM, Eddy County +in.county NM, Grant County +in.county NM, Lea County +in.county NM, Lincoln County +in.county NM, Los Alamos County +in.county NM, Luna County +in.county NM, McKinley County +in.county NM, Otero County +in.county NM, Rio Arriba County +in.county NM, Roosevelt County +in.county NM, San Juan County +in.county NM, San Miguel County +in.county NM, Sandoval County +in.county NM, Santa Fe County +in.county NM, Sierra County +in.county NM, Socorro County +in.county NM, Taos County +in.county NM, Torrance County +in.county NM, Valencia County +in.county NV, Carson City +in.county NV, Churchill County +in.county NV, Clark County +in.county NV, Douglas County +in.county NV, Elko County +in.county NV, Humboldt County +in.county NV, Lyon County +in.county NV, Nye County +in.county NV, Washoe County +in.county NY, Albany County +in.county NY, Allegany County +in.county NY, Bronx County +in.county NY, Broome County +in.county NY, Cattaraugus County +in.county NY, Cayuga County +in.county NY, Chautauqua County +in.county NY, Chemung County +in.county NY, Chenango County +in.county NY, Clinton County +in.county NY, Columbia County +in.county NY, Cortland County +in.county NY, Delaware County +in.county NY, Dutchess County +in.county NY, Erie County +in.county NY, Essex County +in.county NY, Franklin County +in.county NY, Fulton County +in.county NY, Genesee County +in.county NY, Greene County +in.county NY, Hamilton County +in.county NY, Herkimer County +in.county NY, Jefferson County +in.county NY, Kings County +in.county NY, Lewis County +in.county NY, Livingston County +in.county NY, Madison County +in.county NY, Monroe County +in.county NY, Montgomery County +in.county NY, Nassau County +in.county NY, New York County +in.county NY, Niagara County +in.county NY, Oneida County +in.county NY, Onondaga County +in.county NY, Ontario County +in.county NY, Orange County +in.county NY, Orleans County +in.county NY, Oswego County +in.county NY, Otsego County +in.county NY, Putnam County +in.county NY, Queens County +in.county NY, Rensselaer County +in.county NY, Richmond County +in.county NY, Rockland County +in.county NY, Saratoga County +in.county NY, Schenectady County +in.county NY, Schoharie County +in.county NY, Schuyler County +in.county NY, Seneca County +in.county NY, St. Lawrence County +in.county NY, Steuben County +in.county NY, Suffolk County +in.county NY, Sullivan County +in.county NY, Tioga County +in.county NY, Tompkins County +in.county NY, Ulster County +in.county NY, Warren County +in.county NY, Washington County +in.county NY, Wayne County +in.county NY, Westchester County +in.county NY, Wyoming County +in.county NY, Yates County +in.county OH, Adams County +in.county OH, Allen County +in.county OH, Ashland County +in.county OH, Ashtabula County +in.county OH, Athens County +in.county OH, Auglaize County +in.county OH, Belmont County +in.county OH, Brown County +in.county OH, Butler County +in.county OH, Carroll County +in.county OH, Champaign County +in.county OH, Clark County +in.county OH, Clermont County +in.county OH, Clinton County +in.county OH, Columbiana County +in.county OH, Coshocton County +in.county OH, Crawford County +in.county OH, Cuyahoga County +in.county OH, Darke County +in.county OH, Defiance County +in.county OH, Delaware County +in.county OH, Erie County +in.county OH, Fairfield County +in.county OH, Fayette County +in.county OH, Franklin County +in.county OH, Fulton County +in.county OH, Gallia County +in.county OH, Geauga County +in.county OH, Greene County +in.county OH, Guernsey County +in.county OH, Hamilton County +in.county OH, Hancock County +in.county OH, Hardin County +in.county OH, Harrison County +in.county OH, Henry County +in.county OH, Highland County +in.county OH, Hocking County +in.county OH, Holmes County +in.county OH, Huron County +in.county OH, Jackson County +in.county OH, Jefferson County +in.county OH, Knox County +in.county OH, Lake County +in.county OH, Lawrence County +in.county OH, Licking County +in.county OH, Logan County +in.county OH, Lorain County +in.county OH, Lucas County +in.county OH, Madison County +in.county OH, Mahoning County +in.county OH, Marion County +in.county OH, Medina County +in.county OH, Meigs County +in.county OH, Mercer County +in.county OH, Miami County +in.county OH, Monroe County +in.county OH, Montgomery County +in.county OH, Morgan County +in.county OH, Morrow County +in.county OH, Muskingum County +in.county OH, Ottawa County +in.county OH, Paulding County +in.county OH, Perry County +in.county OH, Pickaway County +in.county OH, Pike County +in.county OH, Portage County +in.county OH, Preble County +in.county OH, Putnam County +in.county OH, Richland County +in.county OH, Ross County +in.county OH, Sandusky County +in.county OH, Scioto County +in.county OH, Seneca County +in.county OH, Shelby County +in.county OH, Stark County +in.county OH, Summit County +in.county OH, Trumbull County +in.county OH, Tuscarawas County +in.county OH, Union County +in.county OH, Van Wert County +in.county OH, Warren County +in.county OH, Washington County +in.county OH, Wayne County +in.county OH, Williams County +in.county OH, Wood County +in.county OH, Wyandot County +in.county OK, Adair County +in.county OK, Beckham County +in.county OK, Bryan County +in.county OK, Caddo County +in.county OK, Canadian County +in.county OK, Carter County +in.county OK, Cherokee County +in.county OK, Choctaw County +in.county OK, Cleveland County +in.county OK, Comanche County +in.county OK, Craig County +in.county OK, Creek County +in.county OK, Custer County +in.county OK, Delaware County +in.county OK, Garfield County +in.county OK, Garvin County +in.county OK, Grady County +in.county OK, Jackson County +in.county OK, Kay County +in.county OK, Le Flore County +in.county OK, Lincoln County +in.county OK, Logan County +in.county OK, Marshall County +in.county OK, Mayes County +in.county OK, McClain County +in.county OK, McCurtain County +in.county OK, McIntosh County +in.county OK, Murray County +in.county OK, Muskogee County +in.county OK, Oklahoma County +in.county OK, Okmulgee County +in.county OK, Osage County +in.county OK, Ottawa County +in.county OK, Pawnee County +in.county OK, Payne County +in.county OK, Pittsburg County +in.county OK, Pontotoc County +in.county OK, Pottawatomie County +in.county OK, Rogers County +in.county OK, Seminole County +in.county OK, Sequoyah County +in.county OK, Stephens County +in.county OK, Texas County +in.county OK, Tulsa County +in.county OK, Wagoner County +in.county OK, Washington County +in.county OK, Woodward County +in.county OR, Baker County +in.county OR, Benton County +in.county OR, Clackamas County +in.county OR, Clatsop County +in.county OR, Columbia County +in.county OR, Coos County +in.county OR, Crook County +in.county OR, Curry County +in.county OR, Deschutes County +in.county OR, Douglas County +in.county OR, Hood River County +in.county OR, Jackson County +in.county OR, Jefferson County +in.county OR, Josephine County +in.county OR, Klamath County +in.county OR, Lane County +in.county OR, Lincoln County +in.county OR, Linn County +in.county OR, Malheur County +in.county OR, Marion County +in.county OR, Multnomah County +in.county OR, Polk County +in.county OR, Tillamook County +in.county OR, Umatilla County +in.county OR, Union County +in.county OR, Wasco County +in.county OR, Washington County +in.county OR, Yamhill County +in.county PA, Adams County +in.county PA, Allegheny County +in.county PA, Armstrong County +in.county PA, Beaver County +in.county PA, Bedford County +in.county PA, Berks County +in.county PA, Blair County +in.county PA, Bradford County +in.county PA, Bucks County +in.county PA, Butler County +in.county PA, Cambria County +in.county PA, Carbon County +in.county PA, Centre County +in.county PA, Chester County +in.county PA, Clarion County +in.county PA, Clearfield County +in.county PA, Clinton County +in.county PA, Columbia County +in.county PA, Crawford County +in.county PA, Cumberland County +in.county PA, Dauphin County +in.county PA, Delaware County +in.county PA, Elk County +in.county PA, Erie County +in.county PA, Fayette County +in.county PA, Forest County +in.county PA, Franklin County +in.county PA, Fulton County +in.county PA, Greene County +in.county PA, Huntingdon County +in.county PA, Indiana County +in.county PA, Jefferson County +in.county PA, Juniata County +in.county PA, Lackawanna County +in.county PA, Lancaster County +in.county PA, Lawrence County +in.county PA, Lebanon County +in.county PA, Lehigh County +in.county PA, Luzerne County +in.county PA, Lycoming County +in.county PA, McKean County +in.county PA, Mercer County +in.county PA, Mifflin County +in.county PA, Monroe County +in.county PA, Montgomery County +in.county PA, Montour County +in.county PA, Northampton County +in.county PA, Northumberland County +in.county PA, Perry County +in.county PA, Philadelphia County +in.county PA, Pike County +in.county PA, Potter County +in.county PA, Schuylkill County +in.county PA, Snyder County +in.county PA, Somerset County +in.county PA, Susquehanna County +in.county PA, Tioga County +in.county PA, Union County +in.county PA, Venango County +in.county PA, Warren County +in.county PA, Washington County +in.county PA, Wayne County +in.county PA, Westmoreland County +in.county PA, Wyoming County +in.county PA, York County +in.county RI, Bristol County +in.county RI, Kent County +in.county RI, Newport County +in.county RI, Providence County +in.county RI, Washington County +in.county SC, Abbeville County +in.county SC, Aiken County +in.county SC, Anderson County +in.county SC, Bamberg County +in.county SC, Barnwell County +in.county SC, Beaufort County +in.county SC, Berkeley County +in.county SC, Calhoun County +in.county SC, Charleston County +in.county SC, Cherokee County +in.county SC, Chester County +in.county SC, Chesterfield County +in.county SC, Clarendon County +in.county SC, Colleton County +in.county SC, Darlington County +in.county SC, Dillon County +in.county SC, Dorchester County +in.county SC, Edgefield County +in.county SC, Fairfield County +in.county SC, Florence County +in.county SC, Georgetown County +in.county SC, Greenville County +in.county SC, Greenwood County +in.county SC, Hampton County +in.county SC, Horry County +in.county SC, Jasper County +in.county SC, Kershaw County +in.county SC, Lancaster County +in.county SC, Laurens County +in.county SC, Lee County +in.county SC, Lexington County +in.county SC, Marion County +in.county SC, Marlboro County +in.county SC, Newberry County +in.county SC, Oconee County +in.county SC, Orangeburg County +in.county SC, Pickens County +in.county SC, Richland County +in.county SC, Saluda County +in.county SC, Spartanburg County +in.county SC, Sumter County +in.county SC, Union County +in.county SC, Williamsburg County +in.county SC, York County +in.county SD, Beadle County +in.county SD, Brookings County +in.county SD, Brown County +in.county SD, Codington County +in.county SD, Davison County +in.county SD, Hughes County +in.county SD, Lawrence County +in.county SD, Lincoln County +in.county SD, Meade County +in.county SD, Minnehaha County +in.county SD, Pennington County +in.county SD, Union County +in.county SD, Yankton County +in.county TN, Anderson County +in.county TN, Bedford County +in.county TN, Benton County +in.county TN, Blount County +in.county TN, Bradley County +in.county TN, Campbell County +in.county TN, Carroll County +in.county TN, Carter County +in.county TN, Cheatham County +in.county TN, Chester County +in.county TN, Claiborne County +in.county TN, Cocke County +in.county TN, Coffee County +in.county TN, Cumberland County +in.county TN, Davidson County +in.county TN, DeKalb County +in.county TN, Decatur County +in.county TN, Dickson County +in.county TN, Dyer County +in.county TN, Fayette County +in.county TN, Fentress County +in.county TN, Franklin County +in.county TN, Gibson County +in.county TN, Giles County +in.county TN, Grainger County +in.county TN, Greene County +in.county TN, Hamblen County +in.county TN, Hamilton County +in.county TN, Hardeman County +in.county TN, Hardin County +in.county TN, Hawkins County +in.county TN, Haywood County +in.county TN, Henderson County +in.county TN, Henry County +in.county TN, Hickman County +in.county TN, Humphreys County +in.county TN, Jefferson County +in.county TN, Johnson County +in.county TN, Knox County +in.county TN, Lauderdale County +in.county TN, Lawrence County +in.county TN, Lincoln County +in.county TN, Loudon County +in.county TN, Macon County +in.county TN, Madison County +in.county TN, Marion County +in.county TN, Marshall County +in.county TN, Maury County +in.county TN, McMinn County +in.county TN, McNairy County +in.county TN, Monroe County +in.county TN, Montgomery County +in.county TN, Morgan County +in.county TN, Obion County +in.county TN, Overton County +in.county TN, Polk County +in.county TN, Putnam County +in.county TN, Rhea County +in.county TN, Roane County +in.county TN, Robertson County +in.county TN, Rutherford County +in.county TN, Scott County +in.county TN, Sevier County +in.county TN, Shelby County +in.county TN, Smith County +in.county TN, Stewart County +in.county TN, Sullivan County +in.county TN, Sumner County +in.county TN, Tipton County +in.county TN, Unicoi County +in.county TN, Union County +in.county TN, Warren County +in.county TN, Washington County +in.county TN, Wayne County +in.county TN, Weakley County +in.county TN, White County +in.county TN, Williamson County +in.county TN, Wilson County +in.county TX, Anderson County +in.county TX, Angelina County +in.county TX, Aransas County +in.county TX, Atascosa County +in.county TX, Austin County +in.county TX, Bandera County +in.county TX, Bastrop County +in.county TX, Bee County +in.county TX, Bell County +in.county TX, Bexar County +in.county TX, Bosque County +in.county TX, Bowie County +in.county TX, Brazoria County +in.county TX, Brazos County +in.county TX, Brown County +in.county TX, Burleson County +in.county TX, Burnet County +in.county TX, Caldwell County +in.county TX, Calhoun County +in.county TX, Callahan County +in.county TX, Cameron County +in.county TX, Cass County +in.county TX, Chambers County +in.county TX, Cherokee County +in.county TX, Collin County +in.county TX, Colorado County +in.county TX, Comal County +in.county TX, Comanche County +in.county TX, Cooke County +in.county TX, Coryell County +in.county TX, Dallas County +in.county TX, DeWitt County +in.county TX, Deaf Smith County +in.county TX, Denton County +in.county TX, Eastland County +in.county TX, Ector County +in.county TX, El Paso County +in.county TX, Ellis County +in.county TX, Erath County +in.county TX, Falls County +in.county TX, Fannin County +in.county TX, Fayette County +in.county TX, Fort Bend County +in.county TX, Freestone County +in.county TX, Frio County +in.county TX, Galveston County +in.county TX, Gillespie County +in.county TX, Gonzales County +in.county TX, Gray County +in.county TX, Grayson County +in.county TX, Gregg County +in.county TX, Grimes County +in.county TX, Guadalupe County +in.county TX, Hale County +in.county TX, Hardin County +in.county TX, Harris County +in.county TX, Harrison County +in.county TX, Hays County +in.county TX, Henderson County +in.county TX, Hidalgo County +in.county TX, Hill County +in.county TX, Hockley County +in.county TX, Hood County +in.county TX, Hopkins County +in.county TX, Houston County +in.county TX, Howard County +in.county TX, Hunt County +in.county TX, Hutchinson County +in.county TX, Jasper County +in.county TX, Jefferson County +in.county TX, Jim Wells County +in.county TX, Johnson County +in.county TX, Jones County +in.county TX, Kaufman County +in.county TX, Kendall County +in.county TX, Kerr County +in.county TX, Kleberg County +in.county TX, Lamar County +in.county TX, Lampasas County +in.county TX, Lavaca County +in.county TX, Lee County +in.county TX, Leon County +in.county TX, Liberty County +in.county TX, Limestone County +in.county TX, Llano County +in.county TX, Lubbock County +in.county TX, Matagorda County +in.county TX, Maverick County +in.county TX, McLennan County +in.county TX, Medina County +in.county TX, Midland County +in.county TX, Milam County +in.county TX, Montague County +in.county TX, Montgomery County +in.county TX, Moore County +in.county TX, Nacogdoches County +in.county TX, Navarro County +in.county TX, Nolan County +in.county TX, Nueces County +in.county TX, Orange County +in.county TX, Palo Pinto County +in.county TX, Panola County +in.county TX, Parker County +in.county TX, Polk County +in.county TX, Potter County +in.county TX, Randall County +in.county TX, Red River County +in.county TX, Robertson County +in.county TX, Rockwall County +in.county TX, Rusk County +in.county TX, Sabine County +in.county TX, San Jacinto County +in.county TX, San Patricio County +in.county TX, Scurry County +in.county TX, Shelby County +in.county TX, Smith County +in.county TX, Starr County +in.county TX, Tarrant County +in.county TX, Taylor County +in.county TX, Titus County +in.county TX, Tom Green County +in.county TX, Travis County +in.county TX, Trinity County +in.county TX, Tyler County +in.county TX, Upshur County +in.county TX, Uvalde County +in.county TX, Val Verde County +in.county TX, Van Zandt County +in.county TX, Victoria County +in.county TX, Walker County +in.county TX, Waller County +in.county TX, Washington County +in.county TX, Webb County +in.county TX, Wharton County +in.county TX, Wichita County +in.county TX, Williamson County +in.county TX, Wilson County +in.county TX, Wise County +in.county TX, Wood County +in.county TX, Young County +in.county TX, Zapata County +in.county UT, Box Elder County +in.county UT, Cache County +in.county UT, Carbon County +in.county UT, Davis County +in.county UT, Duchesne County +in.county UT, Iron County +in.county UT, Salt Lake County +in.county UT, Sanpete County +in.county UT, Sevier County +in.county UT, Summit County +in.county UT, Tooele County +in.county UT, Uintah County +in.county UT, Utah County +in.county UT, Wasatch County +in.county UT, Washington County +in.county UT, Weber County +in.county VA, Accomack County +in.county VA, Albemarle County +in.county VA, Alexandria city +in.county VA, Alleghany County +in.county VA, Amherst County +in.county VA, Appomattox County +in.county VA, Arlington County +in.county VA, Augusta County +in.county VA, Bedford County +in.county VA, Botetourt County +in.county VA, Bristol city +in.county VA, Brunswick County +in.county VA, Buchanan County +in.county VA, Buckingham County +in.county VA, Campbell County +in.county VA, Caroline County +in.county VA, Carroll County +in.county VA, Charlottesville city +in.county VA, Chesapeake city +in.county VA, Chesterfield County +in.county VA, Colonial Heights city +in.county VA, Culpeper County +in.county VA, Danville city +in.county VA, Dickenson County +in.county VA, Dinwiddie County +in.county VA, Fairfax County +in.county VA, Fairfax city +in.county VA, Fauquier County +in.county VA, Floyd County +in.county VA, Fluvanna County +in.county VA, Franklin County +in.county VA, Frederick County +in.county VA, Fredericksburg city +in.county VA, Giles County +in.county VA, Gloucester County +in.county VA, Goochland County +in.county VA, Grayson County +in.county VA, Greene County +in.county VA, Halifax County +in.county VA, Hampton city +in.county VA, Hanover County +in.county VA, Harrisonburg city +in.county VA, Henrico County +in.county VA, Henry County +in.county VA, Hopewell city +in.county VA, Isle of Wight County +in.county VA, James City County +in.county VA, King George County +in.county VA, King William County +in.county VA, Lancaster County +in.county VA, Lee County +in.county VA, Loudoun County +in.county VA, Louisa County +in.county VA, Lynchburg city +in.county VA, Manassas city +in.county VA, Martinsville city +in.county VA, Mecklenburg County +in.county VA, Middlesex County +in.county VA, Montgomery County +in.county VA, Nelson County +in.county VA, New Kent County +in.county VA, Newport News city +in.county VA, Norfolk city +in.county VA, Northampton County +in.county VA, Northumberland County +in.county VA, Nottoway County +in.county VA, Orange County +in.county VA, Page County +in.county VA, Patrick County +in.county VA, Petersburg city +in.county VA, Pittsylvania County +in.county VA, Portsmouth city +in.county VA, Powhatan County +in.county VA, Prince Edward County +in.county VA, Prince George County +in.county VA, Prince William County +in.county VA, Pulaski County +in.county VA, Richmond city +in.county VA, Roanoke County +in.county VA, Roanoke city +in.county VA, Rockbridge County +in.county VA, Rockingham County +in.county VA, Russell County +in.county VA, Salem city +in.county VA, Scott County +in.county VA, Shenandoah County +in.county VA, Smyth County +in.county VA, Southampton County +in.county VA, Spotsylvania County +in.county VA, Stafford County +in.county VA, Staunton city +in.county VA, Suffolk city +in.county VA, Tazewell County +in.county VA, Virginia Beach city +in.county VA, Warren County +in.county VA, Washington County +in.county VA, Waynesboro city +in.county VA, Westmoreland County +in.county VA, Winchester city +in.county VA, Wise County +in.county VA, Wythe County +in.county VA, York County +in.county VT, Addison County +in.county VT, Bennington County +in.county VT, Caledonia County +in.county VT, Chittenden County +in.county VT, Franklin County +in.county VT, Lamoille County +in.county VT, Orange County +in.county VT, Orleans County +in.county VT, Rutland County +in.county VT, Washington County +in.county VT, Windham County +in.county VT, Windsor County +in.county WA, Adams County +in.county WA, Asotin County +in.county WA, Benton County +in.county WA, Chelan County +in.county WA, Clallam County +in.county WA, Clark County +in.county WA, Cowlitz County +in.county WA, Douglas County +in.county WA, Franklin County +in.county WA, Grant County +in.county WA, Grays Harbor County +in.county WA, Island County +in.county WA, Jefferson County +in.county WA, King County +in.county WA, Kitsap County +in.county WA, Kittitas County +in.county WA, Klickitat County +in.county WA, Lewis County +in.county WA, Mason County +in.county WA, Okanogan County +in.county WA, Pacific County +in.county WA, Pend Oreille County +in.county WA, Pierce County +in.county WA, San Juan County +in.county WA, Skagit County +in.county WA, Snohomish County +in.county WA, Spokane County +in.county WA, Stevens County +in.county WA, Thurston County +in.county WA, Walla Walla County +in.county WA, Whatcom County +in.county WA, Whitman County +in.county WA, Yakima County +in.county WI, Adams County +in.county WI, Ashland County +in.county WI, Barron County +in.county WI, Bayfield County +in.county WI, Brown County +in.county WI, Buffalo County +in.county WI, Burnett County +in.county WI, Calumet County +in.county WI, Chippewa County +in.county WI, Clark County +in.county WI, Columbia County +in.county WI, Crawford County +in.county WI, Dane County +in.county WI, Dodge County +in.county WI, Door County +in.county WI, Douglas County +in.county WI, Dunn County +in.county WI, Eau Claire County +in.county WI, Fond du Lac County +in.county WI, Forest County +in.county WI, Grant County +in.county WI, Green County +in.county WI, Green Lake County +in.county WI, Iowa County +in.county WI, Iron County +in.county WI, Jackson County +in.county WI, Jefferson County +in.county WI, Juneau County +in.county WI, Kenosha County +in.county WI, Kewaunee County +in.county WI, La Crosse County +in.county WI, Lafayette County +in.county WI, Langlade County +in.county WI, Lincoln County +in.county WI, Manitowoc County +in.county WI, Marathon County +in.county WI, Marinette County +in.county WI, Marquette County +in.county WI, Milwaukee County +in.county WI, Monroe County +in.county WI, Oconto County +in.county WI, Oneida County +in.county WI, Outagamie County +in.county WI, Ozaukee County +in.county WI, Pierce County +in.county WI, Polk County +in.county WI, Portage County +in.county WI, Price County +in.county WI, Racine County +in.county WI, Richland County +in.county WI, Rock County +in.county WI, Rusk County +in.county WI, Sauk County +in.county WI, Sawyer County +in.county WI, Shawano County +in.county WI, Sheboygan County +in.county WI, St. Croix County +in.county WI, Taylor County +in.county WI, Trempealeau County +in.county WI, Vernon County +in.county WI, Vilas County +in.county WI, Walworth County +in.county WI, Washburn County +in.county WI, Washington County +in.county WI, Waukesha County +in.county WI, Waupaca County +in.county WI, Waushara County +in.county WI, Winnebago County +in.county WI, Wood County +in.county WV, Barbour County +in.county WV, Berkeley County +in.county WV, Boone County +in.county WV, Braxton County +in.county WV, Brooke County +in.county WV, Cabell County +in.county WV, Fayette County +in.county WV, Grant County +in.county WV, Greenbrier County +in.county WV, Hampshire County +in.county WV, Hancock County +in.county WV, Hardy County +in.county WV, Harrison County +in.county WV, Jackson County +in.county WV, Jefferson County +in.county WV, Kanawha County +in.county WV, Lewis County +in.county WV, Lincoln County +in.county WV, Logan County +in.county WV, Marion County +in.county WV, Marshall County +in.county WV, Mason County +in.county WV, McDowell County +in.county WV, Mercer County +in.county WV, Mineral County +in.county WV, Mingo County +in.county WV, Monongalia County +in.county WV, Monroe County +in.county WV, Morgan County +in.county WV, Nicholas County +in.county WV, Ohio County +in.county WV, Pocahontas County +in.county WV, Preston County +in.county WV, Putnam County +in.county WV, Raleigh County +in.county WV, Randolph County +in.county WV, Roane County +in.county WV, Summers County +in.county WV, Taylor County +in.county WV, Upshur County +in.county WV, Wayne County +in.county WV, Wetzel County +in.county WV, Wood County +in.county WV, Wyoming County +in.county WY, Albany County +in.county WY, Campbell County +in.county WY, Carbon County +in.county WY, Converse County +in.county WY, Fremont County +in.county WY, Laramie County +in.county WY, Lincoln County +in.county WY, Natrona County +in.county WY, Park County +in.county WY, Sheridan County +in.county WY, Sublette County +in.county WY, Sweetwater County +in.county WY, Teton County +in.county WY, Uinta County +in.county_and_puma G0100010, G01002100 +in.county_and_puma G0100030, G01002600 +in.county_and_puma G0100050, G01002400 +in.county_and_puma G0100070, G01001700 +in.county_and_puma G0100090, G01000800 +in.county_and_puma G0100130, G01002300 +in.county_and_puma G0100150, G01001100 +in.county_and_puma G0100170, G01001800 +in.county_and_puma G0100190, G01001000 +in.county_and_puma G0100210, G01001800 +in.county_and_puma G0100230, G01002200 +in.county_and_puma G0100250, G01002200 +in.county_and_puma G0100270, G01001000 +in.county_and_puma G0100290, G01001000 +in.county_and_puma G0100310, G01002300 +in.county_and_puma G0100330, G01000100 +in.county_and_puma G0100350, G01002200 +in.county_and_puma G0100390, G01002300 +in.county_and_puma G0100410, G01002300 +in.county_and_puma G0100430, G01000700 +in.county_and_puma G0100450, G01002500 +in.county_and_puma G0100470, G01001700 +in.county_and_puma G0100490, G01000400 +in.county_and_puma G0100510, G01002100 +in.county_and_puma G0100530, G01002200 +in.county_and_puma G0100550, G01000900 +in.county_and_puma G0100570, G01001400 +in.county_and_puma G0100590, G01000100 +in.county_and_puma G0100610, G01002500 +in.county_and_puma G0100650, G01001700 +in.county_and_puma G0100670, G01002500 +in.county_and_puma G0100690, G01002500 +in.county_and_puma G0100710, G01000400 +in.county_and_puma G0100730, G01001301 +in.county_and_puma G0100730, G01001302 +in.county_and_puma G0100730, G01001303 +in.county_and_puma G0100730, G01001304 +in.county_and_puma G0100730, G01001305 +in.county_and_puma G0100750, G01001400 +in.county_and_puma G0100770, G01000100 +in.county_and_puma G0100790, G01000600 +in.county_and_puma G0100810, G01001900 +in.county_and_puma G0100830, G01000200 +in.county_and_puma G0100870, G01002400 +in.county_and_puma G0100890, G01000200 +in.county_and_puma G0100890, G01000301 +in.county_and_puma G0100890, G01000302 +in.county_and_puma G0100890, G01000500 +in.county_and_puma G0100910, G01001700 +in.county_and_puma G0100930, G01001400 +in.county_and_puma G0100950, G01000500 +in.county_and_puma G0100970, G01002701 +in.county_and_puma G0100970, G01002702 +in.county_and_puma G0100970, G01002703 +in.county_and_puma G0100990, G01002200 +in.county_and_puma G0101010, G01002000 +in.county_and_puma G0101010, G01002100 +in.county_and_puma G0101030, G01000600 +in.county_and_puma G0101070, G01001500 +in.county_and_puma G0101090, G01002400 +in.county_and_puma G0101110, G01001000 +in.county_and_puma G0101130, G01002400 +in.county_and_puma G0101150, G01000800 +in.county_and_puma G0101170, G01001200 +in.county_and_puma G0101190, G01001700 +in.county_and_puma G0101210, G01001000 +in.county_and_puma G0101230, G01001800 +in.county_and_puma G0101250, G01001500 +in.county_and_puma G0101250, G01001600 +in.county_and_puma G0101270, G01001400 +in.county_and_puma G0101290, G01002200 +in.county_and_puma G0101330, G01000700 +in.county_and_puma G0200200, G02000101 +in.county_and_puma G0200200, G02000102 +in.county_and_puma G0200500, G02000400 +in.county_and_puma G0200900, G02000300 +in.county_and_puma G0201100, G02000300 +in.county_and_puma G0201220, G02000200 +in.county_and_puma G0201300, G02000300 +in.county_and_puma G0201500, G02000400 +in.county_and_puma G0201700, G02000200 +in.county_and_puma G0202610, G02000300 +in.county_and_puma G0400010, G04000300 +in.county_and_puma G0400030, G04000900 +in.county_and_puma G0400050, G04000400 +in.county_and_puma G0400070, G04000800 +in.county_and_puma G0400090, G04000800 +in.county_and_puma G0400120, G04000600 +in.county_and_puma G0400130, G04000100 +in.county_and_puma G0400130, G04000101 +in.county_and_puma G0400130, G04000102 +in.county_and_puma G0400130, G04000103 +in.county_and_puma G0400130, G04000104 +in.county_and_puma G0400130, G04000105 +in.county_and_puma G0400130, G04000106 +in.county_and_puma G0400130, G04000107 +in.county_and_puma G0400130, G04000108 +in.county_and_puma G0400130, G04000109 +in.county_and_puma G0400130, G04000110 +in.county_and_puma G0400130, G04000111 +in.county_and_puma G0400130, G04000112 +in.county_and_puma G0400130, G04000113 +in.county_and_puma G0400130, G04000114 +in.county_and_puma G0400130, G04000115 +in.county_and_puma G0400130, G04000116 +in.county_and_puma G0400130, G04000117 +in.county_and_puma G0400130, G04000118 +in.county_and_puma G0400130, G04000119 +in.county_and_puma G0400130, G04000120 +in.county_and_puma G0400130, G04000121 +in.county_and_puma G0400130, G04000122 +in.county_and_puma G0400130, G04000123 +in.county_and_puma G0400130, G04000124 +in.county_and_puma G0400130, G04000125 +in.county_and_puma G0400130, G04000126 +in.county_and_puma G0400130, G04000127 +in.county_and_puma G0400130, G04000128 +in.county_and_puma G0400130, G04000129 +in.county_and_puma G0400130, G04000130 +in.county_and_puma G0400130, G04000131 +in.county_and_puma G0400130, G04000132 +in.county_and_puma G0400130, G04000133 +in.county_and_puma G0400130, G04000134 +in.county_and_puma G0400150, G04000600 +in.county_and_puma G0400170, G04000300 +in.county_and_puma G0400190, G04000201 +in.county_and_puma G0400190, G04000202 +in.county_and_puma G0400190, G04000203 +in.county_and_puma G0400190, G04000204 +in.county_and_puma G0400190, G04000205 +in.county_and_puma G0400190, G04000206 +in.county_and_puma G0400190, G04000207 +in.county_and_puma G0400190, G04000208 +in.county_and_puma G0400190, G04000209 +in.county_and_puma G0400210, G04000803 +in.county_and_puma G0400210, G04000805 +in.county_and_puma G0400210, G04000807 +in.county_and_puma G0400230, G04000900 +in.county_and_puma G0400250, G04000500 +in.county_and_puma G0400270, G04000700 +in.county_and_puma G0500030, G05001800 +in.county_and_puma G0500050, G05000300 +in.county_and_puma G0500070, G05000100 +in.county_and_puma G0500090, G05000300 +in.county_and_puma G0500150, G05000300 +in.county_and_puma G0500190, G05001600 +in.county_and_puma G0500210, G05000500 +in.county_and_puma G0500230, G05000400 +in.county_and_puma G0500270, G05001900 +in.county_and_puma G0500290, G05001300 +in.county_and_puma G0500310, G05000500 +in.county_and_puma G0500330, G05001400 +in.county_and_puma G0500350, G05000600 +in.county_and_puma G0500370, G05000700 +in.county_and_puma G0500430, G05001800 +in.county_and_puma G0500450, G05001100 +in.county_and_puma G0500470, G05001500 +in.county_and_puma G0500490, G05000400 +in.county_and_puma G0500510, G05001600 +in.county_and_puma G0500530, G05001700 +in.county_and_puma G0500550, G05000500 +in.county_and_puma G0500570, G05002000 +in.county_and_puma G0500590, G05001600 +in.county_and_puma G0500630, G05000400 +in.county_and_puma G0500650, G05000400 +in.county_and_puma G0500670, G05000800 +in.county_and_puma G0500690, G05001700 +in.county_and_puma G0500710, G05001300 +in.county_and_puma G0500750, G05000500 +in.county_and_puma G0500830, G05001500 +in.county_and_puma G0500850, G05001100 +in.county_and_puma G0500870, G05000300 +in.county_and_puma G0500890, G05000300 +in.county_and_puma G0500910, G05002000 +in.county_and_puma G0500930, G05000600 +in.county_and_puma G0501030, G05001900 +in.county_and_puma G0501070, G05000700 +in.county_and_puma G0501110, G05000700 +in.county_and_puma G0501130, G05001500 +in.county_and_puma G0501150, G05001300 +in.county_and_puma G0501190, G05000900 +in.county_and_puma G0501190, G05001000 +in.county_and_puma G0501210, G05000500 +in.county_and_puma G0501230, G05000700 +in.county_and_puma G0501250, G05001200 +in.county_and_puma G0501310, G05001400 +in.county_and_puma G0501330, G05001500 +in.county_and_puma G0501350, G05000400 +in.county_and_puma G0501370, G05000400 +in.county_and_puma G0501390, G05001900 +in.county_and_puma G0501410, G05000400 +in.county_and_puma G0501430, G05000200 +in.county_and_puma G0501450, G05000800 +in.county_and_puma G0501490, G05001300 +in.county_and_puma G0600010, G06000101 +in.county_and_puma G0600010, G06000102 +in.county_and_puma G0600010, G06000103 +in.county_and_puma G0600010, G06000104 +in.county_and_puma G0600010, G06000105 +in.county_and_puma G0600010, G06000106 +in.county_and_puma G0600010, G06000107 +in.county_and_puma G0600010, G06000108 +in.county_and_puma G0600010, G06000109 +in.county_and_puma G0600010, G06000110 +in.county_and_puma G0600050, G06000300 +in.county_and_puma G0600070, G06000701 +in.county_and_puma G0600070, G06000702 +in.county_and_puma G0600090, G06000300 +in.county_and_puma G0600110, G06001100 +in.county_and_puma G0600130, G06001301 +in.county_and_puma G0600130, G06001302 +in.county_and_puma G0600130, G06001303 +in.county_and_puma G0600130, G06001304 +in.county_and_puma G0600130, G06001305 +in.county_and_puma G0600130, G06001306 +in.county_and_puma G0600130, G06001307 +in.county_and_puma G0600130, G06001308 +in.county_and_puma G0600130, G06001309 +in.county_and_puma G0600150, G06001500 +in.county_and_puma G0600170, G06001700 +in.county_and_puma G0600190, G06001901 +in.county_and_puma G0600190, G06001902 +in.county_and_puma G0600190, G06001903 +in.county_and_puma G0600190, G06001904 +in.county_and_puma G0600190, G06001905 +in.county_and_puma G0600190, G06001906 +in.county_and_puma G0600190, G06001907 +in.county_and_puma G0600210, G06001100 +in.county_and_puma G0600230, G06002300 +in.county_and_puma G0600250, G06002500 +in.county_and_puma G0600270, G06000300 +in.county_and_puma G0600290, G06002901 +in.county_and_puma G0600290, G06002902 +in.county_and_puma G0600290, G06002903 +in.county_and_puma G0600290, G06002904 +in.county_and_puma G0600290, G06002905 +in.county_and_puma G0600310, G06003100 +in.county_and_puma G0600330, G06003300 +in.county_and_puma G0600350, G06001500 +in.county_and_puma G0600370, G06003701 +in.county_and_puma G0600370, G06003702 +in.county_and_puma G0600370, G06003703 +in.county_and_puma G0600370, G06003704 +in.county_and_puma G0600370, G06003705 +in.county_and_puma G0600370, G06003706 +in.county_and_puma G0600370, G06003707 +in.county_and_puma G0600370, G06003708 +in.county_and_puma G0600370, G06003709 +in.county_and_puma G0600370, G06003710 +in.county_and_puma G0600370, G06003711 +in.county_and_puma G0600370, G06003712 +in.county_and_puma G0600370, G06003713 +in.county_and_puma G0600370, G06003714 +in.county_and_puma G0600370, G06003715 +in.county_and_puma G0600370, G06003716 +in.county_and_puma G0600370, G06003717 +in.county_and_puma G0600370, G06003718 +in.county_and_puma G0600370, G06003719 +in.county_and_puma G0600370, G06003720 +in.county_and_puma G0600370, G06003721 +in.county_and_puma G0600370, G06003722 +in.county_and_puma G0600370, G06003723 +in.county_and_puma G0600370, G06003724 +in.county_and_puma G0600370, G06003725 +in.county_and_puma G0600370, G06003726 +in.county_and_puma G0600370, G06003727 +in.county_and_puma G0600370, G06003728 +in.county_and_puma G0600370, G06003729 +in.county_and_puma G0600370, G06003730 +in.county_and_puma G0600370, G06003731 +in.county_and_puma G0600370, G06003732 +in.county_and_puma G0600370, G06003733 +in.county_and_puma G0600370, G06003734 +in.county_and_puma G0600370, G06003735 +in.county_and_puma G0600370, G06003736 +in.county_and_puma G0600370, G06003737 +in.county_and_puma G0600370, G06003738 +in.county_and_puma G0600370, G06003739 +in.county_and_puma G0600370, G06003740 +in.county_and_puma G0600370, G06003741 +in.county_and_puma G0600370, G06003742 +in.county_and_puma G0600370, G06003743 +in.county_and_puma G0600370, G06003744 +in.county_and_puma G0600370, G06003745 +in.county_and_puma G0600370, G06003746 +in.county_and_puma G0600370, G06003747 +in.county_and_puma G0600370, G06003748 +in.county_and_puma G0600370, G06003749 +in.county_and_puma G0600370, G06003750 +in.county_and_puma G0600370, G06003751 +in.county_and_puma G0600370, G06003752 +in.county_and_puma G0600370, G06003753 +in.county_and_puma G0600370, G06003754 +in.county_and_puma G0600370, G06003755 +in.county_and_puma G0600370, G06003756 +in.county_and_puma G0600370, G06003757 +in.county_and_puma G0600370, G06003758 +in.county_and_puma G0600370, G06003759 +in.county_and_puma G0600370, G06003760 +in.county_and_puma G0600370, G06003761 +in.county_and_puma G0600370, G06003762 +in.county_and_puma G0600370, G06003763 +in.county_and_puma G0600370, G06003764 +in.county_and_puma G0600370, G06003765 +in.county_and_puma G0600370, G06003766 +in.county_and_puma G0600370, G06003767 +in.county_and_puma G0600370, G06003768 +in.county_and_puma G0600370, G06003769 +in.county_and_puma G0600390, G06003900 +in.county_and_puma G0600410, G06004101 +in.county_and_puma G0600410, G06004102 +in.county_and_puma G0600430, G06000300 +in.county_and_puma G0600450, G06003300 +in.county_and_puma G0600470, G06004701 +in.county_and_puma G0600470, G06004702 +in.county_and_puma G0600510, G06000300 +in.county_and_puma G0600530, G06005301 +in.county_and_puma G0600530, G06005302 +in.county_and_puma G0600530, G06005303 +in.county_and_puma G0600550, G06005500 +in.county_and_puma G0600570, G06005700 +in.county_and_puma G0600590, G06005901 +in.county_and_puma G0600590, G06005902 +in.county_and_puma G0600590, G06005903 +in.county_and_puma G0600590, G06005904 +in.county_and_puma G0600590, G06005905 +in.county_and_puma G0600590, G06005906 +in.county_and_puma G0600590, G06005907 +in.county_and_puma G0600590, G06005908 +in.county_and_puma G0600590, G06005909 +in.county_and_puma G0600590, G06005910 +in.county_and_puma G0600590, G06005911 +in.county_and_puma G0600590, G06005912 +in.county_and_puma G0600590, G06005913 +in.county_and_puma G0600590, G06005914 +in.county_and_puma G0600590, G06005915 +in.county_and_puma G0600590, G06005916 +in.county_and_puma G0600590, G06005917 +in.county_and_puma G0600590, G06005918 +in.county_and_puma G0600610, G06006101 +in.county_and_puma G0600610, G06006102 +in.county_and_puma G0600610, G06006103 +in.county_and_puma G0600630, G06001500 +in.county_and_puma G0600650, G06006501 +in.county_and_puma G0600650, G06006502 +in.county_and_puma G0600650, G06006503 +in.county_and_puma G0600650, G06006504 +in.county_and_puma G0600650, G06006505 +in.county_and_puma G0600650, G06006506 +in.county_and_puma G0600650, G06006507 +in.county_and_puma G0600650, G06006508 +in.county_and_puma G0600650, G06006509 +in.county_and_puma G0600650, G06006510 +in.county_and_puma G0600650, G06006511 +in.county_and_puma G0600650, G06006512 +in.county_and_puma G0600650, G06006513 +in.county_and_puma G0600650, G06006514 +in.county_and_puma G0600650, G06006515 +in.county_and_puma G0600670, G06006701 +in.county_and_puma G0600670, G06006702 +in.county_and_puma G0600670, G06006703 +in.county_and_puma G0600670, G06006704 +in.county_and_puma G0600670, G06006705 +in.county_and_puma G0600670, G06006706 +in.county_and_puma G0600670, G06006707 +in.county_and_puma G0600670, G06006708 +in.county_and_puma G0600670, G06006709 +in.county_and_puma G0600670, G06006710 +in.county_and_puma G0600670, G06006711 +in.county_and_puma G0600670, G06006712 +in.county_and_puma G0600690, G06005303 +in.county_and_puma G0600710, G06007101 +in.county_and_puma G0600710, G06007102 +in.county_and_puma G0600710, G06007103 +in.county_and_puma G0600710, G06007104 +in.county_and_puma G0600710, G06007105 +in.county_and_puma G0600710, G06007106 +in.county_and_puma G0600710, G06007107 +in.county_and_puma G0600710, G06007108 +in.county_and_puma G0600710, G06007109 +in.county_and_puma G0600710, G06007110 +in.county_and_puma G0600710, G06007111 +in.county_and_puma G0600710, G06007112 +in.county_and_puma G0600710, G06007113 +in.county_and_puma G0600710, G06007114 +in.county_and_puma G0600710, G06007115 +in.county_and_puma G0600730, G06007301 +in.county_and_puma G0600730, G06007302 +in.county_and_puma G0600730, G06007303 +in.county_and_puma G0600730, G06007304 +in.county_and_puma G0600730, G06007305 +in.county_and_puma G0600730, G06007306 +in.county_and_puma G0600730, G06007307 +in.county_and_puma G0600730, G06007308 +in.county_and_puma G0600730, G06007309 +in.county_and_puma G0600730, G06007310 +in.county_and_puma G0600730, G06007311 +in.county_and_puma G0600730, G06007312 +in.county_and_puma G0600730, G06007313 +in.county_and_puma G0600730, G06007314 +in.county_and_puma G0600730, G06007315 +in.county_and_puma G0600730, G06007316 +in.county_and_puma G0600730, G06007317 +in.county_and_puma G0600730, G06007318 +in.county_and_puma G0600730, G06007319 +in.county_and_puma G0600730, G06007320 +in.county_and_puma G0600730, G06007321 +in.county_and_puma G0600730, G06007322 +in.county_and_puma G0600750, G06007501 +in.county_and_puma G0600750, G06007502 +in.county_and_puma G0600750, G06007503 +in.county_and_puma G0600750, G06007504 +in.county_and_puma G0600750, G06007505 +in.county_and_puma G0600750, G06007506 +in.county_and_puma G0600750, G06007507 +in.county_and_puma G0600770, G06007701 +in.county_and_puma G0600770, G06007702 +in.county_and_puma G0600770, G06007703 +in.county_and_puma G0600770, G06007704 +in.county_and_puma G0600790, G06007901 +in.county_and_puma G0600790, G06007902 +in.county_and_puma G0600810, G06008101 +in.county_and_puma G0600810, G06008102 +in.county_and_puma G0600810, G06008103 +in.county_and_puma G0600810, G06008104 +in.county_and_puma G0600810, G06008105 +in.county_and_puma G0600810, G06008106 +in.county_and_puma G0600830, G06008301 +in.county_and_puma G0600830, G06008302 +in.county_and_puma G0600830, G06008303 +in.county_and_puma G0600850, G06008501 +in.county_and_puma G0600850, G06008502 +in.county_and_puma G0600850, G06008503 +in.county_and_puma G0600850, G06008504 +in.county_and_puma G0600850, G06008505 +in.county_and_puma G0600850, G06008506 +in.county_and_puma G0600850, G06008507 +in.county_and_puma G0600850, G06008508 +in.county_and_puma G0600850, G06008509 +in.county_and_puma G0600850, G06008510 +in.county_and_puma G0600850, G06008511 +in.county_and_puma G0600850, G06008512 +in.county_and_puma G0600850, G06008513 +in.county_and_puma G0600850, G06008514 +in.county_and_puma G0600870, G06008701 +in.county_and_puma G0600870, G06008702 +in.county_and_puma G0600890, G06008900 +in.county_and_puma G0600930, G06001500 +in.county_and_puma G0600950, G06009501 +in.county_and_puma G0600950, G06009502 +in.county_and_puma G0600950, G06009503 +in.county_and_puma G0600970, G06009701 +in.county_and_puma G0600970, G06009702 +in.county_and_puma G0600970, G06009703 +in.county_and_puma G0600990, G06009901 +in.county_and_puma G0600990, G06009902 +in.county_and_puma G0600990, G06009903 +in.county_and_puma G0600990, G06009904 +in.county_and_puma G0601010, G06010100 +in.county_and_puma G0601030, G06001100 +in.county_and_puma G0601050, G06001100 +in.county_and_puma G0601070, G06010701 +in.county_and_puma G0601070, G06010702 +in.county_and_puma G0601070, G06010703 +in.county_and_puma G0601090, G06000300 +in.county_and_puma G0601110, G06011101 +in.county_and_puma G0601110, G06011102 +in.county_and_puma G0601110, G06011103 +in.county_and_puma G0601110, G06011104 +in.county_and_puma G0601110, G06011105 +in.county_and_puma G0601110, G06011106 +in.county_and_puma G0601130, G06011300 +in.county_and_puma G0601150, G06010100 +in.county_and_puma G0800010, G08000805 +in.county_and_puma G0800010, G08000806 +in.county_and_puma G0800010, G08000807 +in.county_and_puma G0800010, G08000810 +in.county_and_puma G0800010, G08000824 +in.county_and_puma G0800030, G08000800 +in.county_and_puma G0800050, G08000808 +in.county_and_puma G0800050, G08000809 +in.county_and_puma G0800050, G08000810 +in.county_and_puma G0800050, G08000811 +in.county_and_puma G0800050, G08000815 +in.county_and_puma G0800050, G08000820 +in.county_and_puma G0800050, G08000824 +in.county_and_puma G0800070, G08000900 +in.county_and_puma G0800130, G08000801 +in.county_and_puma G0800130, G08000802 +in.county_and_puma G0800130, G08000803 +in.county_and_puma G0800130, G08000804 +in.county_and_puma G0800140, G08000804 +in.county_and_puma G0800150, G08000600 +in.county_and_puma G0800290, G08001002 +in.county_and_puma G0800310, G08000812 +in.county_and_puma G0800310, G08000813 +in.county_and_puma G0800310, G08000814 +in.county_and_puma G0800310, G08000815 +in.county_and_puma G0800310, G08000816 +in.county_and_puma G0800350, G08000821 +in.county_and_puma G0800350, G08000822 +in.county_and_puma G0800350, G08000823 +in.county_and_puma G0800370, G08000400 +in.county_and_puma G0800390, G08000823 +in.county_and_puma G0800410, G08004101 +in.county_and_puma G0800410, G08004102 +in.county_and_puma G0800410, G08004103 +in.county_and_puma G0800410, G08004104 +in.county_and_puma G0800410, G08004105 +in.county_and_puma G0800410, G08004106 +in.county_and_puma G0800430, G08000600 +in.county_and_puma G0800450, G08000200 +in.county_and_puma G0800490, G08000400 +in.county_and_puma G0800510, G08000900 +in.county_and_puma G0800590, G08000801 +in.county_and_puma G0800590, G08000804 +in.county_and_puma G0800590, G08000805 +in.county_and_puma G0800590, G08000817 +in.county_and_puma G0800590, G08000818 +in.county_and_puma G0800590, G08000819 +in.county_and_puma G0800590, G08000820 +in.county_and_puma G0800590, G08000821 +in.county_and_puma G0800670, G08000900 +in.county_and_puma G0800690, G08000102 +in.county_and_puma G0800690, G08000103 +in.county_and_puma G0800710, G08000800 +in.county_and_puma G0800750, G08000100 +in.county_and_puma G0800770, G08001001 +in.county_and_puma G0800770, G08001002 +in.county_and_puma G0800810, G08000200 +in.county_and_puma G0800830, G08000900 +in.county_and_puma G0800850, G08001002 +in.county_and_puma G0800870, G08000100 +in.county_and_puma G0800890, G08000800 +in.county_and_puma G0800930, G08000600 +in.county_and_puma G0800970, G08000400 +in.county_and_puma G0801010, G08000700 +in.county_and_puma G0801050, G08000800 +in.county_and_puma G0801070, G08000200 +in.county_and_puma G0801130, G08001002 +in.county_and_puma G0801170, G08000400 +in.county_and_puma G0801190, G08004101 +in.county_and_puma G0801230, G08000300 +in.county_and_puma G0801230, G08000802 +in.county_and_puma G0801230, G08000824 +in.county_and_puma G0900010, G09000100 +in.county_and_puma G0900010, G09000101 +in.county_and_puma G0900010, G09000102 +in.county_and_puma G0900010, G09000103 +in.county_and_puma G0900010, G09000104 +in.county_and_puma G0900010, G09000105 +in.county_and_puma G0900030, G09000300 +in.county_and_puma G0900030, G09000301 +in.county_and_puma G0900030, G09000302 +in.county_and_puma G0900030, G09000303 +in.county_and_puma G0900030, G09000304 +in.county_and_puma G0900030, G09000305 +in.county_and_puma G0900030, G09000306 +in.county_and_puma G0900050, G09000500 +in.county_and_puma G0900070, G09000700 +in.county_and_puma G0900090, G09000900 +in.county_and_puma G0900090, G09000901 +in.county_and_puma G0900090, G09000902 +in.county_and_puma G0900090, G09000903 +in.county_and_puma G0900090, G09000904 +in.county_and_puma G0900090, G09000905 +in.county_and_puma G0900090, G09000906 +in.county_and_puma G0900110, G09001100 +in.county_and_puma G0900110, G09001101 +in.county_and_puma G0900130, G09001300 +in.county_and_puma G0900150, G09001500 +in.county_and_puma G1000010, G10000200 +in.county_and_puma G1000030, G10000101 +in.county_and_puma G1000030, G10000102 +in.county_and_puma G1000030, G10000103 +in.county_and_puma G1000030, G10000104 +in.county_and_puma G1000050, G10000300 +in.county_and_puma G1100010, G11000101 +in.county_and_puma G1100010, G11000102 +in.county_and_puma G1100010, G11000103 +in.county_and_puma G1100010, G11000104 +in.county_and_puma G1100010, G11000105 +in.county_and_puma G1200010, G12000101 +in.county_and_puma G1200010, G12000102 +in.county_and_puma G1200030, G12008900 +in.county_and_puma G1200050, G12000500 +in.county_and_puma G1200070, G12002300 +in.county_and_puma G1200090, G12000901 +in.county_and_puma G1200090, G12000902 +in.county_and_puma G1200090, G12000903 +in.county_and_puma G1200090, G12000904 +in.county_and_puma G1200110, G12001101 +in.county_and_puma G1200110, G12001102 +in.county_and_puma G1200110, G12001103 +in.county_and_puma G1200110, G12001104 +in.county_and_puma G1200110, G12001105 +in.county_and_puma G1200110, G12001106 +in.county_and_puma G1200110, G12001107 +in.county_and_puma G1200110, G12001108 +in.county_and_puma G1200110, G12001109 +in.county_and_puma G1200110, G12001110 +in.county_and_puma G1200110, G12001111 +in.county_and_puma G1200110, G12001112 +in.county_and_puma G1200110, G12001113 +in.county_and_puma G1200110, G12001114 +in.county_and_puma G1200150, G12001500 +in.county_and_puma G1200170, G12001701 +in.county_and_puma G1200190, G12001900 +in.county_and_puma G1200210, G12002101 +in.county_and_puma G1200210, G12002102 +in.county_and_puma G1200210, G12002103 +in.county_and_puma G1200230, G12002300 +in.county_and_puma G1200270, G12002700 +in.county_and_puma G1200290, G12002300 +in.county_and_puma G1200310, G12003101 +in.county_and_puma G1200310, G12003102 +in.county_and_puma G1200310, G12003103 +in.county_and_puma G1200310, G12003104 +in.county_and_puma G1200310, G12003105 +in.county_and_puma G1200310, G12003106 +in.county_and_puma G1200310, G12003107 +in.county_and_puma G1200330, G12003301 +in.county_and_puma G1200330, G12003302 +in.county_and_puma G1200350, G12003500 +in.county_and_puma G1200370, G12006300 +in.county_and_puma G1200390, G12006300 +in.county_and_puma G1200410, G12002300 +in.county_and_puma G1200450, G12006300 +in.county_and_puma G1200490, G12002700 +in.county_and_puma G1200510, G12009300 +in.county_and_puma G1200530, G12005301 +in.county_and_puma G1200550, G12002700 +in.county_and_puma G1200570, G12005701 +in.county_and_puma G1200570, G12005702 +in.county_and_puma G1200570, G12005703 +in.county_and_puma G1200570, G12005704 +in.county_and_puma G1200570, G12005705 +in.county_and_puma G1200570, G12005706 +in.county_and_puma G1200570, G12005707 +in.county_and_puma G1200570, G12005708 +in.county_and_puma G1200590, G12000500 +in.county_and_puma G1200610, G12006100 +in.county_and_puma G1200630, G12006300 +in.county_and_puma G1200690, G12006901 +in.county_and_puma G1200690, G12006902 +in.county_and_puma G1200690, G12006903 +in.county_and_puma G1200710, G12007101 +in.county_and_puma G1200710, G12007102 +in.county_and_puma G1200710, G12007103 +in.county_and_puma G1200710, G12007104 +in.county_and_puma G1200710, G12007105 +in.county_and_puma G1200730, G12007300 +in.county_and_puma G1200730, G12007301 +in.county_and_puma G1200750, G12002300 +in.county_and_puma G1200790, G12012100 +in.county_and_puma G1200810, G12008101 +in.county_and_puma G1200810, G12008102 +in.county_and_puma G1200810, G12008103 +in.county_and_puma G1200830, G12008301 +in.county_and_puma G1200830, G12008302 +in.county_and_puma G1200830, G12008303 +in.county_and_puma G1200850, G12008500 +in.county_and_puma G1200860, G12008601 +in.county_and_puma G1200860, G12008602 +in.county_and_puma G1200860, G12008603 +in.county_and_puma G1200860, G12008604 +in.county_and_puma G1200860, G12008605 +in.county_and_puma G1200860, G12008606 +in.county_and_puma G1200860, G12008607 +in.county_and_puma G1200860, G12008608 +in.county_and_puma G1200860, G12008609 +in.county_and_puma G1200860, G12008610 +in.county_and_puma G1200860, G12008611 +in.county_and_puma G1200860, G12008612 +in.county_and_puma G1200860, G12008613 +in.county_and_puma G1200860, G12008614 +in.county_and_puma G1200860, G12008615 +in.county_and_puma G1200860, G12008616 +in.county_and_puma G1200860, G12008617 +in.county_and_puma G1200860, G12008618 +in.county_and_puma G1200860, G12008619 +in.county_and_puma G1200860, G12008620 +in.county_and_puma G1200860, G12008621 +in.county_and_puma G1200860, G12008622 +in.county_and_puma G1200860, G12008623 +in.county_and_puma G1200860, G12008624 +in.county_and_puma G1200860, G12008700 +in.county_and_puma G1200870, G12008700 +in.county_and_puma G1200890, G12008900 +in.county_and_puma G1200910, G12009100 +in.county_and_puma G1200930, G12009300 +in.county_and_puma G1200950, G12009501 +in.county_and_puma G1200950, G12009502 +in.county_and_puma G1200950, G12009503 +in.county_and_puma G1200950, G12009504 +in.county_and_puma G1200950, G12009505 +in.county_and_puma G1200950, G12009506 +in.county_and_puma G1200950, G12009507 +in.county_and_puma G1200950, G12009508 +in.county_and_puma G1200950, G12009509 +in.county_and_puma G1200950, G12009510 +in.county_and_puma G1200970, G12009701 +in.county_and_puma G1200970, G12009702 +in.county_and_puma G1200990, G12009901 +in.county_and_puma G1200990, G12009902 +in.county_and_puma G1200990, G12009903 +in.county_and_puma G1200990, G12009904 +in.county_and_puma G1200990, G12009905 +in.county_and_puma G1200990, G12009906 +in.county_and_puma G1200990, G12009907 +in.county_and_puma G1200990, G12009908 +in.county_and_puma G1200990, G12009909 +in.county_and_puma G1200990, G12009910 +in.county_and_puma G1200990, G12009911 +in.county_and_puma G1201010, G12010101 +in.county_and_puma G1201010, G12010102 +in.county_and_puma G1201010, G12010103 +in.county_and_puma G1201010, G12010104 +in.county_and_puma G1201030, G12010301 +in.county_and_puma G1201030, G12010302 +in.county_and_puma G1201030, G12010303 +in.county_and_puma G1201030, G12010304 +in.county_and_puma G1201030, G12010305 +in.county_and_puma G1201030, G12010306 +in.county_and_puma G1201030, G12010307 +in.county_and_puma G1201030, G12010308 +in.county_and_puma G1201050, G12010501 +in.county_and_puma G1201050, G12010502 +in.county_and_puma G1201050, G12010503 +in.county_and_puma G1201050, G12010504 +in.county_and_puma G1201070, G12010700 +in.county_and_puma G1201090, G12010700 +in.county_and_puma G1201090, G12010900 +in.county_and_puma G1201110, G12011101 +in.county_and_puma G1201110, G12011102 +in.county_and_puma G1201130, G12011300 +in.county_and_puma G1201150, G12011501 +in.county_and_puma G1201150, G12011502 +in.county_and_puma G1201150, G12011503 +in.county_and_puma G1201170, G12011701 +in.county_and_puma G1201170, G12011702 +in.county_and_puma G1201170, G12011703 +in.county_and_puma G1201170, G12011704 +in.county_and_puma G1201190, G12006902 +in.county_and_puma G1201190, G12006903 +in.county_and_puma G1201210, G12012100 +in.county_and_puma G1201230, G12012100 +in.county_and_puma G1201270, G12012701 +in.county_and_puma G1201270, G12012702 +in.county_and_puma G1201270, G12012703 +in.county_and_puma G1201270, G12012704 +in.county_and_puma G1201290, G12006300 +in.county_and_puma G1201310, G12000500 +in.county_and_puma G1201330, G12000500 +in.county_and_puma G1300010, G13001200 +in.county_and_puma G1300090, G13001600 +in.county_and_puma G1300110, G13003500 +in.county_and_puma G1300130, G13003800 +in.county_and_puma G1300150, G13002900 +in.county_and_puma G1300170, G13000700 +in.county_and_puma G1300190, G13000700 +in.county_and_puma G1300210, G13001400 +in.county_and_puma G1300250, G13000500 +in.county_and_puma G1300270, G13000700 +in.county_and_puma G1300290, G13000200 +in.county_and_puma G1300310, G13000300 +in.county_and_puma G1300330, G13004200 +in.county_and_puma G1300350, G13001900 +in.county_and_puma G1300390, G13000100 +in.county_and_puma G1300450, G13002300 +in.county_and_puma G1300470, G13002600 +in.county_and_puma G1300510, G13000401 +in.county_and_puma G1300510, G13000402 +in.county_and_puma G1300550, G13002600 +in.county_and_puma G1300570, G13003101 +in.county_and_puma G1300570, G13003102 +in.county_and_puma G1300590, G13003600 +in.county_and_puma G1300630, G13005001 +in.county_and_puma G1300630, G13005002 +in.county_and_puma G1300670, G13003001 +in.county_and_puma G1300670, G13003002 +in.county_and_puma G1300670, G13003003 +in.county_and_puma G1300670, G13003004 +in.county_and_puma G1300670, G13003005 +in.county_and_puma G1300690, G13000500 +in.county_and_puma G1300710, G13000800 +in.county_and_puma G1300730, G13004100 +in.county_and_puma G1300750, G13000700 +in.county_and_puma G1300770, G13002100 +in.county_and_puma G1300810, G13001800 +in.county_and_puma G1300830, G13002600 +in.county_and_puma G1300850, G13003200 +in.county_and_puma G1300870, G13001100 +in.county_and_puma G1300890, G13001007 +in.county_and_puma G1300890, G13001008 +in.county_and_puma G1300890, G13002001 +in.county_and_puma G1300890, G13002002 +in.county_and_puma G1300890, G13002003 +in.county_and_puma G1300890, G13002004 +in.county_and_puma G1300910, G13001300 +in.county_and_puma G1300950, G13000900 +in.county_and_puma G1300970, G13004400 +in.county_and_puma G1301030, G13000300 +in.county_and_puma G1301050, G13003700 +in.county_and_puma G1301070, G13001300 +in.county_and_puma G1301110, G13002800 +in.county_and_puma G1301130, G13002400 +in.county_and_puma G1301150, G13002500 +in.county_and_puma G1301170, G13003300 +in.county_and_puma G1301190, G13003500 +in.county_and_puma G1301210, G13001001 +in.county_and_puma G1301210, G13001002 +in.county_and_puma G1301210, G13001003 +in.county_and_puma G1301210, G13001004 +in.county_and_puma G1301210, G13001005 +in.county_and_puma G1301210, G13001006 +in.county_and_puma G1301210, G13001007 +in.county_and_puma G1301210, G13004600 +in.county_and_puma G1301230, G13002800 +in.county_and_puma G1301270, G13000100 +in.county_and_puma G1301290, G13002800 +in.county_and_puma G1301310, G13001100 +in.county_and_puma G1301330, G13003700 +in.county_and_puma G1301350, G13004001 +in.county_and_puma G1301350, G13004002 +in.county_and_puma G1301350, G13004003 +in.county_and_puma G1301350, G13004004 +in.county_and_puma G1301350, G13004005 +in.county_and_puma G1301350, G13004006 +in.county_and_puma G1301370, G13003500 +in.county_and_puma G1301390, G13003400 +in.county_and_puma G1301430, G13002500 +in.county_and_puma G1301450, G13001800 +in.county_and_puma G1301470, G13003500 +in.county_and_puma G1301510, G13006001 +in.county_and_puma G1301510, G13006002 +in.county_and_puma G1301530, G13001500 +in.county_and_puma G1301570, G13003800 +in.county_and_puma G1301630, G13004200 +in.county_and_puma G1301690, G13001600 +in.county_and_puma G1301710, G13001900 +in.county_and_puma G1301750, G13001300 +in.county_and_puma G1301770, G13000900 +in.county_and_puma G1301790, G13000200 +in.county_and_puma G1301850, G13000600 +in.county_and_puma G1301870, G13003200 +in.county_and_puma G1301890, G13004200 +in.county_and_puma G1301910, G13000100 +in.county_and_puma G1301950, G13003700 +in.county_and_puma G1301990, G13002200 +in.county_and_puma G1302050, G13001100 +in.county_and_puma G1302070, G13001600 +in.county_and_puma G1302110, G13003900 +in.county_and_puma G1302130, G13002800 +in.county_and_puma G1302150, G13001700 +in.county_and_puma G1302170, G13004300 +in.county_and_puma G1302190, G13003700 +in.county_and_puma G1302230, G13004500 +in.county_and_puma G1302250, G13001600 +in.county_and_puma G1302270, G13002800 +in.county_and_puma G1302290, G13000500 +in.county_and_puma G1302310, G13001900 +in.county_and_puma G1302330, G13002500 +in.county_and_puma G1302370, G13001600 +in.county_and_puma G1302410, G13003200 +in.county_and_puma G1302450, G13004000 +in.county_and_puma G1302470, G13004300 +in.county_and_puma G1302510, G13000300 +in.county_and_puma G1302550, G13001900 +in.county_and_puma G1302570, G13003500 +in.county_and_puma G1302610, G13001800 +in.county_and_puma G1302670, G13001200 +in.county_and_puma G1302710, G13001200 +in.county_and_puma G1302750, G13000800 +in.county_and_puma G1302770, G13000700 +in.county_and_puma G1302790, G13001200 +in.county_and_puma G1302810, G13003200 +in.county_and_puma G1302850, G13002200 +in.county_and_puma G1302910, G13003200 +in.county_and_puma G1302930, G13001900 +in.county_and_puma G1302950, G13002600 +in.county_and_puma G1302970, G13003900 +in.county_and_puma G1302990, G13000500 +in.county_and_puma G1303030, G13004200 +in.county_and_puma G1303050, G13001200 +in.county_and_puma G1303110, G13003200 +in.county_and_puma G1303130, G13002700 +in.county_and_puma G1303210, G13000800 +in.county_and_puma G1500010, G15000200 +in.county_and_puma G1500030, G15000301 +in.county_and_puma G1500030, G15000302 +in.county_and_puma G1500030, G15000303 +in.county_and_puma G1500030, G15000304 +in.county_and_puma G1500030, G15000305 +in.county_and_puma G1500030, G15000306 +in.county_and_puma G1500030, G15000307 +in.county_and_puma G1500030, G15000308 +in.county_and_puma G1500070, G15000100 +in.county_and_puma G1500090, G15000100 +in.county_and_puma G1600010, G16000400 +in.county_and_puma G1600010, G16000600 +in.county_and_puma G1600010, G16000701 +in.county_and_puma G1600010, G16000702 +in.county_and_puma G1600010, G16000800 +in.county_and_puma G1600050, G16001300 +in.county_and_puma G1600110, G16001100 +in.county_and_puma G1600130, G16001000 +in.county_and_puma G1600170, G16000100 +in.county_and_puma G1600190, G16001200 +in.county_and_puma G1600270, G16000400 +in.county_and_puma G1600270, G16000500 +in.county_and_puma G1600270, G16000600 +in.county_and_puma G1600310, G16000900 +in.county_and_puma G1600390, G16001000 +in.county_and_puma G1600430, G16001100 +in.county_and_puma G1600450, G16000400 +in.county_and_puma G1600470, G16001000 +in.county_and_puma G1600490, G16000300 +in.county_and_puma G1600510, G16001100 +in.county_and_puma G1600530, G16001000 +in.county_and_puma G1600550, G16000200 +in.county_and_puma G1600570, G16000100 +in.county_and_puma G1600650, G16001100 +in.county_and_puma G1600670, G16001000 +in.county_and_puma G1600690, G16000300 +in.county_and_puma G1600750, G16000400 +in.county_and_puma G1600790, G16000100 +in.county_and_puma G1600810, G16001100 +in.county_and_puma G1600830, G16000900 +in.county_and_puma G1600850, G16000300 +in.county_and_puma G1700010, G17000300 +in.county_and_puma G1700050, G17000501 +in.county_and_puma G1700070, G17002901 +in.county_and_puma G1700110, G17002501 +in.county_and_puma G1700150, G17000104 +in.county_and_puma G1700190, G17002100 +in.county_and_puma G1700210, G17001602 +in.county_and_puma G1700230, G17000700 +in.county_and_puma G1700270, G17000501 +in.county_and_puma G1700290, G17000600 +in.county_and_puma G1700310, G17003401 +in.county_and_puma G1700310, G17003407 +in.county_and_puma G1700310, G17003408 +in.county_and_puma G1700310, G17003409 +in.county_and_puma G1700310, G17003410 +in.county_and_puma G1700310, G17003411 +in.county_and_puma G1700310, G17003412 +in.county_and_puma G1700310, G17003413 +in.county_and_puma G1700310, G17003414 +in.county_and_puma G1700310, G17003415 +in.county_and_puma G1700310, G17003416 +in.county_and_puma G1700310, G17003417 +in.county_and_puma G1700310, G17003418 +in.county_and_puma G1700310, G17003419 +in.county_and_puma G1700310, G17003420 +in.county_and_puma G1700310, G17003421 +in.county_and_puma G1700310, G17003422 +in.county_and_puma G1700310, G17003501 +in.county_and_puma G1700310, G17003502 +in.county_and_puma G1700310, G17003503 +in.county_and_puma G1700310, G17003504 +in.county_and_puma G1700310, G17003520 +in.county_and_puma G1700310, G17003521 +in.county_and_puma G1700310, G17003522 +in.county_and_puma G1700310, G17003523 +in.county_and_puma G1700310, G17003524 +in.county_and_puma G1700310, G17003525 +in.county_and_puma G1700310, G17003526 +in.county_and_puma G1700310, G17003527 +in.county_and_puma G1700310, G17003528 +in.county_and_puma G1700310, G17003529 +in.county_and_puma G1700310, G17003530 +in.county_and_puma G1700310, G17003531 +in.county_and_puma G1700310, G17003532 +in.county_and_puma G1700330, G17000700 +in.county_and_puma G1700370, G17002601 +in.county_and_puma G1700390, G17001602 +in.county_and_puma G1700410, G17000600 +in.county_and_puma G1700430, G17003202 +in.county_and_puma G1700430, G17003203 +in.county_and_puma G1700430, G17003204 +in.county_and_puma G1700430, G17003205 +in.county_and_puma G1700430, G17003207 +in.county_and_puma G1700430, G17003208 +in.county_and_puma G1700430, G17003209 +in.county_and_puma G1700450, G17000600 +in.county_and_puma G1700490, G17000501 +in.county_and_puma G1700510, G17000501 +in.county_and_puma G1700550, G17000900 +in.county_and_puma G1700570, G17000202 +in.county_and_puma G1700630, G17003700 +in.county_and_puma G1700670, G17000202 +in.county_and_puma G1700730, G17000202 +in.county_and_puma G1700750, G17002200 +in.county_and_puma G1700770, G17000900 +in.county_and_puma G1700810, G17001001 +in.county_and_puma G1700830, G17000401 +in.county_and_puma G1700850, G17000104 +in.county_and_puma G1700890, G17003005 +in.county_and_puma G1700890, G17003007 +in.county_and_puma G1700890, G17003008 +in.county_and_puma G1700890, G17003009 +in.county_and_puma G1700910, G17002300 +in.county_and_puma G1700930, G17003700 +in.county_and_puma G1700950, G17002501 +in.county_and_puma G1700970, G17003306 +in.county_and_puma G1700970, G17003307 +in.county_and_puma G1700970, G17003308 +in.county_and_puma G1700970, G17003309 +in.county_and_puma G1700970, G17003310 +in.county_and_puma G1700990, G17002400 +in.county_and_puma G1701030, G17000104 +in.county_and_puma G1701050, G17002200 +in.county_and_puma G1701070, G17001602 +in.county_and_puma G1701090, G17000202 +in.county_and_puma G1701110, G17003601 +in.county_and_puma G1701110, G17003602 +in.county_and_puma G1701130, G17002000 +in.county_and_puma G1701150, G17001500 +in.county_and_puma G1701170, G17000401 +in.county_and_puma G1701190, G17001204 +in.county_and_puma G1701190, G17001205 +in.county_and_puma G1701210, G17001001 +in.county_and_puma G1701250, G17000300 +in.county_and_puma G1701270, G17000800 +in.county_and_puma G1701310, G17000202 +in.county_and_puma G1701330, G17001001 +in.county_and_puma G1701350, G17000501 +in.county_and_puma G1701370, G17000401 +in.county_and_puma G1701410, G17002700 +in.county_and_puma G1701430, G17001701 +in.county_and_puma G1701450, G17000900 +in.county_and_puma G1701470, G17001602 +in.county_and_puma G1701490, G17000300 +in.county_and_puma G1701570, G17001001 +in.county_and_puma G1701590, G17000700 +in.county_and_puma G1701610, G17000105 +in.county_and_puma G1701630, G17001104 +in.county_and_puma G1701630, G17001105 +in.county_and_puma G1701650, G17000800 +in.county_and_puma G1701670, G17001300 +in.county_and_puma G1701730, G17001602 +in.county_and_puma G1701770, G17002700 +in.county_and_puma G1701790, G17001900 +in.county_and_puma G1701810, G17000800 +in.county_and_puma G1701830, G17002200 +in.county_and_puma G1701870, G17000202 +in.county_and_puma G1701890, G17001001 +in.county_and_puma G1701910, G17000700 +in.county_and_puma G1701930, G17000800 +in.county_and_puma G1701950, G17000104 +in.county_and_puma G1701970, G17003102 +in.county_and_puma G1701970, G17003105 +in.county_and_puma G1701970, G17003106 +in.county_and_puma G1701970, G17003107 +in.county_and_puma G1701970, G17003108 +in.county_and_puma G1701990, G17000900 +in.county_and_puma G1702010, G17002801 +in.county_and_puma G1702010, G17002901 +in.county_and_puma G1702030, G17002501 +in.county_and_puma G1800010, G18000900 +in.county_and_puma G1800030, G18001001 +in.county_and_puma G1800030, G18001002 +in.county_and_puma G1800030, G18001003 +in.county_and_puma G1800050, G18002900 +in.county_and_puma G1800110, G18001801 +in.county_and_puma G1800130, G18002100 +in.county_and_puma G1800150, G18001100 +in.county_and_puma G1800170, G18001300 +in.county_and_puma G1800190, G18003600 +in.county_and_puma G1800210, G18001600 +in.county_and_puma G1800230, G18001100 +in.county_and_puma G1800270, G18002700 +in.county_and_puma G1800290, G18003100 +in.county_and_puma G1800310, G18003000 +in.county_and_puma G1800330, G18000600 +in.county_and_puma G1800350, G18002000 +in.county_and_puma G1800370, G18003400 +in.county_and_puma G1800390, G18000500 +in.county_and_puma G1800410, G18002600 +in.county_and_puma G1800430, G18003500 +in.county_and_puma G1800450, G18001600 +in.county_and_puma G1800470, G18003100 +in.county_and_puma G1800490, G18000700 +in.county_and_puma G1800510, G18003200 +in.county_and_puma G1800530, G18001400 +in.county_and_puma G1800550, G18002700 +in.county_and_puma G1800570, G18001801 +in.county_and_puma G1800570, G18001802 +in.county_and_puma G1800570, G18001803 +in.county_and_puma G1800590, G18002500 +in.county_and_puma G1800610, G18003500 +in.county_and_puma G1800630, G18002200 +in.county_and_puma G1800650, G18001500 +in.county_and_puma G1800670, G18001300 +in.county_and_puma G1800690, G18000900 +in.county_and_puma G1800710, G18002900 +in.county_and_puma G1800730, G18000700 +in.county_and_puma G1800750, G18001500 +in.county_and_puma G1800770, G18003000 +in.county_and_puma G1800790, G18003000 +in.county_and_puma G1800810, G18002400 +in.county_and_puma G1800830, G18003400 +in.county_and_puma G1800850, G18000800 +in.county_and_puma G1800870, G18000600 +in.county_and_puma G1800890, G18000101 +in.county_and_puma G1800890, G18000102 +in.county_and_puma G1800890, G18000103 +in.county_and_puma G1800890, G18000104 +in.county_and_puma G1800910, G18000300 +in.county_and_puma G1800930, G18002700 +in.county_and_puma G1800950, G18001900 +in.county_and_puma G1800970, G18002301 +in.county_and_puma G1800970, G18002302 +in.county_and_puma G1800970, G18002303 +in.county_and_puma G1800970, G18002304 +in.county_and_puma G1800970, G18002305 +in.county_and_puma G1800970, G18002306 +in.county_and_puma G1800970, G18002307 +in.county_and_puma G1800990, G18000800 +in.county_and_puma G1801030, G18001400 +in.county_and_puma G1801050, G18002800 +in.county_and_puma G1801070, G18001100 +in.county_and_puma G1801090, G18002100 +in.county_and_puma G1801130, G18000600 +in.county_and_puma G1801170, G18002700 +in.county_and_puma G1801190, G18002700 +in.county_and_puma G1801210, G18001600 +in.county_and_puma G1801230, G18003400 +in.county_and_puma G1801270, G18000200 +in.county_and_puma G1801290, G18003200 +in.county_and_puma G1801330, G18002100 +in.county_and_puma G1801350, G18001500 +in.county_and_puma G1801370, G18003100 +in.county_and_puma G1801390, G18002600 +in.county_and_puma G1801410, G18000401 +in.county_and_puma G1801410, G18000402 +in.county_and_puma G1801430, G18003000 +in.county_and_puma G1801450, G18002500 +in.county_and_puma G1801470, G18003400 +in.county_and_puma G1801490, G18000700 +in.county_and_puma G1801510, G18000600 +in.county_and_puma G1801530, G18001600 +in.county_and_puma G1801570, G18001200 +in.county_and_puma G1801590, G18001300 +in.county_and_puma G1801630, G18003300 +in.county_and_puma G1801650, G18001600 +in.county_and_puma G1801670, G18001700 +in.county_and_puma G1801690, G18001400 +in.county_and_puma G1801730, G18003200 +in.county_and_puma G1801750, G18003500 +in.county_and_puma G1801770, G18002600 +in.county_and_puma G1801790, G18000900 +in.county_and_puma G1801810, G18001100 +in.county_and_puma G1801830, G18000900 +in.county_and_puma G1900050, G19000400 +in.county_and_puma G1900070, G19001800 +in.county_and_puma G1900110, G19001200 +in.county_and_puma G1900130, G19000500 +in.county_and_puma G1900150, G19001300 +in.county_and_puma G1900170, G19000400 +in.county_and_puma G1900190, G19000700 +in.county_and_puma G1900210, G19001900 +in.county_and_puma G1900230, G19000600 +in.county_and_puma G1900270, G19001900 +in.county_and_puma G1900290, G19002100 +in.county_and_puma G1900310, G19000800 +in.county_and_puma G1900330, G19000200 +in.county_and_puma G1900410, G19000100 +in.county_and_puma G1900430, G19000400 +in.county_and_puma G1900450, G19000800 +in.county_and_puma G1900470, G19001900 +in.county_and_puma G1900490, G19001400 +in.county_and_puma G1900490, G19001500 +in.county_and_puma G1900550, G19000700 +in.county_and_puma G1900570, G19002300 +in.county_and_puma G1900590, G19000100 +in.county_and_puma G1900610, G19000700 +in.county_and_puma G1900650, G19000400 +in.county_and_puma G1900670, G19000200 +in.county_and_puma G1900790, G19000600 +in.county_and_puma G1900830, G19000600 +in.county_and_puma G1900850, G19002100 +in.county_and_puma G1900870, G19002300 +in.county_and_puma G1900950, G19001200 +in.county_and_puma G1900970, G19000700 +in.county_and_puma G1900990, G19001400 +in.county_and_puma G1901010, G19002200 +in.county_and_puma G1901030, G19001100 +in.county_and_puma G1901050, G19000800 +in.county_and_puma G1901090, G19000200 +in.county_and_puma G1901110, G19002300 +in.county_and_puma G1901130, G19001000 +in.county_and_puma G1901210, G19001400 +in.county_and_puma G1901230, G19002200 +in.county_and_puma G1901250, G19001400 +in.county_and_puma G1901270, G19001200 +in.county_and_puma G1901390, G19000800 +in.county_and_puma G1901410, G19000100 +in.county_and_puma G1901450, G19002100 +in.county_and_puma G1901490, G19002000 +in.county_and_puma G1901530, G19001500 +in.county_and_puma G1901530, G19001600 +in.county_and_puma G1901530, G19001700 +in.county_and_puma G1901550, G19002100 +in.county_and_puma G1901570, G19001200 +in.county_and_puma G1901630, G19000900 +in.county_and_puma G1901670, G19000100 +in.county_and_puma G1901690, G19001300 +in.county_and_puma G1901710, G19001200 +in.county_and_puma G1901790, G19002200 +in.county_and_puma G1901810, G19001400 +in.county_and_puma G1901830, G19002200 +in.county_and_puma G1901870, G19000600 +in.county_and_puma G1901910, G19000400 +in.county_and_puma G1901930, G19002000 +in.county_and_puma G2000050, G20000400 +in.county_and_puma G2000090, G20001100 +in.county_and_puma G2000110, G20001400 +in.county_and_puma G2000150, G20001302 +in.county_and_puma G2000210, G20001500 +in.county_and_puma G2000350, G20000900 +in.county_and_puma G2000350, G20001100 +in.county_and_puma G2000370, G20001500 +in.county_and_puma G2000410, G20000200 +in.county_and_puma G2000450, G20000700 +in.county_and_puma G2000510, G20000100 +in.county_and_puma G2000550, G20001200 +in.county_and_puma G2000570, G20001200 +in.county_and_puma G2000590, G20001400 +in.county_and_puma G2000610, G20000300 +in.county_and_puma G2000790, G20001301 +in.county_and_puma G2000870, G20000400 +in.county_and_puma G2000910, G20000601 +in.county_and_puma G2000910, G20000602 +in.county_and_puma G2000910, G20000603 +in.county_and_puma G2000910, G20000604 +in.county_and_puma G2000990, G20001500 +in.county_and_puma G2001030, G20000400 +in.county_and_puma G2001110, G20000900 +in.county_and_puma G2001130, G20001000 +in.county_and_puma G2001210, G20001400 +in.county_and_puma G2001250, G20001500 +in.county_and_puma G2001330, G20001500 +in.county_and_puma G2001390, G20000802 +in.county_and_puma G2001490, G20000300 +in.county_and_puma G2001550, G20001000 +in.county_and_puma G2001610, G20000300 +in.county_and_puma G2001690, G20000200 +in.county_and_puma G2001730, G20001301 +in.county_and_puma G2001730, G20001302 +in.county_and_puma G2001730, G20001303 +in.county_and_puma G2001730, G20001304 +in.county_and_puma G2001750, G20001200 +in.county_and_puma G2001770, G20000801 +in.county_and_puma G2001770, G20000802 +in.county_and_puma G2001910, G20001100 +in.county_and_puma G2002090, G20000500 +in.county_and_puma G2100010, G21000600 +in.county_and_puma G2100030, G21000400 +in.county_and_puma G2100050, G21002000 +in.county_and_puma G2100090, G21000400 +in.county_and_puma G2100130, G21000900 +in.county_and_puma G2100150, G21002500 +in.county_and_puma G2100170, G21002300 +in.county_and_puma G2100190, G21002800 +in.county_and_puma G2100210, G21002100 +in.county_and_puma G2100270, G21001300 +in.county_and_puma G2100290, G21001600 +in.county_and_puma G2100350, G21000100 +in.county_and_puma G2100370, G21002600 +in.county_and_puma G2100430, G21002800 +in.county_and_puma G2100450, G21000600 +in.county_and_puma G2100470, G21000300 +in.county_and_puma G2100490, G21002300 +in.county_and_puma G2100510, G21000800 +in.county_and_puma G2100590, G21001500 +in.county_and_puma G2100650, G21002200 +in.county_and_puma G2100670, G21001901 +in.county_and_puma G2100670, G21001902 +in.county_and_puma G2100690, G21002700 +in.county_and_puma G2100710, G21001100 +in.county_and_puma G2100730, G21002000 +in.county_and_puma G2100790, G21002100 +in.county_and_puma G2100810, G21002600 +in.county_and_puma G2100830, G21000100 +in.county_and_puma G2100850, G21001300 +in.county_and_puma G2100890, G21002800 +in.county_and_puma G2100930, G21001200 +in.county_and_puma G2100930, G21001300 +in.county_and_puma G2100950, G21000900 +in.county_and_puma G2100970, G21002300 +in.county_and_puma G2100990, G21000400 +in.county_and_puma G2101010, G21001400 +in.county_and_puma G2101030, G21001800 +in.county_and_puma G2101070, G21000200 +in.county_and_puma G2101110, G21001701 +in.county_and_puma G2101110, G21001702 +in.county_and_puma G2101110, G21001703 +in.county_and_puma G2101110, G21001704 +in.county_and_puma G2101110, G21001705 +in.county_and_puma G2101110, G21001706 +in.county_and_puma G2101130, G21002100 +in.county_and_puma G2101150, G21001100 +in.county_and_puma G2101170, G21002400 +in.county_and_puma G2101190, G21001000 +in.county_and_puma G2101210, G21000900 +in.county_and_puma G2101250, G21000800 +in.county_and_puma G2101270, G21002800 +in.county_and_puma G2101330, G21001000 +in.county_and_puma G2101370, G21002100 +in.county_and_puma G2101410, G21000400 +in.county_and_puma G2101450, G21000100 +in.county_and_puma G2101470, G21000700 +in.county_and_puma G2101510, G21002200 +in.county_and_puma G2101550, G21001200 +in.county_and_puma G2101570, G21000100 +in.county_and_puma G2101610, G21002700 +in.county_and_puma G2101630, G21001300 +in.county_and_puma G2101670, G21002000 +in.county_and_puma G2101730, G21002700 +in.county_and_puma G2101770, G21000200 +in.county_and_puma G2101790, G21001200 +in.county_and_puma G2101830, G21001400 +in.county_and_puma G2101850, G21001800 +in.county_and_puma G2101930, G21001000 +in.county_and_puma G2101950, G21001100 +in.county_and_puma G2101990, G21000700 +in.county_and_puma G2102030, G21000800 +in.county_and_puma G2102050, G21002700 +in.county_and_puma G2102070, G21000600 +in.county_and_puma G2102090, G21002300 +in.county_and_puma G2102110, G21001800 +in.county_and_puma G2102130, G21000400 +in.county_and_puma G2102150, G21001600 +in.county_and_puma G2102170, G21000600 +in.county_and_puma G2102210, G21000300 +in.county_and_puma G2102270, G21000500 +in.county_and_puma G2102310, G21000700 +in.county_and_puma G2102350, G21000900 +in.county_and_puma G2102390, G21002000 +in.county_and_puma G2200010, G22001100 +in.county_and_puma G2200030, G22000800 +in.county_and_puma G2200050, G22001600 +in.county_and_puma G2200070, G22002000 +in.county_and_puma G2200090, G22000600 +in.county_and_puma G2200110, G22000800 +in.county_and_puma G2200130, G22000300 +in.county_and_puma G2200150, G22000200 +in.county_and_puma G2200170, G22000100 +in.county_and_puma G2200170, G22000101 +in.county_and_puma G2200190, G22000800 +in.county_and_puma G2200190, G22000900 +in.county_and_puma G2200270, G22000300 +in.county_and_puma G2200290, G22000600 +in.county_and_puma G2200310, G22000300 +in.county_and_puma G2200330, G22001500 +in.county_and_puma G2200330, G22001501 +in.county_and_puma G2200330, G22001502 +in.county_and_puma G2200370, G22001400 +in.county_and_puma G2200390, G22001000 +in.county_and_puma G2200410, G22000500 +in.county_and_puma G2200430, G22000600 +in.county_and_puma G2200450, G22001300 +in.county_and_puma G2200470, G22001400 +in.county_and_puma G2200490, G22000500 +in.county_and_puma G2200510, G22002300 +in.county_and_puma G2200510, G22002301 +in.county_and_puma G2200510, G22002302 +in.county_and_puma G2200510, G22002500 +in.county_and_puma G2200530, G22000900 +in.county_and_puma G2200550, G22001200 +in.county_and_puma G2200550, G22001201 +in.county_and_puma G2200570, G22002000 +in.county_and_puma G2200610, G22000300 +in.county_and_puma G2200630, G22001700 +in.county_and_puma G2200670, G22000500 +in.county_and_puma G2200690, G22000300 +in.county_and_puma G2200710, G22002400 +in.county_and_puma G2200710, G22002401 +in.county_and_puma G2200710, G22002402 +in.county_and_puma G2200730, G22000400 +in.county_and_puma G2200750, G22002500 +in.county_and_puma G2200770, G22001400 +in.county_and_puma G2200790, G22000700 +in.county_and_puma G2200830, G22000500 +in.county_and_puma G2200850, G22000300 +in.county_and_puma G2200870, G22002500 +in.county_and_puma G2200890, G22001900 +in.county_and_puma G2200930, G22001900 +in.county_and_puma G2200950, G22001900 +in.county_and_puma G2200970, G22001000 +in.county_and_puma G2200990, G22001300 +in.county_and_puma G2201010, G22001300 +in.county_and_puma G2201030, G22002200 +in.county_and_puma G2201030, G22002201 +in.county_and_puma G2201050, G22001800 +in.county_and_puma G2201090, G22002100 +in.county_and_puma G2201110, G22000500 +in.county_and_puma G2201130, G22001100 +in.county_and_puma G2201150, G22000700 +in.county_and_puma G2201170, G22001800 +in.county_and_puma G2201190, G22000200 +in.county_and_puma G2201210, G22001400 +in.county_and_puma G2201270, G22000600 +in.county_and_puma G2300010, G23000600 +in.county_and_puma G2300030, G23000100 +in.county_and_puma G2300050, G23000700 +in.county_and_puma G2300050, G23000800 +in.county_and_puma G2300050, G23000900 +in.county_and_puma G2300050, G23001000 +in.county_and_puma G2300070, G23000200 +in.county_and_puma G2300090, G23000500 +in.county_and_puma G2300110, G23000400 +in.county_and_puma G2300130, G23000500 +in.county_and_puma G2300150, G23000500 +in.county_and_puma G2300170, G23000200 +in.county_and_puma G2300190, G23000300 +in.county_and_puma G2300210, G23000200 +in.county_and_puma G2300230, G23000700 +in.county_and_puma G2300250, G23000200 +in.county_and_puma G2300270, G23000500 +in.county_and_puma G2300290, G23000100 +in.county_and_puma G2300310, G23000800 +in.county_and_puma G2300310, G23000900 +in.county_and_puma G2400010, G24000100 +in.county_and_puma G2400030, G24001201 +in.county_and_puma G2400030, G24001202 +in.county_and_puma G2400030, G24001203 +in.county_and_puma G2400030, G24001204 +in.county_and_puma G2400050, G24000501 +in.county_and_puma G2400050, G24000502 +in.county_and_puma G2400050, G24000503 +in.county_and_puma G2400050, G24000504 +in.county_and_puma G2400050, G24000505 +in.county_and_puma G2400050, G24000506 +in.county_and_puma G2400050, G24000507 +in.county_and_puma G2400090, G24001500 +in.county_and_puma G2400110, G24001300 +in.county_and_puma G2400130, G24000400 +in.county_and_puma G2400150, G24000700 +in.county_and_puma G2400170, G24001600 +in.county_and_puma G2400190, G24001300 +in.county_and_puma G2400210, G24000301 +in.county_and_puma G2400210, G24000302 +in.county_and_puma G2400230, G24000100 +in.county_and_puma G2400250, G24000601 +in.county_and_puma G2400250, G24000602 +in.county_and_puma G2400270, G24000901 +in.county_and_puma G2400270, G24000902 +in.county_and_puma G2400290, G24001300 +in.county_and_puma G2400310, G24001001 +in.county_and_puma G2400310, G24001002 +in.county_and_puma G2400310, G24001003 +in.county_and_puma G2400310, G24001004 +in.county_and_puma G2400310, G24001005 +in.county_and_puma G2400310, G24001006 +in.county_and_puma G2400310, G24001007 +in.county_and_puma G2400330, G24001101 +in.county_and_puma G2400330, G24001102 +in.county_and_puma G2400330, G24001103 +in.county_and_puma G2400330, G24001104 +in.county_and_puma G2400330, G24001105 +in.county_and_puma G2400330, G24001106 +in.county_and_puma G2400330, G24001107 +in.county_and_puma G2400350, G24001300 +in.county_and_puma G2400370, G24001500 +in.county_and_puma G2400390, G24001400 +in.county_and_puma G2400410, G24001300 +in.county_and_puma G2400430, G24000200 +in.county_and_puma G2400450, G24001400 +in.county_and_puma G2400470, G24001400 +in.county_and_puma G2405100, G24000801 +in.county_and_puma G2405100, G24000802 +in.county_and_puma G2405100, G24000803 +in.county_and_puma G2405100, G24000804 +in.county_and_puma G2405100, G24000805 +in.county_and_puma G2500010, G25004700 +in.county_and_puma G2500010, G25004800 +in.county_and_puma G2500030, G25000100 +in.county_and_puma G2500050, G25004200 +in.county_and_puma G2500050, G25004301 +in.county_and_puma G2500050, G25004302 +in.county_and_puma G2500050, G25004303 +in.county_and_puma G2500050, G25004500 +in.county_and_puma G2500050, G25004901 +in.county_and_puma G2500070, G25004800 +in.county_and_puma G2500090, G25000701 +in.county_and_puma G2500090, G25000702 +in.county_and_puma G2500090, G25000703 +in.county_and_puma G2500090, G25000704 +in.county_and_puma G2500090, G25001000 +in.county_and_puma G2500090, G25001300 +in.county_and_puma G2500090, G25002800 +in.county_and_puma G2500110, G25000200 +in.county_and_puma G2500130, G25001600 +in.county_and_puma G2500130, G25001900 +in.county_and_puma G2500130, G25001901 +in.county_and_puma G2500130, G25001902 +in.county_and_puma G2500150, G25000200 +in.county_and_puma G2500150, G25001600 +in.county_and_puma G2500170, G25000400 +in.county_and_puma G2500170, G25000501 +in.county_and_puma G2500170, G25000502 +in.county_and_puma G2500170, G25000503 +in.county_and_puma G2500170, G25000504 +in.county_and_puma G2500170, G25000505 +in.county_and_puma G2500170, G25000506 +in.county_and_puma G2500170, G25000507 +in.county_and_puma G2500170, G25000508 +in.county_and_puma G2500170, G25001000 +in.county_and_puma G2500170, G25001300 +in.county_and_puma G2500170, G25001400 +in.county_and_puma G2500170, G25002400 +in.county_and_puma G2500170, G25002800 +in.county_and_puma G2500170, G25003400 +in.county_and_puma G2500170, G25003500 +in.county_and_puma G2500190, G25004800 +in.county_and_puma G2500210, G25002400 +in.county_and_puma G2500210, G25003400 +in.county_and_puma G2500210, G25003500 +in.county_and_puma G2500210, G25003601 +in.county_and_puma G2500210, G25003602 +in.county_and_puma G2500210, G25003603 +in.county_and_puma G2500210, G25003900 +in.county_and_puma G2500210, G25004000 +in.county_and_puma G2500230, G25003900 +in.county_and_puma G2500230, G25004000 +in.county_and_puma G2500230, G25004301 +in.county_and_puma G2500230, G25004901 +in.county_and_puma G2500230, G25004902 +in.county_and_puma G2500230, G25004903 +in.county_and_puma G2500250, G25003301 +in.county_and_puma G2500250, G25003302 +in.county_and_puma G2500250, G25003303 +in.county_and_puma G2500250, G25003304 +in.county_and_puma G2500250, G25003305 +in.county_and_puma G2500250, G25003306 +in.county_and_puma G2500270, G25000300 +in.county_and_puma G2500270, G25000301 +in.county_and_puma G2500270, G25000302 +in.county_and_puma G2500270, G25000303 +in.county_and_puma G2500270, G25000304 +in.county_and_puma G2500270, G25000400 +in.county_and_puma G2500270, G25002400 +in.county_and_puma G2600010, G26000300 +in.county_and_puma G2600030, G26000200 +in.county_and_puma G2600050, G26000900 +in.county_and_puma G2600070, G26000300 +in.county_and_puma G2600090, G26000400 +in.county_and_puma G2600110, G26001300 +in.county_and_puma G2600150, G26002000 +in.county_and_puma G2600170, G26001400 +in.county_and_puma G2600190, G26000500 +in.county_and_puma G2600210, G26002400 +in.county_and_puma G2600230, G26002200 +in.county_and_puma G2600250, G26002000 +in.county_and_puma G2600270, G26002300 +in.county_and_puma G2600290, G26000400 +in.county_and_puma G2600310, G26000300 +in.county_and_puma G2600330, G26000200 +in.county_and_puma G2600350, G26001200 +in.county_and_puma G2600370, G26001900 +in.county_and_puma G2600390, G26000300 +in.county_and_puma G2600410, G26000200 +in.county_and_puma G2600430, G26000100 +in.county_and_puma G2600450, G26001900 +in.county_and_puma G2600470, G26000400 +in.county_and_puma G2600490, G26001701 +in.county_and_puma G2600490, G26001702 +in.county_and_puma G2600490, G26001703 +in.county_and_puma G2600490, G26001704 +in.county_and_puma G2600510, G26001300 +in.county_and_puma G2600530, G26000100 +in.county_and_puma G2600550, G26000500 +in.county_and_puma G2600570, G26001200 +in.county_and_puma G2600590, G26002500 +in.county_and_puma G2600610, G26000100 +in.county_and_puma G2600630, G26001600 +in.county_and_puma G2600650, G26001801 +in.county_and_puma G2600650, G26001802 +in.county_and_puma G2600670, G26001100 +in.county_and_puma G2600690, G26001300 +in.county_and_puma G2600710, G26000100 +in.county_and_puma G2600730, G26001200 +in.county_and_puma G2600750, G26002600 +in.county_and_puma G2600770, G26002101 +in.county_and_puma G2600770, G26002102 +in.county_and_puma G2600790, G26000400 +in.county_and_puma G2600810, G26001001 +in.county_and_puma G2600810, G26001002 +in.county_and_puma G2600810, G26001003 +in.county_and_puma G2600810, G26001004 +in.county_and_puma G2600850, G26000600 +in.county_and_puma G2600870, G26001701 +in.county_and_puma G2600890, G26000500 +in.county_and_puma G2600910, G26002500 +in.county_and_puma G2600930, G26002800 +in.county_and_puma G2600970, G26000200 +in.county_and_puma G2600990, G26003001 +in.county_and_puma G2600990, G26003002 +in.county_and_puma G2600990, G26003003 +in.county_and_puma G2600990, G26003004 +in.county_and_puma G2600990, G26003005 +in.county_and_puma G2600990, G26003006 +in.county_and_puma G2601010, G26000500 +in.county_and_puma G2601030, G26000100 +in.county_and_puma G2601050, G26000600 +in.county_and_puma G2601070, G26001100 +in.county_and_puma G2601090, G26000200 +in.county_and_puma G2601110, G26001400 +in.county_and_puma G2601130, G26000400 +in.county_and_puma G2601150, G26003300 +in.county_and_puma G2601170, G26001100 +in.county_and_puma G2601190, G26000300 +in.county_and_puma G2601210, G26000700 +in.county_and_puma G2601230, G26000600 +in.county_and_puma G2601250, G26002901 +in.county_and_puma G2601250, G26002902 +in.county_and_puma G2601250, G26002903 +in.county_and_puma G2601250, G26002904 +in.county_and_puma G2601250, G26002905 +in.county_and_puma G2601250, G26002906 +in.county_and_puma G2601250, G26002907 +in.county_and_puma G2601250, G26002908 +in.county_and_puma G2601270, G26000600 +in.county_and_puma G2601290, G26001300 +in.county_and_puma G2601330, G26001100 +in.county_and_puma G2601350, G26000300 +in.county_and_puma G2601370, G26000300 +in.county_and_puma G2601390, G26000801 +in.county_and_puma G2601390, G26000802 +in.county_and_puma G2601410, G26000300 +in.county_and_puma G2601430, G26001300 +in.county_and_puma G2601450, G26001500 +in.county_and_puma G2601470, G26003100 +in.county_and_puma G2601490, G26002200 +in.county_and_puma G2601510, G26001600 +in.county_and_puma G2601530, G26000200 +in.county_and_puma G2601550, G26001704 +in.county_and_puma G2601570, G26001600 +in.county_and_puma G2601590, G26002300 +in.county_and_puma G2601610, G26002701 +in.county_and_puma G2601610, G26002702 +in.county_and_puma G2601610, G26002703 +in.county_and_puma G2601630, G26003201 +in.county_and_puma G2601630, G26003202 +in.county_and_puma G2601630, G26003203 +in.county_and_puma G2601630, G26003204 +in.county_and_puma G2601630, G26003205 +in.county_and_puma G2601630, G26003206 +in.county_and_puma G2601630, G26003207 +in.county_and_puma G2601630, G26003208 +in.county_and_puma G2601630, G26003209 +in.county_and_puma G2601630, G26003210 +in.county_and_puma G2601630, G26003211 +in.county_and_puma G2601630, G26003212 +in.county_and_puma G2601630, G26003213 +in.county_and_puma G2601650, G26000400 +in.county_and_puma G2700010, G27000300 +in.county_and_puma G2700030, G27001101 +in.county_and_puma G2700030, G27001102 +in.county_and_puma G2700030, G27001103 +in.county_and_puma G2700050, G27000200 +in.county_and_puma G2700070, G27000200 +in.county_and_puma G2700090, G27001000 +in.county_and_puma G2700130, G27002200 +in.county_and_puma G2700150, G27002000 +in.county_and_puma G2700170, G27000300 +in.county_and_puma G2700190, G27001700 +in.county_and_puma G2700210, G27000300 +in.county_and_puma G2700250, G27000600 +in.county_and_puma G2700270, G27000100 +in.county_and_puma G2700310, G27000400 +in.county_and_puma G2700350, G27000700 +in.county_and_puma G2700370, G27001501 +in.county_and_puma G2700370, G27001502 +in.county_and_puma G2700370, G27001503 +in.county_and_puma G2700390, G27002400 +in.county_and_puma G2700410, G27000800 +in.county_and_puma G2700430, G27002100 +in.county_and_puma G2700450, G27002600 +in.county_and_puma G2700470, G27002400 +in.county_and_puma G2700490, G27002300 +in.county_and_puma G2700530, G27001401 +in.county_and_puma G2700530, G27001402 +in.county_and_puma G2700530, G27001403 +in.county_and_puma G2700530, G27001404 +in.county_and_puma G2700530, G27001405 +in.county_and_puma G2700530, G27001406 +in.county_and_puma G2700530, G27001407 +in.county_and_puma G2700530, G27001408 +in.county_and_puma G2700530, G27001409 +in.county_and_puma G2700530, G27001410 +in.county_and_puma G2700550, G27002600 +in.county_and_puma G2700570, G27000200 +in.county_and_puma G2700590, G27000600 +in.county_and_puma G2700610, G27000300 +in.county_and_puma G2700650, G27000600 +in.county_and_puma G2700670, G27001900 +in.county_and_puma G2700710, G27000400 +in.county_and_puma G2700750, G27000400 +in.county_and_puma G2700790, G27002300 +in.county_and_puma G2700830, G27002000 +in.county_and_puma G2700850, G27001900 +in.county_and_puma G2700910, G27002100 +in.county_and_puma G2700930, G27001900 +in.county_and_puma G2700950, G27000600 +in.county_and_puma G2700970, G27000700 +in.county_and_puma G2700990, G27002400 +in.county_and_puma G2701030, G27002200 +in.county_and_puma G2701050, G27002100 +in.county_and_puma G2701090, G27002500 +in.county_and_puma G2701110, G27000800 +in.county_and_puma G2701130, G27000100 +in.county_and_puma G2701150, G27000600 +in.county_and_puma G2701190, G27000100 +in.county_and_puma G2701230, G27001301 +in.county_and_puma G2701230, G27001302 +in.county_and_puma G2701230, G27001303 +in.county_and_puma G2701230, G27001304 +in.county_and_puma G2701270, G27002000 +in.county_and_puma G2701290, G27001900 +in.county_and_puma G2701310, G27002300 +in.county_and_puma G2701350, G27000100 +in.county_and_puma G2701370, G27000400 +in.county_and_puma G2701370, G27000500 +in.county_and_puma G2701390, G27001600 +in.county_and_puma G2701410, G27001000 +in.county_and_puma G2701450, G27000900 +in.county_and_puma G2701470, G27002400 +in.county_and_puma G2701530, G27000700 +in.county_and_puma G2701570, G27002600 +in.county_and_puma G2701590, G27000700 +in.county_and_puma G2701610, G27002200 +in.county_and_puma G2701630, G27001201 +in.county_and_puma G2701630, G27001202 +in.county_and_puma G2701690, G27002600 +in.county_and_puma G2701710, G27001800 +in.county_and_puma G2800010, G28001600 +in.county_and_puma G2800030, G28000200 +in.county_and_puma G2800050, G28001600 +in.county_and_puma G2800070, G28000700 +in.county_and_puma G2800110, G28000800 +in.county_and_puma G2800130, G28000400 +in.county_and_puma G2800170, G28000400 +in.county_and_puma G2800230, G28001500 +in.county_and_puma G2800250, G28000600 +in.county_and_puma G2800270, G28000300 +in.county_and_puma G2800290, G28001200 +in.county_and_puma G2800310, G28001700 +in.county_and_puma G2800330, G28000100 +in.county_and_puma G2800350, G28001800 +in.county_and_puma G2800390, G28001900 +in.county_and_puma G2800430, G28000700 +in.county_and_puma G2800450, G28001900 +in.county_and_puma G2800470, G28002000 +in.county_and_puma G2800490, G28001000 +in.county_and_puma G2800490, G28001100 +in.county_and_puma G2800490, G28001200 +in.county_and_puma G2800510, G28000700 +in.county_and_puma G2800570, G28000400 +in.county_and_puma G2800590, G28002100 +in.county_and_puma G2800610, G28001400 +in.county_and_puma G2800670, G28001700 +in.county_and_puma G2800710, G28000400 +in.county_and_puma G2800730, G28001800 +in.county_and_puma G2800750, G28001500 +in.county_and_puma G2800790, G28001400 +in.county_and_puma G2800810, G28000500 +in.county_and_puma G2800830, G28000700 +in.county_and_puma G2800850, G28001600 +in.county_and_puma G2800870, G28000600 +in.county_and_puma G2800890, G28000900 +in.county_and_puma G2800890, G28001000 +in.county_and_puma G2800910, G28001800 +in.county_and_puma G2800930, G28000200 +in.county_and_puma G2800950, G28000400 +in.county_and_puma G2800990, G28001400 +in.county_and_puma G2801010, G28001500 +in.county_and_puma G2801050, G28000600 +in.county_and_puma G2801070, G28000300 +in.county_and_puma G2801090, G28001900 +in.county_and_puma G2801130, G28001600 +in.county_and_puma G2801150, G28000500 +in.county_and_puma G2801170, G28000200 +in.county_and_puma G2801210, G28001300 +in.county_and_puma G2801230, G28001400 +in.county_and_puma G2801270, G28001300 +in.county_and_puma G2801290, G28001400 +in.county_and_puma G2801310, G28001900 +in.county_and_puma G2801330, G28000800 +in.county_and_puma G2801370, G28000300 +in.county_and_puma G2801390, G28000200 +in.county_and_puma G2801410, G28000200 +in.county_and_puma G2801450, G28000500 +in.county_and_puma G2801470, G28001600 +in.county_and_puma G2801490, G28001200 +in.county_and_puma G2801510, G28000800 +in.county_and_puma G2801530, G28001700 +in.county_and_puma G2801590, G28000600 +in.county_and_puma G2801630, G28000900 +in.county_and_puma G2900010, G29000300 +in.county_and_puma G2900030, G29000200 +in.county_and_puma G2900070, G29000400 +in.county_and_puma G2900090, G29002700 +in.county_and_puma G2900130, G29001100 +in.county_and_puma G2900150, G29001300 +in.county_and_puma G2900190, G29000600 +in.county_and_puma G2900210, G29000200 +in.county_and_puma G2900230, G29002400 +in.county_and_puma G2900270, G29000500 +in.county_and_puma G2900290, G29001400 +in.county_and_puma G2900310, G29002200 +in.county_and_puma G2900370, G29001100 +in.county_and_puma G2900390, G29001200 +in.county_and_puma G2900430, G29002601 +in.county_and_puma G2900470, G29000901 +in.county_and_puma G2900470, G29000902 +in.county_and_puma G2900490, G29000800 +in.county_and_puma G2900510, G29000500 +in.county_and_puma G2900530, G29000700 +in.county_and_puma G2900550, G29001500 +in.county_and_puma G2900590, G29001300 +in.county_and_puma G2900650, G29001500 +in.county_and_puma G2900690, G29002300 +in.county_and_puma G2900710, G29001600 +in.county_and_puma G2900730, G29001500 +in.county_and_puma G2900770, G29002601 +in.county_and_puma G2900770, G29002602 +in.county_and_puma G2900770, G29002603 +in.county_and_puma G2900830, G29001200 +in.county_and_puma G2900850, G29001300 +in.county_and_puma G2900910, G29002500 +in.county_and_puma G2900950, G29001001 +in.county_and_puma G2900950, G29001002 +in.county_and_puma G2900950, G29001003 +in.county_and_puma G2900950, G29001004 +in.county_and_puma G2900950, G29001005 +in.county_and_puma G2900970, G29002800 +in.county_and_puma G2900990, G29002001 +in.county_and_puma G2900990, G29002002 +in.county_and_puma G2901010, G29000800 +in.county_and_puma G2901050, G29001300 +in.county_and_puma G2901070, G29000800 +in.county_and_puma G2901090, G29001200 +in.county_and_puma G2901130, G29000400 +in.county_and_puma G2901170, G29000100 +in.county_and_puma G2901190, G29002700 +in.county_and_puma G2901210, G29000300 +in.county_and_puma G2901270, G29000300 +in.county_and_puma G2901310, G29001400 +in.county_and_puma G2901410, G29001400 +in.county_and_puma G2901430, G29002300 +in.county_and_puma G2901450, G29002800 +in.county_and_puma G2901470, G29000100 +in.county_and_puma G2901510, G29000500 +in.county_and_puma G2901550, G29002300 +in.county_and_puma G2901570, G29002100 +in.county_and_puma G2901590, G29000700 +in.county_and_puma G2901610, G29001500 +in.county_and_puma G2901630, G29000400 +in.county_and_puma G2901650, G29000903 +in.county_and_puma G2901670, G29001300 +in.county_and_puma G2901690, G29001400 +in.county_and_puma G2901750, G29000700 +in.county_and_puma G2901770, G29000800 +in.county_and_puma G2901810, G29002400 +in.county_and_puma G2901830, G29001701 +in.county_and_puma G2901830, G29001702 +in.county_and_puma G2901830, G29001703 +in.county_and_puma G2901860, G29002100 +in.county_and_puma G2901870, G29002100 +in.county_and_puma G2901890, G29001801 +in.county_and_puma G2901890, G29001802 +in.county_and_puma G2901890, G29001803 +in.county_and_puma G2901890, G29001804 +in.county_and_puma G2901890, G29001805 +in.county_and_puma G2901890, G29001806 +in.county_and_puma G2901890, G29001807 +in.county_and_puma G2901890, G29001808 +in.county_and_puma G2901950, G29000700 +in.county_and_puma G2902010, G29002200 +in.county_and_puma G2902070, G29002300 +in.county_and_puma G2902090, G29002700 +in.county_and_puma G2902130, G29002700 +in.county_and_puma G2902150, G29002500 +in.county_and_puma G2902170, G29001200 +in.county_and_puma G2902190, G29000400 +in.county_and_puma G2902210, G29002100 +in.county_and_puma G2902230, G29002400 +in.county_and_puma G2902250, G29002601 +in.county_and_puma G2902290, G29002500 +in.county_and_puma G2905100, G29001901 +in.county_and_puma G2905100, G29001902 +in.county_and_puma G3000090, G30000500 +in.county_and_puma G3000130, G30000400 +in.county_and_puma G3000170, G30000600 +in.county_and_puma G3000270, G30000400 +in.county_and_puma G3000290, G30000100 +in.county_and_puma G3000310, G30000500 +in.county_and_puma G3000410, G30000400 +in.county_and_puma G3000470, G30000200 +in.county_and_puma G3000490, G30000300 +in.county_and_puma G3000530, G30000100 +in.county_and_puma G3000570, G30000300 +in.county_and_puma G3000630, G30000200 +in.county_and_puma G3000670, G30000500 +in.county_and_puma G3000810, G30000200 +in.county_and_puma G3000890, G30000200 +in.county_and_puma G3000930, G30000300 +in.county_and_puma G3001110, G30000600 +in.county_and_puma G3001110, G30000700 +in.county_and_puma G3100010, G31000500 +in.county_and_puma G3100190, G31000500 +in.county_and_puma G3100250, G31000701 +in.county_and_puma G3100430, G31000200 +in.county_and_puma G3100470, G31000400 +in.county_and_puma G3100530, G31000701 +in.county_and_puma G3100550, G31000901 +in.county_and_puma G3100550, G31000902 +in.county_and_puma G3100550, G31000903 +in.county_and_puma G3100550, G31000904 +in.county_and_puma G3100670, G31000600 +in.county_and_puma G3100790, G31000300 +in.county_and_puma G3101090, G31000801 +in.county_and_puma G3101090, G31000802 +in.county_and_puma G3101110, G31000400 +in.county_and_puma G3101190, G31000200 +in.county_and_puma G3101310, G31000600 +in.county_and_puma G3101410, G31000200 +in.county_and_puma G3101530, G31000702 +in.county_and_puma G3101550, G31000701 +in.county_and_puma G3101570, G31000100 +in.county_and_puma G3101590, G31000600 +in.county_and_puma G3101770, G31000701 +in.county_and_puma G3200010, G32000300 +in.county_and_puma G3200030, G32000401 +in.county_and_puma G3200030, G32000402 +in.county_and_puma G3200030, G32000403 +in.county_and_puma G3200030, G32000404 +in.county_and_puma G3200030, G32000405 +in.county_and_puma G3200030, G32000406 +in.county_and_puma G3200030, G32000407 +in.county_and_puma G3200030, G32000408 +in.county_and_puma G3200030, G32000409 +in.county_and_puma G3200030, G32000410 +in.county_and_puma G3200030, G32000411 +in.county_and_puma G3200030, G32000412 +in.county_and_puma G3200030, G32000413 +in.county_and_puma G3200050, G32000200 +in.county_and_puma G3200070, G32000300 +in.county_and_puma G3200130, G32000300 +in.county_and_puma G3200190, G32000200 +in.county_and_puma G3200230, G32000300 +in.county_and_puma G3200310, G32000101 +in.county_and_puma G3200310, G32000102 +in.county_and_puma G3200310, G32000103 +in.county_and_puma G3205100, G32000200 +in.county_and_puma G3300010, G33000200 +in.county_and_puma G3300030, G33000200 +in.county_and_puma G3300050, G33000500 +in.county_and_puma G3300070, G33000100 +in.county_and_puma G3300090, G33000100 +in.county_and_puma G3300110, G33000600 +in.county_and_puma G3300110, G33000700 +in.county_and_puma G3300110, G33000800 +in.county_and_puma G3300110, G33000900 +in.county_and_puma G3300130, G33000200 +in.county_and_puma G3300130, G33000400 +in.county_and_puma G3300150, G33000300 +in.county_and_puma G3300150, G33000700 +in.county_and_puma G3300150, G33001000 +in.county_and_puma G3300170, G33000300 +in.county_and_puma G3300190, G33000500 +in.county_and_puma G3400010, G34000101 +in.county_and_puma G3400010, G34000102 +in.county_and_puma G3400030, G34000301 +in.county_and_puma G3400030, G34000302 +in.county_and_puma G3400030, G34000303 +in.county_and_puma G3400030, G34000304 +in.county_and_puma G3400030, G34000305 +in.county_and_puma G3400030, G34000306 +in.county_and_puma G3400030, G34000307 +in.county_and_puma G3400030, G34000308 +in.county_and_puma G3400050, G34002001 +in.county_and_puma G3400050, G34002002 +in.county_and_puma G3400050, G34002003 +in.county_and_puma G3400070, G34002101 +in.county_and_puma G3400070, G34002102 +in.county_and_puma G3400070, G34002103 +in.county_and_puma G3400070, G34002104 +in.county_and_puma G3400090, G34002600 +in.county_and_puma G3400110, G34002400 +in.county_and_puma G3400110, G34002500 +in.county_and_puma G3400130, G34001301 +in.county_and_puma G3400130, G34001302 +in.county_and_puma G3400130, G34001401 +in.county_and_puma G3400130, G34001402 +in.county_and_puma G3400130, G34001403 +in.county_and_puma G3400130, G34001404 +in.county_and_puma G3400150, G34002201 +in.county_and_puma G3400150, G34002202 +in.county_and_puma G3400170, G34000601 +in.county_and_puma G3400170, G34000602 +in.county_and_puma G3400170, G34000701 +in.county_and_puma G3400170, G34000702 +in.county_and_puma G3400170, G34000703 +in.county_and_puma G3400190, G34000800 +in.county_and_puma G3400210, G34002301 +in.county_and_puma G3400210, G34002302 +in.county_and_puma G3400210, G34002303 +in.county_and_puma G3400230, G34000901 +in.county_and_puma G3400230, G34000902 +in.county_and_puma G3400230, G34000903 +in.county_and_puma G3400230, G34000904 +in.county_and_puma G3400230, G34000905 +in.county_and_puma G3400230, G34000906 +in.county_and_puma G3400230, G34000907 +in.county_and_puma G3400250, G34001101 +in.county_and_puma G3400250, G34001102 +in.county_and_puma G3400250, G34001103 +in.county_and_puma G3400250, G34001104 +in.county_and_puma G3400250, G34001105 +in.county_and_puma G3400250, G34001106 +in.county_and_puma G3400270, G34001501 +in.county_and_puma G3400270, G34001502 +in.county_and_puma G3400270, G34001503 +in.county_and_puma G3400270, G34001504 +in.county_and_puma G3400290, G34001201 +in.county_and_puma G3400290, G34001202 +in.county_and_puma G3400290, G34001203 +in.county_and_puma G3400290, G34001204 +in.county_and_puma G3400290, G34001205 +in.county_and_puma G3400310, G34000400 +in.county_and_puma G3400310, G34000501 +in.county_and_puma G3400310, G34000502 +in.county_and_puma G3400310, G34000503 +in.county_and_puma G3400330, G34002500 +in.county_and_puma G3400350, G34001001 +in.county_and_puma G3400350, G34001002 +in.county_and_puma G3400350, G34001003 +in.county_and_puma G3400370, G34001600 +in.county_and_puma G3400390, G34001800 +in.county_and_puma G3400390, G34001901 +in.county_and_puma G3400390, G34001902 +in.county_and_puma G3400390, G34001903 +in.county_and_puma G3400390, G34001904 +in.county_and_puma G3400410, G34001700 +in.county_and_puma G3500010, G35000700 +in.county_and_puma G3500010, G35000801 +in.county_and_puma G3500010, G35000802 +in.county_and_puma G3500010, G35000803 +in.county_and_puma G3500010, G35000804 +in.county_and_puma G3500010, G35000805 +in.county_and_puma G3500010, G35000806 +in.county_and_puma G3500050, G35001100 +in.county_and_puma G3500060, G35000100 +in.county_and_puma G3500070, G35000400 +in.county_and_puma G3500090, G35000400 +in.county_and_puma G3500130, G35001001 +in.county_and_puma G3500130, G35001002 +in.county_and_puma G3500150, G35001200 +in.county_and_puma G3500170, G35000900 +in.county_and_puma G3500250, G35001200 +in.county_and_puma G3500270, G35001100 +in.county_and_puma G3500280, G35000300 +in.county_and_puma G3500290, G35000900 +in.county_and_puma G3500310, G35000100 +in.county_and_puma G3500350, G35001100 +in.county_and_puma G3500390, G35000300 +in.county_and_puma G3500410, G35000400 +in.county_and_puma G3500430, G35000600 +in.county_and_puma G3500450, G35000100 +in.county_and_puma G3500450, G35000200 +in.county_and_puma G3500470, G35000300 +in.county_and_puma G3500490, G35000500 +in.county_and_puma G3500510, G35000900 +in.county_and_puma G3500530, G35000900 +in.county_and_puma G3500550, G35000300 +in.county_and_puma G3500570, G35000900 +in.county_and_puma G3500610, G35000700 +in.county_and_puma G3600010, G36002001 +in.county_and_puma G3600010, G36002002 +in.county_and_puma G3600030, G36002500 +in.county_and_puma G3600050, G36003701 +in.county_and_puma G3600050, G36003702 +in.county_and_puma G3600050, G36003703 +in.county_and_puma G3600050, G36003704 +in.county_and_puma G3600050, G36003705 +in.county_and_puma G3600050, G36003706 +in.county_and_puma G3600050, G36003707 +in.county_and_puma G3600050, G36003708 +in.county_and_puma G3600050, G36003709 +in.county_and_puma G3600050, G36003710 +in.county_and_puma G3600070, G36002201 +in.county_and_puma G3600070, G36002202 +in.county_and_puma G3600070, G36002203 +in.county_and_puma G3600090, G36002500 +in.county_and_puma G3600110, G36000704 +in.county_and_puma G3600130, G36002600 +in.county_and_puma G3600150, G36002401 +in.county_and_puma G3600170, G36002203 +in.county_and_puma G3600190, G36000200 +in.county_and_puma G3600210, G36002100 +in.county_and_puma G3600230, G36001500 +in.county_and_puma G3600250, G36002203 +in.county_and_puma G3600270, G36002801 +in.county_and_puma G3600270, G36002802 +in.county_and_puma G3600290, G36001201 +in.county_and_puma G3600290, G36001202 +in.county_and_puma G3600290, G36001203 +in.county_and_puma G3600290, G36001204 +in.county_and_puma G3600290, G36001205 +in.county_and_puma G3600290, G36001206 +in.county_and_puma G3600290, G36001207 +in.county_and_puma G3600310, G36000200 +in.county_and_puma G3600330, G36000200 +in.county_and_puma G3600350, G36001600 +in.county_and_puma G3600370, G36001000 +in.county_and_puma G3600390, G36002100 +in.county_and_puma G3600410, G36000200 +in.county_and_puma G3600430, G36000401 +in.county_and_puma G3600450, G36000500 +in.county_and_puma G3600470, G36004001 +in.county_and_puma G3600470, G36004002 +in.county_and_puma G3600470, G36004003 +in.county_and_puma G3600470, G36004004 +in.county_and_puma G3600470, G36004005 +in.county_and_puma G3600470, G36004006 +in.county_and_puma G3600470, G36004007 +in.county_and_puma G3600470, G36004008 +in.county_and_puma G3600470, G36004009 +in.county_and_puma G3600470, G36004010 +in.county_and_puma G3600470, G36004011 +in.county_and_puma G3600470, G36004012 +in.county_and_puma G3600470, G36004013 +in.county_and_puma G3600470, G36004014 +in.county_and_puma G3600470, G36004015 +in.county_and_puma G3600470, G36004016 +in.county_and_puma G3600470, G36004017 +in.county_and_puma G3600470, G36004018 +in.county_and_puma G3600490, G36000500 +in.county_and_puma G3600510, G36001300 +in.county_and_puma G3600530, G36001500 +in.county_and_puma G3600550, G36000901 +in.county_and_puma G3600550, G36000902 +in.county_and_puma G3600550, G36000903 +in.county_and_puma G3600550, G36000904 +in.county_and_puma G3600550, G36000905 +in.county_and_puma G3600550, G36000906 +in.county_and_puma G3600570, G36001600 +in.county_and_puma G3600590, G36003201 +in.county_and_puma G3600590, G36003202 +in.county_and_puma G3600590, G36003203 +in.county_and_puma G3600590, G36003204 +in.county_and_puma G3600590, G36003205 +in.county_and_puma G3600590, G36003206 +in.county_and_puma G3600590, G36003207 +in.county_and_puma G3600590, G36003208 +in.county_and_puma G3600590, G36003209 +in.county_and_puma G3600590, G36003210 +in.county_and_puma G3600590, G36003211 +in.county_and_puma G3600590, G36003212 +in.county_and_puma G3600610, G36003801 +in.county_and_puma G3600610, G36003802 +in.county_and_puma G3600610, G36003803 +in.county_and_puma G3600610, G36003804 +in.county_and_puma G3600610, G36003805 +in.county_and_puma G3600610, G36003806 +in.county_and_puma G3600610, G36003807 +in.county_and_puma G3600610, G36003808 +in.county_and_puma G3600610, G36003809 +in.county_and_puma G3600610, G36003810 +in.county_and_puma G3600630, G36001101 +in.county_and_puma G3600630, G36001102 +in.county_and_puma G3600650, G36000401 +in.county_and_puma G3600650, G36000402 +in.county_and_puma G3600670, G36000701 +in.county_and_puma G3600670, G36000702 +in.county_and_puma G3600670, G36000703 +in.county_and_puma G3600670, G36000704 +in.county_and_puma G3600690, G36001400 +in.county_and_puma G3600710, G36002901 +in.county_and_puma G3600710, G36002902 +in.county_and_puma G3600710, G36002903 +in.county_and_puma G3600730, G36001000 +in.county_and_puma G3600750, G36000600 +in.county_and_puma G3600770, G36000403 +in.county_and_puma G3600790, G36003101 +in.county_and_puma G3600810, G36004101 +in.county_and_puma G3600810, G36004102 +in.county_and_puma G3600810, G36004103 +in.county_and_puma G3600810, G36004104 +in.county_and_puma G3600810, G36004105 +in.county_and_puma G3600810, G36004106 +in.county_and_puma G3600810, G36004107 +in.county_and_puma G3600810, G36004108 +in.county_and_puma G3600810, G36004109 +in.county_and_puma G3600810, G36004110 +in.county_and_puma G3600810, G36004111 +in.county_and_puma G3600810, G36004112 +in.county_and_puma G3600810, G36004113 +in.county_and_puma G3600810, G36004114 +in.county_and_puma G3600830, G36001900 +in.county_and_puma G3600850, G36003901 +in.county_and_puma G3600850, G36003902 +in.county_and_puma G3600850, G36003903 +in.county_and_puma G3600870, G36003001 +in.county_and_puma G3600870, G36003002 +in.county_and_puma G3600870, G36003003 +in.county_and_puma G3600890, G36000100 +in.county_and_puma G3600910, G36001801 +in.county_and_puma G3600910, G36001802 +in.county_and_puma G3600930, G36001700 +in.county_and_puma G3600950, G36000403 +in.county_and_puma G3600970, G36002402 +in.county_and_puma G3600990, G36000800 +in.county_and_puma G3601010, G36002401 +in.county_and_puma G3601010, G36002402 +in.county_and_puma G3601030, G36003301 +in.county_and_puma G3601030, G36003302 +in.county_and_puma G3601030, G36003303 +in.county_and_puma G3601030, G36003304 +in.county_and_puma G3601030, G36003305 +in.county_and_puma G3601030, G36003306 +in.county_and_puma G3601030, G36003307 +in.county_and_puma G3601030, G36003308 +in.county_and_puma G3601030, G36003309 +in.county_and_puma G3601030, G36003310 +in.county_and_puma G3601030, G36003311 +in.county_and_puma G3601030, G36003312 +in.county_and_puma G3601030, G36003313 +in.county_and_puma G3601050, G36002701 +in.county_and_puma G3601070, G36002202 +in.county_and_puma G3601090, G36002300 +in.county_and_puma G3601110, G36002701 +in.county_and_puma G3601110, G36002702 +in.county_and_puma G3601130, G36000300 +in.county_and_puma G3601150, G36000300 +in.county_and_puma G3601170, G36000800 +in.county_and_puma G3601190, G36003102 +in.county_and_puma G3601190, G36003103 +in.county_and_puma G3601190, G36003104 +in.county_and_puma G3601190, G36003105 +in.county_and_puma G3601190, G36003106 +in.county_and_puma G3601190, G36003107 +in.county_and_puma G3601210, G36001300 +in.county_and_puma G3601230, G36001400 +in.county_and_puma G3700010, G37001600 +in.county_and_puma G3700030, G37002000 +in.county_and_puma G3700050, G37000200 +in.county_and_puma G3700070, G37005300 +in.county_and_puma G3700090, G37000100 +in.county_and_puma G3700110, G37000100 +in.county_and_puma G3700130, G37004400 +in.county_and_puma G3700150, G37000800 +in.county_and_puma G3700170, G37004900 +in.county_and_puma G3700190, G37004800 +in.county_and_puma G3700210, G37002201 +in.county_and_puma G3700210, G37002202 +in.county_and_puma G3700230, G37002100 +in.county_and_puma G3700250, G37003200 +in.county_and_puma G3700250, G37003300 +in.county_and_puma G3700270, G37002000 +in.county_and_puma G3700310, G37004400 +in.county_and_puma G3700330, G37000400 +in.county_and_puma G3700350, G37002800 +in.county_and_puma G3700370, G37001500 +in.county_and_puma G3700390, G37002400 +in.county_and_puma G3700410, G37000700 +in.county_and_puma G3700430, G37002400 +in.county_and_puma G3700450, G37002600 +in.county_and_puma G3700450, G37002700 +in.county_and_puma G3700470, G37004900 +in.county_and_puma G3700490, G37004300 +in.county_and_puma G3700510, G37005001 +in.county_and_puma G3700510, G37005002 +in.county_and_puma G3700510, G37005003 +in.county_and_puma G3700530, G37000700 +in.county_and_puma G3700550, G37000800 +in.county_and_puma G3700570, G37003500 +in.county_and_puma G3700590, G37001900 +in.county_and_puma G3700610, G37003900 +in.county_and_puma G3700630, G37001301 +in.county_and_puma G3700630, G37001302 +in.county_and_puma G3700650, G37000900 +in.county_and_puma G3700670, G37001801 +in.county_and_puma G3700670, G37001802 +in.county_and_puma G3700670, G37001803 +in.county_and_puma G3700690, G37000500 +in.county_and_puma G3700710, G37003001 +in.county_and_puma G3700710, G37003002 +in.county_and_puma G3700770, G37000400 +in.county_and_puma G3700790, G37001000 +in.county_and_puma G3700810, G37001701 +in.county_and_puma G3700810, G37001702 +in.county_and_puma G3700810, G37001703 +in.county_and_puma G3700810, G37001704 +in.county_and_puma G3700830, G37000600 +in.county_and_puma G3700850, G37003800 +in.county_and_puma G3700870, G37002300 +in.county_and_puma G3700890, G37002500 +in.county_and_puma G3700910, G37000600 +in.county_and_puma G3700930, G37005200 +in.county_and_puma G3700970, G37001900 +in.county_and_puma G3700970, G37002900 +in.county_and_puma G3700990, G37002400 +in.county_and_puma G3701010, G37001100 +in.county_and_puma G3701050, G37001500 +in.county_and_puma G3701070, G37004100 +in.county_and_puma G3701090, G37002700 +in.county_and_puma G3701110, G37002100 +in.county_and_puma G3701130, G37002400 +in.county_and_puma G3701150, G37002300 +in.county_and_puma G3701170, G37000800 +in.county_and_puma G3701190, G37003101 +in.county_and_puma G3701190, G37003102 +in.county_and_puma G3701190, G37003103 +in.county_and_puma G3701190, G37003104 +in.county_and_puma G3701190, G37003105 +in.county_and_puma G3701190, G37003106 +in.county_and_puma G3701190, G37003107 +in.county_and_puma G3701190, G37003108 +in.county_and_puma G3701210, G37000100 +in.county_and_puma G3701230, G37003700 +in.county_and_puma G3701250, G37003700 +in.county_and_puma G3701270, G37000900 +in.county_and_puma G3701290, G37004600 +in.county_and_puma G3701290, G37004700 +in.county_and_puma G3701310, G37000600 +in.county_and_puma G3701330, G37004100 +in.county_and_puma G3701330, G37004500 +in.county_and_puma G3701350, G37001400 +in.county_and_puma G3701370, G37004400 +in.county_and_puma G3701390, G37000700 +in.county_and_puma G3701410, G37004600 +in.county_and_puma G3701430, G37000700 +in.county_and_puma G3701450, G37000400 +in.county_and_puma G3701470, G37004200 +in.county_and_puma G3701490, G37002600 +in.county_and_puma G3701510, G37003600 +in.county_and_puma G3701530, G37005200 +in.county_and_puma G3701550, G37005100 +in.county_and_puma G3701570, G37000300 +in.county_and_puma G3701590, G37003400 +in.county_and_puma G3701610, G37002600 +in.county_and_puma G3701630, G37003900 +in.county_and_puma G3701650, G37005200 +in.county_and_puma G3701670, G37003300 +in.county_and_puma G3701690, G37000300 +in.county_and_puma G3701710, G37000200 +in.county_and_puma G3701730, G37002300 +in.county_and_puma G3701750, G37002500 +in.county_and_puma G3701790, G37005300 +in.county_and_puma G3701790, G37005400 +in.county_and_puma G3701810, G37000500 +in.county_and_puma G3701830, G37001201 +in.county_and_puma G3701830, G37001202 +in.county_and_puma G3701830, G37001203 +in.county_and_puma G3701830, G37001204 +in.county_and_puma G3701830, G37001205 +in.county_and_puma G3701830, G37001206 +in.county_and_puma G3701830, G37001207 +in.county_and_puma G3701830, G37001208 +in.county_and_puma G3701850, G37000500 +in.county_and_puma G3701890, G37000100 +in.county_and_puma G3701910, G37004000 +in.county_and_puma G3701930, G37000200 +in.county_and_puma G3701950, G37001000 +in.county_and_puma G3701970, G37001900 +in.county_and_puma G3701990, G37000100 +in.county_and_puma G3800030, G38000200 +in.county_and_puma G3800150, G38000300 +in.county_and_puma G3800170, G38000500 +in.county_and_puma G3800350, G38000400 +in.county_and_puma G3800550, G38000100 +in.county_and_puma G3800590, G38000300 +in.county_and_puma G3800710, G38000200 +in.county_and_puma G3800770, G38000200 +in.county_and_puma G3800890, G38000100 +in.county_and_puma G3800930, G38000200 +in.county_and_puma G3801010, G38000100 +in.county_and_puma G3801050, G38000100 +in.county_and_puma G3900010, G39005200 +in.county_and_puma G3900030, G39002500 +in.county_and_puma G3900050, G39002100 +in.county_and_puma G3900070, G39001300 +in.county_and_puma G3900090, G39005000 +in.county_and_puma G3900110, G39002600 +in.county_and_puma G3900130, G39003500 +in.county_and_puma G3900150, G39005700 +in.county_and_puma G3900170, G39005401 +in.county_and_puma G3900170, G39005402 +in.county_and_puma G3900170, G39005403 +in.county_and_puma G3900190, G39003300 +in.county_and_puma G3900210, G39002700 +in.county_and_puma G3900230, G39004300 +in.county_and_puma G3900250, G39005600 +in.county_and_puma G3900250, G39005700 +in.county_and_puma G3900270, G39005200 +in.county_and_puma G3900290, G39003400 +in.county_and_puma G3900310, G39002900 +in.county_and_puma G3900330, G39002300 +in.county_and_puma G3900350, G39000901 +in.county_and_puma G3900350, G39000902 +in.county_and_puma G3900350, G39000903 +in.county_and_puma G3900350, G39000904 +in.county_and_puma G3900350, G39000905 +in.county_and_puma G3900350, G39000906 +in.county_and_puma G3900350, G39000907 +in.county_and_puma G3900350, G39000908 +in.county_and_puma G3900350, G39000909 +in.county_and_puma G3900350, G39000910 +in.county_and_puma G3900370, G39004500 +in.county_and_puma G3900390, G39000100 +in.county_and_puma G3900410, G39004000 +in.county_and_puma G3900430, G39000700 +in.county_and_puma G3900450, G39003900 +in.county_and_puma G3900470, G39004800 +in.county_and_puma G3900490, G39004101 +in.county_and_puma G3900490, G39004102 +in.county_and_puma G3900490, G39004103 +in.county_and_puma G3900490, G39004104 +in.county_and_puma G3900490, G39004105 +in.county_and_puma G3900490, G39004106 +in.county_and_puma G3900490, G39004107 +in.county_and_puma G3900490, G39004108 +in.county_and_puma G3900490, G39004109 +in.county_and_puma G3900490, G39004110 +in.county_and_puma G3900490, G39004111 +in.county_and_puma G3900510, G39000200 +in.county_and_puma G3900530, G39005000 +in.county_and_puma G3900550, G39001200 +in.county_and_puma G3900570, G39004700 +in.county_and_puma G3900590, G39002900 +in.county_and_puma G3900610, G39005501 +in.county_and_puma G3900610, G39005502 +in.county_and_puma G3900610, G39005503 +in.county_and_puma G3900610, G39005504 +in.county_and_puma G3900610, G39005505 +in.county_and_puma G3900610, G39005506 +in.county_and_puma G3900610, G39005507 +in.county_and_puma G3900630, G39002400 +in.county_and_puma G3900650, G39002700 +in.county_and_puma G3900670, G39003000 +in.county_and_puma G3900690, G39000100 +in.county_and_puma G3900710, G39005200 +in.county_and_puma G3900730, G39004900 +in.county_and_puma G3900750, G39002900 +in.county_and_puma G3900770, G39002100 +in.county_and_puma G3900790, G39004900 +in.county_and_puma G3900810, G39003500 +in.county_and_puma G3900830, G39002800 +in.county_and_puma G3900850, G39001000 +in.county_and_puma G3900850, G39001100 +in.county_and_puma G3900850, G39001200 +in.county_and_puma G3900870, G39005100 +in.county_and_puma G3900890, G39003800 +in.county_and_puma G3900910, G39002700 +in.county_and_puma G3900930, G39000801 +in.county_and_puma G3900930, G39000802 +in.county_and_puma G3900950, G39000300 +in.county_and_puma G3900950, G39000400 +in.county_and_puma G3900950, G39000500 +in.county_and_puma G3900950, G39000600 +in.county_and_puma G3900970, G39004200 +in.county_and_puma G3900990, G39001400 +in.county_and_puma G3900990, G39001500 +in.county_and_puma G3901010, G39002800 +in.county_and_puma G3901030, G39001900 +in.county_and_puma G3901050, G39005000 +in.county_and_puma G3901070, G39002600 +in.county_and_puma G3901090, G39004400 +in.county_and_puma G3901110, G39003600 +in.county_and_puma G3901130, G39004601 +in.county_and_puma G3901130, G39004602 +in.county_and_puma G3901130, G39004603 +in.county_and_puma G3901130, G39004604 +in.county_and_puma G3901150, G39003600 +in.county_and_puma G3901170, G39002800 +in.county_and_puma G3901190, G39003700 +in.county_and_puma G3901230, G39000600 +in.county_and_puma G3901250, G39000100 +in.county_and_puma G3901270, G39003700 +in.county_and_puma G3901290, G39004200 +in.county_and_puma G3901310, G39004900 +in.county_and_puma G3901330, G39001700 +in.county_and_puma G3901350, G39004500 +in.county_and_puma G3901370, G39002400 +in.county_and_puma G3901390, G39002200 +in.county_and_puma G3901410, G39004800 +in.county_and_puma G3901430, G39000700 +in.county_and_puma G3901450, G39005100 +in.county_and_puma G3901470, G39002300 +in.county_and_puma G3901490, G39004500 +in.county_and_puma G3901510, G39003100 +in.county_and_puma G3901510, G39003200 +in.county_and_puma G3901510, G39003300 +in.county_and_puma G3901530, G39001801 +in.county_and_puma G3901530, G39001802 +in.county_and_puma G3901530, G39001803 +in.county_and_puma G3901530, G39001804 +in.county_and_puma G3901530, G39001805 +in.county_and_puma G3901550, G39001400 +in.county_and_puma G3901550, G39001600 +in.county_and_puma G3901570, G39003000 +in.county_and_puma G3901590, G39004200 +in.county_and_puma G3901610, G39002600 +in.county_and_puma G3901650, G39005301 +in.county_and_puma G3901650, G39005302 +in.county_and_puma G3901670, G39003600 +in.county_and_puma G3901690, G39002000 +in.county_and_puma G3901710, G39000100 +in.county_and_puma G3901730, G39000200 +in.county_and_puma G3901730, G39000300 +in.county_and_puma G3901730, G39000600 +in.county_and_puma G3901750, G39002300 +in.county_and_puma G4000010, G40000200 +in.county_and_puma G4000090, G40000400 +in.county_and_puma G4000130, G40000702 +in.county_and_puma G4000150, G40000602 +in.county_and_puma G4000170, G40000800 +in.county_and_puma G4000190, G40000701 +in.county_and_puma G4000210, G40000200 +in.county_and_puma G4000230, G40000300 +in.county_and_puma G4000270, G40000900 +in.county_and_puma G4000310, G40000601 +in.county_and_puma G4000310, G40000602 +in.county_and_puma G4000350, G40000100 +in.county_and_puma G4000370, G40001204 +in.county_and_puma G4000370, G40001501 +in.county_and_puma G4000390, G40000400 +in.county_and_puma G4000410, G40000100 +in.county_and_puma G4000470, G40001400 +in.county_and_puma G4000490, G40000701 +in.county_and_puma G4000510, G40001101 +in.county_and_puma G4000650, G40000400 +in.county_and_puma G4000710, G40001400 +in.county_and_puma G4000790, G40000300 +in.county_and_puma G4000810, G40001102 +in.county_and_puma G4000830, G40001102 +in.county_and_puma G4000870, G40001101 +in.county_and_puma G4000890, G40000300 +in.county_and_puma G4000910, G40001302 +in.county_and_puma G4000950, G40000702 +in.county_and_puma G4000970, G40000100 +in.county_and_puma G4000990, G40000701 +in.county_and_puma G4001010, G40001302 +in.county_and_puma G4001090, G40001001 +in.county_and_puma G4001090, G40001002 +in.county_and_puma G4001090, G40001003 +in.county_and_puma G4001090, G40001004 +in.county_and_puma G4001090, G40001005 +in.county_and_puma G4001090, G40001006 +in.county_and_puma G4001110, G40001302 +in.county_and_puma G4001130, G40001204 +in.county_and_puma G4001130, G40001601 +in.county_and_puma G4001150, G40000100 +in.county_and_puma G4001170, G40001601 +in.county_and_puma G4001190, G40001501 +in.county_and_puma G4001210, G40000300 +in.county_and_puma G4001230, G40000702 +in.county_and_puma G4001250, G40001101 +in.county_and_puma G4001250, G40001102 +in.county_and_puma G4001310, G40000100 +in.county_and_puma G4001310, G40001301 +in.county_and_puma G4001330, G40001501 +in.county_and_puma G4001350, G40000200 +in.county_and_puma G4001370, G40000602 +in.county_and_puma G4001390, G40000500 +in.county_and_puma G4001430, G40001201 +in.county_and_puma G4001430, G40001202 +in.county_and_puma G4001430, G40001203 +in.county_and_puma G4001430, G40001204 +in.county_and_puma G4001450, G40001301 +in.county_and_puma G4001450, G40001302 +in.county_and_puma G4001470, G40001601 +in.county_and_puma G4001530, G40000500 +in.county_and_puma G4100010, G41000100 +in.county_and_puma G4100030, G41000600 +in.county_and_puma G4100050, G41001317 +in.county_and_puma G4100050, G41001318 +in.county_and_puma G4100050, G41001319 +in.county_and_puma G4100070, G41000500 +in.county_and_puma G4100090, G41000500 +in.county_and_puma G4100110, G41000800 +in.county_and_puma G4100130, G41000200 +in.county_and_puma G4100150, G41000800 +in.county_and_puma G4100170, G41000400 +in.county_and_puma G4100190, G41001000 +in.county_and_puma G4100270, G41000200 +in.county_and_puma G4100290, G41000901 +in.county_and_puma G4100290, G41000902 +in.county_and_puma G4100310, G41000200 +in.county_and_puma G4100330, G41000800 +in.county_and_puma G4100350, G41000300 +in.county_and_puma G4100390, G41000703 +in.county_and_puma G4100390, G41000704 +in.county_and_puma G4100390, G41000705 +in.county_and_puma G4100410, G41000500 +in.county_and_puma G4100430, G41000600 +in.county_and_puma G4100450, G41000300 +in.county_and_puma G4100470, G41001103 +in.county_and_puma G4100470, G41001104 +in.county_and_puma G4100470, G41001105 +in.county_and_puma G4100510, G41001301 +in.county_and_puma G4100510, G41001302 +in.county_and_puma G4100510, G41001303 +in.county_and_puma G4100510, G41001305 +in.county_and_puma G4100510, G41001314 +in.county_and_puma G4100510, G41001316 +in.county_and_puma G4100530, G41001200 +in.county_and_puma G4100570, G41000500 +in.county_and_puma G4100590, G41000100 +in.county_and_puma G4100610, G41000100 +in.county_and_puma G4100650, G41000200 +in.county_and_puma G4100670, G41001320 +in.county_and_puma G4100670, G41001321 +in.county_and_puma G4100670, G41001322 +in.county_and_puma G4100670, G41001323 +in.county_and_puma G4100670, G41001324 +in.county_and_puma G4100710, G41001200 +in.county_and_puma G4200010, G42003701 +in.county_and_puma G4200030, G42001701 +in.county_and_puma G4200030, G42001702 +in.county_and_puma G4200030, G42001801 +in.county_and_puma G4200030, G42001802 +in.county_and_puma G4200030, G42001803 +in.county_and_puma G4200030, G42001804 +in.county_and_puma G4200030, G42001805 +in.county_and_puma G4200030, G42001806 +in.county_and_puma G4200030, G42001807 +in.county_and_puma G4200050, G42001900 +in.county_and_puma G4200070, G42001501 +in.county_and_puma G4200070, G42001502 +in.county_and_puma G4200090, G42003800 +in.county_and_puma G4200110, G42002701 +in.county_and_puma G4200110, G42002702 +in.county_and_puma G4200110, G42002703 +in.county_and_puma G4200130, G42002200 +in.county_and_puma G4200150, G42000400 +in.county_and_puma G4200170, G42003001 +in.county_and_puma G4200170, G42003002 +in.county_and_puma G4200170, G42003003 +in.county_and_puma G4200170, G42003004 +in.county_and_puma G4200190, G42001600 +in.county_and_puma G4200210, G42002100 +in.county_and_puma G4200250, G42002801 +in.county_and_puma G4200270, G42001200 +in.county_and_puma G4200290, G42003401 +in.county_and_puma G4200290, G42003402 +in.county_and_puma G4200290, G42003403 +in.county_and_puma G4200290, G42003404 +in.county_and_puma G4200310, G42001300 +in.county_and_puma G4200330, G42000300 +in.county_and_puma G4200350, G42000900 +in.county_and_puma G4200370, G42000803 +in.county_and_puma G4200390, G42000200 +in.county_and_puma G4200410, G42002301 +in.county_and_puma G4200410, G42002302 +in.county_and_puma G4200430, G42002401 +in.county_and_puma G4200430, G42002402 +in.county_and_puma G4200450, G42003301 +in.county_and_puma G4200450, G42003302 +in.county_and_puma G4200450, G42003303 +in.county_and_puma G4200450, G42003304 +in.county_and_puma G4200470, G42000300 +in.county_and_puma G4200490, G42000101 +in.county_and_puma G4200490, G42000102 +in.county_and_puma G4200510, G42003900 +in.county_and_puma G4200530, G42001300 +in.county_and_puma G4200550, G42003701 +in.county_and_puma G4200550, G42003702 +in.county_and_puma G4200570, G42003800 +in.county_and_puma G4200590, G42004002 +in.county_and_puma G4200610, G42002200 +in.county_and_puma G4200630, G42001900 +in.county_and_puma G4200650, G42001300 +in.county_and_puma G4200670, G42001100 +in.county_and_puma G4200690, G42000701 +in.county_and_puma G4200690, G42000702 +in.county_and_puma G4200710, G42003501 +in.county_and_puma G4200710, G42003502 +in.county_and_puma G4200710, G42003503 +in.county_and_puma G4200710, G42003504 +in.county_and_puma G4200730, G42001501 +in.county_and_puma G4200750, G42002500 +in.county_and_puma G4200770, G42002801 +in.county_and_puma G4200770, G42002802 +in.county_and_puma G4200770, G42002803 +in.county_and_puma G4200770, G42002901 +in.county_and_puma G4200790, G42000801 +in.county_and_puma G4200790, G42000802 +in.county_and_puma G4200790, G42000803 +in.county_and_puma G4200810, G42000900 +in.county_and_puma G4200830, G42000300 +in.county_and_puma G4200850, G42001400 +in.county_and_puma G4200870, G42001100 +in.county_and_puma G4200890, G42000600 +in.county_and_puma G4200910, G42003101 +in.county_and_puma G4200910, G42003102 +in.county_and_puma G4200910, G42003103 +in.county_and_puma G4200910, G42003104 +in.county_and_puma G4200910, G42003105 +in.county_and_puma G4200910, G42003106 +in.county_and_puma G4200930, G42001000 +in.county_and_puma G4200950, G42002901 +in.county_and_puma G4200950, G42002902 +in.county_and_puma G4200970, G42001000 +in.county_and_puma G4200990, G42002301 +in.county_and_puma G4201010, G42003201 +in.county_and_puma G4201010, G42003202 +in.county_and_puma G4201010, G42003203 +in.county_and_puma G4201010, G42003204 +in.county_and_puma G4201010, G42003205 +in.county_and_puma G4201010, G42003206 +in.county_and_puma G4201010, G42003207 +in.county_and_puma G4201010, G42003208 +in.county_and_puma G4201010, G42003209 +in.county_and_puma G4201010, G42003210 +in.county_and_puma G4201010, G42003211 +in.county_and_puma G4201030, G42000500 +in.county_and_puma G4201050, G42000300 +in.county_and_puma G4201070, G42002600 +in.county_and_puma G4201090, G42001100 +in.county_and_puma G4201110, G42003800 +in.county_and_puma G4201150, G42000500 +in.county_and_puma G4201170, G42000400 +in.county_and_puma G4201190, G42001100 +in.county_and_puma G4201210, G42001300 +in.county_and_puma G4201230, G42000200 +in.county_and_puma G4201250, G42004001 +in.county_and_puma G4201250, G42004002 +in.county_and_puma G4201270, G42000500 +in.county_and_puma G4201290, G42002001 +in.county_and_puma G4201290, G42002002 +in.county_and_puma G4201290, G42002003 +in.county_and_puma G4201310, G42000702 +in.county_and_puma G4201330, G42003601 +in.county_and_puma G4201330, G42003602 +in.county_and_puma G4201330, G42003603 +in.county_and_puma G4400010, G44000300 +in.county_and_puma G4400030, G44000201 +in.county_and_puma G4400050, G44000300 +in.county_and_puma G4400070, G44000101 +in.county_and_puma G4400070, G44000102 +in.county_and_puma G4400070, G44000103 +in.county_and_puma G4400070, G44000104 +in.county_and_puma G4400090, G44000400 +in.county_and_puma G4500010, G45001600 +in.county_and_puma G4500030, G45001500 +in.county_and_puma G4500070, G45000200 +in.county_and_puma G4500090, G45001300 +in.county_and_puma G4500110, G45001300 +in.county_and_puma G4500130, G45001400 +in.county_and_puma G4500150, G45001201 +in.county_and_puma G4500150, G45001203 +in.county_and_puma G4500150, G45001204 +in.county_and_puma G4500170, G45000605 +in.county_and_puma G4500190, G45001202 +in.county_and_puma G4500190, G45001203 +in.county_and_puma G4500190, G45001204 +in.county_and_puma G4500210, G45000400 +in.county_and_puma G4500230, G45000400 +in.county_and_puma G4500250, G45000700 +in.county_and_puma G4500270, G45000800 +in.county_and_puma G4500290, G45001300 +in.county_and_puma G4500310, G45000900 +in.county_and_puma G4500330, G45001000 +in.county_and_puma G4500350, G45001201 +in.county_and_puma G4500350, G45001204 +in.county_and_puma G4500370, G45001500 +in.county_and_puma G4500390, G45000603 +in.county_and_puma G4500410, G45000900 +in.county_and_puma G4500430, G45001000 +in.county_and_puma G4500450, G45000102 +in.county_and_puma G4500450, G45000103 +in.county_and_puma G4500450, G45000104 +in.county_and_puma G4500450, G45000105 +in.county_and_puma G4500470, G45001600 +in.county_and_puma G4500490, G45001300 +in.county_and_puma G4500510, G45001101 +in.county_and_puma G4500510, G45001102 +in.county_and_puma G4500530, G45001400 +in.county_and_puma G4500550, G45000605 +in.county_and_puma G4500570, G45000700 +in.county_and_puma G4500590, G45000105 +in.county_and_puma G4500610, G45000800 +in.county_and_puma G4500630, G45000601 +in.county_and_puma G4500630, G45000602 +in.county_and_puma G4500670, G45001000 +in.county_and_puma G4500690, G45000700 +in.county_and_puma G4500710, G45000400 +in.county_and_puma G4500730, G45000101 +in.county_and_puma G4500750, G45001300 +in.county_and_puma G4500770, G45000101 +in.county_and_puma G4500790, G45000603 +in.county_and_puma G4500790, G45000604 +in.county_and_puma G4500790, G45000605 +in.county_and_puma G4500810, G45000601 +in.county_and_puma G4500830, G45000301 +in.county_and_puma G4500830, G45000302 +in.county_and_puma G4500850, G45000800 +in.county_and_puma G4500870, G45000400 +in.county_and_puma G4500890, G45000800 +in.county_and_puma G4500910, G45000501 +in.county_and_puma G4500910, G45000502 +in.county_and_puma G4600050, G46000400 +in.county_and_puma G4600110, G46000400 +in.county_and_puma G4600130, G46000300 +in.county_and_puma G4600290, G46000300 +in.county_and_puma G4600350, G46000400 +in.county_and_puma G4600650, G46000200 +in.county_and_puma G4600810, G46000100 +in.county_and_puma G4600830, G46000500 +in.county_and_puma G4600830, G46000600 +in.county_and_puma G4600930, G46000100 +in.county_and_puma G4600990, G46000500 +in.county_and_puma G4600990, G46000600 +in.county_and_puma G4601030, G46000100 +in.county_and_puma G4601270, G46000500 +in.county_and_puma G4601350, G46000500 +in.county_and_puma G4700010, G47001601 +in.county_and_puma G4700030, G47002700 +in.county_and_puma G4700050, G47000200 +in.county_and_puma G4700090, G47001700 +in.county_and_puma G4700110, G47001900 +in.county_and_puma G4700130, G47000900 +in.county_and_puma G4700170, G47000200 +in.county_and_puma G4700190, G47001200 +in.county_and_puma G4700210, G47000400 +in.county_and_puma G4700230, G47003000 +in.county_and_puma G4700250, G47000900 +in.county_and_puma G4700290, G47001400 +in.county_and_puma G4700310, G47002200 +in.county_and_puma G4700350, G47000800 +in.county_and_puma G4700370, G47002501 +in.county_and_puma G4700370, G47002502 +in.county_and_puma G4700370, G47002503 +in.county_and_puma G4700370, G47002504 +in.county_and_puma G4700370, G47002505 +in.county_and_puma G4700390, G47002900 +in.county_and_puma G4700410, G47000600 +in.county_and_puma G4700430, G47000400 +in.county_and_puma G4700450, G47000100 +in.county_and_puma G4700470, G47003100 +in.county_and_puma G4700490, G47000800 +in.county_and_puma G4700510, G47002200 +in.county_and_puma G4700530, G47000100 +in.county_and_puma G4700550, G47002800 +in.county_and_puma G4700570, G47001400 +in.county_and_puma G4700590, G47001200 +in.county_and_puma G4700630, G47001400 +in.county_and_puma G4700650, G47002001 +in.county_and_puma G4700650, G47002002 +in.county_and_puma G4700650, G47002003 +in.county_and_puma G4700690, G47002900 +in.county_and_puma G4700710, G47002900 +in.county_and_puma G4700730, G47001000 +in.county_and_puma G4700750, G47002900 +in.county_and_puma G4700770, G47002900 +in.county_and_puma G4700790, G47000200 +in.county_and_puma G4700810, G47000400 +in.county_and_puma G4700850, G47000200 +in.county_and_puma G4700890, G47001500 +in.county_and_puma G4700910, G47001200 +in.county_and_puma G4700930, G47001602 +in.county_and_puma G4700930, G47001603 +in.county_and_puma G4700930, G47001604 +in.county_and_puma G4700970, G47003100 +in.county_and_puma G4700990, G47002800 +in.county_and_puma G4701030, G47002200 +in.county_and_puma G4701050, G47001800 +in.county_and_puma G4701070, G47001900 +in.county_and_puma G4701090, G47002900 +in.county_and_puma G4701110, G47000600 +in.county_and_puma G4701130, G47003000 +in.county_and_puma G4701150, G47002100 +in.county_and_puma G4701170, G47002700 +in.county_and_puma G4701190, G47002700 +in.county_and_puma G4701230, G47001800 +in.county_and_puma G4701250, G47000300 +in.county_and_puma G4701290, G47000900 +in.county_and_puma G4701310, G47000100 +in.county_and_puma G4701330, G47000700 +in.county_and_puma G4701390, G47001900 +in.county_and_puma G4701410, G47000700 +in.county_and_puma G4701430, G47002100 +in.county_and_puma G4701450, G47001800 +in.county_and_puma G4701470, G47000400 +in.county_and_puma G4701490, G47002401 +in.county_and_puma G4701490, G47002402 +in.county_and_puma G4701510, G47000900 +in.county_and_puma G4701550, G47001500 +in.county_and_puma G4701570, G47003201 +in.county_and_puma G4701570, G47003202 +in.county_and_puma G4701570, G47003203 +in.county_and_puma G4701570, G47003204 +in.county_and_puma G4701570, G47003205 +in.county_and_puma G4701570, G47003206 +in.county_and_puma G4701570, G47003207 +in.county_and_puma G4701570, G47003208 +in.county_and_puma G4701590, G47000600 +in.county_and_puma G4701610, G47000300 +in.county_and_puma G4701630, G47001000 +in.county_and_puma G4701630, G47001100 +in.county_and_puma G4701650, G47000500 +in.county_and_puma G4701670, G47003100 +in.county_and_puma G4701710, G47001200 +in.county_and_puma G4701730, G47001601 +in.county_and_puma G4701770, G47000600 +in.county_and_puma G4701790, G47001300 +in.county_and_puma G4701810, G47002800 +in.county_and_puma G4701830, G47000200 +in.county_and_puma G4701850, G47000800 +in.county_and_puma G4701870, G47002600 +in.county_and_puma G4701890, G47002300 +in.county_and_puma G4800010, G48001800 +in.county_and_puma G4800050, G48004000 +in.county_and_puma G4800070, G48006500 +in.county_and_puma G4800130, G48006100 +in.county_and_puma G4800150, G48005000 +in.county_and_puma G4800190, G48006100 +in.county_and_puma G4800210, G48005100 +in.county_and_puma G4800250, G48006500 +in.county_and_puma G4800270, G48003501 +in.county_and_puma G4800270, G48003502 +in.county_and_puma G4800290, G48005901 +in.county_and_puma G4800290, G48005902 +in.county_and_puma G4800290, G48005903 +in.county_and_puma G4800290, G48005904 +in.county_and_puma G4800290, G48005905 +in.county_and_puma G4800290, G48005906 +in.county_and_puma G4800290, G48005907 +in.county_and_puma G4800290, G48005908 +in.county_and_puma G4800290, G48005909 +in.county_and_puma G4800290, G48005910 +in.county_and_puma G4800290, G48005911 +in.county_and_puma G4800290, G48005912 +in.county_and_puma G4800290, G48005913 +in.county_and_puma G4800290, G48005914 +in.county_and_puma G4800290, G48005915 +in.county_and_puma G4800290, G48005916 +in.county_and_puma G4800350, G48003700 +in.county_and_puma G4800370, G48001100 +in.county_and_puma G4800390, G48004801 +in.county_and_puma G4800390, G48004802 +in.county_and_puma G4800390, G48004803 +in.county_and_puma G4800410, G48003602 +in.county_and_puma G4800490, G48002600 +in.county_and_puma G4800510, G48003601 +in.county_and_puma G4800530, G48003400 +in.county_and_puma G4800550, G48005100 +in.county_and_puma G4800570, G48005600 +in.county_and_puma G4800590, G48002600 +in.county_and_puma G4800610, G48006701 +in.county_and_puma G4800610, G48006702 +in.county_and_puma G4800610, G48006703 +in.county_and_puma G4800670, G48001100 +in.county_and_puma G4800710, G48004400 +in.county_and_puma G4800730, G48001700 +in.county_and_puma G4800850, G48001901 +in.county_and_puma G4800850, G48001902 +in.county_and_puma G4800850, G48001903 +in.county_and_puma G4800850, G48001904 +in.county_and_puma G4800850, G48001905 +in.county_and_puma G4800850, G48001906 +in.county_and_puma G4800850, G48001907 +in.county_and_puma G4800890, G48005000 +in.county_and_puma G4800910, G48005800 +in.county_and_puma G4800930, G48002600 +in.county_and_puma G4800970, G48000800 +in.county_and_puma G4800990, G48003400 +in.county_and_puma G4801130, G48002301 +in.county_and_puma G4801130, G48002302 +in.county_and_puma G4801130, G48002303 +in.county_and_puma G4801130, G48002304 +in.county_and_puma G4801130, G48002305 +in.county_and_puma G4801130, G48002306 +in.county_and_puma G4801130, G48002307 +in.county_and_puma G4801130, G48002308 +in.county_and_puma G4801130, G48002309 +in.county_and_puma G4801130, G48002310 +in.county_and_puma G4801130, G48002311 +in.county_and_puma G4801130, G48002312 +in.county_and_puma G4801130, G48002313 +in.county_and_puma G4801130, G48002314 +in.county_and_puma G4801130, G48002315 +in.county_and_puma G4801130, G48002316 +in.county_and_puma G4801130, G48002317 +in.county_and_puma G4801130, G48002318 +in.county_and_puma G4801130, G48002319 +in.county_and_puma G4801130, G48002320 +in.county_and_puma G4801130, G48002321 +in.county_and_puma G4801130, G48002322 +in.county_and_puma G4801170, G48000100 +in.county_and_puma G4801210, G48002001 +in.county_and_puma G4801210, G48002002 +in.county_and_puma G4801210, G48002003 +in.county_and_puma G4801210, G48002004 +in.county_and_puma G4801210, G48002005 +in.county_and_puma G4801210, G48002006 +in.county_and_puma G4801230, G48005500 +in.county_and_puma G4801330, G48002600 +in.county_and_puma G4801350, G48003100 +in.county_and_puma G4801390, G48002101 +in.county_and_puma G4801410, G48003301 +in.county_and_puma G4801410, G48003302 +in.county_and_puma G4801410, G48003303 +in.county_and_puma G4801410, G48003304 +in.county_and_puma G4801410, G48003305 +in.county_and_puma G4801410, G48003306 +in.county_and_puma G4801430, G48002200 +in.county_and_puma G4801450, G48003700 +in.county_and_puma G4801470, G48000800 +in.county_and_puma G4801490, G48005100 +in.county_and_puma G4801570, G48004901 +in.county_and_puma G4801570, G48004902 +in.county_and_puma G4801570, G48004903 +in.county_and_puma G4801570, G48004904 +in.county_and_puma G4801570, G48004905 +in.county_and_puma G4801610, G48003700 +in.county_and_puma G4801630, G48006100 +in.county_and_puma G4801670, G48004701 +in.county_and_puma G4801670, G48004702 +in.county_and_puma G4801710, G48006000 +in.county_and_puma G4801770, G48005500 +in.county_and_puma G4801790, G48000100 +in.county_and_puma G4801810, G48000800 +in.county_and_puma G4801830, G48001600 +in.county_and_puma G4801850, G48003601 +in.county_and_puma G4801870, G48005700 +in.county_and_puma G4801890, G48000400 +in.county_and_puma G4801990, G48004200 +in.county_and_puma G4802010, G48004601 +in.county_and_puma G4802010, G48004602 +in.county_and_puma G4802010, G48004603 +in.county_and_puma G4802010, G48004604 +in.county_and_puma G4802010, G48004605 +in.county_and_puma G4802010, G48004606 +in.county_and_puma G4802010, G48004607 +in.county_and_puma G4802010, G48004608 +in.county_and_puma G4802010, G48004609 +in.county_and_puma G4802010, G48004610 +in.county_and_puma G4802010, G48004611 +in.county_and_puma G4802010, G48004612 +in.county_and_puma G4802010, G48004613 +in.county_and_puma G4802010, G48004614 +in.county_and_puma G4802010, G48004615 +in.county_and_puma G4802010, G48004616 +in.county_and_puma G4802010, G48004617 +in.county_and_puma G4802010, G48004618 +in.county_and_puma G4802010, G48004619 +in.county_and_puma G4802010, G48004620 +in.county_and_puma G4802010, G48004621 +in.county_and_puma G4802010, G48004622 +in.county_and_puma G4802010, G48004623 +in.county_and_puma G4802010, G48004624 +in.county_and_puma G4802010, G48004625 +in.county_and_puma G4802010, G48004626 +in.county_and_puma G4802010, G48004627 +in.county_and_puma G4802010, G48004628 +in.county_and_puma G4802010, G48004629 +in.county_and_puma G4802010, G48004630 +in.county_and_puma G4802010, G48004631 +in.county_and_puma G4802010, G48004632 +in.county_and_puma G4802010, G48004633 +in.county_and_puma G4802010, G48004634 +in.county_and_puma G4802010, G48004635 +in.county_and_puma G4802010, G48004636 +in.county_and_puma G4802010, G48004637 +in.county_and_puma G4802010, G48004638 +in.county_and_puma G4802030, G48001200 +in.county_and_puma G4802090, G48005400 +in.county_and_puma G4802130, G48001800 +in.county_and_puma G4802150, G48006801 +in.county_and_puma G4802150, G48006802 +in.county_and_puma G4802150, G48006803 +in.county_and_puma G4802150, G48006804 +in.county_and_puma G4802150, G48006805 +in.county_and_puma G4802150, G48006806 +in.county_and_puma G4802150, G48006807 +in.county_and_puma G4802170, G48003700 +in.county_and_puma G4802190, G48000400 +in.county_and_puma G4802210, G48002200 +in.county_and_puma G4802230, G48001000 +in.county_and_puma G4802250, G48003900 +in.county_and_puma G4802270, G48002800 +in.county_and_puma G4802310, G48000900 +in.county_and_puma G4802330, G48000100 +in.county_and_puma G4802410, G48004100 +in.county_and_puma G4802450, G48004301 +in.county_and_puma G4802450, G48004302 +in.county_and_puma G4802490, G48006900 +in.county_and_puma G4802510, G48002102 +in.county_and_puma G4802530, G48002600 +in.county_and_puma G4802570, G48001400 +in.county_and_puma G4802590, G48006000 +in.county_and_puma G4802650, G48006000 +in.county_and_puma G4802730, G48006900 +in.county_and_puma G4802770, G48001000 +in.county_and_puma G4802810, G48003400 +in.county_and_puma G4802850, G48005500 +in.county_and_puma G4802870, G48005100 +in.county_and_puma G4802890, G48003601 +in.county_and_puma G4802910, G48004400 +in.county_and_puma G4802930, G48003700 +in.county_and_puma G4802990, G48003400 +in.county_and_puma G4803030, G48000501 +in.county_and_puma G4803030, G48000502 +in.county_and_puma G4803090, G48003801 +in.county_and_puma G4803090, G48003802 +in.county_and_puma G4803210, G48005000 +in.county_and_puma G4803230, G48006200 +in.county_and_puma G4803250, G48006100 +in.county_and_puma G4803290, G48003000 +in.county_and_puma G4803310, G48003601 +in.county_and_puma G4803370, G48000600 +in.county_and_puma G4803390, G48004501 +in.county_and_puma G4803390, G48004502 +in.county_and_puma G4803390, G48004503 +in.county_and_puma G4803390, G48004504 +in.county_and_puma G4803410, G48000100 +in.county_and_puma G4803470, G48004000 +in.county_and_puma G4803490, G48003700 +in.county_and_puma G4803530, G48002600 +in.county_and_puma G4803550, G48006601 +in.county_and_puma G4803550, G48006602 +in.county_and_puma G4803550, G48006603 +in.county_and_puma G4803610, G48004200 +in.county_and_puma G4803630, G48002200 +in.county_and_puma G4803650, G48001700 +in.county_and_puma G4803670, G48002400 +in.county_and_puma G4803730, G48003900 +in.county_and_puma G4803750, G48000200 +in.county_and_puma G4803810, G48000300 +in.county_and_puma G4803870, G48001000 +in.county_and_puma G4803950, G48003601 +in.county_and_puma G4803970, G48000900 +in.county_and_puma G4804010, G48001700 +in.county_and_puma G4804030, G48004100 +in.county_and_puma G4804070, G48003900 +in.county_and_puma G4804090, G48006500 +in.county_and_puma G4804150, G48002600 +in.county_and_puma G4804190, G48004100 +in.county_and_puma G4804230, G48001501 +in.county_and_puma G4804230, G48001502 +in.county_and_puma G4804270, G48006400 +in.county_and_puma G4804390, G48002501 +in.county_and_puma G4804390, G48002502 +in.county_and_puma G4804390, G48002503 +in.county_and_puma G4804390, G48002504 +in.county_and_puma G4804390, G48002505 +in.county_and_puma G4804390, G48002506 +in.county_and_puma G4804390, G48002507 +in.county_and_puma G4804390, G48002508 +in.county_and_puma G4804390, G48002509 +in.county_and_puma G4804390, G48002510 +in.county_and_puma G4804390, G48002511 +in.county_and_puma G4804390, G48002512 +in.county_and_puma G4804390, G48002513 +in.county_and_puma G4804390, G48002514 +in.county_and_puma G4804390, G48002515 +in.county_and_puma G4804390, G48002516 +in.county_and_puma G4804410, G48002700 +in.county_and_puma G4804490, G48001000 +in.county_and_puma G4804510, G48002900 +in.county_and_puma G4804530, G48005301 +in.county_and_puma G4804530, G48005302 +in.county_and_puma G4804530, G48005303 +in.county_and_puma G4804530, G48005304 +in.county_and_puma G4804530, G48005305 +in.county_and_puma G4804530, G48005306 +in.county_and_puma G4804530, G48005307 +in.county_and_puma G4804530, G48005308 +in.county_and_puma G4804530, G48005309 +in.county_and_puma G4804550, G48003900 +in.county_and_puma G4804570, G48004100 +in.county_and_puma G4804590, G48001200 +in.county_and_puma G4804630, G48006200 +in.county_and_puma G4804650, G48006200 +in.county_and_puma G4804670, G48001300 +in.county_and_puma G4804690, G48005600 +in.county_and_puma G4804710, G48003900 +in.county_and_puma G4804730, G48005000 +in.county_and_puma G4804770, G48003601 +in.county_and_puma G4804790, G48006301 +in.county_and_puma G4804790, G48006302 +in.county_and_puma G4804810, G48005000 +in.county_and_puma G4804850, G48000700 +in.county_and_puma G4804910, G48005201 +in.county_and_puma G4804910, G48005202 +in.county_and_puma G4804910, G48005203 +in.county_and_puma G4804910, G48005204 +in.county_and_puma G4804930, G48005500 +in.county_and_puma G4804970, G48000600 +in.county_and_puma G4804990, G48001300 +in.county_and_puma G4805030, G48000600 +in.county_and_puma G4805050, G48006400 +in.county_and_puma G4900030, G49003001 +in.county_and_puma G4900050, G49005001 +in.county_and_puma G4900070, G49013001 +in.county_and_puma G4900110, G49011001 +in.county_and_puma G4900110, G49011002 +in.county_and_puma G4900130, G49013001 +in.county_and_puma G4900210, G49021001 +in.county_and_puma G4900350, G49035001 +in.county_and_puma G4900350, G49035002 +in.county_and_puma G4900350, G49035003 +in.county_and_puma G4900350, G49035004 +in.county_and_puma G4900350, G49035005 +in.county_and_puma G4900350, G49035006 +in.county_and_puma G4900350, G49035007 +in.county_and_puma G4900350, G49035008 +in.county_and_puma G4900350, G49035009 +in.county_and_puma G4900390, G49021001 +in.county_and_puma G4900410, G49021001 +in.county_and_puma G4900430, G49005001 +in.county_and_puma G4900450, G49003001 +in.county_and_puma G4900470, G49013001 +in.county_and_puma G4900490, G49049001 +in.county_and_puma G4900490, G49049002 +in.county_and_puma G4900490, G49049003 +in.county_and_puma G4900490, G49049004 +in.county_and_puma G4900510, G49013001 +in.county_and_puma G4900530, G49053001 +in.county_and_puma G4900570, G49057001 +in.county_and_puma G4900570, G49057002 +in.county_and_puma G5000010, G50000400 +in.county_and_puma G5000030, G50000400 +in.county_and_puma G5000050, G50000200 +in.county_and_puma G5000070, G50000100 +in.county_and_puma G5000110, G50000100 +in.county_and_puma G5000150, G50000200 +in.county_and_puma G5000170, G50000300 +in.county_and_puma G5000190, G50000200 +in.county_and_puma G5000210, G50000400 +in.county_and_puma G5000230, G50000200 +in.county_and_puma G5000250, G50000300 +in.county_and_puma G5000270, G50000300 +in.county_and_puma G5100010, G51051125 +in.county_and_puma G5100030, G51051089 +in.county_and_puma G5100030, G51051090 +in.county_and_puma G5100050, G51051045 +in.county_and_puma G5100090, G51051095 +in.county_and_puma G5100110, G51051095 +in.county_and_puma G5100130, G51001301 +in.county_and_puma G5100130, G51001302 +in.county_and_puma G5100150, G51051080 +in.county_and_puma G5100190, G51051095 +in.county_and_puma G5100230, G51051045 +in.county_and_puma G5100250, G51051105 +in.county_and_puma G5100270, G51051010 +in.county_and_puma G5100290, G51051105 +in.county_and_puma G5100310, G51051096 +in.county_and_puma G5100330, G51051120 +in.county_and_puma G5100350, G51051020 +in.county_and_puma G5100410, G51004101 +in.county_and_puma G5100410, G51004102 +in.county_and_puma G5100410, G51004103 +in.county_and_puma G5100470, G51051087 +in.county_and_puma G5100510, G51051010 +in.county_and_puma G5100530, G51051135 +in.county_and_puma G5100590, G51059301 +in.county_and_puma G5100590, G51059302 +in.county_and_puma G5100590, G51059303 +in.county_and_puma G5100590, G51059304 +in.county_and_puma G5100590, G51059305 +in.county_and_puma G5100590, G51059306 +in.county_and_puma G5100590, G51059307 +in.county_and_puma G5100590, G51059308 +in.county_and_puma G5100590, G51059309 +in.county_and_puma G5100610, G51051087 +in.county_and_puma G5100630, G51051040 +in.county_and_puma G5100650, G51051089 +in.county_and_puma G5100670, G51051045 +in.county_and_puma G5100690, G51051084 +in.county_and_puma G5100710, G51051040 +in.county_and_puma G5100730, G51051125 +in.county_and_puma G5100750, G51051215 +in.county_and_puma G5100770, G51051020 +in.county_and_puma G5100790, G51051090 +in.county_and_puma G5100830, G51051105 +in.county_and_puma G5100850, G51051215 +in.county_and_puma G5100870, G51051224 +in.county_and_puma G5100870, G51051225 +in.county_and_puma G5100890, G51051097 +in.county_and_puma G5100930, G51051145 +in.county_and_puma G5100950, G51051206 +in.county_and_puma G5100990, G51051120 +in.county_and_puma G5101010, G51051215 +in.county_and_puma G5101030, G51051125 +in.county_and_puma G5101050, G51051010 +in.county_and_puma G5101070, G51010701 +in.county_and_puma G5101070, G51010702 +in.county_and_puma G5101070, G51010703 +in.county_and_puma G5101090, G51051089 +in.county_and_puma G5101170, G51051105 +in.county_and_puma G5101190, G51051125 +in.county_and_puma G5101210, G51051040 +in.county_and_puma G5101250, G51051089 +in.county_and_puma G5101270, G51051215 +in.county_and_puma G5101310, G51051125 +in.county_and_puma G5101330, G51051125 +in.county_and_puma G5101350, G51051105 +in.county_and_puma G5101370, G51051087 +in.county_and_puma G5101390, G51051085 +in.county_and_puma G5101410, G51051097 +in.county_and_puma G5101430, G51051097 +in.county_and_puma G5101450, G51051215 +in.county_and_puma G5101470, G51051105 +in.county_and_puma G5101490, G51051135 +in.county_and_puma G5101530, G51051244 +in.county_and_puma G5101530, G51051245 +in.county_and_puma G5101530, G51051246 +in.county_and_puma G5101550, G51051040 +in.county_and_puma G5101610, G51051045 +in.county_and_puma G5101630, G51051080 +in.county_and_puma G5101650, G51051110 +in.county_and_puma G5101670, G51051010 +in.county_and_puma G5101690, G51051010 +in.county_and_puma G5101710, G51051085 +in.county_and_puma G5101730, G51051020 +in.county_and_puma G5101750, G51051145 +in.county_and_puma G5101770, G51051120 +in.county_and_puma G5101790, G51051115 +in.county_and_puma G5101850, G51051010 +in.county_and_puma G5101870, G51051085 +in.county_and_puma G5101910, G51051020 +in.county_and_puma G5101930, G51051125 +in.county_and_puma G5101950, G51051010 +in.county_and_puma G5101970, G51051020 +in.county_and_puma G5101990, G51051206 +in.county_and_puma G5105100, G51051255 +in.county_and_puma G5105200, G51051020 +in.county_and_puma G5105400, G51051090 +in.county_and_puma G5105500, G51055001 +in.county_and_puma G5105500, G51055002 +in.county_and_puma G5105700, G51051135 +in.county_and_puma G5105900, G51051097 +in.county_and_puma G5106000, G51059303 +in.county_and_puma G5106300, G51051115 +in.county_and_puma G5106500, G51051186 +in.county_and_puma G5106600, G51051110 +in.county_and_puma G5106700, G51051135 +in.county_and_puma G5106800, G51051096 +in.county_and_puma G5106830, G51051245 +in.county_and_puma G5106900, G51051097 +in.county_and_puma G5107000, G51051175 +in.county_and_puma G5107100, G51051154 +in.county_and_puma G5107100, G51051155 +in.county_and_puma G5107300, G51051135 +in.county_and_puma G5107400, G51051155 +in.county_and_puma G5107600, G51051235 +in.county_and_puma G5107700, G51051044 +in.county_and_puma G5107750, G51051044 +in.county_and_puma G5107900, G51051080 +in.county_and_puma G5108000, G51051145 +in.county_and_puma G5108100, G51051164 +in.county_and_puma G5108100, G51051165 +in.county_and_puma G5108100, G51051167 +in.county_and_puma G5108200, G51051080 +in.county_and_puma G5108400, G51051084 +in.county_and_puma G5300010, G53010600 +in.county_and_puma G5300030, G53010600 +in.county_and_puma G5300050, G53010701 +in.county_and_puma G5300050, G53010702 +in.county_and_puma G5300050, G53010703 +in.county_and_puma G5300070, G53010300 +in.county_and_puma G5300090, G53011900 +in.county_and_puma G5300110, G53011101 +in.county_and_puma G5300110, G53011102 +in.county_and_puma G5300110, G53011103 +in.county_and_puma G5300110, G53011104 +in.county_and_puma G5300150, G53011200 +in.county_and_puma G5300170, G53010300 +in.county_and_puma G5300210, G53010701 +in.county_and_puma G5300250, G53010800 +in.county_and_puma G5300270, G53011300 +in.county_and_puma G5300290, G53010200 +in.county_and_puma G5300310, G53011900 +in.county_and_puma G5300330, G53011601 +in.county_and_puma G5300330, G53011602 +in.county_and_puma G5300330, G53011603 +in.county_and_puma G5300330, G53011604 +in.county_and_puma G5300330, G53011605 +in.county_and_puma G5300330, G53011606 +in.county_and_puma G5300330, G53011607 +in.county_and_puma G5300330, G53011608 +in.county_and_puma G5300330, G53011609 +in.county_and_puma G5300330, G53011610 +in.county_and_puma G5300330, G53011611 +in.county_and_puma G5300330, G53011612 +in.county_and_puma G5300330, G53011613 +in.county_and_puma G5300330, G53011614 +in.county_and_puma G5300330, G53011615 +in.county_and_puma G5300330, G53011616 +in.county_and_puma G5300350, G53011801 +in.county_and_puma G5300350, G53011802 +in.county_and_puma G5300370, G53010800 +in.county_and_puma G5300390, G53011000 +in.county_and_puma G5300410, G53011000 +in.county_and_puma G5300450, G53011300 +in.county_and_puma G5300470, G53010400 +in.county_and_puma G5300490, G53011200 +in.county_and_puma G5300510, G53010400 +in.county_and_puma G5300530, G53011501 +in.county_and_puma G5300530, G53011502 +in.county_and_puma G5300530, G53011503 +in.county_and_puma G5300530, G53011504 +in.county_and_puma G5300530, G53011505 +in.county_and_puma G5300530, G53011506 +in.county_and_puma G5300530, G53011507 +in.county_and_puma G5300550, G53010200 +in.county_and_puma G5300570, G53010200 +in.county_and_puma G5300610, G53011701 +in.county_and_puma G5300610, G53011702 +in.county_and_puma G5300610, G53011703 +in.county_and_puma G5300610, G53011704 +in.county_and_puma G5300610, G53011705 +in.county_and_puma G5300610, G53011706 +in.county_and_puma G5300630, G53010501 +in.county_and_puma G5300630, G53010502 +in.county_and_puma G5300630, G53010503 +in.county_and_puma G5300630, G53010504 +in.county_and_puma G5300650, G53010400 +in.county_and_puma G5300670, G53011401 +in.county_and_puma G5300670, G53011402 +in.county_and_puma G5300710, G53010703 +in.county_and_puma G5300730, G53010100 +in.county_and_puma G5300750, G53010600 +in.county_and_puma G5300770, G53010901 +in.county_and_puma G5300770, G53010902 +in.county_and_puma G5400010, G54000500 +in.county_and_puma G5400030, G54000400 +in.county_and_puma G5400050, G54000900 +in.county_and_puma G5400070, G54000600 +in.county_and_puma G5400090, G54000100 +in.county_and_puma G5400110, G54000800 +in.county_and_puma G5400190, G54001200 +in.county_and_puma G5400230, G54000500 +in.county_and_puma G5400250, G54001100 +in.county_and_puma G5400270, G54000400 +in.county_and_puma G5400290, G54000100 +in.county_and_puma G5400310, G54000500 +in.county_and_puma G5400330, G54000200 +in.county_and_puma G5400350, G54000600 +in.county_and_puma G5400370, G54000400 +in.county_and_puma G5400390, G54001000 +in.county_and_puma G5400410, G54000500 +in.county_and_puma G5400430, G54000900 +in.county_and_puma G5400450, G54001300 +in.county_and_puma G5400470, G54001300 +in.county_and_puma G5400490, G54000200 +in.county_and_puma G5400510, G54000100 +in.county_and_puma G5400530, G54000800 +in.county_and_puma G5400550, G54001200 +in.county_and_puma G5400570, G54000400 +in.county_and_puma G5400590, G54001300 +in.county_and_puma G5400610, G54000300 +in.county_and_puma G5400630, G54001100 +in.county_and_puma G5400650, G54000400 +in.county_and_puma G5400670, G54001100 +in.county_and_puma G5400690, G54000100 +in.county_and_puma G5400750, G54001100 +in.county_and_puma G5400770, G54000300 +in.county_and_puma G5400790, G54000900 +in.county_and_puma G5400810, G54001200 +in.county_and_puma G5400830, G54000500 +in.county_and_puma G5400870, G54000600 +in.county_and_puma G5400890, G54001100 +in.county_and_puma G5400910, G54000200 +in.county_and_puma G5400970, G54000500 +in.county_and_puma G5400990, G54000800 +in.county_and_puma G5401030, G54000600 +in.county_and_puma G5401070, G54000700 +in.county_and_puma G5401090, G54001300 +in.county_and_puma G5500010, G55001601 +in.county_and_puma G5500030, G55000100 +in.county_and_puma G5500050, G55055101 +in.county_and_puma G5500070, G55000100 +in.county_and_puma G5500090, G55000200 +in.county_and_puma G5500090, G55000300 +in.county_and_puma G5500110, G55000700 +in.county_and_puma G5500130, G55000100 +in.county_and_puma G5500150, G55001401 +in.county_and_puma G5500170, G55055103 +in.county_and_puma G5500190, G55055101 +in.county_and_puma G5500210, G55001000 +in.county_and_puma G5500230, G55000700 +in.county_and_puma G5500250, G55000101 +in.county_and_puma G5500250, G55000102 +in.county_and_puma G5500250, G55000103 +in.county_and_puma G5500270, G55001001 +in.county_and_puma G5500290, G55001300 +in.county_and_puma G5500310, G55000100 +in.county_and_puma G5500330, G55055102 +in.county_and_puma G5500350, G55055103 +in.county_and_puma G5500390, G55001401 +in.county_and_puma G5500410, G55000600 +in.county_and_puma G5500430, G55000800 +in.county_and_puma G5500450, G55000800 +in.county_and_puma G5500470, G55001400 +in.county_and_puma G5500490, G55000800 +in.county_and_puma G5500510, G55000100 +in.county_and_puma G5500530, G55000700 +in.county_and_puma G5500550, G55001001 +in.county_and_puma G5500570, G55001601 +in.county_and_puma G5500590, G55010000 +in.county_and_puma G5500610, G55001301 +in.county_and_puma G5500630, G55000900 +in.county_and_puma G5500650, G55000800 +in.county_and_puma G5500670, G55000600 +in.county_and_puma G5500690, G55000600 +in.county_and_puma G5500710, G55001301 +in.county_and_puma G5500730, G55001600 +in.county_and_puma G5500750, G55001300 +in.county_and_puma G5500770, G55001400 +in.county_and_puma G5500790, G55040101 +in.county_and_puma G5500790, G55040301 +in.county_and_puma G5500790, G55040701 +in.county_and_puma G5500790, G55041001 +in.county_and_puma G5500790, G55041002 +in.county_and_puma G5500790, G55041003 +in.county_and_puma G5500790, G55041004 +in.county_and_puma G5500790, G55041005 +in.county_and_puma G5500810, G55000700 +in.county_and_puma G5500830, G55001300 +in.county_and_puma G5500850, G55000600 +in.county_and_puma G5500870, G55001500 +in.county_and_puma G5500890, G55020000 +in.county_and_puma G5500930, G55000700 +in.county_and_puma G5500950, G55055101 +in.county_and_puma G5500970, G55001601 +in.county_and_puma G5500990, G55000100 +in.county_and_puma G5501010, G55030000 +in.county_and_puma G5501030, G55000800 +in.county_and_puma G5501050, G55002400 +in.county_and_puma G5501070, G55000100 +in.county_and_puma G5501090, G55055102 +in.county_and_puma G5501110, G55001000 +in.county_and_puma G5501130, G55000100 +in.county_and_puma G5501150, G55001400 +in.county_and_puma G5501170, G55002500 +in.county_and_puma G5501190, G55000100 +in.county_and_puma G5501210, G55000700 +in.county_and_puma G5501230, G55000700 +in.county_and_puma G5501250, G55000600 +in.county_and_puma G5501270, G55050000 +in.county_and_puma G5501290, G55000100 +in.county_and_puma G5501310, G55020000 +in.county_and_puma G5501330, G55070101 +in.county_and_puma G5501330, G55070201 +in.county_and_puma G5501330, G55070301 +in.county_and_puma G5501350, G55001400 +in.county_and_puma G5501370, G55001400 +in.county_and_puma G5501390, G55001501 +in.county_and_puma G5501410, G55001601 +in.county_and_puma G5600010, G56000300 +in.county_and_puma G5600050, G56000200 +in.county_and_puma G5600070, G56000400 +in.county_and_puma G5600090, G56000400 +in.county_and_puma G5600130, G56000500 +in.county_and_puma G5600210, G56000300 +in.county_and_puma G5600230, G56000100 +in.county_and_puma G5600250, G56000400 +in.county_and_puma G5600290, G56000100 +in.county_and_puma G5600330, G56000100 +in.county_and_puma G5600350, G56000500 +in.county_and_puma G5600370, G56000500 +in.county_and_puma G5600390, G56000100 +in.county_and_puma G5600410, G56000500 +in.county_metro_status Metropolitan +in.county_metro_status Non-Metropolitan +in.county_name Broward County +in.county_name Christian County +in.county_name Clark County +in.county_name Cooke County +in.county_name Essex County +in.county_name Los Angeles County +in.county_name Mendocino County +in.county_name Rankin County +in.county_name San Diego County +in.county_name Sequoyah County +in.county_name Spalding County +in.custom_state AK +in.custom_state Others +in.dishwasher 290 Rated kWh +in.dishwasher 318 Rated kWh +in.dishwasher_usage_level 100% Usage +in.dishwasher_usage_level 120% Usage +in.dishwasher_usage_level 80% Usage +in.door_area 20 ft^2 +in.doors Fiberglass +in.duct_leakage_and_insulation 0% Leakage to Outside, Uninsulated +in.duct_leakage_and_insulation 10% Leakage to Outside, R-4 +in.duct_leakage_and_insulation 10% Leakage to Outside, R-6 +in.duct_leakage_and_insulation 10% Leakage to Outside, R-8 +in.duct_leakage_and_insulation 10% Leakage to Outside, Uninsulated +in.duct_leakage_and_insulation 20% Leakage to Outside, R-4 +in.duct_leakage_and_insulation 20% Leakage to Outside, R-6 +in.duct_leakage_and_insulation 20% Leakage to Outside, R-8 +in.duct_leakage_and_insulation 20% Leakage to Outside, Uninsulated +in.duct_leakage_and_insulation 30% Leakage to Outside, R-4 +in.duct_leakage_and_insulation 30% Leakage to Outside, R-6 +in.duct_leakage_and_insulation 30% Leakage to Outside, R-8 +in.duct_leakage_and_insulation 30% Leakage to Outside, Uninsulated +in.duct_location Attic +in.duct_location Crawlspace +in.duct_location Garage +in.duct_location Heated Basement +in.duct_location Living Space +in.duct_location Unheated Basement +in.eaves 2 ft +in.electric_panel_breaker_space_total_count 11.0 +in.electric_panel_breaker_space_total_count 14.0 +in.electric_panel_breaker_space_total_count 16.0 +in.electric_panel_breaker_space_total_count 17.0 +in.electric_panel_breaker_space_total_count 19.0 +in.electric_panel_breaker_space_total_count 21.0 +in.electric_panel_breaker_space_total_count 22.0 +in.electric_panel_breaker_space_total_count 23.0 +in.electric_panel_breaker_space_total_count 25.0 +in.electric_panel_breaker_space_total_count 30.0 +in.electric_vehicle_battery Compact, Battery Electric Vehicle, 200 mile range +in.electric_vehicle_battery Compact, Battery Electric Vehicle, 300 mile range +in.electric_vehicle_battery Midsize, Battery Electric Vehicle, 200 mile range +in.electric_vehicle_battery Midsize, Battery Electric Vehicle, 300 mile range +in.electric_vehicle_battery Pickup, Battery Electric Vehicle, 200 mile range +in.electric_vehicle_battery Pickup, Battery Electric Vehicle, 300 mile range +in.electric_vehicle_battery SUV, Battery Electric Vehicle, 200 mile range +in.electric_vehicle_battery SUV, Battery Electric Vehicle, 300 mile range +in.electric_vehicle_charge_at_home 0-19% +in.electric_vehicle_charge_at_home 100% +in.electric_vehicle_charge_at_home 20-39% +in.electric_vehicle_charge_at_home 40-59% +in.electric_vehicle_charge_at_home 60-79% +in.electric_vehicle_charge_at_home 80-99% +in.electric_vehicle_charger Level 1 charger +in.electric_vehicle_charger Level 2 charger +in.electric_vehicle_miles_traveled 1000 +in.electric_vehicle_miles_traveled 3000 +in.electric_vehicle_miles_traveled 5000 +in.electric_vehicle_miles_traveled 7000 +in.electric_vehicle_miles_traveled 9000 +in.electric_vehicle_miles_traveled 11000 +in.electric_vehicle_miles_traveled 13000 +in.electric_vehicle_miles_traveled 15000 +in.electric_vehicle_miles_traveled 17000 +in.electric_vehicle_miles_traveled 19000 +in.electric_vehicle_miles_traveled 22500 +in.electric_vehicle_outlet_access No +in.electric_vehicle_outlet_access Yes +in.electric_vehicle_ownership No +in.electric_vehicle_ownership Yes +in.energystar_climate_zone_2023 North-Central +in.energystar_climate_zone_2023 Northern +in.energystar_climate_zone_2023 South-Central +in.energystar_climate_zone_2023 Southern +in.federal_poverty_level 0-100% +in.federal_poverty_level 100-150% +in.federal_poverty_level 150-200% +in.federal_poverty_level 200-300% +in.federal_poverty_level 300-400% +in.federal_poverty_level 400%+ +in.federal_poverty_level Not Available +in.generation_and_emissions_assessment_region CAISO +in.generation_and_emissions_assessment_region ERCOT +in.generation_and_emissions_assessment_region FRCC +in.generation_and_emissions_assessment_region ISONE +in.generation_and_emissions_assessment_region MISO Central +in.generation_and_emissions_assessment_region MISO North +in.generation_and_emissions_assessment_region MISO South +in.generation_and_emissions_assessment_region NYISO +in.generation_and_emissions_assessment_region Northern Grid East +in.generation_and_emissions_assessment_region Northern Grid South +in.generation_and_emissions_assessment_region Northern Grid West +in.generation_and_emissions_assessment_region PJM East +in.generation_and_emissions_assessment_region PJM West +in.generation_and_emissions_assessment_region SERTP +in.generation_and_emissions_assessment_region SPP North +in.generation_and_emissions_assessment_region SPP South +in.generation_and_emissions_assessment_region West Connect North +in.generation_and_emissions_assessment_region West Connect South +in.geometry_attic_type Finished Attic or Cathedral Ceilings +in.geometry_attic_type Unvented Attic +in.geometry_attic_type Vented Attic +in.geometry_building_horizontal_location_mf Left +in.geometry_building_horizontal_location_mf Middle +in.geometry_building_horizontal_location_mf Not Applicable +in.geometry_building_horizontal_location_mf Right +in.geometry_building_horizontal_location_sfa Left +in.geometry_building_horizontal_location_sfa Middle +in.geometry_building_horizontal_location_sfa Right +in.geometry_building_level_mf Bottom +in.geometry_building_level_mf Middle +in.geometry_building_level_mf Top +in.geometry_building_number_units_mf 2.0 +in.geometry_building_number_units_mf 3.0 +in.geometry_building_number_units_mf 4.0 +in.geometry_building_number_units_mf 5.0 +in.geometry_building_number_units_mf 6.0 +in.geometry_building_number_units_mf 7.0 +in.geometry_building_number_units_mf 8.0 +in.geometry_building_number_units_mf 9.0 +in.geometry_building_number_units_mf 10.0 +in.geometry_building_number_units_mf 11.0 +in.geometry_building_number_units_mf 12.0 +in.geometry_building_number_units_mf 13.0 +in.geometry_building_number_units_mf 14.0 +in.geometry_building_number_units_mf 15.0 +in.geometry_building_number_units_mf 16.0 +in.geometry_building_number_units_mf 17.0 +in.geometry_building_number_units_mf 18.0 +in.geometry_building_number_units_mf 19.0 +in.geometry_building_number_units_mf 20.0 +in.geometry_building_number_units_mf 24.0 +in.geometry_building_number_units_mf 30.0 +in.geometry_building_number_units_mf 36.0 +in.geometry_building_number_units_mf 43.0 +in.geometry_building_number_units_mf 67.0 +in.geometry_building_number_units_mf 116.0 +in.geometry_building_number_units_mf 183.0 +in.geometry_building_number_units_mf 326.0 +in.geometry_building_number_units_sfa 5.0 +in.geometry_building_number_units_sfa 6.0 +in.geometry_building_number_units_sfa 7.0 +in.geometry_building_number_units_sfa 8.0 +in.geometry_building_number_units_sfa 10.0 +in.geometry_building_number_units_sfa 12.0 +in.geometry_building_number_units_sfa 15.0 +in.geometry_building_number_units_sfa 16.0 +in.geometry_building_number_units_sfa 20.0 +in.geometry_building_number_units_sfa 24.0 +in.geometry_building_number_units_sfa 30.0 +in.geometry_building_number_units_sfa 36.0 +in.geometry_building_number_units_sfa 50.0 +in.geometry_building_number_units_sfa 60.0 +in.geometry_building_number_units_sfa 90.0 +in.geometry_building_number_units_sfa 144.0 +in.geometry_building_type_acs 10 to 19 Unit +in.geometry_building_type_acs 2 Unit +in.geometry_building_type_acs 20 to 49 Unit +in.geometry_building_type_acs 3 or 4 Unit +in.geometry_building_type_acs 5 to 9 Unit +in.geometry_building_type_acs 50 or more Unit +in.geometry_building_type_acs Mobile Home +in.geometry_building_type_acs Single-Family Attached +in.geometry_building_type_acs Single-Family Detached +in.geometry_building_type_height Mobile Home +in.geometry_building_type_height Multi-Family with 2 - 4 Units +in.geometry_building_type_height Multi-Family with 5+ Units, 1-3 Stories +in.geometry_building_type_height Multi-Family with 5+ Units, 4-7 Stories +in.geometry_building_type_height Multi-Family with 5+ Units, 8+ Stories +in.geometry_building_type_height Single-Family Attached +in.geometry_building_type_height Single-Family Detached +in.geometry_building_type_recs Mobile Home +in.geometry_building_type_recs Multi-Family with 2 - 4 Units +in.geometry_building_type_recs Multi-Family with 5+ Units +in.geometry_building_type_recs Single-Family Attached +in.geometry_building_type_recs Single-Family Detached +in.geometry_floor_area 0-499 +in.geometry_floor_area 1000-1499 +in.geometry_floor_area 1500-1999 +in.geometry_floor_area 2000-2499 +in.geometry_floor_area 2500-2999 +in.geometry_floor_area 3000-3999 +in.geometry_floor_area 4000+ +in.geometry_floor_area 500-749 +in.geometry_floor_area 750-999 +in.geometry_floor_area_bin 0-1499 +in.geometry_floor_area_bin 1500-2499 +in.geometry_floor_area_bin 2500-3999 +in.geometry_floor_area_bin 4000+ +in.geometry_foundation_type Ambient +in.geometry_foundation_type Heated Basement +in.geometry_foundation_type Slab +in.geometry_foundation_type Unheated Basement +in.geometry_foundation_type Unvented Crawlspace +in.geometry_foundation_type Vented Crawlspace +in.geometry_garage 1 Car +in.geometry_garage 2 Car +in.geometry_garage 3 Car +in.geometry_space_combination Mobile Home, Ambient, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage +in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Heated Basement, Finished Attic, No Garage +in.geometry_space_combination Single-Family Attached, Heated Basement, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Heated Basement, Vented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Slab, Finished Attic, No Garage +in.geometry_space_combination Single-Family Attached, Slab, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Slab, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Slab, Vented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unheated Basement, Finished Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unheated Basement, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unheated Basement, Vented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage +in.geometry_space_combination Single-Family Attached, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Ambient, Finished Attic, No Garage +in.geometry_space_combination Single-Family Detached, Ambient, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Ambient, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Ambient, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, No Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, No Garage +in.geometry_space_combination Single-Family Detached, Slab, No Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, No Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, No Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, No Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage +in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage +in.geometry_stories 1 +in.geometry_stories 2 +in.geometry_stories 3 +in.geometry_stories 4 +in.geometry_stories 5 +in.geometry_stories 6 +in.geometry_stories 7 +in.geometry_stories 8 +in.geometry_stories 9 +in.geometry_stories 10 +in.geometry_stories 11 +in.geometry_stories 12 +in.geometry_stories 13 +in.geometry_stories 14 +in.geometry_stories 15 +in.geometry_stories 20 +in.geometry_stories 21 +in.geometry_stories 35 +in.geometry_stories_low_rise 1 +in.geometry_stories_low_rise 2 +in.geometry_stories_low_rise 3 +in.geometry_stories_low_rise 4+ +in.geometry_story_bin 8+ +in.geometry_story_bin <8 +in.geometry_wall_exterior_finish Aluminum, Light +in.geometry_wall_exterior_finish Brick, Light +in.geometry_wall_exterior_finish Brick, Medium/Dark +in.geometry_wall_exterior_finish Fiber-Cement, Light +in.geometry_wall_exterior_finish Shingle, Asbestos, Medium +in.geometry_wall_exterior_finish Shingle, Composition, Medium +in.geometry_wall_exterior_finish Stucco, Light +in.geometry_wall_exterior_finish Stucco, Medium/Dark +in.geometry_wall_exterior_finish Vinyl, Light +in.geometry_wall_exterior_finish Wood, Medium/Dark +in.geometry_wall_type Brick +in.geometry_wall_type Concrete +in.geometry_wall_type Steel Frame +in.geometry_wall_type Wood Frame +in.ground_thermal_conductivity 0.5 +in.ground_thermal_conductivity 0.8 +in.ground_thermal_conductivity 1.1 +in.ground_thermal_conductivity 1.4 +in.ground_thermal_conductivity 1.7 +in.ground_thermal_conductivity 2.0 +in.ground_thermal_conductivity 2.3 +in.ground_thermal_conductivity 2.6 +in.has_pv No +in.has_pv Yes +in.heating_fuel Electricity +in.heating_fuel Fuel Oil +in.heating_fuel Natural Gas +in.heating_fuel Propane +in.heating_fuel Wood +in.heating_setpoint 55F +in.heating_setpoint 60F +in.heating_setpoint 62F +in.heating_setpoint 65F +in.heating_setpoint 67F +in.heating_setpoint 68F +in.heating_setpoint 70F +in.heating_setpoint 72F +in.heating_setpoint 75F +in.heating_setpoint 76F +in.heating_setpoint 78F +in.heating_setpoint 80F +in.heating_setpoint_has_offset No +in.heating_setpoint_has_offset Yes +in.heating_setpoint_offset_magnitude 0F +in.heating_setpoint_offset_magnitude 12F +in.heating_setpoint_offset_magnitude 3F +in.heating_setpoint_offset_magnitude 6F +in.heating_setpoint_offset_period Day +in.heating_setpoint_offset_period Day +1h +in.heating_setpoint_offset_period Day +2h +in.heating_setpoint_offset_period Day +3h +in.heating_setpoint_offset_period Day +4h +in.heating_setpoint_offset_period Day +5h +in.heating_setpoint_offset_period Day -1h +in.heating_setpoint_offset_period Day -2h +in.heating_setpoint_offset_period Day -3h +in.heating_setpoint_offset_period Day -4h +in.heating_setpoint_offset_period Day -5h +in.heating_setpoint_offset_period Day and Night +in.heating_setpoint_offset_period Day and Night +1h +in.heating_setpoint_offset_period Day and Night +2h +in.heating_setpoint_offset_period Day and Night +3h +in.heating_setpoint_offset_period Day and Night +4h +in.heating_setpoint_offset_period Day and Night +5h +in.heating_setpoint_offset_period Day and Night -1h +in.heating_setpoint_offset_period Day and Night -2h +in.heating_setpoint_offset_period Day and Night -3h +in.heating_setpoint_offset_period Day and Night -4h +in.heating_setpoint_offset_period Day and Night -5h +in.heating_setpoint_offset_period Night +in.heating_setpoint_offset_period Night +1h +in.heating_setpoint_offset_period Night +2h +in.heating_setpoint_offset_period Night +3h +in.heating_setpoint_offset_period Night +4h +in.heating_setpoint_offset_period Night +5h +in.heating_setpoint_offset_period Night -1h +in.heating_setpoint_offset_period Night -2h +in.heating_setpoint_offset_period Night -3h +in.heating_setpoint_offset_period Night -4h +in.heating_setpoint_offset_period Night -5h +in.heating_unavailable_days 1 day +in.heating_unavailable_days 1 month +in.heating_unavailable_days 1 week +in.heating_unavailable_days 2 weeks +in.heating_unavailable_days 3 days +in.heating_unavailable_days 3 months +in.heating_unavailable_days Never +in.heating_unavailable_days Year round +in.heating_unavailable_period Never +in.holiday_lighting No Exterior Use +in.hot_water_distribution Uninsulated +in.hot_water_fixtures 100% Usage +in.hot_water_fixtures 110% Usage +in.hot_water_fixtures 120% Usage +in.hot_water_fixtures 130% Usage +in.hot_water_fixtures 140% Usage +in.hot_water_fixtures 150% Usage +in.hot_water_fixtures 160% Usage +in.hot_water_fixtures 170% Usage +in.hot_water_fixtures 180% Usage +in.hot_water_fixtures 200% Usage +in.hot_water_fixtures 50% Usage +in.hot_water_fixtures 60% Usage +in.hot_water_fixtures 70% Usage +in.hot_water_fixtures 80% Usage +in.hot_water_fixtures 90% Usage +in.household_has_tribal_persons No +in.household_has_tribal_persons Not Available +in.household_has_tribal_persons Yes +in.hvac_cooling_efficiency AC, SEER 10 +in.hvac_cooling_efficiency AC, SEER 13 +in.hvac_cooling_efficiency AC, SEER 15 +in.hvac_cooling_efficiency AC, SEER 8 +in.hvac_cooling_efficiency Ducted Heat Pump +in.hvac_cooling_efficiency Non-Ducted Heat Pump +in.hvac_cooling_efficiency Room AC, EER 10.7 +in.hvac_cooling_efficiency Room AC, EER 12.0 +in.hvac_cooling_efficiency Room AC, EER 8.5 +in.hvac_cooling_efficiency Room AC, EER 9.8 +in.hvac_cooling_efficiency Shared Cooling +in.hvac_cooling_partial_space_conditioning 100% Conditioned +in.hvac_cooling_partial_space_conditioning 20% Conditioned +in.hvac_cooling_partial_space_conditioning 40% Conditioned +in.hvac_cooling_partial_space_conditioning 60% Conditioned +in.hvac_cooling_partial_space_conditioning 80% Conditioned +in.hvac_cooling_partial_space_conditioning <10% Conditioned +in.hvac_cooling_type Central AC +in.hvac_cooling_type Ducted Heat Pump +in.hvac_cooling_type Non-Ducted Heat Pump +in.hvac_cooling_type Room AC +in.hvac_has_ducts No +in.hvac_has_ducts Yes +in.hvac_has_shared_system Cooling Only +in.hvac_has_shared_system Heating Only +in.hvac_has_shared_system Heating and Cooling +in.hvac_has_zonal_electric_heating No +in.hvac_has_zonal_electric_heating Yes +in.hvac_heating_efficiency ASHP, SEER 10, 6.2 HSPF +in.hvac_heating_efficiency ASHP, SEER 13, 7.7 HSPF +in.hvac_heating_efficiency ASHP, SEER 15, 8.5 HSPF +in.hvac_heating_efficiency Electric Baseboard, 100% Efficiency +in.hvac_heating_efficiency Electric Boiler, 100% AFUE +in.hvac_heating_efficiency Electric Furnace, 100% AFUE +in.hvac_heating_efficiency Electric Wall Furnace, 100% AFUE +in.hvac_heating_efficiency Fuel Boiler, 76% AFUE +in.hvac_heating_efficiency Fuel Boiler, 80% AFUE +in.hvac_heating_efficiency Fuel Boiler, 90% AFUE +in.hvac_heating_efficiency Fuel Furnace, 60% AFUE +in.hvac_heating_efficiency Fuel Furnace, 76% AFUE +in.hvac_heating_efficiency Fuel Furnace, 80% AFUE +in.hvac_heating_efficiency Fuel Furnace, 92.5% AFUE +in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 60% AFUE +in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE +in.hvac_heating_efficiency MSHP, SEER 14.5, 8.2 HSPF +in.hvac_heating_efficiency Shared Heating +in.hvac_heating_type Ducted Heat Pump +in.hvac_heating_type Ducted Heating +in.hvac_heating_type Non-Ducted Heat Pump +in.hvac_heating_type Non-Ducted Heating +in.hvac_heating_type_and_fuel Electricity ASHP +in.hvac_heating_type_and_fuel Electricity Baseboard +in.hvac_heating_type_and_fuel Electricity Electric Boiler +in.hvac_heating_type_and_fuel Electricity Electric Furnace +in.hvac_heating_type_and_fuel Electricity Electric Wall Furnace +in.hvac_heating_type_and_fuel Electricity MSHP +in.hvac_heating_type_and_fuel Electricity Shared Heating +in.hvac_heating_type_and_fuel Fuel Oil Fuel Boiler +in.hvac_heating_type_and_fuel Fuel Oil Fuel Furnace +in.hvac_heating_type_and_fuel Fuel Oil Fuel Wall/Floor Furnace +in.hvac_heating_type_and_fuel Fuel Oil Shared Heating +in.hvac_heating_type_and_fuel Natural Gas Fuel Boiler +in.hvac_heating_type_and_fuel Natural Gas Fuel Furnace +in.hvac_heating_type_and_fuel Natural Gas Fuel Wall/Floor Furnace +in.hvac_heating_type_and_fuel Natural Gas Shared Heating +in.hvac_heating_type_and_fuel Other Fuel Fuel Wall/Floor Furnace +in.hvac_heating_type_and_fuel Propane Fuel Boiler +in.hvac_heating_type_and_fuel Propane Fuel Furnace +in.hvac_heating_type_and_fuel Propane Fuel Wall/Floor Furnace +in.hvac_secondary_heating_efficiency Fuel Boiler, 76% AFUE +in.hvac_secondary_heating_fuel Wood +in.hvac_secondary_heating_partial_space_conditioning 0% +in.hvac_secondary_heating_partial_space_conditioning 30% +in.hvac_secondary_heating_type Non-Ducted Heating +in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Electricity +in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Fuel +in.hvac_shared_efficiencies Fan Coil Cooling Only +in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Electricity +in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Fuel +in.hvac_system_is_faulted No +in.hvac_system_is_scaled No +in.income 10000-14999 +in.income 100000-119999 +in.income 120000-139999 +in.income 140000-159999 +in.income 15000-19999 +in.income 160000-179999 +in.income 180000-199999 +in.income 20000-24999 +in.income 200000+ +in.income 25000-29999 +in.income 30000-34999 +in.income 35000-39999 +in.income 40000-44999 +in.income 45000-49999 +in.income 50000-59999 +in.income 60000-69999 +in.income 70000-79999 +in.income 80000-99999 +in.income <10000 +in.income Not Available +in.income_recs_2015 100000-119999 +in.income_recs_2015 120000-139999 +in.income_recs_2015 140000+ +in.income_recs_2015 20000-39999 +in.income_recs_2015 40000-59999 +in.income_recs_2015 60000-79999 +in.income_recs_2015 80000-99999 +in.income_recs_2015 <20000 +in.income_recs_2015 Not Available +in.income_recs_2020 100000-149999 +in.income_recs_2020 150000+ +in.income_recs_2020 20000-39999 +in.income_recs_2020 40000-59999 +in.income_recs_2020 60000-99999 +in.income_recs_2020 <20000 +in.income_recs_2020 Not Available +in.infiltration 1 ACH50 +in.infiltration 10 ACH50 +in.infiltration 15 ACH50 +in.infiltration 2 ACH50 +in.infiltration 20 ACH50 +in.infiltration 25 ACH50 +in.infiltration 3 ACH50 +in.infiltration 30 ACH50 +in.infiltration 4 ACH50 +in.infiltration 40 ACH50 +in.infiltration 5 ACH50 +in.infiltration 50 ACH50 +in.infiltration 6 ACH50 +in.infiltration 7 ACH50 +in.infiltration 8 ACH50 +in.insulation_ceiling R-13 +in.insulation_ceiling R-19 +in.insulation_ceiling R-30 +in.insulation_ceiling R-38 +in.insulation_ceiling R-49 +in.insulation_ceiling R-7 +in.insulation_ceiling Uninsulated +in.insulation_floor Ceiling R-13 +in.insulation_floor Ceiling R-19 +in.insulation_floor Ceiling R-30 +in.insulation_floor Uninsulated +in.insulation_foundation_wall Uninsulated +in.insulation_foundation_wall Wall R-10, Exterior +in.insulation_foundation_wall Wall R-15, Exterior +in.insulation_foundation_wall Wall R-5, Exterior +in.insulation_rim_joist R-10, Exterior +in.insulation_rim_joist R-15, Exterior +in.insulation_rim_joist R-5, Exterior +in.insulation_rim_joist Uninsulated +in.insulation_roof Finished, R-13 +in.insulation_roof Finished, R-19 +in.insulation_roof Finished, R-30 +in.insulation_roof Finished, R-38 +in.insulation_roof Finished, R-49 +in.insulation_roof Finished, R-7 +in.insulation_roof Finished, Uninsulated +in.insulation_roof Unfinished, Uninsulated +in.insulation_slab 2ft R10 Perimeter, Vertical +in.insulation_slab 2ft R10 Under, Horizontal +in.insulation_slab 2ft R5 Perimeter, Vertical +in.insulation_slab 2ft R5 Under, Horizontal +in.insulation_slab Uninsulated +in.insulation_wall Brick, 12-in, 3-wythe, R-11 +in.insulation_wall Brick, 12-in, 3-wythe, R-15 +in.insulation_wall Brick, 12-in, 3-wythe, R-19 +in.insulation_wall Brick, 12-in, 3-wythe, R-7 +in.insulation_wall Brick, 12-in, 3-wythe, Uninsulated +in.insulation_wall CMU, 6-in Hollow, R-11 +in.insulation_wall CMU, 6-in Hollow, R-15 +in.insulation_wall CMU, 6-in Hollow, R-19 +in.insulation_wall CMU, 6-in Hollow, R-7 +in.insulation_wall CMU, 6-in Hollow, Uninsulated +in.insulation_wall Wood Stud, R-11 +in.insulation_wall Wood Stud, R-15 +in.insulation_wall Wood Stud, R-19 +in.insulation_wall Wood Stud, R-7 +in.insulation_wall Wood Stud, Uninsulated +in.interior_shading Summer = 0.7, Winter = 0.85 +in.iso_rto_region CAISO +in.iso_rto_region ERCOT +in.iso_rto_region MISO +in.iso_rto_region NEISO +in.iso_rto_region NYISO +in.iso_rto_region PJM +in.iso_rto_region SPP +in.lighting 100% CFL +in.lighting 100% Incandescent +in.lighting 100% LED +in.lighting_interior_use 100% Usage +in.lighting_other_use 100% Usage +in.location_region CR02 +in.location_region CR03 +in.location_region CR04 +in.location_region CR05 +in.location_region CR06 +in.location_region CR07 +in.location_region CR08 +in.location_region CR09 +in.location_region CR10 +in.location_region CR11 +in.location_region CRAK +in.location_region CRHI +in.metropolitan_and_micropolitan_statistical_area Aberdeen, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Aberdeen, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Abilene, TX MSA +in.metropolitan_and_micropolitan_statistical_area Ada, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Adrian, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Akron, OH MSA +in.metropolitan_and_micropolitan_statistical_area Alamogordo, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Albany, GA MSA +in.metropolitan_and_micropolitan_statistical_area Albany, OR MSA +in.metropolitan_and_micropolitan_statistical_area Albany-Schenectady-Troy, NY MSA +in.metropolitan_and_micropolitan_statistical_area Albemarle, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Albert Lea, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Albertville, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Albuquerque, NM MSA +in.metropolitan_and_micropolitan_statistical_area Alexandria, LA MSA +in.metropolitan_and_micropolitan_statistical_area Alexandria, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Alice, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Allentown-Bethlehem-Easton, PA-NJ MSA +in.metropolitan_and_micropolitan_statistical_area Alma, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Alpena, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Altoona, PA MSA +in.metropolitan_and_micropolitan_statistical_area Altus, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Amarillo, TX MSA +in.metropolitan_and_micropolitan_statistical_area Americus, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Ames, IA MSA +in.metropolitan_and_micropolitan_statistical_area Amsterdam, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Anchorage, AK MSA +in.metropolitan_and_micropolitan_statistical_area Angola, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Ann Arbor, MI MSA +in.metropolitan_and_micropolitan_statistical_area Anniston-Oxford-Jacksonville, AL MSA +in.metropolitan_and_micropolitan_statistical_area Appleton, WI MSA +in.metropolitan_and_micropolitan_statistical_area Arcadia, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Ardmore, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Arkadelphia, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Arkansas City-Winfield, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Asheville, NC MSA +in.metropolitan_and_micropolitan_statistical_area Ashland, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Ashtabula, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Astoria, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Atchison, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Athens, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Athens, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Athens, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Athens-Clarke County, GA MSA +in.metropolitan_and_micropolitan_statistical_area Atlanta-Sandy Springs-Roswell, GA MSA +in.metropolitan_and_micropolitan_statistical_area Atlantic City-Hammonton, NJ MSA +in.metropolitan_and_micropolitan_statistical_area Auburn, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Auburn, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Auburn-Opelika, AL MSA +in.metropolitan_and_micropolitan_statistical_area Augusta-Richmond County, GA-SC MSA +in.metropolitan_and_micropolitan_statistical_area Augusta-Waterville, ME MicroSA +in.metropolitan_and_micropolitan_statistical_area Austin, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Austin-Round Rock, TX MSA +in.metropolitan_and_micropolitan_statistical_area Bainbridge, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Bakersfield, CA MSA +in.metropolitan_and_micropolitan_statistical_area Baltimore-Columbia-Towson, MD MSA +in.metropolitan_and_micropolitan_statistical_area Bangor, ME MSA +in.metropolitan_and_micropolitan_statistical_area Baraboo, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Bardstown, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Barnstable Town, MA MSA +in.metropolitan_and_micropolitan_statistical_area Barre, VT MicroSA +in.metropolitan_and_micropolitan_statistical_area Bartlesville, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Bastrop, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Batavia, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Batesville, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Baton Rouge, LA MSA +in.metropolitan_and_micropolitan_statistical_area Battle Creek, MI MSA +in.metropolitan_and_micropolitan_statistical_area Bay City, MI MSA +in.metropolitan_and_micropolitan_statistical_area Bay City, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Beatrice, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Beaumont-Port Arthur, TX MSA +in.metropolitan_and_micropolitan_statistical_area Beaver Dam, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Beckley, WV MSA +in.metropolitan_and_micropolitan_statistical_area Bedford, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Beeville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Bellefontaine, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Bellingham, WA MSA +in.metropolitan_and_micropolitan_statistical_area Bemidji, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Bend-Redmond, OR MSA +in.metropolitan_and_micropolitan_statistical_area Bennettsville, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Bennington, VT MicroSA +in.metropolitan_and_micropolitan_statistical_area Berlin, NH-VT MicroSA +in.metropolitan_and_micropolitan_statistical_area Big Rapids, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Big Spring, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Big Stone Gap, VA MicroSA +in.metropolitan_and_micropolitan_statistical_area Billings, MT MSA +in.metropolitan_and_micropolitan_statistical_area Binghamton, NY MSA +in.metropolitan_and_micropolitan_statistical_area Birmingham-Hoover, AL MSA +in.metropolitan_and_micropolitan_statistical_area Bismarck, ND MSA +in.metropolitan_and_micropolitan_statistical_area Blackfoot, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Blacksburg-Christiansburg-Radford, VA MSA +in.metropolitan_and_micropolitan_statistical_area Bloomington, IL MSA +in.metropolitan_and_micropolitan_statistical_area Bloomington, IN MSA +in.metropolitan_and_micropolitan_statistical_area Bloomsburg-Berwick, PA MSA +in.metropolitan_and_micropolitan_statistical_area Bluefield, WV-VA MicroSA +in.metropolitan_and_micropolitan_statistical_area Blytheville, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Bogalusa, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Boise City, ID MSA +in.metropolitan_and_micropolitan_statistical_area Boone, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Boone, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Borger, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Boston-Cambridge-Newton, MA-NH MSA +in.metropolitan_and_micropolitan_statistical_area Boulder, CO MSA +in.metropolitan_and_micropolitan_statistical_area Bowling Green, KY MSA +in.metropolitan_and_micropolitan_statistical_area Bozeman, MT MicroSA +in.metropolitan_and_micropolitan_statistical_area Bradford, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Brainerd, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Branson, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Breckenridge, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Bremerton-Silverdale, WA MSA +in.metropolitan_and_micropolitan_statistical_area Brenham, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Brevard, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Bridgeport-Stamford-Norwalk, CT MSA +in.metropolitan_and_micropolitan_statistical_area Brookhaven, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Brookings, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Brookings, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Brownsville-Harlingen, TX MSA +in.metropolitan_and_micropolitan_statistical_area Brownwood, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Brunswick, GA MSA +in.metropolitan_and_micropolitan_statistical_area Bucyrus, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Buffalo-Cheektowaga-Niagara Falls, NY MSA +in.metropolitan_and_micropolitan_statistical_area Burley, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Burlington, IA-IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Burlington, NC MSA +in.metropolitan_and_micropolitan_statistical_area Burlington-South Burlington, VT MSA +in.metropolitan_and_micropolitan_statistical_area Butte-Silver Bow, MT MicroSA +in.metropolitan_and_micropolitan_statistical_area Cadillac, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Calhoun, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area California-Lexington Park, MD MSA +in.metropolitan_and_micropolitan_statistical_area Cambridge, MD MicroSA +in.metropolitan_and_micropolitan_statistical_area Cambridge, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Camden, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Campbellsville, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Canon City, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Canton, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Canton-Massillon, OH MSA +in.metropolitan_and_micropolitan_statistical_area Cape Coral-Fort Myers, FL MSA +in.metropolitan_and_micropolitan_statistical_area Cape Girardeau, MO-IL MSA +in.metropolitan_and_micropolitan_statistical_area Carbondale-Marion, IL MSA +in.metropolitan_and_micropolitan_statistical_area Carlsbad-Artesia, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Carson City, NV MSA +in.metropolitan_and_micropolitan_statistical_area Casper, WY MSA +in.metropolitan_and_micropolitan_statistical_area Cedar City, UT MicroSA +in.metropolitan_and_micropolitan_statistical_area Cedar Rapids, IA MSA +in.metropolitan_and_micropolitan_statistical_area Cedartown, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Celina, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Centralia, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Centralia, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Chambersburg-Waynesboro, PA MSA +in.metropolitan_and_micropolitan_statistical_area Champaign-Urbana, IL MSA +in.metropolitan_and_micropolitan_statistical_area Charleston, WV MSA +in.metropolitan_and_micropolitan_statistical_area Charleston-Mattoon, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Charleston-North Charleston, SC MSA +in.metropolitan_and_micropolitan_statistical_area Charlotte-Concord-Gastonia, NC-SC MSA +in.metropolitan_and_micropolitan_statistical_area Charlottesville, VA MSA +in.metropolitan_and_micropolitan_statistical_area Chattanooga, TN-GA MSA +in.metropolitan_and_micropolitan_statistical_area Cheyenne, WY MSA +in.metropolitan_and_micropolitan_statistical_area Chicago-Naperville-Elgin, IL-IN-WI MSA +in.metropolitan_and_micropolitan_statistical_area Chico, CA MSA +in.metropolitan_and_micropolitan_statistical_area Chillicothe, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Cincinnati, OH-KY-IN MSA +in.metropolitan_and_micropolitan_statistical_area Claremont-Lebanon, NH-VT MicroSA +in.metropolitan_and_micropolitan_statistical_area Clarksburg, WV MicroSA +in.metropolitan_and_micropolitan_statistical_area Clarksdale, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Clarksville, TN-KY MSA +in.metropolitan_and_micropolitan_statistical_area Clearlake, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Cleveland, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Cleveland, TN MSA +in.metropolitan_and_micropolitan_statistical_area Cleveland-Elyria, OH MSA +in.metropolitan_and_micropolitan_statistical_area Clewiston, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Clinton, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Clovis, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Coeur d'Alene, ID MSA +in.metropolitan_and_micropolitan_statistical_area Coffeyville, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Coldwater, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area College Station-Bryan, TX MSA +in.metropolitan_and_micropolitan_statistical_area Colorado Springs, CO MSA +in.metropolitan_and_micropolitan_statistical_area Columbia, MO MSA +in.metropolitan_and_micropolitan_statistical_area Columbia, SC MSA +in.metropolitan_and_micropolitan_statistical_area Columbus, GA-AL MSA +in.metropolitan_and_micropolitan_statistical_area Columbus, IN MSA +in.metropolitan_and_micropolitan_statistical_area Columbus, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Columbus, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Columbus, OH MSA +in.metropolitan_and_micropolitan_statistical_area Concord, NH MicroSA +in.metropolitan_and_micropolitan_statistical_area Connersville, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Cookeville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Coos Bay, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Cordele, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Corinth, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Cornelia, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Corning, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Corpus Christi, TX MSA +in.metropolitan_and_micropolitan_statistical_area Corsicana, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Cortland, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Corvallis, OR MSA +in.metropolitan_and_micropolitan_statistical_area Coshocton, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Craig, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Crawfordsville, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Crescent City, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Crestview-Fort Walton Beach-Destin, FL MSA +in.metropolitan_and_micropolitan_statistical_area Crossville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Cullman, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Cullowhee, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Cumberland, MD-WV MSA +in.metropolitan_and_micropolitan_statistical_area Dallas-Fort Worth-Arlington, TX MSA +in.metropolitan_and_micropolitan_statistical_area Dalton, GA MSA +in.metropolitan_and_micropolitan_statistical_area Danville, IL MSA +in.metropolitan_and_micropolitan_statistical_area Danville, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Danville, VA MicroSA +in.metropolitan_and_micropolitan_statistical_area Daphne-Fairhope-Foley, AL MSA +in.metropolitan_and_micropolitan_statistical_area Davenport-Moline-Rock Island, IA-IL MSA +in.metropolitan_and_micropolitan_statistical_area Dayton, OH MSA +in.metropolitan_and_micropolitan_statistical_area Dayton, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area DeRidder, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Decatur, AL MSA +in.metropolitan_and_micropolitan_statistical_area Decatur, IL MSA +in.metropolitan_and_micropolitan_statistical_area Decatur, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Defiance, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Del Rio, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Deltona-Daytona Beach-Ormond Beach, FL MSA +in.metropolitan_and_micropolitan_statistical_area Deming, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Denver-Aurora-Lakewood, CO MSA +in.metropolitan_and_micropolitan_statistical_area Des Moines-West Des Moines, IA MSA +in.metropolitan_and_micropolitan_statistical_area Detroit-Warren-Dearborn, MI MSA +in.metropolitan_and_micropolitan_statistical_area Dickinson, ND MicroSA +in.metropolitan_and_micropolitan_statistical_area Dixon, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Dodge City, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Dothan, AL MSA +in.metropolitan_and_micropolitan_statistical_area Douglas, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Dover, DE MSA +in.metropolitan_and_micropolitan_statistical_area DuBois, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Dublin, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Dubuque, IA MSA +in.metropolitan_and_micropolitan_statistical_area Duluth, MN-WI MSA +in.metropolitan_and_micropolitan_statistical_area Dumas, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Duncan, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Dunn, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Durango, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Durant, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Durham-Chapel Hill, NC MSA +in.metropolitan_and_micropolitan_statistical_area Dyersburg, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Eagle Pass, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area East Stroudsburg, PA MSA +in.metropolitan_and_micropolitan_statistical_area Easton, MD MicroSA +in.metropolitan_and_micropolitan_statistical_area Eau Claire, WI MSA +in.metropolitan_and_micropolitan_statistical_area Edwards, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Effingham, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area El Campo, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area El Centro, CA MSA +in.metropolitan_and_micropolitan_statistical_area El Dorado, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area El Paso, TX MSA +in.metropolitan_and_micropolitan_statistical_area Elizabeth City, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Elizabethtown-Fort Knox, KY MSA +in.metropolitan_and_micropolitan_statistical_area Elk City, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Elkhart-Goshen, IN MSA +in.metropolitan_and_micropolitan_statistical_area Elkins, WV MicroSA +in.metropolitan_and_micropolitan_statistical_area Elko, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Ellensburg, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Elmira, NY MSA +in.metropolitan_and_micropolitan_statistical_area Emporia, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Enid, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Enterprise, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Erie, PA MSA +in.metropolitan_and_micropolitan_statistical_area Escanaba, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Espanola, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Eugene, OR MSA +in.metropolitan_and_micropolitan_statistical_area Eureka-Arcata-Fortuna, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Evanston, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Evansville, IN-KY MSA +in.metropolitan_and_micropolitan_statistical_area Fairbanks, AK MSA +in.metropolitan_and_micropolitan_statistical_area Fairfield, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Fairmont, WV MicroSA +in.metropolitan_and_micropolitan_statistical_area Fallon, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Fargo, ND-MN MSA +in.metropolitan_and_micropolitan_statistical_area Faribault-Northfield, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Farmington, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Farmington, NM MSA +in.metropolitan_and_micropolitan_statistical_area Fayetteville, NC MSA +in.metropolitan_and_micropolitan_statistical_area Fayetteville-Springdale-Rogers, AR-MO MSA +in.metropolitan_and_micropolitan_statistical_area Fergus Falls, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Fernley, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Findlay, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Fitzgerald, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Flagstaff, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Flint, MI MSA +in.metropolitan_and_micropolitan_statistical_area Florence, SC MSA +in.metropolitan_and_micropolitan_statistical_area Florence-Muscle Shoals, AL MSA +in.metropolitan_and_micropolitan_statistical_area Fond du Lac, WI MSA +in.metropolitan_and_micropolitan_statistical_area Forest City, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Forrest City, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Collins, CO MSA +in.metropolitan_and_micropolitan_statistical_area Fort Dodge, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Leonard Wood, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Madison-Keokuk, IA-IL-MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Morgan, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Polk South, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Fort Smith, AR-OK MSA +in.metropolitan_and_micropolitan_statistical_area Fort Wayne, IN MSA +in.metropolitan_and_micropolitan_statistical_area Frankfort, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Frankfort, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Fredericksburg, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Freeport, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Fremont, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Fremont, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Fresno, CA MSA +in.metropolitan_and_micropolitan_statistical_area Gadsden, AL MSA +in.metropolitan_and_micropolitan_statistical_area Gaffney, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Gainesville, FL MSA +in.metropolitan_and_micropolitan_statistical_area Gainesville, GA MSA +in.metropolitan_and_micropolitan_statistical_area Gainesville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Galesburg, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Gallup, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Garden City, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Gardnerville Ranchos, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Georgetown, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Gettysburg, PA MSA +in.metropolitan_and_micropolitan_statistical_area Gillette, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Glasgow, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Glens Falls, NY MSA +in.metropolitan_and_micropolitan_statistical_area Glenwood Springs, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Gloversville, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Goldsboro, NC MSA +in.metropolitan_and_micropolitan_statistical_area Grand Forks, ND-MN MSA +in.metropolitan_and_micropolitan_statistical_area Grand Island, NE MSA +in.metropolitan_and_micropolitan_statistical_area Grand Junction, CO MSA +in.metropolitan_and_micropolitan_statistical_area Grand Rapids-Wyoming, MI MSA +in.metropolitan_and_micropolitan_statistical_area Grants Pass, OR MSA +in.metropolitan_and_micropolitan_statistical_area Grants, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Great Bend, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Great Falls, MT MSA +in.metropolitan_and_micropolitan_statistical_area Greeley, CO MSA +in.metropolitan_and_micropolitan_statistical_area Green Bay, WI MSA +in.metropolitan_and_micropolitan_statistical_area Greeneville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Greenfield Town, MA MicroSA +in.metropolitan_and_micropolitan_statistical_area Greensboro-High Point, NC MSA +in.metropolitan_and_micropolitan_statistical_area Greensburg, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Greenville, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Greenville, NC MSA +in.metropolitan_and_micropolitan_statistical_area Greenville, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Greenville-Anderson-Mauldin, SC MSA +in.metropolitan_and_micropolitan_statistical_area Greenwood, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Greenwood, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Grenada, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Gulfport-Biloxi-Pascagoula, MS MSA +in.metropolitan_and_micropolitan_statistical_area Guymon, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Hagerstown-Martinsburg, MD-WV MSA +in.metropolitan_and_micropolitan_statistical_area Hailey, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Hammond, LA MSA +in.metropolitan_and_micropolitan_statistical_area Hanford-Corcoran, CA MSA +in.metropolitan_and_micropolitan_statistical_area Hannibal, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Harrisburg-Carlisle, PA MSA +in.metropolitan_and_micropolitan_statistical_area Harrison, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Harrisonburg, VA MSA +in.metropolitan_and_micropolitan_statistical_area Hartford-West Hartford-East Hartford, CT MSA +in.metropolitan_and_micropolitan_statistical_area Hastings, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Hattiesburg, MS MSA +in.metropolitan_and_micropolitan_statistical_area Hays, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Heber, UT MicroSA +in.metropolitan_and_micropolitan_statistical_area Helena, MT MicroSA +in.metropolitan_and_micropolitan_statistical_area Helena-West Helena, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Henderson, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Hereford, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Hermiston-Pendleton, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Hickory-Lenoir-Morganton, NC MSA +in.metropolitan_and_micropolitan_statistical_area Hillsdale, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Hilo, HI MicroSA +in.metropolitan_and_micropolitan_statistical_area Hilton Head Island-Bluffton-Beaufort, SC MSA +in.metropolitan_and_micropolitan_statistical_area Hinesville, GA MSA +in.metropolitan_and_micropolitan_statistical_area Hobbs, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Holland, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Homosassa Springs, FL MSA +in.metropolitan_and_micropolitan_statistical_area Hood River, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Hot Springs, AR MSA +in.metropolitan_and_micropolitan_statistical_area Houghton, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Houma-Thibodaux, LA MSA +in.metropolitan_and_micropolitan_statistical_area Houston-The Woodlands-Sugar Land, TX MSA +in.metropolitan_and_micropolitan_statistical_area Hudson, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Huntingdon, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Huntington, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Huntington-Ashland, WV-KY-OH MSA +in.metropolitan_and_micropolitan_statistical_area Huntsville, AL MSA +in.metropolitan_and_micropolitan_statistical_area Huntsville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Huron, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Hutchinson, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Hutchinson, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Idaho Falls, ID MSA +in.metropolitan_and_micropolitan_statistical_area Indiana, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Indianapolis-Carmel-Anderson, IN MSA +in.metropolitan_and_micropolitan_statistical_area Indianola, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Ionia, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Iowa City, IA MSA +in.metropolitan_and_micropolitan_statistical_area Iron Mountain, MI-WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Ithaca, NY MSA +in.metropolitan_and_micropolitan_statistical_area Jackson, MI MSA +in.metropolitan_and_micropolitan_statistical_area Jackson, MS MSA +in.metropolitan_and_micropolitan_statistical_area Jackson, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Jackson, TN MSA +in.metropolitan_and_micropolitan_statistical_area Jackson, WY-ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Jacksonville, FL MSA +in.metropolitan_and_micropolitan_statistical_area Jacksonville, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Jacksonville, NC MSA +in.metropolitan_and_micropolitan_statistical_area Jacksonville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Jamestown, ND MicroSA +in.metropolitan_and_micropolitan_statistical_area Jamestown-Dunkirk-Fredonia, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Janesville-Beloit, WI MSA +in.metropolitan_and_micropolitan_statistical_area Jasper, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Jefferson City, MO MSA +in.metropolitan_and_micropolitan_statistical_area Jefferson, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Jesup, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Johnson City, TN MSA +in.metropolitan_and_micropolitan_statistical_area Johnstown, PA MSA +in.metropolitan_and_micropolitan_statistical_area Jonesboro, AR MSA +in.metropolitan_and_micropolitan_statistical_area Joplin, MO MSA +in.metropolitan_and_micropolitan_statistical_area Junction City, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Juneau, AK MicroSA +in.metropolitan_and_micropolitan_statistical_area Kahului-Wailuku-Lahaina, HI MSA +in.metropolitan_and_micropolitan_statistical_area Kalamazoo-Portage, MI MSA +in.metropolitan_and_micropolitan_statistical_area Kalispell, MT MicroSA +in.metropolitan_and_micropolitan_statistical_area Kankakee, IL MSA +in.metropolitan_and_micropolitan_statistical_area Kansas City, MO-KS MSA +in.metropolitan_and_micropolitan_statistical_area Kapaa, HI MicroSA +in.metropolitan_and_micropolitan_statistical_area Kearney, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Keene, NH MicroSA +in.metropolitan_and_micropolitan_statistical_area Kendallville, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Kennett, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Kennewick-Richland, WA MSA +in.metropolitan_and_micropolitan_statistical_area Kerrville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Ketchikan, AK MicroSA +in.metropolitan_and_micropolitan_statistical_area Key West, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Kill Devil Hills, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Killeen-Temple, TX MSA +in.metropolitan_and_micropolitan_statistical_area Kingsport-Bristol-Bristol, TN-VA MSA +in.metropolitan_and_micropolitan_statistical_area Kingston, NY MSA +in.metropolitan_and_micropolitan_statistical_area Kingsville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Kinston, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Kirksville, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Klamath Falls, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Knoxville, TN MSA +in.metropolitan_and_micropolitan_statistical_area Kokomo, IN MSA +in.metropolitan_and_micropolitan_statistical_area La Crosse-Onalaska, WI-MN MSA +in.metropolitan_and_micropolitan_statistical_area La Grande, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area LaGrange, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Laconia, NH MicroSA +in.metropolitan_and_micropolitan_statistical_area Lafayette, LA MSA +in.metropolitan_and_micropolitan_statistical_area Lafayette-West Lafayette, IN MSA +in.metropolitan_and_micropolitan_statistical_area Lake Charles, LA MSA +in.metropolitan_and_micropolitan_statistical_area Lake City, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Lake Havasu City-Kingman, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Lakeland-Winter Haven, FL MSA +in.metropolitan_and_micropolitan_statistical_area Lancaster, PA MSA +in.metropolitan_and_micropolitan_statistical_area Lansing-East Lansing, MI MSA +in.metropolitan_and_micropolitan_statistical_area Laramie, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Laredo, TX MSA +in.metropolitan_and_micropolitan_statistical_area Las Cruces, NM MSA +in.metropolitan_and_micropolitan_statistical_area Las Vegas, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Las Vegas-Henderson-Paradise, NV MSA +in.metropolitan_and_micropolitan_statistical_area Laurel, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Laurinburg, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Lawrence, KS MSA +in.metropolitan_and_micropolitan_statistical_area Lawrenceburg, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Lawton, OK MSA +in.metropolitan_and_micropolitan_statistical_area Lebanon, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Lebanon, PA MSA +in.metropolitan_and_micropolitan_statistical_area Levelland, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Lewisburg, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Lewisburg, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Lewiston, ID-WA MSA +in.metropolitan_and_micropolitan_statistical_area Lewiston-Auburn, ME MSA +in.metropolitan_and_micropolitan_statistical_area Lewistown, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Lexington, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Lexington-Fayette, KY MSA +in.metropolitan_and_micropolitan_statistical_area Liberal, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Lima, OH MSA +in.metropolitan_and_micropolitan_statistical_area Lincoln, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Lincoln, NE MSA +in.metropolitan_and_micropolitan_statistical_area Little Rock-North Little Rock-Conway, AR MSA +in.metropolitan_and_micropolitan_statistical_area Lock Haven, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Logan, UT-ID MSA +in.metropolitan_and_micropolitan_statistical_area Logan, WV MicroSA +in.metropolitan_and_micropolitan_statistical_area Logansport, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area London, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Longview, TX MSA +in.metropolitan_and_micropolitan_statistical_area Longview, WA MSA +in.metropolitan_and_micropolitan_statistical_area Los Alamos, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Los Angeles-Long Beach-Anaheim, CA MSA +in.metropolitan_and_micropolitan_statistical_area Louisville/Jefferson County, KY-IN MSA +in.metropolitan_and_micropolitan_statistical_area Lubbock, TX MSA +in.metropolitan_and_micropolitan_statistical_area Ludington, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Lufkin, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Lumberton, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Lynchburg, VA MSA +in.metropolitan_and_micropolitan_statistical_area Macomb, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Macon, GA MSA +in.metropolitan_and_micropolitan_statistical_area Madera, CA MSA +in.metropolitan_and_micropolitan_statistical_area Madison, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Madison, WI MSA +in.metropolitan_and_micropolitan_statistical_area Madisonville, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Magnolia, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Malone, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Malvern, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Manchester-Nashua, NH MSA +in.metropolitan_and_micropolitan_statistical_area Manhattan, KS MSA +in.metropolitan_and_micropolitan_statistical_area Manitowoc, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Mankato-North Mankato, MN MSA +in.metropolitan_and_micropolitan_statistical_area Mansfield, OH MSA +in.metropolitan_and_micropolitan_statistical_area Marietta, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Marinette, WI-MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Marion, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Marion, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Marion, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Marquette, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Marshall, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Marshall, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Marshall, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Marshalltown, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Martin, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Martinsville, VA MicroSA +in.metropolitan_and_micropolitan_statistical_area Maryville, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Mason City, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Mayfield, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Maysville, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area McAlester, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area McAllen-Edinburg-Mission, TX MSA +in.metropolitan_and_micropolitan_statistical_area McComb, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area McMinnville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area McPherson, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Meadville, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Medford, OR MSA +in.metropolitan_and_micropolitan_statistical_area Memphis, TN-MS-AR MSA +in.metropolitan_and_micropolitan_statistical_area Menomonie, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Merced, CA MSA +in.metropolitan_and_micropolitan_statistical_area Meridian, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Merrill, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Mexico, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Miami, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Miami-Fort Lauderdale-West Palm Beach, FL MSA +in.metropolitan_and_micropolitan_statistical_area Michigan City-La Porte, IN MSA +in.metropolitan_and_micropolitan_statistical_area Middlesborough, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Midland, MI MSA +in.metropolitan_and_micropolitan_statistical_area Midland, TX MSA +in.metropolitan_and_micropolitan_statistical_area Milledgeville, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Milwaukee-Waukesha-West Allis, WI MSA +in.metropolitan_and_micropolitan_statistical_area Mineral Wells, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Minneapolis-St. Paul-Bloomington, MN-WI MSA +in.metropolitan_and_micropolitan_statistical_area Minot, ND MicroSA +in.metropolitan_and_micropolitan_statistical_area Missoula, MT MSA +in.metropolitan_and_micropolitan_statistical_area Mitchell, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Moberly, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Mobile, AL MSA +in.metropolitan_and_micropolitan_statistical_area Modesto, CA MSA +in.metropolitan_and_micropolitan_statistical_area Monroe, LA MSA +in.metropolitan_and_micropolitan_statistical_area Monroe, MI MSA +in.metropolitan_and_micropolitan_statistical_area Montgomery, AL MSA +in.metropolitan_and_micropolitan_statistical_area Montrose, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Morehead City, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Morgan City, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Morgantown, WV MSA +in.metropolitan_and_micropolitan_statistical_area Morristown, TN MSA +in.metropolitan_and_micropolitan_statistical_area Moscow, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Moses Lake, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Moultrie, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Airy, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Pleasant, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Pleasant, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Sterling, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Vernon, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Vernon, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Mount Vernon-Anacortes, WA MSA +in.metropolitan_and_micropolitan_statistical_area Mountain Home, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Mountain Home, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Muncie, IN MSA +in.metropolitan_and_micropolitan_statistical_area Murray, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Muscatine, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Muskegon, MI MSA +in.metropolitan_and_micropolitan_statistical_area Muskogee, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA +in.metropolitan_and_micropolitan_statistical_area Nacogdoches, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Napa, CA MSA +in.metropolitan_and_micropolitan_statistical_area Naples-Immokalee-Marco Island, FL MSA +in.metropolitan_and_micropolitan_statistical_area Nashville-Davidson--Murfreesboro--Franklin, TN MSA +in.metropolitan_and_micropolitan_statistical_area Natchez, MS-LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Natchitoches, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area New Bern, NC MSA +in.metropolitan_and_micropolitan_statistical_area New Castle, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area New Castle, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area New Haven-Milford, CT MSA +in.metropolitan_and_micropolitan_statistical_area New Orleans-Metairie, LA MSA +in.metropolitan_and_micropolitan_statistical_area New Philadelphia-Dover, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area New Ulm, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area New York-Newark-Jersey City, NY-NJ-PA MSA +in.metropolitan_and_micropolitan_statistical_area Newberry, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Newport, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Newport, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Newton, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Niles-Benton Harbor, MI MSA +in.metropolitan_and_micropolitan_statistical_area Nogales, AZ MicroSA +in.metropolitan_and_micropolitan_statistical_area Norfolk, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area North Platte, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area North Port-Sarasota-Bradenton, FL MSA +in.metropolitan_and_micropolitan_statistical_area North Vernon, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area North Wilkesboro, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Norwalk, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Norwich-New London, CT MSA +in.metropolitan_and_micropolitan_statistical_area Oak Harbor, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Ocala, FL MSA +in.metropolitan_and_micropolitan_statistical_area Ocean City, NJ MSA +in.metropolitan_and_micropolitan_statistical_area Odessa, TX MSA +in.metropolitan_and_micropolitan_statistical_area Ogden-Clearfield, UT MSA +in.metropolitan_and_micropolitan_statistical_area Ogdensburg-Massena, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Oil City, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Okeechobee, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Oklahoma City, OK MSA +in.metropolitan_and_micropolitan_statistical_area Olean, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Olympia-Tumwater, WA MSA +in.metropolitan_and_micropolitan_statistical_area Omaha-Council Bluffs, NE-IA MSA +in.metropolitan_and_micropolitan_statistical_area Oneonta, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Ontario, OR-ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Opelousas, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Orangeburg, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Orlando-Kissimmee-Sanford, FL MSA +in.metropolitan_and_micropolitan_statistical_area Oshkosh-Neenah, WI MSA +in.metropolitan_and_micropolitan_statistical_area Oskaloosa, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Othello, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Ottawa, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Ottawa-Peru, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Ottumwa, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Owatonna, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Owensboro, KY MSA +in.metropolitan_and_micropolitan_statistical_area Owosso, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Oxford, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Oxford, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Oxnard-Thousand Oaks-Ventura, CA MSA +in.metropolitan_and_micropolitan_statistical_area Ozark, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Paducah, KY-IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Pahrump, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Palatka, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Palestine, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Palm Bay-Melbourne-Titusville, FL MSA +in.metropolitan_and_micropolitan_statistical_area Pampa, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Panama City, FL MSA +in.metropolitan_and_micropolitan_statistical_area Paragould, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Paris, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Paris, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Parkersburg-Vienna, WV MSA +in.metropolitan_and_micropolitan_statistical_area Parsons, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Payson, AZ MicroSA +in.metropolitan_and_micropolitan_statistical_area Pensacola-Ferry Pass-Brent, FL MSA +in.metropolitan_and_micropolitan_statistical_area Peoria, IL MSA +in.metropolitan_and_micropolitan_statistical_area Peru, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA +in.metropolitan_and_micropolitan_statistical_area Phoenix-Mesa-Scottsdale, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Picayune, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Pierre, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Pine Bluff, AR MSA +in.metropolitan_and_micropolitan_statistical_area Pinehurst-Southern Pines, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Pittsburg, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Pittsburgh, PA MSA +in.metropolitan_and_micropolitan_statistical_area Pittsfield, MA MSA +in.metropolitan_and_micropolitan_statistical_area Plainview, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Platteville, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Plattsburgh, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Plymouth, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Pocatello, ID MSA +in.metropolitan_and_micropolitan_statistical_area Point Pleasant, WV-OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Ponca City, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Pontiac, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Poplar Bluff, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Port Angeles, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Port Clinton, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Port Lavaca, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Port St. Lucie, FL MSA +in.metropolitan_and_micropolitan_statistical_area Portales, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Portland-South Portland, ME MSA +in.metropolitan_and_micropolitan_statistical_area Portland-Vancouver-Hillsboro, OR-WA MSA +in.metropolitan_and_micropolitan_statistical_area Portsmouth, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Pottsville, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Prescott, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Price, UT MicroSA +in.metropolitan_and_micropolitan_statistical_area Prineville, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Providence-Warwick, RI-MA MSA +in.metropolitan_and_micropolitan_statistical_area Provo-Orem, UT MSA +in.metropolitan_and_micropolitan_statistical_area Pueblo, CO MSA +in.metropolitan_and_micropolitan_statistical_area Pullman, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Punta Gorda, FL MSA +in.metropolitan_and_micropolitan_statistical_area Quincy, IL-MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Racine, WI MSA +in.metropolitan_and_micropolitan_statistical_area Raleigh, NC MSA +in.metropolitan_and_micropolitan_statistical_area Rapid City, SD MSA +in.metropolitan_and_micropolitan_statistical_area Reading, PA MSA +in.metropolitan_and_micropolitan_statistical_area Red Bluff, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Red Wing, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Redding, CA MSA +in.metropolitan_and_micropolitan_statistical_area Reno, NV MSA +in.metropolitan_and_micropolitan_statistical_area Rexburg, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Richmond, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Richmond, VA MSA +in.metropolitan_and_micropolitan_statistical_area Richmond-Berea, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Rio Grande City, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Riverside-San Bernardino-Ontario, CA MSA +in.metropolitan_and_micropolitan_statistical_area Riverton, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Roanoke Rapids, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Roanoke, VA MSA +in.metropolitan_and_micropolitan_statistical_area Rochelle, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Rochester, MN MSA +in.metropolitan_and_micropolitan_statistical_area Rochester, NY MSA +in.metropolitan_and_micropolitan_statistical_area Rock Springs, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Rockford, IL MSA +in.metropolitan_and_micropolitan_statistical_area Rockingham, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Rocky Mount, NC MSA +in.metropolitan_and_micropolitan_statistical_area Rolla, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Rome, GA MSA +in.metropolitan_and_micropolitan_statistical_area Roseburg, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area Roswell, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Russellville, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Ruston, LA MicroSA +in.metropolitan_and_micropolitan_statistical_area Rutland, VT MicroSA +in.metropolitan_and_micropolitan_statistical_area Sacramento--Roseville--Arden-Arcade, CA MSA +in.metropolitan_and_micropolitan_statistical_area Safford, AZ MicroSA +in.metropolitan_and_micropolitan_statistical_area Saginaw, MI MSA +in.metropolitan_and_micropolitan_statistical_area Salem, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Salem, OR MSA +in.metropolitan_and_micropolitan_statistical_area Salina, KS MicroSA +in.metropolitan_and_micropolitan_statistical_area Salinas, CA MSA +in.metropolitan_and_micropolitan_statistical_area Salisbury, MD-DE MSA +in.metropolitan_and_micropolitan_statistical_area Salt Lake City, UT MSA +in.metropolitan_and_micropolitan_statistical_area San Angelo, TX MSA +in.metropolitan_and_micropolitan_statistical_area San Antonio-New Braunfels, TX MSA +in.metropolitan_and_micropolitan_statistical_area San Diego-Carlsbad, CA MSA +in.metropolitan_and_micropolitan_statistical_area San Francisco-Oakland-Hayward, CA MSA +in.metropolitan_and_micropolitan_statistical_area San Jose-Sunnyvale-Santa Clara, CA MSA +in.metropolitan_and_micropolitan_statistical_area San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA +in.metropolitan_and_micropolitan_statistical_area Sandpoint, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Sandusky, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Sanford, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Santa Cruz-Watsonville, CA MSA +in.metropolitan_and_micropolitan_statistical_area Santa Fe, NM MSA +in.metropolitan_and_micropolitan_statistical_area Santa Maria-Santa Barbara, CA MSA +in.metropolitan_and_micropolitan_statistical_area Santa Rosa, CA MSA +in.metropolitan_and_micropolitan_statistical_area Sault Ste. Marie, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Savannah, GA MSA +in.metropolitan_and_micropolitan_statistical_area Sayre, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Scottsbluff, NE MicroSA +in.metropolitan_and_micropolitan_statistical_area Scottsboro, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Scranton--Wilkes-Barre--Hazleton, PA MSA +in.metropolitan_and_micropolitan_statistical_area Searcy, AR MicroSA +in.metropolitan_and_micropolitan_statistical_area Seattle-Tacoma-Bellevue, WA MSA +in.metropolitan_and_micropolitan_statistical_area Sebastian-Vero Beach, FL MSA +in.metropolitan_and_micropolitan_statistical_area Sebring, FL MSA +in.metropolitan_and_micropolitan_statistical_area Sedalia, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Selinsgrove, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Selma, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Seneca Falls, NY MicroSA +in.metropolitan_and_micropolitan_statistical_area Seneca, SC MicroSA +in.metropolitan_and_micropolitan_statistical_area Sevierville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Seymour, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Shawano, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Shawnee, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Sheboygan, WI MSA +in.metropolitan_and_micropolitan_statistical_area Shelby, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Shelbyville, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Shelton, WA MicroSA +in.metropolitan_and_micropolitan_statistical_area Sheridan, WY MicroSA +in.metropolitan_and_micropolitan_statistical_area Sherman-Denison, TX MSA +in.metropolitan_and_micropolitan_statistical_area Show Low, AZ MicroSA +in.metropolitan_and_micropolitan_statistical_area Shreveport-Bossier City, LA MSA +in.metropolitan_and_micropolitan_statistical_area Sidney, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Sierra Vista-Douglas, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Sikeston, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Silver City, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Sioux City, IA-NE-SD MSA +in.metropolitan_and_micropolitan_statistical_area Sioux Falls, SD MSA +in.metropolitan_and_micropolitan_statistical_area Snyder, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Somerset, KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Somerset, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Sonora, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area South Bend-Mishawaka, IN-MI MSA +in.metropolitan_and_micropolitan_statistical_area Spartanburg, SC MSA +in.metropolitan_and_micropolitan_statistical_area Spearfish, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Spencer, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Spirit Lake, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Spokane-Spokane Valley, WA MSA +in.metropolitan_and_micropolitan_statistical_area Springfield, IL MSA +in.metropolitan_and_micropolitan_statistical_area Springfield, MA MSA +in.metropolitan_and_micropolitan_statistical_area Springfield, MO MSA +in.metropolitan_and_micropolitan_statistical_area Springfield, OH MSA +in.metropolitan_and_micropolitan_statistical_area St. Cloud, MN MSA +in.metropolitan_and_micropolitan_statistical_area St. George, UT MSA +in.metropolitan_and_micropolitan_statistical_area St. Joseph, MO-KS MSA +in.metropolitan_and_micropolitan_statistical_area St. Louis, MO-IL MSA +in.metropolitan_and_micropolitan_statistical_area St. Marys, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Starkville, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area State College, PA MSA +in.metropolitan_and_micropolitan_statistical_area Statesboro, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Staunton-Waynesboro, VA MSA +in.metropolitan_and_micropolitan_statistical_area Steamboat Springs, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Stephenville, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Sterling, CO MicroSA +in.metropolitan_and_micropolitan_statistical_area Sterling, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Stevens Point, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Stillwater, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Stockton-Lodi, CA MSA +in.metropolitan_and_micropolitan_statistical_area Storm Lake, IA MicroSA +in.metropolitan_and_micropolitan_statistical_area Sturgis, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Sulphur Springs, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Summerville, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Summit Park, UT MicroSA +in.metropolitan_and_micropolitan_statistical_area Sumter, SC MSA +in.metropolitan_and_micropolitan_statistical_area Sunbury, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Susanville, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Sweetwater, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Syracuse, NY MSA +in.metropolitan_and_micropolitan_statistical_area Tahlequah, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Talladega-Sylacauga, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Tallahassee, FL MSA +in.metropolitan_and_micropolitan_statistical_area Tampa-St. Petersburg-Clearwater, FL MSA +in.metropolitan_and_micropolitan_statistical_area Taos, NM MicroSA +in.metropolitan_and_micropolitan_statistical_area Taylorville, IL MicroSA +in.metropolitan_and_micropolitan_statistical_area Terre Haute, IN MSA +in.metropolitan_and_micropolitan_statistical_area Texarkana, TX-AR MSA +in.metropolitan_and_micropolitan_statistical_area The Dalles, OR MicroSA +in.metropolitan_and_micropolitan_statistical_area The Villages, FL MSA +in.metropolitan_and_micropolitan_statistical_area Thomaston, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Thomasville, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Tiffin, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Tifton, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Toccoa, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Toledo, OH MSA +in.metropolitan_and_micropolitan_statistical_area Topeka, KS MSA +in.metropolitan_and_micropolitan_statistical_area Torrington, CT MicroSA +in.metropolitan_and_micropolitan_statistical_area Traverse City, MI MicroSA +in.metropolitan_and_micropolitan_statistical_area Trenton, NJ MSA +in.metropolitan_and_micropolitan_statistical_area Troy, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Truckee-Grass Valley, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Tucson, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Tullahoma-Manchester, TN MicroSA +in.metropolitan_and_micropolitan_statistical_area Tulsa, OK MSA +in.metropolitan_and_micropolitan_statistical_area Tupelo, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Tuscaloosa, AL MSA +in.metropolitan_and_micropolitan_statistical_area Twin Falls, ID MicroSA +in.metropolitan_and_micropolitan_statistical_area Tyler, TX MSA +in.metropolitan_and_micropolitan_statistical_area Ukiah, CA MicroSA +in.metropolitan_and_micropolitan_statistical_area Union City, TN-KY MicroSA +in.metropolitan_and_micropolitan_statistical_area Urban Honolulu, HI MSA +in.metropolitan_and_micropolitan_statistical_area Urbana, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Utica-Rome, NY MSA +in.metropolitan_and_micropolitan_statistical_area Uvalde, TX MicroSA +in.metropolitan_and_micropolitan_statistical_area Valdosta, GA MSA +in.metropolitan_and_micropolitan_statistical_area Vallejo-Fairfield, CA MSA +in.metropolitan_and_micropolitan_statistical_area Valley, AL MicroSA +in.metropolitan_and_micropolitan_statistical_area Van Wert, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Vernal, UT MicroSA +in.metropolitan_and_micropolitan_statistical_area Vicksburg, MS MicroSA +in.metropolitan_and_micropolitan_statistical_area Victoria, TX MSA +in.metropolitan_and_micropolitan_statistical_area Vidalia, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Vincennes, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Vineland-Bridgeton, NJ MSA +in.metropolitan_and_micropolitan_statistical_area Vineyard Haven, MA MicroSA +in.metropolitan_and_micropolitan_statistical_area Virginia Beach-Norfolk-Newport News, VA-NC MSA +in.metropolitan_and_micropolitan_statistical_area Visalia-Porterville, CA MSA +in.metropolitan_and_micropolitan_statistical_area Wabash, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Waco, TX MSA +in.metropolitan_and_micropolitan_statistical_area Wahpeton, ND-MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Walla Walla, WA MSA +in.metropolitan_and_micropolitan_statistical_area Wapakoneta, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Warner Robins, GA MSA +in.metropolitan_and_micropolitan_statistical_area Warren, PA MicroSA +in.metropolitan_and_micropolitan_statistical_area Warrensburg, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Warsaw, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Washington Court House, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Washington, IN MicroSA +in.metropolitan_and_micropolitan_statistical_area Washington, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Washington-Arlington-Alexandria, DC-VA-MD-WV MSA +in.metropolitan_and_micropolitan_statistical_area Waterloo-Cedar Falls, IA MSA +in.metropolitan_and_micropolitan_statistical_area Watertown, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area Watertown-Fort Atkinson, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Watertown-Fort Drum, NY MSA +in.metropolitan_and_micropolitan_statistical_area Wauchula, FL MicroSA +in.metropolitan_and_micropolitan_statistical_area Wausau, WI MSA +in.metropolitan_and_micropolitan_statistical_area Waycross, GA MicroSA +in.metropolitan_and_micropolitan_statistical_area Weatherford, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Weirton-Steubenville, WV-OH MSA +in.metropolitan_and_micropolitan_statistical_area Wenatchee, WA MSA +in.metropolitan_and_micropolitan_statistical_area West Plains, MO MicroSA +in.metropolitan_and_micropolitan_statistical_area Wheeling, WV-OH MSA +in.metropolitan_and_micropolitan_statistical_area Whitewater-Elkhorn, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Wichita Falls, TX MSA +in.metropolitan_and_micropolitan_statistical_area Wichita, KS MSA +in.metropolitan_and_micropolitan_statistical_area Williamsport, PA MSA +in.metropolitan_and_micropolitan_statistical_area Williston, ND MicroSA +in.metropolitan_and_micropolitan_statistical_area Willmar, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Wilmington, NC MSA +in.metropolitan_and_micropolitan_statistical_area Wilmington, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Wilson, NC MicroSA +in.metropolitan_and_micropolitan_statistical_area Winchester, VA-WV MSA +in.metropolitan_and_micropolitan_statistical_area Winnemucca, NV MicroSA +in.metropolitan_and_micropolitan_statistical_area Winona, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Winston-Salem, NC MSA +in.metropolitan_and_micropolitan_statistical_area Wisconsin Rapids-Marshfield, WI MicroSA +in.metropolitan_and_micropolitan_statistical_area Woodward, OK MicroSA +in.metropolitan_and_micropolitan_statistical_area Wooster, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Worcester, MA-CT MSA +in.metropolitan_and_micropolitan_statistical_area Worthington, MN MicroSA +in.metropolitan_and_micropolitan_statistical_area Yakima, WA MSA +in.metropolitan_and_micropolitan_statistical_area Yankton, SD MicroSA +in.metropolitan_and_micropolitan_statistical_area York-Hanover, PA MSA +in.metropolitan_and_micropolitan_statistical_area Youngstown-Warren-Boardman, OH-PA MSA +in.metropolitan_and_micropolitan_statistical_area Yuba City, CA MSA +in.metropolitan_and_micropolitan_statistical_area Yuma, AZ MSA +in.metropolitan_and_micropolitan_statistical_area Zanesville, OH MicroSA +in.metropolitan_and_micropolitan_statistical_area Zapata, TX MicroSA +in.misc_extra_refrigerator EF 10.2 +in.misc_extra_refrigerator EF 10.5 +in.misc_extra_refrigerator EF 15.9 +in.misc_extra_refrigerator EF 17.6 +in.misc_extra_refrigerator EF 19.9 +in.misc_extra_refrigerator EF 21.9 +in.misc_extra_refrigerator EF 6.7 +in.misc_freezer EF 12, National Average +in.misc_gas_fireplace Gas Fireplace +in.misc_gas_grill Gas Grill +in.misc_gas_lighting Gas Lighting +in.misc_hot_tub_spa Electricity +in.misc_hot_tub_spa Natural Gas +in.misc_hot_tub_spa Other Fuel +in.misc_pool Has Pool +in.misc_pool_heater Electric Heat Pump +in.misc_pool_heater Electricity +in.misc_pool_heater Natural Gas +in.misc_pool_heater Other Fuel +in.misc_pool_pump 1.0 HP Pump +in.misc_well_pump Typical Efficiency +in.natural_ventilation Cooling Season, 7 days/wk +in.neighbors 12 +in.neighbors 2 +in.neighbors 27 +in.neighbors 4 +in.neighbors 7 +in.neighbors Left/Right at 15ft +in.occupants 0 +in.occupants 1 +in.occupants 2 +in.occupants 3 +in.occupants 4 +in.occupants 5 +in.occupants 6 +in.occupants 7 +in.occupants 8 +in.orientation East +in.orientation North +in.orientation Northeast +in.orientation Northwest +in.orientation South +in.orientation Southeast +in.orientation Southwest +in.orientation West +in.plug_load_diversity 100% +in.plug_load_diversity 200% +in.plug_load_diversity 50% +in.plug_loads 100% +in.plug_loads 101% +in.plug_loads 102% +in.plug_loads 103% +in.plug_loads 104% +in.plug_loads 105% +in.plug_loads 106% +in.plug_loads 108% +in.plug_loads 110% +in.plug_loads 113% +in.plug_loads 119% +in.plug_loads 121% +in.plug_loads 123% +in.plug_loads 134% +in.plug_loads 137% +in.plug_loads 140% +in.plug_loads 144% +in.plug_loads 166% +in.plug_loads 78% +in.plug_loads 79% +in.plug_loads 82% +in.plug_loads 84% +in.plug_loads 85% +in.plug_loads 86% +in.plug_loads 89% +in.plug_loads 91% +in.plug_loads 94% +in.plug_loads 95% +in.plug_loads 96% +in.plug_loads 97% +in.plug_loads 99% +in.puma AK, 00101 +in.puma AK, 00102 +in.puma AK, 00200 +in.puma AK, 00300 +in.puma AK, 00400 +in.puma AL, 00100 +in.puma AL, 00200 +in.puma AL, 00301 +in.puma AL, 00302 +in.puma AL, 00400 +in.puma AL, 00500 +in.puma AL, 00600 +in.puma AL, 00700 +in.puma AL, 00800 +in.puma AL, 00900 +in.puma AL, 01000 +in.puma AL, 01100 +in.puma AL, 01200 +in.puma AL, 01301 +in.puma AL, 01302 +in.puma AL, 01303 +in.puma AL, 01304 +in.puma AL, 01305 +in.puma AL, 01400 +in.puma AL, 01500 +in.puma AL, 01600 +in.puma AL, 01700 +in.puma AL, 01800 +in.puma AL, 01900 +in.puma AL, 02000 +in.puma AL, 02100 +in.puma AL, 02200 +in.puma AL, 02300 +in.puma AL, 02400 +in.puma AL, 02500 +in.puma AL, 02600 +in.puma AL, 02701 +in.puma AL, 02702 +in.puma AL, 02703 +in.puma AR, 00100 +in.puma AR, 00200 +in.puma AR, 00300 +in.puma AR, 00400 +in.puma AR, 00500 +in.puma AR, 00600 +in.puma AR, 00700 +in.puma AR, 00800 +in.puma AR, 00900 +in.puma AR, 01000 +in.puma AR, 01100 +in.puma AR, 01200 +in.puma AR, 01300 +in.puma AR, 01400 +in.puma AR, 01500 +in.puma AR, 01600 +in.puma AR, 01700 +in.puma AR, 01800 +in.puma AR, 01900 +in.puma AR, 02000 +in.puma AZ, 00100 +in.puma AZ, 00101 +in.puma AZ, 00102 +in.puma AZ, 00103 +in.puma AZ, 00104 +in.puma AZ, 00105 +in.puma AZ, 00106 +in.puma AZ, 00107 +in.puma AZ, 00108 +in.puma AZ, 00109 +in.puma AZ, 00110 +in.puma AZ, 00111 +in.puma AZ, 00112 +in.puma AZ, 00113 +in.puma AZ, 00114 +in.puma AZ, 00115 +in.puma AZ, 00116 +in.puma AZ, 00117 +in.puma AZ, 00118 +in.puma AZ, 00119 +in.puma AZ, 00120 +in.puma AZ, 00121 +in.puma AZ, 00122 +in.puma AZ, 00123 +in.puma AZ, 00124 +in.puma AZ, 00125 +in.puma AZ, 00126 +in.puma AZ, 00127 +in.puma AZ, 00128 +in.puma AZ, 00129 +in.puma AZ, 00130 +in.puma AZ, 00131 +in.puma AZ, 00132 +in.puma AZ, 00133 +in.puma AZ, 00134 +in.puma AZ, 00201 +in.puma AZ, 00202 +in.puma AZ, 00203 +in.puma AZ, 00204 +in.puma AZ, 00205 +in.puma AZ, 00206 +in.puma AZ, 00207 +in.puma AZ, 00208 +in.puma AZ, 00209 +in.puma AZ, 00300 +in.puma AZ, 00400 +in.puma AZ, 00500 +in.puma AZ, 00600 +in.puma AZ, 00700 +in.puma AZ, 00800 +in.puma AZ, 00803 +in.puma AZ, 00805 +in.puma AZ, 00807 +in.puma AZ, 00900 +in.puma CA, 00101 +in.puma CA, 00102 +in.puma CA, 00103 +in.puma CA, 00104 +in.puma CA, 00105 +in.puma CA, 00106 +in.puma CA, 00107 +in.puma CA, 00108 +in.puma CA, 00109 +in.puma CA, 00110 +in.puma CA, 00300 +in.puma CA, 00701 +in.puma CA, 00702 +in.puma CA, 01100 +in.puma CA, 01301 +in.puma CA, 01302 +in.puma CA, 01303 +in.puma CA, 01304 +in.puma CA, 01305 +in.puma CA, 01306 +in.puma CA, 01307 +in.puma CA, 01308 +in.puma CA, 01309 +in.puma CA, 01500 +in.puma CA, 01700 +in.puma CA, 01901 +in.puma CA, 01902 +in.puma CA, 01903 +in.puma CA, 01904 +in.puma CA, 01905 +in.puma CA, 01906 +in.puma CA, 01907 +in.puma CA, 02300 +in.puma CA, 02500 +in.puma CA, 02901 +in.puma CA, 02902 +in.puma CA, 02903 +in.puma CA, 02904 +in.puma CA, 02905 +in.puma CA, 03100 +in.puma CA, 03300 +in.puma CA, 03701 +in.puma CA, 03702 +in.puma CA, 03703 +in.puma CA, 03704 +in.puma CA, 03705 +in.puma CA, 03706 +in.puma CA, 03707 +in.puma CA, 03708 +in.puma CA, 03709 +in.puma CA, 03710 +in.puma CA, 03711 +in.puma CA, 03712 +in.puma CA, 03713 +in.puma CA, 03714 +in.puma CA, 03715 +in.puma CA, 03716 +in.puma CA, 03717 +in.puma CA, 03718 +in.puma CA, 03719 +in.puma CA, 03720 +in.puma CA, 03721 +in.puma CA, 03722 +in.puma CA, 03723 +in.puma CA, 03724 +in.puma CA, 03725 +in.puma CA, 03726 +in.puma CA, 03727 +in.puma CA, 03728 +in.puma CA, 03729 +in.puma CA, 03730 +in.puma CA, 03731 +in.puma CA, 03732 +in.puma CA, 03733 +in.puma CA, 03734 +in.puma CA, 03735 +in.puma CA, 03736 +in.puma CA, 03737 +in.puma CA, 03738 +in.puma CA, 03739 +in.puma CA, 03740 +in.puma CA, 03741 +in.puma CA, 03742 +in.puma CA, 03743 +in.puma CA, 03744 +in.puma CA, 03745 +in.puma CA, 03746 +in.puma CA, 03747 +in.puma CA, 03748 +in.puma CA, 03749 +in.puma CA, 03750 +in.puma CA, 03751 +in.puma CA, 03752 +in.puma CA, 03753 +in.puma CA, 03754 +in.puma CA, 03755 +in.puma CA, 03756 +in.puma CA, 03757 +in.puma CA, 03758 +in.puma CA, 03759 +in.puma CA, 03760 +in.puma CA, 03761 +in.puma CA, 03762 +in.puma CA, 03763 +in.puma CA, 03764 +in.puma CA, 03765 +in.puma CA, 03766 +in.puma CA, 03767 +in.puma CA, 03768 +in.puma CA, 03769 +in.puma CA, 03900 +in.puma CA, 04101 +in.puma CA, 04102 +in.puma CA, 04701 +in.puma CA, 04702 +in.puma CA, 05301 +in.puma CA, 05302 +in.puma CA, 05303 +in.puma CA, 05500 +in.puma CA, 05700 +in.puma CA, 05901 +in.puma CA, 05902 +in.puma CA, 05903 +in.puma CA, 05904 +in.puma CA, 05905 +in.puma CA, 05906 +in.puma CA, 05907 +in.puma CA, 05908 +in.puma CA, 05909 +in.puma CA, 05910 +in.puma CA, 05911 +in.puma CA, 05912 +in.puma CA, 05913 +in.puma CA, 05914 +in.puma CA, 05915 +in.puma CA, 05916 +in.puma CA, 05917 +in.puma CA, 05918 +in.puma CA, 06101 +in.puma CA, 06102 +in.puma CA, 06103 +in.puma CA, 06501 +in.puma CA, 06502 +in.puma CA, 06503 +in.puma CA, 06504 +in.puma CA, 06505 +in.puma CA, 06506 +in.puma CA, 06507 +in.puma CA, 06508 +in.puma CA, 06509 +in.puma CA, 06510 +in.puma CA, 06511 +in.puma CA, 06512 +in.puma CA, 06513 +in.puma CA, 06514 +in.puma CA, 06515 +in.puma CA, 06701 +in.puma CA, 06702 +in.puma CA, 06703 +in.puma CA, 06704 +in.puma CA, 06705 +in.puma CA, 06706 +in.puma CA, 06707 +in.puma CA, 06708 +in.puma CA, 06709 +in.puma CA, 06710 +in.puma CA, 06711 +in.puma CA, 06712 +in.puma CA, 07101 +in.puma CA, 07102 +in.puma CA, 07103 +in.puma CA, 07104 +in.puma CA, 07105 +in.puma CA, 07106 +in.puma CA, 07107 +in.puma CA, 07108 +in.puma CA, 07109 +in.puma CA, 07110 +in.puma CA, 07111 +in.puma CA, 07112 +in.puma CA, 07113 +in.puma CA, 07114 +in.puma CA, 07115 +in.puma CA, 07301 +in.puma CA, 07302 +in.puma CA, 07303 +in.puma CA, 07304 +in.puma CA, 07305 +in.puma CA, 07306 +in.puma CA, 07307 +in.puma CA, 07308 +in.puma CA, 07309 +in.puma CA, 07310 +in.puma CA, 07311 +in.puma CA, 07312 +in.puma CA, 07313 +in.puma CA, 07314 +in.puma CA, 07315 +in.puma CA, 07316 +in.puma CA, 07317 +in.puma CA, 07318 +in.puma CA, 07319 +in.puma CA, 07320 +in.puma CA, 07321 +in.puma CA, 07322 +in.puma CA, 07501 +in.puma CA, 07502 +in.puma CA, 07503 +in.puma CA, 07504 +in.puma CA, 07505 +in.puma CA, 07506 +in.puma CA, 07507 +in.puma CA, 07701 +in.puma CA, 07702 +in.puma CA, 07703 +in.puma CA, 07704 +in.puma CA, 07901 +in.puma CA, 07902 +in.puma CA, 08101 +in.puma CA, 08102 +in.puma CA, 08103 +in.puma CA, 08104 +in.puma CA, 08105 +in.puma CA, 08106 +in.puma CA, 08301 +in.puma CA, 08302 +in.puma CA, 08303 +in.puma CA, 08501 +in.puma CA, 08502 +in.puma CA, 08503 +in.puma CA, 08504 +in.puma CA, 08505 +in.puma CA, 08506 +in.puma CA, 08507 +in.puma CA, 08508 +in.puma CA, 08509 +in.puma CA, 08510 +in.puma CA, 08511 +in.puma CA, 08512 +in.puma CA, 08513 +in.puma CA, 08514 +in.puma CA, 08701 +in.puma CA, 08702 +in.puma CA, 08900 +in.puma CA, 09501 +in.puma CA, 09502 +in.puma CA, 09503 +in.puma CA, 09701 +in.puma CA, 09702 +in.puma CA, 09703 +in.puma CA, 09901 +in.puma CA, 09902 +in.puma CA, 09903 +in.puma CA, 09904 +in.puma CA, 10100 +in.puma CA, 10701 +in.puma CA, 10702 +in.puma CA, 10703 +in.puma CA, 11101 +in.puma CA, 11102 +in.puma CA, 11103 +in.puma CA, 11104 +in.puma CA, 11105 +in.puma CA, 11106 +in.puma CA, 11300 +in.puma CO, 00100 +in.puma CO, 00102 +in.puma CO, 00103 +in.puma CO, 00200 +in.puma CO, 00300 +in.puma CO, 00400 +in.puma CO, 00600 +in.puma CO, 00700 +in.puma CO, 00800 +in.puma CO, 00801 +in.puma CO, 00802 +in.puma CO, 00803 +in.puma CO, 00804 +in.puma CO, 00805 +in.puma CO, 00806 +in.puma CO, 00807 +in.puma CO, 00808 +in.puma CO, 00809 +in.puma CO, 00810 +in.puma CO, 00811 +in.puma CO, 00812 +in.puma CO, 00813 +in.puma CO, 00814 +in.puma CO, 00815 +in.puma CO, 00816 +in.puma CO, 00817 +in.puma CO, 00818 +in.puma CO, 00819 +in.puma CO, 00820 +in.puma CO, 00821 +in.puma CO, 00822 +in.puma CO, 00823 +in.puma CO, 00824 +in.puma CO, 00900 +in.puma CO, 01001 +in.puma CO, 01002 +in.puma CO, 04101 +in.puma CO, 04102 +in.puma CO, 04103 +in.puma CO, 04104 +in.puma CO, 04105 +in.puma CO, 04106 +in.puma CT, 00100 +in.puma CT, 00101 +in.puma CT, 00102 +in.puma CT, 00103 +in.puma CT, 00104 +in.puma CT, 00105 +in.puma CT, 00300 +in.puma CT, 00301 +in.puma CT, 00302 +in.puma CT, 00303 +in.puma CT, 00304 +in.puma CT, 00305 +in.puma CT, 00306 +in.puma CT, 00500 +in.puma CT, 00700 +in.puma CT, 00900 +in.puma CT, 00901 +in.puma CT, 00902 +in.puma CT, 00903 +in.puma CT, 00904 +in.puma CT, 00905 +in.puma CT, 00906 +in.puma CT, 01100 +in.puma CT, 01101 +in.puma CT, 01300 +in.puma CT, 01500 +in.puma DC, 00101 +in.puma DC, 00102 +in.puma DC, 00103 +in.puma DC, 00104 +in.puma DC, 00105 +in.puma DE, 00101 +in.puma DE, 00102 +in.puma DE, 00103 +in.puma DE, 00104 +in.puma DE, 00200 +in.puma DE, 00300 +in.puma FL, 00101 +in.puma FL, 00102 +in.puma FL, 00500 +in.puma FL, 00901 +in.puma FL, 00902 +in.puma FL, 00903 +in.puma FL, 00904 +in.puma FL, 01101 +in.puma FL, 01102 +in.puma FL, 01103 +in.puma FL, 01104 +in.puma FL, 01105 +in.puma FL, 01106 +in.puma FL, 01107 +in.puma FL, 01108 +in.puma FL, 01109 +in.puma FL, 01110 +in.puma FL, 01111 +in.puma FL, 01112 +in.puma FL, 01113 +in.puma FL, 01114 +in.puma FL, 01500 +in.puma FL, 01701 +in.puma FL, 01900 +in.puma FL, 02101 +in.puma FL, 02102 +in.puma FL, 02103 +in.puma FL, 02300 +in.puma FL, 02700 +in.puma FL, 03101 +in.puma FL, 03102 +in.puma FL, 03103 +in.puma FL, 03104 +in.puma FL, 03105 +in.puma FL, 03106 +in.puma FL, 03107 +in.puma FL, 03301 +in.puma FL, 03302 +in.puma FL, 03500 +in.puma FL, 05301 +in.puma FL, 05701 +in.puma FL, 05702 +in.puma FL, 05703 +in.puma FL, 05704 +in.puma FL, 05705 +in.puma FL, 05706 +in.puma FL, 05707 +in.puma FL, 05708 +in.puma FL, 06100 +in.puma FL, 06300 +in.puma FL, 06901 +in.puma FL, 06902 +in.puma FL, 06903 +in.puma FL, 07101 +in.puma FL, 07102 +in.puma FL, 07103 +in.puma FL, 07104 +in.puma FL, 07105 +in.puma FL, 07300 +in.puma FL, 07301 +in.puma FL, 08101 +in.puma FL, 08102 +in.puma FL, 08103 +in.puma FL, 08301 +in.puma FL, 08302 +in.puma FL, 08303 +in.puma FL, 08500 +in.puma FL, 08601 +in.puma FL, 08602 +in.puma FL, 08603 +in.puma FL, 08604 +in.puma FL, 08605 +in.puma FL, 08606 +in.puma FL, 08607 +in.puma FL, 08608 +in.puma FL, 08609 +in.puma FL, 08610 +in.puma FL, 08611 +in.puma FL, 08612 +in.puma FL, 08613 +in.puma FL, 08614 +in.puma FL, 08615 +in.puma FL, 08616 +in.puma FL, 08617 +in.puma FL, 08618 +in.puma FL, 08619 +in.puma FL, 08620 +in.puma FL, 08621 +in.puma FL, 08622 +in.puma FL, 08623 +in.puma FL, 08624 +in.puma FL, 08700 +in.puma FL, 08900 +in.puma FL, 09100 +in.puma FL, 09300 +in.puma FL, 09501 +in.puma FL, 09502 +in.puma FL, 09503 +in.puma FL, 09504 +in.puma FL, 09505 +in.puma FL, 09506 +in.puma FL, 09507 +in.puma FL, 09508 +in.puma FL, 09509 +in.puma FL, 09510 +in.puma FL, 09701 +in.puma FL, 09702 +in.puma FL, 09901 +in.puma FL, 09902 +in.puma FL, 09903 +in.puma FL, 09904 +in.puma FL, 09905 +in.puma FL, 09906 +in.puma FL, 09907 +in.puma FL, 09908 +in.puma FL, 09909 +in.puma FL, 09910 +in.puma FL, 09911 +in.puma FL, 10101 +in.puma FL, 10102 +in.puma FL, 10103 +in.puma FL, 10104 +in.puma FL, 10301 +in.puma FL, 10302 +in.puma FL, 10303 +in.puma FL, 10304 +in.puma FL, 10305 +in.puma FL, 10306 +in.puma FL, 10307 +in.puma FL, 10308 +in.puma FL, 10501 +in.puma FL, 10502 +in.puma FL, 10503 +in.puma FL, 10504 +in.puma FL, 10700 +in.puma FL, 10900 +in.puma FL, 11101 +in.puma FL, 11102 +in.puma FL, 11300 +in.puma FL, 11501 +in.puma FL, 11502 +in.puma FL, 11503 +in.puma FL, 11701 +in.puma FL, 11702 +in.puma FL, 11703 +in.puma FL, 11704 +in.puma FL, 12100 +in.puma FL, 12701 +in.puma FL, 12702 +in.puma FL, 12703 +in.puma FL, 12704 +in.puma GA, 00100 +in.puma GA, 00200 +in.puma GA, 00300 +in.puma GA, 00401 +in.puma GA, 00402 +in.puma GA, 00500 +in.puma GA, 00600 +in.puma GA, 00700 +in.puma GA, 00800 +in.puma GA, 00900 +in.puma GA, 01001 +in.puma GA, 01002 +in.puma GA, 01003 +in.puma GA, 01004 +in.puma GA, 01005 +in.puma GA, 01006 +in.puma GA, 01007 +in.puma GA, 01008 +in.puma GA, 01100 +in.puma GA, 01200 +in.puma GA, 01300 +in.puma GA, 01400 +in.puma GA, 01500 +in.puma GA, 01600 +in.puma GA, 01700 +in.puma GA, 01800 +in.puma GA, 01900 +in.puma GA, 02001 +in.puma GA, 02002 +in.puma GA, 02003 +in.puma GA, 02004 +in.puma GA, 02100 +in.puma GA, 02200 +in.puma GA, 02300 +in.puma GA, 02400 +in.puma GA, 02500 +in.puma GA, 02600 +in.puma GA, 02700 +in.puma GA, 02800 +in.puma GA, 02900 +in.puma GA, 03001 +in.puma GA, 03002 +in.puma GA, 03003 +in.puma GA, 03004 +in.puma GA, 03005 +in.puma GA, 03101 +in.puma GA, 03102 +in.puma GA, 03200 +in.puma GA, 03300 +in.puma GA, 03400 +in.puma GA, 03500 +in.puma GA, 03600 +in.puma GA, 03700 +in.puma GA, 03800 +in.puma GA, 03900 +in.puma GA, 04000 +in.puma GA, 04001 +in.puma GA, 04002 +in.puma GA, 04003 +in.puma GA, 04004 +in.puma GA, 04005 +in.puma GA, 04006 +in.puma GA, 04100 +in.puma GA, 04200 +in.puma GA, 04300 +in.puma GA, 04400 +in.puma GA, 04500 +in.puma GA, 04600 +in.puma GA, 05001 +in.puma GA, 05002 +in.puma GA, 06001 +in.puma GA, 06002 +in.puma HI, 00100 +in.puma HI, 00200 +in.puma HI, 00301 +in.puma HI, 00302 +in.puma HI, 00303 +in.puma HI, 00304 +in.puma HI, 00305 +in.puma HI, 00306 +in.puma HI, 00307 +in.puma HI, 00308 +in.puma IA, 00100 +in.puma IA, 00200 +in.puma IA, 00400 +in.puma IA, 00500 +in.puma IA, 00600 +in.puma IA, 00700 +in.puma IA, 00800 +in.puma IA, 00900 +in.puma IA, 01000 +in.puma IA, 01100 +in.puma IA, 01200 +in.puma IA, 01300 +in.puma IA, 01400 +in.puma IA, 01500 +in.puma IA, 01600 +in.puma IA, 01700 +in.puma IA, 01800 +in.puma IA, 01900 +in.puma IA, 02000 +in.puma IA, 02100 +in.puma IA, 02200 +in.puma IA, 02300 +in.puma ID, 00100 +in.puma ID, 00200 +in.puma ID, 00300 +in.puma ID, 00400 +in.puma ID, 00500 +in.puma ID, 00600 +in.puma ID, 00701 +in.puma ID, 00702 +in.puma ID, 00800 +in.puma ID, 00900 +in.puma ID, 01000 +in.puma ID, 01100 +in.puma ID, 01200 +in.puma ID, 01300 +in.puma IL, 00104 +in.puma IL, 00105 +in.puma IL, 00202 +in.puma IL, 00300 +in.puma IL, 00401 +in.puma IL, 00501 +in.puma IL, 00600 +in.puma IL, 00700 +in.puma IL, 00800 +in.puma IL, 00900 +in.puma IL, 01001 +in.puma IL, 01104 +in.puma IL, 01105 +in.puma IL, 01204 +in.puma IL, 01205 +in.puma IL, 01300 +in.puma IL, 01500 +in.puma IL, 01602 +in.puma IL, 01701 +in.puma IL, 01900 +in.puma IL, 02000 +in.puma IL, 02100 +in.puma IL, 02200 +in.puma IL, 02300 +in.puma IL, 02400 +in.puma IL, 02501 +in.puma IL, 02601 +in.puma IL, 02700 +in.puma IL, 02801 +in.puma IL, 02901 +in.puma IL, 03005 +in.puma IL, 03007 +in.puma IL, 03008 +in.puma IL, 03009 +in.puma IL, 03102 +in.puma IL, 03105 +in.puma IL, 03106 +in.puma IL, 03107 +in.puma IL, 03108 +in.puma IL, 03202 +in.puma IL, 03203 +in.puma IL, 03204 +in.puma IL, 03205 +in.puma IL, 03207 +in.puma IL, 03208 +in.puma IL, 03209 +in.puma IL, 03306 +in.puma IL, 03307 +in.puma IL, 03308 +in.puma IL, 03309 +in.puma IL, 03310 +in.puma IL, 03401 +in.puma IL, 03407 +in.puma IL, 03408 +in.puma IL, 03409 +in.puma IL, 03410 +in.puma IL, 03411 +in.puma IL, 03412 +in.puma IL, 03413 +in.puma IL, 03414 +in.puma IL, 03415 +in.puma IL, 03416 +in.puma IL, 03417 +in.puma IL, 03418 +in.puma IL, 03419 +in.puma IL, 03420 +in.puma IL, 03421 +in.puma IL, 03422 +in.puma IL, 03501 +in.puma IL, 03502 +in.puma IL, 03503 +in.puma IL, 03504 +in.puma IL, 03520 +in.puma IL, 03521 +in.puma IL, 03522 +in.puma IL, 03523 +in.puma IL, 03524 +in.puma IL, 03525 +in.puma IL, 03526 +in.puma IL, 03527 +in.puma IL, 03528 +in.puma IL, 03529 +in.puma IL, 03530 +in.puma IL, 03531 +in.puma IL, 03532 +in.puma IL, 03601 +in.puma IL, 03602 +in.puma IL, 03700 +in.puma IN, 00101 +in.puma IN, 00102 +in.puma IN, 00103 +in.puma IN, 00104 +in.puma IN, 00200 +in.puma IN, 00300 +in.puma IN, 00401 +in.puma IN, 00402 +in.puma IN, 00500 +in.puma IN, 00600 +in.puma IN, 00700 +in.puma IN, 00800 +in.puma IN, 00900 +in.puma IN, 01001 +in.puma IN, 01002 +in.puma IN, 01003 +in.puma IN, 01100 +in.puma IN, 01200 +in.puma IN, 01300 +in.puma IN, 01400 +in.puma IN, 01500 +in.puma IN, 01600 +in.puma IN, 01700 +in.puma IN, 01801 +in.puma IN, 01802 +in.puma IN, 01803 +in.puma IN, 01900 +in.puma IN, 02000 +in.puma IN, 02100 +in.puma IN, 02200 +in.puma IN, 02301 +in.puma IN, 02302 +in.puma IN, 02303 +in.puma IN, 02304 +in.puma IN, 02305 +in.puma IN, 02306 +in.puma IN, 02307 +in.puma IN, 02400 +in.puma IN, 02500 +in.puma IN, 02600 +in.puma IN, 02700 +in.puma IN, 02800 +in.puma IN, 02900 +in.puma IN, 03000 +in.puma IN, 03100 +in.puma IN, 03200 +in.puma IN, 03300 +in.puma IN, 03400 +in.puma IN, 03500 +in.puma IN, 03600 +in.puma KS, 00100 +in.puma KS, 00200 +in.puma KS, 00300 +in.puma KS, 00400 +in.puma KS, 00500 +in.puma KS, 00601 +in.puma KS, 00602 +in.puma KS, 00603 +in.puma KS, 00604 +in.puma KS, 00700 +in.puma KS, 00801 +in.puma KS, 00802 +in.puma KS, 00900 +in.puma KS, 01000 +in.puma KS, 01100 +in.puma KS, 01200 +in.puma KS, 01301 +in.puma KS, 01302 +in.puma KS, 01303 +in.puma KS, 01304 +in.puma KS, 01400 +in.puma KS, 01500 +in.puma KY, 00100 +in.puma KY, 00200 +in.puma KY, 00300 +in.puma KY, 00400 +in.puma KY, 00500 +in.puma KY, 00600 +in.puma KY, 00700 +in.puma KY, 00800 +in.puma KY, 00900 +in.puma KY, 01000 +in.puma KY, 01100 +in.puma KY, 01200 +in.puma KY, 01300 +in.puma KY, 01400 +in.puma KY, 01500 +in.puma KY, 01600 +in.puma KY, 01701 +in.puma KY, 01702 +in.puma KY, 01703 +in.puma KY, 01704 +in.puma KY, 01705 +in.puma KY, 01706 +in.puma KY, 01800 +in.puma KY, 01901 +in.puma KY, 01902 +in.puma KY, 02000 +in.puma KY, 02100 +in.puma KY, 02200 +in.puma KY, 02300 +in.puma KY, 02400 +in.puma KY, 02500 +in.puma KY, 02600 +in.puma KY, 02700 +in.puma KY, 02800 +in.puma LA, 00100 +in.puma LA, 00101 +in.puma LA, 00200 +in.puma LA, 00300 +in.puma LA, 00400 +in.puma LA, 00500 +in.puma LA, 00600 +in.puma LA, 00700 +in.puma LA, 00800 +in.puma LA, 00900 +in.puma LA, 01000 +in.puma LA, 01100 +in.puma LA, 01200 +in.puma LA, 01201 +in.puma LA, 01300 +in.puma LA, 01400 +in.puma LA, 01500 +in.puma LA, 01501 +in.puma LA, 01502 +in.puma LA, 01600 +in.puma LA, 01700 +in.puma LA, 01800 +in.puma LA, 01900 +in.puma LA, 02000 +in.puma LA, 02100 +in.puma LA, 02200 +in.puma LA, 02201 +in.puma LA, 02300 +in.puma LA, 02301 +in.puma LA, 02302 +in.puma LA, 02400 +in.puma LA, 02401 +in.puma LA, 02402 +in.puma LA, 02500 +in.puma MA, 00100 +in.puma MA, 00200 +in.puma MA, 00300 +in.puma MA, 00301 +in.puma MA, 00302 +in.puma MA, 00303 +in.puma MA, 00304 +in.puma MA, 00400 +in.puma MA, 00501 +in.puma MA, 00502 +in.puma MA, 00503 +in.puma MA, 00504 +in.puma MA, 00505 +in.puma MA, 00506 +in.puma MA, 00507 +in.puma MA, 00508 +in.puma MA, 00701 +in.puma MA, 00702 +in.puma MA, 00703 +in.puma MA, 00704 +in.puma MA, 01000 +in.puma MA, 01300 +in.puma MA, 01400 +in.puma MA, 01600 +in.puma MA, 01900 +in.puma MA, 01901 +in.puma MA, 01902 +in.puma MA, 02400 +in.puma MA, 02800 +in.puma MA, 03301 +in.puma MA, 03302 +in.puma MA, 03303 +in.puma MA, 03304 +in.puma MA, 03305 +in.puma MA, 03306 +in.puma MA, 03400 +in.puma MA, 03500 +in.puma MA, 03601 +in.puma MA, 03602 +in.puma MA, 03603 +in.puma MA, 03900 +in.puma MA, 04000 +in.puma MA, 04200 +in.puma MA, 04301 +in.puma MA, 04302 +in.puma MA, 04303 +in.puma MA, 04500 +in.puma MA, 04700 +in.puma MA, 04800 +in.puma MA, 04901 +in.puma MA, 04902 +in.puma MA, 04903 +in.puma MD, 00100 +in.puma MD, 00200 +in.puma MD, 00301 +in.puma MD, 00302 +in.puma MD, 00400 +in.puma MD, 00501 +in.puma MD, 00502 +in.puma MD, 00503 +in.puma MD, 00504 +in.puma MD, 00505 +in.puma MD, 00506 +in.puma MD, 00507 +in.puma MD, 00601 +in.puma MD, 00602 +in.puma MD, 00700 +in.puma MD, 00801 +in.puma MD, 00802 +in.puma MD, 00803 +in.puma MD, 00804 +in.puma MD, 00805 +in.puma MD, 00901 +in.puma MD, 00902 +in.puma MD, 01001 +in.puma MD, 01002 +in.puma MD, 01003 +in.puma MD, 01004 +in.puma MD, 01005 +in.puma MD, 01006 +in.puma MD, 01007 +in.puma MD, 01101 +in.puma MD, 01102 +in.puma MD, 01103 +in.puma MD, 01104 +in.puma MD, 01105 +in.puma MD, 01106 +in.puma MD, 01107 +in.puma MD, 01201 +in.puma MD, 01202 +in.puma MD, 01203 +in.puma MD, 01204 +in.puma MD, 01300 +in.puma MD, 01400 +in.puma MD, 01500 +in.puma MD, 01600 +in.puma ME, 00100 +in.puma ME, 00200 +in.puma ME, 00300 +in.puma ME, 00400 +in.puma ME, 00500 +in.puma ME, 00600 +in.puma ME, 00700 +in.puma ME, 00800 +in.puma ME, 00900 +in.puma ME, 01000 +in.puma MI, 00100 +in.puma MI, 00200 +in.puma MI, 00300 +in.puma MI, 00400 +in.puma MI, 00500 +in.puma MI, 00600 +in.puma MI, 00700 +in.puma MI, 00801 +in.puma MI, 00802 +in.puma MI, 00900 +in.puma MI, 01001 +in.puma MI, 01002 +in.puma MI, 01003 +in.puma MI, 01004 +in.puma MI, 01100 +in.puma MI, 01200 +in.puma MI, 01300 +in.puma MI, 01400 +in.puma MI, 01500 +in.puma MI, 01600 +in.puma MI, 01701 +in.puma MI, 01702 +in.puma MI, 01703 +in.puma MI, 01704 +in.puma MI, 01801 +in.puma MI, 01802 +in.puma MI, 01900 +in.puma MI, 02000 +in.puma MI, 02101 +in.puma MI, 02102 +in.puma MI, 02200 +in.puma MI, 02300 +in.puma MI, 02400 +in.puma MI, 02500 +in.puma MI, 02600 +in.puma MI, 02701 +in.puma MI, 02702 +in.puma MI, 02703 +in.puma MI, 02800 +in.puma MI, 02901 +in.puma MI, 02902 +in.puma MI, 02903 +in.puma MI, 02904 +in.puma MI, 02905 +in.puma MI, 02906 +in.puma MI, 02907 +in.puma MI, 02908 +in.puma MI, 03001 +in.puma MI, 03002 +in.puma MI, 03003 +in.puma MI, 03004 +in.puma MI, 03005 +in.puma MI, 03006 +in.puma MI, 03100 +in.puma MI, 03201 +in.puma MI, 03202 +in.puma MI, 03203 +in.puma MI, 03204 +in.puma MI, 03205 +in.puma MI, 03206 +in.puma MI, 03207 +in.puma MI, 03208 +in.puma MI, 03209 +in.puma MI, 03210 +in.puma MI, 03211 +in.puma MI, 03212 +in.puma MI, 03213 +in.puma MI, 03300 +in.puma MN, 00100 +in.puma MN, 00200 +in.puma MN, 00300 +in.puma MN, 00400 +in.puma MN, 00500 +in.puma MN, 00600 +in.puma MN, 00700 +in.puma MN, 00800 +in.puma MN, 00900 +in.puma MN, 01000 +in.puma MN, 01101 +in.puma MN, 01102 +in.puma MN, 01103 +in.puma MN, 01201 +in.puma MN, 01202 +in.puma MN, 01301 +in.puma MN, 01302 +in.puma MN, 01303 +in.puma MN, 01304 +in.puma MN, 01401 +in.puma MN, 01402 +in.puma MN, 01403 +in.puma MN, 01404 +in.puma MN, 01405 +in.puma MN, 01406 +in.puma MN, 01407 +in.puma MN, 01408 +in.puma MN, 01409 +in.puma MN, 01410 +in.puma MN, 01501 +in.puma MN, 01502 +in.puma MN, 01503 +in.puma MN, 01600 +in.puma MN, 01700 +in.puma MN, 01800 +in.puma MN, 01900 +in.puma MN, 02000 +in.puma MN, 02100 +in.puma MN, 02200 +in.puma MN, 02300 +in.puma MN, 02400 +in.puma MN, 02500 +in.puma MN, 02600 +in.puma MO, 00100 +in.puma MO, 00200 +in.puma MO, 00300 +in.puma MO, 00400 +in.puma MO, 00500 +in.puma MO, 00600 +in.puma MO, 00700 +in.puma MO, 00800 +in.puma MO, 00901 +in.puma MO, 00902 +in.puma MO, 00903 +in.puma MO, 01001 +in.puma MO, 01002 +in.puma MO, 01003 +in.puma MO, 01004 +in.puma MO, 01005 +in.puma MO, 01100 +in.puma MO, 01200 +in.puma MO, 01300 +in.puma MO, 01400 +in.puma MO, 01500 +in.puma MO, 01600 +in.puma MO, 01701 +in.puma MO, 01702 +in.puma MO, 01703 +in.puma MO, 01801 +in.puma MO, 01802 +in.puma MO, 01803 +in.puma MO, 01804 +in.puma MO, 01805 +in.puma MO, 01806 +in.puma MO, 01807 +in.puma MO, 01808 +in.puma MO, 01901 +in.puma MO, 01902 +in.puma MO, 02001 +in.puma MO, 02002 +in.puma MO, 02100 +in.puma MO, 02200 +in.puma MO, 02300 +in.puma MO, 02400 +in.puma MO, 02500 +in.puma MO, 02601 +in.puma MO, 02602 +in.puma MO, 02603 +in.puma MO, 02700 +in.puma MO, 02800 +in.puma MS, 00100 +in.puma MS, 00200 +in.puma MS, 00300 +in.puma MS, 00400 +in.puma MS, 00500 +in.puma MS, 00600 +in.puma MS, 00700 +in.puma MS, 00800 +in.puma MS, 00900 +in.puma MS, 01000 +in.puma MS, 01100 +in.puma MS, 01200 +in.puma MS, 01300 +in.puma MS, 01400 +in.puma MS, 01500 +in.puma MS, 01600 +in.puma MS, 01700 +in.puma MS, 01800 +in.puma MS, 01900 +in.puma MS, 02000 +in.puma MS, 02100 +in.puma MT, 00100 +in.puma MT, 00200 +in.puma MT, 00300 +in.puma MT, 00400 +in.puma MT, 00500 +in.puma MT, 00600 +in.puma MT, 00700 +in.puma NC, 00100 +in.puma NC, 00200 +in.puma NC, 00300 +in.puma NC, 00400 +in.puma NC, 00500 +in.puma NC, 00600 +in.puma NC, 00700 +in.puma NC, 00800 +in.puma NC, 00900 +in.puma NC, 01000 +in.puma NC, 01100 +in.puma NC, 01201 +in.puma NC, 01202 +in.puma NC, 01203 +in.puma NC, 01204 +in.puma NC, 01205 +in.puma NC, 01206 +in.puma NC, 01207 +in.puma NC, 01208 +in.puma NC, 01301 +in.puma NC, 01302 +in.puma NC, 01400 +in.puma NC, 01500 +in.puma NC, 01600 +in.puma NC, 01701 +in.puma NC, 01702 +in.puma NC, 01703 +in.puma NC, 01704 +in.puma NC, 01801 +in.puma NC, 01802 +in.puma NC, 01803 +in.puma NC, 01900 +in.puma NC, 02000 +in.puma NC, 02100 +in.puma NC, 02201 +in.puma NC, 02202 +in.puma NC, 02300 +in.puma NC, 02400 +in.puma NC, 02500 +in.puma NC, 02600 +in.puma NC, 02700 +in.puma NC, 02800 +in.puma NC, 02900 +in.puma NC, 03001 +in.puma NC, 03002 +in.puma NC, 03101 +in.puma NC, 03102 +in.puma NC, 03103 +in.puma NC, 03104 +in.puma NC, 03105 +in.puma NC, 03106 +in.puma NC, 03107 +in.puma NC, 03108 +in.puma NC, 03200 +in.puma NC, 03300 +in.puma NC, 03400 +in.puma NC, 03500 +in.puma NC, 03600 +in.puma NC, 03700 +in.puma NC, 03800 +in.puma NC, 03900 +in.puma NC, 04000 +in.puma NC, 04100 +in.puma NC, 04200 +in.puma NC, 04300 +in.puma NC, 04400 +in.puma NC, 04500 +in.puma NC, 04600 +in.puma NC, 04700 +in.puma NC, 04800 +in.puma NC, 04900 +in.puma NC, 05001 +in.puma NC, 05002 +in.puma NC, 05003 +in.puma NC, 05100 +in.puma NC, 05200 +in.puma NC, 05300 +in.puma NC, 05400 +in.puma ND, 00100 +in.puma ND, 00200 +in.puma ND, 00300 +in.puma ND, 00400 +in.puma ND, 00500 +in.puma NE, 00100 +in.puma NE, 00200 +in.puma NE, 00300 +in.puma NE, 00400 +in.puma NE, 00500 +in.puma NE, 00600 +in.puma NE, 00701 +in.puma NE, 00702 +in.puma NE, 00801 +in.puma NE, 00802 +in.puma NE, 00901 +in.puma NE, 00902 +in.puma NE, 00903 +in.puma NE, 00904 +in.puma NH, 00100 +in.puma NH, 00200 +in.puma NH, 00300 +in.puma NH, 00400 +in.puma NH, 00500 +in.puma NH, 00600 +in.puma NH, 00700 +in.puma NH, 00800 +in.puma NH, 00900 +in.puma NH, 01000 +in.puma NJ, 00101 +in.puma NJ, 00102 +in.puma NJ, 00301 +in.puma NJ, 00302 +in.puma NJ, 00303 +in.puma NJ, 00304 +in.puma NJ, 00305 +in.puma NJ, 00306 +in.puma NJ, 00307 +in.puma NJ, 00308 +in.puma NJ, 00400 +in.puma NJ, 00501 +in.puma NJ, 00502 +in.puma NJ, 00503 +in.puma NJ, 00601 +in.puma NJ, 00602 +in.puma NJ, 00701 +in.puma NJ, 00702 +in.puma NJ, 00703 +in.puma NJ, 00800 +in.puma NJ, 00901 +in.puma NJ, 00902 +in.puma NJ, 00903 +in.puma NJ, 00904 +in.puma NJ, 00905 +in.puma NJ, 00906 +in.puma NJ, 00907 +in.puma NJ, 01001 +in.puma NJ, 01002 +in.puma NJ, 01003 +in.puma NJ, 01101 +in.puma NJ, 01102 +in.puma NJ, 01103 +in.puma NJ, 01104 +in.puma NJ, 01105 +in.puma NJ, 01106 +in.puma NJ, 01201 +in.puma NJ, 01202 +in.puma NJ, 01203 +in.puma NJ, 01204 +in.puma NJ, 01205 +in.puma NJ, 01301 +in.puma NJ, 01302 +in.puma NJ, 01401 +in.puma NJ, 01402 +in.puma NJ, 01403 +in.puma NJ, 01404 +in.puma NJ, 01501 +in.puma NJ, 01502 +in.puma NJ, 01503 +in.puma NJ, 01504 +in.puma NJ, 01600 +in.puma NJ, 01700 +in.puma NJ, 01800 +in.puma NJ, 01901 +in.puma NJ, 01902 +in.puma NJ, 01903 +in.puma NJ, 01904 +in.puma NJ, 02001 +in.puma NJ, 02002 +in.puma NJ, 02003 +in.puma NJ, 02101 +in.puma NJ, 02102 +in.puma NJ, 02103 +in.puma NJ, 02104 +in.puma NJ, 02201 +in.puma NJ, 02202 +in.puma NJ, 02301 +in.puma NJ, 02302 +in.puma NJ, 02303 +in.puma NJ, 02400 +in.puma NJ, 02500 +in.puma NJ, 02600 +in.puma NM, 00100 +in.puma NM, 00200 +in.puma NM, 00300 +in.puma NM, 00400 +in.puma NM, 00500 +in.puma NM, 00600 +in.puma NM, 00700 +in.puma NM, 00801 +in.puma NM, 00802 +in.puma NM, 00803 +in.puma NM, 00804 +in.puma NM, 00805 +in.puma NM, 00806 +in.puma NM, 00900 +in.puma NM, 01001 +in.puma NM, 01002 +in.puma NM, 01100 +in.puma NM, 01200 +in.puma NV, 00101 +in.puma NV, 00102 +in.puma NV, 00103 +in.puma NV, 00200 +in.puma NV, 00300 +in.puma NV, 00401 +in.puma NV, 00402 +in.puma NV, 00403 +in.puma NV, 00404 +in.puma NV, 00405 +in.puma NV, 00406 +in.puma NV, 00407 +in.puma NV, 00408 +in.puma NV, 00409 +in.puma NV, 00410 +in.puma NV, 00411 +in.puma NV, 00412 +in.puma NV, 00413 +in.puma NY, 00100 +in.puma NY, 00200 +in.puma NY, 00300 +in.puma NY, 00401 +in.puma NY, 00402 +in.puma NY, 00403 +in.puma NY, 00500 +in.puma NY, 00600 +in.puma NY, 00701 +in.puma NY, 00702 +in.puma NY, 00703 +in.puma NY, 00704 +in.puma NY, 00800 +in.puma NY, 00901 +in.puma NY, 00902 +in.puma NY, 00903 +in.puma NY, 00904 +in.puma NY, 00905 +in.puma NY, 00906 +in.puma NY, 01000 +in.puma NY, 01101 +in.puma NY, 01102 +in.puma NY, 01201 +in.puma NY, 01202 +in.puma NY, 01203 +in.puma NY, 01204 +in.puma NY, 01205 +in.puma NY, 01206 +in.puma NY, 01207 +in.puma NY, 01300 +in.puma NY, 01400 +in.puma NY, 01500 +in.puma NY, 01600 +in.puma NY, 01700 +in.puma NY, 01801 +in.puma NY, 01802 +in.puma NY, 01900 +in.puma NY, 02001 +in.puma NY, 02002 +in.puma NY, 02100 +in.puma NY, 02201 +in.puma NY, 02202 +in.puma NY, 02203 +in.puma NY, 02300 +in.puma NY, 02401 +in.puma NY, 02402 +in.puma NY, 02500 +in.puma NY, 02600 +in.puma NY, 02701 +in.puma NY, 02702 +in.puma NY, 02801 +in.puma NY, 02802 +in.puma NY, 02901 +in.puma NY, 02902 +in.puma NY, 02903 +in.puma NY, 03001 +in.puma NY, 03002 +in.puma NY, 03003 +in.puma NY, 03101 +in.puma NY, 03102 +in.puma NY, 03103 +in.puma NY, 03104 +in.puma NY, 03105 +in.puma NY, 03106 +in.puma NY, 03107 +in.puma NY, 03201 +in.puma NY, 03202 +in.puma NY, 03203 +in.puma NY, 03204 +in.puma NY, 03205 +in.puma NY, 03206 +in.puma NY, 03207 +in.puma NY, 03208 +in.puma NY, 03209 +in.puma NY, 03210 +in.puma NY, 03211 +in.puma NY, 03212 +in.puma NY, 03301 +in.puma NY, 03302 +in.puma NY, 03303 +in.puma NY, 03304 +in.puma NY, 03305 +in.puma NY, 03306 +in.puma NY, 03307 +in.puma NY, 03308 +in.puma NY, 03309 +in.puma NY, 03310 +in.puma NY, 03311 +in.puma NY, 03312 +in.puma NY, 03313 +in.puma NY, 03701 +in.puma NY, 03702 +in.puma NY, 03703 +in.puma NY, 03704 +in.puma NY, 03705 +in.puma NY, 03706 +in.puma NY, 03707 +in.puma NY, 03708 +in.puma NY, 03709 +in.puma NY, 03710 +in.puma NY, 03801 +in.puma NY, 03802 +in.puma NY, 03803 +in.puma NY, 03804 +in.puma NY, 03805 +in.puma NY, 03806 +in.puma NY, 03807 +in.puma NY, 03808 +in.puma NY, 03809 +in.puma NY, 03810 +in.puma NY, 03901 +in.puma NY, 03902 +in.puma NY, 03903 +in.puma NY, 04001 +in.puma NY, 04002 +in.puma NY, 04003 +in.puma NY, 04004 +in.puma NY, 04005 +in.puma NY, 04006 +in.puma NY, 04007 +in.puma NY, 04008 +in.puma NY, 04009 +in.puma NY, 04010 +in.puma NY, 04011 +in.puma NY, 04012 +in.puma NY, 04013 +in.puma NY, 04014 +in.puma NY, 04015 +in.puma NY, 04016 +in.puma NY, 04017 +in.puma NY, 04018 +in.puma NY, 04101 +in.puma NY, 04102 +in.puma NY, 04103 +in.puma NY, 04104 +in.puma NY, 04105 +in.puma NY, 04106 +in.puma NY, 04107 +in.puma NY, 04108 +in.puma NY, 04109 +in.puma NY, 04110 +in.puma NY, 04111 +in.puma NY, 04112 +in.puma NY, 04113 +in.puma NY, 04114 +in.puma OH, 00100 +in.puma OH, 00200 +in.puma OH, 00300 +in.puma OH, 00400 +in.puma OH, 00500 +in.puma OH, 00600 +in.puma OH, 00700 +in.puma OH, 00801 +in.puma OH, 00802 +in.puma OH, 00901 +in.puma OH, 00902 +in.puma OH, 00903 +in.puma OH, 00904 +in.puma OH, 00905 +in.puma OH, 00906 +in.puma OH, 00907 +in.puma OH, 00908 +in.puma OH, 00909 +in.puma OH, 00910 +in.puma OH, 01000 +in.puma OH, 01100 +in.puma OH, 01200 +in.puma OH, 01300 +in.puma OH, 01400 +in.puma OH, 01500 +in.puma OH, 01600 +in.puma OH, 01700 +in.puma OH, 01801 +in.puma OH, 01802 +in.puma OH, 01803 +in.puma OH, 01804 +in.puma OH, 01805 +in.puma OH, 01900 +in.puma OH, 02000 +in.puma OH, 02100 +in.puma OH, 02200 +in.puma OH, 02300 +in.puma OH, 02400 +in.puma OH, 02500 +in.puma OH, 02600 +in.puma OH, 02700 +in.puma OH, 02800 +in.puma OH, 02900 +in.puma OH, 03000 +in.puma OH, 03100 +in.puma OH, 03200 +in.puma OH, 03300 +in.puma OH, 03400 +in.puma OH, 03500 +in.puma OH, 03600 +in.puma OH, 03700 +in.puma OH, 03800 +in.puma OH, 03900 +in.puma OH, 04000 +in.puma OH, 04101 +in.puma OH, 04102 +in.puma OH, 04103 +in.puma OH, 04104 +in.puma OH, 04105 +in.puma OH, 04106 +in.puma OH, 04107 +in.puma OH, 04108 +in.puma OH, 04109 +in.puma OH, 04110 +in.puma OH, 04111 +in.puma OH, 04200 +in.puma OH, 04300 +in.puma OH, 04400 +in.puma OH, 04500 +in.puma OH, 04601 +in.puma OH, 04602 +in.puma OH, 04603 +in.puma OH, 04604 +in.puma OH, 04700 +in.puma OH, 04800 +in.puma OH, 04900 +in.puma OH, 05000 +in.puma OH, 05100 +in.puma OH, 05200 +in.puma OH, 05301 +in.puma OH, 05302 +in.puma OH, 05401 +in.puma OH, 05402 +in.puma OH, 05403 +in.puma OH, 05501 +in.puma OH, 05502 +in.puma OH, 05503 +in.puma OH, 05504 +in.puma OH, 05505 +in.puma OH, 05506 +in.puma OH, 05507 +in.puma OH, 05600 +in.puma OH, 05700 +in.puma OK, 00100 +in.puma OK, 00200 +in.puma OK, 00300 +in.puma OK, 00400 +in.puma OK, 00500 +in.puma OK, 00601 +in.puma OK, 00602 +in.puma OK, 00701 +in.puma OK, 00702 +in.puma OK, 00800 +in.puma OK, 00900 +in.puma OK, 01001 +in.puma OK, 01002 +in.puma OK, 01003 +in.puma OK, 01004 +in.puma OK, 01005 +in.puma OK, 01006 +in.puma OK, 01101 +in.puma OK, 01102 +in.puma OK, 01201 +in.puma OK, 01202 +in.puma OK, 01203 +in.puma OK, 01204 +in.puma OK, 01301 +in.puma OK, 01302 +in.puma OK, 01400 +in.puma OK, 01501 +in.puma OK, 01601 +in.puma OR, 00100 +in.puma OR, 00200 +in.puma OR, 00300 +in.puma OR, 00400 +in.puma OR, 00500 +in.puma OR, 00600 +in.puma OR, 00703 +in.puma OR, 00704 +in.puma OR, 00705 +in.puma OR, 00800 +in.puma OR, 00901 +in.puma OR, 00902 +in.puma OR, 01000 +in.puma OR, 01103 +in.puma OR, 01104 +in.puma OR, 01105 +in.puma OR, 01200 +in.puma OR, 01301 +in.puma OR, 01302 +in.puma OR, 01303 +in.puma OR, 01305 +in.puma OR, 01314 +in.puma OR, 01316 +in.puma OR, 01317 +in.puma OR, 01318 +in.puma OR, 01319 +in.puma OR, 01320 +in.puma OR, 01321 +in.puma OR, 01322 +in.puma OR, 01323 +in.puma OR, 01324 +in.puma PA, 00101 +in.puma PA, 00102 +in.puma PA, 00200 +in.puma PA, 00300 +in.puma PA, 00400 +in.puma PA, 00500 +in.puma PA, 00600 +in.puma PA, 00701 +in.puma PA, 00702 +in.puma PA, 00801 +in.puma PA, 00802 +in.puma PA, 00803 +in.puma PA, 00900 +in.puma PA, 01000 +in.puma PA, 01100 +in.puma PA, 01200 +in.puma PA, 01300 +in.puma PA, 01400 +in.puma PA, 01501 +in.puma PA, 01502 +in.puma PA, 01600 +in.puma PA, 01701 +in.puma PA, 01702 +in.puma PA, 01801 +in.puma PA, 01802 +in.puma PA, 01803 +in.puma PA, 01804 +in.puma PA, 01805 +in.puma PA, 01806 +in.puma PA, 01807 +in.puma PA, 01900 +in.puma PA, 02001 +in.puma PA, 02002 +in.puma PA, 02003 +in.puma PA, 02100 +in.puma PA, 02200 +in.puma PA, 02301 +in.puma PA, 02302 +in.puma PA, 02401 +in.puma PA, 02402 +in.puma PA, 02500 +in.puma PA, 02600 +in.puma PA, 02701 +in.puma PA, 02702 +in.puma PA, 02703 +in.puma PA, 02801 +in.puma PA, 02802 +in.puma PA, 02803 +in.puma PA, 02901 +in.puma PA, 02902 +in.puma PA, 03001 +in.puma PA, 03002 +in.puma PA, 03003 +in.puma PA, 03004 +in.puma PA, 03101 +in.puma PA, 03102 +in.puma PA, 03103 +in.puma PA, 03104 +in.puma PA, 03105 +in.puma PA, 03106 +in.puma PA, 03201 +in.puma PA, 03202 +in.puma PA, 03203 +in.puma PA, 03204 +in.puma PA, 03205 +in.puma PA, 03206 +in.puma PA, 03207 +in.puma PA, 03208 +in.puma PA, 03209 +in.puma PA, 03210 +in.puma PA, 03211 +in.puma PA, 03301 +in.puma PA, 03302 +in.puma PA, 03303 +in.puma PA, 03304 +in.puma PA, 03401 +in.puma PA, 03402 +in.puma PA, 03403 +in.puma PA, 03404 +in.puma PA, 03501 +in.puma PA, 03502 +in.puma PA, 03503 +in.puma PA, 03504 +in.puma PA, 03601 +in.puma PA, 03602 +in.puma PA, 03603 +in.puma PA, 03701 +in.puma PA, 03702 +in.puma PA, 03800 +in.puma PA, 03900 +in.puma PA, 04001 +in.puma PA, 04002 +in.puma RI, 00101 +in.puma RI, 00102 +in.puma RI, 00103 +in.puma RI, 00104 +in.puma RI, 00201 +in.puma RI, 00300 +in.puma RI, 00400 +in.puma SC, 00101 +in.puma SC, 00102 +in.puma SC, 00103 +in.puma SC, 00104 +in.puma SC, 00105 +in.puma SC, 00200 +in.puma SC, 00301 +in.puma SC, 00302 +in.puma SC, 00400 +in.puma SC, 00501 +in.puma SC, 00502 +in.puma SC, 00601 +in.puma SC, 00602 +in.puma SC, 00603 +in.puma SC, 00604 +in.puma SC, 00605 +in.puma SC, 00700 +in.puma SC, 00800 +in.puma SC, 00900 +in.puma SC, 01000 +in.puma SC, 01101 +in.puma SC, 01102 +in.puma SC, 01201 +in.puma SC, 01202 +in.puma SC, 01203 +in.puma SC, 01204 +in.puma SC, 01300 +in.puma SC, 01400 +in.puma SC, 01500 +in.puma SC, 01600 +in.puma SD, 00100 +in.puma SD, 00200 +in.puma SD, 00300 +in.puma SD, 00400 +in.puma SD, 00500 +in.puma SD, 00600 +in.puma TN, 00100 +in.puma TN, 00200 +in.puma TN, 00300 +in.puma TN, 00400 +in.puma TN, 00500 +in.puma TN, 00600 +in.puma TN, 00700 +in.puma TN, 00800 +in.puma TN, 00900 +in.puma TN, 01000 +in.puma TN, 01100 +in.puma TN, 01200 +in.puma TN, 01300 +in.puma TN, 01400 +in.puma TN, 01500 +in.puma TN, 01601 +in.puma TN, 01602 +in.puma TN, 01603 +in.puma TN, 01604 +in.puma TN, 01700 +in.puma TN, 01800 +in.puma TN, 01900 +in.puma TN, 02001 +in.puma TN, 02002 +in.puma TN, 02003 +in.puma TN, 02100 +in.puma TN, 02200 +in.puma TN, 02300 +in.puma TN, 02401 +in.puma TN, 02402 +in.puma TN, 02501 +in.puma TN, 02502 +in.puma TN, 02503 +in.puma TN, 02504 +in.puma TN, 02505 +in.puma TN, 02600 +in.puma TN, 02700 +in.puma TN, 02800 +in.puma TN, 02900 +in.puma TN, 03000 +in.puma TN, 03100 +in.puma TN, 03201 +in.puma TN, 03202 +in.puma TN, 03203 +in.puma TN, 03204 +in.puma TN, 03205 +in.puma TN, 03206 +in.puma TN, 03207 +in.puma TN, 03208 +in.puma TX, 00100 +in.puma TX, 00200 +in.puma TX, 00300 +in.puma TX, 00400 +in.puma TX, 00501 +in.puma TX, 00502 +in.puma TX, 00600 +in.puma TX, 00700 +in.puma TX, 00800 +in.puma TX, 00900 +in.puma TX, 01000 +in.puma TX, 01100 +in.puma TX, 01200 +in.puma TX, 01300 +in.puma TX, 01400 +in.puma TX, 01501 +in.puma TX, 01502 +in.puma TX, 01600 +in.puma TX, 01700 +in.puma TX, 01800 +in.puma TX, 01901 +in.puma TX, 01902 +in.puma TX, 01903 +in.puma TX, 01904 +in.puma TX, 01905 +in.puma TX, 01906 +in.puma TX, 01907 +in.puma TX, 02001 +in.puma TX, 02002 +in.puma TX, 02003 +in.puma TX, 02004 +in.puma TX, 02005 +in.puma TX, 02006 +in.puma TX, 02101 +in.puma TX, 02102 +in.puma TX, 02200 +in.puma TX, 02301 +in.puma TX, 02302 +in.puma TX, 02303 +in.puma TX, 02304 +in.puma TX, 02305 +in.puma TX, 02306 +in.puma TX, 02307 +in.puma TX, 02308 +in.puma TX, 02309 +in.puma TX, 02310 +in.puma TX, 02311 +in.puma TX, 02312 +in.puma TX, 02313 +in.puma TX, 02314 +in.puma TX, 02315 +in.puma TX, 02316 +in.puma TX, 02317 +in.puma TX, 02318 +in.puma TX, 02319 +in.puma TX, 02320 +in.puma TX, 02321 +in.puma TX, 02322 +in.puma TX, 02400 +in.puma TX, 02501 +in.puma TX, 02502 +in.puma TX, 02503 +in.puma TX, 02504 +in.puma TX, 02505 +in.puma TX, 02506 +in.puma TX, 02507 +in.puma TX, 02508 +in.puma TX, 02509 +in.puma TX, 02510 +in.puma TX, 02511 +in.puma TX, 02512 +in.puma TX, 02513 +in.puma TX, 02514 +in.puma TX, 02515 +in.puma TX, 02516 +in.puma TX, 02600 +in.puma TX, 02700 +in.puma TX, 02800 +in.puma TX, 02900 +in.puma TX, 03000 +in.puma TX, 03100 +in.puma TX, 03301 +in.puma TX, 03302 +in.puma TX, 03303 +in.puma TX, 03304 +in.puma TX, 03305 +in.puma TX, 03306 +in.puma TX, 03400 +in.puma TX, 03501 +in.puma TX, 03502 +in.puma TX, 03601 +in.puma TX, 03602 +in.puma TX, 03700 +in.puma TX, 03801 +in.puma TX, 03802 +in.puma TX, 03900 +in.puma TX, 04000 +in.puma TX, 04100 +in.puma TX, 04200 +in.puma TX, 04301 +in.puma TX, 04302 +in.puma TX, 04400 +in.puma TX, 04501 +in.puma TX, 04502 +in.puma TX, 04503 +in.puma TX, 04504 +in.puma TX, 04601 +in.puma TX, 04602 +in.puma TX, 04603 +in.puma TX, 04604 +in.puma TX, 04605 +in.puma TX, 04606 +in.puma TX, 04607 +in.puma TX, 04608 +in.puma TX, 04609 +in.puma TX, 04610 +in.puma TX, 04611 +in.puma TX, 04612 +in.puma TX, 04613 +in.puma TX, 04614 +in.puma TX, 04615 +in.puma TX, 04616 +in.puma TX, 04617 +in.puma TX, 04618 +in.puma TX, 04619 +in.puma TX, 04620 +in.puma TX, 04621 +in.puma TX, 04622 +in.puma TX, 04623 +in.puma TX, 04624 +in.puma TX, 04625 +in.puma TX, 04626 +in.puma TX, 04627 +in.puma TX, 04628 +in.puma TX, 04629 +in.puma TX, 04630 +in.puma TX, 04631 +in.puma TX, 04632 +in.puma TX, 04633 +in.puma TX, 04634 +in.puma TX, 04635 +in.puma TX, 04636 +in.puma TX, 04637 +in.puma TX, 04638 +in.puma TX, 04701 +in.puma TX, 04702 +in.puma TX, 04801 +in.puma TX, 04802 +in.puma TX, 04803 +in.puma TX, 04901 +in.puma TX, 04902 +in.puma TX, 04903 +in.puma TX, 04904 +in.puma TX, 04905 +in.puma TX, 05000 +in.puma TX, 05100 +in.puma TX, 05201 +in.puma TX, 05202 +in.puma TX, 05203 +in.puma TX, 05204 +in.puma TX, 05301 +in.puma TX, 05302 +in.puma TX, 05303 +in.puma TX, 05304 +in.puma TX, 05305 +in.puma TX, 05306 +in.puma TX, 05307 +in.puma TX, 05308 +in.puma TX, 05309 +in.puma TX, 05400 +in.puma TX, 05500 +in.puma TX, 05600 +in.puma TX, 05700 +in.puma TX, 05800 +in.puma TX, 05901 +in.puma TX, 05902 +in.puma TX, 05903 +in.puma TX, 05904 +in.puma TX, 05905 +in.puma TX, 05906 +in.puma TX, 05907 +in.puma TX, 05908 +in.puma TX, 05909 +in.puma TX, 05910 +in.puma TX, 05911 +in.puma TX, 05912 +in.puma TX, 05913 +in.puma TX, 05914 +in.puma TX, 05915 +in.puma TX, 05916 +in.puma TX, 06000 +in.puma TX, 06100 +in.puma TX, 06200 +in.puma TX, 06301 +in.puma TX, 06302 +in.puma TX, 06400 +in.puma TX, 06500 +in.puma TX, 06601 +in.puma TX, 06602 +in.puma TX, 06603 +in.puma TX, 06701 +in.puma TX, 06702 +in.puma TX, 06703 +in.puma TX, 06801 +in.puma TX, 06802 +in.puma TX, 06803 +in.puma TX, 06804 +in.puma TX, 06805 +in.puma TX, 06806 +in.puma TX, 06807 +in.puma TX, 06900 +in.puma UT, 03001 +in.puma UT, 05001 +in.puma UT, 11001 +in.puma UT, 11002 +in.puma UT, 13001 +in.puma UT, 21001 +in.puma UT, 35001 +in.puma UT, 35002 +in.puma UT, 35003 +in.puma UT, 35004 +in.puma UT, 35005 +in.puma UT, 35006 +in.puma UT, 35007 +in.puma UT, 35008 +in.puma UT, 35009 +in.puma UT, 49001 +in.puma UT, 49002 +in.puma UT, 49003 +in.puma UT, 49004 +in.puma UT, 53001 +in.puma UT, 57001 +in.puma UT, 57002 +in.puma VA, 01301 +in.puma VA, 01302 +in.puma VA, 04101 +in.puma VA, 04102 +in.puma VA, 04103 +in.puma VA, 10701 +in.puma VA, 10702 +in.puma VA, 10703 +in.puma VA, 51010 +in.puma VA, 51020 +in.puma VA, 51040 +in.puma VA, 51044 +in.puma VA, 51045 +in.puma VA, 51080 +in.puma VA, 51084 +in.puma VA, 51085 +in.puma VA, 51087 +in.puma VA, 51089 +in.puma VA, 51090 +in.puma VA, 51095 +in.puma VA, 51096 +in.puma VA, 51097 +in.puma VA, 51105 +in.puma VA, 51110 +in.puma VA, 51115 +in.puma VA, 51120 +in.puma VA, 51125 +in.puma VA, 51135 +in.puma VA, 51145 +in.puma VA, 51154 +in.puma VA, 51155 +in.puma VA, 51164 +in.puma VA, 51165 +in.puma VA, 51167 +in.puma VA, 51175 +in.puma VA, 51186 +in.puma VA, 51206 +in.puma VA, 51215 +in.puma VA, 51224 +in.puma VA, 51225 +in.puma VA, 51235 +in.puma VA, 51244 +in.puma VA, 51245 +in.puma VA, 51246 +in.puma VA, 51255 +in.puma VA, 55001 +in.puma VA, 55002 +in.puma VA, 59301 +in.puma VA, 59302 +in.puma VA, 59303 +in.puma VA, 59304 +in.puma VA, 59305 +in.puma VA, 59306 +in.puma VA, 59307 +in.puma VA, 59308 +in.puma VA, 59309 +in.puma VT, 00100 +in.puma VT, 00200 +in.puma VT, 00300 +in.puma VT, 00400 +in.puma WA, 10100 +in.puma WA, 10200 +in.puma WA, 10300 +in.puma WA, 10400 +in.puma WA, 10501 +in.puma WA, 10502 +in.puma WA, 10503 +in.puma WA, 10504 +in.puma WA, 10600 +in.puma WA, 10701 +in.puma WA, 10702 +in.puma WA, 10703 +in.puma WA, 10800 +in.puma WA, 10901 +in.puma WA, 10902 +in.puma WA, 11000 +in.puma WA, 11101 +in.puma WA, 11102 +in.puma WA, 11103 +in.puma WA, 11104 +in.puma WA, 11200 +in.puma WA, 11300 +in.puma WA, 11401 +in.puma WA, 11402 +in.puma WA, 11501 +in.puma WA, 11502 +in.puma WA, 11503 +in.puma WA, 11504 +in.puma WA, 11505 +in.puma WA, 11506 +in.puma WA, 11507 +in.puma WA, 11601 +in.puma WA, 11602 +in.puma WA, 11603 +in.puma WA, 11604 +in.puma WA, 11605 +in.puma WA, 11606 +in.puma WA, 11607 +in.puma WA, 11608 +in.puma WA, 11609 +in.puma WA, 11610 +in.puma WA, 11611 +in.puma WA, 11612 +in.puma WA, 11613 +in.puma WA, 11614 +in.puma WA, 11615 +in.puma WA, 11616 +in.puma WA, 11701 +in.puma WA, 11702 +in.puma WA, 11703 +in.puma WA, 11704 +in.puma WA, 11705 +in.puma WA, 11706 +in.puma WA, 11801 +in.puma WA, 11802 +in.puma WA, 11900 +in.puma WI, 00100 +in.puma WI, 00101 +in.puma WI, 00102 +in.puma WI, 00103 +in.puma WI, 00200 +in.puma WI, 00300 +in.puma WI, 00600 +in.puma WI, 00700 +in.puma WI, 00800 +in.puma WI, 00900 +in.puma WI, 01000 +in.puma WI, 01001 +in.puma WI, 01300 +in.puma WI, 01301 +in.puma WI, 01400 +in.puma WI, 01401 +in.puma WI, 01500 +in.puma WI, 01501 +in.puma WI, 01600 +in.puma WI, 01601 +in.puma WI, 02400 +in.puma WI, 02500 +in.puma WI, 10000 +in.puma WI, 20000 +in.puma WI, 30000 +in.puma WI, 40101 +in.puma WI, 40301 +in.puma WI, 40701 +in.puma WI, 41001 +in.puma WI, 41002 +in.puma WI, 41003 +in.puma WI, 41004 +in.puma WI, 41005 +in.puma WI, 50000 +in.puma WI, 55101 +in.puma WI, 55102 +in.puma WI, 55103 +in.puma WI, 70101 +in.puma WI, 70201 +in.puma WI, 70301 +in.puma WV, 00100 +in.puma WV, 00200 +in.puma WV, 00300 +in.puma WV, 00400 +in.puma WV, 00500 +in.puma WV, 00600 +in.puma WV, 00700 +in.puma WV, 00800 +in.puma WV, 00900 +in.puma WV, 01000 +in.puma WV, 01100 +in.puma WV, 01200 +in.puma WV, 01300 +in.puma WY, 00100 +in.puma WY, 00200 +in.puma WY, 00300 +in.puma WY, 00400 +in.puma WY, 00500 +in.puma_metro_status In metro area, not/partially in principal city +in.puma_metro_status In metro area, principal city +in.puma_metro_status Not/partially in metro area +in.pv_orientation East +in.pv_orientation North +in.pv_orientation Northeast +in.pv_orientation Northwest +in.pv_orientation South +in.pv_orientation Southeast +in.pv_orientation Southwest +in.pv_orientation West +in.pv_system_size 1.0 kWDC +in.pv_system_size 11.0 kWDC +in.pv_system_size 13.0 kWDC +in.pv_system_size 3.0 kWDC +in.pv_system_size 5.0 kWDC +in.pv_system_size 7.0 kWDC +in.pv_system_size 9.0 kWDC +in.radiant_barrier No +in.range_spot_vent_hour Hour0 +in.range_spot_vent_hour Hour1 +in.range_spot_vent_hour Hour10 +in.range_spot_vent_hour Hour11 +in.range_spot_vent_hour Hour12 +in.range_spot_vent_hour Hour13 +in.range_spot_vent_hour Hour14 +in.range_spot_vent_hour Hour15 +in.range_spot_vent_hour Hour16 +in.range_spot_vent_hour Hour17 +in.range_spot_vent_hour Hour18 +in.range_spot_vent_hour Hour19 +in.range_spot_vent_hour Hour2 +in.range_spot_vent_hour Hour20 +in.range_spot_vent_hour Hour21 +in.range_spot_vent_hour Hour22 +in.range_spot_vent_hour Hour23 +in.range_spot_vent_hour Hour3 +in.range_spot_vent_hour Hour4 +in.range_spot_vent_hour Hour5 +in.range_spot_vent_hour Hour6 +in.range_spot_vent_hour Hour7 +in.range_spot_vent_hour Hour8 +in.range_spot_vent_hour Hour9 +in.reeds_balancing_area 1.0 +in.reeds_balancing_area 2.0 +in.reeds_balancing_area 3.0 +in.reeds_balancing_area 4.0 +in.reeds_balancing_area 5.0 +in.reeds_balancing_area 6.0 +in.reeds_balancing_area 7.0 +in.reeds_balancing_area 8.0 +in.reeds_balancing_area 9.0 +in.reeds_balancing_area 10.0 +in.reeds_balancing_area 11.0 +in.reeds_balancing_area 12.0 +in.reeds_balancing_area 13.0 +in.reeds_balancing_area 14.0 +in.reeds_balancing_area 15.0 +in.reeds_balancing_area 16.0 +in.reeds_balancing_area 17.0 +in.reeds_balancing_area 18.0 +in.reeds_balancing_area 20.0 +in.reeds_balancing_area 21.0 +in.reeds_balancing_area 22.0 +in.reeds_balancing_area 23.0 +in.reeds_balancing_area 24.0 +in.reeds_balancing_area 25.0 +in.reeds_balancing_area 26.0 +in.reeds_balancing_area 27.0 +in.reeds_balancing_area 28.0 +in.reeds_balancing_area 29.0 +in.reeds_balancing_area 30.0 +in.reeds_balancing_area 31.0 +in.reeds_balancing_area 32.0 +in.reeds_balancing_area 33.0 +in.reeds_balancing_area 34.0 +in.reeds_balancing_area 35.0 +in.reeds_balancing_area 36.0 +in.reeds_balancing_area 37.0 +in.reeds_balancing_area 38.0 +in.reeds_balancing_area 39.0 +in.reeds_balancing_area 40.0 +in.reeds_balancing_area 41.0 +in.reeds_balancing_area 42.0 +in.reeds_balancing_area 43.0 +in.reeds_balancing_area 44.0 +in.reeds_balancing_area 45.0 +in.reeds_balancing_area 46.0 +in.reeds_balancing_area 47.0 +in.reeds_balancing_area 48.0 +in.reeds_balancing_area 49.0 +in.reeds_balancing_area 50.0 +in.reeds_balancing_area 51.0 +in.reeds_balancing_area 52.0 +in.reeds_balancing_area 53.0 +in.reeds_balancing_area 54.0 +in.reeds_balancing_area 55.0 +in.reeds_balancing_area 56.0 +in.reeds_balancing_area 57.0 +in.reeds_balancing_area 58.0 +in.reeds_balancing_area 59.0 +in.reeds_balancing_area 60.0 +in.reeds_balancing_area 61.0 +in.reeds_balancing_area 62.0 +in.reeds_balancing_area 63.0 +in.reeds_balancing_area 64.0 +in.reeds_balancing_area 65.0 +in.reeds_balancing_area 66.0 +in.reeds_balancing_area 67.0 +in.reeds_balancing_area 68.0 +in.reeds_balancing_area 69.0 +in.reeds_balancing_area 70.0 +in.reeds_balancing_area 71.0 +in.reeds_balancing_area 72.0 +in.reeds_balancing_area 73.0 +in.reeds_balancing_area 74.0 +in.reeds_balancing_area 75.0 +in.reeds_balancing_area 76.0 +in.reeds_balancing_area 77.0 +in.reeds_balancing_area 78.0 +in.reeds_balancing_area 79.0 +in.reeds_balancing_area 80.0 +in.reeds_balancing_area 81.0 +in.reeds_balancing_area 82.0 +in.reeds_balancing_area 83.0 +in.reeds_balancing_area 84.0 +in.reeds_balancing_area 85.0 +in.reeds_balancing_area 86.0 +in.reeds_balancing_area 87.0 +in.reeds_balancing_area 88.0 +in.reeds_balancing_area 89.0 +in.reeds_balancing_area 90.0 +in.reeds_balancing_area 91.0 +in.reeds_balancing_area 92.0 +in.reeds_balancing_area 93.0 +in.reeds_balancing_area 94.0 +in.reeds_balancing_area 95.0 +in.reeds_balancing_area 96.0 +in.reeds_balancing_area 97.0 +in.reeds_balancing_area 98.0 +in.reeds_balancing_area 99.0 +in.reeds_balancing_area 100.0 +in.reeds_balancing_area 101.0 +in.reeds_balancing_area 102.0 +in.reeds_balancing_area 103.0 +in.reeds_balancing_area 104.0 +in.reeds_balancing_area 105.0 +in.reeds_balancing_area 106.0 +in.reeds_balancing_area 107.0 +in.reeds_balancing_area 108.0 +in.reeds_balancing_area 109.0 +in.reeds_balancing_area 110.0 +in.reeds_balancing_area 111.0 +in.reeds_balancing_area 112.0 +in.reeds_balancing_area 113.0 +in.reeds_balancing_area 114.0 +in.reeds_balancing_area 115.0 +in.reeds_balancing_area 116.0 +in.reeds_balancing_area 117.0 +in.reeds_balancing_area 118.0 +in.reeds_balancing_area 119.0 +in.reeds_balancing_area 120.0 +in.reeds_balancing_area 121.0 +in.reeds_balancing_area 122.0 +in.reeds_balancing_area 123.0 +in.reeds_balancing_area 124.0 +in.reeds_balancing_area 125.0 +in.reeds_balancing_area 126.0 +in.reeds_balancing_area 127.0 +in.reeds_balancing_area 128.0 +in.reeds_balancing_area 129.0 +in.reeds_balancing_area 130.0 +in.reeds_balancing_area 131.0 +in.reeds_balancing_area 132.0 +in.reeds_balancing_area 133.0 +in.reeds_balancing_area 134.0 +in.refrigerator EF 10.2 +in.refrigerator EF 10.5 +in.refrigerator EF 15.9 +in.refrigerator EF 17.6 +in.refrigerator EF 19.9 +in.refrigerator EF 21.9 +in.refrigerator EF 6.7 +in.refrigerator_usage_level 100% Usage +in.refrigerator_usage_level 105% Usage +in.refrigerator_usage_level 95% Usage +in.representative_income 12965.0 +in.representative_income 18142.0 +in.representative_income 35962.0 +in.representative_income 53672.0 +in.representative_income 87842.0 +in.representative_income 88023.0 +in.representative_income 93438.0 +in.representative_income 111288.0 +in.representative_income 128814.0 +in.representative_income 145289.0 +in.representative_income 268416.0 +in.representative_income 346724.0 +in.roof_material Asphalt Shingles, Medium +in.roof_material Composition Shingles +in.roof_material Metal, Dark +in.roof_material Slate +in.roof_material Tile, Clay or Ceramic +in.roof_material Tile, Concrete +in.roof_material Wood Shingles +in.simulation_control_run_period_begin_day_of_month 1 +in.simulation_control_run_period_begin_month 1 +in.simulation_control_run_period_calendar_year 2018 +in.simulation_control_run_period_end_day_of_month 31 +in.simulation_control_run_period_end_month 12 +in.simulation_control_timestep 15 +in.state AK +in.state AL +in.state AR +in.state AZ +in.state CA +in.state CO +in.state CT +in.state DC +in.state DE +in.state FL +in.state GA +in.state HI +in.state IA +in.state ID +in.state IL +in.state IN +in.state KS +in.state KY +in.state LA +in.state MA +in.state MD +in.state ME +in.state MI +in.state MN +in.state MO +in.state MS +in.state MT +in.state NC +in.state ND +in.state NE +in.state NH +in.state NJ +in.state NM +in.state NV +in.state NY +in.state OH +in.state OK +in.state OR +in.state PA +in.state RI +in.state SC +in.state SD +in.state TN +in.state TX +in.state UT +in.state VA +in.state VT +in.state WA +in.state WI +in.state WV +in.state WY +in.state_metro_median_income 0-30% +in.state_metro_median_income 100-120% +in.state_metro_median_income 120-150% +in.state_metro_median_income 150%+ +in.state_metro_median_income 30-60% +in.state_metro_median_income 60-80% +in.state_metro_median_income 80-100% +in.state_metro_median_income Not Available +in.tenure Not Available +in.tenure Owner +in.tenure Renter +in.units_represented 1 +in.usage_level High +in.usage_level Low +in.usage_level Medium +in.utility_bill_electricity_fixed_charges 13.8 +in.utility_bill_electricity_marginal_rates 0.10788677 +in.utility_bill_electricity_marginal_rates 0.112014549 +in.utility_bill_electricity_marginal_rates 0.120336179 +in.utility_bill_electricity_marginal_rates 0.123565513 +in.utility_bill_electricity_marginal_rates 0.132607564 +in.utility_bill_electricity_marginal_rates 0.139605448 +in.utility_bill_electricity_marginal_rates 0.150884217 +in.utility_bill_electricity_marginal_rates 0.266971414 +in.utility_bill_electricity_marginal_rates 0.271402266 +in.utility_bill_fuel_oil_fixed_charges 0 +in.utility_bill_fuel_oil_marginal_rates 3.309538462 +in.utility_bill_fuel_oil_marginal_rates 3.526538462 +in.utility_bill_fuel_oil_marginal_rates 3.741846154 +in.utility_bill_fuel_oil_marginal_rates 3.809384615 +in.utility_bill_natural_gas_fixed_charges 4.95 +in.utility_bill_natural_gas_fixed_charges 10.0 +in.utility_bill_natural_gas_fixed_charges 10.8 +in.utility_bill_natural_gas_fixed_charges 13.16 +in.utility_bill_natural_gas_fixed_charges 13.24 +in.utility_bill_natural_gas_fixed_charges 13.5 +in.utility_bill_natural_gas_fixed_charges 14.0 +in.utility_bill_natural_gas_marginal_rates 1.13368161 +in.utility_bill_natural_gas_marginal_rates 1.191737547 +in.utility_bill_natural_gas_marginal_rates 1.274823771 +in.utility_bill_natural_gas_marginal_rates 1.40010647 +in.utility_bill_natural_gas_marginal_rates 1.413705399 +in.utility_bill_natural_gas_marginal_rates 1.65263025 +in.utility_bill_natural_gas_marginal_rates 1.837640087 +in.utility_bill_natural_gas_marginal_rates 1.863660544 +in.utility_bill_natural_gas_marginal_rates 1.964713414 +in.utility_bill_propane_fixed_charges 0 +in.utility_bill_propane_marginal_rates 2.164692308 +in.utility_bill_propane_marginal_rates 2.316615385 +in.utility_bill_propane_marginal_rates 2.632769231 +in.utility_bill_propane_marginal_rates 2.959615385 +in.utility_bill_propane_marginal_rates 3.038615385 +in.utility_bill_propane_marginal_rates 3.178923077 +in.utility_bill_propane_marginal_rates 3.623384615 +in.utility_bill_propane_marginal_rates 4.751615385 +in.utility_bill_scenario_names Utility Rates - Fixed + Variable +in.utility_bill_simple_filepaths data/utility_bills/sdr_rates/State.tsv +in.vacancy_status Occupied +in.vacancy_status Vacant +in.vintage 1940s +in.vintage 1950s +in.vintage 1960s +in.vintage 1970s +in.vintage 1980s +in.vintage 1990s +in.vintage 2000s +in.vintage 2010s +in.vintage <1940 +in.vintage_acs 1940-59 +in.vintage_acs 1960-79 +in.vintage_acs 1980-99 +in.vintage_acs 2000-09 +in.vintage_acs 2010s +in.vintage_acs <1940 +in.water_heater_efficiency Electric Heat Pump, 50 gal, 3.45 UEF +in.water_heater_efficiency Electric Premium +in.water_heater_efficiency Electric Standard +in.water_heater_efficiency Electric Tankless +in.water_heater_efficiency FIXME Fuel Oil Indirect +in.water_heater_efficiency Fuel Oil Premium +in.water_heater_efficiency Fuel Oil Standard +in.water_heater_efficiency Natural Gas Premium +in.water_heater_efficiency Natural Gas Standard +in.water_heater_efficiency Natural Gas Tankless +in.water_heater_efficiency Other Fuel +in.water_heater_efficiency Propane Premium +in.water_heater_efficiency Propane Standard +in.water_heater_efficiency Propane Tankless +in.water_heater_efficiency Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup +in.water_heater_efficiency Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup +in.water_heater_efficiency Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup +in.water_heater_efficiency Wood +in.water_heater_fuel Electricity +in.water_heater_fuel Fuel Oil +in.water_heater_fuel Natural Gas +in.water_heater_fuel Other Fuel +in.water_heater_fuel Propane +in.water_heater_fuel Solar Thermal +in.water_heater_fuel Wood +in.water_heater_in_unit No +in.water_heater_in_unit Yes +in.water_heater_location Attic +in.water_heater_location Conditioned Mechanical Room +in.water_heater_location Crawlspace +in.water_heater_location Garage +in.water_heater_location Heated Basement +in.water_heater_location Living Space +in.water_heater_location Outside +in.water_heater_location Unheated Basement +in.weather_file_city Atlanta Hartsfield Intl Ap +in.weather_file_city Beverly Muni AP +in.weather_file_city Fort Lauderdale Exec AP +in.weather_file_city Fort Smith Regional Ap +in.weather_file_city Fort Worth Alliance +in.weather_file_city Jack Northrop Fld H +in.weather_file_city Jackson International Ap +in.weather_file_city Las Vegas Mccarran Intl Ap +in.weather_file_city San Diego Miramar Nas +in.weather_file_city Springfield Regional Arpt +in.weather_file_city Ukiah Municipal Ap +in.weather_file_latitude 26.2 +in.weather_file_latitude 32.32 +in.weather_file_latitude 32.87 +in.weather_file_latitude 32.98 +in.weather_file_latitude 33.63 +in.weather_file_latitude 33.92 +in.weather_file_latitude 35.33 +in.weather_file_latitude 36.08 +in.weather_file_latitude 37.23 +in.weather_file_latitude 39.13 +in.weather_file_latitude 42.583 +in.weather_file_longitude -123.2 +in.weather_file_longitude -118.33 +in.weather_file_longitude -117.13 +in.weather_file_longitude -115.15 +in.weather_file_longitude -97.32 +in.weather_file_longitude -94.37 +in.weather_file_longitude -93.38 +in.weather_file_longitude -90.08 +in.weather_file_longitude -84.43 +in.weather_file_longitude -80.167 +in.weather_file_longitude -70.917 +in.window_areas F12 B12 L12 R12 +in.window_areas F15 B15 L15 R15 +in.window_areas F18 B18 L18 R18 +in.window_areas F30 B30 L30 R30 +in.window_areas F6 B6 L6 R6 +in.window_areas F9 B9 L9 R9 +in.windows Double, Clear, Metal, Air +in.windows Double, Clear, Metal, Air, Exterior Clear Storm +in.windows Double, Clear, Non-metal, Air +in.windows Double, Clear, Non-metal, Air, Exterior Clear Storm +in.windows Double, Low-E, Non-metal, Air, M-Gain +in.windows Single, Clear, Metal +in.windows Single, Clear, Metal, Exterior Clear Storm +in.windows Single, Clear, Non-metal +in.windows Single, Clear, Non-metal, Exterior Clear Storm +in.windows Triple, Low-E, Non-metal, Air, L-Gain +upgrade 0 +upgrade 1 +upgrade 2 +upgrade 3 +upgrade 4 +upgrade 5 +upgrade 6 +upgrade 7 +upgrade 8 +upgrade 9 +upgrade 10 +upgrade 11 +upgrade 12 +upgrade 13 +upgrade 14 +upgrade 15 +upgrade 16 +upgrade 17 +upgrade 18 +upgrade 19 +upgrade 20 +upgrade 21 +upgrade 22 +upgrade 23 +upgrade 24 +upgrade 25 +upgrade 26 +upgrade 27 +upgrade 28 +upgrade.demand_flexibility_electric_vehicle Enabled +upgrade.demand_flexibility_hvac On-peak Load Shedding, 2F Offset +upgrade.demand_flexibility_hvac On-peak Load Shedding, 4F Offset +upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration +upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration +upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration +upgrade.demand_flexibility_random_shift 30 minutes +upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-6 +upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-8 +upgrade.electric_vehicle_charger Level 1 charger +upgrade.electric_vehicle_charger Level 2 charger +upgrade.electric_vehicle_efficiency_increase 15% +upgrade.electric_vehicle_ownership Yes +upgrade.heating_fuel Electricity +upgrade.heating_fuel Natural Gas +upgrade.hvac_cooling_efficiency AC, SEER 15 +upgrade.hvac_cooling_efficiency AC, SEER2 13.4 +upgrade.hvac_cooling_efficiency AC, SEER2 14.3 +upgrade.hvac_cooling_efficiency Ducted Heat Pump +upgrade.hvac_cooling_efficiency Room AC, EER 12.0 +upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned +upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted +upgrade.hvac_heating_efficiency ASHP, SEER2 14.3, 7.5 HSPF2 +upgrade.hvac_heating_efficiency ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate +upgrade.hvac_heating_efficiency Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover +upgrade.hvac_heating_efficiency Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover +upgrade.hvac_heating_efficiency Electric Baseboard, 100% Efficiency +upgrade.hvac_heating_efficiency Electric Boiler, 100% AFUE +upgrade.hvac_heating_efficiency Electric Furnace, 100% AFUE +upgrade.hvac_heating_efficiency Electric Wall Furnace, 100% AFUE +upgrade.hvac_heating_efficiency Fuel Boiler, 80% AFUE +upgrade.hvac_heating_efficiency Fuel Boiler, 83% AFUE +upgrade.hvac_heating_efficiency Fuel Boiler, 90% AFUE +upgrade.hvac_heating_efficiency Fuel Furnace, 80% AFUE +upgrade.hvac_heating_efficiency Fuel Furnace, 83% AFUE +upgrade.hvac_heating_efficiency Fuel Furnace, 88% AFUE +upgrade.hvac_heating_efficiency Fuel Furnace, 92.5% AFUE +upgrade.hvac_heating_efficiency Fuel Furnace, 95% AFUE +upgrade.hvac_heating_efficiency Fuel Wall/Floor Furnace, 60% AFUE +upgrade.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE +upgrade.hvac_heating_efficiency GSHP, EER 18.6, COP 3.8 +upgrade.hvac_heating_efficiency GSHP, EER 20.5, COP 4.0 +upgrade.hvac_heating_efficiency GSHP, EER 30.9, COP 4.4 +upgrade.hvac_heating_type_and_fuel Electricity ASHP +upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace +upgrade.infiltration 5 ACH50 +upgrade.infiltration_reduction 13% +upgrade.infiltration_reduction 30% +upgrade.insulation_ceiling R-49 +upgrade.insulation_ceiling R-60 +upgrade.insulation_wall Wood Stud, R-13 +upgrade.water_heater_efficiency Electric Heat Pump, 50 gal, 3.78 UEF +upgrade.water_heater_efficiency Electric Heat Pump, 66 gal, 3.95 UEF +upgrade.water_heater_efficiency Electric Heat Pump, 80 gal, 3.98 UEF +upgrade.water_heater_efficiency High Efficiency Natural Gas Tankless, Condensing +upgrade.water_heater_fuel Electricity +upgrade.water_heater_fuel Natural Gas +upgrade.windows EnergyStar, North-Central +upgrade.windows EnergyStar, Northern +upgrade.windows EnergyStar, South-Central +upgrade.windows EnergyStar, Southern +weight 10742078.461538462 From e6cb26c80cea1e830ca37d465e8e1d68a2d48474 Mon Sep 17 00:00:00 2001 From: Yingli Date: Sun, 12 Oct 2025 12:17:17 -0600 Subject: [PATCH 22/82] clean up --- .../resources/publication/data_enum_dict.py | 308 ------------------ 1 file changed, 308 deletions(-) delete mode 100644 postprocessing/resstockpostproc/resources/publication/data_enum_dict.py diff --git a/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py b/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py deleted file mode 100644 index f8615efbfb..0000000000 --- a/postprocessing/resstockpostproc/resources/publication/data_enum_dict.py +++ /dev/null @@ -1,308 +0,0 @@ -import pandas as pd -from functools import reduce - -def data_dictionary(df_meta_up0, df_tsagg_up0, df_sdr): - """ - generate data dictionary based on released resstock baseline annual - and timeseries data and sdr_column_definitions.csv. - """ - - # metadata_and_annual_results column names, units, and description - col_df_meta = pd.DataFrame(df_meta_up0.columns, columns=["field_name"]) - col_df_meta['field_location'] = 'metadata_and_annual' - col_df_meta_sdr = df_sdr[['Published Annual Name', - 'Published Annual Unit', - 'Notes']].rename(columns={ - 'Published Annual Name': 'field_name', - 'Published Annual Unit': 'units', - 'Notes': 'field_description' - }) - df_meta = pd.merge( - col_df_meta, col_df_meta_sdr, on="field_name", how="left" - ) - - # timeseries_aggregates column names, units, and description - col_df_tsagg = pd.DataFrame(df_tsagg_up0.columns, columns=["field_name"]) - col_df_tsagg['field_location'] = 'timeseries_aggregates' - col_df_tsagg_sdr = df_sdr[['Published Timeseries Name', - 'Published Timeseries Unit', - 'Notes']].rename(columns={ - 'Published Timeseries Name': 'field_name', - 'Published Timeseries Unit': 'units', - 'Notes': 'field_description' - }) - df_tsagg = pd.merge(col_df_tsagg, col_df_tsagg_sdr, on="field_name", how="left") - - #combine metadata_and_annual_results and timeseries_aggregates - df_dict = pd.concat([df_meta, df_tsagg], ignore_index=True) - df_dict['units'] = df_dict['units'].fillna('n/a') - - return df_dict - - -def chunk_list(lst, n): - """Split list into chunks of size n""" - for i in range(0, len(lst), n): - yield lst[i:i+n] - - -def split_list(df): - """ - Split long list in the allowable_enumerations - column into chunks of size n - """ - ids_to_split = ["in.representative_income", "in.county_and_puma"] - chunk_size = 1000 - - rows = [] - for _, row in df.iterrows(): - if row["field_name"] in ids_to_split: - # break into chunks - for chunk in chunk_list(row["allowable_enumerations"], chunk_size): - rows.append({"field_name": row["field_name"], - "data_type": row["data_type"], - "allowable_enumerations": chunk}) - else: - # keep as is - rows.append({"field_name": row["field_name"], - "data_type": row["data_type"], - "allowable_enumerations":row["allowable_enumerations"]}) - - formating_df = pd.DataFrame(rows) - - return formating_df - - -def isfloat(string): - """try convert string values to float""" - try: - float(string) - return True - except: - return False - - -def convert_to_numeric(s): - """Converts string values to int or float values if possible""" - if not type(s) == str: - return s - - if s.isnumeric(): - return int(s) - elif isfloat(s): - return float(s) - else: - return s - - -def safe_key(x): - """Generate a safe sort key for mixed-type values.""" - if x is None: - return (2, 0) # None last - try: - return (0, float(x)) # numeric values - except (ValueError, TypeError): - return (1, str(x)) # strings - - -def detect_dtype(values): - """Detect the data type of a sequence of values.""" - vals = [v for v in values if v is not None] - lowered = {str(v).strip().lower() for v in vals} - - boolean_sets = [ - {"yes", "no"}, - {"true", "false"} - ] - if any(lowered.issubset(bs) for bs in boolean_sets): - return "bool" - - return str(pd.Series(vals).dtypes) - - -def convert_to_int(df): - """ - Convert the values in allowable_enumerations column to int - for specific fields identified by prefix matching. - """ - prefixes = ( - "in.electric_panel_service_rating..a", - "in.electric_panel_breaker_space_total_count", - "out.params.panel_breaker_space" - ) - - mask = df["field_name"].str.startswith(prefixes, na=False) - - df.loc[mask, "allowable_enumerations"] = df.loc[mask, "allowable_enumerations"].apply( - lambda lst: [int(x) if x not in (None, "None") else None for x in lst] - ) - - return df - - -def revise_data_type(df): - """Revise the data type assignments in a DataFrame based on field name""" - dtype_float_prefixes = ["in.representative_income", "out.", "calc.weighted"] - dtype_float_end_strs = ["charges", "rates", "fees"] - dtype_integer_end_strs = ["count", "..w", "..a"] - dtype_integer = ["in.electric_panel_service_rating..a", - "in.electric_panel_breaker_space_total_count", - "in.geometry_building_number_units_mf", - "in.geometry_building_number_units_sfa"] - dtype_boolean = ["out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based", - "out.params.panel_constraint_breaker_space"] - dtype_string = ["bldg_id", - "out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based"] - - df.loc[df["field_name"].str.startswith(tuple(dtype_float_prefixes), na=False), \ - "data_type"] = "float" - mask = df["field_name"].str.startswith("in.utility_bill", na=False) & \ - df["field_name"].str.endswith(tuple(dtype_float_end_strs), na=False) - df.loc[mask, "data_type"] = "float" - mask = df["field_name"].str.startswith("out.", na=False) & \ - df["field_name"].str.endswith(tuple(dtype_integer_end_strs), na=False) - df.loc[mask, "data_type"] = "integer" - df.loc[df["field_name"].isin(dtype_integer), "data_type"] = "integer" - df.loc[df["field_name"].isin(dtype_boolean), "data_type"] = "boolean" - df.loc[df["field_name"].isin(dtype_string), "data_type"] = "string" - - return df - - -def enum(df): - """get allowable enumerations for the input dataframe for each columns.""" - enums = { - col: [convert_to_numeric(s) for s in sorted(df[col].unique(), key=safe_key)] - for col in df.columns - } - enums_list = list(enums.values()) - dtypes = {k: detect_dtype(v) for k, v in enums.items()} - - df_enums = pd.DataFrame({'field_location': 'metadata_and_annual', - 'field_name':df.columns, - 'data_type': list(dtypes.values()), - 'allowable_enumerations': enums_list}) - - dtype_map = { - 'float64': 'float', - 'int64': 'integer', - 'object': 'string', - 'bool': 'boolean' - } - - df_enums['data_type'] = df_enums['data_type'].map(dtype_map) - df_enums = convert_to_int(df_enums) - df_enums = split_list(df_enums) - - return df_enums - - -def merge_dfs(dfs): - """ - Merge a list of DataFrames on 'field_name', combining 'data_type' and 'allowable_enumerations'. - - Rules: - - field_name is the same across all DataFrames. - - data_type: if any of the DataFrames has a non-boolean type, use that type; - if all are boolean, keep 'boolean'. - - allowable_enumerations: combine all lists, keep unique values, and sort them. - """ - - # Start with field_name from the first df - field_names = dfs[0]['field_name'] - merged = pd.DataFrame({'field_name': field_names}) - - # Combine data_type - def combine_dtype_fn(field): - types = [df.loc[df['field_name'] == field, 'data_type'].values[0] for df in dfs] - non_bool = [t for t in types if t != 'boolean'] - return non_bool[0] if non_bool else 'boolean' - merged['data_type'] = merged['field_name'].apply(combine_dtype_fn) - - # Combine allowable_enumerations - def combine_enums_fn(field): - vals = [] - for df in dfs: - vals.extend(df.loc[df['field_name'] == field, 'allowable_enumerations'].values[0]) - return sorted(set(vals), key=safe_key) - merged['allowable_enumerations'] = merged['field_name'].apply(combine_enums_fn) - - return merged - -def enum_dict(df_data_dict, df_meta_up0, dfs_meta_up, up_list): - """ - generate enumeration dictionary based on data dictionary, - released resstock baseline and upgrade annual results - """ - #add baseline unique values to data dictionary - df_meta_up0 = df_meta_up0.drop(columns=df_meta_up0.columns[ - df_meta_up0.columns.str.startswith(("out.", "calc.weighted", "bldg_id")) - ]) - df_baseline_enum = enum(df_meta_up0) - df_enum_dict = pd.merge(df_data_dict, df_baseline_enum, on="field_name", how="left") - - # add upgrade values to data dictionary - upgrade_dfs = [] - prefixes = ("upgrade", - "out.params.panel_breaker_space", - "out.params.panel_constraint") - for up in up_list: - filtered_df = dfs_meta_up[up].loc[:, dfs_meta_up[up].columns.str.startswith(prefixes)] - temp = enum(filtered_df) - upgrade_dfs.append(temp) - - upgrade_merged_df = merge_dfs(upgrade_dfs) - df_enum_dict = ( - df_enum_dict.merge(upgrade_merged_df, on="field_name", how="left", suffixes=("", "_new")) - .assign( - allowable_enumerations=lambda d: d["allowable_enumerations_new"].combine_first(d["allowable_enumerations"]), - data_type=lambda d: d["data_type_new"].combine_first(d["data_type"]) - ) - .drop(columns=["allowable_enumerations_new", "data_type_new", "field_description"]) - ) - df_enum_dict = revise_data_type(df_enum_dict) - - df_enum_dict = df_enum_dict.fillna({'data_type': 'n/a', 'allowable_enumerations': 'n/a'}) - df_enum_dict['allowable_enumerations'] = df_enum_dict['allowable_enumerations'].apply( - lambda x: "|".join(map(str, x)) if isinstance(x, (list, tuple)) else str(x) - ) - - return df_enum_dict - - -def main(): - df_sdr = pd.read_csv("sdr_column_definitions.csv") - df_meta_up0 = pd.read_parquet("metadata_and_annual_results/upgrade0.parquet") - df_tsagg_up0 = pd.read_parquet("timeseries_aggregates/up00.parquet") - - dfs_meta_up = {} - up_list = [0,1,2,3] - for up in up_list: - dfs_meta_up[up] = pd.read_parquet(f"metadata_and_annual_results/upgrade{up}.parquet") - - df_data_dict = data_dictionary(df_meta_up0, df_tsagg_up0, df_sdr) - df_data_dict.to_csv("data_dictionary.tsv", sep='\t', index=None) - - df_enum_dict = enum_dict(df_data_dict, df_meta_up0, dfs_meta_up, up_list) - df_enum_dict.to_csv("enumeration_dictionary.tsv", sep='\t', index=None) - - -main() -""" -To run this code, you need download relevant OEDI data from resstock_amy2018_release_1 -field_name column values come from baseline metadata_and_annual_results and timeseries_aggregates. - -field_location column values are assigned based on the source of the field name: -"metadata_and_annual" if the field name is from baseline metadata_and_annual_results -"timeseries_aggregates" if the field name is from timeseries_aggregates - -units column values are obtained from sdr_column_definitions.csv. - -field_description values are taken from sdr_column_definitions.csv. - -allowable_enumerations come from baseline metadata_and_annual_results -and upgrade metadata_and_annual_results. If a field represents a continuous -value (e.g., out.site_energy.net.energy_savings..kwh), enumerations are omitted. - -data_type is derived from allowable_enumerations. -""" \ No newline at end of file From 6840edec306b9555c65c7540a866c893b8157e0b Mon Sep 17 00:00:00 2001 From: Yingli Date: Sun, 12 Oct 2025 12:18:16 -0600 Subject: [PATCH 23/82] data dict --- postprocessing/resstockpostproc/data_dict.py | 48 ++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 postprocessing/resstockpostproc/data_dict.py diff --git a/postprocessing/resstockpostproc/data_dict.py b/postprocessing/resstockpostproc/data_dict.py new file mode 100644 index 0000000000..cd7b269d6e --- /dev/null +++ b/postprocessing/resstockpostproc/data_dict.py @@ -0,0 +1,48 @@ +import pandas as pd +import pathlib +def data_dictionary(df_sdr): + """ + generate data dictionary based on sdr_column_definitions.csv. + """ + df_sdr_meta = df_sdr[(df_sdr['Publish In Full'] == 'yes') & (df_sdr['Published Annual Name'].notnull())] + df_sdr_tsagg = df_sdr[(df_sdr['Timeseries Publish In Full'] == 'yes') & (df_sdr['Published Timeseries Name'].notnull())] + + # metadata_and_annual_results column names, units, and description + df_meta = df_sdr_meta[['Published Annual Name', + 'Data Type', + 'Published Annual Unit', + 'Notes']].rename(columns={ + 'Published Annual Name': 'field_name', + 'Data Type': 'data_type', + 'Published Annual Unit': 'units', + 'Notes': 'field_description' + }) + df_meta.insert(loc=0, column='field_location', value='metadata_and_annual') + + # timeseries_aggregates column names, units, and description + df_tsagg_sdr = df_sdr_tsagg[['Published Timeseries Name', + 'Data Type', + 'Published Timeseries Unit', + 'Notes']].rename(columns={ + 'Published Timeseries Name': 'field_name', + 'Data Type': 'data_type', + 'Published Timeseries Unit': 'units', + 'Notes': 'field_description' + }) + df_tsagg_sdr.insert(loc=0, column='field_location', value='timeseries_aggregates') + + #combine metadata_and_annual_results and timeseries_aggregates + df_data_dict = pd.concat([df_meta, df_tsagg_sdr], ignore_index=True) + df_data_dict['units'] = df_data_dict['units'].fillna('n/a') + + return df_data_dict + +def main(): + here = pathlib.Path(__file__).resolve().parent + df_sdr = pd.read_csv(here / "resources" / "publication" / "sdr_column_definitions.csv") + df_data_dict = data_dictionary(df_sdr) + df_data_dict.to_csv(here / "resources" / "publication" / "data_dictionary.tsv", sep='\t', index=None) + + +if __name__ == "__main__": + main() From c5982fbd0deb3c9a49732b7d449079bcf94caaf5 Mon Sep 17 00:00:00 2001 From: Yingli Date: Mon, 13 Oct 2025 12:19:19 -0600 Subject: [PATCH 24/82] deal with missing columns in testing --- postprocessing/resstockpostproc/enum_dict.py | 17 ++- .../resources/publication/data_dictionary.tsv | 2 - .../publication/enumeration_dictionary.tsv | 123 ++++++++++++++++++ .../publication/sdr_column_definitions.csv | 4 +- 4 files changed, 140 insertions(+), 6 deletions(-) diff --git a/postprocessing/resstockpostproc/enum_dict.py b/postprocessing/resstockpostproc/enum_dict.py index 6471970a43..4ad7754915 100644 --- a/postprocessing/resstockpostproc/enum_dict.py +++ b/postprocessing/resstockpostproc/enum_dict.py @@ -21,7 +21,7 @@ def enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files): #format buildstock.csv column names df_bs_csv.columns = ['in.' + col.lower().replace(' ', '_') for col in df_bs_csv.columns] df_bs_csv = df_bs_csv.drop('in.building', axis=1) - df_bs_csv = df_bs_csv.rename(columns={ + df_bs_csv = df_bs_csv.rename(columns={ 'in.ashrae_iecc_climate_zone_2004_-_sub-cz_split': 'in.ashrae_iecc_climate_zone_2004_sub_cz_split', 'in.income_recs2015': 'in.income_recs_2015', 'in.income_recs2020': 'in.income_recs_2020' @@ -40,15 +40,28 @@ def enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files): #enumerations from released data df_enum_meta = pd.DataFrame(columns=['metadata_column', 'enumeration']) for up in up_files: + #may not need the renaming for the released parquet file + df_meta_up[up] = df_meta_up[up].rename(columns={ + 'in.sqft': 'in.sqft..ft2', + 'in.air_leakage_to_outside_ach_50': 'in.air_leakage_to_outside_ach50', + 'upgrade_name': 'in.upgrade_name', + 'in.electric_panel_service_rating': 'in.electric_panel_service_rating..a', + 'in.electric_panel_service_rating_bin': 'in.electric_panel_service_rating_bin..a', + 'in.air_leakage_to_outside_ach_50': 'in.air_leakage_to_outside_ach50' + }) existing_cols = [c for c in leftover_columns if c in df_meta_up[up].columns] df_meta_filter = df_meta_up[up][existing_cols] df_meta_filter_enum = enum(df_meta_filter) df_enum_meta = pd.concat([df_enum_meta, df_meta_filter_enum]).drop_duplicates(keep='first') df_enum_dict = pd.concat([df_enum_bs_csv, df_enum_meta]).drop_duplicates(keep='first') - df_enum_dict = df_enum_dict.dropna(subset=['enumeration']) + df_enum_dict['enumeration'] = df_enum_dict['enumeration'].fillna("None") df_enum_dict = df_enum_dict.sort_values(by=['metadata_column', 'enumeration']) + df_enum_dict_columns = df_enum_dict['metadata_column'].unique().tolist() + missing_cols = [c for c in data_dict_columns if c not in df_enum_dict_columns] + print("Missing columns:", missing_cols) + return df_enum_dict diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index 700f7eeca4..b7f459d25d 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -574,8 +574,6 @@ metadata_and_annual upgrade.hvac_cooling_efficiency string n/a Indicates the eff metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning string n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_heating_efficiency string n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.hvac_heating_type_and_fuel string n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_secondary_heating_efficiency string n/a Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_secondary_heating_fuel string n/a Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.infiltration_reduction string n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.insulation_ceiling string n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.water_heater_efficiency string n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv index debc320273..4e0fafddee 100644 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -27,6 +27,14 @@ in.ahs_region Non-CBSA West North Central in.ahs_region Non-CBSA West South Central in.aiannh_area No in.aiannh_area Yes +in.air_leakage_to_outside_ach50 6 +in.air_leakage_to_outside_ach50 7 +in.air_leakage_to_outside_ach50 10 +in.air_leakage_to_outside_ach50 15 +in.air_leakage_to_outside_ach50 20 +in.air_leakage_to_outside_ach50 25 +in.air_leakage_to_outside_ach50 30 +in.air_leakage_to_outside_ach50 40 in.applicable True in.area_median_income 0-30% in.area_median_income 100-120% @@ -96,6 +104,7 @@ in.bathroom_spot_vent_hour Hour6 in.bathroom_spot_vent_hour Hour7 in.bathroom_spot_vent_hour Hour8 in.bathroom_spot_vent_hour Hour9 +in.battery None in.bedrooms 1 in.bedrooms 2 in.bedrooms 3 @@ -126,6 +135,8 @@ in.cec_climate_zone 13.0 in.cec_climate_zone 14.0 in.cec_climate_zone 15.0 in.cec_climate_zone 16.0 +in.cec_climate_zone None +in.ceiling_fan None in.ceiling_fan Standard Efficiency in.ceiling_fan Standard Efficiency, No usage in.census_division East North Central @@ -1259,12 +1270,15 @@ in.city WY, Casper in.city WY, Cheyenne in.clothes_dryer Electric in.clothes_dryer Gas +in.clothes_dryer None in.clothes_dryer Propane in.clothes_dryer_usage_level 100% Usage in.clothes_dryer_usage_level 120% Usage in.clothes_dryer_usage_level 80% Usage in.clothes_washer EnergyStar +in.clothes_washer None in.clothes_washer Standard +in.clothes_washer_presence None in.clothes_washer_presence Yes in.clothes_washer_usage_level 100% Usage in.clothes_washer_usage_level 120% Usage @@ -1272,6 +1286,7 @@ in.clothes_washer_usage_level 80% Usage in.cooking_range Electric Induction in.cooking_range Electric Resistance in.cooking_range Gas +in.cooking_range None in.cooking_range Propane in.cooking_range_usage_level 100% Usage in.cooking_range_usage_level 120% Usage @@ -1348,6 +1363,7 @@ in.cooling_setpoint_offset_period Night Setup -2h in.cooling_setpoint_offset_period Night Setup -3h in.cooling_setpoint_offset_period Night Setup -4h in.cooling_setpoint_offset_period Night Setup -5h +in.cooling_setpoint_offset_period None in.cooling_unavailable_days 1 day in.cooling_unavailable_days 1 month in.cooling_unavailable_days 1 week @@ -7160,8 +7176,10 @@ in.county_name Sequoyah County in.county_name Spalding County in.custom_state AK in.custom_state Others +in.dehumidifier None in.dishwasher 290 Rated kWh in.dishwasher 318 Rated kWh +in.dishwasher None in.dishwasher_usage_level 100% Usage in.dishwasher_usage_level 120% Usage in.dishwasher_usage_level 80% Usage @@ -7180,11 +7198,13 @@ in.duct_leakage_and_insulation 30% Leakage to Outside, R-4 in.duct_leakage_and_insulation 30% Leakage to Outside, R-6 in.duct_leakage_and_insulation 30% Leakage to Outside, R-8 in.duct_leakage_and_insulation 30% Leakage to Outside, Uninsulated +in.duct_leakage_and_insulation None in.duct_location Attic in.duct_location Crawlspace in.duct_location Garage in.duct_location Heated Basement in.duct_location Living Space +in.duct_location None in.duct_location Unheated Basement in.eaves 2 ft in.electric_panel_breaker_space_total_count 11.0 @@ -7197,6 +7217,12 @@ in.electric_panel_breaker_space_total_count 22.0 in.electric_panel_breaker_space_total_count 23.0 in.electric_panel_breaker_space_total_count 25.0 in.electric_panel_breaker_space_total_count 30.0 +in.electric_panel_service_rating..a 100.0 +in.electric_panel_service_rating..a 200.0 +in.electric_panel_service_rating..a 250.0 +in.electric_panel_service_rating_bin..a 100 +in.electric_panel_service_rating_bin..a 200 +in.electric_panel_service_rating_bin..a 201+ in.electric_vehicle_battery Compact, Battery Electric Vehicle, 200 mile range in.electric_vehicle_battery Compact, Battery Electric Vehicle, 300 mile range in.electric_vehicle_battery Midsize, Battery Electric Vehicle, 200 mile range @@ -7213,6 +7239,7 @@ in.electric_vehicle_charge_at_home 60-79% in.electric_vehicle_charge_at_home 80-99% in.electric_vehicle_charger Level 1 charger in.electric_vehicle_charger Level 2 charger +in.electric_vehicle_charger None in.electric_vehicle_miles_traveled 1000 in.electric_vehicle_miles_traveled 3000 in.electric_vehicle_miles_traveled 5000 @@ -7247,6 +7274,7 @@ in.generation_and_emissions_assessment_region MISO Central in.generation_and_emissions_assessment_region MISO North in.generation_and_emissions_assessment_region MISO South in.generation_and_emissions_assessment_region NYISO +in.generation_and_emissions_assessment_region None in.generation_and_emissions_assessment_region Northern Grid East in.generation_and_emissions_assessment_region Northern Grid South in.generation_and_emissions_assessment_region Northern Grid West @@ -7258,17 +7286,21 @@ in.generation_and_emissions_assessment_region SPP South in.generation_and_emissions_assessment_region West Connect North in.generation_and_emissions_assessment_region West Connect South in.geometry_attic_type Finished Attic or Cathedral Ceilings +in.geometry_attic_type None in.geometry_attic_type Unvented Attic in.geometry_attic_type Vented Attic in.geometry_building_horizontal_location_mf Left in.geometry_building_horizontal_location_mf Middle +in.geometry_building_horizontal_location_mf None in.geometry_building_horizontal_location_mf Not Applicable in.geometry_building_horizontal_location_mf Right in.geometry_building_horizontal_location_sfa Left in.geometry_building_horizontal_location_sfa Middle +in.geometry_building_horizontal_location_sfa None in.geometry_building_horizontal_location_sfa Right in.geometry_building_level_mf Bottom in.geometry_building_level_mf Middle +in.geometry_building_level_mf None in.geometry_building_level_mf Top in.geometry_building_number_units_mf 2.0 in.geometry_building_number_units_mf 3.0 @@ -7297,6 +7329,7 @@ in.geometry_building_number_units_mf 67.0 in.geometry_building_number_units_mf 116.0 in.geometry_building_number_units_mf 183.0 in.geometry_building_number_units_mf 326.0 +in.geometry_building_number_units_mf None in.geometry_building_number_units_sfa 5.0 in.geometry_building_number_units_sfa 6.0 in.geometry_building_number_units_sfa 7.0 @@ -7313,6 +7346,7 @@ in.geometry_building_number_units_sfa 50.0 in.geometry_building_number_units_sfa 60.0 in.geometry_building_number_units_sfa 90.0 in.geometry_building_number_units_sfa 144.0 +in.geometry_building_number_units_sfa None in.geometry_building_type_acs 10 to 19 Unit in.geometry_building_type_acs 2 Unit in.geometry_building_type_acs 20 to 49 Unit @@ -7356,6 +7390,7 @@ in.geometry_foundation_type Vented Crawlspace in.geometry_garage 1 Car in.geometry_garage 2 Car in.geometry_garage 3 Car +in.geometry_garage None in.geometry_space_combination Mobile Home, Ambient, No Attic, No Garage in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage @@ -7497,6 +7532,7 @@ in.geometry_wall_exterior_finish Aluminum, Light in.geometry_wall_exterior_finish Brick, Light in.geometry_wall_exterior_finish Brick, Medium/Dark in.geometry_wall_exterior_finish Fiber-Cement, Light +in.geometry_wall_exterior_finish None in.geometry_wall_exterior_finish Shingle, Asbestos, Medium in.geometry_wall_exterior_finish Shingle, Composition, Medium in.geometry_wall_exterior_finish Stucco, Light @@ -7520,6 +7556,7 @@ in.has_pv Yes in.heating_fuel Electricity in.heating_fuel Fuel Oil in.heating_fuel Natural Gas +in.heating_fuel None in.heating_fuel Propane in.heating_fuel Wood in.heating_setpoint 55F @@ -7573,6 +7610,7 @@ in.heating_setpoint_offset_period Night -2h in.heating_setpoint_offset_period Night -3h in.heating_setpoint_offset_period Night -4h in.heating_setpoint_offset_period Night -5h +in.heating_setpoint_offset_period None in.heating_unavailable_days 1 day in.heating_unavailable_days 1 month in.heating_unavailable_days 1 week @@ -7602,12 +7640,14 @@ in.hot_water_fixtures 90% Usage in.household_has_tribal_persons No in.household_has_tribal_persons Not Available in.household_has_tribal_persons Yes +in.hvac_cooling_autosizing_factor None in.hvac_cooling_efficiency AC, SEER 10 in.hvac_cooling_efficiency AC, SEER 13 in.hvac_cooling_efficiency AC, SEER 15 in.hvac_cooling_efficiency AC, SEER 8 in.hvac_cooling_efficiency Ducted Heat Pump in.hvac_cooling_efficiency Non-Ducted Heat Pump +in.hvac_cooling_efficiency None in.hvac_cooling_efficiency Room AC, EER 10.7 in.hvac_cooling_efficiency Room AC, EER 12.0 in.hvac_cooling_efficiency Room AC, EER 8.5 @@ -7619,17 +7659,21 @@ in.hvac_cooling_partial_space_conditioning 40% Conditioned in.hvac_cooling_partial_space_conditioning 60% Conditioned in.hvac_cooling_partial_space_conditioning 80% Conditioned in.hvac_cooling_partial_space_conditioning <10% Conditioned +in.hvac_cooling_partial_space_conditioning None in.hvac_cooling_type Central AC in.hvac_cooling_type Ducted Heat Pump in.hvac_cooling_type Non-Ducted Heat Pump +in.hvac_cooling_type None in.hvac_cooling_type Room AC in.hvac_has_ducts No in.hvac_has_ducts Yes in.hvac_has_shared_system Cooling Only in.hvac_has_shared_system Heating Only in.hvac_has_shared_system Heating and Cooling +in.hvac_has_shared_system None in.hvac_has_zonal_electric_heating No in.hvac_has_zonal_electric_heating Yes +in.hvac_heating_autosizing_factor None in.hvac_heating_efficiency ASHP, SEER 10, 6.2 HSPF in.hvac_heating_efficiency ASHP, SEER 13, 7.7 HSPF in.hvac_heating_efficiency ASHP, SEER 15, 8.5 HSPF @@ -7647,11 +7691,13 @@ in.hvac_heating_efficiency Fuel Furnace, 92.5% AFUE in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 60% AFUE in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE in.hvac_heating_efficiency MSHP, SEER 14.5, 8.2 HSPF +in.hvac_heating_efficiency None in.hvac_heating_efficiency Shared Heating in.hvac_heating_type Ducted Heat Pump in.hvac_heating_type Ducted Heating in.hvac_heating_type Non-Ducted Heat Pump in.hvac_heating_type Non-Ducted Heating +in.hvac_heating_type None in.hvac_heating_type_and_fuel Electricity ASHP in.hvac_heating_type_and_fuel Electricity Baseboard in.hvac_heating_type_and_fuel Electricity Electric Boiler @@ -7667,22 +7713,31 @@ in.hvac_heating_type_and_fuel Natural Gas Fuel Boiler in.hvac_heating_type_and_fuel Natural Gas Fuel Furnace in.hvac_heating_type_and_fuel Natural Gas Fuel Wall/Floor Furnace in.hvac_heating_type_and_fuel Natural Gas Shared Heating +in.hvac_heating_type_and_fuel None in.hvac_heating_type_and_fuel Other Fuel Fuel Wall/Floor Furnace in.hvac_heating_type_and_fuel Propane Fuel Boiler in.hvac_heating_type_and_fuel Propane Fuel Furnace in.hvac_heating_type_and_fuel Propane Fuel Wall/Floor Furnace in.hvac_secondary_heating_efficiency Fuel Boiler, 76% AFUE +in.hvac_secondary_heating_efficiency None +in.hvac_secondary_heating_fuel None in.hvac_secondary_heating_fuel Wood in.hvac_secondary_heating_partial_space_conditioning 0% in.hvac_secondary_heating_partial_space_conditioning 30% in.hvac_secondary_heating_type Non-Ducted Heating +in.hvac_secondary_heating_type None in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Electricity in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Fuel in.hvac_shared_efficiencies Fan Coil Cooling Only in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Electricity in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Fuel +in.hvac_shared_efficiencies None in.hvac_system_is_faulted No in.hvac_system_is_scaled No +in.hvac_system_single_speed_ac_airflow None +in.hvac_system_single_speed_ac_charge None +in.hvac_system_single_speed_ashp_airflow None +in.hvac_system_single_speed_ashp_charge None in.income 10000-14999 in.income 100000-119999 in.income 120000-139999 @@ -7734,6 +7789,7 @@ in.infiltration 50 ACH50 in.infiltration 6 ACH50 in.infiltration 7 ACH50 in.infiltration 8 ACH50 +in.insulation_ceiling None in.insulation_ceiling R-13 in.insulation_ceiling R-19 in.insulation_ceiling R-30 @@ -7744,11 +7800,14 @@ in.insulation_ceiling Uninsulated in.insulation_floor Ceiling R-13 in.insulation_floor Ceiling R-19 in.insulation_floor Ceiling R-30 +in.insulation_floor None in.insulation_floor Uninsulated +in.insulation_foundation_wall None in.insulation_foundation_wall Uninsulated in.insulation_foundation_wall Wall R-10, Exterior in.insulation_foundation_wall Wall R-15, Exterior in.insulation_foundation_wall Wall R-5, Exterior +in.insulation_rim_joist None in.insulation_rim_joist R-10, Exterior in.insulation_rim_joist R-15, Exterior in.insulation_rim_joist R-5, Exterior @@ -7765,6 +7824,7 @@ in.insulation_slab 2ft R10 Perimeter, Vertical in.insulation_slab 2ft R10 Under, Horizontal in.insulation_slab 2ft R5 Perimeter, Vertical in.insulation_slab 2ft R5 Under, Horizontal +in.insulation_slab None in.insulation_slab Uninsulated in.insulation_wall Brick, 12-in, 3-wythe, R-11 in.insulation_wall Brick, 12-in, 3-wythe, R-15 @@ -7787,6 +7847,7 @@ in.iso_rto_region ERCOT in.iso_rto_region MISO in.iso_rto_region NEISO in.iso_rto_region NYISO +in.iso_rto_region None in.iso_rto_region PJM in.iso_rto_region SPP in.lighting 100% CFL @@ -7806,6 +7867,7 @@ in.location_region CR10 in.location_region CR11 in.location_region CRAK in.location_region CRHI +in.mechanical_ventilation None in.metropolitan_and_micropolitan_statistical_area Aberdeen, SD MicroSA in.metropolitan_and_micropolitan_statistical_area Aberdeen, WA MicroSA in.metropolitan_and_micropolitan_statistical_area Abilene, TX MSA @@ -8403,6 +8465,7 @@ in.metropolitan_and_micropolitan_statistical_area Newport, TN MicroSA in.metropolitan_and_micropolitan_statistical_area Newton, IA MicroSA in.metropolitan_and_micropolitan_statistical_area Niles-Benton Harbor, MI MSA in.metropolitan_and_micropolitan_statistical_area Nogales, AZ MicroSA +in.metropolitan_and_micropolitan_statistical_area None in.metropolitan_and_micropolitan_statistical_area Norfolk, NE MicroSA in.metropolitan_and_micropolitan_statistical_area North Platte, NE MicroSA in.metropolitan_and_micropolitan_statistical_area North Port-Sarasota-Bradenton, FL MSA @@ -8724,19 +8787,29 @@ in.misc_extra_refrigerator EF 17.6 in.misc_extra_refrigerator EF 19.9 in.misc_extra_refrigerator EF 21.9 in.misc_extra_refrigerator EF 6.7 +in.misc_extra_refrigerator None in.misc_freezer EF 12, National Average +in.misc_freezer None in.misc_gas_fireplace Gas Fireplace +in.misc_gas_fireplace None in.misc_gas_grill Gas Grill +in.misc_gas_grill None in.misc_gas_lighting Gas Lighting +in.misc_gas_lighting None in.misc_hot_tub_spa Electricity in.misc_hot_tub_spa Natural Gas +in.misc_hot_tub_spa None in.misc_hot_tub_spa Other Fuel in.misc_pool Has Pool +in.misc_pool None in.misc_pool_heater Electric Heat Pump in.misc_pool_heater Electricity in.misc_pool_heater Natural Gas +in.misc_pool_heater None in.misc_pool_heater Other Fuel in.misc_pool_pump 1.0 HP Pump +in.misc_pool_pump None +in.misc_well_pump None in.misc_well_pump Typical Efficiency in.natural_ventilation Cooling Season, 7 days/wk in.neighbors 12 @@ -8745,6 +8818,7 @@ in.neighbors 27 in.neighbors 4 in.neighbors 7 in.neighbors Left/Right at 15ft +in.neighbors None in.occupants 0 in.occupants 1 in.occupants 2 @@ -8762,6 +8836,7 @@ in.orientation South in.orientation Southeast in.orientation Southwest in.orientation West +in.overhangs None in.plug_load_diversity 100% in.plug_load_diversity 200% in.plug_load_diversity 50% @@ -11150,6 +11225,7 @@ in.puma_metro_status In metro area, not/partially in principal city in.puma_metro_status In metro area, principal city in.puma_metro_status Not/partially in metro area in.pv_orientation East +in.pv_orientation None in.pv_orientation North in.pv_orientation Northeast in.pv_orientation Northwest @@ -11164,7 +11240,9 @@ in.pv_system_size 3.0 kWDC in.pv_system_size 5.0 kWDC in.pv_system_size 7.0 kWDC in.pv_system_size 9.0 kWDC +in.pv_system_size None in.radiant_barrier No +in.radiant_barrier None in.range_spot_vent_hour Hour0 in.range_spot_vent_hour Hour1 in.range_spot_vent_hour Hour10 @@ -11322,6 +11400,7 @@ in.reeds_balancing_area 131.0 in.reeds_balancing_area 132.0 in.reeds_balancing_area 133.0 in.reeds_balancing_area 134.0 +in.reeds_balancing_area None in.refrigerator EF 10.2 in.refrigerator EF 10.5 in.refrigerator EF 15.9 @@ -11329,6 +11408,7 @@ in.refrigerator EF 17.6 in.refrigerator EF 19.9 in.refrigerator EF 21.9 in.refrigerator EF 6.7 +in.refrigerator None in.refrigerator_usage_level 100% Usage in.refrigerator_usage_level 105% Usage in.refrigerator_usage_level 95% Usage @@ -11357,6 +11437,10 @@ in.simulation_control_run_period_calendar_year 2018 in.simulation_control_run_period_end_day_of_month 31 in.simulation_control_run_period_end_month 12 in.simulation_control_timestep 15 +in.sqft..ft2 881.0 +in.sqft..ft2 1228.0 +in.sqft..ft2 2179.0 +in.sqft..ft2 2678.0 in.state AK in.state AL in.state AR @@ -11420,6 +11504,35 @@ in.tenure Not Available in.tenure Owner in.tenure Renter in.units_represented 1 +in.upgrade_name Air Sealing +in.upgrade_name Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation +in.upgrade_name Air Sealing, Attic Floor Insulation, and Duct sealing +in.upgrade_name Attic Floor Insulation for Unfinished Attics +in.upgrade_name Baseline +in.upgrade_name Drill and Fill Wall Insulation with Air Sealing +in.upgrade_name Dual Fuel Heat Pump System +in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes +in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing +in.upgrade_name Duct Sealing and Insulation +in.upgrade_name ENERGY STAR Windows +in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging +in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility +in.upgrade_name Electric Vehicle Adoption with Level 1 Charging +in.upgrade_name Electric Vehicle Adoption with Level 2 Charging +in.upgrade_name Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility +in.upgrade_name HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset +in.upgrade_name HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset +in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration +in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration +in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration +in.upgrade_name Heat Pump Water Heater +in.upgrade_name High Efficiency Natural Gas Tankless Water Heater +in.upgrade_name Minimum Efficiency Furnaces and Air Conditioners Circa 2025 +in.upgrade_name Natural Gas Furnace 95% AFUE for All Dwellings with Ducts +in.upgrade_name Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE +in.upgrade_name Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes +in.upgrade_name Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 +in.upgrade_name Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes in.usage_level High in.usage_level Low in.usage_level Medium @@ -11604,18 +11717,22 @@ upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak upgrade.demand_flexibility_random_shift 30 minutes upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-6 upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-8 +upgrade.duct_leakage_and_insulation None upgrade.electric_vehicle_charger Level 1 charger upgrade.electric_vehicle_charger Level 2 charger upgrade.electric_vehicle_efficiency_increase 15% upgrade.electric_vehicle_ownership Yes upgrade.heating_fuel Electricity upgrade.heating_fuel Natural Gas +upgrade.heating_fuel None upgrade.hvac_cooling_efficiency AC, SEER 15 upgrade.hvac_cooling_efficiency AC, SEER2 13.4 upgrade.hvac_cooling_efficiency AC, SEER2 14.3 upgrade.hvac_cooling_efficiency Ducted Heat Pump +upgrade.hvac_cooling_efficiency None upgrade.hvac_cooling_efficiency Room AC, EER 12.0 upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned +upgrade.hvac_cooling_partial_space_conditioning None upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted upgrade.hvac_heating_efficiency ASHP, SEER2 14.3, 7.5 HSPF2 upgrade.hvac_heating_efficiency ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate @@ -11638,20 +11755,26 @@ upgrade.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE upgrade.hvac_heating_efficiency GSHP, EER 18.6, COP 3.8 upgrade.hvac_heating_efficiency GSHP, EER 20.5, COP 4.0 upgrade.hvac_heating_efficiency GSHP, EER 30.9, COP 4.4 +upgrade.hvac_heating_efficiency None upgrade.hvac_heating_type_and_fuel Electricity ASHP upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace +upgrade.hvac_heating_type_and_fuel None upgrade.infiltration 5 ACH50 upgrade.infiltration_reduction 13% upgrade.infiltration_reduction 30% +upgrade.insulation_ceiling None upgrade.insulation_ceiling R-49 upgrade.insulation_ceiling R-60 +upgrade.insulation_wall None upgrade.insulation_wall Wood Stud, R-13 upgrade.water_heater_efficiency Electric Heat Pump, 50 gal, 3.78 UEF upgrade.water_heater_efficiency Electric Heat Pump, 66 gal, 3.95 UEF upgrade.water_heater_efficiency Electric Heat Pump, 80 gal, 3.98 UEF upgrade.water_heater_efficiency High Efficiency Natural Gas Tankless, Condensing +upgrade.water_heater_efficiency None upgrade.water_heater_fuel Electricity upgrade.water_heater_fuel Natural Gas +upgrade.water_heater_fuel None upgrade.windows EnergyStar, North-Central upgrade.windows EnergyStar, Northern upgrade.windows EnergyStar, South-Central diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 5a8900ce04..8c13305428 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -809,8 +809,8 @@ Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicate Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,string,no,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,string,no,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,yes,no,string,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,string,no,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,yes,string,no,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,no,string,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. From 4e0b2aa4abb63c8b8a381f34b8a9abbf8ad1d785 Mon Sep 17 00:00:00 2001 From: Yingli Date: Mon, 13 Oct 2025 14:42:03 -0600 Subject: [PATCH 25/82] revise note --- postprocessing/resstockpostproc/enum_dict.py | 2 +- .../resources/publication/sdr_column_definitions.csv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postprocessing/resstockpostproc/enum_dict.py b/postprocessing/resstockpostproc/enum_dict.py index 4ad7754915..81ac97a509 100644 --- a/postprocessing/resstockpostproc/enum_dict.py +++ b/postprocessing/resstockpostproc/enum_dict.py @@ -40,7 +40,7 @@ def enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files): #enumerations from released data df_enum_meta = pd.DataFrame(columns=['metadata_column', 'enumeration']) for up in up_files: - #may not need the renaming for the released parquet file + #Do not need the renaming for the released parquet file df_meta_up[up] = df_meta_up[up].rename(columns={ 'in.sqft': 'in.sqft..ft2', 'in.air_leakage_to_outside_ach_50': 'in.air_leakage_to_outside_ach50', diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 8c13305428..2d1a68ac7a 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -173,7 +173,7 @@ Input,yes,yes,string,no,build_existing_model.window_areas,,in.window_areas,in.wi Input,yes,yes,string,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. Input,yes,yes,float,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. Input,yes,yes,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,yes,yes,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,yes,no,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. Input,yes,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." Input,yes,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." From 3a87b77ee32e845335b732674ada5be9be17676c Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 14 Oct 2025 14:36:39 -0600 Subject: [PATCH 26/82] enumeration dictionary --- .../publication/enumeration_dictionary.tsv | 70240 +++++++++++++--- 1 file changed, 58458 insertions(+), 11782 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv index 4e0fafddee..25be40db7e 100644 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -1,11782 +1,58458 @@ -metadata_column enumeration -applicability False -applicability True -in.ahs_region CBSA Atlanta-Sandy Springs-Roswell, GA -in.ahs_region CBSA Boston-Cambridge-Newton, MA-NH -in.ahs_region CBSA Chicago-Naperville-Elgin, IL-IN-WI -in.ahs_region CBSA Dallas-Fort Worth-Arlington, TX -in.ahs_region CBSA Detroit-Warren-Dearborn, MI -in.ahs_region CBSA Houston-The Woodlands-Sugar Land, TX -in.ahs_region CBSA Los Angeles-Long Beach-Anaheim, CA -in.ahs_region CBSA Miami-Fort Lauderdale-West Palm Beach, FL -in.ahs_region CBSA New York-Newark-Jersey City, NY-NJ-PA -in.ahs_region CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD -in.ahs_region CBSA Phoenix-Mesa-Scottsdale, AZ -in.ahs_region CBSA Riverside-San Bernardino-Ontario, CA -in.ahs_region CBSA San Francisco-Oakland-Hayward, CA -in.ahs_region CBSA Seattle-Tacoma-Bellevue, WA -in.ahs_region CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV -in.ahs_region Non-CBSA East North Central -in.ahs_region Non-CBSA East South Central -in.ahs_region Non-CBSA Middle Atlantic -in.ahs_region Non-CBSA Mountain -in.ahs_region Non-CBSA New England -in.ahs_region Non-CBSA Pacific -in.ahs_region Non-CBSA South Atlantic -in.ahs_region Non-CBSA West North Central -in.ahs_region Non-CBSA West South Central -in.aiannh_area No -in.aiannh_area Yes -in.air_leakage_to_outside_ach50 6 -in.air_leakage_to_outside_ach50 7 -in.air_leakage_to_outside_ach50 10 -in.air_leakage_to_outside_ach50 15 -in.air_leakage_to_outside_ach50 20 -in.air_leakage_to_outside_ach50 25 -in.air_leakage_to_outside_ach50 30 -in.air_leakage_to_outside_ach50 40 -in.applicable True -in.area_median_income 0-30% -in.area_median_income 100-120% -in.area_median_income 120-150% -in.area_median_income 150%+ -in.area_median_income 30-60% -in.area_median_income 60-80% -in.area_median_income 80-100% -in.area_median_income Not Available -in.ashrae_iecc_climate_zone_2004 1A -in.ashrae_iecc_climate_zone_2004 2A -in.ashrae_iecc_climate_zone_2004 2B -in.ashrae_iecc_climate_zone_2004 3A -in.ashrae_iecc_climate_zone_2004 3B -in.ashrae_iecc_climate_zone_2004 3C -in.ashrae_iecc_climate_zone_2004 4A -in.ashrae_iecc_climate_zone_2004 4B -in.ashrae_iecc_climate_zone_2004 4C -in.ashrae_iecc_climate_zone_2004 5A -in.ashrae_iecc_climate_zone_2004 5B -in.ashrae_iecc_climate_zone_2004 6A -in.ashrae_iecc_climate_zone_2004 6B -in.ashrae_iecc_climate_zone_2004 7A -in.ashrae_iecc_climate_zone_2004 7AK -in.ashrae_iecc_climate_zone_2004 7B -in.ashrae_iecc_climate_zone_2004 8AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI -in.ashrae_iecc_climate_zone_2004_sub_cz_split 2A - FL, GA, AL, MS -in.ashrae_iecc_climate_zone_2004_sub_cz_split 2A - TX, LA -in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK -in.bathroom_spot_vent_hour Hour0 -in.bathroom_spot_vent_hour Hour1 -in.bathroom_spot_vent_hour Hour10 -in.bathroom_spot_vent_hour Hour11 -in.bathroom_spot_vent_hour Hour12 -in.bathroom_spot_vent_hour Hour13 -in.bathroom_spot_vent_hour Hour14 -in.bathroom_spot_vent_hour Hour15 -in.bathroom_spot_vent_hour Hour16 -in.bathroom_spot_vent_hour Hour17 -in.bathroom_spot_vent_hour Hour18 -in.bathroom_spot_vent_hour Hour19 -in.bathroom_spot_vent_hour Hour2 -in.bathroom_spot_vent_hour Hour20 -in.bathroom_spot_vent_hour Hour21 -in.bathroom_spot_vent_hour Hour22 -in.bathroom_spot_vent_hour Hour23 -in.bathroom_spot_vent_hour Hour3 -in.bathroom_spot_vent_hour Hour4 -in.bathroom_spot_vent_hour Hour5 -in.bathroom_spot_vent_hour Hour6 -in.bathroom_spot_vent_hour Hour7 -in.bathroom_spot_vent_hour Hour8 -in.bathroom_spot_vent_hour Hour9 -in.battery None -in.bedrooms 1 -in.bedrooms 2 -in.bedrooms 3 -in.bedrooms 4 -in.bedrooms 5 -in.building_america_climate_zone Cold -in.building_america_climate_zone Hot-Dry -in.building_america_climate_zone Hot-Humid -in.building_america_climate_zone Marine -in.building_america_climate_zone Mixed-Dry -in.building_america_climate_zone Mixed-Humid -in.building_america_climate_zone Subarctic -in.building_america_climate_zone Very Cold -in.buildstock_csv_path buildstock.csv -in.cec_climate_zone 1.0 -in.cec_climate_zone 2.0 -in.cec_climate_zone 3.0 -in.cec_climate_zone 4.0 -in.cec_climate_zone 5.0 -in.cec_climate_zone 6.0 -in.cec_climate_zone 7.0 -in.cec_climate_zone 8.0 -in.cec_climate_zone 9.0 -in.cec_climate_zone 10.0 -in.cec_climate_zone 11.0 -in.cec_climate_zone 12.0 -in.cec_climate_zone 13.0 -in.cec_climate_zone 14.0 -in.cec_climate_zone 15.0 -in.cec_climate_zone 16.0 -in.cec_climate_zone None -in.ceiling_fan None -in.ceiling_fan Standard Efficiency -in.ceiling_fan Standard Efficiency, No usage -in.census_division East North Central -in.census_division East South Central -in.census_division Middle Atlantic -in.census_division Mountain -in.census_division New England -in.census_division Pacific -in.census_division South Atlantic -in.census_division West North Central -in.census_division West South Central -in.census_division_recs East North Central -in.census_division_recs East South Central -in.census_division_recs Middle Atlantic -in.census_division_recs Mountain North -in.census_division_recs Mountain South -in.census_division_recs New England -in.census_division_recs Pacific -in.census_division_recs South Atlantic -in.census_division_recs West North Central -in.census_division_recs West South Central -in.census_region Midwest -in.census_region Northeast -in.census_region South -in.census_region West -in.city AK, Anchorage -in.city AL, Auburn -in.city AL, Birmingham -in.city AL, Decatur -in.city AL, Dothan -in.city AL, Florence -in.city AL, Gadsden -in.city AL, Hoover -in.city AL, Huntsville -in.city AL, Madison -in.city AL, Mobile -in.city AL, Montgomery -in.city AL, Phenix City -in.city AL, Tuscaloosa -in.city AR, Bentonville -in.city AR, Conway -in.city AR, Fayetteville -in.city AR, Fort Smith -in.city AR, Hot Springs -in.city AR, Jonesboro -in.city AR, Little Rock -in.city AR, North Little Rock -in.city AR, Pine Bluff -in.city AR, Rogers -in.city AR, Springdale -in.city AZ, Apache Junction -in.city AZ, Avondale -in.city AZ, Buckeye -in.city AZ, Bullhead City -in.city AZ, Casa Grande -in.city AZ, Casas Adobes -in.city AZ, Catalina Foothills -in.city AZ, Chandler -in.city AZ, Flagstaff -in.city AZ, Fortuna Foothills -in.city AZ, Gilbert -in.city AZ, Glendale -in.city AZ, Goodyear -in.city AZ, Green Valley -in.city AZ, Lake Havasu City -in.city AZ, Marana -in.city AZ, Maricopa -in.city AZ, Mesa -in.city AZ, Oro Valley -in.city AZ, Peoria -in.city AZ, Phoenix -in.city AZ, Prescott -in.city AZ, Prescott Valley -in.city AZ, San Tan Valley -in.city AZ, Scottsdale -in.city AZ, Sierra Vista -in.city AZ, Sun City -in.city AZ, Sun City West -in.city AZ, Surprise -in.city AZ, Tempe -in.city AZ, Tucson -in.city AZ, Yuma -in.city CA, Alameda -in.city CA, Alhambra -in.city CA, Aliso Viejo -in.city CA, Altadena -in.city CA, Anaheim -in.city CA, Antioch -in.city CA, Apple Valley -in.city CA, Arcadia -in.city CA, Arden-Arcade -in.city CA, Bakersfield -in.city CA, Baldwin Park -in.city CA, Bellflower -in.city CA, Berkeley -in.city CA, Beverly Hills -in.city CA, Brea -in.city CA, Brentwood -in.city CA, Buena Park -in.city CA, Burbank -in.city CA, Camarillo -in.city CA, Campbell -in.city CA, Carlsbad -in.city CA, Carmichael -in.city CA, Carson -in.city CA, Castro Valley -in.city CA, Cathedral City -in.city CA, Cerritos -in.city CA, Chico -in.city CA, Chino -in.city CA, Chino Hills -in.city CA, Chula Vista -in.city CA, Citrus Heights -in.city CA, Clovis -in.city CA, Colton -in.city CA, Compton -in.city CA, Concord -in.city CA, Corona -in.city CA, Costa Mesa -in.city CA, Covina -in.city CA, Culver City -in.city CA, Cupertino -in.city CA, Cypress -in.city CA, Daly City -in.city CA, Dana Point -in.city CA, Danville -in.city CA, Davis -in.city CA, Diamond Bar -in.city CA, Downey -in.city CA, Dublin -in.city CA, East Los Angeles -in.city CA, El Cajon -in.city CA, El Dorado Hills -in.city CA, El Monte -in.city CA, Elk Grove -in.city CA, Encinitas -in.city CA, Escondido -in.city CA, Fairfield -in.city CA, Florence-Graham -in.city CA, Florin -in.city CA, Folsom -in.city CA, Fontana -in.city CA, Fountain Valley -in.city CA, Fremont -in.city CA, Fresno -in.city CA, Fullerton -in.city CA, Garden Grove -in.city CA, Gardena -in.city CA, Gilroy -in.city CA, Glendale -in.city CA, Glendora -in.city CA, Hacienda Heights -in.city CA, Hanford -in.city CA, Hawthorne -in.city CA, Hayward -in.city CA, Hemet -in.city CA, Hesperia -in.city CA, Highland -in.city CA, Huntington Beach -in.city CA, Huntington Park -in.city CA, Indio -in.city CA, Inglewood -in.city CA, Irvine -in.city CA, La Habra -in.city CA, La Mesa -in.city CA, La Quinta -in.city CA, Laguna Niguel -in.city CA, Lake Elsinore -in.city CA, Lake Forest -in.city CA, Lakewood -in.city CA, Lancaster -in.city CA, Lincoln -in.city CA, Livermore -in.city CA, Lodi -in.city CA, Long Beach -in.city CA, Los Angeles -in.city CA, Lynwood -in.city CA, Madera -in.city CA, Manhattan Beach -in.city CA, Manteca -in.city CA, Martinez -in.city CA, Menifee -in.city CA, Merced -in.city CA, Milpitas -in.city CA, Mission Viejo -in.city CA, Modesto -in.city CA, Montebello -in.city CA, Monterey Park -in.city CA, Moreno Valley -in.city CA, Mountain View -in.city CA, Murrieta -in.city CA, Napa -in.city CA, National City -in.city CA, Newport Beach -in.city CA, North Highlands -in.city CA, Norwalk -in.city CA, Novato -in.city CA, Oakland -in.city CA, Oceanside -in.city CA, Ontario -in.city CA, Orange -in.city CA, Oxnard -in.city CA, Palm Desert -in.city CA, Palm Springs -in.city CA, Palmdale -in.city CA, Palo Alto -in.city CA, Pasadena -in.city CA, Perris -in.city CA, Petaluma -in.city CA, Pico Rivera -in.city CA, Pittsburg -in.city CA, Placentia -in.city CA, Pleasanton -in.city CA, Pomona -in.city CA, Porterville -in.city CA, Poway -in.city CA, Rancho Cordova -in.city CA, Rancho Cucamonga -in.city CA, Rancho Palos Verdes -in.city CA, Rancho Santa Margarita -in.city CA, Redding -in.city CA, Redlands -in.city CA, Redondo Beach -in.city CA, Redwood City -in.city CA, Rialto -in.city CA, Richmond -in.city CA, Riverside -in.city CA, Rocklin -in.city CA, Rohnert Park -in.city CA, Rosemead -in.city CA, Roseville -in.city CA, Rowland Heights -in.city CA, Sacramento -in.city CA, Salinas -in.city CA, San Bernardino -in.city CA, San Bruno -in.city CA, San Buenaventura Ventura -in.city CA, San Clemente -in.city CA, San Diego -in.city CA, San Francisco -in.city CA, San Jose -in.city CA, San Leandro -in.city CA, San Luis Obispo -in.city CA, San Marcos -in.city CA, San Mateo -in.city CA, San Rafael -in.city CA, San Ramon -in.city CA, Santa Ana -in.city CA, Santa Barbara -in.city CA, Santa Clara -in.city CA, Santa Clarita -in.city CA, Santa Cruz -in.city CA, Santa Maria -in.city CA, Santa Monica -in.city CA, Santa Rosa -in.city CA, Santee -in.city CA, Simi Valley -in.city CA, South Gate -in.city CA, South Lake Tahoe -in.city CA, South San Francisco -in.city CA, South Whittier -in.city CA, Stockton -in.city CA, Sunnyvale -in.city CA, Temecula -in.city CA, Thousand Oaks -in.city CA, Torrance -in.city CA, Tracy -in.city CA, Tulare -in.city CA, Turlock -in.city CA, Tustin -in.city CA, Union City -in.city CA, Upland -in.city CA, Vacaville -in.city CA, Vallejo -in.city CA, Victorville -in.city CA, Visalia -in.city CA, Vista -in.city CA, Walnut Creek -in.city CA, West Covina -in.city CA, West Hollywood -in.city CA, West Sacramento -in.city CA, Westminster -in.city CA, Whittier -in.city CA, Woodland -in.city CA, Yorba Linda -in.city CA, Yuba City -in.city CA, Yucaipa -in.city CO, Arvada -in.city CO, Aurora -in.city CO, Boulder -in.city CO, Broomfield -in.city CO, Castle Rock -in.city CO, Centennial -in.city CO, Colorado Springs -in.city CO, Commerce City -in.city CO, Denver -in.city CO, Englewood -in.city CO, Fort Collins -in.city CO, Grand Junction -in.city CO, Greeley -in.city CO, Highlands Ranch -in.city CO, Lakewood -in.city CO, Littleton -in.city CO, Longmont -in.city CO, Loveland -in.city CO, Parker -in.city CO, Pueblo -in.city CO, Thornton -in.city CO, Westminster -in.city CT, Bridgeport -in.city CT, Bristol -in.city CT, Danbury -in.city CT, East Hartford -in.city CT, Hartford -in.city CT, Meriden -in.city CT, Middletown -in.city CT, Milford City Balance -in.city CT, New Britain -in.city CT, New Haven -in.city CT, Norwalk -in.city CT, Norwich -in.city CT, Shelton -in.city CT, Stamford -in.city CT, Stratford -in.city CT, Torrington -in.city CT, Waterbury -in.city CT, West Hartford -in.city CT, West Haven -in.city DC, Washington -in.city DE, Dover -in.city DE, Wilmington -in.city FL, Alafaya -in.city FL, Altamonte Springs -in.city FL, Apopka -in.city FL, Aventura -in.city FL, Boca Raton -in.city FL, Bonita Springs -in.city FL, Boynton Beach -in.city FL, Bradenton -in.city FL, Brandon -in.city FL, Cape Coral -in.city FL, Carrollwood -in.city FL, Clearwater -in.city FL, Coconut Creek -in.city FL, Coral Gables -in.city FL, Coral Springs -in.city FL, Country Club -in.city FL, Dania Beach -in.city FL, Davie -in.city FL, Daytona Beach -in.city FL, Deerfield Beach -in.city FL, Delray Beach -in.city FL, Deltona -in.city FL, Doral -in.city FL, Dunedin -in.city FL, East Lake -in.city FL, Estero -in.city FL, Fort Lauderdale -in.city FL, Fort Myers -in.city FL, Fort Pierce -in.city FL, Fountainebleau -in.city FL, Four Corners -in.city FL, Gainesville -in.city FL, Greenacres -in.city FL, Hallandale Beach -in.city FL, Hialeah -in.city FL, Hollywood -in.city FL, Homestead -in.city FL, Jacksonville -in.city FL, Jupiter -in.city FL, Kendale Lakes -in.city FL, Kendall -in.city FL, Kissimmee -in.city FL, Lake Worth -in.city FL, Lakeland -in.city FL, Largo -in.city FL, Lauderhill -in.city FL, Lehigh Acres -in.city FL, Marco Island -in.city FL, Margate -in.city FL, Melbourne -in.city FL, Merritt Island -in.city FL, Miami -in.city FL, Miami Beach -in.city FL, Miami Gardens -in.city FL, Miramar -in.city FL, Naples -in.city FL, New Smyrna Beach -in.city FL, North Fort Myers -in.city FL, North Miami -in.city FL, North Miami Beach -in.city FL, North Port -in.city FL, Oakland Park -in.city FL, Ocala -in.city FL, Orlando -in.city FL, Ormond Beach -in.city FL, Palm Bay -in.city FL, Palm Beach Gardens -in.city FL, Palm Coast -in.city FL, Palm Harbor -in.city FL, Panama City -in.city FL, Panama City Beach -in.city FL, Pembroke Pines -in.city FL, Pensacola -in.city FL, Pine Hills -in.city FL, Pinellas Park -in.city FL, Plantation -in.city FL, Poinciana -in.city FL, Pompano Beach -in.city FL, Port Charlotte -in.city FL, Port Orange -in.city FL, Port St Lucie -in.city FL, Riverview -in.city FL, Riviera Beach -in.city FL, Sanford -in.city FL, Sarasota -in.city FL, Spring Hill -in.city FL, St Cloud -in.city FL, St Petersburg -in.city FL, Sun City Center -in.city FL, Sunny Isles Beach -in.city FL, Sunrise -in.city FL, Tallahassee -in.city FL, Tamarac -in.city FL, Tamiami -in.city FL, Tampa -in.city FL, The Hammocks -in.city FL, The Villages -in.city FL, Titusville -in.city FL, Town N Country -in.city FL, University -in.city FL, Venice -in.city FL, Wellington -in.city FL, Wesley Chapel -in.city FL, West Palm Beach -in.city FL, Weston -in.city FL, Winter Haven -in.city GA, Albany -in.city GA, Alpharetta -in.city GA, Athens-Clarke County Unified Government Balance -in.city GA, Atlanta -in.city GA, Augusta-Richmond County Consolidated Government Balance -in.city GA, Columbus -in.city GA, Dunwoody -in.city GA, East Point -in.city GA, Hinesville -in.city GA, Johns Creek -in.city GA, Mableton -in.city GA, Macon -in.city GA, Marietta -in.city GA, Newnan -in.city GA, North Atlanta -in.city GA, Rome -in.city GA, Roswell -in.city GA, Sandy Springs -in.city GA, Savannah -in.city GA, Smyrna -in.city GA, Valdosta -in.city GA, Warner Robins -in.city HI, East Honolulu -in.city HI, Hilo -in.city HI, Kailua -in.city HI, Urban Honolulu -in.city IA, Ames -in.city IA, Ankeny -in.city IA, Cedar Falls -in.city IA, Cedar Rapids -in.city IA, Council Bluffs -in.city IA, Davenport -in.city IA, Des Moines -in.city IA, Dubuque -in.city IA, Iowa City -in.city IA, Marion -in.city IA, Sioux City -in.city IA, Urbandale -in.city IA, Waterloo -in.city IA, West Des Moines -in.city ID, Boise City -in.city ID, Caldwell -in.city ID, Coeur Dalene -in.city ID, Idaho Falls -in.city ID, Meridian -in.city ID, Nampa -in.city ID, Pocatello -in.city ID, Twin Falls -in.city IL, Arlington Heights -in.city IL, Aurora -in.city IL, Belleville -in.city IL, Berwyn -in.city IL, Bloomington -in.city IL, Bolingbrook -in.city IL, Buffalo Grove -in.city IL, Calumet City -in.city IL, Carol Stream -in.city IL, Champaign -in.city IL, Chicago -in.city IL, Cicero -in.city IL, Crystal Lake -in.city IL, Decatur -in.city IL, Dekalb -in.city IL, Des Plaines -in.city IL, Downers Grove -in.city IL, Elgin -in.city IL, Elmhurst -in.city IL, Evanston -in.city IL, Glenview -in.city IL, Hoffman Estates -in.city IL, Joliet -in.city IL, Lombard -in.city IL, Moline -in.city IL, Mount Prospect -in.city IL, Naperville -in.city IL, Normal -in.city IL, Oak Lawn -in.city IL, Oak Park -in.city IL, Orland Park -in.city IL, Palatine -in.city IL, Peoria -in.city IL, Quincy -in.city IL, Rock Island -in.city IL, Rockford -in.city IL, Schaumburg -in.city IL, Skokie -in.city IL, Springfield -in.city IL, Tinley Park -in.city IL, Urbana -in.city IL, Waukegan -in.city IL, Wheaton -in.city IL, Wheeling -in.city IN, Anderson -in.city IN, Bloomington -in.city IN, Carmel -in.city IN, Columbus -in.city IN, Elkhart -in.city IN, Evansville -in.city IN, Fishers -in.city IN, Fort Wayne -in.city IN, Gary -in.city IN, Greenwood -in.city IN, Hammond -in.city IN, Indianapolis City Balance -in.city IN, Jeffersonville -in.city IN, Kokomo -in.city IN, Lafayette -in.city IN, Lawrence -in.city IN, Mishawaka -in.city IN, Muncie -in.city IN, New Albany -in.city IN, Noblesville -in.city IN, Portage -in.city IN, Richmond -in.city IN, South Bend -in.city IN, Terre Haute -in.city In another census Place -in.city KS, Hutchinson -in.city KS, Kansas City -in.city KS, Lawrence -in.city KS, Lenexa -in.city KS, Manhattan -in.city KS, Olathe -in.city KS, Overland Park -in.city KS, Salina -in.city KS, Shawnee -in.city KS, Topeka -in.city KS, Wichita -in.city KY, Bowling Green -in.city KY, Covington -in.city KY, Lexington-Fayette -in.city KY, Louisville Jefferson County Metro Government Balance -in.city KY, Owensboro -in.city LA, Alexandria -in.city LA, Baton Rouge -in.city LA, Bossier City -in.city LA, Kenner -in.city LA, Lafayette -in.city LA, Lake Charles -in.city LA, Metairie -in.city LA, Monroe -in.city LA, New Orleans -in.city LA, Shreveport -in.city MA, Arlington -in.city MA, Attleboro -in.city MA, Barnstable Town -in.city MA, Beverly -in.city MA, Boston -in.city MA, Brockton -in.city MA, Brookline -in.city MA, Cambridge -in.city MA, Chicopee -in.city MA, Everett -in.city MA, Fall River -in.city MA, Fitchburg -in.city MA, Framingham -in.city MA, Haverhill -in.city MA, Holyoke -in.city MA, Lawrence -in.city MA, Leominster -in.city MA, Lowell -in.city MA, Lynn -in.city MA, Malden -in.city MA, Marlborough -in.city MA, Medford -in.city MA, Methuen Town -in.city MA, New Bedford -in.city MA, Newton -in.city MA, Peabody -in.city MA, Pittsfield -in.city MA, Quincy -in.city MA, Revere -in.city MA, Salem -in.city MA, Somerville -in.city MA, Springfield -in.city MA, Taunton -in.city MA, Waltham -in.city MA, Watertown Town -in.city MA, Westfield -in.city MA, Weymouth Town -in.city MA, Woburn -in.city MA, Worcester -in.city MD, Annapolis -in.city MD, Aspen Hill -in.city MD, Baltimore -in.city MD, Bel Air South -in.city MD, Bethesda -in.city MD, Bowie -in.city MD, Catonsville -in.city MD, Columbia -in.city MD, Dundalk -in.city MD, Ellicott City -in.city MD, Essex -in.city MD, Frederick -in.city MD, Gaithersburg -in.city MD, Germantown -in.city MD, Glen Burnie -in.city MD, Hagerstown -in.city MD, North Bethesda -in.city MD, Ocean City -in.city MD, Odenton -in.city MD, Potomac -in.city MD, Rockville -in.city MD, Severn -in.city MD, Silver Spring -in.city MD, Towson -in.city MD, Waldorf -in.city MD, Wheaton -in.city MD, Woodlawn -in.city ME, Bangor -in.city ME, Lewiston -in.city ME, Portland -in.city MI, Ann Arbor -in.city MI, Battle Creek -in.city MI, Bay City -in.city MI, Dearborn -in.city MI, Dearborn Heights -in.city MI, Detroit -in.city MI, Farmington Hills -in.city MI, Flint -in.city MI, Grand Rapids -in.city MI, Jackson -in.city MI, Kalamazoo -in.city MI, Kentwood -in.city MI, Lansing -in.city MI, Lincoln Park -in.city MI, Livonia -in.city MI, Midland -in.city MI, Muskegon -in.city MI, Novi -in.city MI, Pontiac -in.city MI, Portage -in.city MI, Rochester Hills -in.city MI, Roseville -in.city MI, Royal Oak -in.city MI, Saginaw -in.city MI, Southfield -in.city MI, St Clair Shores -in.city MI, Sterling Heights -in.city MI, Taylor -in.city MI, Troy -in.city MI, Warren -in.city MI, Westland -in.city MI, Wyoming -in.city MN, Apple Valley -in.city MN, Blaine -in.city MN, Bloomington -in.city MN, Brooklyn Park -in.city MN, Burnsville -in.city MN, Coon Rapids -in.city MN, Duluth -in.city MN, Eagan -in.city MN, Eden Prairie -in.city MN, Edina -in.city MN, Lakeville -in.city MN, Mankato -in.city MN, Maple Grove -in.city MN, Maplewood -in.city MN, Minneapolis -in.city MN, Minnetonka -in.city MN, Moorhead -in.city MN, Plymouth -in.city MN, Richfield -in.city MN, Rochester -in.city MN, Roseville -in.city MN, St Cloud -in.city MN, St Louis Park -in.city MN, St Paul -in.city MN, Woodbury -in.city MO, Blue Springs -in.city MO, Cape Girardeau -in.city MO, Chesterfield -in.city MO, Columbia -in.city MO, Florissant -in.city MO, Independence -in.city MO, Jefferson City -in.city MO, Joplin -in.city MO, Kansas City -in.city MO, Lees Summit -in.city MO, Ofallon -in.city MO, Springfield -in.city MO, St Charles -in.city MO, St Joseph -in.city MO, St Louis -in.city MO, St Peters -in.city MO, University City -in.city MS, Biloxi -in.city MS, Gulfport -in.city MS, Hattiesburg -in.city MS, Jackson -in.city MS, Meridian -in.city MS, Southaven -in.city MS, Tupelo -in.city MT, Billings -in.city MT, Bozeman -in.city MT, Butte-Silver Bow Balance -in.city MT, Great Falls -in.city MT, Missoula -in.city NC, Asheville -in.city NC, Burlington -in.city NC, Cary -in.city NC, Chapel Hill -in.city NC, Charlotte -in.city NC, Concord -in.city NC, Durham -in.city NC, Fayetteville -in.city NC, Gastonia -in.city NC, Goldsboro -in.city NC, Greensboro -in.city NC, Greenville -in.city NC, Hickory -in.city NC, High Point -in.city NC, Huntersville -in.city NC, Jacksonville -in.city NC, Kannapolis -in.city NC, Raleigh -in.city NC, Rocky Mount -in.city NC, Wilmington -in.city NC, Wilson -in.city NC, Winston-Salem -in.city ND, Bismarck -in.city ND, Fargo -in.city ND, Grand Forks -in.city ND, Minot -in.city NE, Bellevue -in.city NE, Grand Island -in.city NE, Lincoln -in.city NE, Omaha -in.city NH, Concord -in.city NH, Manchester -in.city NH, Nashua -in.city NJ, Atlantic City -in.city NJ, Bayonne -in.city NJ, Camden -in.city NJ, Clifton -in.city NJ, East Orange -in.city NJ, Elizabeth -in.city NJ, Fort Lee -in.city NJ, Hackensack -in.city NJ, Hoboken -in.city NJ, Jersey City -in.city NJ, Linden -in.city NJ, New Brunswick -in.city NJ, Newark -in.city NJ, Ocean City -in.city NJ, Passaic -in.city NJ, Paterson -in.city NJ, Perth Amboy -in.city NJ, Plainfield -in.city NJ, Sayreville -in.city NJ, Toms River -in.city NJ, Trenton -in.city NJ, Union City -in.city NJ, Vineland -in.city NJ, West New York -in.city NM, Albuquerque -in.city NM, Clovis -in.city NM, Farmington -in.city NM, Las Cruces -in.city NM, Rio Rancho -in.city NM, Roswell -in.city NM, Santa Fe -in.city NM, South Valley -in.city NV, Carson City -in.city NV, Enterprise -in.city NV, Henderson -in.city NV, Las Vegas -in.city NV, North Las Vegas -in.city NV, Pahrump -in.city NV, Paradise -in.city NV, Reno -in.city NV, Sparks -in.city NV, Spring Valley -in.city NV, Sunrise Manor -in.city NV, Whitney -in.city NY, Albany -in.city NY, Binghamton -in.city NY, Brighton -in.city NY, Buffalo -in.city NY, Cheektowaga -in.city NY, Coram -in.city NY, Hempstead -in.city NY, Irondequoit -in.city NY, Levittown -in.city NY, Long Beach -in.city NY, Mount Vernon -in.city NY, New Rochelle -in.city NY, New York -in.city NY, Niagara Falls -in.city NY, Rochester -in.city NY, Rome -in.city NY, Schenectady -in.city NY, Syracuse -in.city NY, Tonawanda -in.city NY, Troy -in.city NY, Utica -in.city NY, West Seneca -in.city NY, White Plains -in.city NY, Yonkers -in.city Not in a census Place -in.city OH, Akron -in.city OH, Beavercreek -in.city OH, Boardman -in.city OH, Canton -in.city OH, Cincinnati -in.city OH, Cleveland -in.city OH, Cleveland Heights -in.city OH, Columbus -in.city OH, Cuyahoga Falls -in.city OH, Dayton -in.city OH, Delaware -in.city OH, Dublin -in.city OH, Elyria -in.city OH, Euclid -in.city OH, Fairborn -in.city OH, Fairfield -in.city OH, Findlay -in.city OH, Grove City -in.city OH, Hamilton -in.city OH, Huber Heights -in.city OH, Kettering -in.city OH, Lakewood -in.city OH, Lancaster -in.city OH, Lima -in.city OH, Lorain -in.city OH, Mansfield -in.city OH, Marion -in.city OH, Mentor -in.city OH, Middletown -in.city OH, Newark -in.city OH, Parma -in.city OH, Springfield -in.city OH, Stow -in.city OH, Strongsville -in.city OH, Toledo -in.city OH, Warren -in.city OH, Youngstown -in.city OK, Bartlesville -in.city OK, Broken Arrow -in.city OK, Edmond -in.city OK, Enid -in.city OK, Lawton -in.city OK, Midwest City -in.city OK, Moore -in.city OK, Muskogee -in.city OK, Norman -in.city OK, Oklahoma City -in.city OK, Stillwater -in.city OK, Tulsa -in.city OR, Albany -in.city OR, Aloha -in.city OR, Beaverton -in.city OR, Bend -in.city OR, Corvallis -in.city OR, Eugene -in.city OR, Grants Pass -in.city OR, Gresham -in.city OR, Hillsboro -in.city OR, Lake Oswego -in.city OR, Medford -in.city OR, Portland -in.city OR, Salem -in.city OR, Springfield -in.city OR, Tigard -in.city PA, Allentown -in.city PA, Altoona -in.city PA, Bethlehem -in.city PA, Erie -in.city PA, Harrisburg -in.city PA, Lancaster -in.city PA, Levittown -in.city PA, Philadelphia -in.city PA, Pittsburgh -in.city PA, Reading -in.city PA, Scranton -in.city PA, Wilkes-Barre -in.city PA, York -in.city RI, Cranston -in.city RI, East Providence -in.city RI, Pawtucket -in.city RI, Providence -in.city RI, Warwick -in.city RI, Woonsocket -in.city SC, Charleston -in.city SC, Columbia -in.city SC, Florence -in.city SC, Goose Creek -in.city SC, Greenville -in.city SC, Hilton Head Island -in.city SC, Mount Pleasant -in.city SC, Myrtle Beach -in.city SC, North Charleston -in.city SC, North Myrtle Beach -in.city SC, Rock Hill -in.city SC, Spartanburg -in.city SC, Summerville -in.city SC, Sumter -in.city SD, Rapid City -in.city SD, Sioux Falls -in.city TN, Bartlett -in.city TN, Chattanooga -in.city TN, Clarksville -in.city TN, Cleveland -in.city TN, Collierville -in.city TN, Columbia -in.city TN, Franklin -in.city TN, Germantown -in.city TN, Hendersonville -in.city TN, Jackson -in.city TN, Johnson City -in.city TN, Kingsport -in.city TN, Knoxville -in.city TN, Memphis -in.city TN, Murfreesboro -in.city TN, Nashville-Davidson Metropolitan Government Balance -in.city TN, Smyrna -in.city TX, Abilene -in.city TX, Allen -in.city TX, Amarillo -in.city TX, Arlington -in.city TX, Atascocita -in.city TX, Austin -in.city TX, Baytown -in.city TX, Beaumont -in.city TX, Bedford -in.city TX, Brownsville -in.city TX, Bryan -in.city TX, Burleson -in.city TX, Carrollton -in.city TX, Cedar Hill -in.city TX, Cedar Park -in.city TX, College Station -in.city TX, Conroe -in.city TX, Coppell -in.city TX, Corpus Christi -in.city TX, Dallas -in.city TX, Denton -in.city TX, Desoto -in.city TX, Edinburg -in.city TX, El Paso -in.city TX, Euless -in.city TX, Flower Mound -in.city TX, Fort Worth -in.city TX, Frisco -in.city TX, Galveston -in.city TX, Garland -in.city TX, Georgetown -in.city TX, Grand Prairie -in.city TX, Grapevine -in.city TX, Haltom City -in.city TX, Harlingen -in.city TX, Houston -in.city TX, Hurst -in.city TX, Irving -in.city TX, Keller -in.city TX, Killeen -in.city TX, Laredo -in.city TX, League City -in.city TX, Lewisville -in.city TX, Longview -in.city TX, Lubbock -in.city TX, Lufkin -in.city TX, Mansfield -in.city TX, Mcallen -in.city TX, Mckinney -in.city TX, Mesquite -in.city TX, Midland -in.city TX, Mission -in.city TX, Missouri City -in.city TX, New Braunfels -in.city TX, North Richland Hills -in.city TX, Odessa -in.city TX, Pasadena -in.city TX, Pearland -in.city TX, Pflugerville -in.city TX, Pharr -in.city TX, Plano -in.city TX, Port Arthur -in.city TX, Richardson -in.city TX, Round Rock -in.city TX, Rowlett -in.city TX, San Angelo -in.city TX, San Antonio -in.city TX, San Marcos -in.city TX, Sherman -in.city TX, Spring -in.city TX, Sugar Land -in.city TX, Temple -in.city TX, Texarkana -in.city TX, Texas City -in.city TX, The Colony -in.city TX, The Woodlands -in.city TX, Tyler -in.city TX, Victoria -in.city TX, Waco -in.city TX, Wichita Falls -in.city TX, Wylie -in.city UT, Layton -in.city UT, Lehi -in.city UT, Logan -in.city UT, Millcreek -in.city UT, Murray -in.city UT, Ogden -in.city UT, Orem -in.city UT, Provo -in.city UT, Salt Lake City -in.city UT, Sandy -in.city UT, South Jordan -in.city UT, St George -in.city UT, Taylorsville -in.city UT, West Jordan -in.city UT, West Valley City -in.city VA, Alexandria -in.city VA, Arlington -in.city VA, Ashburn -in.city VA, Blacksburg -in.city VA, Centreville -in.city VA, Charlottesville -in.city VA, Chesapeake -in.city VA, Dale City -in.city VA, Danville -in.city VA, Hampton -in.city VA, Harrisonburg -in.city VA, Lake Ridge -in.city VA, Leesburg -in.city VA, Lynchburg -in.city VA, Mclean -in.city VA, Mechanicsville -in.city VA, Newport News -in.city VA, Norfolk -in.city VA, Petersburg -in.city VA, Portsmouth -in.city VA, Reston -in.city VA, Richmond -in.city VA, Roanoke -in.city VA, Suffolk -in.city VA, Tuckahoe -in.city VA, Virginia Beach -in.city VT, Burlington -in.city WA, Auburn -in.city WA, Bellevue -in.city WA, Bellingham -in.city WA, Bremerton -in.city WA, Edmonds -in.city WA, Everett -in.city WA, Federal Way -in.city WA, Kennewick -in.city WA, Kent -in.city WA, Kirkland -in.city WA, Lacey -in.city WA, Lakewood -in.city WA, Longview -in.city WA, Marysville -in.city WA, Olympia -in.city WA, Pasco -in.city WA, Puyallup -in.city WA, Redmond -in.city WA, Renton -in.city WA, Richland -in.city WA, Sammamish -in.city WA, Seattle -in.city WA, Shoreline -in.city WA, South Hill -in.city WA, Spokane -in.city WA, Spokane Valley -in.city WA, Tacoma -in.city WA, Vancouver -in.city WA, Yakima -in.city WI, Appleton -in.city WI, Beloit -in.city WI, Eau Claire -in.city WI, Fond Du Lac -in.city WI, Green Bay -in.city WI, Greenfield -in.city WI, Janesville -in.city WI, Kenosha -in.city WI, La Crosse -in.city WI, Madison -in.city WI, Manitowoc -in.city WI, Menomonee Falls -in.city WI, Milwaukee -in.city WI, New Berlin -in.city WI, Oshkosh -in.city WI, Racine -in.city WI, Sheboygan -in.city WI, Waukesha -in.city WI, Wausau -in.city WI, Wauwatosa -in.city WI, West Allis -in.city WV, Charleston -in.city WV, Huntington -in.city WV, Parkersburg -in.city WY, Casper -in.city WY, Cheyenne -in.clothes_dryer Electric -in.clothes_dryer Gas -in.clothes_dryer None -in.clothes_dryer Propane -in.clothes_dryer_usage_level 100% Usage -in.clothes_dryer_usage_level 120% Usage -in.clothes_dryer_usage_level 80% Usage -in.clothes_washer EnergyStar -in.clothes_washer None -in.clothes_washer Standard -in.clothes_washer_presence None -in.clothes_washer_presence Yes -in.clothes_washer_usage_level 100% Usage -in.clothes_washer_usage_level 120% Usage -in.clothes_washer_usage_level 80% Usage -in.cooking_range Electric Induction -in.cooking_range Electric Resistance -in.cooking_range Gas -in.cooking_range None -in.cooking_range Propane -in.cooking_range_usage_level 100% Usage -in.cooking_range_usage_level 120% Usage -in.cooking_range_usage_level 80% Usage -in.cooling_setpoint 60F -in.cooling_setpoint 62F -in.cooling_setpoint 65F -in.cooling_setpoint 67F -in.cooling_setpoint 68F -in.cooling_setpoint 70F -in.cooling_setpoint 72F -in.cooling_setpoint 75F -in.cooling_setpoint 76F -in.cooling_setpoint 78F -in.cooling_setpoint 80F -in.cooling_setpoint_has_offset No -in.cooling_setpoint_has_offset Yes -in.cooling_setpoint_offset_magnitude 0F -in.cooling_setpoint_offset_magnitude 2F -in.cooling_setpoint_offset_magnitude 5F -in.cooling_setpoint_offset_magnitude 9F -in.cooling_setpoint_offset_period Day Setup -in.cooling_setpoint_offset_period Day Setup +1h -in.cooling_setpoint_offset_period Day Setup +2h -in.cooling_setpoint_offset_period Day Setup +3h -in.cooling_setpoint_offset_period Day Setup +4h -in.cooling_setpoint_offset_period Day Setup +5h -in.cooling_setpoint_offset_period Day Setup -1h -in.cooling_setpoint_offset_period Day Setup -2h -in.cooling_setpoint_offset_period Day Setup -3h -in.cooling_setpoint_offset_period Day Setup -4h -in.cooling_setpoint_offset_period Day Setup -5h -in.cooling_setpoint_offset_period Day Setup and Night Setback -in.cooling_setpoint_offset_period Day Setup and Night Setback +1h -in.cooling_setpoint_offset_period Day Setup and Night Setback +2h -in.cooling_setpoint_offset_period Day Setup and Night Setback +3h -in.cooling_setpoint_offset_period Day Setup and Night Setback +4h -in.cooling_setpoint_offset_period Day Setup and Night Setback +5h -in.cooling_setpoint_offset_period Day Setup and Night Setback -1h -in.cooling_setpoint_offset_period Day Setup and Night Setback -2h -in.cooling_setpoint_offset_period Day Setup and Night Setback -3h -in.cooling_setpoint_offset_period Day Setup and Night Setback -4h -in.cooling_setpoint_offset_period Day Setup and Night Setback -5h -in.cooling_setpoint_offset_period Day and Night Setup -in.cooling_setpoint_offset_period Day and Night Setup +1h -in.cooling_setpoint_offset_period Day and Night Setup +2h -in.cooling_setpoint_offset_period Day and Night Setup +3h -in.cooling_setpoint_offset_period Day and Night Setup +4h -in.cooling_setpoint_offset_period Day and Night Setup +5h -in.cooling_setpoint_offset_period Day and Night Setup -1h -in.cooling_setpoint_offset_period Day and Night Setup -2h -in.cooling_setpoint_offset_period Day and Night Setup -3h -in.cooling_setpoint_offset_period Day and Night Setup -4h -in.cooling_setpoint_offset_period Day and Night Setup -5h -in.cooling_setpoint_offset_period Night Setback -in.cooling_setpoint_offset_period Night Setback +1h -in.cooling_setpoint_offset_period Night Setback +2h -in.cooling_setpoint_offset_period Night Setback +3h -in.cooling_setpoint_offset_period Night Setback +4h -in.cooling_setpoint_offset_period Night Setback +5h -in.cooling_setpoint_offset_period Night Setback -1h -in.cooling_setpoint_offset_period Night Setback -2h -in.cooling_setpoint_offset_period Night Setback -3h -in.cooling_setpoint_offset_period Night Setback -4h -in.cooling_setpoint_offset_period Night Setback -5h -in.cooling_setpoint_offset_period Night Setup -in.cooling_setpoint_offset_period Night Setup +1h -in.cooling_setpoint_offset_period Night Setup +2h -in.cooling_setpoint_offset_period Night Setup +3h -in.cooling_setpoint_offset_period Night Setup +4h -in.cooling_setpoint_offset_period Night Setup +5h -in.cooling_setpoint_offset_period Night Setup -1h -in.cooling_setpoint_offset_period Night Setup -2h -in.cooling_setpoint_offset_period Night Setup -3h -in.cooling_setpoint_offset_period Night Setup -4h -in.cooling_setpoint_offset_period Night Setup -5h -in.cooling_setpoint_offset_period None -in.cooling_unavailable_days 1 day -in.cooling_unavailable_days 1 month -in.cooling_unavailable_days 1 week -in.cooling_unavailable_days 2 weeks -in.cooling_unavailable_days 3 days -in.cooling_unavailable_days 3 months -in.cooling_unavailable_days Never -in.cooling_unavailable_days Year round -in.cooling_unavailable_period Jul 21 - Jul 21 -in.cooling_unavailable_period Never -in.corridor Double-Loaded Interior -in.corridor Not Applicable -in.county AK, Anchorage Municipality -in.county AK, Bethel Census Area -in.county AK, Fairbanks North Star Borough -in.county AK, Juneau City and Borough -in.county AK, Kenai Peninsula Borough -in.county AK, Ketchikan Gateway Borough -in.county AK, Kodiak Island Borough -in.county AK, Matanuska-Susitna Borough -in.county AK, Valdez-Cordova Census Area -in.county AL, Autauga County -in.county AL, Baldwin County -in.county AL, Barbour County -in.county AL, Bibb County -in.county AL, Blount County -in.county AL, Butler County -in.county AL, Calhoun County -in.county AL, Chambers County -in.county AL, Cherokee County -in.county AL, Chilton County -in.county AL, Choctaw County -in.county AL, Clarke County -in.county AL, Clay County -in.county AL, Cleburne County -in.county AL, Coffee County -in.county AL, Colbert County -in.county AL, Conecuh County -in.county AL, Covington County -in.county AL, Crenshaw County -in.county AL, Cullman County -in.county AL, Dale County -in.county AL, Dallas County -in.county AL, DeKalb County -in.county AL, Elmore County -in.county AL, Escambia County -in.county AL, Etowah County -in.county AL, Fayette County -in.county AL, Franklin County -in.county AL, Geneva County -in.county AL, Hale County -in.county AL, Henry County -in.county AL, Houston County -in.county AL, Jackson County -in.county AL, Jefferson County -in.county AL, Lamar County -in.county AL, Lauderdale County -in.county AL, Lawrence County -in.county AL, Lee County -in.county AL, Limestone County -in.county AL, Macon County -in.county AL, Madison County -in.county AL, Marengo County -in.county AL, Marion County -in.county AL, Marshall County -in.county AL, Mobile County -in.county AL, Monroe County -in.county AL, Montgomery County -in.county AL, Morgan County -in.county AL, Pickens County -in.county AL, Pike County -in.county AL, Randolph County -in.county AL, Russell County -in.county AL, Shelby County -in.county AL, St. Clair County -in.county AL, Sumter County -in.county AL, Talladega County -in.county AL, Tallapoosa County -in.county AL, Tuscaloosa County -in.county AL, Walker County -in.county AL, Washington County -in.county AL, Winston County -in.county AR, Ashley County -in.county AR, Baxter County -in.county AR, Benton County -in.county AR, Boone County -in.county AR, Carroll County -in.county AR, Clark County -in.county AR, Clay County -in.county AR, Cleburne County -in.county AR, Columbia County -in.county AR, Conway County -in.county AR, Craighead County -in.county AR, Crawford County -in.county AR, Crittenden County -in.county AR, Cross County -in.county AR, Drew County -in.county AR, Faulkner County -in.county AR, Franklin County -in.county AR, Fulton County -in.county AR, Garland County -in.county AR, Grant County -in.county AR, Greene County -in.county AR, Hempstead County -in.county AR, Hot Spring County -in.county AR, Independence County -in.county AR, Izard County -in.county AR, Jackson County -in.county AR, Jefferson County -in.county AR, Johnson County -in.county AR, Lawrence County -in.county AR, Logan County -in.county AR, Lonoke County -in.county AR, Madison County -in.county AR, Marion County -in.county AR, Miller County -in.county AR, Mississippi County -in.county AR, Ouachita County -in.county AR, Phillips County -in.county AR, Poinsett County -in.county AR, Polk County -in.county AR, Pope County -in.county AR, Pulaski County -in.county AR, Randolph County -in.county AR, Saline County -in.county AR, Sebastian County -in.county AR, Sevier County -in.county AR, Sharp County -in.county AR, St. Francis County -in.county AR, Stone County -in.county AR, Union County -in.county AR, Van Buren County -in.county AR, Washington County -in.county AR, White County -in.county AR, Yell County -in.county AZ, Apache County -in.county AZ, Cochise County -in.county AZ, Coconino County -in.county AZ, Gila County -in.county AZ, Graham County -in.county AZ, La Paz County -in.county AZ, Maricopa County -in.county AZ, Mohave County -in.county AZ, Navajo County -in.county AZ, Pima County -in.county AZ, Pinal County -in.county AZ, Santa Cruz County -in.county AZ, Yavapai County -in.county AZ, Yuma County -in.county CA, Alameda County -in.county CA, Amador County -in.county CA, Butte County -in.county CA, Calaveras County -in.county CA, Colusa County -in.county CA, Contra Costa County -in.county CA, Del Norte County -in.county CA, El Dorado County -in.county CA, Fresno County -in.county CA, Glenn County -in.county CA, Humboldt County -in.county CA, Imperial County -in.county CA, Inyo County -in.county CA, Kern County -in.county CA, Kings County -in.county CA, Lake County -in.county CA, Lassen County -in.county CA, Los Angeles County -in.county CA, Madera County -in.county CA, Marin County -in.county CA, Mariposa County -in.county CA, Mendocino County -in.county CA, Merced County -in.county CA, Mono County -in.county CA, Monterey County -in.county CA, Napa County -in.county CA, Nevada County -in.county CA, Orange County -in.county CA, Placer County -in.county CA, Plumas County -in.county CA, Riverside County -in.county CA, Sacramento County -in.county CA, San Benito County -in.county CA, San Bernardino County -in.county CA, San Diego County -in.county CA, San Francisco County -in.county CA, San Joaquin County -in.county CA, San Luis Obispo County -in.county CA, San Mateo County -in.county CA, Santa Barbara County -in.county CA, Santa Clara County -in.county CA, Santa Cruz County -in.county CA, Shasta County -in.county CA, Siskiyou County -in.county CA, Solano County -in.county CA, Sonoma County -in.county CA, Stanislaus County -in.county CA, Sutter County -in.county CA, Tehama County -in.county CA, Trinity County -in.county CA, Tulare County -in.county CA, Tuolumne County -in.county CA, Ventura County -in.county CA, Yolo County -in.county CA, Yuba County -in.county CO, Adams County -in.county CO, Alamosa County -in.county CO, Arapahoe County -in.county CO, Archuleta County -in.county CO, Boulder County -in.county CO, Broomfield County -in.county CO, Chaffee County -in.county CO, Delta County -in.county CO, Denver County -in.county CO, Douglas County -in.county CO, Eagle County -in.county CO, El Paso County -in.county CO, Elbert County -in.county CO, Fremont County -in.county CO, Garfield County -in.county CO, Grand County -in.county CO, Gunnison County -in.county CO, Jefferson County -in.county CO, La Plata County -in.county CO, Larimer County -in.county CO, Las Animas County -in.county CO, Logan County -in.county CO, Mesa County -in.county CO, Moffat County -in.county CO, Montezuma County -in.county CO, Montrose County -in.county CO, Morgan County -in.county CO, Otero County -in.county CO, Park County -in.county CO, Pitkin County -in.county CO, Pueblo County -in.county CO, Rio Grande County -in.county CO, Routt County -in.county CO, San Miguel County -in.county CO, Summit County -in.county CO, Teller County -in.county CO, Weld County -in.county CT, Fairfield County -in.county CT, Hartford County -in.county CT, Litchfield County -in.county CT, Middlesex County -in.county CT, New Haven County -in.county CT, New London County -in.county CT, Tolland County -in.county CT, Windham County -in.county DC, District of Columbia -in.county DE, Kent County -in.county DE, New Castle County -in.county DE, Sussex County -in.county FL, Alachua County -in.county FL, Baker County -in.county FL, Bay County -in.county FL, Bradford County -in.county FL, Brevard County -in.county FL, Broward County -in.county FL, Charlotte County -in.county FL, Citrus County -in.county FL, Clay County -in.county FL, Collier County -in.county FL, Columbia County -in.county FL, DeSoto County -in.county FL, Dixie County -in.county FL, Duval County -in.county FL, Escambia County -in.county FL, Flagler County -in.county FL, Franklin County -in.county FL, Gadsden County -in.county FL, Gilchrist County -in.county FL, Gulf County -in.county FL, Hardee County -in.county FL, Hendry County -in.county FL, Hernando County -in.county FL, Highlands County -in.county FL, Hillsborough County -in.county FL, Holmes County -in.county FL, Indian River County -in.county FL, Jackson County -in.county FL, Lake County -in.county FL, Lee County -in.county FL, Leon County -in.county FL, Levy County -in.county FL, Madison County -in.county FL, Manatee County -in.county FL, Marion County -in.county FL, Martin County -in.county FL, Miami-Dade County -in.county FL, Monroe County -in.county FL, Nassau County -in.county FL, Okaloosa County -in.county FL, Okeechobee County -in.county FL, Orange County -in.county FL, Osceola County -in.county FL, Palm Beach County -in.county FL, Pasco County -in.county FL, Pinellas County -in.county FL, Polk County -in.county FL, Putnam County -in.county FL, Santa Rosa County -in.county FL, Sarasota County -in.county FL, Seminole County -in.county FL, St. Johns County -in.county FL, St. Lucie County -in.county FL, Sumter County -in.county FL, Suwannee County -in.county FL, Taylor County -in.county FL, Volusia County -in.county FL, Wakulla County -in.county FL, Walton County -in.county FL, Washington County -in.county GA, Appling County -in.county GA, Baldwin County -in.county GA, Banks County -in.county GA, Barrow County -in.county GA, Bartow County -in.county GA, Ben Hill County -in.county GA, Berrien County -in.county GA, Bibb County -in.county GA, Brantley County -in.county GA, Brooks County -in.county GA, Bryan County -in.county GA, Bulloch County -in.county GA, Burke County -in.county GA, Butts County -in.county GA, Camden County -in.county GA, Carroll County -in.county GA, Catoosa County -in.county GA, Chatham County -in.county GA, Chattooga County -in.county GA, Cherokee County -in.county GA, Clarke County -in.county GA, Clayton County -in.county GA, Cobb County -in.county GA, Coffee County -in.county GA, Colquitt County -in.county GA, Columbia County -in.county GA, Cook County -in.county GA, Coweta County -in.county GA, Crisp County -in.county GA, Dade County -in.county GA, Dawson County -in.county GA, DeKalb County -in.county GA, Decatur County -in.county GA, Dodge County -in.county GA, Dougherty County -in.county GA, Douglas County -in.county GA, Effingham County -in.county GA, Elbert County -in.county GA, Emanuel County -in.county GA, Fannin County -in.county GA, Fayette County -in.county GA, Floyd County -in.county GA, Forsyth County -in.county GA, Franklin County -in.county GA, Fulton County -in.county GA, Gilmer County -in.county GA, Glynn County -in.county GA, Gordon County -in.county GA, Grady County -in.county GA, Greene County -in.county GA, Gwinnett County -in.county GA, Habersham County -in.county GA, Hall County -in.county GA, Haralson County -in.county GA, Harris County -in.county GA, Hart County -in.county GA, Henry County -in.county GA, Houston County -in.county GA, Jackson County -in.county GA, Jefferson County -in.county GA, Jones County -in.county GA, Lamar County -in.county GA, Laurens County -in.county GA, Lee County -in.county GA, Liberty County -in.county GA, Lowndes County -in.county GA, Lumpkin County -in.county GA, Madison County -in.county GA, McDuffie County -in.county GA, McIntosh County -in.county GA, Meriwether County -in.county GA, Mitchell County -in.county GA, Monroe County -in.county GA, Morgan County -in.county GA, Murray County -in.county GA, Muscogee County -in.county GA, Newton County -in.county GA, Oconee County -in.county GA, Paulding County -in.county GA, Peach County -in.county GA, Pickens County -in.county GA, Pierce County -in.county GA, Pike County -in.county GA, Polk County -in.county GA, Putnam County -in.county GA, Rabun County -in.county GA, Richmond County -in.county GA, Rockdale County -in.county GA, Screven County -in.county GA, Spalding County -in.county GA, Stephens County -in.county GA, Sumter County -in.county GA, Tattnall County -in.county GA, Telfair County -in.county GA, Thomas County -in.county GA, Tift County -in.county GA, Toombs County -in.county GA, Towns County -in.county GA, Troup County -in.county GA, Union County -in.county GA, Upson County -in.county GA, Walker County -in.county GA, Walton County -in.county GA, Ware County -in.county GA, Washington County -in.county GA, Wayne County -in.county GA, White County -in.county GA, Whitfield County -in.county GA, Worth County -in.county HI, Hawaii County -in.county HI, Honolulu County -in.county HI, Kauai County -in.county HI, Maui County -in.county IA, Allamakee County -in.county IA, Appanoose County -in.county IA, Benton County -in.county IA, Black Hawk County -in.county IA, Boone County -in.county IA, Bremer County -in.county IA, Buchanan County -in.county IA, Buena Vista County -in.county IA, Butler County -in.county IA, Carroll County -in.county IA, Cass County -in.county IA, Cedar County -in.county IA, Cerro Gordo County -in.county IA, Clay County -in.county IA, Clayton County -in.county IA, Clinton County -in.county IA, Crawford County -in.county IA, Dallas County -in.county IA, Delaware County -in.county IA, Des Moines County -in.county IA, Dickinson County -in.county IA, Dubuque County -in.county IA, Fayette County -in.county IA, Floyd County -in.county IA, Hamilton County -in.county IA, Hardin County -in.county IA, Harrison County -in.county IA, Henry County -in.county IA, Iowa County -in.county IA, Jackson County -in.county IA, Jasper County -in.county IA, Jefferson County -in.county IA, Johnson County -in.county IA, Jones County -in.county IA, Kossuth County -in.county IA, Lee County -in.county IA, Linn County -in.county IA, Madison County -in.county IA, Mahaska County -in.county IA, Marion County -in.county IA, Marshall County -in.county IA, Muscatine County -in.county IA, O'Brien County -in.county IA, Page County -in.county IA, Plymouth County -in.county IA, Polk County -in.county IA, Pottawattamie County -in.county IA, Poweshiek County -in.county IA, Scott County -in.county IA, Sioux County -in.county IA, Story County -in.county IA, Tama County -in.county IA, Wapello County -in.county IA, Warren County -in.county IA, Washington County -in.county IA, Webster County -in.county IA, Winneshiek County -in.county IA, Woodbury County -in.county ID, Ada County -in.county ID, Bannock County -in.county ID, Bingham County -in.county ID, Blaine County -in.county ID, Bonner County -in.county ID, Bonneville County -in.county ID, Canyon County -in.county ID, Cassia County -in.county ID, Elmore County -in.county ID, Fremont County -in.county ID, Gem County -in.county ID, Gooding County -in.county ID, Idaho County -in.county ID, Jefferson County -in.county ID, Jerome County -in.county ID, Kootenai County -in.county ID, Latah County -in.county ID, Madison County -in.county ID, Minidoka County -in.county ID, Nez Perce County -in.county ID, Payette County -in.county ID, Shoshone County -in.county ID, Teton County -in.county ID, Twin Falls County -in.county ID, Valley County -in.county IL, Adams County -in.county IL, Bond County -in.county IL, Boone County -in.county IL, Bureau County -in.county IL, Carroll County -in.county IL, Champaign County -in.county IL, Christian County -in.county IL, Clark County -in.county IL, Clinton County -in.county IL, Coles County -in.county IL, Cook County -in.county IL, Crawford County -in.county IL, De Witt County -in.county IL, DeKalb County -in.county IL, Douglas County -in.county IL, DuPage County -in.county IL, Edgar County -in.county IL, Effingham County -in.county IL, Fayette County -in.county IL, Franklin County -in.county IL, Fulton County -in.county IL, Grundy County -in.county IL, Hancock County -in.county IL, Henry County -in.county IL, Iroquois County -in.county IL, Jackson County -in.county IL, Jefferson County -in.county IL, Jersey County -in.county IL, Jo Daviess County -in.county IL, Kane County -in.county IL, Kankakee County -in.county IL, Kendall County -in.county IL, Knox County -in.county IL, LaSalle County -in.county IL, Lake County -in.county IL, Lee County -in.county IL, Livingston County -in.county IL, Logan County -in.county IL, Macon County -in.county IL, Macoupin County -in.county IL, Madison County -in.county IL, Marion County -in.county IL, Mason County -in.county IL, Massac County -in.county IL, McDonough County -in.county IL, McHenry County -in.county IL, McLean County -in.county IL, Mercer County -in.county IL, Monroe County -in.county IL, Montgomery County -in.county IL, Morgan County -in.county IL, Ogle County -in.county IL, Peoria County -in.county IL, Perry County -in.county IL, Piatt County -in.county IL, Pike County -in.county IL, Randolph County -in.county IL, Richland County -in.county IL, Rock Island County -in.county IL, Saline County -in.county IL, Sangamon County -in.county IL, Shelby County -in.county IL, St. Clair County -in.county IL, Stephenson County -in.county IL, Tazewell County -in.county IL, Union County -in.county IL, Vermilion County -in.county IL, Warren County -in.county IL, Washington County -in.county IL, Wayne County -in.county IL, White County -in.county IL, Whiteside County -in.county IL, Will County -in.county IL, Williamson County -in.county IL, Winnebago County -in.county IL, Woodford County -in.county IN, Adams County -in.county IN, Allen County -in.county IN, Bartholomew County -in.county IN, Boone County -in.county IN, Brown County -in.county IN, Carroll County -in.county IN, Cass County -in.county IN, Clark County -in.county IN, Clay County -in.county IN, Clinton County -in.county IN, Daviess County -in.county IN, DeKalb County -in.county IN, Dearborn County -in.county IN, Decatur County -in.county IN, Delaware County -in.county IN, Dubois County -in.county IN, Elkhart County -in.county IN, Fayette County -in.county IN, Floyd County -in.county IN, Fountain County -in.county IN, Franklin County -in.county IN, Fulton County -in.county IN, Gibson County -in.county IN, Grant County -in.county IN, Greene County -in.county IN, Hamilton County -in.county IN, Hancock County -in.county IN, Harrison County -in.county IN, Hendricks County -in.county IN, Henry County -in.county IN, Howard County -in.county IN, Huntington County -in.county IN, Jackson County -in.county IN, Jasper County -in.county IN, Jay County -in.county IN, Jefferson County -in.county IN, Jennings County -in.county IN, Johnson County -in.county IN, Knox County -in.county IN, Kosciusko County -in.county IN, LaGrange County -in.county IN, LaPorte County -in.county IN, Lake County -in.county IN, Lawrence County -in.county IN, Madison County -in.county IN, Marion County -in.county IN, Marshall County -in.county IN, Miami County -in.county IN, Monroe County -in.county IN, Montgomery County -in.county IN, Morgan County -in.county IN, Noble County -in.county IN, Orange County -in.county IN, Owen County -in.county IN, Parke County -in.county IN, Perry County -in.county IN, Porter County -in.county IN, Posey County -in.county IN, Putnam County -in.county IN, Randolph County -in.county IN, Ripley County -in.county IN, Rush County -in.county IN, Scott County -in.county IN, Shelby County -in.county IN, Spencer County -in.county IN, St. Joseph County -in.county IN, Starke County -in.county IN, Steuben County -in.county IN, Sullivan County -in.county IN, Tippecanoe County -in.county IN, Tipton County -in.county IN, Vanderburgh County -in.county IN, Vermillion County -in.county IN, Vigo County -in.county IN, Wabash County -in.county IN, Warrick County -in.county IN, Washington County -in.county IN, Wayne County -in.county IN, Wells County -in.county IN, White County -in.county IN, Whitley County -in.county KS, Atchison County -in.county KS, Barton County -in.county KS, Bourbon County -in.county KS, Butler County -in.county KS, Cherokee County -in.county KS, Cowley County -in.county KS, Crawford County -in.county KS, Dickinson County -in.county KS, Douglas County -in.county KS, Ellis County -in.county KS, Finney County -in.county KS, Ford County -in.county KS, Franklin County -in.county KS, Geary County -in.county KS, Harvey County -in.county KS, Jefferson County -in.county KS, Johnson County -in.county KS, Labette County -in.county KS, Leavenworth County -in.county KS, Lyon County -in.county KS, McPherson County -in.county KS, Miami County -in.county KS, Montgomery County -in.county KS, Neosho County -in.county KS, Osage County -in.county KS, Pottawatomie County -in.county KS, Reno County -in.county KS, Riley County -in.county KS, Saline County -in.county KS, Sedgwick County -in.county KS, Seward County -in.county KS, Shawnee County -in.county KS, Sumner County -in.county KS, Wyandotte County -in.county KY, Adair County -in.county KY, Allen County -in.county KY, Anderson County -in.county KY, Barren County -in.county KY, Bell County -in.county KY, Boone County -in.county KY, Bourbon County -in.county KY, Boyd County -in.county KY, Boyle County -in.county KY, Breckinridge County -in.county KY, Bullitt County -in.county KY, Calloway County -in.county KY, Campbell County -in.county KY, Carter County -in.county KY, Casey County -in.county KY, Christian County -in.county KY, Clark County -in.county KY, Clay County -in.county KY, Daviess County -in.county KY, Estill County -in.county KY, Fayette County -in.county KY, Fleming County -in.county KY, Floyd County -in.county KY, Franklin County -in.county KY, Garrard County -in.county KY, Grant County -in.county KY, Graves County -in.county KY, Grayson County -in.county KY, Greenup County -in.county KY, Hardin County -in.county KY, Harlan County -in.county KY, Harrison County -in.county KY, Hart County -in.county KY, Henderson County -in.county KY, Henry County -in.county KY, Hopkins County -in.county KY, Jefferson County -in.county KY, Jessamine County -in.county KY, Johnson County -in.county KY, Kenton County -in.county KY, Knott County -in.county KY, Knox County -in.county KY, Laurel County -in.county KY, Lawrence County -in.county KY, Letcher County -in.county KY, Lincoln County -in.county KY, Logan County -in.county KY, Madison County -in.county KY, Marion County -in.county KY, Marshall County -in.county KY, Mason County -in.county KY, McCracken County -in.county KY, McCreary County -in.county KY, Meade County -in.county KY, Mercer County -in.county KY, Montgomery County -in.county KY, Muhlenberg County -in.county KY, Nelson County -in.county KY, Ohio County -in.county KY, Oldham County -in.county KY, Perry County -in.county KY, Pike County -in.county KY, Pulaski County -in.county KY, Rockcastle County -in.county KY, Rowan County -in.county KY, Russell County -in.county KY, Scott County -in.county KY, Shelby County -in.county KY, Simpson County -in.county KY, Spencer County -in.county KY, Taylor County -in.county KY, Trigg County -in.county KY, Warren County -in.county KY, Wayne County -in.county KY, Whitley County -in.county KY, Woodford County -in.county LA, Acadia Parish -in.county LA, Allen Parish -in.county LA, Ascension Parish -in.county LA, Assumption Parish -in.county LA, Avoyelles Parish -in.county LA, Beauregard Parish -in.county LA, Bienville Parish -in.county LA, Bossier Parish -in.county LA, Caddo Parish -in.county LA, Calcasieu Parish -in.county LA, Claiborne Parish -in.county LA, Concordia Parish -in.county LA, De Soto Parish -in.county LA, East Baton Rouge Parish -in.county LA, East Feliciana Parish -in.county LA, Evangeline Parish -in.county LA, Franklin Parish -in.county LA, Grant Parish -in.county LA, Iberia Parish -in.county LA, Iberville Parish -in.county LA, Jackson Parish -in.county LA, Jefferson Davis Parish -in.county LA, Jefferson Parish -in.county LA, Lafayette Parish -in.county LA, Lafourche Parish -in.county LA, Lincoln Parish -in.county LA, Livingston Parish -in.county LA, Morehouse Parish -in.county LA, Natchitoches Parish -in.county LA, Orleans Parish -in.county LA, Ouachita Parish -in.county LA, Plaquemines Parish -in.county LA, Pointe Coupee Parish -in.county LA, Rapides Parish -in.county LA, Richland Parish -in.county LA, Sabine Parish -in.county LA, St. Bernard Parish -in.county LA, St. Charles Parish -in.county LA, St. James Parish -in.county LA, St. John the Baptist Parish -in.county LA, St. Landry Parish -in.county LA, St. Martin Parish -in.county LA, St. Mary Parish -in.county LA, St. Tammany Parish -in.county LA, Tangipahoa Parish -in.county LA, Terrebonne Parish -in.county LA, Union Parish -in.county LA, Vermilion Parish -in.county LA, Vernon Parish -in.county LA, Washington Parish -in.county LA, Webster Parish -in.county LA, West Baton Rouge Parish -in.county LA, Winn Parish -in.county MA, Barnstable County -in.county MA, Berkshire County -in.county MA, Bristol County -in.county MA, Dukes County -in.county MA, Essex County -in.county MA, Franklin County -in.county MA, Hampden County -in.county MA, Hampshire County -in.county MA, Middlesex County -in.county MA, Nantucket County -in.county MA, Norfolk County -in.county MA, Plymouth County -in.county MA, Suffolk County -in.county MA, Worcester County -in.county MD, Allegany County -in.county MD, Anne Arundel County -in.county MD, Baltimore County -in.county MD, Baltimore city -in.county MD, Calvert County -in.county MD, Caroline County -in.county MD, Carroll County -in.county MD, Cecil County -in.county MD, Charles County -in.county MD, Dorchester County -in.county MD, Frederick County -in.county MD, Garrett County -in.county MD, Harford County -in.county MD, Howard County -in.county MD, Kent County -in.county MD, Montgomery County -in.county MD, Prince George's County -in.county MD, Queen Anne's County -in.county MD, Somerset County -in.county MD, St. Mary's County -in.county MD, Talbot County -in.county MD, Washington County -in.county MD, Wicomico County -in.county MD, Worcester County -in.county ME, Androscoggin County -in.county ME, Aroostook County -in.county ME, Cumberland County -in.county ME, Franklin County -in.county ME, Hancock County -in.county ME, Kennebec County -in.county ME, Knox County -in.county ME, Lincoln County -in.county ME, Oxford County -in.county ME, Penobscot County -in.county ME, Piscataquis County -in.county ME, Sagadahoc County -in.county ME, Somerset County -in.county ME, Waldo County -in.county ME, Washington County -in.county ME, York County -in.county MI, Alcona County -in.county MI, Alger County -in.county MI, Allegan County -in.county MI, Alpena County -in.county MI, Antrim County -in.county MI, Arenac County -in.county MI, Barry County -in.county MI, Bay County -in.county MI, Benzie County -in.county MI, Berrien County -in.county MI, Branch County -in.county MI, Calhoun County -in.county MI, Cass County -in.county MI, Charlevoix County -in.county MI, Cheboygan County -in.county MI, Chippewa County -in.county MI, Clare County -in.county MI, Clinton County -in.county MI, Crawford County -in.county MI, Delta County -in.county MI, Dickinson County -in.county MI, Eaton County -in.county MI, Emmet County -in.county MI, Genesee County -in.county MI, Gladwin County -in.county MI, Gogebic County -in.county MI, Grand Traverse County -in.county MI, Gratiot County -in.county MI, Hillsdale County -in.county MI, Houghton County -in.county MI, Huron County -in.county MI, Ingham County -in.county MI, Ionia County -in.county MI, Iosco County -in.county MI, Iron County -in.county MI, Isabella County -in.county MI, Jackson County -in.county MI, Kalamazoo County -in.county MI, Kalkaska County -in.county MI, Kent County -in.county MI, Lake County -in.county MI, Lapeer County -in.county MI, Leelanau County -in.county MI, Lenawee County -in.county MI, Livingston County -in.county MI, Mackinac County -in.county MI, Macomb County -in.county MI, Manistee County -in.county MI, Marquette County -in.county MI, Mason County -in.county MI, Mecosta County -in.county MI, Menominee County -in.county MI, Midland County -in.county MI, Missaukee County -in.county MI, Monroe County -in.county MI, Montcalm County -in.county MI, Montmorency County -in.county MI, Muskegon County -in.county MI, Newaygo County -in.county MI, Oakland County -in.county MI, Oceana County -in.county MI, Ogemaw County -in.county MI, Osceola County -in.county MI, Oscoda County -in.county MI, Otsego County -in.county MI, Ottawa County -in.county MI, Presque Isle County -in.county MI, Roscommon County -in.county MI, Saginaw County -in.county MI, Sanilac County -in.county MI, Schoolcraft County -in.county MI, Shiawassee County -in.county MI, St. Clair County -in.county MI, St. Joseph County -in.county MI, Tuscola County -in.county MI, Van Buren County -in.county MI, Washtenaw County -in.county MI, Wayne County -in.county MI, Wexford County -in.county MN, Aitkin County -in.county MN, Anoka County -in.county MN, Becker County -in.county MN, Beltrami County -in.county MN, Benton County -in.county MN, Blue Earth County -in.county MN, Brown County -in.county MN, Carlton County -in.county MN, Carver County -in.county MN, Cass County -in.county MN, Chisago County -in.county MN, Clay County -in.county MN, Cook County -in.county MN, Crow Wing County -in.county MN, Dakota County -in.county MN, Dodge County -in.county MN, Douglas County -in.county MN, Faribault County -in.county MN, Fillmore County -in.county MN, Freeborn County -in.county MN, Goodhue County -in.county MN, Hennepin County -in.county MN, Houston County -in.county MN, Hubbard County -in.county MN, Isanti County -in.county MN, Itasca County -in.county MN, Kanabec County -in.county MN, Kandiyohi County -in.county MN, Koochiching County -in.county MN, Lake County -in.county MN, Le Sueur County -in.county MN, Lyon County -in.county MN, Martin County -in.county MN, McLeod County -in.county MN, Meeker County -in.county MN, Mille Lacs County -in.county MN, Morrison County -in.county MN, Mower County -in.county MN, Nicollet County -in.county MN, Nobles County -in.county MN, Olmsted County -in.county MN, Otter Tail County -in.county MN, Pennington County -in.county MN, Pine County -in.county MN, Polk County -in.county MN, Ramsey County -in.county MN, Redwood County -in.county MN, Renville County -in.county MN, Rice County -in.county MN, Roseau County -in.county MN, Scott County -in.county MN, Sherburne County -in.county MN, St. Louis County -in.county MN, Stearns County -in.county MN, Steele County -in.county MN, Todd County -in.county MN, Wabasha County -in.county MN, Wadena County -in.county MN, Waseca County -in.county MN, Washington County -in.county MN, Winona County -in.county MN, Wright County -in.county MO, Adair County -in.county MO, Andrew County -in.county MO, Audrain County -in.county MO, Barry County -in.county MO, Bates County -in.county MO, Benton County -in.county MO, Boone County -in.county MO, Buchanan County -in.county MO, Butler County -in.county MO, Callaway County -in.county MO, Camden County -in.county MO, Cape Girardeau County -in.county MO, Cass County -in.county MO, Cedar County -in.county MO, Christian County -in.county MO, Clay County -in.county MO, Clinton County -in.county MO, Cole County -in.county MO, Cooper County -in.county MO, Crawford County -in.county MO, Dallas County -in.county MO, Dent County -in.county MO, Dunklin County -in.county MO, Franklin County -in.county MO, Gasconade County -in.county MO, Greene County -in.county MO, Henry County -in.county MO, Hickory County -in.county MO, Howell County -in.county MO, Jackson County -in.county MO, Jasper County -in.county MO, Jefferson County -in.county MO, Johnson County -in.county MO, Laclede County -in.county MO, Lafayette County -in.county MO, Lawrence County -in.county MO, Lincoln County -in.county MO, Livingston County -in.county MO, Macon County -in.county MO, Marion County -in.county MO, McDonald County -in.county MO, Miller County -in.county MO, Morgan County -in.county MO, New Madrid County -in.county MO, Newton County -in.county MO, Nodaway County -in.county MO, Osage County -in.county MO, Pemiscot County -in.county MO, Perry County -in.county MO, Pettis County -in.county MO, Phelps County -in.county MO, Pike County -in.county MO, Platte County -in.county MO, Polk County -in.county MO, Pulaski County -in.county MO, Randolph County -in.county MO, Ray County -in.county MO, Ripley County -in.county MO, Saline County -in.county MO, Scott County -in.county MO, St. Charles County -in.county MO, St. Francois County -in.county MO, St. Louis County -in.county MO, St. Louis city -in.county MO, Ste. Genevieve County -in.county MO, Stoddard County -in.county MO, Stone County -in.county MO, Taney County -in.county MO, Texas County -in.county MO, Vernon County -in.county MO, Warren County -in.county MO, Washington County -in.county MO, Wayne County -in.county MO, Webster County -in.county MO, Wright County -in.county MS, Adams County -in.county MS, Alcorn County -in.county MS, Amite County -in.county MS, Attala County -in.county MS, Bolivar County -in.county MS, Calhoun County -in.county MS, Chickasaw County -in.county MS, Clarke County -in.county MS, Clay County -in.county MS, Coahoma County -in.county MS, Copiah County -in.county MS, Covington County -in.county MS, DeSoto County -in.county MS, Forrest County -in.county MS, George County -in.county MS, Grenada County -in.county MS, Hancock County -in.county MS, Harrison County -in.county MS, Hinds County -in.county MS, Holmes County -in.county MS, Itawamba County -in.county MS, Jackson County -in.county MS, Jasper County -in.county MS, Jones County -in.county MS, Lafayette County -in.county MS, Lamar County -in.county MS, Lauderdale County -in.county MS, Leake County -in.county MS, Lee County -in.county MS, Leflore County -in.county MS, Lincoln County -in.county MS, Lowndes County -in.county MS, Madison County -in.county MS, Marion County -in.county MS, Marshall County -in.county MS, Monroe County -in.county MS, Neshoba County -in.county MS, Newton County -in.county MS, Oktibbeha County -in.county MS, Panola County -in.county MS, Pearl River County -in.county MS, Pike County -in.county MS, Pontotoc County -in.county MS, Prentiss County -in.county MS, Rankin County -in.county MS, Scott County -in.county MS, Simpson County -in.county MS, Smith County -in.county MS, Stone County -in.county MS, Sunflower County -in.county MS, Tate County -in.county MS, Tippah County -in.county MS, Tishomingo County -in.county MS, Union County -in.county MS, Walthall County -in.county MS, Warren County -in.county MS, Washington County -in.county MS, Wayne County -in.county MS, Winston County -in.county MS, Yazoo County -in.county MT, Carbon County -in.county MT, Cascade County -in.county MT, Custer County -in.county MT, Fergus County -in.county MT, Flathead County -in.county MT, Gallatin County -in.county MT, Hill County -in.county MT, Lake County -in.county MT, Lewis and Clark County -in.county MT, Lincoln County -in.county MT, Madison County -in.county MT, Missoula County -in.county MT, Park County -in.county MT, Ravalli County -in.county MT, Sanders County -in.county MT, Silver Bow County -in.county MT, Yellowstone County -in.county NC, Alamance County -in.county NC, Alexander County -in.county NC, Alleghany County -in.county NC, Anson County -in.county NC, Ashe County -in.county NC, Avery County -in.county NC, Beaufort County -in.county NC, Bertie County -in.county NC, Bladen County -in.county NC, Brunswick County -in.county NC, Buncombe County -in.county NC, Burke County -in.county NC, Cabarrus County -in.county NC, Caldwell County -in.county NC, Carteret County -in.county NC, Caswell County -in.county NC, Catawba County -in.county NC, Chatham County -in.county NC, Cherokee County -in.county NC, Chowan County -in.county NC, Clay County -in.county NC, Cleveland County -in.county NC, Columbus County -in.county NC, Craven County -in.county NC, Cumberland County -in.county NC, Currituck County -in.county NC, Dare County -in.county NC, Davidson County -in.county NC, Davie County -in.county NC, Duplin County -in.county NC, Durham County -in.county NC, Edgecombe County -in.county NC, Forsyth County -in.county NC, Franklin County -in.county NC, Gaston County -in.county NC, Granville County -in.county NC, Greene County -in.county NC, Guilford County -in.county NC, Halifax County -in.county NC, Harnett County -in.county NC, Haywood County -in.county NC, Henderson County -in.county NC, Hertford County -in.county NC, Hoke County -in.county NC, Iredell County -in.county NC, Jackson County -in.county NC, Johnston County -in.county NC, Lee County -in.county NC, Lenoir County -in.county NC, Lincoln County -in.county NC, Macon County -in.county NC, Madison County -in.county NC, Martin County -in.county NC, McDowell County -in.county NC, Mecklenburg County -in.county NC, Mitchell County -in.county NC, Montgomery County -in.county NC, Moore County -in.county NC, Nash County -in.county NC, New Hanover County -in.county NC, Northampton County -in.county NC, Onslow County -in.county NC, Orange County -in.county NC, Pamlico County -in.county NC, Pasquotank County -in.county NC, Pender County -in.county NC, Perquimans County -in.county NC, Person County -in.county NC, Pitt County -in.county NC, Polk County -in.county NC, Randolph County -in.county NC, Richmond County -in.county NC, Robeson County -in.county NC, Rockingham County -in.county NC, Rowan County -in.county NC, Rutherford County -in.county NC, Sampson County -in.county NC, Scotland County -in.county NC, Stanly County -in.county NC, Stokes County -in.county NC, Surry County -in.county NC, Swain County -in.county NC, Transylvania County -in.county NC, Union County -in.county NC, Vance County -in.county NC, Wake County -in.county NC, Warren County -in.county NC, Watauga County -in.county NC, Wayne County -in.county NC, Wilkes County -in.county NC, Wilson County -in.county NC, Yadkin County -in.county NC, Yancey County -in.county ND, Barnes County -in.county ND, Burleigh County -in.county ND, Cass County -in.county ND, Grand Forks County -in.county ND, McLean County -in.county ND, Morton County -in.county ND, Ramsey County -in.county ND, Richland County -in.county ND, Stark County -in.county ND, Stutsman County -in.county ND, Ward County -in.county ND, Williams County -in.county NE, Adams County -in.county NE, Buffalo County -in.county NE, Cass County -in.county NE, Dakota County -in.county NE, Dawson County -in.county NE, Dodge County -in.county NE, Douglas County -in.county NE, Gage County -in.county NE, Hall County -in.county NE, Lancaster County -in.county NE, Lincoln County -in.county NE, Madison County -in.county NE, Otoe County -in.county NE, Platte County -in.county NE, Sarpy County -in.county NE, Saunders County -in.county NE, Scotts Bluff County -in.county NE, Seward County -in.county NE, Washington County -in.county NH, Belknap County -in.county NH, Carroll County -in.county NH, Cheshire County -in.county NH, Coos County -in.county NH, Grafton County -in.county NH, Hillsborough County -in.county NH, Merrimack County -in.county NH, Rockingham County -in.county NH, Strafford County -in.county NH, Sullivan County -in.county NJ, Atlantic County -in.county NJ, Bergen County -in.county NJ, Burlington County -in.county NJ, Camden County -in.county NJ, Cape May County -in.county NJ, Cumberland County -in.county NJ, Essex County -in.county NJ, Gloucester County -in.county NJ, Hudson County -in.county NJ, Hunterdon County -in.county NJ, Mercer County -in.county NJ, Middlesex County -in.county NJ, Monmouth County -in.county NJ, Morris County -in.county NJ, Ocean County -in.county NJ, Passaic County -in.county NJ, Salem County -in.county NJ, Somerset County -in.county NJ, Sussex County -in.county NJ, Union County -in.county NJ, Warren County -in.county NM, Bernalillo County -in.county NM, Chaves County -in.county NM, Cibola County -in.county NM, Colfax County -in.county NM, Curry County -in.county NM, Dona Ana County -in.county NM, Eddy County -in.county NM, Grant County -in.county NM, Lea County -in.county NM, Lincoln County -in.county NM, Los Alamos County -in.county NM, Luna County -in.county NM, McKinley County -in.county NM, Otero County -in.county NM, Rio Arriba County -in.county NM, Roosevelt County -in.county NM, San Juan County -in.county NM, San Miguel County -in.county NM, Sandoval County -in.county NM, Santa Fe County -in.county NM, Sierra County -in.county NM, Socorro County -in.county NM, Taos County -in.county NM, Torrance County -in.county NM, Valencia County -in.county NV, Carson City -in.county NV, Churchill County -in.county NV, Clark County -in.county NV, Douglas County -in.county NV, Elko County -in.county NV, Humboldt County -in.county NV, Lyon County -in.county NV, Nye County -in.county NV, Washoe County -in.county NY, Albany County -in.county NY, Allegany County -in.county NY, Bronx County -in.county NY, Broome County -in.county NY, Cattaraugus County -in.county NY, Cayuga County -in.county NY, Chautauqua County -in.county NY, Chemung County -in.county NY, Chenango County -in.county NY, Clinton County -in.county NY, Columbia County -in.county NY, Cortland County -in.county NY, Delaware County -in.county NY, Dutchess County -in.county NY, Erie County -in.county NY, Essex County -in.county NY, Franklin County -in.county NY, Fulton County -in.county NY, Genesee County -in.county NY, Greene County -in.county NY, Hamilton County -in.county NY, Herkimer County -in.county NY, Jefferson County -in.county NY, Kings County -in.county NY, Lewis County -in.county NY, Livingston County -in.county NY, Madison County -in.county NY, Monroe County -in.county NY, Montgomery County -in.county NY, Nassau County -in.county NY, New York County -in.county NY, Niagara County -in.county NY, Oneida County -in.county NY, Onondaga County -in.county NY, Ontario County -in.county NY, Orange County -in.county NY, Orleans County -in.county NY, Oswego County -in.county NY, Otsego County -in.county NY, Putnam County -in.county NY, Queens County -in.county NY, Rensselaer County -in.county NY, Richmond County -in.county NY, Rockland County -in.county NY, Saratoga County -in.county NY, Schenectady County -in.county NY, Schoharie County -in.county NY, Schuyler County -in.county NY, Seneca County -in.county NY, St. Lawrence County -in.county NY, Steuben County -in.county NY, Suffolk County -in.county NY, Sullivan County -in.county NY, Tioga County -in.county NY, Tompkins County -in.county NY, Ulster County -in.county NY, Warren County -in.county NY, Washington County -in.county NY, Wayne County -in.county NY, Westchester County -in.county NY, Wyoming County -in.county NY, Yates County -in.county OH, Adams County -in.county OH, Allen County -in.county OH, Ashland County -in.county OH, Ashtabula County -in.county OH, Athens County -in.county OH, Auglaize County -in.county OH, Belmont County -in.county OH, Brown County -in.county OH, Butler County -in.county OH, Carroll County -in.county OH, Champaign County -in.county OH, Clark County -in.county OH, Clermont County -in.county OH, Clinton County -in.county OH, Columbiana County -in.county OH, Coshocton County -in.county OH, Crawford County -in.county OH, Cuyahoga County -in.county OH, Darke County -in.county OH, Defiance County -in.county OH, Delaware County -in.county OH, Erie County -in.county OH, Fairfield County -in.county OH, Fayette County -in.county OH, Franklin County -in.county OH, Fulton County -in.county OH, Gallia County -in.county OH, Geauga County -in.county OH, Greene County -in.county OH, Guernsey County -in.county OH, Hamilton County -in.county OH, Hancock County -in.county OH, Hardin County -in.county OH, Harrison County -in.county OH, Henry County -in.county OH, Highland County -in.county OH, Hocking County -in.county OH, Holmes County -in.county OH, Huron County -in.county OH, Jackson County -in.county OH, Jefferson County -in.county OH, Knox County -in.county OH, Lake County -in.county OH, Lawrence County -in.county OH, Licking County -in.county OH, Logan County -in.county OH, Lorain County -in.county OH, Lucas County -in.county OH, Madison County -in.county OH, Mahoning County -in.county OH, Marion County -in.county OH, Medina County -in.county OH, Meigs County -in.county OH, Mercer County -in.county OH, Miami County -in.county OH, Monroe County -in.county OH, Montgomery County -in.county OH, Morgan County -in.county OH, Morrow County -in.county OH, Muskingum County -in.county OH, Ottawa County -in.county OH, Paulding County -in.county OH, Perry County -in.county OH, Pickaway County -in.county OH, Pike County -in.county OH, Portage County -in.county OH, Preble County -in.county OH, Putnam County -in.county OH, Richland County -in.county OH, Ross County -in.county OH, Sandusky County -in.county OH, Scioto County -in.county OH, Seneca County -in.county OH, Shelby County -in.county OH, Stark County -in.county OH, Summit County -in.county OH, Trumbull County -in.county OH, Tuscarawas County -in.county OH, Union County -in.county OH, Van Wert County -in.county OH, Warren County -in.county OH, Washington County -in.county OH, Wayne County -in.county OH, Williams County -in.county OH, Wood County -in.county OH, Wyandot County -in.county OK, Adair County -in.county OK, Beckham County -in.county OK, Bryan County -in.county OK, Caddo County -in.county OK, Canadian County -in.county OK, Carter County -in.county OK, Cherokee County -in.county OK, Choctaw County -in.county OK, Cleveland County -in.county OK, Comanche County -in.county OK, Craig County -in.county OK, Creek County -in.county OK, Custer County -in.county OK, Delaware County -in.county OK, Garfield County -in.county OK, Garvin County -in.county OK, Grady County -in.county OK, Jackson County -in.county OK, Kay County -in.county OK, Le Flore County -in.county OK, Lincoln County -in.county OK, Logan County -in.county OK, Marshall County -in.county OK, Mayes County -in.county OK, McClain County -in.county OK, McCurtain County -in.county OK, McIntosh County -in.county OK, Murray County -in.county OK, Muskogee County -in.county OK, Oklahoma County -in.county OK, Okmulgee County -in.county OK, Osage County -in.county OK, Ottawa County -in.county OK, Pawnee County -in.county OK, Payne County -in.county OK, Pittsburg County -in.county OK, Pontotoc County -in.county OK, Pottawatomie County -in.county OK, Rogers County -in.county OK, Seminole County -in.county OK, Sequoyah County -in.county OK, Stephens County -in.county OK, Texas County -in.county OK, Tulsa County -in.county OK, Wagoner County -in.county OK, Washington County -in.county OK, Woodward County -in.county OR, Baker County -in.county OR, Benton County -in.county OR, Clackamas County -in.county OR, Clatsop County -in.county OR, Columbia County -in.county OR, Coos County -in.county OR, Crook County -in.county OR, Curry County -in.county OR, Deschutes County -in.county OR, Douglas County -in.county OR, Hood River County -in.county OR, Jackson County -in.county OR, Jefferson County -in.county OR, Josephine County -in.county OR, Klamath County -in.county OR, Lane County -in.county OR, Lincoln County -in.county OR, Linn County -in.county OR, Malheur County -in.county OR, Marion County -in.county OR, Multnomah County -in.county OR, Polk County -in.county OR, Tillamook County -in.county OR, Umatilla County -in.county OR, Union County -in.county OR, Wasco County -in.county OR, Washington County -in.county OR, Yamhill County -in.county PA, Adams County -in.county PA, Allegheny County -in.county PA, Armstrong County -in.county PA, Beaver County -in.county PA, Bedford County -in.county PA, Berks County -in.county PA, Blair County -in.county PA, Bradford County -in.county PA, Bucks County -in.county PA, Butler County -in.county PA, Cambria County -in.county PA, Carbon County -in.county PA, Centre County -in.county PA, Chester County -in.county PA, Clarion County -in.county PA, Clearfield County -in.county PA, Clinton County -in.county PA, Columbia County -in.county PA, Crawford County -in.county PA, Cumberland County -in.county PA, Dauphin County -in.county PA, Delaware County -in.county PA, Elk County -in.county PA, Erie County -in.county PA, Fayette County -in.county PA, Forest County -in.county PA, Franklin County -in.county PA, Fulton County -in.county PA, Greene County -in.county PA, Huntingdon County -in.county PA, Indiana County -in.county PA, Jefferson County -in.county PA, Juniata County -in.county PA, Lackawanna County -in.county PA, Lancaster County -in.county PA, Lawrence County -in.county PA, Lebanon County -in.county PA, Lehigh County -in.county PA, Luzerne County -in.county PA, Lycoming County -in.county PA, McKean County -in.county PA, Mercer County -in.county PA, Mifflin County -in.county PA, Monroe County -in.county PA, Montgomery County -in.county PA, Montour County -in.county PA, Northampton County -in.county PA, Northumberland County -in.county PA, Perry County -in.county PA, Philadelphia County -in.county PA, Pike County -in.county PA, Potter County -in.county PA, Schuylkill County -in.county PA, Snyder County -in.county PA, Somerset County -in.county PA, Susquehanna County -in.county PA, Tioga County -in.county PA, Union County -in.county PA, Venango County -in.county PA, Warren County -in.county PA, Washington County -in.county PA, Wayne County -in.county PA, Westmoreland County -in.county PA, Wyoming County -in.county PA, York County -in.county RI, Bristol County -in.county RI, Kent County -in.county RI, Newport County -in.county RI, Providence County -in.county RI, Washington County -in.county SC, Abbeville County -in.county SC, Aiken County -in.county SC, Anderson County -in.county SC, Bamberg County -in.county SC, Barnwell County -in.county SC, Beaufort County -in.county SC, Berkeley County -in.county SC, Calhoun County -in.county SC, Charleston County -in.county SC, Cherokee County -in.county SC, Chester County -in.county SC, Chesterfield County -in.county SC, Clarendon County -in.county SC, Colleton County -in.county SC, Darlington County -in.county SC, Dillon County -in.county SC, Dorchester County -in.county SC, Edgefield County -in.county SC, Fairfield County -in.county SC, Florence County -in.county SC, Georgetown County -in.county SC, Greenville County -in.county SC, Greenwood County -in.county SC, Hampton County -in.county SC, Horry County -in.county SC, Jasper County -in.county SC, Kershaw County -in.county SC, Lancaster County -in.county SC, Laurens County -in.county SC, Lee County -in.county SC, Lexington County -in.county SC, Marion County -in.county SC, Marlboro County -in.county SC, Newberry County -in.county SC, Oconee County -in.county SC, Orangeburg County -in.county SC, Pickens County -in.county SC, Richland County -in.county SC, Saluda County -in.county SC, Spartanburg County -in.county SC, Sumter County -in.county SC, Union County -in.county SC, Williamsburg County -in.county SC, York County -in.county SD, Beadle County -in.county SD, Brookings County -in.county SD, Brown County -in.county SD, Codington County -in.county SD, Davison County -in.county SD, Hughes County -in.county SD, Lawrence County -in.county SD, Lincoln County -in.county SD, Meade County -in.county SD, Minnehaha County -in.county SD, Pennington County -in.county SD, Union County -in.county SD, Yankton County -in.county TN, Anderson County -in.county TN, Bedford County -in.county TN, Benton County -in.county TN, Blount County -in.county TN, Bradley County -in.county TN, Campbell County -in.county TN, Carroll County -in.county TN, Carter County -in.county TN, Cheatham County -in.county TN, Chester County -in.county TN, Claiborne County -in.county TN, Cocke County -in.county TN, Coffee County -in.county TN, Cumberland County -in.county TN, Davidson County -in.county TN, DeKalb County -in.county TN, Decatur County -in.county TN, Dickson County -in.county TN, Dyer County -in.county TN, Fayette County -in.county TN, Fentress County -in.county TN, Franklin County -in.county TN, Gibson County -in.county TN, Giles County -in.county TN, Grainger County -in.county TN, Greene County -in.county TN, Hamblen County -in.county TN, Hamilton County -in.county TN, Hardeman County -in.county TN, Hardin County -in.county TN, Hawkins County -in.county TN, Haywood County -in.county TN, Henderson County -in.county TN, Henry County -in.county TN, Hickman County -in.county TN, Humphreys County -in.county TN, Jefferson County -in.county TN, Johnson County -in.county TN, Knox County -in.county TN, Lauderdale County -in.county TN, Lawrence County -in.county TN, Lincoln County -in.county TN, Loudon County -in.county TN, Macon County -in.county TN, Madison County -in.county TN, Marion County -in.county TN, Marshall County -in.county TN, Maury County -in.county TN, McMinn County -in.county TN, McNairy County -in.county TN, Monroe County -in.county TN, Montgomery County -in.county TN, Morgan County -in.county TN, Obion County -in.county TN, Overton County -in.county TN, Polk County -in.county TN, Putnam County -in.county TN, Rhea County -in.county TN, Roane County -in.county TN, Robertson County -in.county TN, Rutherford County -in.county TN, Scott County -in.county TN, Sevier County -in.county TN, Shelby County -in.county TN, Smith County -in.county TN, Stewart County -in.county TN, Sullivan County -in.county TN, Sumner County -in.county TN, Tipton County -in.county TN, Unicoi County -in.county TN, Union County -in.county TN, Warren County -in.county TN, Washington County -in.county TN, Wayne County -in.county TN, Weakley County -in.county TN, White County -in.county TN, Williamson County -in.county TN, Wilson County -in.county TX, Anderson County -in.county TX, Angelina County -in.county TX, Aransas County -in.county TX, Atascosa County -in.county TX, Austin County -in.county TX, Bandera County -in.county TX, Bastrop County -in.county TX, Bee County -in.county TX, Bell County -in.county TX, Bexar County -in.county TX, Bosque County -in.county TX, Bowie County -in.county TX, Brazoria County -in.county TX, Brazos County -in.county TX, Brown County -in.county TX, Burleson County -in.county TX, Burnet County -in.county TX, Caldwell County -in.county TX, Calhoun County -in.county TX, Callahan County -in.county TX, Cameron County -in.county TX, Cass County -in.county TX, Chambers County -in.county TX, Cherokee County -in.county TX, Collin County -in.county TX, Colorado County -in.county TX, Comal County -in.county TX, Comanche County -in.county TX, Cooke County -in.county TX, Coryell County -in.county TX, Dallas County -in.county TX, DeWitt County -in.county TX, Deaf Smith County -in.county TX, Denton County -in.county TX, Eastland County -in.county TX, Ector County -in.county TX, El Paso County -in.county TX, Ellis County -in.county TX, Erath County -in.county TX, Falls County -in.county TX, Fannin County -in.county TX, Fayette County -in.county TX, Fort Bend County -in.county TX, Freestone County -in.county TX, Frio County -in.county TX, Galveston County -in.county TX, Gillespie County -in.county TX, Gonzales County -in.county TX, Gray County -in.county TX, Grayson County -in.county TX, Gregg County -in.county TX, Grimes County -in.county TX, Guadalupe County -in.county TX, Hale County -in.county TX, Hardin County -in.county TX, Harris County -in.county TX, Harrison County -in.county TX, Hays County -in.county TX, Henderson County -in.county TX, Hidalgo County -in.county TX, Hill County -in.county TX, Hockley County -in.county TX, Hood County -in.county TX, Hopkins County -in.county TX, Houston County -in.county TX, Howard County -in.county TX, Hunt County -in.county TX, Hutchinson County -in.county TX, Jasper County -in.county TX, Jefferson County -in.county TX, Jim Wells County -in.county TX, Johnson County -in.county TX, Jones County -in.county TX, Kaufman County -in.county TX, Kendall County -in.county TX, Kerr County -in.county TX, Kleberg County -in.county TX, Lamar County -in.county TX, Lampasas County -in.county TX, Lavaca County -in.county TX, Lee County -in.county TX, Leon County -in.county TX, Liberty County -in.county TX, Limestone County -in.county TX, Llano County -in.county TX, Lubbock County -in.county TX, Matagorda County -in.county TX, Maverick County -in.county TX, McLennan County -in.county TX, Medina County -in.county TX, Midland County -in.county TX, Milam County -in.county TX, Montague County -in.county TX, Montgomery County -in.county TX, Moore County -in.county TX, Nacogdoches County -in.county TX, Navarro County -in.county TX, Nolan County -in.county TX, Nueces County -in.county TX, Orange County -in.county TX, Palo Pinto County -in.county TX, Panola County -in.county TX, Parker County -in.county TX, Polk County -in.county TX, Potter County -in.county TX, Randall County -in.county TX, Red River County -in.county TX, Robertson County -in.county TX, Rockwall County -in.county TX, Rusk County -in.county TX, Sabine County -in.county TX, San Jacinto County -in.county TX, San Patricio County -in.county TX, Scurry County -in.county TX, Shelby County -in.county TX, Smith County -in.county TX, Starr County -in.county TX, Tarrant County -in.county TX, Taylor County -in.county TX, Titus County -in.county TX, Tom Green County -in.county TX, Travis County -in.county TX, Trinity County -in.county TX, Tyler County -in.county TX, Upshur County -in.county TX, Uvalde County -in.county TX, Val Verde County -in.county TX, Van Zandt County -in.county TX, Victoria County -in.county TX, Walker County -in.county TX, Waller County -in.county TX, Washington County -in.county TX, Webb County -in.county TX, Wharton County -in.county TX, Wichita County -in.county TX, Williamson County -in.county TX, Wilson County -in.county TX, Wise County -in.county TX, Wood County -in.county TX, Young County -in.county TX, Zapata County -in.county UT, Box Elder County -in.county UT, Cache County -in.county UT, Carbon County -in.county UT, Davis County -in.county UT, Duchesne County -in.county UT, Iron County -in.county UT, Salt Lake County -in.county UT, Sanpete County -in.county UT, Sevier County -in.county UT, Summit County -in.county UT, Tooele County -in.county UT, Uintah County -in.county UT, Utah County -in.county UT, Wasatch County -in.county UT, Washington County -in.county UT, Weber County -in.county VA, Accomack County -in.county VA, Albemarle County -in.county VA, Alexandria city -in.county VA, Alleghany County -in.county VA, Amherst County -in.county VA, Appomattox County -in.county VA, Arlington County -in.county VA, Augusta County -in.county VA, Bedford County -in.county VA, Botetourt County -in.county VA, Bristol city -in.county VA, Brunswick County -in.county VA, Buchanan County -in.county VA, Buckingham County -in.county VA, Campbell County -in.county VA, Caroline County -in.county VA, Carroll County -in.county VA, Charlottesville city -in.county VA, Chesapeake city -in.county VA, Chesterfield County -in.county VA, Colonial Heights city -in.county VA, Culpeper County -in.county VA, Danville city -in.county VA, Dickenson County -in.county VA, Dinwiddie County -in.county VA, Fairfax County -in.county VA, Fairfax city -in.county VA, Fauquier County -in.county VA, Floyd County -in.county VA, Fluvanna County -in.county VA, Franklin County -in.county VA, Frederick County -in.county VA, Fredericksburg city -in.county VA, Giles County -in.county VA, Gloucester County -in.county VA, Goochland County -in.county VA, Grayson County -in.county VA, Greene County -in.county VA, Halifax County -in.county VA, Hampton city -in.county VA, Hanover County -in.county VA, Harrisonburg city -in.county VA, Henrico County -in.county VA, Henry County -in.county VA, Hopewell city -in.county VA, Isle of Wight County -in.county VA, James City County -in.county VA, King George County -in.county VA, King William County -in.county VA, Lancaster County -in.county VA, Lee County -in.county VA, Loudoun County -in.county VA, Louisa County -in.county VA, Lynchburg city -in.county VA, Manassas city -in.county VA, Martinsville city -in.county VA, Mecklenburg County -in.county VA, Middlesex County -in.county VA, Montgomery County -in.county VA, Nelson County -in.county VA, New Kent County -in.county VA, Newport News city -in.county VA, Norfolk city -in.county VA, Northampton County -in.county VA, Northumberland County -in.county VA, Nottoway County -in.county VA, Orange County -in.county VA, Page County -in.county VA, Patrick County -in.county VA, Petersburg city -in.county VA, Pittsylvania County -in.county VA, Portsmouth city -in.county VA, Powhatan County -in.county VA, Prince Edward County -in.county VA, Prince George County -in.county VA, Prince William County -in.county VA, Pulaski County -in.county VA, Richmond city -in.county VA, Roanoke County -in.county VA, Roanoke city -in.county VA, Rockbridge County -in.county VA, Rockingham County -in.county VA, Russell County -in.county VA, Salem city -in.county VA, Scott County -in.county VA, Shenandoah County -in.county VA, Smyth County -in.county VA, Southampton County -in.county VA, Spotsylvania County -in.county VA, Stafford County -in.county VA, Staunton city -in.county VA, Suffolk city -in.county VA, Tazewell County -in.county VA, Virginia Beach city -in.county VA, Warren County -in.county VA, Washington County -in.county VA, Waynesboro city -in.county VA, Westmoreland County -in.county VA, Winchester city -in.county VA, Wise County -in.county VA, Wythe County -in.county VA, York County -in.county VT, Addison County -in.county VT, Bennington County -in.county VT, Caledonia County -in.county VT, Chittenden County -in.county VT, Franklin County -in.county VT, Lamoille County -in.county VT, Orange County -in.county VT, Orleans County -in.county VT, Rutland County -in.county VT, Washington County -in.county VT, Windham County -in.county VT, Windsor County -in.county WA, Adams County -in.county WA, Asotin County -in.county WA, Benton County -in.county WA, Chelan County -in.county WA, Clallam County -in.county WA, Clark County -in.county WA, Cowlitz County -in.county WA, Douglas County -in.county WA, Franklin County -in.county WA, Grant County -in.county WA, Grays Harbor County -in.county WA, Island County -in.county WA, Jefferson County -in.county WA, King County -in.county WA, Kitsap County -in.county WA, Kittitas County -in.county WA, Klickitat County -in.county WA, Lewis County -in.county WA, Mason County -in.county WA, Okanogan County -in.county WA, Pacific County -in.county WA, Pend Oreille County -in.county WA, Pierce County -in.county WA, San Juan County -in.county WA, Skagit County -in.county WA, Snohomish County -in.county WA, Spokane County -in.county WA, Stevens County -in.county WA, Thurston County -in.county WA, Walla Walla County -in.county WA, Whatcom County -in.county WA, Whitman County -in.county WA, Yakima County -in.county WI, Adams County -in.county WI, Ashland County -in.county WI, Barron County -in.county WI, Bayfield County -in.county WI, Brown County -in.county WI, Buffalo County -in.county WI, Burnett County -in.county WI, Calumet County -in.county WI, Chippewa County -in.county WI, Clark County -in.county WI, Columbia County -in.county WI, Crawford County -in.county WI, Dane County -in.county WI, Dodge County -in.county WI, Door County -in.county WI, Douglas County -in.county WI, Dunn County -in.county WI, Eau Claire County -in.county WI, Fond du Lac County -in.county WI, Forest County -in.county WI, Grant County -in.county WI, Green County -in.county WI, Green Lake County -in.county WI, Iowa County -in.county WI, Iron County -in.county WI, Jackson County -in.county WI, Jefferson County -in.county WI, Juneau County -in.county WI, Kenosha County -in.county WI, Kewaunee County -in.county WI, La Crosse County -in.county WI, Lafayette County -in.county WI, Langlade County -in.county WI, Lincoln County -in.county WI, Manitowoc County -in.county WI, Marathon County -in.county WI, Marinette County -in.county WI, Marquette County -in.county WI, Milwaukee County -in.county WI, Monroe County -in.county WI, Oconto County -in.county WI, Oneida County -in.county WI, Outagamie County -in.county WI, Ozaukee County -in.county WI, Pierce County -in.county WI, Polk County -in.county WI, Portage County -in.county WI, Price County -in.county WI, Racine County -in.county WI, Richland County -in.county WI, Rock County -in.county WI, Rusk County -in.county WI, Sauk County -in.county WI, Sawyer County -in.county WI, Shawano County -in.county WI, Sheboygan County -in.county WI, St. Croix County -in.county WI, Taylor County -in.county WI, Trempealeau County -in.county WI, Vernon County -in.county WI, Vilas County -in.county WI, Walworth County -in.county WI, Washburn County -in.county WI, Washington County -in.county WI, Waukesha County -in.county WI, Waupaca County -in.county WI, Waushara County -in.county WI, Winnebago County -in.county WI, Wood County -in.county WV, Barbour County -in.county WV, Berkeley County -in.county WV, Boone County -in.county WV, Braxton County -in.county WV, Brooke County -in.county WV, Cabell County -in.county WV, Fayette County -in.county WV, Grant County -in.county WV, Greenbrier County -in.county WV, Hampshire County -in.county WV, Hancock County -in.county WV, Hardy County -in.county WV, Harrison County -in.county WV, Jackson County -in.county WV, Jefferson County -in.county WV, Kanawha County -in.county WV, Lewis County -in.county WV, Lincoln County -in.county WV, Logan County -in.county WV, Marion County -in.county WV, Marshall County -in.county WV, Mason County -in.county WV, McDowell County -in.county WV, Mercer County -in.county WV, Mineral County -in.county WV, Mingo County -in.county WV, Monongalia County -in.county WV, Monroe County -in.county WV, Morgan County -in.county WV, Nicholas County -in.county WV, Ohio County -in.county WV, Pocahontas County -in.county WV, Preston County -in.county WV, Putnam County -in.county WV, Raleigh County -in.county WV, Randolph County -in.county WV, Roane County -in.county WV, Summers County -in.county WV, Taylor County -in.county WV, Upshur County -in.county WV, Wayne County -in.county WV, Wetzel County -in.county WV, Wood County -in.county WV, Wyoming County -in.county WY, Albany County -in.county WY, Campbell County -in.county WY, Carbon County -in.county WY, Converse County -in.county WY, Fremont County -in.county WY, Laramie County -in.county WY, Lincoln County -in.county WY, Natrona County -in.county WY, Park County -in.county WY, Sheridan County -in.county WY, Sublette County -in.county WY, Sweetwater County -in.county WY, Teton County -in.county WY, Uinta County -in.county_and_puma G0100010, G01002100 -in.county_and_puma G0100030, G01002600 -in.county_and_puma G0100050, G01002400 -in.county_and_puma G0100070, G01001700 -in.county_and_puma G0100090, G01000800 -in.county_and_puma G0100130, G01002300 -in.county_and_puma G0100150, G01001100 -in.county_and_puma G0100170, G01001800 -in.county_and_puma G0100190, G01001000 -in.county_and_puma G0100210, G01001800 -in.county_and_puma G0100230, G01002200 -in.county_and_puma G0100250, G01002200 -in.county_and_puma G0100270, G01001000 -in.county_and_puma G0100290, G01001000 -in.county_and_puma G0100310, G01002300 -in.county_and_puma G0100330, G01000100 -in.county_and_puma G0100350, G01002200 -in.county_and_puma G0100390, G01002300 -in.county_and_puma G0100410, G01002300 -in.county_and_puma G0100430, G01000700 -in.county_and_puma G0100450, G01002500 -in.county_and_puma G0100470, G01001700 -in.county_and_puma G0100490, G01000400 -in.county_and_puma G0100510, G01002100 -in.county_and_puma G0100530, G01002200 -in.county_and_puma G0100550, G01000900 -in.county_and_puma G0100570, G01001400 -in.county_and_puma G0100590, G01000100 -in.county_and_puma G0100610, G01002500 -in.county_and_puma G0100650, G01001700 -in.county_and_puma G0100670, G01002500 -in.county_and_puma G0100690, G01002500 -in.county_and_puma G0100710, G01000400 -in.county_and_puma G0100730, G01001301 -in.county_and_puma G0100730, G01001302 -in.county_and_puma G0100730, G01001303 -in.county_and_puma G0100730, G01001304 -in.county_and_puma G0100730, G01001305 -in.county_and_puma G0100750, G01001400 -in.county_and_puma G0100770, G01000100 -in.county_and_puma G0100790, G01000600 -in.county_and_puma G0100810, G01001900 -in.county_and_puma G0100830, G01000200 -in.county_and_puma G0100870, G01002400 -in.county_and_puma G0100890, G01000200 -in.county_and_puma G0100890, G01000301 -in.county_and_puma G0100890, G01000302 -in.county_and_puma G0100890, G01000500 -in.county_and_puma G0100910, G01001700 -in.county_and_puma G0100930, G01001400 -in.county_and_puma G0100950, G01000500 -in.county_and_puma G0100970, G01002701 -in.county_and_puma G0100970, G01002702 -in.county_and_puma G0100970, G01002703 -in.county_and_puma G0100990, G01002200 -in.county_and_puma G0101010, G01002000 -in.county_and_puma G0101010, G01002100 -in.county_and_puma G0101030, G01000600 -in.county_and_puma G0101070, G01001500 -in.county_and_puma G0101090, G01002400 -in.county_and_puma G0101110, G01001000 -in.county_and_puma G0101130, G01002400 -in.county_and_puma G0101150, G01000800 -in.county_and_puma G0101170, G01001200 -in.county_and_puma G0101190, G01001700 -in.county_and_puma G0101210, G01001000 -in.county_and_puma G0101230, G01001800 -in.county_and_puma G0101250, G01001500 -in.county_and_puma G0101250, G01001600 -in.county_and_puma G0101270, G01001400 -in.county_and_puma G0101290, G01002200 -in.county_and_puma G0101330, G01000700 -in.county_and_puma G0200200, G02000101 -in.county_and_puma G0200200, G02000102 -in.county_and_puma G0200500, G02000400 -in.county_and_puma G0200900, G02000300 -in.county_and_puma G0201100, G02000300 -in.county_and_puma G0201220, G02000200 -in.county_and_puma G0201300, G02000300 -in.county_and_puma G0201500, G02000400 -in.county_and_puma G0201700, G02000200 -in.county_and_puma G0202610, G02000300 -in.county_and_puma G0400010, G04000300 -in.county_and_puma G0400030, G04000900 -in.county_and_puma G0400050, G04000400 -in.county_and_puma G0400070, G04000800 -in.county_and_puma G0400090, G04000800 -in.county_and_puma G0400120, G04000600 -in.county_and_puma G0400130, G04000100 -in.county_and_puma G0400130, G04000101 -in.county_and_puma G0400130, G04000102 -in.county_and_puma G0400130, G04000103 -in.county_and_puma G0400130, G04000104 -in.county_and_puma G0400130, G04000105 -in.county_and_puma G0400130, G04000106 -in.county_and_puma G0400130, G04000107 -in.county_and_puma G0400130, G04000108 -in.county_and_puma G0400130, G04000109 -in.county_and_puma G0400130, G04000110 -in.county_and_puma G0400130, G04000111 -in.county_and_puma G0400130, G04000112 -in.county_and_puma G0400130, G04000113 -in.county_and_puma G0400130, G04000114 -in.county_and_puma G0400130, G04000115 -in.county_and_puma G0400130, G04000116 -in.county_and_puma G0400130, G04000117 -in.county_and_puma G0400130, G04000118 -in.county_and_puma G0400130, G04000119 -in.county_and_puma G0400130, G04000120 -in.county_and_puma G0400130, G04000121 -in.county_and_puma G0400130, G04000122 -in.county_and_puma G0400130, G04000123 -in.county_and_puma G0400130, G04000124 -in.county_and_puma G0400130, G04000125 -in.county_and_puma G0400130, G04000126 -in.county_and_puma G0400130, G04000127 -in.county_and_puma G0400130, G04000128 -in.county_and_puma G0400130, G04000129 -in.county_and_puma G0400130, G04000130 -in.county_and_puma G0400130, G04000131 -in.county_and_puma G0400130, G04000132 -in.county_and_puma G0400130, G04000133 -in.county_and_puma G0400130, G04000134 -in.county_and_puma G0400150, G04000600 -in.county_and_puma G0400170, G04000300 -in.county_and_puma G0400190, G04000201 -in.county_and_puma G0400190, G04000202 -in.county_and_puma G0400190, G04000203 -in.county_and_puma G0400190, G04000204 -in.county_and_puma G0400190, G04000205 -in.county_and_puma G0400190, G04000206 -in.county_and_puma G0400190, G04000207 -in.county_and_puma G0400190, G04000208 -in.county_and_puma G0400190, G04000209 -in.county_and_puma G0400210, G04000803 -in.county_and_puma G0400210, G04000805 -in.county_and_puma G0400210, G04000807 -in.county_and_puma G0400230, G04000900 -in.county_and_puma G0400250, G04000500 -in.county_and_puma G0400270, G04000700 -in.county_and_puma G0500030, G05001800 -in.county_and_puma G0500050, G05000300 -in.county_and_puma G0500070, G05000100 -in.county_and_puma G0500090, G05000300 -in.county_and_puma G0500150, G05000300 -in.county_and_puma G0500190, G05001600 -in.county_and_puma G0500210, G05000500 -in.county_and_puma G0500230, G05000400 -in.county_and_puma G0500270, G05001900 -in.county_and_puma G0500290, G05001300 -in.county_and_puma G0500310, G05000500 -in.county_and_puma G0500330, G05001400 -in.county_and_puma G0500350, G05000600 -in.county_and_puma G0500370, G05000700 -in.county_and_puma G0500430, G05001800 -in.county_and_puma G0500450, G05001100 -in.county_and_puma G0500470, G05001500 -in.county_and_puma G0500490, G05000400 -in.county_and_puma G0500510, G05001600 -in.county_and_puma G0500530, G05001700 -in.county_and_puma G0500550, G05000500 -in.county_and_puma G0500570, G05002000 -in.county_and_puma G0500590, G05001600 -in.county_and_puma G0500630, G05000400 -in.county_and_puma G0500650, G05000400 -in.county_and_puma G0500670, G05000800 -in.county_and_puma G0500690, G05001700 -in.county_and_puma G0500710, G05001300 -in.county_and_puma G0500750, G05000500 -in.county_and_puma G0500830, G05001500 -in.county_and_puma G0500850, G05001100 -in.county_and_puma G0500870, G05000300 -in.county_and_puma G0500890, G05000300 -in.county_and_puma G0500910, G05002000 -in.county_and_puma G0500930, G05000600 -in.county_and_puma G0501030, G05001900 -in.county_and_puma G0501070, G05000700 -in.county_and_puma G0501110, G05000700 -in.county_and_puma G0501130, G05001500 -in.county_and_puma G0501150, G05001300 -in.county_and_puma G0501190, G05000900 -in.county_and_puma G0501190, G05001000 -in.county_and_puma G0501210, G05000500 -in.county_and_puma G0501230, G05000700 -in.county_and_puma G0501250, G05001200 -in.county_and_puma G0501310, G05001400 -in.county_and_puma G0501330, G05001500 -in.county_and_puma G0501350, G05000400 -in.county_and_puma G0501370, G05000400 -in.county_and_puma G0501390, G05001900 -in.county_and_puma G0501410, G05000400 -in.county_and_puma G0501430, G05000200 -in.county_and_puma G0501450, G05000800 -in.county_and_puma G0501490, G05001300 -in.county_and_puma G0600010, G06000101 -in.county_and_puma G0600010, G06000102 -in.county_and_puma G0600010, G06000103 -in.county_and_puma G0600010, G06000104 -in.county_and_puma G0600010, G06000105 -in.county_and_puma G0600010, G06000106 -in.county_and_puma G0600010, G06000107 -in.county_and_puma G0600010, G06000108 -in.county_and_puma G0600010, G06000109 -in.county_and_puma G0600010, G06000110 -in.county_and_puma G0600050, G06000300 -in.county_and_puma G0600070, G06000701 -in.county_and_puma G0600070, G06000702 -in.county_and_puma G0600090, G06000300 -in.county_and_puma G0600110, G06001100 -in.county_and_puma G0600130, G06001301 -in.county_and_puma G0600130, G06001302 -in.county_and_puma G0600130, G06001303 -in.county_and_puma G0600130, G06001304 -in.county_and_puma G0600130, G06001305 -in.county_and_puma G0600130, G06001306 -in.county_and_puma G0600130, G06001307 -in.county_and_puma G0600130, G06001308 -in.county_and_puma G0600130, G06001309 -in.county_and_puma G0600150, G06001500 -in.county_and_puma G0600170, G06001700 -in.county_and_puma G0600190, G06001901 -in.county_and_puma G0600190, G06001902 -in.county_and_puma G0600190, G06001903 -in.county_and_puma G0600190, G06001904 -in.county_and_puma G0600190, G06001905 -in.county_and_puma G0600190, G06001906 -in.county_and_puma G0600190, G06001907 -in.county_and_puma G0600210, G06001100 -in.county_and_puma G0600230, G06002300 -in.county_and_puma G0600250, G06002500 -in.county_and_puma G0600270, G06000300 -in.county_and_puma G0600290, G06002901 -in.county_and_puma G0600290, G06002902 -in.county_and_puma G0600290, G06002903 -in.county_and_puma G0600290, G06002904 -in.county_and_puma G0600290, G06002905 -in.county_and_puma G0600310, G06003100 -in.county_and_puma G0600330, G06003300 -in.county_and_puma G0600350, G06001500 -in.county_and_puma G0600370, G06003701 -in.county_and_puma G0600370, G06003702 -in.county_and_puma G0600370, G06003703 -in.county_and_puma G0600370, G06003704 -in.county_and_puma G0600370, G06003705 -in.county_and_puma G0600370, G06003706 -in.county_and_puma G0600370, G06003707 -in.county_and_puma G0600370, G06003708 -in.county_and_puma G0600370, G06003709 -in.county_and_puma G0600370, G06003710 -in.county_and_puma G0600370, G06003711 -in.county_and_puma G0600370, G06003712 -in.county_and_puma G0600370, G06003713 -in.county_and_puma G0600370, G06003714 -in.county_and_puma G0600370, G06003715 -in.county_and_puma G0600370, G06003716 -in.county_and_puma G0600370, G06003717 -in.county_and_puma G0600370, G06003718 -in.county_and_puma G0600370, G06003719 -in.county_and_puma G0600370, G06003720 -in.county_and_puma G0600370, G06003721 -in.county_and_puma G0600370, G06003722 -in.county_and_puma G0600370, G06003723 -in.county_and_puma G0600370, G06003724 -in.county_and_puma G0600370, G06003725 -in.county_and_puma G0600370, G06003726 -in.county_and_puma G0600370, G06003727 -in.county_and_puma G0600370, G06003728 -in.county_and_puma G0600370, G06003729 -in.county_and_puma G0600370, G06003730 -in.county_and_puma G0600370, G06003731 -in.county_and_puma G0600370, G06003732 -in.county_and_puma G0600370, G06003733 -in.county_and_puma G0600370, G06003734 -in.county_and_puma G0600370, G06003735 -in.county_and_puma G0600370, G06003736 -in.county_and_puma G0600370, G06003737 -in.county_and_puma G0600370, G06003738 -in.county_and_puma G0600370, G06003739 -in.county_and_puma G0600370, G06003740 -in.county_and_puma G0600370, G06003741 -in.county_and_puma G0600370, G06003742 -in.county_and_puma G0600370, G06003743 -in.county_and_puma G0600370, G06003744 -in.county_and_puma G0600370, G06003745 -in.county_and_puma G0600370, G06003746 -in.county_and_puma G0600370, G06003747 -in.county_and_puma G0600370, G06003748 -in.county_and_puma G0600370, G06003749 -in.county_and_puma G0600370, G06003750 -in.county_and_puma G0600370, G06003751 -in.county_and_puma G0600370, G06003752 -in.county_and_puma G0600370, G06003753 -in.county_and_puma G0600370, G06003754 -in.county_and_puma G0600370, G06003755 -in.county_and_puma G0600370, G06003756 -in.county_and_puma G0600370, G06003757 -in.county_and_puma G0600370, G06003758 -in.county_and_puma G0600370, G06003759 -in.county_and_puma G0600370, G06003760 -in.county_and_puma G0600370, G06003761 -in.county_and_puma G0600370, G06003762 -in.county_and_puma G0600370, G06003763 -in.county_and_puma G0600370, G06003764 -in.county_and_puma G0600370, G06003765 -in.county_and_puma G0600370, G06003766 -in.county_and_puma G0600370, G06003767 -in.county_and_puma G0600370, G06003768 -in.county_and_puma G0600370, G06003769 -in.county_and_puma G0600390, G06003900 -in.county_and_puma G0600410, G06004101 -in.county_and_puma G0600410, G06004102 -in.county_and_puma G0600430, G06000300 -in.county_and_puma G0600450, G06003300 -in.county_and_puma G0600470, G06004701 -in.county_and_puma G0600470, G06004702 -in.county_and_puma G0600510, G06000300 -in.county_and_puma G0600530, G06005301 -in.county_and_puma G0600530, G06005302 -in.county_and_puma G0600530, G06005303 -in.county_and_puma G0600550, G06005500 -in.county_and_puma G0600570, G06005700 -in.county_and_puma G0600590, G06005901 -in.county_and_puma G0600590, G06005902 -in.county_and_puma G0600590, G06005903 -in.county_and_puma G0600590, G06005904 -in.county_and_puma G0600590, G06005905 -in.county_and_puma G0600590, G06005906 -in.county_and_puma G0600590, G06005907 -in.county_and_puma G0600590, G06005908 -in.county_and_puma G0600590, G06005909 -in.county_and_puma G0600590, G06005910 -in.county_and_puma G0600590, G06005911 -in.county_and_puma G0600590, G06005912 -in.county_and_puma G0600590, G06005913 -in.county_and_puma G0600590, G06005914 -in.county_and_puma G0600590, G06005915 -in.county_and_puma G0600590, G06005916 -in.county_and_puma G0600590, G06005917 -in.county_and_puma G0600590, G06005918 -in.county_and_puma G0600610, G06006101 -in.county_and_puma G0600610, G06006102 -in.county_and_puma G0600610, G06006103 -in.county_and_puma G0600630, G06001500 -in.county_and_puma G0600650, G06006501 -in.county_and_puma G0600650, G06006502 -in.county_and_puma G0600650, G06006503 -in.county_and_puma G0600650, G06006504 -in.county_and_puma G0600650, G06006505 -in.county_and_puma G0600650, G06006506 -in.county_and_puma G0600650, G06006507 -in.county_and_puma G0600650, G06006508 -in.county_and_puma G0600650, G06006509 -in.county_and_puma G0600650, G06006510 -in.county_and_puma G0600650, G06006511 -in.county_and_puma G0600650, G06006512 -in.county_and_puma G0600650, G06006513 -in.county_and_puma G0600650, G06006514 -in.county_and_puma G0600650, G06006515 -in.county_and_puma G0600670, G06006701 -in.county_and_puma G0600670, G06006702 -in.county_and_puma G0600670, G06006703 -in.county_and_puma G0600670, G06006704 -in.county_and_puma G0600670, G06006705 -in.county_and_puma G0600670, G06006706 -in.county_and_puma G0600670, G06006707 -in.county_and_puma G0600670, G06006708 -in.county_and_puma G0600670, G06006709 -in.county_and_puma G0600670, G06006710 -in.county_and_puma G0600670, G06006711 -in.county_and_puma G0600670, G06006712 -in.county_and_puma G0600690, G06005303 -in.county_and_puma G0600710, G06007101 -in.county_and_puma G0600710, G06007102 -in.county_and_puma G0600710, G06007103 -in.county_and_puma G0600710, G06007104 -in.county_and_puma G0600710, G06007105 -in.county_and_puma G0600710, G06007106 -in.county_and_puma G0600710, G06007107 -in.county_and_puma G0600710, G06007108 -in.county_and_puma G0600710, G06007109 -in.county_and_puma G0600710, G06007110 -in.county_and_puma G0600710, G06007111 -in.county_and_puma G0600710, G06007112 -in.county_and_puma G0600710, G06007113 -in.county_and_puma G0600710, G06007114 -in.county_and_puma G0600710, G06007115 -in.county_and_puma G0600730, G06007301 -in.county_and_puma G0600730, G06007302 -in.county_and_puma G0600730, G06007303 -in.county_and_puma G0600730, G06007304 -in.county_and_puma G0600730, G06007305 -in.county_and_puma G0600730, G06007306 -in.county_and_puma G0600730, G06007307 -in.county_and_puma G0600730, G06007308 -in.county_and_puma G0600730, G06007309 -in.county_and_puma G0600730, G06007310 -in.county_and_puma G0600730, G06007311 -in.county_and_puma G0600730, G06007312 -in.county_and_puma G0600730, G06007313 -in.county_and_puma G0600730, G06007314 -in.county_and_puma G0600730, G06007315 -in.county_and_puma G0600730, G06007316 -in.county_and_puma G0600730, G06007317 -in.county_and_puma G0600730, G06007318 -in.county_and_puma G0600730, G06007319 -in.county_and_puma G0600730, G06007320 -in.county_and_puma G0600730, G06007321 -in.county_and_puma G0600730, G06007322 -in.county_and_puma G0600750, G06007501 -in.county_and_puma G0600750, G06007502 -in.county_and_puma G0600750, G06007503 -in.county_and_puma G0600750, G06007504 -in.county_and_puma G0600750, G06007505 -in.county_and_puma G0600750, G06007506 -in.county_and_puma G0600750, G06007507 -in.county_and_puma G0600770, G06007701 -in.county_and_puma G0600770, G06007702 -in.county_and_puma G0600770, G06007703 -in.county_and_puma G0600770, G06007704 -in.county_and_puma G0600790, G06007901 -in.county_and_puma G0600790, G06007902 -in.county_and_puma G0600810, G06008101 -in.county_and_puma G0600810, G06008102 -in.county_and_puma G0600810, G06008103 -in.county_and_puma G0600810, G06008104 -in.county_and_puma G0600810, G06008105 -in.county_and_puma G0600810, G06008106 -in.county_and_puma G0600830, G06008301 -in.county_and_puma G0600830, G06008302 -in.county_and_puma G0600830, G06008303 -in.county_and_puma G0600850, G06008501 -in.county_and_puma G0600850, G06008502 -in.county_and_puma G0600850, G06008503 -in.county_and_puma G0600850, G06008504 -in.county_and_puma G0600850, G06008505 -in.county_and_puma G0600850, G06008506 -in.county_and_puma G0600850, G06008507 -in.county_and_puma G0600850, G06008508 -in.county_and_puma G0600850, G06008509 -in.county_and_puma G0600850, G06008510 -in.county_and_puma G0600850, G06008511 -in.county_and_puma G0600850, G06008512 -in.county_and_puma G0600850, G06008513 -in.county_and_puma G0600850, G06008514 -in.county_and_puma G0600870, G06008701 -in.county_and_puma G0600870, G06008702 -in.county_and_puma G0600890, G06008900 -in.county_and_puma G0600930, G06001500 -in.county_and_puma G0600950, G06009501 -in.county_and_puma G0600950, G06009502 -in.county_and_puma G0600950, G06009503 -in.county_and_puma G0600970, G06009701 -in.county_and_puma G0600970, G06009702 -in.county_and_puma G0600970, G06009703 -in.county_and_puma G0600990, G06009901 -in.county_and_puma G0600990, G06009902 -in.county_and_puma G0600990, G06009903 -in.county_and_puma G0600990, G06009904 -in.county_and_puma G0601010, G06010100 -in.county_and_puma G0601030, G06001100 -in.county_and_puma G0601050, G06001100 -in.county_and_puma G0601070, G06010701 -in.county_and_puma G0601070, G06010702 -in.county_and_puma G0601070, G06010703 -in.county_and_puma G0601090, G06000300 -in.county_and_puma G0601110, G06011101 -in.county_and_puma G0601110, G06011102 -in.county_and_puma G0601110, G06011103 -in.county_and_puma G0601110, G06011104 -in.county_and_puma G0601110, G06011105 -in.county_and_puma G0601110, G06011106 -in.county_and_puma G0601130, G06011300 -in.county_and_puma G0601150, G06010100 -in.county_and_puma G0800010, G08000805 -in.county_and_puma G0800010, G08000806 -in.county_and_puma G0800010, G08000807 -in.county_and_puma G0800010, G08000810 -in.county_and_puma G0800010, G08000824 -in.county_and_puma G0800030, G08000800 -in.county_and_puma G0800050, G08000808 -in.county_and_puma G0800050, G08000809 -in.county_and_puma G0800050, G08000810 -in.county_and_puma G0800050, G08000811 -in.county_and_puma G0800050, G08000815 -in.county_and_puma G0800050, G08000820 -in.county_and_puma G0800050, G08000824 -in.county_and_puma G0800070, G08000900 -in.county_and_puma G0800130, G08000801 -in.county_and_puma G0800130, G08000802 -in.county_and_puma G0800130, G08000803 -in.county_and_puma G0800130, G08000804 -in.county_and_puma G0800140, G08000804 -in.county_and_puma G0800150, G08000600 -in.county_and_puma G0800290, G08001002 -in.county_and_puma G0800310, G08000812 -in.county_and_puma G0800310, G08000813 -in.county_and_puma G0800310, G08000814 -in.county_and_puma G0800310, G08000815 -in.county_and_puma G0800310, G08000816 -in.county_and_puma G0800350, G08000821 -in.county_and_puma G0800350, G08000822 -in.county_and_puma G0800350, G08000823 -in.county_and_puma G0800370, G08000400 -in.county_and_puma G0800390, G08000823 -in.county_and_puma G0800410, G08004101 -in.county_and_puma G0800410, G08004102 -in.county_and_puma G0800410, G08004103 -in.county_and_puma G0800410, G08004104 -in.county_and_puma G0800410, G08004105 -in.county_and_puma G0800410, G08004106 -in.county_and_puma G0800430, G08000600 -in.county_and_puma G0800450, G08000200 -in.county_and_puma G0800490, G08000400 -in.county_and_puma G0800510, G08000900 -in.county_and_puma G0800590, G08000801 -in.county_and_puma G0800590, G08000804 -in.county_and_puma G0800590, G08000805 -in.county_and_puma G0800590, G08000817 -in.county_and_puma G0800590, G08000818 -in.county_and_puma G0800590, G08000819 -in.county_and_puma G0800590, G08000820 -in.county_and_puma G0800590, G08000821 -in.county_and_puma G0800670, G08000900 -in.county_and_puma G0800690, G08000102 -in.county_and_puma G0800690, G08000103 -in.county_and_puma G0800710, G08000800 -in.county_and_puma G0800750, G08000100 -in.county_and_puma G0800770, G08001001 -in.county_and_puma G0800770, G08001002 -in.county_and_puma G0800810, G08000200 -in.county_and_puma G0800830, G08000900 -in.county_and_puma G0800850, G08001002 -in.county_and_puma G0800870, G08000100 -in.county_and_puma G0800890, G08000800 -in.county_and_puma G0800930, G08000600 -in.county_and_puma G0800970, G08000400 -in.county_and_puma G0801010, G08000700 -in.county_and_puma G0801050, G08000800 -in.county_and_puma G0801070, G08000200 -in.county_and_puma G0801130, G08001002 -in.county_and_puma G0801170, G08000400 -in.county_and_puma G0801190, G08004101 -in.county_and_puma G0801230, G08000300 -in.county_and_puma G0801230, G08000802 -in.county_and_puma G0801230, G08000824 -in.county_and_puma G0900010, G09000100 -in.county_and_puma G0900010, G09000101 -in.county_and_puma G0900010, G09000102 -in.county_and_puma G0900010, G09000103 -in.county_and_puma G0900010, G09000104 -in.county_and_puma G0900010, G09000105 -in.county_and_puma G0900030, G09000300 -in.county_and_puma G0900030, G09000301 -in.county_and_puma G0900030, G09000302 -in.county_and_puma G0900030, G09000303 -in.county_and_puma G0900030, G09000304 -in.county_and_puma G0900030, G09000305 -in.county_and_puma G0900030, G09000306 -in.county_and_puma G0900050, G09000500 -in.county_and_puma G0900070, G09000700 -in.county_and_puma G0900090, G09000900 -in.county_and_puma G0900090, G09000901 -in.county_and_puma G0900090, G09000902 -in.county_and_puma G0900090, G09000903 -in.county_and_puma G0900090, G09000904 -in.county_and_puma G0900090, G09000905 -in.county_and_puma G0900090, G09000906 -in.county_and_puma G0900110, G09001100 -in.county_and_puma G0900110, G09001101 -in.county_and_puma G0900130, G09001300 -in.county_and_puma G0900150, G09001500 -in.county_and_puma G1000010, G10000200 -in.county_and_puma G1000030, G10000101 -in.county_and_puma G1000030, G10000102 -in.county_and_puma G1000030, G10000103 -in.county_and_puma G1000030, G10000104 -in.county_and_puma G1000050, G10000300 -in.county_and_puma G1100010, G11000101 -in.county_and_puma G1100010, G11000102 -in.county_and_puma G1100010, G11000103 -in.county_and_puma G1100010, G11000104 -in.county_and_puma G1100010, G11000105 -in.county_and_puma G1200010, G12000101 -in.county_and_puma G1200010, G12000102 -in.county_and_puma G1200030, G12008900 -in.county_and_puma G1200050, G12000500 -in.county_and_puma G1200070, G12002300 -in.county_and_puma G1200090, G12000901 -in.county_and_puma G1200090, G12000902 -in.county_and_puma G1200090, G12000903 -in.county_and_puma G1200090, G12000904 -in.county_and_puma G1200110, G12001101 -in.county_and_puma G1200110, G12001102 -in.county_and_puma G1200110, G12001103 -in.county_and_puma G1200110, G12001104 -in.county_and_puma G1200110, G12001105 -in.county_and_puma G1200110, G12001106 -in.county_and_puma G1200110, G12001107 -in.county_and_puma G1200110, G12001108 -in.county_and_puma G1200110, G12001109 -in.county_and_puma G1200110, G12001110 -in.county_and_puma G1200110, G12001111 -in.county_and_puma G1200110, G12001112 -in.county_and_puma G1200110, G12001113 -in.county_and_puma G1200110, G12001114 -in.county_and_puma G1200150, G12001500 -in.county_and_puma G1200170, G12001701 -in.county_and_puma G1200190, G12001900 -in.county_and_puma G1200210, G12002101 -in.county_and_puma G1200210, G12002102 -in.county_and_puma G1200210, G12002103 -in.county_and_puma G1200230, G12002300 -in.county_and_puma G1200270, G12002700 -in.county_and_puma G1200290, G12002300 -in.county_and_puma G1200310, G12003101 -in.county_and_puma G1200310, G12003102 -in.county_and_puma G1200310, G12003103 -in.county_and_puma G1200310, G12003104 -in.county_and_puma G1200310, G12003105 -in.county_and_puma G1200310, G12003106 -in.county_and_puma G1200310, G12003107 -in.county_and_puma G1200330, G12003301 -in.county_and_puma G1200330, G12003302 -in.county_and_puma G1200350, G12003500 -in.county_and_puma G1200370, G12006300 -in.county_and_puma G1200390, G12006300 -in.county_and_puma G1200410, G12002300 -in.county_and_puma G1200450, G12006300 -in.county_and_puma G1200490, G12002700 -in.county_and_puma G1200510, G12009300 -in.county_and_puma G1200530, G12005301 -in.county_and_puma G1200550, G12002700 -in.county_and_puma G1200570, G12005701 -in.county_and_puma G1200570, G12005702 -in.county_and_puma G1200570, G12005703 -in.county_and_puma G1200570, G12005704 -in.county_and_puma G1200570, G12005705 -in.county_and_puma G1200570, G12005706 -in.county_and_puma G1200570, G12005707 -in.county_and_puma G1200570, G12005708 -in.county_and_puma G1200590, G12000500 -in.county_and_puma G1200610, G12006100 -in.county_and_puma G1200630, G12006300 -in.county_and_puma G1200690, G12006901 -in.county_and_puma G1200690, G12006902 -in.county_and_puma G1200690, G12006903 -in.county_and_puma G1200710, G12007101 -in.county_and_puma G1200710, G12007102 -in.county_and_puma G1200710, G12007103 -in.county_and_puma G1200710, G12007104 -in.county_and_puma G1200710, G12007105 -in.county_and_puma G1200730, G12007300 -in.county_and_puma G1200730, G12007301 -in.county_and_puma G1200750, G12002300 -in.county_and_puma G1200790, G12012100 -in.county_and_puma G1200810, G12008101 -in.county_and_puma G1200810, G12008102 -in.county_and_puma G1200810, G12008103 -in.county_and_puma G1200830, G12008301 -in.county_and_puma G1200830, G12008302 -in.county_and_puma G1200830, G12008303 -in.county_and_puma G1200850, G12008500 -in.county_and_puma G1200860, G12008601 -in.county_and_puma G1200860, G12008602 -in.county_and_puma G1200860, G12008603 -in.county_and_puma G1200860, G12008604 -in.county_and_puma G1200860, G12008605 -in.county_and_puma G1200860, G12008606 -in.county_and_puma G1200860, G12008607 -in.county_and_puma G1200860, G12008608 -in.county_and_puma G1200860, G12008609 -in.county_and_puma G1200860, G12008610 -in.county_and_puma G1200860, G12008611 -in.county_and_puma G1200860, G12008612 -in.county_and_puma G1200860, G12008613 -in.county_and_puma G1200860, G12008614 -in.county_and_puma G1200860, G12008615 -in.county_and_puma G1200860, G12008616 -in.county_and_puma G1200860, G12008617 -in.county_and_puma G1200860, G12008618 -in.county_and_puma G1200860, G12008619 -in.county_and_puma G1200860, G12008620 -in.county_and_puma G1200860, G12008621 -in.county_and_puma G1200860, G12008622 -in.county_and_puma G1200860, G12008623 -in.county_and_puma G1200860, G12008624 -in.county_and_puma G1200860, G12008700 -in.county_and_puma G1200870, G12008700 -in.county_and_puma G1200890, G12008900 -in.county_and_puma G1200910, G12009100 -in.county_and_puma G1200930, G12009300 -in.county_and_puma G1200950, G12009501 -in.county_and_puma G1200950, G12009502 -in.county_and_puma G1200950, G12009503 -in.county_and_puma G1200950, G12009504 -in.county_and_puma G1200950, G12009505 -in.county_and_puma G1200950, G12009506 -in.county_and_puma G1200950, G12009507 -in.county_and_puma G1200950, G12009508 -in.county_and_puma G1200950, G12009509 -in.county_and_puma G1200950, G12009510 -in.county_and_puma G1200970, G12009701 -in.county_and_puma G1200970, G12009702 -in.county_and_puma G1200990, G12009901 -in.county_and_puma G1200990, G12009902 -in.county_and_puma G1200990, G12009903 -in.county_and_puma G1200990, G12009904 -in.county_and_puma G1200990, G12009905 -in.county_and_puma G1200990, G12009906 -in.county_and_puma G1200990, G12009907 -in.county_and_puma G1200990, G12009908 -in.county_and_puma G1200990, G12009909 -in.county_and_puma G1200990, G12009910 -in.county_and_puma G1200990, G12009911 -in.county_and_puma G1201010, G12010101 -in.county_and_puma G1201010, G12010102 -in.county_and_puma G1201010, G12010103 -in.county_and_puma G1201010, G12010104 -in.county_and_puma G1201030, G12010301 -in.county_and_puma G1201030, G12010302 -in.county_and_puma G1201030, G12010303 -in.county_and_puma G1201030, G12010304 -in.county_and_puma G1201030, G12010305 -in.county_and_puma G1201030, G12010306 -in.county_and_puma G1201030, G12010307 -in.county_and_puma G1201030, G12010308 -in.county_and_puma G1201050, G12010501 -in.county_and_puma G1201050, G12010502 -in.county_and_puma G1201050, G12010503 -in.county_and_puma G1201050, G12010504 -in.county_and_puma G1201070, G12010700 -in.county_and_puma G1201090, G12010700 -in.county_and_puma G1201090, G12010900 -in.county_and_puma G1201110, G12011101 -in.county_and_puma G1201110, G12011102 -in.county_and_puma G1201130, G12011300 -in.county_and_puma G1201150, G12011501 -in.county_and_puma G1201150, G12011502 -in.county_and_puma G1201150, G12011503 -in.county_and_puma G1201170, G12011701 -in.county_and_puma G1201170, G12011702 -in.county_and_puma G1201170, G12011703 -in.county_and_puma G1201170, G12011704 -in.county_and_puma G1201190, G12006902 -in.county_and_puma G1201190, G12006903 -in.county_and_puma G1201210, G12012100 -in.county_and_puma G1201230, G12012100 -in.county_and_puma G1201270, G12012701 -in.county_and_puma G1201270, G12012702 -in.county_and_puma G1201270, G12012703 -in.county_and_puma G1201270, G12012704 -in.county_and_puma G1201290, G12006300 -in.county_and_puma G1201310, G12000500 -in.county_and_puma G1201330, G12000500 -in.county_and_puma G1300010, G13001200 -in.county_and_puma G1300090, G13001600 -in.county_and_puma G1300110, G13003500 -in.county_and_puma G1300130, G13003800 -in.county_and_puma G1300150, G13002900 -in.county_and_puma G1300170, G13000700 -in.county_and_puma G1300190, G13000700 -in.county_and_puma G1300210, G13001400 -in.county_and_puma G1300250, G13000500 -in.county_and_puma G1300270, G13000700 -in.county_and_puma G1300290, G13000200 -in.county_and_puma G1300310, G13000300 -in.county_and_puma G1300330, G13004200 -in.county_and_puma G1300350, G13001900 -in.county_and_puma G1300390, G13000100 -in.county_and_puma G1300450, G13002300 -in.county_and_puma G1300470, G13002600 -in.county_and_puma G1300510, G13000401 -in.county_and_puma G1300510, G13000402 -in.county_and_puma G1300550, G13002600 -in.county_and_puma G1300570, G13003101 -in.county_and_puma G1300570, G13003102 -in.county_and_puma G1300590, G13003600 -in.county_and_puma G1300630, G13005001 -in.county_and_puma G1300630, G13005002 -in.county_and_puma G1300670, G13003001 -in.county_and_puma G1300670, G13003002 -in.county_and_puma G1300670, G13003003 -in.county_and_puma G1300670, G13003004 -in.county_and_puma G1300670, G13003005 -in.county_and_puma G1300690, G13000500 -in.county_and_puma G1300710, G13000800 -in.county_and_puma G1300730, G13004100 -in.county_and_puma G1300750, G13000700 -in.county_and_puma G1300770, G13002100 -in.county_and_puma G1300810, G13001800 -in.county_and_puma G1300830, G13002600 -in.county_and_puma G1300850, G13003200 -in.county_and_puma G1300870, G13001100 -in.county_and_puma G1300890, G13001007 -in.county_and_puma G1300890, G13001008 -in.county_and_puma G1300890, G13002001 -in.county_and_puma G1300890, G13002002 -in.county_and_puma G1300890, G13002003 -in.county_and_puma G1300890, G13002004 -in.county_and_puma G1300910, G13001300 -in.county_and_puma G1300950, G13000900 -in.county_and_puma G1300970, G13004400 -in.county_and_puma G1301030, G13000300 -in.county_and_puma G1301050, G13003700 -in.county_and_puma G1301070, G13001300 -in.county_and_puma G1301110, G13002800 -in.county_and_puma G1301130, G13002400 -in.county_and_puma G1301150, G13002500 -in.county_and_puma G1301170, G13003300 -in.county_and_puma G1301190, G13003500 -in.county_and_puma G1301210, G13001001 -in.county_and_puma G1301210, G13001002 -in.county_and_puma G1301210, G13001003 -in.county_and_puma G1301210, G13001004 -in.county_and_puma G1301210, G13001005 -in.county_and_puma G1301210, G13001006 -in.county_and_puma G1301210, G13001007 -in.county_and_puma G1301210, G13004600 -in.county_and_puma G1301230, G13002800 -in.county_and_puma G1301270, G13000100 -in.county_and_puma G1301290, G13002800 -in.county_and_puma G1301310, G13001100 -in.county_and_puma G1301330, G13003700 -in.county_and_puma G1301350, G13004001 -in.county_and_puma G1301350, G13004002 -in.county_and_puma G1301350, G13004003 -in.county_and_puma G1301350, G13004004 -in.county_and_puma G1301350, G13004005 -in.county_and_puma G1301350, G13004006 -in.county_and_puma G1301370, G13003500 -in.county_and_puma G1301390, G13003400 -in.county_and_puma G1301430, G13002500 -in.county_and_puma G1301450, G13001800 -in.county_and_puma G1301470, G13003500 -in.county_and_puma G1301510, G13006001 -in.county_and_puma G1301510, G13006002 -in.county_and_puma G1301530, G13001500 -in.county_and_puma G1301570, G13003800 -in.county_and_puma G1301630, G13004200 -in.county_and_puma G1301690, G13001600 -in.county_and_puma G1301710, G13001900 -in.county_and_puma G1301750, G13001300 -in.county_and_puma G1301770, G13000900 -in.county_and_puma G1301790, G13000200 -in.county_and_puma G1301850, G13000600 -in.county_and_puma G1301870, G13003200 -in.county_and_puma G1301890, G13004200 -in.county_and_puma G1301910, G13000100 -in.county_and_puma G1301950, G13003700 -in.county_and_puma G1301990, G13002200 -in.county_and_puma G1302050, G13001100 -in.county_and_puma G1302070, G13001600 -in.county_and_puma G1302110, G13003900 -in.county_and_puma G1302130, G13002800 -in.county_and_puma G1302150, G13001700 -in.county_and_puma G1302170, G13004300 -in.county_and_puma G1302190, G13003700 -in.county_and_puma G1302230, G13004500 -in.county_and_puma G1302250, G13001600 -in.county_and_puma G1302270, G13002800 -in.county_and_puma G1302290, G13000500 -in.county_and_puma G1302310, G13001900 -in.county_and_puma G1302330, G13002500 -in.county_and_puma G1302370, G13001600 -in.county_and_puma G1302410, G13003200 -in.county_and_puma G1302450, G13004000 -in.county_and_puma G1302470, G13004300 -in.county_and_puma G1302510, G13000300 -in.county_and_puma G1302550, G13001900 -in.county_and_puma G1302570, G13003500 -in.county_and_puma G1302610, G13001800 -in.county_and_puma G1302670, G13001200 -in.county_and_puma G1302710, G13001200 -in.county_and_puma G1302750, G13000800 -in.county_and_puma G1302770, G13000700 -in.county_and_puma G1302790, G13001200 -in.county_and_puma G1302810, G13003200 -in.county_and_puma G1302850, G13002200 -in.county_and_puma G1302910, G13003200 -in.county_and_puma G1302930, G13001900 -in.county_and_puma G1302950, G13002600 -in.county_and_puma G1302970, G13003900 -in.county_and_puma G1302990, G13000500 -in.county_and_puma G1303030, G13004200 -in.county_and_puma G1303050, G13001200 -in.county_and_puma G1303110, G13003200 -in.county_and_puma G1303130, G13002700 -in.county_and_puma G1303210, G13000800 -in.county_and_puma G1500010, G15000200 -in.county_and_puma G1500030, G15000301 -in.county_and_puma G1500030, G15000302 -in.county_and_puma G1500030, G15000303 -in.county_and_puma G1500030, G15000304 -in.county_and_puma G1500030, G15000305 -in.county_and_puma G1500030, G15000306 -in.county_and_puma G1500030, G15000307 -in.county_and_puma G1500030, G15000308 -in.county_and_puma G1500070, G15000100 -in.county_and_puma G1500090, G15000100 -in.county_and_puma G1600010, G16000400 -in.county_and_puma G1600010, G16000600 -in.county_and_puma G1600010, G16000701 -in.county_and_puma G1600010, G16000702 -in.county_and_puma G1600010, G16000800 -in.county_and_puma G1600050, G16001300 -in.county_and_puma G1600110, G16001100 -in.county_and_puma G1600130, G16001000 -in.county_and_puma G1600170, G16000100 -in.county_and_puma G1600190, G16001200 -in.county_and_puma G1600270, G16000400 -in.county_and_puma G1600270, G16000500 -in.county_and_puma G1600270, G16000600 -in.county_and_puma G1600310, G16000900 -in.county_and_puma G1600390, G16001000 -in.county_and_puma G1600430, G16001100 -in.county_and_puma G1600450, G16000400 -in.county_and_puma G1600470, G16001000 -in.county_and_puma G1600490, G16000300 -in.county_and_puma G1600510, G16001100 -in.county_and_puma G1600530, G16001000 -in.county_and_puma G1600550, G16000200 -in.county_and_puma G1600570, G16000100 -in.county_and_puma G1600650, G16001100 -in.county_and_puma G1600670, G16001000 -in.county_and_puma G1600690, G16000300 -in.county_and_puma G1600750, G16000400 -in.county_and_puma G1600790, G16000100 -in.county_and_puma G1600810, G16001100 -in.county_and_puma G1600830, G16000900 -in.county_and_puma G1600850, G16000300 -in.county_and_puma G1700010, G17000300 -in.county_and_puma G1700050, G17000501 -in.county_and_puma G1700070, G17002901 -in.county_and_puma G1700110, G17002501 -in.county_and_puma G1700150, G17000104 -in.county_and_puma G1700190, G17002100 -in.county_and_puma G1700210, G17001602 -in.county_and_puma G1700230, G17000700 -in.county_and_puma G1700270, G17000501 -in.county_and_puma G1700290, G17000600 -in.county_and_puma G1700310, G17003401 -in.county_and_puma G1700310, G17003407 -in.county_and_puma G1700310, G17003408 -in.county_and_puma G1700310, G17003409 -in.county_and_puma G1700310, G17003410 -in.county_and_puma G1700310, G17003411 -in.county_and_puma G1700310, G17003412 -in.county_and_puma G1700310, G17003413 -in.county_and_puma G1700310, G17003414 -in.county_and_puma G1700310, G17003415 -in.county_and_puma G1700310, G17003416 -in.county_and_puma G1700310, G17003417 -in.county_and_puma G1700310, G17003418 -in.county_and_puma G1700310, G17003419 -in.county_and_puma G1700310, G17003420 -in.county_and_puma G1700310, G17003421 -in.county_and_puma G1700310, G17003422 -in.county_and_puma G1700310, G17003501 -in.county_and_puma G1700310, G17003502 -in.county_and_puma G1700310, G17003503 -in.county_and_puma G1700310, G17003504 -in.county_and_puma G1700310, G17003520 -in.county_and_puma G1700310, G17003521 -in.county_and_puma G1700310, G17003522 -in.county_and_puma G1700310, G17003523 -in.county_and_puma G1700310, G17003524 -in.county_and_puma G1700310, G17003525 -in.county_and_puma G1700310, G17003526 -in.county_and_puma G1700310, G17003527 -in.county_and_puma G1700310, G17003528 -in.county_and_puma G1700310, G17003529 -in.county_and_puma G1700310, G17003530 -in.county_and_puma G1700310, G17003531 -in.county_and_puma G1700310, G17003532 -in.county_and_puma G1700330, G17000700 -in.county_and_puma G1700370, G17002601 -in.county_and_puma G1700390, G17001602 -in.county_and_puma G1700410, G17000600 -in.county_and_puma G1700430, G17003202 -in.county_and_puma G1700430, G17003203 -in.county_and_puma G1700430, G17003204 -in.county_and_puma G1700430, G17003205 -in.county_and_puma G1700430, G17003207 -in.county_and_puma G1700430, G17003208 -in.county_and_puma G1700430, G17003209 -in.county_and_puma G1700450, G17000600 -in.county_and_puma G1700490, G17000501 -in.county_and_puma G1700510, G17000501 -in.county_and_puma G1700550, G17000900 -in.county_and_puma G1700570, G17000202 -in.county_and_puma G1700630, G17003700 -in.county_and_puma G1700670, G17000202 -in.county_and_puma G1700730, G17000202 -in.county_and_puma G1700750, G17002200 -in.county_and_puma G1700770, G17000900 -in.county_and_puma G1700810, G17001001 -in.county_and_puma G1700830, G17000401 -in.county_and_puma G1700850, G17000104 -in.county_and_puma G1700890, G17003005 -in.county_and_puma G1700890, G17003007 -in.county_and_puma G1700890, G17003008 -in.county_and_puma G1700890, G17003009 -in.county_and_puma G1700910, G17002300 -in.county_and_puma G1700930, G17003700 -in.county_and_puma G1700950, G17002501 -in.county_and_puma G1700970, G17003306 -in.county_and_puma G1700970, G17003307 -in.county_and_puma G1700970, G17003308 -in.county_and_puma G1700970, G17003309 -in.county_and_puma G1700970, G17003310 -in.county_and_puma G1700990, G17002400 -in.county_and_puma G1701030, G17000104 -in.county_and_puma G1701050, G17002200 -in.county_and_puma G1701070, G17001602 -in.county_and_puma G1701090, G17000202 -in.county_and_puma G1701110, G17003601 -in.county_and_puma G1701110, G17003602 -in.county_and_puma G1701130, G17002000 -in.county_and_puma G1701150, G17001500 -in.county_and_puma G1701170, G17000401 -in.county_and_puma G1701190, G17001204 -in.county_and_puma G1701190, G17001205 -in.county_and_puma G1701210, G17001001 -in.county_and_puma G1701250, G17000300 -in.county_and_puma G1701270, G17000800 -in.county_and_puma G1701310, G17000202 -in.county_and_puma G1701330, G17001001 -in.county_and_puma G1701350, G17000501 -in.county_and_puma G1701370, G17000401 -in.county_and_puma G1701410, G17002700 -in.county_and_puma G1701430, G17001701 -in.county_and_puma G1701450, G17000900 -in.county_and_puma G1701470, G17001602 -in.county_and_puma G1701490, G17000300 -in.county_and_puma G1701570, G17001001 -in.county_and_puma G1701590, G17000700 -in.county_and_puma G1701610, G17000105 -in.county_and_puma G1701630, G17001104 -in.county_and_puma G1701630, G17001105 -in.county_and_puma G1701650, G17000800 -in.county_and_puma G1701670, G17001300 -in.county_and_puma G1701730, G17001602 -in.county_and_puma G1701770, G17002700 -in.county_and_puma G1701790, G17001900 -in.county_and_puma G1701810, G17000800 -in.county_and_puma G1701830, G17002200 -in.county_and_puma G1701870, G17000202 -in.county_and_puma G1701890, G17001001 -in.county_and_puma G1701910, G17000700 -in.county_and_puma G1701930, G17000800 -in.county_and_puma G1701950, G17000104 -in.county_and_puma G1701970, G17003102 -in.county_and_puma G1701970, G17003105 -in.county_and_puma G1701970, G17003106 -in.county_and_puma G1701970, G17003107 -in.county_and_puma G1701970, G17003108 -in.county_and_puma G1701990, G17000900 -in.county_and_puma G1702010, G17002801 -in.county_and_puma G1702010, G17002901 -in.county_and_puma G1702030, G17002501 -in.county_and_puma G1800010, G18000900 -in.county_and_puma G1800030, G18001001 -in.county_and_puma G1800030, G18001002 -in.county_and_puma G1800030, G18001003 -in.county_and_puma G1800050, G18002900 -in.county_and_puma G1800110, G18001801 -in.county_and_puma G1800130, G18002100 -in.county_and_puma G1800150, G18001100 -in.county_and_puma G1800170, G18001300 -in.county_and_puma G1800190, G18003600 -in.county_and_puma G1800210, G18001600 -in.county_and_puma G1800230, G18001100 -in.county_and_puma G1800270, G18002700 -in.county_and_puma G1800290, G18003100 -in.county_and_puma G1800310, G18003000 -in.county_and_puma G1800330, G18000600 -in.county_and_puma G1800350, G18002000 -in.county_and_puma G1800370, G18003400 -in.county_and_puma G1800390, G18000500 -in.county_and_puma G1800410, G18002600 -in.county_and_puma G1800430, G18003500 -in.county_and_puma G1800450, G18001600 -in.county_and_puma G1800470, G18003100 -in.county_and_puma G1800490, G18000700 -in.county_and_puma G1800510, G18003200 -in.county_and_puma G1800530, G18001400 -in.county_and_puma G1800550, G18002700 -in.county_and_puma G1800570, G18001801 -in.county_and_puma G1800570, G18001802 -in.county_and_puma G1800570, G18001803 -in.county_and_puma G1800590, G18002500 -in.county_and_puma G1800610, G18003500 -in.county_and_puma G1800630, G18002200 -in.county_and_puma G1800650, G18001500 -in.county_and_puma G1800670, G18001300 -in.county_and_puma G1800690, G18000900 -in.county_and_puma G1800710, G18002900 -in.county_and_puma G1800730, G18000700 -in.county_and_puma G1800750, G18001500 -in.county_and_puma G1800770, G18003000 -in.county_and_puma G1800790, G18003000 -in.county_and_puma G1800810, G18002400 -in.county_and_puma G1800830, G18003400 -in.county_and_puma G1800850, G18000800 -in.county_and_puma G1800870, G18000600 -in.county_and_puma G1800890, G18000101 -in.county_and_puma G1800890, G18000102 -in.county_and_puma G1800890, G18000103 -in.county_and_puma G1800890, G18000104 -in.county_and_puma G1800910, G18000300 -in.county_and_puma G1800930, G18002700 -in.county_and_puma G1800950, G18001900 -in.county_and_puma G1800970, G18002301 -in.county_and_puma G1800970, G18002302 -in.county_and_puma G1800970, G18002303 -in.county_and_puma G1800970, G18002304 -in.county_and_puma G1800970, G18002305 -in.county_and_puma G1800970, G18002306 -in.county_and_puma G1800970, G18002307 -in.county_and_puma G1800990, G18000800 -in.county_and_puma G1801030, G18001400 -in.county_and_puma G1801050, G18002800 -in.county_and_puma G1801070, G18001100 -in.county_and_puma G1801090, G18002100 -in.county_and_puma G1801130, G18000600 -in.county_and_puma G1801170, G18002700 -in.county_and_puma G1801190, G18002700 -in.county_and_puma G1801210, G18001600 -in.county_and_puma G1801230, G18003400 -in.county_and_puma G1801270, G18000200 -in.county_and_puma G1801290, G18003200 -in.county_and_puma G1801330, G18002100 -in.county_and_puma G1801350, G18001500 -in.county_and_puma G1801370, G18003100 -in.county_and_puma G1801390, G18002600 -in.county_and_puma G1801410, G18000401 -in.county_and_puma G1801410, G18000402 -in.county_and_puma G1801430, G18003000 -in.county_and_puma G1801450, G18002500 -in.county_and_puma G1801470, G18003400 -in.county_and_puma G1801490, G18000700 -in.county_and_puma G1801510, G18000600 -in.county_and_puma G1801530, G18001600 -in.county_and_puma G1801570, G18001200 -in.county_and_puma G1801590, G18001300 -in.county_and_puma G1801630, G18003300 -in.county_and_puma G1801650, G18001600 -in.county_and_puma G1801670, G18001700 -in.county_and_puma G1801690, G18001400 -in.county_and_puma G1801730, G18003200 -in.county_and_puma G1801750, G18003500 -in.county_and_puma G1801770, G18002600 -in.county_and_puma G1801790, G18000900 -in.county_and_puma G1801810, G18001100 -in.county_and_puma G1801830, G18000900 -in.county_and_puma G1900050, G19000400 -in.county_and_puma G1900070, G19001800 -in.county_and_puma G1900110, G19001200 -in.county_and_puma G1900130, G19000500 -in.county_and_puma G1900150, G19001300 -in.county_and_puma G1900170, G19000400 -in.county_and_puma G1900190, G19000700 -in.county_and_puma G1900210, G19001900 -in.county_and_puma G1900230, G19000600 -in.county_and_puma G1900270, G19001900 -in.county_and_puma G1900290, G19002100 -in.county_and_puma G1900310, G19000800 -in.county_and_puma G1900330, G19000200 -in.county_and_puma G1900410, G19000100 -in.county_and_puma G1900430, G19000400 -in.county_and_puma G1900450, G19000800 -in.county_and_puma G1900470, G19001900 -in.county_and_puma G1900490, G19001400 -in.county_and_puma G1900490, G19001500 -in.county_and_puma G1900550, G19000700 -in.county_and_puma G1900570, G19002300 -in.county_and_puma G1900590, G19000100 -in.county_and_puma G1900610, G19000700 -in.county_and_puma G1900650, G19000400 -in.county_and_puma G1900670, G19000200 -in.county_and_puma G1900790, G19000600 -in.county_and_puma G1900830, G19000600 -in.county_and_puma G1900850, G19002100 -in.county_and_puma G1900870, G19002300 -in.county_and_puma G1900950, G19001200 -in.county_and_puma G1900970, G19000700 -in.county_and_puma G1900990, G19001400 -in.county_and_puma G1901010, G19002200 -in.county_and_puma G1901030, G19001100 -in.county_and_puma G1901050, G19000800 -in.county_and_puma G1901090, G19000200 -in.county_and_puma G1901110, G19002300 -in.county_and_puma G1901130, G19001000 -in.county_and_puma G1901210, G19001400 -in.county_and_puma G1901230, G19002200 -in.county_and_puma G1901250, G19001400 -in.county_and_puma G1901270, G19001200 -in.county_and_puma G1901390, G19000800 -in.county_and_puma G1901410, G19000100 -in.county_and_puma G1901450, G19002100 -in.county_and_puma G1901490, G19002000 -in.county_and_puma G1901530, G19001500 -in.county_and_puma G1901530, G19001600 -in.county_and_puma G1901530, G19001700 -in.county_and_puma G1901550, G19002100 -in.county_and_puma G1901570, G19001200 -in.county_and_puma G1901630, G19000900 -in.county_and_puma G1901670, G19000100 -in.county_and_puma G1901690, G19001300 -in.county_and_puma G1901710, G19001200 -in.county_and_puma G1901790, G19002200 -in.county_and_puma G1901810, G19001400 -in.county_and_puma G1901830, G19002200 -in.county_and_puma G1901870, G19000600 -in.county_and_puma G1901910, G19000400 -in.county_and_puma G1901930, G19002000 -in.county_and_puma G2000050, G20000400 -in.county_and_puma G2000090, G20001100 -in.county_and_puma G2000110, G20001400 -in.county_and_puma G2000150, G20001302 -in.county_and_puma G2000210, G20001500 -in.county_and_puma G2000350, G20000900 -in.county_and_puma G2000350, G20001100 -in.county_and_puma G2000370, G20001500 -in.county_and_puma G2000410, G20000200 -in.county_and_puma G2000450, G20000700 -in.county_and_puma G2000510, G20000100 -in.county_and_puma G2000550, G20001200 -in.county_and_puma G2000570, G20001200 -in.county_and_puma G2000590, G20001400 -in.county_and_puma G2000610, G20000300 -in.county_and_puma G2000790, G20001301 -in.county_and_puma G2000870, G20000400 -in.county_and_puma G2000910, G20000601 -in.county_and_puma G2000910, G20000602 -in.county_and_puma G2000910, G20000603 -in.county_and_puma G2000910, G20000604 -in.county_and_puma G2000990, G20001500 -in.county_and_puma G2001030, G20000400 -in.county_and_puma G2001110, G20000900 -in.county_and_puma G2001130, G20001000 -in.county_and_puma G2001210, G20001400 -in.county_and_puma G2001250, G20001500 -in.county_and_puma G2001330, G20001500 -in.county_and_puma G2001390, G20000802 -in.county_and_puma G2001490, G20000300 -in.county_and_puma G2001550, G20001000 -in.county_and_puma G2001610, G20000300 -in.county_and_puma G2001690, G20000200 -in.county_and_puma G2001730, G20001301 -in.county_and_puma G2001730, G20001302 -in.county_and_puma G2001730, G20001303 -in.county_and_puma G2001730, G20001304 -in.county_and_puma G2001750, G20001200 -in.county_and_puma G2001770, G20000801 -in.county_and_puma G2001770, G20000802 -in.county_and_puma G2001910, G20001100 -in.county_and_puma G2002090, G20000500 -in.county_and_puma G2100010, G21000600 -in.county_and_puma G2100030, G21000400 -in.county_and_puma G2100050, G21002000 -in.county_and_puma G2100090, G21000400 -in.county_and_puma G2100130, G21000900 -in.county_and_puma G2100150, G21002500 -in.county_and_puma G2100170, G21002300 -in.county_and_puma G2100190, G21002800 -in.county_and_puma G2100210, G21002100 -in.county_and_puma G2100270, G21001300 -in.county_and_puma G2100290, G21001600 -in.county_and_puma G2100350, G21000100 -in.county_and_puma G2100370, G21002600 -in.county_and_puma G2100430, G21002800 -in.county_and_puma G2100450, G21000600 -in.county_and_puma G2100470, G21000300 -in.county_and_puma G2100490, G21002300 -in.county_and_puma G2100510, G21000800 -in.county_and_puma G2100590, G21001500 -in.county_and_puma G2100650, G21002200 -in.county_and_puma G2100670, G21001901 -in.county_and_puma G2100670, G21001902 -in.county_and_puma G2100690, G21002700 -in.county_and_puma G2100710, G21001100 -in.county_and_puma G2100730, G21002000 -in.county_and_puma G2100790, G21002100 -in.county_and_puma G2100810, G21002600 -in.county_and_puma G2100830, G21000100 -in.county_and_puma G2100850, G21001300 -in.county_and_puma G2100890, G21002800 -in.county_and_puma G2100930, G21001200 -in.county_and_puma G2100930, G21001300 -in.county_and_puma G2100950, G21000900 -in.county_and_puma G2100970, G21002300 -in.county_and_puma G2100990, G21000400 -in.county_and_puma G2101010, G21001400 -in.county_and_puma G2101030, G21001800 -in.county_and_puma G2101070, G21000200 -in.county_and_puma G2101110, G21001701 -in.county_and_puma G2101110, G21001702 -in.county_and_puma G2101110, G21001703 -in.county_and_puma G2101110, G21001704 -in.county_and_puma G2101110, G21001705 -in.county_and_puma G2101110, G21001706 -in.county_and_puma G2101130, G21002100 -in.county_and_puma G2101150, G21001100 -in.county_and_puma G2101170, G21002400 -in.county_and_puma G2101190, G21001000 -in.county_and_puma G2101210, G21000900 -in.county_and_puma G2101250, G21000800 -in.county_and_puma G2101270, G21002800 -in.county_and_puma G2101330, G21001000 -in.county_and_puma G2101370, G21002100 -in.county_and_puma G2101410, G21000400 -in.county_and_puma G2101450, G21000100 -in.county_and_puma G2101470, G21000700 -in.county_and_puma G2101510, G21002200 -in.county_and_puma G2101550, G21001200 -in.county_and_puma G2101570, G21000100 -in.county_and_puma G2101610, G21002700 -in.county_and_puma G2101630, G21001300 -in.county_and_puma G2101670, G21002000 -in.county_and_puma G2101730, G21002700 -in.county_and_puma G2101770, G21000200 -in.county_and_puma G2101790, G21001200 -in.county_and_puma G2101830, G21001400 -in.county_and_puma G2101850, G21001800 -in.county_and_puma G2101930, G21001000 -in.county_and_puma G2101950, G21001100 -in.county_and_puma G2101990, G21000700 -in.county_and_puma G2102030, G21000800 -in.county_and_puma G2102050, G21002700 -in.county_and_puma G2102070, G21000600 -in.county_and_puma G2102090, G21002300 -in.county_and_puma G2102110, G21001800 -in.county_and_puma G2102130, G21000400 -in.county_and_puma G2102150, G21001600 -in.county_and_puma G2102170, G21000600 -in.county_and_puma G2102210, G21000300 -in.county_and_puma G2102270, G21000500 -in.county_and_puma G2102310, G21000700 -in.county_and_puma G2102350, G21000900 -in.county_and_puma G2102390, G21002000 -in.county_and_puma G2200010, G22001100 -in.county_and_puma G2200030, G22000800 -in.county_and_puma G2200050, G22001600 -in.county_and_puma G2200070, G22002000 -in.county_and_puma G2200090, G22000600 -in.county_and_puma G2200110, G22000800 -in.county_and_puma G2200130, G22000300 -in.county_and_puma G2200150, G22000200 -in.county_and_puma G2200170, G22000100 -in.county_and_puma G2200170, G22000101 -in.county_and_puma G2200190, G22000800 -in.county_and_puma G2200190, G22000900 -in.county_and_puma G2200270, G22000300 -in.county_and_puma G2200290, G22000600 -in.county_and_puma G2200310, G22000300 -in.county_and_puma G2200330, G22001500 -in.county_and_puma G2200330, G22001501 -in.county_and_puma G2200330, G22001502 -in.county_and_puma G2200370, G22001400 -in.county_and_puma G2200390, G22001000 -in.county_and_puma G2200410, G22000500 -in.county_and_puma G2200430, G22000600 -in.county_and_puma G2200450, G22001300 -in.county_and_puma G2200470, G22001400 -in.county_and_puma G2200490, G22000500 -in.county_and_puma G2200510, G22002300 -in.county_and_puma G2200510, G22002301 -in.county_and_puma G2200510, G22002302 -in.county_and_puma G2200510, G22002500 -in.county_and_puma G2200530, G22000900 -in.county_and_puma G2200550, G22001200 -in.county_and_puma G2200550, G22001201 -in.county_and_puma G2200570, G22002000 -in.county_and_puma G2200610, G22000300 -in.county_and_puma G2200630, G22001700 -in.county_and_puma G2200670, G22000500 -in.county_and_puma G2200690, G22000300 -in.county_and_puma G2200710, G22002400 -in.county_and_puma G2200710, G22002401 -in.county_and_puma G2200710, G22002402 -in.county_and_puma G2200730, G22000400 -in.county_and_puma G2200750, G22002500 -in.county_and_puma G2200770, G22001400 -in.county_and_puma G2200790, G22000700 -in.county_and_puma G2200830, G22000500 -in.county_and_puma G2200850, G22000300 -in.county_and_puma G2200870, G22002500 -in.county_and_puma G2200890, G22001900 -in.county_and_puma G2200930, G22001900 -in.county_and_puma G2200950, G22001900 -in.county_and_puma G2200970, G22001000 -in.county_and_puma G2200990, G22001300 -in.county_and_puma G2201010, G22001300 -in.county_and_puma G2201030, G22002200 -in.county_and_puma G2201030, G22002201 -in.county_and_puma G2201050, G22001800 -in.county_and_puma G2201090, G22002100 -in.county_and_puma G2201110, G22000500 -in.county_and_puma G2201130, G22001100 -in.county_and_puma G2201150, G22000700 -in.county_and_puma G2201170, G22001800 -in.county_and_puma G2201190, G22000200 -in.county_and_puma G2201210, G22001400 -in.county_and_puma G2201270, G22000600 -in.county_and_puma G2300010, G23000600 -in.county_and_puma G2300030, G23000100 -in.county_and_puma G2300050, G23000700 -in.county_and_puma G2300050, G23000800 -in.county_and_puma G2300050, G23000900 -in.county_and_puma G2300050, G23001000 -in.county_and_puma G2300070, G23000200 -in.county_and_puma G2300090, G23000500 -in.county_and_puma G2300110, G23000400 -in.county_and_puma G2300130, G23000500 -in.county_and_puma G2300150, G23000500 -in.county_and_puma G2300170, G23000200 -in.county_and_puma G2300190, G23000300 -in.county_and_puma G2300210, G23000200 -in.county_and_puma G2300230, G23000700 -in.county_and_puma G2300250, G23000200 -in.county_and_puma G2300270, G23000500 -in.county_and_puma G2300290, G23000100 -in.county_and_puma G2300310, G23000800 -in.county_and_puma G2300310, G23000900 -in.county_and_puma G2400010, G24000100 -in.county_and_puma G2400030, G24001201 -in.county_and_puma G2400030, G24001202 -in.county_and_puma G2400030, G24001203 -in.county_and_puma G2400030, G24001204 -in.county_and_puma G2400050, G24000501 -in.county_and_puma G2400050, G24000502 -in.county_and_puma G2400050, G24000503 -in.county_and_puma G2400050, G24000504 -in.county_and_puma G2400050, G24000505 -in.county_and_puma G2400050, G24000506 -in.county_and_puma G2400050, G24000507 -in.county_and_puma G2400090, G24001500 -in.county_and_puma G2400110, G24001300 -in.county_and_puma G2400130, G24000400 -in.county_and_puma G2400150, G24000700 -in.county_and_puma G2400170, G24001600 -in.county_and_puma G2400190, G24001300 -in.county_and_puma G2400210, G24000301 -in.county_and_puma G2400210, G24000302 -in.county_and_puma G2400230, G24000100 -in.county_and_puma G2400250, G24000601 -in.county_and_puma G2400250, G24000602 -in.county_and_puma G2400270, G24000901 -in.county_and_puma G2400270, G24000902 -in.county_and_puma G2400290, G24001300 -in.county_and_puma G2400310, G24001001 -in.county_and_puma G2400310, G24001002 -in.county_and_puma G2400310, G24001003 -in.county_and_puma G2400310, G24001004 -in.county_and_puma G2400310, G24001005 -in.county_and_puma G2400310, G24001006 -in.county_and_puma G2400310, G24001007 -in.county_and_puma G2400330, G24001101 -in.county_and_puma G2400330, G24001102 -in.county_and_puma G2400330, G24001103 -in.county_and_puma G2400330, G24001104 -in.county_and_puma G2400330, G24001105 -in.county_and_puma G2400330, G24001106 -in.county_and_puma G2400330, G24001107 -in.county_and_puma G2400350, G24001300 -in.county_and_puma G2400370, G24001500 -in.county_and_puma G2400390, G24001400 -in.county_and_puma G2400410, G24001300 -in.county_and_puma G2400430, G24000200 -in.county_and_puma G2400450, G24001400 -in.county_and_puma G2400470, G24001400 -in.county_and_puma G2405100, G24000801 -in.county_and_puma G2405100, G24000802 -in.county_and_puma G2405100, G24000803 -in.county_and_puma G2405100, G24000804 -in.county_and_puma G2405100, G24000805 -in.county_and_puma G2500010, G25004700 -in.county_and_puma G2500010, G25004800 -in.county_and_puma G2500030, G25000100 -in.county_and_puma G2500050, G25004200 -in.county_and_puma G2500050, G25004301 -in.county_and_puma G2500050, G25004302 -in.county_and_puma G2500050, G25004303 -in.county_and_puma G2500050, G25004500 -in.county_and_puma G2500050, G25004901 -in.county_and_puma G2500070, G25004800 -in.county_and_puma G2500090, G25000701 -in.county_and_puma G2500090, G25000702 -in.county_and_puma G2500090, G25000703 -in.county_and_puma G2500090, G25000704 -in.county_and_puma G2500090, G25001000 -in.county_and_puma G2500090, G25001300 -in.county_and_puma G2500090, G25002800 -in.county_and_puma G2500110, G25000200 -in.county_and_puma G2500130, G25001600 -in.county_and_puma G2500130, G25001900 -in.county_and_puma G2500130, G25001901 -in.county_and_puma G2500130, G25001902 -in.county_and_puma G2500150, G25000200 -in.county_and_puma G2500150, G25001600 -in.county_and_puma G2500170, G25000400 -in.county_and_puma G2500170, G25000501 -in.county_and_puma G2500170, G25000502 -in.county_and_puma G2500170, G25000503 -in.county_and_puma G2500170, G25000504 -in.county_and_puma G2500170, G25000505 -in.county_and_puma G2500170, G25000506 -in.county_and_puma G2500170, G25000507 -in.county_and_puma G2500170, G25000508 -in.county_and_puma G2500170, G25001000 -in.county_and_puma G2500170, G25001300 -in.county_and_puma G2500170, G25001400 -in.county_and_puma G2500170, G25002400 -in.county_and_puma G2500170, G25002800 -in.county_and_puma G2500170, G25003400 -in.county_and_puma G2500170, G25003500 -in.county_and_puma G2500190, G25004800 -in.county_and_puma G2500210, G25002400 -in.county_and_puma G2500210, G25003400 -in.county_and_puma G2500210, G25003500 -in.county_and_puma G2500210, G25003601 -in.county_and_puma G2500210, G25003602 -in.county_and_puma G2500210, G25003603 -in.county_and_puma G2500210, G25003900 -in.county_and_puma G2500210, G25004000 -in.county_and_puma G2500230, G25003900 -in.county_and_puma G2500230, G25004000 -in.county_and_puma G2500230, G25004301 -in.county_and_puma G2500230, G25004901 -in.county_and_puma G2500230, G25004902 -in.county_and_puma G2500230, G25004903 -in.county_and_puma G2500250, G25003301 -in.county_and_puma G2500250, G25003302 -in.county_and_puma G2500250, G25003303 -in.county_and_puma G2500250, G25003304 -in.county_and_puma G2500250, G25003305 -in.county_and_puma G2500250, G25003306 -in.county_and_puma G2500270, G25000300 -in.county_and_puma G2500270, G25000301 -in.county_and_puma G2500270, G25000302 -in.county_and_puma G2500270, G25000303 -in.county_and_puma G2500270, G25000304 -in.county_and_puma G2500270, G25000400 -in.county_and_puma G2500270, G25002400 -in.county_and_puma G2600010, G26000300 -in.county_and_puma G2600030, G26000200 -in.county_and_puma G2600050, G26000900 -in.county_and_puma G2600070, G26000300 -in.county_and_puma G2600090, G26000400 -in.county_and_puma G2600110, G26001300 -in.county_and_puma G2600150, G26002000 -in.county_and_puma G2600170, G26001400 -in.county_and_puma G2600190, G26000500 -in.county_and_puma G2600210, G26002400 -in.county_and_puma G2600230, G26002200 -in.county_and_puma G2600250, G26002000 -in.county_and_puma G2600270, G26002300 -in.county_and_puma G2600290, G26000400 -in.county_and_puma G2600310, G26000300 -in.county_and_puma G2600330, G26000200 -in.county_and_puma G2600350, G26001200 -in.county_and_puma G2600370, G26001900 -in.county_and_puma G2600390, G26000300 -in.county_and_puma G2600410, G26000200 -in.county_and_puma G2600430, G26000100 -in.county_and_puma G2600450, G26001900 -in.county_and_puma G2600470, G26000400 -in.county_and_puma G2600490, G26001701 -in.county_and_puma G2600490, G26001702 -in.county_and_puma G2600490, G26001703 -in.county_and_puma G2600490, G26001704 -in.county_and_puma G2600510, G26001300 -in.county_and_puma G2600530, G26000100 -in.county_and_puma G2600550, G26000500 -in.county_and_puma G2600570, G26001200 -in.county_and_puma G2600590, G26002500 -in.county_and_puma G2600610, G26000100 -in.county_and_puma G2600630, G26001600 -in.county_and_puma G2600650, G26001801 -in.county_and_puma G2600650, G26001802 -in.county_and_puma G2600670, G26001100 -in.county_and_puma G2600690, G26001300 -in.county_and_puma G2600710, G26000100 -in.county_and_puma G2600730, G26001200 -in.county_and_puma G2600750, G26002600 -in.county_and_puma G2600770, G26002101 -in.county_and_puma G2600770, G26002102 -in.county_and_puma G2600790, G26000400 -in.county_and_puma G2600810, G26001001 -in.county_and_puma G2600810, G26001002 -in.county_and_puma G2600810, G26001003 -in.county_and_puma G2600810, G26001004 -in.county_and_puma G2600850, G26000600 -in.county_and_puma G2600870, G26001701 -in.county_and_puma G2600890, G26000500 -in.county_and_puma G2600910, G26002500 -in.county_and_puma G2600930, G26002800 -in.county_and_puma G2600970, G26000200 -in.county_and_puma G2600990, G26003001 -in.county_and_puma G2600990, G26003002 -in.county_and_puma G2600990, G26003003 -in.county_and_puma G2600990, G26003004 -in.county_and_puma G2600990, G26003005 -in.county_and_puma G2600990, G26003006 -in.county_and_puma G2601010, G26000500 -in.county_and_puma G2601030, G26000100 -in.county_and_puma G2601050, G26000600 -in.county_and_puma G2601070, G26001100 -in.county_and_puma G2601090, G26000200 -in.county_and_puma G2601110, G26001400 -in.county_and_puma G2601130, G26000400 -in.county_and_puma G2601150, G26003300 -in.county_and_puma G2601170, G26001100 -in.county_and_puma G2601190, G26000300 -in.county_and_puma G2601210, G26000700 -in.county_and_puma G2601230, G26000600 -in.county_and_puma G2601250, G26002901 -in.county_and_puma G2601250, G26002902 -in.county_and_puma G2601250, G26002903 -in.county_and_puma G2601250, G26002904 -in.county_and_puma G2601250, G26002905 -in.county_and_puma G2601250, G26002906 -in.county_and_puma G2601250, G26002907 -in.county_and_puma G2601250, G26002908 -in.county_and_puma G2601270, G26000600 -in.county_and_puma G2601290, G26001300 -in.county_and_puma G2601330, G26001100 -in.county_and_puma G2601350, G26000300 -in.county_and_puma G2601370, G26000300 -in.county_and_puma G2601390, G26000801 -in.county_and_puma G2601390, G26000802 -in.county_and_puma G2601410, G26000300 -in.county_and_puma G2601430, G26001300 -in.county_and_puma G2601450, G26001500 -in.county_and_puma G2601470, G26003100 -in.county_and_puma G2601490, G26002200 -in.county_and_puma G2601510, G26001600 -in.county_and_puma G2601530, G26000200 -in.county_and_puma G2601550, G26001704 -in.county_and_puma G2601570, G26001600 -in.county_and_puma G2601590, G26002300 -in.county_and_puma G2601610, G26002701 -in.county_and_puma G2601610, G26002702 -in.county_and_puma G2601610, G26002703 -in.county_and_puma G2601630, G26003201 -in.county_and_puma G2601630, G26003202 -in.county_and_puma G2601630, G26003203 -in.county_and_puma G2601630, G26003204 -in.county_and_puma G2601630, G26003205 -in.county_and_puma G2601630, G26003206 -in.county_and_puma G2601630, G26003207 -in.county_and_puma G2601630, G26003208 -in.county_and_puma G2601630, G26003209 -in.county_and_puma G2601630, G26003210 -in.county_and_puma G2601630, G26003211 -in.county_and_puma G2601630, G26003212 -in.county_and_puma G2601630, G26003213 -in.county_and_puma G2601650, G26000400 -in.county_and_puma G2700010, G27000300 -in.county_and_puma G2700030, G27001101 -in.county_and_puma G2700030, G27001102 -in.county_and_puma G2700030, G27001103 -in.county_and_puma G2700050, G27000200 -in.county_and_puma G2700070, G27000200 -in.county_and_puma G2700090, G27001000 -in.county_and_puma G2700130, G27002200 -in.county_and_puma G2700150, G27002000 -in.county_and_puma G2700170, G27000300 -in.county_and_puma G2700190, G27001700 -in.county_and_puma G2700210, G27000300 -in.county_and_puma G2700250, G27000600 -in.county_and_puma G2700270, G27000100 -in.county_and_puma G2700310, G27000400 -in.county_and_puma G2700350, G27000700 -in.county_and_puma G2700370, G27001501 -in.county_and_puma G2700370, G27001502 -in.county_and_puma G2700370, G27001503 -in.county_and_puma G2700390, G27002400 -in.county_and_puma G2700410, G27000800 -in.county_and_puma G2700430, G27002100 -in.county_and_puma G2700450, G27002600 -in.county_and_puma G2700470, G27002400 -in.county_and_puma G2700490, G27002300 -in.county_and_puma G2700530, G27001401 -in.county_and_puma G2700530, G27001402 -in.county_and_puma G2700530, G27001403 -in.county_and_puma G2700530, G27001404 -in.county_and_puma G2700530, G27001405 -in.county_and_puma G2700530, G27001406 -in.county_and_puma G2700530, G27001407 -in.county_and_puma G2700530, G27001408 -in.county_and_puma G2700530, G27001409 -in.county_and_puma G2700530, G27001410 -in.county_and_puma G2700550, G27002600 -in.county_and_puma G2700570, G27000200 -in.county_and_puma G2700590, G27000600 -in.county_and_puma G2700610, G27000300 -in.county_and_puma G2700650, G27000600 -in.county_and_puma G2700670, G27001900 -in.county_and_puma G2700710, G27000400 -in.county_and_puma G2700750, G27000400 -in.county_and_puma G2700790, G27002300 -in.county_and_puma G2700830, G27002000 -in.county_and_puma G2700850, G27001900 -in.county_and_puma G2700910, G27002100 -in.county_and_puma G2700930, G27001900 -in.county_and_puma G2700950, G27000600 -in.county_and_puma G2700970, G27000700 -in.county_and_puma G2700990, G27002400 -in.county_and_puma G2701030, G27002200 -in.county_and_puma G2701050, G27002100 -in.county_and_puma G2701090, G27002500 -in.county_and_puma G2701110, G27000800 -in.county_and_puma G2701130, G27000100 -in.county_and_puma G2701150, G27000600 -in.county_and_puma G2701190, G27000100 -in.county_and_puma G2701230, G27001301 -in.county_and_puma G2701230, G27001302 -in.county_and_puma G2701230, G27001303 -in.county_and_puma G2701230, G27001304 -in.county_and_puma G2701270, G27002000 -in.county_and_puma G2701290, G27001900 -in.county_and_puma G2701310, G27002300 -in.county_and_puma G2701350, G27000100 -in.county_and_puma G2701370, G27000400 -in.county_and_puma G2701370, G27000500 -in.county_and_puma G2701390, G27001600 -in.county_and_puma G2701410, G27001000 -in.county_and_puma G2701450, G27000900 -in.county_and_puma G2701470, G27002400 -in.county_and_puma G2701530, G27000700 -in.county_and_puma G2701570, G27002600 -in.county_and_puma G2701590, G27000700 -in.county_and_puma G2701610, G27002200 -in.county_and_puma G2701630, G27001201 -in.county_and_puma G2701630, G27001202 -in.county_and_puma G2701690, G27002600 -in.county_and_puma G2701710, G27001800 -in.county_and_puma G2800010, G28001600 -in.county_and_puma G2800030, G28000200 -in.county_and_puma G2800050, G28001600 -in.county_and_puma G2800070, G28000700 -in.county_and_puma G2800110, G28000800 -in.county_and_puma G2800130, G28000400 -in.county_and_puma G2800170, G28000400 -in.county_and_puma G2800230, G28001500 -in.county_and_puma G2800250, G28000600 -in.county_and_puma G2800270, G28000300 -in.county_and_puma G2800290, G28001200 -in.county_and_puma G2800310, G28001700 -in.county_and_puma G2800330, G28000100 -in.county_and_puma G2800350, G28001800 -in.county_and_puma G2800390, G28001900 -in.county_and_puma G2800430, G28000700 -in.county_and_puma G2800450, G28001900 -in.county_and_puma G2800470, G28002000 -in.county_and_puma G2800490, G28001000 -in.county_and_puma G2800490, G28001100 -in.county_and_puma G2800490, G28001200 -in.county_and_puma G2800510, G28000700 -in.county_and_puma G2800570, G28000400 -in.county_and_puma G2800590, G28002100 -in.county_and_puma G2800610, G28001400 -in.county_and_puma G2800670, G28001700 -in.county_and_puma G2800710, G28000400 -in.county_and_puma G2800730, G28001800 -in.county_and_puma G2800750, G28001500 -in.county_and_puma G2800790, G28001400 -in.county_and_puma G2800810, G28000500 -in.county_and_puma G2800830, G28000700 -in.county_and_puma G2800850, G28001600 -in.county_and_puma G2800870, G28000600 -in.county_and_puma G2800890, G28000900 -in.county_and_puma G2800890, G28001000 -in.county_and_puma G2800910, G28001800 -in.county_and_puma G2800930, G28000200 -in.county_and_puma G2800950, G28000400 -in.county_and_puma G2800990, G28001400 -in.county_and_puma G2801010, G28001500 -in.county_and_puma G2801050, G28000600 -in.county_and_puma G2801070, G28000300 -in.county_and_puma G2801090, G28001900 -in.county_and_puma G2801130, G28001600 -in.county_and_puma G2801150, G28000500 -in.county_and_puma G2801170, G28000200 -in.county_and_puma G2801210, G28001300 -in.county_and_puma G2801230, G28001400 -in.county_and_puma G2801270, G28001300 -in.county_and_puma G2801290, G28001400 -in.county_and_puma G2801310, G28001900 -in.county_and_puma G2801330, G28000800 -in.county_and_puma G2801370, G28000300 -in.county_and_puma G2801390, G28000200 -in.county_and_puma G2801410, G28000200 -in.county_and_puma G2801450, G28000500 -in.county_and_puma G2801470, G28001600 -in.county_and_puma G2801490, G28001200 -in.county_and_puma G2801510, G28000800 -in.county_and_puma G2801530, G28001700 -in.county_and_puma G2801590, G28000600 -in.county_and_puma G2801630, G28000900 -in.county_and_puma G2900010, G29000300 -in.county_and_puma G2900030, G29000200 -in.county_and_puma G2900070, G29000400 -in.county_and_puma G2900090, G29002700 -in.county_and_puma G2900130, G29001100 -in.county_and_puma G2900150, G29001300 -in.county_and_puma G2900190, G29000600 -in.county_and_puma G2900210, G29000200 -in.county_and_puma G2900230, G29002400 -in.county_and_puma G2900270, G29000500 -in.county_and_puma G2900290, G29001400 -in.county_and_puma G2900310, G29002200 -in.county_and_puma G2900370, G29001100 -in.county_and_puma G2900390, G29001200 -in.county_and_puma G2900430, G29002601 -in.county_and_puma G2900470, G29000901 -in.county_and_puma G2900470, G29000902 -in.county_and_puma G2900490, G29000800 -in.county_and_puma G2900510, G29000500 -in.county_and_puma G2900530, G29000700 -in.county_and_puma G2900550, G29001500 -in.county_and_puma G2900590, G29001300 -in.county_and_puma G2900650, G29001500 -in.county_and_puma G2900690, G29002300 -in.county_and_puma G2900710, G29001600 -in.county_and_puma G2900730, G29001500 -in.county_and_puma G2900770, G29002601 -in.county_and_puma G2900770, G29002602 -in.county_and_puma G2900770, G29002603 -in.county_and_puma G2900830, G29001200 -in.county_and_puma G2900850, G29001300 -in.county_and_puma G2900910, G29002500 -in.county_and_puma G2900950, G29001001 -in.county_and_puma G2900950, G29001002 -in.county_and_puma G2900950, G29001003 -in.county_and_puma G2900950, G29001004 -in.county_and_puma G2900950, G29001005 -in.county_and_puma G2900970, G29002800 -in.county_and_puma G2900990, G29002001 -in.county_and_puma G2900990, G29002002 -in.county_and_puma G2901010, G29000800 -in.county_and_puma G2901050, G29001300 -in.county_and_puma G2901070, G29000800 -in.county_and_puma G2901090, G29001200 -in.county_and_puma G2901130, G29000400 -in.county_and_puma G2901170, G29000100 -in.county_and_puma G2901190, G29002700 -in.county_and_puma G2901210, G29000300 -in.county_and_puma G2901270, G29000300 -in.county_and_puma G2901310, G29001400 -in.county_and_puma G2901410, G29001400 -in.county_and_puma G2901430, G29002300 -in.county_and_puma G2901450, G29002800 -in.county_and_puma G2901470, G29000100 -in.county_and_puma G2901510, G29000500 -in.county_and_puma G2901550, G29002300 -in.county_and_puma G2901570, G29002100 -in.county_and_puma G2901590, G29000700 -in.county_and_puma G2901610, G29001500 -in.county_and_puma G2901630, G29000400 -in.county_and_puma G2901650, G29000903 -in.county_and_puma G2901670, G29001300 -in.county_and_puma G2901690, G29001400 -in.county_and_puma G2901750, G29000700 -in.county_and_puma G2901770, G29000800 -in.county_and_puma G2901810, G29002400 -in.county_and_puma G2901830, G29001701 -in.county_and_puma G2901830, G29001702 -in.county_and_puma G2901830, G29001703 -in.county_and_puma G2901860, G29002100 -in.county_and_puma G2901870, G29002100 -in.county_and_puma G2901890, G29001801 -in.county_and_puma G2901890, G29001802 -in.county_and_puma G2901890, G29001803 -in.county_and_puma G2901890, G29001804 -in.county_and_puma G2901890, G29001805 -in.county_and_puma G2901890, G29001806 -in.county_and_puma G2901890, G29001807 -in.county_and_puma G2901890, G29001808 -in.county_and_puma G2901950, G29000700 -in.county_and_puma G2902010, G29002200 -in.county_and_puma G2902070, G29002300 -in.county_and_puma G2902090, G29002700 -in.county_and_puma G2902130, G29002700 -in.county_and_puma G2902150, G29002500 -in.county_and_puma G2902170, G29001200 -in.county_and_puma G2902190, G29000400 -in.county_and_puma G2902210, G29002100 -in.county_and_puma G2902230, G29002400 -in.county_and_puma G2902250, G29002601 -in.county_and_puma G2902290, G29002500 -in.county_and_puma G2905100, G29001901 -in.county_and_puma G2905100, G29001902 -in.county_and_puma G3000090, G30000500 -in.county_and_puma G3000130, G30000400 -in.county_and_puma G3000170, G30000600 -in.county_and_puma G3000270, G30000400 -in.county_and_puma G3000290, G30000100 -in.county_and_puma G3000310, G30000500 -in.county_and_puma G3000410, G30000400 -in.county_and_puma G3000470, G30000200 -in.county_and_puma G3000490, G30000300 -in.county_and_puma G3000530, G30000100 -in.county_and_puma G3000570, G30000300 -in.county_and_puma G3000630, G30000200 -in.county_and_puma G3000670, G30000500 -in.county_and_puma G3000810, G30000200 -in.county_and_puma G3000890, G30000200 -in.county_and_puma G3000930, G30000300 -in.county_and_puma G3001110, G30000600 -in.county_and_puma G3001110, G30000700 -in.county_and_puma G3100010, G31000500 -in.county_and_puma G3100190, G31000500 -in.county_and_puma G3100250, G31000701 -in.county_and_puma G3100430, G31000200 -in.county_and_puma G3100470, G31000400 -in.county_and_puma G3100530, G31000701 -in.county_and_puma G3100550, G31000901 -in.county_and_puma G3100550, G31000902 -in.county_and_puma G3100550, G31000903 -in.county_and_puma G3100550, G31000904 -in.county_and_puma G3100670, G31000600 -in.county_and_puma G3100790, G31000300 -in.county_and_puma G3101090, G31000801 -in.county_and_puma G3101090, G31000802 -in.county_and_puma G3101110, G31000400 -in.county_and_puma G3101190, G31000200 -in.county_and_puma G3101310, G31000600 -in.county_and_puma G3101410, G31000200 -in.county_and_puma G3101530, G31000702 -in.county_and_puma G3101550, G31000701 -in.county_and_puma G3101570, G31000100 -in.county_and_puma G3101590, G31000600 -in.county_and_puma G3101770, G31000701 -in.county_and_puma G3200010, G32000300 -in.county_and_puma G3200030, G32000401 -in.county_and_puma G3200030, G32000402 -in.county_and_puma G3200030, G32000403 -in.county_and_puma G3200030, G32000404 -in.county_and_puma G3200030, G32000405 -in.county_and_puma G3200030, G32000406 -in.county_and_puma G3200030, G32000407 -in.county_and_puma G3200030, G32000408 -in.county_and_puma G3200030, G32000409 -in.county_and_puma G3200030, G32000410 -in.county_and_puma G3200030, G32000411 -in.county_and_puma G3200030, G32000412 -in.county_and_puma G3200030, G32000413 -in.county_and_puma G3200050, G32000200 -in.county_and_puma G3200070, G32000300 -in.county_and_puma G3200130, G32000300 -in.county_and_puma G3200190, G32000200 -in.county_and_puma G3200230, G32000300 -in.county_and_puma G3200310, G32000101 -in.county_and_puma G3200310, G32000102 -in.county_and_puma G3200310, G32000103 -in.county_and_puma G3205100, G32000200 -in.county_and_puma G3300010, G33000200 -in.county_and_puma G3300030, G33000200 -in.county_and_puma G3300050, G33000500 -in.county_and_puma G3300070, G33000100 -in.county_and_puma G3300090, G33000100 -in.county_and_puma G3300110, G33000600 -in.county_and_puma G3300110, G33000700 -in.county_and_puma G3300110, G33000800 -in.county_and_puma G3300110, G33000900 -in.county_and_puma G3300130, G33000200 -in.county_and_puma G3300130, G33000400 -in.county_and_puma G3300150, G33000300 -in.county_and_puma G3300150, G33000700 -in.county_and_puma G3300150, G33001000 -in.county_and_puma G3300170, G33000300 -in.county_and_puma G3300190, G33000500 -in.county_and_puma G3400010, G34000101 -in.county_and_puma G3400010, G34000102 -in.county_and_puma G3400030, G34000301 -in.county_and_puma G3400030, G34000302 -in.county_and_puma G3400030, G34000303 -in.county_and_puma G3400030, G34000304 -in.county_and_puma G3400030, G34000305 -in.county_and_puma G3400030, G34000306 -in.county_and_puma G3400030, G34000307 -in.county_and_puma G3400030, G34000308 -in.county_and_puma G3400050, G34002001 -in.county_and_puma G3400050, G34002002 -in.county_and_puma G3400050, G34002003 -in.county_and_puma G3400070, G34002101 -in.county_and_puma G3400070, G34002102 -in.county_and_puma G3400070, G34002103 -in.county_and_puma G3400070, G34002104 -in.county_and_puma G3400090, G34002600 -in.county_and_puma G3400110, G34002400 -in.county_and_puma G3400110, G34002500 -in.county_and_puma G3400130, G34001301 -in.county_and_puma G3400130, G34001302 -in.county_and_puma G3400130, G34001401 -in.county_and_puma G3400130, G34001402 -in.county_and_puma G3400130, G34001403 -in.county_and_puma G3400130, G34001404 -in.county_and_puma G3400150, G34002201 -in.county_and_puma G3400150, G34002202 -in.county_and_puma G3400170, G34000601 -in.county_and_puma G3400170, G34000602 -in.county_and_puma G3400170, G34000701 -in.county_and_puma G3400170, G34000702 -in.county_and_puma G3400170, G34000703 -in.county_and_puma G3400190, G34000800 -in.county_and_puma G3400210, G34002301 -in.county_and_puma G3400210, G34002302 -in.county_and_puma G3400210, G34002303 -in.county_and_puma G3400230, G34000901 -in.county_and_puma G3400230, G34000902 -in.county_and_puma G3400230, G34000903 -in.county_and_puma G3400230, G34000904 -in.county_and_puma G3400230, G34000905 -in.county_and_puma G3400230, G34000906 -in.county_and_puma G3400230, G34000907 -in.county_and_puma G3400250, G34001101 -in.county_and_puma G3400250, G34001102 -in.county_and_puma G3400250, G34001103 -in.county_and_puma G3400250, G34001104 -in.county_and_puma G3400250, G34001105 -in.county_and_puma G3400250, G34001106 -in.county_and_puma G3400270, G34001501 -in.county_and_puma G3400270, G34001502 -in.county_and_puma G3400270, G34001503 -in.county_and_puma G3400270, G34001504 -in.county_and_puma G3400290, G34001201 -in.county_and_puma G3400290, G34001202 -in.county_and_puma G3400290, G34001203 -in.county_and_puma G3400290, G34001204 -in.county_and_puma G3400290, G34001205 -in.county_and_puma G3400310, G34000400 -in.county_and_puma G3400310, G34000501 -in.county_and_puma G3400310, G34000502 -in.county_and_puma G3400310, G34000503 -in.county_and_puma G3400330, G34002500 -in.county_and_puma G3400350, G34001001 -in.county_and_puma G3400350, G34001002 -in.county_and_puma G3400350, G34001003 -in.county_and_puma G3400370, G34001600 -in.county_and_puma G3400390, G34001800 -in.county_and_puma G3400390, G34001901 -in.county_and_puma G3400390, G34001902 -in.county_and_puma G3400390, G34001903 -in.county_and_puma G3400390, G34001904 -in.county_and_puma G3400410, G34001700 -in.county_and_puma G3500010, G35000700 -in.county_and_puma G3500010, G35000801 -in.county_and_puma G3500010, G35000802 -in.county_and_puma G3500010, G35000803 -in.county_and_puma G3500010, G35000804 -in.county_and_puma G3500010, G35000805 -in.county_and_puma G3500010, G35000806 -in.county_and_puma G3500050, G35001100 -in.county_and_puma G3500060, G35000100 -in.county_and_puma G3500070, G35000400 -in.county_and_puma G3500090, G35000400 -in.county_and_puma G3500130, G35001001 -in.county_and_puma G3500130, G35001002 -in.county_and_puma G3500150, G35001200 -in.county_and_puma G3500170, G35000900 -in.county_and_puma G3500250, G35001200 -in.county_and_puma G3500270, G35001100 -in.county_and_puma G3500280, G35000300 -in.county_and_puma G3500290, G35000900 -in.county_and_puma G3500310, G35000100 -in.county_and_puma G3500350, G35001100 -in.county_and_puma G3500390, G35000300 -in.county_and_puma G3500410, G35000400 -in.county_and_puma G3500430, G35000600 -in.county_and_puma G3500450, G35000100 -in.county_and_puma G3500450, G35000200 -in.county_and_puma G3500470, G35000300 -in.county_and_puma G3500490, G35000500 -in.county_and_puma G3500510, G35000900 -in.county_and_puma G3500530, G35000900 -in.county_and_puma G3500550, G35000300 -in.county_and_puma G3500570, G35000900 -in.county_and_puma G3500610, G35000700 -in.county_and_puma G3600010, G36002001 -in.county_and_puma G3600010, G36002002 -in.county_and_puma G3600030, G36002500 -in.county_and_puma G3600050, G36003701 -in.county_and_puma G3600050, G36003702 -in.county_and_puma G3600050, G36003703 -in.county_and_puma G3600050, G36003704 -in.county_and_puma G3600050, G36003705 -in.county_and_puma G3600050, G36003706 -in.county_and_puma G3600050, G36003707 -in.county_and_puma G3600050, G36003708 -in.county_and_puma G3600050, G36003709 -in.county_and_puma G3600050, G36003710 -in.county_and_puma G3600070, G36002201 -in.county_and_puma G3600070, G36002202 -in.county_and_puma G3600070, G36002203 -in.county_and_puma G3600090, G36002500 -in.county_and_puma G3600110, G36000704 -in.county_and_puma G3600130, G36002600 -in.county_and_puma G3600150, G36002401 -in.county_and_puma G3600170, G36002203 -in.county_and_puma G3600190, G36000200 -in.county_and_puma G3600210, G36002100 -in.county_and_puma G3600230, G36001500 -in.county_and_puma G3600250, G36002203 -in.county_and_puma G3600270, G36002801 -in.county_and_puma G3600270, G36002802 -in.county_and_puma G3600290, G36001201 -in.county_and_puma G3600290, G36001202 -in.county_and_puma G3600290, G36001203 -in.county_and_puma G3600290, G36001204 -in.county_and_puma G3600290, G36001205 -in.county_and_puma G3600290, G36001206 -in.county_and_puma G3600290, G36001207 -in.county_and_puma G3600310, G36000200 -in.county_and_puma G3600330, G36000200 -in.county_and_puma G3600350, G36001600 -in.county_and_puma G3600370, G36001000 -in.county_and_puma G3600390, G36002100 -in.county_and_puma G3600410, G36000200 -in.county_and_puma G3600430, G36000401 -in.county_and_puma G3600450, G36000500 -in.county_and_puma G3600470, G36004001 -in.county_and_puma G3600470, G36004002 -in.county_and_puma G3600470, G36004003 -in.county_and_puma G3600470, G36004004 -in.county_and_puma G3600470, G36004005 -in.county_and_puma G3600470, G36004006 -in.county_and_puma G3600470, G36004007 -in.county_and_puma G3600470, G36004008 -in.county_and_puma G3600470, G36004009 -in.county_and_puma G3600470, G36004010 -in.county_and_puma G3600470, G36004011 -in.county_and_puma G3600470, G36004012 -in.county_and_puma G3600470, G36004013 -in.county_and_puma G3600470, G36004014 -in.county_and_puma G3600470, G36004015 -in.county_and_puma G3600470, G36004016 -in.county_and_puma G3600470, G36004017 -in.county_and_puma G3600470, G36004018 -in.county_and_puma G3600490, G36000500 -in.county_and_puma G3600510, G36001300 -in.county_and_puma G3600530, G36001500 -in.county_and_puma G3600550, G36000901 -in.county_and_puma G3600550, G36000902 -in.county_and_puma G3600550, G36000903 -in.county_and_puma G3600550, G36000904 -in.county_and_puma G3600550, G36000905 -in.county_and_puma G3600550, G36000906 -in.county_and_puma G3600570, G36001600 -in.county_and_puma G3600590, G36003201 -in.county_and_puma G3600590, G36003202 -in.county_and_puma G3600590, G36003203 -in.county_and_puma G3600590, G36003204 -in.county_and_puma G3600590, G36003205 -in.county_and_puma G3600590, G36003206 -in.county_and_puma G3600590, G36003207 -in.county_and_puma G3600590, G36003208 -in.county_and_puma G3600590, G36003209 -in.county_and_puma G3600590, G36003210 -in.county_and_puma G3600590, G36003211 -in.county_and_puma G3600590, G36003212 -in.county_and_puma G3600610, G36003801 -in.county_and_puma G3600610, G36003802 -in.county_and_puma G3600610, G36003803 -in.county_and_puma G3600610, G36003804 -in.county_and_puma G3600610, G36003805 -in.county_and_puma G3600610, G36003806 -in.county_and_puma G3600610, G36003807 -in.county_and_puma G3600610, G36003808 -in.county_and_puma G3600610, G36003809 -in.county_and_puma G3600610, G36003810 -in.county_and_puma G3600630, G36001101 -in.county_and_puma G3600630, G36001102 -in.county_and_puma G3600650, G36000401 -in.county_and_puma G3600650, G36000402 -in.county_and_puma G3600670, G36000701 -in.county_and_puma G3600670, G36000702 -in.county_and_puma G3600670, G36000703 -in.county_and_puma G3600670, G36000704 -in.county_and_puma G3600690, G36001400 -in.county_and_puma G3600710, G36002901 -in.county_and_puma G3600710, G36002902 -in.county_and_puma G3600710, G36002903 -in.county_and_puma G3600730, G36001000 -in.county_and_puma G3600750, G36000600 -in.county_and_puma G3600770, G36000403 -in.county_and_puma G3600790, G36003101 -in.county_and_puma G3600810, G36004101 -in.county_and_puma G3600810, G36004102 -in.county_and_puma G3600810, G36004103 -in.county_and_puma G3600810, G36004104 -in.county_and_puma G3600810, G36004105 -in.county_and_puma G3600810, G36004106 -in.county_and_puma G3600810, G36004107 -in.county_and_puma G3600810, G36004108 -in.county_and_puma G3600810, G36004109 -in.county_and_puma G3600810, G36004110 -in.county_and_puma G3600810, G36004111 -in.county_and_puma G3600810, G36004112 -in.county_and_puma G3600810, G36004113 -in.county_and_puma G3600810, G36004114 -in.county_and_puma G3600830, G36001900 -in.county_and_puma G3600850, G36003901 -in.county_and_puma G3600850, G36003902 -in.county_and_puma G3600850, G36003903 -in.county_and_puma G3600870, G36003001 -in.county_and_puma G3600870, G36003002 -in.county_and_puma G3600870, G36003003 -in.county_and_puma G3600890, G36000100 -in.county_and_puma G3600910, G36001801 -in.county_and_puma G3600910, G36001802 -in.county_and_puma G3600930, G36001700 -in.county_and_puma G3600950, G36000403 -in.county_and_puma G3600970, G36002402 -in.county_and_puma G3600990, G36000800 -in.county_and_puma G3601010, G36002401 -in.county_and_puma G3601010, G36002402 -in.county_and_puma G3601030, G36003301 -in.county_and_puma G3601030, G36003302 -in.county_and_puma G3601030, G36003303 -in.county_and_puma G3601030, G36003304 -in.county_and_puma G3601030, G36003305 -in.county_and_puma G3601030, G36003306 -in.county_and_puma G3601030, G36003307 -in.county_and_puma G3601030, G36003308 -in.county_and_puma G3601030, G36003309 -in.county_and_puma G3601030, G36003310 -in.county_and_puma G3601030, G36003311 -in.county_and_puma G3601030, G36003312 -in.county_and_puma G3601030, G36003313 -in.county_and_puma G3601050, G36002701 -in.county_and_puma G3601070, G36002202 -in.county_and_puma G3601090, G36002300 -in.county_and_puma G3601110, G36002701 -in.county_and_puma G3601110, G36002702 -in.county_and_puma G3601130, G36000300 -in.county_and_puma G3601150, G36000300 -in.county_and_puma G3601170, G36000800 -in.county_and_puma G3601190, G36003102 -in.county_and_puma G3601190, G36003103 -in.county_and_puma G3601190, G36003104 -in.county_and_puma G3601190, G36003105 -in.county_and_puma G3601190, G36003106 -in.county_and_puma G3601190, G36003107 -in.county_and_puma G3601210, G36001300 -in.county_and_puma G3601230, G36001400 -in.county_and_puma G3700010, G37001600 -in.county_and_puma G3700030, G37002000 -in.county_and_puma G3700050, G37000200 -in.county_and_puma G3700070, G37005300 -in.county_and_puma G3700090, G37000100 -in.county_and_puma G3700110, G37000100 -in.county_and_puma G3700130, G37004400 -in.county_and_puma G3700150, G37000800 -in.county_and_puma G3700170, G37004900 -in.county_and_puma G3700190, G37004800 -in.county_and_puma G3700210, G37002201 -in.county_and_puma G3700210, G37002202 -in.county_and_puma G3700230, G37002100 -in.county_and_puma G3700250, G37003200 -in.county_and_puma G3700250, G37003300 -in.county_and_puma G3700270, G37002000 -in.county_and_puma G3700310, G37004400 -in.county_and_puma G3700330, G37000400 -in.county_and_puma G3700350, G37002800 -in.county_and_puma G3700370, G37001500 -in.county_and_puma G3700390, G37002400 -in.county_and_puma G3700410, G37000700 -in.county_and_puma G3700430, G37002400 -in.county_and_puma G3700450, G37002600 -in.county_and_puma G3700450, G37002700 -in.county_and_puma G3700470, G37004900 -in.county_and_puma G3700490, G37004300 -in.county_and_puma G3700510, G37005001 -in.county_and_puma G3700510, G37005002 -in.county_and_puma G3700510, G37005003 -in.county_and_puma G3700530, G37000700 -in.county_and_puma G3700550, G37000800 -in.county_and_puma G3700570, G37003500 -in.county_and_puma G3700590, G37001900 -in.county_and_puma G3700610, G37003900 -in.county_and_puma G3700630, G37001301 -in.county_and_puma G3700630, G37001302 -in.county_and_puma G3700650, G37000900 -in.county_and_puma G3700670, G37001801 -in.county_and_puma G3700670, G37001802 -in.county_and_puma G3700670, G37001803 -in.county_and_puma G3700690, G37000500 -in.county_and_puma G3700710, G37003001 -in.county_and_puma G3700710, G37003002 -in.county_and_puma G3700770, G37000400 -in.county_and_puma G3700790, G37001000 -in.county_and_puma G3700810, G37001701 -in.county_and_puma G3700810, G37001702 -in.county_and_puma G3700810, G37001703 -in.county_and_puma G3700810, G37001704 -in.county_and_puma G3700830, G37000600 -in.county_and_puma G3700850, G37003800 -in.county_and_puma G3700870, G37002300 -in.county_and_puma G3700890, G37002500 -in.county_and_puma G3700910, G37000600 -in.county_and_puma G3700930, G37005200 -in.county_and_puma G3700970, G37001900 -in.county_and_puma G3700970, G37002900 -in.county_and_puma G3700990, G37002400 -in.county_and_puma G3701010, G37001100 -in.county_and_puma G3701050, G37001500 -in.county_and_puma G3701070, G37004100 -in.county_and_puma G3701090, G37002700 -in.county_and_puma G3701110, G37002100 -in.county_and_puma G3701130, G37002400 -in.county_and_puma G3701150, G37002300 -in.county_and_puma G3701170, G37000800 -in.county_and_puma G3701190, G37003101 -in.county_and_puma G3701190, G37003102 -in.county_and_puma G3701190, G37003103 -in.county_and_puma G3701190, G37003104 -in.county_and_puma G3701190, G37003105 -in.county_and_puma G3701190, G37003106 -in.county_and_puma G3701190, G37003107 -in.county_and_puma G3701190, G37003108 -in.county_and_puma G3701210, G37000100 -in.county_and_puma G3701230, G37003700 -in.county_and_puma G3701250, G37003700 -in.county_and_puma G3701270, G37000900 -in.county_and_puma G3701290, G37004600 -in.county_and_puma G3701290, G37004700 -in.county_and_puma G3701310, G37000600 -in.county_and_puma G3701330, G37004100 -in.county_and_puma G3701330, G37004500 -in.county_and_puma G3701350, G37001400 -in.county_and_puma G3701370, G37004400 -in.county_and_puma G3701390, G37000700 -in.county_and_puma G3701410, G37004600 -in.county_and_puma G3701430, G37000700 -in.county_and_puma G3701450, G37000400 -in.county_and_puma G3701470, G37004200 -in.county_and_puma G3701490, G37002600 -in.county_and_puma G3701510, G37003600 -in.county_and_puma G3701530, G37005200 -in.county_and_puma G3701550, G37005100 -in.county_and_puma G3701570, G37000300 -in.county_and_puma G3701590, G37003400 -in.county_and_puma G3701610, G37002600 -in.county_and_puma G3701630, G37003900 -in.county_and_puma G3701650, G37005200 -in.county_and_puma G3701670, G37003300 -in.county_and_puma G3701690, G37000300 -in.county_and_puma G3701710, G37000200 -in.county_and_puma G3701730, G37002300 -in.county_and_puma G3701750, G37002500 -in.county_and_puma G3701790, G37005300 -in.county_and_puma G3701790, G37005400 -in.county_and_puma G3701810, G37000500 -in.county_and_puma G3701830, G37001201 -in.county_and_puma G3701830, G37001202 -in.county_and_puma G3701830, G37001203 -in.county_and_puma G3701830, G37001204 -in.county_and_puma G3701830, G37001205 -in.county_and_puma G3701830, G37001206 -in.county_and_puma G3701830, G37001207 -in.county_and_puma G3701830, G37001208 -in.county_and_puma G3701850, G37000500 -in.county_and_puma G3701890, G37000100 -in.county_and_puma G3701910, G37004000 -in.county_and_puma G3701930, G37000200 -in.county_and_puma G3701950, G37001000 -in.county_and_puma G3701970, G37001900 -in.county_and_puma G3701990, G37000100 -in.county_and_puma G3800030, G38000200 -in.county_and_puma G3800150, G38000300 -in.county_and_puma G3800170, G38000500 -in.county_and_puma G3800350, G38000400 -in.county_and_puma G3800550, G38000100 -in.county_and_puma G3800590, G38000300 -in.county_and_puma G3800710, G38000200 -in.county_and_puma G3800770, G38000200 -in.county_and_puma G3800890, G38000100 -in.county_and_puma G3800930, G38000200 -in.county_and_puma G3801010, G38000100 -in.county_and_puma G3801050, G38000100 -in.county_and_puma G3900010, G39005200 -in.county_and_puma G3900030, G39002500 -in.county_and_puma G3900050, G39002100 -in.county_and_puma G3900070, G39001300 -in.county_and_puma G3900090, G39005000 -in.county_and_puma G3900110, G39002600 -in.county_and_puma G3900130, G39003500 -in.county_and_puma G3900150, G39005700 -in.county_and_puma G3900170, G39005401 -in.county_and_puma G3900170, G39005402 -in.county_and_puma G3900170, G39005403 -in.county_and_puma G3900190, G39003300 -in.county_and_puma G3900210, G39002700 -in.county_and_puma G3900230, G39004300 -in.county_and_puma G3900250, G39005600 -in.county_and_puma G3900250, G39005700 -in.county_and_puma G3900270, G39005200 -in.county_and_puma G3900290, G39003400 -in.county_and_puma G3900310, G39002900 -in.county_and_puma G3900330, G39002300 -in.county_and_puma G3900350, G39000901 -in.county_and_puma G3900350, G39000902 -in.county_and_puma G3900350, G39000903 -in.county_and_puma G3900350, G39000904 -in.county_and_puma G3900350, G39000905 -in.county_and_puma G3900350, G39000906 -in.county_and_puma G3900350, G39000907 -in.county_and_puma G3900350, G39000908 -in.county_and_puma G3900350, G39000909 -in.county_and_puma G3900350, G39000910 -in.county_and_puma G3900370, G39004500 -in.county_and_puma G3900390, G39000100 -in.county_and_puma G3900410, G39004000 -in.county_and_puma G3900430, G39000700 -in.county_and_puma G3900450, G39003900 -in.county_and_puma G3900470, G39004800 -in.county_and_puma G3900490, G39004101 -in.county_and_puma G3900490, G39004102 -in.county_and_puma G3900490, G39004103 -in.county_and_puma G3900490, G39004104 -in.county_and_puma G3900490, G39004105 -in.county_and_puma G3900490, G39004106 -in.county_and_puma G3900490, G39004107 -in.county_and_puma G3900490, G39004108 -in.county_and_puma G3900490, G39004109 -in.county_and_puma G3900490, G39004110 -in.county_and_puma G3900490, G39004111 -in.county_and_puma G3900510, G39000200 -in.county_and_puma G3900530, G39005000 -in.county_and_puma G3900550, G39001200 -in.county_and_puma G3900570, G39004700 -in.county_and_puma G3900590, G39002900 -in.county_and_puma G3900610, G39005501 -in.county_and_puma G3900610, G39005502 -in.county_and_puma G3900610, G39005503 -in.county_and_puma G3900610, G39005504 -in.county_and_puma G3900610, G39005505 -in.county_and_puma G3900610, G39005506 -in.county_and_puma G3900610, G39005507 -in.county_and_puma G3900630, G39002400 -in.county_and_puma G3900650, G39002700 -in.county_and_puma G3900670, G39003000 -in.county_and_puma G3900690, G39000100 -in.county_and_puma G3900710, G39005200 -in.county_and_puma G3900730, G39004900 -in.county_and_puma G3900750, G39002900 -in.county_and_puma G3900770, G39002100 -in.county_and_puma G3900790, G39004900 -in.county_and_puma G3900810, G39003500 -in.county_and_puma G3900830, G39002800 -in.county_and_puma G3900850, G39001000 -in.county_and_puma G3900850, G39001100 -in.county_and_puma G3900850, G39001200 -in.county_and_puma G3900870, G39005100 -in.county_and_puma G3900890, G39003800 -in.county_and_puma G3900910, G39002700 -in.county_and_puma G3900930, G39000801 -in.county_and_puma G3900930, G39000802 -in.county_and_puma G3900950, G39000300 -in.county_and_puma G3900950, G39000400 -in.county_and_puma G3900950, G39000500 -in.county_and_puma G3900950, G39000600 -in.county_and_puma G3900970, G39004200 -in.county_and_puma G3900990, G39001400 -in.county_and_puma G3900990, G39001500 -in.county_and_puma G3901010, G39002800 -in.county_and_puma G3901030, G39001900 -in.county_and_puma G3901050, G39005000 -in.county_and_puma G3901070, G39002600 -in.county_and_puma G3901090, G39004400 -in.county_and_puma G3901110, G39003600 -in.county_and_puma G3901130, G39004601 -in.county_and_puma G3901130, G39004602 -in.county_and_puma G3901130, G39004603 -in.county_and_puma G3901130, G39004604 -in.county_and_puma G3901150, G39003600 -in.county_and_puma G3901170, G39002800 -in.county_and_puma G3901190, G39003700 -in.county_and_puma G3901230, G39000600 -in.county_and_puma G3901250, G39000100 -in.county_and_puma G3901270, G39003700 -in.county_and_puma G3901290, G39004200 -in.county_and_puma G3901310, G39004900 -in.county_and_puma G3901330, G39001700 -in.county_and_puma G3901350, G39004500 -in.county_and_puma G3901370, G39002400 -in.county_and_puma G3901390, G39002200 -in.county_and_puma G3901410, G39004800 -in.county_and_puma G3901430, G39000700 -in.county_and_puma G3901450, G39005100 -in.county_and_puma G3901470, G39002300 -in.county_and_puma G3901490, G39004500 -in.county_and_puma G3901510, G39003100 -in.county_and_puma G3901510, G39003200 -in.county_and_puma G3901510, G39003300 -in.county_and_puma G3901530, G39001801 -in.county_and_puma G3901530, G39001802 -in.county_and_puma G3901530, G39001803 -in.county_and_puma G3901530, G39001804 -in.county_and_puma G3901530, G39001805 -in.county_and_puma G3901550, G39001400 -in.county_and_puma G3901550, G39001600 -in.county_and_puma G3901570, G39003000 -in.county_and_puma G3901590, G39004200 -in.county_and_puma G3901610, G39002600 -in.county_and_puma G3901650, G39005301 -in.county_and_puma G3901650, G39005302 -in.county_and_puma G3901670, G39003600 -in.county_and_puma G3901690, G39002000 -in.county_and_puma G3901710, G39000100 -in.county_and_puma G3901730, G39000200 -in.county_and_puma G3901730, G39000300 -in.county_and_puma G3901730, G39000600 -in.county_and_puma G3901750, G39002300 -in.county_and_puma G4000010, G40000200 -in.county_and_puma G4000090, G40000400 -in.county_and_puma G4000130, G40000702 -in.county_and_puma G4000150, G40000602 -in.county_and_puma G4000170, G40000800 -in.county_and_puma G4000190, G40000701 -in.county_and_puma G4000210, G40000200 -in.county_and_puma G4000230, G40000300 -in.county_and_puma G4000270, G40000900 -in.county_and_puma G4000310, G40000601 -in.county_and_puma G4000310, G40000602 -in.county_and_puma G4000350, G40000100 -in.county_and_puma G4000370, G40001204 -in.county_and_puma G4000370, G40001501 -in.county_and_puma G4000390, G40000400 -in.county_and_puma G4000410, G40000100 -in.county_and_puma G4000470, G40001400 -in.county_and_puma G4000490, G40000701 -in.county_and_puma G4000510, G40001101 -in.county_and_puma G4000650, G40000400 -in.county_and_puma G4000710, G40001400 -in.county_and_puma G4000790, G40000300 -in.county_and_puma G4000810, G40001102 -in.county_and_puma G4000830, G40001102 -in.county_and_puma G4000870, G40001101 -in.county_and_puma G4000890, G40000300 -in.county_and_puma G4000910, G40001302 -in.county_and_puma G4000950, G40000702 -in.county_and_puma G4000970, G40000100 -in.county_and_puma G4000990, G40000701 -in.county_and_puma G4001010, G40001302 -in.county_and_puma G4001090, G40001001 -in.county_and_puma G4001090, G40001002 -in.county_and_puma G4001090, G40001003 -in.county_and_puma G4001090, G40001004 -in.county_and_puma G4001090, G40001005 -in.county_and_puma G4001090, G40001006 -in.county_and_puma G4001110, G40001302 -in.county_and_puma G4001130, G40001204 -in.county_and_puma G4001130, G40001601 -in.county_and_puma G4001150, G40000100 -in.county_and_puma G4001170, G40001601 -in.county_and_puma G4001190, G40001501 -in.county_and_puma G4001210, G40000300 -in.county_and_puma G4001230, G40000702 -in.county_and_puma G4001250, G40001101 -in.county_and_puma G4001250, G40001102 -in.county_and_puma G4001310, G40000100 -in.county_and_puma G4001310, G40001301 -in.county_and_puma G4001330, G40001501 -in.county_and_puma G4001350, G40000200 -in.county_and_puma G4001370, G40000602 -in.county_and_puma G4001390, G40000500 -in.county_and_puma G4001430, G40001201 -in.county_and_puma G4001430, G40001202 -in.county_and_puma G4001430, G40001203 -in.county_and_puma G4001430, G40001204 -in.county_and_puma G4001450, G40001301 -in.county_and_puma G4001450, G40001302 -in.county_and_puma G4001470, G40001601 -in.county_and_puma G4001530, G40000500 -in.county_and_puma G4100010, G41000100 -in.county_and_puma G4100030, G41000600 -in.county_and_puma G4100050, G41001317 -in.county_and_puma G4100050, G41001318 -in.county_and_puma G4100050, G41001319 -in.county_and_puma G4100070, G41000500 -in.county_and_puma G4100090, G41000500 -in.county_and_puma G4100110, G41000800 -in.county_and_puma G4100130, G41000200 -in.county_and_puma G4100150, G41000800 -in.county_and_puma G4100170, G41000400 -in.county_and_puma G4100190, G41001000 -in.county_and_puma G4100270, G41000200 -in.county_and_puma G4100290, G41000901 -in.county_and_puma G4100290, G41000902 -in.county_and_puma G4100310, G41000200 -in.county_and_puma G4100330, G41000800 -in.county_and_puma G4100350, G41000300 -in.county_and_puma G4100390, G41000703 -in.county_and_puma G4100390, G41000704 -in.county_and_puma G4100390, G41000705 -in.county_and_puma G4100410, G41000500 -in.county_and_puma G4100430, G41000600 -in.county_and_puma G4100450, G41000300 -in.county_and_puma G4100470, G41001103 -in.county_and_puma G4100470, G41001104 -in.county_and_puma G4100470, G41001105 -in.county_and_puma G4100510, G41001301 -in.county_and_puma G4100510, G41001302 -in.county_and_puma G4100510, G41001303 -in.county_and_puma G4100510, G41001305 -in.county_and_puma G4100510, G41001314 -in.county_and_puma G4100510, G41001316 -in.county_and_puma G4100530, G41001200 -in.county_and_puma G4100570, G41000500 -in.county_and_puma G4100590, G41000100 -in.county_and_puma G4100610, G41000100 -in.county_and_puma G4100650, G41000200 -in.county_and_puma G4100670, G41001320 -in.county_and_puma G4100670, G41001321 -in.county_and_puma G4100670, G41001322 -in.county_and_puma G4100670, G41001323 -in.county_and_puma G4100670, G41001324 -in.county_and_puma G4100710, G41001200 -in.county_and_puma G4200010, G42003701 -in.county_and_puma G4200030, G42001701 -in.county_and_puma G4200030, G42001702 -in.county_and_puma G4200030, G42001801 -in.county_and_puma G4200030, G42001802 -in.county_and_puma G4200030, G42001803 -in.county_and_puma G4200030, G42001804 -in.county_and_puma G4200030, G42001805 -in.county_and_puma G4200030, G42001806 -in.county_and_puma G4200030, G42001807 -in.county_and_puma G4200050, G42001900 -in.county_and_puma G4200070, G42001501 -in.county_and_puma G4200070, G42001502 -in.county_and_puma G4200090, G42003800 -in.county_and_puma G4200110, G42002701 -in.county_and_puma G4200110, G42002702 -in.county_and_puma G4200110, G42002703 -in.county_and_puma G4200130, G42002200 -in.county_and_puma G4200150, G42000400 -in.county_and_puma G4200170, G42003001 -in.county_and_puma G4200170, G42003002 -in.county_and_puma G4200170, G42003003 -in.county_and_puma G4200170, G42003004 -in.county_and_puma G4200190, G42001600 -in.county_and_puma G4200210, G42002100 -in.county_and_puma G4200250, G42002801 -in.county_and_puma G4200270, G42001200 -in.county_and_puma G4200290, G42003401 -in.county_and_puma G4200290, G42003402 -in.county_and_puma G4200290, G42003403 -in.county_and_puma G4200290, G42003404 -in.county_and_puma G4200310, G42001300 -in.county_and_puma G4200330, G42000300 -in.county_and_puma G4200350, G42000900 -in.county_and_puma G4200370, G42000803 -in.county_and_puma G4200390, G42000200 -in.county_and_puma G4200410, G42002301 -in.county_and_puma G4200410, G42002302 -in.county_and_puma G4200430, G42002401 -in.county_and_puma G4200430, G42002402 -in.county_and_puma G4200450, G42003301 -in.county_and_puma G4200450, G42003302 -in.county_and_puma G4200450, G42003303 -in.county_and_puma G4200450, G42003304 -in.county_and_puma G4200470, G42000300 -in.county_and_puma G4200490, G42000101 -in.county_and_puma G4200490, G42000102 -in.county_and_puma G4200510, G42003900 -in.county_and_puma G4200530, G42001300 -in.county_and_puma G4200550, G42003701 -in.county_and_puma G4200550, G42003702 -in.county_and_puma G4200570, G42003800 -in.county_and_puma G4200590, G42004002 -in.county_and_puma G4200610, G42002200 -in.county_and_puma G4200630, G42001900 -in.county_and_puma G4200650, G42001300 -in.county_and_puma G4200670, G42001100 -in.county_and_puma G4200690, G42000701 -in.county_and_puma G4200690, G42000702 -in.county_and_puma G4200710, G42003501 -in.county_and_puma G4200710, G42003502 -in.county_and_puma G4200710, G42003503 -in.county_and_puma G4200710, G42003504 -in.county_and_puma G4200730, G42001501 -in.county_and_puma G4200750, G42002500 -in.county_and_puma G4200770, G42002801 -in.county_and_puma G4200770, G42002802 -in.county_and_puma G4200770, G42002803 -in.county_and_puma G4200770, G42002901 -in.county_and_puma G4200790, G42000801 -in.county_and_puma G4200790, G42000802 -in.county_and_puma G4200790, G42000803 -in.county_and_puma G4200810, G42000900 -in.county_and_puma G4200830, G42000300 -in.county_and_puma G4200850, G42001400 -in.county_and_puma G4200870, G42001100 -in.county_and_puma G4200890, G42000600 -in.county_and_puma G4200910, G42003101 -in.county_and_puma G4200910, G42003102 -in.county_and_puma G4200910, G42003103 -in.county_and_puma G4200910, G42003104 -in.county_and_puma G4200910, G42003105 -in.county_and_puma G4200910, G42003106 -in.county_and_puma G4200930, G42001000 -in.county_and_puma G4200950, G42002901 -in.county_and_puma G4200950, G42002902 -in.county_and_puma G4200970, G42001000 -in.county_and_puma G4200990, G42002301 -in.county_and_puma G4201010, G42003201 -in.county_and_puma G4201010, G42003202 -in.county_and_puma G4201010, G42003203 -in.county_and_puma G4201010, G42003204 -in.county_and_puma G4201010, G42003205 -in.county_and_puma G4201010, G42003206 -in.county_and_puma G4201010, G42003207 -in.county_and_puma G4201010, G42003208 -in.county_and_puma G4201010, G42003209 -in.county_and_puma G4201010, G42003210 -in.county_and_puma G4201010, G42003211 -in.county_and_puma G4201030, G42000500 -in.county_and_puma G4201050, G42000300 -in.county_and_puma G4201070, G42002600 -in.county_and_puma G4201090, G42001100 -in.county_and_puma G4201110, G42003800 -in.county_and_puma G4201150, G42000500 -in.county_and_puma G4201170, G42000400 -in.county_and_puma G4201190, G42001100 -in.county_and_puma G4201210, G42001300 -in.county_and_puma G4201230, G42000200 -in.county_and_puma G4201250, G42004001 -in.county_and_puma G4201250, G42004002 -in.county_and_puma G4201270, G42000500 -in.county_and_puma G4201290, G42002001 -in.county_and_puma G4201290, G42002002 -in.county_and_puma G4201290, G42002003 -in.county_and_puma G4201310, G42000702 -in.county_and_puma G4201330, G42003601 -in.county_and_puma G4201330, G42003602 -in.county_and_puma G4201330, G42003603 -in.county_and_puma G4400010, G44000300 -in.county_and_puma G4400030, G44000201 -in.county_and_puma G4400050, G44000300 -in.county_and_puma G4400070, G44000101 -in.county_and_puma G4400070, G44000102 -in.county_and_puma G4400070, G44000103 -in.county_and_puma G4400070, G44000104 -in.county_and_puma G4400090, G44000400 -in.county_and_puma G4500010, G45001600 -in.county_and_puma G4500030, G45001500 -in.county_and_puma G4500070, G45000200 -in.county_and_puma G4500090, G45001300 -in.county_and_puma G4500110, G45001300 -in.county_and_puma G4500130, G45001400 -in.county_and_puma G4500150, G45001201 -in.county_and_puma G4500150, G45001203 -in.county_and_puma G4500150, G45001204 -in.county_and_puma G4500170, G45000605 -in.county_and_puma G4500190, G45001202 -in.county_and_puma G4500190, G45001203 -in.county_and_puma G4500190, G45001204 -in.county_and_puma G4500210, G45000400 -in.county_and_puma G4500230, G45000400 -in.county_and_puma G4500250, G45000700 -in.county_and_puma G4500270, G45000800 -in.county_and_puma G4500290, G45001300 -in.county_and_puma G4500310, G45000900 -in.county_and_puma G4500330, G45001000 -in.county_and_puma G4500350, G45001201 -in.county_and_puma G4500350, G45001204 -in.county_and_puma G4500370, G45001500 -in.county_and_puma G4500390, G45000603 -in.county_and_puma G4500410, G45000900 -in.county_and_puma G4500430, G45001000 -in.county_and_puma G4500450, G45000102 -in.county_and_puma G4500450, G45000103 -in.county_and_puma G4500450, G45000104 -in.county_and_puma G4500450, G45000105 -in.county_and_puma G4500470, G45001600 -in.county_and_puma G4500490, G45001300 -in.county_and_puma G4500510, G45001101 -in.county_and_puma G4500510, G45001102 -in.county_and_puma G4500530, G45001400 -in.county_and_puma G4500550, G45000605 -in.county_and_puma G4500570, G45000700 -in.county_and_puma G4500590, G45000105 -in.county_and_puma G4500610, G45000800 -in.county_and_puma G4500630, G45000601 -in.county_and_puma G4500630, G45000602 -in.county_and_puma G4500670, G45001000 -in.county_and_puma G4500690, G45000700 -in.county_and_puma G4500710, G45000400 -in.county_and_puma G4500730, G45000101 -in.county_and_puma G4500750, G45001300 -in.county_and_puma G4500770, G45000101 -in.county_and_puma G4500790, G45000603 -in.county_and_puma G4500790, G45000604 -in.county_and_puma G4500790, G45000605 -in.county_and_puma G4500810, G45000601 -in.county_and_puma G4500830, G45000301 -in.county_and_puma G4500830, G45000302 -in.county_and_puma G4500850, G45000800 -in.county_and_puma G4500870, G45000400 -in.county_and_puma G4500890, G45000800 -in.county_and_puma G4500910, G45000501 -in.county_and_puma G4500910, G45000502 -in.county_and_puma G4600050, G46000400 -in.county_and_puma G4600110, G46000400 -in.county_and_puma G4600130, G46000300 -in.county_and_puma G4600290, G46000300 -in.county_and_puma G4600350, G46000400 -in.county_and_puma G4600650, G46000200 -in.county_and_puma G4600810, G46000100 -in.county_and_puma G4600830, G46000500 -in.county_and_puma G4600830, G46000600 -in.county_and_puma G4600930, G46000100 -in.county_and_puma G4600990, G46000500 -in.county_and_puma G4600990, G46000600 -in.county_and_puma G4601030, G46000100 -in.county_and_puma G4601270, G46000500 -in.county_and_puma G4601350, G46000500 -in.county_and_puma G4700010, G47001601 -in.county_and_puma G4700030, G47002700 -in.county_and_puma G4700050, G47000200 -in.county_and_puma G4700090, G47001700 -in.county_and_puma G4700110, G47001900 -in.county_and_puma G4700130, G47000900 -in.county_and_puma G4700170, G47000200 -in.county_and_puma G4700190, G47001200 -in.county_and_puma G4700210, G47000400 -in.county_and_puma G4700230, G47003000 -in.county_and_puma G4700250, G47000900 -in.county_and_puma G4700290, G47001400 -in.county_and_puma G4700310, G47002200 -in.county_and_puma G4700350, G47000800 -in.county_and_puma G4700370, G47002501 -in.county_and_puma G4700370, G47002502 -in.county_and_puma G4700370, G47002503 -in.county_and_puma G4700370, G47002504 -in.county_and_puma G4700370, G47002505 -in.county_and_puma G4700390, G47002900 -in.county_and_puma G4700410, G47000600 -in.county_and_puma G4700430, G47000400 -in.county_and_puma G4700450, G47000100 -in.county_and_puma G4700470, G47003100 -in.county_and_puma G4700490, G47000800 -in.county_and_puma G4700510, G47002200 -in.county_and_puma G4700530, G47000100 -in.county_and_puma G4700550, G47002800 -in.county_and_puma G4700570, G47001400 -in.county_and_puma G4700590, G47001200 -in.county_and_puma G4700630, G47001400 -in.county_and_puma G4700650, G47002001 -in.county_and_puma G4700650, G47002002 -in.county_and_puma G4700650, G47002003 -in.county_and_puma G4700690, G47002900 -in.county_and_puma G4700710, G47002900 -in.county_and_puma G4700730, G47001000 -in.county_and_puma G4700750, G47002900 -in.county_and_puma G4700770, G47002900 -in.county_and_puma G4700790, G47000200 -in.county_and_puma G4700810, G47000400 -in.county_and_puma G4700850, G47000200 -in.county_and_puma G4700890, G47001500 -in.county_and_puma G4700910, G47001200 -in.county_and_puma G4700930, G47001602 -in.county_and_puma G4700930, G47001603 -in.county_and_puma G4700930, G47001604 -in.county_and_puma G4700970, G47003100 -in.county_and_puma G4700990, G47002800 -in.county_and_puma G4701030, G47002200 -in.county_and_puma G4701050, G47001800 -in.county_and_puma G4701070, G47001900 -in.county_and_puma G4701090, G47002900 -in.county_and_puma G4701110, G47000600 -in.county_and_puma G4701130, G47003000 -in.county_and_puma G4701150, G47002100 -in.county_and_puma G4701170, G47002700 -in.county_and_puma G4701190, G47002700 -in.county_and_puma G4701230, G47001800 -in.county_and_puma G4701250, G47000300 -in.county_and_puma G4701290, G47000900 -in.county_and_puma G4701310, G47000100 -in.county_and_puma G4701330, G47000700 -in.county_and_puma G4701390, G47001900 -in.county_and_puma G4701410, G47000700 -in.county_and_puma G4701430, G47002100 -in.county_and_puma G4701450, G47001800 -in.county_and_puma G4701470, G47000400 -in.county_and_puma G4701490, G47002401 -in.county_and_puma G4701490, G47002402 -in.county_and_puma G4701510, G47000900 -in.county_and_puma G4701550, G47001500 -in.county_and_puma G4701570, G47003201 -in.county_and_puma G4701570, G47003202 -in.county_and_puma G4701570, G47003203 -in.county_and_puma G4701570, G47003204 -in.county_and_puma G4701570, G47003205 -in.county_and_puma G4701570, G47003206 -in.county_and_puma G4701570, G47003207 -in.county_and_puma G4701570, G47003208 -in.county_and_puma G4701590, G47000600 -in.county_and_puma G4701610, G47000300 -in.county_and_puma G4701630, G47001000 -in.county_and_puma G4701630, G47001100 -in.county_and_puma G4701650, G47000500 -in.county_and_puma G4701670, G47003100 -in.county_and_puma G4701710, G47001200 -in.county_and_puma G4701730, G47001601 -in.county_and_puma G4701770, G47000600 -in.county_and_puma G4701790, G47001300 -in.county_and_puma G4701810, G47002800 -in.county_and_puma G4701830, G47000200 -in.county_and_puma G4701850, G47000800 -in.county_and_puma G4701870, G47002600 -in.county_and_puma G4701890, G47002300 -in.county_and_puma G4800010, G48001800 -in.county_and_puma G4800050, G48004000 -in.county_and_puma G4800070, G48006500 -in.county_and_puma G4800130, G48006100 -in.county_and_puma G4800150, G48005000 -in.county_and_puma G4800190, G48006100 -in.county_and_puma G4800210, G48005100 -in.county_and_puma G4800250, G48006500 -in.county_and_puma G4800270, G48003501 -in.county_and_puma G4800270, G48003502 -in.county_and_puma G4800290, G48005901 -in.county_and_puma G4800290, G48005902 -in.county_and_puma G4800290, G48005903 -in.county_and_puma G4800290, G48005904 -in.county_and_puma G4800290, G48005905 -in.county_and_puma G4800290, G48005906 -in.county_and_puma G4800290, G48005907 -in.county_and_puma G4800290, G48005908 -in.county_and_puma G4800290, G48005909 -in.county_and_puma G4800290, G48005910 -in.county_and_puma G4800290, G48005911 -in.county_and_puma G4800290, G48005912 -in.county_and_puma G4800290, G48005913 -in.county_and_puma G4800290, G48005914 -in.county_and_puma G4800290, G48005915 -in.county_and_puma G4800290, G48005916 -in.county_and_puma G4800350, G48003700 -in.county_and_puma G4800370, G48001100 -in.county_and_puma G4800390, G48004801 -in.county_and_puma G4800390, G48004802 -in.county_and_puma G4800390, G48004803 -in.county_and_puma G4800410, G48003602 -in.county_and_puma G4800490, G48002600 -in.county_and_puma G4800510, G48003601 -in.county_and_puma G4800530, G48003400 -in.county_and_puma G4800550, G48005100 -in.county_and_puma G4800570, G48005600 -in.county_and_puma G4800590, G48002600 -in.county_and_puma G4800610, G48006701 -in.county_and_puma G4800610, G48006702 -in.county_and_puma G4800610, G48006703 -in.county_and_puma G4800670, G48001100 -in.county_and_puma G4800710, G48004400 -in.county_and_puma G4800730, G48001700 -in.county_and_puma G4800850, G48001901 -in.county_and_puma G4800850, G48001902 -in.county_and_puma G4800850, G48001903 -in.county_and_puma G4800850, G48001904 -in.county_and_puma G4800850, G48001905 -in.county_and_puma G4800850, G48001906 -in.county_and_puma G4800850, G48001907 -in.county_and_puma G4800890, G48005000 -in.county_and_puma G4800910, G48005800 -in.county_and_puma G4800930, G48002600 -in.county_and_puma G4800970, G48000800 -in.county_and_puma G4800990, G48003400 -in.county_and_puma G4801130, G48002301 -in.county_and_puma G4801130, G48002302 -in.county_and_puma G4801130, G48002303 -in.county_and_puma G4801130, G48002304 -in.county_and_puma G4801130, G48002305 -in.county_and_puma G4801130, G48002306 -in.county_and_puma G4801130, G48002307 -in.county_and_puma G4801130, G48002308 -in.county_and_puma G4801130, G48002309 -in.county_and_puma G4801130, G48002310 -in.county_and_puma G4801130, G48002311 -in.county_and_puma G4801130, G48002312 -in.county_and_puma G4801130, G48002313 -in.county_and_puma G4801130, G48002314 -in.county_and_puma G4801130, G48002315 -in.county_and_puma G4801130, G48002316 -in.county_and_puma G4801130, G48002317 -in.county_and_puma G4801130, G48002318 -in.county_and_puma G4801130, G48002319 -in.county_and_puma G4801130, G48002320 -in.county_and_puma G4801130, G48002321 -in.county_and_puma G4801130, G48002322 -in.county_and_puma G4801170, G48000100 -in.county_and_puma G4801210, G48002001 -in.county_and_puma G4801210, G48002002 -in.county_and_puma G4801210, G48002003 -in.county_and_puma G4801210, G48002004 -in.county_and_puma G4801210, G48002005 -in.county_and_puma G4801210, G48002006 -in.county_and_puma G4801230, G48005500 -in.county_and_puma G4801330, G48002600 -in.county_and_puma G4801350, G48003100 -in.county_and_puma G4801390, G48002101 -in.county_and_puma G4801410, G48003301 -in.county_and_puma G4801410, G48003302 -in.county_and_puma G4801410, G48003303 -in.county_and_puma G4801410, G48003304 -in.county_and_puma G4801410, G48003305 -in.county_and_puma G4801410, G48003306 -in.county_and_puma G4801430, G48002200 -in.county_and_puma G4801450, G48003700 -in.county_and_puma G4801470, G48000800 -in.county_and_puma G4801490, G48005100 -in.county_and_puma G4801570, G48004901 -in.county_and_puma G4801570, G48004902 -in.county_and_puma G4801570, G48004903 -in.county_and_puma G4801570, G48004904 -in.county_and_puma G4801570, G48004905 -in.county_and_puma G4801610, G48003700 -in.county_and_puma G4801630, G48006100 -in.county_and_puma G4801670, G48004701 -in.county_and_puma G4801670, G48004702 -in.county_and_puma G4801710, G48006000 -in.county_and_puma G4801770, G48005500 -in.county_and_puma G4801790, G48000100 -in.county_and_puma G4801810, G48000800 -in.county_and_puma G4801830, G48001600 -in.county_and_puma G4801850, G48003601 -in.county_and_puma G4801870, G48005700 -in.county_and_puma G4801890, G48000400 -in.county_and_puma G4801990, G48004200 -in.county_and_puma G4802010, G48004601 -in.county_and_puma G4802010, G48004602 -in.county_and_puma G4802010, G48004603 -in.county_and_puma G4802010, G48004604 -in.county_and_puma G4802010, G48004605 -in.county_and_puma G4802010, G48004606 -in.county_and_puma G4802010, G48004607 -in.county_and_puma G4802010, G48004608 -in.county_and_puma G4802010, G48004609 -in.county_and_puma G4802010, G48004610 -in.county_and_puma G4802010, G48004611 -in.county_and_puma G4802010, G48004612 -in.county_and_puma G4802010, G48004613 -in.county_and_puma G4802010, G48004614 -in.county_and_puma G4802010, G48004615 -in.county_and_puma G4802010, G48004616 -in.county_and_puma G4802010, G48004617 -in.county_and_puma G4802010, G48004618 -in.county_and_puma G4802010, G48004619 -in.county_and_puma G4802010, G48004620 -in.county_and_puma G4802010, G48004621 -in.county_and_puma G4802010, G48004622 -in.county_and_puma G4802010, G48004623 -in.county_and_puma G4802010, G48004624 -in.county_and_puma G4802010, G48004625 -in.county_and_puma G4802010, G48004626 -in.county_and_puma G4802010, G48004627 -in.county_and_puma G4802010, G48004628 -in.county_and_puma G4802010, G48004629 -in.county_and_puma G4802010, G48004630 -in.county_and_puma G4802010, G48004631 -in.county_and_puma G4802010, G48004632 -in.county_and_puma G4802010, G48004633 -in.county_and_puma G4802010, G48004634 -in.county_and_puma G4802010, G48004635 -in.county_and_puma G4802010, G48004636 -in.county_and_puma G4802010, G48004637 -in.county_and_puma G4802010, G48004638 -in.county_and_puma G4802030, G48001200 -in.county_and_puma G4802090, G48005400 -in.county_and_puma G4802130, G48001800 -in.county_and_puma G4802150, G48006801 -in.county_and_puma G4802150, G48006802 -in.county_and_puma G4802150, G48006803 -in.county_and_puma G4802150, G48006804 -in.county_and_puma G4802150, G48006805 -in.county_and_puma G4802150, G48006806 -in.county_and_puma G4802150, G48006807 -in.county_and_puma G4802170, G48003700 -in.county_and_puma G4802190, G48000400 -in.county_and_puma G4802210, G48002200 -in.county_and_puma G4802230, G48001000 -in.county_and_puma G4802250, G48003900 -in.county_and_puma G4802270, G48002800 -in.county_and_puma G4802310, G48000900 -in.county_and_puma G4802330, G48000100 -in.county_and_puma G4802410, G48004100 -in.county_and_puma G4802450, G48004301 -in.county_and_puma G4802450, G48004302 -in.county_and_puma G4802490, G48006900 -in.county_and_puma G4802510, G48002102 -in.county_and_puma G4802530, G48002600 -in.county_and_puma G4802570, G48001400 -in.county_and_puma G4802590, G48006000 -in.county_and_puma G4802650, G48006000 -in.county_and_puma G4802730, G48006900 -in.county_and_puma G4802770, G48001000 -in.county_and_puma G4802810, G48003400 -in.county_and_puma G4802850, G48005500 -in.county_and_puma G4802870, G48005100 -in.county_and_puma G4802890, G48003601 -in.county_and_puma G4802910, G48004400 -in.county_and_puma G4802930, G48003700 -in.county_and_puma G4802990, G48003400 -in.county_and_puma G4803030, G48000501 -in.county_and_puma G4803030, G48000502 -in.county_and_puma G4803090, G48003801 -in.county_and_puma G4803090, G48003802 -in.county_and_puma G4803210, G48005000 -in.county_and_puma G4803230, G48006200 -in.county_and_puma G4803250, G48006100 -in.county_and_puma G4803290, G48003000 -in.county_and_puma G4803310, G48003601 -in.county_and_puma G4803370, G48000600 -in.county_and_puma G4803390, G48004501 -in.county_and_puma G4803390, G48004502 -in.county_and_puma G4803390, G48004503 -in.county_and_puma G4803390, G48004504 -in.county_and_puma G4803410, G48000100 -in.county_and_puma G4803470, G48004000 -in.county_and_puma G4803490, G48003700 -in.county_and_puma G4803530, G48002600 -in.county_and_puma G4803550, G48006601 -in.county_and_puma G4803550, G48006602 -in.county_and_puma G4803550, G48006603 -in.county_and_puma G4803610, G48004200 -in.county_and_puma G4803630, G48002200 -in.county_and_puma G4803650, G48001700 -in.county_and_puma G4803670, G48002400 -in.county_and_puma G4803730, G48003900 -in.county_and_puma G4803750, G48000200 -in.county_and_puma G4803810, G48000300 -in.county_and_puma G4803870, G48001000 -in.county_and_puma G4803950, G48003601 -in.county_and_puma G4803970, G48000900 -in.county_and_puma G4804010, G48001700 -in.county_and_puma G4804030, G48004100 -in.county_and_puma G4804070, G48003900 -in.county_and_puma G4804090, G48006500 -in.county_and_puma G4804150, G48002600 -in.county_and_puma G4804190, G48004100 -in.county_and_puma G4804230, G48001501 -in.county_and_puma G4804230, G48001502 -in.county_and_puma G4804270, G48006400 -in.county_and_puma G4804390, G48002501 -in.county_and_puma G4804390, G48002502 -in.county_and_puma G4804390, G48002503 -in.county_and_puma G4804390, G48002504 -in.county_and_puma G4804390, G48002505 -in.county_and_puma G4804390, G48002506 -in.county_and_puma G4804390, G48002507 -in.county_and_puma G4804390, G48002508 -in.county_and_puma G4804390, G48002509 -in.county_and_puma G4804390, G48002510 -in.county_and_puma G4804390, G48002511 -in.county_and_puma G4804390, G48002512 -in.county_and_puma G4804390, G48002513 -in.county_and_puma G4804390, G48002514 -in.county_and_puma G4804390, G48002515 -in.county_and_puma G4804390, G48002516 -in.county_and_puma G4804410, G48002700 -in.county_and_puma G4804490, G48001000 -in.county_and_puma G4804510, G48002900 -in.county_and_puma G4804530, G48005301 -in.county_and_puma G4804530, G48005302 -in.county_and_puma G4804530, G48005303 -in.county_and_puma G4804530, G48005304 -in.county_and_puma G4804530, G48005305 -in.county_and_puma G4804530, G48005306 -in.county_and_puma G4804530, G48005307 -in.county_and_puma G4804530, G48005308 -in.county_and_puma G4804530, G48005309 -in.county_and_puma G4804550, G48003900 -in.county_and_puma G4804570, G48004100 -in.county_and_puma G4804590, G48001200 -in.county_and_puma G4804630, G48006200 -in.county_and_puma G4804650, G48006200 -in.county_and_puma G4804670, G48001300 -in.county_and_puma G4804690, G48005600 -in.county_and_puma G4804710, G48003900 -in.county_and_puma G4804730, G48005000 -in.county_and_puma G4804770, G48003601 -in.county_and_puma G4804790, G48006301 -in.county_and_puma G4804790, G48006302 -in.county_and_puma G4804810, G48005000 -in.county_and_puma G4804850, G48000700 -in.county_and_puma G4804910, G48005201 -in.county_and_puma G4804910, G48005202 -in.county_and_puma G4804910, G48005203 -in.county_and_puma G4804910, G48005204 -in.county_and_puma G4804930, G48005500 -in.county_and_puma G4804970, G48000600 -in.county_and_puma G4804990, G48001300 -in.county_and_puma G4805030, G48000600 -in.county_and_puma G4805050, G48006400 -in.county_and_puma G4900030, G49003001 -in.county_and_puma G4900050, G49005001 -in.county_and_puma G4900070, G49013001 -in.county_and_puma G4900110, G49011001 -in.county_and_puma G4900110, G49011002 -in.county_and_puma G4900130, G49013001 -in.county_and_puma G4900210, G49021001 -in.county_and_puma G4900350, G49035001 -in.county_and_puma G4900350, G49035002 -in.county_and_puma G4900350, G49035003 -in.county_and_puma G4900350, G49035004 -in.county_and_puma G4900350, G49035005 -in.county_and_puma G4900350, G49035006 -in.county_and_puma G4900350, G49035007 -in.county_and_puma G4900350, G49035008 -in.county_and_puma G4900350, G49035009 -in.county_and_puma G4900390, G49021001 -in.county_and_puma G4900410, G49021001 -in.county_and_puma G4900430, G49005001 -in.county_and_puma G4900450, G49003001 -in.county_and_puma G4900470, G49013001 -in.county_and_puma G4900490, G49049001 -in.county_and_puma G4900490, G49049002 -in.county_and_puma G4900490, G49049003 -in.county_and_puma G4900490, G49049004 -in.county_and_puma G4900510, G49013001 -in.county_and_puma G4900530, G49053001 -in.county_and_puma G4900570, G49057001 -in.county_and_puma G4900570, G49057002 -in.county_and_puma G5000010, G50000400 -in.county_and_puma G5000030, G50000400 -in.county_and_puma G5000050, G50000200 -in.county_and_puma G5000070, G50000100 -in.county_and_puma G5000110, G50000100 -in.county_and_puma G5000150, G50000200 -in.county_and_puma G5000170, G50000300 -in.county_and_puma G5000190, G50000200 -in.county_and_puma G5000210, G50000400 -in.county_and_puma G5000230, G50000200 -in.county_and_puma G5000250, G50000300 -in.county_and_puma G5000270, G50000300 -in.county_and_puma G5100010, G51051125 -in.county_and_puma G5100030, G51051089 -in.county_and_puma G5100030, G51051090 -in.county_and_puma G5100050, G51051045 -in.county_and_puma G5100090, G51051095 -in.county_and_puma G5100110, G51051095 -in.county_and_puma G5100130, G51001301 -in.county_and_puma G5100130, G51001302 -in.county_and_puma G5100150, G51051080 -in.county_and_puma G5100190, G51051095 -in.county_and_puma G5100230, G51051045 -in.county_and_puma G5100250, G51051105 -in.county_and_puma G5100270, G51051010 -in.county_and_puma G5100290, G51051105 -in.county_and_puma G5100310, G51051096 -in.county_and_puma G5100330, G51051120 -in.county_and_puma G5100350, G51051020 -in.county_and_puma G5100410, G51004101 -in.county_and_puma G5100410, G51004102 -in.county_and_puma G5100410, G51004103 -in.county_and_puma G5100470, G51051087 -in.county_and_puma G5100510, G51051010 -in.county_and_puma G5100530, G51051135 -in.county_and_puma G5100590, G51059301 -in.county_and_puma G5100590, G51059302 -in.county_and_puma G5100590, G51059303 -in.county_and_puma G5100590, G51059304 -in.county_and_puma G5100590, G51059305 -in.county_and_puma G5100590, G51059306 -in.county_and_puma G5100590, G51059307 -in.county_and_puma G5100590, G51059308 -in.county_and_puma G5100590, G51059309 -in.county_and_puma G5100610, G51051087 -in.county_and_puma G5100630, G51051040 -in.county_and_puma G5100650, G51051089 -in.county_and_puma G5100670, G51051045 -in.county_and_puma G5100690, G51051084 -in.county_and_puma G5100710, G51051040 -in.county_and_puma G5100730, G51051125 -in.county_and_puma G5100750, G51051215 -in.county_and_puma G5100770, G51051020 -in.county_and_puma G5100790, G51051090 -in.county_and_puma G5100830, G51051105 -in.county_and_puma G5100850, G51051215 -in.county_and_puma G5100870, G51051224 -in.county_and_puma G5100870, G51051225 -in.county_and_puma G5100890, G51051097 -in.county_and_puma G5100930, G51051145 -in.county_and_puma G5100950, G51051206 -in.county_and_puma G5100990, G51051120 -in.county_and_puma G5101010, G51051215 -in.county_and_puma G5101030, G51051125 -in.county_and_puma G5101050, G51051010 -in.county_and_puma G5101070, G51010701 -in.county_and_puma G5101070, G51010702 -in.county_and_puma G5101070, G51010703 -in.county_and_puma G5101090, G51051089 -in.county_and_puma G5101170, G51051105 -in.county_and_puma G5101190, G51051125 -in.county_and_puma G5101210, G51051040 -in.county_and_puma G5101250, G51051089 -in.county_and_puma G5101270, G51051215 -in.county_and_puma G5101310, G51051125 -in.county_and_puma G5101330, G51051125 -in.county_and_puma G5101350, G51051105 -in.county_and_puma G5101370, G51051087 -in.county_and_puma G5101390, G51051085 -in.county_and_puma G5101410, G51051097 -in.county_and_puma G5101430, G51051097 -in.county_and_puma G5101450, G51051215 -in.county_and_puma G5101470, G51051105 -in.county_and_puma G5101490, G51051135 -in.county_and_puma G5101530, G51051244 -in.county_and_puma G5101530, G51051245 -in.county_and_puma G5101530, G51051246 -in.county_and_puma G5101550, G51051040 -in.county_and_puma G5101610, G51051045 -in.county_and_puma G5101630, G51051080 -in.county_and_puma G5101650, G51051110 -in.county_and_puma G5101670, G51051010 -in.county_and_puma G5101690, G51051010 -in.county_and_puma G5101710, G51051085 -in.county_and_puma G5101730, G51051020 -in.county_and_puma G5101750, G51051145 -in.county_and_puma G5101770, G51051120 -in.county_and_puma G5101790, G51051115 -in.county_and_puma G5101850, G51051010 -in.county_and_puma G5101870, G51051085 -in.county_and_puma G5101910, G51051020 -in.county_and_puma G5101930, G51051125 -in.county_and_puma G5101950, G51051010 -in.county_and_puma G5101970, G51051020 -in.county_and_puma G5101990, G51051206 -in.county_and_puma G5105100, G51051255 -in.county_and_puma G5105200, G51051020 -in.county_and_puma G5105400, G51051090 -in.county_and_puma G5105500, G51055001 -in.county_and_puma G5105500, G51055002 -in.county_and_puma G5105700, G51051135 -in.county_and_puma G5105900, G51051097 -in.county_and_puma G5106000, G51059303 -in.county_and_puma G5106300, G51051115 -in.county_and_puma G5106500, G51051186 -in.county_and_puma G5106600, G51051110 -in.county_and_puma G5106700, G51051135 -in.county_and_puma G5106800, G51051096 -in.county_and_puma G5106830, G51051245 -in.county_and_puma G5106900, G51051097 -in.county_and_puma G5107000, G51051175 -in.county_and_puma G5107100, G51051154 -in.county_and_puma G5107100, G51051155 -in.county_and_puma G5107300, G51051135 -in.county_and_puma G5107400, G51051155 -in.county_and_puma G5107600, G51051235 -in.county_and_puma G5107700, G51051044 -in.county_and_puma G5107750, G51051044 -in.county_and_puma G5107900, G51051080 -in.county_and_puma G5108000, G51051145 -in.county_and_puma G5108100, G51051164 -in.county_and_puma G5108100, G51051165 -in.county_and_puma G5108100, G51051167 -in.county_and_puma G5108200, G51051080 -in.county_and_puma G5108400, G51051084 -in.county_and_puma G5300010, G53010600 -in.county_and_puma G5300030, G53010600 -in.county_and_puma G5300050, G53010701 -in.county_and_puma G5300050, G53010702 -in.county_and_puma G5300050, G53010703 -in.county_and_puma G5300070, G53010300 -in.county_and_puma G5300090, G53011900 -in.county_and_puma G5300110, G53011101 -in.county_and_puma G5300110, G53011102 -in.county_and_puma G5300110, G53011103 -in.county_and_puma G5300110, G53011104 -in.county_and_puma G5300150, G53011200 -in.county_and_puma G5300170, G53010300 -in.county_and_puma G5300210, G53010701 -in.county_and_puma G5300250, G53010800 -in.county_and_puma G5300270, G53011300 -in.county_and_puma G5300290, G53010200 -in.county_and_puma G5300310, G53011900 -in.county_and_puma G5300330, G53011601 -in.county_and_puma G5300330, G53011602 -in.county_and_puma G5300330, G53011603 -in.county_and_puma G5300330, G53011604 -in.county_and_puma G5300330, G53011605 -in.county_and_puma G5300330, G53011606 -in.county_and_puma G5300330, G53011607 -in.county_and_puma G5300330, G53011608 -in.county_and_puma G5300330, G53011609 -in.county_and_puma G5300330, G53011610 -in.county_and_puma G5300330, G53011611 -in.county_and_puma G5300330, G53011612 -in.county_and_puma G5300330, G53011613 -in.county_and_puma G5300330, G53011614 -in.county_and_puma G5300330, G53011615 -in.county_and_puma G5300330, G53011616 -in.county_and_puma G5300350, G53011801 -in.county_and_puma G5300350, G53011802 -in.county_and_puma G5300370, G53010800 -in.county_and_puma G5300390, G53011000 -in.county_and_puma G5300410, G53011000 -in.county_and_puma G5300450, G53011300 -in.county_and_puma G5300470, G53010400 -in.county_and_puma G5300490, G53011200 -in.county_and_puma G5300510, G53010400 -in.county_and_puma G5300530, G53011501 -in.county_and_puma G5300530, G53011502 -in.county_and_puma G5300530, G53011503 -in.county_and_puma G5300530, G53011504 -in.county_and_puma G5300530, G53011505 -in.county_and_puma G5300530, G53011506 -in.county_and_puma G5300530, G53011507 -in.county_and_puma G5300550, G53010200 -in.county_and_puma G5300570, G53010200 -in.county_and_puma G5300610, G53011701 -in.county_and_puma G5300610, G53011702 -in.county_and_puma G5300610, G53011703 -in.county_and_puma G5300610, G53011704 -in.county_and_puma G5300610, G53011705 -in.county_and_puma G5300610, G53011706 -in.county_and_puma G5300630, G53010501 -in.county_and_puma G5300630, G53010502 -in.county_and_puma G5300630, G53010503 -in.county_and_puma G5300630, G53010504 -in.county_and_puma G5300650, G53010400 -in.county_and_puma G5300670, G53011401 -in.county_and_puma G5300670, G53011402 -in.county_and_puma G5300710, G53010703 -in.county_and_puma G5300730, G53010100 -in.county_and_puma G5300750, G53010600 -in.county_and_puma G5300770, G53010901 -in.county_and_puma G5300770, G53010902 -in.county_and_puma G5400010, G54000500 -in.county_and_puma G5400030, G54000400 -in.county_and_puma G5400050, G54000900 -in.county_and_puma G5400070, G54000600 -in.county_and_puma G5400090, G54000100 -in.county_and_puma G5400110, G54000800 -in.county_and_puma G5400190, G54001200 -in.county_and_puma G5400230, G54000500 -in.county_and_puma G5400250, G54001100 -in.county_and_puma G5400270, G54000400 -in.county_and_puma G5400290, G54000100 -in.county_and_puma G5400310, G54000500 -in.county_and_puma G5400330, G54000200 -in.county_and_puma G5400350, G54000600 -in.county_and_puma G5400370, G54000400 -in.county_and_puma G5400390, G54001000 -in.county_and_puma G5400410, G54000500 -in.county_and_puma G5400430, G54000900 -in.county_and_puma G5400450, G54001300 -in.county_and_puma G5400470, G54001300 -in.county_and_puma G5400490, G54000200 -in.county_and_puma G5400510, G54000100 -in.county_and_puma G5400530, G54000800 -in.county_and_puma G5400550, G54001200 -in.county_and_puma G5400570, G54000400 -in.county_and_puma G5400590, G54001300 -in.county_and_puma G5400610, G54000300 -in.county_and_puma G5400630, G54001100 -in.county_and_puma G5400650, G54000400 -in.county_and_puma G5400670, G54001100 -in.county_and_puma G5400690, G54000100 -in.county_and_puma G5400750, G54001100 -in.county_and_puma G5400770, G54000300 -in.county_and_puma G5400790, G54000900 -in.county_and_puma G5400810, G54001200 -in.county_and_puma G5400830, G54000500 -in.county_and_puma G5400870, G54000600 -in.county_and_puma G5400890, G54001100 -in.county_and_puma G5400910, G54000200 -in.county_and_puma G5400970, G54000500 -in.county_and_puma G5400990, G54000800 -in.county_and_puma G5401030, G54000600 -in.county_and_puma G5401070, G54000700 -in.county_and_puma G5401090, G54001300 -in.county_and_puma G5500010, G55001601 -in.county_and_puma G5500030, G55000100 -in.county_and_puma G5500050, G55055101 -in.county_and_puma G5500070, G55000100 -in.county_and_puma G5500090, G55000200 -in.county_and_puma G5500090, G55000300 -in.county_and_puma G5500110, G55000700 -in.county_and_puma G5500130, G55000100 -in.county_and_puma G5500150, G55001401 -in.county_and_puma G5500170, G55055103 -in.county_and_puma G5500190, G55055101 -in.county_and_puma G5500210, G55001000 -in.county_and_puma G5500230, G55000700 -in.county_and_puma G5500250, G55000101 -in.county_and_puma G5500250, G55000102 -in.county_and_puma G5500250, G55000103 -in.county_and_puma G5500270, G55001001 -in.county_and_puma G5500290, G55001300 -in.county_and_puma G5500310, G55000100 -in.county_and_puma G5500330, G55055102 -in.county_and_puma G5500350, G55055103 -in.county_and_puma G5500390, G55001401 -in.county_and_puma G5500410, G55000600 -in.county_and_puma G5500430, G55000800 -in.county_and_puma G5500450, G55000800 -in.county_and_puma G5500470, G55001400 -in.county_and_puma G5500490, G55000800 -in.county_and_puma G5500510, G55000100 -in.county_and_puma G5500530, G55000700 -in.county_and_puma G5500550, G55001001 -in.county_and_puma G5500570, G55001601 -in.county_and_puma G5500590, G55010000 -in.county_and_puma G5500610, G55001301 -in.county_and_puma G5500630, G55000900 -in.county_and_puma G5500650, G55000800 -in.county_and_puma G5500670, G55000600 -in.county_and_puma G5500690, G55000600 -in.county_and_puma G5500710, G55001301 -in.county_and_puma G5500730, G55001600 -in.county_and_puma G5500750, G55001300 -in.county_and_puma G5500770, G55001400 -in.county_and_puma G5500790, G55040101 -in.county_and_puma G5500790, G55040301 -in.county_and_puma G5500790, G55040701 -in.county_and_puma G5500790, G55041001 -in.county_and_puma G5500790, G55041002 -in.county_and_puma G5500790, G55041003 -in.county_and_puma G5500790, G55041004 -in.county_and_puma G5500790, G55041005 -in.county_and_puma G5500810, G55000700 -in.county_and_puma G5500830, G55001300 -in.county_and_puma G5500850, G55000600 -in.county_and_puma G5500870, G55001500 -in.county_and_puma G5500890, G55020000 -in.county_and_puma G5500930, G55000700 -in.county_and_puma G5500950, G55055101 -in.county_and_puma G5500970, G55001601 -in.county_and_puma G5500990, G55000100 -in.county_and_puma G5501010, G55030000 -in.county_and_puma G5501030, G55000800 -in.county_and_puma G5501050, G55002400 -in.county_and_puma G5501070, G55000100 -in.county_and_puma G5501090, G55055102 -in.county_and_puma G5501110, G55001000 -in.county_and_puma G5501130, G55000100 -in.county_and_puma G5501150, G55001400 -in.county_and_puma G5501170, G55002500 -in.county_and_puma G5501190, G55000100 -in.county_and_puma G5501210, G55000700 -in.county_and_puma G5501230, G55000700 -in.county_and_puma G5501250, G55000600 -in.county_and_puma G5501270, G55050000 -in.county_and_puma G5501290, G55000100 -in.county_and_puma G5501310, G55020000 -in.county_and_puma G5501330, G55070101 -in.county_and_puma G5501330, G55070201 -in.county_and_puma G5501330, G55070301 -in.county_and_puma G5501350, G55001400 -in.county_and_puma G5501370, G55001400 -in.county_and_puma G5501390, G55001501 -in.county_and_puma G5501410, G55001601 -in.county_and_puma G5600010, G56000300 -in.county_and_puma G5600050, G56000200 -in.county_and_puma G5600070, G56000400 -in.county_and_puma G5600090, G56000400 -in.county_and_puma G5600130, G56000500 -in.county_and_puma G5600210, G56000300 -in.county_and_puma G5600230, G56000100 -in.county_and_puma G5600250, G56000400 -in.county_and_puma G5600290, G56000100 -in.county_and_puma G5600330, G56000100 -in.county_and_puma G5600350, G56000500 -in.county_and_puma G5600370, G56000500 -in.county_and_puma G5600390, G56000100 -in.county_and_puma G5600410, G56000500 -in.county_metro_status Metropolitan -in.county_metro_status Non-Metropolitan -in.county_name Broward County -in.county_name Christian County -in.county_name Clark County -in.county_name Cooke County -in.county_name Essex County -in.county_name Los Angeles County -in.county_name Mendocino County -in.county_name Rankin County -in.county_name San Diego County -in.county_name Sequoyah County -in.county_name Spalding County -in.custom_state AK -in.custom_state Others -in.dehumidifier None -in.dishwasher 290 Rated kWh -in.dishwasher 318 Rated kWh -in.dishwasher None -in.dishwasher_usage_level 100% Usage -in.dishwasher_usage_level 120% Usage -in.dishwasher_usage_level 80% Usage -in.door_area 20 ft^2 -in.doors Fiberglass -in.duct_leakage_and_insulation 0% Leakage to Outside, Uninsulated -in.duct_leakage_and_insulation 10% Leakage to Outside, R-4 -in.duct_leakage_and_insulation 10% Leakage to Outside, R-6 -in.duct_leakage_and_insulation 10% Leakage to Outside, R-8 -in.duct_leakage_and_insulation 10% Leakage to Outside, Uninsulated -in.duct_leakage_and_insulation 20% Leakage to Outside, R-4 -in.duct_leakage_and_insulation 20% Leakage to Outside, R-6 -in.duct_leakage_and_insulation 20% Leakage to Outside, R-8 -in.duct_leakage_and_insulation 20% Leakage to Outside, Uninsulated -in.duct_leakage_and_insulation 30% Leakage to Outside, R-4 -in.duct_leakage_and_insulation 30% Leakage to Outside, R-6 -in.duct_leakage_and_insulation 30% Leakage to Outside, R-8 -in.duct_leakage_and_insulation 30% Leakage to Outside, Uninsulated -in.duct_leakage_and_insulation None -in.duct_location Attic -in.duct_location Crawlspace -in.duct_location Garage -in.duct_location Heated Basement -in.duct_location Living Space -in.duct_location None -in.duct_location Unheated Basement -in.eaves 2 ft -in.electric_panel_breaker_space_total_count 11.0 -in.electric_panel_breaker_space_total_count 14.0 -in.electric_panel_breaker_space_total_count 16.0 -in.electric_panel_breaker_space_total_count 17.0 -in.electric_panel_breaker_space_total_count 19.0 -in.electric_panel_breaker_space_total_count 21.0 -in.electric_panel_breaker_space_total_count 22.0 -in.electric_panel_breaker_space_total_count 23.0 -in.electric_panel_breaker_space_total_count 25.0 -in.electric_panel_breaker_space_total_count 30.0 -in.electric_panel_service_rating..a 100.0 -in.electric_panel_service_rating..a 200.0 -in.electric_panel_service_rating..a 250.0 -in.electric_panel_service_rating_bin..a 100 -in.electric_panel_service_rating_bin..a 200 -in.electric_panel_service_rating_bin..a 201+ -in.electric_vehicle_battery Compact, Battery Electric Vehicle, 200 mile range -in.electric_vehicle_battery Compact, Battery Electric Vehicle, 300 mile range -in.electric_vehicle_battery Midsize, Battery Electric Vehicle, 200 mile range -in.electric_vehicle_battery Midsize, Battery Electric Vehicle, 300 mile range -in.electric_vehicle_battery Pickup, Battery Electric Vehicle, 200 mile range -in.electric_vehicle_battery Pickup, Battery Electric Vehicle, 300 mile range -in.electric_vehicle_battery SUV, Battery Electric Vehicle, 200 mile range -in.electric_vehicle_battery SUV, Battery Electric Vehicle, 300 mile range -in.electric_vehicle_charge_at_home 0-19% -in.electric_vehicle_charge_at_home 100% -in.electric_vehicle_charge_at_home 20-39% -in.electric_vehicle_charge_at_home 40-59% -in.electric_vehicle_charge_at_home 60-79% -in.electric_vehicle_charge_at_home 80-99% -in.electric_vehicle_charger Level 1 charger -in.electric_vehicle_charger Level 2 charger -in.electric_vehicle_charger None -in.electric_vehicle_miles_traveled 1000 -in.electric_vehicle_miles_traveled 3000 -in.electric_vehicle_miles_traveled 5000 -in.electric_vehicle_miles_traveled 7000 -in.electric_vehicle_miles_traveled 9000 -in.electric_vehicle_miles_traveled 11000 -in.electric_vehicle_miles_traveled 13000 -in.electric_vehicle_miles_traveled 15000 -in.electric_vehicle_miles_traveled 17000 -in.electric_vehicle_miles_traveled 19000 -in.electric_vehicle_miles_traveled 22500 -in.electric_vehicle_outlet_access No -in.electric_vehicle_outlet_access Yes -in.electric_vehicle_ownership No -in.electric_vehicle_ownership Yes -in.energystar_climate_zone_2023 North-Central -in.energystar_climate_zone_2023 Northern -in.energystar_climate_zone_2023 South-Central -in.energystar_climate_zone_2023 Southern -in.federal_poverty_level 0-100% -in.federal_poverty_level 100-150% -in.federal_poverty_level 150-200% -in.federal_poverty_level 200-300% -in.federal_poverty_level 300-400% -in.federal_poverty_level 400%+ -in.federal_poverty_level Not Available -in.generation_and_emissions_assessment_region CAISO -in.generation_and_emissions_assessment_region ERCOT -in.generation_and_emissions_assessment_region FRCC -in.generation_and_emissions_assessment_region ISONE -in.generation_and_emissions_assessment_region MISO Central -in.generation_and_emissions_assessment_region MISO North -in.generation_and_emissions_assessment_region MISO South -in.generation_and_emissions_assessment_region NYISO -in.generation_and_emissions_assessment_region None -in.generation_and_emissions_assessment_region Northern Grid East -in.generation_and_emissions_assessment_region Northern Grid South -in.generation_and_emissions_assessment_region Northern Grid West -in.generation_and_emissions_assessment_region PJM East -in.generation_and_emissions_assessment_region PJM West -in.generation_and_emissions_assessment_region SERTP -in.generation_and_emissions_assessment_region SPP North -in.generation_and_emissions_assessment_region SPP South -in.generation_and_emissions_assessment_region West Connect North -in.generation_and_emissions_assessment_region West Connect South -in.geometry_attic_type Finished Attic or Cathedral Ceilings -in.geometry_attic_type None -in.geometry_attic_type Unvented Attic -in.geometry_attic_type Vented Attic -in.geometry_building_horizontal_location_mf Left -in.geometry_building_horizontal_location_mf Middle -in.geometry_building_horizontal_location_mf None -in.geometry_building_horizontal_location_mf Not Applicable -in.geometry_building_horizontal_location_mf Right -in.geometry_building_horizontal_location_sfa Left -in.geometry_building_horizontal_location_sfa Middle -in.geometry_building_horizontal_location_sfa None -in.geometry_building_horizontal_location_sfa Right -in.geometry_building_level_mf Bottom -in.geometry_building_level_mf Middle -in.geometry_building_level_mf None -in.geometry_building_level_mf Top -in.geometry_building_number_units_mf 2.0 -in.geometry_building_number_units_mf 3.0 -in.geometry_building_number_units_mf 4.0 -in.geometry_building_number_units_mf 5.0 -in.geometry_building_number_units_mf 6.0 -in.geometry_building_number_units_mf 7.0 -in.geometry_building_number_units_mf 8.0 -in.geometry_building_number_units_mf 9.0 -in.geometry_building_number_units_mf 10.0 -in.geometry_building_number_units_mf 11.0 -in.geometry_building_number_units_mf 12.0 -in.geometry_building_number_units_mf 13.0 -in.geometry_building_number_units_mf 14.0 -in.geometry_building_number_units_mf 15.0 -in.geometry_building_number_units_mf 16.0 -in.geometry_building_number_units_mf 17.0 -in.geometry_building_number_units_mf 18.0 -in.geometry_building_number_units_mf 19.0 -in.geometry_building_number_units_mf 20.0 -in.geometry_building_number_units_mf 24.0 -in.geometry_building_number_units_mf 30.0 -in.geometry_building_number_units_mf 36.0 -in.geometry_building_number_units_mf 43.0 -in.geometry_building_number_units_mf 67.0 -in.geometry_building_number_units_mf 116.0 -in.geometry_building_number_units_mf 183.0 -in.geometry_building_number_units_mf 326.0 -in.geometry_building_number_units_mf None -in.geometry_building_number_units_sfa 5.0 -in.geometry_building_number_units_sfa 6.0 -in.geometry_building_number_units_sfa 7.0 -in.geometry_building_number_units_sfa 8.0 -in.geometry_building_number_units_sfa 10.0 -in.geometry_building_number_units_sfa 12.0 -in.geometry_building_number_units_sfa 15.0 -in.geometry_building_number_units_sfa 16.0 -in.geometry_building_number_units_sfa 20.0 -in.geometry_building_number_units_sfa 24.0 -in.geometry_building_number_units_sfa 30.0 -in.geometry_building_number_units_sfa 36.0 -in.geometry_building_number_units_sfa 50.0 -in.geometry_building_number_units_sfa 60.0 -in.geometry_building_number_units_sfa 90.0 -in.geometry_building_number_units_sfa 144.0 -in.geometry_building_number_units_sfa None -in.geometry_building_type_acs 10 to 19 Unit -in.geometry_building_type_acs 2 Unit -in.geometry_building_type_acs 20 to 49 Unit -in.geometry_building_type_acs 3 or 4 Unit -in.geometry_building_type_acs 5 to 9 Unit -in.geometry_building_type_acs 50 or more Unit -in.geometry_building_type_acs Mobile Home -in.geometry_building_type_acs Single-Family Attached -in.geometry_building_type_acs Single-Family Detached -in.geometry_building_type_height Mobile Home -in.geometry_building_type_height Multi-Family with 2 - 4 Units -in.geometry_building_type_height Multi-Family with 5+ Units, 1-3 Stories -in.geometry_building_type_height Multi-Family with 5+ Units, 4-7 Stories -in.geometry_building_type_height Multi-Family with 5+ Units, 8+ Stories -in.geometry_building_type_height Single-Family Attached -in.geometry_building_type_height Single-Family Detached -in.geometry_building_type_recs Mobile Home -in.geometry_building_type_recs Multi-Family with 2 - 4 Units -in.geometry_building_type_recs Multi-Family with 5+ Units -in.geometry_building_type_recs Single-Family Attached -in.geometry_building_type_recs Single-Family Detached -in.geometry_floor_area 0-499 -in.geometry_floor_area 1000-1499 -in.geometry_floor_area 1500-1999 -in.geometry_floor_area 2000-2499 -in.geometry_floor_area 2500-2999 -in.geometry_floor_area 3000-3999 -in.geometry_floor_area 4000+ -in.geometry_floor_area 500-749 -in.geometry_floor_area 750-999 -in.geometry_floor_area_bin 0-1499 -in.geometry_floor_area_bin 1500-2499 -in.geometry_floor_area_bin 2500-3999 -in.geometry_floor_area_bin 4000+ -in.geometry_foundation_type Ambient -in.geometry_foundation_type Heated Basement -in.geometry_foundation_type Slab -in.geometry_foundation_type Unheated Basement -in.geometry_foundation_type Unvented Crawlspace -in.geometry_foundation_type Vented Crawlspace -in.geometry_garage 1 Car -in.geometry_garage 2 Car -in.geometry_garage 3 Car -in.geometry_garage None -in.geometry_space_combination Mobile Home, Ambient, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage -in.geometry_space_combination Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Heated Basement, Finished Attic, No Garage -in.geometry_space_combination Single-Family Attached, Heated Basement, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Heated Basement, Vented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Slab, Finished Attic, No Garage -in.geometry_space_combination Single-Family Attached, Slab, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Slab, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Slab, Vented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unheated Basement, Finished Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unheated Basement, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unheated Basement, Vented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage -in.geometry_space_combination Single-Family Attached, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Ambient, Finished Attic, No Garage -in.geometry_space_combination Single-Family Detached, Ambient, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Ambient, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Ambient, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Finished Attic, No Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Heated Basement, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Finished Attic, No Garage -in.geometry_space_combination Single-Family Detached, Slab, No Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, No Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, No Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Slab, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Finished Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Unheated Basement, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, No Attic, No Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage -in.geometry_space_combination Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage -in.geometry_stories 1 -in.geometry_stories 2 -in.geometry_stories 3 -in.geometry_stories 4 -in.geometry_stories 5 -in.geometry_stories 6 -in.geometry_stories 7 -in.geometry_stories 8 -in.geometry_stories 9 -in.geometry_stories 10 -in.geometry_stories 11 -in.geometry_stories 12 -in.geometry_stories 13 -in.geometry_stories 14 -in.geometry_stories 15 -in.geometry_stories 20 -in.geometry_stories 21 -in.geometry_stories 35 -in.geometry_stories_low_rise 1 -in.geometry_stories_low_rise 2 -in.geometry_stories_low_rise 3 -in.geometry_stories_low_rise 4+ -in.geometry_story_bin 8+ -in.geometry_story_bin <8 -in.geometry_wall_exterior_finish Aluminum, Light -in.geometry_wall_exterior_finish Brick, Light -in.geometry_wall_exterior_finish Brick, Medium/Dark -in.geometry_wall_exterior_finish Fiber-Cement, Light -in.geometry_wall_exterior_finish None -in.geometry_wall_exterior_finish Shingle, Asbestos, Medium -in.geometry_wall_exterior_finish Shingle, Composition, Medium -in.geometry_wall_exterior_finish Stucco, Light -in.geometry_wall_exterior_finish Stucco, Medium/Dark -in.geometry_wall_exterior_finish Vinyl, Light -in.geometry_wall_exterior_finish Wood, Medium/Dark -in.geometry_wall_type Brick -in.geometry_wall_type Concrete -in.geometry_wall_type Steel Frame -in.geometry_wall_type Wood Frame -in.ground_thermal_conductivity 0.5 -in.ground_thermal_conductivity 0.8 -in.ground_thermal_conductivity 1.1 -in.ground_thermal_conductivity 1.4 -in.ground_thermal_conductivity 1.7 -in.ground_thermal_conductivity 2.0 -in.ground_thermal_conductivity 2.3 -in.ground_thermal_conductivity 2.6 -in.has_pv No -in.has_pv Yes -in.heating_fuel Electricity -in.heating_fuel Fuel Oil -in.heating_fuel Natural Gas -in.heating_fuel None -in.heating_fuel Propane -in.heating_fuel Wood -in.heating_setpoint 55F -in.heating_setpoint 60F -in.heating_setpoint 62F -in.heating_setpoint 65F -in.heating_setpoint 67F -in.heating_setpoint 68F -in.heating_setpoint 70F -in.heating_setpoint 72F -in.heating_setpoint 75F -in.heating_setpoint 76F -in.heating_setpoint 78F -in.heating_setpoint 80F -in.heating_setpoint_has_offset No -in.heating_setpoint_has_offset Yes -in.heating_setpoint_offset_magnitude 0F -in.heating_setpoint_offset_magnitude 12F -in.heating_setpoint_offset_magnitude 3F -in.heating_setpoint_offset_magnitude 6F -in.heating_setpoint_offset_period Day -in.heating_setpoint_offset_period Day +1h -in.heating_setpoint_offset_period Day +2h -in.heating_setpoint_offset_period Day +3h -in.heating_setpoint_offset_period Day +4h -in.heating_setpoint_offset_period Day +5h -in.heating_setpoint_offset_period Day -1h -in.heating_setpoint_offset_period Day -2h -in.heating_setpoint_offset_period Day -3h -in.heating_setpoint_offset_period Day -4h -in.heating_setpoint_offset_period Day -5h -in.heating_setpoint_offset_period Day and Night -in.heating_setpoint_offset_period Day and Night +1h -in.heating_setpoint_offset_period Day and Night +2h -in.heating_setpoint_offset_period Day and Night +3h -in.heating_setpoint_offset_period Day and Night +4h -in.heating_setpoint_offset_period Day and Night +5h -in.heating_setpoint_offset_period Day and Night -1h -in.heating_setpoint_offset_period Day and Night -2h -in.heating_setpoint_offset_period Day and Night -3h -in.heating_setpoint_offset_period Day and Night -4h -in.heating_setpoint_offset_period Day and Night -5h -in.heating_setpoint_offset_period Night -in.heating_setpoint_offset_period Night +1h -in.heating_setpoint_offset_period Night +2h -in.heating_setpoint_offset_period Night +3h -in.heating_setpoint_offset_period Night +4h -in.heating_setpoint_offset_period Night +5h -in.heating_setpoint_offset_period Night -1h -in.heating_setpoint_offset_period Night -2h -in.heating_setpoint_offset_period Night -3h -in.heating_setpoint_offset_period Night -4h -in.heating_setpoint_offset_period Night -5h -in.heating_setpoint_offset_period None -in.heating_unavailable_days 1 day -in.heating_unavailable_days 1 month -in.heating_unavailable_days 1 week -in.heating_unavailable_days 2 weeks -in.heating_unavailable_days 3 days -in.heating_unavailable_days 3 months -in.heating_unavailable_days Never -in.heating_unavailable_days Year round -in.heating_unavailable_period Never -in.holiday_lighting No Exterior Use -in.hot_water_distribution Uninsulated -in.hot_water_fixtures 100% Usage -in.hot_water_fixtures 110% Usage -in.hot_water_fixtures 120% Usage -in.hot_water_fixtures 130% Usage -in.hot_water_fixtures 140% Usage -in.hot_water_fixtures 150% Usage -in.hot_water_fixtures 160% Usage -in.hot_water_fixtures 170% Usage -in.hot_water_fixtures 180% Usage -in.hot_water_fixtures 200% Usage -in.hot_water_fixtures 50% Usage -in.hot_water_fixtures 60% Usage -in.hot_water_fixtures 70% Usage -in.hot_water_fixtures 80% Usage -in.hot_water_fixtures 90% Usage -in.household_has_tribal_persons No -in.household_has_tribal_persons Not Available -in.household_has_tribal_persons Yes -in.hvac_cooling_autosizing_factor None -in.hvac_cooling_efficiency AC, SEER 10 -in.hvac_cooling_efficiency AC, SEER 13 -in.hvac_cooling_efficiency AC, SEER 15 -in.hvac_cooling_efficiency AC, SEER 8 -in.hvac_cooling_efficiency Ducted Heat Pump -in.hvac_cooling_efficiency Non-Ducted Heat Pump -in.hvac_cooling_efficiency None -in.hvac_cooling_efficiency Room AC, EER 10.7 -in.hvac_cooling_efficiency Room AC, EER 12.0 -in.hvac_cooling_efficiency Room AC, EER 8.5 -in.hvac_cooling_efficiency Room AC, EER 9.8 -in.hvac_cooling_efficiency Shared Cooling -in.hvac_cooling_partial_space_conditioning 100% Conditioned -in.hvac_cooling_partial_space_conditioning 20% Conditioned -in.hvac_cooling_partial_space_conditioning 40% Conditioned -in.hvac_cooling_partial_space_conditioning 60% Conditioned -in.hvac_cooling_partial_space_conditioning 80% Conditioned -in.hvac_cooling_partial_space_conditioning <10% Conditioned -in.hvac_cooling_partial_space_conditioning None -in.hvac_cooling_type Central AC -in.hvac_cooling_type Ducted Heat Pump -in.hvac_cooling_type Non-Ducted Heat Pump -in.hvac_cooling_type None -in.hvac_cooling_type Room AC -in.hvac_has_ducts No -in.hvac_has_ducts Yes -in.hvac_has_shared_system Cooling Only -in.hvac_has_shared_system Heating Only -in.hvac_has_shared_system Heating and Cooling -in.hvac_has_shared_system None -in.hvac_has_zonal_electric_heating No -in.hvac_has_zonal_electric_heating Yes -in.hvac_heating_autosizing_factor None -in.hvac_heating_efficiency ASHP, SEER 10, 6.2 HSPF -in.hvac_heating_efficiency ASHP, SEER 13, 7.7 HSPF -in.hvac_heating_efficiency ASHP, SEER 15, 8.5 HSPF -in.hvac_heating_efficiency Electric Baseboard, 100% Efficiency -in.hvac_heating_efficiency Electric Boiler, 100% AFUE -in.hvac_heating_efficiency Electric Furnace, 100% AFUE -in.hvac_heating_efficiency Electric Wall Furnace, 100% AFUE -in.hvac_heating_efficiency Fuel Boiler, 76% AFUE -in.hvac_heating_efficiency Fuel Boiler, 80% AFUE -in.hvac_heating_efficiency Fuel Boiler, 90% AFUE -in.hvac_heating_efficiency Fuel Furnace, 60% AFUE -in.hvac_heating_efficiency Fuel Furnace, 76% AFUE -in.hvac_heating_efficiency Fuel Furnace, 80% AFUE -in.hvac_heating_efficiency Fuel Furnace, 92.5% AFUE -in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 60% AFUE -in.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE -in.hvac_heating_efficiency MSHP, SEER 14.5, 8.2 HSPF -in.hvac_heating_efficiency None -in.hvac_heating_efficiency Shared Heating -in.hvac_heating_type Ducted Heat Pump -in.hvac_heating_type Ducted Heating -in.hvac_heating_type Non-Ducted Heat Pump -in.hvac_heating_type Non-Ducted Heating -in.hvac_heating_type None -in.hvac_heating_type_and_fuel Electricity ASHP -in.hvac_heating_type_and_fuel Electricity Baseboard -in.hvac_heating_type_and_fuel Electricity Electric Boiler -in.hvac_heating_type_and_fuel Electricity Electric Furnace -in.hvac_heating_type_and_fuel Electricity Electric Wall Furnace -in.hvac_heating_type_and_fuel Electricity MSHP -in.hvac_heating_type_and_fuel Electricity Shared Heating -in.hvac_heating_type_and_fuel Fuel Oil Fuel Boiler -in.hvac_heating_type_and_fuel Fuel Oil Fuel Furnace -in.hvac_heating_type_and_fuel Fuel Oil Fuel Wall/Floor Furnace -in.hvac_heating_type_and_fuel Fuel Oil Shared Heating -in.hvac_heating_type_and_fuel Natural Gas Fuel Boiler -in.hvac_heating_type_and_fuel Natural Gas Fuel Furnace -in.hvac_heating_type_and_fuel Natural Gas Fuel Wall/Floor Furnace -in.hvac_heating_type_and_fuel Natural Gas Shared Heating -in.hvac_heating_type_and_fuel None -in.hvac_heating_type_and_fuel Other Fuel Fuel Wall/Floor Furnace -in.hvac_heating_type_and_fuel Propane Fuel Boiler -in.hvac_heating_type_and_fuel Propane Fuel Furnace -in.hvac_heating_type_and_fuel Propane Fuel Wall/Floor Furnace -in.hvac_secondary_heating_efficiency Fuel Boiler, 76% AFUE -in.hvac_secondary_heating_efficiency None -in.hvac_secondary_heating_fuel None -in.hvac_secondary_heating_fuel Wood -in.hvac_secondary_heating_partial_space_conditioning 0% -in.hvac_secondary_heating_partial_space_conditioning 30% -in.hvac_secondary_heating_type Non-Ducted Heating -in.hvac_secondary_heating_type None -in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Electricity -in.hvac_shared_efficiencies Boiler Baseboards Heating Only, Fuel -in.hvac_shared_efficiencies Fan Coil Cooling Only -in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Electricity -in.hvac_shared_efficiencies Fan Coil Heating and Cooling, Fuel -in.hvac_shared_efficiencies None -in.hvac_system_is_faulted No -in.hvac_system_is_scaled No -in.hvac_system_single_speed_ac_airflow None -in.hvac_system_single_speed_ac_charge None -in.hvac_system_single_speed_ashp_airflow None -in.hvac_system_single_speed_ashp_charge None -in.income 10000-14999 -in.income 100000-119999 -in.income 120000-139999 -in.income 140000-159999 -in.income 15000-19999 -in.income 160000-179999 -in.income 180000-199999 -in.income 20000-24999 -in.income 200000+ -in.income 25000-29999 -in.income 30000-34999 -in.income 35000-39999 -in.income 40000-44999 -in.income 45000-49999 -in.income 50000-59999 -in.income 60000-69999 -in.income 70000-79999 -in.income 80000-99999 -in.income <10000 -in.income Not Available -in.income_recs_2015 100000-119999 -in.income_recs_2015 120000-139999 -in.income_recs_2015 140000+ -in.income_recs_2015 20000-39999 -in.income_recs_2015 40000-59999 -in.income_recs_2015 60000-79999 -in.income_recs_2015 80000-99999 -in.income_recs_2015 <20000 -in.income_recs_2015 Not Available -in.income_recs_2020 100000-149999 -in.income_recs_2020 150000+ -in.income_recs_2020 20000-39999 -in.income_recs_2020 40000-59999 -in.income_recs_2020 60000-99999 -in.income_recs_2020 <20000 -in.income_recs_2020 Not Available -in.infiltration 1 ACH50 -in.infiltration 10 ACH50 -in.infiltration 15 ACH50 -in.infiltration 2 ACH50 -in.infiltration 20 ACH50 -in.infiltration 25 ACH50 -in.infiltration 3 ACH50 -in.infiltration 30 ACH50 -in.infiltration 4 ACH50 -in.infiltration 40 ACH50 -in.infiltration 5 ACH50 -in.infiltration 50 ACH50 -in.infiltration 6 ACH50 -in.infiltration 7 ACH50 -in.infiltration 8 ACH50 -in.insulation_ceiling None -in.insulation_ceiling R-13 -in.insulation_ceiling R-19 -in.insulation_ceiling R-30 -in.insulation_ceiling R-38 -in.insulation_ceiling R-49 -in.insulation_ceiling R-7 -in.insulation_ceiling Uninsulated -in.insulation_floor Ceiling R-13 -in.insulation_floor Ceiling R-19 -in.insulation_floor Ceiling R-30 -in.insulation_floor None -in.insulation_floor Uninsulated -in.insulation_foundation_wall None -in.insulation_foundation_wall Uninsulated -in.insulation_foundation_wall Wall R-10, Exterior -in.insulation_foundation_wall Wall R-15, Exterior -in.insulation_foundation_wall Wall R-5, Exterior -in.insulation_rim_joist None -in.insulation_rim_joist R-10, Exterior -in.insulation_rim_joist R-15, Exterior -in.insulation_rim_joist R-5, Exterior -in.insulation_rim_joist Uninsulated -in.insulation_roof Finished, R-13 -in.insulation_roof Finished, R-19 -in.insulation_roof Finished, R-30 -in.insulation_roof Finished, R-38 -in.insulation_roof Finished, R-49 -in.insulation_roof Finished, R-7 -in.insulation_roof Finished, Uninsulated -in.insulation_roof Unfinished, Uninsulated -in.insulation_slab 2ft R10 Perimeter, Vertical -in.insulation_slab 2ft R10 Under, Horizontal -in.insulation_slab 2ft R5 Perimeter, Vertical -in.insulation_slab 2ft R5 Under, Horizontal -in.insulation_slab None -in.insulation_slab Uninsulated -in.insulation_wall Brick, 12-in, 3-wythe, R-11 -in.insulation_wall Brick, 12-in, 3-wythe, R-15 -in.insulation_wall Brick, 12-in, 3-wythe, R-19 -in.insulation_wall Brick, 12-in, 3-wythe, R-7 -in.insulation_wall Brick, 12-in, 3-wythe, Uninsulated -in.insulation_wall CMU, 6-in Hollow, R-11 -in.insulation_wall CMU, 6-in Hollow, R-15 -in.insulation_wall CMU, 6-in Hollow, R-19 -in.insulation_wall CMU, 6-in Hollow, R-7 -in.insulation_wall CMU, 6-in Hollow, Uninsulated -in.insulation_wall Wood Stud, R-11 -in.insulation_wall Wood Stud, R-15 -in.insulation_wall Wood Stud, R-19 -in.insulation_wall Wood Stud, R-7 -in.insulation_wall Wood Stud, Uninsulated -in.interior_shading Summer = 0.7, Winter = 0.85 -in.iso_rto_region CAISO -in.iso_rto_region ERCOT -in.iso_rto_region MISO -in.iso_rto_region NEISO -in.iso_rto_region NYISO -in.iso_rto_region None -in.iso_rto_region PJM -in.iso_rto_region SPP -in.lighting 100% CFL -in.lighting 100% Incandescent -in.lighting 100% LED -in.lighting_interior_use 100% Usage -in.lighting_other_use 100% Usage -in.location_region CR02 -in.location_region CR03 -in.location_region CR04 -in.location_region CR05 -in.location_region CR06 -in.location_region CR07 -in.location_region CR08 -in.location_region CR09 -in.location_region CR10 -in.location_region CR11 -in.location_region CRAK -in.location_region CRHI -in.mechanical_ventilation None -in.metropolitan_and_micropolitan_statistical_area Aberdeen, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Aberdeen, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Abilene, TX MSA -in.metropolitan_and_micropolitan_statistical_area Ada, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Adrian, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Akron, OH MSA -in.metropolitan_and_micropolitan_statistical_area Alamogordo, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Albany, GA MSA -in.metropolitan_and_micropolitan_statistical_area Albany, OR MSA -in.metropolitan_and_micropolitan_statistical_area Albany-Schenectady-Troy, NY MSA -in.metropolitan_and_micropolitan_statistical_area Albemarle, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Albert Lea, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Albertville, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Albuquerque, NM MSA -in.metropolitan_and_micropolitan_statistical_area Alexandria, LA MSA -in.metropolitan_and_micropolitan_statistical_area Alexandria, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Alice, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Allentown-Bethlehem-Easton, PA-NJ MSA -in.metropolitan_and_micropolitan_statistical_area Alma, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Alpena, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Altoona, PA MSA -in.metropolitan_and_micropolitan_statistical_area Altus, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Amarillo, TX MSA -in.metropolitan_and_micropolitan_statistical_area Americus, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Ames, IA MSA -in.metropolitan_and_micropolitan_statistical_area Amsterdam, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Anchorage, AK MSA -in.metropolitan_and_micropolitan_statistical_area Angola, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Ann Arbor, MI MSA -in.metropolitan_and_micropolitan_statistical_area Anniston-Oxford-Jacksonville, AL MSA -in.metropolitan_and_micropolitan_statistical_area Appleton, WI MSA -in.metropolitan_and_micropolitan_statistical_area Arcadia, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Ardmore, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Arkadelphia, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Arkansas City-Winfield, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Asheville, NC MSA -in.metropolitan_and_micropolitan_statistical_area Ashland, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Ashtabula, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Astoria, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Atchison, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Athens, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Athens, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Athens, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Athens-Clarke County, GA MSA -in.metropolitan_and_micropolitan_statistical_area Atlanta-Sandy Springs-Roswell, GA MSA -in.metropolitan_and_micropolitan_statistical_area Atlantic City-Hammonton, NJ MSA -in.metropolitan_and_micropolitan_statistical_area Auburn, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Auburn, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Auburn-Opelika, AL MSA -in.metropolitan_and_micropolitan_statistical_area Augusta-Richmond County, GA-SC MSA -in.metropolitan_and_micropolitan_statistical_area Augusta-Waterville, ME MicroSA -in.metropolitan_and_micropolitan_statistical_area Austin, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Austin-Round Rock, TX MSA -in.metropolitan_and_micropolitan_statistical_area Bainbridge, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Bakersfield, CA MSA -in.metropolitan_and_micropolitan_statistical_area Baltimore-Columbia-Towson, MD MSA -in.metropolitan_and_micropolitan_statistical_area Bangor, ME MSA -in.metropolitan_and_micropolitan_statistical_area Baraboo, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Bardstown, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Barnstable Town, MA MSA -in.metropolitan_and_micropolitan_statistical_area Barre, VT MicroSA -in.metropolitan_and_micropolitan_statistical_area Bartlesville, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Bastrop, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Batavia, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Batesville, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Baton Rouge, LA MSA -in.metropolitan_and_micropolitan_statistical_area Battle Creek, MI MSA -in.metropolitan_and_micropolitan_statistical_area Bay City, MI MSA -in.metropolitan_and_micropolitan_statistical_area Bay City, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Beatrice, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Beaumont-Port Arthur, TX MSA -in.metropolitan_and_micropolitan_statistical_area Beaver Dam, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Beckley, WV MSA -in.metropolitan_and_micropolitan_statistical_area Bedford, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Beeville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Bellefontaine, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Bellingham, WA MSA -in.metropolitan_and_micropolitan_statistical_area Bemidji, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Bend-Redmond, OR MSA -in.metropolitan_and_micropolitan_statistical_area Bennettsville, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Bennington, VT MicroSA -in.metropolitan_and_micropolitan_statistical_area Berlin, NH-VT MicroSA -in.metropolitan_and_micropolitan_statistical_area Big Rapids, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Big Spring, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Big Stone Gap, VA MicroSA -in.metropolitan_and_micropolitan_statistical_area Billings, MT MSA -in.metropolitan_and_micropolitan_statistical_area Binghamton, NY MSA -in.metropolitan_and_micropolitan_statistical_area Birmingham-Hoover, AL MSA -in.metropolitan_and_micropolitan_statistical_area Bismarck, ND MSA -in.metropolitan_and_micropolitan_statistical_area Blackfoot, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Blacksburg-Christiansburg-Radford, VA MSA -in.metropolitan_and_micropolitan_statistical_area Bloomington, IL MSA -in.metropolitan_and_micropolitan_statistical_area Bloomington, IN MSA -in.metropolitan_and_micropolitan_statistical_area Bloomsburg-Berwick, PA MSA -in.metropolitan_and_micropolitan_statistical_area Bluefield, WV-VA MicroSA -in.metropolitan_and_micropolitan_statistical_area Blytheville, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Bogalusa, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Boise City, ID MSA -in.metropolitan_and_micropolitan_statistical_area Boone, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Boone, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Borger, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Boston-Cambridge-Newton, MA-NH MSA -in.metropolitan_and_micropolitan_statistical_area Boulder, CO MSA -in.metropolitan_and_micropolitan_statistical_area Bowling Green, KY MSA -in.metropolitan_and_micropolitan_statistical_area Bozeman, MT MicroSA -in.metropolitan_and_micropolitan_statistical_area Bradford, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Brainerd, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Branson, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Breckenridge, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Bremerton-Silverdale, WA MSA -in.metropolitan_and_micropolitan_statistical_area Brenham, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Brevard, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Bridgeport-Stamford-Norwalk, CT MSA -in.metropolitan_and_micropolitan_statistical_area Brookhaven, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Brookings, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Brookings, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Brownsville-Harlingen, TX MSA -in.metropolitan_and_micropolitan_statistical_area Brownwood, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Brunswick, GA MSA -in.metropolitan_and_micropolitan_statistical_area Bucyrus, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Buffalo-Cheektowaga-Niagara Falls, NY MSA -in.metropolitan_and_micropolitan_statistical_area Burley, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Burlington, IA-IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Burlington, NC MSA -in.metropolitan_and_micropolitan_statistical_area Burlington-South Burlington, VT MSA -in.metropolitan_and_micropolitan_statistical_area Butte-Silver Bow, MT MicroSA -in.metropolitan_and_micropolitan_statistical_area Cadillac, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Calhoun, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area California-Lexington Park, MD MSA -in.metropolitan_and_micropolitan_statistical_area Cambridge, MD MicroSA -in.metropolitan_and_micropolitan_statistical_area Cambridge, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Camden, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Campbellsville, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Canon City, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Canton, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Canton-Massillon, OH MSA -in.metropolitan_and_micropolitan_statistical_area Cape Coral-Fort Myers, FL MSA -in.metropolitan_and_micropolitan_statistical_area Cape Girardeau, MO-IL MSA -in.metropolitan_and_micropolitan_statistical_area Carbondale-Marion, IL MSA -in.metropolitan_and_micropolitan_statistical_area Carlsbad-Artesia, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Carson City, NV MSA -in.metropolitan_and_micropolitan_statistical_area Casper, WY MSA -in.metropolitan_and_micropolitan_statistical_area Cedar City, UT MicroSA -in.metropolitan_and_micropolitan_statistical_area Cedar Rapids, IA MSA -in.metropolitan_and_micropolitan_statistical_area Cedartown, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Celina, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Centralia, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Centralia, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Chambersburg-Waynesboro, PA MSA -in.metropolitan_and_micropolitan_statistical_area Champaign-Urbana, IL MSA -in.metropolitan_and_micropolitan_statistical_area Charleston, WV MSA -in.metropolitan_and_micropolitan_statistical_area Charleston-Mattoon, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Charleston-North Charleston, SC MSA -in.metropolitan_and_micropolitan_statistical_area Charlotte-Concord-Gastonia, NC-SC MSA -in.metropolitan_and_micropolitan_statistical_area Charlottesville, VA MSA -in.metropolitan_and_micropolitan_statistical_area Chattanooga, TN-GA MSA -in.metropolitan_and_micropolitan_statistical_area Cheyenne, WY MSA -in.metropolitan_and_micropolitan_statistical_area Chicago-Naperville-Elgin, IL-IN-WI MSA -in.metropolitan_and_micropolitan_statistical_area Chico, CA MSA -in.metropolitan_and_micropolitan_statistical_area Chillicothe, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Cincinnati, OH-KY-IN MSA -in.metropolitan_and_micropolitan_statistical_area Claremont-Lebanon, NH-VT MicroSA -in.metropolitan_and_micropolitan_statistical_area Clarksburg, WV MicroSA -in.metropolitan_and_micropolitan_statistical_area Clarksdale, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Clarksville, TN-KY MSA -in.metropolitan_and_micropolitan_statistical_area Clearlake, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Cleveland, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Cleveland, TN MSA -in.metropolitan_and_micropolitan_statistical_area Cleveland-Elyria, OH MSA -in.metropolitan_and_micropolitan_statistical_area Clewiston, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Clinton, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Clovis, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Coeur d'Alene, ID MSA -in.metropolitan_and_micropolitan_statistical_area Coffeyville, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Coldwater, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area College Station-Bryan, TX MSA -in.metropolitan_and_micropolitan_statistical_area Colorado Springs, CO MSA -in.metropolitan_and_micropolitan_statistical_area Columbia, MO MSA -in.metropolitan_and_micropolitan_statistical_area Columbia, SC MSA -in.metropolitan_and_micropolitan_statistical_area Columbus, GA-AL MSA -in.metropolitan_and_micropolitan_statistical_area Columbus, IN MSA -in.metropolitan_and_micropolitan_statistical_area Columbus, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Columbus, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Columbus, OH MSA -in.metropolitan_and_micropolitan_statistical_area Concord, NH MicroSA -in.metropolitan_and_micropolitan_statistical_area Connersville, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Cookeville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Coos Bay, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Cordele, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Corinth, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Cornelia, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Corning, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Corpus Christi, TX MSA -in.metropolitan_and_micropolitan_statistical_area Corsicana, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Cortland, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Corvallis, OR MSA -in.metropolitan_and_micropolitan_statistical_area Coshocton, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Craig, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Crawfordsville, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Crescent City, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Crestview-Fort Walton Beach-Destin, FL MSA -in.metropolitan_and_micropolitan_statistical_area Crossville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Cullman, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Cullowhee, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Cumberland, MD-WV MSA -in.metropolitan_and_micropolitan_statistical_area Dallas-Fort Worth-Arlington, TX MSA -in.metropolitan_and_micropolitan_statistical_area Dalton, GA MSA -in.metropolitan_and_micropolitan_statistical_area Danville, IL MSA -in.metropolitan_and_micropolitan_statistical_area Danville, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Danville, VA MicroSA -in.metropolitan_and_micropolitan_statistical_area Daphne-Fairhope-Foley, AL MSA -in.metropolitan_and_micropolitan_statistical_area Davenport-Moline-Rock Island, IA-IL MSA -in.metropolitan_and_micropolitan_statistical_area Dayton, OH MSA -in.metropolitan_and_micropolitan_statistical_area Dayton, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area DeRidder, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Decatur, AL MSA -in.metropolitan_and_micropolitan_statistical_area Decatur, IL MSA -in.metropolitan_and_micropolitan_statistical_area Decatur, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Defiance, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Del Rio, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Deltona-Daytona Beach-Ormond Beach, FL MSA -in.metropolitan_and_micropolitan_statistical_area Deming, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Denver-Aurora-Lakewood, CO MSA -in.metropolitan_and_micropolitan_statistical_area Des Moines-West Des Moines, IA MSA -in.metropolitan_and_micropolitan_statistical_area Detroit-Warren-Dearborn, MI MSA -in.metropolitan_and_micropolitan_statistical_area Dickinson, ND MicroSA -in.metropolitan_and_micropolitan_statistical_area Dixon, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Dodge City, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Dothan, AL MSA -in.metropolitan_and_micropolitan_statistical_area Douglas, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Dover, DE MSA -in.metropolitan_and_micropolitan_statistical_area DuBois, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Dublin, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Dubuque, IA MSA -in.metropolitan_and_micropolitan_statistical_area Duluth, MN-WI MSA -in.metropolitan_and_micropolitan_statistical_area Dumas, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Duncan, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Dunn, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Durango, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Durant, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Durham-Chapel Hill, NC MSA -in.metropolitan_and_micropolitan_statistical_area Dyersburg, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Eagle Pass, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area East Stroudsburg, PA MSA -in.metropolitan_and_micropolitan_statistical_area Easton, MD MicroSA -in.metropolitan_and_micropolitan_statistical_area Eau Claire, WI MSA -in.metropolitan_and_micropolitan_statistical_area Edwards, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Effingham, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area El Campo, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area El Centro, CA MSA -in.metropolitan_and_micropolitan_statistical_area El Dorado, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area El Paso, TX MSA -in.metropolitan_and_micropolitan_statistical_area Elizabeth City, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Elizabethtown-Fort Knox, KY MSA -in.metropolitan_and_micropolitan_statistical_area Elk City, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Elkhart-Goshen, IN MSA -in.metropolitan_and_micropolitan_statistical_area Elkins, WV MicroSA -in.metropolitan_and_micropolitan_statistical_area Elko, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Ellensburg, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Elmira, NY MSA -in.metropolitan_and_micropolitan_statistical_area Emporia, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Enid, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Enterprise, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Erie, PA MSA -in.metropolitan_and_micropolitan_statistical_area Escanaba, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Espanola, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Eugene, OR MSA -in.metropolitan_and_micropolitan_statistical_area Eureka-Arcata-Fortuna, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Evanston, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Evansville, IN-KY MSA -in.metropolitan_and_micropolitan_statistical_area Fairbanks, AK MSA -in.metropolitan_and_micropolitan_statistical_area Fairfield, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Fairmont, WV MicroSA -in.metropolitan_and_micropolitan_statistical_area Fallon, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Fargo, ND-MN MSA -in.metropolitan_and_micropolitan_statistical_area Faribault-Northfield, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Farmington, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Farmington, NM MSA -in.metropolitan_and_micropolitan_statistical_area Fayetteville, NC MSA -in.metropolitan_and_micropolitan_statistical_area Fayetteville-Springdale-Rogers, AR-MO MSA -in.metropolitan_and_micropolitan_statistical_area Fergus Falls, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Fernley, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Findlay, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Fitzgerald, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Flagstaff, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Flint, MI MSA -in.metropolitan_and_micropolitan_statistical_area Florence, SC MSA -in.metropolitan_and_micropolitan_statistical_area Florence-Muscle Shoals, AL MSA -in.metropolitan_and_micropolitan_statistical_area Fond du Lac, WI MSA -in.metropolitan_and_micropolitan_statistical_area Forest City, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Forrest City, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Collins, CO MSA -in.metropolitan_and_micropolitan_statistical_area Fort Dodge, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Leonard Wood, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Madison-Keokuk, IA-IL-MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Morgan, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Polk South, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Fort Smith, AR-OK MSA -in.metropolitan_and_micropolitan_statistical_area Fort Wayne, IN MSA -in.metropolitan_and_micropolitan_statistical_area Frankfort, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Frankfort, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Fredericksburg, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Freeport, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Fremont, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Fremont, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Fresno, CA MSA -in.metropolitan_and_micropolitan_statistical_area Gadsden, AL MSA -in.metropolitan_and_micropolitan_statistical_area Gaffney, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Gainesville, FL MSA -in.metropolitan_and_micropolitan_statistical_area Gainesville, GA MSA -in.metropolitan_and_micropolitan_statistical_area Gainesville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Galesburg, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Gallup, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Garden City, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Gardnerville Ranchos, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Georgetown, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Gettysburg, PA MSA -in.metropolitan_and_micropolitan_statistical_area Gillette, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Glasgow, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Glens Falls, NY MSA -in.metropolitan_and_micropolitan_statistical_area Glenwood Springs, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Gloversville, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Goldsboro, NC MSA -in.metropolitan_and_micropolitan_statistical_area Grand Forks, ND-MN MSA -in.metropolitan_and_micropolitan_statistical_area Grand Island, NE MSA -in.metropolitan_and_micropolitan_statistical_area Grand Junction, CO MSA -in.metropolitan_and_micropolitan_statistical_area Grand Rapids-Wyoming, MI MSA -in.metropolitan_and_micropolitan_statistical_area Grants Pass, OR MSA -in.metropolitan_and_micropolitan_statistical_area Grants, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Great Bend, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Great Falls, MT MSA -in.metropolitan_and_micropolitan_statistical_area Greeley, CO MSA -in.metropolitan_and_micropolitan_statistical_area Green Bay, WI MSA -in.metropolitan_and_micropolitan_statistical_area Greeneville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Greenfield Town, MA MicroSA -in.metropolitan_and_micropolitan_statistical_area Greensboro-High Point, NC MSA -in.metropolitan_and_micropolitan_statistical_area Greensburg, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Greenville, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Greenville, NC MSA -in.metropolitan_and_micropolitan_statistical_area Greenville, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Greenville-Anderson-Mauldin, SC MSA -in.metropolitan_and_micropolitan_statistical_area Greenwood, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Greenwood, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Grenada, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Gulfport-Biloxi-Pascagoula, MS MSA -in.metropolitan_and_micropolitan_statistical_area Guymon, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Hagerstown-Martinsburg, MD-WV MSA -in.metropolitan_and_micropolitan_statistical_area Hailey, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Hammond, LA MSA -in.metropolitan_and_micropolitan_statistical_area Hanford-Corcoran, CA MSA -in.metropolitan_and_micropolitan_statistical_area Hannibal, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Harrisburg-Carlisle, PA MSA -in.metropolitan_and_micropolitan_statistical_area Harrison, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Harrisonburg, VA MSA -in.metropolitan_and_micropolitan_statistical_area Hartford-West Hartford-East Hartford, CT MSA -in.metropolitan_and_micropolitan_statistical_area Hastings, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Hattiesburg, MS MSA -in.metropolitan_and_micropolitan_statistical_area Hays, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Heber, UT MicroSA -in.metropolitan_and_micropolitan_statistical_area Helena, MT MicroSA -in.metropolitan_and_micropolitan_statistical_area Helena-West Helena, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Henderson, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Hereford, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Hermiston-Pendleton, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Hickory-Lenoir-Morganton, NC MSA -in.metropolitan_and_micropolitan_statistical_area Hillsdale, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Hilo, HI MicroSA -in.metropolitan_and_micropolitan_statistical_area Hilton Head Island-Bluffton-Beaufort, SC MSA -in.metropolitan_and_micropolitan_statistical_area Hinesville, GA MSA -in.metropolitan_and_micropolitan_statistical_area Hobbs, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Holland, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Homosassa Springs, FL MSA -in.metropolitan_and_micropolitan_statistical_area Hood River, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Hot Springs, AR MSA -in.metropolitan_and_micropolitan_statistical_area Houghton, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Houma-Thibodaux, LA MSA -in.metropolitan_and_micropolitan_statistical_area Houston-The Woodlands-Sugar Land, TX MSA -in.metropolitan_and_micropolitan_statistical_area Hudson, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Huntingdon, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Huntington, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Huntington-Ashland, WV-KY-OH MSA -in.metropolitan_and_micropolitan_statistical_area Huntsville, AL MSA -in.metropolitan_and_micropolitan_statistical_area Huntsville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Huron, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Hutchinson, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Hutchinson, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Idaho Falls, ID MSA -in.metropolitan_and_micropolitan_statistical_area Indiana, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Indianapolis-Carmel-Anderson, IN MSA -in.metropolitan_and_micropolitan_statistical_area Indianola, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Ionia, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Iowa City, IA MSA -in.metropolitan_and_micropolitan_statistical_area Iron Mountain, MI-WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Ithaca, NY MSA -in.metropolitan_and_micropolitan_statistical_area Jackson, MI MSA -in.metropolitan_and_micropolitan_statistical_area Jackson, MS MSA -in.metropolitan_and_micropolitan_statistical_area Jackson, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Jackson, TN MSA -in.metropolitan_and_micropolitan_statistical_area Jackson, WY-ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Jacksonville, FL MSA -in.metropolitan_and_micropolitan_statistical_area Jacksonville, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Jacksonville, NC MSA -in.metropolitan_and_micropolitan_statistical_area Jacksonville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Jamestown, ND MicroSA -in.metropolitan_and_micropolitan_statistical_area Jamestown-Dunkirk-Fredonia, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Janesville-Beloit, WI MSA -in.metropolitan_and_micropolitan_statistical_area Jasper, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Jefferson City, MO MSA -in.metropolitan_and_micropolitan_statistical_area Jefferson, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Jesup, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Johnson City, TN MSA -in.metropolitan_and_micropolitan_statistical_area Johnstown, PA MSA -in.metropolitan_and_micropolitan_statistical_area Jonesboro, AR MSA -in.metropolitan_and_micropolitan_statistical_area Joplin, MO MSA -in.metropolitan_and_micropolitan_statistical_area Junction City, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Juneau, AK MicroSA -in.metropolitan_and_micropolitan_statistical_area Kahului-Wailuku-Lahaina, HI MSA -in.metropolitan_and_micropolitan_statistical_area Kalamazoo-Portage, MI MSA -in.metropolitan_and_micropolitan_statistical_area Kalispell, MT MicroSA -in.metropolitan_and_micropolitan_statistical_area Kankakee, IL MSA -in.metropolitan_and_micropolitan_statistical_area Kansas City, MO-KS MSA -in.metropolitan_and_micropolitan_statistical_area Kapaa, HI MicroSA -in.metropolitan_and_micropolitan_statistical_area Kearney, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Keene, NH MicroSA -in.metropolitan_and_micropolitan_statistical_area Kendallville, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Kennett, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Kennewick-Richland, WA MSA -in.metropolitan_and_micropolitan_statistical_area Kerrville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Ketchikan, AK MicroSA -in.metropolitan_and_micropolitan_statistical_area Key West, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Kill Devil Hills, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Killeen-Temple, TX MSA -in.metropolitan_and_micropolitan_statistical_area Kingsport-Bristol-Bristol, TN-VA MSA -in.metropolitan_and_micropolitan_statistical_area Kingston, NY MSA -in.metropolitan_and_micropolitan_statistical_area Kingsville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Kinston, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Kirksville, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Klamath Falls, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Knoxville, TN MSA -in.metropolitan_and_micropolitan_statistical_area Kokomo, IN MSA -in.metropolitan_and_micropolitan_statistical_area La Crosse-Onalaska, WI-MN MSA -in.metropolitan_and_micropolitan_statistical_area La Grande, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area LaGrange, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Laconia, NH MicroSA -in.metropolitan_and_micropolitan_statistical_area Lafayette, LA MSA -in.metropolitan_and_micropolitan_statistical_area Lafayette-West Lafayette, IN MSA -in.metropolitan_and_micropolitan_statistical_area Lake Charles, LA MSA -in.metropolitan_and_micropolitan_statistical_area Lake City, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Lake Havasu City-Kingman, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Lakeland-Winter Haven, FL MSA -in.metropolitan_and_micropolitan_statistical_area Lancaster, PA MSA -in.metropolitan_and_micropolitan_statistical_area Lansing-East Lansing, MI MSA -in.metropolitan_and_micropolitan_statistical_area Laramie, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Laredo, TX MSA -in.metropolitan_and_micropolitan_statistical_area Las Cruces, NM MSA -in.metropolitan_and_micropolitan_statistical_area Las Vegas, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Las Vegas-Henderson-Paradise, NV MSA -in.metropolitan_and_micropolitan_statistical_area Laurel, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Laurinburg, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Lawrence, KS MSA -in.metropolitan_and_micropolitan_statistical_area Lawrenceburg, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Lawton, OK MSA -in.metropolitan_and_micropolitan_statistical_area Lebanon, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Lebanon, PA MSA -in.metropolitan_and_micropolitan_statistical_area Levelland, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Lewisburg, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Lewisburg, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Lewiston, ID-WA MSA -in.metropolitan_and_micropolitan_statistical_area Lewiston-Auburn, ME MSA -in.metropolitan_and_micropolitan_statistical_area Lewistown, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Lexington, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Lexington-Fayette, KY MSA -in.metropolitan_and_micropolitan_statistical_area Liberal, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Lima, OH MSA -in.metropolitan_and_micropolitan_statistical_area Lincoln, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Lincoln, NE MSA -in.metropolitan_and_micropolitan_statistical_area Little Rock-North Little Rock-Conway, AR MSA -in.metropolitan_and_micropolitan_statistical_area Lock Haven, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Logan, UT-ID MSA -in.metropolitan_and_micropolitan_statistical_area Logan, WV MicroSA -in.metropolitan_and_micropolitan_statistical_area Logansport, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area London, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Longview, TX MSA -in.metropolitan_and_micropolitan_statistical_area Longview, WA MSA -in.metropolitan_and_micropolitan_statistical_area Los Alamos, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Los Angeles-Long Beach-Anaheim, CA MSA -in.metropolitan_and_micropolitan_statistical_area Louisville/Jefferson County, KY-IN MSA -in.metropolitan_and_micropolitan_statistical_area Lubbock, TX MSA -in.metropolitan_and_micropolitan_statistical_area Ludington, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Lufkin, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Lumberton, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Lynchburg, VA MSA -in.metropolitan_and_micropolitan_statistical_area Macomb, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Macon, GA MSA -in.metropolitan_and_micropolitan_statistical_area Madera, CA MSA -in.metropolitan_and_micropolitan_statistical_area Madison, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Madison, WI MSA -in.metropolitan_and_micropolitan_statistical_area Madisonville, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Magnolia, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Malone, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Malvern, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Manchester-Nashua, NH MSA -in.metropolitan_and_micropolitan_statistical_area Manhattan, KS MSA -in.metropolitan_and_micropolitan_statistical_area Manitowoc, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Mankato-North Mankato, MN MSA -in.metropolitan_and_micropolitan_statistical_area Mansfield, OH MSA -in.metropolitan_and_micropolitan_statistical_area Marietta, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Marinette, WI-MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Marion, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Marion, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Marion, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Marquette, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Marshall, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Marshall, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Marshall, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Marshalltown, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Martin, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Martinsville, VA MicroSA -in.metropolitan_and_micropolitan_statistical_area Maryville, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Mason City, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Mayfield, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Maysville, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area McAlester, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area McAllen-Edinburg-Mission, TX MSA -in.metropolitan_and_micropolitan_statistical_area McComb, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area McMinnville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area McPherson, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Meadville, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Medford, OR MSA -in.metropolitan_and_micropolitan_statistical_area Memphis, TN-MS-AR MSA -in.metropolitan_and_micropolitan_statistical_area Menomonie, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Merced, CA MSA -in.metropolitan_and_micropolitan_statistical_area Meridian, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Merrill, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Mexico, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Miami, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Miami-Fort Lauderdale-West Palm Beach, FL MSA -in.metropolitan_and_micropolitan_statistical_area Michigan City-La Porte, IN MSA -in.metropolitan_and_micropolitan_statistical_area Middlesborough, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Midland, MI MSA -in.metropolitan_and_micropolitan_statistical_area Midland, TX MSA -in.metropolitan_and_micropolitan_statistical_area Milledgeville, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Milwaukee-Waukesha-West Allis, WI MSA -in.metropolitan_and_micropolitan_statistical_area Mineral Wells, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Minneapolis-St. Paul-Bloomington, MN-WI MSA -in.metropolitan_and_micropolitan_statistical_area Minot, ND MicroSA -in.metropolitan_and_micropolitan_statistical_area Missoula, MT MSA -in.metropolitan_and_micropolitan_statistical_area Mitchell, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Moberly, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Mobile, AL MSA -in.metropolitan_and_micropolitan_statistical_area Modesto, CA MSA -in.metropolitan_and_micropolitan_statistical_area Monroe, LA MSA -in.metropolitan_and_micropolitan_statistical_area Monroe, MI MSA -in.metropolitan_and_micropolitan_statistical_area Montgomery, AL MSA -in.metropolitan_and_micropolitan_statistical_area Montrose, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Morehead City, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Morgan City, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Morgantown, WV MSA -in.metropolitan_and_micropolitan_statistical_area Morristown, TN MSA -in.metropolitan_and_micropolitan_statistical_area Moscow, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Moses Lake, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Moultrie, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Airy, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Pleasant, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Pleasant, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Sterling, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Vernon, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Vernon, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Mount Vernon-Anacortes, WA MSA -in.metropolitan_and_micropolitan_statistical_area Mountain Home, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Mountain Home, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Muncie, IN MSA -in.metropolitan_and_micropolitan_statistical_area Murray, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Muscatine, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Muskegon, MI MSA -in.metropolitan_and_micropolitan_statistical_area Muskogee, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA -in.metropolitan_and_micropolitan_statistical_area Nacogdoches, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Napa, CA MSA -in.metropolitan_and_micropolitan_statistical_area Naples-Immokalee-Marco Island, FL MSA -in.metropolitan_and_micropolitan_statistical_area Nashville-Davidson--Murfreesboro--Franklin, TN MSA -in.metropolitan_and_micropolitan_statistical_area Natchez, MS-LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Natchitoches, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area New Bern, NC MSA -in.metropolitan_and_micropolitan_statistical_area New Castle, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area New Castle, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area New Haven-Milford, CT MSA -in.metropolitan_and_micropolitan_statistical_area New Orleans-Metairie, LA MSA -in.metropolitan_and_micropolitan_statistical_area New Philadelphia-Dover, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area New Ulm, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area New York-Newark-Jersey City, NY-NJ-PA MSA -in.metropolitan_and_micropolitan_statistical_area Newberry, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Newport, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Newport, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Newton, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Niles-Benton Harbor, MI MSA -in.metropolitan_and_micropolitan_statistical_area Nogales, AZ MicroSA -in.metropolitan_and_micropolitan_statistical_area None -in.metropolitan_and_micropolitan_statistical_area Norfolk, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area North Platte, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area North Port-Sarasota-Bradenton, FL MSA -in.metropolitan_and_micropolitan_statistical_area North Vernon, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area North Wilkesboro, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Norwalk, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Norwich-New London, CT MSA -in.metropolitan_and_micropolitan_statistical_area Oak Harbor, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Ocala, FL MSA -in.metropolitan_and_micropolitan_statistical_area Ocean City, NJ MSA -in.metropolitan_and_micropolitan_statistical_area Odessa, TX MSA -in.metropolitan_and_micropolitan_statistical_area Ogden-Clearfield, UT MSA -in.metropolitan_and_micropolitan_statistical_area Ogdensburg-Massena, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Oil City, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Okeechobee, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Oklahoma City, OK MSA -in.metropolitan_and_micropolitan_statistical_area Olean, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Olympia-Tumwater, WA MSA -in.metropolitan_and_micropolitan_statistical_area Omaha-Council Bluffs, NE-IA MSA -in.metropolitan_and_micropolitan_statistical_area Oneonta, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Ontario, OR-ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Opelousas, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Orangeburg, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Orlando-Kissimmee-Sanford, FL MSA -in.metropolitan_and_micropolitan_statistical_area Oshkosh-Neenah, WI MSA -in.metropolitan_and_micropolitan_statistical_area Oskaloosa, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Othello, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Ottawa, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Ottawa-Peru, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Ottumwa, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Owatonna, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Owensboro, KY MSA -in.metropolitan_and_micropolitan_statistical_area Owosso, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Oxford, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Oxford, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Oxnard-Thousand Oaks-Ventura, CA MSA -in.metropolitan_and_micropolitan_statistical_area Ozark, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Paducah, KY-IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Pahrump, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Palatka, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Palestine, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Palm Bay-Melbourne-Titusville, FL MSA -in.metropolitan_and_micropolitan_statistical_area Pampa, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Panama City, FL MSA -in.metropolitan_and_micropolitan_statistical_area Paragould, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Paris, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Paris, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Parkersburg-Vienna, WV MSA -in.metropolitan_and_micropolitan_statistical_area Parsons, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Payson, AZ MicroSA -in.metropolitan_and_micropolitan_statistical_area Pensacola-Ferry Pass-Brent, FL MSA -in.metropolitan_and_micropolitan_statistical_area Peoria, IL MSA -in.metropolitan_and_micropolitan_statistical_area Peru, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA -in.metropolitan_and_micropolitan_statistical_area Phoenix-Mesa-Scottsdale, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Picayune, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Pierre, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Pine Bluff, AR MSA -in.metropolitan_and_micropolitan_statistical_area Pinehurst-Southern Pines, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Pittsburg, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Pittsburgh, PA MSA -in.metropolitan_and_micropolitan_statistical_area Pittsfield, MA MSA -in.metropolitan_and_micropolitan_statistical_area Plainview, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Platteville, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Plattsburgh, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Plymouth, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Pocatello, ID MSA -in.metropolitan_and_micropolitan_statistical_area Point Pleasant, WV-OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Ponca City, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Pontiac, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Poplar Bluff, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Port Angeles, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Port Clinton, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Port Lavaca, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Port St. Lucie, FL MSA -in.metropolitan_and_micropolitan_statistical_area Portales, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Portland-South Portland, ME MSA -in.metropolitan_and_micropolitan_statistical_area Portland-Vancouver-Hillsboro, OR-WA MSA -in.metropolitan_and_micropolitan_statistical_area Portsmouth, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Pottsville, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Prescott, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Price, UT MicroSA -in.metropolitan_and_micropolitan_statistical_area Prineville, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Providence-Warwick, RI-MA MSA -in.metropolitan_and_micropolitan_statistical_area Provo-Orem, UT MSA -in.metropolitan_and_micropolitan_statistical_area Pueblo, CO MSA -in.metropolitan_and_micropolitan_statistical_area Pullman, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Punta Gorda, FL MSA -in.metropolitan_and_micropolitan_statistical_area Quincy, IL-MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Racine, WI MSA -in.metropolitan_and_micropolitan_statistical_area Raleigh, NC MSA -in.metropolitan_and_micropolitan_statistical_area Rapid City, SD MSA -in.metropolitan_and_micropolitan_statistical_area Reading, PA MSA -in.metropolitan_and_micropolitan_statistical_area Red Bluff, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Red Wing, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Redding, CA MSA -in.metropolitan_and_micropolitan_statistical_area Reno, NV MSA -in.metropolitan_and_micropolitan_statistical_area Rexburg, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Richmond, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Richmond, VA MSA -in.metropolitan_and_micropolitan_statistical_area Richmond-Berea, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Rio Grande City, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Riverside-San Bernardino-Ontario, CA MSA -in.metropolitan_and_micropolitan_statistical_area Riverton, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Roanoke Rapids, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Roanoke, VA MSA -in.metropolitan_and_micropolitan_statistical_area Rochelle, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Rochester, MN MSA -in.metropolitan_and_micropolitan_statistical_area Rochester, NY MSA -in.metropolitan_and_micropolitan_statistical_area Rock Springs, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Rockford, IL MSA -in.metropolitan_and_micropolitan_statistical_area Rockingham, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Rocky Mount, NC MSA -in.metropolitan_and_micropolitan_statistical_area Rolla, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Rome, GA MSA -in.metropolitan_and_micropolitan_statistical_area Roseburg, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area Roswell, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Russellville, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Ruston, LA MicroSA -in.metropolitan_and_micropolitan_statistical_area Rutland, VT MicroSA -in.metropolitan_and_micropolitan_statistical_area Sacramento--Roseville--Arden-Arcade, CA MSA -in.metropolitan_and_micropolitan_statistical_area Safford, AZ MicroSA -in.metropolitan_and_micropolitan_statistical_area Saginaw, MI MSA -in.metropolitan_and_micropolitan_statistical_area Salem, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Salem, OR MSA -in.metropolitan_and_micropolitan_statistical_area Salina, KS MicroSA -in.metropolitan_and_micropolitan_statistical_area Salinas, CA MSA -in.metropolitan_and_micropolitan_statistical_area Salisbury, MD-DE MSA -in.metropolitan_and_micropolitan_statistical_area Salt Lake City, UT MSA -in.metropolitan_and_micropolitan_statistical_area San Angelo, TX MSA -in.metropolitan_and_micropolitan_statistical_area San Antonio-New Braunfels, TX MSA -in.metropolitan_and_micropolitan_statistical_area San Diego-Carlsbad, CA MSA -in.metropolitan_and_micropolitan_statistical_area San Francisco-Oakland-Hayward, CA MSA -in.metropolitan_and_micropolitan_statistical_area San Jose-Sunnyvale-Santa Clara, CA MSA -in.metropolitan_and_micropolitan_statistical_area San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA -in.metropolitan_and_micropolitan_statistical_area Sandpoint, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Sandusky, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Sanford, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Santa Cruz-Watsonville, CA MSA -in.metropolitan_and_micropolitan_statistical_area Santa Fe, NM MSA -in.metropolitan_and_micropolitan_statistical_area Santa Maria-Santa Barbara, CA MSA -in.metropolitan_and_micropolitan_statistical_area Santa Rosa, CA MSA -in.metropolitan_and_micropolitan_statistical_area Sault Ste. Marie, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Savannah, GA MSA -in.metropolitan_and_micropolitan_statistical_area Sayre, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Scottsbluff, NE MicroSA -in.metropolitan_and_micropolitan_statistical_area Scottsboro, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Scranton--Wilkes-Barre--Hazleton, PA MSA -in.metropolitan_and_micropolitan_statistical_area Searcy, AR MicroSA -in.metropolitan_and_micropolitan_statistical_area Seattle-Tacoma-Bellevue, WA MSA -in.metropolitan_and_micropolitan_statistical_area Sebastian-Vero Beach, FL MSA -in.metropolitan_and_micropolitan_statistical_area Sebring, FL MSA -in.metropolitan_and_micropolitan_statistical_area Sedalia, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Selinsgrove, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Selma, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Seneca Falls, NY MicroSA -in.metropolitan_and_micropolitan_statistical_area Seneca, SC MicroSA -in.metropolitan_and_micropolitan_statistical_area Sevierville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Seymour, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Shawano, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Shawnee, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Sheboygan, WI MSA -in.metropolitan_and_micropolitan_statistical_area Shelby, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Shelbyville, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Shelton, WA MicroSA -in.metropolitan_and_micropolitan_statistical_area Sheridan, WY MicroSA -in.metropolitan_and_micropolitan_statistical_area Sherman-Denison, TX MSA -in.metropolitan_and_micropolitan_statistical_area Show Low, AZ MicroSA -in.metropolitan_and_micropolitan_statistical_area Shreveport-Bossier City, LA MSA -in.metropolitan_and_micropolitan_statistical_area Sidney, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Sierra Vista-Douglas, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Sikeston, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Silver City, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Sioux City, IA-NE-SD MSA -in.metropolitan_and_micropolitan_statistical_area Sioux Falls, SD MSA -in.metropolitan_and_micropolitan_statistical_area Snyder, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Somerset, KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Somerset, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Sonora, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area South Bend-Mishawaka, IN-MI MSA -in.metropolitan_and_micropolitan_statistical_area Spartanburg, SC MSA -in.metropolitan_and_micropolitan_statistical_area Spearfish, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Spencer, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Spirit Lake, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Spokane-Spokane Valley, WA MSA -in.metropolitan_and_micropolitan_statistical_area Springfield, IL MSA -in.metropolitan_and_micropolitan_statistical_area Springfield, MA MSA -in.metropolitan_and_micropolitan_statistical_area Springfield, MO MSA -in.metropolitan_and_micropolitan_statistical_area Springfield, OH MSA -in.metropolitan_and_micropolitan_statistical_area St. Cloud, MN MSA -in.metropolitan_and_micropolitan_statistical_area St. George, UT MSA -in.metropolitan_and_micropolitan_statistical_area St. Joseph, MO-KS MSA -in.metropolitan_and_micropolitan_statistical_area St. Louis, MO-IL MSA -in.metropolitan_and_micropolitan_statistical_area St. Marys, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Starkville, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area State College, PA MSA -in.metropolitan_and_micropolitan_statistical_area Statesboro, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Staunton-Waynesboro, VA MSA -in.metropolitan_and_micropolitan_statistical_area Steamboat Springs, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Stephenville, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Sterling, CO MicroSA -in.metropolitan_and_micropolitan_statistical_area Sterling, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Stevens Point, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Stillwater, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Stockton-Lodi, CA MSA -in.metropolitan_and_micropolitan_statistical_area Storm Lake, IA MicroSA -in.metropolitan_and_micropolitan_statistical_area Sturgis, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Sulphur Springs, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Summerville, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Summit Park, UT MicroSA -in.metropolitan_and_micropolitan_statistical_area Sumter, SC MSA -in.metropolitan_and_micropolitan_statistical_area Sunbury, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Susanville, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Sweetwater, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Syracuse, NY MSA -in.metropolitan_and_micropolitan_statistical_area Tahlequah, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Talladega-Sylacauga, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Tallahassee, FL MSA -in.metropolitan_and_micropolitan_statistical_area Tampa-St. Petersburg-Clearwater, FL MSA -in.metropolitan_and_micropolitan_statistical_area Taos, NM MicroSA -in.metropolitan_and_micropolitan_statistical_area Taylorville, IL MicroSA -in.metropolitan_and_micropolitan_statistical_area Terre Haute, IN MSA -in.metropolitan_and_micropolitan_statistical_area Texarkana, TX-AR MSA -in.metropolitan_and_micropolitan_statistical_area The Dalles, OR MicroSA -in.metropolitan_and_micropolitan_statistical_area The Villages, FL MSA -in.metropolitan_and_micropolitan_statistical_area Thomaston, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Thomasville, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Tiffin, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Tifton, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Toccoa, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Toledo, OH MSA -in.metropolitan_and_micropolitan_statistical_area Topeka, KS MSA -in.metropolitan_and_micropolitan_statistical_area Torrington, CT MicroSA -in.metropolitan_and_micropolitan_statistical_area Traverse City, MI MicroSA -in.metropolitan_and_micropolitan_statistical_area Trenton, NJ MSA -in.metropolitan_and_micropolitan_statistical_area Troy, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Truckee-Grass Valley, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Tucson, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Tullahoma-Manchester, TN MicroSA -in.metropolitan_and_micropolitan_statistical_area Tulsa, OK MSA -in.metropolitan_and_micropolitan_statistical_area Tupelo, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Tuscaloosa, AL MSA -in.metropolitan_and_micropolitan_statistical_area Twin Falls, ID MicroSA -in.metropolitan_and_micropolitan_statistical_area Tyler, TX MSA -in.metropolitan_and_micropolitan_statistical_area Ukiah, CA MicroSA -in.metropolitan_and_micropolitan_statistical_area Union City, TN-KY MicroSA -in.metropolitan_and_micropolitan_statistical_area Urban Honolulu, HI MSA -in.metropolitan_and_micropolitan_statistical_area Urbana, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Utica-Rome, NY MSA -in.metropolitan_and_micropolitan_statistical_area Uvalde, TX MicroSA -in.metropolitan_and_micropolitan_statistical_area Valdosta, GA MSA -in.metropolitan_and_micropolitan_statistical_area Vallejo-Fairfield, CA MSA -in.metropolitan_and_micropolitan_statistical_area Valley, AL MicroSA -in.metropolitan_and_micropolitan_statistical_area Van Wert, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Vernal, UT MicroSA -in.metropolitan_and_micropolitan_statistical_area Vicksburg, MS MicroSA -in.metropolitan_and_micropolitan_statistical_area Victoria, TX MSA -in.metropolitan_and_micropolitan_statistical_area Vidalia, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Vincennes, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Vineland-Bridgeton, NJ MSA -in.metropolitan_and_micropolitan_statistical_area Vineyard Haven, MA MicroSA -in.metropolitan_and_micropolitan_statistical_area Virginia Beach-Norfolk-Newport News, VA-NC MSA -in.metropolitan_and_micropolitan_statistical_area Visalia-Porterville, CA MSA -in.metropolitan_and_micropolitan_statistical_area Wabash, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Waco, TX MSA -in.metropolitan_and_micropolitan_statistical_area Wahpeton, ND-MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Walla Walla, WA MSA -in.metropolitan_and_micropolitan_statistical_area Wapakoneta, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Warner Robins, GA MSA -in.metropolitan_and_micropolitan_statistical_area Warren, PA MicroSA -in.metropolitan_and_micropolitan_statistical_area Warrensburg, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Warsaw, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Washington Court House, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Washington, IN MicroSA -in.metropolitan_and_micropolitan_statistical_area Washington, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Washington-Arlington-Alexandria, DC-VA-MD-WV MSA -in.metropolitan_and_micropolitan_statistical_area Waterloo-Cedar Falls, IA MSA -in.metropolitan_and_micropolitan_statistical_area Watertown, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area Watertown-Fort Atkinson, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Watertown-Fort Drum, NY MSA -in.metropolitan_and_micropolitan_statistical_area Wauchula, FL MicroSA -in.metropolitan_and_micropolitan_statistical_area Wausau, WI MSA -in.metropolitan_and_micropolitan_statistical_area Waycross, GA MicroSA -in.metropolitan_and_micropolitan_statistical_area Weatherford, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Weirton-Steubenville, WV-OH MSA -in.metropolitan_and_micropolitan_statistical_area Wenatchee, WA MSA -in.metropolitan_and_micropolitan_statistical_area West Plains, MO MicroSA -in.metropolitan_and_micropolitan_statistical_area Wheeling, WV-OH MSA -in.metropolitan_and_micropolitan_statistical_area Whitewater-Elkhorn, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Wichita Falls, TX MSA -in.metropolitan_and_micropolitan_statistical_area Wichita, KS MSA -in.metropolitan_and_micropolitan_statistical_area Williamsport, PA MSA -in.metropolitan_and_micropolitan_statistical_area Williston, ND MicroSA -in.metropolitan_and_micropolitan_statistical_area Willmar, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Wilmington, NC MSA -in.metropolitan_and_micropolitan_statistical_area Wilmington, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Wilson, NC MicroSA -in.metropolitan_and_micropolitan_statistical_area Winchester, VA-WV MSA -in.metropolitan_and_micropolitan_statistical_area Winnemucca, NV MicroSA -in.metropolitan_and_micropolitan_statistical_area Winona, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Winston-Salem, NC MSA -in.metropolitan_and_micropolitan_statistical_area Wisconsin Rapids-Marshfield, WI MicroSA -in.metropolitan_and_micropolitan_statistical_area Woodward, OK MicroSA -in.metropolitan_and_micropolitan_statistical_area Wooster, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Worcester, MA-CT MSA -in.metropolitan_and_micropolitan_statistical_area Worthington, MN MicroSA -in.metropolitan_and_micropolitan_statistical_area Yakima, WA MSA -in.metropolitan_and_micropolitan_statistical_area Yankton, SD MicroSA -in.metropolitan_and_micropolitan_statistical_area York-Hanover, PA MSA -in.metropolitan_and_micropolitan_statistical_area Youngstown-Warren-Boardman, OH-PA MSA -in.metropolitan_and_micropolitan_statistical_area Yuba City, CA MSA -in.metropolitan_and_micropolitan_statistical_area Yuma, AZ MSA -in.metropolitan_and_micropolitan_statistical_area Zanesville, OH MicroSA -in.metropolitan_and_micropolitan_statistical_area Zapata, TX MicroSA -in.misc_extra_refrigerator EF 10.2 -in.misc_extra_refrigerator EF 10.5 -in.misc_extra_refrigerator EF 15.9 -in.misc_extra_refrigerator EF 17.6 -in.misc_extra_refrigerator EF 19.9 -in.misc_extra_refrigerator EF 21.9 -in.misc_extra_refrigerator EF 6.7 -in.misc_extra_refrigerator None -in.misc_freezer EF 12, National Average -in.misc_freezer None -in.misc_gas_fireplace Gas Fireplace -in.misc_gas_fireplace None -in.misc_gas_grill Gas Grill -in.misc_gas_grill None -in.misc_gas_lighting Gas Lighting -in.misc_gas_lighting None -in.misc_hot_tub_spa Electricity -in.misc_hot_tub_spa Natural Gas -in.misc_hot_tub_spa None -in.misc_hot_tub_spa Other Fuel -in.misc_pool Has Pool -in.misc_pool None -in.misc_pool_heater Electric Heat Pump -in.misc_pool_heater Electricity -in.misc_pool_heater Natural Gas -in.misc_pool_heater None -in.misc_pool_heater Other Fuel -in.misc_pool_pump 1.0 HP Pump -in.misc_pool_pump None -in.misc_well_pump None -in.misc_well_pump Typical Efficiency -in.natural_ventilation Cooling Season, 7 days/wk -in.neighbors 12 -in.neighbors 2 -in.neighbors 27 -in.neighbors 4 -in.neighbors 7 -in.neighbors Left/Right at 15ft -in.neighbors None -in.occupants 0 -in.occupants 1 -in.occupants 2 -in.occupants 3 -in.occupants 4 -in.occupants 5 -in.occupants 6 -in.occupants 7 -in.occupants 8 -in.orientation East -in.orientation North -in.orientation Northeast -in.orientation Northwest -in.orientation South -in.orientation Southeast -in.orientation Southwest -in.orientation West -in.overhangs None -in.plug_load_diversity 100% -in.plug_load_diversity 200% -in.plug_load_diversity 50% -in.plug_loads 100% -in.plug_loads 101% -in.plug_loads 102% -in.plug_loads 103% -in.plug_loads 104% -in.plug_loads 105% -in.plug_loads 106% -in.plug_loads 108% -in.plug_loads 110% -in.plug_loads 113% -in.plug_loads 119% -in.plug_loads 121% -in.plug_loads 123% -in.plug_loads 134% -in.plug_loads 137% -in.plug_loads 140% -in.plug_loads 144% -in.plug_loads 166% -in.plug_loads 78% -in.plug_loads 79% -in.plug_loads 82% -in.plug_loads 84% -in.plug_loads 85% -in.plug_loads 86% -in.plug_loads 89% -in.plug_loads 91% -in.plug_loads 94% -in.plug_loads 95% -in.plug_loads 96% -in.plug_loads 97% -in.plug_loads 99% -in.puma AK, 00101 -in.puma AK, 00102 -in.puma AK, 00200 -in.puma AK, 00300 -in.puma AK, 00400 -in.puma AL, 00100 -in.puma AL, 00200 -in.puma AL, 00301 -in.puma AL, 00302 -in.puma AL, 00400 -in.puma AL, 00500 -in.puma AL, 00600 -in.puma AL, 00700 -in.puma AL, 00800 -in.puma AL, 00900 -in.puma AL, 01000 -in.puma AL, 01100 -in.puma AL, 01200 -in.puma AL, 01301 -in.puma AL, 01302 -in.puma AL, 01303 -in.puma AL, 01304 -in.puma AL, 01305 -in.puma AL, 01400 -in.puma AL, 01500 -in.puma AL, 01600 -in.puma AL, 01700 -in.puma AL, 01800 -in.puma AL, 01900 -in.puma AL, 02000 -in.puma AL, 02100 -in.puma AL, 02200 -in.puma AL, 02300 -in.puma AL, 02400 -in.puma AL, 02500 -in.puma AL, 02600 -in.puma AL, 02701 -in.puma AL, 02702 -in.puma AL, 02703 -in.puma AR, 00100 -in.puma AR, 00200 -in.puma AR, 00300 -in.puma AR, 00400 -in.puma AR, 00500 -in.puma AR, 00600 -in.puma AR, 00700 -in.puma AR, 00800 -in.puma AR, 00900 -in.puma AR, 01000 -in.puma AR, 01100 -in.puma AR, 01200 -in.puma AR, 01300 -in.puma AR, 01400 -in.puma AR, 01500 -in.puma AR, 01600 -in.puma AR, 01700 -in.puma AR, 01800 -in.puma AR, 01900 -in.puma AR, 02000 -in.puma AZ, 00100 -in.puma AZ, 00101 -in.puma AZ, 00102 -in.puma AZ, 00103 -in.puma AZ, 00104 -in.puma AZ, 00105 -in.puma AZ, 00106 -in.puma AZ, 00107 -in.puma AZ, 00108 -in.puma AZ, 00109 -in.puma AZ, 00110 -in.puma AZ, 00111 -in.puma AZ, 00112 -in.puma AZ, 00113 -in.puma AZ, 00114 -in.puma AZ, 00115 -in.puma AZ, 00116 -in.puma AZ, 00117 -in.puma AZ, 00118 -in.puma AZ, 00119 -in.puma AZ, 00120 -in.puma AZ, 00121 -in.puma AZ, 00122 -in.puma AZ, 00123 -in.puma AZ, 00124 -in.puma AZ, 00125 -in.puma AZ, 00126 -in.puma AZ, 00127 -in.puma AZ, 00128 -in.puma AZ, 00129 -in.puma AZ, 00130 -in.puma AZ, 00131 -in.puma AZ, 00132 -in.puma AZ, 00133 -in.puma AZ, 00134 -in.puma AZ, 00201 -in.puma AZ, 00202 -in.puma AZ, 00203 -in.puma AZ, 00204 -in.puma AZ, 00205 -in.puma AZ, 00206 -in.puma AZ, 00207 -in.puma AZ, 00208 -in.puma AZ, 00209 -in.puma AZ, 00300 -in.puma AZ, 00400 -in.puma AZ, 00500 -in.puma AZ, 00600 -in.puma AZ, 00700 -in.puma AZ, 00800 -in.puma AZ, 00803 -in.puma AZ, 00805 -in.puma AZ, 00807 -in.puma AZ, 00900 -in.puma CA, 00101 -in.puma CA, 00102 -in.puma CA, 00103 -in.puma CA, 00104 -in.puma CA, 00105 -in.puma CA, 00106 -in.puma CA, 00107 -in.puma CA, 00108 -in.puma CA, 00109 -in.puma CA, 00110 -in.puma CA, 00300 -in.puma CA, 00701 -in.puma CA, 00702 -in.puma CA, 01100 -in.puma CA, 01301 -in.puma CA, 01302 -in.puma CA, 01303 -in.puma CA, 01304 -in.puma CA, 01305 -in.puma CA, 01306 -in.puma CA, 01307 -in.puma CA, 01308 -in.puma CA, 01309 -in.puma CA, 01500 -in.puma CA, 01700 -in.puma CA, 01901 -in.puma CA, 01902 -in.puma CA, 01903 -in.puma CA, 01904 -in.puma CA, 01905 -in.puma CA, 01906 -in.puma CA, 01907 -in.puma CA, 02300 -in.puma CA, 02500 -in.puma CA, 02901 -in.puma CA, 02902 -in.puma CA, 02903 -in.puma CA, 02904 -in.puma CA, 02905 -in.puma CA, 03100 -in.puma CA, 03300 -in.puma CA, 03701 -in.puma CA, 03702 -in.puma CA, 03703 -in.puma CA, 03704 -in.puma CA, 03705 -in.puma CA, 03706 -in.puma CA, 03707 -in.puma CA, 03708 -in.puma CA, 03709 -in.puma CA, 03710 -in.puma CA, 03711 -in.puma CA, 03712 -in.puma CA, 03713 -in.puma CA, 03714 -in.puma CA, 03715 -in.puma CA, 03716 -in.puma CA, 03717 -in.puma CA, 03718 -in.puma CA, 03719 -in.puma CA, 03720 -in.puma CA, 03721 -in.puma CA, 03722 -in.puma CA, 03723 -in.puma CA, 03724 -in.puma CA, 03725 -in.puma CA, 03726 -in.puma CA, 03727 -in.puma CA, 03728 -in.puma CA, 03729 -in.puma CA, 03730 -in.puma CA, 03731 -in.puma CA, 03732 -in.puma CA, 03733 -in.puma CA, 03734 -in.puma CA, 03735 -in.puma CA, 03736 -in.puma CA, 03737 -in.puma CA, 03738 -in.puma CA, 03739 -in.puma CA, 03740 -in.puma CA, 03741 -in.puma CA, 03742 -in.puma CA, 03743 -in.puma CA, 03744 -in.puma CA, 03745 -in.puma CA, 03746 -in.puma CA, 03747 -in.puma CA, 03748 -in.puma CA, 03749 -in.puma CA, 03750 -in.puma CA, 03751 -in.puma CA, 03752 -in.puma CA, 03753 -in.puma CA, 03754 -in.puma CA, 03755 -in.puma CA, 03756 -in.puma CA, 03757 -in.puma CA, 03758 -in.puma CA, 03759 -in.puma CA, 03760 -in.puma CA, 03761 -in.puma CA, 03762 -in.puma CA, 03763 -in.puma CA, 03764 -in.puma CA, 03765 -in.puma CA, 03766 -in.puma CA, 03767 -in.puma CA, 03768 -in.puma CA, 03769 -in.puma CA, 03900 -in.puma CA, 04101 -in.puma CA, 04102 -in.puma CA, 04701 -in.puma CA, 04702 -in.puma CA, 05301 -in.puma CA, 05302 -in.puma CA, 05303 -in.puma CA, 05500 -in.puma CA, 05700 -in.puma CA, 05901 -in.puma CA, 05902 -in.puma CA, 05903 -in.puma CA, 05904 -in.puma CA, 05905 -in.puma CA, 05906 -in.puma CA, 05907 -in.puma CA, 05908 -in.puma CA, 05909 -in.puma CA, 05910 -in.puma CA, 05911 -in.puma CA, 05912 -in.puma CA, 05913 -in.puma CA, 05914 -in.puma CA, 05915 -in.puma CA, 05916 -in.puma CA, 05917 -in.puma CA, 05918 -in.puma CA, 06101 -in.puma CA, 06102 -in.puma CA, 06103 -in.puma CA, 06501 -in.puma CA, 06502 -in.puma CA, 06503 -in.puma CA, 06504 -in.puma CA, 06505 -in.puma CA, 06506 -in.puma CA, 06507 -in.puma CA, 06508 -in.puma CA, 06509 -in.puma CA, 06510 -in.puma CA, 06511 -in.puma CA, 06512 -in.puma CA, 06513 -in.puma CA, 06514 -in.puma CA, 06515 -in.puma CA, 06701 -in.puma CA, 06702 -in.puma CA, 06703 -in.puma CA, 06704 -in.puma CA, 06705 -in.puma CA, 06706 -in.puma CA, 06707 -in.puma CA, 06708 -in.puma CA, 06709 -in.puma CA, 06710 -in.puma CA, 06711 -in.puma CA, 06712 -in.puma CA, 07101 -in.puma CA, 07102 -in.puma CA, 07103 -in.puma CA, 07104 -in.puma CA, 07105 -in.puma CA, 07106 -in.puma CA, 07107 -in.puma CA, 07108 -in.puma CA, 07109 -in.puma CA, 07110 -in.puma CA, 07111 -in.puma CA, 07112 -in.puma CA, 07113 -in.puma CA, 07114 -in.puma CA, 07115 -in.puma CA, 07301 -in.puma CA, 07302 -in.puma CA, 07303 -in.puma CA, 07304 -in.puma CA, 07305 -in.puma CA, 07306 -in.puma CA, 07307 -in.puma CA, 07308 -in.puma CA, 07309 -in.puma CA, 07310 -in.puma CA, 07311 -in.puma CA, 07312 -in.puma CA, 07313 -in.puma CA, 07314 -in.puma CA, 07315 -in.puma CA, 07316 -in.puma CA, 07317 -in.puma CA, 07318 -in.puma CA, 07319 -in.puma CA, 07320 -in.puma CA, 07321 -in.puma CA, 07322 -in.puma CA, 07501 -in.puma CA, 07502 -in.puma CA, 07503 -in.puma CA, 07504 -in.puma CA, 07505 -in.puma CA, 07506 -in.puma CA, 07507 -in.puma CA, 07701 -in.puma CA, 07702 -in.puma CA, 07703 -in.puma CA, 07704 -in.puma CA, 07901 -in.puma CA, 07902 -in.puma CA, 08101 -in.puma CA, 08102 -in.puma CA, 08103 -in.puma CA, 08104 -in.puma CA, 08105 -in.puma CA, 08106 -in.puma CA, 08301 -in.puma CA, 08302 -in.puma CA, 08303 -in.puma CA, 08501 -in.puma CA, 08502 -in.puma CA, 08503 -in.puma CA, 08504 -in.puma CA, 08505 -in.puma CA, 08506 -in.puma CA, 08507 -in.puma CA, 08508 -in.puma CA, 08509 -in.puma CA, 08510 -in.puma CA, 08511 -in.puma CA, 08512 -in.puma CA, 08513 -in.puma CA, 08514 -in.puma CA, 08701 -in.puma CA, 08702 -in.puma CA, 08900 -in.puma CA, 09501 -in.puma CA, 09502 -in.puma CA, 09503 -in.puma CA, 09701 -in.puma CA, 09702 -in.puma CA, 09703 -in.puma CA, 09901 -in.puma CA, 09902 -in.puma CA, 09903 -in.puma CA, 09904 -in.puma CA, 10100 -in.puma CA, 10701 -in.puma CA, 10702 -in.puma CA, 10703 -in.puma CA, 11101 -in.puma CA, 11102 -in.puma CA, 11103 -in.puma CA, 11104 -in.puma CA, 11105 -in.puma CA, 11106 -in.puma CA, 11300 -in.puma CO, 00100 -in.puma CO, 00102 -in.puma CO, 00103 -in.puma CO, 00200 -in.puma CO, 00300 -in.puma CO, 00400 -in.puma CO, 00600 -in.puma CO, 00700 -in.puma CO, 00800 -in.puma CO, 00801 -in.puma CO, 00802 -in.puma CO, 00803 -in.puma CO, 00804 -in.puma CO, 00805 -in.puma CO, 00806 -in.puma CO, 00807 -in.puma CO, 00808 -in.puma CO, 00809 -in.puma CO, 00810 -in.puma CO, 00811 -in.puma CO, 00812 -in.puma CO, 00813 -in.puma CO, 00814 -in.puma CO, 00815 -in.puma CO, 00816 -in.puma CO, 00817 -in.puma CO, 00818 -in.puma CO, 00819 -in.puma CO, 00820 -in.puma CO, 00821 -in.puma CO, 00822 -in.puma CO, 00823 -in.puma CO, 00824 -in.puma CO, 00900 -in.puma CO, 01001 -in.puma CO, 01002 -in.puma CO, 04101 -in.puma CO, 04102 -in.puma CO, 04103 -in.puma CO, 04104 -in.puma CO, 04105 -in.puma CO, 04106 -in.puma CT, 00100 -in.puma CT, 00101 -in.puma CT, 00102 -in.puma CT, 00103 -in.puma CT, 00104 -in.puma CT, 00105 -in.puma CT, 00300 -in.puma CT, 00301 -in.puma CT, 00302 -in.puma CT, 00303 -in.puma CT, 00304 -in.puma CT, 00305 -in.puma CT, 00306 -in.puma CT, 00500 -in.puma CT, 00700 -in.puma CT, 00900 -in.puma CT, 00901 -in.puma CT, 00902 -in.puma CT, 00903 -in.puma CT, 00904 -in.puma CT, 00905 -in.puma CT, 00906 -in.puma CT, 01100 -in.puma CT, 01101 -in.puma CT, 01300 -in.puma CT, 01500 -in.puma DC, 00101 -in.puma DC, 00102 -in.puma DC, 00103 -in.puma DC, 00104 -in.puma DC, 00105 -in.puma DE, 00101 -in.puma DE, 00102 -in.puma DE, 00103 -in.puma DE, 00104 -in.puma DE, 00200 -in.puma DE, 00300 -in.puma FL, 00101 -in.puma FL, 00102 -in.puma FL, 00500 -in.puma FL, 00901 -in.puma FL, 00902 -in.puma FL, 00903 -in.puma FL, 00904 -in.puma FL, 01101 -in.puma FL, 01102 -in.puma FL, 01103 -in.puma FL, 01104 -in.puma FL, 01105 -in.puma FL, 01106 -in.puma FL, 01107 -in.puma FL, 01108 -in.puma FL, 01109 -in.puma FL, 01110 -in.puma FL, 01111 -in.puma FL, 01112 -in.puma FL, 01113 -in.puma FL, 01114 -in.puma FL, 01500 -in.puma FL, 01701 -in.puma FL, 01900 -in.puma FL, 02101 -in.puma FL, 02102 -in.puma FL, 02103 -in.puma FL, 02300 -in.puma FL, 02700 -in.puma FL, 03101 -in.puma FL, 03102 -in.puma FL, 03103 -in.puma FL, 03104 -in.puma FL, 03105 -in.puma FL, 03106 -in.puma FL, 03107 -in.puma FL, 03301 -in.puma FL, 03302 -in.puma FL, 03500 -in.puma FL, 05301 -in.puma FL, 05701 -in.puma FL, 05702 -in.puma FL, 05703 -in.puma FL, 05704 -in.puma FL, 05705 -in.puma FL, 05706 -in.puma FL, 05707 -in.puma FL, 05708 -in.puma FL, 06100 -in.puma FL, 06300 -in.puma FL, 06901 -in.puma FL, 06902 -in.puma FL, 06903 -in.puma FL, 07101 -in.puma FL, 07102 -in.puma FL, 07103 -in.puma FL, 07104 -in.puma FL, 07105 -in.puma FL, 07300 -in.puma FL, 07301 -in.puma FL, 08101 -in.puma FL, 08102 -in.puma FL, 08103 -in.puma FL, 08301 -in.puma FL, 08302 -in.puma FL, 08303 -in.puma FL, 08500 -in.puma FL, 08601 -in.puma FL, 08602 -in.puma FL, 08603 -in.puma FL, 08604 -in.puma FL, 08605 -in.puma FL, 08606 -in.puma FL, 08607 -in.puma FL, 08608 -in.puma FL, 08609 -in.puma FL, 08610 -in.puma FL, 08611 -in.puma FL, 08612 -in.puma FL, 08613 -in.puma FL, 08614 -in.puma FL, 08615 -in.puma FL, 08616 -in.puma FL, 08617 -in.puma FL, 08618 -in.puma FL, 08619 -in.puma FL, 08620 -in.puma FL, 08621 -in.puma FL, 08622 -in.puma FL, 08623 -in.puma FL, 08624 -in.puma FL, 08700 -in.puma FL, 08900 -in.puma FL, 09100 -in.puma FL, 09300 -in.puma FL, 09501 -in.puma FL, 09502 -in.puma FL, 09503 -in.puma FL, 09504 -in.puma FL, 09505 -in.puma FL, 09506 -in.puma FL, 09507 -in.puma FL, 09508 -in.puma FL, 09509 -in.puma FL, 09510 -in.puma FL, 09701 -in.puma FL, 09702 -in.puma FL, 09901 -in.puma FL, 09902 -in.puma FL, 09903 -in.puma FL, 09904 -in.puma FL, 09905 -in.puma FL, 09906 -in.puma FL, 09907 -in.puma FL, 09908 -in.puma FL, 09909 -in.puma FL, 09910 -in.puma FL, 09911 -in.puma FL, 10101 -in.puma FL, 10102 -in.puma FL, 10103 -in.puma FL, 10104 -in.puma FL, 10301 -in.puma FL, 10302 -in.puma FL, 10303 -in.puma FL, 10304 -in.puma FL, 10305 -in.puma FL, 10306 -in.puma FL, 10307 -in.puma FL, 10308 -in.puma FL, 10501 -in.puma FL, 10502 -in.puma FL, 10503 -in.puma FL, 10504 -in.puma FL, 10700 -in.puma FL, 10900 -in.puma FL, 11101 -in.puma FL, 11102 -in.puma FL, 11300 -in.puma FL, 11501 -in.puma FL, 11502 -in.puma FL, 11503 -in.puma FL, 11701 -in.puma FL, 11702 -in.puma FL, 11703 -in.puma FL, 11704 -in.puma FL, 12100 -in.puma FL, 12701 -in.puma FL, 12702 -in.puma FL, 12703 -in.puma FL, 12704 -in.puma GA, 00100 -in.puma GA, 00200 -in.puma GA, 00300 -in.puma GA, 00401 -in.puma GA, 00402 -in.puma GA, 00500 -in.puma GA, 00600 -in.puma GA, 00700 -in.puma GA, 00800 -in.puma GA, 00900 -in.puma GA, 01001 -in.puma GA, 01002 -in.puma GA, 01003 -in.puma GA, 01004 -in.puma GA, 01005 -in.puma GA, 01006 -in.puma GA, 01007 -in.puma GA, 01008 -in.puma GA, 01100 -in.puma GA, 01200 -in.puma GA, 01300 -in.puma GA, 01400 -in.puma GA, 01500 -in.puma GA, 01600 -in.puma GA, 01700 -in.puma GA, 01800 -in.puma GA, 01900 -in.puma GA, 02001 -in.puma GA, 02002 -in.puma GA, 02003 -in.puma GA, 02004 -in.puma GA, 02100 -in.puma GA, 02200 -in.puma GA, 02300 -in.puma GA, 02400 -in.puma GA, 02500 -in.puma GA, 02600 -in.puma GA, 02700 -in.puma GA, 02800 -in.puma GA, 02900 -in.puma GA, 03001 -in.puma GA, 03002 -in.puma GA, 03003 -in.puma GA, 03004 -in.puma GA, 03005 -in.puma GA, 03101 -in.puma GA, 03102 -in.puma GA, 03200 -in.puma GA, 03300 -in.puma GA, 03400 -in.puma GA, 03500 -in.puma GA, 03600 -in.puma GA, 03700 -in.puma GA, 03800 -in.puma GA, 03900 -in.puma GA, 04000 -in.puma GA, 04001 -in.puma GA, 04002 -in.puma GA, 04003 -in.puma GA, 04004 -in.puma GA, 04005 -in.puma GA, 04006 -in.puma GA, 04100 -in.puma GA, 04200 -in.puma GA, 04300 -in.puma GA, 04400 -in.puma GA, 04500 -in.puma GA, 04600 -in.puma GA, 05001 -in.puma GA, 05002 -in.puma GA, 06001 -in.puma GA, 06002 -in.puma HI, 00100 -in.puma HI, 00200 -in.puma HI, 00301 -in.puma HI, 00302 -in.puma HI, 00303 -in.puma HI, 00304 -in.puma HI, 00305 -in.puma HI, 00306 -in.puma HI, 00307 -in.puma HI, 00308 -in.puma IA, 00100 -in.puma IA, 00200 -in.puma IA, 00400 -in.puma IA, 00500 -in.puma IA, 00600 -in.puma IA, 00700 -in.puma IA, 00800 -in.puma IA, 00900 -in.puma IA, 01000 -in.puma IA, 01100 -in.puma IA, 01200 -in.puma IA, 01300 -in.puma IA, 01400 -in.puma IA, 01500 -in.puma IA, 01600 -in.puma IA, 01700 -in.puma IA, 01800 -in.puma IA, 01900 -in.puma IA, 02000 -in.puma IA, 02100 -in.puma IA, 02200 -in.puma IA, 02300 -in.puma ID, 00100 -in.puma ID, 00200 -in.puma ID, 00300 -in.puma ID, 00400 -in.puma ID, 00500 -in.puma ID, 00600 -in.puma ID, 00701 -in.puma ID, 00702 -in.puma ID, 00800 -in.puma ID, 00900 -in.puma ID, 01000 -in.puma ID, 01100 -in.puma ID, 01200 -in.puma ID, 01300 -in.puma IL, 00104 -in.puma IL, 00105 -in.puma IL, 00202 -in.puma IL, 00300 -in.puma IL, 00401 -in.puma IL, 00501 -in.puma IL, 00600 -in.puma IL, 00700 -in.puma IL, 00800 -in.puma IL, 00900 -in.puma IL, 01001 -in.puma IL, 01104 -in.puma IL, 01105 -in.puma IL, 01204 -in.puma IL, 01205 -in.puma IL, 01300 -in.puma IL, 01500 -in.puma IL, 01602 -in.puma IL, 01701 -in.puma IL, 01900 -in.puma IL, 02000 -in.puma IL, 02100 -in.puma IL, 02200 -in.puma IL, 02300 -in.puma IL, 02400 -in.puma IL, 02501 -in.puma IL, 02601 -in.puma IL, 02700 -in.puma IL, 02801 -in.puma IL, 02901 -in.puma IL, 03005 -in.puma IL, 03007 -in.puma IL, 03008 -in.puma IL, 03009 -in.puma IL, 03102 -in.puma IL, 03105 -in.puma IL, 03106 -in.puma IL, 03107 -in.puma IL, 03108 -in.puma IL, 03202 -in.puma IL, 03203 -in.puma IL, 03204 -in.puma IL, 03205 -in.puma IL, 03207 -in.puma IL, 03208 -in.puma IL, 03209 -in.puma IL, 03306 -in.puma IL, 03307 -in.puma IL, 03308 -in.puma IL, 03309 -in.puma IL, 03310 -in.puma IL, 03401 -in.puma IL, 03407 -in.puma IL, 03408 -in.puma IL, 03409 -in.puma IL, 03410 -in.puma IL, 03411 -in.puma IL, 03412 -in.puma IL, 03413 -in.puma IL, 03414 -in.puma IL, 03415 -in.puma IL, 03416 -in.puma IL, 03417 -in.puma IL, 03418 -in.puma IL, 03419 -in.puma IL, 03420 -in.puma IL, 03421 -in.puma IL, 03422 -in.puma IL, 03501 -in.puma IL, 03502 -in.puma IL, 03503 -in.puma IL, 03504 -in.puma IL, 03520 -in.puma IL, 03521 -in.puma IL, 03522 -in.puma IL, 03523 -in.puma IL, 03524 -in.puma IL, 03525 -in.puma IL, 03526 -in.puma IL, 03527 -in.puma IL, 03528 -in.puma IL, 03529 -in.puma IL, 03530 -in.puma IL, 03531 -in.puma IL, 03532 -in.puma IL, 03601 -in.puma IL, 03602 -in.puma IL, 03700 -in.puma IN, 00101 -in.puma IN, 00102 -in.puma IN, 00103 -in.puma IN, 00104 -in.puma IN, 00200 -in.puma IN, 00300 -in.puma IN, 00401 -in.puma IN, 00402 -in.puma IN, 00500 -in.puma IN, 00600 -in.puma IN, 00700 -in.puma IN, 00800 -in.puma IN, 00900 -in.puma IN, 01001 -in.puma IN, 01002 -in.puma IN, 01003 -in.puma IN, 01100 -in.puma IN, 01200 -in.puma IN, 01300 -in.puma IN, 01400 -in.puma IN, 01500 -in.puma IN, 01600 -in.puma IN, 01700 -in.puma IN, 01801 -in.puma IN, 01802 -in.puma IN, 01803 -in.puma IN, 01900 -in.puma IN, 02000 -in.puma IN, 02100 -in.puma IN, 02200 -in.puma IN, 02301 -in.puma IN, 02302 -in.puma IN, 02303 -in.puma IN, 02304 -in.puma IN, 02305 -in.puma IN, 02306 -in.puma IN, 02307 -in.puma IN, 02400 -in.puma IN, 02500 -in.puma IN, 02600 -in.puma IN, 02700 -in.puma IN, 02800 -in.puma IN, 02900 -in.puma IN, 03000 -in.puma IN, 03100 -in.puma IN, 03200 -in.puma IN, 03300 -in.puma IN, 03400 -in.puma IN, 03500 -in.puma IN, 03600 -in.puma KS, 00100 -in.puma KS, 00200 -in.puma KS, 00300 -in.puma KS, 00400 -in.puma KS, 00500 -in.puma KS, 00601 -in.puma KS, 00602 -in.puma KS, 00603 -in.puma KS, 00604 -in.puma KS, 00700 -in.puma KS, 00801 -in.puma KS, 00802 -in.puma KS, 00900 -in.puma KS, 01000 -in.puma KS, 01100 -in.puma KS, 01200 -in.puma KS, 01301 -in.puma KS, 01302 -in.puma KS, 01303 -in.puma KS, 01304 -in.puma KS, 01400 -in.puma KS, 01500 -in.puma KY, 00100 -in.puma KY, 00200 -in.puma KY, 00300 -in.puma KY, 00400 -in.puma KY, 00500 -in.puma KY, 00600 -in.puma KY, 00700 -in.puma KY, 00800 -in.puma KY, 00900 -in.puma KY, 01000 -in.puma KY, 01100 -in.puma KY, 01200 -in.puma KY, 01300 -in.puma KY, 01400 -in.puma KY, 01500 -in.puma KY, 01600 -in.puma KY, 01701 -in.puma KY, 01702 -in.puma KY, 01703 -in.puma KY, 01704 -in.puma KY, 01705 -in.puma KY, 01706 -in.puma KY, 01800 -in.puma KY, 01901 -in.puma KY, 01902 -in.puma KY, 02000 -in.puma KY, 02100 -in.puma KY, 02200 -in.puma KY, 02300 -in.puma KY, 02400 -in.puma KY, 02500 -in.puma KY, 02600 -in.puma KY, 02700 -in.puma KY, 02800 -in.puma LA, 00100 -in.puma LA, 00101 -in.puma LA, 00200 -in.puma LA, 00300 -in.puma LA, 00400 -in.puma LA, 00500 -in.puma LA, 00600 -in.puma LA, 00700 -in.puma LA, 00800 -in.puma LA, 00900 -in.puma LA, 01000 -in.puma LA, 01100 -in.puma LA, 01200 -in.puma LA, 01201 -in.puma LA, 01300 -in.puma LA, 01400 -in.puma LA, 01500 -in.puma LA, 01501 -in.puma LA, 01502 -in.puma LA, 01600 -in.puma LA, 01700 -in.puma LA, 01800 -in.puma LA, 01900 -in.puma LA, 02000 -in.puma LA, 02100 -in.puma LA, 02200 -in.puma LA, 02201 -in.puma LA, 02300 -in.puma LA, 02301 -in.puma LA, 02302 -in.puma LA, 02400 -in.puma LA, 02401 -in.puma LA, 02402 -in.puma LA, 02500 -in.puma MA, 00100 -in.puma MA, 00200 -in.puma MA, 00300 -in.puma MA, 00301 -in.puma MA, 00302 -in.puma MA, 00303 -in.puma MA, 00304 -in.puma MA, 00400 -in.puma MA, 00501 -in.puma MA, 00502 -in.puma MA, 00503 -in.puma MA, 00504 -in.puma MA, 00505 -in.puma MA, 00506 -in.puma MA, 00507 -in.puma MA, 00508 -in.puma MA, 00701 -in.puma MA, 00702 -in.puma MA, 00703 -in.puma MA, 00704 -in.puma MA, 01000 -in.puma MA, 01300 -in.puma MA, 01400 -in.puma MA, 01600 -in.puma MA, 01900 -in.puma MA, 01901 -in.puma MA, 01902 -in.puma MA, 02400 -in.puma MA, 02800 -in.puma MA, 03301 -in.puma MA, 03302 -in.puma MA, 03303 -in.puma MA, 03304 -in.puma MA, 03305 -in.puma MA, 03306 -in.puma MA, 03400 -in.puma MA, 03500 -in.puma MA, 03601 -in.puma MA, 03602 -in.puma MA, 03603 -in.puma MA, 03900 -in.puma MA, 04000 -in.puma MA, 04200 -in.puma MA, 04301 -in.puma MA, 04302 -in.puma MA, 04303 -in.puma MA, 04500 -in.puma MA, 04700 -in.puma MA, 04800 -in.puma MA, 04901 -in.puma MA, 04902 -in.puma MA, 04903 -in.puma MD, 00100 -in.puma MD, 00200 -in.puma MD, 00301 -in.puma MD, 00302 -in.puma MD, 00400 -in.puma MD, 00501 -in.puma MD, 00502 -in.puma MD, 00503 -in.puma MD, 00504 -in.puma MD, 00505 -in.puma MD, 00506 -in.puma MD, 00507 -in.puma MD, 00601 -in.puma MD, 00602 -in.puma MD, 00700 -in.puma MD, 00801 -in.puma MD, 00802 -in.puma MD, 00803 -in.puma MD, 00804 -in.puma MD, 00805 -in.puma MD, 00901 -in.puma MD, 00902 -in.puma MD, 01001 -in.puma MD, 01002 -in.puma MD, 01003 -in.puma MD, 01004 -in.puma MD, 01005 -in.puma MD, 01006 -in.puma MD, 01007 -in.puma MD, 01101 -in.puma MD, 01102 -in.puma MD, 01103 -in.puma MD, 01104 -in.puma MD, 01105 -in.puma MD, 01106 -in.puma MD, 01107 -in.puma MD, 01201 -in.puma MD, 01202 -in.puma MD, 01203 -in.puma MD, 01204 -in.puma MD, 01300 -in.puma MD, 01400 -in.puma MD, 01500 -in.puma MD, 01600 -in.puma ME, 00100 -in.puma ME, 00200 -in.puma ME, 00300 -in.puma ME, 00400 -in.puma ME, 00500 -in.puma ME, 00600 -in.puma ME, 00700 -in.puma ME, 00800 -in.puma ME, 00900 -in.puma ME, 01000 -in.puma MI, 00100 -in.puma MI, 00200 -in.puma MI, 00300 -in.puma MI, 00400 -in.puma MI, 00500 -in.puma MI, 00600 -in.puma MI, 00700 -in.puma MI, 00801 -in.puma MI, 00802 -in.puma MI, 00900 -in.puma MI, 01001 -in.puma MI, 01002 -in.puma MI, 01003 -in.puma MI, 01004 -in.puma MI, 01100 -in.puma MI, 01200 -in.puma MI, 01300 -in.puma MI, 01400 -in.puma MI, 01500 -in.puma MI, 01600 -in.puma MI, 01701 -in.puma MI, 01702 -in.puma MI, 01703 -in.puma MI, 01704 -in.puma MI, 01801 -in.puma MI, 01802 -in.puma MI, 01900 -in.puma MI, 02000 -in.puma MI, 02101 -in.puma MI, 02102 -in.puma MI, 02200 -in.puma MI, 02300 -in.puma MI, 02400 -in.puma MI, 02500 -in.puma MI, 02600 -in.puma MI, 02701 -in.puma MI, 02702 -in.puma MI, 02703 -in.puma MI, 02800 -in.puma MI, 02901 -in.puma MI, 02902 -in.puma MI, 02903 -in.puma MI, 02904 -in.puma MI, 02905 -in.puma MI, 02906 -in.puma MI, 02907 -in.puma MI, 02908 -in.puma MI, 03001 -in.puma MI, 03002 -in.puma MI, 03003 -in.puma MI, 03004 -in.puma MI, 03005 -in.puma MI, 03006 -in.puma MI, 03100 -in.puma MI, 03201 -in.puma MI, 03202 -in.puma MI, 03203 -in.puma MI, 03204 -in.puma MI, 03205 -in.puma MI, 03206 -in.puma MI, 03207 -in.puma MI, 03208 -in.puma MI, 03209 -in.puma MI, 03210 -in.puma MI, 03211 -in.puma MI, 03212 -in.puma MI, 03213 -in.puma MI, 03300 -in.puma MN, 00100 -in.puma MN, 00200 -in.puma MN, 00300 -in.puma MN, 00400 -in.puma MN, 00500 -in.puma MN, 00600 -in.puma MN, 00700 -in.puma MN, 00800 -in.puma MN, 00900 -in.puma MN, 01000 -in.puma MN, 01101 -in.puma MN, 01102 -in.puma MN, 01103 -in.puma MN, 01201 -in.puma MN, 01202 -in.puma MN, 01301 -in.puma MN, 01302 -in.puma MN, 01303 -in.puma MN, 01304 -in.puma MN, 01401 -in.puma MN, 01402 -in.puma MN, 01403 -in.puma MN, 01404 -in.puma MN, 01405 -in.puma MN, 01406 -in.puma MN, 01407 -in.puma MN, 01408 -in.puma MN, 01409 -in.puma MN, 01410 -in.puma MN, 01501 -in.puma MN, 01502 -in.puma MN, 01503 -in.puma MN, 01600 -in.puma MN, 01700 -in.puma MN, 01800 -in.puma MN, 01900 -in.puma MN, 02000 -in.puma MN, 02100 -in.puma MN, 02200 -in.puma MN, 02300 -in.puma MN, 02400 -in.puma MN, 02500 -in.puma MN, 02600 -in.puma MO, 00100 -in.puma MO, 00200 -in.puma MO, 00300 -in.puma MO, 00400 -in.puma MO, 00500 -in.puma MO, 00600 -in.puma MO, 00700 -in.puma MO, 00800 -in.puma MO, 00901 -in.puma MO, 00902 -in.puma MO, 00903 -in.puma MO, 01001 -in.puma MO, 01002 -in.puma MO, 01003 -in.puma MO, 01004 -in.puma MO, 01005 -in.puma MO, 01100 -in.puma MO, 01200 -in.puma MO, 01300 -in.puma MO, 01400 -in.puma MO, 01500 -in.puma MO, 01600 -in.puma MO, 01701 -in.puma MO, 01702 -in.puma MO, 01703 -in.puma MO, 01801 -in.puma MO, 01802 -in.puma MO, 01803 -in.puma MO, 01804 -in.puma MO, 01805 -in.puma MO, 01806 -in.puma MO, 01807 -in.puma MO, 01808 -in.puma MO, 01901 -in.puma MO, 01902 -in.puma MO, 02001 -in.puma MO, 02002 -in.puma MO, 02100 -in.puma MO, 02200 -in.puma MO, 02300 -in.puma MO, 02400 -in.puma MO, 02500 -in.puma MO, 02601 -in.puma MO, 02602 -in.puma MO, 02603 -in.puma MO, 02700 -in.puma MO, 02800 -in.puma MS, 00100 -in.puma MS, 00200 -in.puma MS, 00300 -in.puma MS, 00400 -in.puma MS, 00500 -in.puma MS, 00600 -in.puma MS, 00700 -in.puma MS, 00800 -in.puma MS, 00900 -in.puma MS, 01000 -in.puma MS, 01100 -in.puma MS, 01200 -in.puma MS, 01300 -in.puma MS, 01400 -in.puma MS, 01500 -in.puma MS, 01600 -in.puma MS, 01700 -in.puma MS, 01800 -in.puma MS, 01900 -in.puma MS, 02000 -in.puma MS, 02100 -in.puma MT, 00100 -in.puma MT, 00200 -in.puma MT, 00300 -in.puma MT, 00400 -in.puma MT, 00500 -in.puma MT, 00600 -in.puma MT, 00700 -in.puma NC, 00100 -in.puma NC, 00200 -in.puma NC, 00300 -in.puma NC, 00400 -in.puma NC, 00500 -in.puma NC, 00600 -in.puma NC, 00700 -in.puma NC, 00800 -in.puma NC, 00900 -in.puma NC, 01000 -in.puma NC, 01100 -in.puma NC, 01201 -in.puma NC, 01202 -in.puma NC, 01203 -in.puma NC, 01204 -in.puma NC, 01205 -in.puma NC, 01206 -in.puma NC, 01207 -in.puma NC, 01208 -in.puma NC, 01301 -in.puma NC, 01302 -in.puma NC, 01400 -in.puma NC, 01500 -in.puma NC, 01600 -in.puma NC, 01701 -in.puma NC, 01702 -in.puma NC, 01703 -in.puma NC, 01704 -in.puma NC, 01801 -in.puma NC, 01802 -in.puma NC, 01803 -in.puma NC, 01900 -in.puma NC, 02000 -in.puma NC, 02100 -in.puma NC, 02201 -in.puma NC, 02202 -in.puma NC, 02300 -in.puma NC, 02400 -in.puma NC, 02500 -in.puma NC, 02600 -in.puma NC, 02700 -in.puma NC, 02800 -in.puma NC, 02900 -in.puma NC, 03001 -in.puma NC, 03002 -in.puma NC, 03101 -in.puma NC, 03102 -in.puma NC, 03103 -in.puma NC, 03104 -in.puma NC, 03105 -in.puma NC, 03106 -in.puma NC, 03107 -in.puma NC, 03108 -in.puma NC, 03200 -in.puma NC, 03300 -in.puma NC, 03400 -in.puma NC, 03500 -in.puma NC, 03600 -in.puma NC, 03700 -in.puma NC, 03800 -in.puma NC, 03900 -in.puma NC, 04000 -in.puma NC, 04100 -in.puma NC, 04200 -in.puma NC, 04300 -in.puma NC, 04400 -in.puma NC, 04500 -in.puma NC, 04600 -in.puma NC, 04700 -in.puma NC, 04800 -in.puma NC, 04900 -in.puma NC, 05001 -in.puma NC, 05002 -in.puma NC, 05003 -in.puma NC, 05100 -in.puma NC, 05200 -in.puma NC, 05300 -in.puma NC, 05400 -in.puma ND, 00100 -in.puma ND, 00200 -in.puma ND, 00300 -in.puma ND, 00400 -in.puma ND, 00500 -in.puma NE, 00100 -in.puma NE, 00200 -in.puma NE, 00300 -in.puma NE, 00400 -in.puma NE, 00500 -in.puma NE, 00600 -in.puma NE, 00701 -in.puma NE, 00702 -in.puma NE, 00801 -in.puma NE, 00802 -in.puma NE, 00901 -in.puma NE, 00902 -in.puma NE, 00903 -in.puma NE, 00904 -in.puma NH, 00100 -in.puma NH, 00200 -in.puma NH, 00300 -in.puma NH, 00400 -in.puma NH, 00500 -in.puma NH, 00600 -in.puma NH, 00700 -in.puma NH, 00800 -in.puma NH, 00900 -in.puma NH, 01000 -in.puma NJ, 00101 -in.puma NJ, 00102 -in.puma NJ, 00301 -in.puma NJ, 00302 -in.puma NJ, 00303 -in.puma NJ, 00304 -in.puma NJ, 00305 -in.puma NJ, 00306 -in.puma NJ, 00307 -in.puma NJ, 00308 -in.puma NJ, 00400 -in.puma NJ, 00501 -in.puma NJ, 00502 -in.puma NJ, 00503 -in.puma NJ, 00601 -in.puma NJ, 00602 -in.puma NJ, 00701 -in.puma NJ, 00702 -in.puma NJ, 00703 -in.puma NJ, 00800 -in.puma NJ, 00901 -in.puma NJ, 00902 -in.puma NJ, 00903 -in.puma NJ, 00904 -in.puma NJ, 00905 -in.puma NJ, 00906 -in.puma NJ, 00907 -in.puma NJ, 01001 -in.puma NJ, 01002 -in.puma NJ, 01003 -in.puma NJ, 01101 -in.puma NJ, 01102 -in.puma NJ, 01103 -in.puma NJ, 01104 -in.puma NJ, 01105 -in.puma NJ, 01106 -in.puma NJ, 01201 -in.puma NJ, 01202 -in.puma NJ, 01203 -in.puma NJ, 01204 -in.puma NJ, 01205 -in.puma NJ, 01301 -in.puma NJ, 01302 -in.puma NJ, 01401 -in.puma NJ, 01402 -in.puma NJ, 01403 -in.puma NJ, 01404 -in.puma NJ, 01501 -in.puma NJ, 01502 -in.puma NJ, 01503 -in.puma NJ, 01504 -in.puma NJ, 01600 -in.puma NJ, 01700 -in.puma NJ, 01800 -in.puma NJ, 01901 -in.puma NJ, 01902 -in.puma NJ, 01903 -in.puma NJ, 01904 -in.puma NJ, 02001 -in.puma NJ, 02002 -in.puma NJ, 02003 -in.puma NJ, 02101 -in.puma NJ, 02102 -in.puma NJ, 02103 -in.puma NJ, 02104 -in.puma NJ, 02201 -in.puma NJ, 02202 -in.puma NJ, 02301 -in.puma NJ, 02302 -in.puma NJ, 02303 -in.puma NJ, 02400 -in.puma NJ, 02500 -in.puma NJ, 02600 -in.puma NM, 00100 -in.puma NM, 00200 -in.puma NM, 00300 -in.puma NM, 00400 -in.puma NM, 00500 -in.puma NM, 00600 -in.puma NM, 00700 -in.puma NM, 00801 -in.puma NM, 00802 -in.puma NM, 00803 -in.puma NM, 00804 -in.puma NM, 00805 -in.puma NM, 00806 -in.puma NM, 00900 -in.puma NM, 01001 -in.puma NM, 01002 -in.puma NM, 01100 -in.puma NM, 01200 -in.puma NV, 00101 -in.puma NV, 00102 -in.puma NV, 00103 -in.puma NV, 00200 -in.puma NV, 00300 -in.puma NV, 00401 -in.puma NV, 00402 -in.puma NV, 00403 -in.puma NV, 00404 -in.puma NV, 00405 -in.puma NV, 00406 -in.puma NV, 00407 -in.puma NV, 00408 -in.puma NV, 00409 -in.puma NV, 00410 -in.puma NV, 00411 -in.puma NV, 00412 -in.puma NV, 00413 -in.puma NY, 00100 -in.puma NY, 00200 -in.puma NY, 00300 -in.puma NY, 00401 -in.puma NY, 00402 -in.puma NY, 00403 -in.puma NY, 00500 -in.puma NY, 00600 -in.puma NY, 00701 -in.puma NY, 00702 -in.puma NY, 00703 -in.puma NY, 00704 -in.puma NY, 00800 -in.puma NY, 00901 -in.puma NY, 00902 -in.puma NY, 00903 -in.puma NY, 00904 -in.puma NY, 00905 -in.puma NY, 00906 -in.puma NY, 01000 -in.puma NY, 01101 -in.puma NY, 01102 -in.puma NY, 01201 -in.puma NY, 01202 -in.puma NY, 01203 -in.puma NY, 01204 -in.puma NY, 01205 -in.puma NY, 01206 -in.puma NY, 01207 -in.puma NY, 01300 -in.puma NY, 01400 -in.puma NY, 01500 -in.puma NY, 01600 -in.puma NY, 01700 -in.puma NY, 01801 -in.puma NY, 01802 -in.puma NY, 01900 -in.puma NY, 02001 -in.puma NY, 02002 -in.puma NY, 02100 -in.puma NY, 02201 -in.puma NY, 02202 -in.puma NY, 02203 -in.puma NY, 02300 -in.puma NY, 02401 -in.puma NY, 02402 -in.puma NY, 02500 -in.puma NY, 02600 -in.puma NY, 02701 -in.puma NY, 02702 -in.puma NY, 02801 -in.puma NY, 02802 -in.puma NY, 02901 -in.puma NY, 02902 -in.puma NY, 02903 -in.puma NY, 03001 -in.puma NY, 03002 -in.puma NY, 03003 -in.puma NY, 03101 -in.puma NY, 03102 -in.puma NY, 03103 -in.puma NY, 03104 -in.puma NY, 03105 -in.puma NY, 03106 -in.puma NY, 03107 -in.puma NY, 03201 -in.puma NY, 03202 -in.puma NY, 03203 -in.puma NY, 03204 -in.puma NY, 03205 -in.puma NY, 03206 -in.puma NY, 03207 -in.puma NY, 03208 -in.puma NY, 03209 -in.puma NY, 03210 -in.puma NY, 03211 -in.puma NY, 03212 -in.puma NY, 03301 -in.puma NY, 03302 -in.puma NY, 03303 -in.puma NY, 03304 -in.puma NY, 03305 -in.puma NY, 03306 -in.puma NY, 03307 -in.puma NY, 03308 -in.puma NY, 03309 -in.puma NY, 03310 -in.puma NY, 03311 -in.puma NY, 03312 -in.puma NY, 03313 -in.puma NY, 03701 -in.puma NY, 03702 -in.puma NY, 03703 -in.puma NY, 03704 -in.puma NY, 03705 -in.puma NY, 03706 -in.puma NY, 03707 -in.puma NY, 03708 -in.puma NY, 03709 -in.puma NY, 03710 -in.puma NY, 03801 -in.puma NY, 03802 -in.puma NY, 03803 -in.puma NY, 03804 -in.puma NY, 03805 -in.puma NY, 03806 -in.puma NY, 03807 -in.puma NY, 03808 -in.puma NY, 03809 -in.puma NY, 03810 -in.puma NY, 03901 -in.puma NY, 03902 -in.puma NY, 03903 -in.puma NY, 04001 -in.puma NY, 04002 -in.puma NY, 04003 -in.puma NY, 04004 -in.puma NY, 04005 -in.puma NY, 04006 -in.puma NY, 04007 -in.puma NY, 04008 -in.puma NY, 04009 -in.puma NY, 04010 -in.puma NY, 04011 -in.puma NY, 04012 -in.puma NY, 04013 -in.puma NY, 04014 -in.puma NY, 04015 -in.puma NY, 04016 -in.puma NY, 04017 -in.puma NY, 04018 -in.puma NY, 04101 -in.puma NY, 04102 -in.puma NY, 04103 -in.puma NY, 04104 -in.puma NY, 04105 -in.puma NY, 04106 -in.puma NY, 04107 -in.puma NY, 04108 -in.puma NY, 04109 -in.puma NY, 04110 -in.puma NY, 04111 -in.puma NY, 04112 -in.puma NY, 04113 -in.puma NY, 04114 -in.puma OH, 00100 -in.puma OH, 00200 -in.puma OH, 00300 -in.puma OH, 00400 -in.puma OH, 00500 -in.puma OH, 00600 -in.puma OH, 00700 -in.puma OH, 00801 -in.puma OH, 00802 -in.puma OH, 00901 -in.puma OH, 00902 -in.puma OH, 00903 -in.puma OH, 00904 -in.puma OH, 00905 -in.puma OH, 00906 -in.puma OH, 00907 -in.puma OH, 00908 -in.puma OH, 00909 -in.puma OH, 00910 -in.puma OH, 01000 -in.puma OH, 01100 -in.puma OH, 01200 -in.puma OH, 01300 -in.puma OH, 01400 -in.puma OH, 01500 -in.puma OH, 01600 -in.puma OH, 01700 -in.puma OH, 01801 -in.puma OH, 01802 -in.puma OH, 01803 -in.puma OH, 01804 -in.puma OH, 01805 -in.puma OH, 01900 -in.puma OH, 02000 -in.puma OH, 02100 -in.puma OH, 02200 -in.puma OH, 02300 -in.puma OH, 02400 -in.puma OH, 02500 -in.puma OH, 02600 -in.puma OH, 02700 -in.puma OH, 02800 -in.puma OH, 02900 -in.puma OH, 03000 -in.puma OH, 03100 -in.puma OH, 03200 -in.puma OH, 03300 -in.puma OH, 03400 -in.puma OH, 03500 -in.puma OH, 03600 -in.puma OH, 03700 -in.puma OH, 03800 -in.puma OH, 03900 -in.puma OH, 04000 -in.puma OH, 04101 -in.puma OH, 04102 -in.puma OH, 04103 -in.puma OH, 04104 -in.puma OH, 04105 -in.puma OH, 04106 -in.puma OH, 04107 -in.puma OH, 04108 -in.puma OH, 04109 -in.puma OH, 04110 -in.puma OH, 04111 -in.puma OH, 04200 -in.puma OH, 04300 -in.puma OH, 04400 -in.puma OH, 04500 -in.puma OH, 04601 -in.puma OH, 04602 -in.puma OH, 04603 -in.puma OH, 04604 -in.puma OH, 04700 -in.puma OH, 04800 -in.puma OH, 04900 -in.puma OH, 05000 -in.puma OH, 05100 -in.puma OH, 05200 -in.puma OH, 05301 -in.puma OH, 05302 -in.puma OH, 05401 -in.puma OH, 05402 -in.puma OH, 05403 -in.puma OH, 05501 -in.puma OH, 05502 -in.puma OH, 05503 -in.puma OH, 05504 -in.puma OH, 05505 -in.puma OH, 05506 -in.puma OH, 05507 -in.puma OH, 05600 -in.puma OH, 05700 -in.puma OK, 00100 -in.puma OK, 00200 -in.puma OK, 00300 -in.puma OK, 00400 -in.puma OK, 00500 -in.puma OK, 00601 -in.puma OK, 00602 -in.puma OK, 00701 -in.puma OK, 00702 -in.puma OK, 00800 -in.puma OK, 00900 -in.puma OK, 01001 -in.puma OK, 01002 -in.puma OK, 01003 -in.puma OK, 01004 -in.puma OK, 01005 -in.puma OK, 01006 -in.puma OK, 01101 -in.puma OK, 01102 -in.puma OK, 01201 -in.puma OK, 01202 -in.puma OK, 01203 -in.puma OK, 01204 -in.puma OK, 01301 -in.puma OK, 01302 -in.puma OK, 01400 -in.puma OK, 01501 -in.puma OK, 01601 -in.puma OR, 00100 -in.puma OR, 00200 -in.puma OR, 00300 -in.puma OR, 00400 -in.puma OR, 00500 -in.puma OR, 00600 -in.puma OR, 00703 -in.puma OR, 00704 -in.puma OR, 00705 -in.puma OR, 00800 -in.puma OR, 00901 -in.puma OR, 00902 -in.puma OR, 01000 -in.puma OR, 01103 -in.puma OR, 01104 -in.puma OR, 01105 -in.puma OR, 01200 -in.puma OR, 01301 -in.puma OR, 01302 -in.puma OR, 01303 -in.puma OR, 01305 -in.puma OR, 01314 -in.puma OR, 01316 -in.puma OR, 01317 -in.puma OR, 01318 -in.puma OR, 01319 -in.puma OR, 01320 -in.puma OR, 01321 -in.puma OR, 01322 -in.puma OR, 01323 -in.puma OR, 01324 -in.puma PA, 00101 -in.puma PA, 00102 -in.puma PA, 00200 -in.puma PA, 00300 -in.puma PA, 00400 -in.puma PA, 00500 -in.puma PA, 00600 -in.puma PA, 00701 -in.puma PA, 00702 -in.puma PA, 00801 -in.puma PA, 00802 -in.puma PA, 00803 -in.puma PA, 00900 -in.puma PA, 01000 -in.puma PA, 01100 -in.puma PA, 01200 -in.puma PA, 01300 -in.puma PA, 01400 -in.puma PA, 01501 -in.puma PA, 01502 -in.puma PA, 01600 -in.puma PA, 01701 -in.puma PA, 01702 -in.puma PA, 01801 -in.puma PA, 01802 -in.puma PA, 01803 -in.puma PA, 01804 -in.puma PA, 01805 -in.puma PA, 01806 -in.puma PA, 01807 -in.puma PA, 01900 -in.puma PA, 02001 -in.puma PA, 02002 -in.puma PA, 02003 -in.puma PA, 02100 -in.puma PA, 02200 -in.puma PA, 02301 -in.puma PA, 02302 -in.puma PA, 02401 -in.puma PA, 02402 -in.puma PA, 02500 -in.puma PA, 02600 -in.puma PA, 02701 -in.puma PA, 02702 -in.puma PA, 02703 -in.puma PA, 02801 -in.puma PA, 02802 -in.puma PA, 02803 -in.puma PA, 02901 -in.puma PA, 02902 -in.puma PA, 03001 -in.puma PA, 03002 -in.puma PA, 03003 -in.puma PA, 03004 -in.puma PA, 03101 -in.puma PA, 03102 -in.puma PA, 03103 -in.puma PA, 03104 -in.puma PA, 03105 -in.puma PA, 03106 -in.puma PA, 03201 -in.puma PA, 03202 -in.puma PA, 03203 -in.puma PA, 03204 -in.puma PA, 03205 -in.puma PA, 03206 -in.puma PA, 03207 -in.puma PA, 03208 -in.puma PA, 03209 -in.puma PA, 03210 -in.puma PA, 03211 -in.puma PA, 03301 -in.puma PA, 03302 -in.puma PA, 03303 -in.puma PA, 03304 -in.puma PA, 03401 -in.puma PA, 03402 -in.puma PA, 03403 -in.puma PA, 03404 -in.puma PA, 03501 -in.puma PA, 03502 -in.puma PA, 03503 -in.puma PA, 03504 -in.puma PA, 03601 -in.puma PA, 03602 -in.puma PA, 03603 -in.puma PA, 03701 -in.puma PA, 03702 -in.puma PA, 03800 -in.puma PA, 03900 -in.puma PA, 04001 -in.puma PA, 04002 -in.puma RI, 00101 -in.puma RI, 00102 -in.puma RI, 00103 -in.puma RI, 00104 -in.puma RI, 00201 -in.puma RI, 00300 -in.puma RI, 00400 -in.puma SC, 00101 -in.puma SC, 00102 -in.puma SC, 00103 -in.puma SC, 00104 -in.puma SC, 00105 -in.puma SC, 00200 -in.puma SC, 00301 -in.puma SC, 00302 -in.puma SC, 00400 -in.puma SC, 00501 -in.puma SC, 00502 -in.puma SC, 00601 -in.puma SC, 00602 -in.puma SC, 00603 -in.puma SC, 00604 -in.puma SC, 00605 -in.puma SC, 00700 -in.puma SC, 00800 -in.puma SC, 00900 -in.puma SC, 01000 -in.puma SC, 01101 -in.puma SC, 01102 -in.puma SC, 01201 -in.puma SC, 01202 -in.puma SC, 01203 -in.puma SC, 01204 -in.puma SC, 01300 -in.puma SC, 01400 -in.puma SC, 01500 -in.puma SC, 01600 -in.puma SD, 00100 -in.puma SD, 00200 -in.puma SD, 00300 -in.puma SD, 00400 -in.puma SD, 00500 -in.puma SD, 00600 -in.puma TN, 00100 -in.puma TN, 00200 -in.puma TN, 00300 -in.puma TN, 00400 -in.puma TN, 00500 -in.puma TN, 00600 -in.puma TN, 00700 -in.puma TN, 00800 -in.puma TN, 00900 -in.puma TN, 01000 -in.puma TN, 01100 -in.puma TN, 01200 -in.puma TN, 01300 -in.puma TN, 01400 -in.puma TN, 01500 -in.puma TN, 01601 -in.puma TN, 01602 -in.puma TN, 01603 -in.puma TN, 01604 -in.puma TN, 01700 -in.puma TN, 01800 -in.puma TN, 01900 -in.puma TN, 02001 -in.puma TN, 02002 -in.puma TN, 02003 -in.puma TN, 02100 -in.puma TN, 02200 -in.puma TN, 02300 -in.puma TN, 02401 -in.puma TN, 02402 -in.puma TN, 02501 -in.puma TN, 02502 -in.puma TN, 02503 -in.puma TN, 02504 -in.puma TN, 02505 -in.puma TN, 02600 -in.puma TN, 02700 -in.puma TN, 02800 -in.puma TN, 02900 -in.puma TN, 03000 -in.puma TN, 03100 -in.puma TN, 03201 -in.puma TN, 03202 -in.puma TN, 03203 -in.puma TN, 03204 -in.puma TN, 03205 -in.puma TN, 03206 -in.puma TN, 03207 -in.puma TN, 03208 -in.puma TX, 00100 -in.puma TX, 00200 -in.puma TX, 00300 -in.puma TX, 00400 -in.puma TX, 00501 -in.puma TX, 00502 -in.puma TX, 00600 -in.puma TX, 00700 -in.puma TX, 00800 -in.puma TX, 00900 -in.puma TX, 01000 -in.puma TX, 01100 -in.puma TX, 01200 -in.puma TX, 01300 -in.puma TX, 01400 -in.puma TX, 01501 -in.puma TX, 01502 -in.puma TX, 01600 -in.puma TX, 01700 -in.puma TX, 01800 -in.puma TX, 01901 -in.puma TX, 01902 -in.puma TX, 01903 -in.puma TX, 01904 -in.puma TX, 01905 -in.puma TX, 01906 -in.puma TX, 01907 -in.puma TX, 02001 -in.puma TX, 02002 -in.puma TX, 02003 -in.puma TX, 02004 -in.puma TX, 02005 -in.puma TX, 02006 -in.puma TX, 02101 -in.puma TX, 02102 -in.puma TX, 02200 -in.puma TX, 02301 -in.puma TX, 02302 -in.puma TX, 02303 -in.puma TX, 02304 -in.puma TX, 02305 -in.puma TX, 02306 -in.puma TX, 02307 -in.puma TX, 02308 -in.puma TX, 02309 -in.puma TX, 02310 -in.puma TX, 02311 -in.puma TX, 02312 -in.puma TX, 02313 -in.puma TX, 02314 -in.puma TX, 02315 -in.puma TX, 02316 -in.puma TX, 02317 -in.puma TX, 02318 -in.puma TX, 02319 -in.puma TX, 02320 -in.puma TX, 02321 -in.puma TX, 02322 -in.puma TX, 02400 -in.puma TX, 02501 -in.puma TX, 02502 -in.puma TX, 02503 -in.puma TX, 02504 -in.puma TX, 02505 -in.puma TX, 02506 -in.puma TX, 02507 -in.puma TX, 02508 -in.puma TX, 02509 -in.puma TX, 02510 -in.puma TX, 02511 -in.puma TX, 02512 -in.puma TX, 02513 -in.puma TX, 02514 -in.puma TX, 02515 -in.puma TX, 02516 -in.puma TX, 02600 -in.puma TX, 02700 -in.puma TX, 02800 -in.puma TX, 02900 -in.puma TX, 03000 -in.puma TX, 03100 -in.puma TX, 03301 -in.puma TX, 03302 -in.puma TX, 03303 -in.puma TX, 03304 -in.puma TX, 03305 -in.puma TX, 03306 -in.puma TX, 03400 -in.puma TX, 03501 -in.puma TX, 03502 -in.puma TX, 03601 -in.puma TX, 03602 -in.puma TX, 03700 -in.puma TX, 03801 -in.puma TX, 03802 -in.puma TX, 03900 -in.puma TX, 04000 -in.puma TX, 04100 -in.puma TX, 04200 -in.puma TX, 04301 -in.puma TX, 04302 -in.puma TX, 04400 -in.puma TX, 04501 -in.puma TX, 04502 -in.puma TX, 04503 -in.puma TX, 04504 -in.puma TX, 04601 -in.puma TX, 04602 -in.puma TX, 04603 -in.puma TX, 04604 -in.puma TX, 04605 -in.puma TX, 04606 -in.puma TX, 04607 -in.puma TX, 04608 -in.puma TX, 04609 -in.puma TX, 04610 -in.puma TX, 04611 -in.puma TX, 04612 -in.puma TX, 04613 -in.puma TX, 04614 -in.puma TX, 04615 -in.puma TX, 04616 -in.puma TX, 04617 -in.puma TX, 04618 -in.puma TX, 04619 -in.puma TX, 04620 -in.puma TX, 04621 -in.puma TX, 04622 -in.puma TX, 04623 -in.puma TX, 04624 -in.puma TX, 04625 -in.puma TX, 04626 -in.puma TX, 04627 -in.puma TX, 04628 -in.puma TX, 04629 -in.puma TX, 04630 -in.puma TX, 04631 -in.puma TX, 04632 -in.puma TX, 04633 -in.puma TX, 04634 -in.puma TX, 04635 -in.puma TX, 04636 -in.puma TX, 04637 -in.puma TX, 04638 -in.puma TX, 04701 -in.puma TX, 04702 -in.puma TX, 04801 -in.puma TX, 04802 -in.puma TX, 04803 -in.puma TX, 04901 -in.puma TX, 04902 -in.puma TX, 04903 -in.puma TX, 04904 -in.puma TX, 04905 -in.puma TX, 05000 -in.puma TX, 05100 -in.puma TX, 05201 -in.puma TX, 05202 -in.puma TX, 05203 -in.puma TX, 05204 -in.puma TX, 05301 -in.puma TX, 05302 -in.puma TX, 05303 -in.puma TX, 05304 -in.puma TX, 05305 -in.puma TX, 05306 -in.puma TX, 05307 -in.puma TX, 05308 -in.puma TX, 05309 -in.puma TX, 05400 -in.puma TX, 05500 -in.puma TX, 05600 -in.puma TX, 05700 -in.puma TX, 05800 -in.puma TX, 05901 -in.puma TX, 05902 -in.puma TX, 05903 -in.puma TX, 05904 -in.puma TX, 05905 -in.puma TX, 05906 -in.puma TX, 05907 -in.puma TX, 05908 -in.puma TX, 05909 -in.puma TX, 05910 -in.puma TX, 05911 -in.puma TX, 05912 -in.puma TX, 05913 -in.puma TX, 05914 -in.puma TX, 05915 -in.puma TX, 05916 -in.puma TX, 06000 -in.puma TX, 06100 -in.puma TX, 06200 -in.puma TX, 06301 -in.puma TX, 06302 -in.puma TX, 06400 -in.puma TX, 06500 -in.puma TX, 06601 -in.puma TX, 06602 -in.puma TX, 06603 -in.puma TX, 06701 -in.puma TX, 06702 -in.puma TX, 06703 -in.puma TX, 06801 -in.puma TX, 06802 -in.puma TX, 06803 -in.puma TX, 06804 -in.puma TX, 06805 -in.puma TX, 06806 -in.puma TX, 06807 -in.puma TX, 06900 -in.puma UT, 03001 -in.puma UT, 05001 -in.puma UT, 11001 -in.puma UT, 11002 -in.puma UT, 13001 -in.puma UT, 21001 -in.puma UT, 35001 -in.puma UT, 35002 -in.puma UT, 35003 -in.puma UT, 35004 -in.puma UT, 35005 -in.puma UT, 35006 -in.puma UT, 35007 -in.puma UT, 35008 -in.puma UT, 35009 -in.puma UT, 49001 -in.puma UT, 49002 -in.puma UT, 49003 -in.puma UT, 49004 -in.puma UT, 53001 -in.puma UT, 57001 -in.puma UT, 57002 -in.puma VA, 01301 -in.puma VA, 01302 -in.puma VA, 04101 -in.puma VA, 04102 -in.puma VA, 04103 -in.puma VA, 10701 -in.puma VA, 10702 -in.puma VA, 10703 -in.puma VA, 51010 -in.puma VA, 51020 -in.puma VA, 51040 -in.puma VA, 51044 -in.puma VA, 51045 -in.puma VA, 51080 -in.puma VA, 51084 -in.puma VA, 51085 -in.puma VA, 51087 -in.puma VA, 51089 -in.puma VA, 51090 -in.puma VA, 51095 -in.puma VA, 51096 -in.puma VA, 51097 -in.puma VA, 51105 -in.puma VA, 51110 -in.puma VA, 51115 -in.puma VA, 51120 -in.puma VA, 51125 -in.puma VA, 51135 -in.puma VA, 51145 -in.puma VA, 51154 -in.puma VA, 51155 -in.puma VA, 51164 -in.puma VA, 51165 -in.puma VA, 51167 -in.puma VA, 51175 -in.puma VA, 51186 -in.puma VA, 51206 -in.puma VA, 51215 -in.puma VA, 51224 -in.puma VA, 51225 -in.puma VA, 51235 -in.puma VA, 51244 -in.puma VA, 51245 -in.puma VA, 51246 -in.puma VA, 51255 -in.puma VA, 55001 -in.puma VA, 55002 -in.puma VA, 59301 -in.puma VA, 59302 -in.puma VA, 59303 -in.puma VA, 59304 -in.puma VA, 59305 -in.puma VA, 59306 -in.puma VA, 59307 -in.puma VA, 59308 -in.puma VA, 59309 -in.puma VT, 00100 -in.puma VT, 00200 -in.puma VT, 00300 -in.puma VT, 00400 -in.puma WA, 10100 -in.puma WA, 10200 -in.puma WA, 10300 -in.puma WA, 10400 -in.puma WA, 10501 -in.puma WA, 10502 -in.puma WA, 10503 -in.puma WA, 10504 -in.puma WA, 10600 -in.puma WA, 10701 -in.puma WA, 10702 -in.puma WA, 10703 -in.puma WA, 10800 -in.puma WA, 10901 -in.puma WA, 10902 -in.puma WA, 11000 -in.puma WA, 11101 -in.puma WA, 11102 -in.puma WA, 11103 -in.puma WA, 11104 -in.puma WA, 11200 -in.puma WA, 11300 -in.puma WA, 11401 -in.puma WA, 11402 -in.puma WA, 11501 -in.puma WA, 11502 -in.puma WA, 11503 -in.puma WA, 11504 -in.puma WA, 11505 -in.puma WA, 11506 -in.puma WA, 11507 -in.puma WA, 11601 -in.puma WA, 11602 -in.puma WA, 11603 -in.puma WA, 11604 -in.puma WA, 11605 -in.puma WA, 11606 -in.puma WA, 11607 -in.puma WA, 11608 -in.puma WA, 11609 -in.puma WA, 11610 -in.puma WA, 11611 -in.puma WA, 11612 -in.puma WA, 11613 -in.puma WA, 11614 -in.puma WA, 11615 -in.puma WA, 11616 -in.puma WA, 11701 -in.puma WA, 11702 -in.puma WA, 11703 -in.puma WA, 11704 -in.puma WA, 11705 -in.puma WA, 11706 -in.puma WA, 11801 -in.puma WA, 11802 -in.puma WA, 11900 -in.puma WI, 00100 -in.puma WI, 00101 -in.puma WI, 00102 -in.puma WI, 00103 -in.puma WI, 00200 -in.puma WI, 00300 -in.puma WI, 00600 -in.puma WI, 00700 -in.puma WI, 00800 -in.puma WI, 00900 -in.puma WI, 01000 -in.puma WI, 01001 -in.puma WI, 01300 -in.puma WI, 01301 -in.puma WI, 01400 -in.puma WI, 01401 -in.puma WI, 01500 -in.puma WI, 01501 -in.puma WI, 01600 -in.puma WI, 01601 -in.puma WI, 02400 -in.puma WI, 02500 -in.puma WI, 10000 -in.puma WI, 20000 -in.puma WI, 30000 -in.puma WI, 40101 -in.puma WI, 40301 -in.puma WI, 40701 -in.puma WI, 41001 -in.puma WI, 41002 -in.puma WI, 41003 -in.puma WI, 41004 -in.puma WI, 41005 -in.puma WI, 50000 -in.puma WI, 55101 -in.puma WI, 55102 -in.puma WI, 55103 -in.puma WI, 70101 -in.puma WI, 70201 -in.puma WI, 70301 -in.puma WV, 00100 -in.puma WV, 00200 -in.puma WV, 00300 -in.puma WV, 00400 -in.puma WV, 00500 -in.puma WV, 00600 -in.puma WV, 00700 -in.puma WV, 00800 -in.puma WV, 00900 -in.puma WV, 01000 -in.puma WV, 01100 -in.puma WV, 01200 -in.puma WV, 01300 -in.puma WY, 00100 -in.puma WY, 00200 -in.puma WY, 00300 -in.puma WY, 00400 -in.puma WY, 00500 -in.puma_metro_status In metro area, not/partially in principal city -in.puma_metro_status In metro area, principal city -in.puma_metro_status Not/partially in metro area -in.pv_orientation East -in.pv_orientation None -in.pv_orientation North -in.pv_orientation Northeast -in.pv_orientation Northwest -in.pv_orientation South -in.pv_orientation Southeast -in.pv_orientation Southwest -in.pv_orientation West -in.pv_system_size 1.0 kWDC -in.pv_system_size 11.0 kWDC -in.pv_system_size 13.0 kWDC -in.pv_system_size 3.0 kWDC -in.pv_system_size 5.0 kWDC -in.pv_system_size 7.0 kWDC -in.pv_system_size 9.0 kWDC -in.pv_system_size None -in.radiant_barrier No -in.radiant_barrier None -in.range_spot_vent_hour Hour0 -in.range_spot_vent_hour Hour1 -in.range_spot_vent_hour Hour10 -in.range_spot_vent_hour Hour11 -in.range_spot_vent_hour Hour12 -in.range_spot_vent_hour Hour13 -in.range_spot_vent_hour Hour14 -in.range_spot_vent_hour Hour15 -in.range_spot_vent_hour Hour16 -in.range_spot_vent_hour Hour17 -in.range_spot_vent_hour Hour18 -in.range_spot_vent_hour Hour19 -in.range_spot_vent_hour Hour2 -in.range_spot_vent_hour Hour20 -in.range_spot_vent_hour Hour21 -in.range_spot_vent_hour Hour22 -in.range_spot_vent_hour Hour23 -in.range_spot_vent_hour Hour3 -in.range_spot_vent_hour Hour4 -in.range_spot_vent_hour Hour5 -in.range_spot_vent_hour Hour6 -in.range_spot_vent_hour Hour7 -in.range_spot_vent_hour Hour8 -in.range_spot_vent_hour Hour9 -in.reeds_balancing_area 1.0 -in.reeds_balancing_area 2.0 -in.reeds_balancing_area 3.0 -in.reeds_balancing_area 4.0 -in.reeds_balancing_area 5.0 -in.reeds_balancing_area 6.0 -in.reeds_balancing_area 7.0 -in.reeds_balancing_area 8.0 -in.reeds_balancing_area 9.0 -in.reeds_balancing_area 10.0 -in.reeds_balancing_area 11.0 -in.reeds_balancing_area 12.0 -in.reeds_balancing_area 13.0 -in.reeds_balancing_area 14.0 -in.reeds_balancing_area 15.0 -in.reeds_balancing_area 16.0 -in.reeds_balancing_area 17.0 -in.reeds_balancing_area 18.0 -in.reeds_balancing_area 20.0 -in.reeds_balancing_area 21.0 -in.reeds_balancing_area 22.0 -in.reeds_balancing_area 23.0 -in.reeds_balancing_area 24.0 -in.reeds_balancing_area 25.0 -in.reeds_balancing_area 26.0 -in.reeds_balancing_area 27.0 -in.reeds_balancing_area 28.0 -in.reeds_balancing_area 29.0 -in.reeds_balancing_area 30.0 -in.reeds_balancing_area 31.0 -in.reeds_balancing_area 32.0 -in.reeds_balancing_area 33.0 -in.reeds_balancing_area 34.0 -in.reeds_balancing_area 35.0 -in.reeds_balancing_area 36.0 -in.reeds_balancing_area 37.0 -in.reeds_balancing_area 38.0 -in.reeds_balancing_area 39.0 -in.reeds_balancing_area 40.0 -in.reeds_balancing_area 41.0 -in.reeds_balancing_area 42.0 -in.reeds_balancing_area 43.0 -in.reeds_balancing_area 44.0 -in.reeds_balancing_area 45.0 -in.reeds_balancing_area 46.0 -in.reeds_balancing_area 47.0 -in.reeds_balancing_area 48.0 -in.reeds_balancing_area 49.0 -in.reeds_balancing_area 50.0 -in.reeds_balancing_area 51.0 -in.reeds_balancing_area 52.0 -in.reeds_balancing_area 53.0 -in.reeds_balancing_area 54.0 -in.reeds_balancing_area 55.0 -in.reeds_balancing_area 56.0 -in.reeds_balancing_area 57.0 -in.reeds_balancing_area 58.0 -in.reeds_balancing_area 59.0 -in.reeds_balancing_area 60.0 -in.reeds_balancing_area 61.0 -in.reeds_balancing_area 62.0 -in.reeds_balancing_area 63.0 -in.reeds_balancing_area 64.0 -in.reeds_balancing_area 65.0 -in.reeds_balancing_area 66.0 -in.reeds_balancing_area 67.0 -in.reeds_balancing_area 68.0 -in.reeds_balancing_area 69.0 -in.reeds_balancing_area 70.0 -in.reeds_balancing_area 71.0 -in.reeds_balancing_area 72.0 -in.reeds_balancing_area 73.0 -in.reeds_balancing_area 74.0 -in.reeds_balancing_area 75.0 -in.reeds_balancing_area 76.0 -in.reeds_balancing_area 77.0 -in.reeds_balancing_area 78.0 -in.reeds_balancing_area 79.0 -in.reeds_balancing_area 80.0 -in.reeds_balancing_area 81.0 -in.reeds_balancing_area 82.0 -in.reeds_balancing_area 83.0 -in.reeds_balancing_area 84.0 -in.reeds_balancing_area 85.0 -in.reeds_balancing_area 86.0 -in.reeds_balancing_area 87.0 -in.reeds_balancing_area 88.0 -in.reeds_balancing_area 89.0 -in.reeds_balancing_area 90.0 -in.reeds_balancing_area 91.0 -in.reeds_balancing_area 92.0 -in.reeds_balancing_area 93.0 -in.reeds_balancing_area 94.0 -in.reeds_balancing_area 95.0 -in.reeds_balancing_area 96.0 -in.reeds_balancing_area 97.0 -in.reeds_balancing_area 98.0 -in.reeds_balancing_area 99.0 -in.reeds_balancing_area 100.0 -in.reeds_balancing_area 101.0 -in.reeds_balancing_area 102.0 -in.reeds_balancing_area 103.0 -in.reeds_balancing_area 104.0 -in.reeds_balancing_area 105.0 -in.reeds_balancing_area 106.0 -in.reeds_balancing_area 107.0 -in.reeds_balancing_area 108.0 -in.reeds_balancing_area 109.0 -in.reeds_balancing_area 110.0 -in.reeds_balancing_area 111.0 -in.reeds_balancing_area 112.0 -in.reeds_balancing_area 113.0 -in.reeds_balancing_area 114.0 -in.reeds_balancing_area 115.0 -in.reeds_balancing_area 116.0 -in.reeds_balancing_area 117.0 -in.reeds_balancing_area 118.0 -in.reeds_balancing_area 119.0 -in.reeds_balancing_area 120.0 -in.reeds_balancing_area 121.0 -in.reeds_balancing_area 122.0 -in.reeds_balancing_area 123.0 -in.reeds_balancing_area 124.0 -in.reeds_balancing_area 125.0 -in.reeds_balancing_area 126.0 -in.reeds_balancing_area 127.0 -in.reeds_balancing_area 128.0 -in.reeds_balancing_area 129.0 -in.reeds_balancing_area 130.0 -in.reeds_balancing_area 131.0 -in.reeds_balancing_area 132.0 -in.reeds_balancing_area 133.0 -in.reeds_balancing_area 134.0 -in.reeds_balancing_area None -in.refrigerator EF 10.2 -in.refrigerator EF 10.5 -in.refrigerator EF 15.9 -in.refrigerator EF 17.6 -in.refrigerator EF 19.9 -in.refrigerator EF 21.9 -in.refrigerator EF 6.7 -in.refrigerator None -in.refrigerator_usage_level 100% Usage -in.refrigerator_usage_level 105% Usage -in.refrigerator_usage_level 95% Usage -in.representative_income 12965.0 -in.representative_income 18142.0 -in.representative_income 35962.0 -in.representative_income 53672.0 -in.representative_income 87842.0 -in.representative_income 88023.0 -in.representative_income 93438.0 -in.representative_income 111288.0 -in.representative_income 128814.0 -in.representative_income 145289.0 -in.representative_income 268416.0 -in.representative_income 346724.0 -in.roof_material Asphalt Shingles, Medium -in.roof_material Composition Shingles -in.roof_material Metal, Dark -in.roof_material Slate -in.roof_material Tile, Clay or Ceramic -in.roof_material Tile, Concrete -in.roof_material Wood Shingles -in.simulation_control_run_period_begin_day_of_month 1 -in.simulation_control_run_period_begin_month 1 -in.simulation_control_run_period_calendar_year 2018 -in.simulation_control_run_period_end_day_of_month 31 -in.simulation_control_run_period_end_month 12 -in.simulation_control_timestep 15 -in.sqft..ft2 881.0 -in.sqft..ft2 1228.0 -in.sqft..ft2 2179.0 -in.sqft..ft2 2678.0 -in.state AK -in.state AL -in.state AR -in.state AZ -in.state CA -in.state CO -in.state CT -in.state DC -in.state DE -in.state FL -in.state GA -in.state HI -in.state IA -in.state ID -in.state IL -in.state IN -in.state KS -in.state KY -in.state LA -in.state MA -in.state MD -in.state ME -in.state MI -in.state MN -in.state MO -in.state MS -in.state MT -in.state NC -in.state ND -in.state NE -in.state NH -in.state NJ -in.state NM -in.state NV -in.state NY -in.state OH -in.state OK -in.state OR -in.state PA -in.state RI -in.state SC -in.state SD -in.state TN -in.state TX -in.state UT -in.state VA -in.state VT -in.state WA -in.state WI -in.state WV -in.state WY -in.state_metro_median_income 0-30% -in.state_metro_median_income 100-120% -in.state_metro_median_income 120-150% -in.state_metro_median_income 150%+ -in.state_metro_median_income 30-60% -in.state_metro_median_income 60-80% -in.state_metro_median_income 80-100% -in.state_metro_median_income Not Available -in.tenure Not Available -in.tenure Owner -in.tenure Renter -in.units_represented 1 -in.upgrade_name Air Sealing -in.upgrade_name Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation -in.upgrade_name Air Sealing, Attic Floor Insulation, and Duct sealing -in.upgrade_name Attic Floor Insulation for Unfinished Attics -in.upgrade_name Baseline -in.upgrade_name Drill and Fill Wall Insulation with Air Sealing -in.upgrade_name Dual Fuel Heat Pump System -in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes -in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing -in.upgrade_name Duct Sealing and Insulation -in.upgrade_name ENERGY STAR Windows -in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging -in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility -in.upgrade_name Electric Vehicle Adoption with Level 1 Charging -in.upgrade_name Electric Vehicle Adoption with Level 2 Charging -in.upgrade_name Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility -in.upgrade_name HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset -in.upgrade_name HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset -in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration -in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration -in.upgrade_name HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration -in.upgrade_name Heat Pump Water Heater -in.upgrade_name High Efficiency Natural Gas Tankless Water Heater -in.upgrade_name Minimum Efficiency Furnaces and Air Conditioners Circa 2025 -in.upgrade_name Natural Gas Furnace 95% AFUE for All Dwellings with Ducts -in.upgrade_name Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE -in.upgrade_name Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes -in.upgrade_name Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 -in.upgrade_name Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes -in.usage_level High -in.usage_level Low -in.usage_level Medium -in.utility_bill_electricity_fixed_charges 13.8 -in.utility_bill_electricity_marginal_rates 0.10788677 -in.utility_bill_electricity_marginal_rates 0.112014549 -in.utility_bill_electricity_marginal_rates 0.120336179 -in.utility_bill_electricity_marginal_rates 0.123565513 -in.utility_bill_electricity_marginal_rates 0.132607564 -in.utility_bill_electricity_marginal_rates 0.139605448 -in.utility_bill_electricity_marginal_rates 0.150884217 -in.utility_bill_electricity_marginal_rates 0.266971414 -in.utility_bill_electricity_marginal_rates 0.271402266 -in.utility_bill_fuel_oil_fixed_charges 0 -in.utility_bill_fuel_oil_marginal_rates 3.309538462 -in.utility_bill_fuel_oil_marginal_rates 3.526538462 -in.utility_bill_fuel_oil_marginal_rates 3.741846154 -in.utility_bill_fuel_oil_marginal_rates 3.809384615 -in.utility_bill_natural_gas_fixed_charges 4.95 -in.utility_bill_natural_gas_fixed_charges 10.0 -in.utility_bill_natural_gas_fixed_charges 10.8 -in.utility_bill_natural_gas_fixed_charges 13.16 -in.utility_bill_natural_gas_fixed_charges 13.24 -in.utility_bill_natural_gas_fixed_charges 13.5 -in.utility_bill_natural_gas_fixed_charges 14.0 -in.utility_bill_natural_gas_marginal_rates 1.13368161 -in.utility_bill_natural_gas_marginal_rates 1.191737547 -in.utility_bill_natural_gas_marginal_rates 1.274823771 -in.utility_bill_natural_gas_marginal_rates 1.40010647 -in.utility_bill_natural_gas_marginal_rates 1.413705399 -in.utility_bill_natural_gas_marginal_rates 1.65263025 -in.utility_bill_natural_gas_marginal_rates 1.837640087 -in.utility_bill_natural_gas_marginal_rates 1.863660544 -in.utility_bill_natural_gas_marginal_rates 1.964713414 -in.utility_bill_propane_fixed_charges 0 -in.utility_bill_propane_marginal_rates 2.164692308 -in.utility_bill_propane_marginal_rates 2.316615385 -in.utility_bill_propane_marginal_rates 2.632769231 -in.utility_bill_propane_marginal_rates 2.959615385 -in.utility_bill_propane_marginal_rates 3.038615385 -in.utility_bill_propane_marginal_rates 3.178923077 -in.utility_bill_propane_marginal_rates 3.623384615 -in.utility_bill_propane_marginal_rates 4.751615385 -in.utility_bill_scenario_names Utility Rates - Fixed + Variable -in.utility_bill_simple_filepaths data/utility_bills/sdr_rates/State.tsv -in.vacancy_status Occupied -in.vacancy_status Vacant -in.vintage 1940s -in.vintage 1950s -in.vintage 1960s -in.vintage 1970s -in.vintage 1980s -in.vintage 1990s -in.vintage 2000s -in.vintage 2010s -in.vintage <1940 -in.vintage_acs 1940-59 -in.vintage_acs 1960-79 -in.vintage_acs 1980-99 -in.vintage_acs 2000-09 -in.vintage_acs 2010s -in.vintage_acs <1940 -in.water_heater_efficiency Electric Heat Pump, 50 gal, 3.45 UEF -in.water_heater_efficiency Electric Premium -in.water_heater_efficiency Electric Standard -in.water_heater_efficiency Electric Tankless -in.water_heater_efficiency FIXME Fuel Oil Indirect -in.water_heater_efficiency Fuel Oil Premium -in.water_heater_efficiency Fuel Oil Standard -in.water_heater_efficiency Natural Gas Premium -in.water_heater_efficiency Natural Gas Standard -in.water_heater_efficiency Natural Gas Tankless -in.water_heater_efficiency Other Fuel -in.water_heater_efficiency Propane Premium -in.water_heater_efficiency Propane Standard -in.water_heater_efficiency Propane Tankless -in.water_heater_efficiency Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup -in.water_heater_efficiency Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup -in.water_heater_efficiency Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup -in.water_heater_efficiency Wood -in.water_heater_fuel Electricity -in.water_heater_fuel Fuel Oil -in.water_heater_fuel Natural Gas -in.water_heater_fuel Other Fuel -in.water_heater_fuel Propane -in.water_heater_fuel Solar Thermal -in.water_heater_fuel Wood -in.water_heater_in_unit No -in.water_heater_in_unit Yes -in.water_heater_location Attic -in.water_heater_location Conditioned Mechanical Room -in.water_heater_location Crawlspace -in.water_heater_location Garage -in.water_heater_location Heated Basement -in.water_heater_location Living Space -in.water_heater_location Outside -in.water_heater_location Unheated Basement -in.weather_file_city Atlanta Hartsfield Intl Ap -in.weather_file_city Beverly Muni AP -in.weather_file_city Fort Lauderdale Exec AP -in.weather_file_city Fort Smith Regional Ap -in.weather_file_city Fort Worth Alliance -in.weather_file_city Jack Northrop Fld H -in.weather_file_city Jackson International Ap -in.weather_file_city Las Vegas Mccarran Intl Ap -in.weather_file_city San Diego Miramar Nas -in.weather_file_city Springfield Regional Arpt -in.weather_file_city Ukiah Municipal Ap -in.weather_file_latitude 26.2 -in.weather_file_latitude 32.32 -in.weather_file_latitude 32.87 -in.weather_file_latitude 32.98 -in.weather_file_latitude 33.63 -in.weather_file_latitude 33.92 -in.weather_file_latitude 35.33 -in.weather_file_latitude 36.08 -in.weather_file_latitude 37.23 -in.weather_file_latitude 39.13 -in.weather_file_latitude 42.583 -in.weather_file_longitude -123.2 -in.weather_file_longitude -118.33 -in.weather_file_longitude -117.13 -in.weather_file_longitude -115.15 -in.weather_file_longitude -97.32 -in.weather_file_longitude -94.37 -in.weather_file_longitude -93.38 -in.weather_file_longitude -90.08 -in.weather_file_longitude -84.43 -in.weather_file_longitude -80.167 -in.weather_file_longitude -70.917 -in.window_areas F12 B12 L12 R12 -in.window_areas F15 B15 L15 R15 -in.window_areas F18 B18 L18 R18 -in.window_areas F30 B30 L30 R30 -in.window_areas F6 B6 L6 R6 -in.window_areas F9 B9 L9 R9 -in.windows Double, Clear, Metal, Air -in.windows Double, Clear, Metal, Air, Exterior Clear Storm -in.windows Double, Clear, Non-metal, Air -in.windows Double, Clear, Non-metal, Air, Exterior Clear Storm -in.windows Double, Low-E, Non-metal, Air, M-Gain -in.windows Single, Clear, Metal -in.windows Single, Clear, Metal, Exterior Clear Storm -in.windows Single, Clear, Non-metal -in.windows Single, Clear, Non-metal, Exterior Clear Storm -in.windows Triple, Low-E, Non-metal, Air, L-Gain -upgrade 0 -upgrade 1 -upgrade 2 -upgrade 3 -upgrade 4 -upgrade 5 -upgrade 6 -upgrade 7 -upgrade 8 -upgrade 9 -upgrade 10 -upgrade 11 -upgrade 12 -upgrade 13 -upgrade 14 -upgrade 15 -upgrade 16 -upgrade 17 -upgrade 18 -upgrade 19 -upgrade 20 -upgrade 21 -upgrade 22 -upgrade 23 -upgrade 24 -upgrade 25 -upgrade 26 -upgrade 27 -upgrade 28 -upgrade.demand_flexibility_electric_vehicle Enabled -upgrade.demand_flexibility_hvac On-peak Load Shedding, 2F Offset -upgrade.demand_flexibility_hvac On-peak Load Shedding, 4F Offset -upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration -upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration -upgrade.demand_flexibility_hvac Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration -upgrade.demand_flexibility_random_shift 30 minutes -upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-6 -upgrade.duct_leakage_and_insulation 5% Leakage to Outside, R-8 -upgrade.duct_leakage_and_insulation None -upgrade.electric_vehicle_charger Level 1 charger -upgrade.electric_vehicle_charger Level 2 charger -upgrade.electric_vehicle_efficiency_increase 15% -upgrade.electric_vehicle_ownership Yes -upgrade.heating_fuel Electricity -upgrade.heating_fuel Natural Gas -upgrade.heating_fuel None -upgrade.hvac_cooling_efficiency AC, SEER 15 -upgrade.hvac_cooling_efficiency AC, SEER2 13.4 -upgrade.hvac_cooling_efficiency AC, SEER2 14.3 -upgrade.hvac_cooling_efficiency Ducted Heat Pump -upgrade.hvac_cooling_efficiency None -upgrade.hvac_cooling_efficiency Room AC, EER 12.0 -upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned -upgrade.hvac_cooling_partial_space_conditioning None -upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted -upgrade.hvac_heating_efficiency ASHP, SEER2 14.3, 7.5 HSPF2 -upgrade.hvac_heating_efficiency ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate -upgrade.hvac_heating_efficiency Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover -upgrade.hvac_heating_efficiency Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover -upgrade.hvac_heating_efficiency Electric Baseboard, 100% Efficiency -upgrade.hvac_heating_efficiency Electric Boiler, 100% AFUE -upgrade.hvac_heating_efficiency Electric Furnace, 100% AFUE -upgrade.hvac_heating_efficiency Electric Wall Furnace, 100% AFUE -upgrade.hvac_heating_efficiency Fuel Boiler, 80% AFUE -upgrade.hvac_heating_efficiency Fuel Boiler, 83% AFUE -upgrade.hvac_heating_efficiency Fuel Boiler, 90% AFUE -upgrade.hvac_heating_efficiency Fuel Furnace, 80% AFUE -upgrade.hvac_heating_efficiency Fuel Furnace, 83% AFUE -upgrade.hvac_heating_efficiency Fuel Furnace, 88% AFUE -upgrade.hvac_heating_efficiency Fuel Furnace, 92.5% AFUE -upgrade.hvac_heating_efficiency Fuel Furnace, 95% AFUE -upgrade.hvac_heating_efficiency Fuel Wall/Floor Furnace, 60% AFUE -upgrade.hvac_heating_efficiency Fuel Wall/Floor Furnace, 68% AFUE -upgrade.hvac_heating_efficiency GSHP, EER 18.6, COP 3.8 -upgrade.hvac_heating_efficiency GSHP, EER 20.5, COP 4.0 -upgrade.hvac_heating_efficiency GSHP, EER 30.9, COP 4.4 -upgrade.hvac_heating_efficiency None -upgrade.hvac_heating_type_and_fuel Electricity ASHP -upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace -upgrade.hvac_heating_type_and_fuel None -upgrade.infiltration 5 ACH50 -upgrade.infiltration_reduction 13% -upgrade.infiltration_reduction 30% -upgrade.insulation_ceiling None -upgrade.insulation_ceiling R-49 -upgrade.insulation_ceiling R-60 -upgrade.insulation_wall None -upgrade.insulation_wall Wood Stud, R-13 -upgrade.water_heater_efficiency Electric Heat Pump, 50 gal, 3.78 UEF -upgrade.water_heater_efficiency Electric Heat Pump, 66 gal, 3.95 UEF -upgrade.water_heater_efficiency Electric Heat Pump, 80 gal, 3.98 UEF -upgrade.water_heater_efficiency High Efficiency Natural Gas Tankless, Condensing -upgrade.water_heater_efficiency None -upgrade.water_heater_fuel Electricity -upgrade.water_heater_fuel Natural Gas -upgrade.water_heater_fuel None -upgrade.windows EnergyStar, North-Central -upgrade.windows EnergyStar, Northern -upgrade.windows EnergyStar, South-Central -upgrade.windows EnergyStar, Southern -weight 10742078.461538462 +metadata_column enumeration enumeration_description +applicability TRUE The upgrade is not applicable to the building +completed_status Success The upgrade is applicable to the building +in.ahs_region "CBSA Atlanta-Sandy Springs-Roswell, GA" "American Housing Survey region Atlanta-Sandy Springs-Roswell, GA" +in.ahs_region "CBSA Boston-Cambridge-Newton, MA-NH" "American Housing Survey region Boston-Cambridge-Newton, MA-NH" +in.ahs_region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" "American Housing Survey region Chicago-Naperville-Elgin, IL-IN-WI" +in.ahs_region "CBSA Dallas-Fort Worth-Arlington, TX" "American Housing Survey region Dallas-Fort Worth-Arlington, TX" +in.ahs_region "CBSA Detroit-Warren-Dearborn, MI" "American Housing Survey region Detroit-Warren-Dearborn, MI" +in.ahs_region "CBSA Houston-The Woodlands-Sugar Land, TX" "American Housing Survey region Houston-The Woodlands-Sugar Land, TX" +in.ahs_region "CBSA Los Angeles-Long Beach-Anaheim, CA" "American Housing Survey region Los Angeles-Long Beach-Anaheim, CA" +in.ahs_region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" "American Housing Survey region Miami-Fort Lauderdale-West Palm Beach, FL" +in.ahs_region "CBSA New York-Newark-Jersey City, NY-NJ-PA" "American Housing Survey region New York-Newark-Jersey City, NY-NJ-PA" +in.ahs_region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" "American Housing Survey region Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +in.ahs_region "CBSA Phoenix-Mesa-Scottsdale, AZ" "American Housing Survey region Phoenix-Mesa-Scottsdale, AZ" +in.ahs_region "CBSA Riverside-San Bernardino-Ontario, CA" "American Housing Survey region Riverside-San Bernardino-Ontario, CA" +in.ahs_region "CBSA San Francisco-Oakland-Hayward, CA" "American Housing Survey region San Francisco-Oakland-Hayward, CA" +in.ahs_region "CBSA Seattle-Tacoma-Bellevue, WA" "American Housing Survey region Seattle-Tacoma-Bellevue, WA" +in.ahs_region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" "American Housing Survey region Washington-Arlington-Alexandria, DC-VA-MD-WV" +in.ahs_region Non-CBSA East North Central American Housing Survey region BSA East North Central +in.ahs_region Non-CBSA East South Central American Housing Survey region BSA East South Central +in.ahs_region Non-CBSA Middle Atlantic American Housing Survey region BSA Middle Atlantic +in.ahs_region Non-CBSA Mountain American Housing Survey region BSA Mountain +in.ahs_region Non-CBSA New England American Housing Survey region BSA New England +in.ahs_region Non-CBSA Pacific American Housing Survey region BSA Pacific +in.ahs_region Non-CBSA South Atlantic American Housing Survey region BSA South Atlantic +in.ahs_region Non-CBSA West North Central American Housing Survey region BSA West North Central +in.ahs_region Non-CBSA West South Central American Housing Survey region BSA West South Central +in.aiannh_area No The sample is not located in American Indian/Alaska Native/Native Hawaiian Area +in.aiannh_area Yes The sample is located in American Indian/Alaska Native/Native Hawaiian Area +in.air_leakage_to_outside_ach50 0.03094 Total infiltration to the dwelling unit is 0.03094 ACH50 +in.air_leakage_to_outside_ach50 0.06188 Total infiltration to the dwelling unit is 0.06188 ACH50 +in.air_leakage_to_outside_ach50 0.09282 Total infiltration to the dwelling unit is 0.09282 ACH50 +in.air_leakage_to_outside_ach50 0.09512 Total infiltration to the dwelling unit is 0.09512 ACH50 +in.air_leakage_to_outside_ach50 0.11826 Total infiltration to the dwelling unit is 0.11826 ACH50 +in.air_leakage_to_outside_ach50 0.12252 Total infiltration to the dwelling unit is 0.12252 ACH50 +in.air_leakage_to_outside_ach50 0.12376 Total infiltration to the dwelling unit is 0.12376 ACH50 +in.air_leakage_to_outside_ach50 0.1299 Total infiltration to the dwelling unit is 0.1299 ACH50 +in.air_leakage_to_outside_ach50 0.13125 Total infiltration to the dwelling unit is 0.131249999999999 ACH50 +in.air_leakage_to_outside_ach50 0.1547 Total infiltration to the dwelling unit is 0.1547 ACH50 +in.air_leakage_to_outside_ach50 0.15501 Total infiltration to the dwelling unit is 0.15501 ACH50 +in.air_leakage_to_outside_ach50 0.16336 Total infiltration to the dwelling unit is 0.16336 ACH50 +in.air_leakage_to_outside_ach50 0.17324 Total infiltration to the dwelling unit is 0.17324 ACH50 +in.air_leakage_to_outside_ach50 0.175 Total infiltration to the dwelling unit is 0.175 ACH50 +in.air_leakage_to_outside_ach50 0.17739 Total infiltration to the dwelling unit is 0.17739 ACH50 +in.air_leakage_to_outside_ach50 0.18564 Total infiltration to the dwelling unit is 0.18564 ACH50 +in.air_leakage_to_outside_ach50 0.19024 Total infiltration to the dwelling unit is 0.19024 ACH50 +in.air_leakage_to_outside_ach50 0.19485 Total infiltration to the dwelling unit is 0.194849999999999 ACH50 +in.air_leakage_to_outside_ach50 0.2042 Total infiltration to the dwelling unit is 0.2042 ACH50 +in.air_leakage_to_outside_ach50 0.20668 Total infiltration to the dwelling unit is 0.20668 ACH50 +in.air_leakage_to_outside_ach50 0.21468 Total infiltration to the dwelling unit is 0.214679999999999 ACH50 +in.air_leakage_to_outside_ach50 0.21658 Total infiltration to the dwelling unit is 0.21658 ACH50 +in.air_leakage_to_outside_ach50 0.21875 Total infiltration to the dwelling unit is 0.21875 ACH50 +in.air_leakage_to_outside_ach50 0.23512 Total infiltration to the dwelling unit is 0.23512 ACH50 +in.air_leakage_to_outside_ach50 0.23652 Total infiltration to the dwelling unit is 0.23652 ACH50 +in.air_leakage_to_outside_ach50 0.2378 Total infiltration to the dwelling unit is 0.237799999999999 ACH50 +in.air_leakage_to_outside_ach50 0.24504 Total infiltration to the dwelling unit is 0.24504 ACH50 +in.air_leakage_to_outside_ach50 0.24752 Total infiltration to the dwelling unit is 0.24752 ACH50 +in.air_leakage_to_outside_ach50 0.25821 Total infiltration to the dwelling unit is 0.25821 ACH50 +in.air_leakage_to_outside_ach50 0.25835 Total infiltration to the dwelling unit is 0.25835 ACH50 +in.air_leakage_to_outside_ach50 0.2598 Total infiltration to the dwelling unit is 0.2598 ACH50 +in.air_leakage_to_outside_ach50 0.25986 Total infiltration to the dwelling unit is 0.25986 ACH50 +in.air_leakage_to_outside_ach50 0.2625 Total infiltration to the dwelling unit is 0.262499999999999 ACH50 +in.air_leakage_to_outside_ach50 0.28536 Total infiltration to the dwelling unit is 0.28536 ACH50 +in.air_leakage_to_outside_ach50 0.28588 Total infiltration to the dwelling unit is 0.28588 ACH50 +in.air_leakage_to_outside_ach50 0.28624 Total infiltration to the dwelling unit is 0.28624 ACH50 +in.air_leakage_to_outside_ach50 0.29565 Total infiltration to the dwelling unit is 0.29565 ACH50 +in.air_leakage_to_outside_ach50 0.30625 Total infiltration to the dwelling unit is 0.306249999999999 ACH50 +in.air_leakage_to_outside_ach50 0.3094 Total infiltration to the dwelling unit is 0.3094 ACH50 +in.air_leakage_to_outside_ach50 0.31002 Total infiltration to the dwelling unit is 0.31002 ACH50 +in.air_leakage_to_outside_ach50 0.32475 Total infiltration to the dwelling unit is 0.32475 ACH50 +in.air_leakage_to_outside_ach50 0.32672 Total infiltration to the dwelling unit is 0.32672 ACH50 +in.air_leakage_to_outside_ach50 0.3311 Total infiltration to the dwelling unit is 0.3311 ACH50 +in.air_leakage_to_outside_ach50 0.33292 Total infiltration to the dwelling unit is 0.33292 ACH50 +in.air_leakage_to_outside_ach50 0.34305 Total infiltration to the dwelling unit is 0.343049999999999 ACH50 +in.air_leakage_to_outside_ach50 0.34428 Total infiltration to the dwelling unit is 0.34428 ACH50 +in.air_leakage_to_outside_ach50 0.34648 Total infiltration to the dwelling unit is 0.34648 ACH50 +in.air_leakage_to_outside_ach50 0.35 Total infiltration to the dwelling unit is 0.35 ACH50 +in.air_leakage_to_outside_ach50 0.35268 Total infiltration to the dwelling unit is 0.35268 ACH50 +in.air_leakage_to_outside_ach50 0.35478 Total infiltration to the dwelling unit is 0.35478 ACH50 +in.air_leakage_to_outside_ach50 0.3578 Total infiltration to the dwelling unit is 0.3578 ACH50 +in.air_leakage_to_outside_ach50 0.36169 Total infiltration to the dwelling unit is 0.36169 ACH50 +in.air_leakage_to_outside_ach50 0.36358 Total infiltration to the dwelling unit is 0.36358 ACH50 +in.air_leakage_to_outside_ach50 0.36747 Total infiltration to the dwelling unit is 0.36747 ACH50 +in.air_leakage_to_outside_ach50 0.38048 Total infiltration to the dwelling unit is 0.38048 ACH50 +in.air_leakage_to_outside_ach50 0.3897 Total infiltration to the dwelling unit is 0.389699999999999 ACH50 +in.air_leakage_to_outside_ach50 0.4084 Total infiltration to the dwelling unit is 0.4084 ACH50 +in.air_leakage_to_outside_ach50 0.41336 Total infiltration to the dwelling unit is 0.41336 ACH50 +in.air_leakage_to_outside_ach50 0.41391 Total infiltration to the dwelling unit is 0.41391 ACH50 +in.air_leakage_to_outside_ach50 0.42936 Total infiltration to the dwelling unit is 0.429359999999999 ACH50 +in.air_leakage_to_outside_ach50 0.43035 Total infiltration to the dwelling unit is 0.430349999999999 ACH50 +in.air_leakage_to_outside_ach50 0.4331 Total infiltration to the dwelling unit is 0.4331 ACH50 +in.air_leakage_to_outside_ach50 0.43401 Total infiltration to the dwelling unit is 0.43401 ACH50 +in.air_leakage_to_outside_ach50 0.4375 Total infiltration to the dwelling unit is 0.4375 ACH50 +in.air_leakage_to_outside_ach50 0.44432 Total infiltration to the dwelling unit is 0.44432 ACH50 +in.air_leakage_to_outside_ach50 0.45465 Total infiltration to the dwelling unit is 0.454649999999999 ACH50 +in.air_leakage_to_outside_ach50 0.4574 Total infiltration to the dwelling unit is 0.4574 ACH50 +in.air_leakage_to_outside_ach50 0.4641 Total infiltration to the dwelling unit is 0.464099999999999 ACH50 +in.air_leakage_to_outside_ach50 0.47024 Total infiltration to the dwelling unit is 0.47024 ACH50 +in.air_leakage_to_outside_ach50 0.47304 Total infiltration to the dwelling unit is 0.47304 ACH50 +in.air_leakage_to_outside_ach50 0.4756 Total infiltration to the dwelling unit is 0.475599999999999 ACH50 +in.air_leakage_to_outside_ach50 0.48996 Total infiltration to the dwelling unit is 0.48996 ACH50 +in.air_leakage_to_outside_ach50 0.49008 Total infiltration to the dwelling unit is 0.49008 ACH50 +in.air_leakage_to_outside_ach50 0.49665 Total infiltration to the dwelling unit is 0.49665 ACH50 +in.air_leakage_to_outside_ach50 0.5 Total infiltration to the dwelling unit is 0.5 ACH50 +in.air_leakage_to_outside_ach50 0.50092 Total infiltration to the dwelling unit is 0.50092 ACH50 +in.air_leakage_to_outside_ach50 0.51642 Total infiltration to the dwelling unit is 0.51642 ACH50 +in.air_leakage_to_outside_ach50 0.5167 Total infiltration to the dwelling unit is 0.5167 ACH50 +in.air_leakage_to_outside_ach50 0.51675 Total infiltration to the dwelling unit is 0.51675 ACH50 +in.air_leakage_to_outside_ach50 0.51956 Total infiltration to the dwelling unit is 0.51956 ACH50 +in.air_leakage_to_outside_ach50 0.5196 Total infiltration to the dwelling unit is 0.5196 ACH50 +in.air_leakage_to_outside_ach50 0.51972 Total infiltration to the dwelling unit is 0.51972 ACH50 +in.air_leakage_to_outside_ach50 0.53268 Total infiltration to the dwelling unit is 0.53268 ACH50 +in.air_leakage_to_outside_ach50 0.54084 Total infiltration to the dwelling unit is 0.54084 ACH50 +in.air_leakage_to_outside_ach50 0.54219 Total infiltration to the dwelling unit is 0.54219 ACH50 +in.air_leakage_to_outside_ach50 0.54537 Total infiltration to the dwelling unit is 0.54537 ACH50 +in.air_leakage_to_outside_ach50 0.5458 Total infiltration to the dwelling unit is 0.5458 ACH50 +in.air_leakage_to_outside_ach50 0.55913 Total infiltration to the dwelling unit is 0.55913 ACH50 +in.air_leakage_to_outside_ach50 0.56495 Total infiltration to the dwelling unit is 0.56495 ACH50 +in.air_leakage_to_outside_ach50 0.57175 Total infiltration to the dwelling unit is 0.57175 ACH50 +in.air_leakage_to_outside_ach50 0.57248 Total infiltration to the dwelling unit is 0.57248 ACH50 +in.air_leakage_to_outside_ach50 0.57868 Total infiltration to the dwelling unit is 0.57868 ACH50 +in.air_leakage_to_outside_ach50 0.5878 Total infiltration to the dwelling unit is 0.5878 ACH50 +in.air_leakage_to_outside_ach50 0.5913 Total infiltration to the dwelling unit is 0.5913 ACH50 +in.air_leakage_to_outside_ach50 0.60117 Total infiltration to the dwelling unit is 0.60117 ACH50 +in.air_leakage_to_outside_ach50 0.60249 Total infiltration to the dwelling unit is 0.60249 ACH50 +in.air_leakage_to_outside_ach50 0.60634 Total infiltration to the dwelling unit is 0.60634 ACH50 +in.air_leakage_to_outside_ach50 0.61245 Total infiltration to the dwelling unit is 0.61245 ACH50 +in.air_leakage_to_outside_ach50 0.6126 Total infiltration to the dwelling unit is 0.6126 ACH50 +in.air_leakage_to_outside_ach50 0.61435 Total infiltration to the dwelling unit is 0.61435 ACH50 +in.air_leakage_to_outside_ach50 0.6188 Total infiltration to the dwelling unit is 0.6188 ACH50 +in.air_leakage_to_outside_ach50 0.6201 Total infiltration to the dwelling unit is 0.6201 ACH50 +in.air_leakage_to_outside_ach50 0.64945 Total infiltration to the dwelling unit is 0.64945 ACH50 +in.air_leakage_to_outside_ach50 0.6495 Total infiltration to the dwelling unit is 0.6495 ACH50 +in.air_leakage_to_outside_ach50 0.65625 Total infiltration to the dwelling unit is 0.65625 ACH50 +in.air_leakage_to_outside_ach50 0.6622 Total infiltration to the dwelling unit is 0.6622 ACH50 +in.air_leakage_to_outside_ach50 0.66555 Total infiltration to the dwelling unit is 0.66555 ACH50 +in.air_leakage_to_outside_ach50 0.66584 Total infiltration to the dwelling unit is 0.66584 ACH50 +in.air_leakage_to_outside_ach50 0.66585 Total infiltration to the dwelling unit is 0.66585 ACH50 +in.air_leakage_to_outside_ach50 0.67404 Total infiltration to the dwelling unit is 0.67404 ACH50 +in.air_leakage_to_outside_ach50 0.67738 Total infiltration to the dwelling unit is 0.67738 ACH50 +in.air_leakage_to_outside_ach50 0.6861 Total infiltration to the dwelling unit is 0.686099999999999 ACH50 +in.air_leakage_to_outside_ach50 0.68856 Total infiltration to the dwelling unit is 0.68856 ACH50 +in.air_leakage_to_outside_ach50 0.69296 Total infiltration to the dwelling unit is 0.69296 ACH50 +in.air_leakage_to_outside_ach50 0.70536 Total infiltration to the dwelling unit is 0.70536 ACH50 +in.air_leakage_to_outside_ach50 0.70956 Total infiltration to the dwelling unit is 0.70956 ACH50 +in.air_leakage_to_outside_ach50 0.7134 Total infiltration to the dwelling unit is 0.713399999999999 ACH50 +in.air_leakage_to_outside_ach50 0.7156 Total infiltration to the dwelling unit is 0.7156 ACH50 +in.air_leakage_to_outside_ach50 0.72292 Total infiltration to the dwelling unit is 0.72292 ACH50 +in.air_leakage_to_outside_ach50 0.72335 Total infiltration to the dwelling unit is 0.723349999999999 ACH50 +in.air_leakage_to_outside_ach50 0.72345 Total infiltration to the dwelling unit is 0.723449999999999 ACH50 +in.air_leakage_to_outside_ach50 0.72716 Total infiltration to the dwelling unit is 0.72716 ACH50 +in.air_leakage_to_outside_ach50 0.73494 Total infiltration to the dwelling unit is 0.73494 ACH50 +in.air_leakage_to_outside_ach50 0.76534 Total infiltration to the dwelling unit is 0.76534 ACH50 +in.air_leakage_to_outside_ach50 0.7663 Total infiltration to the dwelling unit is 0.7663 ACH50 +in.air_leakage_to_outside_ach50 0.77232 Total infiltration to the dwelling unit is 0.77232 ACH50 +in.air_leakage_to_outside_ach50 0.77505 Total infiltration to the dwelling unit is 0.77505 ACH50 +in.air_leakage_to_outside_ach50 0.77934 Total infiltration to the dwelling unit is 0.77934 ACH50 +in.air_leakage_to_outside_ach50 0.78536 Total infiltration to the dwelling unit is 0.78536 ACH50 +in.air_leakage_to_outside_ach50 0.78716 Total infiltration to the dwelling unit is 0.78716 ACH50 +in.air_leakage_to_outside_ach50 0.79134 Total infiltration to the dwelling unit is 0.79134 ACH50 +in.air_leakage_to_outside_ach50 0.79902 Total infiltration to the dwelling unit is 0.79902 ACH50 +in.air_leakage_to_outside_ach50 0.80045 Total infiltration to the dwelling unit is 0.80045 ACH50 +in.air_leakage_to_outside_ach50 0.80156 Total infiltration to the dwelling unit is 0.80156 ACH50 +in.air_leakage_to_outside_ach50 0.8168 Total infiltration to the dwelling unit is 0.8168 ACH50 +in.air_leakage_to_outside_ach50 0.8268 Total infiltration to the dwelling unit is 0.8268 ACH50 +in.air_leakage_to_outside_ach50 0.82775 Total infiltration to the dwelling unit is 0.82775 ACH50 +in.air_leakage_to_outside_ach50 0.82782 Total infiltration to the dwelling unit is 0.82782 ACH50 +in.air_leakage_to_outside_ach50 0.82878 Total infiltration to the dwelling unit is 0.82878 ACH50 +in.air_leakage_to_outside_ach50 0.8312 Total infiltration to the dwelling unit is 0.831199999999999 ACH50 +in.air_leakage_to_outside_ach50 0.84252 Total infiltration to the dwelling unit is 0.84252 ACH50 +in.air_leakage_to_outside_ach50 0.85743 Total infiltration to the dwelling unit is 0.85743 ACH50 +in.air_leakage_to_outside_ach50 0.85872 Total infiltration to the dwelling unit is 0.858719999999999 ACH50 +in.air_leakage_to_outside_ach50 0.8607 Total infiltration to the dwelling unit is 0.860699999999999 ACH50 +in.air_leakage_to_outside_ach50 0.8662 Total infiltration to the dwelling unit is 0.8662 ACH50 +in.air_leakage_to_outside_ach50 0.86802 Total infiltration to the dwelling unit is 0.86802 ACH50 +in.air_leakage_to_outside_ach50 0.875 Total infiltration to the dwelling unit is 0.875 ACH50 +in.air_leakage_to_outside_ach50 0.8751 Total infiltration to the dwelling unit is 0.8751 ACH50 +in.air_leakage_to_outside_ach50 0.88267 Total infiltration to the dwelling unit is 0.88267 ACH50 +in.air_leakage_to_outside_ach50 0.88695 Total infiltration to the dwelling unit is 0.88695 ACH50 +in.air_leakage_to_outside_ach50 0.88864 Total infiltration to the dwelling unit is 0.88864 ACH50 +in.air_leakage_to_outside_ach50 0.89872 Total infiltration to the dwelling unit is 0.89872 ACH50 +in.air_leakage_to_outside_ach50 0.90365 Total infiltration to the dwelling unit is 0.90365 ACH50 +in.air_leakage_to_outside_ach50 0.90895 Total infiltration to the dwelling unit is 0.90895 ACH50 +in.air_leakage_to_outside_ach50 0.90923 Total infiltration to the dwelling unit is 0.90923 ACH50 +in.air_leakage_to_outside_ach50 0.9148 Total infiltration to the dwelling unit is 0.9148 ACH50 +in.air_leakage_to_outside_ach50 0.93219 Total infiltration to the dwelling unit is 0.93219 ACH50 +in.air_leakage_to_outside_ach50 0.94048 Total infiltration to the dwelling unit is 0.94048 ACH50 +in.air_leakage_to_outside_ach50 0.94608 Total infiltration to the dwelling unit is 0.94608 ACH50 +in.air_leakage_to_outside_ach50 0.9512 Total infiltration to the dwelling unit is 0.951199999999999 ACH50 +in.air_leakage_to_outside_ach50 0.96396 Total infiltration to the dwelling unit is 0.96396 ACH50 +in.air_leakage_to_outside_ach50 0.97425 Total infiltration to the dwelling unit is 0.97425 ACH50 +in.air_leakage_to_outside_ach50 0.97992 Total infiltration to the dwelling unit is 0.97992 ACH50 +in.air_leakage_to_outside_ach50 0.9817 Total infiltration to the dwelling unit is 0.981699999999999 ACH50 +in.air_leakage_to_outside_ach50 0.98696 Total infiltration to the dwelling unit is 0.98696 ACH50 +in.air_leakage_to_outside_ach50 0.9933 Total infiltration to the dwelling unit is 0.9933 ACH50 +in.air_leakage_to_outside_ach50 1 Total infiltration to the dwelling unit is 1 ACH50 +in.air_leakage_to_outside_ach50 1.00184 Total infiltration to the dwelling unit is 1.00184 ACH50 +in.air_leakage_to_outside_ach50 1.00195 Total infiltration to the dwelling unit is 1.00195 ACH50 +in.air_leakage_to_outside_ach50 1.01269 Total infiltration to the dwelling unit is 1.01268999999999 ACH50 +in.air_leakage_to_outside_ach50 1.021 Total infiltration to the dwelling unit is 1.021 ACH50 +in.air_leakage_to_outside_ach50 1.0334 Total infiltration to the dwelling unit is 1.0334 ACH50 +in.air_leakage_to_outside_ach50 1.0335 Total infiltration to the dwelling unit is 1.0335 ACH50 +in.air_leakage_to_outside_ach50 1.03524 Total infiltration to the dwelling unit is 1.03524 ACH50 +in.air_leakage_to_outside_ach50 1.03912 Total infiltration to the dwelling unit is 1.03912 ACH50 +in.air_leakage_to_outside_ach50 1.03944 Total infiltration to the dwelling unit is 1.03944 ACH50 +in.air_leakage_to_outside_ach50 1.06188 Total infiltration to the dwelling unit is 1.06188 ACH50 +in.air_leakage_to_outside_ach50 1.06536 Total infiltration to the dwelling unit is 1.06536 ACH50 +in.air_leakage_to_outside_ach50 1.0734 Total infiltration to the dwelling unit is 1.0734 ACH50 +in.air_leakage_to_outside_ach50 1.0878 Total infiltration to the dwelling unit is 1.0878 ACH50 +in.air_leakage_to_outside_ach50 1.09074 Total infiltration to the dwelling unit is 1.09074 ACH50 +in.air_leakage_to_outside_ach50 1.09077 Total infiltration to the dwelling unit is 1.09077 ACH50 +in.air_leakage_to_outside_ach50 1.0916 Total infiltration to the dwelling unit is 1.0916 ACH50 +in.air_leakage_to_outside_ach50 1.09375 Total infiltration to the dwelling unit is 1.09375 ACH50 +in.air_leakage_to_outside_ach50 1.11348 Total infiltration to the dwelling unit is 1.11348 ACH50 +in.air_leakage_to_outside_ach50 1.11784 Total infiltration to the dwelling unit is 1.11784 ACH50 +in.air_leakage_to_outside_ach50 1.11826 Total infiltration to the dwelling unit is 1.11826 ACH50 +in.air_leakage_to_outside_ach50 1.1234 Total infiltration to the dwelling unit is 1.1234 ACH50 +in.air_leakage_to_outside_ach50 1.12668 Total infiltration to the dwelling unit is 1.12668 ACH50 +in.air_leakage_to_outside_ach50 1.1299 Total infiltration to the dwelling unit is 1.1299 ACH50 +in.air_leakage_to_outside_ach50 1.14312 Total infiltration to the dwelling unit is 1.14312 ACH50 +in.air_leakage_to_outside_ach50 1.14345 Total infiltration to the dwelling unit is 1.14345 ACH50 +in.air_leakage_to_outside_ach50 1.1435 Total infiltration to the dwelling unit is 1.1435 ACH50 +in.air_leakage_to_outside_ach50 1.14496 Total infiltration to the dwelling unit is 1.14496 ACH50 +in.air_leakage_to_outside_ach50 1.14945 Total infiltration to the dwelling unit is 1.14944999999999 ACH50 +in.air_leakage_to_outside_ach50 1.15306 Total infiltration to the dwelling unit is 1.15306 ACH50 +in.air_leakage_to_outside_ach50 1.15736 Total infiltration to the dwelling unit is 1.15736 ACH50 +in.air_leakage_to_outside_ach50 1.15885 Total infiltration to the dwelling unit is 1.15885 ACH50 +in.air_leakage_to_outside_ach50 1.16224 Total infiltration to the dwelling unit is 1.16224 ACH50 +in.air_leakage_to_outside_ach50 1.17324 Total infiltration to the dwelling unit is 1.17324 ACH50 +in.air_leakage_to_outside_ach50 1.1756 Total infiltration to the dwelling unit is 1.1756 ACH50 +in.air_leakage_to_outside_ach50 1.17804 Total infiltration to the dwelling unit is 1.17804 ACH50 +in.air_leakage_to_outside_ach50 1.18074 Total infiltration to the dwelling unit is 1.18074 ACH50 +in.air_leakage_to_outside_ach50 1.1826 Total infiltration to the dwelling unit is 1.1826 ACH50 +in.air_leakage_to_outside_ach50 1.189 Total infiltration to the dwelling unit is 1.189 ACH50 +in.air_leakage_to_outside_ach50 1.20234 Total infiltration to the dwelling unit is 1.20234 ACH50 +in.air_leakage_to_outside_ach50 1.20237 Total infiltration to the dwelling unit is 1.20237 ACH50 +in.air_leakage_to_outside_ach50 1.20495 Total infiltration to the dwelling unit is 1.20495 ACH50 +in.air_leakage_to_outside_ach50 1.20498 Total infiltration to the dwelling unit is 1.20498 ACH50 +in.air_leakage_to_outside_ach50 1.21098 Total infiltration to the dwelling unit is 1.21098 ACH50 +in.air_leakage_to_outside_ach50 1.21268 Total infiltration to the dwelling unit is 1.21268 ACH50 +in.air_leakage_to_outside_ach50 1.2134 Total infiltration to the dwelling unit is 1.2134 ACH50 +in.air_leakage_to_outside_ach50 1.22103 Total infiltration to the dwelling unit is 1.22102999999999 ACH50 +in.air_leakage_to_outside_ach50 1.2231 Total infiltration to the dwelling unit is 1.2231 ACH50 +in.air_leakage_to_outside_ach50 1.2249 Total infiltration to the dwelling unit is 1.2249 ACH50 +in.air_leakage_to_outside_ach50 1.2252 Total infiltration to the dwelling unit is 1.2252 ACH50 +in.air_leakage_to_outside_ach50 1.2287 Total infiltration to the dwelling unit is 1.2287 ACH50 +in.air_leakage_to_outside_ach50 1.2337 Total infiltration to the dwelling unit is 1.2337 ACH50 +in.air_leakage_to_outside_ach50 1.24317 Total infiltration to the dwelling unit is 1.24316999999999 ACH50 +in.air_leakage_to_outside_ach50 1.24498 Total infiltration to the dwelling unit is 1.24498 ACH50 +in.air_leakage_to_outside_ach50 1.2593 Total infiltration to the dwelling unit is 1.2593 ACH50 +in.air_leakage_to_outside_ach50 1.26378 Total infiltration to the dwelling unit is 1.26378 ACH50 +in.air_leakage_to_outside_ach50 1.26511 Total infiltration to the dwelling unit is 1.26511 ACH50 +in.air_leakage_to_outside_ach50 1.27253 Total infiltration to the dwelling unit is 1.27253 ACH50 +in.air_leakage_to_outside_ach50 1.27947 Total infiltration to the dwelling unit is 1.27946999999999 ACH50 +in.air_leakage_to_outside_ach50 1.28934 Total infiltration to the dwelling unit is 1.28934 ACH50 +in.air_leakage_to_outside_ach50 1.29105 Total infiltration to the dwelling unit is 1.29104999999999 ACH50 +in.air_leakage_to_outside_ach50 1.29175 Total infiltration to the dwelling unit is 1.29175 ACH50 +in.air_leakage_to_outside_ach50 1.29642 Total infiltration to the dwelling unit is 1.29642 ACH50 +in.air_leakage_to_outside_ach50 1.2989 Total infiltration to the dwelling unit is 1.2989 ACH50 +in.air_leakage_to_outside_ach50 1.299 Total infiltration to the dwelling unit is 1.299 ACH50 +in.air_leakage_to_outside_ach50 1.2993 Total infiltration to the dwelling unit is 1.2993 ACH50 +in.air_leakage_to_outside_ach50 1.31148 Total infiltration to the dwelling unit is 1.31148 ACH50 +in.air_leakage_to_outside_ach50 1.3125 Total infiltration to the dwelling unit is 1.3125 ACH50 +in.air_leakage_to_outside_ach50 1.3244 Total infiltration to the dwelling unit is 1.3244 ACH50 +in.air_leakage_to_outside_ach50 1.32816 Total infiltration to the dwelling unit is 1.32816 ACH50 +in.air_leakage_to_outside_ach50 1.32992 Total infiltration to the dwelling unit is 1.32992 ACH50 +in.air_leakage_to_outside_ach50 1.3311 Total infiltration to the dwelling unit is 1.3311 ACH50 +in.air_leakage_to_outside_ach50 1.3317 Total infiltration to the dwelling unit is 1.3317 ACH50 +in.air_leakage_to_outside_ach50 1.33296 Total infiltration to the dwelling unit is 1.33296 ACH50 +in.air_leakage_to_outside_ach50 1.3443 Total infiltration to the dwelling unit is 1.3443 ACH50 +in.air_leakage_to_outside_ach50 1.3446 Total infiltration to the dwelling unit is 1.3446 ACH50 +in.air_leakage_to_outside_ach50 1.34808 Total infiltration to the dwelling unit is 1.34808 ACH50 +in.air_leakage_to_outside_ach50 1.35144 Total infiltration to the dwelling unit is 1.35144 ACH50 +in.air_leakage_to_outside_ach50 1.35476 Total infiltration to the dwelling unit is 1.35476 ACH50 +in.air_leakage_to_outside_ach50 1.35813 Total infiltration to the dwelling unit is 1.35813 ACH50 +in.air_leakage_to_outside_ach50 1.35975 Total infiltration to the dwelling unit is 1.35975 ACH50 +in.air_leakage_to_outside_ach50 1.36358 Total infiltration to the dwelling unit is 1.36358 ACH50 +in.air_leakage_to_outside_ach50 1.37214 Total infiltration to the dwelling unit is 1.37214 ACH50 +in.air_leakage_to_outside_ach50 1.37438 Total infiltration to the dwelling unit is 1.37438 ACH50 +in.air_leakage_to_outside_ach50 1.37712 Total infiltration to the dwelling unit is 1.37712 ACH50 +in.air_leakage_to_outside_ach50 1.38032 Total infiltration to the dwelling unit is 1.38032 ACH50 +in.air_leakage_to_outside_ach50 1.38585 Total infiltration to the dwelling unit is 1.38585 ACH50 +in.air_leakage_to_outside_ach50 1.38592 Total infiltration to the dwelling unit is 1.38592 ACH50 +in.air_leakage_to_outside_ach50 1.39503 Total infiltration to the dwelling unit is 1.39503 ACH50 +in.air_leakage_to_outside_ach50 1.40144 Total infiltration to the dwelling unit is 1.40144 ACH50 +in.air_leakage_to_outside_ach50 1.40272 Total infiltration to the dwelling unit is 1.40272 ACH50 +in.air_leakage_to_outside_ach50 1.40273 Total infiltration to the dwelling unit is 1.40273 ACH50 +in.air_leakage_to_outside_ach50 1.41642 Total infiltration to the dwelling unit is 1.41642 ACH50 +in.air_leakage_to_outside_ach50 1.42575 Total infiltration to the dwelling unit is 1.42575 ACH50 +in.air_leakage_to_outside_ach50 1.4268 Total infiltration to the dwelling unit is 1.42679999999999 ACH50 +in.air_leakage_to_outside_ach50 1.4312 Total infiltration to the dwelling unit is 1.4312 ACH50 +in.air_leakage_to_outside_ach50 1.44584 Total infiltration to the dwelling unit is 1.44584 ACH50 +in.air_leakage_to_outside_ach50 1.44594 Total infiltration to the dwelling unit is 1.44594 ACH50 +in.air_leakage_to_outside_ach50 1.4467 Total infiltration to the dwelling unit is 1.44669999999999 ACH50 +in.air_leakage_to_outside_ach50 1.45432 Total infiltration to the dwelling unit is 1.45432 ACH50 +in.air_leakage_to_outside_ach50 1.45436 Total infiltration to the dwelling unit is 1.45436 ACH50 +in.air_leakage_to_outside_ach50 1.46988 Total infiltration to the dwelling unit is 1.46988 ACH50 +in.air_leakage_to_outside_ach50 1.47825 Total infiltration to the dwelling unit is 1.47825 ACH50 +in.air_leakage_to_outside_ach50 1.48044 Total infiltration to the dwelling unit is 1.48044 ACH50 +in.air_leakage_to_outside_ach50 1.48464 Total infiltration to the dwelling unit is 1.48464 ACH50 +in.air_leakage_to_outside_ach50 1.48498 Total infiltration to the dwelling unit is 1.48498 ACH50 +in.air_leakage_to_outside_ach50 1.5 Total infiltration to the dwelling unit is 1.5 ACH50 +in.air_leakage_to_outside_ach50 1.5159 Total infiltration to the dwelling unit is 1.51589999999999 ACH50 +in.air_leakage_to_outside_ach50 1.53068 Total infiltration to the dwelling unit is 1.53068 ACH50 +in.air_leakage_to_outside_ach50 1.5326 Total infiltration to the dwelling unit is 1.5326 ACH50 +in.air_leakage_to_outside_ach50 1.54464 Total infiltration to the dwelling unit is 1.54464 ACH50 +in.air_leakage_to_outside_ach50 1.5458 Total infiltration to the dwelling unit is 1.5458 ACH50 +in.air_leakage_to_outside_ach50 1.5501 Total infiltration to the dwelling unit is 1.5501 ACH50 +in.air_leakage_to_outside_ach50 1.55025 Total infiltration to the dwelling unit is 1.55025 ACH50 +in.air_leakage_to_outside_ach50 1.5519 Total infiltration to the dwelling unit is 1.55189999999999 ACH50 +in.air_leakage_to_outside_ach50 1.57072 Total infiltration to the dwelling unit is 1.57072 ACH50 +in.air_leakage_to_outside_ach50 1.57276 Total infiltration to the dwelling unit is 1.57276 ACH50 +in.air_leakage_to_outside_ach50 1.57432 Total infiltration to the dwelling unit is 1.57432 ACH50 +in.air_leakage_to_outside_ach50 1.58268 Total infiltration to the dwelling unit is 1.58268 ACH50 +in.air_leakage_to_outside_ach50 1.5922 Total infiltration to the dwelling unit is 1.5922 ACH50 +in.air_leakage_to_outside_ach50 1.59282 Total infiltration to the dwelling unit is 1.59282 ACH50 +in.air_leakage_to_outside_ach50 1.59804 Total infiltration to the dwelling unit is 1.59804 ACH50 +in.air_leakage_to_outside_ach50 1.60083 Total infiltration to the dwelling unit is 1.60083 ACH50 +in.air_leakage_to_outside_ach50 1.60312 Total infiltration to the dwelling unit is 1.60312 ACH50 +in.air_leakage_to_outside_ach50 1.60316 Total infiltration to the dwelling unit is 1.60316 ACH50 +in.air_leakage_to_outside_ach50 1.61049 Total infiltration to the dwelling unit is 1.61049 ACH50 +in.air_leakage_to_outside_ach50 1.62252 Total infiltration to the dwelling unit is 1.62252 ACH50 +in.air_leakage_to_outside_ach50 1.62375 Total infiltration to the dwelling unit is 1.62374999999999 ACH50 +in.air_leakage_to_outside_ach50 1.62804 Total infiltration to the dwelling unit is 1.62804 ACH50 +in.air_leakage_to_outside_ach50 1.62966 Total infiltration to the dwelling unit is 1.62966 ACH50 +in.air_leakage_to_outside_ach50 1.6317 Total infiltration to the dwelling unit is 1.6317 ACH50 +in.air_leakage_to_outside_ach50 1.6336 Total infiltration to the dwelling unit is 1.6336 ACH50 +in.air_leakage_to_outside_ach50 1.6353 Total infiltration to the dwelling unit is 1.6353 ACH50 +in.air_leakage_to_outside_ach50 1.63642 Total infiltration to the dwelling unit is 1.63642 ACH50 +in.air_leakage_to_outside_ach50 1.6374 Total infiltration to the dwelling unit is 1.6374 ACH50 +in.air_leakage_to_outside_ach50 1.64268 Total infiltration to the dwelling unit is 1.64268 ACH50 +in.air_leakage_to_outside_ach50 1.65501 Total infiltration to the dwelling unit is 1.65500999999999 ACH50 +in.air_leakage_to_outside_ach50 1.6555 Total infiltration to the dwelling unit is 1.6555 ACH50 +in.air_leakage_to_outside_ach50 1.65756 Total infiltration to the dwelling unit is 1.65756 ACH50 +in.air_leakage_to_outside_ach50 1.65974 Total infiltration to the dwelling unit is 1.65974 ACH50 +in.air_leakage_to_outside_ach50 1.6624 Total infiltration to the dwelling unit is 1.66239999999999 ACH50 +in.air_leakage_to_outside_ach50 1.66418 Total infiltration to the dwelling unit is 1.66418 ACH50 +in.air_leakage_to_outside_ach50 1.6723 Total infiltration to the dwelling unit is 1.6723 ACH50 +in.air_leakage_to_outside_ach50 1.67572 Total infiltration to the dwelling unit is 1.67572 ACH50 +in.air_leakage_to_outside_ach50 1.67676 Total infiltration to the dwelling unit is 1.67675999999999 ACH50 +in.air_leakage_to_outside_ach50 1.67738 Total infiltration to the dwelling unit is 1.67738 ACH50 +in.air_leakage_to_outside_ach50 1.67739 Total infiltration to the dwelling unit is 1.67739 ACH50 +in.air_leakage_to_outside_ach50 1.68504 Total infiltration to the dwelling unit is 1.68504 ACH50 +in.air_leakage_to_outside_ach50 1.68693 Total infiltration to the dwelling unit is 1.68693 ACH50 +in.air_leakage_to_outside_ach50 1.69002 Total infiltration to the dwelling unit is 1.69001999999999 ACH50 +in.air_leakage_to_outside_ach50 1.69485 Total infiltration to the dwelling unit is 1.69484999999999 ACH50 +in.air_leakage_to_outside_ach50 1.70596 Total infiltration to the dwelling unit is 1.70596 ACH50 +in.air_leakage_to_outside_ach50 1.71468 Total infiltration to the dwelling unit is 1.71468 ACH50 +in.air_leakage_to_outside_ach50 1.71486 Total infiltration to the dwelling unit is 1.71486 ACH50 +in.air_leakage_to_outside_ach50 1.71525 Total infiltration to the dwelling unit is 1.71525 ACH50 +in.air_leakage_to_outside_ach50 1.71538 Total infiltration to the dwelling unit is 1.71538 ACH50 +in.air_leakage_to_outside_ach50 1.7214 Total infiltration to the dwelling unit is 1.72139999999999 ACH50 +in.air_leakage_to_outside_ach50 1.72311 Total infiltration to the dwelling unit is 1.72311 ACH50 +in.air_leakage_to_outside_ach50 1.7246 Total infiltration to the dwelling unit is 1.7246 ACH50 +in.air_leakage_to_outside_ach50 1.7254 Total infiltration to the dwelling unit is 1.7254 ACH50 +in.air_leakage_to_outside_ach50 1.72718 Total infiltration to the dwelling unit is 1.72718 ACH50 +in.air_leakage_to_outside_ach50 1.72959 Total infiltration to the dwelling unit is 1.72959 ACH50 +in.air_leakage_to_outside_ach50 1.7324 Total infiltration to the dwelling unit is 1.7324 ACH50 +in.air_leakage_to_outside_ach50 1.73604 Total infiltration to the dwelling unit is 1.73604 ACH50 +in.air_leakage_to_outside_ach50 1.73892 Total infiltration to the dwelling unit is 1.73892 ACH50 +in.air_leakage_to_outside_ach50 1.74336 Total infiltration to the dwelling unit is 1.74336 ACH50 +in.air_leakage_to_outside_ach50 1.75 Total infiltration to the dwelling unit is 1.75 ACH50 +in.air_leakage_to_outside_ach50 1.7502 Total infiltration to the dwelling unit is 1.7502 ACH50 +in.air_leakage_to_outside_ach50 1.75821 Total infiltration to the dwelling unit is 1.75821 ACH50 +in.air_leakage_to_outside_ach50 1.75986 Total infiltration to the dwelling unit is 1.75986 ACH50 +in.air_leakage_to_outside_ach50 1.7634 Total infiltration to the dwelling unit is 1.76339999999999 ACH50 +in.air_leakage_to_outside_ach50 1.76534 Total infiltration to the dwelling unit is 1.76534 ACH50 +in.air_leakage_to_outside_ach50 1.77088 Total infiltration to the dwelling unit is 1.77088 ACH50 +in.air_leakage_to_outside_ach50 1.77232 Total infiltration to the dwelling unit is 1.77232 ACH50 +in.air_leakage_to_outside_ach50 1.7739 Total infiltration to the dwelling unit is 1.7739 ACH50 +in.air_leakage_to_outside_ach50 1.7766 Total infiltration to the dwelling unit is 1.77659999999999 ACH50 +in.air_leakage_to_outside_ach50 1.77728 Total infiltration to the dwelling unit is 1.77728 ACH50 +in.air_leakage_to_outside_ach50 1.78716 Total infiltration to the dwelling unit is 1.78716 ACH50 +in.air_leakage_to_outside_ach50 1.789 Total infiltration to the dwelling unit is 1.789 ACH50 +in.air_leakage_to_outside_ach50 1.79079 Total infiltration to the dwelling unit is 1.79078999999999 ACH50 +in.air_leakage_to_outside_ach50 1.7912 Total infiltration to the dwelling unit is 1.7912 ACH50 +in.air_leakage_to_outside_ach50 1.79208 Total infiltration to the dwelling unit is 1.79208 ACH50 +in.air_leakage_to_outside_ach50 1.7924 Total infiltration to the dwelling unit is 1.7924 ACH50 +in.air_leakage_to_outside_ach50 1.79744 Total infiltration to the dwelling unit is 1.79744 ACH50 +in.air_leakage_to_outside_ach50 1.8073 Total infiltration to the dwelling unit is 1.8073 ACH50 +in.air_leakage_to_outside_ach50 1.81084 Total infiltration to the dwelling unit is 1.81084 ACH50 +in.air_leakage_to_outside_ach50 1.81344 Total infiltration to the dwelling unit is 1.81344 ACH50 +in.air_leakage_to_outside_ach50 1.81647 Total infiltration to the dwelling unit is 1.81646999999999 ACH50 +in.air_leakage_to_outside_ach50 1.8179 Total infiltration to the dwelling unit is 1.8179 ACH50 +in.air_leakage_to_outside_ach50 1.81795 Total infiltration to the dwelling unit is 1.81795 ACH50 +in.air_leakage_to_outside_ach50 1.8201 Total infiltration to the dwelling unit is 1.8201 ACH50 +in.air_leakage_to_outside_ach50 1.82952 Total infiltration to the dwelling unit is 1.82952 ACH50 +in.air_leakage_to_outside_ach50 1.83465 Total infiltration to the dwelling unit is 1.83465 ACH50 +in.air_leakage_to_outside_ach50 1.83472 Total infiltration to the dwelling unit is 1.83472 ACH50 +in.air_leakage_to_outside_ach50 1.83735 Total infiltration to the dwelling unit is 1.83735 ACH50 +in.air_leakage_to_outside_ach50 1.84305 Total infiltration to the dwelling unit is 1.84304999999999 ACH50 +in.air_leakage_to_outside_ach50 1.8478 Total infiltration to the dwelling unit is 1.8478 ACH50 +in.air_leakage_to_outside_ach50 1.8558 Total infiltration to the dwelling unit is 1.8558 ACH50 +in.air_leakage_to_outside_ach50 1.86438 Total infiltration to the dwelling unit is 1.86438 ACH50 +in.air_leakage_to_outside_ach50 1.86675 Total infiltration to the dwelling unit is 1.86675 ACH50 +in.air_leakage_to_outside_ach50 1.86747 Total infiltration to the dwelling unit is 1.86747 ACH50 +in.air_leakage_to_outside_ach50 1.88864 Total infiltration to the dwelling unit is 1.88864 ACH50 +in.air_leakage_to_outside_ach50 1.88895 Total infiltration to the dwelling unit is 1.88895 ACH50 +in.air_leakage_to_outside_ach50 1.8956 Total infiltration to the dwelling unit is 1.8956 ACH50 +in.air_leakage_to_outside_ach50 1.89951 Total infiltration to the dwelling unit is 1.89951 ACH50 +in.air_leakage_to_outside_ach50 1.901 Total infiltration to the dwelling unit is 1.901 ACH50 +in.air_leakage_to_outside_ach50 1.9024 Total infiltration to the dwelling unit is 1.90239999999999 ACH50 +in.air_leakage_to_outside_ach50 1.90365 Total infiltration to the dwelling unit is 1.90365 ACH50 +in.air_leakage_to_outside_ach50 1.91575 Total infiltration to the dwelling unit is 1.91575 ACH50 +in.air_leakage_to_outside_ach50 1.92792 Total infiltration to the dwelling unit is 1.92792 ACH50 +in.air_leakage_to_outside_ach50 1.93401 Total infiltration to the dwelling unit is 1.93400999999999 ACH50 +in.air_leakage_to_outside_ach50 1.94463 Total infiltration to the dwelling unit is 1.94462999999999 ACH50 +in.air_leakage_to_outside_ach50 1.94835 Total infiltration to the dwelling unit is 1.94835 ACH50 +in.air_leakage_to_outside_ach50 1.9485 Total infiltration to the dwelling unit is 1.9485 ACH50 +in.air_leakage_to_outside_ach50 1.94968 Total infiltration to the dwelling unit is 1.94968 ACH50 +in.air_leakage_to_outside_ach50 1.95984 Total infiltration to the dwelling unit is 1.95984 ACH50 +in.air_leakage_to_outside_ach50 1.96236 Total infiltration to the dwelling unit is 1.96236 ACH50 +in.air_leakage_to_outside_ach50 1.9634 Total infiltration to the dwelling unit is 1.96339999999999 ACH50 +in.air_leakage_to_outside_ach50 1.96722 Total infiltration to the dwelling unit is 1.96722 ACH50 +in.air_leakage_to_outside_ach50 1.9679 Total infiltration to the dwelling unit is 1.9679 ACH50 +in.air_leakage_to_outside_ach50 1.97392 Total infiltration to the dwelling unit is 1.97392 ACH50 +in.air_leakage_to_outside_ach50 1.9866 Total infiltration to the dwelling unit is 1.9866 ACH50 +in.air_leakage_to_outside_ach50 1.99665 Total infiltration to the dwelling unit is 1.99664999999999 ACH50 +in.air_leakage_to_outside_ach50 1.99755 Total infiltration to the dwelling unit is 1.99755 ACH50 +in.air_leakage_to_outside_ach50 2 Total infiltration to the dwelling unit is 2 ACH50 +in.air_leakage_to_outside_ach50 2.0039 Total infiltration to the dwelling unit is 2.0039 ACH50 +in.air_leakage_to_outside_ach50 2.00395 Total infiltration to the dwelling unit is 2.00394999999999 ACH50 +in.air_leakage_to_outside_ach50 2.00442 Total infiltration to the dwelling unit is 2.00441999999999 ACH50 +in.air_leakage_to_outside_ach50 2.01231 Total infiltration to the dwelling unit is 2.01231 ACH50 +in.air_leakage_to_outside_ach50 2.0169 Total infiltration to the dwelling unit is 2.0169 ACH50 +in.air_leakage_to_outside_ach50 2.0212 Total infiltration to the dwelling unit is 2.0212 ACH50 +in.air_leakage_to_outside_ach50 2.02538 Total infiltration to the dwelling unit is 2.02537999999999 ACH50 +in.air_leakage_to_outside_ach50 2.02716 Total infiltration to the dwelling unit is 2.02716 ACH50 +in.air_leakage_to_outside_ach50 2.03214 Total infiltration to the dwelling unit is 2.03214 ACH50 +in.air_leakage_to_outside_ach50 2.03505 Total infiltration to the dwelling unit is 2.03505 ACH50 +in.air_leakage_to_outside_ach50 2.042 Total infiltration to the dwelling unit is 2.042 ACH50 +in.air_leakage_to_outside_ach50 2.04537 Total infiltration to the dwelling unit is 2.04537 ACH50 +in.air_leakage_to_outside_ach50 2.05593 Total infiltration to the dwelling unit is 2.05593 ACH50 +in.air_leakage_to_outside_ach50 2.0594 Total infiltration to the dwelling unit is 2.0594 ACH50 +in.air_leakage_to_outside_ach50 2.06636 Total infiltration to the dwelling unit is 2.06636 ACH50 +in.air_leakage_to_outside_ach50 2.0668 Total infiltration to the dwelling unit is 2.0668 ACH50 +in.air_leakage_to_outside_ach50 2.067 Total infiltration to the dwelling unit is 2.067 ACH50 +in.air_leakage_to_outside_ach50 2.07048 Total infiltration to the dwelling unit is 2.07048 ACH50 +in.air_leakage_to_outside_ach50 2.07195 Total infiltration to the dwelling unit is 2.07194999999999 ACH50 +in.air_leakage_to_outside_ach50 2.07224 Total infiltration to the dwelling unit is 2.07224 ACH50 +in.air_leakage_to_outside_ach50 2.07615 Total infiltration to the dwelling unit is 2.07615 ACH50 +in.air_leakage_to_outside_ach50 2.07846 Total infiltration to the dwelling unit is 2.07845999999999 ACH50 +in.air_leakage_to_outside_ach50 2.09496 Total infiltration to the dwelling unit is 2.09496 ACH50 +in.air_leakage_to_outside_ach50 2.10117 Total infiltration to the dwelling unit is 2.10116999999999 ACH50 +in.air_leakage_to_outside_ach50 2.10216 Total infiltration to the dwelling unit is 2.10216 ACH50 +in.air_leakage_to_outside_ach50 2.10408 Total infiltration to the dwelling unit is 2.10407999999999 ACH50 +in.air_leakage_to_outside_ach50 2.1063 Total infiltration to the dwelling unit is 2.1063 ACH50 +in.air_leakage_to_outside_ach50 2.12376 Total infiltration to the dwelling unit is 2.12376 ACH50 +in.air_leakage_to_outside_ach50 2.12463 Total infiltration to the dwelling unit is 2.12463 ACH50 +in.air_leakage_to_outside_ach50 2.13072 Total infiltration to the dwelling unit is 2.13072 ACH50 +in.air_leakage_to_outside_ach50 2.13245 Total infiltration to the dwelling unit is 2.13245 ACH50 +in.air_leakage_to_outside_ach50 2.13304 Total infiltration to the dwelling unit is 2.13304 ACH50 +in.air_leakage_to_outside_ach50 2.1468 Total infiltration to the dwelling unit is 2.1468 ACH50 +in.air_leakage_to_outside_ach50 2.14732 Total infiltration to the dwelling unit is 2.14732 ACH50 +in.air_leakage_to_outside_ach50 2.15175 Total infiltration to the dwelling unit is 2.15175 ACH50 +in.air_leakage_to_outside_ach50 2.15575 Total infiltration to the dwelling unit is 2.15575 ACH50 +in.air_leakage_to_outside_ach50 2.16336 Total infiltration to the dwelling unit is 2.16336 ACH50 +in.air_leakage_to_outside_ach50 2.16392 Total infiltration to the dwelling unit is 2.16392 ACH50 +in.air_leakage_to_outside_ach50 2.17005 Total infiltration to the dwelling unit is 2.17005 ACH50 +in.air_leakage_to_outside_ach50 2.175 Total infiltration to the dwelling unit is 2.175 ACH50 +in.air_leakage_to_outside_ach50 2.1756 Total infiltration to the dwelling unit is 2.1756 ACH50 +in.air_leakage_to_outside_ach50 2.18154 Total infiltration to the dwelling unit is 2.18154 ACH50 +in.air_leakage_to_outside_ach50 2.1832 Total infiltration to the dwelling unit is 2.1832 ACH50 +in.air_leakage_to_outside_ach50 2.18409 Total infiltration to the dwelling unit is 2.18409 ACH50 +in.air_leakage_to_outside_ach50 2.1875 Total infiltration to the dwelling unit is 2.1875 ACH50 +in.air_leakage_to_outside_ach50 2.18775 Total infiltration to the dwelling unit is 2.18775 ACH50 +in.air_leakage_to_outside_ach50 2.19024 Total infiltration to the dwelling unit is 2.19024 ACH50 +in.air_leakage_to_outside_ach50 2.20668 Total infiltration to the dwelling unit is 2.20668 ACH50 +in.air_leakage_to_outside_ach50 2.2136 Total infiltration to the dwelling unit is 2.2136 ACH50 +in.air_leakage_to_outside_ach50 2.2216 Total infiltration to the dwelling unit is 2.2216 ACH50 +in.air_leakage_to_outside_ach50 2.22297 Total infiltration to the dwelling unit is 2.22297 ACH50 +in.air_leakage_to_outside_ach50 2.22696 Total infiltration to the dwelling unit is 2.22696 ACH50 +in.air_leakage_to_outside_ach50 2.22747 Total infiltration to the dwelling unit is 2.22747 ACH50 +in.air_leakage_to_outside_ach50 2.23568 Total infiltration to the dwelling unit is 2.23568 ACH50 +in.air_leakage_to_outside_ach50 2.23652 Total infiltration to the dwelling unit is 2.23652 ACH50 +in.air_leakage_to_outside_ach50 2.2405 Total infiltration to the dwelling unit is 2.2405 ACH50 +in.air_leakage_to_outside_ach50 2.2468 Total infiltration to the dwelling unit is 2.2468 ACH50 +in.air_leakage_to_outside_ach50 2.25336 Total infiltration to the dwelling unit is 2.25336 ACH50 +in.air_leakage_to_outside_ach50 2.25795 Total infiltration to the dwelling unit is 2.25795 ACH50 +in.air_leakage_to_outside_ach50 2.2598 Total infiltration to the dwelling unit is 2.2598 ACH50 +in.air_leakage_to_outside_ach50 2.26355 Total infiltration to the dwelling unit is 2.26355 ACH50 +in.air_leakage_to_outside_ach50 2.28066 Total infiltration to the dwelling unit is 2.28066 ACH50 +in.air_leakage_to_outside_ach50 2.28624 Total infiltration to the dwelling unit is 2.28624 ACH50 +in.air_leakage_to_outside_ach50 2.2865 Total infiltration to the dwelling unit is 2.28649999999999 ACH50 +in.air_leakage_to_outside_ach50 2.2869 Total infiltration to the dwelling unit is 2.2869 ACH50 +in.air_leakage_to_outside_ach50 2.287 Total infiltration to the dwelling unit is 2.287 ACH50 +in.air_leakage_to_outside_ach50 2.28942 Total infiltration to the dwelling unit is 2.28942 ACH50 +in.air_leakage_to_outside_ach50 2.2934 Total infiltration to the dwelling unit is 2.2934 ACH50 +in.air_leakage_to_outside_ach50 2.29602 Total infiltration to the dwelling unit is 2.29602 ACH50 +in.air_leakage_to_outside_ach50 2.29748 Total infiltration to the dwelling unit is 2.29748 ACH50 +in.air_leakage_to_outside_ach50 2.2989 Total infiltration to the dwelling unit is 2.29889999999999 ACH50 +in.air_leakage_to_outside_ach50 2.30352 Total infiltration to the dwelling unit is 2.30352 ACH50 +in.air_leakage_to_outside_ach50 2.30523 Total infiltration to the dwelling unit is 2.30523 ACH50 +in.air_leakage_to_outside_ach50 2.30612 Total infiltration to the dwelling unit is 2.30612 ACH50 +in.air_leakage_to_outside_ach50 2.30975 Total infiltration to the dwelling unit is 2.30975 ACH50 +in.air_leakage_to_outside_ach50 2.31472 Total infiltration to the dwelling unit is 2.31472 ACH50 +in.air_leakage_to_outside_ach50 2.31696 Total infiltration to the dwelling unit is 2.31696 ACH50 +in.air_leakage_to_outside_ach50 2.3177 Total infiltration to the dwelling unit is 2.3177 ACH50 +in.air_leakage_to_outside_ach50 2.31856 Total infiltration to the dwelling unit is 2.31856 ACH50 +in.air_leakage_to_outside_ach50 2.3187 Total infiltration to the dwelling unit is 2.3187 ACH50 +in.air_leakage_to_outside_ach50 2.31956 Total infiltration to the dwelling unit is 2.31956 ACH50 +in.air_leakage_to_outside_ach50 2.32448 Total infiltration to the dwelling unit is 2.32448 ACH50 +in.air_leakage_to_outside_ach50 2.33838 Total infiltration to the dwelling unit is 2.33838 ACH50 +in.air_leakage_to_outside_ach50 2.34428 Total infiltration to the dwelling unit is 2.34428 ACH50 +in.air_leakage_to_outside_ach50 2.34501 Total infiltration to the dwelling unit is 2.34501 ACH50 +in.air_leakage_to_outside_ach50 2.34648 Total infiltration to the dwelling unit is 2.34648 ACH50 +in.air_leakage_to_outside_ach50 2.36148 Total infiltration to the dwelling unit is 2.36148 ACH50 +in.air_leakage_to_outside_ach50 2.36478 Total infiltration to the dwelling unit is 2.36477999999999 ACH50 +in.air_leakage_to_outside_ach50 2.3652 Total infiltration to the dwelling unit is 2.3652 ACH50 +in.air_leakage_to_outside_ach50 2.3688 Total infiltration to the dwelling unit is 2.3688 ACH50 +in.air_leakage_to_outside_ach50 2.36985 Total infiltration to the dwelling unit is 2.36985 ACH50 +in.air_leakage_to_outside_ach50 2.37168 Total infiltration to the dwelling unit is 2.37168 ACH50 +in.air_leakage_to_outside_ach50 2.37402 Total infiltration to the dwelling unit is 2.37402 ACH50 +in.air_leakage_to_outside_ach50 2.37625 Total infiltration to the dwelling unit is 2.37625 ACH50 +in.air_leakage_to_outside_ach50 2.3776 Total infiltration to the dwelling unit is 2.3776 ACH50 +in.air_leakage_to_outside_ach50 2.378 Total infiltration to the dwelling unit is 2.378 ACH50 +in.air_leakage_to_outside_ach50 2.38772 Total infiltration to the dwelling unit is 2.38772 ACH50 +in.air_leakage_to_outside_ach50 2.38944 Total infiltration to the dwelling unit is 2.38944 ACH50 +in.air_leakage_to_outside_ach50 2.39604 Total infiltration to the dwelling unit is 2.39603999999999 ACH50 +in.air_leakage_to_outside_ach50 2.39631 Total infiltration to the dwelling unit is 2.39630999999999 ACH50 +in.air_leakage_to_outside_ach50 2.40474 Total infiltration to the dwelling unit is 2.40474 ACH50 +in.air_leakage_to_outside_ach50 2.4099 Total infiltration to the dwelling unit is 2.4099 ACH50 +in.air_leakage_to_outside_ach50 2.41556 Total infiltration to the dwelling unit is 2.41556 ACH50 +in.air_leakage_to_outside_ach50 2.41636 Total infiltration to the dwelling unit is 2.41636 ACH50 +in.air_leakage_to_outside_ach50 2.41731 Total infiltration to the dwelling unit is 2.41731 ACH50 +in.air_leakage_to_outside_ach50 2.41792 Total infiltration to the dwelling unit is 2.41792 ACH50 +in.air_leakage_to_outside_ach50 2.42196 Total infiltration to the dwelling unit is 2.42196 ACH50 +in.air_leakage_to_outside_ach50 2.4268 Total infiltration to the dwelling unit is 2.4268 ACH50 +in.air_leakage_to_outside_ach50 2.43336 Total infiltration to the dwelling unit is 2.43336 ACH50 +in.air_leakage_to_outside_ach50 2.43645 Total infiltration to the dwelling unit is 2.43645 ACH50 +in.air_leakage_to_outside_ach50 2.44164 Total infiltration to the dwelling unit is 2.44164 ACH50 +in.air_leakage_to_outside_ach50 2.44206 Total infiltration to the dwelling unit is 2.44205999999999 ACH50 +in.air_leakage_to_outside_ach50 2.44449 Total infiltration to the dwelling unit is 2.44449 ACH50 +in.air_leakage_to_outside_ach50 2.4462 Total infiltration to the dwelling unit is 2.4462 ACH50 +in.air_leakage_to_outside_ach50 2.4498 Total infiltration to the dwelling unit is 2.4498 ACH50 +in.air_leakage_to_outside_ach50 2.45463 Total infiltration to the dwelling unit is 2.45463 ACH50 +in.air_leakage_to_outside_ach50 2.4574 Total infiltration to the dwelling unit is 2.4574 ACH50 +in.air_leakage_to_outside_ach50 2.4674 Total infiltration to the dwelling unit is 2.4674 ACH50 +in.air_leakage_to_outside_ach50 2.48325 Total infiltration to the dwelling unit is 2.48325 ACH50 +in.air_leakage_to_outside_ach50 2.48361 Total infiltration to the dwelling unit is 2.48361 ACH50 +in.air_leakage_to_outside_ach50 2.48634 Total infiltration to the dwelling unit is 2.48633999999999 ACH50 +in.air_leakage_to_outside_ach50 2.489 Total infiltration to the dwelling unit is 2.489 ACH50 +in.air_leakage_to_outside_ach50 2.48961 Total infiltration to the dwelling unit is 2.48961 ACH50 +in.air_leakage_to_outside_ach50 2.48996 Total infiltration to the dwelling unit is 2.48996 ACH50 +in.air_leakage_to_outside_ach50 2.4936 Total infiltration to the dwelling unit is 2.4936 ACH50 +in.air_leakage_to_outside_ach50 2.5 Total infiltration to the dwelling unit is 2.5 ACH50 +in.air_leakage_to_outside_ach50 2.50335 Total infiltration to the dwelling unit is 2.50335 ACH50 +in.air_leakage_to_outside_ach50 2.50845 Total infiltration to the dwelling unit is 2.50845 ACH50 +in.air_leakage_to_outside_ach50 2.51358 Total infiltration to the dwelling unit is 2.51358 ACH50 +in.air_leakage_to_outside_ach50 2.51607 Total infiltration to the dwelling unit is 2.51607 ACH50 +in.air_leakage_to_outside_ach50 2.5186 Total infiltration to the dwelling unit is 2.5186 ACH50 +in.air_leakage_to_outside_ach50 2.5265 Total infiltration to the dwelling unit is 2.5265 ACH50 +in.air_leakage_to_outside_ach50 2.52756 Total infiltration to the dwelling unit is 2.52756 ACH50 +in.air_leakage_to_outside_ach50 2.52798 Total infiltration to the dwelling unit is 2.52798 ACH50 +in.air_leakage_to_outside_ach50 2.52855 Total infiltration to the dwelling unit is 2.52855 ACH50 +in.air_leakage_to_outside_ach50 2.53268 Total infiltration to the dwelling unit is 2.53268 ACH50 +in.air_leakage_to_outside_ach50 2.53806 Total infiltration to the dwelling unit is 2.53805999999999 ACH50 +in.air_leakage_to_outside_ach50 2.54513 Total infiltration to the dwelling unit is 2.54513 ACH50 +in.air_leakage_to_outside_ach50 2.55108 Total infiltration to the dwelling unit is 2.55108 ACH50 +in.air_leakage_to_outside_ach50 2.55894 Total infiltration to the dwelling unit is 2.55893999999999 ACH50 +in.air_leakage_to_outside_ach50 2.562 Total infiltration to the dwelling unit is 2.562 ACH50 +in.air_leakage_to_outside_ach50 2.5623 Total infiltration to the dwelling unit is 2.5623 ACH50 +in.air_leakage_to_outside_ach50 2.56599 Total infiltration to the dwelling unit is 2.56599 ACH50 +in.air_leakage_to_outside_ach50 2.57307 Total infiltration to the dwelling unit is 2.57307 ACH50 +in.air_leakage_to_outside_ach50 2.57868 Total infiltration to the dwelling unit is 2.57868 ACH50 +in.air_leakage_to_outside_ach50 2.5821 Total infiltration to the dwelling unit is 2.58209999999999 ACH50 +in.air_leakage_to_outside_ach50 2.58295 Total infiltration to the dwelling unit is 2.58295 ACH50 +in.air_leakage_to_outside_ach50 2.5835 Total infiltration to the dwelling unit is 2.5835 ACH50 +in.air_leakage_to_outside_ach50 2.58375 Total infiltration to the dwelling unit is 2.58374999999999 ACH50 +in.air_leakage_to_outside_ach50 2.5869 Total infiltration to the dwelling unit is 2.5869 ACH50 +in.air_leakage_to_outside_ach50 2.5903 Total infiltration to the dwelling unit is 2.5903 ACH50 +in.air_leakage_to_outside_ach50 2.59284 Total infiltration to the dwelling unit is 2.59284 ACH50 +in.air_leakage_to_outside_ach50 2.5978 Total infiltration to the dwelling unit is 2.5978 ACH50 +in.air_leakage_to_outside_ach50 2.598 Total infiltration to the dwelling unit is 2.598 ACH50 +in.air_leakage_to_outside_ach50 2.59812 Total infiltration to the dwelling unit is 2.59811999999999 ACH50 +in.air_leakage_to_outside_ach50 2.5986 Total infiltration to the dwelling unit is 2.5986 ACH50 +in.air_leakage_to_outside_ach50 2.5998 Total infiltration to the dwelling unit is 2.5998 ACH50 +in.air_leakage_to_outside_ach50 2.61348 Total infiltration to the dwelling unit is 2.61348 ACH50 +in.air_leakage_to_outside_ach50 2.61372 Total infiltration to the dwelling unit is 2.61372 ACH50 +in.air_leakage_to_outside_ach50 2.61393 Total infiltration to the dwelling unit is 2.61393 ACH50 +in.air_leakage_to_outside_ach50 2.61648 Total infiltration to the dwelling unit is 2.61648 ACH50 +in.air_leakage_to_outside_ach50 2.6187 Total infiltration to the dwelling unit is 2.6187 ACH50 +in.air_leakage_to_outside_ach50 2.62296 Total infiltration to the dwelling unit is 2.62296 ACH50 +in.air_leakage_to_outside_ach50 2.63668 Total infiltration to the dwelling unit is 2.63668 ACH50 +in.air_leakage_to_outside_ach50 2.64801 Total infiltration to the dwelling unit is 2.64800999999999 ACH50 +in.air_leakage_to_outside_ach50 2.6488 Total infiltration to the dwelling unit is 2.6488 ACH50 +in.air_leakage_to_outside_ach50 2.64945 Total infiltration to the dwelling unit is 2.64945 ACH50 +in.air_leakage_to_outside_ach50 2.65188 Total infiltration to the dwelling unit is 2.65188 ACH50 +in.air_leakage_to_outside_ach50 2.6547 Total infiltration to the dwelling unit is 2.6547 ACH50 +in.air_leakage_to_outside_ach50 2.65632 Total infiltration to the dwelling unit is 2.65632 ACH50 +in.air_leakage_to_outside_ach50 2.65848 Total infiltration to the dwelling unit is 2.65848 ACH50 +in.air_leakage_to_outside_ach50 2.6622 Total infiltration to the dwelling unit is 2.6622 ACH50 +in.air_leakage_to_outside_ach50 2.6634 Total infiltration to the dwelling unit is 2.6634 ACH50 +in.air_leakage_to_outside_ach50 2.66592 Total infiltration to the dwelling unit is 2.66592 ACH50 +in.air_leakage_to_outside_ach50 2.6663 Total infiltration to the dwelling unit is 2.66629999999999 ACH50 +in.air_leakage_to_outside_ach50 2.67256 Total infiltration to the dwelling unit is 2.67256 ACH50 +in.air_leakage_to_outside_ach50 2.68205 Total infiltration to the dwelling unit is 2.68205 ACH50 +in.air_leakage_to_outside_ach50 2.68308 Total infiltration to the dwelling unit is 2.68308 ACH50 +in.air_leakage_to_outside_ach50 2.68415 Total infiltration to the dwelling unit is 2.68415 ACH50 +in.air_leakage_to_outside_ach50 2.6868 Total infiltration to the dwelling unit is 2.6868 ACH50 +in.air_leakage_to_outside_ach50 2.68701 Total infiltration to the dwelling unit is 2.68701 ACH50 +in.air_leakage_to_outside_ach50 2.6886 Total infiltration to the dwelling unit is 2.6886 ACH50 +in.air_leakage_to_outside_ach50 2.6892 Total infiltration to the dwelling unit is 2.6892 ACH50 +in.air_leakage_to_outside_ach50 2.70288 Total infiltration to the dwelling unit is 2.70288 ACH50 +in.air_leakage_to_outside_ach50 2.7042 Total infiltration to the dwelling unit is 2.7042 ACH50 +in.air_leakage_to_outside_ach50 2.7049 Total infiltration to the dwelling unit is 2.7049 ACH50 +in.air_leakage_to_outside_ach50 2.70772 Total infiltration to the dwelling unit is 2.70772 ACH50 +in.air_leakage_to_outside_ach50 2.70952 Total infiltration to the dwelling unit is 2.70952 ACH50 +in.air_leakage_to_outside_ach50 2.71095 Total infiltration to the dwelling unit is 2.71095 ACH50 +in.air_leakage_to_outside_ach50 2.71626 Total infiltration to the dwelling unit is 2.71626 ACH50 +in.air_leakage_to_outside_ach50 2.71875 Total infiltration to the dwelling unit is 2.71875 ACH50 +in.air_leakage_to_outside_ach50 2.7195 Total infiltration to the dwelling unit is 2.7195 ACH50 +in.air_leakage_to_outside_ach50 2.71964 Total infiltration to the dwelling unit is 2.71964 ACH50 +in.air_leakage_to_outside_ach50 2.72082 Total infiltration to the dwelling unit is 2.72082 ACH50 +in.air_leakage_to_outside_ach50 2.72685 Total infiltration to the dwelling unit is 2.72685 ACH50 +in.air_leakage_to_outside_ach50 2.72716 Total infiltration to the dwelling unit is 2.72716 ACH50 +in.air_leakage_to_outside_ach50 2.729 Total infiltration to the dwelling unit is 2.72899999999999 ACH50 +in.air_leakage_to_outside_ach50 2.7378 Total infiltration to the dwelling unit is 2.7378 ACH50 +in.air_leakage_to_outside_ach50 2.74014 Total infiltration to the dwelling unit is 2.74014 ACH50 +in.air_leakage_to_outside_ach50 2.74124 Total infiltration to the dwelling unit is 2.74124 ACH50 +in.air_leakage_to_outside_ach50 2.74479 Total infiltration to the dwelling unit is 2.74479 ACH50 +in.air_leakage_to_outside_ach50 2.75208 Total infiltration to the dwelling unit is 2.75208 ACH50 +in.air_leakage_to_outside_ach50 2.75506 Total infiltration to the dwelling unit is 2.75506 ACH50 +in.air_leakage_to_outside_ach50 2.75835 Total infiltration to the dwelling unit is 2.75835 ACH50 +in.air_leakage_to_outside_ach50 2.76064 Total infiltration to the dwelling unit is 2.76064 ACH50 +in.air_leakage_to_outside_ach50 2.7682 Total infiltration to the dwelling unit is 2.7682 ACH50 +in.air_leakage_to_outside_ach50 2.77128 Total infiltration to the dwelling unit is 2.77128 ACH50 +in.air_leakage_to_outside_ach50 2.7717 Total infiltration to the dwelling unit is 2.7717 ACH50 +in.air_leakage_to_outside_ach50 2.77685 Total infiltration to the dwelling unit is 2.77685 ACH50 +in.air_leakage_to_outside_ach50 2.781 Total infiltration to the dwelling unit is 2.781 ACH50 +in.air_leakage_to_outside_ach50 2.79006 Total infiltration to the dwelling unit is 2.79006 ACH50 +in.air_leakage_to_outside_ach50 2.7946 Total infiltration to the dwelling unit is 2.7946 ACH50 +in.air_leakage_to_outside_ach50 2.79565 Total infiltration to the dwelling unit is 2.79565 ACH50 +in.air_leakage_to_outside_ach50 2.80156 Total infiltration to the dwelling unit is 2.80156 ACH50 +in.air_leakage_to_outside_ach50 2.80288 Total infiltration to the dwelling unit is 2.80288 ACH50 +in.air_leakage_to_outside_ach50 2.80544 Total infiltration to the dwelling unit is 2.80544 ACH50 +in.air_leakage_to_outside_ach50 2.80553 Total infiltration to the dwelling unit is 2.80553 ACH50 +in.air_leakage_to_outside_ach50 2.8167 Total infiltration to the dwelling unit is 2.8167 ACH50 +in.air_leakage_to_outside_ach50 2.82475 Total infiltration to the dwelling unit is 2.82475 ACH50 +in.air_leakage_to_outside_ach50 2.83284 Total infiltration to the dwelling unit is 2.83284 ACH50 +in.air_leakage_to_outside_ach50 2.83296 Total infiltration to the dwelling unit is 2.83296 ACH50 +in.air_leakage_to_outside_ach50 2.8418 Total infiltration to the dwelling unit is 2.8418 ACH50 +in.air_leakage_to_outside_ach50 2.8434 Total infiltration to the dwelling unit is 2.8434 ACH50 +in.air_leakage_to_outside_ach50 2.84907 Total infiltration to the dwelling unit is 2.84906999999999 ACH50 +in.air_leakage_to_outside_ach50 2.8515 Total infiltration to the dwelling unit is 2.8515 ACH50 +in.air_leakage_to_outside_ach50 2.8578 Total infiltration to the dwelling unit is 2.85779999999999 ACH50 +in.air_leakage_to_outside_ach50 2.8624 Total infiltration to the dwelling unit is 2.8624 ACH50 +in.air_leakage_to_outside_ach50 2.87185 Total infiltration to the dwelling unit is 2.87185 ACH50 +in.air_leakage_to_outside_ach50 2.88265 Total infiltration to the dwelling unit is 2.88265 ACH50 +in.air_leakage_to_outside_ach50 2.8934 Total infiltration to the dwelling unit is 2.89339999999999 ACH50 +in.air_leakage_to_outside_ach50 2.8982 Total infiltration to the dwelling unit is 2.8982 ACH50 +in.air_leakage_to_outside_ach50 2.90073 Total infiltration to the dwelling unit is 2.90073 ACH50 +in.air_leakage_to_outside_ach50 2.9056 Total infiltration to the dwelling unit is 2.90559999999999 ACH50 +in.air_leakage_to_outside_ach50 2.90872 Total infiltration to the dwelling unit is 2.90872 ACH50 +in.air_leakage_to_outside_ach50 2.91212 Total infiltration to the dwelling unit is 2.91212 ACH50 +in.air_leakage_to_outside_ach50 2.92452 Total infiltration to the dwelling unit is 2.92452 ACH50 +in.air_leakage_to_outside_ach50 2.93035 Total infiltration to the dwelling unit is 2.93035 ACH50 +in.air_leakage_to_outside_ach50 2.9331 Total infiltration to the dwelling unit is 2.9331 ACH50 +in.air_leakage_to_outside_ach50 2.9451 Total infiltration to the dwelling unit is 2.94509999999999 ACH50 +in.air_leakage_to_outside_ach50 2.94882 Total infiltration to the dwelling unit is 2.94882 ACH50 +in.air_leakage_to_outside_ach50 2.9565 Total infiltration to the dwelling unit is 2.9565 ACH50 +in.air_leakage_to_outside_ach50 2.961 Total infiltration to the dwelling unit is 2.961 ACH50 +in.air_leakage_to_outside_ach50 2.96396 Total infiltration to the dwelling unit is 2.96396 ACH50 +in.air_leakage_to_outside_ach50 2.96928 Total infiltration to the dwelling unit is 2.96928 ACH50 +in.air_leakage_to_outside_ach50 2.96996 Total infiltration to the dwelling unit is 2.96996 ACH50 +in.air_leakage_to_outside_ach50 2.97044 Total infiltration to the dwelling unit is 2.97044 ACH50 +in.air_leakage_to_outside_ach50 2.98465 Total infiltration to the dwelling unit is 2.98465 ACH50 +in.air_leakage_to_outside_ach50 2.98494 Total infiltration to the dwelling unit is 2.98494 ACH50 +in.air_leakage_to_outside_ach50 2.98543 Total infiltration to the dwelling unit is 2.98543 ACH50 +in.air_leakage_to_outside_ach50 2.9868 Total infiltration to the dwelling unit is 2.9868 ACH50 +in.air_leakage_to_outside_ach50 3 Total infiltration to the dwelling unit is 3 ACH50 +in.air_leakage_to_outside_ach50 3.00582 Total infiltration to the dwelling unit is 3.00582 ACH50 +in.air_leakage_to_outside_ach50 3.00585 Total infiltration to the dwelling unit is 3.00585 ACH50 +in.air_leakage_to_outside_ach50 3.0106 Total infiltration to the dwelling unit is 3.0106 ACH50 +in.air_leakage_to_outside_ach50 3.01805 Total infiltration to the dwelling unit is 3.01804999999999 ACH50 +in.air_leakage_to_outside_ach50 3.02045 Total infiltration to the dwelling unit is 3.02045 ACH50 +in.air_leakage_to_outside_ach50 3.0224 Total infiltration to the dwelling unit is 3.0224 ACH50 +in.air_leakage_to_outside_ach50 3.0318 Total infiltration to the dwelling unit is 3.03179999999999 ACH50 +in.air_leakage_to_outside_ach50 3.0332 Total infiltration to the dwelling unit is 3.0332 ACH50 +in.air_leakage_to_outside_ach50 3.0335 Total infiltration to the dwelling unit is 3.0335 ACH50 +in.air_leakage_to_outside_ach50 3.03425 Total infiltration to the dwelling unit is 3.03425 ACH50 +in.air_leakage_to_outside_ach50 3.03604 Total infiltration to the dwelling unit is 3.03604 ACH50 +in.air_leakage_to_outside_ach50 3.05775 Total infiltration to the dwelling unit is 3.05775 ACH50 +in.air_leakage_to_outside_ach50 3.06136 Total infiltration to the dwelling unit is 3.06136 ACH50 +in.air_leakage_to_outside_ach50 3.06225 Total infiltration to the dwelling unit is 3.06225 ACH50 +in.air_leakage_to_outside_ach50 3.0652 Total infiltration to the dwelling unit is 3.0652 ACH50 +in.air_leakage_to_outside_ach50 3.07136 Total infiltration to the dwelling unit is 3.07136 ACH50 +in.air_leakage_to_outside_ach50 3.07175 Total infiltration to the dwelling unit is 3.07174999999999 ACH50 +in.air_leakage_to_outside_ach50 3.07364 Total infiltration to the dwelling unit is 3.07364 ACH50 +in.air_leakage_to_outside_ach50 3.08928 Total infiltration to the dwelling unit is 3.08928 ACH50 +in.air_leakage_to_outside_ach50 3.09904 Total infiltration to the dwelling unit is 3.09904 ACH50 +in.air_leakage_to_outside_ach50 3.09954 Total infiltration to the dwelling unit is 3.09954 ACH50 +in.air_leakage_to_outside_ach50 3.1005 Total infiltration to the dwelling unit is 3.1005 ACH50 +in.air_leakage_to_outside_ach50 3.1038 Total infiltration to the dwelling unit is 3.10379999999999 ACH50 +in.air_leakage_to_outside_ach50 3.11024 Total infiltration to the dwelling unit is 3.11024 ACH50 +in.air_leakage_to_outside_ach50 3.11125 Total infiltration to the dwelling unit is 3.11125 ACH50 +in.air_leakage_to_outside_ach50 3.11245 Total infiltration to the dwelling unit is 3.11245 ACH50 +in.air_leakage_to_outside_ach50 3.11784 Total infiltration to the dwelling unit is 3.11784 ACH50 +in.air_leakage_to_outside_ach50 3.11976 Total infiltration to the dwelling unit is 3.11976 ACH50 +in.air_leakage_to_outside_ach50 3.12264 Total infiltration to the dwelling unit is 3.12264 ACH50 +in.air_leakage_to_outside_ach50 3.12488 Total infiltration to the dwelling unit is 3.12488 ACH50 +in.air_leakage_to_outside_ach50 3.12668 Total infiltration to the dwelling unit is 3.12668 ACH50 +in.air_leakage_to_outside_ach50 3.1367 Total infiltration to the dwelling unit is 3.1367 ACH50 +in.air_leakage_to_outside_ach50 3.14244 Total infiltration to the dwelling unit is 3.14243999999999 ACH50 +in.air_leakage_to_outside_ach50 3.14825 Total infiltration to the dwelling unit is 3.14825 ACH50 +in.air_leakage_to_outside_ach50 3.14864 Total infiltration to the dwelling unit is 3.14864 ACH50 +in.air_leakage_to_outside_ach50 3.15304 Total infiltration to the dwelling unit is 3.15304 ACH50 +in.air_leakage_to_outside_ach50 3.15928 Total infiltration to the dwelling unit is 3.15928 ACH50 +in.air_leakage_to_outside_ach50 3.16224 Total infiltration to the dwelling unit is 3.16224 ACH50 +in.air_leakage_to_outside_ach50 3.16536 Total infiltration to the dwelling unit is 3.16536 ACH50 +in.air_leakage_to_outside_ach50 3.16585 Total infiltration to the dwelling unit is 3.16585 ACH50 +in.air_leakage_to_outside_ach50 3.16897 Total infiltration to the dwelling unit is 3.16897 ACH50 +in.air_leakage_to_outside_ach50 3.1844 Total infiltration to the dwelling unit is 3.1844 ACH50 +in.air_leakage_to_outside_ach50 3.18564 Total infiltration to the dwelling unit is 3.18564 ACH50 +in.air_leakage_to_outside_ach50 3.19388 Total infiltration to the dwelling unit is 3.19388 ACH50 +in.air_leakage_to_outside_ach50 3.19844 Total infiltration to the dwelling unit is 3.19844 ACH50 +in.air_leakage_to_outside_ach50 3.19956 Total infiltration to the dwelling unit is 3.19956 ACH50 +in.air_leakage_to_outside_ach50 3.2011 Total infiltration to the dwelling unit is 3.2011 ACH50 +in.air_leakage_to_outside_ach50 3.20632 Total infiltration to the dwelling unit is 3.20632 ACH50 +in.air_leakage_to_outside_ach50 3.21076 Total infiltration to the dwelling unit is 3.21075999999999 ACH50 +in.air_leakage_to_outside_ach50 3.211 Total infiltration to the dwelling unit is 3.211 ACH50 +in.air_leakage_to_outside_ach50 3.21368 Total infiltration to the dwelling unit is 3.21368 ACH50 +in.air_leakage_to_outside_ach50 3.22098 Total infiltration to the dwelling unit is 3.22098 ACH50 +in.air_leakage_to_outside_ach50 3.22284 Total infiltration to the dwelling unit is 3.22283999999999 ACH50 +in.air_leakage_to_outside_ach50 3.22335 Total infiltration to the dwelling unit is 3.22335 ACH50 +in.air_leakage_to_outside_ach50 3.22655 Total infiltration to the dwelling unit is 3.22655 ACH50 +in.air_leakage_to_outside_ach50 3.23365 Total infiltration to the dwelling unit is 3.23365 ACH50 +in.air_leakage_to_outside_ach50 3.24105 Total infiltration to the dwelling unit is 3.24104999999999 ACH50 +in.air_leakage_to_outside_ach50 3.24448 Total infiltration to the dwelling unit is 3.24448 ACH50 +in.air_leakage_to_outside_ach50 3.24504 Total infiltration to the dwelling unit is 3.24504 ACH50 +in.air_leakage_to_outside_ach50 3.24588 Total infiltration to the dwelling unit is 3.24588 ACH50 +in.air_leakage_to_outside_ach50 3.24725 Total infiltration to the dwelling unit is 3.24725 ACH50 +in.air_leakage_to_outside_ach50 3.2475 Total infiltration to the dwelling unit is 3.24749999999999 ACH50 +in.air_leakage_to_outside_ach50 3.2486 Total infiltration to the dwelling unit is 3.2486 ACH50 +in.air_leakage_to_outside_ach50 3.25552 Total infiltration to the dwelling unit is 3.25552 ACH50 +in.air_leakage_to_outside_ach50 3.25604 Total infiltration to the dwelling unit is 3.25604 ACH50 +in.air_leakage_to_outside_ach50 3.25608 Total infiltration to the dwelling unit is 3.25608 ACH50 +in.air_leakage_to_outside_ach50 3.25932 Total infiltration to the dwelling unit is 3.25932 ACH50 +in.air_leakage_to_outside_ach50 3.2625 Total infiltration to the dwelling unit is 3.26249999999999 ACH50 +in.air_leakage_to_outside_ach50 3.2706 Total infiltration to the dwelling unit is 3.2706 ACH50 +in.air_leakage_to_outside_ach50 3.27284 Total infiltration to the dwelling unit is 3.27284 ACH50 +in.air_leakage_to_outside_ach50 3.2748 Total infiltration to the dwelling unit is 3.2748 ACH50 +in.air_leakage_to_outside_ach50 3.2787 Total infiltration to the dwelling unit is 3.27869999999999 ACH50 +in.air_leakage_to_outside_ach50 3.28536 Total infiltration to the dwelling unit is 3.28536 ACH50 +in.air_leakage_to_outside_ach50 3.29585 Total infiltration to the dwelling unit is 3.29585 ACH50 +in.air_leakage_to_outside_ach50 3.2964 Total infiltration to the dwelling unit is 3.2964 ACH50 +in.air_leakage_to_outside_ach50 3.31002 Total infiltration to the dwelling unit is 3.31001999999999 ACH50 +in.air_leakage_to_outside_ach50 3.311 Total infiltration to the dwelling unit is 3.311 ACH50 +in.air_leakage_to_outside_ach50 3.31148 Total infiltration to the dwelling unit is 3.31148 ACH50 +in.air_leakage_to_outside_ach50 3.31485 Total infiltration to the dwelling unit is 3.31485 ACH50 +in.air_leakage_to_outside_ach50 3.31512 Total infiltration to the dwelling unit is 3.31512 ACH50 +in.air_leakage_to_outside_ach50 3.31948 Total infiltration to the dwelling unit is 3.31948 ACH50 +in.air_leakage_to_outside_ach50 3.3248 Total infiltration to the dwelling unit is 3.32479999999999 ACH50 +in.air_leakage_to_outside_ach50 3.32675 Total infiltration to the dwelling unit is 3.32675 ACH50 +in.air_leakage_to_outside_ach50 3.32775 Total infiltration to the dwelling unit is 3.32775 ACH50 +in.air_leakage_to_outside_ach50 3.32925 Total infiltration to the dwelling unit is 3.32925 ACH50 +in.air_leakage_to_outside_ach50 3.33222 Total infiltration to the dwelling unit is 3.33222 ACH50 +in.air_leakage_to_outside_ach50 3.33628 Total infiltration to the dwelling unit is 3.33628 ACH50 +in.air_leakage_to_outside_ach50 3.3378 Total infiltration to the dwelling unit is 3.3378 ACH50 +in.air_leakage_to_outside_ach50 3.3407 Total infiltration to the dwelling unit is 3.3407 ACH50 +in.air_leakage_to_outside_ach50 3.3446 Total infiltration to the dwelling unit is 3.3446 ACH50 +in.air_leakage_to_outside_ach50 3.35144 Total infiltration to the dwelling unit is 3.35144 ACH50 +in.air_leakage_to_outside_ach50 3.35352 Total infiltration to the dwelling unit is 3.35351999999999 ACH50 +in.air_leakage_to_outside_ach50 3.35385 Total infiltration to the dwelling unit is 3.35385 ACH50 +in.air_leakage_to_outside_ach50 3.35476 Total infiltration to the dwelling unit is 3.35476 ACH50 +in.air_leakage_to_outside_ach50 3.35478 Total infiltration to the dwelling unit is 3.35478 ACH50 +in.air_leakage_to_outside_ach50 3.3615 Total infiltration to the dwelling unit is 3.3615 ACH50 +in.air_leakage_to_outside_ach50 3.37008 Total infiltration to the dwelling unit is 3.37008 ACH50 +in.air_leakage_to_outside_ach50 3.3702 Total infiltration to the dwelling unit is 3.37019999999999 ACH50 +in.air_leakage_to_outside_ach50 3.37064 Total infiltration to the dwelling unit is 3.37064 ACH50 +in.air_leakage_to_outside_ach50 3.3714 Total infiltration to the dwelling unit is 3.3714 ACH50 +in.air_leakage_to_outside_ach50 3.3786 Total infiltration to the dwelling unit is 3.3786 ACH50 +in.air_leakage_to_outside_ach50 3.38004 Total infiltration to the dwelling unit is 3.38003999999999 ACH50 +in.air_leakage_to_outside_ach50 3.38465 Total infiltration to the dwelling unit is 3.38465 ACH50 +in.air_leakage_to_outside_ach50 3.38564 Total infiltration to the dwelling unit is 3.38564 ACH50 +in.air_leakage_to_outside_ach50 3.3869 Total infiltration to the dwelling unit is 3.3869 ACH50 +in.air_leakage_to_outside_ach50 3.3897 Total infiltration to the dwelling unit is 3.38969999999999 ACH50 +in.air_leakage_to_outside_ach50 3.39955 Total infiltration to the dwelling unit is 3.39955 ACH50 +in.air_leakage_to_outside_ach50 3.40144 Total infiltration to the dwelling unit is 3.40144 ACH50 +in.air_leakage_to_outside_ach50 3.40895 Total infiltration to the dwelling unit is 3.40895 ACH50 +in.air_leakage_to_outside_ach50 3.41192 Total infiltration to the dwelling unit is 3.41192 ACH50 +in.air_leakage_to_outside_ach50 3.416 Total infiltration to the dwelling unit is 3.416 ACH50 +in.air_leakage_to_outside_ach50 3.4164 Total infiltration to the dwelling unit is 3.4164 ACH50 +in.air_leakage_to_outside_ach50 3.42088 Total infiltration to the dwelling unit is 3.42088 ACH50 +in.air_leakage_to_outside_ach50 3.42132 Total infiltration to the dwelling unit is 3.42132 ACH50 +in.air_leakage_to_outside_ach50 3.42655 Total infiltration to the dwelling unit is 3.42654999999999 ACH50 +in.air_leakage_to_outside_ach50 3.42936 Total infiltration to the dwelling unit is 3.42936 ACH50 +in.air_leakage_to_outside_ach50 3.43035 Total infiltration to the dwelling unit is 3.43035 ACH50 +in.air_leakage_to_outside_ach50 3.4305 Total infiltration to the dwelling unit is 3.4305 ACH50 +in.air_leakage_to_outside_ach50 3.43076 Total infiltration to the dwelling unit is 3.43076 ACH50 +in.air_leakage_to_outside_ach50 3.43752 Total infiltration to the dwelling unit is 3.43752 ACH50 +in.air_leakage_to_outside_ach50 3.4428 Total infiltration to the dwelling unit is 3.44279999999999 ACH50 +in.air_leakage_to_outside_ach50 3.44622 Total infiltration to the dwelling unit is 3.44622 ACH50 +in.air_leakage_to_outside_ach50 3.4492 Total infiltration to the dwelling unit is 3.4492 ACH50 +in.air_leakage_to_outside_ach50 3.4508 Total infiltration to the dwelling unit is 3.4508 ACH50 +in.air_leakage_to_outside_ach50 3.45918 Total infiltration to the dwelling unit is 3.45918 ACH50 +in.air_leakage_to_outside_ach50 3.46025 Total infiltration to the dwelling unit is 3.46025 ACH50 +in.air_leakage_to_outside_ach50 3.4641 Total infiltration to the dwelling unit is 3.4641 ACH50 +in.air_leakage_to_outside_ach50 3.46732 Total infiltration to the dwelling unit is 3.46732 ACH50 +in.air_leakage_to_outside_ach50 3.47784 Total infiltration to the dwelling unit is 3.47784 ACH50 +in.air_leakage_to_outside_ach50 3.48243 Total infiltration to the dwelling unit is 3.48243 ACH50 +in.air_leakage_to_outside_ach50 3.48464 Total infiltration to the dwelling unit is 3.48464 ACH50 +in.air_leakage_to_outside_ach50 3.48524 Total infiltration to the dwelling unit is 3.48524 ACH50 +in.air_leakage_to_outside_ach50 3.48672 Total infiltration to the dwelling unit is 3.48672 ACH50 +in.air_leakage_to_outside_ach50 3.5 Total infiltration to the dwelling unit is 3.5 ACH50 +in.air_leakage_to_outside_ach50 3.50195 Total infiltration to the dwelling unit is 3.50195 ACH50 +in.air_leakage_to_outside_ach50 3.5036 Total infiltration to the dwelling unit is 3.5036 ACH50 +in.air_leakage_to_outside_ach50 3.5068 Total infiltration to the dwelling unit is 3.5068 ACH50 +in.air_leakage_to_outside_ach50 3.51642 Total infiltration to the dwelling unit is 3.51642 ACH50 +in.air_leakage_to_outside_ach50 3.51972 Total infiltration to the dwelling unit is 3.51972 ACH50 +in.air_leakage_to_outside_ach50 3.5326 Total infiltration to the dwelling unit is 3.5326 ACH50 +in.air_leakage_to_outside_ach50 3.5334 Total infiltration to the dwelling unit is 3.5334 ACH50 +in.air_leakage_to_outside_ach50 3.53568 Total infiltration to the dwelling unit is 3.53568 ACH50 +in.air_leakage_to_outside_ach50 3.5371 Total infiltration to the dwelling unit is 3.53709999999999 ACH50 +in.air_leakage_to_outside_ach50 3.54105 Total infiltration to the dwelling unit is 3.54105 ACH50 +in.air_leakage_to_outside_ach50 3.54176 Total infiltration to the dwelling unit is 3.54176 ACH50 +in.air_leakage_to_outside_ach50 3.54464 Total infiltration to the dwelling unit is 3.54464 ACH50 +in.air_leakage_to_outside_ach50 3.5478 Total infiltration to the dwelling unit is 3.5478 ACH50 +in.air_leakage_to_outside_ach50 3.55225 Total infiltration to the dwelling unit is 3.55225 ACH50 +in.air_leakage_to_outside_ach50 3.5532 Total infiltration to the dwelling unit is 3.55319999999999 ACH50 +in.air_leakage_to_outside_ach50 3.55456 Total infiltration to the dwelling unit is 3.55456 ACH50 +in.air_leakage_to_outside_ach50 3.5664 Total infiltration to the dwelling unit is 3.5664 ACH50 +in.air_leakage_to_outside_ach50 3.57432 Total infiltration to the dwelling unit is 3.57432 ACH50 +in.air_leakage_to_outside_ach50 3.578 Total infiltration to the dwelling unit is 3.578 ACH50 +in.air_leakage_to_outside_ach50 3.58158 Total infiltration to the dwelling unit is 3.58157999999999 ACH50 +in.air_leakage_to_outside_ach50 3.5824 Total infiltration to the dwelling unit is 3.5824 ACH50 +in.air_leakage_to_outside_ach50 3.58268 Total infiltration to the dwelling unit is 3.58268 ACH50 +in.air_leakage_to_outside_ach50 3.58416 Total infiltration to the dwelling unit is 3.58416 ACH50 +in.air_leakage_to_outside_ach50 3.5848 Total infiltration to the dwelling unit is 3.5848 ACH50 +in.air_leakage_to_outside_ach50 3.60816 Total infiltration to the dwelling unit is 3.60816 ACH50 +in.air_leakage_to_outside_ach50 3.6146 Total infiltration to the dwelling unit is 3.6146 ACH50 +in.air_leakage_to_outside_ach50 3.61485 Total infiltration to the dwelling unit is 3.61485 ACH50 +in.air_leakage_to_outside_ach50 3.61613 Total infiltration to the dwelling unit is 3.61613 ACH50 +in.air_leakage_to_outside_ach50 3.61675 Total infiltration to the dwelling unit is 3.61674999999999 ACH50 +in.air_leakage_to_outside_ach50 3.62168 Total infiltration to the dwelling unit is 3.62168 ACH50 +in.air_leakage_to_outside_ach50 3.62454 Total infiltration to the dwelling unit is 3.62454 ACH50 +in.air_leakage_to_outside_ach50 3.62642 Total infiltration to the dwelling unit is 3.62641999999999 ACH50 +in.air_leakage_to_outside_ach50 3.62688 Total infiltration to the dwelling unit is 3.62688 ACH50 +in.air_leakage_to_outside_ach50 3.62776 Total infiltration to the dwelling unit is 3.62776 ACH50 +in.air_leakage_to_outside_ach50 3.62804 Total infiltration to the dwelling unit is 3.62804 ACH50 +in.air_leakage_to_outside_ach50 3.63294 Total infiltration to the dwelling unit is 3.63293999999999 ACH50 +in.air_leakage_to_outside_ach50 3.6358 Total infiltration to the dwelling unit is 3.6358 ACH50 +in.air_leakage_to_outside_ach50 3.6359 Total infiltration to the dwelling unit is 3.6359 ACH50 +in.air_leakage_to_outside_ach50 3.63972 Total infiltration to the dwelling unit is 3.63971999999999 ACH50 +in.air_leakage_to_outside_ach50 3.64015 Total infiltration to the dwelling unit is 3.64014999999999 ACH50 +in.air_leakage_to_outside_ach50 3.6402 Total infiltration to the dwelling unit is 3.6402 ACH50 +in.air_leakage_to_outside_ach50 3.65352 Total infiltration to the dwelling unit is 3.65352 ACH50 +in.air_leakage_to_outside_ach50 3.65756 Total infiltration to the dwelling unit is 3.65756 ACH50 +in.air_leakage_to_outside_ach50 3.65972 Total infiltration to the dwelling unit is 3.65972 ACH50 +in.air_leakage_to_outside_ach50 3.66618 Total infiltration to the dwelling unit is 3.66617999999999 ACH50 +in.air_leakage_to_outside_ach50 3.6693 Total infiltration to the dwelling unit is 3.6693 ACH50 +in.air_leakage_to_outside_ach50 3.66944 Total infiltration to the dwelling unit is 3.66944 ACH50 +in.air_leakage_to_outside_ach50 3.6747 Total infiltration to the dwelling unit is 3.6747 ACH50 +in.air_leakage_to_outside_ach50 3.68568 Total infiltration to the dwelling unit is 3.68568 ACH50 +in.air_leakage_to_outside_ach50 3.6861 Total infiltration to the dwelling unit is 3.68609999999999 ACH50 +in.air_leakage_to_outside_ach50 3.6956 Total infiltration to the dwelling unit is 3.6956 ACH50 +in.air_leakage_to_outside_ach50 3.6967 Total infiltration to the dwelling unit is 3.6967 ACH50 +in.air_leakage_to_outside_ach50 3.7011 Total infiltration to the dwelling unit is 3.7011 ACH50 +in.air_leakage_to_outside_ach50 3.70495 Total infiltration to the dwelling unit is 3.70495 ACH50 +in.air_leakage_to_outside_ach50 3.70596 Total infiltration to the dwelling unit is 3.70596 ACH50 +in.air_leakage_to_outside_ach50 3.708 Total infiltration to the dwelling unit is 3.708 ACH50 +in.air_leakage_to_outside_ach50 3.7116 Total infiltration to the dwelling unit is 3.7116 ACH50 +in.air_leakage_to_outside_ach50 3.71165 Total infiltration to the dwelling unit is 3.71165 ACH50 +in.air_leakage_to_outside_ach50 3.71245 Total infiltration to the dwelling unit is 3.71245 ACH50 +in.air_leakage_to_outside_ach50 3.71305 Total infiltration to the dwelling unit is 3.71305 ACH50 +in.air_leakage_to_outside_ach50 3.71658 Total infiltration to the dwelling unit is 3.71657999999999 ACH50 +in.air_leakage_to_outside_ach50 3.73282 Total infiltration to the dwelling unit is 3.73282 ACH50 +in.air_leakage_to_outside_ach50 3.7335 Total infiltration to the dwelling unit is 3.7335 ACH50 +in.air_leakage_to_outside_ach50 3.73494 Total infiltration to the dwelling unit is 3.73494 ACH50 +in.air_leakage_to_outside_ach50 3.73864 Total infiltration to the dwelling unit is 3.73864 ACH50 +in.air_leakage_to_outside_ach50 3.75781 Total infiltration to the dwelling unit is 3.75781 ACH50 +in.air_leakage_to_outside_ach50 3.75998 Total infiltration to the dwelling unit is 3.75997999999999 ACH50 +in.air_leakage_to_outside_ach50 3.76325 Total infiltration to the dwelling unit is 3.76325 ACH50 +in.air_leakage_to_outside_ach50 3.77 Total infiltration to the dwelling unit is 3.77 ACH50 +in.air_leakage_to_outside_ach50 3.77728 Total infiltration to the dwelling unit is 3.77728 ACH50 +in.air_leakage_to_outside_ach50 3.7779 Total infiltration to the dwelling unit is 3.7779 ACH50 +in.air_leakage_to_outside_ach50 3.78588 Total infiltration to the dwelling unit is 3.78587999999999 ACH50 +in.air_leakage_to_outside_ach50 3.78686 Total infiltration to the dwelling unit is 3.78686 ACH50 +in.air_leakage_to_outside_ach50 3.7912 Total infiltration to the dwelling unit is 3.7912 ACH50 +in.air_leakage_to_outside_ach50 3.7915 Total infiltration to the dwelling unit is 3.7915 ACH50 +in.air_leakage_to_outside_ach50 3.79505 Total infiltration to the dwelling unit is 3.79505 ACH50 +in.air_leakage_to_outside_ach50 3.79902 Total infiltration to the dwelling unit is 3.79902 ACH50 +in.air_leakage_to_outside_ach50 3.8011 Total infiltration to the dwelling unit is 3.8011 ACH50 +in.air_leakage_to_outside_ach50 3.802 Total infiltration to the dwelling unit is 3.802 ACH50 +in.air_leakage_to_outside_ach50 3.8048 Total infiltration to the dwelling unit is 3.80479999999999 ACH50 +in.air_leakage_to_outside_ach50 3.80625 Total infiltration to the dwelling unit is 3.80624999999999 ACH50 +in.air_leakage_to_outside_ach50 3.8117 Total infiltration to the dwelling unit is 3.8117 ACH50 +in.air_leakage_to_outside_ach50 3.8206 Total infiltration to the dwelling unit is 3.82059999999999 ACH50 +in.air_leakage_to_outside_ach50 3.8267 Total infiltration to the dwelling unit is 3.8267 ACH50 +in.air_leakage_to_outside_ach50 3.8315 Total infiltration to the dwelling unit is 3.8315 ACH50 +in.air_leakage_to_outside_ach50 3.83292 Total infiltration to the dwelling unit is 3.83292 ACH50 +in.air_leakage_to_outside_ach50 3.83315 Total infiltration to the dwelling unit is 3.83315 ACH50 +in.air_leakage_to_outside_ach50 3.8392 Total infiltration to the dwelling unit is 3.8392 ACH50 +in.air_leakage_to_outside_ach50 3.84205 Total infiltration to the dwelling unit is 3.84205 ACH50 +in.air_leakage_to_outside_ach50 3.85584 Total infiltration to the dwelling unit is 3.85584 ACH50 +in.air_leakage_to_outside_ach50 3.8616 Total infiltration to the dwelling unit is 3.8616 ACH50 +in.air_leakage_to_outside_ach50 3.86169 Total infiltration to the dwelling unit is 3.86169 ACH50 +in.air_leakage_to_outside_ach50 3.8645 Total infiltration to the dwelling unit is 3.8645 ACH50 +in.air_leakage_to_outside_ach50 3.86802 Total infiltration to the dwelling unit is 3.86801999999999 ACH50 +in.air_leakage_to_outside_ach50 3.87975 Total infiltration to the dwelling unit is 3.87975 ACH50 +in.air_leakage_to_outside_ach50 3.88759 Total infiltration to the dwelling unit is 3.88759 ACH50 +in.air_leakage_to_outside_ach50 3.88926 Total infiltration to the dwelling unit is 3.88925999999999 ACH50 +in.air_leakage_to_outside_ach50 3.8967 Total infiltration to the dwelling unit is 3.8967 ACH50 +in.air_leakage_to_outside_ach50 3.8973 Total infiltration to the dwelling unit is 3.8973 ACH50 +in.air_leakage_to_outside_ach50 3.89936 Total infiltration to the dwelling unit is 3.89936 ACH50 +in.air_leakage_to_outside_ach50 3.9061 Total infiltration to the dwelling unit is 3.9061 ACH50 +in.air_leakage_to_outside_ach50 3.90835 Total infiltration to the dwelling unit is 3.90835 ACH50 +in.air_leakage_to_outside_ach50 3.91244 Total infiltration to the dwelling unit is 3.91243999999999 ACH50 +in.air_leakage_to_outside_ach50 3.91391 Total infiltration to the dwelling unit is 3.91391 ACH50 +in.air_leakage_to_outside_ach50 3.9268 Total infiltration to the dwelling unit is 3.92679999999999 ACH50 +in.air_leakage_to_outside_ach50 3.93444 Total infiltration to the dwelling unit is 3.93444 ACH50 +in.air_leakage_to_outside_ach50 3.9358 Total infiltration to the dwelling unit is 3.9358 ACH50 +in.air_leakage_to_outside_ach50 3.93595 Total infiltration to the dwelling unit is 3.93594999999999 ACH50 +in.air_leakage_to_outside_ach50 3.9413 Total infiltration to the dwelling unit is 3.9413 ACH50 +in.air_leakage_to_outside_ach50 3.94338 Total infiltration to the dwelling unit is 3.94337999999999 ACH50 +in.air_leakage_to_outside_ach50 3.9528 Total infiltration to the dwelling unit is 3.9528 ACH50 +in.air_leakage_to_outside_ach50 3.95465 Total infiltration to the dwelling unit is 3.95464999999999 ACH50 +in.air_leakage_to_outside_ach50 3.95502 Total infiltration to the dwelling unit is 3.95502 ACH50 +in.air_leakage_to_outside_ach50 3.9567 Total infiltration to the dwelling unit is 3.9567 ACH50 +in.air_leakage_to_outside_ach50 3.97782 Total infiltration to the dwelling unit is 3.97781999999999 ACH50 +in.air_leakage_to_outside_ach50 3.97992 Total infiltration to the dwelling unit is 3.97992 ACH50 +in.air_leakage_to_outside_ach50 3.9805 Total infiltration to the dwelling unit is 3.9805 ACH50 +in.air_leakage_to_outside_ach50 3.98502 Total infiltration to the dwelling unit is 3.98502 ACH50 +in.air_leakage_to_outside_ach50 3.99235 Total infiltration to the dwelling unit is 3.99235 ACH50 +in.air_leakage_to_outside_ach50 3.9933 Total infiltration to the dwelling unit is 3.99329999999999 ACH50 +in.air_leakage_to_outside_ach50 3.9934 Total infiltration to the dwelling unit is 3.9934 ACH50 +in.air_leakage_to_outside_ach50 3.99385 Total infiltration to the dwelling unit is 3.99385 ACH50 +in.air_leakage_to_outside_ach50 3.9951 Total infiltration to the dwelling unit is 3.9951 ACH50 +in.air_leakage_to_outside_ach50 3.997 Total infiltration to the dwelling unit is 3.997 ACH50 +in.air_leakage_to_outside_ach50 3.99805 Total infiltration to the dwelling unit is 3.99805 ACH50 +in.air_leakage_to_outside_ach50 4 Total infiltration to the dwelling unit is 4 ACH50 +in.air_leakage_to_outside_ach50 4.00092 Total infiltration to the dwelling unit is 4.00092 ACH50 +in.air_leakage_to_outside_ach50 4.0078 Total infiltration to the dwelling unit is 4.0078 ACH50 +in.air_leakage_to_outside_ach50 4.0079 Total infiltration to the dwelling unit is 4.00789999999999 ACH50 +in.air_leakage_to_outside_ach50 4.00884 Total infiltration to the dwelling unit is 4.00883999999999 ACH50 +in.air_leakage_to_outside_ach50 4.01044 Total infiltration to the dwelling unit is 4.01044 ACH50 +in.air_leakage_to_outside_ach50 4.0112 Total infiltration to the dwelling unit is 4.0112 ACH50 +in.air_leakage_to_outside_ach50 4.01675 Total infiltration to the dwelling unit is 4.01675 ACH50 +in.air_leakage_to_outside_ach50 4.02059 Total infiltration to the dwelling unit is 4.02059 ACH50 +in.air_leakage_to_outside_ach50 4.02462 Total infiltration to the dwelling unit is 4.02462 ACH50 +in.air_leakage_to_outside_ach50 4.02885 Total infiltration to the dwelling unit is 4.02885 ACH50 +in.air_leakage_to_outside_ach50 4.0338 Total infiltration to the dwelling unit is 4.0338 ACH50 +in.air_leakage_to_outside_ach50 4.03571 Total infiltration to the dwelling unit is 4.03571 ACH50 +in.air_leakage_to_outside_ach50 4.0424 Total infiltration to the dwelling unit is 4.0424 ACH50 +in.air_leakage_to_outside_ach50 4.05432 Total infiltration to the dwelling unit is 4.05432 ACH50 +in.air_leakage_to_outside_ach50 4.0556 Total infiltration to the dwelling unit is 4.0556 ACH50 +in.air_leakage_to_outside_ach50 4.05748 Total infiltration to the dwelling unit is 4.05748 ACH50 +in.air_leakage_to_outside_ach50 4.05923 Total infiltration to the dwelling unit is 4.05923 ACH50 +in.air_leakage_to_outside_ach50 4.06158 Total infiltration to the dwelling unit is 4.06158 ACH50 +in.air_leakage_to_outside_ach50 4.06428 Total infiltration to the dwelling unit is 4.06428 ACH50 +in.air_leakage_to_outside_ach50 4.06784 Total infiltration to the dwelling unit is 4.06783999999999 ACH50 +in.air_leakage_to_outside_ach50 4.0694 Total infiltration to the dwelling unit is 4.0694 ACH50 +in.air_leakage_to_outside_ach50 4.07005 Total infiltration to the dwelling unit is 4.07005 ACH50 +in.air_leakage_to_outside_ach50 4.0701 Total infiltration to the dwelling unit is 4.0701 ACH50 +in.air_leakage_to_outside_ach50 4.07415 Total infiltration to the dwelling unit is 4.07415 ACH50 +in.air_leakage_to_outside_ach50 4.07925 Total infiltration to the dwelling unit is 4.07925 ACH50 +in.air_leakage_to_outside_ach50 4.07946 Total infiltration to the dwelling unit is 4.07946 ACH50 +in.air_leakage_to_outside_ach50 4.084 Total infiltration to the dwelling unit is 4.084 ACH50 +in.air_leakage_to_outside_ach50 4.09074 Total infiltration to the dwelling unit is 4.09074 ACH50 +in.air_leakage_to_outside_ach50 4.09105 Total infiltration to the dwelling unit is 4.09105 ACH50 +in.air_leakage_to_outside_ach50 4.10249 Total infiltration to the dwelling unit is 4.10248999999999 ACH50 +in.air_leakage_to_outside_ach50 4.10634 Total infiltration to the dwelling unit is 4.10634 ACH50 +in.air_leakage_to_outside_ach50 4.11186 Total infiltration to the dwelling unit is 4.11186 ACH50 +in.air_leakage_to_outside_ach50 4.1133 Total infiltration to the dwelling unit is 4.1133 ACH50 +in.air_leakage_to_outside_ach50 4.1188 Total infiltration to the dwelling unit is 4.1188 ACH50 +in.air_leakage_to_outside_ach50 4.1205 Total infiltration to the dwelling unit is 4.1205 ACH50 +in.air_leakage_to_outside_ach50 4.1223 Total infiltration to the dwelling unit is 4.1223 ACH50 +in.air_leakage_to_outside_ach50 4.13272 Total infiltration to the dwelling unit is 4.13272 ACH50 +in.air_leakage_to_outside_ach50 4.134 Total infiltration to the dwelling unit is 4.134 ACH50 +in.air_leakage_to_outside_ach50 4.13875 Total infiltration to the dwelling unit is 4.13875 ACH50 +in.air_leakage_to_outside_ach50 4.13935 Total infiltration to the dwelling unit is 4.13935 ACH50 +in.air_leakage_to_outside_ach50 4.1439 Total infiltration to the dwelling unit is 4.14389999999999 ACH50 +in.air_leakage_to_outside_ach50 4.1454 Total infiltration to the dwelling unit is 4.14539999999999 ACH50 +in.air_leakage_to_outside_ach50 4.14935 Total infiltration to the dwelling unit is 4.14935 ACH50 +in.air_leakage_to_outside_ach50 4.1523 Total infiltration to the dwelling unit is 4.1523 ACH50 +in.air_leakage_to_outside_ach50 4.156 Total infiltration to the dwelling unit is 4.156 ACH50 +in.air_leakage_to_outside_ach50 4.15692 Total infiltration to the dwelling unit is 4.15691999999999 ACH50 +in.air_leakage_to_outside_ach50 4.15968 Total infiltration to the dwelling unit is 4.15968 ACH50 +in.air_leakage_to_outside_ach50 4.16045 Total infiltration to the dwelling unit is 4.16045 ACH50 +in.air_leakage_to_outside_ach50 4.17035 Total infiltration to the dwelling unit is 4.17035 ACH50 +in.air_leakage_to_outside_ach50 4.17225 Total infiltration to the dwelling unit is 4.17225 ACH50 +in.air_leakage_to_outside_ach50 4.17851 Total infiltration to the dwelling unit is 4.17850999999999 ACH50 +in.air_leakage_to_outside_ach50 4.18075 Total infiltration to the dwelling unit is 4.18075 ACH50 +in.air_leakage_to_outside_ach50 4.18152 Total infiltration to the dwelling unit is 4.18152 ACH50 +in.air_leakage_to_outside_ach50 4.1893 Total infiltration to the dwelling unit is 4.1893 ACH50 +in.air_leakage_to_outside_ach50 4.18992 Total infiltration to the dwelling unit is 4.18992 ACH50 +in.air_leakage_to_outside_ach50 4.19235 Total infiltration to the dwelling unit is 4.19235 ACH50 +in.air_leakage_to_outside_ach50 4.19345 Total infiltration to the dwelling unit is 4.19345 ACH50 +in.air_leakage_to_outside_ach50 4.19975 Total infiltration to the dwelling unit is 4.19975 ACH50 +in.air_leakage_to_outside_ach50 4.20234 Total infiltration to the dwelling unit is 4.20233999999999 ACH50 +in.air_leakage_to_outside_ach50 4.20432 Total infiltration to the dwelling unit is 4.20432 ACH50 +in.air_leakage_to_outside_ach50 4.20816 Total infiltration to the dwelling unit is 4.20815999999999 ACH50 +in.air_leakage_to_outside_ach50 4.2126 Total infiltration to the dwelling unit is 4.2126 ACH50 +in.air_leakage_to_outside_ach50 4.2133 Total infiltration to the dwelling unit is 4.2133 ACH50 +in.air_leakage_to_outside_ach50 4.21425 Total infiltration to the dwelling unit is 4.21425 ACH50 +in.air_leakage_to_outside_ach50 4.2248 Total infiltration to the dwelling unit is 4.2248 ACH50 +in.air_leakage_to_outside_ach50 4.2254 Total infiltration to the dwelling unit is 4.2254 ACH50 +in.air_leakage_to_outside_ach50 4.22863 Total infiltration to the dwelling unit is 4.22863 ACH50 +in.air_leakage_to_outside_ach50 4.2301 Total infiltration to the dwelling unit is 4.2301 ACH50 +in.air_leakage_to_outside_ach50 4.23136 Total infiltration to the dwelling unit is 4.23136 ACH50 +in.air_leakage_to_outside_ach50 4.23205 Total infiltration to the dwelling unit is 4.23205 ACH50 +in.air_leakage_to_outside_ach50 4.23843 Total infiltration to the dwelling unit is 4.23843 ACH50 +in.air_leakage_to_outside_ach50 4.2469 Total infiltration to the dwelling unit is 4.2469 ACH50 +in.air_leakage_to_outside_ach50 4.24752 Total infiltration to the dwelling unit is 4.24752 ACH50 +in.air_leakage_to_outside_ach50 4.24926 Total infiltration to the dwelling unit is 4.24926 ACH50 +in.air_leakage_to_outside_ach50 4.2518 Total infiltration to the dwelling unit is 4.2518 ACH50 +in.air_leakage_to_outside_ach50 4.2627 Total infiltration to the dwelling unit is 4.2627 ACH50 +in.air_leakage_to_outside_ach50 4.2649 Total infiltration to the dwelling unit is 4.2649 ACH50 +in.air_leakage_to_outside_ach50 4.26608 Total infiltration to the dwelling unit is 4.26608 ACH50 +in.air_leakage_to_outside_ach50 4.27 Total infiltration to the dwelling unit is 4.27 ACH50 +in.air_leakage_to_outside_ach50 4.2705 Total infiltration to the dwelling unit is 4.2705 ACH50 +in.air_leakage_to_outside_ach50 4.27665 Total infiltration to the dwelling unit is 4.27665 ACH50 +in.air_leakage_to_outside_ach50 4.28085 Total infiltration to the dwelling unit is 4.28085 ACH50 +in.air_leakage_to_outside_ach50 4.28785 Total infiltration to the dwelling unit is 4.28785 ACH50 +in.air_leakage_to_outside_ach50 4.28845 Total infiltration to the dwelling unit is 4.28845 ACH50 +in.air_leakage_to_outside_ach50 4.2936 Total infiltration to the dwelling unit is 4.2936 ACH50 +in.air_leakage_to_outside_ach50 4.29464 Total infiltration to the dwelling unit is 4.29464 ACH50 +in.air_leakage_to_outside_ach50 4.29712 Total infiltration to the dwelling unit is 4.29712 ACH50 +in.air_leakage_to_outside_ach50 4.30045 Total infiltration to the dwelling unit is 4.30045 ACH50 +in.air_leakage_to_outside_ach50 4.3035 Total infiltration to the dwelling unit is 4.3035 ACH50 +in.air_leakage_to_outside_ach50 4.3115 Total infiltration to the dwelling unit is 4.3115 ACH50 +in.air_leakage_to_outside_ach50 4.32672 Total infiltration to the dwelling unit is 4.32672 ACH50 +in.air_leakage_to_outside_ach50 4.32784 Total infiltration to the dwelling unit is 4.32784 ACH50 +in.air_leakage_to_outside_ach50 4.33415 Total infiltration to the dwelling unit is 4.33415 ACH50 +in.air_leakage_to_outside_ach50 4.3401 Total infiltration to the dwelling unit is 4.3401 ACH50 +in.air_leakage_to_outside_ach50 4.35 Total infiltration to the dwelling unit is 4.35 ACH50 +in.air_leakage_to_outside_ach50 4.35575 Total infiltration to the dwelling unit is 4.35575 ACH50 +in.air_leakage_to_outside_ach50 4.3558 Total infiltration to the dwelling unit is 4.3558 ACH50 +in.air_leakage_to_outside_ach50 4.3562 Total infiltration to the dwelling unit is 4.3562 ACH50 +in.air_leakage_to_outside_ach50 4.35655 Total infiltration to the dwelling unit is 4.35655 ACH50 +in.air_leakage_to_outside_ach50 4.35743 Total infiltration to the dwelling unit is 4.35743 ACH50 +in.air_leakage_to_outside_ach50 4.3664 Total infiltration to the dwelling unit is 4.3664 ACH50 +in.air_leakage_to_outside_ach50 4.36818 Total infiltration to the dwelling unit is 4.36818 ACH50 +in.air_leakage_to_outside_ach50 4.38048 Total infiltration to the dwelling unit is 4.38048 ACH50 +in.air_leakage_to_outside_ach50 4.40755 Total infiltration to the dwelling unit is 4.40755 ACH50 +in.air_leakage_to_outside_ach50 4.41336 Total infiltration to the dwelling unit is 4.41336 ACH50 +in.air_leakage_to_outside_ach50 4.41575 Total infiltration to the dwelling unit is 4.41575 ACH50 +in.air_leakage_to_outside_ach50 4.4196 Total infiltration to the dwelling unit is 4.4196 ACH50 +in.air_leakage_to_outside_ach50 4.4272 Total infiltration to the dwelling unit is 4.4272 ACH50 +in.air_leakage_to_outside_ach50 4.42825 Total infiltration to the dwelling unit is 4.42825 ACH50 +in.air_leakage_to_outside_ach50 4.4308 Total infiltration to the dwelling unit is 4.4308 ACH50 +in.air_leakage_to_outside_ach50 4.43219 Total infiltration to the dwelling unit is 4.43219 ACH50 +in.air_leakage_to_outside_ach50 4.44315 Total infiltration to the dwelling unit is 4.44315 ACH50 +in.air_leakage_to_outside_ach50 4.4432 Total infiltration to the dwelling unit is 4.4432 ACH50 +in.air_leakage_to_outside_ach50 4.44594 Total infiltration to the dwelling unit is 4.44594 ACH50 +in.air_leakage_to_outside_ach50 4.45398 Total infiltration to the dwelling unit is 4.45398 ACH50 +in.air_leakage_to_outside_ach50 4.45494 Total infiltration to the dwelling unit is 4.45494 ACH50 +in.air_leakage_to_outside_ach50 4.45566 Total infiltration to the dwelling unit is 4.45566 ACH50 +in.air_leakage_to_outside_ach50 4.46226 Total infiltration to the dwelling unit is 4.46226 ACH50 +in.air_leakage_to_outside_ach50 4.4679 Total infiltration to the dwelling unit is 4.4679 ACH50 +in.air_leakage_to_outside_ach50 4.47136 Total infiltration to the dwelling unit is 4.47136 ACH50 +in.air_leakage_to_outside_ach50 4.47304 Total infiltration to the dwelling unit is 4.47304 ACH50 +in.air_leakage_to_outside_ach50 4.478 Total infiltration to the dwelling unit is 4.478 ACH50 +in.air_leakage_to_outside_ach50 4.47835 Total infiltration to the dwelling unit is 4.47835 ACH50 +in.air_leakage_to_outside_ach50 4.481 Total infiltration to the dwelling unit is 4.481 ACH50 +in.air_leakage_to_outside_ach50 4.4936 Total infiltration to the dwelling unit is 4.4936 ACH50 +in.air_leakage_to_outside_ach50 4.50672 Total infiltration to the dwelling unit is 4.50672 ACH50 +in.air_leakage_to_outside_ach50 4.51269 Total infiltration to the dwelling unit is 4.51269 ACH50 +in.air_leakage_to_outside_ach50 4.5159 Total infiltration to the dwelling unit is 4.5159 ACH50 +in.air_leakage_to_outside_ach50 4.51825 Total infiltration to the dwelling unit is 4.51825 ACH50 +in.air_leakage_to_outside_ach50 4.5196 Total infiltration to the dwelling unit is 4.5196 ACH50 +in.air_leakage_to_outside_ach50 4.5271 Total infiltration to the dwelling unit is 4.5271 ACH50 +in.air_leakage_to_outside_ach50 4.5347 Total infiltration to the dwelling unit is 4.5347 ACH50 +in.air_leakage_to_outside_ach50 4.53505 Total infiltration to the dwelling unit is 4.53505 ACH50 +in.air_leakage_to_outside_ach50 4.53747 Total infiltration to the dwelling unit is 4.53747 ACH50 +in.air_leakage_to_outside_ach50 4.54475 Total infiltration to the dwelling unit is 4.54475 ACH50 +in.air_leakage_to_outside_ach50 4.5498 Total infiltration to the dwelling unit is 4.54979999999999 ACH50 +in.air_leakage_to_outside_ach50 4.55406 Total infiltration to the dwelling unit is 4.55406 ACH50 +in.air_leakage_to_outside_ach50 4.55418 Total infiltration to the dwelling unit is 4.55418 ACH50 +in.air_leakage_to_outside_ach50 4.55988 Total infiltration to the dwelling unit is 4.55988 ACH50 +in.air_leakage_to_outside_ach50 4.5669 Total infiltration to the dwelling unit is 4.56689999999999 ACH50 +in.air_leakage_to_outside_ach50 4.57122 Total infiltration to the dwelling unit is 4.57122 ACH50 +in.air_leakage_to_outside_ach50 4.57195 Total infiltration to the dwelling unit is 4.57195 ACH50 +in.air_leakage_to_outside_ach50 4.57248 Total infiltration to the dwelling unit is 4.57248 ACH50 +in.air_leakage_to_outside_ach50 4.573 Total infiltration to the dwelling unit is 4.57299999999999 ACH50 +in.air_leakage_to_outside_ach50 4.5738 Total infiltration to the dwelling unit is 4.5738 ACH50 +in.air_leakage_to_outside_ach50 4.574 Total infiltration to the dwelling unit is 4.574 ACH50 +in.air_leakage_to_outside_ach50 4.57404 Total infiltration to the dwelling unit is 4.57404 ACH50 +in.air_leakage_to_outside_ach50 4.57465 Total infiltration to the dwelling unit is 4.57465 ACH50 +in.air_leakage_to_outside_ach50 4.58336 Total infiltration to the dwelling unit is 4.58336 ACH50 +in.air_leakage_to_outside_ach50 4.5868 Total infiltration to the dwelling unit is 4.5868 ACH50 +in.air_leakage_to_outside_ach50 4.59018 Total infiltration to the dwelling unit is 4.59018 ACH50 +in.air_leakage_to_outside_ach50 4.59496 Total infiltration to the dwelling unit is 4.59496 ACH50 +in.air_leakage_to_outside_ach50 4.5978 Total infiltration to the dwelling unit is 4.59779999999999 ACH50 +in.air_leakage_to_outside_ach50 4.60704 Total infiltration to the dwelling unit is 4.60704 ACH50 +in.air_leakage_to_outside_ach50 4.6071 Total infiltration to the dwelling unit is 4.6071 ACH50 +in.air_leakage_to_outside_ach50 4.61046 Total infiltration to the dwelling unit is 4.61046 ACH50 +in.air_leakage_to_outside_ach50 4.61224 Total infiltration to the dwelling unit is 4.61224 ACH50 +in.air_leakage_to_outside_ach50 4.6195 Total infiltration to the dwelling unit is 4.6195 ACH50 +in.air_leakage_to_outside_ach50 4.62294 Total infiltration to the dwelling unit is 4.62294 ACH50 +in.air_leakage_to_outside_ach50 4.63245 Total infiltration to the dwelling unit is 4.63245 ACH50 +in.air_leakage_to_outside_ach50 4.63392 Total infiltration to the dwelling unit is 4.63392 ACH50 +in.air_leakage_to_outside_ach50 4.635 Total infiltration to the dwelling unit is 4.635 ACH50 +in.air_leakage_to_outside_ach50 4.63712 Total infiltration to the dwelling unit is 4.63712 ACH50 +in.air_leakage_to_outside_ach50 4.6374 Total infiltration to the dwelling unit is 4.6374 ACH50 +in.air_leakage_to_outside_ach50 4.64079 Total infiltration to the dwelling unit is 4.64079 ACH50 +in.air_leakage_to_outside_ach50 4.64896 Total infiltration to the dwelling unit is 4.64896 ACH50 +in.air_leakage_to_outside_ach50 4.6501 Total infiltration to the dwelling unit is 4.6501 ACH50 +in.air_leakage_to_outside_ach50 4.65885 Total infiltration to the dwelling unit is 4.65885 ACH50 +in.air_leakage_to_outside_ach50 4.6733 Total infiltration to the dwelling unit is 4.6733 ACH50 +in.air_leakage_to_outside_ach50 4.67676 Total infiltration to the dwelling unit is 4.67676 ACH50 +in.air_leakage_to_outside_ach50 4.67698 Total infiltration to the dwelling unit is 4.67697999999999 ACH50 +in.air_leakage_to_outside_ach50 4.68732 Total infiltration to the dwelling unit is 4.68732 ACH50 +in.air_leakage_to_outside_ach50 4.68856 Total infiltration to the dwelling unit is 4.68856 ACH50 +in.air_leakage_to_outside_ach50 4.69002 Total infiltration to the dwelling unit is 4.69002 ACH50 +in.air_leakage_to_outside_ach50 4.69296 Total infiltration to the dwelling unit is 4.69296 ACH50 +in.air_leakage_to_outside_ach50 4.69539 Total infiltration to the dwelling unit is 4.69539 ACH50 +in.air_leakage_to_outside_ach50 4.7061 Total infiltration to the dwelling unit is 4.7061 ACH50 +in.air_leakage_to_outside_ach50 4.7112 Total infiltration to the dwelling unit is 4.7112 ACH50 +in.air_leakage_to_outside_ach50 4.7125 Total infiltration to the dwelling unit is 4.7125 ACH50 +in.air_leakage_to_outside_ach50 4.71876 Total infiltration to the dwelling unit is 4.71876 ACH50 +in.air_leakage_to_outside_ach50 4.7216 Total infiltration to the dwelling unit is 4.7216 ACH50 +in.air_leakage_to_outside_ach50 4.72296 Total infiltration to the dwelling unit is 4.72296 ACH50 +in.air_leakage_to_outside_ach50 4.72956 Total infiltration to the dwelling unit is 4.72955999999999 ACH50 +in.air_leakage_to_outside_ach50 4.73004 Total infiltration to the dwelling unit is 4.73004 ACH50 +in.air_leakage_to_outside_ach50 4.7304 Total infiltration to the dwelling unit is 4.7304 ACH50 +in.air_leakage_to_outside_ach50 4.7376 Total infiltration to the dwelling unit is 4.7376 ACH50 +in.air_leakage_to_outside_ach50 4.73851 Total infiltration to the dwelling unit is 4.73851 ACH50 +in.air_leakage_to_outside_ach50 4.73892 Total infiltration to the dwelling unit is 4.73892 ACH50 +in.air_leakage_to_outside_ach50 4.739 Total infiltration to the dwelling unit is 4.739 ACH50 +in.air_leakage_to_outside_ach50 4.74166 Total infiltration to the dwelling unit is 4.74165999999999 ACH50 +in.air_leakage_to_outside_ach50 4.74336 Total infiltration to the dwelling unit is 4.74336 ACH50 +in.air_leakage_to_outside_ach50 4.74804 Total infiltration to the dwelling unit is 4.74804 ACH50 +in.air_leakage_to_outside_ach50 4.7525 Total infiltration to the dwelling unit is 4.7525 ACH50 +in.air_leakage_to_outside_ach50 4.75937 Total infiltration to the dwelling unit is 4.75937 ACH50 +in.air_leakage_to_outside_ach50 4.7667 Total infiltration to the dwelling unit is 4.7667 ACH50 +in.air_leakage_to_outside_ach50 4.77253 Total infiltration to the dwelling unit is 4.77253 ACH50 +in.air_leakage_to_outside_ach50 4.77544 Total infiltration to the dwelling unit is 4.77544 ACH50 +in.air_leakage_to_outside_ach50 4.7766 Total infiltration to the dwelling unit is 4.7766 ACH50 +in.air_leakage_to_outside_ach50 4.77888 Total infiltration to the dwelling unit is 4.77888 ACH50 +in.air_leakage_to_outside_ach50 4.7832 Total infiltration to the dwelling unit is 4.7832 ACH50 +in.air_leakage_to_outside_ach50 4.79082 Total infiltration to the dwelling unit is 4.79082 ACH50 +in.air_leakage_to_outside_ach50 4.79208 Total infiltration to the dwelling unit is 4.79207999999999 ACH50 +in.air_leakage_to_outside_ach50 4.79262 Total infiltration to the dwelling unit is 4.79261999999999 ACH50 +in.air_leakage_to_outside_ach50 4.79717 Total infiltration to the dwelling unit is 4.79716999999999 ACH50 +in.air_leakage_to_outside_ach50 4.79766 Total infiltration to the dwelling unit is 4.79766 ACH50 +in.air_leakage_to_outside_ach50 4.81344 Total infiltration to the dwelling unit is 4.81344 ACH50 +in.air_leakage_to_outside_ach50 4.8165 Total infiltration to the dwelling unit is 4.8165 ACH50 +in.air_leakage_to_outside_ach50 4.8198 Total infiltration to the dwelling unit is 4.8198 ACH50 +in.air_leakage_to_outside_ach50 4.8201 Total infiltration to the dwelling unit is 4.8201 ACH50 +in.air_leakage_to_outside_ach50 4.83105 Total infiltration to the dwelling unit is 4.83105 ACH50 +in.air_leakage_to_outside_ach50 4.83272 Total infiltration to the dwelling unit is 4.83272 ACH50 +in.air_leakage_to_outside_ach50 4.83462 Total infiltration to the dwelling unit is 4.83462 ACH50 +in.air_leakage_to_outside_ach50 4.83584 Total infiltration to the dwelling unit is 4.83584 ACH50 +in.air_leakage_to_outside_ach50 4.84392 Total infiltration to the dwelling unit is 4.84392 ACH50 +in.air_leakage_to_outside_ach50 4.84435 Total infiltration to the dwelling unit is 4.84435 ACH50 +in.air_leakage_to_outside_ach50 4.84974 Total infiltration to the dwelling unit is 4.84974 ACH50 +in.air_leakage_to_outside_ach50 4.8536 Total infiltration to the dwelling unit is 4.8536 ACH50 +in.air_leakage_to_outside_ach50 4.8548 Total infiltration to the dwelling unit is 4.8548 ACH50 +in.air_leakage_to_outside_ach50 4.86672 Total infiltration to the dwelling unit is 4.86672 ACH50 +in.air_leakage_to_outside_ach50 4.8742 Total infiltration to the dwelling unit is 4.8742 ACH50 +in.air_leakage_to_outside_ach50 4.88328 Total infiltration to the dwelling unit is 4.88328 ACH50 +in.air_leakage_to_outside_ach50 4.88406 Total infiltration to the dwelling unit is 4.88406 ACH50 +in.air_leakage_to_outside_ach50 4.88898 Total infiltration to the dwelling unit is 4.88898 ACH50 +in.air_leakage_to_outside_ach50 4.8924 Total infiltration to the dwelling unit is 4.8924 ACH50 +in.air_leakage_to_outside_ach50 4.8996 Total infiltration to the dwelling unit is 4.8996 ACH50 +in.air_leakage_to_outside_ach50 4.90273 Total infiltration to the dwelling unit is 4.90273 ACH50 +in.air_leakage_to_outside_ach50 4.90504 Total infiltration to the dwelling unit is 4.90504 ACH50 +in.air_leakage_to_outside_ach50 4.9059 Total infiltration to the dwelling unit is 4.9059 ACH50 +in.air_leakage_to_outside_ach50 4.9085 Total infiltration to the dwelling unit is 4.9085 ACH50 +in.air_leakage_to_outside_ach50 4.90926 Total infiltration to the dwelling unit is 4.90926 ACH50 +in.air_leakage_to_outside_ach50 4.90952 Total infiltration to the dwelling unit is 4.90952 ACH50 +in.air_leakage_to_outside_ach50 4.91344 Total infiltration to the dwelling unit is 4.91344 ACH50 +in.air_leakage_to_outside_ach50 4.9148 Total infiltration to the dwelling unit is 4.9148 ACH50 +in.air_leakage_to_outside_ach50 4.9348 Total infiltration to the dwelling unit is 4.9348 ACH50 +in.air_leakage_to_outside_ach50 4.94392 Total infiltration to the dwelling unit is 4.94392 ACH50 +in.air_leakage_to_outside_ach50 4.9446 Total infiltration to the dwelling unit is 4.9446 ACH50 +in.air_leakage_to_outside_ach50 4.95747 Total infiltration to the dwelling unit is 4.95747 ACH50 +in.air_leakage_to_outside_ach50 4.9665 Total infiltration to the dwelling unit is 4.9665 ACH50 +in.air_leakage_to_outside_ach50 4.96722 Total infiltration to the dwelling unit is 4.96722 ACH50 +in.air_leakage_to_outside_ach50 4.97268 Total infiltration to the dwelling unit is 4.97267999999999 ACH50 +in.air_leakage_to_outside_ach50 4.97315 Total infiltration to the dwelling unit is 4.97315 ACH50 +in.air_leakage_to_outside_ach50 4.9749 Total infiltration to the dwelling unit is 4.9749 ACH50 +in.air_leakage_to_outside_ach50 4.978 Total infiltration to the dwelling unit is 4.978 ACH50 +in.air_leakage_to_outside_ach50 4.97922 Total infiltration to the dwelling unit is 4.97922 ACH50 +in.air_leakage_to_outside_ach50 4.97992 Total infiltration to the dwelling unit is 4.97992 ACH50 +in.air_leakage_to_outside_ach50 4.9872 Total infiltration to the dwelling unit is 4.9872 ACH50 +in.air_leakage_to_outside_ach50 4.98888 Total infiltration to the dwelling unit is 4.98888 ACH50 +in.air_leakage_to_outside_ach50 5 Total infiltration to the dwelling unit is 5 ACH50 +in.air_leakage_to_outside_ach50 5.00442 Total infiltration to the dwelling unit is 5.00442 ACH50 +in.air_leakage_to_outside_ach50 5.0067 Total infiltration to the dwelling unit is 5.0067 ACH50 +in.air_leakage_to_outside_ach50 5.00975 Total infiltration to the dwelling unit is 5.00975 ACH50 +in.air_leakage_to_outside_ach50 5.01296 Total infiltration to the dwelling unit is 5.01296 ACH50 +in.air_leakage_to_outside_ach50 5.0169 Total infiltration to the dwelling unit is 5.0169 ACH50 +in.air_leakage_to_outside_ach50 5.02716 Total infiltration to the dwelling unit is 5.02716 ACH50 +in.air_leakage_to_outside_ach50 5.03214 Total infiltration to the dwelling unit is 5.03214 ACH50 +in.air_leakage_to_outside_ach50 5.0372 Total infiltration to the dwelling unit is 5.0372 ACH50 +in.air_leakage_to_outside_ach50 5.0397 Total infiltration to the dwelling unit is 5.0397 ACH50 +in.air_leakage_to_outside_ach50 5.053 Total infiltration to the dwelling unit is 5.053 ACH50 +in.air_leakage_to_outside_ach50 5.05596 Total infiltration to the dwelling unit is 5.05596 ACH50 +in.air_leakage_to_outside_ach50 5.0571 Total infiltration to the dwelling unit is 5.0571 ACH50 +in.air_leakage_to_outside_ach50 5.06536 Total infiltration to the dwelling unit is 5.06536 ACH50 +in.air_leakage_to_outside_ach50 5.07048 Total infiltration to the dwelling unit is 5.07048 ACH50 +in.air_leakage_to_outside_ach50 5.07846 Total infiltration to the dwelling unit is 5.07846 ACH50 +in.air_leakage_to_outside_ach50 5.09621 Total infiltration to the dwelling unit is 5.09620999999999 ACH50 +in.air_leakage_to_outside_ach50 5.10216 Total infiltration to the dwelling unit is 5.10216 ACH50 +in.air_leakage_to_outside_ach50 5.124 Total infiltration to the dwelling unit is 5.124 ACH50 +in.air_leakage_to_outside_ach50 5.1246 Total infiltration to the dwelling unit is 5.1246 ACH50 +in.air_leakage_to_outside_ach50 5.13198 Total infiltration to the dwelling unit is 5.13198 ACH50 +in.air_leakage_to_outside_ach50 5.14614 Total infiltration to the dwelling unit is 5.14614 ACH50 +in.air_leakage_to_outside_ach50 5.15736 Total infiltration to the dwelling unit is 5.15736 ACH50 +in.air_leakage_to_outside_ach50 5.16248 Total infiltration to the dwelling unit is 5.16248 ACH50 +in.air_leakage_to_outside_ach50 5.1642 Total infiltration to the dwelling unit is 5.16419999999999 ACH50 +in.air_leakage_to_outside_ach50 5.1659 Total infiltration to the dwelling unit is 5.1659 ACH50 +in.air_leakage_to_outside_ach50 5.1675 Total infiltration to the dwelling unit is 5.16749999999999 ACH50 +in.air_leakage_to_outside_ach50 5.1762 Total infiltration to the dwelling unit is 5.1762 ACH50 +in.air_leakage_to_outside_ach50 5.1806 Total infiltration to the dwelling unit is 5.1806 ACH50 +in.air_leakage_to_outside_ach50 5.18568 Total infiltration to the dwelling unit is 5.18568 ACH50 +in.air_leakage_to_outside_ach50 5.18693 Total infiltration to the dwelling unit is 5.18693 ACH50 +in.air_leakage_to_outside_ach50 5.1912 Total infiltration to the dwelling unit is 5.1912 ACH50 +in.air_leakage_to_outside_ach50 5.1956 Total infiltration to the dwelling unit is 5.1956 ACH50 +in.air_leakage_to_outside_ach50 5.19631 Total infiltration to the dwelling unit is 5.19631 ACH50 +in.air_leakage_to_outside_ach50 5.19743 Total infiltration to the dwelling unit is 5.19743 ACH50 +in.air_leakage_to_outside_ach50 5.19827 Total infiltration to the dwelling unit is 5.19827 ACH50 +in.air_leakage_to_outside_ach50 5.1996 Total infiltration to the dwelling unit is 5.1996 ACH50 +in.air_leakage_to_outside_ach50 5.20098 Total infiltration to the dwelling unit is 5.20097999999999 ACH50 +in.air_leakage_to_outside_ach50 5.2044 Total infiltration to the dwelling unit is 5.2044 ACH50 +in.air_leakage_to_outside_ach50 5.22696 Total infiltration to the dwelling unit is 5.22696 ACH50 +in.air_leakage_to_outside_ach50 5.22786 Total infiltration to the dwelling unit is 5.22786 ACH50 +in.air_leakage_to_outside_ach50 5.2374 Total infiltration to the dwelling unit is 5.2374 ACH50 +in.air_leakage_to_outside_ach50 5.24118 Total infiltration to the dwelling unit is 5.24118 ACH50 +in.air_leakage_to_outside_ach50 5.24592 Total infiltration to the dwelling unit is 5.24592 ACH50 +in.air_leakage_to_outside_ach50 5.26506 Total infiltration to the dwelling unit is 5.26506 ACH50 +in.air_leakage_to_outside_ach50 5.26855 Total infiltration to the dwelling unit is 5.26855 ACH50 +in.air_leakage_to_outside_ach50 5.2989 Total infiltration to the dwelling unit is 5.2989 ACH50 +in.air_leakage_to_outside_ach50 5.30201 Total infiltration to the dwelling unit is 5.30201 ACH50 +in.air_leakage_to_outside_ach50 5.30352 Total infiltration to the dwelling unit is 5.30352 ACH50 +in.air_leakage_to_outside_ach50 5.30376 Total infiltration to the dwelling unit is 5.30376 ACH50 +in.air_leakage_to_outside_ach50 5.3081 Total infiltration to the dwelling unit is 5.3081 ACH50 +in.air_leakage_to_outside_ach50 5.3094 Total infiltration to the dwelling unit is 5.3094 ACH50 +in.air_leakage_to_outside_ach50 5.31307 Total infiltration to the dwelling unit is 5.31307 ACH50 +in.air_leakage_to_outside_ach50 5.3139 Total infiltration to the dwelling unit is 5.3139 ACH50 +in.air_leakage_to_outside_ach50 5.31696 Total infiltration to the dwelling unit is 5.31696 ACH50 +in.air_leakage_to_outside_ach50 5.3244 Total infiltration to the dwelling unit is 5.3244 ACH50 +in.air_leakage_to_outside_ach50 5.3268 Total infiltration to the dwelling unit is 5.3268 ACH50 +in.air_leakage_to_outside_ach50 5.33178 Total infiltration to the dwelling unit is 5.33178 ACH50 +in.air_leakage_to_outside_ach50 5.33309 Total infiltration to the dwelling unit is 5.33309 ACH50 +in.air_leakage_to_outside_ach50 5.33638 Total infiltration to the dwelling unit is 5.33638 ACH50 +in.air_leakage_to_outside_ach50 5.34512 Total infiltration to the dwelling unit is 5.34512 ACH50 +in.air_leakage_to_outside_ach50 5.35738 Total infiltration to the dwelling unit is 5.35738 ACH50 +in.air_leakage_to_outside_ach50 5.36148 Total infiltration to the dwelling unit is 5.36148 ACH50 +in.air_leakage_to_outside_ach50 5.3641 Total infiltration to the dwelling unit is 5.3641 ACH50 +in.air_leakage_to_outside_ach50 5.36616 Total infiltration to the dwelling unit is 5.36616 ACH50 +in.air_leakage_to_outside_ach50 5.36641 Total infiltration to the dwelling unit is 5.36641 ACH50 +in.air_leakage_to_outside_ach50 5.3683 Total infiltration to the dwelling unit is 5.3683 ACH50 +in.air_leakage_to_outside_ach50 5.3714 Total infiltration to the dwelling unit is 5.37139999999999 ACH50 +in.air_leakage_to_outside_ach50 5.3736 Total infiltration to the dwelling unit is 5.3736 ACH50 +in.air_leakage_to_outside_ach50 5.37402 Total infiltration to the dwelling unit is 5.37402 ACH50 +in.air_leakage_to_outside_ach50 5.37488 Total infiltration to the dwelling unit is 5.37488 ACH50 +in.air_leakage_to_outside_ach50 5.3784 Total infiltration to the dwelling unit is 5.3784 ACH50 +in.air_leakage_to_outside_ach50 5.37887 Total infiltration to the dwelling unit is 5.37887 ACH50 +in.air_leakage_to_outside_ach50 5.39343 Total infiltration to the dwelling unit is 5.39343 ACH50 +in.air_leakage_to_outside_ach50 5.40576 Total infiltration to the dwelling unit is 5.40576 ACH50 +in.air_leakage_to_outside_ach50 5.40624 Total infiltration to the dwelling unit is 5.40624 ACH50 +in.air_leakage_to_outside_ach50 5.4084 Total infiltration to the dwelling unit is 5.4084 ACH50 +in.air_leakage_to_outside_ach50 5.4098 Total infiltration to the dwelling unit is 5.4098 ACH50 +in.air_leakage_to_outside_ach50 5.4103 Total infiltration to the dwelling unit is 5.4103 ACH50 +in.air_leakage_to_outside_ach50 5.41544 Total infiltration to the dwelling unit is 5.41544 ACH50 +in.air_leakage_to_outside_ach50 5.41904 Total infiltration to the dwelling unit is 5.41904 ACH50 +in.air_leakage_to_outside_ach50 5.4219 Total infiltration to the dwelling unit is 5.4219 ACH50 +in.air_leakage_to_outside_ach50 5.4375 Total infiltration to the dwelling unit is 5.4375 ACH50 +in.air_leakage_to_outside_ach50 5.439 Total infiltration to the dwelling unit is 5.439 ACH50 +in.air_leakage_to_outside_ach50 5.43928 Total infiltration to the dwelling unit is 5.43928 ACH50 +in.air_leakage_to_outside_ach50 5.44164 Total infiltration to the dwelling unit is 5.44164 ACH50 +in.air_leakage_to_outside_ach50 5.44206 Total infiltration to the dwelling unit is 5.44206 ACH50 +in.air_leakage_to_outside_ach50 5.4537 Total infiltration to the dwelling unit is 5.4537 ACH50 +in.air_leakage_to_outside_ach50 5.45385 Total infiltration to the dwelling unit is 5.45385 ACH50 +in.air_leakage_to_outside_ach50 5.45432 Total infiltration to the dwelling unit is 5.45432 ACH50 +in.air_leakage_to_outside_ach50 5.45622 Total infiltration to the dwelling unit is 5.45622 ACH50 +in.air_leakage_to_outside_ach50 5.458 Total infiltration to the dwelling unit is 5.45799999999999 ACH50 +in.air_leakage_to_outside_ach50 5.46854 Total infiltration to the dwelling unit is 5.46854 ACH50 +in.air_leakage_to_outside_ach50 5.47169 Total infiltration to the dwelling unit is 5.47169 ACH50 +in.air_leakage_to_outside_ach50 5.4756 Total infiltration to the dwelling unit is 5.4756 ACH50 +in.air_leakage_to_outside_ach50 5.48028 Total infiltration to the dwelling unit is 5.48028 ACH50 +in.air_leakage_to_outside_ach50 5.48248 Total infiltration to the dwelling unit is 5.48248 ACH50 +in.air_leakage_to_outside_ach50 5.48634 Total infiltration to the dwelling unit is 5.48634 ACH50 +in.air_leakage_to_outside_ach50 5.48958 Total infiltration to the dwelling unit is 5.48958 ACH50 +in.air_leakage_to_outside_ach50 5.51012 Total infiltration to the dwelling unit is 5.51012 ACH50 +in.air_leakage_to_outside_ach50 5.51033 Total infiltration to the dwelling unit is 5.51033 ACH50 +in.air_leakage_to_outside_ach50 5.5167 Total infiltration to the dwelling unit is 5.5167 ACH50 +in.air_leakage_to_outside_ach50 5.51782 Total infiltration to the dwelling unit is 5.51781999999999 ACH50 +in.air_leakage_to_outside_ach50 5.52756 Total infiltration to the dwelling unit is 5.52755999999999 ACH50 +in.air_leakage_to_outside_ach50 5.52852 Total infiltration to the dwelling unit is 5.52852 ACH50 +in.air_leakage_to_outside_ach50 5.52874 Total infiltration to the dwelling unit is 5.52874 ACH50 +in.air_leakage_to_outside_ach50 5.53392 Total infiltration to the dwelling unit is 5.53392 ACH50 +in.air_leakage_to_outside_ach50 5.5364 Total infiltration to the dwelling unit is 5.5364 ACH50 +in.air_leakage_to_outside_ach50 5.53938 Total infiltration to the dwelling unit is 5.53938 ACH50 +in.air_leakage_to_outside_ach50 5.54256 Total infiltration to the dwelling unit is 5.54256 ACH50 +in.air_leakage_to_outside_ach50 5.5537 Total infiltration to the dwelling unit is 5.5537 ACH50 +in.air_leakage_to_outside_ach50 5.55894 Total infiltration to the dwelling unit is 5.55894 ACH50 +in.air_leakage_to_outside_ach50 5.562 Total infiltration to the dwelling unit is 5.562 ACH50 +in.air_leakage_to_outside_ach50 5.5674 Total infiltration to the dwelling unit is 5.5674 ACH50 +in.air_leakage_to_outside_ach50 5.5892 Total infiltration to the dwelling unit is 5.5892 ACH50 +in.air_leakage_to_outside_ach50 5.58929 Total infiltration to the dwelling unit is 5.58929 ACH50 +in.air_leakage_to_outside_ach50 5.59076 Total infiltration to the dwelling unit is 5.59075999999999 ACH50 +in.air_leakage_to_outside_ach50 5.5913 Total infiltration to the dwelling unit is 5.5913 ACH50 +in.air_leakage_to_outside_ach50 5.59139 Total infiltration to the dwelling unit is 5.59139 ACH50 +in.air_leakage_to_outside_ach50 5.59727 Total infiltration to the dwelling unit is 5.59727 ACH50 +in.air_leakage_to_outside_ach50 5.60312 Total infiltration to the dwelling unit is 5.60312 ACH50 +in.air_leakage_to_outside_ach50 5.60576 Total infiltration to the dwelling unit is 5.60576 ACH50 +in.air_leakage_to_outside_ach50 5.61088 Total infiltration to the dwelling unit is 5.61088 ACH50 +in.air_leakage_to_outside_ach50 5.61536 Total infiltration to the dwelling unit is 5.61536 ACH50 +in.air_leakage_to_outside_ach50 5.61568 Total infiltration to the dwelling unit is 5.61567999999999 ACH50 +in.air_leakage_to_outside_ach50 5.617 Total infiltration to the dwelling unit is 5.617 ACH50 +in.air_leakage_to_outside_ach50 5.61925 Total infiltration to the dwelling unit is 5.61925 ACH50 +in.air_leakage_to_outside_ach50 5.62345 Total infiltration to the dwelling unit is 5.62345 ACH50 +in.air_leakage_to_outside_ach50 5.6334 Total infiltration to the dwelling unit is 5.6334 ACH50 +in.air_leakage_to_outside_ach50 5.64039 Total infiltration to the dwelling unit is 5.64039 ACH50 +in.air_leakage_to_outside_ach50 5.6495 Total infiltration to the dwelling unit is 5.6495 ACH50 +in.air_leakage_to_outside_ach50 5.66568 Total infiltration to the dwelling unit is 5.66568 ACH50 +in.air_leakage_to_outside_ach50 5.66592 Total infiltration to the dwelling unit is 5.66592 ACH50 +in.air_leakage_to_outside_ach50 5.67784 Total infiltration to the dwelling unit is 5.67784 ACH50 +in.air_leakage_to_outside_ach50 5.6836 Total infiltration to the dwelling unit is 5.6836 ACH50 +in.air_leakage_to_outside_ach50 5.6868 Total infiltration to the dwelling unit is 5.6868 ACH50 +in.air_leakage_to_outside_ach50 5.69716 Total infiltration to the dwelling unit is 5.69716 ACH50 +in.air_leakage_to_outside_ach50 5.69807 Total infiltration to the dwelling unit is 5.69807 ACH50 +in.air_leakage_to_outside_ach50 5.70381 Total infiltration to the dwelling unit is 5.70381 ACH50 +in.air_leakage_to_outside_ach50 5.7156 Total infiltration to the dwelling unit is 5.71559999999999 ACH50 +in.air_leakage_to_outside_ach50 5.71725 Total infiltration to the dwelling unit is 5.71725 ACH50 +in.air_leakage_to_outside_ach50 5.7248 Total infiltration to the dwelling unit is 5.7248 ACH50 +in.air_leakage_to_outside_ach50 5.72747 Total infiltration to the dwelling unit is 5.72747 ACH50 +in.air_leakage_to_outside_ach50 5.7292 Total infiltration to the dwelling unit is 5.7292 ACH50 +in.air_leakage_to_outside_ach50 5.7437 Total infiltration to the dwelling unit is 5.7437 ACH50 +in.air_leakage_to_outside_ach50 5.74725 Total infiltration to the dwelling unit is 5.74725 ACH50 +in.air_leakage_to_outside_ach50 5.75862 Total infiltration to the dwelling unit is 5.75862 ACH50 +in.air_leakage_to_outside_ach50 5.7653 Total infiltration to the dwelling unit is 5.7653 ACH50 +in.air_leakage_to_outside_ach50 5.7687 Total infiltration to the dwelling unit is 5.7687 ACH50 +in.air_leakage_to_outside_ach50 5.7851 Total infiltration to the dwelling unit is 5.7851 ACH50 +in.air_leakage_to_outside_ach50 5.7868 Total infiltration to the dwelling unit is 5.78679999999999 ACH50 +in.air_leakage_to_outside_ach50 5.79509 Total infiltration to the dwelling unit is 5.79509 ACH50 +in.air_leakage_to_outside_ach50 5.7964 Total infiltration to the dwelling unit is 5.7964 ACH50 +in.air_leakage_to_outside_ach50 5.80146 Total infiltration to the dwelling unit is 5.80146 ACH50 +in.air_leakage_to_outside_ach50 5.80909 Total infiltration to the dwelling unit is 5.80909 ACH50 +in.air_leakage_to_outside_ach50 5.8112 Total infiltration to the dwelling unit is 5.81119999999999 ACH50 +in.air_leakage_to_outside_ach50 5.82036 Total infiltration to the dwelling unit is 5.82036 ACH50 +in.air_leakage_to_outside_ach50 5.82424 Total infiltration to the dwelling unit is 5.82424 ACH50 +in.air_leakage_to_outside_ach50 5.83849 Total infiltration to the dwelling unit is 5.83849 ACH50 +in.air_leakage_to_outside_ach50 5.84115 Total infiltration to the dwelling unit is 5.84115 ACH50 +in.air_leakage_to_outside_ach50 5.85305 Total infiltration to the dwelling unit is 5.85305 ACH50 +in.air_leakage_to_outside_ach50 5.8607 Total infiltration to the dwelling unit is 5.8607 ACH50 +in.air_leakage_to_outside_ach50 5.86502 Total infiltration to the dwelling unit is 5.86502 ACH50 +in.air_leakage_to_outside_ach50 5.8662 Total infiltration to the dwelling unit is 5.8662 ACH50 +in.air_leakage_to_outside_ach50 5.87083 Total infiltration to the dwelling unit is 5.87083 ACH50 +in.air_leakage_to_outside_ach50 5.87965 Total infiltration to the dwelling unit is 5.87965 ACH50 +in.air_leakage_to_outside_ach50 5.889 Total infiltration to the dwelling unit is 5.88899999999999 ACH50 +in.air_leakage_to_outside_ach50 5.8902 Total infiltration to the dwelling unit is 5.89019999999999 ACH50 +in.air_leakage_to_outside_ach50 5.89995 Total infiltration to the dwelling unit is 5.89995 ACH50 +in.air_leakage_to_outside_ach50 5.9037 Total infiltration to the dwelling unit is 5.9037 ACH50 +in.air_leakage_to_outside_ach50 5.913 Total infiltration to the dwelling unit is 5.913 ACH50 +in.air_leakage_to_outside_ach50 5.91556 Total infiltration to the dwelling unit is 5.91556 ACH50 +in.air_leakage_to_outside_ach50 5.922 Total infiltration to the dwelling unit is 5.922 ACH50 +in.air_leakage_to_outside_ach50 5.92214 Total infiltration to the dwelling unit is 5.92214 ACH50 +in.air_leakage_to_outside_ach50 5.92487 Total infiltration to the dwelling unit is 5.92487 ACH50 +in.air_leakage_to_outside_ach50 5.92792 Total infiltration to the dwelling unit is 5.92792 ACH50 +in.air_leakage_to_outside_ach50 5.93864 Total infiltration to the dwelling unit is 5.93864 ACH50 +in.air_leakage_to_outside_ach50 5.93992 Total infiltration to the dwelling unit is 5.93992 ACH50 +in.air_leakage_to_outside_ach50 5.94088 Total infiltration to the dwelling unit is 5.94088 ACH50 +in.air_leakage_to_outside_ach50 5.944 Total infiltration to the dwelling unit is 5.944 ACH50 +in.air_leakage_to_outside_ach50 5.9693 Total infiltration to the dwelling unit is 5.9693 ACH50 +in.air_leakage_to_outside_ach50 5.9736 Total infiltration to the dwelling unit is 5.9736 ACH50 +in.air_leakage_to_outside_ach50 5.978 Total infiltration to the dwelling unit is 5.978 ACH50 +in.air_leakage_to_outside_ach50 5.9787 Total infiltration to the dwelling unit is 5.9787 ACH50 +in.air_leakage_to_outside_ach50 5.98731 Total infiltration to the dwelling unit is 5.98731 ACH50 +in.air_leakage_to_outside_ach50 6 Total infiltration to the dwelling unit is 6 ACH50 +in.air_leakage_to_outside_ach50 6.00383 Total infiltration to the dwelling unit is 6.00383 ACH50 +in.air_leakage_to_outside_ach50 6.0117 Total infiltration to the dwelling unit is 6.0117 ACH50 +in.air_leakage_to_outside_ach50 6.01185 Total infiltration to the dwelling unit is 6.01185 ACH50 +in.air_leakage_to_outside_ach50 6.0212 Total infiltration to the dwelling unit is 6.0212 ACH50 +in.air_leakage_to_outside_ach50 6.02475 Total infiltration to the dwelling unit is 6.02475 ACH50 +in.air_leakage_to_outside_ach50 6.0409 Total infiltration to the dwelling unit is 6.0409 ACH50 +in.air_leakage_to_outside_ach50 6.0448 Total infiltration to the dwelling unit is 6.0448 ACH50 +in.air_leakage_to_outside_ach50 6.0549 Total infiltration to the dwelling unit is 6.0549 ACH50 +in.air_leakage_to_outside_ach50 6.0664 Total infiltration to the dwelling unit is 6.0664 ACH50 +in.air_leakage_to_outside_ach50 6.067 Total infiltration to the dwelling unit is 6.067 ACH50 +in.air_leakage_to_outside_ach50 6.06781 Total infiltration to the dwelling unit is 6.06781 ACH50 +in.air_leakage_to_outside_ach50 6.0685 Total infiltration to the dwelling unit is 6.0685 ACH50 +in.air_leakage_to_outside_ach50 6.07208 Total infiltration to the dwelling unit is 6.07208 ACH50 +in.air_leakage_to_outside_ach50 6.09812 Total infiltration to the dwelling unit is 6.09812 ACH50 +in.air_leakage_to_outside_ach50 6.09872 Total infiltration to the dwelling unit is 6.09872 ACH50 +in.air_leakage_to_outside_ach50 6.09917 Total infiltration to the dwelling unit is 6.09917 ACH50 +in.air_leakage_to_outside_ach50 6.10515 Total infiltration to the dwelling unit is 6.10515 ACH50 +in.air_leakage_to_outside_ach50 6.1155 Total infiltration to the dwelling unit is 6.1155 ACH50 +in.air_leakage_to_outside_ach50 6.12272 Total infiltration to the dwelling unit is 6.12272 ACH50 +in.air_leakage_to_outside_ach50 6.1245 Total infiltration to the dwelling unit is 6.1245 ACH50 +in.air_leakage_to_outside_ach50 6.1304 Total infiltration to the dwelling unit is 6.1304 ACH50 +in.air_leakage_to_outside_ach50 6.13304 Total infiltration to the dwelling unit is 6.13304 ACH50 +in.air_leakage_to_outside_ach50 6.14257 Total infiltration to the dwelling unit is 6.14257 ACH50 +in.air_leakage_to_outside_ach50 6.14272 Total infiltration to the dwelling unit is 6.14272 ACH50 +in.air_leakage_to_outside_ach50 6.1435 Total infiltration to the dwelling unit is 6.14349999999999 ACH50 +in.air_leakage_to_outside_ach50 6.14728 Total infiltration to the dwelling unit is 6.14728 ACH50 +in.air_leakage_to_outside_ach50 6.1685 Total infiltration to the dwelling unit is 6.1685 ACH50 +in.air_leakage_to_outside_ach50 6.17856 Total infiltration to the dwelling unit is 6.17856 ACH50 +in.air_leakage_to_outside_ach50 6.18205 Total infiltration to the dwelling unit is 6.18205 ACH50 +in.air_leakage_to_outside_ach50 6.1832 Total infiltration to the dwelling unit is 6.1832 ACH50 +in.air_leakage_to_outside_ach50 6.18744 Total infiltration to the dwelling unit is 6.18744 ACH50 +in.air_leakage_to_outside_ach50 6.19955 Total infiltration to the dwelling unit is 6.19955 ACH50 +in.air_leakage_to_outside_ach50 6.20312 Total infiltration to the dwelling unit is 6.20311999999999 ACH50 +in.air_leakage_to_outside_ach50 6.21585 Total infiltration to the dwelling unit is 6.21585 ACH50 +in.air_leakage_to_outside_ach50 6.22152 Total infiltration to the dwelling unit is 6.22152 ACH50 +in.air_leakage_to_outside_ach50 6.2225 Total infiltration to the dwelling unit is 6.2225 ACH50 +in.air_leakage_to_outside_ach50 6.2249 Total infiltration to the dwelling unit is 6.2249 ACH50 +in.air_leakage_to_outside_ach50 6.23568 Total infiltration to the dwelling unit is 6.23568 ACH50 +in.air_leakage_to_outside_ach50 6.24976 Total infiltration to the dwelling unit is 6.24976 ACH50 +in.air_leakage_to_outside_ach50 6.25336 Total infiltration to the dwelling unit is 6.25336 ACH50 +in.air_leakage_to_outside_ach50 6.25506 Total infiltration to the dwelling unit is 6.25506 ACH50 +in.air_leakage_to_outside_ach50 6.2662 Total infiltration to the dwelling unit is 6.26619999999999 ACH50 +in.air_leakage_to_outside_ach50 6.2692 Total infiltration to the dwelling unit is 6.2692 ACH50 +in.air_leakage_to_outside_ach50 6.26969 Total infiltration to the dwelling unit is 6.26969 ACH50 +in.air_leakage_to_outside_ach50 6.29168 Total infiltration to the dwelling unit is 6.29168 ACH50 +in.air_leakage_to_outside_ach50 6.2965 Total infiltration to the dwelling unit is 6.2965 ACH50 +in.air_leakage_to_outside_ach50 6.29728 Total infiltration to the dwelling unit is 6.29728 ACH50 +in.air_leakage_to_outside_ach50 6.29752 Total infiltration to the dwelling unit is 6.29752 ACH50 +in.air_leakage_to_outside_ach50 6.30608 Total infiltration to the dwelling unit is 6.30608 ACH50 +in.air_leakage_to_outside_ach50 6.31856 Total infiltration to the dwelling unit is 6.31856 ACH50 +in.air_leakage_to_outside_ach50 6.3189 Total infiltration to the dwelling unit is 6.3189 ACH50 +in.air_leakage_to_outside_ach50 6.3196 Total infiltration to the dwelling unit is 6.3196 ACH50 +in.air_leakage_to_outside_ach50 6.32448 Total infiltration to the dwelling unit is 6.32448 ACH50 +in.air_leakage_to_outside_ach50 6.33072 Total infiltration to the dwelling unit is 6.33072 ACH50 +in.air_leakage_to_outside_ach50 6.3317 Total infiltration to the dwelling unit is 6.3317 ACH50 +in.air_leakage_to_outside_ach50 6.34858 Total infiltration to the dwelling unit is 6.34858 ACH50 +in.air_leakage_to_outside_ach50 6.34907 Total infiltration to the dwelling unit is 6.34907 ACH50 +in.air_leakage_to_outside_ach50 6.3556 Total infiltration to the dwelling unit is 6.3556 ACH50 +in.air_leakage_to_outside_ach50 6.3688 Total infiltration to the dwelling unit is 6.3688 ACH50 +in.air_leakage_to_outside_ach50 6.38776 Total infiltration to the dwelling unit is 6.38776 ACH50 +in.air_leakage_to_outside_ach50 6.38944 Total infiltration to the dwelling unit is 6.38944 ACH50 +in.air_leakage_to_outside_ach50 6.39016 Total infiltration to the dwelling unit is 6.39016 ACH50 +in.air_leakage_to_outside_ach50 6.39366 Total infiltration to the dwelling unit is 6.39366 ACH50 +in.air_leakage_to_outside_ach50 6.39688 Total infiltration to the dwelling unit is 6.39688 ACH50 +in.air_leakage_to_outside_ach50 6.39735 Total infiltration to the dwelling unit is 6.39734999999999 ACH50 +in.air_leakage_to_outside_ach50 6.40073 Total infiltration to the dwelling unit is 6.40073 ACH50 +in.air_leakage_to_outside_ach50 6.40451 Total infiltration to the dwelling unit is 6.40451 ACH50 +in.air_leakage_to_outside_ach50 6.41792 Total infiltration to the dwelling unit is 6.41792 ACH50 +in.air_leakage_to_outside_ach50 6.422 Total infiltration to the dwelling unit is 6.422 ACH50 +in.air_leakage_to_outside_ach50 6.4268 Total infiltration to the dwelling unit is 6.4268 ACH50 +in.air_leakage_to_outside_ach50 6.44616 Total infiltration to the dwelling unit is 6.44616 ACH50 +in.air_leakage_to_outside_ach50 6.4467 Total infiltration to the dwelling unit is 6.4467 ACH50 +in.air_leakage_to_outside_ach50 6.44882 Total infiltration to the dwelling unit is 6.44881999999999 ACH50 +in.air_leakage_to_outside_ach50 6.44994 Total infiltration to the dwelling unit is 6.44994 ACH50 +in.air_leakage_to_outside_ach50 6.46725 Total infiltration to the dwelling unit is 6.46725 ACH50 +in.air_leakage_to_outside_ach50 6.4821 Total infiltration to the dwelling unit is 6.48209999999999 ACH50 +in.air_leakage_to_outside_ach50 6.48543 Total infiltration to the dwelling unit is 6.48543 ACH50 +in.air_leakage_to_outside_ach50 6.48896 Total infiltration to the dwelling unit is 6.48896 ACH50 +in.air_leakage_to_outside_ach50 6.489 Total infiltration to the dwelling unit is 6.489 ACH50 +in.air_leakage_to_outside_ach50 6.4945 Total infiltration to the dwelling unit is 6.4945 ACH50 +in.air_leakage_to_outside_ach50 6.51104 Total infiltration to the dwelling unit is 6.51104 ACH50 +in.air_leakage_to_outside_ach50 6.51208 Total infiltration to the dwelling unit is 6.51208 ACH50 +in.air_leakage_to_outside_ach50 6.51864 Total infiltration to the dwelling unit is 6.51864 ACH50 +in.air_leakage_to_outside_ach50 6.5412 Total infiltration to the dwelling unit is 6.5412 ACH50 +in.air_leakage_to_outside_ach50 6.54568 Total infiltration to the dwelling unit is 6.54568 ACH50 +in.air_leakage_to_outside_ach50 6.5574 Total infiltration to the dwelling unit is 6.55739999999999 ACH50 +in.air_leakage_to_outside_ach50 6.58128 Total infiltration to the dwelling unit is 6.58128 ACH50 +in.air_leakage_to_outside_ach50 6.5917 Total infiltration to the dwelling unit is 6.5917 ACH50 +in.air_leakage_to_outside_ach50 6.5928 Total infiltration to the dwelling unit is 6.5928 ACH50 +in.air_leakage_to_outside_ach50 6.61024 Total infiltration to the dwelling unit is 6.61024 ACH50 +in.air_leakage_to_outside_ach50 6.622 Total infiltration to the dwelling unit is 6.622 ACH50 +in.air_leakage_to_outside_ach50 6.62296 Total infiltration to the dwelling unit is 6.62296 ACH50 +in.air_leakage_to_outside_ach50 6.6297 Total infiltration to the dwelling unit is 6.6297 ACH50 +in.air_leakage_to_outside_ach50 6.6346 Total infiltration to the dwelling unit is 6.6346 ACH50 +in.air_leakage_to_outside_ach50 6.63896 Total infiltration to the dwelling unit is 6.63896 ACH50 +in.air_leakage_to_outside_ach50 6.6408 Total infiltration to the dwelling unit is 6.6408 ACH50 +in.air_leakage_to_outside_ach50 6.6496 Total infiltration to the dwelling unit is 6.64959999999999 ACH50 +in.air_leakage_to_outside_ach50 6.65184 Total infiltration to the dwelling unit is 6.65184 ACH50 +in.air_leakage_to_outside_ach50 6.6555 Total infiltration to the dwelling unit is 6.6555 ACH50 +in.air_leakage_to_outside_ach50 6.6585 Total infiltration to the dwelling unit is 6.6585 ACH50 +in.air_leakage_to_outside_ach50 6.6648 Total infiltration to the dwelling unit is 6.6648 ACH50 +in.air_leakage_to_outside_ach50 6.67256 Total infiltration to the dwelling unit is 6.67256 ACH50 +in.air_leakage_to_outside_ach50 6.6756 Total infiltration to the dwelling unit is 6.6756 ACH50 +in.air_leakage_to_outside_ach50 6.6814 Total infiltration to the dwelling unit is 6.6814 ACH50 +in.air_leakage_to_outside_ach50 6.70288 Total infiltration to the dwelling unit is 6.70288 ACH50 +in.air_leakage_to_outside_ach50 6.7077 Total infiltration to the dwelling unit is 6.7077 ACH50 +in.air_leakage_to_outside_ach50 6.7196 Total infiltration to the dwelling unit is 6.7196 ACH50 +in.air_leakage_to_outside_ach50 6.7215 Total infiltration to the dwelling unit is 6.7215 ACH50 +in.air_leakage_to_outside_ach50 6.723 Total infiltration to the dwelling unit is 6.723 ACH50 +in.air_leakage_to_outside_ach50 6.7404 Total infiltration to the dwelling unit is 6.74039999999999 ACH50 +in.air_leakage_to_outside_ach50 6.74128 Total infiltration to the dwelling unit is 6.74128 ACH50 +in.air_leakage_to_outside_ach50 6.7428 Total infiltration to the dwelling unit is 6.7428 ACH50 +in.air_leakage_to_outside_ach50 6.7572 Total infiltration to the dwelling unit is 6.7572 ACH50 +in.air_leakage_to_outside_ach50 6.76064 Total infiltration to the dwelling unit is 6.76064 ACH50 +in.air_leakage_to_outside_ach50 6.76816 Total infiltration to the dwelling unit is 6.76816 ACH50 +in.air_leakage_to_outside_ach50 6.7693 Total infiltration to the dwelling unit is 6.7693 ACH50 +in.air_leakage_to_outside_ach50 6.77128 Total infiltration to the dwelling unit is 6.77128 ACH50 +in.air_leakage_to_outside_ach50 6.7738 Total infiltration to the dwelling unit is 6.7738 ACH50 +in.air_leakage_to_outside_ach50 6.79065 Total infiltration to the dwelling unit is 6.79065 ACH50 +in.air_leakage_to_outside_ach50 6.79875 Total infiltration to the dwelling unit is 6.79875 ACH50 +in.air_leakage_to_outside_ach50 6.7991 Total infiltration to the dwelling unit is 6.7991 ACH50 +in.air_leakage_to_outside_ach50 6.80288 Total infiltration to the dwelling unit is 6.80288 ACH50 +in.air_leakage_to_outside_ach50 6.8179 Total infiltration to the dwelling unit is 6.8179 ACH50 +in.air_leakage_to_outside_ach50 6.82392 Total infiltration to the dwelling unit is 6.82392 ACH50 +in.air_leakage_to_outside_ach50 6.832 Total infiltration to the dwelling unit is 6.832 ACH50 +in.air_leakage_to_outside_ach50 6.8328 Total infiltration to the dwelling unit is 6.8328 ACH50 +in.air_leakage_to_outside_ach50 6.84264 Total infiltration to the dwelling unit is 6.84264 ACH50 +in.air_leakage_to_outside_ach50 6.84735 Total infiltration to the dwelling unit is 6.84735 ACH50 +in.air_leakage_to_outside_ach50 6.8531 Total infiltration to the dwelling unit is 6.85309999999999 ACH50 +in.air_leakage_to_outside_ach50 6.8595 Total infiltration to the dwelling unit is 6.8595 ACH50 +in.air_leakage_to_outside_ach50 6.8607 Total infiltration to the dwelling unit is 6.8607 ACH50 +in.air_leakage_to_outside_ach50 6.8802 Total infiltration to the dwelling unit is 6.88019999999999 ACH50 +in.air_leakage_to_outside_ach50 6.8856 Total infiltration to the dwelling unit is 6.88559999999999 ACH50 +in.air_leakage_to_outside_ach50 6.9015 Total infiltration to the dwelling unit is 6.9015 ACH50 +in.air_leakage_to_outside_ach50 6.9016 Total infiltration to the dwelling unit is 6.9016 ACH50 +in.air_leakage_to_outside_ach50 6.9205 Total infiltration to the dwelling unit is 6.9205 ACH50 +in.air_leakage_to_outside_ach50 6.9282 Total infiltration to the dwelling unit is 6.9282 ACH50 +in.air_leakage_to_outside_ach50 6.92925 Total infiltration to the dwelling unit is 6.92925 ACH50 +in.air_leakage_to_outside_ach50 6.93464 Total infiltration to the dwelling unit is 6.93464 ACH50 +in.air_leakage_to_outside_ach50 6.96928 Total infiltration to the dwelling unit is 6.96928 ACH50 +in.air_leakage_to_outside_ach50 6.97048 Total infiltration to the dwelling unit is 6.97048 ACH50 +in.air_leakage_to_outside_ach50 6.97515 Total infiltration to the dwelling unit is 6.97514999999999 ACH50 +in.air_leakage_to_outside_ach50 7 Total infiltration to the dwelling unit is 7 ACH50 +in.air_leakage_to_outside_ach50 7.0039 Total infiltration to the dwelling unit is 7.0039 ACH50 +in.air_leakage_to_outside_ach50 7.0072 Total infiltration to the dwelling unit is 7.0072 ACH50 +in.air_leakage_to_outside_ach50 7.00995 Total infiltration to the dwelling unit is 7.00995 ACH50 +in.air_leakage_to_outside_ach50 7.0136 Total infiltration to the dwelling unit is 7.0136 ACH50 +in.air_leakage_to_outside_ach50 7.0192 Total infiltration to the dwelling unit is 7.0192 ACH50 +in.air_leakage_to_outside_ach50 7.02008 Total infiltration to the dwelling unit is 7.02008 ACH50 +in.air_leakage_to_outside_ach50 7.0652 Total infiltration to the dwelling unit is 7.0652 ACH50 +in.air_leakage_to_outside_ach50 7.07136 Total infiltration to the dwelling unit is 7.07136 ACH50 +in.air_leakage_to_outside_ach50 7.0821 Total infiltration to the dwelling unit is 7.0821 ACH50 +in.air_leakage_to_outside_ach50 7.0852 Total infiltration to the dwelling unit is 7.0852 ACH50 +in.air_leakage_to_outside_ach50 7.08928 Total infiltration to the dwelling unit is 7.08928 ACH50 +in.air_leakage_to_outside_ach50 7.12875 Total infiltration to the dwelling unit is 7.12875 ACH50 +in.air_leakage_to_outside_ach50 7.14864 Total infiltration to the dwelling unit is 7.14864 ACH50 +in.air_leakage_to_outside_ach50 7.156 Total infiltration to the dwelling unit is 7.156 ACH50 +in.air_leakage_to_outside_ach50 7.1648 Total infiltration to the dwelling unit is 7.1648 ACH50 +in.air_leakage_to_outside_ach50 7.16536 Total infiltration to the dwelling unit is 7.16536 ACH50 +in.air_leakage_to_outside_ach50 7.2292 Total infiltration to the dwelling unit is 7.2292 ACH50 +in.air_leakage_to_outside_ach50 7.2297 Total infiltration to the dwelling unit is 7.2297 ACH50 +in.air_leakage_to_outside_ach50 7.2335 Total infiltration to the dwelling unit is 7.23349999999999 ACH50 +in.air_leakage_to_outside_ach50 7.25552 Total infiltration to the dwelling unit is 7.25552 ACH50 +in.air_leakage_to_outside_ach50 7.25608 Total infiltration to the dwelling unit is 7.25608 ACH50 +in.air_leakage_to_outside_ach50 7.2716 Total infiltration to the dwelling unit is 7.2716 ACH50 +in.air_leakage_to_outside_ach50 7.2718 Total infiltration to the dwelling unit is 7.2718 ACH50 +in.air_leakage_to_outside_ach50 7.2803 Total infiltration to the dwelling unit is 7.28029999999999 ACH50 +in.air_leakage_to_outside_ach50 7.2865 Total infiltration to the dwelling unit is 7.2865 ACH50 +in.air_leakage_to_outside_ach50 7.30704 Total infiltration to the dwelling unit is 7.30704 ACH50 +in.air_leakage_to_outside_ach50 7.3113 Total infiltration to the dwelling unit is 7.3113 ACH50 +in.air_leakage_to_outside_ach50 7.31512 Total infiltration to the dwelling unit is 7.31512 ACH50 +in.air_leakage_to_outside_ach50 7.31944 Total infiltration to the dwelling unit is 7.31944 ACH50 +in.air_leakage_to_outside_ach50 7.3494 Total infiltration to the dwelling unit is 7.3494 ACH50 +in.air_leakage_to_outside_ach50 7.37008 Total infiltration to the dwelling unit is 7.37008 ACH50 +in.air_leakage_to_outside_ach50 7.37136 Total infiltration to the dwelling unit is 7.37136 ACH50 +in.air_leakage_to_outside_ach50 7.4022 Total infiltration to the dwelling unit is 7.4022 ACH50 +in.air_leakage_to_outside_ach50 7.4099 Total infiltration to the dwelling unit is 7.4099 ACH50 +in.air_leakage_to_outside_ach50 7.41192 Total infiltration to the dwelling unit is 7.41192 ACH50 +in.air_leakage_to_outside_ach50 7.416 Total infiltration to the dwelling unit is 7.416 ACH50 +in.air_leakage_to_outside_ach50 7.4232 Total infiltration to the dwelling unit is 7.4232 ACH50 +in.air_leakage_to_outside_ach50 7.4233 Total infiltration to the dwelling unit is 7.4233 ACH50 +in.air_leakage_to_outside_ach50 7.4261 Total infiltration to the dwelling unit is 7.4261 ACH50 +in.air_leakage_to_outside_ach50 7.46235 Total infiltration to the dwelling unit is 7.46235 ACH50 +in.air_leakage_to_outside_ach50 7.4874 Total infiltration to the dwelling unit is 7.48739999999999 ACH50 +in.air_leakage_to_outside_ach50 7.5 Total infiltration to the dwelling unit is 7.5 ACH50 +in.air_leakage_to_outside_ach50 7.51455 Total infiltration to the dwelling unit is 7.51455 ACH50 +in.air_leakage_to_outside_ach50 7.5265 Total infiltration to the dwelling unit is 7.5265 ACH50 +in.air_leakage_to_outside_ach50 7.55456 Total infiltration to the dwelling unit is 7.55456 ACH50 +in.air_leakage_to_outside_ach50 7.5795 Total infiltration to the dwelling unit is 7.57949999999999 ACH50 +in.air_leakage_to_outside_ach50 7.583 Total infiltration to the dwelling unit is 7.583 ACH50 +in.air_leakage_to_outside_ach50 7.5901 Total infiltration to the dwelling unit is 7.5901 ACH50 +in.air_leakage_to_outside_ach50 7.5998 Total infiltration to the dwelling unit is 7.5998 ACH50 +in.air_leakage_to_outside_ach50 7.6022 Total infiltration to the dwelling unit is 7.6022 ACH50 +in.air_leakage_to_outside_ach50 7.6187 Total infiltration to the dwelling unit is 7.6187 ACH50 +in.air_leakage_to_outside_ach50 7.6234 Total infiltration to the dwelling unit is 7.6234 ACH50 +in.air_leakage_to_outside_ach50 7.663 Total infiltration to the dwelling unit is 7.663 ACH50 +in.air_leakage_to_outside_ach50 7.6663 Total infiltration to the dwelling unit is 7.6663 ACH50 +in.air_leakage_to_outside_ach50 7.6784 Total infiltration to the dwelling unit is 7.6784 ACH50 +in.air_leakage_to_outside_ach50 7.6841 Total infiltration to the dwelling unit is 7.6841 ACH50 +in.air_leakage_to_outside_ach50 7.72275 Total infiltration to the dwelling unit is 7.72275 ACH50 +in.air_leakage_to_outside_ach50 7.7232 Total infiltration to the dwelling unit is 7.7232 ACH50 +in.air_leakage_to_outside_ach50 7.729 Total infiltration to the dwelling unit is 7.729 ACH50 +in.air_leakage_to_outside_ach50 7.74885 Total infiltration to the dwelling unit is 7.74885 ACH50 +in.air_leakage_to_outside_ach50 7.7709 Total infiltration to the dwelling unit is 7.77089999999999 ACH50 +in.air_leakage_to_outside_ach50 7.7868 Total infiltration to the dwelling unit is 7.7868 ACH50 +in.air_leakage_to_outside_ach50 7.7946 Total infiltration to the dwelling unit is 7.7946 ACH50 +in.air_leakage_to_outside_ach50 7.7994 Total infiltration to the dwelling unit is 7.79939999999999 ACH50 +in.air_leakage_to_outside_ach50 7.8066 Total infiltration to the dwelling unit is 7.8066 ACH50 +in.air_leakage_to_outside_ach50 7.8122 Total infiltration to the dwelling unit is 7.8122 ACH50 +in.air_leakage_to_outside_ach50 7.8167 Total infiltration to the dwelling unit is 7.8167 ACH50 +in.air_leakage_to_outside_ach50 7.8536 Total infiltration to the dwelling unit is 7.85359999999999 ACH50 +in.air_leakage_to_outside_ach50 7.8561 Total infiltration to the dwelling unit is 7.8561 ACH50 +in.air_leakage_to_outside_ach50 7.8646 Total infiltration to the dwelling unit is 7.8646 ACH50 +in.air_leakage_to_outside_ach50 7.8716 Total infiltration to the dwelling unit is 7.8716 ACH50 +in.air_leakage_to_outside_ach50 7.8719 Total infiltration to the dwelling unit is 7.87189999999999 ACH50 +in.air_leakage_to_outside_ach50 7.8826 Total infiltration to the dwelling unit is 7.8826 ACH50 +in.air_leakage_to_outside_ach50 7.8982 Total infiltration to the dwelling unit is 7.89819999999999 ACH50 +in.air_leakage_to_outside_ach50 7.9056 Total infiltration to the dwelling unit is 7.9056 ACH50 +in.air_leakage_to_outside_ach50 7.9134 Total infiltration to the dwelling unit is 7.9134 ACH50 +in.air_leakage_to_outside_ach50 7.9445 Total infiltration to the dwelling unit is 7.9445 ACH50 +in.air_leakage_to_outside_ach50 7.961 Total infiltration to the dwelling unit is 7.961 ACH50 +in.air_leakage_to_outside_ach50 7.9641 Total infiltration to the dwelling unit is 7.96409999999999 ACH50 +in.air_leakage_to_outside_ach50 7.9847 Total infiltration to the dwelling unit is 7.9847 ACH50 +in.air_leakage_to_outside_ach50 7.9868 Total infiltration to the dwelling unit is 7.9868 ACH50 +in.air_leakage_to_outside_ach50 7.9877 Total infiltration to the dwelling unit is 7.9877 ACH50 +in.air_leakage_to_outside_ach50 7.9902 Total infiltration to the dwelling unit is 7.9902 ACH50 +in.air_leakage_to_outside_ach50 7.9961 Total infiltration to the dwelling unit is 7.9961 ACH50 +in.air_leakage_to_outside_ach50 7.9989 Total infiltration to the dwelling unit is 7.99889999999999 ACH50 +in.air_leakage_to_outside_ach50 8 Total infiltration to the dwelling unit is 8 ACH50 +in.air_leakage_to_outside_ach50 8.0156 Total infiltration to the dwelling unit is 8.0156 ACH50 +in.air_leakage_to_outside_ach50 8.0158 Total infiltration to the dwelling unit is 8.01579999999999 ACH50 +in.air_leakage_to_outside_ach50 8.0224 Total infiltration to the dwelling unit is 8.0224 ACH50 +in.air_leakage_to_outside_ach50 8.0275 Total infiltration to the dwelling unit is 8.0275 ACH50 +in.air_leakage_to_outside_ach50 8.0335 Total infiltration to the dwelling unit is 8.0335 ACH50 +in.air_leakage_to_outside_ach50 8.05245 Total infiltration to the dwelling unit is 8.05245 ACH50 +in.air_leakage_to_outside_ach50 8.0571 Total infiltration to the dwelling unit is 8.05709999999999 ACH50 +in.air_leakage_to_outside_ach50 8.0577 Total infiltration to the dwelling unit is 8.0577 ACH50 +in.air_leakage_to_outside_ach50 8.0973 Total infiltration to the dwelling unit is 8.09729999999999 ACH50 +in.air_leakage_to_outside_ach50 8.1112 Total infiltration to the dwelling unit is 8.1112 ACH50 +in.air_leakage_to_outside_ach50 8.1126 Total infiltration to the dwelling unit is 8.1126 ACH50 +in.air_leakage_to_outside_ach50 8.1147 Total infiltration to the dwelling unit is 8.1147 ACH50 +in.air_leakage_to_outside_ach50 8.1388 Total infiltration to the dwelling unit is 8.1388 ACH50 +in.air_leakage_to_outside_ach50 8.1401 Total infiltration to the dwelling unit is 8.1401 ACH50 +in.air_leakage_to_outside_ach50 8.1402 Total infiltration to the dwelling unit is 8.1402 ACH50 +in.air_leakage_to_outside_ach50 8.1483 Total infiltration to the dwelling unit is 8.1483 ACH50 +in.air_leakage_to_outside_ach50 8.15625 Total infiltration to the dwelling unit is 8.15625 ACH50 +in.air_leakage_to_outside_ach50 8.1585 Total infiltration to the dwelling unit is 8.1585 ACH50 +in.air_leakage_to_outside_ach50 8.1765 Total infiltration to the dwelling unit is 8.1765 ACH50 +in.air_leakage_to_outside_ach50 8.1821 Total infiltration to the dwelling unit is 8.1821 ACH50 +in.air_leakage_to_outside_ach50 8.187 Total infiltration to the dwelling unit is 8.187 ACH50 +in.air_leakage_to_outside_ach50 8.2134 Total infiltration to the dwelling unit is 8.2134 ACH50 +in.air_leakage_to_outside_ach50 8.241 Total infiltration to the dwelling unit is 8.241 ACH50 +in.air_leakage_to_outside_ach50 8.259 Total infiltration to the dwelling unit is 8.259 ACH50 +in.air_leakage_to_outside_ach50 8.27505 Total infiltration to the dwelling unit is 8.27505 ACH50 +in.air_leakage_to_outside_ach50 8.2775 Total infiltration to the dwelling unit is 8.2775 ACH50 +in.air_leakage_to_outside_ach50 8.2787 Total infiltration to the dwelling unit is 8.2787 ACH50 +in.air_leakage_to_outside_ach50 8.2878 Total infiltration to the dwelling unit is 8.28779999999999 ACH50 +in.air_leakage_to_outside_ach50 8.2987 Total infiltration to the dwelling unit is 8.2987 ACH50 +in.air_leakage_to_outside_ach50 8.312 Total infiltration to the dwelling unit is 8.312 ACH50 +in.air_leakage_to_outside_ach50 8.3148 Total infiltration to the dwelling unit is 8.3148 ACH50 +in.air_leakage_to_outside_ach50 8.33055 Total infiltration to the dwelling unit is 8.33055 ACH50 +in.air_leakage_to_outside_ach50 8.3407 Total infiltration to the dwelling unit is 8.3407 ACH50 +in.air_leakage_to_outside_ach50 8.3445 Total infiltration to the dwelling unit is 8.3445 ACH50 +in.air_leakage_to_outside_ach50 8.3615 Total infiltration to the dwelling unit is 8.3615 ACH50 +in.air_leakage_to_outside_ach50 8.3786 Total infiltration to the dwelling unit is 8.3786 ACH50 +in.air_leakage_to_outside_ach50 8.3838 Total infiltration to the dwelling unit is 8.38379999999999 ACH50 +in.air_leakage_to_outside_ach50 8.3847 Total infiltration to the dwelling unit is 8.3847 ACH50 +in.air_leakage_to_outside_ach50 8.3869 Total infiltration to the dwelling unit is 8.3869 ACH50 +in.air_leakage_to_outside_ach50 8.38695 Total infiltration to the dwelling unit is 8.38695 ACH50 +in.air_leakage_to_outside_ach50 8.3995 Total infiltration to the dwelling unit is 8.3995 ACH50 +in.air_leakage_to_outside_ach50 8.4252 Total infiltration to the dwelling unit is 8.4252 ACH50 +in.air_leakage_to_outside_ach50 8.4266 Total infiltration to the dwelling unit is 8.4266 ACH50 +in.air_leakage_to_outside_ach50 8.4285 Total infiltration to the dwelling unit is 8.4285 ACH50 +in.air_leakage_to_outside_ach50 8.4501 Total infiltration to the dwelling unit is 8.45009999999999 ACH50 +in.air_leakage_to_outside_ach50 8.4508 Total infiltration to the dwelling unit is 8.4508 ACH50 +in.air_leakage_to_outside_ach50 8.4602 Total infiltration to the dwelling unit is 8.4602 ACH50 +in.air_leakage_to_outside_ach50 8.4641 Total infiltration to the dwelling unit is 8.4641 ACH50 +in.air_leakage_to_outside_ach50 8.47425 Total infiltration to the dwelling unit is 8.47425 ACH50 +in.air_leakage_to_outside_ach50 8.5036 Total infiltration to the dwelling unit is 8.5036 ACH50 +in.air_leakage_to_outside_ach50 8.5298 Total infiltration to the dwelling unit is 8.5298 ACH50 +in.air_leakage_to_outside_ach50 8.5299 Total infiltration to the dwelling unit is 8.5299 ACH50 +in.air_leakage_to_outside_ach50 8.54 Total infiltration to the dwelling unit is 8.54 ACH50 +in.air_leakage_to_outside_ach50 8.541 Total infiltration to the dwelling unit is 8.541 ACH50 +in.air_leakage_to_outside_ach50 8.5533 Total infiltration to the dwelling unit is 8.5533 ACH50 +in.air_leakage_to_outside_ach50 8.5734 Total infiltration to the dwelling unit is 8.5734 ACH50 +in.air_leakage_to_outside_ach50 8.5769 Total infiltration to the dwelling unit is 8.5769 ACH50 +in.air_leakage_to_outside_ach50 8.5938 Total infiltration to the dwelling unit is 8.5938 ACH50 +in.air_leakage_to_outside_ach50 8.607 Total infiltration to the dwelling unit is 8.607 ACH50 +in.air_leakage_to_outside_ach50 8.61555 Total infiltration to the dwelling unit is 8.61555 ACH50 +in.air_leakage_to_outside_ach50 8.623 Total infiltration to the dwelling unit is 8.623 ACH50 +in.air_leakage_to_outside_ach50 8.627 Total infiltration to the dwelling unit is 8.627 ACH50 +in.air_leakage_to_outside_ach50 8.64795 Total infiltration to the dwelling unit is 8.64795 ACH50 +in.air_leakage_to_outside_ach50 8.6683 Total infiltration to the dwelling unit is 8.6683 ACH50 +in.air_leakage_to_outside_ach50 8.67765 Total infiltration to the dwelling unit is 8.67765 ACH50 +in.air_leakage_to_outside_ach50 8.6802 Total infiltration to the dwelling unit is 8.6802 ACH50 +in.air_leakage_to_outside_ach50 8.6946 Total infiltration to the dwelling unit is 8.6946 ACH50 +in.air_leakage_to_outside_ach50 8.69835 Total infiltration to the dwelling unit is 8.69835 ACH50 +in.air_leakage_to_outside_ach50 8.7116 Total infiltration to the dwelling unit is 8.7116 ACH50 +in.air_leakage_to_outside_ach50 8.7131 Total infiltration to the dwelling unit is 8.7131 ACH50 +in.air_leakage_to_outside_ach50 8.7168 Total infiltration to the dwelling unit is 8.7168 ACH50 +in.air_leakage_to_outside_ach50 8.7751 Total infiltration to the dwelling unit is 8.7751 ACH50 +in.air_leakage_to_outside_ach50 8.79105 Total infiltration to the dwelling unit is 8.79105 ACH50 +in.air_leakage_to_outside_ach50 8.7993 Total infiltration to the dwelling unit is 8.7993 ACH50 +in.air_leakage_to_outside_ach50 8.8315 Total infiltration to the dwelling unit is 8.8315 ACH50 +in.air_leakage_to_outside_ach50 8.8335 Total infiltration to the dwelling unit is 8.83349999999999 ACH50 +in.air_leakage_to_outside_ach50 8.8392 Total infiltration to the dwelling unit is 8.8392 ACH50 +in.air_leakage_to_outside_ach50 8.8544 Total infiltration to the dwelling unit is 8.8544 ACH50 +in.air_leakage_to_outside_ach50 8.8565 Total infiltration to the dwelling unit is 8.8565 ACH50 +in.air_leakage_to_outside_ach50 8.8616 Total infiltration to the dwelling unit is 8.8616 ACH50 +in.air_leakage_to_outside_ach50 8.883 Total infiltration to the dwelling unit is 8.883 ACH50 +in.air_leakage_to_outside_ach50 8.8863 Total infiltration to the dwelling unit is 8.8863 ACH50 +in.air_leakage_to_outside_ach50 8.8864 Total infiltration to the dwelling unit is 8.8864 ACH50 +in.air_leakage_to_outside_ach50 8.916 Total infiltration to the dwelling unit is 8.916 ACH50 +in.air_leakage_to_outside_ach50 8.9358 Total infiltration to the dwelling unit is 8.9358 ACH50 +in.air_leakage_to_outside_ach50 8.95395 Total infiltration to the dwelling unit is 8.95394999999999 ACH50 +in.air_leakage_to_outside_ach50 8.956 Total infiltration to the dwelling unit is 8.956 ACH50 +in.air_leakage_to_outside_ach50 8.9567 Total infiltration to the dwelling unit is 8.9567 ACH50 +in.air_leakage_to_outside_ach50 8.9604 Total infiltration to the dwelling unit is 8.9604 ACH50 +in.air_leakage_to_outside_ach50 8.962 Total infiltration to the dwelling unit is 8.962 ACH50 +in.air_leakage_to_outside_ach50 8.98185 Total infiltration to the dwelling unit is 8.98185 ACH50 +in.air_leakage_to_outside_ach50 8.9872 Total infiltration to the dwelling unit is 8.9872 ACH50 +in.air_leakage_to_outside_ach50 9.0204 Total infiltration to the dwelling unit is 9.0204 ACH50 +in.air_leakage_to_outside_ach50 9.0365 Total infiltration to the dwelling unit is 9.0365 ACH50 +in.air_leakage_to_outside_ach50 9.0542 Total infiltration to the dwelling unit is 9.0542 ACH50 +in.air_leakage_to_outside_ach50 9.06135 Total infiltration to the dwelling unit is 9.06135 ACH50 +in.air_leakage_to_outside_ach50 9.0672 Total infiltration to the dwelling unit is 9.0672 ACH50 +in.air_leakage_to_outside_ach50 9.0694 Total infiltration to the dwelling unit is 9.0694 ACH50 +in.air_leakage_to_outside_ach50 9.0701 Total infiltration to the dwelling unit is 9.0701 ACH50 +in.air_leakage_to_outside_ach50 9.08235 Total infiltration to the dwelling unit is 9.08235 ACH50 +in.air_leakage_to_outside_ach50 9.0895 Total infiltration to the dwelling unit is 9.0895 ACH50 +in.air_leakage_to_outside_ach50 9.08975 Total infiltration to the dwelling unit is 9.08975 ACH50 +in.air_leakage_to_outside_ach50 9.1005 Total infiltration to the dwelling unit is 9.1005 ACH50 +in.air_leakage_to_outside_ach50 9.1439 Total infiltration to the dwelling unit is 9.1439 ACH50 +in.air_leakage_to_outside_ach50 9.146 Total infiltration to the dwelling unit is 9.14599999999999 ACH50 +in.air_leakage_to_outside_ach50 9.1476 Total infiltration to the dwelling unit is 9.1476 ACH50 +in.air_leakage_to_outside_ach50 9.1493 Total infiltration to the dwelling unit is 9.1493 ACH50 +in.air_leakage_to_outside_ach50 9.17325 Total infiltration to the dwelling unit is 9.17325 ACH50 +in.air_leakage_to_outside_ach50 9.1736 Total infiltration to the dwelling unit is 9.1736 ACH50 +in.air_leakage_to_outside_ach50 9.18825 Total infiltration to the dwelling unit is 9.18825 ACH50 +in.air_leakage_to_outside_ach50 9.2126 Total infiltration to the dwelling unit is 9.2126 ACH50 +in.air_leakage_to_outside_ach50 9.2142 Total infiltration to the dwelling unit is 9.2142 ACH50 +in.air_leakage_to_outside_ach50 9.21525 Total infiltration to the dwelling unit is 9.21525 ACH50 +in.air_leakage_to_outside_ach50 9.239 Total infiltration to the dwelling unit is 9.239 ACH50 +in.air_leakage_to_outside_ach50 9.2649 Total infiltration to the dwelling unit is 9.2649 ACH50 +in.air_leakage_to_outside_ach50 9.26985 Total infiltration to the dwelling unit is 9.26985 ACH50 +in.air_leakage_to_outside_ach50 9.27 Total infiltration to the dwelling unit is 9.27 ACH50 +in.air_leakage_to_outside_ach50 9.279 Total infiltration to the dwelling unit is 9.279 ACH50 +in.air_leakage_to_outside_ach50 9.3002 Total infiltration to the dwelling unit is 9.3002 ACH50 +in.air_leakage_to_outside_ach50 9.33375 Total infiltration to the dwelling unit is 9.33375 ACH50 +in.air_leakage_to_outside_ach50 9.33735 Total infiltration to the dwelling unit is 9.33735 ACH50 +in.air_leakage_to_outside_ach50 9.3466 Total infiltration to the dwelling unit is 9.3466 ACH50 +in.air_leakage_to_outside_ach50 9.3993 Total infiltration to the dwelling unit is 9.3993 ACH50 +in.air_leakage_to_outside_ach50 9.425 Total infiltration to the dwelling unit is 9.425 ACH50 +in.air_leakage_to_outside_ach50 9.4432 Total infiltration to the dwelling unit is 9.4432 ACH50 +in.air_leakage_to_outside_ach50 9.44475 Total infiltration to the dwelling unit is 9.44475 ACH50 +in.air_leakage_to_outside_ach50 9.49755 Total infiltration to the dwelling unit is 9.49755 ACH50 +in.air_leakage_to_outside_ach50 9.5676 Total infiltration to the dwelling unit is 9.5676 ACH50 +in.air_leakage_to_outside_ach50 9.57875 Total infiltration to the dwelling unit is 9.57875 ACH50 +in.air_leakage_to_outside_ach50 9.6396 Total infiltration to the dwelling unit is 9.6396 ACH50 +in.air_leakage_to_outside_ach50 9.67005 Total infiltration to the dwelling unit is 9.67005 ACH50 +in.air_leakage_to_outside_ach50 9.67965 Total infiltration to the dwelling unit is 9.67965 ACH50 +in.air_leakage_to_outside_ach50 9.72315 Total infiltration to the dwelling unit is 9.72314999999999 ACH50 +in.air_leakage_to_outside_ach50 9.7484 Total infiltration to the dwelling unit is 9.7484 ACH50 +in.air_leakage_to_outside_ach50 9.8118 Total infiltration to the dwelling unit is 9.8118 ACH50 +in.air_leakage_to_outside_ach50 9.817 Total infiltration to the dwelling unit is 9.817 ACH50 +in.air_leakage_to_outside_ach50 9.8361 Total infiltration to the dwelling unit is 9.8361 ACH50 +in.air_leakage_to_outside_ach50 9.8395 Total infiltration to the dwelling unit is 9.8395 ACH50 +in.air_leakage_to_outside_ach50 9.8696 Total infiltration to the dwelling unit is 9.8696 ACH50 +in.air_leakage_to_outside_ach50 9.88755 Total infiltration to the dwelling unit is 9.88755 ACH50 +in.air_leakage_to_outside_ach50 9.933 Total infiltration to the dwelling unit is 9.933 ACH50 +in.air_leakage_to_outside_ach50 9.94455 Total infiltration to the dwelling unit is 9.94455 ACH50 +in.air_leakage_to_outside_ach50 9.9498 Total infiltration to the dwelling unit is 9.9498 ACH50 +in.air_leakage_to_outside_ach50 9.96255 Total infiltration to the dwelling unit is 9.96255 ACH50 +in.air_leakage_to_outside_ach50 9.98325 Total infiltration to the dwelling unit is 9.98325 ACH50 +in.air_leakage_to_outside_ach50 10 Total infiltration to the dwelling unit is 10 ACH50 +in.air_leakage_to_outside_ach50 10.0195 Total infiltration to the dwelling unit is 10.0195 ACH50 +in.air_leakage_to_outside_ach50 10.01975 Total infiltration to the dwelling unit is 10.01975 ACH50 +in.air_leakage_to_outside_ach50 10.0221 Total infiltration to the dwelling unit is 10.0221 ACH50 +in.air_leakage_to_outside_ach50 10.06155 Total infiltration to the dwelling unit is 10.06155 ACH50 +in.air_leakage_to_outside_ach50 10.0845 Total infiltration to the dwelling unit is 10.0845 ACH50 +in.air_leakage_to_outside_ach50 10.106 Total infiltration to the dwelling unit is 10.106 ACH50 +in.air_leakage_to_outside_ach50 10.1358 Total infiltration to the dwelling unit is 10.1358 ACH50 +in.air_leakage_to_outside_ach50 10.15395 Total infiltration to the dwelling unit is 10.15395 ACH50 +in.air_leakage_to_outside_ach50 10.1607 Total infiltration to the dwelling unit is 10.1607 ACH50 +in.air_leakage_to_outside_ach50 10.17525 Total infiltration to the dwelling unit is 10.17525 ACH50 +in.air_leakage_to_outside_ach50 10.19865 Total infiltration to the dwelling unit is 10.19865 ACH50 +in.air_leakage_to_outside_ach50 10.22685 Total infiltration to the dwelling unit is 10.22685 ACH50 +in.air_leakage_to_outside_ach50 10.27965 Total infiltration to the dwelling unit is 10.27965 ACH50 +in.air_leakage_to_outside_ach50 10.3318 Total infiltration to the dwelling unit is 10.3318 ACH50 +in.air_leakage_to_outside_ach50 10.35225 Total infiltration to the dwelling unit is 10.35225 ACH50 +in.air_leakage_to_outside_ach50 10.3524 Total infiltration to the dwelling unit is 10.3524 ACH50 +in.air_leakage_to_outside_ach50 10.35975 Total infiltration to the dwelling unit is 10.35975 ACH50 +in.air_leakage_to_outside_ach50 10.3612 Total infiltration to the dwelling unit is 10.3612 ACH50 +in.air_leakage_to_outside_ach50 10.38075 Total infiltration to the dwelling unit is 10.38075 ACH50 +in.air_leakage_to_outside_ach50 10.3824 Total infiltration to the dwelling unit is 10.3824 ACH50 +in.air_leakage_to_outside_ach50 10.3923 Total infiltration to the dwelling unit is 10.3923 ACH50 +in.air_leakage_to_outside_ach50 10.3992 Total infiltration to the dwelling unit is 10.3992 ACH50 +in.air_leakage_to_outside_ach50 10.4088 Total infiltration to the dwelling unit is 10.4088 ACH50 +in.air_leakage_to_outside_ach50 10.4748 Total infiltration to the dwelling unit is 10.4748 ACH50 +in.air_leakage_to_outside_ach50 10.50585 Total infiltration to the dwelling unit is 10.5058499999999 ACH50 +in.air_leakage_to_outside_ach50 10.5108 Total infiltration to the dwelling unit is 10.5108 ACH50 +in.air_leakage_to_outside_ach50 10.5204 Total infiltration to the dwelling unit is 10.5204 ACH50 +in.air_leakage_to_outside_ach50 10.5288 Total infiltration to the dwelling unit is 10.5288 ACH50 +in.air_leakage_to_outside_ach50 10.5315 Total infiltration to the dwelling unit is 10.5315 ACH50 +in.air_leakage_to_outside_ach50 10.6188 Total infiltration to the dwelling unit is 10.6188 ACH50 +in.air_leakage_to_outside_ach50 10.62315 Total infiltration to the dwelling unit is 10.62315 ACH50 +in.air_leakage_to_outside_ach50 10.6536 Total infiltration to the dwelling unit is 10.6536 ACH50 +in.air_leakage_to_outside_ach50 10.65675 Total infiltration to the dwelling unit is 10.65675 ACH50 +in.air_leakage_to_outside_ach50 10.66225 Total infiltration to the dwelling unit is 10.66225 ACH50 +in.air_leakage_to_outside_ach50 10.6652 Total infiltration to the dwelling unit is 10.6651999999999 ACH50 +in.air_leakage_to_outside_ach50 10.7366 Total infiltration to the dwelling unit is 10.7366 ACH50 +in.air_leakage_to_outside_ach50 10.7428 Total infiltration to the dwelling unit is 10.7427999999999 ACH50 +in.air_leakage_to_outside_ach50 10.77875 Total infiltration to the dwelling unit is 10.7787499999999 ACH50 +in.air_leakage_to_outside_ach50 10.8168 Total infiltration to the dwelling unit is 10.8168 ACH50 +in.air_leakage_to_outside_ach50 10.8196 Total infiltration to the dwelling unit is 10.8196 ACH50 +in.air_leakage_to_outside_ach50 10.875 Total infiltration to the dwelling unit is 10.875 ACH50 +in.air_leakage_to_outside_ach50 10.878 Total infiltration to the dwelling unit is 10.878 ACH50 +in.air_leakage_to_outside_ach50 10.9077 Total infiltration to the dwelling unit is 10.9077 ACH50 +in.air_leakage_to_outside_ach50 10.916 Total infiltration to the dwelling unit is 10.9159999999999 ACH50 +in.air_leakage_to_outside_ach50 10.92045 Total infiltration to the dwelling unit is 10.9204499999999 ACH50 +in.air_leakage_to_outside_ach50 10.9512 Total infiltration to the dwelling unit is 10.9512 ACH50 +in.air_leakage_to_outside_ach50 11.0334 Total infiltration to the dwelling unit is 11.0334 ACH50 +in.air_leakage_to_outside_ach50 11.068 Total infiltration to the dwelling unit is 11.068 ACH50 +in.air_leakage_to_outside_ach50 11.1074 Total infiltration to the dwelling unit is 11.1074 ACH50 +in.air_leakage_to_outside_ach50 11.11485 Total infiltration to the dwelling unit is 11.11485 ACH50 +in.air_leakage_to_outside_ach50 11.1348 Total infiltration to the dwelling unit is 11.1348 ACH50 +in.air_leakage_to_outside_ach50 11.13495 Total infiltration to the dwelling unit is 11.13495 ACH50 +in.air_leakage_to_outside_ach50 11.13735 Total infiltration to the dwelling unit is 11.13735 ACH50 +in.air_leakage_to_outside_ach50 11.13915 Total infiltration to the dwelling unit is 11.13915 ACH50 +in.air_leakage_to_outside_ach50 11.15565 Total infiltration to the dwelling unit is 11.15565 ACH50 +in.air_leakage_to_outside_ach50 11.1784 Total infiltration to the dwelling unit is 11.1784 ACH50 +in.air_leakage_to_outside_ach50 11.1826 Total infiltration to the dwelling unit is 11.1826 ACH50 +in.air_leakage_to_outside_ach50 11.2025 Total infiltration to the dwelling unit is 11.2025 ACH50 +in.air_leakage_to_outside_ach50 11.215 Total infiltration to the dwelling unit is 11.215 ACH50 +in.air_leakage_to_outside_ach50 11.2311 Total infiltration to the dwelling unit is 11.2311 ACH50 +in.air_leakage_to_outside_ach50 11.234 Total infiltration to the dwelling unit is 11.234 ACH50 +in.air_leakage_to_outside_ach50 11.2572 Total infiltration to the dwelling unit is 11.2572 ACH50 +in.air_leakage_to_outside_ach50 11.2668 Total infiltration to the dwelling unit is 11.2668 ACH50 +in.air_leakage_to_outside_ach50 11.28975 Total infiltration to the dwelling unit is 11.28975 ACH50 +in.air_leakage_to_outside_ach50 11.299 Total infiltration to the dwelling unit is 11.299 ACH50 +in.air_leakage_to_outside_ach50 11.31775 Total infiltration to the dwelling unit is 11.31775 ACH50 +in.air_leakage_to_outside_ach50 11.3745 Total infiltration to the dwelling unit is 11.3745 ACH50 +in.air_leakage_to_outside_ach50 11.38515 Total infiltration to the dwelling unit is 11.38515 ACH50 +in.air_leakage_to_outside_ach50 11.38545 Total infiltration to the dwelling unit is 11.38545 ACH50 +in.air_leakage_to_outside_ach50 11.3934 Total infiltration to the dwelling unit is 11.3934 ACH50 +in.air_leakage_to_outside_ach50 11.3997 Total infiltration to the dwelling unit is 11.3997 ACH50 +in.air_leakage_to_outside_ach50 11.4033 Total infiltration to the dwelling unit is 11.4033 ACH50 +in.air_leakage_to_outside_ach50 11.42805 Total infiltration to the dwelling unit is 11.42805 ACH50 +in.air_leakage_to_outside_ach50 11.4312 Total infiltration to the dwelling unit is 11.4311999999999 ACH50 +in.air_leakage_to_outside_ach50 11.4325 Total infiltration to the dwelling unit is 11.4325 ACH50 +in.air_leakage_to_outside_ach50 11.4345 Total infiltration to the dwelling unit is 11.4345 ACH50 +in.air_leakage_to_outside_ach50 11.4351 Total infiltration to the dwelling unit is 11.4351 ACH50 +in.air_leakage_to_outside_ach50 11.4584 Total infiltration to the dwelling unit is 11.4584 ACH50 +in.air_leakage_to_outside_ach50 11.467 Total infiltration to the dwelling unit is 11.4669999999999 ACH50 +in.air_leakage_to_outside_ach50 11.4874 Total infiltration to the dwelling unit is 11.4874 ACH50 +in.air_leakage_to_outside_ach50 11.4945 Total infiltration to the dwelling unit is 11.4945 ACH50 +in.air_leakage_to_outside_ach50 11.49945 Total infiltration to the dwelling unit is 11.49945 ACH50 +in.air_leakage_to_outside_ach50 11.5176 Total infiltration to the dwelling unit is 11.5176 ACH50 +in.air_leakage_to_outside_ach50 11.52615 Total infiltration to the dwelling unit is 11.52615 ACH50 +in.air_leakage_to_outside_ach50 11.52855 Total infiltration to the dwelling unit is 11.52855 ACH50 +in.air_leakage_to_outside_ach50 11.5306 Total infiltration to the dwelling unit is 11.5306 ACH50 +in.air_leakage_to_outside_ach50 11.55735 Total infiltration to the dwelling unit is 11.55735 ACH50 +in.air_leakage_to_outside_ach50 11.5702 Total infiltration to the dwelling unit is 11.5702 ACH50 +in.air_leakage_to_outside_ach50 11.5736 Total infiltration to the dwelling unit is 11.5735999999999 ACH50 +in.air_leakage_to_outside_ach50 11.5848 Total infiltration to the dwelling unit is 11.5848 ACH50 +in.air_leakage_to_outside_ach50 11.5928 Total infiltration to the dwelling unit is 11.5928 ACH50 +in.air_leakage_to_outside_ach50 11.5935 Total infiltration to the dwelling unit is 11.5935 ACH50 +in.air_leakage_to_outside_ach50 11.5978 Total infiltration to the dwelling unit is 11.5978 ACH50 +in.air_leakage_to_outside_ach50 11.6224 Total infiltration to the dwelling unit is 11.6223999999999 ACH50 +in.air_leakage_to_outside_ach50 11.66535 Total infiltration to the dwelling unit is 11.66535 ACH50 +in.air_leakage_to_outside_ach50 11.6919 Total infiltration to the dwelling unit is 11.6919 ACH50 +in.air_leakage_to_outside_ach50 11.7183 Total infiltration to the dwelling unit is 11.7183 ACH50 +in.air_leakage_to_outside_ach50 11.7214 Total infiltration to the dwelling unit is 11.7214 ACH50 +in.air_leakage_to_outside_ach50 11.72505 Total infiltration to the dwelling unit is 11.72505 ACH50 +in.air_leakage_to_outside_ach50 11.7324 Total infiltration to the dwelling unit is 11.7324 ACH50 +in.air_leakage_to_outside_ach50 11.778 Total infiltration to the dwelling unit is 11.7779999999999 ACH50 +in.air_leakage_to_outside_ach50 11.7969 Total infiltration to the dwelling unit is 11.7969 ACH50 +in.air_leakage_to_outside_ach50 11.8074 Total infiltration to the dwelling unit is 11.8074 ACH50 +in.air_leakage_to_outside_ach50 11.80785 Total infiltration to the dwelling unit is 11.8078499999999 ACH50 +in.air_leakage_to_outside_ach50 11.8239 Total infiltration to the dwelling unit is 11.8239 ACH50 +in.air_leakage_to_outside_ach50 11.844 Total infiltration to the dwelling unit is 11.844 ACH50 +in.air_leakage_to_outside_ach50 11.8473 Total infiltration to the dwelling unit is 11.8472999999999 ACH50 +in.air_leakage_to_outside_ach50 11.8584 Total infiltration to the dwelling unit is 11.8584 ACH50 +in.air_leakage_to_outside_ach50 11.8701 Total infiltration to the dwelling unit is 11.8701 ACH50 +in.air_leakage_to_outside_ach50 11.888 Total infiltration to the dwelling unit is 11.888 ACH50 +in.air_leakage_to_outside_ach50 11.9386 Total infiltration to the dwelling unit is 11.9386 ACH50 +in.air_leakage_to_outside_ach50 11.9415 Total infiltration to the dwelling unit is 11.9415 ACH50 +in.air_leakage_to_outside_ach50 11.9472 Total infiltration to the dwelling unit is 11.9472 ACH50 +in.air_leakage_to_outside_ach50 11.9595 Total infiltration to the dwelling unit is 11.9595 ACH50 +in.air_leakage_to_outside_ach50 11.97705 Total infiltration to the dwelling unit is 11.97705 ACH50 +in.air_leakage_to_outside_ach50 11.9802 Total infiltration to the dwelling unit is 11.9802 ACH50 +in.air_leakage_to_outside_ach50 11.98155 Total infiltration to the dwelling unit is 11.98155 ACH50 +in.air_leakage_to_outside_ach50 11.99415 Total infiltration to the dwelling unit is 11.99415 ACH50 +in.air_leakage_to_outside_ach50 12.0237 Total infiltration to the dwelling unit is 12.0237 ACH50 +in.air_leakage_to_outside_ach50 12.0272 Total infiltration to the dwelling unit is 12.0272 ACH50 +in.air_leakage_to_outside_ach50 12.0336 Total infiltration to the dwelling unit is 12.0336 ACH50 +in.air_leakage_to_outside_ach50 12.0495 Total infiltration to the dwelling unit is 12.0495 ACH50 +in.air_leakage_to_outside_ach50 12.05025 Total infiltration to the dwelling unit is 12.05025 ACH50 +in.air_leakage_to_outside_ach50 12.0818 Total infiltration to the dwelling unit is 12.0818 ACH50 +in.air_leakage_to_outside_ach50 12.08655 Total infiltration to the dwelling unit is 12.0865499999999 ACH50 +in.air_leakage_to_outside_ach50 12.0896 Total infiltration to the dwelling unit is 12.0896 ACH50 +in.air_leakage_to_outside_ach50 12.134 Total infiltration to the dwelling unit is 12.134 ACH50 +in.air_leakage_to_outside_ach50 12.137 Total infiltration to the dwelling unit is 12.137 ACH50 +in.air_leakage_to_outside_ach50 12.1668 Total infiltration to the dwelling unit is 12.1667999999999 ACH50 +in.air_leakage_to_outside_ach50 12.18225 Total infiltration to the dwelling unit is 12.18225 ACH50 +in.air_leakage_to_outside_ach50 12.19965 Total infiltration to the dwelling unit is 12.19965 ACH50 +in.air_leakage_to_outside_ach50 12.2082 Total infiltration to the dwelling unit is 12.2082 ACH50 +in.air_leakage_to_outside_ach50 12.21015 Total infiltration to the dwelling unit is 12.21015 ACH50 +in.air_leakage_to_outside_ach50 12.2103 Total infiltration to the dwelling unit is 12.2103 ACH50 +in.air_leakage_to_outside_ach50 12.22245 Total infiltration to the dwelling unit is 12.22245 ACH50 +in.air_leakage_to_outside_ach50 12.231 Total infiltration to the dwelling unit is 12.231 ACH50 +in.air_leakage_to_outside_ach50 12.27315 Total infiltration to the dwelling unit is 12.27315 ACH50 +in.air_leakage_to_outside_ach50 12.287 Total infiltration to the dwelling unit is 12.2869999999999 ACH50 +in.air_leakage_to_outside_ach50 12.337 Total infiltration to the dwelling unit is 12.337 ACH50 +in.air_leakage_to_outside_ach50 12.3399 Total infiltration to the dwelling unit is 12.3399 ACH50 +in.air_leakage_to_outside_ach50 12.3598 Total infiltration to the dwelling unit is 12.3598 ACH50 +in.air_leakage_to_outside_ach50 12.3615 Total infiltration to the dwelling unit is 12.3615 ACH50 +in.air_leakage_to_outside_ach50 12.41805 Total infiltration to the dwelling unit is 12.41805 ACH50 +in.air_leakage_to_outside_ach50 12.4317 Total infiltration to the dwelling unit is 12.4317 ACH50 +in.air_leakage_to_outside_ach50 12.43725 Total infiltration to the dwelling unit is 12.4372499999999 ACH50 +in.air_leakage_to_outside_ach50 12.445 Total infiltration to the dwelling unit is 12.445 ACH50 +in.air_leakage_to_outside_ach50 12.44805 Total infiltration to the dwelling unit is 12.44805 ACH50 +in.air_leakage_to_outside_ach50 12.4498 Total infiltration to the dwelling unit is 12.4498 ACH50 +in.air_leakage_to_outside_ach50 12.4722 Total infiltration to the dwelling unit is 12.4722 ACH50 +in.air_leakage_to_outside_ach50 12.5 Total infiltration to the dwelling unit is 12.5 ACH50 +in.air_leakage_to_outside_ach50 12.51105 Total infiltration to the dwelling unit is 12.51105 ACH50 +in.air_leakage_to_outside_ach50 12.51675 Total infiltration to the dwelling unit is 12.51675 ACH50 +in.air_leakage_to_outside_ach50 12.52425 Total infiltration to the dwelling unit is 12.52425 ACH50 +in.air_leakage_to_outside_ach50 12.5324 Total infiltration to the dwelling unit is 12.5323999999999 ACH50 +in.air_leakage_to_outside_ach50 12.5679 Total infiltration to the dwelling unit is 12.5679 ACH50 +in.air_leakage_to_outside_ach50 12.57705 Total infiltration to the dwelling unit is 12.57705 ACH50 +in.air_leakage_to_outside_ach50 12.593 Total infiltration to the dwelling unit is 12.593 ACH50 +in.air_leakage_to_outside_ach50 12.59925 Total infiltration to the dwelling unit is 12.59925 ACH50 +in.air_leakage_to_outside_ach50 12.6325 Total infiltration to the dwelling unit is 12.6324999999999 ACH50 +in.air_leakage_to_outside_ach50 12.6378 Total infiltration to the dwelling unit is 12.6378 ACH50 +in.air_leakage_to_outside_ach50 12.6399 Total infiltration to the dwelling unit is 12.6398999999999 ACH50 +in.air_leakage_to_outside_ach50 12.64275 Total infiltration to the dwelling unit is 12.64275 ACH50 +in.air_leakage_to_outside_ach50 12.6634 Total infiltration to the dwelling unit is 12.6634 ACH50 +in.air_leakage_to_outside_ach50 12.6762 Total infiltration to the dwelling unit is 12.6762 ACH50 +in.air_leakage_to_outside_ach50 12.6903 Total infiltration to the dwelling unit is 12.6903 ACH50 +in.air_leakage_to_outside_ach50 12.69615 Total infiltration to the dwelling unit is 12.69615 ACH50 +in.air_leakage_to_outside_ach50 12.7554 Total infiltration to the dwelling unit is 12.7554 ACH50 +in.air_leakage_to_outside_ach50 12.7644 Total infiltration to the dwelling unit is 12.7644 ACH50 +in.air_leakage_to_outside_ach50 12.79485 Total infiltration to the dwelling unit is 12.79485 ACH50 +in.air_leakage_to_outside_ach50 12.81 Total infiltration to the dwelling unit is 12.81 ACH50 +in.air_leakage_to_outside_ach50 12.8115 Total infiltration to the dwelling unit is 12.8114999999999 ACH50 +in.air_leakage_to_outside_ach50 12.82995 Total infiltration to the dwelling unit is 12.82995 ACH50 +in.air_leakage_to_outside_ach50 12.8934 Total infiltration to the dwelling unit is 12.8934 ACH50 +in.air_leakage_to_outside_ach50 12.9062 Total infiltration to the dwelling unit is 12.9062 ACH50 +in.air_leakage_to_outside_ach50 12.91475 Total infiltration to the dwelling unit is 12.91475 ACH50 +in.air_leakage_to_outside_ach50 12.9345 Total infiltration to the dwelling unit is 12.9345 ACH50 +in.air_leakage_to_outside_ach50 12.9515 Total infiltration to the dwelling unit is 12.9515 ACH50 +in.air_leakage_to_outside_ach50 12.9642 Total infiltration to the dwelling unit is 12.9641999999999 ACH50 +in.air_leakage_to_outside_ach50 12.978 Total infiltration to the dwelling unit is 12.978 ACH50 +in.air_leakage_to_outside_ach50 12.999 Total infiltration to the dwelling unit is 12.9989999999999 ACH50 +in.air_leakage_to_outside_ach50 13.00245 Total infiltration to the dwelling unit is 13.00245 ACH50 +in.air_leakage_to_outside_ach50 13.0674 Total infiltration to the dwelling unit is 13.0674 ACH50 +in.air_leakage_to_outside_ach50 13.06965 Total infiltration to the dwelling unit is 13.06965 ACH50 +in.air_leakage_to_outside_ach50 13.0824 Total infiltration to the dwelling unit is 13.0824 ACH50 +in.air_leakage_to_outside_ach50 13.0935 Total infiltration to the dwelling unit is 13.0934999999999 ACH50 +in.air_leakage_to_outside_ach50 13.1148 Total infiltration to the dwelling unit is 13.1147999999999 ACH50 +in.air_leakage_to_outside_ach50 13.16265 Total infiltration to the dwelling unit is 13.16265 ACH50 +in.air_leakage_to_outside_ach50 13.244 Total infiltration to the dwelling unit is 13.244 ACH50 +in.air_leakage_to_outside_ach50 13.24725 Total infiltration to the dwelling unit is 13.24725 ACH50 +in.air_leakage_to_outside_ach50 13.2588 Total infiltration to the dwelling unit is 13.2588 ACH50 +in.air_leakage_to_outside_ach50 13.2594 Total infiltration to the dwelling unit is 13.2594 ACH50 +in.air_leakage_to_outside_ach50 13.2816 Total infiltration to the dwelling unit is 13.2816 ACH50 +in.air_leakage_to_outside_ach50 13.28475 Total infiltration to the dwelling unit is 13.28475 ACH50 +in.air_leakage_to_outside_ach50 13.2924 Total infiltration to the dwelling unit is 13.2923999999999 ACH50 +in.air_leakage_to_outside_ach50 13.311 Total infiltration to the dwelling unit is 13.311 ACH50 +in.air_leakage_to_outside_ach50 13.317 Total infiltration to the dwelling unit is 13.317 ACH50 +in.air_leakage_to_outside_ach50 13.3315 Total infiltration to the dwelling unit is 13.3314999999999 ACH50 +in.air_leakage_to_outside_ach50 13.3628 Total infiltration to the dwelling unit is 13.3628 ACH50 +in.air_leakage_to_outside_ach50 13.4037 Total infiltration to the dwelling unit is 13.4037 ACH50 +in.air_leakage_to_outside_ach50 13.4154 Total infiltration to the dwelling unit is 13.4154 ACH50 +in.air_leakage_to_outside_ach50 13.42075 Total infiltration to the dwelling unit is 13.42075 ACH50 +in.air_leakage_to_outside_ach50 13.434 Total infiltration to the dwelling unit is 13.434 ACH50 +in.air_leakage_to_outside_ach50 13.43505 Total infiltration to the dwelling unit is 13.43505 ACH50 +in.air_leakage_to_outside_ach50 13.443 Total infiltration to the dwelling unit is 13.443 ACH50 +in.air_leakage_to_outside_ach50 13.5144 Total infiltration to the dwelling unit is 13.5144 ACH50 +in.air_leakage_to_outside_ach50 13.521 Total infiltration to the dwelling unit is 13.5209999999999 ACH50 +in.air_leakage_to_outside_ach50 13.5245 Total infiltration to the dwelling unit is 13.5245 ACH50 +in.air_leakage_to_outside_ach50 13.5386 Total infiltration to the dwelling unit is 13.5386 ACH50 +in.air_leakage_to_outside_ach50 13.5813 Total infiltration to the dwelling unit is 13.5813 ACH50 +in.air_leakage_to_outside_ach50 13.59375 Total infiltration to the dwelling unit is 13.5937499999999 ACH50 +in.air_leakage_to_outside_ach50 13.5975 Total infiltration to the dwelling unit is 13.5975 ACH50 +in.air_leakage_to_outside_ach50 13.5982 Total infiltration to the dwelling unit is 13.5982 ACH50 +in.air_leakage_to_outside_ach50 13.6041 Total infiltration to the dwelling unit is 13.6040999999999 ACH50 +in.air_leakage_to_outside_ach50 13.60515 Total infiltration to the dwelling unit is 13.60515 ACH50 +in.air_leakage_to_outside_ach50 13.6358 Total infiltration to the dwelling unit is 13.6358 ACH50 +in.air_leakage_to_outside_ach50 13.645 Total infiltration to the dwelling unit is 13.645 ACH50 +in.air_leakage_to_outside_ach50 13.689 Total infiltration to the dwelling unit is 13.689 ACH50 +in.air_leakage_to_outside_ach50 13.7062 Total infiltration to the dwelling unit is 13.7061999999999 ACH50 +in.air_leakage_to_outside_ach50 13.71585 Total infiltration to the dwelling unit is 13.71585 ACH50 +in.air_leakage_to_outside_ach50 13.719 Total infiltration to the dwelling unit is 13.719 ACH50 +in.air_leakage_to_outside_ach50 13.72395 Total infiltration to the dwelling unit is 13.72395 ACH50 +in.air_leakage_to_outside_ach50 13.7604 Total infiltration to the dwelling unit is 13.7603999999999 ACH50 +in.air_leakage_to_outside_ach50 13.79175 Total infiltration to the dwelling unit is 13.79175 ACH50 +in.air_leakage_to_outside_ach50 13.803 Total infiltration to the dwelling unit is 13.803 ACH50 +in.air_leakage_to_outside_ach50 13.8032 Total infiltration to the dwelling unit is 13.8032 ACH50 +in.air_leakage_to_outside_ach50 13.8189 Total infiltration to the dwelling unit is 13.8189 ACH50 +in.air_leakage_to_outside_ach50 13.8213 Total infiltration to the dwelling unit is 13.8213 ACH50 +in.air_leakage_to_outside_ach50 13.841 Total infiltration to the dwelling unit is 13.841 ACH50 +in.air_leakage_to_outside_ach50 13.8564 Total infiltration to the dwelling unit is 13.8564 ACH50 +in.air_leakage_to_outside_ach50 13.88425 Total infiltration to the dwelling unit is 13.88425 ACH50 +in.air_leakage_to_outside_ach50 13.89735 Total infiltration to the dwelling unit is 13.89735 ACH50 +in.air_leakage_to_outside_ach50 13.905 Total infiltration to the dwelling unit is 13.905 ACH50 +in.air_leakage_to_outside_ach50 13.9503 Total infiltration to the dwelling unit is 13.9502999999999 ACH50 +in.air_leakage_to_outside_ach50 13.973 Total infiltration to the dwelling unit is 13.9729999999999 ACH50 +in.air_leakage_to_outside_ach50 13.97825 Total infiltration to the dwelling unit is 13.97825 ACH50 +in.air_leakage_to_outside_ach50 14.0078 Total infiltration to the dwelling unit is 14.0078 ACH50 +in.air_leakage_to_outside_ach50 14.0144 Total infiltration to the dwelling unit is 14.0144 ACH50 +in.air_leakage_to_outside_ach50 14.0272 Total infiltration to the dwelling unit is 14.0272 ACH50 +in.air_leakage_to_outside_ach50 14.0384 Total infiltration to the dwelling unit is 14.0384 ACH50 +in.air_leakage_to_outside_ach50 14.0835 Total infiltration to the dwelling unit is 14.0834999999999 ACH50 +in.air_leakage_to_outside_ach50 14.12375 Total infiltration to the dwelling unit is 14.12375 ACH50 +in.air_leakage_to_outside_ach50 14.1642 Total infiltration to the dwelling unit is 14.1642 ACH50 +in.air_leakage_to_outside_ach50 14.1648 Total infiltration to the dwelling unit is 14.1648 ACH50 +in.air_leakage_to_outside_ach50 14.209 Total infiltration to the dwelling unit is 14.209 ACH50 +in.air_leakage_to_outside_ach50 14.217 Total infiltration to the dwelling unit is 14.2169999999999 ACH50 +in.air_leakage_to_outside_ach50 14.289 Total infiltration to the dwelling unit is 14.289 ACH50 +in.air_leakage_to_outside_ach50 14.323 Total infiltration to the dwelling unit is 14.323 ACH50 +in.air_leakage_to_outside_ach50 14.3514 Total infiltration to the dwelling unit is 14.3514 ACH50 +in.air_leakage_to_outside_ach50 14.35925 Total infiltration to the dwelling unit is 14.35925 ACH50 +in.air_leakage_to_outside_ach50 14.41325 Total infiltration to the dwelling unit is 14.41325 ACH50 +in.air_leakage_to_outside_ach50 14.4594 Total infiltration to the dwelling unit is 14.4594 ACH50 +in.air_leakage_to_outside_ach50 14.46275 Total infiltration to the dwelling unit is 14.46275 ACH50 +in.air_leakage_to_outside_ach50 14.467 Total infiltration to the dwelling unit is 14.4669999999999 ACH50 +in.air_leakage_to_outside_ach50 14.491 Total infiltration to the dwelling unit is 14.491 ACH50 +in.air_leakage_to_outside_ach50 14.49725 Total infiltration to the dwelling unit is 14.49725 ACH50 +in.air_leakage_to_outside_ach50 14.528 Total infiltration to the dwelling unit is 14.5279999999999 ACH50 +in.air_leakage_to_outside_ach50 14.5436 Total infiltration to the dwelling unit is 14.5436 ACH50 +in.air_leakage_to_outside_ach50 14.5606 Total infiltration to the dwelling unit is 14.5605999999999 ACH50 +in.air_leakage_to_outside_ach50 14.6226 Total infiltration to the dwelling unit is 14.6226 ACH50 +in.air_leakage_to_outside_ach50 14.65175 Total infiltration to the dwelling unit is 14.65175 ACH50 +in.air_leakage_to_outside_ach50 14.7225 Total infiltration to the dwelling unit is 14.7225 ACH50 +in.air_leakage_to_outside_ach50 14.805 Total infiltration to the dwelling unit is 14.8049999999999 ACH50 +in.air_leakage_to_outside_ach50 14.8198 Total infiltration to the dwelling unit is 14.8198 ACH50 +in.air_leakage_to_outside_ach50 14.8464 Total infiltration to the dwelling unit is 14.8464 ACH50 +in.air_leakage_to_outside_ach50 14.8466 Total infiltration to the dwelling unit is 14.8466 ACH50 +in.air_leakage_to_outside_ach50 14.8522 Total infiltration to the dwelling unit is 14.8522 ACH50 +in.air_leakage_to_outside_ach50 14.86 Total infiltration to the dwelling unit is 14.86 ACH50 +in.air_leakage_to_outside_ach50 14.92325 Total infiltration to the dwelling unit is 14.92325 ACH50 +in.air_leakage_to_outside_ach50 14.9247 Total infiltration to the dwelling unit is 14.9247 ACH50 +in.air_leakage_to_outside_ach50 14.934 Total infiltration to the dwelling unit is 14.934 ACH50 +in.air_leakage_to_outside_ach50 14.9748 Total infiltration to the dwelling unit is 14.9747999999999 ACH50 +in.air_leakage_to_outside_ach50 15 Total infiltration to the dwelling unit is 15 ACH50 +in.air_leakage_to_outside_ach50 15.034 Total infiltration to the dwelling unit is 15.034 ACH50 +in.air_leakage_to_outside_ach50 15.053 Total infiltration to the dwelling unit is 15.053 ACH50 +in.air_leakage_to_outside_ach50 15.10225 Total infiltration to the dwelling unit is 15.10225 ACH50 +in.air_leakage_to_outside_ach50 15.112 Total infiltration to the dwelling unit is 15.112 ACH50 +in.air_leakage_to_outside_ach50 15.159 Total infiltration to the dwelling unit is 15.1589999999999 ACH50 +in.air_leakage_to_outside_ach50 15.166 Total infiltration to the dwelling unit is 15.166 ACH50 +in.air_leakage_to_outside_ach50 15.1675 Total infiltration to the dwelling unit is 15.1675 ACH50 +in.air_leakage_to_outside_ach50 15.17125 Total infiltration to the dwelling unit is 15.17125 ACH50 +in.air_leakage_to_outside_ach50 15.1802 Total infiltration to the dwelling unit is 15.1802 ACH50 +in.air_leakage_to_outside_ach50 15.1806 Total infiltration to the dwelling unit is 15.1806 ACH50 +in.air_leakage_to_outside_ach50 15.1912 Total infiltration to the dwelling unit is 15.1912 ACH50 +in.air_leakage_to_outside_ach50 15.1996 Total infiltration to the dwelling unit is 15.1996 ACH50 +in.air_leakage_to_outside_ach50 15.2374 Total infiltration to the dwelling unit is 15.2374 ACH50 +in.air_leakage_to_outside_ach50 15.2468 Total infiltration to the dwelling unit is 15.2468 ACH50 +in.air_leakage_to_outside_ach50 15.28875 Total infiltration to the dwelling unit is 15.28875 ACH50 +in.air_leakage_to_outside_ach50 15.326 Total infiltration to the dwelling unit is 15.326 ACH50 +in.air_leakage_to_outside_ach50 15.3326 Total infiltration to the dwelling unit is 15.3326 ACH50 +in.air_leakage_to_outside_ach50 15.3568 Total infiltration to the dwelling unit is 15.3568 ACH50 +in.air_leakage_to_outside_ach50 15.35875 Total infiltration to the dwelling unit is 15.3587499999999 ACH50 +in.air_leakage_to_outside_ach50 15.3682 Total infiltration to the dwelling unit is 15.3682 ACH50 +in.air_leakage_to_outside_ach50 15.3714 Total infiltration to the dwelling unit is 15.3714 ACH50 +in.air_leakage_to_outside_ach50 15.4098 Total infiltration to the dwelling unit is 15.4098 ACH50 +in.air_leakage_to_outside_ach50 15.4455 Total infiltration to the dwelling unit is 15.4455 ACH50 +in.air_leakage_to_outside_ach50 15.4464 Total infiltration to the dwelling unit is 15.4464 ACH50 +in.air_leakage_to_outside_ach50 15.44975 Total infiltration to the dwelling unit is 15.44975 ACH50 +in.air_leakage_to_outside_ach50 15.4977 Total infiltration to the dwelling unit is 15.4977 ACH50 +in.air_leakage_to_outside_ach50 15.5418 Total infiltration to the dwelling unit is 15.5417999999999 ACH50 +in.air_leakage_to_outside_ach50 15.5538 Total infiltration to the dwelling unit is 15.5537999999999 ACH50 +in.air_leakage_to_outside_ach50 15.55625 Total infiltration to the dwelling unit is 15.5562499999999 ACH50 +in.air_leakage_to_outside_ach50 15.56225 Total infiltration to the dwelling unit is 15.5622499999999 ACH50 +in.air_leakage_to_outside_ach50 15.5736 Total infiltration to the dwelling unit is 15.5736 ACH50 +in.air_leakage_to_outside_ach50 15.5892 Total infiltration to the dwelling unit is 15.5892 ACH50 +in.air_leakage_to_outside_ach50 15.5988 Total infiltration to the dwelling unit is 15.5987999999999 ACH50 +in.air_leakage_to_outside_ach50 15.6244 Total infiltration to the dwelling unit is 15.6244 ACH50 +in.air_leakage_to_outside_ach50 15.6334 Total infiltration to the dwelling unit is 15.6334 ACH50 +in.air_leakage_to_outside_ach50 15.6655 Total infiltration to the dwelling unit is 15.6654999999999 ACH50 +in.air_leakage_to_outside_ach50 15.7122 Total infiltration to the dwelling unit is 15.7122 ACH50 +in.air_leakage_to_outside_ach50 15.7292 Total infiltration to the dwelling unit is 15.7292 ACH50 +in.air_leakage_to_outside_ach50 15.74125 Total infiltration to the dwelling unit is 15.74125 ACH50 +in.air_leakage_to_outside_ach50 15.7432 Total infiltration to the dwelling unit is 15.7432 ACH50 +in.air_leakage_to_outside_ach50 15.7438 Total infiltration to the dwelling unit is 15.7437999999999 ACH50 +in.air_leakage_to_outside_ach50 15.7652 Total infiltration to the dwelling unit is 15.7652 ACH50 +in.air_leakage_to_outside_ach50 15.7964 Total infiltration to the dwelling unit is 15.7963999999999 ACH50 +in.air_leakage_to_outside_ach50 15.8112 Total infiltration to the dwelling unit is 15.8112 ACH50 +in.air_leakage_to_outside_ach50 15.8268 Total infiltration to the dwelling unit is 15.8268 ACH50 +in.air_leakage_to_outside_ach50 15.82925 Total infiltration to the dwelling unit is 15.82925 ACH50 +in.air_leakage_to_outside_ach50 15.922 Total infiltration to the dwelling unit is 15.922 ACH50 +in.air_leakage_to_outside_ach50 15.9694 Total infiltration to the dwelling unit is 15.9694 ACH50 +in.air_leakage_to_outside_ach50 15.9736 Total infiltration to the dwelling unit is 15.9736 ACH50 +in.air_leakage_to_outside_ach50 15.9754 Total infiltration to the dwelling unit is 15.9754 ACH50 +in.air_leakage_to_outside_ach50 15.9922 Total infiltration to the dwelling unit is 15.9922 ACH50 +in.air_leakage_to_outside_ach50 16.0316 Total infiltration to the dwelling unit is 16.0315999999999 ACH50 +in.air_leakage_to_outside_ach50 16.0448 Total infiltration to the dwelling unit is 16.0448 ACH50 +in.air_leakage_to_outside_ach50 16.067 Total infiltration to the dwelling unit is 16.067 ACH50 +in.air_leakage_to_outside_ach50 16.1049 Total infiltration to the dwelling unit is 16.1049 ACH50 +in.air_leakage_to_outside_ach50 16.1142 Total infiltration to the dwelling unit is 16.1141999999999 ACH50 +in.air_leakage_to_outside_ach50 16.11675 Total infiltration to the dwelling unit is 16.11675 ACH50 +in.air_leakage_to_outside_ach50 16.13275 Total infiltration to the dwelling unit is 16.13275 ACH50 +in.air_leakage_to_outside_ach50 16.20525 Total infiltration to the dwelling unit is 16.20525 ACH50 +in.air_leakage_to_outside_ach50 16.2224 Total infiltration to the dwelling unit is 16.2224 ACH50 +in.air_leakage_to_outside_ach50 16.2252 Total infiltration to the dwelling unit is 16.2252 ACH50 +in.air_leakage_to_outside_ach50 16.2294 Total infiltration to the dwelling unit is 16.2294 ACH50 +in.air_leakage_to_outside_ach50 16.2662 Total infiltration to the dwelling unit is 16.2661999999999 ACH50 +in.air_leakage_to_outside_ach50 16.2693 Total infiltration to the dwelling unit is 16.2692999999999 ACH50 +in.air_leakage_to_outside_ach50 16.2776 Total infiltration to the dwelling unit is 16.2776 ACH50 +in.air_leakage_to_outside_ach50 16.2802 Total infiltration to the dwelling unit is 16.2802 ACH50 +in.air_leakage_to_outside_ach50 16.2804 Total infiltration to the dwelling unit is 16.2804 ACH50 +in.air_leakage_to_outside_ach50 16.2966 Total infiltration to the dwelling unit is 16.2966 ACH50 +in.air_leakage_to_outside_ach50 16.3125 Total infiltration to the dwelling unit is 16.3125 ACH50 +in.air_leakage_to_outside_ach50 16.353 Total infiltration to the dwelling unit is 16.353 ACH50 +in.air_leakage_to_outside_ach50 16.3642 Total infiltration to the dwelling unit is 16.3642 ACH50 +in.air_leakage_to_outside_ach50 16.3935 Total infiltration to the dwelling unit is 16.3935 ACH50 +in.air_leakage_to_outside_ach50 16.4268 Total infiltration to the dwelling unit is 16.4268 ACH50 +in.air_leakage_to_outside_ach50 16.4532 Total infiltration to the dwelling unit is 16.4532 ACH50 +in.air_leakage_to_outside_ach50 16.482 Total infiltration to the dwelling unit is 16.482 ACH50 +in.air_leakage_to_outside_ach50 16.5501 Total infiltration to the dwelling unit is 16.5501 ACH50 +in.air_leakage_to_outside_ach50 16.555 Total infiltration to the dwelling unit is 16.555 ACH50 +in.air_leakage_to_outside_ach50 16.5574 Total infiltration to the dwelling unit is 16.5574 ACH50 +in.air_leakage_to_outside_ach50 16.57425 Total infiltration to the dwelling unit is 16.57425 ACH50 +in.air_leakage_to_outside_ach50 16.5756 Total infiltration to the dwelling unit is 16.5755999999999 ACH50 +in.air_leakage_to_outside_ach50 16.5974 Total infiltration to the dwelling unit is 16.5974 ACH50 +in.air_leakage_to_outside_ach50 16.6296 Total infiltration to the dwelling unit is 16.6296 ACH50 +in.air_leakage_to_outside_ach50 16.63875 Total infiltration to the dwelling unit is 16.6387499999999 ACH50 +in.air_leakage_to_outside_ach50 16.6611 Total infiltration to the dwelling unit is 16.6611 ACH50 +in.air_leakage_to_outside_ach50 16.6814 Total infiltration to the dwelling unit is 16.6814 ACH50 +in.air_leakage_to_outside_ach50 16.689 Total infiltration to the dwelling unit is 16.689 ACH50 +in.air_leakage_to_outside_ach50 16.7035 Total infiltration to the dwelling unit is 16.7035 ACH50 +in.air_leakage_to_outside_ach50 16.7572 Total infiltration to the dwelling unit is 16.7572 ACH50 +in.air_leakage_to_outside_ach50 16.7676 Total infiltration to the dwelling unit is 16.7675999999999 ACH50 +in.air_leakage_to_outside_ach50 16.76925 Total infiltration to the dwelling unit is 16.76925 ACH50 +in.air_leakage_to_outside_ach50 16.7694 Total infiltration to the dwelling unit is 16.7694 ACH50 +in.air_leakage_to_outside_ach50 16.7738 Total infiltration to the dwelling unit is 16.7738 ACH50 +in.air_leakage_to_outside_ach50 16.7739 Total infiltration to the dwelling unit is 16.7739 ACH50 +in.air_leakage_to_outside_ach50 16.799 Total infiltration to the dwelling unit is 16.799 ACH50 +in.air_leakage_to_outside_ach50 16.8504 Total infiltration to the dwelling unit is 16.8504 ACH50 +in.air_leakage_to_outside_ach50 16.8532 Total infiltration to the dwelling unit is 16.8532 ACH50 +in.air_leakage_to_outside_ach50 16.857 Total infiltration to the dwelling unit is 16.857 ACH50 +in.air_leakage_to_outside_ach50 16.893 Total infiltration to the dwelling unit is 16.893 ACH50 +in.air_leakage_to_outside_ach50 16.9002 Total infiltration to the dwelling unit is 16.9001999999999 ACH50 +in.air_leakage_to_outside_ach50 16.9016 Total infiltration to the dwelling unit is 16.9016 ACH50 +in.air_leakage_to_outside_ach50 16.9204 Total infiltration to the dwelling unit is 16.9204 ACH50 +in.air_leakage_to_outside_ach50 16.92325 Total infiltration to the dwelling unit is 16.92325 ACH50 +in.air_leakage_to_outside_ach50 16.9282 Total infiltration to the dwelling unit is 16.9282 ACH50 +in.air_leakage_to_outside_ach50 16.9485 Total infiltration to the dwelling unit is 16.9485 ACH50 +in.air_leakage_to_outside_ach50 16.99775 Total infiltration to the dwelling unit is 16.99775 ACH50 +in.air_leakage_to_outside_ach50 17.0072 Total infiltration to the dwelling unit is 17.0072 ACH50 +in.air_leakage_to_outside_ach50 17.04475 Total infiltration to the dwelling unit is 17.04475 ACH50 +in.air_leakage_to_outside_ach50 17.0596 Total infiltration to the dwelling unit is 17.0596 ACH50 +in.air_leakage_to_outside_ach50 17.08 Total infiltration to the dwelling unit is 17.08 ACH50 +in.air_leakage_to_outside_ach50 17.082 Total infiltration to the dwelling unit is 17.082 ACH50 +in.air_leakage_to_outside_ach50 17.1066 Total infiltration to the dwelling unit is 17.1066 ACH50 +in.air_leakage_to_outside_ach50 17.13275 Total infiltration to the dwelling unit is 17.1327499999999 ACH50 +in.air_leakage_to_outside_ach50 17.1468 Total infiltration to the dwelling unit is 17.1468 ACH50 +in.air_leakage_to_outside_ach50 17.1876 Total infiltration to the dwelling unit is 17.1876 ACH50 +in.air_leakage_to_outside_ach50 17.2311 Total infiltration to the dwelling unit is 17.2311 ACH50 +in.air_leakage_to_outside_ach50 17.246 Total infiltration to the dwelling unit is 17.246 ACH50 +in.air_leakage_to_outside_ach50 17.25375 Total infiltration to the dwelling unit is 17.25375 ACH50 +in.air_leakage_to_outside_ach50 17.254 Total infiltration to the dwelling unit is 17.254 ACH50 +in.air_leakage_to_outside_ach50 17.2959 Total infiltration to the dwelling unit is 17.2959 ACH50 +in.air_leakage_to_outside_ach50 17.30125 Total infiltration to the dwelling unit is 17.30125 ACH50 +in.air_leakage_to_outside_ach50 17.3205 Total infiltration to the dwelling unit is 17.3205 ACH50 +in.air_leakage_to_outside_ach50 17.3366 Total infiltration to the dwelling unit is 17.3366 ACH50 +in.air_leakage_to_outside_ach50 17.3553 Total infiltration to the dwelling unit is 17.3553 ACH50 +in.air_leakage_to_outside_ach50 17.3892 Total infiltration to the dwelling unit is 17.3892 ACH50 +in.air_leakage_to_outside_ach50 17.3967 Total infiltration to the dwelling unit is 17.3967 ACH50 +in.air_leakage_to_outside_ach50 17.4232 Total infiltration to the dwelling unit is 17.4232 ACH50 +in.air_leakage_to_outside_ach50 17.4262 Total infiltration to the dwelling unit is 17.4262 ACH50 +in.air_leakage_to_outside_ach50 17.4336 Total infiltration to the dwelling unit is 17.4336 ACH50 +in.air_leakage_to_outside_ach50 17.50975 Total infiltration to the dwelling unit is 17.50975 ACH50 +in.air_leakage_to_outside_ach50 17.534 Total infiltration to the dwelling unit is 17.534 ACH50 +in.air_leakage_to_outside_ach50 17.548 Total infiltration to the dwelling unit is 17.548 ACH50 +in.air_leakage_to_outside_ach50 17.5502 Total infiltration to the dwelling unit is 17.5502 ACH50 +in.air_leakage_to_outside_ach50 17.5821 Total infiltration to the dwelling unit is 17.5821 ACH50 +in.air_leakage_to_outside_ach50 17.663 Total infiltration to the dwelling unit is 17.663 ACH50 +in.air_leakage_to_outside_ach50 17.6784 Total infiltration to the dwelling unit is 17.6784 ACH50 +in.air_leakage_to_outside_ach50 17.70525 Total infiltration to the dwelling unit is 17.70525 ACH50 +in.air_leakage_to_outside_ach50 17.7088 Total infiltration to the dwelling unit is 17.7088 ACH50 +in.air_leakage_to_outside_ach50 17.713 Total infiltration to the dwelling unit is 17.713 ACH50 +in.air_leakage_to_outside_ach50 17.7232 Total infiltration to the dwelling unit is 17.7232 ACH50 +in.air_leakage_to_outside_ach50 17.76125 Total infiltration to the dwelling unit is 17.76125 ACH50 +in.air_leakage_to_outside_ach50 17.766 Total infiltration to the dwelling unit is 17.766 ACH50 +in.air_leakage_to_outside_ach50 17.8716 Total infiltration to the dwelling unit is 17.8716 ACH50 +in.air_leakage_to_outside_ach50 17.9079 Total infiltration to the dwelling unit is 17.9078999999999 ACH50 +in.air_leakage_to_outside_ach50 17.9134 Total infiltration to the dwelling unit is 17.9134 ACH50 +in.air_leakage_to_outside_ach50 17.9208 Total infiltration to the dwelling unit is 17.9208 ACH50 +in.air_leakage_to_outside_ach50 17.924 Total infiltration to the dwelling unit is 17.924 ACH50 +in.air_leakage_to_outside_ach50 18.0408 Total infiltration to the dwelling unit is 18.0408 ACH50 +in.air_leakage_to_outside_ach50 18.1084 Total infiltration to the dwelling unit is 18.1084 ACH50 +in.air_leakage_to_outside_ach50 18.1227 Total infiltration to the dwelling unit is 18.1227 ACH50 +in.air_leakage_to_outside_ach50 18.1344 Total infiltration to the dwelling unit is 18.1344 ACH50 +in.air_leakage_to_outside_ach50 18.1388 Total infiltration to the dwelling unit is 18.1388 ACH50 +in.air_leakage_to_outside_ach50 18.1402 Total infiltration to the dwelling unit is 18.1402 ACH50 +in.air_leakage_to_outside_ach50 18.1795 Total infiltration to the dwelling unit is 18.1795 ACH50 +in.air_leakage_to_outside_ach50 18.20075 Total infiltration to the dwelling unit is 18.20075 ACH50 +in.air_leakage_to_outside_ach50 18.201 Total infiltration to the dwelling unit is 18.201 ACH50 +in.air_leakage_to_outside_ach50 18.21625 Total infiltration to the dwelling unit is 18.21625 ACH50 +in.air_leakage_to_outside_ach50 18.2878 Total infiltration to the dwelling unit is 18.2878 ACH50 +in.air_leakage_to_outside_ach50 18.292 Total infiltration to the dwelling unit is 18.2919999999999 ACH50 +in.air_leakage_to_outside_ach50 18.2986 Total infiltration to the dwelling unit is 18.2986 ACH50 +in.air_leakage_to_outside_ach50 18.3465 Total infiltration to the dwelling unit is 18.3465 ACH50 +in.air_leakage_to_outside_ach50 18.3472 Total infiltration to the dwelling unit is 18.3472 ACH50 +in.air_leakage_to_outside_ach50 18.4252 Total infiltration to the dwelling unit is 18.4252 ACH50 +in.air_leakage_to_outside_ach50 18.4284 Total infiltration to the dwelling unit is 18.4284 ACH50 +in.air_leakage_to_outside_ach50 18.4305 Total infiltration to the dwelling unit is 18.4305 ACH50 +in.air_leakage_to_outside_ach50 18.478 Total infiltration to the dwelling unit is 18.478 ACH50 +in.air_leakage_to_outside_ach50 18.52475 Total infiltration to the dwelling unit is 18.52475 ACH50 +in.air_leakage_to_outside_ach50 18.5298 Total infiltration to the dwelling unit is 18.5298 ACH50 +in.air_leakage_to_outside_ach50 18.54 Total infiltration to the dwelling unit is 18.54 ACH50 +in.air_leakage_to_outside_ach50 18.558 Total infiltration to the dwelling unit is 18.558 ACH50 +in.air_leakage_to_outside_ach50 18.55825 Total infiltration to the dwelling unit is 18.55825 ACH50 +in.air_leakage_to_outside_ach50 18.56225 Total infiltration to the dwelling unit is 18.56225 ACH50 +in.air_leakage_to_outside_ach50 18.56525 Total infiltration to the dwelling unit is 18.56525 ACH50 +in.air_leakage_to_outside_ach50 18.6675 Total infiltration to the dwelling unit is 18.6675 ACH50 +in.air_leakage_to_outside_ach50 18.6747 Total infiltration to the dwelling unit is 18.6747 ACH50 +in.air_leakage_to_outside_ach50 18.7185 Total infiltration to the dwelling unit is 18.7185 ACH50 +in.air_leakage_to_outside_ach50 18.7986 Total infiltration to the dwelling unit is 18.7986 ACH50 +in.air_leakage_to_outside_ach50 18.81625 Total infiltration to the dwelling unit is 18.81625 ACH50 +in.air_leakage_to_outside_ach50 18.8895 Total infiltration to the dwelling unit is 18.8895 ACH50 +in.air_leakage_to_outside_ach50 18.9575 Total infiltration to the dwelling unit is 18.9575 ACH50 +in.air_leakage_to_outside_ach50 18.97525 Total infiltration to the dwelling unit is 18.97525 ACH50 +in.air_leakage_to_outside_ach50 18.97575 Total infiltration to the dwelling unit is 18.9757499999999 ACH50 +in.air_leakage_to_outside_ach50 18.9951 Total infiltration to the dwelling unit is 18.9951 ACH50 +in.air_leakage_to_outside_ach50 18.9995 Total infiltration to the dwelling unit is 18.9995 ACH50 +in.air_leakage_to_outside_ach50 19.04675 Total infiltration to the dwelling unit is 19.04675 ACH50 +in.air_leakage_to_outside_ach50 19.0585 Total infiltration to the dwelling unit is 19.0585 ACH50 +in.air_leakage_to_outside_ach50 19.1352 Total infiltration to the dwelling unit is 19.1352 ACH50 +in.air_leakage_to_outside_ach50 19.1575 Total infiltration to the dwelling unit is 19.1575 ACH50 +in.air_leakage_to_outside_ach50 19.16575 Total infiltration to the dwelling unit is 19.16575 ACH50 +in.air_leakage_to_outside_ach50 19.196 Total infiltration to the dwelling unit is 19.1959999999999 ACH50 +in.air_leakage_to_outside_ach50 19.21025 Total infiltration to the dwelling unit is 19.21025 ACH50 +in.air_leakage_to_outside_ach50 19.2792 Total infiltration to the dwelling unit is 19.2792 ACH50 +in.air_leakage_to_outside_ach50 19.308 Total infiltration to the dwelling unit is 19.308 ACH50 +in.air_leakage_to_outside_ach50 19.3401 Total infiltration to the dwelling unit is 19.3401 ACH50 +in.air_leakage_to_outside_ach50 19.3593 Total infiltration to the dwelling unit is 19.3593 ACH50 +in.air_leakage_to_outside_ach50 19.4463 Total infiltration to the dwelling unit is 19.4462999999999 ACH50 +in.air_leakage_to_outside_ach50 19.4865 Total infiltration to the dwelling unit is 19.4865 ACH50 +in.air_leakage_to_outside_ach50 19.5305 Total infiltration to the dwelling unit is 19.5305 ACH50 +in.air_leakage_to_outside_ach50 19.54175 Total infiltration to the dwelling unit is 19.54175 ACH50 +in.air_leakage_to_outside_ach50 19.6615 Total infiltration to the dwelling unit is 19.6615 ACH50 +in.air_leakage_to_outside_ach50 19.6722 Total infiltration to the dwelling unit is 19.6722 ACH50 +in.air_leakage_to_outside_ach50 19.679 Total infiltration to the dwelling unit is 19.679 ACH50 +in.air_leakage_to_outside_ach50 19.67975 Total infiltration to the dwelling unit is 19.67975 ACH50 +in.air_leakage_to_outside_ach50 19.7065 Total infiltration to the dwelling unit is 19.7065 ACH50 +in.air_leakage_to_outside_ach50 19.73125 Total infiltration to the dwelling unit is 19.73125 ACH50 +in.air_leakage_to_outside_ach50 19.7455 Total infiltration to the dwelling unit is 19.7455 ACH50 +in.air_leakage_to_outside_ach50 19.74875 Total infiltration to the dwelling unit is 19.74875 ACH50 +in.air_leakage_to_outside_ach50 19.764 Total infiltration to the dwelling unit is 19.764 ACH50 +in.air_leakage_to_outside_ach50 19.7835 Total infiltration to the dwelling unit is 19.7835 ACH50 +in.air_leakage_to_outside_ach50 19.86125 Total infiltration to the dwelling unit is 19.86125 ACH50 +in.air_leakage_to_outside_ach50 19.8891 Total infiltration to the dwelling unit is 19.8891 ACH50 +in.air_leakage_to_outside_ach50 19.8996 Total infiltration to the dwelling unit is 19.8996 ACH50 +in.air_leakage_to_outside_ach50 19.96175 Total infiltration to the dwelling unit is 19.96175 ACH50 +in.air_leakage_to_outside_ach50 19.9665 Total infiltration to the dwelling unit is 19.9665 ACH50 +in.air_leakage_to_outside_ach50 19.967 Total infiltration to the dwelling unit is 19.967 ACH50 +in.air_leakage_to_outside_ach50 19.99025 Total infiltration to the dwelling unit is 19.99025 ACH50 +in.air_leakage_to_outside_ach50 20 Total infiltration to the dwelling unit is 20 ACH50 +in.air_leakage_to_outside_ach50 20.0395 Total infiltration to the dwelling unit is 20.0395 ACH50 +in.air_leakage_to_outside_ach50 20.0442 Total infiltration to the dwelling unit is 20.0442 ACH50 +in.air_leakage_to_outside_ach50 20.056 Total infiltration to the dwelling unit is 20.0559999999999 ACH50 +in.air_leakage_to_outside_ach50 20.1231 Total infiltration to the dwelling unit is 20.1231 ACH50 +in.air_leakage_to_outside_ach50 20.14425 Total infiltration to the dwelling unit is 20.14425 ACH50 +in.air_leakage_to_outside_ach50 20.212 Total infiltration to the dwelling unit is 20.212 ACH50 +in.air_leakage_to_outside_ach50 20.2716 Total infiltration to the dwelling unit is 20.2716 ACH50 +in.air_leakage_to_outside_ach50 20.278 Total infiltration to the dwelling unit is 20.278 ACH50 +in.air_leakage_to_outside_ach50 20.30375 Total infiltration to the dwelling unit is 20.30375 ACH50 +in.air_leakage_to_outside_ach50 20.3079 Total infiltration to the dwelling unit is 20.3079 ACH50 +in.air_leakage_to_outside_ach50 20.347 Total infiltration to the dwelling unit is 20.347 ACH50 +in.air_leakage_to_outside_ach50 20.35025 Total infiltration to the dwelling unit is 20.35025 ACH50 +in.air_leakage_to_outside_ach50 20.3505 Total infiltration to the dwelling unit is 20.3505 ACH50 +in.air_leakage_to_outside_ach50 20.37075 Total infiltration to the dwelling unit is 20.37075 ACH50 +in.air_leakage_to_outside_ach50 20.3973 Total infiltration to the dwelling unit is 20.3973 ACH50 +in.air_leakage_to_outside_ach50 20.4537 Total infiltration to the dwelling unit is 20.4537 ACH50 +in.air_leakage_to_outside_ach50 20.45525 Total infiltration to the dwelling unit is 20.45525 ACH50 +in.air_leakage_to_outside_ach50 20.5593 Total infiltration to the dwelling unit is 20.5593 ACH50 +in.air_leakage_to_outside_ach50 20.5665 Total infiltration to the dwelling unit is 20.5664999999999 ACH50 +in.air_leakage_to_outside_ach50 20.594 Total infiltration to the dwelling unit is 20.594 ACH50 +in.air_leakage_to_outside_ach50 20.6025 Total infiltration to the dwelling unit is 20.6025 ACH50 +in.air_leakage_to_outside_ach50 20.6636 Total infiltration to the dwelling unit is 20.6636 ACH50 +in.air_leakage_to_outside_ach50 20.69675 Total infiltration to the dwelling unit is 20.69675 ACH50 +in.air_leakage_to_outside_ach50 20.7045 Total infiltration to the dwelling unit is 20.7045 ACH50 +in.air_leakage_to_outside_ach50 20.7195 Total infiltration to the dwelling unit is 20.7195 ACH50 +in.air_leakage_to_outside_ach50 20.7224 Total infiltration to the dwelling unit is 20.7224 ACH50 +in.air_leakage_to_outside_ach50 20.74675 Total infiltration to the dwelling unit is 20.74675 ACH50 +in.air_leakage_to_outside_ach50 20.7615 Total infiltration to the dwelling unit is 20.7615 ACH50 +in.air_leakage_to_outside_ach50 20.7846 Total infiltration to the dwelling unit is 20.7846 ACH50 +in.air_leakage_to_outside_ach50 20.787 Total infiltration to the dwelling unit is 20.787 ACH50 +in.air_leakage_to_outside_ach50 20.7984 Total infiltration to the dwelling unit is 20.7984 ACH50 +in.air_leakage_to_outside_ach50 20.85175 Total infiltration to the dwelling unit is 20.85175 ACH50 +in.air_leakage_to_outside_ach50 20.86125 Total infiltration to the dwelling unit is 20.86125 ACH50 +in.air_leakage_to_outside_ach50 20.9465 Total infiltration to the dwelling unit is 20.9465 ACH50 +in.air_leakage_to_outside_ach50 20.9496 Total infiltration to the dwelling unit is 20.9496 ACH50 +in.air_leakage_to_outside_ach50 20.96175 Total infiltration to the dwelling unit is 20.96175 ACH50 +in.air_leakage_to_outside_ach50 20.99875 Total infiltration to the dwelling unit is 20.99875 ACH50 +in.air_leakage_to_outside_ach50 21.0117 Total infiltration to the dwelling unit is 21.0116999999999 ACH50 +in.air_leakage_to_outside_ach50 21.0408 Total infiltration to the dwelling unit is 21.0408 ACH50 +in.air_leakage_to_outside_ach50 21.0576 Total infiltration to the dwelling unit is 21.0576 ACH50 +in.air_leakage_to_outside_ach50 21.0665 Total infiltration to the dwelling unit is 21.0664999999999 ACH50 +in.air_leakage_to_outside_ach50 21.07125 Total infiltration to the dwelling unit is 21.07125 ACH50 +in.air_leakage_to_outside_ach50 21.127 Total infiltration to the dwelling unit is 21.127 ACH50 +in.air_leakage_to_outside_ach50 21.1505 Total infiltration to the dwelling unit is 21.1505 ACH50 +in.air_leakage_to_outside_ach50 21.16025 Total infiltration to the dwelling unit is 21.16025 ACH50 +in.air_leakage_to_outside_ach50 21.2463 Total infiltration to the dwelling unit is 21.2463 ACH50 +in.air_leakage_to_outside_ach50 21.274 Total infiltration to the dwelling unit is 21.274 ACH50 +in.air_leakage_to_outside_ach50 21.3304 Total infiltration to the dwelling unit is 21.3303999999999 ACH50 +in.air_leakage_to_outside_ach50 21.35 Total infiltration to the dwelling unit is 21.3499999999999 ACH50 +in.air_leakage_to_outside_ach50 21.3525 Total infiltration to the dwelling unit is 21.3525 ACH50 +in.air_leakage_to_outside_ach50 21.38325 Total infiltration to the dwelling unit is 21.38325 ACH50 +in.air_leakage_to_outside_ach50 21.4732 Total infiltration to the dwelling unit is 21.4732 ACH50 +in.air_leakage_to_outside_ach50 21.4856 Total infiltration to the dwelling unit is 21.4855999999999 ACH50 +in.air_leakage_to_outside_ach50 21.5575 Total infiltration to the dwelling unit is 21.5574999999999 ACH50 +in.air_leakage_to_outside_ach50 21.6336 Total infiltration to the dwelling unit is 21.6336 ACH50 +in.air_leakage_to_outside_ach50 21.67075 Total infiltration to the dwelling unit is 21.6707499999999 ACH50 +in.air_leakage_to_outside_ach50 21.75 Total infiltration to the dwelling unit is 21.75 ACH50 +in.air_leakage_to_outside_ach50 21.779 Total infiltration to the dwelling unit is 21.779 ACH50 +in.air_leakage_to_outside_ach50 21.78275 Total infiltration to the dwelling unit is 21.78275 ACH50 +in.air_leakage_to_outside_ach50 21.8409 Total infiltration to the dwelling unit is 21.8408999999999 ACH50 +in.air_leakage_to_outside_ach50 21.8595 Total infiltration to the dwelling unit is 21.8595 ACH50 +in.air_leakage_to_outside_ach50 21.9024 Total infiltration to the dwelling unit is 21.9024 ACH50 +in.air_leakage_to_outside_ach50 22.0668 Total infiltration to the dwelling unit is 22.0668 ACH50 +in.air_leakage_to_outside_ach50 22.07875 Total infiltration to the dwelling unit is 22.07875 ACH50 +in.air_leakage_to_outside_ach50 22.098 Total infiltration to the dwelling unit is 22.098 ACH50 +in.air_leakage_to_outside_ach50 22.136 Total infiltration to the dwelling unit is 22.136 ACH50 +in.air_leakage_to_outside_ach50 22.14125 Total infiltration to the dwelling unit is 22.14125 ACH50 +in.air_leakage_to_outside_ach50 22.1757 Total infiltration to the dwelling unit is 22.1757 ACH50 +in.air_leakage_to_outside_ach50 22.2148 Total infiltration to the dwelling unit is 22.2148 ACH50 +in.air_leakage_to_outside_ach50 22.2297 Total infiltration to the dwelling unit is 22.2297 ACH50 +in.air_leakage_to_outside_ach50 22.2699 Total infiltration to the dwelling unit is 22.2699 ACH50 +in.air_leakage_to_outside_ach50 22.2747 Total infiltration to the dwelling unit is 22.2747 ACH50 +in.air_leakage_to_outside_ach50 22.2783 Total infiltration to the dwelling unit is 22.2783 ACH50 +in.air_leakage_to_outside_ach50 22.3395 Total infiltration to the dwelling unit is 22.3395 ACH50 +in.air_leakage_to_outside_ach50 22.3568 Total infiltration to the dwelling unit is 22.3568 ACH50 +in.air_leakage_to_outside_ach50 22.3652 Total infiltration to the dwelling unit is 22.3652 ACH50 +in.air_leakage_to_outside_ach50 22.39175 Total infiltration to the dwelling unit is 22.39175 ACH50 +in.air_leakage_to_outside_ach50 22.405 Total infiltration to the dwelling unit is 22.405 ACH50 +in.air_leakage_to_outside_ach50 22.4622 Total infiltration to the dwelling unit is 22.4622 ACH50 +in.air_leakage_to_outside_ach50 22.5336 Total infiltration to the dwelling unit is 22.5336 ACH50 +in.air_leakage_to_outside_ach50 22.5795 Total infiltration to the dwelling unit is 22.5795 ACH50 +in.air_leakage_to_outside_ach50 22.598 Total infiltration to the dwelling unit is 22.598 ACH50 +in.air_leakage_to_outside_ach50 22.6355 Total infiltration to the dwelling unit is 22.6355 ACH50 +in.air_leakage_to_outside_ach50 22.6735 Total infiltration to the dwelling unit is 22.6735 ACH50 +in.air_leakage_to_outside_ach50 22.67525 Total infiltration to the dwelling unit is 22.67525 ACH50 +in.air_leakage_to_outside_ach50 22.7229 Total infiltration to the dwelling unit is 22.7229 ACH50 +in.air_leakage_to_outside_ach50 22.749 Total infiltration to the dwelling unit is 22.749 ACH50 +in.air_leakage_to_outside_ach50 22.7703 Total infiltration to the dwelling unit is 22.7703 ACH50 +in.air_leakage_to_outside_ach50 22.7994 Total infiltration to the dwelling unit is 22.7994 ACH50 +in.air_leakage_to_outside_ach50 22.8561 Total infiltration to the dwelling unit is 22.8561 ACH50 +in.air_leakage_to_outside_ach50 22.85975 Total infiltration to the dwelling unit is 22.85975 ACH50 +in.air_leakage_to_outside_ach50 22.8624 Total infiltration to the dwelling unit is 22.8623999999999 ACH50 +in.air_leakage_to_outside_ach50 22.865 Total infiltration to the dwelling unit is 22.865 ACH50 +in.air_leakage_to_outside_ach50 22.8702 Total infiltration to the dwelling unit is 22.8702 ACH50 +in.air_leakage_to_outside_ach50 22.87325 Total infiltration to the dwelling unit is 22.87325 ACH50 +in.air_leakage_to_outside_ach50 22.9168 Total infiltration to the dwelling unit is 22.9168 ACH50 +in.air_leakage_to_outside_ach50 22.934 Total infiltration to the dwelling unit is 22.9339999999999 ACH50 +in.air_leakage_to_outside_ach50 22.9748 Total infiltration to the dwelling unit is 22.9748 ACH50 +in.air_leakage_to_outside_ach50 22.989 Total infiltration to the dwelling unit is 22.989 ACH50 +in.air_leakage_to_outside_ach50 23.0315 Total infiltration to the dwelling unit is 23.0314999999999 ACH50 +in.air_leakage_to_outside_ach50 23.0352 Total infiltration to the dwelling unit is 23.0352 ACH50 +in.air_leakage_to_outside_ach50 23.0355 Total infiltration to the dwelling unit is 23.0355 ACH50 +in.air_leakage_to_outside_ach50 23.0523 Total infiltration to the dwelling unit is 23.0523 ACH50 +in.air_leakage_to_outside_ach50 23.0571 Total infiltration to the dwelling unit is 23.0571 ACH50 +in.air_leakage_to_outside_ach50 23.0612 Total infiltration to the dwelling unit is 23.0612 ACH50 +in.air_leakage_to_outside_ach50 23.1147 Total infiltration to the dwelling unit is 23.1147 ACH50 +in.air_leakage_to_outside_ach50 23.1404 Total infiltration to the dwelling unit is 23.1404 ACH50 +in.air_leakage_to_outside_ach50 23.16225 Total infiltration to the dwelling unit is 23.16225 ACH50 +in.air_leakage_to_outside_ach50 23.175 Total infiltration to the dwelling unit is 23.175 ACH50 +in.air_leakage_to_outside_ach50 23.1856 Total infiltration to the dwelling unit is 23.1856 ACH50 +in.air_leakage_to_outside_ach50 23.1956 Total infiltration to the dwelling unit is 23.1956 ACH50 +in.air_leakage_to_outside_ach50 23.2448 Total infiltration to the dwelling unit is 23.2447999999999 ACH50 +in.air_leakage_to_outside_ach50 23.3838 Total infiltration to the dwelling unit is 23.3838 ACH50 +in.air_leakage_to_outside_ach50 23.4366 Total infiltration to the dwelling unit is 23.4366 ACH50 +in.air_leakage_to_outside_ach50 23.4428 Total infiltration to the dwelling unit is 23.4428 ACH50 +in.air_leakage_to_outside_ach50 23.4501 Total infiltration to the dwelling unit is 23.4501 ACH50 +in.air_leakage_to_outside_ach50 23.5938 Total infiltration to the dwelling unit is 23.5938 ACH50 +in.air_leakage_to_outside_ach50 23.6148 Total infiltration to the dwelling unit is 23.6148 ACH50 +in.air_leakage_to_outside_ach50 23.6157 Total infiltration to the dwelling unit is 23.6156999999999 ACH50 +in.air_leakage_to_outside_ach50 23.6478 Total infiltration to the dwelling unit is 23.6478 ACH50 +in.air_leakage_to_outside_ach50 23.688 Total infiltration to the dwelling unit is 23.688 ACH50 +in.air_leakage_to_outside_ach50 23.6946 Total infiltration to the dwelling unit is 23.6945999999999 ACH50 +in.air_leakage_to_outside_ach50 23.7402 Total infiltration to the dwelling unit is 23.7402 ACH50 +in.air_leakage_to_outside_ach50 23.776 Total infiltration to the dwelling unit is 23.776 ACH50 +in.air_leakage_to_outside_ach50 23.8772 Total infiltration to the dwelling unit is 23.8772 ACH50 +in.air_leakage_to_outside_ach50 23.883 Total infiltration to the dwelling unit is 23.883 ACH50 +in.air_leakage_to_outside_ach50 23.8944 Total infiltration to the dwelling unit is 23.8944 ACH50 +in.air_leakage_to_outside_ach50 23.9541 Total infiltration to the dwelling unit is 23.9541 ACH50 +in.air_leakage_to_outside_ach50 23.9604 Total infiltration to the dwelling unit is 23.9604 ACH50 +in.air_leakage_to_outside_ach50 23.9631 Total infiltration to the dwelling unit is 23.9631 ACH50 +in.air_leakage_to_outside_ach50 23.9883 Total infiltration to the dwelling unit is 23.9883 ACH50 +in.air_leakage_to_outside_ach50 24.0672 Total infiltration to the dwelling unit is 24.0672 ACH50 +in.air_leakage_to_outside_ach50 24.099 Total infiltration to the dwelling unit is 24.099 ACH50 +in.air_leakage_to_outside_ach50 24.1636 Total infiltration to the dwelling unit is 24.1636 ACH50 +in.air_leakage_to_outside_ach50 24.1792 Total infiltration to the dwelling unit is 24.1792 ACH50 +in.air_leakage_to_outside_ach50 24.268 Total infiltration to the dwelling unit is 24.268 ACH50 +in.air_leakage_to_outside_ach50 24.274 Total infiltration to the dwelling unit is 24.274 ACH50 +in.air_leakage_to_outside_ach50 24.3336 Total infiltration to the dwelling unit is 24.3335999999999 ACH50 +in.air_leakage_to_outside_ach50 24.3645 Total infiltration to the dwelling unit is 24.3645 ACH50 +in.air_leakage_to_outside_ach50 24.4164 Total infiltration to the dwelling unit is 24.4164 ACH50 +in.air_leakage_to_outside_ach50 24.4203 Total infiltration to the dwelling unit is 24.4203 ACH50 +in.air_leakage_to_outside_ach50 24.4449 Total infiltration to the dwelling unit is 24.4449 ACH50 +in.air_leakage_to_outside_ach50 24.5463 Total infiltration to the dwelling unit is 24.5463 ACH50 +in.air_leakage_to_outside_ach50 24.574 Total infiltration to the dwelling unit is 24.5739999999999 ACH50 +in.air_leakage_to_outside_ach50 24.6798 Total infiltration to the dwelling unit is 24.6798 ACH50 +in.air_leakage_to_outside_ach50 24.723 Total infiltration to the dwelling unit is 24.723 ACH50 +in.air_leakage_to_outside_ach50 24.8361 Total infiltration to the dwelling unit is 24.8361 ACH50 +in.air_leakage_to_outside_ach50 24.8634 Total infiltration to the dwelling unit is 24.8634 ACH50 +in.air_leakage_to_outside_ach50 24.8745 Total infiltration to the dwelling unit is 24.8744999999999 ACH50 +in.air_leakage_to_outside_ach50 24.89 Total infiltration to the dwelling unit is 24.89 ACH50 +in.air_leakage_to_outside_ach50 24.8961 Total infiltration to the dwelling unit is 24.8961 ACH50 +in.air_leakage_to_outside_ach50 24.8996 Total infiltration to the dwelling unit is 24.8996 ACH50 +in.air_leakage_to_outside_ach50 24.9444 Total infiltration to the dwelling unit is 24.9444 ACH50 +in.air_leakage_to_outside_ach50 25 Total infiltration to the dwelling unit is 25 ACH50 +in.air_leakage_to_outside_ach50 25.0335 Total infiltration to the dwelling unit is 25.0335 ACH50 +in.air_leakage_to_outside_ach50 25.0648 Total infiltration to the dwelling unit is 25.0647999999999 ACH50 +in.air_leakage_to_outside_ach50 25.1358 Total infiltration to the dwelling unit is 25.1358 ACH50 +in.air_leakage_to_outside_ach50 25.1541 Total infiltration to the dwelling unit is 25.1541 ACH50 +in.air_leakage_to_outside_ach50 25.186 Total infiltration to the dwelling unit is 25.186 ACH50 +in.air_leakage_to_outside_ach50 25.1985 Total infiltration to the dwelling unit is 25.1985 ACH50 +in.air_leakage_to_outside_ach50 25.265 Total infiltration to the dwelling unit is 25.2649999999999 ACH50 +in.air_leakage_to_outside_ach50 25.2798 Total infiltration to the dwelling unit is 25.2797999999999 ACH50 +in.air_leakage_to_outside_ach50 25.2855 Total infiltration to the dwelling unit is 25.2855 ACH50 +in.air_leakage_to_outside_ach50 25.3268 Total infiltration to the dwelling unit is 25.3268 ACH50 +in.air_leakage_to_outside_ach50 25.3524 Total infiltration to the dwelling unit is 25.3524 ACH50 +in.air_leakage_to_outside_ach50 25.3806 Total infiltration to the dwelling unit is 25.3806 ACH50 +in.air_leakage_to_outside_ach50 25.3923 Total infiltration to the dwelling unit is 25.3923 ACH50 +in.air_leakage_to_outside_ach50 25.5288 Total infiltration to the dwelling unit is 25.5288 ACH50 +in.air_leakage_to_outside_ach50 25.5897 Total infiltration to the dwelling unit is 25.5897 ACH50 +in.air_leakage_to_outside_ach50 25.62 Total infiltration to the dwelling unit is 25.62 ACH50 +in.air_leakage_to_outside_ach50 25.623 Total infiltration to the dwelling unit is 25.6229999999999 ACH50 +in.air_leakage_to_outside_ach50 25.6599 Total infiltration to the dwelling unit is 25.6599 ACH50 +in.air_leakage_to_outside_ach50 25.7868 Total infiltration to the dwelling unit is 25.7868 ACH50 +in.air_leakage_to_outside_ach50 25.8124 Total infiltration to the dwelling unit is 25.8124 ACH50 +in.air_leakage_to_outside_ach50 25.8295 Total infiltration to the dwelling unit is 25.8295 ACH50 +in.air_leakage_to_outside_ach50 25.903 Total infiltration to the dwelling unit is 25.903 ACH50 +in.air_leakage_to_outside_ach50 25.9284 Total infiltration to the dwelling unit is 25.9283999999999 ACH50 +in.air_leakage_to_outside_ach50 25.998 Total infiltration to the dwelling unit is 25.9979999999999 ACH50 +in.air_leakage_to_outside_ach50 26.0049 Total infiltration to the dwelling unit is 26.0049 ACH50 +in.air_leakage_to_outside_ach50 26.1348 Total infiltration to the dwelling unit is 26.1348 ACH50 +in.air_leakage_to_outside_ach50 26.1393 Total infiltration to the dwelling unit is 26.1393 ACH50 +in.air_leakage_to_outside_ach50 26.187 Total infiltration to the dwelling unit is 26.1869999999999 ACH50 +in.air_leakage_to_outside_ach50 26.2296 Total infiltration to the dwelling unit is 26.2295999999999 ACH50 +in.air_leakage_to_outside_ach50 26.4945 Total infiltration to the dwelling unit is 26.4945 ACH50 +in.air_leakage_to_outside_ach50 26.5176 Total infiltration to the dwelling unit is 26.5176 ACH50 +in.air_leakage_to_outside_ach50 26.5188 Total infiltration to the dwelling unit is 26.5188 ACH50 +in.air_leakage_to_outside_ach50 26.622 Total infiltration to the dwelling unit is 26.622 ACH50 +in.air_leakage_to_outside_ach50 26.7256 Total infiltration to the dwelling unit is 26.7256 ACH50 +in.air_leakage_to_outside_ach50 26.8074 Total infiltration to the dwelling unit is 26.8074 ACH50 +in.air_leakage_to_outside_ach50 26.8308 Total infiltration to the dwelling unit is 26.8308 ACH50 +in.air_leakage_to_outside_ach50 26.8415 Total infiltration to the dwelling unit is 26.8415 ACH50 +in.air_leakage_to_outside_ach50 26.857 Total infiltration to the dwelling unit is 26.857 ACH50 +in.air_leakage_to_outside_ach50 26.8701 Total infiltration to the dwelling unit is 26.8701 ACH50 +in.air_leakage_to_outside_ach50 27.0288 Total infiltration to the dwelling unit is 27.0288 ACH50 +in.air_leakage_to_outside_ach50 27.042 Total infiltration to the dwelling unit is 27.0419999999999 ACH50 +in.air_leakage_to_outside_ach50 27.0772 Total infiltration to the dwelling unit is 27.0772 ACH50 +in.air_leakage_to_outside_ach50 27.1875 Total infiltration to the dwelling unit is 27.1874999999999 ACH50 +in.air_leakage_to_outside_ach50 27.1964 Total infiltration to the dwelling unit is 27.1964 ACH50 +in.air_leakage_to_outside_ach50 27.2082 Total infiltration to the dwelling unit is 27.2081999999999 ACH50 +in.air_leakage_to_outside_ach50 27.2103 Total infiltration to the dwelling unit is 27.2103 ACH50 +in.air_leakage_to_outside_ach50 27.2716 Total infiltration to the dwelling unit is 27.2716 ACH50 +in.air_leakage_to_outside_ach50 27.378 Total infiltration to the dwelling unit is 27.378 ACH50 +in.air_leakage_to_outside_ach50 27.4124 Total infiltration to the dwelling unit is 27.4123999999999 ACH50 +in.air_leakage_to_outside_ach50 27.4317 Total infiltration to the dwelling unit is 27.4317 ACH50 +in.air_leakage_to_outside_ach50 27.4479 Total infiltration to the dwelling unit is 27.4479 ACH50 +in.air_leakage_to_outside_ach50 27.5835 Total infiltration to the dwelling unit is 27.5835 ACH50 +in.air_leakage_to_outside_ach50 27.606 Total infiltration to the dwelling unit is 27.606 ACH50 +in.air_leakage_to_outside_ach50 27.6378 Total infiltration to the dwelling unit is 27.6378 ACH50 +in.air_leakage_to_outside_ach50 27.6426 Total infiltration to the dwelling unit is 27.6426 ACH50 +in.air_leakage_to_outside_ach50 27.682 Total infiltration to the dwelling unit is 27.682 ACH50 +in.air_leakage_to_outside_ach50 27.7128 Total infiltration to the dwelling unit is 27.7128 ACH50 +in.air_leakage_to_outside_ach50 27.7685 Total infiltration to the dwelling unit is 27.7685 ACH50 +in.air_leakage_to_outside_ach50 27.946 Total infiltration to the dwelling unit is 27.9459999999999 ACH50 +in.air_leakage_to_outside_ach50 27.9565 Total infiltration to the dwelling unit is 27.9565 ACH50 +in.air_leakage_to_outside_ach50 28.0156 Total infiltration to the dwelling unit is 28.0156 ACH50 +in.air_leakage_to_outside_ach50 28.0544 Total infiltration to the dwelling unit is 28.0544 ACH50 +in.air_leakage_to_outside_ach50 28.0768 Total infiltration to the dwelling unit is 28.0768 ACH50 +in.air_leakage_to_outside_ach50 28.167 Total infiltration to the dwelling unit is 28.1669999999999 ACH50 +in.air_leakage_to_outside_ach50 28.2475 Total infiltration to the dwelling unit is 28.2475 ACH50 +in.air_leakage_to_outside_ach50 28.3284 Total infiltration to the dwelling unit is 28.3284 ACH50 +in.air_leakage_to_outside_ach50 28.578 Total infiltration to the dwelling unit is 28.578 ACH50 +in.air_leakage_to_outside_ach50 28.646 Total infiltration to the dwelling unit is 28.646 ACH50 +in.air_leakage_to_outside_ach50 28.7185 Total infiltration to the dwelling unit is 28.7185 ACH50 +in.air_leakage_to_outside_ach50 28.8265 Total infiltration to the dwelling unit is 28.8265 ACH50 +in.air_leakage_to_outside_ach50 28.982 Total infiltration to the dwelling unit is 28.982 ACH50 +in.air_leakage_to_outside_ach50 29.056 Total infiltration to the dwelling unit is 29.0559999999999 ACH50 +in.air_leakage_to_outside_ach50 29.1212 Total infiltration to the dwelling unit is 29.1211999999999 ACH50 +in.air_leakage_to_outside_ach50 29.146 Total infiltration to the dwelling unit is 29.146 ACH50 +in.air_leakage_to_outside_ach50 29.3035 Total infiltration to the dwelling unit is 29.3035 ACH50 +in.air_leakage_to_outside_ach50 29.445 Total infiltration to the dwelling unit is 29.445 ACH50 +in.air_leakage_to_outside_ach50 29.61 Total infiltration to the dwelling unit is 29.6099999999999 ACH50 +in.air_leakage_to_outside_ach50 29.6396 Total infiltration to the dwelling unit is 29.6396 ACH50 +in.air_leakage_to_outside_ach50 29.6932 Total infiltration to the dwelling unit is 29.6932 ACH50 +in.air_leakage_to_outside_ach50 29.7044 Total infiltration to the dwelling unit is 29.7044 ACH50 +in.air_leakage_to_outside_ach50 29.72 Total infiltration to the dwelling unit is 29.72 ACH50 +in.air_leakage_to_outside_ach50 29.8465 Total infiltration to the dwelling unit is 29.8465 ACH50 +in.air_leakage_to_outside_ach50 29.868 Total infiltration to the dwelling unit is 29.868 ACH50 +in.air_leakage_to_outside_ach50 29.9496 Total infiltration to the dwelling unit is 29.9495999999999 ACH50 +in.air_leakage_to_outside_ach50 30 Total infiltration to the dwelling unit is 30 ACH50 +in.air_leakage_to_outside_ach50 30.106 Total infiltration to the dwelling unit is 30.106 ACH50 +in.air_leakage_to_outside_ach50 30.2045 Total infiltration to the dwelling unit is 30.2045 ACH50 +in.air_leakage_to_outside_ach50 30.224 Total infiltration to the dwelling unit is 30.224 ACH50 +in.air_leakage_to_outside_ach50 30.332 Total infiltration to the dwelling unit is 30.332 ACH50 +in.air_leakage_to_outside_ach50 30.335 Total infiltration to the dwelling unit is 30.335 ACH50 +in.air_leakage_to_outside_ach50 30.3604 Total infiltration to the dwelling unit is 30.3604 ACH50 +in.air_leakage_to_outside_ach50 30.3612 Total infiltration to the dwelling unit is 30.3612 ACH50 +in.air_leakage_to_outside_ach50 30.4748 Total infiltration to the dwelling unit is 30.4748 ACH50 +in.air_leakage_to_outside_ach50 30.4936 Total infiltration to the dwelling unit is 30.4936 ACH50 +in.air_leakage_to_outside_ach50 30.5775 Total infiltration to the dwelling unit is 30.5775 ACH50 +in.air_leakage_to_outside_ach50 30.652 Total infiltration to the dwelling unit is 30.652 ACH50 +in.air_leakage_to_outside_ach50 30.7136 Total infiltration to the dwelling unit is 30.7136 ACH50 +in.air_leakage_to_outside_ach50 30.7364 Total infiltration to the dwelling unit is 30.7364 ACH50 +in.air_leakage_to_outside_ach50 30.7428 Total infiltration to the dwelling unit is 30.7428 ACH50 +in.air_leakage_to_outside_ach50 31.1125 Total infiltration to the dwelling unit is 31.1124999999999 ACH50 +in.air_leakage_to_outside_ach50 31.1245 Total infiltration to the dwelling unit is 31.1244999999999 ACH50 +in.air_leakage_to_outside_ach50 31.1784 Total infiltration to the dwelling unit is 31.1784 ACH50 +in.air_leakage_to_outside_ach50 31.2668 Total infiltration to the dwelling unit is 31.2668 ACH50 +in.air_leakage_to_outside_ach50 31.331 Total infiltration to the dwelling unit is 31.3309999999999 ACH50 +in.air_leakage_to_outside_ach50 31.4584 Total infiltration to the dwelling unit is 31.4584 ACH50 +in.air_leakage_to_outside_ach50 31.4825 Total infiltration to the dwelling unit is 31.4825 ACH50 +in.air_leakage_to_outside_ach50 31.4864 Total infiltration to the dwelling unit is 31.4864 ACH50 +in.air_leakage_to_outside_ach50 31.5304 Total infiltration to the dwelling unit is 31.5304 ACH50 +in.air_leakage_to_outside_ach50 31.57 Total infiltration to the dwelling unit is 31.57 ACH50 +in.air_leakage_to_outside_ach50 31.5928 Total infiltration to the dwelling unit is 31.5927999999999 ACH50 +in.air_leakage_to_outside_ach50 31.6224 Total infiltration to the dwelling unit is 31.6224 ACH50 +in.air_leakage_to_outside_ach50 31.6536 Total infiltration to the dwelling unit is 31.6536 ACH50 +in.air_leakage_to_outside_ach50 31.6585 Total infiltration to the dwelling unit is 31.6585 ACH50 +in.air_leakage_to_outside_ach50 31.778 Total infiltration to the dwelling unit is 31.778 ACH50 +in.air_leakage_to_outside_ach50 31.9388 Total infiltration to the dwelling unit is 31.9388 ACH50 +in.air_leakage_to_outside_ach50 31.9472 Total infiltration to the dwelling unit is 31.9472 ACH50 +in.air_leakage_to_outside_ach50 31.9844 Total infiltration to the dwelling unit is 31.9844 ACH50 +in.air_leakage_to_outside_ach50 32.0896 Total infiltration to the dwelling unit is 32.0896 ACH50 +in.air_leakage_to_outside_ach50 32.134 Total infiltration to the dwelling unit is 32.134 ACH50 +in.air_leakage_to_outside_ach50 32.2335 Total infiltration to the dwelling unit is 32.2335 ACH50 +in.air_leakage_to_outside_ach50 32.2655 Total infiltration to the dwelling unit is 32.2655 ACH50 +in.air_leakage_to_outside_ach50 32.4105 Total infiltration to the dwelling unit is 32.4105 ACH50 +in.air_leakage_to_outside_ach50 32.4448 Total infiltration to the dwelling unit is 32.4448 ACH50 +in.air_leakage_to_outside_ach50 32.486 Total infiltration to the dwelling unit is 32.486 ACH50 +in.air_leakage_to_outside_ach50 32.5552 Total infiltration to the dwelling unit is 32.5552 ACH50 +in.air_leakage_to_outside_ach50 32.5604 Total infiltration to the dwelling unit is 32.5604 ACH50 +in.air_leakage_to_outside_ach50 32.5932 Total infiltration to the dwelling unit is 32.5932 ACH50 +in.air_leakage_to_outside_ach50 32.7284 Total infiltration to the dwelling unit is 32.7284 ACH50 +in.air_leakage_to_outside_ach50 32.787 Total infiltration to the dwelling unit is 32.787 ACH50 +in.air_leakage_to_outside_ach50 32.9064 Total infiltration to the dwelling unit is 32.9064 ACH50 +in.air_leakage_to_outside_ach50 32.964 Total infiltration to the dwelling unit is 32.964 ACH50 +in.air_leakage_to_outside_ach50 33.1148 Total infiltration to the dwelling unit is 33.1148 ACH50 +in.air_leakage_to_outside_ach50 33.1485 Total infiltration to the dwelling unit is 33.1485 ACH50 +in.air_leakage_to_outside_ach50 33.1948 Total infiltration to the dwelling unit is 33.1948 ACH50 +in.air_leakage_to_outside_ach50 33.2592 Total infiltration to the dwelling unit is 33.2592 ACH50 +in.air_leakage_to_outside_ach50 33.2775 Total infiltration to the dwelling unit is 33.2774999999999 ACH50 +in.air_leakage_to_outside_ach50 33.3628 Total infiltration to the dwelling unit is 33.3628 ACH50 +in.air_leakage_to_outside_ach50 33.378 Total infiltration to the dwelling unit is 33.378 ACH50 +in.air_leakage_to_outside_ach50 33.407 Total infiltration to the dwelling unit is 33.407 ACH50 +in.air_leakage_to_outside_ach50 33.5144 Total infiltration to the dwelling unit is 33.5144 ACH50 +in.air_leakage_to_outside_ach50 33.5385 Total infiltration to the dwelling unit is 33.5385 ACH50 +in.air_leakage_to_outside_ach50 33.5388 Total infiltration to the dwelling unit is 33.5388 ACH50 +in.air_leakage_to_outside_ach50 33.714 Total infiltration to the dwelling unit is 33.714 ACH50 +in.air_leakage_to_outside_ach50 33.786 Total infiltration to the dwelling unit is 33.786 ACH50 +in.air_leakage_to_outside_ach50 33.8032 Total infiltration to the dwelling unit is 33.8032 ACH50 +in.air_leakage_to_outside_ach50 33.8465 Total infiltration to the dwelling unit is 33.8465 ACH50 +in.air_leakage_to_outside_ach50 33.9955 Total infiltration to the dwelling unit is 33.9955 ACH50 +in.air_leakage_to_outside_ach50 34.0895 Total infiltration to the dwelling unit is 34.0895 ACH50 +in.air_leakage_to_outside_ach50 34.16 Total infiltration to the dwelling unit is 34.16 ACH50 +in.air_leakage_to_outside_ach50 34.164 Total infiltration to the dwelling unit is 34.164 ACH50 +in.air_leakage_to_outside_ach50 34.2132 Total infiltration to the dwelling unit is 34.2132 ACH50 +in.air_leakage_to_outside_ach50 34.5075 Total infiltration to the dwelling unit is 34.5075 ACH50 +in.air_leakage_to_outside_ach50 34.6025 Total infiltration to the dwelling unit is 34.6025 ACH50 +in.air_leakage_to_outside_ach50 34.641 Total infiltration to the dwelling unit is 34.641 ACH50 +in.air_leakage_to_outside_ach50 34.6732 Total infiltration to the dwelling unit is 34.6732 ACH50 +in.air_leakage_to_outside_ach50 34.8464 Total infiltration to the dwelling unit is 34.8464 ACH50 +in.air_leakage_to_outside_ach50 34.8524 Total infiltration to the dwelling unit is 34.8524 ACH50 +in.air_leakage_to_outside_ach50 35.0195 Total infiltration to the dwelling unit is 35.0195 ACH50 +in.air_leakage_to_outside_ach50 35.068 Total infiltration to the dwelling unit is 35.068 ACH50 +in.air_leakage_to_outside_ach50 35.096 Total infiltration to the dwelling unit is 35.096 ACH50 +in.air_leakage_to_outside_ach50 35.1004 Total infiltration to the dwelling unit is 35.1004 ACH50 +in.air_leakage_to_outside_ach50 35.326 Total infiltration to the dwelling unit is 35.326 ACH50 +in.air_leakage_to_outside_ach50 35.3568 Total infiltration to the dwelling unit is 35.3568 ACH50 +in.air_leakage_to_outside_ach50 35.4105 Total infiltration to the dwelling unit is 35.4105 ACH50 +in.air_leakage_to_outside_ach50 35.426 Total infiltration to the dwelling unit is 35.426 ACH50 +in.air_leakage_to_outside_ach50 35.5225 Total infiltration to the dwelling unit is 35.5225 ACH50 +in.air_leakage_to_outside_ach50 35.7432 Total infiltration to the dwelling unit is 35.7432 ACH50 +in.air_leakage_to_outside_ach50 35.8268 Total infiltration to the dwelling unit is 35.8268 ACH50 +in.air_leakage_to_outside_ach50 36.2776 Total infiltration to the dwelling unit is 36.2776 ACH50 +in.air_leakage_to_outside_ach50 36.2804 Total infiltration to the dwelling unit is 36.2804 ACH50 +in.air_leakage_to_outside_ach50 36.4015 Total infiltration to the dwelling unit is 36.4015 ACH50 +in.air_leakage_to_outside_ach50 36.4325 Total infiltration to the dwelling unit is 36.4325 ACH50 +in.air_leakage_to_outside_ach50 36.5756 Total infiltration to the dwelling unit is 36.5756 ACH50 +in.air_leakage_to_outside_ach50 36.5972 Total infiltration to the dwelling unit is 36.5972 ACH50 +in.air_leakage_to_outside_ach50 36.8504 Total infiltration to the dwelling unit is 36.8504 ACH50 +in.air_leakage_to_outside_ach50 36.8568 Total infiltration to the dwelling unit is 36.8568 ACH50 +in.air_leakage_to_outside_ach50 37.0495 Total infiltration to the dwelling unit is 37.0495 ACH50 +in.air_leakage_to_outside_ach50 37.0596 Total infiltration to the dwelling unit is 37.0596 ACH50 +in.air_leakage_to_outside_ach50 37.08 Total infiltration to the dwelling unit is 37.08 ACH50 +in.air_leakage_to_outside_ach50 37.1165 Total infiltration to the dwelling unit is 37.1165 ACH50 +in.air_leakage_to_outside_ach50 37.1305 Total infiltration to the dwelling unit is 37.1305 ACH50 +in.air_leakage_to_outside_ach50 37.437 Total infiltration to the dwelling unit is 37.437 ACH50 +in.air_leakage_to_outside_ach50 37.915 Total infiltration to the dwelling unit is 37.915 ACH50 +in.air_leakage_to_outside_ach50 37.9505 Total infiltration to the dwelling unit is 37.9505 ACH50 +in.air_leakage_to_outside_ach50 37.9515 Total infiltration to the dwelling unit is 37.9514999999999 ACH50 +in.air_leakage_to_outside_ach50 38.0935 Total infiltration to the dwelling unit is 38.0935 ACH50 +in.air_leakage_to_outside_ach50 38.117 Total infiltration to the dwelling unit is 38.117 ACH50 +in.air_leakage_to_outside_ach50 38.315 Total infiltration to the dwelling unit is 38.315 ACH50 +in.air_leakage_to_outside_ach50 38.392 Total infiltration to the dwelling unit is 38.3919999999999 ACH50 +in.air_leakage_to_outside_ach50 38.4205 Total infiltration to the dwelling unit is 38.4205 ACH50 +in.air_leakage_to_outside_ach50 38.645 Total infiltration to the dwelling unit is 38.645 ACH50 +in.air_leakage_to_outside_ach50 38.973 Total infiltration to the dwelling unit is 38.973 ACH50 +in.air_leakage_to_outside_ach50 39.0835 Total infiltration to the dwelling unit is 39.0835 ACH50 +in.air_leakage_to_outside_ach50 39.323 Total infiltration to the dwelling unit is 39.323 ACH50 +in.air_leakage_to_outside_ach50 39.358 Total infiltration to the dwelling unit is 39.358 ACH50 +in.air_leakage_to_outside_ach50 39.3595 Total infiltration to the dwelling unit is 39.3595 ACH50 +in.air_leakage_to_outside_ach50 39.491 Total infiltration to the dwelling unit is 39.491 ACH50 +in.air_leakage_to_outside_ach50 39.528 Total infiltration to the dwelling unit is 39.528 ACH50 +in.air_leakage_to_outside_ach50 39.567 Total infiltration to the dwelling unit is 39.567 ACH50 +in.air_leakage_to_outside_ach50 39.9235 Total infiltration to the dwelling unit is 39.9235 ACH50 +in.air_leakage_to_outside_ach50 39.934 Total infiltration to the dwelling unit is 39.934 ACH50 +in.air_leakage_to_outside_ach50 39.9805 Total infiltration to the dwelling unit is 39.9805 ACH50 +in.air_leakage_to_outside_ach50 40 Total infiltration to the dwelling unit is 40 ACH50 +in.air_leakage_to_outside_ach50 40.112 Total infiltration to the dwelling unit is 40.1119999999999 ACH50 +in.air_leakage_to_outside_ach50 40.556 Total infiltration to the dwelling unit is 40.556 ACH50 +in.air_leakage_to_outside_ach50 40.694 Total infiltration to the dwelling unit is 40.694 ACH50 +in.air_leakage_to_outside_ach50 40.7005 Total infiltration to the dwelling unit is 40.7005 ACH50 +in.air_leakage_to_outside_ach50 40.7415 Total infiltration to the dwelling unit is 40.7415 ACH50 +in.air_leakage_to_outside_ach50 40.9105 Total infiltration to the dwelling unit is 40.9105 ACH50 +in.air_leakage_to_outside_ach50 41.205 Total infiltration to the dwelling unit is 41.205 ACH50 +in.air_leakage_to_outside_ach50 41.3935 Total infiltration to the dwelling unit is 41.3935 ACH50 +in.air_leakage_to_outside_ach50 41.439 Total infiltration to the dwelling unit is 41.439 ACH50 +in.air_leakage_to_outside_ach50 41.4935 Total infiltration to the dwelling unit is 41.4935 ACH50 +in.air_leakage_to_outside_ach50 41.574 Total infiltration to the dwelling unit is 41.574 ACH50 +in.air_leakage_to_outside_ach50 41.7225 Total infiltration to the dwelling unit is 41.7225 ACH50 +in.air_leakage_to_outside_ach50 41.893 Total infiltration to the dwelling unit is 41.893 ACH50 +in.air_leakage_to_outside_ach50 41.9235 Total infiltration to the dwelling unit is 41.9235 ACH50 +in.air_leakage_to_outside_ach50 42.1425 Total infiltration to the dwelling unit is 42.1425 ACH50 +in.air_leakage_to_outside_ach50 42.254 Total infiltration to the dwelling unit is 42.254 ACH50 +in.air_leakage_to_outside_ach50 42.7 Total infiltration to the dwelling unit is 42.6999999999999 ACH50 +in.air_leakage_to_outside_ach50 42.7665 Total infiltration to the dwelling unit is 42.7665 ACH50 +in.air_leakage_to_outside_ach50 43.3415 Total infiltration to the dwelling unit is 43.3414999999999 ACH50 +in.air_leakage_to_outside_ach50 43.558 Total infiltration to the dwelling unit is 43.558 ACH50 +in.air_leakage_to_outside_ach50 43.5655 Total infiltration to the dwelling unit is 43.5655 ACH50 +in.air_leakage_to_outside_ach50 44.1575 Total infiltration to the dwelling unit is 44.1575 ACH50 +in.air_leakage_to_outside_ach50 44.196 Total infiltration to the dwelling unit is 44.196 ACH50 +in.air_leakage_to_outside_ach50 44.679 Total infiltration to the dwelling unit is 44.679 ACH50 +in.air_leakage_to_outside_ach50 44.7835 Total infiltration to the dwelling unit is 44.7835 ACH50 +in.air_leakage_to_outside_ach50 45.347 Total infiltration to the dwelling unit is 45.347 ACH50 +in.air_leakage_to_outside_ach50 45.3505 Total infiltration to the dwelling unit is 45.3505 ACH50 +in.air_leakage_to_outside_ach50 45.7195 Total infiltration to the dwelling unit is 45.7195 ACH50 +in.air_leakage_to_outside_ach50 45.7465 Total infiltration to the dwelling unit is 45.7465 ACH50 +in.air_leakage_to_outside_ach50 46.063 Total infiltration to the dwelling unit is 46.0629999999999 ACH50 +in.air_leakage_to_outside_ach50 50 Total infiltration to the dwelling unit is 50 ACH50 +in.area_median_income 0-30% Area median income of the household occupying the dwelling unit is 0-30% +in.area_median_income 100-120% Area median income of the household occupying the dwelling unit is 100-120% +in.area_median_income 120-150% Area median income of the household occupying the dwelling unit is 120-150% +in.area_median_income 150%+ Area median income of the household occupying the dwelling unit is 150%+ +in.area_median_income 30-60% Area median income of the household occupying the dwelling unit is 30-60% +in.area_median_income 60-80% Area median income of the household occupying the dwelling unit is 60-80% +in.area_median_income 80-100% Area median income of the household occupying the dwelling unit is 80-100% +in.area_median_income Not Available Area median income of the household occupying the dwelling unit is Not Available +in.ashrae_iecc_climate_zone_2004 1A IECC Climate Zone 1A +in.ashrae_iecc_climate_zone_2004 2A IECC Climate Zone 2A +in.ashrae_iecc_climate_zone_2004 2B IECC Climate Zone 2B +in.ashrae_iecc_climate_zone_2004 3A IECC Climate Zone 3A +in.ashrae_iecc_climate_zone_2004 3B IECC Climate Zone 3B +in.ashrae_iecc_climate_zone_2004 3C IECC Climate Zone 3C +in.ashrae_iecc_climate_zone_2004 4A IECC Climate Zone 4A +in.ashrae_iecc_climate_zone_2004 4B IECC Climate Zone 4B +in.ashrae_iecc_climate_zone_2004 4C IECC Climate Zone 4C +in.ashrae_iecc_climate_zone_2004 5A IECC Climate Zone 5A +in.ashrae_iecc_climate_zone_2004 5B IECC Climate Zone 5B +in.ashrae_iecc_climate_zone_2004 6A IECC Climate Zone 6A +in.ashrae_iecc_climate_zone_2004 6B IECC Climate Zone 6B +in.ashrae_iecc_climate_zone_2004 7A IECC Climate Zone 7A +in.ashrae_iecc_climate_zone_2004 7AK IECC Climate Zone 7AK +in.ashrae_iecc_climate_zone_2004 7B IECC Climate Zone 7B +in.ashrae_iecc_climate_zone_2004 8AK IECC Climate Zone 8AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL IECC Climate Zone where 1A and 2A is split: 1A down selected to FL +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI IECC Climate Zone where 1A and 2A is split: 1A down selected to HI +in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - FL, GA, AL, MS" "IECC Climate Zone where 1A and 2A is split: 2A down selected to FL, GA, AL, MS" +in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - TX, LA" "IECC Climate Zone where 1A and 2A is split: 2A down selected to TX, LA" +in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B IECC Climate Zone where 1A and 2A is split: 2B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A IECC Climate Zone where 1A and 2A is split: 3A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B IECC Climate Zone where 1A and 2A is split: 3B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C IECC Climate Zone where 1A and 2A is split: 3C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A IECC Climate Zone where 1A and 2A is split: 4A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B IECC Climate Zone where 1A and 2A is split: 4B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C IECC Climate Zone where 1A and 2A is split: 4C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A IECC Climate Zone where 1A and 2A is split: 5A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B IECC Climate Zone where 1A and 2A is split: 5B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A IECC Climate Zone where 1A and 2A is split: 6A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B IECC Climate Zone where 1A and 2A is split: 6B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A IECC Climate Zone where 1A and 2A is split: 7A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK IECC Climate Zone where 1A and 2A is split: 7AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B IECC Climate Zone where 1A and 2A is split: 7B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK IECC Climate Zone where 1A and 2A is split: 8AK +in.bathroom_spot_vent_hour Hour0 "Bathroom spot ventilation occurs at hour 0, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour1 "Bathroom spot ventilation occurs at hour 1, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour10 "Bathroom spot ventilation occurs at hour 10, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour11 "Bathroom spot ventilation occurs at hour 11, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour12 "Bathroom spot ventilation occurs at hour 12, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour13 "Bathroom spot ventilation occurs at hour 13, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour14 "Bathroom spot ventilation occurs at hour 14, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour15 "Bathroom spot ventilation occurs at hour 15, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour16 "Bathroom spot ventilation occurs at hour 16, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour17 "Bathroom spot ventilation occurs at hour 17, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour18 "Bathroom spot ventilation occurs at hour 18, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour19 "Bathroom spot ventilation occurs at hour 19, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour2 "Bathroom spot ventilation occurs at hour 2, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour20 "Bathroom spot ventilation occurs at hour 20, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour21 "Bathroom spot ventilation occurs at hour 21, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour22 "Bathroom spot ventilation occurs at hour 22, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour23 "Bathroom spot ventilation occurs at hour 23, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour3 "Bathroom spot ventilation occurs at hour 3, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour4 "Bathroom spot ventilation occurs at hour 4, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour5 "Bathroom spot ventilation occurs at hour 5, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour6 "Bathroom spot ventilation occurs at hour 6, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour7 "Bathroom spot ventilation occurs at hour 7, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour8 "Bathroom spot ventilation occurs at hour 8, and lasts for 1 hour" +in.bathroom_spot_vent_hour Hour9 "Bathroom spot ventilation occurs at hour 9, and lasts for 1 hour" +in.battery None No battery in the housing unit +in.bedrooms 1 1 bedroom in housing unit +in.bedrooms 2 2 bedroom in housing unit +in.bedrooms 3 3 bedroom in housing unit +in.bedrooms 4 4 bedroom in housing unit +in.bedrooms 5 5 bedroom in housing unit +in.building_america_climate_zone Cold Building America climate zone Cold +in.building_america_climate_zone Hot-Dry Building America climate zone Hot-Dry +in.building_america_climate_zone Hot-Humid Building America climate zone Hot-Humid +in.building_america_climate_zone Marine Building America climate zone Marine +in.building_america_climate_zone Mixed-Dry Building America climate zone Mixed-Dry +in.building_america_climate_zone Mixed-Humid Building America climate zone Mixed-Humid +in.building_america_climate_zone Subarctic Building America climate zone Subarctic +in.building_america_climate_zone Very Cold Building America climate zone Very Cold +in.buildstock_csv_path buildstock.csv The path of buildstock.csv is buildstock.csv +in.cec_climate_zone 1 California Energy Code climate zone 1 +in.cec_climate_zone 2 California Energy Code climate zone 2 +in.cec_climate_zone 3 California Energy Code climate zone 3 +in.cec_climate_zone 4 California Energy Code climate zone 4 +in.cec_climate_zone 5 California Energy Code climate zone 5 +in.cec_climate_zone 6 California Energy Code climate zone 6 +in.cec_climate_zone 7 California Energy Code climate zone 7 +in.cec_climate_zone 8 California Energy Code climate zone 8 +in.cec_climate_zone 9 California Energy Code climate zone 9 +in.cec_climate_zone 10 California Energy Code climate zone 10 +in.cec_climate_zone 11 California Energy Code climate zone 11 +in.cec_climate_zone 12 California Energy Code climate zone 12 +in.cec_climate_zone 13 California Energy Code climate zone 13 +in.cec_climate_zone 14 California Energy Code climate zone 14 +in.cec_climate_zone 15 California Energy Code climate zone 15 +in.cec_climate_zone 16 California Energy Code climate zone 16 +in.cec_climate_zone None No California Energy Code climate zone +in.ceiling_fan None No ceiling fan +in.ceiling_fan Standard Efficiency 42.6 W power consumption per fan at medium speed +in.ceiling_fan "Standard Efficiency, No usage" Standard efficiency fan applied but not used +in.census_division East North Central East North Central 2010 U.S. Census Division +in.census_division East South Central East South Central 2010 U.S. Census Division +in.census_division Middle Atlantic Middle Atlantic 2010 U.S. Census Division +in.census_division Mountain Mountain 2010 U.S. Census Division +in.census_division New England New England 2010 U.S. Census Division +in.census_division Pacific Pacific 2010 U.S. Census Division +in.census_division South Atlantic South Atlantic 2010 U.S. Census Division +in.census_division West North Central West North Central 2010 U.S. Census Division +in.census_division West South Central West South Central 2010 U.S. Census Division +in.census_division_recs East North Central East North Central Census Division as used in RECS 2015 +in.census_division_recs East South Central East South Central Census Division as used in RECS 2015 +in.census_division_recs Middle Atlantic Middle Atlantic Census Division as used in RECS 2015 +in.census_division_recs Mountain North Mountain North Census Division as used in RECS 2015 +in.census_division_recs Mountain South Mountain South Census Division as used in RECS 2015 +in.census_division_recs New England New England Census Division as used in RECS 2015 +in.census_division_recs Pacific Pacific Census Division as used in RECS 2015 +in.census_division_recs South Atlantic South Atlantic Census Division as used in RECS 2015 +in.census_division_recs West North Central West North Central Census Division as used in RECS 2015 +in.census_division_recs West South Central West South Central Census Division as used in RECS 2015 +in.census_region Midwest Midwest 2010 U.S. Census Division +in.census_region Northeast Northeast 2010 U.S. Census Division +in.census_region South South 2010 U.S. Census Division +in.census_region West West 2010 U.S. Census Division +in.city "AK, Anchorage" "AK, Anchorage census-designated city" +in.city "AL, Auburn" "AL, Auburn census-designated city" +in.city "AL, Birmingham" "AL, Birmingham census-designated city" +in.city "AL, Decatur" "AL, Decatur census-designated city" +in.city "AL, Dothan" "AL, Dothan census-designated city" +in.city "AL, Florence" "AL, Florence census-designated city" +in.city "AL, Gadsden" "AL, Gadsden census-designated city" +in.city "AL, Hoover" "AL, Hoover census-designated city" +in.city "AL, Huntsville" "AL, Huntsville census-designated city" +in.city "AL, Madison" "AL, Madison census-designated city" +in.city "AL, Mobile" "AL, Mobile census-designated city" +in.city "AL, Montgomery" "AL, Montgomery census-designated city" +in.city "AL, Phenix City" "AL, Phenix City census-designated city" +in.city "AL, Tuscaloosa" "AL, Tuscaloosa census-designated city" +in.city "AR, Bentonville" "AR, Bentonville census-designated city" +in.city "AR, Conway" "AR, Conway census-designated city" +in.city "AR, Fayetteville" "AR, Fayetteville census-designated city" +in.city "AR, Fort Smith" "AR, Fort Smith census-designated city" +in.city "AR, Hot Springs" "AR, Hot Springs census-designated city" +in.city "AR, Jonesboro" "AR, Jonesboro census-designated city" +in.city "AR, Little Rock" "AR, Little Rock census-designated city" +in.city "AR, North Little Rock" "AR, North Little Rock census-designated city" +in.city "AR, Pine Bluff" "AR, Pine Bluff census-designated city" +in.city "AR, Rogers" "AR, Rogers census-designated city" +in.city "AR, Springdale" "AR, Springdale census-designated city" +in.city "AZ, Apache Junction" "AZ, Apache Junction census-designated city" +in.city "AZ, Avondale" "AZ, Avondale census-designated city" +in.city "AZ, Buckeye" "AZ, Buckeye census-designated city" +in.city "AZ, Bullhead City" "AZ, Bullhead City census-designated city" +in.city "AZ, Casa Grande" "AZ, Casa Grande census-designated city" +in.city "AZ, Casas Adobes" "AZ, Casas Adobes census-designated city" +in.city "AZ, Catalina Foothills" "AZ, Catalina Foothills census-designated city" +in.city "AZ, Chandler" "AZ, Chandler census-designated city" +in.city "AZ, Flagstaff" "AZ, Flagstaff census-designated city" +in.city "AZ, Fortuna Foothills" "AZ, Fortuna Foothills census-designated city" +in.city "AZ, Gilbert" "AZ, Gilbert census-designated city" +in.city "AZ, Glendale" "AZ, Glendale census-designated city" +in.city "AZ, Goodyear" "AZ, Goodyear census-designated city" +in.city "AZ, Green Valley" "AZ, Green Valley census-designated city" +in.city "AZ, Lake Havasu City" "AZ, Lake Havasu City census-designated city" +in.city "AZ, Marana" "AZ, Marana census-designated city" +in.city "AZ, Maricopa" "AZ, Maricopa census-designated city" +in.city "AZ, Mesa" "AZ, Mesa census-designated city" +in.city "AZ, Oro Valley" "AZ, Oro Valley census-designated city" +in.city "AZ, Peoria" "AZ, Peoria census-designated city" +in.city "AZ, Phoenix" "AZ, Phoenix census-designated city" +in.city "AZ, Prescott" "AZ, Prescott census-designated city" +in.city "AZ, Prescott Valley" "AZ, Prescott Valley census-designated city" +in.city "AZ, San Tan Valley" "AZ, San Tan Valley census-designated city" +in.city "AZ, Scottsdale" "AZ, Scottsdale census-designated city" +in.city "AZ, Sierra Vista" "AZ, Sierra Vista census-designated city" +in.city "AZ, Sun City" "AZ, Sun City census-designated city" +in.city "AZ, Sun City West" "AZ, Sun City West census-designated city" +in.city "AZ, Surprise" "AZ, Surprise census-designated city" +in.city "AZ, Tempe" "AZ, Tempe census-designated city" +in.city "AZ, Tucson" "AZ, Tucson census-designated city" +in.city "AZ, Yuma" "AZ, Yuma census-designated city" +in.city "CA, Alameda" "CA, Alameda census-designated city" +in.city "CA, Alhambra" "CA, Alhambra census-designated city" +in.city "CA, Aliso Viejo" "CA, Aliso Viejo census-designated city" +in.city "CA, Altadena" "CA, Altadena census-designated city" +in.city "CA, Anaheim" "CA, Anaheim census-designated city" +in.city "CA, Antioch" "CA, Antioch census-designated city" +in.city "CA, Apple Valley" "CA, Apple Valley census-designated city" +in.city "CA, Arcadia" "CA, Arcadia census-designated city" +in.city "CA, Arden-Arcade" "CA, Arden-Arcade census-designated city" +in.city "CA, Bakersfield" "CA, Bakersfield census-designated city" +in.city "CA, Baldwin Park" "CA, Baldwin Park census-designated city" +in.city "CA, Bellflower" "CA, Bellflower census-designated city" +in.city "CA, Berkeley" "CA, Berkeley census-designated city" +in.city "CA, Beverly Hills" "CA, Beverly Hills census-designated city" +in.city "CA, Brea" "CA, Brea census-designated city" +in.city "CA, Brentwood" "CA, Brentwood census-designated city" +in.city "CA, Buena Park" "CA, Buena Park census-designated city" +in.city "CA, Burbank" "CA, Burbank census-designated city" +in.city "CA, Camarillo" "CA, Camarillo census-designated city" +in.city "CA, Campbell" "CA, Campbell census-designated city" +in.city "CA, Carlsbad" "CA, Carlsbad census-designated city" +in.city "CA, Carmichael" "CA, Carmichael census-designated city" +in.city "CA, Carson" "CA, Carson census-designated city" +in.city "CA, Castro Valley" "CA, Castro Valley census-designated city" +in.city "CA, Cathedral City" "CA, Cathedral City census-designated city" +in.city "CA, Cerritos" "CA, Cerritos census-designated city" +in.city "CA, Chico" "CA, Chico census-designated city" +in.city "CA, Chino" "CA, Chino census-designated city" +in.city "CA, Chino Hills" "CA, Chino Hills census-designated city" +in.city "CA, Chula Vista" "CA, Chula Vista census-designated city" +in.city "CA, Citrus Heights" "CA, Citrus Heights census-designated city" +in.city "CA, Clovis" "CA, Clovis census-designated city" +in.city "CA, Colton" "CA, Colton census-designated city" +in.city "CA, Compton" "CA, Compton census-designated city" +in.city "CA, Concord" "CA, Concord census-designated city" +in.city "CA, Corona" "CA, Corona census-designated city" +in.city "CA, Costa Mesa" "CA, Costa Mesa census-designated city" +in.city "CA, Covina" "CA, Covina census-designated city" +in.city "CA, Culver City" "CA, Culver City census-designated city" +in.city "CA, Cupertino" "CA, Cupertino census-designated city" +in.city "CA, Cypress" "CA, Cypress census-designated city" +in.city "CA, Daly City" "CA, Daly City census-designated city" +in.city "CA, Dana Point" "CA, Dana Point census-designated city" +in.city "CA, Danville" "CA, Danville census-designated city" +in.city "CA, Davis" "CA, Davis census-designated city" +in.city "CA, Diamond Bar" "CA, Diamond Bar census-designated city" +in.city "CA, Downey" "CA, Downey census-designated city" +in.city "CA, Dublin" "CA, Dublin census-designated city" +in.city "CA, East Los Angeles" "CA, East Los Angeles census-designated city" +in.city "CA, El Cajon" "CA, El Cajon census-designated city" +in.city "CA, El Dorado Hills" "CA, El Dorado Hills census-designated city" +in.city "CA, El Monte" "CA, El Monte census-designated city" +in.city "CA, Elk Grove" "CA, Elk Grove census-designated city" +in.city "CA, Encinitas" "CA, Encinitas census-designated city" +in.city "CA, Escondido" "CA, Escondido census-designated city" +in.city "CA, Fairfield" "CA, Fairfield census-designated city" +in.city "CA, Florence-Graham" "CA, Florence-Graham census-designated city" +in.city "CA, Florin" "CA, Florin census-designated city" +in.city "CA, Folsom" "CA, Folsom census-designated city" +in.city "CA, Fontana" "CA, Fontana census-designated city" +in.city "CA, Fountain Valley" "CA, Fountain Valley census-designated city" +in.city "CA, Fremont" "CA, Fremont census-designated city" +in.city "CA, Fresno" "CA, Fresno census-designated city" +in.city "CA, Fullerton" "CA, Fullerton census-designated city" +in.city "CA, Garden Grove" "CA, Garden Grove census-designated city" +in.city "CA, Gardena" "CA, Gardena census-designated city" +in.city "CA, Gilroy" "CA, Gilroy census-designated city" +in.city "CA, Glendale" "CA, Glendale census-designated city" +in.city "CA, Glendora" "CA, Glendora census-designated city" +in.city "CA, Hacienda Heights" "CA, Hacienda Heights census-designated city" +in.city "CA, Hanford" "CA, Hanford census-designated city" +in.city "CA, Hawthorne" "CA, Hawthorne census-designated city" +in.city "CA, Hayward" "CA, Hayward census-designated city" +in.city "CA, Hemet" "CA, Hemet census-designated city" +in.city "CA, Hesperia" "CA, Hesperia census-designated city" +in.city "CA, Highland" "CA, Highland census-designated city" +in.city "CA, Huntington Beach" "CA, Huntington Beach census-designated city" +in.city "CA, Huntington Park" "CA, Huntington Park census-designated city" +in.city "CA, Indio" "CA, Indio census-designated city" +in.city "CA, Inglewood" "CA, Inglewood census-designated city" +in.city "CA, Irvine" "CA, Irvine census-designated city" +in.city "CA, La Habra" "CA, La Habra census-designated city" +in.city "CA, La Mesa" "CA, La Mesa census-designated city" +in.city "CA, La Quinta" "CA, La Quinta census-designated city" +in.city "CA, Laguna Niguel" "CA, Laguna Niguel census-designated city" +in.city "CA, Lake Elsinore" "CA, Lake Elsinore census-designated city" +in.city "CA, Lake Forest" "CA, Lake Forest census-designated city" +in.city "CA, Lakewood" "CA, Lakewood census-designated city" +in.city "CA, Lancaster" "CA, Lancaster census-designated city" +in.city "CA, Lincoln" "CA, Lincoln census-designated city" +in.city "CA, Livermore" "CA, Livermore census-designated city" +in.city "CA, Lodi" "CA, Lodi census-designated city" +in.city "CA, Long Beach" "CA, Long Beach census-designated city" +in.city "CA, Los Angeles" "CA, Los Angeles census-designated city" +in.city "CA, Lynwood" "CA, Lynwood census-designated city" +in.city "CA, Madera" "CA, Madera census-designated city" +in.city "CA, Manhattan Beach" "CA, Manhattan Beach census-designated city" +in.city "CA, Manteca" "CA, Manteca census-designated city" +in.city "CA, Martinez" "CA, Martinez census-designated city" +in.city "CA, Menifee" "CA, Menifee census-designated city" +in.city "CA, Merced" "CA, Merced census-designated city" +in.city "CA, Milpitas" "CA, Milpitas census-designated city" +in.city "CA, Mission Viejo" "CA, Mission Viejo census-designated city" +in.city "CA, Modesto" "CA, Modesto census-designated city" +in.city "CA, Montebello" "CA, Montebello census-designated city" +in.city "CA, Monterey Park" "CA, Monterey Park census-designated city" +in.city "CA, Moreno Valley" "CA, Moreno Valley census-designated city" +in.city "CA, Mountain View" "CA, Mountain View census-designated city" +in.city "CA, Murrieta" "CA, Murrieta census-designated city" +in.city "CA, Napa" "CA, Napa census-designated city" +in.city "CA, National City" "CA, National City census-designated city" +in.city "CA, Newport Beach" "CA, Newport Beach census-designated city" +in.city "CA, North Highlands" "CA, North Highlands census-designated city" +in.city "CA, Norwalk" "CA, Norwalk census-designated city" +in.city "CA, Novato" "CA, Novato census-designated city" +in.city "CA, Oakland" "CA, Oakland census-designated city" +in.city "CA, Oceanside" "CA, Oceanside census-designated city" +in.city "CA, Ontario" "CA, Ontario census-designated city" +in.city "CA, Orange" "CA, Orange census-designated city" +in.city "CA, Oxnard" "CA, Oxnard census-designated city" +in.city "CA, Palm Desert" "CA, Palm Desert census-designated city" +in.city "CA, Palm Springs" "CA, Palm Springs census-designated city" +in.city "CA, Palmdale" "CA, Palmdale census-designated city" +in.city "CA, Palo Alto" "CA, Palo Alto census-designated city" +in.city "CA, Pasadena" "CA, Pasadena census-designated city" +in.city "CA, Perris" "CA, Perris census-designated city" +in.city "CA, Petaluma" "CA, Petaluma census-designated city" +in.city "CA, Pico Rivera" "CA, Pico Rivera census-designated city" +in.city "CA, Pittsburg" "CA, Pittsburg census-designated city" +in.city "CA, Placentia" "CA, Placentia census-designated city" +in.city "CA, Pleasanton" "CA, Pleasanton census-designated city" +in.city "CA, Pomona" "CA, Pomona census-designated city" +in.city "CA, Porterville" "CA, Porterville census-designated city" +in.city "CA, Poway" "CA, Poway census-designated city" +in.city "CA, Rancho Cordova" "CA, Rancho Cordova census-designated city" +in.city "CA, Rancho Cucamonga" "CA, Rancho Cucamonga census-designated city" +in.city "CA, Rancho Palos Verdes" "CA, Rancho Palos Verdes census-designated city" +in.city "CA, Rancho Santa Margarita" "CA, Rancho Santa Margarita census-designated city" +in.city "CA, Redding" "CA, Redding census-designated city" +in.city "CA, Redlands" "CA, Redlands census-designated city" +in.city "CA, Redondo Beach" "CA, Redondo Beach census-designated city" +in.city "CA, Redwood City" "CA, Redwood City census-designated city" +in.city "CA, Rialto" "CA, Rialto census-designated city" +in.city "CA, Richmond" "CA, Richmond census-designated city" +in.city "CA, Riverside" "CA, Riverside census-designated city" +in.city "CA, Rocklin" "CA, Rocklin census-designated city" +in.city "CA, Rohnert Park" "CA, Rohnert Park census-designated city" +in.city "CA, Rosemead" "CA, Rosemead census-designated city" +in.city "CA, Roseville" "CA, Roseville census-designated city" +in.city "CA, Rowland Heights" "CA, Rowland Heights census-designated city" +in.city "CA, Sacramento" "CA, Sacramento census-designated city" +in.city "CA, Salinas" "CA, Salinas census-designated city" +in.city "CA, San Bernardino" "CA, San Bernardino census-designated city" +in.city "CA, San Bruno" "CA, San Bruno census-designated city" +in.city "CA, San Buenaventura Ventura" "CA, San Buenaventura Ventura census-designated city" +in.city "CA, San Clemente" "CA, San Clemente census-designated city" +in.city "CA, San Diego" "CA, San Diego census-designated city" +in.city "CA, San Francisco" "CA, San Francisco census-designated city" +in.city "CA, San Jose" "CA, San Jose census-designated city" +in.city "CA, San Leandro" "CA, San Leandro census-designated city" +in.city "CA, San Luis Obispo" "CA, San Luis Obispo census-designated city" +in.city "CA, San Marcos" "CA, San Marcos census-designated city" +in.city "CA, San Mateo" "CA, San Mateo census-designated city" +in.city "CA, San Rafael" "CA, San Rafael census-designated city" +in.city "CA, San Ramon" "CA, San Ramon census-designated city" +in.city "CA, Santa Ana" "CA, Santa Ana census-designated city" +in.city "CA, Santa Barbara" "CA, Santa Barbara census-designated city" +in.city "CA, Santa Clara" "CA, Santa Clara census-designated city" +in.city "CA, Santa Clarita" "CA, Santa Clarita census-designated city" +in.city "CA, Santa Cruz" "CA, Santa Cruz census-designated city" +in.city "CA, Santa Maria" "CA, Santa Maria census-designated city" +in.city "CA, Santa Monica" "CA, Santa Monica census-designated city" +in.city "CA, Santa Rosa" "CA, Santa Rosa census-designated city" +in.city "CA, Santee" "CA, Santee census-designated city" +in.city "CA, Simi Valley" "CA, Simi Valley census-designated city" +in.city "CA, South Gate" "CA, South Gate census-designated city" +in.city "CA, South Lake Tahoe" "CA, South Lake Tahoe census-designated city" +in.city "CA, South San Francisco" "CA, South San Francisco census-designated city" +in.city "CA, South Whittier" "CA, South Whittier census-designated city" +in.city "CA, Stockton" "CA, Stockton census-designated city" +in.city "CA, Sunnyvale" "CA, Sunnyvale census-designated city" +in.city "CA, Temecula" "CA, Temecula census-designated city" +in.city "CA, Thousand Oaks" "CA, Thousand Oaks census-designated city" +in.city "CA, Torrance" "CA, Torrance census-designated city" +in.city "CA, Tracy" "CA, Tracy census-designated city" +in.city "CA, Tulare" "CA, Tulare census-designated city" +in.city "CA, Turlock" "CA, Turlock census-designated city" +in.city "CA, Tustin" "CA, Tustin census-designated city" +in.city "CA, Union City" "CA, Union City census-designated city" +in.city "CA, Upland" "CA, Upland census-designated city" +in.city "CA, Vacaville" "CA, Vacaville census-designated city" +in.city "CA, Vallejo" "CA, Vallejo census-designated city" +in.city "CA, Victorville" "CA, Victorville census-designated city" +in.city "CA, Visalia" "CA, Visalia census-designated city" +in.city "CA, Vista" "CA, Vista census-designated city" +in.city "CA, Walnut Creek" "CA, Walnut Creek census-designated city" +in.city "CA, West Covina" "CA, West Covina census-designated city" +in.city "CA, West Hollywood" "CA, West Hollywood census-designated city" +in.city "CA, West Sacramento" "CA, West Sacramento census-designated city" +in.city "CA, Westminster" "CA, Westminster census-designated city" +in.city "CA, Whittier" "CA, Whittier census-designated city" +in.city "CA, Woodland" "CA, Woodland census-designated city" +in.city "CA, Yorba Linda" "CA, Yorba Linda census-designated city" +in.city "CA, Yuba City" "CA, Yuba City census-designated city" +in.city "CA, Yucaipa" "CA, Yucaipa census-designated city" +in.city "CO, Arvada" "CO, Arvada census-designated city" +in.city "CO, Aurora" "CO, Aurora census-designated city" +in.city "CO, Boulder" "CO, Boulder census-designated city" +in.city "CO, Broomfield" "CO, Broomfield census-designated city" +in.city "CO, Castle Rock" "CO, Castle Rock census-designated city" +in.city "CO, Centennial" "CO, Centennial census-designated city" +in.city "CO, Colorado Springs" "CO, Colorado Springs census-designated city" +in.city "CO, Commerce City" "CO, Commerce City census-designated city" +in.city "CO, Denver" "CO, Denver census-designated city" +in.city "CO, Englewood" "CO, Englewood census-designated city" +in.city "CO, Fort Collins" "CO, Fort Collins census-designated city" +in.city "CO, Grand Junction" "CO, Grand Junction census-designated city" +in.city "CO, Greeley" "CO, Greeley census-designated city" +in.city "CO, Highlands Ranch" "CO, Highlands Ranch census-designated city" +in.city "CO, Lakewood" "CO, Lakewood census-designated city" +in.city "CO, Littleton" "CO, Littleton census-designated city" +in.city "CO, Longmont" "CO, Longmont census-designated city" +in.city "CO, Loveland" "CO, Loveland census-designated city" +in.city "CO, Parker" "CO, Parker census-designated city" +in.city "CO, Pueblo" "CO, Pueblo census-designated city" +in.city "CO, Thornton" "CO, Thornton census-designated city" +in.city "CO, Westminster" "CO, Westminster census-designated city" +in.city "CT, Bridgeport" "CT, Bridgeport census-designated city" +in.city "CT, Bristol" "CT, Bristol census-designated city" +in.city "CT, Danbury" "CT, Danbury census-designated city" +in.city "CT, East Hartford" "CT, East Hartford census-designated city" +in.city "CT, Hartford" "CT, Hartford census-designated city" +in.city "CT, Meriden" "CT, Meriden census-designated city" +in.city "CT, Middletown" "CT, Middletown census-designated city" +in.city "CT, Milford City Balance" "CT, Milford City Balance census-designated city" +in.city "CT, New Britain" "CT, New Britain census-designated city" +in.city "CT, New Haven" "CT, New Haven census-designated city" +in.city "CT, Norwalk" "CT, Norwalk census-designated city" +in.city "CT, Norwich" "CT, Norwich census-designated city" +in.city "CT, Shelton" "CT, Shelton census-designated city" +in.city "CT, Stamford" "CT, Stamford census-designated city" +in.city "CT, Stratford" "CT, Stratford census-designated city" +in.city "CT, Torrington" "CT, Torrington census-designated city" +in.city "CT, Waterbury" "CT, Waterbury census-designated city" +in.city "CT, West Hartford" "CT, West Hartford census-designated city" +in.city "CT, West Haven" "CT, West Haven census-designated city" +in.city "DC, Washington" "DC, Washington census-designated city" +in.city "DE, Dover" "DE, Dover census-designated city" +in.city "DE, Wilmington" "DE, Wilmington census-designated city" +in.city "FL, Alafaya" "FL, Alafaya census-designated city" +in.city "FL, Altamonte Springs" "FL, Altamonte Springs census-designated city" +in.city "FL, Apopka" "FL, Apopka census-designated city" +in.city "FL, Aventura" "FL, Aventura census-designated city" +in.city "FL, Boca Raton" "FL, Boca Raton census-designated city" +in.city "FL, Bonita Springs" "FL, Bonita Springs census-designated city" +in.city "FL, Boynton Beach" "FL, Boynton Beach census-designated city" +in.city "FL, Bradenton" "FL, Bradenton census-designated city" +in.city "FL, Brandon" "FL, Brandon census-designated city" +in.city "FL, Cape Coral" "FL, Cape Coral census-designated city" +in.city "FL, Carrollwood" "FL, Carrollwood census-designated city" +in.city "FL, Clearwater" "FL, Clearwater census-designated city" +in.city "FL, Coconut Creek" "FL, Coconut Creek census-designated city" +in.city "FL, Coral Gables" "FL, Coral Gables census-designated city" +in.city "FL, Coral Springs" "FL, Coral Springs census-designated city" +in.city "FL, Country Club" "FL, Country Club census-designated city" +in.city "FL, Dania Beach" "FL, Dania Beach census-designated city" +in.city "FL, Davie" "FL, Davie census-designated city" +in.city "FL, Daytona Beach" "FL, Daytona Beach census-designated city" +in.city "FL, Deerfield Beach" "FL, Deerfield Beach census-designated city" +in.city "FL, Delray Beach" "FL, Delray Beach census-designated city" +in.city "FL, Deltona" "FL, Deltona census-designated city" +in.city "FL, Doral" "FL, Doral census-designated city" +in.city "FL, Dunedin" "FL, Dunedin census-designated city" +in.city "FL, East Lake" "FL, East Lake census-designated city" +in.city "FL, Estero" "FL, Estero census-designated city" +in.city "FL, Fort Lauderdale" "FL, Fort Lauderdale census-designated city" +in.city "FL, Fort Myers" "FL, Fort Myers census-designated city" +in.city "FL, Fort Pierce" "FL, Fort Pierce census-designated city" +in.city "FL, Fountainebleau" "FL, Fountainebleau census-designated city" +in.city "FL, Four Corners" "FL, Four Corners census-designated city" +in.city "FL, Gainesville" "FL, Gainesville census-designated city" +in.city "FL, Greenacres" "FL, Greenacres census-designated city" +in.city "FL, Hallandale Beach" "FL, Hallandale Beach census-designated city" +in.city "FL, Hialeah" "FL, Hialeah census-designated city" +in.city "FL, Hollywood" "FL, Hollywood census-designated city" +in.city "FL, Homestead" "FL, Homestead census-designated city" +in.city "FL, Jacksonville" "FL, Jacksonville census-designated city" +in.city "FL, Jupiter" "FL, Jupiter census-designated city" +in.city "FL, Kendale Lakes" "FL, Kendale Lakes census-designated city" +in.city "FL, Kendall" "FL, Kendall census-designated city" +in.city "FL, Kissimmee" "FL, Kissimmee census-designated city" +in.city "FL, Lake Worth" "FL, Lake Worth census-designated city" +in.city "FL, Lakeland" "FL, Lakeland census-designated city" +in.city "FL, Largo" "FL, Largo census-designated city" +in.city "FL, Lauderhill" "FL, Lauderhill census-designated city" +in.city "FL, Lehigh Acres" "FL, Lehigh Acres census-designated city" +in.city "FL, Marco Island" "FL, Marco Island census-designated city" +in.city "FL, Margate" "FL, Margate census-designated city" +in.city "FL, Melbourne" "FL, Melbourne census-designated city" +in.city "FL, Merritt Island" "FL, Merritt Island census-designated city" +in.city "FL, Miami" "FL, Miami census-designated city" +in.city "FL, Miami Beach" "FL, Miami Beach census-designated city" +in.city "FL, Miami Gardens" "FL, Miami Gardens census-designated city" +in.city "FL, Miramar" "FL, Miramar census-designated city" +in.city "FL, Naples" "FL, Naples census-designated city" +in.city "FL, New Smyrna Beach" "FL, New Smyrna Beach census-designated city" +in.city "FL, North Fort Myers" "FL, North Fort Myers census-designated city" +in.city "FL, North Miami" "FL, North Miami census-designated city" +in.city "FL, North Miami Beach" "FL, North Miami Beach census-designated city" +in.city "FL, North Port" "FL, North Port census-designated city" +in.city "FL, Oakland Park" "FL, Oakland Park census-designated city" +in.city "FL, Ocala" "FL, Ocala census-designated city" +in.city "FL, Orlando" "FL, Orlando census-designated city" +in.city "FL, Ormond Beach" "FL, Ormond Beach census-designated city" +in.city "FL, Palm Bay" "FL, Palm Bay census-designated city" +in.city "FL, Palm Beach Gardens" "FL, Palm Beach Gardens census-designated city" +in.city "FL, Palm Coast" "FL, Palm Coast census-designated city" +in.city "FL, Palm Harbor" "FL, Palm Harbor census-designated city" +in.city "FL, Panama City" "FL, Panama City census-designated city" +in.city "FL, Panama City Beach" "FL, Panama City Beach census-designated city" +in.city "FL, Pembroke Pines" "FL, Pembroke Pines census-designated city" +in.city "FL, Pensacola" "FL, Pensacola census-designated city" +in.city "FL, Pine Hills" "FL, Pine Hills census-designated city" +in.city "FL, Pinellas Park" "FL, Pinellas Park census-designated city" +in.city "FL, Plantation" "FL, Plantation census-designated city" +in.city "FL, Poinciana" "FL, Poinciana census-designated city" +in.city "FL, Pompano Beach" "FL, Pompano Beach census-designated city" +in.city "FL, Port Charlotte" "FL, Port Charlotte census-designated city" +in.city "FL, Port Orange" "FL, Port Orange census-designated city" +in.city "FL, Port St Lucie" "FL, Port St Lucie census-designated city" +in.city "FL, Riverview" "FL, Riverview census-designated city" +in.city "FL, Riviera Beach" "FL, Riviera Beach census-designated city" +in.city "FL, Sanford" "FL, Sanford census-designated city" +in.city "FL, Sarasota" "FL, Sarasota census-designated city" +in.city "FL, Spring Hill" "FL, Spring Hill census-designated city" +in.city "FL, St Cloud" "FL, St Cloud census-designated city" +in.city "FL, St Petersburg" "FL, St Petersburg census-designated city" +in.city "FL, Sun City Center" "FL, Sun City Center census-designated city" +in.city "FL, Sunny Isles Beach" "FL, Sunny Isles Beach census-designated city" +in.city "FL, Sunrise" "FL, Sunrise census-designated city" +in.city "FL, Tallahassee" "FL, Tallahassee census-designated city" +in.city "FL, Tamarac" "FL, Tamarac census-designated city" +in.city "FL, Tamiami" "FL, Tamiami census-designated city" +in.city "FL, Tampa" "FL, Tampa census-designated city" +in.city "FL, The Hammocks" "FL, The Hammocks census-designated city" +in.city "FL, The Villages" "FL, The Villages census-designated city" +in.city "FL, Titusville" "FL, Titusville census-designated city" +in.city "FL, Town N Country" "FL, Town N Country census-designated city" +in.city "FL, University" "FL, University census-designated city" +in.city "FL, Venice" "FL, Venice census-designated city" +in.city "FL, Wellington" "FL, Wellington census-designated city" +in.city "FL, Wesley Chapel" "FL, Wesley Chapel census-designated city" +in.city "FL, West Palm Beach" "FL, West Palm Beach census-designated city" +in.city "FL, Weston" "FL, Weston census-designated city" +in.city "FL, Winter Haven" "FL, Winter Haven census-designated city" +in.city "GA, Albany" "GA, Albany census-designated city" +in.city "GA, Alpharetta" "GA, Alpharetta census-designated city" +in.city "GA, Athens-Clarke County Unified Government Balance" "GA, Athens-Clarke County Unified Government Balance census-designated city" +in.city "GA, Atlanta" "GA, Atlanta census-designated city" +in.city "GA, Augusta-Richmond County Consolidated Government Balance" "GA, Augusta-Richmond County Consolidated Government Balance census-designated city" +in.city "GA, Columbus" "GA, Columbus census-designated city" +in.city "GA, Dunwoody" "GA, Dunwoody census-designated city" +in.city "GA, East Point" "GA, East Point census-designated city" +in.city "GA, Hinesville" "GA, Hinesville census-designated city" +in.city "GA, Johns Creek" "GA, Johns Creek census-designated city" +in.city "GA, Mableton" "GA, Mableton census-designated city" +in.city "GA, Macon" "GA, Macon census-designated city" +in.city "GA, Marietta" "GA, Marietta census-designated city" +in.city "GA, Newnan" "GA, Newnan census-designated city" +in.city "GA, North Atlanta" "GA, North Atlanta census-designated city" +in.city "GA, Rome" "GA, Rome census-designated city" +in.city "GA, Roswell" "GA, Roswell census-designated city" +in.city "GA, Sandy Springs" "GA, Sandy Springs census-designated city" +in.city "GA, Savannah" "GA, Savannah census-designated city" +in.city "GA, Smyrna" "GA, Smyrna census-designated city" +in.city "GA, Valdosta" "GA, Valdosta census-designated city" +in.city "GA, Warner Robins" "GA, Warner Robins census-designated city" +in.city "HI, East Honolulu" "HI, East Honolulu census-designated city" +in.city "HI, Hilo" "HI, Hilo census-designated city" +in.city "HI, Kailua" "HI, Kailua census-designated city" +in.city "HI, Urban Honolulu" "HI, Urban Honolulu census-designated city" +in.city "IA, Ames" "IA, Ames census-designated city" +in.city "IA, Ankeny" "IA, Ankeny census-designated city" +in.city "IA, Cedar Falls" "IA, Cedar Falls census-designated city" +in.city "IA, Cedar Rapids" "IA, Cedar Rapids census-designated city" +in.city "IA, Council Bluffs" "IA, Council Bluffs census-designated city" +in.city "IA, Davenport" "IA, Davenport census-designated city" +in.city "IA, Des Moines" "IA, Des Moines census-designated city" +in.city "IA, Dubuque" "IA, Dubuque census-designated city" +in.city "IA, Iowa City" "IA, Iowa City census-designated city" +in.city "IA, Marion" "IA, Marion census-designated city" +in.city "IA, Sioux City" "IA, Sioux City census-designated city" +in.city "IA, Urbandale" "IA, Urbandale census-designated city" +in.city "IA, Waterloo" "IA, Waterloo census-designated city" +in.city "IA, West Des Moines" "IA, West Des Moines census-designated city" +in.city "ID, Boise City" "ID, Boise City census-designated city" +in.city "ID, Caldwell" "ID, Caldwell census-designated city" +in.city "ID, Coeur Dalene" "ID, Coeur Dalene census-designated city" +in.city "ID, Idaho Falls" "ID, Idaho Falls census-designated city" +in.city "ID, Meridian" "ID, Meridian census-designated city" +in.city "ID, Nampa" "ID, Nampa census-designated city" +in.city "ID, Pocatello" "ID, Pocatello census-designated city" +in.city "ID, Twin Falls" "ID, Twin Falls census-designated city" +in.city "IL, Arlington Heights" "IL, Arlington Heights census-designated city" +in.city "IL, Aurora" "IL, Aurora census-designated city" +in.city "IL, Belleville" "IL, Belleville census-designated city" +in.city "IL, Berwyn" "IL, Berwyn census-designated city" +in.city "IL, Bloomington" "IL, Bloomington census-designated city" +in.city "IL, Bolingbrook" "IL, Bolingbrook census-designated city" +in.city "IL, Buffalo Grove" "IL, Buffalo Grove census-designated city" +in.city "IL, Calumet City" "IL, Calumet City census-designated city" +in.city "IL, Carol Stream" "IL, Carol Stream census-designated city" +in.city "IL, Champaign" "IL, Champaign census-designated city" +in.city "IL, Chicago" "IL, Chicago census-designated city" +in.city "IL, Cicero" "IL, Cicero census-designated city" +in.city "IL, Crystal Lake" "IL, Crystal Lake census-designated city" +in.city "IL, Decatur" "IL, Decatur census-designated city" +in.city "IL, Dekalb" "IL, Dekalb census-designated city" +in.city "IL, Des Plaines" "IL, Des Plaines census-designated city" +in.city "IL, Downers Grove" "IL, Downers Grove census-designated city" +in.city "IL, Elgin" "IL, Elgin census-designated city" +in.city "IL, Elmhurst" "IL, Elmhurst census-designated city" +in.city "IL, Evanston" "IL, Evanston census-designated city" +in.city "IL, Glenview" "IL, Glenview census-designated city" +in.city "IL, Hoffman Estates" "IL, Hoffman Estates census-designated city" +in.city "IL, Joliet" "IL, Joliet census-designated city" +in.city "IL, Lombard" "IL, Lombard census-designated city" +in.city "IL, Moline" "IL, Moline census-designated city" +in.city "IL, Mount Prospect" "IL, Mount Prospect census-designated city" +in.city "IL, Naperville" "IL, Naperville census-designated city" +in.city "IL, Normal" "IL, Normal census-designated city" +in.city "IL, Oak Lawn" "IL, Oak Lawn census-designated city" +in.city "IL, Oak Park" "IL, Oak Park census-designated city" +in.city "IL, Orland Park" "IL, Orland Park census-designated city" +in.city "IL, Palatine" "IL, Palatine census-designated city" +in.city "IL, Peoria" "IL, Peoria census-designated city" +in.city "IL, Quincy" "IL, Quincy census-designated city" +in.city "IL, Rock Island" "IL, Rock Island census-designated city" +in.city "IL, Rockford" "IL, Rockford census-designated city" +in.city "IL, Schaumburg" "IL, Schaumburg census-designated city" +in.city "IL, Skokie" "IL, Skokie census-designated city" +in.city "IL, Springfield" "IL, Springfield census-designated city" +in.city "IL, Tinley Park" "IL, Tinley Park census-designated city" +in.city "IL, Urbana" "IL, Urbana census-designated city" +in.city "IL, Waukegan" "IL, Waukegan census-designated city" +in.city "IL, Wheaton" "IL, Wheaton census-designated city" +in.city "IL, Wheeling" "IL, Wheeling census-designated city" +in.city "IN, Anderson" "IN, Anderson census-designated city" +in.city "IN, Bloomington" "IN, Bloomington census-designated city" +in.city "IN, Carmel" "IN, Carmel census-designated city" +in.city "IN, Columbus" "IN, Columbus census-designated city" +in.city "IN, Elkhart" "IN, Elkhart census-designated city" +in.city "IN, Evansville" "IN, Evansville census-designated city" +in.city "IN, Fishers" "IN, Fishers census-designated city" +in.city "IN, Fort Wayne" "IN, Fort Wayne census-designated city" +in.city "IN, Gary" "IN, Gary census-designated city" +in.city "IN, Greenwood" "IN, Greenwood census-designated city" +in.city "IN, Hammond" "IN, Hammond census-designated city" +in.city "IN, Indianapolis City Balance" "IN, Indianapolis City Balance census-designated city" +in.city "IN, Jeffersonville" "IN, Jeffersonville census-designated city" +in.city "IN, Kokomo" "IN, Kokomo census-designated city" +in.city "IN, Lafayette" "IN, Lafayette census-designated city" +in.city "IN, Lawrence" "IN, Lawrence census-designated city" +in.city "IN, Mishawaka" "IN, Mishawaka census-designated city" +in.city "IN, Muncie" "IN, Muncie census-designated city" +in.city "IN, New Albany" "IN, New Albany census-designated city" +in.city "IN, Noblesville" "IN, Noblesville census-designated city" +in.city "IN, Portage" "IN, Portage census-designated city" +in.city "IN, Richmond" "IN, Richmond census-designated city" +in.city "IN, South Bend" "IN, South Bend census-designated city" +in.city "IN, Terre Haute" "IN, Terre Haute census-designated city" +in.city In another census Place In another census Place census-designated city +in.city "KS, Hutchinson" "KS, Hutchinson census-designated city" +in.city "KS, Kansas City" "KS, Kansas City census-designated city" +in.city "KS, Lawrence" "KS, Lawrence census-designated city" +in.city "KS, Lenexa" "KS, Lenexa census-designated city" +in.city "KS, Manhattan" "KS, Manhattan census-designated city" +in.city "KS, Olathe" "KS, Olathe census-designated city" +in.city "KS, Overland Park" "KS, Overland Park census-designated city" +in.city "KS, Salina" "KS, Salina census-designated city" +in.city "KS, Shawnee" "KS, Shawnee census-designated city" +in.city "KS, Topeka" "KS, Topeka census-designated city" +in.city "KS, Wichita" "KS, Wichita census-designated city" +in.city "KY, Bowling Green" "KY, Bowling Green census-designated city" +in.city "KY, Covington" "KY, Covington census-designated city" +in.city "KY, Lexington-Fayette" "KY, Lexington-Fayette census-designated city" +in.city "KY, Louisville Jefferson County Metro Government Balance" "KY, Louisville Jefferson County Metro Government Balance census-designated city" +in.city "KY, Owensboro" "KY, Owensboro census-designated city" +in.city "LA, Alexandria" "LA, Alexandria census-designated city" +in.city "LA, Baton Rouge" "LA, Baton Rouge census-designated city" +in.city "LA, Bossier City" "LA, Bossier City census-designated city" +in.city "LA, Kenner" "LA, Kenner census-designated city" +in.city "LA, Lafayette" "LA, Lafayette census-designated city" +in.city "LA, Lake Charles" "LA, Lake Charles census-designated city" +in.city "LA, Metairie" "LA, Metairie census-designated city" +in.city "LA, Monroe" "LA, Monroe census-designated city" +in.city "LA, New Orleans" "LA, New Orleans census-designated city" +in.city "LA, Shreveport" "LA, Shreveport census-designated city" +in.city "MA, Arlington" "MA, Arlington census-designated city" +in.city "MA, Attleboro" "MA, Attleboro census-designated city" +in.city "MA, Barnstable Town" "MA, Barnstable Town census-designated city" +in.city "MA, Beverly" "MA, Beverly census-designated city" +in.city "MA, Boston" "MA, Boston census-designated city" +in.city "MA, Brockton" "MA, Brockton census-designated city" +in.city "MA, Brookline" "MA, Brookline census-designated city" +in.city "MA, Cambridge" "MA, Cambridge census-designated city" +in.city "MA, Chicopee" "MA, Chicopee census-designated city" +in.city "MA, Everett" "MA, Everett census-designated city" +in.city "MA, Fall River" "MA, Fall River census-designated city" +in.city "MA, Fitchburg" "MA, Fitchburg census-designated city" +in.city "MA, Framingham" "MA, Framingham census-designated city" +in.city "MA, Haverhill" "MA, Haverhill census-designated city" +in.city "MA, Holyoke" "MA, Holyoke census-designated city" +in.city "MA, Lawrence" "MA, Lawrence census-designated city" +in.city "MA, Leominster" "MA, Leominster census-designated city" +in.city "MA, Lowell" "MA, Lowell census-designated city" +in.city "MA, Lynn" "MA, Lynn census-designated city" +in.city "MA, Malden" "MA, Malden census-designated city" +in.city "MA, Marlborough" "MA, Marlborough census-designated city" +in.city "MA, Medford" "MA, Medford census-designated city" +in.city "MA, Methuen Town" "MA, Methuen Town census-designated city" +in.city "MA, New Bedford" "MA, New Bedford census-designated city" +in.city "MA, Newton" "MA, Newton census-designated city" +in.city "MA, Peabody" "MA, Peabody census-designated city" +in.city "MA, Pittsfield" "MA, Pittsfield census-designated city" +in.city "MA, Quincy" "MA, Quincy census-designated city" +in.city "MA, Revere" "MA, Revere census-designated city" +in.city "MA, Salem" "MA, Salem census-designated city" +in.city "MA, Somerville" "MA, Somerville census-designated city" +in.city "MA, Springfield" "MA, Springfield census-designated city" +in.city "MA, Taunton" "MA, Taunton census-designated city" +in.city "MA, Waltham" "MA, Waltham census-designated city" +in.city "MA, Watertown Town" "MA, Watertown Town census-designated city" +in.city "MA, Westfield" "MA, Westfield census-designated city" +in.city "MA, Weymouth Town" "MA, Weymouth Town census-designated city" +in.city "MA, Woburn" "MA, Woburn census-designated city" +in.city "MA, Worcester" "MA, Worcester census-designated city" +in.city "MD, Annapolis" "MD, Annapolis census-designated city" +in.city "MD, Aspen Hill" "MD, Aspen Hill census-designated city" +in.city "MD, Baltimore" "MD, Baltimore census-designated city" +in.city "MD, Bel Air South" "MD, Bel Air South census-designated city" +in.city "MD, Bethesda" "MD, Bethesda census-designated city" +in.city "MD, Bowie" "MD, Bowie census-designated city" +in.city "MD, Catonsville" "MD, Catonsville census-designated city" +in.city "MD, Columbia" "MD, Columbia census-designated city" +in.city "MD, Dundalk" "MD, Dundalk census-designated city" +in.city "MD, Ellicott City" "MD, Ellicott City census-designated city" +in.city "MD, Essex" "MD, Essex census-designated city" +in.city "MD, Frederick" "MD, Frederick census-designated city" +in.city "MD, Gaithersburg" "MD, Gaithersburg census-designated city" +in.city "MD, Germantown" "MD, Germantown census-designated city" +in.city "MD, Glen Burnie" "MD, Glen Burnie census-designated city" +in.city "MD, Hagerstown" "MD, Hagerstown census-designated city" +in.city "MD, North Bethesda" "MD, North Bethesda census-designated city" +in.city "MD, Ocean City" "MD, Ocean City census-designated city" +in.city "MD, Odenton" "MD, Odenton census-designated city" +in.city "MD, Potomac" "MD, Potomac census-designated city" +in.city "MD, Rockville" "MD, Rockville census-designated city" +in.city "MD, Severn" "MD, Severn census-designated city" +in.city "MD, Silver Spring" "MD, Silver Spring census-designated city" +in.city "MD, Towson" "MD, Towson census-designated city" +in.city "MD, Waldorf" "MD, Waldorf census-designated city" +in.city "MD, Wheaton" "MD, Wheaton census-designated city" +in.city "MD, Woodlawn" "MD, Woodlawn census-designated city" +in.city "ME, Bangor" "ME, Bangor census-designated city" +in.city "ME, Lewiston" "ME, Lewiston census-designated city" +in.city "ME, Portland" "ME, Portland census-designated city" +in.city "MI, Ann Arbor" "MI, Ann Arbor census-designated city" +in.city "MI, Battle Creek" "MI, Battle Creek census-designated city" +in.city "MI, Bay City" "MI, Bay City census-designated city" +in.city "MI, Dearborn" "MI, Dearborn census-designated city" +in.city "MI, Dearborn Heights" "MI, Dearborn Heights census-designated city" +in.city "MI, Detroit" "MI, Detroit census-designated city" +in.city "MI, Farmington Hills" "MI, Farmington Hills census-designated city" +in.city "MI, Flint" "MI, Flint census-designated city" +in.city "MI, Grand Rapids" "MI, Grand Rapids census-designated city" +in.city "MI, Jackson" "MI, Jackson census-designated city" +in.city "MI, Kalamazoo" "MI, Kalamazoo census-designated city" +in.city "MI, Kentwood" "MI, Kentwood census-designated city" +in.city "MI, Lansing" "MI, Lansing census-designated city" +in.city "MI, Lincoln Park" "MI, Lincoln Park census-designated city" +in.city "MI, Livonia" "MI, Livonia census-designated city" +in.city "MI, Midland" "MI, Midland census-designated city" +in.city "MI, Muskegon" "MI, Muskegon census-designated city" +in.city "MI, Novi" "MI, Novi census-designated city" +in.city "MI, Pontiac" "MI, Pontiac census-designated city" +in.city "MI, Portage" "MI, Portage census-designated city" +in.city "MI, Rochester Hills" "MI, Rochester Hills census-designated city" +in.city "MI, Roseville" "MI, Roseville census-designated city" +in.city "MI, Royal Oak" "MI, Royal Oak census-designated city" +in.city "MI, Saginaw" "MI, Saginaw census-designated city" +in.city "MI, Southfield" "MI, Southfield census-designated city" +in.city "MI, St Clair Shores" "MI, St Clair Shores census-designated city" +in.city "MI, Sterling Heights" "MI, Sterling Heights census-designated city" +in.city "MI, Taylor" "MI, Taylor census-designated city" +in.city "MI, Troy" "MI, Troy census-designated city" +in.city "MI, Warren" "MI, Warren census-designated city" +in.city "MI, Westland" "MI, Westland census-designated city" +in.city "MI, Wyoming" "MI, Wyoming census-designated city" +in.city "MN, Apple Valley" "MN, Apple Valley census-designated city" +in.city "MN, Blaine" "MN, Blaine census-designated city" +in.city "MN, Bloomington" "MN, Bloomington census-designated city" +in.city "MN, Brooklyn Park" "MN, Brooklyn Park census-designated city" +in.city "MN, Burnsville" "MN, Burnsville census-designated city" +in.city "MN, Coon Rapids" "MN, Coon Rapids census-designated city" +in.city "MN, Duluth" "MN, Duluth census-designated city" +in.city "MN, Eagan" "MN, Eagan census-designated city" +in.city "MN, Eden Prairie" "MN, Eden Prairie census-designated city" +in.city "MN, Edina" "MN, Edina census-designated city" +in.city "MN, Lakeville" "MN, Lakeville census-designated city" +in.city "MN, Mankato" "MN, Mankato census-designated city" +in.city "MN, Maple Grove" "MN, Maple Grove census-designated city" +in.city "MN, Maplewood" "MN, Maplewood census-designated city" +in.city "MN, Minneapolis" "MN, Minneapolis census-designated city" +in.city "MN, Minnetonka" "MN, Minnetonka census-designated city" +in.city "MN, Moorhead" "MN, Moorhead census-designated city" +in.city "MN, Plymouth" "MN, Plymouth census-designated city" +in.city "MN, Richfield" "MN, Richfield census-designated city" +in.city "MN, Rochester" "MN, Rochester census-designated city" +in.city "MN, Roseville" "MN, Roseville census-designated city" +in.city "MN, St Cloud" "MN, St Cloud census-designated city" +in.city "MN, St Louis Park" "MN, St Louis Park census-designated city" +in.city "MN, St Paul" "MN, St Paul census-designated city" +in.city "MN, Woodbury" "MN, Woodbury census-designated city" +in.city "MO, Blue Springs" "MO, Blue Springs census-designated city" +in.city "MO, Cape Girardeau" "MO, Cape Girardeau census-designated city" +in.city "MO, Chesterfield" "MO, Chesterfield census-designated city" +in.city "MO, Columbia" "MO, Columbia census-designated city" +in.city "MO, Florissant" "MO, Florissant census-designated city" +in.city "MO, Independence" "MO, Independence census-designated city" +in.city "MO, Jefferson City" "MO, Jefferson City census-designated city" +in.city "MO, Joplin" "MO, Joplin census-designated city" +in.city "MO, Kansas City" "MO, Kansas City census-designated city" +in.city "MO, Lees Summit" "MO, Lees Summit census-designated city" +in.city "MO, Ofallon" "MO, Ofallon census-designated city" +in.city "MO, Springfield" "MO, Springfield census-designated city" +in.city "MO, St Charles" "MO, St Charles census-designated city" +in.city "MO, St Joseph" "MO, St Joseph census-designated city" +in.city "MO, St Louis" "MO, St Louis census-designated city" +in.city "MO, St Peters" "MO, St Peters census-designated city" +in.city "MO, University City" "MO, University City census-designated city" +in.city "MS, Biloxi" "MS, Biloxi census-designated city" +in.city "MS, Gulfport" "MS, Gulfport census-designated city" +in.city "MS, Hattiesburg" "MS, Hattiesburg census-designated city" +in.city "MS, Jackson" "MS, Jackson census-designated city" +in.city "MS, Meridian" "MS, Meridian census-designated city" +in.city "MS, Southaven" "MS, Southaven census-designated city" +in.city "MS, Tupelo" "MS, Tupelo census-designated city" +in.city "MT, Billings" "MT, Billings census-designated city" +in.city "MT, Bozeman" "MT, Bozeman census-designated city" +in.city "MT, Butte-Silver Bow Balance" "MT, Butte-Silver Bow Balance census-designated city" +in.city "MT, Great Falls" "MT, Great Falls census-designated city" +in.city "MT, Missoula" "MT, Missoula census-designated city" +in.city "NC, Asheville" "NC, Asheville census-designated city" +in.city "NC, Burlington" "NC, Burlington census-designated city" +in.city "NC, Cary" "NC, Cary census-designated city" +in.city "NC, Chapel Hill" "NC, Chapel Hill census-designated city" +in.city "NC, Charlotte" "NC, Charlotte census-designated city" +in.city "NC, Concord" "NC, Concord census-designated city" +in.city "NC, Durham" "NC, Durham census-designated city" +in.city "NC, Fayetteville" "NC, Fayetteville census-designated city" +in.city "NC, Gastonia" "NC, Gastonia census-designated city" +in.city "NC, Goldsboro" "NC, Goldsboro census-designated city" +in.city "NC, Greensboro" "NC, Greensboro census-designated city" +in.city "NC, Greenville" "NC, Greenville census-designated city" +in.city "NC, Hickory" "NC, Hickory census-designated city" +in.city "NC, High Point" "NC, High Point census-designated city" +in.city "NC, Huntersville" "NC, Huntersville census-designated city" +in.city "NC, Jacksonville" "NC, Jacksonville census-designated city" +in.city "NC, Kannapolis" "NC, Kannapolis census-designated city" +in.city "NC, Raleigh" "NC, Raleigh census-designated city" +in.city "NC, Rocky Mount" "NC, Rocky Mount census-designated city" +in.city "NC, Wilmington" "NC, Wilmington census-designated city" +in.city "NC, Wilson" "NC, Wilson census-designated city" +in.city "NC, Winston-Salem" "NC, Winston-Salem census-designated city" +in.city "ND, Bismarck" "ND, Bismarck census-designated city" +in.city "ND, Fargo" "ND, Fargo census-designated city" +in.city "ND, Grand Forks" "ND, Grand Forks census-designated city" +in.city "ND, Minot" "ND, Minot census-designated city" +in.city "NE, Bellevue" "NE, Bellevue census-designated city" +in.city "NE, Grand Island" "NE, Grand Island census-designated city" +in.city "NE, Lincoln" "NE, Lincoln census-designated city" +in.city "NE, Omaha" "NE, Omaha census-designated city" +in.city "NH, Concord" "NH, Concord census-designated city" +in.city "NH, Manchester" "NH, Manchester census-designated city" +in.city "NH, Nashua" "NH, Nashua census-designated city" +in.city "NJ, Atlantic City" "NJ, Atlantic City census-designated city" +in.city "NJ, Bayonne" "NJ, Bayonne census-designated city" +in.city "NJ, Camden" "NJ, Camden census-designated city" +in.city "NJ, Clifton" "NJ, Clifton census-designated city" +in.city "NJ, East Orange" "NJ, East Orange census-designated city" +in.city "NJ, Elizabeth" "NJ, Elizabeth census-designated city" +in.city "NJ, Fort Lee" "NJ, Fort Lee census-designated city" +in.city "NJ, Hackensack" "NJ, Hackensack census-designated city" +in.city "NJ, Hoboken" "NJ, Hoboken census-designated city" +in.city "NJ, Jersey City" "NJ, Jersey City census-designated city" +in.city "NJ, Linden" "NJ, Linden census-designated city" +in.city "NJ, New Brunswick" "NJ, New Brunswick census-designated city" +in.city "NJ, Newark" "NJ, Newark census-designated city" +in.city "NJ, Ocean City" "NJ, Ocean City census-designated city" +in.city "NJ, Passaic" "NJ, Passaic census-designated city" +in.city "NJ, Paterson" "NJ, Paterson census-designated city" +in.city "NJ, Perth Amboy" "NJ, Perth Amboy census-designated city" +in.city "NJ, Plainfield" "NJ, Plainfield census-designated city" +in.city "NJ, Sayreville" "NJ, Sayreville census-designated city" +in.city "NJ, Toms River" "NJ, Toms River census-designated city" +in.city "NJ, Trenton" "NJ, Trenton census-designated city" +in.city "NJ, Union City" "NJ, Union City census-designated city" +in.city "NJ, Vineland" "NJ, Vineland census-designated city" +in.city "NJ, West New York" "NJ, West New York census-designated city" +in.city "NM, Albuquerque" "NM, Albuquerque census-designated city" +in.city "NM, Clovis" "NM, Clovis census-designated city" +in.city "NM, Farmington" "NM, Farmington census-designated city" +in.city "NM, Las Cruces" "NM, Las Cruces census-designated city" +in.city "NM, Rio Rancho" "NM, Rio Rancho census-designated city" +in.city "NM, Roswell" "NM, Roswell census-designated city" +in.city "NM, Santa Fe" "NM, Santa Fe census-designated city" +in.city "NM, South Valley" "NM, South Valley census-designated city" +in.city "NV, Carson City" "NV, Carson City census-designated city" +in.city "NV, Enterprise" "NV, Enterprise census-designated city" +in.city "NV, Henderson" "NV, Henderson census-designated city" +in.city "NV, Las Vegas" "NV, Las Vegas census-designated city" +in.city "NV, North Las Vegas" "NV, North Las Vegas census-designated city" +in.city "NV, Pahrump" "NV, Pahrump census-designated city" +in.city "NV, Paradise" "NV, Paradise census-designated city" +in.city "NV, Reno" "NV, Reno census-designated city" +in.city "NV, Sparks" "NV, Sparks census-designated city" +in.city "NV, Spring Valley" "NV, Spring Valley census-designated city" +in.city "NV, Sunrise Manor" "NV, Sunrise Manor census-designated city" +in.city "NV, Whitney" "NV, Whitney census-designated city" +in.city "NY, Albany" "NY, Albany census-designated city" +in.city "NY, Binghamton" "NY, Binghamton census-designated city" +in.city "NY, Brighton" "NY, Brighton census-designated city" +in.city "NY, Buffalo" "NY, Buffalo census-designated city" +in.city "NY, Cheektowaga" "NY, Cheektowaga census-designated city" +in.city "NY, Coram" "NY, Coram census-designated city" +in.city "NY, Hempstead" "NY, Hempstead census-designated city" +in.city "NY, Irondequoit" "NY, Irondequoit census-designated city" +in.city "NY, Levittown" "NY, Levittown census-designated city" +in.city "NY, Long Beach" "NY, Long Beach census-designated city" +in.city "NY, Mount Vernon" "NY, Mount Vernon census-designated city" +in.city "NY, New Rochelle" "NY, New Rochelle census-designated city" +in.city "NY, New York" "NY, New York census-designated city" +in.city "NY, Niagara Falls" "NY, Niagara Falls census-designated city" +in.city "NY, Rochester" "NY, Rochester census-designated city" +in.city "NY, Rome" "NY, Rome census-designated city" +in.city "NY, Schenectady" "NY, Schenectady census-designated city" +in.city "NY, Syracuse" "NY, Syracuse census-designated city" +in.city "NY, Tonawanda" "NY, Tonawanda census-designated city" +in.city "NY, Troy" "NY, Troy census-designated city" +in.city "NY, Utica" "NY, Utica census-designated city" +in.city "NY, West Seneca" "NY, West Seneca census-designated city" +in.city "NY, White Plains" "NY, White Plains census-designated city" +in.city "NY, Yonkers" "NY, Yonkers census-designated city" +in.city Not in a census Place Not in a census Place census-designated city +in.city "OH, Akron" "OH, Akron census-designated city" +in.city "OH, Beavercreek" "OH, Beavercreek census-designated city" +in.city "OH, Boardman" "OH, Boardman census-designated city" +in.city "OH, Canton" "OH, Canton census-designated city" +in.city "OH, Cincinnati" "OH, Cincinnati census-designated city" +in.city "OH, Cleveland" "OH, Cleveland census-designated city" +in.city "OH, Cleveland Heights" "OH, Cleveland Heights census-designated city" +in.city "OH, Columbus" "OH, Columbus census-designated city" +in.city "OH, Cuyahoga Falls" "OH, Cuyahoga Falls census-designated city" +in.city "OH, Dayton" "OH, Dayton census-designated city" +in.city "OH, Delaware" "OH, Delaware census-designated city" +in.city "OH, Dublin" "OH, Dublin census-designated city" +in.city "OH, Elyria" "OH, Elyria census-designated city" +in.city "OH, Euclid" "OH, Euclid census-designated city" +in.city "OH, Fairborn" "OH, Fairborn census-designated city" +in.city "OH, Fairfield" "OH, Fairfield census-designated city" +in.city "OH, Findlay" "OH, Findlay census-designated city" +in.city "OH, Grove City" "OH, Grove City census-designated city" +in.city "OH, Hamilton" "OH, Hamilton census-designated city" +in.city "OH, Huber Heights" "OH, Huber Heights census-designated city" +in.city "OH, Kettering" "OH, Kettering census-designated city" +in.city "OH, Lakewood" "OH, Lakewood census-designated city" +in.city "OH, Lancaster" "OH, Lancaster census-designated city" +in.city "OH, Lima" "OH, Lima census-designated city" +in.city "OH, Lorain" "OH, Lorain census-designated city" +in.city "OH, Mansfield" "OH, Mansfield census-designated city" +in.city "OH, Marion" "OH, Marion census-designated city" +in.city "OH, Mentor" "OH, Mentor census-designated city" +in.city "OH, Middletown" "OH, Middletown census-designated city" +in.city "OH, Newark" "OH, Newark census-designated city" +in.city "OH, Parma" "OH, Parma census-designated city" +in.city "OH, Springfield" "OH, Springfield census-designated city" +in.city "OH, Stow" "OH, Stow census-designated city" +in.city "OH, Strongsville" "OH, Strongsville census-designated city" +in.city "OH, Toledo" "OH, Toledo census-designated city" +in.city "OH, Warren" "OH, Warren census-designated city" +in.city "OH, Youngstown" "OH, Youngstown census-designated city" +in.city "OK, Bartlesville" "OK, Bartlesville census-designated city" +in.city "OK, Broken Arrow" "OK, Broken Arrow census-designated city" +in.city "OK, Edmond" "OK, Edmond census-designated city" +in.city "OK, Enid" "OK, Enid census-designated city" +in.city "OK, Lawton" "OK, Lawton census-designated city" +in.city "OK, Midwest City" "OK, Midwest City census-designated city" +in.city "OK, Moore" "OK, Moore census-designated city" +in.city "OK, Muskogee" "OK, Muskogee census-designated city" +in.city "OK, Norman" "OK, Norman census-designated city" +in.city "OK, Oklahoma City" "OK, Oklahoma City census-designated city" +in.city "OK, Stillwater" "OK, Stillwater census-designated city" +in.city "OK, Tulsa" "OK, Tulsa census-designated city" +in.city "OR, Albany" "OR, Albany census-designated city" +in.city "OR, Aloha" "OR, Aloha census-designated city" +in.city "OR, Beaverton" "OR, Beaverton census-designated city" +in.city "OR, Bend" "OR, Bend census-designated city" +in.city "OR, Corvallis" "OR, Corvallis census-designated city" +in.city "OR, Eugene" "OR, Eugene census-designated city" +in.city "OR, Grants Pass" "OR, Grants Pass census-designated city" +in.city "OR, Gresham" "OR, Gresham census-designated city" +in.city "OR, Hillsboro" "OR, Hillsboro census-designated city" +in.city "OR, Lake Oswego" "OR, Lake Oswego census-designated city" +in.city "OR, Medford" "OR, Medford census-designated city" +in.city "OR, Portland" "OR, Portland census-designated city" +in.city "OR, Salem" "OR, Salem census-designated city" +in.city "OR, Springfield" "OR, Springfield census-designated city" +in.city "OR, Tigard" "OR, Tigard census-designated city" +in.city "PA, Allentown" "PA, Allentown census-designated city" +in.city "PA, Altoona" "PA, Altoona census-designated city" +in.city "PA, Bethlehem" "PA, Bethlehem census-designated city" +in.city "PA, Erie" "PA, Erie census-designated city" +in.city "PA, Harrisburg" "PA, Harrisburg census-designated city" +in.city "PA, Lancaster" "PA, Lancaster census-designated city" +in.city "PA, Levittown" "PA, Levittown census-designated city" +in.city "PA, Philadelphia" "PA, Philadelphia census-designated city" +in.city "PA, Pittsburgh" "PA, Pittsburgh census-designated city" +in.city "PA, Reading" "PA, Reading census-designated city" +in.city "PA, Scranton" "PA, Scranton census-designated city" +in.city "PA, Wilkes-Barre" "PA, Wilkes-Barre census-designated city" +in.city "PA, York" "PA, York census-designated city" +in.city "RI, Cranston" "RI, Cranston census-designated city" +in.city "RI, East Providence" "RI, East Providence census-designated city" +in.city "RI, Pawtucket" "RI, Pawtucket census-designated city" +in.city "RI, Providence" "RI, Providence census-designated city" +in.city "RI, Warwick" "RI, Warwick census-designated city" +in.city "RI, Woonsocket" "RI, Woonsocket census-designated city" +in.city "SC, Charleston" "SC, Charleston census-designated city" +in.city "SC, Columbia" "SC, Columbia census-designated city" +in.city "SC, Florence" "SC, Florence census-designated city" +in.city "SC, Goose Creek" "SC, Goose Creek census-designated city" +in.city "SC, Greenville" "SC, Greenville census-designated city" +in.city "SC, Hilton Head Island" "SC, Hilton Head Island census-designated city" +in.city "SC, Mount Pleasant" "SC, Mount Pleasant census-designated city" +in.city "SC, Myrtle Beach" "SC, Myrtle Beach census-designated city" +in.city "SC, North Charleston" "SC, North Charleston census-designated city" +in.city "SC, North Myrtle Beach" "SC, North Myrtle Beach census-designated city" +in.city "SC, Rock Hill" "SC, Rock Hill census-designated city" +in.city "SC, Spartanburg" "SC, Spartanburg census-designated city" +in.city "SC, Summerville" "SC, Summerville census-designated city" +in.city "SC, Sumter" "SC, Sumter census-designated city" +in.city "SD, Rapid City" "SD, Rapid City census-designated city" +in.city "SD, Sioux Falls" "SD, Sioux Falls census-designated city" +in.city "TN, Bartlett" "TN, Bartlett census-designated city" +in.city "TN, Chattanooga" "TN, Chattanooga census-designated city" +in.city "TN, Clarksville" "TN, Clarksville census-designated city" +in.city "TN, Cleveland" "TN, Cleveland census-designated city" +in.city "TN, Collierville" "TN, Collierville census-designated city" +in.city "TN, Columbia" "TN, Columbia census-designated city" +in.city "TN, Franklin" "TN, Franklin census-designated city" +in.city "TN, Germantown" "TN, Germantown census-designated city" +in.city "TN, Hendersonville" "TN, Hendersonville census-designated city" +in.city "TN, Jackson" "TN, Jackson census-designated city" +in.city "TN, Johnson City" "TN, Johnson City census-designated city" +in.city "TN, Kingsport" "TN, Kingsport census-designated city" +in.city "TN, Knoxville" "TN, Knoxville census-designated city" +in.city "TN, Memphis" "TN, Memphis census-designated city" +in.city "TN, Murfreesboro" "TN, Murfreesboro census-designated city" +in.city "TN, Nashville-Davidson Metropolitan Government Balance" "TN, Nashville-Davidson Metropolitan Government Balance census-designated city" +in.city "TN, Smyrna" "TN, Smyrna census-designated city" +in.city "TX, Abilene" "TX, Abilene census-designated city" +in.city "TX, Allen" "TX, Allen census-designated city" +in.city "TX, Amarillo" "TX, Amarillo census-designated city" +in.city "TX, Arlington" "TX, Arlington census-designated city" +in.city "TX, Atascocita" "TX, Atascocita census-designated city" +in.city "TX, Austin" "TX, Austin census-designated city" +in.city "TX, Baytown" "TX, Baytown census-designated city" +in.city "TX, Beaumont" "TX, Beaumont census-designated city" +in.city "TX, Bedford" "TX, Bedford census-designated city" +in.city "TX, Brownsville" "TX, Brownsville census-designated city" +in.city "TX, Bryan" "TX, Bryan census-designated city" +in.city "TX, Burleson" "TX, Burleson census-designated city" +in.city "TX, Carrollton" "TX, Carrollton census-designated city" +in.city "TX, Cedar Hill" "TX, Cedar Hill census-designated city" +in.city "TX, Cedar Park" "TX, Cedar Park census-designated city" +in.city "TX, College Station" "TX, College Station census-designated city" +in.city "TX, Conroe" "TX, Conroe census-designated city" +in.city "TX, Coppell" "TX, Coppell census-designated city" +in.city "TX, Corpus Christi" "TX, Corpus Christi census-designated city" +in.city "TX, Dallas" "TX, Dallas census-designated city" +in.city "TX, Denton" "TX, Denton census-designated city" +in.city "TX, Desoto" "TX, Desoto census-designated city" +in.city "TX, Edinburg" "TX, Edinburg census-designated city" +in.city "TX, El Paso" "TX, El Paso census-designated city" +in.city "TX, Euless" "TX, Euless census-designated city" +in.city "TX, Flower Mound" "TX, Flower Mound census-designated city" +in.city "TX, Fort Worth" "TX, Fort Worth census-designated city" +in.city "TX, Frisco" "TX, Frisco census-designated city" +in.city "TX, Galveston" "TX, Galveston census-designated city" +in.city "TX, Garland" "TX, Garland census-designated city" +in.city "TX, Georgetown" "TX, Georgetown census-designated city" +in.city "TX, Grand Prairie" "TX, Grand Prairie census-designated city" +in.city "TX, Grapevine" "TX, Grapevine census-designated city" +in.city "TX, Haltom City" "TX, Haltom City census-designated city" +in.city "TX, Harlingen" "TX, Harlingen census-designated city" +in.city "TX, Houston" "TX, Houston census-designated city" +in.city "TX, Hurst" "TX, Hurst census-designated city" +in.city "TX, Irving" "TX, Irving census-designated city" +in.city "TX, Keller" "TX, Keller census-designated city" +in.city "TX, Killeen" "TX, Killeen census-designated city" +in.city "TX, Laredo" "TX, Laredo census-designated city" +in.city "TX, League City" "TX, League City census-designated city" +in.city "TX, Lewisville" "TX, Lewisville census-designated city" +in.city "TX, Longview" "TX, Longview census-designated city" +in.city "TX, Lubbock" "TX, Lubbock census-designated city" +in.city "TX, Lufkin" "TX, Lufkin census-designated city" +in.city "TX, Mansfield" "TX, Mansfield census-designated city" +in.city "TX, Mcallen" "TX, Mcallen census-designated city" +in.city "TX, Mckinney" "TX, Mckinney census-designated city" +in.city "TX, Mesquite" "TX, Mesquite census-designated city" +in.city "TX, Midland" "TX, Midland census-designated city" +in.city "TX, Mission" "TX, Mission census-designated city" +in.city "TX, Missouri City" "TX, Missouri City census-designated city" +in.city "TX, New Braunfels" "TX, New Braunfels census-designated city" +in.city "TX, North Richland Hills" "TX, North Richland Hills census-designated city" +in.city "TX, Odessa" "TX, Odessa census-designated city" +in.city "TX, Pasadena" "TX, Pasadena census-designated city" +in.city "TX, Pearland" "TX, Pearland census-designated city" +in.city "TX, Pflugerville" "TX, Pflugerville census-designated city" +in.city "TX, Pharr" "TX, Pharr census-designated city" +in.city "TX, Plano" "TX, Plano census-designated city" +in.city "TX, Port Arthur" "TX, Port Arthur census-designated city" +in.city "TX, Richardson" "TX, Richardson census-designated city" +in.city "TX, Round Rock" "TX, Round Rock census-designated city" +in.city "TX, Rowlett" "TX, Rowlett census-designated city" +in.city "TX, San Angelo" "TX, San Angelo census-designated city" +in.city "TX, San Antonio" "TX, San Antonio census-designated city" +in.city "TX, San Marcos" "TX, San Marcos census-designated city" +in.city "TX, Sherman" "TX, Sherman census-designated city" +in.city "TX, Spring" "TX, Spring census-designated city" +in.city "TX, Sugar Land" "TX, Sugar Land census-designated city" +in.city "TX, Temple" "TX, Temple census-designated city" +in.city "TX, Texarkana" "TX, Texarkana census-designated city" +in.city "TX, Texas City" "TX, Texas City census-designated city" +in.city "TX, The Colony" "TX, The Colony census-designated city" +in.city "TX, The Woodlands" "TX, The Woodlands census-designated city" +in.city "TX, Tyler" "TX, Tyler census-designated city" +in.city "TX, Victoria" "TX, Victoria census-designated city" +in.city "TX, Waco" "TX, Waco census-designated city" +in.city "TX, Wichita Falls" "TX, Wichita Falls census-designated city" +in.city "TX, Wylie" "TX, Wylie census-designated city" +in.city "UT, Layton" "UT, Layton census-designated city" +in.city "UT, Lehi" "UT, Lehi census-designated city" +in.city "UT, Logan" "UT, Logan census-designated city" +in.city "UT, Millcreek" "UT, Millcreek census-designated city" +in.city "UT, Murray" "UT, Murray census-designated city" +in.city "UT, Ogden" "UT, Ogden census-designated city" +in.city "UT, Orem" "UT, Orem census-designated city" +in.city "UT, Provo" "UT, Provo census-designated city" +in.city "UT, Salt Lake City" "UT, Salt Lake City census-designated city" +in.city "UT, Sandy" "UT, Sandy census-designated city" +in.city "UT, South Jordan" "UT, South Jordan census-designated city" +in.city "UT, St George" "UT, St George census-designated city" +in.city "UT, Taylorsville" "UT, Taylorsville census-designated city" +in.city "UT, West Jordan" "UT, West Jordan census-designated city" +in.city "UT, West Valley City" "UT, West Valley City census-designated city" +in.city "VA, Alexandria" "VA, Alexandria census-designated city" +in.city "VA, Arlington" "VA, Arlington census-designated city" +in.city "VA, Ashburn" "VA, Ashburn census-designated city" +in.city "VA, Blacksburg" "VA, Blacksburg census-designated city" +in.city "VA, Centreville" "VA, Centreville census-designated city" +in.city "VA, Charlottesville" "VA, Charlottesville census-designated city" +in.city "VA, Chesapeake" "VA, Chesapeake census-designated city" +in.city "VA, Dale City" "VA, Dale City census-designated city" +in.city "VA, Danville" "VA, Danville census-designated city" +in.city "VA, Hampton" "VA, Hampton census-designated city" +in.city "VA, Harrisonburg" "VA, Harrisonburg census-designated city" +in.city "VA, Lake Ridge" "VA, Lake Ridge census-designated city" +in.city "VA, Leesburg" "VA, Leesburg census-designated city" +in.city "VA, Lynchburg" "VA, Lynchburg census-designated city" +in.city "VA, Mclean" "VA, Mclean census-designated city" +in.city "VA, Mechanicsville" "VA, Mechanicsville census-designated city" +in.city "VA, Newport News" "VA, Newport News census-designated city" +in.city "VA, Norfolk" "VA, Norfolk census-designated city" +in.city "VA, Petersburg" "VA, Petersburg census-designated city" +in.city "VA, Portsmouth" "VA, Portsmouth census-designated city" +in.city "VA, Reston" "VA, Reston census-designated city" +in.city "VA, Richmond" "VA, Richmond census-designated city" +in.city "VA, Roanoke" "VA, Roanoke census-designated city" +in.city "VA, Suffolk" "VA, Suffolk census-designated city" +in.city "VA, Tuckahoe" "VA, Tuckahoe census-designated city" +in.city "VA, Virginia Beach" "VA, Virginia Beach census-designated city" +in.city "VT, Burlington" "VT, Burlington census-designated city" +in.city "WA, Auburn" "WA, Auburn census-designated city" +in.city "WA, Bellevue" "WA, Bellevue census-designated city" +in.city "WA, Bellingham" "WA, Bellingham census-designated city" +in.city "WA, Bremerton" "WA, Bremerton census-designated city" +in.city "WA, Edmonds" "WA, Edmonds census-designated city" +in.city "WA, Everett" "WA, Everett census-designated city" +in.city "WA, Federal Way" "WA, Federal Way census-designated city" +in.city "WA, Kennewick" "WA, Kennewick census-designated city" +in.city "WA, Kent" "WA, Kent census-designated city" +in.city "WA, Kirkland" "WA, Kirkland census-designated city" +in.city "WA, Lacey" "WA, Lacey census-designated city" +in.city "WA, Lakewood" "WA, Lakewood census-designated city" +in.city "WA, Longview" "WA, Longview census-designated city" +in.city "WA, Marysville" "WA, Marysville census-designated city" +in.city "WA, Olympia" "WA, Olympia census-designated city" +in.city "WA, Pasco" "WA, Pasco census-designated city" +in.city "WA, Puyallup" "WA, Puyallup census-designated city" +in.city "WA, Redmond" "WA, Redmond census-designated city" +in.city "WA, Renton" "WA, Renton census-designated city" +in.city "WA, Richland" "WA, Richland census-designated city" +in.city "WA, Sammamish" "WA, Sammamish census-designated city" +in.city "WA, Seattle" "WA, Seattle census-designated city" +in.city "WA, Shoreline" "WA, Shoreline census-designated city" +in.city "WA, South Hill" "WA, South Hill census-designated city" +in.city "WA, Spokane" "WA, Spokane census-designated city" +in.city "WA, Spokane Valley" "WA, Spokane Valley census-designated city" +in.city "WA, Tacoma" "WA, Tacoma census-designated city" +in.city "WA, Vancouver" "WA, Vancouver census-designated city" +in.city "WA, Yakima" "WA, Yakima census-designated city" +in.city "WI, Appleton" "WI, Appleton census-designated city" +in.city "WI, Beloit" "WI, Beloit census-designated city" +in.city "WI, Eau Claire" "WI, Eau Claire census-designated city" +in.city "WI, Fond Du Lac" "WI, Fond Du Lac census-designated city" +in.city "WI, Green Bay" "WI, Green Bay census-designated city" +in.city "WI, Greenfield" "WI, Greenfield census-designated city" +in.city "WI, Janesville" "WI, Janesville census-designated city" +in.city "WI, Kenosha" "WI, Kenosha census-designated city" +in.city "WI, La Crosse" "WI, La Crosse census-designated city" +in.city "WI, Madison" "WI, Madison census-designated city" +in.city "WI, Manitowoc" "WI, Manitowoc census-designated city" +in.city "WI, Menomonee Falls" "WI, Menomonee Falls census-designated city" +in.city "WI, Milwaukee" "WI, Milwaukee census-designated city" +in.city "WI, New Berlin" "WI, New Berlin census-designated city" +in.city "WI, Oshkosh" "WI, Oshkosh census-designated city" +in.city "WI, Racine" "WI, Racine census-designated city" +in.city "WI, Sheboygan" "WI, Sheboygan census-designated city" +in.city "WI, Waukesha" "WI, Waukesha census-designated city" +in.city "WI, Wausau" "WI, Wausau census-designated city" +in.city "WI, Wauwatosa" "WI, Wauwatosa census-designated city" +in.city "WI, West Allis" "WI, West Allis census-designated city" +in.city "WV, Charleston" "WV, Charleston census-designated city" +in.city "WV, Huntington" "WV, Huntington census-designated city" +in.city "WV, Parkersburg" "WV, Parkersburg census-designated city" +in.city "WY, Casper" "WY, Casper census-designated city" +in.city "WY, Cheyenne" "WY, Cheyenne census-designated city" +in.clothes_dryer Electric Standard efficiency electric clothes dryer (2.7 CEF) +in.clothes_dryer Gas Standard efficiency gas clothes dryer (2.39 CEF) +in.clothes_dryer None No clothes dryer +in.clothes_dryer Propane Standard efficiency propane clothes dryer (2.39 CEF) +in.clothes_dryer_usage_level 100% Usage The usage of clothes dryer is at 100% the national average +in.clothes_dryer_usage_level 120% Usage The usage of clothes dryer is at 120% the national average +in.clothes_dryer_usage_level 80% Usage The usage of clothes dryer is at 80% the national average +in.clothes_washer EnergyStar EnergyStar clothes washer (2.07 IMEF) +in.clothes_washer None No clothes washer +in.clothes_washer Standard Standard efficiency clothes washer (0.95 IMEF) +in.clothes_washer_presence None Unit does not have a clothes washer +in.clothes_washer_presence Yes Unit has a clothes washer +in.clothes_washer_usage_level 100% Usage The usage of clothes washer is at 100% the national average +in.clothes_washer_usage_level 120% Usage The usage of clothes washer is at 120% the national average +in.clothes_washer_usage_level 80% Usage The usage of clothes washer is at 80% the national average +in.cooking_range Electric Induction Electric induction cooking range +in.cooking_range Electric Resistance Electric resistance cooking range +in.cooking_range Gas Gas resistance cooking range +in.cooking_range None No cooking range +in.cooking_range Propane Propane resistance cooking range +in.cooking_range_usage_level 100% Usage The usage of cooking range is at 100% the national average +in.cooking_range_usage_level 120% Usage The usage of cooking range is at 120% the national average +in.cooking_range_usage_level 80% Usage The usage of cooking range is at 80% the national average +in.cooling_setpoint 60F Base cooling setpoint is 60F before offset is applied +in.cooling_setpoint 62F Base cooling setpoint is 62F before offset is applied +in.cooling_setpoint 65F Base cooling setpoint is 65F before offset is applied +in.cooling_setpoint 67F Base cooling setpoint is 67F before offset is applied +in.cooling_setpoint 68F Base cooling setpoint is 68F before offset is applied +in.cooling_setpoint 70F Base cooling setpoint is 70F before offset is applied +in.cooling_setpoint 72F Base cooling setpoint is 72F before offset is applied +in.cooling_setpoint 75F Base cooling setpoint is 75F before offset is applied +in.cooling_setpoint 76F Base cooling setpoint is 76F before offset is applied +in.cooling_setpoint 78F Base cooling setpoint is 78F before offset is applied +in.cooling_setpoint 80F Base cooling setpoint is 80F before offset is applied +in.cooling_setpoint_has_offset No Cooling setpoint doesn't have offset +in.cooling_setpoint_has_offset Yes Cooling setpoint has offset +in.cooling_setpoint_offset_magnitude 0F The magnitude of cooling setpoint offset is 0F +in.cooling_setpoint_offset_magnitude 2F The magnitude of cooling setpoint offset is 2F +in.cooling_setpoint_offset_magnitude 5F The magnitude of cooling setpoint offset is 5F +in.cooling_setpoint_offset_magnitude 9F The magnitude of cooling setpoint offset is 9F +in.cooling_setpoint_offset_period Day Setup Cooling setpoint schedule is increased during the day (9am to 5pm) +in.cooling_setpoint_offset_period Day Setup +1h "Cooling setpoint schedule is increased during the day, shifted +1 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup +2h "Cooling setpoint schedule is increased during the day, shifted +2 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup +3h "Cooling setpoint schedule is increased during the day, shifted +3 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup +4h "Cooling setpoint schedule is increased during the day, shifted +4 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup +5h "Cooling setpoint schedule is increased during the day, shifted +5 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup -1h "Cooling setpoint schedule is increased during the day, shifted -1 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup -2h "Cooling setpoint schedule is increased during the day, shifted -2 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup -3h "Cooling setpoint schedule is increased during the day, shifted -3 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup -4h "Cooling setpoint schedule is increased during the day, shifted -4 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup -5h "Cooling setpoint schedule is increased during the day, shifted -5 hour from the Day Setup schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback Cooling setpoint schedule is increased during the day (9am to 5pm) and decreased at night (10pm to 7am) +in.cooling_setpoint_offset_period Day Setup and Night Setback +1h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +1 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback +2h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +2 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback +3h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +3 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback +4h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +4 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback +5h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +5 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback -1h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -1 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback -2h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -2 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback -3h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -3 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback -4h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -4 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day Setup and Night Setback -5h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -5 hour from the Day Setup and Night Setback schedule" +in.cooling_setpoint_offset_period Day and Night Setup Cooling setpoint schedule is increased during the day (9am to 5pm) and at night (10pm to 7am) +in.cooling_setpoint_offset_period Day and Night Setup +1h "Cooling setpoint schedule is increased during the day and at night, shifted +1 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup +2h "Cooling setpoint schedule is increased during the day and at night, shifted +2 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup +3h "Cooling setpoint schedule is increased during the day and at night, shifted +3 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup +4h "Cooling setpoint schedule is increased during the day and at night, shifted +4 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup +5h "Cooling setpoint schedule is increased during the day and at night, shifted +5 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup -1h "Cooling setpoint schedule is increased during the day and at night, shifted -1 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup -2h "Cooling setpoint schedule is increased during the day and at night, shifted -2 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup -3h "Cooling setpoint schedule is increased during the day and at night, shifted -3 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup -4h "Cooling setpoint schedule is increased during the day and at night, shifted -4 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Day and Night Setup -5h "Cooling setpoint schedule is increased during the day and at night, shifted -5 hour from the Day and Night Setup schedule" +in.cooling_setpoint_offset_period Night Setback Cooling setpoint schedule is decreased at night (10pm to 7am) +in.cooling_setpoint_offset_period Night Setback +1h "Cooling setpoint schedule is decreased at night, shifted +1 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback +2h "Cooling setpoint schedule is decreased at night, shifted +2 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback +3h "Cooling setpoint schedule is decreased at night, shifted +3 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback +4h "Cooling setpoint schedule is decreased at night, shifted +4 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback +5h "Cooling setpoint schedule is decreased at night, shifted +5 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback -1h "Cooling setpoint schedule is decreased at night, shifted -1 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback -2h "Cooling setpoint schedule is decreased at night, shifted -2 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback -3h "Cooling setpoint schedule is decreased at night, shifted -3 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback -4h "Cooling setpoint schedule is decreased at night, shifted -4 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setback -5h "Cooling setpoint schedule is decreased at night, shifted -5 hour from the Night Setback schedule" +in.cooling_setpoint_offset_period Night Setup Cooling setpoint schedule is increased at night (10pm to 7am) +in.cooling_setpoint_offset_period Night Setup +1h "Cooling setpoint schedule is increased at night, shifted +1 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup +2h "Cooling setpoint schedule is increased at night, shifted +2 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup +3h "Cooling setpoint schedule is increased at night, shifted +3 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup +4h "Cooling setpoint schedule is increased at night, shifted +4 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup +5h "Cooling setpoint schedule is increased at night, shifted +5 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup -1h "Cooling setpoint schedule is increased at night, shifted -1 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup -2h "Cooling setpoint schedule is increased at night, shifted -2 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup -3h "Cooling setpoint schedule is increased at night, shifted -3 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup -4h "Cooling setpoint schedule is increased at night, shifted -4 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period Night Setup -5h "Cooling setpoint schedule is increased at night, shifted -5 hour from the Night Setup schedule" +in.cooling_setpoint_offset_period None No cooling setpoint offset schedule applied +in.cooling_unavailable_days 1 day 1 day in a year cooling is unavailable +in.cooling_unavailable_days 1 month 1 month in a year cooling is unavailable +in.cooling_unavailable_days 1 week 1 week in a year cooling is unavailable +in.cooling_unavailable_days 2 weeks 2 weeks in a year cooling is unavailable +in.cooling_unavailable_days 3 days 3 days in a year cooling is unavailable +in.cooling_unavailable_days 3 months 3 months in a year cooling is unavailable +in.cooling_unavailable_days Never Cooling is available for the whole year +in.cooling_unavailable_days Year round Cooling is unavailable for the whole year +in.cooling_unavailable_period Apr 1 - Apr 1 Cooling is unavailable during Apr 1 - Apr 1 +in.cooling_unavailable_period Apr 1 - Apr 14 Cooling is unavailable during Apr 1 - Apr 14 +in.cooling_unavailable_period Apr 1 - Apr 3 Cooling is unavailable during Apr 1 - Apr 3 +in.cooling_unavailable_period Apr 1 - Apr 30 Cooling is unavailable during Apr 1 - Apr 30 +in.cooling_unavailable_period Apr 1 - Apr 7 Cooling is unavailable during Apr 1 - Apr 7 +in.cooling_unavailable_period Apr 1 - Jun 29 Cooling is unavailable during Apr 1 - Jun 29 +in.cooling_unavailable_period Apr 10 - Apr 10 Cooling is unavailable during Apr 10 - Apr 10 +in.cooling_unavailable_period Apr 10 - Apr 12 Cooling is unavailable during Apr 10 - Apr 12 +in.cooling_unavailable_period Apr 10 - Apr 16 Cooling is unavailable during Apr 10 - Apr 16 +in.cooling_unavailable_period Apr 10 - Apr 23 Cooling is unavailable during Apr 10 - Apr 23 +in.cooling_unavailable_period Apr 10 - Jul 8 Cooling is unavailable during Apr 10 - Jul 8 +in.cooling_unavailable_period Apr 10 - May 9 Cooling is unavailable during Apr 10 - May 9 +in.cooling_unavailable_period Apr 11 - Apr 11 Cooling is unavailable during Apr 11 - Apr 11 +in.cooling_unavailable_period Apr 11 - Apr 13 Cooling is unavailable during Apr 11 - Apr 13 +in.cooling_unavailable_period Apr 11 - Apr 17 Cooling is unavailable during Apr 11 - Apr 17 +in.cooling_unavailable_period Apr 11 - Apr 24 Cooling is unavailable during Apr 11 - Apr 24 +in.cooling_unavailable_period Apr 11 - Jul 9 Cooling is unavailable during Apr 11 - Jul 9 +in.cooling_unavailable_period Apr 11 - May 10 Cooling is unavailable during Apr 11 - May 10 +in.cooling_unavailable_period Apr 12 - Apr 12 Cooling is unavailable during Apr 12 - Apr 12 +in.cooling_unavailable_period Apr 12 - Apr 14 Cooling is unavailable during Apr 12 - Apr 14 +in.cooling_unavailable_period Apr 12 - Apr 18 Cooling is unavailable during Apr 12 - Apr 18 +in.cooling_unavailable_period Apr 12 - Apr 25 Cooling is unavailable during Apr 12 - Apr 25 +in.cooling_unavailable_period Apr 12 - Jul 10 Cooling is unavailable during Apr 12 - Jul 10 +in.cooling_unavailable_period Apr 12 - May 11 Cooling is unavailable during Apr 12 - May 11 +in.cooling_unavailable_period Apr 13 - Apr 13 Cooling is unavailable during Apr 13 - Apr 13 +in.cooling_unavailable_period Apr 13 - Apr 15 Cooling is unavailable during Apr 13 - Apr 15 +in.cooling_unavailable_period Apr 13 - Apr 19 Cooling is unavailable during Apr 13 - Apr 19 +in.cooling_unavailable_period Apr 13 - Apr 26 Cooling is unavailable during Apr 13 - Apr 26 +in.cooling_unavailable_period Apr 13 - Jul 11 Cooling is unavailable during Apr 13 - Jul 11 +in.cooling_unavailable_period Apr 13 - May 12 Cooling is unavailable during Apr 13 - May 12 +in.cooling_unavailable_period Apr 14 - Apr 14 Cooling is unavailable during Apr 14 - Apr 14 +in.cooling_unavailable_period Apr 14 - Apr 16 Cooling is unavailable during Apr 14 - Apr 16 +in.cooling_unavailable_period Apr 14 - Apr 20 Cooling is unavailable during Apr 14 - Apr 20 +in.cooling_unavailable_period Apr 14 - Apr 27 Cooling is unavailable during Apr 14 - Apr 27 +in.cooling_unavailable_period Apr 14 - Jul 12 Cooling is unavailable during Apr 14 - Jul 12 +in.cooling_unavailable_period Apr 14 - May 13 Cooling is unavailable during Apr 14 - May 13 +in.cooling_unavailable_period Apr 15 - Apr 15 Cooling is unavailable during Apr 15 - Apr 15 +in.cooling_unavailable_period Apr 15 - Apr 17 Cooling is unavailable during Apr 15 - Apr 17 +in.cooling_unavailable_period Apr 15 - Apr 21 Cooling is unavailable during Apr 15 - Apr 21 +in.cooling_unavailable_period Apr 15 - Apr 28 Cooling is unavailable during Apr 15 - Apr 28 +in.cooling_unavailable_period Apr 15 - Jul 13 Cooling is unavailable during Apr 15 - Jul 13 +in.cooling_unavailable_period Apr 15 - May 14 Cooling is unavailable during Apr 15 - May 14 +in.cooling_unavailable_period Apr 16 - Apr 16 Cooling is unavailable during Apr 16 - Apr 16 +in.cooling_unavailable_period Apr 16 - Apr 18 Cooling is unavailable during Apr 16 - Apr 18 +in.cooling_unavailable_period Apr 16 - Apr 22 Cooling is unavailable during Apr 16 - Apr 22 +in.cooling_unavailable_period Apr 16 - Apr 29 Cooling is unavailable during Apr 16 - Apr 29 +in.cooling_unavailable_period Apr 16 - Jul 14 Cooling is unavailable during Apr 16 - Jul 14 +in.cooling_unavailable_period Apr 16 - May 15 Cooling is unavailable during Apr 16 - May 15 +in.cooling_unavailable_period Apr 17 - Apr 17 Cooling is unavailable during Apr 17 - Apr 17 +in.cooling_unavailable_period Apr 17 - Apr 19 Cooling is unavailable during Apr 17 - Apr 19 +in.cooling_unavailable_period Apr 17 - Apr 23 Cooling is unavailable during Apr 17 - Apr 23 +in.cooling_unavailable_period Apr 17 - Apr 30 Cooling is unavailable during Apr 17 - Apr 30 +in.cooling_unavailable_period Apr 17 - Jul 15 Cooling is unavailable during Apr 17 - Jul 15 +in.cooling_unavailable_period Apr 17 - May 16 Cooling is unavailable during Apr 17 - May 16 +in.cooling_unavailable_period Apr 18 - Apr 18 Cooling is unavailable during Apr 18 - Apr 18 +in.cooling_unavailable_period Apr 18 - Apr 20 Cooling is unavailable during Apr 18 - Apr 20 +in.cooling_unavailable_period Apr 18 - Apr 24 Cooling is unavailable during Apr 18 - Apr 24 +in.cooling_unavailable_period Apr 18 - Jul 16 Cooling is unavailable during Apr 18 - Jul 16 +in.cooling_unavailable_period Apr 18 - May 1 Cooling is unavailable during Apr 18 - May 1 +in.cooling_unavailable_period Apr 18 - May 17 Cooling is unavailable during Apr 18 - May 17 +in.cooling_unavailable_period Apr 19 - Apr 19 Cooling is unavailable during Apr 19 - Apr 19 +in.cooling_unavailable_period Apr 19 - Apr 21 Cooling is unavailable during Apr 19 - Apr 21 +in.cooling_unavailable_period Apr 19 - Apr 25 Cooling is unavailable during Apr 19 - Apr 25 +in.cooling_unavailable_period Apr 19 - Jul 17 Cooling is unavailable during Apr 19 - Jul 17 +in.cooling_unavailable_period Apr 19 - May 18 Cooling is unavailable during Apr 19 - May 18 +in.cooling_unavailable_period Apr 19 - May 2 Cooling is unavailable during Apr 19 - May 2 +in.cooling_unavailable_period Apr 2 - Apr 15 Cooling is unavailable during Apr 2 - Apr 15 +in.cooling_unavailable_period Apr 2 - Apr 2 Cooling is unavailable during Apr 2 - Apr 2 +in.cooling_unavailable_period Apr 2 - Apr 4 Cooling is unavailable during Apr 2 - Apr 4 +in.cooling_unavailable_period Apr 2 - Apr 8 Cooling is unavailable during Apr 2 - Apr 8 +in.cooling_unavailable_period Apr 2 - Jun 30 Cooling is unavailable during Apr 2 - Jun 30 +in.cooling_unavailable_period Apr 2 - May 1 Cooling is unavailable during Apr 2 - May 1 +in.cooling_unavailable_period Apr 20 - Apr 20 Cooling is unavailable during Apr 20 - Apr 20 +in.cooling_unavailable_period Apr 20 - Apr 22 Cooling is unavailable during Apr 20 - Apr 22 +in.cooling_unavailable_period Apr 20 - Apr 26 Cooling is unavailable during Apr 20 - Apr 26 +in.cooling_unavailable_period Apr 20 - Jul 18 Cooling is unavailable during Apr 20 - Jul 18 +in.cooling_unavailable_period Apr 20 - May 19 Cooling is unavailable during Apr 20 - May 19 +in.cooling_unavailable_period Apr 20 - May 3 Cooling is unavailable during Apr 20 - May 3 +in.cooling_unavailable_period Apr 21 - Apr 21 Cooling is unavailable during Apr 21 - Apr 21 +in.cooling_unavailable_period Apr 21 - Apr 23 Cooling is unavailable during Apr 21 - Apr 23 +in.cooling_unavailable_period Apr 21 - Apr 27 Cooling is unavailable during Apr 21 - Apr 27 +in.cooling_unavailable_period Apr 21 - Jul 19 Cooling is unavailable during Apr 21 - Jul 19 +in.cooling_unavailable_period Apr 21 - May 20 Cooling is unavailable during Apr 21 - May 20 +in.cooling_unavailable_period Apr 21 - May 4 Cooling is unavailable during Apr 21 - May 4 +in.cooling_unavailable_period Apr 22 - Apr 22 Cooling is unavailable during Apr 22 - Apr 22 +in.cooling_unavailable_period Apr 22 - Apr 24 Cooling is unavailable during Apr 22 - Apr 24 +in.cooling_unavailable_period Apr 22 - Apr 28 Cooling is unavailable during Apr 22 - Apr 28 +in.cooling_unavailable_period Apr 22 - Jul 20 Cooling is unavailable during Apr 22 - Jul 20 +in.cooling_unavailable_period Apr 22 - May 21 Cooling is unavailable during Apr 22 - May 21 +in.cooling_unavailable_period Apr 22 - May 5 Cooling is unavailable during Apr 22 - May 5 +in.cooling_unavailable_period Apr 23 - Apr 23 Cooling is unavailable during Apr 23 - Apr 23 +in.cooling_unavailable_period Apr 23 - Apr 25 Cooling is unavailable during Apr 23 - Apr 25 +in.cooling_unavailable_period Apr 23 - Apr 29 Cooling is unavailable during Apr 23 - Apr 29 +in.cooling_unavailable_period Apr 23 - Jul 21 Cooling is unavailable during Apr 23 - Jul 21 +in.cooling_unavailable_period Apr 23 - May 22 Cooling is unavailable during Apr 23 - May 22 +in.cooling_unavailable_period Apr 23 - May 6 Cooling is unavailable during Apr 23 - May 6 +in.cooling_unavailable_period Apr 24 - Apr 24 Cooling is unavailable during Apr 24 - Apr 24 +in.cooling_unavailable_period Apr 24 - Apr 26 Cooling is unavailable during Apr 24 - Apr 26 +in.cooling_unavailable_period Apr 24 - Apr 30 Cooling is unavailable during Apr 24 - Apr 30 +in.cooling_unavailable_period Apr 24 - Jul 22 Cooling is unavailable during Apr 24 - Jul 22 +in.cooling_unavailable_period Apr 24 - May 23 Cooling is unavailable during Apr 24 - May 23 +in.cooling_unavailable_period Apr 24 - May 7 Cooling is unavailable during Apr 24 - May 7 +in.cooling_unavailable_period Apr 25 - Apr 25 Cooling is unavailable during Apr 25 - Apr 25 +in.cooling_unavailable_period Apr 25 - Apr 27 Cooling is unavailable during Apr 25 - Apr 27 +in.cooling_unavailable_period Apr 25 - Jul 23 Cooling is unavailable during Apr 25 - Jul 23 +in.cooling_unavailable_period Apr 25 - May 1 Cooling is unavailable during Apr 25 - May 1 +in.cooling_unavailable_period Apr 25 - May 24 Cooling is unavailable during Apr 25 - May 24 +in.cooling_unavailable_period Apr 25 - May 8 Cooling is unavailable during Apr 25 - May 8 +in.cooling_unavailable_period Apr 26 - Apr 26 Cooling is unavailable during Apr 26 - Apr 26 +in.cooling_unavailable_period Apr 26 - Apr 28 Cooling is unavailable during Apr 26 - Apr 28 +in.cooling_unavailable_period Apr 26 - Jul 24 Cooling is unavailable during Apr 26 - Jul 24 +in.cooling_unavailable_period Apr 26 - May 2 Cooling is unavailable during Apr 26 - May 2 +in.cooling_unavailable_period Apr 26 - May 25 Cooling is unavailable during Apr 26 - May 25 +in.cooling_unavailable_period Apr 26 - May 9 Cooling is unavailable during Apr 26 - May 9 +in.cooling_unavailable_period Apr 27 - Apr 27 Cooling is unavailable during Apr 27 - Apr 27 +in.cooling_unavailable_period Apr 27 - Apr 29 Cooling is unavailable during Apr 27 - Apr 29 +in.cooling_unavailable_period Apr 27 - Jul 25 Cooling is unavailable during Apr 27 - Jul 25 +in.cooling_unavailable_period Apr 27 - May 10 Cooling is unavailable during Apr 27 - May 10 +in.cooling_unavailable_period Apr 27 - May 26 Cooling is unavailable during Apr 27 - May 26 +in.cooling_unavailable_period Apr 27 - May 3 Cooling is unavailable during Apr 27 - May 3 +in.cooling_unavailable_period Apr 28 - Apr 28 Cooling is unavailable during Apr 28 - Apr 28 +in.cooling_unavailable_period Apr 28 - Apr 30 Cooling is unavailable during Apr 28 - Apr 30 +in.cooling_unavailable_period Apr 28 - Jul 26 Cooling is unavailable during Apr 28 - Jul 26 +in.cooling_unavailable_period Apr 28 - May 11 Cooling is unavailable during Apr 28 - May 11 +in.cooling_unavailable_period Apr 28 - May 27 Cooling is unavailable during Apr 28 - May 27 +in.cooling_unavailable_period Apr 28 - May 4 Cooling is unavailable during Apr 28 - May 4 +in.cooling_unavailable_period Apr 29 - Apr 29 Cooling is unavailable during Apr 29 - Apr 29 +in.cooling_unavailable_period Apr 29 - Jul 27 Cooling is unavailable during Apr 29 - Jul 27 +in.cooling_unavailable_period Apr 29 - May 1 Cooling is unavailable during Apr 29 - May 1 +in.cooling_unavailable_period Apr 29 - May 12 Cooling is unavailable during Apr 29 - May 12 +in.cooling_unavailable_period Apr 29 - May 28 Cooling is unavailable during Apr 29 - May 28 +in.cooling_unavailable_period Apr 29 - May 5 Cooling is unavailable during Apr 29 - May 5 +in.cooling_unavailable_period Apr 3 - Apr 16 Cooling is unavailable during Apr 3 - Apr 16 +in.cooling_unavailable_period Apr 3 - Apr 3 Cooling is unavailable during Apr 3 - Apr 3 +in.cooling_unavailable_period Apr 3 - Apr 5 Cooling is unavailable during Apr 3 - Apr 5 +in.cooling_unavailable_period Apr 3 - Apr 9 Cooling is unavailable during Apr 3 - Apr 9 +in.cooling_unavailable_period Apr 3 - Jul 1 Cooling is unavailable during Apr 3 - Jul 1 +in.cooling_unavailable_period Apr 3 - May 2 Cooling is unavailable during Apr 3 - May 2 +in.cooling_unavailable_period Apr 30 - Apr 30 Cooling is unavailable during Apr 30 - Apr 30 +in.cooling_unavailable_period Apr 30 - Jul 28 Cooling is unavailable during Apr 30 - Jul 28 +in.cooling_unavailable_period Apr 30 - May 13 Cooling is unavailable during Apr 30 - May 13 +in.cooling_unavailable_period Apr 30 - May 2 Cooling is unavailable during Apr 30 - May 2 +in.cooling_unavailable_period Apr 30 - May 29 Cooling is unavailable during Apr 30 - May 29 +in.cooling_unavailable_period Apr 30 - May 6 Cooling is unavailable during Apr 30 - May 6 +in.cooling_unavailable_period Apr 4 - Apr 10 Cooling is unavailable during Apr 4 - Apr 10 +in.cooling_unavailable_period Apr 4 - Apr 17 Cooling is unavailable during Apr 4 - Apr 17 +in.cooling_unavailable_period Apr 4 - Apr 4 Cooling is unavailable during Apr 4 - Apr 4 +in.cooling_unavailable_period Apr 4 - Apr 6 Cooling is unavailable during Apr 4 - Apr 6 +in.cooling_unavailable_period Apr 4 - Jul 2 Cooling is unavailable during Apr 4 - Jul 2 +in.cooling_unavailable_period Apr 4 - May 3 Cooling is unavailable during Apr 4 - May 3 +in.cooling_unavailable_period Apr 5 - Apr 11 Cooling is unavailable during Apr 5 - Apr 11 +in.cooling_unavailable_period Apr 5 - Apr 18 Cooling is unavailable during Apr 5 - Apr 18 +in.cooling_unavailable_period Apr 5 - Apr 5 Cooling is unavailable during Apr 5 - Apr 5 +in.cooling_unavailable_period Apr 5 - Apr 7 Cooling is unavailable during Apr 5 - Apr 7 +in.cooling_unavailable_period Apr 5 - Jul 3 Cooling is unavailable during Apr 5 - Jul 3 +in.cooling_unavailable_period Apr 5 - May 4 Cooling is unavailable during Apr 5 - May 4 +in.cooling_unavailable_period Apr 6 - Apr 12 Cooling is unavailable during Apr 6 - Apr 12 +in.cooling_unavailable_period Apr 6 - Apr 19 Cooling is unavailable during Apr 6 - Apr 19 +in.cooling_unavailable_period Apr 6 - Apr 6 Cooling is unavailable during Apr 6 - Apr 6 +in.cooling_unavailable_period Apr 6 - Apr 8 Cooling is unavailable during Apr 6 - Apr 8 +in.cooling_unavailable_period Apr 6 - Jul 4 Cooling is unavailable during Apr 6 - Jul 4 +in.cooling_unavailable_period Apr 6 - May 5 Cooling is unavailable during Apr 6 - May 5 +in.cooling_unavailable_period Apr 7 - Apr 13 Cooling is unavailable during Apr 7 - Apr 13 +in.cooling_unavailable_period Apr 7 - Apr 20 Cooling is unavailable during Apr 7 - Apr 20 +in.cooling_unavailable_period Apr 7 - Apr 7 Cooling is unavailable during Apr 7 - Apr 7 +in.cooling_unavailable_period Apr 7 - Apr 9 Cooling is unavailable during Apr 7 - Apr 9 +in.cooling_unavailable_period Apr 7 - Jul 5 Cooling is unavailable during Apr 7 - Jul 5 +in.cooling_unavailable_period Apr 7 - May 6 Cooling is unavailable during Apr 7 - May 6 +in.cooling_unavailable_period Apr 8 - Apr 10 Cooling is unavailable during Apr 8 - Apr 10 +in.cooling_unavailable_period Apr 8 - Apr 14 Cooling is unavailable during Apr 8 - Apr 14 +in.cooling_unavailable_period Apr 8 - Apr 21 Cooling is unavailable during Apr 8 - Apr 21 +in.cooling_unavailable_period Apr 8 - Apr 8 Cooling is unavailable during Apr 8 - Apr 8 +in.cooling_unavailable_period Apr 8 - Jul 6 Cooling is unavailable during Apr 8 - Jul 6 +in.cooling_unavailable_period Apr 8 - May 7 Cooling is unavailable during Apr 8 - May 7 +in.cooling_unavailable_period Apr 9 - Apr 11 Cooling is unavailable during Apr 9 - Apr 11 +in.cooling_unavailable_period Apr 9 - Apr 15 Cooling is unavailable during Apr 9 - Apr 15 +in.cooling_unavailable_period Apr 9 - Apr 22 Cooling is unavailable during Apr 9 - Apr 22 +in.cooling_unavailable_period Apr 9 - Apr 9 Cooling is unavailable during Apr 9 - Apr 9 +in.cooling_unavailable_period Apr 9 - Jul 7 Cooling is unavailable during Apr 9 - Jul 7 +in.cooling_unavailable_period Apr 9 - May 8 Cooling is unavailable during Apr 9 - May 8 +in.cooling_unavailable_period Aug 1 - Aug 1 Cooling is unavailable during Aug 1 - Aug 1 +in.cooling_unavailable_period Aug 1 - Aug 14 Cooling is unavailable during Aug 1 - Aug 14 +in.cooling_unavailable_period Aug 1 - Aug 3 Cooling is unavailable during Aug 1 - Aug 3 +in.cooling_unavailable_period Aug 1 - Aug 30 Cooling is unavailable during Aug 1 - Aug 30 +in.cooling_unavailable_period Aug 1 - Aug 7 Cooling is unavailable during Aug 1 - Aug 7 +in.cooling_unavailable_period Aug 1 - Oct 29 Cooling is unavailable during Aug 1 - Oct 29 +in.cooling_unavailable_period Aug 10 - Aug 10 Cooling is unavailable during Aug 10 - Aug 10 +in.cooling_unavailable_period Aug 10 - Aug 12 Cooling is unavailable during Aug 10 - Aug 12 +in.cooling_unavailable_period Aug 10 - Aug 16 Cooling is unavailable during Aug 10 - Aug 16 +in.cooling_unavailable_period Aug 10 - Aug 23 Cooling is unavailable during Aug 10 - Aug 23 +in.cooling_unavailable_period Aug 10 - Nov 7 Cooling is unavailable during Aug 10 - Nov 7 +in.cooling_unavailable_period Aug 10 - Sep 8 Cooling is unavailable during Aug 10 - Sep 8 +in.cooling_unavailable_period Aug 11 - Aug 11 Cooling is unavailable during Aug 11 - Aug 11 +in.cooling_unavailable_period Aug 11 - Aug 13 Cooling is unavailable during Aug 11 - Aug 13 +in.cooling_unavailable_period Aug 11 - Aug 17 Cooling is unavailable during Aug 11 - Aug 17 +in.cooling_unavailable_period Aug 11 - Aug 24 Cooling is unavailable during Aug 11 - Aug 24 +in.cooling_unavailable_period Aug 11 - Nov 8 Cooling is unavailable during Aug 11 - Nov 8 +in.cooling_unavailable_period Aug 11 - Sep 9 Cooling is unavailable during Aug 11 - Sep 9 +in.cooling_unavailable_period Aug 12 - Aug 12 Cooling is unavailable during Aug 12 - Aug 12 +in.cooling_unavailable_period Aug 12 - Aug 14 Cooling is unavailable during Aug 12 - Aug 14 +in.cooling_unavailable_period Aug 12 - Aug 18 Cooling is unavailable during Aug 12 - Aug 18 +in.cooling_unavailable_period Aug 12 - Aug 25 Cooling is unavailable during Aug 12 - Aug 25 +in.cooling_unavailable_period Aug 12 - Nov 9 Cooling is unavailable during Aug 12 - Nov 9 +in.cooling_unavailable_period Aug 12 - Sep 10 Cooling is unavailable during Aug 12 - Sep 10 +in.cooling_unavailable_period Aug 13 - Aug 13 Cooling is unavailable during Aug 13 - Aug 13 +in.cooling_unavailable_period Aug 13 - Aug 15 Cooling is unavailable during Aug 13 - Aug 15 +in.cooling_unavailable_period Aug 13 - Aug 19 Cooling is unavailable during Aug 13 - Aug 19 +in.cooling_unavailable_period Aug 13 - Aug 26 Cooling is unavailable during Aug 13 - Aug 26 +in.cooling_unavailable_period Aug 13 - Nov 10 Cooling is unavailable during Aug 13 - Nov 10 +in.cooling_unavailable_period Aug 13 - Sep 11 Cooling is unavailable during Aug 13 - Sep 11 +in.cooling_unavailable_period Aug 14 - Aug 14 Cooling is unavailable during Aug 14 - Aug 14 +in.cooling_unavailable_period Aug 14 - Aug 16 Cooling is unavailable during Aug 14 - Aug 16 +in.cooling_unavailable_period Aug 14 - Aug 20 Cooling is unavailable during Aug 14 - Aug 20 +in.cooling_unavailable_period Aug 14 - Aug 27 Cooling is unavailable during Aug 14 - Aug 27 +in.cooling_unavailable_period Aug 14 - Nov 11 Cooling is unavailable during Aug 14 - Nov 11 +in.cooling_unavailable_period Aug 14 - Sep 12 Cooling is unavailable during Aug 14 - Sep 12 +in.cooling_unavailable_period Aug 15 - Aug 15 Cooling is unavailable during Aug 15 - Aug 15 +in.cooling_unavailable_period Aug 15 - Aug 17 Cooling is unavailable during Aug 15 - Aug 17 +in.cooling_unavailable_period Aug 15 - Aug 21 Cooling is unavailable during Aug 15 - Aug 21 +in.cooling_unavailable_period Aug 15 - Aug 28 Cooling is unavailable during Aug 15 - Aug 28 +in.cooling_unavailable_period Aug 15 - Nov 12 Cooling is unavailable during Aug 15 - Nov 12 +in.cooling_unavailable_period Aug 15 - Sep 13 Cooling is unavailable during Aug 15 - Sep 13 +in.cooling_unavailable_period Aug 16 - Aug 16 Cooling is unavailable during Aug 16 - Aug 16 +in.cooling_unavailable_period Aug 16 - Aug 18 Cooling is unavailable during Aug 16 - Aug 18 +in.cooling_unavailable_period Aug 16 - Aug 22 Cooling is unavailable during Aug 16 - Aug 22 +in.cooling_unavailable_period Aug 16 - Aug 29 Cooling is unavailable during Aug 16 - Aug 29 +in.cooling_unavailable_period Aug 16 - Nov 13 Cooling is unavailable during Aug 16 - Nov 13 +in.cooling_unavailable_period Aug 16 - Sep 14 Cooling is unavailable during Aug 16 - Sep 14 +in.cooling_unavailable_period Aug 17 - Aug 17 Cooling is unavailable during Aug 17 - Aug 17 +in.cooling_unavailable_period Aug 17 - Aug 19 Cooling is unavailable during Aug 17 - Aug 19 +in.cooling_unavailable_period Aug 17 - Aug 23 Cooling is unavailable during Aug 17 - Aug 23 +in.cooling_unavailable_period Aug 17 - Aug 30 Cooling is unavailable during Aug 17 - Aug 30 +in.cooling_unavailable_period Aug 17 - Nov 14 Cooling is unavailable during Aug 17 - Nov 14 +in.cooling_unavailable_period Aug 17 - Sep 15 Cooling is unavailable during Aug 17 - Sep 15 +in.cooling_unavailable_period Aug 18 - Aug 18 Cooling is unavailable during Aug 18 - Aug 18 +in.cooling_unavailable_period Aug 18 - Aug 20 Cooling is unavailable during Aug 18 - Aug 20 +in.cooling_unavailable_period Aug 18 - Aug 24 Cooling is unavailable during Aug 18 - Aug 24 +in.cooling_unavailable_period Aug 18 - Aug 31 Cooling is unavailable during Aug 18 - Aug 31 +in.cooling_unavailable_period Aug 18 - Nov 15 Cooling is unavailable during Aug 18 - Nov 15 +in.cooling_unavailable_period Aug 18 - Sep 16 Cooling is unavailable during Aug 18 - Sep 16 +in.cooling_unavailable_period Aug 19 - Aug 19 Cooling is unavailable during Aug 19 - Aug 19 +in.cooling_unavailable_period Aug 19 - Aug 21 Cooling is unavailable during Aug 19 - Aug 21 +in.cooling_unavailable_period Aug 19 - Aug 25 Cooling is unavailable during Aug 19 - Aug 25 +in.cooling_unavailable_period Aug 19 - Nov 16 Cooling is unavailable during Aug 19 - Nov 16 +in.cooling_unavailable_period Aug 19 - Sep 1 Cooling is unavailable during Aug 19 - Sep 1 +in.cooling_unavailable_period Aug 19 - Sep 17 Cooling is unavailable during Aug 19 - Sep 17 +in.cooling_unavailable_period Aug 2 - Aug 15 Cooling is unavailable during Aug 2 - Aug 15 +in.cooling_unavailable_period Aug 2 - Aug 2 Cooling is unavailable during Aug 2 - Aug 2 +in.cooling_unavailable_period Aug 2 - Aug 31 Cooling is unavailable during Aug 2 - Aug 31 +in.cooling_unavailable_period Aug 2 - Aug 4 Cooling is unavailable during Aug 2 - Aug 4 +in.cooling_unavailable_period Aug 2 - Aug 8 Cooling is unavailable during Aug 2 - Aug 8 +in.cooling_unavailable_period Aug 2 - Oct 30 Cooling is unavailable during Aug 2 - Oct 30 +in.cooling_unavailable_period Aug 20 - Aug 20 Cooling is unavailable during Aug 20 - Aug 20 +in.cooling_unavailable_period Aug 20 - Aug 22 Cooling is unavailable during Aug 20 - Aug 22 +in.cooling_unavailable_period Aug 20 - Aug 26 Cooling is unavailable during Aug 20 - Aug 26 +in.cooling_unavailable_period Aug 20 - Nov 17 Cooling is unavailable during Aug 20 - Nov 17 +in.cooling_unavailable_period Aug 20 - Sep 18 Cooling is unavailable during Aug 20 - Sep 18 +in.cooling_unavailable_period Aug 20 - Sep 2 Cooling is unavailable during Aug 20 - Sep 2 +in.cooling_unavailable_period Aug 21 - Aug 21 Cooling is unavailable during Aug 21 - Aug 21 +in.cooling_unavailable_period Aug 21 - Aug 23 Cooling is unavailable during Aug 21 - Aug 23 +in.cooling_unavailable_period Aug 21 - Aug 27 Cooling is unavailable during Aug 21 - Aug 27 +in.cooling_unavailable_period Aug 21 - Nov 18 Cooling is unavailable during Aug 21 - Nov 18 +in.cooling_unavailable_period Aug 21 - Sep 19 Cooling is unavailable during Aug 21 - Sep 19 +in.cooling_unavailable_period Aug 21 - Sep 3 Cooling is unavailable during Aug 21 - Sep 3 +in.cooling_unavailable_period Aug 22 - Aug 22 Cooling is unavailable during Aug 22 - Aug 22 +in.cooling_unavailable_period Aug 22 - Aug 24 Cooling is unavailable during Aug 22 - Aug 24 +in.cooling_unavailable_period Aug 22 - Aug 28 Cooling is unavailable during Aug 22 - Aug 28 +in.cooling_unavailable_period Aug 22 - Nov 19 Cooling is unavailable during Aug 22 - Nov 19 +in.cooling_unavailable_period Aug 22 - Sep 20 Cooling is unavailable during Aug 22 - Sep 20 +in.cooling_unavailable_period Aug 22 - Sep 4 Cooling is unavailable during Aug 22 - Sep 4 +in.cooling_unavailable_period Aug 23 - Aug 23 Cooling is unavailable during Aug 23 - Aug 23 +in.cooling_unavailable_period Aug 23 - Aug 25 Cooling is unavailable during Aug 23 - Aug 25 +in.cooling_unavailable_period Aug 23 - Aug 29 Cooling is unavailable during Aug 23 - Aug 29 +in.cooling_unavailable_period Aug 23 - Nov 20 Cooling is unavailable during Aug 23 - Nov 20 +in.cooling_unavailable_period Aug 23 - Sep 21 Cooling is unavailable during Aug 23 - Sep 21 +in.cooling_unavailable_period Aug 23 - Sep 5 Cooling is unavailable during Aug 23 - Sep 5 +in.cooling_unavailable_period Aug 24 - Aug 24 Cooling is unavailable during Aug 24 - Aug 24 +in.cooling_unavailable_period Aug 24 - Aug 26 Cooling is unavailable during Aug 24 - Aug 26 +in.cooling_unavailable_period Aug 24 - Aug 30 Cooling is unavailable during Aug 24 - Aug 30 +in.cooling_unavailable_period Aug 24 - Nov 21 Cooling is unavailable during Aug 24 - Nov 21 +in.cooling_unavailable_period Aug 24 - Sep 22 Cooling is unavailable during Aug 24 - Sep 22 +in.cooling_unavailable_period Aug 24 - Sep 6 Cooling is unavailable during Aug 24 - Sep 6 +in.cooling_unavailable_period Aug 25 - Aug 25 Cooling is unavailable during Aug 25 - Aug 25 +in.cooling_unavailable_period Aug 25 - Aug 27 Cooling is unavailable during Aug 25 - Aug 27 +in.cooling_unavailable_period Aug 25 - Aug 31 Cooling is unavailable during Aug 25 - Aug 31 +in.cooling_unavailable_period Aug 25 - Nov 22 Cooling is unavailable during Aug 25 - Nov 22 +in.cooling_unavailable_period Aug 25 - Sep 23 Cooling is unavailable during Aug 25 - Sep 23 +in.cooling_unavailable_period Aug 25 - Sep 7 Cooling is unavailable during Aug 25 - Sep 7 +in.cooling_unavailable_period Aug 26 - Aug 26 Cooling is unavailable during Aug 26 - Aug 26 +in.cooling_unavailable_period Aug 26 - Aug 28 Cooling is unavailable during Aug 26 - Aug 28 +in.cooling_unavailable_period Aug 26 - Nov 23 Cooling is unavailable during Aug 26 - Nov 23 +in.cooling_unavailable_period Aug 26 - Sep 1 Cooling is unavailable during Aug 26 - Sep 1 +in.cooling_unavailable_period Aug 26 - Sep 24 Cooling is unavailable during Aug 26 - Sep 24 +in.cooling_unavailable_period Aug 26 - Sep 8 Cooling is unavailable during Aug 26 - Sep 8 +in.cooling_unavailable_period Aug 27 - Aug 27 Cooling is unavailable during Aug 27 - Aug 27 +in.cooling_unavailable_period Aug 27 - Aug 29 Cooling is unavailable during Aug 27 - Aug 29 +in.cooling_unavailable_period Aug 27 - Nov 24 Cooling is unavailable during Aug 27 - Nov 24 +in.cooling_unavailable_period Aug 27 - Sep 2 Cooling is unavailable during Aug 27 - Sep 2 +in.cooling_unavailable_period Aug 27 - Sep 25 Cooling is unavailable during Aug 27 - Sep 25 +in.cooling_unavailable_period Aug 27 - Sep 9 Cooling is unavailable during Aug 27 - Sep 9 +in.cooling_unavailable_period Aug 28 - Aug 28 Cooling is unavailable during Aug 28 - Aug 28 +in.cooling_unavailable_period Aug 28 - Aug 30 Cooling is unavailable during Aug 28 - Aug 30 +in.cooling_unavailable_period Aug 28 - Nov 25 Cooling is unavailable during Aug 28 - Nov 25 +in.cooling_unavailable_period Aug 28 - Sep 10 Cooling is unavailable during Aug 28 - Sep 10 +in.cooling_unavailable_period Aug 28 - Sep 26 Cooling is unavailable during Aug 28 - Sep 26 +in.cooling_unavailable_period Aug 28 - Sep 3 Cooling is unavailable during Aug 28 - Sep 3 +in.cooling_unavailable_period Aug 29 - Aug 29 Cooling is unavailable during Aug 29 - Aug 29 +in.cooling_unavailable_period Aug 29 - Aug 31 Cooling is unavailable during Aug 29 - Aug 31 +in.cooling_unavailable_period Aug 29 - Nov 26 Cooling is unavailable during Aug 29 - Nov 26 +in.cooling_unavailable_period Aug 29 - Sep 11 Cooling is unavailable during Aug 29 - Sep 11 +in.cooling_unavailable_period Aug 29 - Sep 27 Cooling is unavailable during Aug 29 - Sep 27 +in.cooling_unavailable_period Aug 29 - Sep 4 Cooling is unavailable during Aug 29 - Sep 4 +in.cooling_unavailable_period Aug 3 - Aug 16 Cooling is unavailable during Aug 3 - Aug 16 +in.cooling_unavailable_period Aug 3 - Aug 3 Cooling is unavailable during Aug 3 - Aug 3 +in.cooling_unavailable_period Aug 3 - Aug 5 Cooling is unavailable during Aug 3 - Aug 5 +in.cooling_unavailable_period Aug 3 - Aug 9 Cooling is unavailable during Aug 3 - Aug 9 +in.cooling_unavailable_period Aug 3 - Oct 31 Cooling is unavailable during Aug 3 - Oct 31 +in.cooling_unavailable_period Aug 3 - Sep 1 Cooling is unavailable during Aug 3 - Sep 1 +in.cooling_unavailable_period Aug 30 - Aug 30 Cooling is unavailable during Aug 30 - Aug 30 +in.cooling_unavailable_period Aug 30 - Nov 27 Cooling is unavailable during Aug 30 - Nov 27 +in.cooling_unavailable_period Aug 30 - Sep 1 Cooling is unavailable during Aug 30 - Sep 1 +in.cooling_unavailable_period Aug 30 - Sep 12 Cooling is unavailable during Aug 30 - Sep 12 +in.cooling_unavailable_period Aug 30 - Sep 28 Cooling is unavailable during Aug 30 - Sep 28 +in.cooling_unavailable_period Aug 30 - Sep 5 Cooling is unavailable during Aug 30 - Sep 5 +in.cooling_unavailable_period Aug 31 - Aug 31 Cooling is unavailable during Aug 31 - Aug 31 +in.cooling_unavailable_period Aug 31 - Nov 28 Cooling is unavailable during Aug 31 - Nov 28 +in.cooling_unavailable_period Aug 31 - Sep 13 Cooling is unavailable during Aug 31 - Sep 13 +in.cooling_unavailable_period Aug 31 - Sep 2 Cooling is unavailable during Aug 31 - Sep 2 +in.cooling_unavailable_period Aug 31 - Sep 29 Cooling is unavailable during Aug 31 - Sep 29 +in.cooling_unavailable_period Aug 31 - Sep 6 Cooling is unavailable during Aug 31 - Sep 6 +in.cooling_unavailable_period Aug 4 - Aug 10 Cooling is unavailable during Aug 4 - Aug 10 +in.cooling_unavailable_period Aug 4 - Aug 17 Cooling is unavailable during Aug 4 - Aug 17 +in.cooling_unavailable_period Aug 4 - Aug 4 Cooling is unavailable during Aug 4 - Aug 4 +in.cooling_unavailable_period Aug 4 - Aug 6 Cooling is unavailable during Aug 4 - Aug 6 +in.cooling_unavailable_period Aug 4 - Nov 1 Cooling is unavailable during Aug 4 - Nov 1 +in.cooling_unavailable_period Aug 4 - Sep 2 Cooling is unavailable during Aug 4 - Sep 2 +in.cooling_unavailable_period Aug 5 - Aug 11 Cooling is unavailable during Aug 5 - Aug 11 +in.cooling_unavailable_period Aug 5 - Aug 18 Cooling is unavailable during Aug 5 - Aug 18 +in.cooling_unavailable_period Aug 5 - Aug 5 Cooling is unavailable during Aug 5 - Aug 5 +in.cooling_unavailable_period Aug 5 - Aug 7 Cooling is unavailable during Aug 5 - Aug 7 +in.cooling_unavailable_period Aug 5 - Nov 2 Cooling is unavailable during Aug 5 - Nov 2 +in.cooling_unavailable_period Aug 5 - Sep 3 Cooling is unavailable during Aug 5 - Sep 3 +in.cooling_unavailable_period Aug 6 - Aug 12 Cooling is unavailable during Aug 6 - Aug 12 +in.cooling_unavailable_period Aug 6 - Aug 19 Cooling is unavailable during Aug 6 - Aug 19 +in.cooling_unavailable_period Aug 6 - Aug 6 Cooling is unavailable during Aug 6 - Aug 6 +in.cooling_unavailable_period Aug 6 - Aug 8 Cooling is unavailable during Aug 6 - Aug 8 +in.cooling_unavailable_period Aug 6 - Nov 3 Cooling is unavailable during Aug 6 - Nov 3 +in.cooling_unavailable_period Aug 6 - Sep 4 Cooling is unavailable during Aug 6 - Sep 4 +in.cooling_unavailable_period Aug 7 - Aug 13 Cooling is unavailable during Aug 7 - Aug 13 +in.cooling_unavailable_period Aug 7 - Aug 20 Cooling is unavailable during Aug 7 - Aug 20 +in.cooling_unavailable_period Aug 7 - Aug 7 Cooling is unavailable during Aug 7 - Aug 7 +in.cooling_unavailable_period Aug 7 - Aug 9 Cooling is unavailable during Aug 7 - Aug 9 +in.cooling_unavailable_period Aug 7 - Nov 4 Cooling is unavailable during Aug 7 - Nov 4 +in.cooling_unavailable_period Aug 7 - Sep 5 Cooling is unavailable during Aug 7 - Sep 5 +in.cooling_unavailable_period Aug 8 - Aug 10 Cooling is unavailable during Aug 8 - Aug 10 +in.cooling_unavailable_period Aug 8 - Aug 14 Cooling is unavailable during Aug 8 - Aug 14 +in.cooling_unavailable_period Aug 8 - Aug 21 Cooling is unavailable during Aug 8 - Aug 21 +in.cooling_unavailable_period Aug 8 - Aug 8 Cooling is unavailable during Aug 8 - Aug 8 +in.cooling_unavailable_period Aug 8 - Nov 5 Cooling is unavailable during Aug 8 - Nov 5 +in.cooling_unavailable_period Aug 8 - Sep 6 Cooling is unavailable during Aug 8 - Sep 6 +in.cooling_unavailable_period Aug 9 - Aug 11 Cooling is unavailable during Aug 9 - Aug 11 +in.cooling_unavailable_period Aug 9 - Aug 15 Cooling is unavailable during Aug 9 - Aug 15 +in.cooling_unavailable_period Aug 9 - Aug 22 Cooling is unavailable during Aug 9 - Aug 22 +in.cooling_unavailable_period Aug 9 - Aug 9 Cooling is unavailable during Aug 9 - Aug 9 +in.cooling_unavailable_period Aug 9 - Nov 6 Cooling is unavailable during Aug 9 - Nov 6 +in.cooling_unavailable_period Aug 9 - Sep 7 Cooling is unavailable during Aug 9 - Sep 7 +in.cooling_unavailable_period Dec 1 - Dec 1 Cooling is unavailable during Dec 1 - Dec 1 +in.cooling_unavailable_period Dec 1 - Dec 14 Cooling is unavailable during Dec 1 - Dec 14 +in.cooling_unavailable_period Dec 1 - Dec 3 Cooling is unavailable during Dec 1 - Dec 3 +in.cooling_unavailable_period Dec 1 - Dec 30 Cooling is unavailable during Dec 1 - Dec 30 +in.cooling_unavailable_period Dec 10 - Dec 12 Cooling is unavailable during Dec 10 - Dec 12 +in.cooling_unavailable_period Dec 10 - Mar 9 Cooling is unavailable during Dec 10 - Mar 9 +in.cooling_unavailable_period Dec 11 - Dec 11 Cooling is unavailable during Dec 11 - Dec 11 +in.cooling_unavailable_period Dec 11 - Dec 24 Cooling is unavailable during Dec 11 - Dec 24 +in.cooling_unavailable_period Dec 11 - Mar 10 Cooling is unavailable during Dec 11 - Mar 10 +in.cooling_unavailable_period Dec 12 - Dec 18 Cooling is unavailable during Dec 12 - Dec 18 +in.cooling_unavailable_period Dec 12 - Dec 25 Cooling is unavailable during Dec 12 - Dec 25 +in.cooling_unavailable_period Dec 12 - Jan 10 Cooling is unavailable during Dec 12 - Jan 10 +in.cooling_unavailable_period Dec 12 - Mar 11 Cooling is unavailable during Dec 12 - Mar 11 +in.cooling_unavailable_period Dec 13 - Dec 19 Cooling is unavailable during Dec 13 - Dec 19 +in.cooling_unavailable_period Dec 13 - Dec 26 Cooling is unavailable during Dec 13 - Dec 26 +in.cooling_unavailable_period Dec 14 - Dec 16 Cooling is unavailable during Dec 14 - Dec 16 +in.cooling_unavailable_period Dec 14 - Jan 12 Cooling is unavailable during Dec 14 - Jan 12 +in.cooling_unavailable_period Dec 15 - Dec 17 Cooling is unavailable during Dec 15 - Dec 17 +in.cooling_unavailable_period Dec 15 - Dec 21 Cooling is unavailable during Dec 15 - Dec 21 +in.cooling_unavailable_period Dec 15 - Mar 14 Cooling is unavailable during Dec 15 - Mar 14 +in.cooling_unavailable_period Dec 16 - Dec 22 Cooling is unavailable during Dec 16 - Dec 22 +in.cooling_unavailable_period Dec 17 - Dec 17 Cooling is unavailable during Dec 17 - Dec 17 +in.cooling_unavailable_period Dec 18 - Dec 31 Cooling is unavailable during Dec 18 - Dec 31 +in.cooling_unavailable_period Dec 18 - Jan 16 Cooling is unavailable during Dec 18 - Jan 16 +in.cooling_unavailable_period Dec 19 - Dec 21 Cooling is unavailable during Dec 19 - Dec 21 +in.cooling_unavailable_period Dec 19 - Jan 1 Cooling is unavailable during Dec 19 - Jan 1 +in.cooling_unavailable_period Dec 19 - Jan 17 Cooling is unavailable during Dec 19 - Jan 17 +in.cooling_unavailable_period Dec 2 - Dec 15 Cooling is unavailable during Dec 2 - Dec 15 +in.cooling_unavailable_period Dec 2 - Dec 31 Cooling is unavailable during Dec 2 - Dec 31 +in.cooling_unavailable_period Dec 2 - Dec 4 Cooling is unavailable during Dec 2 - Dec 4 +in.cooling_unavailable_period Dec 20 - Dec 22 Cooling is unavailable during Dec 20 - Dec 22 +in.cooling_unavailable_period Dec 20 - Jan 18 Cooling is unavailable during Dec 20 - Jan 18 +in.cooling_unavailable_period Dec 20 - Jan 2 Cooling is unavailable during Dec 20 - Jan 2 +in.cooling_unavailable_period Dec 21 - Dec 21 Cooling is unavailable during Dec 21 - Dec 21 +in.cooling_unavailable_period Dec 21 - Dec 23 Cooling is unavailable during Dec 21 - Dec 23 +in.cooling_unavailable_period Dec 21 - Dec 27 Cooling is unavailable during Dec 21 - Dec 27 +in.cooling_unavailable_period Dec 21 - Jan 19 Cooling is unavailable during Dec 21 - Jan 19 +in.cooling_unavailable_period Dec 22 - Jan 20 Cooling is unavailable during Dec 22 - Jan 20 +in.cooling_unavailable_period Dec 22 - Mar 21 Cooling is unavailable during Dec 22 - Mar 21 +in.cooling_unavailable_period Dec 23 - Jan 21 Cooling is unavailable during Dec 23 - Jan 21 +in.cooling_unavailable_period Dec 23 - Jan 5 Cooling is unavailable during Dec 23 - Jan 5 +in.cooling_unavailable_period Dec 24 - Dec 26 Cooling is unavailable during Dec 24 - Dec 26 +in.cooling_unavailable_period Dec 24 - Jan 22 Cooling is unavailable during Dec 24 - Jan 22 +in.cooling_unavailable_period Dec 24 - Jan 6 Cooling is unavailable during Dec 24 - Jan 6 +in.cooling_unavailable_period Dec 25 - Dec 25 Cooling is unavailable during Dec 25 - Dec 25 +in.cooling_unavailable_period Dec 25 - Dec 27 Cooling is unavailable during Dec 25 - Dec 27 +in.cooling_unavailable_period Dec 27 - Dec 27 Cooling is unavailable during Dec 27 - Dec 27 +in.cooling_unavailable_period Dec 27 - Jan 2 Cooling is unavailable during Dec 27 - Jan 2 +in.cooling_unavailable_period Dec 27 - Jan 25 Cooling is unavailable during Dec 27 - Jan 25 +in.cooling_unavailable_period Dec 28 - Dec 30 Cooling is unavailable during Dec 28 - Dec 30 +in.cooling_unavailable_period Dec 28 - Jan 10 Cooling is unavailable during Dec 28 - Jan 10 +in.cooling_unavailable_period Dec 28 - Jan 3 Cooling is unavailable during Dec 28 - Jan 3 +in.cooling_unavailable_period Dec 29 - Dec 29 Cooling is unavailable during Dec 29 - Dec 29 +in.cooling_unavailable_period Dec 29 - Jan 27 Cooling is unavailable during Dec 29 - Jan 27 +in.cooling_unavailable_period Dec 3 - Dec 16 Cooling is unavailable during Dec 3 - Dec 16 +in.cooling_unavailable_period Dec 3 - Dec 5 Cooling is unavailable during Dec 3 - Dec 5 +in.cooling_unavailable_period Dec 3 - Mar 2 Cooling is unavailable during Dec 3 - Mar 2 +in.cooling_unavailable_period Dec 30 - Dec 30 Cooling is unavailable during Dec 30 - Dec 30 +in.cooling_unavailable_period Dec 30 - Jan 1 Cooling is unavailable during Dec 30 - Jan 1 +in.cooling_unavailable_period Dec 30 - Jan 28 Cooling is unavailable during Dec 30 - Jan 28 +in.cooling_unavailable_period Dec 30 - Mar 29 Cooling is unavailable during Dec 30 - Mar 29 +in.cooling_unavailable_period Dec 31 - Dec 31 Cooling is unavailable during Dec 31 - Dec 31 +in.cooling_unavailable_period Dec 31 - Jan 13 Cooling is unavailable during Dec 31 - Jan 13 +in.cooling_unavailable_period Dec 31 - Jan 6 Cooling is unavailable during Dec 31 - Jan 6 +in.cooling_unavailable_period Dec 4 - Dec 10 Cooling is unavailable during Dec 4 - Dec 10 +in.cooling_unavailable_period Dec 4 - Dec 17 Cooling is unavailable during Dec 4 - Dec 17 +in.cooling_unavailable_period Dec 4 - Dec 4 Cooling is unavailable during Dec 4 - Dec 4 +in.cooling_unavailable_period Dec 4 - Mar 3 Cooling is unavailable during Dec 4 - Mar 3 +in.cooling_unavailable_period Dec 5 - Dec 11 Cooling is unavailable during Dec 5 - Dec 11 +in.cooling_unavailable_period Dec 5 - Dec 5 Cooling is unavailable during Dec 5 - Dec 5 +in.cooling_unavailable_period Dec 5 - Dec 7 Cooling is unavailable during Dec 5 - Dec 7 +in.cooling_unavailable_period Dec 5 - Mar 4 Cooling is unavailable during Dec 5 - Mar 4 +in.cooling_unavailable_period Dec 6 - Dec 12 Cooling is unavailable during Dec 6 - Dec 12 +in.cooling_unavailable_period Dec 6 - Dec 8 Cooling is unavailable during Dec 6 - Dec 8 +in.cooling_unavailable_period Dec 6 - Jan 4 Cooling is unavailable during Dec 6 - Jan 4 +in.cooling_unavailable_period Dec 7 - Dec 13 Cooling is unavailable during Dec 7 - Dec 13 +in.cooling_unavailable_period Dec 7 - Dec 20 Cooling is unavailable during Dec 7 - Dec 20 +in.cooling_unavailable_period Dec 7 - Dec 9 Cooling is unavailable during Dec 7 - Dec 9 +in.cooling_unavailable_period Dec 8 - Dec 10 Cooling is unavailable during Dec 8 - Dec 10 +in.cooling_unavailable_period Dec 8 - Dec 8 Cooling is unavailable during Dec 8 - Dec 8 +in.cooling_unavailable_period Dec 8 - Jan 6 Cooling is unavailable during Dec 8 - Jan 6 +in.cooling_unavailable_period Dec 9 - Dec 11 Cooling is unavailable during Dec 9 - Dec 11 +in.cooling_unavailable_period Dec 9 - Dec 9 Cooling is unavailable during Dec 9 - Dec 9 +in.cooling_unavailable_period Dec 9 - Jan 7 Cooling is unavailable during Dec 9 - Jan 7 +in.cooling_unavailable_period Dec 9 - Mar 8 Cooling is unavailable during Dec 9 - Mar 8 +in.cooling_unavailable_period Feb 1 - Feb 14 Cooling is unavailable during Feb 1 - Feb 14 +in.cooling_unavailable_period Feb 1 - Feb 3 Cooling is unavailable during Feb 1 - Feb 3 +in.cooling_unavailable_period Feb 1 - Feb 7 Cooling is unavailable during Feb 1 - Feb 7 +in.cooling_unavailable_period Feb 1 - Mar 2 Cooling is unavailable during Feb 1 - Mar 2 +in.cooling_unavailable_period Feb 10 - Feb 10 Cooling is unavailable during Feb 10 - Feb 10 +in.cooling_unavailable_period Feb 10 - Feb 12 Cooling is unavailable during Feb 10 - Feb 12 +in.cooling_unavailable_period Feb 10 - Feb 16 Cooling is unavailable during Feb 10 - Feb 16 +in.cooling_unavailable_period Feb 10 - Feb 23 Cooling is unavailable during Feb 10 - Feb 23 +in.cooling_unavailable_period Feb 10 - Mar 11 Cooling is unavailable during Feb 10 - Mar 11 +in.cooling_unavailable_period Feb 11 - Feb 11 Cooling is unavailable during Feb 11 - Feb 11 +in.cooling_unavailable_period Feb 11 - Feb 24 Cooling is unavailable during Feb 11 - Feb 24 +in.cooling_unavailable_period Feb 11 - Mar 12 Cooling is unavailable during Feb 11 - Mar 12 +in.cooling_unavailable_period Feb 11 - May 11 Cooling is unavailable during Feb 11 - May 11 +in.cooling_unavailable_period Feb 12 - Feb 12 Cooling is unavailable during Feb 12 - Feb 12 +in.cooling_unavailable_period Feb 12 - Feb 14 Cooling is unavailable during Feb 12 - Feb 14 +in.cooling_unavailable_period Feb 12 - Feb 25 Cooling is unavailable during Feb 12 - Feb 25 +in.cooling_unavailable_period Feb 12 - Mar 13 Cooling is unavailable during Feb 12 - Mar 13 +in.cooling_unavailable_period Feb 12 - May 12 Cooling is unavailable during Feb 12 - May 12 +in.cooling_unavailable_period Feb 13 - Feb 15 Cooling is unavailable during Feb 13 - Feb 15 +in.cooling_unavailable_period Feb 13 - Feb 26 Cooling is unavailable during Feb 13 - Feb 26 +in.cooling_unavailable_period Feb 13 - Mar 14 Cooling is unavailable during Feb 13 - Mar 14 +in.cooling_unavailable_period Feb 13 - May 13 Cooling is unavailable during Feb 13 - May 13 +in.cooling_unavailable_period Feb 14 - Feb 16 Cooling is unavailable during Feb 14 - Feb 16 +in.cooling_unavailable_period Feb 14 - Feb 20 Cooling is unavailable during Feb 14 - Feb 20 +in.cooling_unavailable_period Feb 14 - Feb 27 Cooling is unavailable during Feb 14 - Feb 27 +in.cooling_unavailable_period Feb 14 - Mar 15 Cooling is unavailable during Feb 14 - Mar 15 +in.cooling_unavailable_period Feb 14 - May 14 Cooling is unavailable during Feb 14 - May 14 +in.cooling_unavailable_period Feb 15 - Feb 17 Cooling is unavailable during Feb 15 - Feb 17 +in.cooling_unavailable_period Feb 15 - Feb 21 Cooling is unavailable during Feb 15 - Feb 21 +in.cooling_unavailable_period Feb 15 - Feb 28 Cooling is unavailable during Feb 15 - Feb 28 +in.cooling_unavailable_period Feb 15 - Mar 16 Cooling is unavailable during Feb 15 - Mar 16 +in.cooling_unavailable_period Feb 15 - May 15 Cooling is unavailable during Feb 15 - May 15 +in.cooling_unavailable_period Feb 16 - Feb 18 Cooling is unavailable during Feb 16 - Feb 18 +in.cooling_unavailable_period Feb 16 - Feb 22 Cooling is unavailable during Feb 16 - Feb 22 +in.cooling_unavailable_period Feb 16 - Mar 1 Cooling is unavailable during Feb 16 - Mar 1 +in.cooling_unavailable_period Feb 17 - Feb 17 Cooling is unavailable during Feb 17 - Feb 17 +in.cooling_unavailable_period Feb 17 - Feb 19 Cooling is unavailable during Feb 17 - Feb 19 +in.cooling_unavailable_period Feb 17 - Mar 18 Cooling is unavailable during Feb 17 - Mar 18 +in.cooling_unavailable_period Feb 17 - Mar 2 Cooling is unavailable during Feb 17 - Mar 2 +in.cooling_unavailable_period Feb 18 - Feb 18 Cooling is unavailable during Feb 18 - Feb 18 +in.cooling_unavailable_period Feb 18 - Feb 20 Cooling is unavailable during Feb 18 - Feb 20 +in.cooling_unavailable_period Feb 18 - Feb 24 Cooling is unavailable during Feb 18 - Feb 24 +in.cooling_unavailable_period Feb 18 - Mar 19 Cooling is unavailable during Feb 18 - Mar 19 +in.cooling_unavailable_period Feb 18 - Mar 3 Cooling is unavailable during Feb 18 - Mar 3 +in.cooling_unavailable_period Feb 18 - May 18 Cooling is unavailable during Feb 18 - May 18 +in.cooling_unavailable_period Feb 19 - Feb 19 Cooling is unavailable during Feb 19 - Feb 19 +in.cooling_unavailable_period Feb 19 - Feb 21 Cooling is unavailable during Feb 19 - Feb 21 +in.cooling_unavailable_period Feb 19 - Feb 25 Cooling is unavailable during Feb 19 - Feb 25 +in.cooling_unavailable_period Feb 19 - Mar 20 Cooling is unavailable during Feb 19 - Mar 20 +in.cooling_unavailable_period Feb 19 - Mar 4 Cooling is unavailable during Feb 19 - Mar 4 +in.cooling_unavailable_period Feb 2 - Feb 2 Cooling is unavailable during Feb 2 - Feb 2 +in.cooling_unavailable_period Feb 2 - Feb 4 Cooling is unavailable during Feb 2 - Feb 4 +in.cooling_unavailable_period Feb 2 - Feb 8 Cooling is unavailable during Feb 2 - Feb 8 +in.cooling_unavailable_period Feb 2 - Mar 3 Cooling is unavailable during Feb 2 - Mar 3 +in.cooling_unavailable_period Feb 20 - Feb 22 Cooling is unavailable during Feb 20 - Feb 22 +in.cooling_unavailable_period Feb 20 - Feb 26 Cooling is unavailable during Feb 20 - Feb 26 +in.cooling_unavailable_period Feb 20 - Mar 5 Cooling is unavailable during Feb 20 - Mar 5 +in.cooling_unavailable_period Feb 21 - Feb 21 Cooling is unavailable during Feb 21 - Feb 21 +in.cooling_unavailable_period Feb 21 - Feb 23 Cooling is unavailable during Feb 21 - Feb 23 +in.cooling_unavailable_period Feb 21 - Feb 27 Cooling is unavailable during Feb 21 - Feb 27 +in.cooling_unavailable_period Feb 21 - Mar 22 Cooling is unavailable during Feb 21 - Mar 22 +in.cooling_unavailable_period Feb 21 - Mar 6 Cooling is unavailable during Feb 21 - Mar 6 +in.cooling_unavailable_period Feb 21 - May 21 Cooling is unavailable during Feb 21 - May 21 +in.cooling_unavailable_period Feb 22 - Feb 22 Cooling is unavailable during Feb 22 - Feb 22 +in.cooling_unavailable_period Feb 22 - Feb 24 Cooling is unavailable during Feb 22 - Feb 24 +in.cooling_unavailable_period Feb 22 - Feb 28 Cooling is unavailable during Feb 22 - Feb 28 +in.cooling_unavailable_period Feb 22 - Mar 23 Cooling is unavailable during Feb 22 - Mar 23 +in.cooling_unavailable_period Feb 22 - Mar 7 Cooling is unavailable during Feb 22 - Mar 7 +in.cooling_unavailable_period Feb 22 - May 22 Cooling is unavailable during Feb 22 - May 22 +in.cooling_unavailable_period Feb 23 - Feb 25 Cooling is unavailable during Feb 23 - Feb 25 +in.cooling_unavailable_period Feb 23 - Mar 1 Cooling is unavailable during Feb 23 - Mar 1 +in.cooling_unavailable_period Feb 23 - Mar 8 Cooling is unavailable during Feb 23 - Mar 8 +in.cooling_unavailable_period Feb 23 - May 23 Cooling is unavailable during Feb 23 - May 23 +in.cooling_unavailable_period Feb 24 - Feb 24 Cooling is unavailable during Feb 24 - Feb 24 +in.cooling_unavailable_period Feb 24 - Feb 26 Cooling is unavailable during Feb 24 - Feb 26 +in.cooling_unavailable_period Feb 24 - Mar 2 Cooling is unavailable during Feb 24 - Mar 2 +in.cooling_unavailable_period Feb 24 - Mar 25 Cooling is unavailable during Feb 24 - Mar 25 +in.cooling_unavailable_period Feb 24 - Mar 9 Cooling is unavailable during Feb 24 - Mar 9 +in.cooling_unavailable_period Feb 24 - May 24 Cooling is unavailable during Feb 24 - May 24 +in.cooling_unavailable_period Feb 25 - Feb 27 Cooling is unavailable during Feb 25 - Feb 27 +in.cooling_unavailable_period Feb 25 - Mar 10 Cooling is unavailable during Feb 25 - Mar 10 +in.cooling_unavailable_period Feb 25 - Mar 26 Cooling is unavailable during Feb 25 - Mar 26 +in.cooling_unavailable_period Feb 25 - Mar 3 Cooling is unavailable during Feb 25 - Mar 3 +in.cooling_unavailable_period Feb 26 - Feb 26 Cooling is unavailable during Feb 26 - Feb 26 +in.cooling_unavailable_period Feb 26 - Feb 28 Cooling is unavailable during Feb 26 - Feb 28 +in.cooling_unavailable_period Feb 26 - Mar 11 Cooling is unavailable during Feb 26 - Mar 11 +in.cooling_unavailable_period Feb 26 - Mar 27 Cooling is unavailable during Feb 26 - Mar 27 +in.cooling_unavailable_period Feb 26 - Mar 4 Cooling is unavailable during Feb 26 - Mar 4 +in.cooling_unavailable_period Feb 26 - May 26 Cooling is unavailable during Feb 26 - May 26 +in.cooling_unavailable_period Feb 27 - Feb 27 Cooling is unavailable during Feb 27 - Feb 27 +in.cooling_unavailable_period Feb 27 - Mar 1 Cooling is unavailable during Feb 27 - Mar 1 +in.cooling_unavailable_period Feb 27 - Mar 12 Cooling is unavailable during Feb 27 - Mar 12 +in.cooling_unavailable_period Feb 27 - Mar 5 Cooling is unavailable during Feb 27 - Mar 5 +in.cooling_unavailable_period Feb 27 - May 27 Cooling is unavailable during Feb 27 - May 27 +in.cooling_unavailable_period Feb 28 - Mar 13 Cooling is unavailable during Feb 28 - Mar 13 +in.cooling_unavailable_period Feb 28 - Mar 2 Cooling is unavailable during Feb 28 - Mar 2 +in.cooling_unavailable_period Feb 28 - Mar 29 Cooling is unavailable during Feb 28 - Mar 29 +in.cooling_unavailable_period Feb 28 - Mar 6 Cooling is unavailable during Feb 28 - Mar 6 +in.cooling_unavailable_period Feb 28 - May 28 Cooling is unavailable during Feb 28 - May 28 +in.cooling_unavailable_period Feb 3 - Feb 16 Cooling is unavailable during Feb 3 - Feb 16 +in.cooling_unavailable_period Feb 3 - Feb 5 Cooling is unavailable during Feb 3 - Feb 5 +in.cooling_unavailable_period Feb 3 - Feb 9 Cooling is unavailable during Feb 3 - Feb 9 +in.cooling_unavailable_period Feb 3 - Mar 4 Cooling is unavailable during Feb 3 - Mar 4 +in.cooling_unavailable_period Feb 3 - May 3 Cooling is unavailable during Feb 3 - May 3 +in.cooling_unavailable_period Feb 4 - Feb 10 Cooling is unavailable during Feb 4 - Feb 10 +in.cooling_unavailable_period Feb 4 - Feb 17 Cooling is unavailable during Feb 4 - Feb 17 +in.cooling_unavailable_period Feb 4 - Feb 4 Cooling is unavailable during Feb 4 - Feb 4 +in.cooling_unavailable_period Feb 4 - Feb 6 Cooling is unavailable during Feb 4 - Feb 6 +in.cooling_unavailable_period Feb 4 - Mar 5 Cooling is unavailable during Feb 4 - Mar 5 +in.cooling_unavailable_period Feb 4 - May 4 Cooling is unavailable during Feb 4 - May 4 +in.cooling_unavailable_period Feb 5 - Feb 11 Cooling is unavailable during Feb 5 - Feb 11 +in.cooling_unavailable_period Feb 5 - Feb 18 Cooling is unavailable during Feb 5 - Feb 18 +in.cooling_unavailable_period Feb 5 - Feb 5 Cooling is unavailable during Feb 5 - Feb 5 +in.cooling_unavailable_period Feb 5 - Feb 7 Cooling is unavailable during Feb 5 - Feb 7 +in.cooling_unavailable_period Feb 5 - Mar 6 Cooling is unavailable during Feb 5 - Mar 6 +in.cooling_unavailable_period Feb 5 - May 5 Cooling is unavailable during Feb 5 - May 5 +in.cooling_unavailable_period Feb 6 - Feb 12 Cooling is unavailable during Feb 6 - Feb 12 +in.cooling_unavailable_period Feb 6 - Feb 19 Cooling is unavailable during Feb 6 - Feb 19 +in.cooling_unavailable_period Feb 6 - Feb 6 Cooling is unavailable during Feb 6 - Feb 6 +in.cooling_unavailable_period Feb 6 - Feb 8 Cooling is unavailable during Feb 6 - Feb 8 +in.cooling_unavailable_period Feb 6 - Mar 7 Cooling is unavailable during Feb 6 - Mar 7 +in.cooling_unavailable_period Feb 7 - Feb 13 Cooling is unavailable during Feb 7 - Feb 13 +in.cooling_unavailable_period Feb 7 - Feb 7 Cooling is unavailable during Feb 7 - Feb 7 +in.cooling_unavailable_period Feb 7 - Feb 9 Cooling is unavailable during Feb 7 - Feb 9 +in.cooling_unavailable_period Feb 7 - Mar 8 Cooling is unavailable during Feb 7 - Mar 8 +in.cooling_unavailable_period Feb 7 - May 7 Cooling is unavailable during Feb 7 - May 7 +in.cooling_unavailable_period Feb 8 - Feb 10 Cooling is unavailable during Feb 8 - Feb 10 +in.cooling_unavailable_period Feb 8 - Feb 14 Cooling is unavailable during Feb 8 - Feb 14 +in.cooling_unavailable_period Feb 8 - Feb 21 Cooling is unavailable during Feb 8 - Feb 21 +in.cooling_unavailable_period Feb 8 - Feb 8 Cooling is unavailable during Feb 8 - Feb 8 +in.cooling_unavailable_period Feb 8 - Mar 9 Cooling is unavailable during Feb 8 - Mar 9 +in.cooling_unavailable_period Feb 8 - May 8 Cooling is unavailable during Feb 8 - May 8 +in.cooling_unavailable_period Feb 9 - Feb 11 Cooling is unavailable during Feb 9 - Feb 11 +in.cooling_unavailable_period Feb 9 - Feb 22 Cooling is unavailable during Feb 9 - Feb 22 +in.cooling_unavailable_period Feb 9 - Feb 9 Cooling is unavailable during Feb 9 - Feb 9 +in.cooling_unavailable_period Feb 9 - Mar 10 Cooling is unavailable during Feb 9 - Mar 10 +in.cooling_unavailable_period Feb 9 - May 9 Cooling is unavailable during Feb 9 - May 9 +in.cooling_unavailable_period Jan 1 - Dec 31 Cooling is unavailable during Jan 1 - Dec 31 +in.cooling_unavailable_period Jan 1 - Jan 3 Cooling is unavailable during Jan 1 - Jan 3 +in.cooling_unavailable_period Jan 1 - Jan 30 Cooling is unavailable during Jan 1 - Jan 30 +in.cooling_unavailable_period Jan 1 - Jan 7 Cooling is unavailable during Jan 1 - Jan 7 +in.cooling_unavailable_period Jan 1 - Mar 31 Cooling is unavailable during Jan 1 - Mar 31 +in.cooling_unavailable_period Jan 10 - Feb 8 Cooling is unavailable during Jan 10 - Feb 8 +in.cooling_unavailable_period Jan 10 - Jan 12 Cooling is unavailable during Jan 10 - Jan 12 +in.cooling_unavailable_period Jan 10 - Jan 23 Cooling is unavailable during Jan 10 - Jan 23 +in.cooling_unavailable_period Jan 11 - Feb 9 Cooling is unavailable during Jan 11 - Feb 9 +in.cooling_unavailable_period Jan 11 - Jan 13 Cooling is unavailable during Jan 11 - Jan 13 +in.cooling_unavailable_period Jan 11 - Jan 17 Cooling is unavailable during Jan 11 - Jan 17 +in.cooling_unavailable_period Jan 12 - Feb 10 Cooling is unavailable during Jan 12 - Feb 10 +in.cooling_unavailable_period Jan 12 - Jan 12 Cooling is unavailable during Jan 12 - Jan 12 +in.cooling_unavailable_period Jan 12 - Jan 14 Cooling is unavailable during Jan 12 - Jan 14 +in.cooling_unavailable_period Jan 12 - Jan 25 Cooling is unavailable during Jan 12 - Jan 25 +in.cooling_unavailable_period Jan 13 - Apr 12 Cooling is unavailable during Jan 13 - Apr 12 +in.cooling_unavailable_period Jan 13 - Jan 13 Cooling is unavailable during Jan 13 - Jan 13 +in.cooling_unavailable_period Jan 13 - Jan 15 Cooling is unavailable during Jan 13 - Jan 15 +in.cooling_unavailable_period Jan 13 - Jan 19 Cooling is unavailable during Jan 13 - Jan 19 +in.cooling_unavailable_period Jan 14 - Apr 13 Cooling is unavailable during Jan 14 - Apr 13 +in.cooling_unavailable_period Jan 14 - Jan 14 Cooling is unavailable during Jan 14 - Jan 14 +in.cooling_unavailable_period Jan 14 - Jan 20 Cooling is unavailable during Jan 14 - Jan 20 +in.cooling_unavailable_period Jan 14 - Jan 27 Cooling is unavailable during Jan 14 - Jan 27 +in.cooling_unavailable_period Jan 15 - Apr 14 Cooling is unavailable during Jan 15 - Apr 14 +in.cooling_unavailable_period Jan 15 - Feb 13 Cooling is unavailable during Jan 15 - Feb 13 +in.cooling_unavailable_period Jan 15 - Jan 17 Cooling is unavailable during Jan 15 - Jan 17 +in.cooling_unavailable_period Jan 15 - Jan 21 Cooling is unavailable during Jan 15 - Jan 21 +in.cooling_unavailable_period Jan 15 - Jan 28 Cooling is unavailable during Jan 15 - Jan 28 +in.cooling_unavailable_period Jan 16 - Jan 18 Cooling is unavailable during Jan 16 - Jan 18 +in.cooling_unavailable_period Jan 16 - Jan 22 Cooling is unavailable during Jan 16 - Jan 22 +in.cooling_unavailable_period Jan 16 - Jan 29 Cooling is unavailable during Jan 16 - Jan 29 +in.cooling_unavailable_period Jan 17 - Apr 16 Cooling is unavailable during Jan 17 - Apr 16 +in.cooling_unavailable_period Jan 17 - Feb 15 Cooling is unavailable during Jan 17 - Feb 15 +in.cooling_unavailable_period Jan 17 - Jan 17 Cooling is unavailable during Jan 17 - Jan 17 +in.cooling_unavailable_period Jan 17 - Jan 19 Cooling is unavailable during Jan 17 - Jan 19 +in.cooling_unavailable_period Jan 17 - Jan 30 Cooling is unavailable during Jan 17 - Jan 30 +in.cooling_unavailable_period Jan 18 - Apr 17 Cooling is unavailable during Jan 18 - Apr 17 +in.cooling_unavailable_period Jan 18 - Feb 16 Cooling is unavailable during Jan 18 - Feb 16 +in.cooling_unavailable_period Jan 18 - Jan 18 Cooling is unavailable during Jan 18 - Jan 18 +in.cooling_unavailable_period Jan 18 - Jan 20 Cooling is unavailable during Jan 18 - Jan 20 +in.cooling_unavailable_period Jan 18 - Jan 24 Cooling is unavailable during Jan 18 - Jan 24 +in.cooling_unavailable_period Jan 19 - Feb 1 Cooling is unavailable during Jan 19 - Feb 1 +in.cooling_unavailable_period Jan 19 - Feb 17 Cooling is unavailable during Jan 19 - Feb 17 +in.cooling_unavailable_period Jan 19 - Jan 21 Cooling is unavailable during Jan 19 - Jan 21 +in.cooling_unavailable_period Jan 19 - Jan 25 Cooling is unavailable during Jan 19 - Jan 25 +in.cooling_unavailable_period Jan 2 - Jan 4 Cooling is unavailable during Jan 2 - Jan 4 +in.cooling_unavailable_period Jan 2 - Jan 8 Cooling is unavailable during Jan 2 - Jan 8 +in.cooling_unavailable_period Jan 20 - Feb 18 Cooling is unavailable during Jan 20 - Feb 18 +in.cooling_unavailable_period Jan 20 - Feb 2 Cooling is unavailable during Jan 20 - Feb 2 +in.cooling_unavailable_period Jan 20 - Jan 22 Cooling is unavailable during Jan 20 - Jan 22 +in.cooling_unavailable_period Jan 20 - Jan 26 Cooling is unavailable during Jan 20 - Jan 26 +in.cooling_unavailable_period Jan 21 - Feb 19 Cooling is unavailable during Jan 21 - Feb 19 +in.cooling_unavailable_period Jan 21 - Jan 27 Cooling is unavailable during Jan 21 - Jan 27 +in.cooling_unavailable_period Jan 22 - Feb 20 Cooling is unavailable during Jan 22 - Feb 20 +in.cooling_unavailable_period Jan 22 - Feb 4 Cooling is unavailable during Jan 22 - Feb 4 +in.cooling_unavailable_period Jan 22 - Jan 24 Cooling is unavailable during Jan 22 - Jan 24 +in.cooling_unavailable_period Jan 22 - Jan 28 Cooling is unavailable during Jan 22 - Jan 28 +in.cooling_unavailable_period Jan 23 - Feb 21 Cooling is unavailable during Jan 23 - Feb 21 +in.cooling_unavailable_period Jan 23 - Jan 23 Cooling is unavailable during Jan 23 - Jan 23 +in.cooling_unavailable_period Jan 23 - Jan 25 Cooling is unavailable during Jan 23 - Jan 25 +in.cooling_unavailable_period Jan 24 - Apr 23 Cooling is unavailable during Jan 24 - Apr 23 +in.cooling_unavailable_period Jan 25 - Apr 24 Cooling is unavailable during Jan 25 - Apr 24 +in.cooling_unavailable_period Jan 25 - Feb 23 Cooling is unavailable during Jan 25 - Feb 23 +in.cooling_unavailable_period Jan 25 - Jan 25 Cooling is unavailable during Jan 25 - Jan 25 +in.cooling_unavailable_period Jan 25 - Jan 27 Cooling is unavailable during Jan 25 - Jan 27 +in.cooling_unavailable_period Jan 26 - Feb 1 Cooling is unavailable during Jan 26 - Feb 1 +in.cooling_unavailable_period Jan 26 - Feb 8 Cooling is unavailable during Jan 26 - Feb 8 +in.cooling_unavailable_period Jan 27 - Apr 26 Cooling is unavailable during Jan 27 - Apr 26 +in.cooling_unavailable_period Jan 27 - Feb 2 Cooling is unavailable during Jan 27 - Feb 2 +in.cooling_unavailable_period Jan 27 - Feb 25 Cooling is unavailable during Jan 27 - Feb 25 +in.cooling_unavailable_period Jan 27 - Feb 9 Cooling is unavailable during Jan 27 - Feb 9 +in.cooling_unavailable_period Jan 28 - Feb 10 Cooling is unavailable during Jan 28 - Feb 10 +in.cooling_unavailable_period Jan 28 - Feb 26 Cooling is unavailable during Jan 28 - Feb 26 +in.cooling_unavailable_period Jan 28 - Feb 3 Cooling is unavailable during Jan 28 - Feb 3 +in.cooling_unavailable_period Jan 28 - Jan 30 Cooling is unavailable during Jan 28 - Jan 30 +in.cooling_unavailable_period Jan 29 - Apr 28 Cooling is unavailable during Jan 29 - Apr 28 +in.cooling_unavailable_period Jan 29 - Feb 11 Cooling is unavailable during Jan 29 - Feb 11 +in.cooling_unavailable_period Jan 29 - Feb 27 Cooling is unavailable during Jan 29 - Feb 27 +in.cooling_unavailable_period Jan 29 - Jan 31 Cooling is unavailable during Jan 29 - Jan 31 +in.cooling_unavailable_period Jan 3 - Apr 2 Cooling is unavailable during Jan 3 - Apr 2 +in.cooling_unavailable_period Jan 3 - Feb 1 Cooling is unavailable during Jan 3 - Feb 1 +in.cooling_unavailable_period Jan 3 - Jan 16 Cooling is unavailable during Jan 3 - Jan 16 +in.cooling_unavailable_period Jan 3 - Jan 5 Cooling is unavailable during Jan 3 - Jan 5 +in.cooling_unavailable_period Jan 30 - Feb 28 Cooling is unavailable during Jan 30 - Feb 28 +in.cooling_unavailable_period Jan 30 - Feb 5 Cooling is unavailable during Jan 30 - Feb 5 +in.cooling_unavailable_period Jan 31 - Apr 30 Cooling is unavailable during Jan 31 - Apr 30 +in.cooling_unavailable_period Jan 31 - Feb 6 Cooling is unavailable during Jan 31 - Feb 6 +in.cooling_unavailable_period Jan 31 - Jan 31 Cooling is unavailable during Jan 31 - Jan 31 +in.cooling_unavailable_period Jan 31 - Mar 1 Cooling is unavailable during Jan 31 - Mar 1 +in.cooling_unavailable_period Jan 4 - Apr 3 Cooling is unavailable during Jan 4 - Apr 3 +in.cooling_unavailable_period Jan 4 - Feb 2 Cooling is unavailable during Jan 4 - Feb 2 +in.cooling_unavailable_period Jan 4 - Jan 6 Cooling is unavailable during Jan 4 - Jan 6 +in.cooling_unavailable_period Jan 5 - Jan 11 Cooling is unavailable during Jan 5 - Jan 11 +in.cooling_unavailable_period Jan 5 - Jan 7 Cooling is unavailable during Jan 5 - Jan 7 +in.cooling_unavailable_period Jan 6 - Apr 5 Cooling is unavailable during Jan 6 - Apr 5 +in.cooling_unavailable_period Jan 6 - Feb 4 Cooling is unavailable during Jan 6 - Feb 4 +in.cooling_unavailable_period Jan 6 - Jan 12 Cooling is unavailable during Jan 6 - Jan 12 +in.cooling_unavailable_period Jan 6 - Jan 19 Cooling is unavailable during Jan 6 - Jan 19 +in.cooling_unavailable_period Jan 6 - Jan 6 Cooling is unavailable during Jan 6 - Jan 6 +in.cooling_unavailable_period Jan 6 - Jan 8 Cooling is unavailable during Jan 6 - Jan 8 +in.cooling_unavailable_period Jan 7 - Feb 5 Cooling is unavailable during Jan 7 - Feb 5 +in.cooling_unavailable_period Jan 7 - Jan 13 Cooling is unavailable during Jan 7 - Jan 13 +in.cooling_unavailable_period Jan 7 - Jan 7 Cooling is unavailable during Jan 7 - Jan 7 +in.cooling_unavailable_period Jan 7 - Jan 9 Cooling is unavailable during Jan 7 - Jan 9 +in.cooling_unavailable_period Jan 8 - Feb 6 Cooling is unavailable during Jan 8 - Feb 6 +in.cooling_unavailable_period Jan 8 - Jan 10 Cooling is unavailable during Jan 8 - Jan 10 +in.cooling_unavailable_period Jan 8 - Jan 21 Cooling is unavailable during Jan 8 - Jan 21 +in.cooling_unavailable_period Jan 8 - Jan 8 Cooling is unavailable during Jan 8 - Jan 8 +in.cooling_unavailable_period Jan 9 - Apr 8 Cooling is unavailable during Jan 9 - Apr 8 +in.cooling_unavailable_period Jan 9 - Jan 11 Cooling is unavailable during Jan 9 - Jan 11 +in.cooling_unavailable_period Jan 9 - Jan 22 Cooling is unavailable during Jan 9 - Jan 22 +in.cooling_unavailable_period Jul 1 - Jul 1 Cooling is unavailable during Jul 1 - Jul 1 +in.cooling_unavailable_period Jul 1 - Jul 14 Cooling is unavailable during Jul 1 - Jul 14 +in.cooling_unavailable_period Jul 1 - Jul 3 Cooling is unavailable during Jul 1 - Jul 3 +in.cooling_unavailable_period Jul 1 - Jul 30 Cooling is unavailable during Jul 1 - Jul 30 +in.cooling_unavailable_period Jul 1 - Jul 7 Cooling is unavailable during Jul 1 - Jul 7 +in.cooling_unavailable_period Jul 1 - Sep 28 Cooling is unavailable during Jul 1 - Sep 28 +in.cooling_unavailable_period Jul 10 - Aug 8 Cooling is unavailable during Jul 10 - Aug 8 +in.cooling_unavailable_period Jul 10 - Jul 10 Cooling is unavailable during Jul 10 - Jul 10 +in.cooling_unavailable_period Jul 10 - Jul 12 Cooling is unavailable during Jul 10 - Jul 12 +in.cooling_unavailable_period Jul 10 - Jul 16 Cooling is unavailable during Jul 10 - Jul 16 +in.cooling_unavailable_period Jul 10 - Jul 23 Cooling is unavailable during Jul 10 - Jul 23 +in.cooling_unavailable_period Jul 10 - Oct 7 Cooling is unavailable during Jul 10 - Oct 7 +in.cooling_unavailable_period Jul 11 - Aug 9 Cooling is unavailable during Jul 11 - Aug 9 +in.cooling_unavailable_period Jul 11 - Jul 11 Cooling is unavailable during Jul 11 - Jul 11 +in.cooling_unavailable_period Jul 11 - Jul 13 Cooling is unavailable during Jul 11 - Jul 13 +in.cooling_unavailable_period Jul 11 - Jul 17 Cooling is unavailable during Jul 11 - Jul 17 +in.cooling_unavailable_period Jul 11 - Jul 24 Cooling is unavailable during Jul 11 - Jul 24 +in.cooling_unavailable_period Jul 11 - Oct 8 Cooling is unavailable during Jul 11 - Oct 8 +in.cooling_unavailable_period Jul 12 - Aug 10 Cooling is unavailable during Jul 12 - Aug 10 +in.cooling_unavailable_period Jul 12 - Jul 12 Cooling is unavailable during Jul 12 - Jul 12 +in.cooling_unavailable_period Jul 12 - Jul 14 Cooling is unavailable during Jul 12 - Jul 14 +in.cooling_unavailable_period Jul 12 - Jul 18 Cooling is unavailable during Jul 12 - Jul 18 +in.cooling_unavailable_period Jul 12 - Jul 25 Cooling is unavailable during Jul 12 - Jul 25 +in.cooling_unavailable_period Jul 12 - Oct 9 Cooling is unavailable during Jul 12 - Oct 9 +in.cooling_unavailable_period Jul 13 - Aug 11 Cooling is unavailable during Jul 13 - Aug 11 +in.cooling_unavailable_period Jul 13 - Jul 13 Cooling is unavailable during Jul 13 - Jul 13 +in.cooling_unavailable_period Jul 13 - Jul 15 Cooling is unavailable during Jul 13 - Jul 15 +in.cooling_unavailable_period Jul 13 - Jul 19 Cooling is unavailable during Jul 13 - Jul 19 +in.cooling_unavailable_period Jul 13 - Jul 26 Cooling is unavailable during Jul 13 - Jul 26 +in.cooling_unavailable_period Jul 13 - Oct 10 Cooling is unavailable during Jul 13 - Oct 10 +in.cooling_unavailable_period Jul 14 - Aug 12 Cooling is unavailable during Jul 14 - Aug 12 +in.cooling_unavailable_period Jul 14 - Jul 14 Cooling is unavailable during Jul 14 - Jul 14 +in.cooling_unavailable_period Jul 14 - Jul 16 Cooling is unavailable during Jul 14 - Jul 16 +in.cooling_unavailable_period Jul 14 - Jul 20 Cooling is unavailable during Jul 14 - Jul 20 +in.cooling_unavailable_period Jul 14 - Jul 27 Cooling is unavailable during Jul 14 - Jul 27 +in.cooling_unavailable_period Jul 14 - Oct 11 Cooling is unavailable during Jul 14 - Oct 11 +in.cooling_unavailable_period Jul 15 - Aug 13 Cooling is unavailable during Jul 15 - Aug 13 +in.cooling_unavailable_period Jul 15 - Jul 15 Cooling is unavailable during Jul 15 - Jul 15 +in.cooling_unavailable_period Jul 15 - Jul 17 Cooling is unavailable during Jul 15 - Jul 17 +in.cooling_unavailable_period Jul 15 - Jul 21 Cooling is unavailable during Jul 15 - Jul 21 +in.cooling_unavailable_period Jul 15 - Jul 28 Cooling is unavailable during Jul 15 - Jul 28 +in.cooling_unavailable_period Jul 15 - Oct 12 Cooling is unavailable during Jul 15 - Oct 12 +in.cooling_unavailable_period Jul 16 - Aug 14 Cooling is unavailable during Jul 16 - Aug 14 +in.cooling_unavailable_period Jul 16 - Jul 16 Cooling is unavailable during Jul 16 - Jul 16 +in.cooling_unavailable_period Jul 16 - Jul 18 Cooling is unavailable during Jul 16 - Jul 18 +in.cooling_unavailable_period Jul 16 - Jul 22 Cooling is unavailable during Jul 16 - Jul 22 +in.cooling_unavailable_period Jul 16 - Jul 29 Cooling is unavailable during Jul 16 - Jul 29 +in.cooling_unavailable_period Jul 16 - Oct 13 Cooling is unavailable during Jul 16 - Oct 13 +in.cooling_unavailable_period Jul 17 - Aug 15 Cooling is unavailable during Jul 17 - Aug 15 +in.cooling_unavailable_period Jul 17 - Jul 17 Cooling is unavailable during Jul 17 - Jul 17 +in.cooling_unavailable_period Jul 17 - Jul 19 Cooling is unavailable during Jul 17 - Jul 19 +in.cooling_unavailable_period Jul 17 - Jul 23 Cooling is unavailable during Jul 17 - Jul 23 +in.cooling_unavailable_period Jul 17 - Jul 30 Cooling is unavailable during Jul 17 - Jul 30 +in.cooling_unavailable_period Jul 17 - Oct 14 Cooling is unavailable during Jul 17 - Oct 14 +in.cooling_unavailable_period Jul 18 - Aug 16 Cooling is unavailable during Jul 18 - Aug 16 +in.cooling_unavailable_period Jul 18 - Jul 18 Cooling is unavailable during Jul 18 - Jul 18 +in.cooling_unavailable_period Jul 18 - Jul 20 Cooling is unavailable during Jul 18 - Jul 20 +in.cooling_unavailable_period Jul 18 - Jul 24 Cooling is unavailable during Jul 18 - Jul 24 +in.cooling_unavailable_period Jul 18 - Jul 31 Cooling is unavailable during Jul 18 - Jul 31 +in.cooling_unavailable_period Jul 18 - Oct 15 Cooling is unavailable during Jul 18 - Oct 15 +in.cooling_unavailable_period Jul 19 - Aug 1 Cooling is unavailable during Jul 19 - Aug 1 +in.cooling_unavailable_period Jul 19 - Aug 17 Cooling is unavailable during Jul 19 - Aug 17 +in.cooling_unavailable_period Jul 19 - Jul 19 Cooling is unavailable during Jul 19 - Jul 19 +in.cooling_unavailable_period Jul 19 - Jul 21 Cooling is unavailable during Jul 19 - Jul 21 +in.cooling_unavailable_period Jul 19 - Jul 25 Cooling is unavailable during Jul 19 - Jul 25 +in.cooling_unavailable_period Jul 19 - Oct 16 Cooling is unavailable during Jul 19 - Oct 16 +in.cooling_unavailable_period Jul 2 - Jul 15 Cooling is unavailable during Jul 2 - Jul 15 +in.cooling_unavailable_period Jul 2 - Jul 2 Cooling is unavailable during Jul 2 - Jul 2 +in.cooling_unavailable_period Jul 2 - Jul 31 Cooling is unavailable during Jul 2 - Jul 31 +in.cooling_unavailable_period Jul 2 - Jul 4 Cooling is unavailable during Jul 2 - Jul 4 +in.cooling_unavailable_period Jul 2 - Jul 8 Cooling is unavailable during Jul 2 - Jul 8 +in.cooling_unavailable_period Jul 2 - Sep 29 Cooling is unavailable during Jul 2 - Sep 29 +in.cooling_unavailable_period Jul 20 - Aug 18 Cooling is unavailable during Jul 20 - Aug 18 +in.cooling_unavailable_period Jul 20 - Aug 2 Cooling is unavailable during Jul 20 - Aug 2 +in.cooling_unavailable_period Jul 20 - Jul 20 Cooling is unavailable during Jul 20 - Jul 20 +in.cooling_unavailable_period Jul 20 - Jul 22 Cooling is unavailable during Jul 20 - Jul 22 +in.cooling_unavailable_period Jul 20 - Jul 26 Cooling is unavailable during Jul 20 - Jul 26 +in.cooling_unavailable_period Jul 20 - Oct 17 Cooling is unavailable during Jul 20 - Oct 17 +in.cooling_unavailable_period Jul 21 - Aug 19 Cooling is unavailable during Jul 21 - Aug 19 +in.cooling_unavailable_period Jul 21 - Aug 3 Cooling is unavailable during Jul 21 - Aug 3 +in.cooling_unavailable_period Jul 21 - Jul 21 Cooling is unavailable during Jul 21 - Jul 21 +in.cooling_unavailable_period Jul 21 - Jul 23 Cooling is unavailable during Jul 21 - Jul 23 +in.cooling_unavailable_period Jul 21 - Jul 27 Cooling is unavailable during Jul 21 - Jul 27 +in.cooling_unavailable_period Jul 21 - Oct 18 Cooling is unavailable during Jul 21 - Oct 18 +in.cooling_unavailable_period Jul 22 - Aug 20 Cooling is unavailable during Jul 22 - Aug 20 +in.cooling_unavailable_period Jul 22 - Aug 4 Cooling is unavailable during Jul 22 - Aug 4 +in.cooling_unavailable_period Jul 22 - Jul 22 Cooling is unavailable during Jul 22 - Jul 22 +in.cooling_unavailable_period Jul 22 - Jul 24 Cooling is unavailable during Jul 22 - Jul 24 +in.cooling_unavailable_period Jul 22 - Jul 28 Cooling is unavailable during Jul 22 - Jul 28 +in.cooling_unavailable_period Jul 22 - Oct 19 Cooling is unavailable during Jul 22 - Oct 19 +in.cooling_unavailable_period Jul 23 - Aug 21 Cooling is unavailable during Jul 23 - Aug 21 +in.cooling_unavailable_period Jul 23 - Aug 5 Cooling is unavailable during Jul 23 - Aug 5 +in.cooling_unavailable_period Jul 23 - Jul 23 Cooling is unavailable during Jul 23 - Jul 23 +in.cooling_unavailable_period Jul 23 - Jul 25 Cooling is unavailable during Jul 23 - Jul 25 +in.cooling_unavailable_period Jul 23 - Jul 29 Cooling is unavailable during Jul 23 - Jul 29 +in.cooling_unavailable_period Jul 23 - Oct 20 Cooling is unavailable during Jul 23 - Oct 20 +in.cooling_unavailable_period Jul 24 - Aug 22 Cooling is unavailable during Jul 24 - Aug 22 +in.cooling_unavailable_period Jul 24 - Aug 6 Cooling is unavailable during Jul 24 - Aug 6 +in.cooling_unavailable_period Jul 24 - Jul 24 Cooling is unavailable during Jul 24 - Jul 24 +in.cooling_unavailable_period Jul 24 - Jul 26 Cooling is unavailable during Jul 24 - Jul 26 +in.cooling_unavailable_period Jul 24 - Jul 30 Cooling is unavailable during Jul 24 - Jul 30 +in.cooling_unavailable_period Jul 24 - Oct 21 Cooling is unavailable during Jul 24 - Oct 21 +in.cooling_unavailable_period Jul 25 - Aug 23 Cooling is unavailable during Jul 25 - Aug 23 +in.cooling_unavailable_period Jul 25 - Aug 7 Cooling is unavailable during Jul 25 - Aug 7 +in.cooling_unavailable_period Jul 25 - Jul 25 Cooling is unavailable during Jul 25 - Jul 25 +in.cooling_unavailable_period Jul 25 - Jul 27 Cooling is unavailable during Jul 25 - Jul 27 +in.cooling_unavailable_period Jul 25 - Jul 31 Cooling is unavailable during Jul 25 - Jul 31 +in.cooling_unavailable_period Jul 25 - Oct 22 Cooling is unavailable during Jul 25 - Oct 22 +in.cooling_unavailable_period Jul 26 - Aug 1 Cooling is unavailable during Jul 26 - Aug 1 +in.cooling_unavailable_period Jul 26 - Aug 24 Cooling is unavailable during Jul 26 - Aug 24 +in.cooling_unavailable_period Jul 26 - Aug 8 Cooling is unavailable during Jul 26 - Aug 8 +in.cooling_unavailable_period Jul 26 - Jul 26 Cooling is unavailable during Jul 26 - Jul 26 +in.cooling_unavailable_period Jul 26 - Jul 28 Cooling is unavailable during Jul 26 - Jul 28 +in.cooling_unavailable_period Jul 26 - Oct 23 Cooling is unavailable during Jul 26 - Oct 23 +in.cooling_unavailable_period Jul 27 - Aug 2 Cooling is unavailable during Jul 27 - Aug 2 +in.cooling_unavailable_period Jul 27 - Aug 25 Cooling is unavailable during Jul 27 - Aug 25 +in.cooling_unavailable_period Jul 27 - Aug 9 Cooling is unavailable during Jul 27 - Aug 9 +in.cooling_unavailable_period Jul 27 - Jul 27 Cooling is unavailable during Jul 27 - Jul 27 +in.cooling_unavailable_period Jul 27 - Jul 29 Cooling is unavailable during Jul 27 - Jul 29 +in.cooling_unavailable_period Jul 27 - Oct 24 Cooling is unavailable during Jul 27 - Oct 24 +in.cooling_unavailable_period Jul 28 - Aug 10 Cooling is unavailable during Jul 28 - Aug 10 +in.cooling_unavailable_period Jul 28 - Aug 26 Cooling is unavailable during Jul 28 - Aug 26 +in.cooling_unavailable_period Jul 28 - Aug 3 Cooling is unavailable during Jul 28 - Aug 3 +in.cooling_unavailable_period Jul 28 - Jul 28 Cooling is unavailable during Jul 28 - Jul 28 +in.cooling_unavailable_period Jul 28 - Jul 30 Cooling is unavailable during Jul 28 - Jul 30 +in.cooling_unavailable_period Jul 28 - Oct 25 Cooling is unavailable during Jul 28 - Oct 25 +in.cooling_unavailable_period Jul 29 - Aug 11 Cooling is unavailable during Jul 29 - Aug 11 +in.cooling_unavailable_period Jul 29 - Aug 27 Cooling is unavailable during Jul 29 - Aug 27 +in.cooling_unavailable_period Jul 29 - Aug 4 Cooling is unavailable during Jul 29 - Aug 4 +in.cooling_unavailable_period Jul 29 - Jul 29 Cooling is unavailable during Jul 29 - Jul 29 +in.cooling_unavailable_period Jul 29 - Jul 31 Cooling is unavailable during Jul 29 - Jul 31 +in.cooling_unavailable_period Jul 29 - Oct 26 Cooling is unavailable during Jul 29 - Oct 26 +in.cooling_unavailable_period Jul 3 - Aug 1 Cooling is unavailable during Jul 3 - Aug 1 +in.cooling_unavailable_period Jul 3 - Jul 16 Cooling is unavailable during Jul 3 - Jul 16 +in.cooling_unavailable_period Jul 3 - Jul 3 Cooling is unavailable during Jul 3 - Jul 3 +in.cooling_unavailable_period Jul 3 - Jul 5 Cooling is unavailable during Jul 3 - Jul 5 +in.cooling_unavailable_period Jul 3 - Jul 9 Cooling is unavailable during Jul 3 - Jul 9 +in.cooling_unavailable_period Jul 3 - Sep 30 Cooling is unavailable during Jul 3 - Sep 30 +in.cooling_unavailable_period Jul 30 - Aug 1 Cooling is unavailable during Jul 30 - Aug 1 +in.cooling_unavailable_period Jul 30 - Aug 12 Cooling is unavailable during Jul 30 - Aug 12 +in.cooling_unavailable_period Jul 30 - Aug 28 Cooling is unavailable during Jul 30 - Aug 28 +in.cooling_unavailable_period Jul 30 - Aug 5 Cooling is unavailable during Jul 30 - Aug 5 +in.cooling_unavailable_period Jul 30 - Jul 30 Cooling is unavailable during Jul 30 - Jul 30 +in.cooling_unavailable_period Jul 30 - Oct 27 Cooling is unavailable during Jul 30 - Oct 27 +in.cooling_unavailable_period Jul 31 - Aug 13 Cooling is unavailable during Jul 31 - Aug 13 +in.cooling_unavailable_period Jul 31 - Aug 2 Cooling is unavailable during Jul 31 - Aug 2 +in.cooling_unavailable_period Jul 31 - Aug 29 Cooling is unavailable during Jul 31 - Aug 29 +in.cooling_unavailable_period Jul 31 - Aug 6 Cooling is unavailable during Jul 31 - Aug 6 +in.cooling_unavailable_period Jul 31 - Jul 31 Cooling is unavailable during Jul 31 - Jul 31 +in.cooling_unavailable_period Jul 31 - Oct 28 Cooling is unavailable during Jul 31 - Oct 28 +in.cooling_unavailable_period Jul 4 - Aug 2 Cooling is unavailable during Jul 4 - Aug 2 +in.cooling_unavailable_period Jul 4 - Jul 10 Cooling is unavailable during Jul 4 - Jul 10 +in.cooling_unavailable_period Jul 4 - Jul 17 Cooling is unavailable during Jul 4 - Jul 17 +in.cooling_unavailable_period Jul 4 - Jul 4 Cooling is unavailable during Jul 4 - Jul 4 +in.cooling_unavailable_period Jul 4 - Jul 6 Cooling is unavailable during Jul 4 - Jul 6 +in.cooling_unavailable_period Jul 4 - Oct 1 Cooling is unavailable during Jul 4 - Oct 1 +in.cooling_unavailable_period Jul 5 - Aug 3 Cooling is unavailable during Jul 5 - Aug 3 +in.cooling_unavailable_period Jul 5 - Jul 11 Cooling is unavailable during Jul 5 - Jul 11 +in.cooling_unavailable_period Jul 5 - Jul 18 Cooling is unavailable during Jul 5 - Jul 18 +in.cooling_unavailable_period Jul 5 - Jul 5 Cooling is unavailable during Jul 5 - Jul 5 +in.cooling_unavailable_period Jul 5 - Jul 7 Cooling is unavailable during Jul 5 - Jul 7 +in.cooling_unavailable_period Jul 5 - Oct 2 Cooling is unavailable during Jul 5 - Oct 2 +in.cooling_unavailable_period Jul 6 - Aug 4 Cooling is unavailable during Jul 6 - Aug 4 +in.cooling_unavailable_period Jul 6 - Jul 12 Cooling is unavailable during Jul 6 - Jul 12 +in.cooling_unavailable_period Jul 6 - Jul 19 Cooling is unavailable during Jul 6 - Jul 19 +in.cooling_unavailable_period Jul 6 - Jul 6 Cooling is unavailable during Jul 6 - Jul 6 +in.cooling_unavailable_period Jul 6 - Jul 8 Cooling is unavailable during Jul 6 - Jul 8 +in.cooling_unavailable_period Jul 6 - Oct 3 Cooling is unavailable during Jul 6 - Oct 3 +in.cooling_unavailable_period Jul 7 - Aug 5 Cooling is unavailable during Jul 7 - Aug 5 +in.cooling_unavailable_period Jul 7 - Jul 13 Cooling is unavailable during Jul 7 - Jul 13 +in.cooling_unavailable_period Jul 7 - Jul 20 Cooling is unavailable during Jul 7 - Jul 20 +in.cooling_unavailable_period Jul 7 - Jul 7 Cooling is unavailable during Jul 7 - Jul 7 +in.cooling_unavailable_period Jul 7 - Jul 9 Cooling is unavailable during Jul 7 - Jul 9 +in.cooling_unavailable_period Jul 7 - Oct 4 Cooling is unavailable during Jul 7 - Oct 4 +in.cooling_unavailable_period Jul 8 - Aug 6 Cooling is unavailable during Jul 8 - Aug 6 +in.cooling_unavailable_period Jul 8 - Jul 10 Cooling is unavailable during Jul 8 - Jul 10 +in.cooling_unavailable_period Jul 8 - Jul 14 Cooling is unavailable during Jul 8 - Jul 14 +in.cooling_unavailable_period Jul 8 - Jul 21 Cooling is unavailable during Jul 8 - Jul 21 +in.cooling_unavailable_period Jul 8 - Jul 8 Cooling is unavailable during Jul 8 - Jul 8 +in.cooling_unavailable_period Jul 8 - Oct 5 Cooling is unavailable during Jul 8 - Oct 5 +in.cooling_unavailable_period Jul 9 - Aug 7 Cooling is unavailable during Jul 9 - Aug 7 +in.cooling_unavailable_period Jul 9 - Jul 11 Cooling is unavailable during Jul 9 - Jul 11 +in.cooling_unavailable_period Jul 9 - Jul 15 Cooling is unavailable during Jul 9 - Jul 15 +in.cooling_unavailable_period Jul 9 - Jul 22 Cooling is unavailable during Jul 9 - Jul 22 +in.cooling_unavailable_period Jul 9 - Jul 9 Cooling is unavailable during Jul 9 - Jul 9 +in.cooling_unavailable_period Jul 9 - Oct 6 Cooling is unavailable during Jul 9 - Oct 6 +in.cooling_unavailable_period Jun 1 - Aug 29 Cooling is unavailable during Jun 1 - Aug 29 +in.cooling_unavailable_period Jun 1 - Jun 1 Cooling is unavailable during Jun 1 - Jun 1 +in.cooling_unavailable_period Jun 1 - Jun 14 Cooling is unavailable during Jun 1 - Jun 14 +in.cooling_unavailable_period Jun 1 - Jun 3 Cooling is unavailable during Jun 1 - Jun 3 +in.cooling_unavailable_period Jun 1 - Jun 30 Cooling is unavailable during Jun 1 - Jun 30 +in.cooling_unavailable_period Jun 1 - Jun 7 Cooling is unavailable during Jun 1 - Jun 7 +in.cooling_unavailable_period Jun 10 - Jul 9 Cooling is unavailable during Jun 10 - Jul 9 +in.cooling_unavailable_period Jun 10 - Jun 10 Cooling is unavailable during Jun 10 - Jun 10 +in.cooling_unavailable_period Jun 10 - Jun 12 Cooling is unavailable during Jun 10 - Jun 12 +in.cooling_unavailable_period Jun 10 - Jun 16 Cooling is unavailable during Jun 10 - Jun 16 +in.cooling_unavailable_period Jun 10 - Jun 23 Cooling is unavailable during Jun 10 - Jun 23 +in.cooling_unavailable_period Jun 10 - Sep 7 Cooling is unavailable during Jun 10 - Sep 7 +in.cooling_unavailable_period Jun 11 - Jul 10 Cooling is unavailable during Jun 11 - Jul 10 +in.cooling_unavailable_period Jun 11 - Jun 11 Cooling is unavailable during Jun 11 - Jun 11 +in.cooling_unavailable_period Jun 11 - Jun 13 Cooling is unavailable during Jun 11 - Jun 13 +in.cooling_unavailable_period Jun 11 - Jun 17 Cooling is unavailable during Jun 11 - Jun 17 +in.cooling_unavailable_period Jun 11 - Jun 24 Cooling is unavailable during Jun 11 - Jun 24 +in.cooling_unavailable_period Jun 11 - Sep 8 Cooling is unavailable during Jun 11 - Sep 8 +in.cooling_unavailable_period Jun 12 - Jul 11 Cooling is unavailable during Jun 12 - Jul 11 +in.cooling_unavailable_period Jun 12 - Jun 12 Cooling is unavailable during Jun 12 - Jun 12 +in.cooling_unavailable_period Jun 12 - Jun 14 Cooling is unavailable during Jun 12 - Jun 14 +in.cooling_unavailable_period Jun 12 - Jun 18 Cooling is unavailable during Jun 12 - Jun 18 +in.cooling_unavailable_period Jun 12 - Jun 25 Cooling is unavailable during Jun 12 - Jun 25 +in.cooling_unavailable_period Jun 12 - Sep 9 Cooling is unavailable during Jun 12 - Sep 9 +in.cooling_unavailable_period Jun 13 - Jul 12 Cooling is unavailable during Jun 13 - Jul 12 +in.cooling_unavailable_period Jun 13 - Jun 13 Cooling is unavailable during Jun 13 - Jun 13 +in.cooling_unavailable_period Jun 13 - Jun 15 Cooling is unavailable during Jun 13 - Jun 15 +in.cooling_unavailable_period Jun 13 - Jun 19 Cooling is unavailable during Jun 13 - Jun 19 +in.cooling_unavailable_period Jun 13 - Jun 26 Cooling is unavailable during Jun 13 - Jun 26 +in.cooling_unavailable_period Jun 13 - Sep 10 Cooling is unavailable during Jun 13 - Sep 10 +in.cooling_unavailable_period Jun 14 - Jul 13 Cooling is unavailable during Jun 14 - Jul 13 +in.cooling_unavailable_period Jun 14 - Jun 14 Cooling is unavailable during Jun 14 - Jun 14 +in.cooling_unavailable_period Jun 14 - Jun 16 Cooling is unavailable during Jun 14 - Jun 16 +in.cooling_unavailable_period Jun 14 - Jun 20 Cooling is unavailable during Jun 14 - Jun 20 +in.cooling_unavailable_period Jun 14 - Jun 27 Cooling is unavailable during Jun 14 - Jun 27 +in.cooling_unavailable_period Jun 14 - Sep 11 Cooling is unavailable during Jun 14 - Sep 11 +in.cooling_unavailable_period Jun 15 - Jul 14 Cooling is unavailable during Jun 15 - Jul 14 +in.cooling_unavailable_period Jun 15 - Jun 15 Cooling is unavailable during Jun 15 - Jun 15 +in.cooling_unavailable_period Jun 15 - Jun 17 Cooling is unavailable during Jun 15 - Jun 17 +in.cooling_unavailable_period Jun 15 - Jun 21 Cooling is unavailable during Jun 15 - Jun 21 +in.cooling_unavailable_period Jun 15 - Jun 28 Cooling is unavailable during Jun 15 - Jun 28 +in.cooling_unavailable_period Jun 15 - Sep 12 Cooling is unavailable during Jun 15 - Sep 12 +in.cooling_unavailable_period Jun 16 - Jul 15 Cooling is unavailable during Jun 16 - Jul 15 +in.cooling_unavailable_period Jun 16 - Jun 16 Cooling is unavailable during Jun 16 - Jun 16 +in.cooling_unavailable_period Jun 16 - Jun 18 Cooling is unavailable during Jun 16 - Jun 18 +in.cooling_unavailable_period Jun 16 - Jun 22 Cooling is unavailable during Jun 16 - Jun 22 +in.cooling_unavailable_period Jun 16 - Jun 29 Cooling is unavailable during Jun 16 - Jun 29 +in.cooling_unavailable_period Jun 16 - Sep 13 Cooling is unavailable during Jun 16 - Sep 13 +in.cooling_unavailable_period Jun 17 - Jul 16 Cooling is unavailable during Jun 17 - Jul 16 +in.cooling_unavailable_period Jun 17 - Jun 17 Cooling is unavailable during Jun 17 - Jun 17 +in.cooling_unavailable_period Jun 17 - Jun 19 Cooling is unavailable during Jun 17 - Jun 19 +in.cooling_unavailable_period Jun 17 - Jun 23 Cooling is unavailable during Jun 17 - Jun 23 +in.cooling_unavailable_period Jun 17 - Jun 30 Cooling is unavailable during Jun 17 - Jun 30 +in.cooling_unavailable_period Jun 17 - Sep 14 Cooling is unavailable during Jun 17 - Sep 14 +in.cooling_unavailable_period Jun 18 - Jul 1 Cooling is unavailable during Jun 18 - Jul 1 +in.cooling_unavailable_period Jun 18 - Jul 17 Cooling is unavailable during Jun 18 - Jul 17 +in.cooling_unavailable_period Jun 18 - Jun 18 Cooling is unavailable during Jun 18 - Jun 18 +in.cooling_unavailable_period Jun 18 - Jun 20 Cooling is unavailable during Jun 18 - Jun 20 +in.cooling_unavailable_period Jun 18 - Jun 24 Cooling is unavailable during Jun 18 - Jun 24 +in.cooling_unavailable_period Jun 18 - Sep 15 Cooling is unavailable during Jun 18 - Sep 15 +in.cooling_unavailable_period Jun 19 - Jul 18 Cooling is unavailable during Jun 19 - Jul 18 +in.cooling_unavailable_period Jun 19 - Jul 2 Cooling is unavailable during Jun 19 - Jul 2 +in.cooling_unavailable_period Jun 19 - Jun 19 Cooling is unavailable during Jun 19 - Jun 19 +in.cooling_unavailable_period Jun 19 - Jun 21 Cooling is unavailable during Jun 19 - Jun 21 +in.cooling_unavailable_period Jun 19 - Jun 25 Cooling is unavailable during Jun 19 - Jun 25 +in.cooling_unavailable_period Jun 19 - Sep 16 Cooling is unavailable during Jun 19 - Sep 16 +in.cooling_unavailable_period Jun 2 - Aug 30 Cooling is unavailable during Jun 2 - Aug 30 +in.cooling_unavailable_period Jun 2 - Jul 1 Cooling is unavailable during Jun 2 - Jul 1 +in.cooling_unavailable_period Jun 2 - Jun 15 Cooling is unavailable during Jun 2 - Jun 15 +in.cooling_unavailable_period Jun 2 - Jun 2 Cooling is unavailable during Jun 2 - Jun 2 +in.cooling_unavailable_period Jun 2 - Jun 4 Cooling is unavailable during Jun 2 - Jun 4 +in.cooling_unavailable_period Jun 2 - Jun 8 Cooling is unavailable during Jun 2 - Jun 8 +in.cooling_unavailable_period Jun 20 - Jul 19 Cooling is unavailable during Jun 20 - Jul 19 +in.cooling_unavailable_period Jun 20 - Jul 3 Cooling is unavailable during Jun 20 - Jul 3 +in.cooling_unavailable_period Jun 20 - Jun 20 Cooling is unavailable during Jun 20 - Jun 20 +in.cooling_unavailable_period Jun 20 - Jun 22 Cooling is unavailable during Jun 20 - Jun 22 +in.cooling_unavailable_period Jun 20 - Jun 26 Cooling is unavailable during Jun 20 - Jun 26 +in.cooling_unavailable_period Jun 20 - Sep 17 Cooling is unavailable during Jun 20 - Sep 17 +in.cooling_unavailable_period Jun 21 - Jul 20 Cooling is unavailable during Jun 21 - Jul 20 +in.cooling_unavailable_period Jun 21 - Jul 4 Cooling is unavailable during Jun 21 - Jul 4 +in.cooling_unavailable_period Jun 21 - Jun 21 Cooling is unavailable during Jun 21 - Jun 21 +in.cooling_unavailable_period Jun 21 - Jun 23 Cooling is unavailable during Jun 21 - Jun 23 +in.cooling_unavailable_period Jun 21 - Jun 27 Cooling is unavailable during Jun 21 - Jun 27 +in.cooling_unavailable_period Jun 21 - Sep 18 Cooling is unavailable during Jun 21 - Sep 18 +in.cooling_unavailable_period Jun 22 - Jul 21 Cooling is unavailable during Jun 22 - Jul 21 +in.cooling_unavailable_period Jun 22 - Jul 5 Cooling is unavailable during Jun 22 - Jul 5 +in.cooling_unavailable_period Jun 22 - Jun 22 Cooling is unavailable during Jun 22 - Jun 22 +in.cooling_unavailable_period Jun 22 - Jun 24 Cooling is unavailable during Jun 22 - Jun 24 +in.cooling_unavailable_period Jun 22 - Jun 28 Cooling is unavailable during Jun 22 - Jun 28 +in.cooling_unavailable_period Jun 22 - Sep 19 Cooling is unavailable during Jun 22 - Sep 19 +in.cooling_unavailable_period Jun 23 - Jul 22 Cooling is unavailable during Jun 23 - Jul 22 +in.cooling_unavailable_period Jun 23 - Jul 6 Cooling is unavailable during Jun 23 - Jul 6 +in.cooling_unavailable_period Jun 23 - Jun 23 Cooling is unavailable during Jun 23 - Jun 23 +in.cooling_unavailable_period Jun 23 - Jun 25 Cooling is unavailable during Jun 23 - Jun 25 +in.cooling_unavailable_period Jun 23 - Jun 29 Cooling is unavailable during Jun 23 - Jun 29 +in.cooling_unavailable_period Jun 23 - Sep 20 Cooling is unavailable during Jun 23 - Sep 20 +in.cooling_unavailable_period Jun 24 - Jul 23 Cooling is unavailable during Jun 24 - Jul 23 +in.cooling_unavailable_period Jun 24 - Jul 7 Cooling is unavailable during Jun 24 - Jul 7 +in.cooling_unavailable_period Jun 24 - Jun 24 Cooling is unavailable during Jun 24 - Jun 24 +in.cooling_unavailable_period Jun 24 - Jun 26 Cooling is unavailable during Jun 24 - Jun 26 +in.cooling_unavailable_period Jun 24 - Jun 30 Cooling is unavailable during Jun 24 - Jun 30 +in.cooling_unavailable_period Jun 24 - Sep 21 Cooling is unavailable during Jun 24 - Sep 21 +in.cooling_unavailable_period Jun 25 - Jul 1 Cooling is unavailable during Jun 25 - Jul 1 +in.cooling_unavailable_period Jun 25 - Jul 24 Cooling is unavailable during Jun 25 - Jul 24 +in.cooling_unavailable_period Jun 25 - Jul 8 Cooling is unavailable during Jun 25 - Jul 8 +in.cooling_unavailable_period Jun 25 - Jun 25 Cooling is unavailable during Jun 25 - Jun 25 +in.cooling_unavailable_period Jun 25 - Jun 27 Cooling is unavailable during Jun 25 - Jun 27 +in.cooling_unavailable_period Jun 25 - Sep 22 Cooling is unavailable during Jun 25 - Sep 22 +in.cooling_unavailable_period Jun 26 - Jul 2 Cooling is unavailable during Jun 26 - Jul 2 +in.cooling_unavailable_period Jun 26 - Jul 25 Cooling is unavailable during Jun 26 - Jul 25 +in.cooling_unavailable_period Jun 26 - Jul 9 Cooling is unavailable during Jun 26 - Jul 9 +in.cooling_unavailable_period Jun 26 - Jun 26 Cooling is unavailable during Jun 26 - Jun 26 +in.cooling_unavailable_period Jun 26 - Jun 28 Cooling is unavailable during Jun 26 - Jun 28 +in.cooling_unavailable_period Jun 26 - Sep 23 Cooling is unavailable during Jun 26 - Sep 23 +in.cooling_unavailable_period Jun 27 - Jul 10 Cooling is unavailable during Jun 27 - Jul 10 +in.cooling_unavailable_period Jun 27 - Jul 26 Cooling is unavailable during Jun 27 - Jul 26 +in.cooling_unavailable_period Jun 27 - Jul 3 Cooling is unavailable during Jun 27 - Jul 3 +in.cooling_unavailable_period Jun 27 - Jun 27 Cooling is unavailable during Jun 27 - Jun 27 +in.cooling_unavailable_period Jun 27 - Jun 29 Cooling is unavailable during Jun 27 - Jun 29 +in.cooling_unavailable_period Jun 27 - Sep 24 Cooling is unavailable during Jun 27 - Sep 24 +in.cooling_unavailable_period Jun 28 - Jul 11 Cooling is unavailable during Jun 28 - Jul 11 +in.cooling_unavailable_period Jun 28 - Jul 27 Cooling is unavailable during Jun 28 - Jul 27 +in.cooling_unavailable_period Jun 28 - Jul 4 Cooling is unavailable during Jun 28 - Jul 4 +in.cooling_unavailable_period Jun 28 - Jun 28 Cooling is unavailable during Jun 28 - Jun 28 +in.cooling_unavailable_period Jun 28 - Jun 30 Cooling is unavailable during Jun 28 - Jun 30 +in.cooling_unavailable_period Jun 28 - Sep 25 Cooling is unavailable during Jun 28 - Sep 25 +in.cooling_unavailable_period Jun 29 - Jul 1 Cooling is unavailable during Jun 29 - Jul 1 +in.cooling_unavailable_period Jun 29 - Jul 12 Cooling is unavailable during Jun 29 - Jul 12 +in.cooling_unavailable_period Jun 29 - Jul 28 Cooling is unavailable during Jun 29 - Jul 28 +in.cooling_unavailable_period Jun 29 - Jul 5 Cooling is unavailable during Jun 29 - Jul 5 +in.cooling_unavailable_period Jun 29 - Jun 29 Cooling is unavailable during Jun 29 - Jun 29 +in.cooling_unavailable_period Jun 29 - Sep 26 Cooling is unavailable during Jun 29 - Sep 26 +in.cooling_unavailable_period Jun 3 - Aug 31 Cooling is unavailable during Jun 3 - Aug 31 +in.cooling_unavailable_period Jun 3 - Jul 2 Cooling is unavailable during Jun 3 - Jul 2 +in.cooling_unavailable_period Jun 3 - Jun 16 Cooling is unavailable during Jun 3 - Jun 16 +in.cooling_unavailable_period Jun 3 - Jun 3 Cooling is unavailable during Jun 3 - Jun 3 +in.cooling_unavailable_period Jun 3 - Jun 5 Cooling is unavailable during Jun 3 - Jun 5 +in.cooling_unavailable_period Jun 3 - Jun 9 Cooling is unavailable during Jun 3 - Jun 9 +in.cooling_unavailable_period Jun 30 - Jul 13 Cooling is unavailable during Jun 30 - Jul 13 +in.cooling_unavailable_period Jun 30 - Jul 2 Cooling is unavailable during Jun 30 - Jul 2 +in.cooling_unavailable_period Jun 30 - Jul 29 Cooling is unavailable during Jun 30 - Jul 29 +in.cooling_unavailable_period Jun 30 - Jul 6 Cooling is unavailable during Jun 30 - Jul 6 +in.cooling_unavailable_period Jun 30 - Jun 30 Cooling is unavailable during Jun 30 - Jun 30 +in.cooling_unavailable_period Jun 30 - Sep 27 Cooling is unavailable during Jun 30 - Sep 27 +in.cooling_unavailable_period Jun 4 - Jul 3 Cooling is unavailable during Jun 4 - Jul 3 +in.cooling_unavailable_period Jun 4 - Jun 10 Cooling is unavailable during Jun 4 - Jun 10 +in.cooling_unavailable_period Jun 4 - Jun 17 Cooling is unavailable during Jun 4 - Jun 17 +in.cooling_unavailable_period Jun 4 - Jun 4 Cooling is unavailable during Jun 4 - Jun 4 +in.cooling_unavailable_period Jun 4 - Jun 6 Cooling is unavailable during Jun 4 - Jun 6 +in.cooling_unavailable_period Jun 4 - Sep 1 Cooling is unavailable during Jun 4 - Sep 1 +in.cooling_unavailable_period Jun 5 - Jul 4 Cooling is unavailable during Jun 5 - Jul 4 +in.cooling_unavailable_period Jun 5 - Jun 11 Cooling is unavailable during Jun 5 - Jun 11 +in.cooling_unavailable_period Jun 5 - Jun 18 Cooling is unavailable during Jun 5 - Jun 18 +in.cooling_unavailable_period Jun 5 - Jun 5 Cooling is unavailable during Jun 5 - Jun 5 +in.cooling_unavailable_period Jun 5 - Jun 7 Cooling is unavailable during Jun 5 - Jun 7 +in.cooling_unavailable_period Jun 5 - Sep 2 Cooling is unavailable during Jun 5 - Sep 2 +in.cooling_unavailable_period Jun 6 - Jul 5 Cooling is unavailable during Jun 6 - Jul 5 +in.cooling_unavailable_period Jun 6 - Jun 12 Cooling is unavailable during Jun 6 - Jun 12 +in.cooling_unavailable_period Jun 6 - Jun 19 Cooling is unavailable during Jun 6 - Jun 19 +in.cooling_unavailable_period Jun 6 - Jun 6 Cooling is unavailable during Jun 6 - Jun 6 +in.cooling_unavailable_period Jun 6 - Jun 8 Cooling is unavailable during Jun 6 - Jun 8 +in.cooling_unavailable_period Jun 6 - Sep 3 Cooling is unavailable during Jun 6 - Sep 3 +in.cooling_unavailable_period Jun 7 - Jul 6 Cooling is unavailable during Jun 7 - Jul 6 +in.cooling_unavailable_period Jun 7 - Jun 13 Cooling is unavailable during Jun 7 - Jun 13 +in.cooling_unavailable_period Jun 7 - Jun 20 Cooling is unavailable during Jun 7 - Jun 20 +in.cooling_unavailable_period Jun 7 - Jun 7 Cooling is unavailable during Jun 7 - Jun 7 +in.cooling_unavailable_period Jun 7 - Jun 9 Cooling is unavailable during Jun 7 - Jun 9 +in.cooling_unavailable_period Jun 7 - Sep 4 Cooling is unavailable during Jun 7 - Sep 4 +in.cooling_unavailable_period Jun 8 - Jul 7 Cooling is unavailable during Jun 8 - Jul 7 +in.cooling_unavailable_period Jun 8 - Jun 10 Cooling is unavailable during Jun 8 - Jun 10 +in.cooling_unavailable_period Jun 8 - Jun 14 Cooling is unavailable during Jun 8 - Jun 14 +in.cooling_unavailable_period Jun 8 - Jun 21 Cooling is unavailable during Jun 8 - Jun 21 +in.cooling_unavailable_period Jun 8 - Jun 8 Cooling is unavailable during Jun 8 - Jun 8 +in.cooling_unavailable_period Jun 8 - Sep 5 Cooling is unavailable during Jun 8 - Sep 5 +in.cooling_unavailable_period Jun 9 - Jul 8 Cooling is unavailable during Jun 9 - Jul 8 +in.cooling_unavailable_period Jun 9 - Jun 11 Cooling is unavailable during Jun 9 - Jun 11 +in.cooling_unavailable_period Jun 9 - Jun 15 Cooling is unavailable during Jun 9 - Jun 15 +in.cooling_unavailable_period Jun 9 - Jun 22 Cooling is unavailable during Jun 9 - Jun 22 +in.cooling_unavailable_period Jun 9 - Jun 9 Cooling is unavailable during Jun 9 - Jun 9 +in.cooling_unavailable_period Jun 9 - Sep 6 Cooling is unavailable during Jun 9 - Sep 6 +in.cooling_unavailable_period Mar 1 - Mar 1 Cooling is unavailable during Mar 1 - Mar 1 +in.cooling_unavailable_period Mar 1 - Mar 14 Cooling is unavailable during Mar 1 - Mar 14 +in.cooling_unavailable_period Mar 1 - Mar 3 Cooling is unavailable during Mar 1 - Mar 3 +in.cooling_unavailable_period Mar 1 - Mar 30 Cooling is unavailable during Mar 1 - Mar 30 +in.cooling_unavailable_period Mar 1 - Mar 7 Cooling is unavailable during Mar 1 - Mar 7 +in.cooling_unavailable_period Mar 1 - May 29 Cooling is unavailable during Mar 1 - May 29 +in.cooling_unavailable_period Mar 10 - Apr 8 Cooling is unavailable during Mar 10 - Apr 8 +in.cooling_unavailable_period Mar 10 - Jun 7 Cooling is unavailable during Mar 10 - Jun 7 +in.cooling_unavailable_period Mar 10 - Mar 10 Cooling is unavailable during Mar 10 - Mar 10 +in.cooling_unavailable_period Mar 10 - Mar 12 Cooling is unavailable during Mar 10 - Mar 12 +in.cooling_unavailable_period Mar 10 - Mar 16 Cooling is unavailable during Mar 10 - Mar 16 +in.cooling_unavailable_period Mar 10 - Mar 23 Cooling is unavailable during Mar 10 - Mar 23 +in.cooling_unavailable_period Mar 11 - Apr 9 Cooling is unavailable during Mar 11 - Apr 9 +in.cooling_unavailable_period Mar 11 - Jun 8 Cooling is unavailable during Mar 11 - Jun 8 +in.cooling_unavailable_period Mar 11 - Mar 13 Cooling is unavailable during Mar 11 - Mar 13 +in.cooling_unavailable_period Mar 11 - Mar 24 Cooling is unavailable during Mar 11 - Mar 24 +in.cooling_unavailable_period Mar 12 - Apr 10 Cooling is unavailable during Mar 12 - Apr 10 +in.cooling_unavailable_period Mar 12 - Jun 9 Cooling is unavailable during Mar 12 - Jun 9 +in.cooling_unavailable_period Mar 12 - Mar 12 Cooling is unavailable during Mar 12 - Mar 12 +in.cooling_unavailable_period Mar 12 - Mar 14 Cooling is unavailable during Mar 12 - Mar 14 +in.cooling_unavailable_period Mar 12 - Mar 18 Cooling is unavailable during Mar 12 - Mar 18 +in.cooling_unavailable_period Mar 12 - Mar 25 Cooling is unavailable during Mar 12 - Mar 25 +in.cooling_unavailable_period Mar 13 - Apr 11 Cooling is unavailable during Mar 13 - Apr 11 +in.cooling_unavailable_period Mar 13 - Mar 13 Cooling is unavailable during Mar 13 - Mar 13 +in.cooling_unavailable_period Mar 13 - Mar 15 Cooling is unavailable during Mar 13 - Mar 15 +in.cooling_unavailable_period Mar 13 - Mar 19 Cooling is unavailable during Mar 13 - Mar 19 +in.cooling_unavailable_period Mar 13 - Mar 26 Cooling is unavailable during Mar 13 - Mar 26 +in.cooling_unavailable_period Mar 14 - Mar 14 Cooling is unavailable during Mar 14 - Mar 14 +in.cooling_unavailable_period Mar 14 - Mar 16 Cooling is unavailable during Mar 14 - Mar 16 +in.cooling_unavailable_period Mar 14 - Mar 20 Cooling is unavailable during Mar 14 - Mar 20 +in.cooling_unavailable_period Mar 14 - Mar 27 Cooling is unavailable during Mar 14 - Mar 27 +in.cooling_unavailable_period Mar 15 - Apr 13 Cooling is unavailable during Mar 15 - Apr 13 +in.cooling_unavailable_period Mar 15 - Jun 12 Cooling is unavailable during Mar 15 - Jun 12 +in.cooling_unavailable_period Mar 15 - Mar 15 Cooling is unavailable during Mar 15 - Mar 15 +in.cooling_unavailable_period Mar 15 - Mar 17 Cooling is unavailable during Mar 15 - Mar 17 +in.cooling_unavailable_period Mar 15 - Mar 21 Cooling is unavailable during Mar 15 - Mar 21 +in.cooling_unavailable_period Mar 16 - Apr 14 Cooling is unavailable during Mar 16 - Apr 14 +in.cooling_unavailable_period Mar 16 - Jun 13 Cooling is unavailable during Mar 16 - Jun 13 +in.cooling_unavailable_period Mar 16 - Mar 16 Cooling is unavailable during Mar 16 - Mar 16 +in.cooling_unavailable_period Mar 16 - Mar 18 Cooling is unavailable during Mar 16 - Mar 18 +in.cooling_unavailable_period Mar 16 - Mar 22 Cooling is unavailable during Mar 16 - Mar 22 +in.cooling_unavailable_period Mar 16 - Mar 29 Cooling is unavailable during Mar 16 - Mar 29 +in.cooling_unavailable_period Mar 17 - Apr 15 Cooling is unavailable during Mar 17 - Apr 15 +in.cooling_unavailable_period Mar 17 - Jun 14 Cooling is unavailable during Mar 17 - Jun 14 +in.cooling_unavailable_period Mar 17 - Mar 17 Cooling is unavailable during Mar 17 - Mar 17 +in.cooling_unavailable_period Mar 17 - Mar 19 Cooling is unavailable during Mar 17 - Mar 19 +in.cooling_unavailable_period Mar 17 - Mar 23 Cooling is unavailable during Mar 17 - Mar 23 +in.cooling_unavailable_period Mar 17 - Mar 30 Cooling is unavailable during Mar 17 - Mar 30 +in.cooling_unavailable_period Mar 18 - Apr 16 Cooling is unavailable during Mar 18 - Apr 16 +in.cooling_unavailable_period Mar 18 - Jun 15 Cooling is unavailable during Mar 18 - Jun 15 +in.cooling_unavailable_period Mar 18 - Mar 20 Cooling is unavailable during Mar 18 - Mar 20 +in.cooling_unavailable_period Mar 18 - Mar 24 Cooling is unavailable during Mar 18 - Mar 24 +in.cooling_unavailable_period Mar 18 - Mar 31 Cooling is unavailable during Mar 18 - Mar 31 +in.cooling_unavailable_period Mar 19 - Apr 1 Cooling is unavailable during Mar 19 - Apr 1 +in.cooling_unavailable_period Mar 19 - Apr 17 Cooling is unavailable during Mar 19 - Apr 17 +in.cooling_unavailable_period Mar 19 - Jun 16 Cooling is unavailable during Mar 19 - Jun 16 +in.cooling_unavailable_period Mar 19 - Mar 21 Cooling is unavailable during Mar 19 - Mar 21 +in.cooling_unavailable_period Mar 19 - Mar 25 Cooling is unavailable during Mar 19 - Mar 25 +in.cooling_unavailable_period Mar 2 - Mar 15 Cooling is unavailable during Mar 2 - Mar 15 +in.cooling_unavailable_period Mar 2 - Mar 2 Cooling is unavailable during Mar 2 - Mar 2 +in.cooling_unavailable_period Mar 2 - Mar 31 Cooling is unavailable during Mar 2 - Mar 31 +in.cooling_unavailable_period Mar 2 - Mar 4 Cooling is unavailable during Mar 2 - Mar 4 +in.cooling_unavailable_period Mar 2 - Mar 8 Cooling is unavailable during Mar 2 - Mar 8 +in.cooling_unavailable_period Mar 2 - May 30 Cooling is unavailable during Mar 2 - May 30 +in.cooling_unavailable_period Mar 20 - Apr 18 Cooling is unavailable during Mar 20 - Apr 18 +in.cooling_unavailable_period Mar 20 - Mar 20 Cooling is unavailable during Mar 20 - Mar 20 +in.cooling_unavailable_period Mar 20 - Mar 22 Cooling is unavailable during Mar 20 - Mar 22 +in.cooling_unavailable_period Mar 20 - Mar 26 Cooling is unavailable during Mar 20 - Mar 26 +in.cooling_unavailable_period Mar 21 - Apr 19 Cooling is unavailable during Mar 21 - Apr 19 +in.cooling_unavailable_period Mar 21 - Jun 18 Cooling is unavailable during Mar 21 - Jun 18 +in.cooling_unavailable_period Mar 21 - Mar 21 Cooling is unavailable during Mar 21 - Mar 21 +in.cooling_unavailable_period Mar 21 - Mar 23 Cooling is unavailable during Mar 21 - Mar 23 +in.cooling_unavailable_period Mar 21 - Mar 27 Cooling is unavailable during Mar 21 - Mar 27 +in.cooling_unavailable_period Mar 22 - Apr 4 Cooling is unavailable during Mar 22 - Apr 4 +in.cooling_unavailable_period Mar 22 - Jun 19 Cooling is unavailable during Mar 22 - Jun 19 +in.cooling_unavailable_period Mar 22 - Mar 22 Cooling is unavailable during Mar 22 - Mar 22 +in.cooling_unavailable_period Mar 22 - Mar 28 Cooling is unavailable during Mar 22 - Mar 28 +in.cooling_unavailable_period Mar 23 - Apr 21 Cooling is unavailable during Mar 23 - Apr 21 +in.cooling_unavailable_period Mar 23 - Apr 5 Cooling is unavailable during Mar 23 - Apr 5 +in.cooling_unavailable_period Mar 23 - Jun 20 Cooling is unavailable during Mar 23 - Jun 20 +in.cooling_unavailable_period Mar 23 - Mar 23 Cooling is unavailable during Mar 23 - Mar 23 +in.cooling_unavailable_period Mar 23 - Mar 25 Cooling is unavailable during Mar 23 - Mar 25 +in.cooling_unavailable_period Mar 23 - Mar 29 Cooling is unavailable during Mar 23 - Mar 29 +in.cooling_unavailable_period Mar 24 - Apr 22 Cooling is unavailable during Mar 24 - Apr 22 +in.cooling_unavailable_period Mar 24 - Apr 6 Cooling is unavailable during Mar 24 - Apr 6 +in.cooling_unavailable_period Mar 24 - Mar 26 Cooling is unavailable during Mar 24 - Mar 26 +in.cooling_unavailable_period Mar 24 - Mar 30 Cooling is unavailable during Mar 24 - Mar 30 +in.cooling_unavailable_period Mar 25 - Apr 23 Cooling is unavailable during Mar 25 - Apr 23 +in.cooling_unavailable_period Mar 25 - Jun 22 Cooling is unavailable during Mar 25 - Jun 22 +in.cooling_unavailable_period Mar 25 - Mar 25 Cooling is unavailable during Mar 25 - Mar 25 +in.cooling_unavailable_period Mar 25 - Mar 27 Cooling is unavailable during Mar 25 - Mar 27 +in.cooling_unavailable_period Mar 25 - Mar 31 Cooling is unavailable during Mar 25 - Mar 31 +in.cooling_unavailable_period Mar 26 - Apr 1 Cooling is unavailable during Mar 26 - Apr 1 +in.cooling_unavailable_period Mar 26 - Apr 24 Cooling is unavailable during Mar 26 - Apr 24 +in.cooling_unavailable_period Mar 26 - Jun 23 Cooling is unavailable during Mar 26 - Jun 23 +in.cooling_unavailable_period Mar 26 - Mar 26 Cooling is unavailable during Mar 26 - Mar 26 +in.cooling_unavailable_period Mar 26 - Mar 28 Cooling is unavailable during Mar 26 - Mar 28 +in.cooling_unavailable_period Mar 27 - Apr 25 Cooling is unavailable during Mar 27 - Apr 25 +in.cooling_unavailable_period Mar 27 - Apr 9 Cooling is unavailable during Mar 27 - Apr 9 +in.cooling_unavailable_period Mar 27 - Mar 27 Cooling is unavailable during Mar 27 - Mar 27 +in.cooling_unavailable_period Mar 27 - Mar 29 Cooling is unavailable during Mar 27 - Mar 29 +in.cooling_unavailable_period Mar 28 - Apr 10 Cooling is unavailable during Mar 28 - Apr 10 +in.cooling_unavailable_period Mar 28 - Apr 26 Cooling is unavailable during Mar 28 - Apr 26 +in.cooling_unavailable_period Mar 28 - Apr 3 Cooling is unavailable during Mar 28 - Apr 3 +in.cooling_unavailable_period Mar 28 - Mar 28 Cooling is unavailable during Mar 28 - Mar 28 +in.cooling_unavailable_period Mar 28 - Mar 30 Cooling is unavailable during Mar 28 - Mar 30 +in.cooling_unavailable_period Mar 29 - Apr 11 Cooling is unavailable during Mar 29 - Apr 11 +in.cooling_unavailable_period Mar 29 - Apr 27 Cooling is unavailable during Mar 29 - Apr 27 +in.cooling_unavailable_period Mar 29 - Jun 26 Cooling is unavailable during Mar 29 - Jun 26 +in.cooling_unavailable_period Mar 29 - Mar 31 Cooling is unavailable during Mar 29 - Mar 31 +in.cooling_unavailable_period Mar 3 - Apr 1 Cooling is unavailable during Mar 3 - Apr 1 +in.cooling_unavailable_period Mar 3 - Mar 16 Cooling is unavailable during Mar 3 - Mar 16 +in.cooling_unavailable_period Mar 3 - Mar 3 Cooling is unavailable during Mar 3 - Mar 3 +in.cooling_unavailable_period Mar 3 - Mar 5 Cooling is unavailable during Mar 3 - Mar 5 +in.cooling_unavailable_period Mar 3 - Mar 9 Cooling is unavailable during Mar 3 - Mar 9 +in.cooling_unavailable_period Mar 3 - May 31 Cooling is unavailable during Mar 3 - May 31 +in.cooling_unavailable_period Mar 30 - Apr 1 Cooling is unavailable during Mar 30 - Apr 1 +in.cooling_unavailable_period Mar 30 - Apr 12 Cooling is unavailable during Mar 30 - Apr 12 +in.cooling_unavailable_period Mar 30 - Apr 28 Cooling is unavailable during Mar 30 - Apr 28 +in.cooling_unavailable_period Mar 30 - Apr 5 Cooling is unavailable during Mar 30 - Apr 5 +in.cooling_unavailable_period Mar 30 - Jun 27 Cooling is unavailable during Mar 30 - Jun 27 +in.cooling_unavailable_period Mar 30 - Mar 30 Cooling is unavailable during Mar 30 - Mar 30 +in.cooling_unavailable_period Mar 31 - Apr 13 Cooling is unavailable during Mar 31 - Apr 13 +in.cooling_unavailable_period Mar 31 - Apr 2 Cooling is unavailable during Mar 31 - Apr 2 +in.cooling_unavailable_period Mar 31 - Apr 29 Cooling is unavailable during Mar 31 - Apr 29 +in.cooling_unavailable_period Mar 31 - Apr 6 Cooling is unavailable during Mar 31 - Apr 6 +in.cooling_unavailable_period Mar 31 - Jun 28 Cooling is unavailable during Mar 31 - Jun 28 +in.cooling_unavailable_period Mar 31 - Mar 31 Cooling is unavailable during Mar 31 - Mar 31 +in.cooling_unavailable_period Mar 4 - Apr 2 Cooling is unavailable during Mar 4 - Apr 2 +in.cooling_unavailable_period Mar 4 - Jun 1 Cooling is unavailable during Mar 4 - Jun 1 +in.cooling_unavailable_period Mar 4 - Mar 10 Cooling is unavailable during Mar 4 - Mar 10 +in.cooling_unavailable_period Mar 4 - Mar 17 Cooling is unavailable during Mar 4 - Mar 17 +in.cooling_unavailable_period Mar 4 - Mar 6 Cooling is unavailable during Mar 4 - Mar 6 +in.cooling_unavailable_period Mar 5 - Apr 3 Cooling is unavailable during Mar 5 - Apr 3 +in.cooling_unavailable_period Mar 5 - Jun 2 Cooling is unavailable during Mar 5 - Jun 2 +in.cooling_unavailable_period Mar 5 - Mar 11 Cooling is unavailable during Mar 5 - Mar 11 +in.cooling_unavailable_period Mar 5 - Mar 18 Cooling is unavailable during Mar 5 - Mar 18 +in.cooling_unavailable_period Mar 5 - Mar 5 Cooling is unavailable during Mar 5 - Mar 5 +in.cooling_unavailable_period Mar 5 - Mar 7 Cooling is unavailable during Mar 5 - Mar 7 +in.cooling_unavailable_period Mar 6 - Apr 4 Cooling is unavailable during Mar 6 - Apr 4 +in.cooling_unavailable_period Mar 6 - Jun 3 Cooling is unavailable during Mar 6 - Jun 3 +in.cooling_unavailable_period Mar 6 - Mar 12 Cooling is unavailable during Mar 6 - Mar 12 +in.cooling_unavailable_period Mar 6 - Mar 19 Cooling is unavailable during Mar 6 - Mar 19 +in.cooling_unavailable_period Mar 6 - Mar 6 Cooling is unavailable during Mar 6 - Mar 6 +in.cooling_unavailable_period Mar 6 - Mar 8 Cooling is unavailable during Mar 6 - Mar 8 +in.cooling_unavailable_period Mar 7 - Apr 5 Cooling is unavailable during Mar 7 - Apr 5 +in.cooling_unavailable_period Mar 7 - Jun 4 Cooling is unavailable during Mar 7 - Jun 4 +in.cooling_unavailable_period Mar 7 - Mar 13 Cooling is unavailable during Mar 7 - Mar 13 +in.cooling_unavailable_period Mar 7 - Mar 20 Cooling is unavailable during Mar 7 - Mar 20 +in.cooling_unavailable_period Mar 7 - Mar 7 Cooling is unavailable during Mar 7 - Mar 7 +in.cooling_unavailable_period Mar 7 - Mar 9 Cooling is unavailable during Mar 7 - Mar 9 +in.cooling_unavailable_period Mar 8 - Apr 6 Cooling is unavailable during Mar 8 - Apr 6 +in.cooling_unavailable_period Mar 8 - Jun 5 Cooling is unavailable during Mar 8 - Jun 5 +in.cooling_unavailable_period Mar 8 - Mar 10 Cooling is unavailable during Mar 8 - Mar 10 +in.cooling_unavailable_period Mar 8 - Mar 14 Cooling is unavailable during Mar 8 - Mar 14 +in.cooling_unavailable_period Mar 8 - Mar 21 Cooling is unavailable during Mar 8 - Mar 21 +in.cooling_unavailable_period Mar 8 - Mar 8 Cooling is unavailable during Mar 8 - Mar 8 +in.cooling_unavailable_period Mar 9 - Apr 7 Cooling is unavailable during Mar 9 - Apr 7 +in.cooling_unavailable_period Mar 9 - Jun 6 Cooling is unavailable during Mar 9 - Jun 6 +in.cooling_unavailable_period Mar 9 - Mar 15 Cooling is unavailable during Mar 9 - Mar 15 +in.cooling_unavailable_period Mar 9 - Mar 22 Cooling is unavailable during Mar 9 - Mar 22 +in.cooling_unavailable_period May 1 - Jul 29 Cooling is unavailable during May 1 - Jul 29 +in.cooling_unavailable_period May 1 - May 1 Cooling is unavailable during May 1 - May 1 +in.cooling_unavailable_period May 1 - May 14 Cooling is unavailable during May 1 - May 14 +in.cooling_unavailable_period May 1 - May 3 Cooling is unavailable during May 1 - May 3 +in.cooling_unavailable_period May 1 - May 30 Cooling is unavailable during May 1 - May 30 +in.cooling_unavailable_period May 1 - May 7 Cooling is unavailable during May 1 - May 7 +in.cooling_unavailable_period May 10 - Aug 7 Cooling is unavailable during May 10 - Aug 7 +in.cooling_unavailable_period May 10 - Jun 8 Cooling is unavailable during May 10 - Jun 8 +in.cooling_unavailable_period May 10 - May 10 Cooling is unavailable during May 10 - May 10 +in.cooling_unavailable_period May 10 - May 12 Cooling is unavailable during May 10 - May 12 +in.cooling_unavailable_period May 10 - May 16 Cooling is unavailable during May 10 - May 16 +in.cooling_unavailable_period May 10 - May 23 Cooling is unavailable during May 10 - May 23 +in.cooling_unavailable_period May 11 - Aug 8 Cooling is unavailable during May 11 - Aug 8 +in.cooling_unavailable_period May 11 - Jun 9 Cooling is unavailable during May 11 - Jun 9 +in.cooling_unavailable_period May 11 - May 11 Cooling is unavailable during May 11 - May 11 +in.cooling_unavailable_period May 11 - May 13 Cooling is unavailable during May 11 - May 13 +in.cooling_unavailable_period May 11 - May 17 Cooling is unavailable during May 11 - May 17 +in.cooling_unavailable_period May 11 - May 24 Cooling is unavailable during May 11 - May 24 +in.cooling_unavailable_period May 12 - Aug 9 Cooling is unavailable during May 12 - Aug 9 +in.cooling_unavailable_period May 12 - Jun 10 Cooling is unavailable during May 12 - Jun 10 +in.cooling_unavailable_period May 12 - May 12 Cooling is unavailable during May 12 - May 12 +in.cooling_unavailable_period May 12 - May 14 Cooling is unavailable during May 12 - May 14 +in.cooling_unavailable_period May 12 - May 18 Cooling is unavailable during May 12 - May 18 +in.cooling_unavailable_period May 12 - May 25 Cooling is unavailable during May 12 - May 25 +in.cooling_unavailable_period May 13 - Aug 10 Cooling is unavailable during May 13 - Aug 10 +in.cooling_unavailable_period May 13 - Jun 11 Cooling is unavailable during May 13 - Jun 11 +in.cooling_unavailable_period May 13 - May 13 Cooling is unavailable during May 13 - May 13 +in.cooling_unavailable_period May 13 - May 15 Cooling is unavailable during May 13 - May 15 +in.cooling_unavailable_period May 13 - May 19 Cooling is unavailable during May 13 - May 19 +in.cooling_unavailable_period May 13 - May 26 Cooling is unavailable during May 13 - May 26 +in.cooling_unavailable_period May 14 - Aug 11 Cooling is unavailable during May 14 - Aug 11 +in.cooling_unavailable_period May 14 - Jun 12 Cooling is unavailable during May 14 - Jun 12 +in.cooling_unavailable_period May 14 - May 14 Cooling is unavailable during May 14 - May 14 +in.cooling_unavailable_period May 14 - May 16 Cooling is unavailable during May 14 - May 16 +in.cooling_unavailable_period May 14 - May 20 Cooling is unavailable during May 14 - May 20 +in.cooling_unavailable_period May 14 - May 27 Cooling is unavailable during May 14 - May 27 +in.cooling_unavailable_period May 15 - Aug 12 Cooling is unavailable during May 15 - Aug 12 +in.cooling_unavailable_period May 15 - Jun 13 Cooling is unavailable during May 15 - Jun 13 +in.cooling_unavailable_period May 15 - May 15 Cooling is unavailable during May 15 - May 15 +in.cooling_unavailable_period May 15 - May 17 Cooling is unavailable during May 15 - May 17 +in.cooling_unavailable_period May 15 - May 21 Cooling is unavailable during May 15 - May 21 +in.cooling_unavailable_period May 15 - May 28 Cooling is unavailable during May 15 - May 28 +in.cooling_unavailable_period May 16 - Aug 13 Cooling is unavailable during May 16 - Aug 13 +in.cooling_unavailable_period May 16 - Jun 14 Cooling is unavailable during May 16 - Jun 14 +in.cooling_unavailable_period May 16 - May 16 Cooling is unavailable during May 16 - May 16 +in.cooling_unavailable_period May 16 - May 18 Cooling is unavailable during May 16 - May 18 +in.cooling_unavailable_period May 16 - May 22 Cooling is unavailable during May 16 - May 22 +in.cooling_unavailable_period May 16 - May 29 Cooling is unavailable during May 16 - May 29 +in.cooling_unavailable_period May 17 - Aug 14 Cooling is unavailable during May 17 - Aug 14 +in.cooling_unavailable_period May 17 - Jun 15 Cooling is unavailable during May 17 - Jun 15 +in.cooling_unavailable_period May 17 - May 17 Cooling is unavailable during May 17 - May 17 +in.cooling_unavailable_period May 17 - May 19 Cooling is unavailable during May 17 - May 19 +in.cooling_unavailable_period May 17 - May 23 Cooling is unavailable during May 17 - May 23 +in.cooling_unavailable_period May 17 - May 30 Cooling is unavailable during May 17 - May 30 +in.cooling_unavailable_period May 18 - Aug 15 Cooling is unavailable during May 18 - Aug 15 +in.cooling_unavailable_period May 18 - Jun 16 Cooling is unavailable during May 18 - Jun 16 +in.cooling_unavailable_period May 18 - May 18 Cooling is unavailable during May 18 - May 18 +in.cooling_unavailable_period May 18 - May 20 Cooling is unavailable during May 18 - May 20 +in.cooling_unavailable_period May 18 - May 24 Cooling is unavailable during May 18 - May 24 +in.cooling_unavailable_period May 18 - May 31 Cooling is unavailable during May 18 - May 31 +in.cooling_unavailable_period May 19 - Aug 16 Cooling is unavailable during May 19 - Aug 16 +in.cooling_unavailable_period May 19 - Jun 1 Cooling is unavailable during May 19 - Jun 1 +in.cooling_unavailable_period May 19 - Jun 17 Cooling is unavailable during May 19 - Jun 17 +in.cooling_unavailable_period May 19 - May 19 Cooling is unavailable during May 19 - May 19 +in.cooling_unavailable_period May 19 - May 21 Cooling is unavailable during May 19 - May 21 +in.cooling_unavailable_period May 19 - May 25 Cooling is unavailable during May 19 - May 25 +in.cooling_unavailable_period May 2 - Jul 30 Cooling is unavailable during May 2 - Jul 30 +in.cooling_unavailable_period May 2 - May 15 Cooling is unavailable during May 2 - May 15 +in.cooling_unavailable_period May 2 - May 2 Cooling is unavailable during May 2 - May 2 +in.cooling_unavailable_period May 2 - May 31 Cooling is unavailable during May 2 - May 31 +in.cooling_unavailable_period May 2 - May 4 Cooling is unavailable during May 2 - May 4 +in.cooling_unavailable_period May 2 - May 8 Cooling is unavailable during May 2 - May 8 +in.cooling_unavailable_period May 20 - Aug 17 Cooling is unavailable during May 20 - Aug 17 +in.cooling_unavailable_period May 20 - Jun 18 Cooling is unavailable during May 20 - Jun 18 +in.cooling_unavailable_period May 20 - Jun 2 Cooling is unavailable during May 20 - Jun 2 +in.cooling_unavailable_period May 20 - May 20 Cooling is unavailable during May 20 - May 20 +in.cooling_unavailable_period May 20 - May 22 Cooling is unavailable during May 20 - May 22 +in.cooling_unavailable_period May 20 - May 26 Cooling is unavailable during May 20 - May 26 +in.cooling_unavailable_period May 21 - Aug 18 Cooling is unavailable during May 21 - Aug 18 +in.cooling_unavailable_period May 21 - Jun 19 Cooling is unavailable during May 21 - Jun 19 +in.cooling_unavailable_period May 21 - Jun 3 Cooling is unavailable during May 21 - Jun 3 +in.cooling_unavailable_period May 21 - May 21 Cooling is unavailable during May 21 - May 21 +in.cooling_unavailable_period May 21 - May 23 Cooling is unavailable during May 21 - May 23 +in.cooling_unavailable_period May 21 - May 27 Cooling is unavailable during May 21 - May 27 +in.cooling_unavailable_period May 22 - Aug 19 Cooling is unavailable during May 22 - Aug 19 +in.cooling_unavailable_period May 22 - Jun 20 Cooling is unavailable during May 22 - Jun 20 +in.cooling_unavailable_period May 22 - Jun 4 Cooling is unavailable during May 22 - Jun 4 +in.cooling_unavailable_period May 22 - May 22 Cooling is unavailable during May 22 - May 22 +in.cooling_unavailable_period May 22 - May 24 Cooling is unavailable during May 22 - May 24 +in.cooling_unavailable_period May 22 - May 28 Cooling is unavailable during May 22 - May 28 +in.cooling_unavailable_period May 23 - Aug 20 Cooling is unavailable during May 23 - Aug 20 +in.cooling_unavailable_period May 23 - Jun 21 Cooling is unavailable during May 23 - Jun 21 +in.cooling_unavailable_period May 23 - Jun 5 Cooling is unavailable during May 23 - Jun 5 +in.cooling_unavailable_period May 23 - May 23 Cooling is unavailable during May 23 - May 23 +in.cooling_unavailable_period May 23 - May 25 Cooling is unavailable during May 23 - May 25 +in.cooling_unavailable_period May 23 - May 29 Cooling is unavailable during May 23 - May 29 +in.cooling_unavailable_period May 24 - Aug 21 Cooling is unavailable during May 24 - Aug 21 +in.cooling_unavailable_period May 24 - Jun 22 Cooling is unavailable during May 24 - Jun 22 +in.cooling_unavailable_period May 24 - Jun 6 Cooling is unavailable during May 24 - Jun 6 +in.cooling_unavailable_period May 24 - May 24 Cooling is unavailable during May 24 - May 24 +in.cooling_unavailable_period May 24 - May 26 Cooling is unavailable during May 24 - May 26 +in.cooling_unavailable_period May 24 - May 30 Cooling is unavailable during May 24 - May 30 +in.cooling_unavailable_period May 25 - Aug 22 Cooling is unavailable during May 25 - Aug 22 +in.cooling_unavailable_period May 25 - Jun 23 Cooling is unavailable during May 25 - Jun 23 +in.cooling_unavailable_period May 25 - Jun 7 Cooling is unavailable during May 25 - Jun 7 +in.cooling_unavailable_period May 25 - May 25 Cooling is unavailable during May 25 - May 25 +in.cooling_unavailable_period May 25 - May 27 Cooling is unavailable during May 25 - May 27 +in.cooling_unavailable_period May 25 - May 31 Cooling is unavailable during May 25 - May 31 +in.cooling_unavailable_period May 26 - Aug 23 Cooling is unavailable during May 26 - Aug 23 +in.cooling_unavailable_period May 26 - Jun 1 Cooling is unavailable during May 26 - Jun 1 +in.cooling_unavailable_period May 26 - Jun 24 Cooling is unavailable during May 26 - Jun 24 +in.cooling_unavailable_period May 26 - Jun 8 Cooling is unavailable during May 26 - Jun 8 +in.cooling_unavailable_period May 26 - May 26 Cooling is unavailable during May 26 - May 26 +in.cooling_unavailable_period May 26 - May 28 Cooling is unavailable during May 26 - May 28 +in.cooling_unavailable_period May 27 - Aug 24 Cooling is unavailable during May 27 - Aug 24 +in.cooling_unavailable_period May 27 - Jun 2 Cooling is unavailable during May 27 - Jun 2 +in.cooling_unavailable_period May 27 - Jun 25 Cooling is unavailable during May 27 - Jun 25 +in.cooling_unavailable_period May 27 - Jun 9 Cooling is unavailable during May 27 - Jun 9 +in.cooling_unavailable_period May 27 - May 27 Cooling is unavailable during May 27 - May 27 +in.cooling_unavailable_period May 27 - May 29 Cooling is unavailable during May 27 - May 29 +in.cooling_unavailable_period May 28 - Aug 25 Cooling is unavailable during May 28 - Aug 25 +in.cooling_unavailable_period May 28 - Jun 10 Cooling is unavailable during May 28 - Jun 10 +in.cooling_unavailable_period May 28 - Jun 26 Cooling is unavailable during May 28 - Jun 26 +in.cooling_unavailable_period May 28 - Jun 3 Cooling is unavailable during May 28 - Jun 3 +in.cooling_unavailable_period May 28 - May 28 Cooling is unavailable during May 28 - May 28 +in.cooling_unavailable_period May 28 - May 30 Cooling is unavailable during May 28 - May 30 +in.cooling_unavailable_period May 29 - Aug 26 Cooling is unavailable during May 29 - Aug 26 +in.cooling_unavailable_period May 29 - Jun 11 Cooling is unavailable during May 29 - Jun 11 +in.cooling_unavailable_period May 29 - Jun 27 Cooling is unavailable during May 29 - Jun 27 +in.cooling_unavailable_period May 29 - Jun 4 Cooling is unavailable during May 29 - Jun 4 +in.cooling_unavailable_period May 29 - May 29 Cooling is unavailable during May 29 - May 29 +in.cooling_unavailable_period May 29 - May 31 Cooling is unavailable during May 29 - May 31 +in.cooling_unavailable_period May 3 - Jul 31 Cooling is unavailable during May 3 - Jul 31 +in.cooling_unavailable_period May 3 - Jun 1 Cooling is unavailable during May 3 - Jun 1 +in.cooling_unavailable_period May 3 - May 16 Cooling is unavailable during May 3 - May 16 +in.cooling_unavailable_period May 3 - May 3 Cooling is unavailable during May 3 - May 3 +in.cooling_unavailable_period May 3 - May 5 Cooling is unavailable during May 3 - May 5 +in.cooling_unavailable_period May 3 - May 9 Cooling is unavailable during May 3 - May 9 +in.cooling_unavailable_period May 30 - Aug 27 Cooling is unavailable during May 30 - Aug 27 +in.cooling_unavailable_period May 30 - Jun 1 Cooling is unavailable during May 30 - Jun 1 +in.cooling_unavailable_period May 30 - Jun 12 Cooling is unavailable during May 30 - Jun 12 +in.cooling_unavailable_period May 30 - Jun 28 Cooling is unavailable during May 30 - Jun 28 +in.cooling_unavailable_period May 30 - Jun 5 Cooling is unavailable during May 30 - Jun 5 +in.cooling_unavailable_period May 30 - May 30 Cooling is unavailable during May 30 - May 30 +in.cooling_unavailable_period May 31 - Aug 28 Cooling is unavailable during May 31 - Aug 28 +in.cooling_unavailable_period May 31 - Jun 13 Cooling is unavailable during May 31 - Jun 13 +in.cooling_unavailable_period May 31 - Jun 2 Cooling is unavailable during May 31 - Jun 2 +in.cooling_unavailable_period May 31 - Jun 29 Cooling is unavailable during May 31 - Jun 29 +in.cooling_unavailable_period May 31 - Jun 6 Cooling is unavailable during May 31 - Jun 6 +in.cooling_unavailable_period May 31 - May 31 Cooling is unavailable during May 31 - May 31 +in.cooling_unavailable_period May 4 - Aug 1 Cooling is unavailable during May 4 - Aug 1 +in.cooling_unavailable_period May 4 - Jun 2 Cooling is unavailable during May 4 - Jun 2 +in.cooling_unavailable_period May 4 - May 10 Cooling is unavailable during May 4 - May 10 +in.cooling_unavailable_period May 4 - May 17 Cooling is unavailable during May 4 - May 17 +in.cooling_unavailable_period May 4 - May 4 Cooling is unavailable during May 4 - May 4 +in.cooling_unavailable_period May 4 - May 6 Cooling is unavailable during May 4 - May 6 +in.cooling_unavailable_period May 5 - Aug 2 Cooling is unavailable during May 5 - Aug 2 +in.cooling_unavailable_period May 5 - Jun 3 Cooling is unavailable during May 5 - Jun 3 +in.cooling_unavailable_period May 5 - May 11 Cooling is unavailable during May 5 - May 11 +in.cooling_unavailable_period May 5 - May 18 Cooling is unavailable during May 5 - May 18 +in.cooling_unavailable_period May 5 - May 5 Cooling is unavailable during May 5 - May 5 +in.cooling_unavailable_period May 5 - May 7 Cooling is unavailable during May 5 - May 7 +in.cooling_unavailable_period May 6 - Aug 3 Cooling is unavailable during May 6 - Aug 3 +in.cooling_unavailable_period May 6 - Jun 4 Cooling is unavailable during May 6 - Jun 4 +in.cooling_unavailable_period May 6 - May 12 Cooling is unavailable during May 6 - May 12 +in.cooling_unavailable_period May 6 - May 19 Cooling is unavailable during May 6 - May 19 +in.cooling_unavailable_period May 6 - May 6 Cooling is unavailable during May 6 - May 6 +in.cooling_unavailable_period May 6 - May 8 Cooling is unavailable during May 6 - May 8 +in.cooling_unavailable_period May 7 - Aug 4 Cooling is unavailable during May 7 - Aug 4 +in.cooling_unavailable_period May 7 - Jun 5 Cooling is unavailable during May 7 - Jun 5 +in.cooling_unavailable_period May 7 - May 13 Cooling is unavailable during May 7 - May 13 +in.cooling_unavailable_period May 7 - May 20 Cooling is unavailable during May 7 - May 20 +in.cooling_unavailable_period May 7 - May 7 Cooling is unavailable during May 7 - May 7 +in.cooling_unavailable_period May 7 - May 9 Cooling is unavailable during May 7 - May 9 +in.cooling_unavailable_period May 8 - Aug 5 Cooling is unavailable during May 8 - Aug 5 +in.cooling_unavailable_period May 8 - Jun 6 Cooling is unavailable during May 8 - Jun 6 +in.cooling_unavailable_period May 8 - May 10 Cooling is unavailable during May 8 - May 10 +in.cooling_unavailable_period May 8 - May 14 Cooling is unavailable during May 8 - May 14 +in.cooling_unavailable_period May 8 - May 21 Cooling is unavailable during May 8 - May 21 +in.cooling_unavailable_period May 8 - May 8 Cooling is unavailable during May 8 - May 8 +in.cooling_unavailable_period May 9 - Aug 6 Cooling is unavailable during May 9 - Aug 6 +in.cooling_unavailable_period May 9 - Jun 7 Cooling is unavailable during May 9 - Jun 7 +in.cooling_unavailable_period May 9 - May 11 Cooling is unavailable during May 9 - May 11 +in.cooling_unavailable_period May 9 - May 15 Cooling is unavailable during May 9 - May 15 +in.cooling_unavailable_period May 9 - May 22 Cooling is unavailable during May 9 - May 22 +in.cooling_unavailable_period May 9 - May 9 Cooling is unavailable during May 9 - May 9 +in.cooling_unavailable_period Never Cooling is unavailable during Never +in.cooling_unavailable_period Nov 1 - Jan 29 Cooling is unavailable during Nov 1 - Jan 29 +in.cooling_unavailable_period Nov 1 - Nov 1 Cooling is unavailable during Nov 1 - Nov 1 +in.cooling_unavailable_period Nov 1 - Nov 14 Cooling is unavailable during Nov 1 - Nov 14 +in.cooling_unavailable_period Nov 1 - Nov 3 Cooling is unavailable during Nov 1 - Nov 3 +in.cooling_unavailable_period Nov 1 - Nov 30 Cooling is unavailable during Nov 1 - Nov 30 +in.cooling_unavailable_period Nov 1 - Nov 7 Cooling is unavailable during Nov 1 - Nov 7 +in.cooling_unavailable_period Nov 10 - Dec 9 Cooling is unavailable during Nov 10 - Dec 9 +in.cooling_unavailable_period Nov 10 - Feb 7 Cooling is unavailable during Nov 10 - Feb 7 +in.cooling_unavailable_period Nov 10 - Nov 10 Cooling is unavailable during Nov 10 - Nov 10 +in.cooling_unavailable_period Nov 10 - Nov 12 Cooling is unavailable during Nov 10 - Nov 12 +in.cooling_unavailable_period Nov 10 - Nov 16 Cooling is unavailable during Nov 10 - Nov 16 +in.cooling_unavailable_period Nov 10 - Nov 23 Cooling is unavailable during Nov 10 - Nov 23 +in.cooling_unavailable_period Nov 11 - Dec 10 Cooling is unavailable during Nov 11 - Dec 10 +in.cooling_unavailable_period Nov 11 - Feb 8 Cooling is unavailable during Nov 11 - Feb 8 +in.cooling_unavailable_period Nov 11 - Nov 11 Cooling is unavailable during Nov 11 - Nov 11 +in.cooling_unavailable_period Nov 11 - Nov 13 Cooling is unavailable during Nov 11 - Nov 13 +in.cooling_unavailable_period Nov 11 - Nov 17 Cooling is unavailable during Nov 11 - Nov 17 +in.cooling_unavailable_period Nov 11 - Nov 24 Cooling is unavailable during Nov 11 - Nov 24 +in.cooling_unavailable_period Nov 12 - Dec 11 Cooling is unavailable during Nov 12 - Dec 11 +in.cooling_unavailable_period Nov 12 - Feb 9 Cooling is unavailable during Nov 12 - Feb 9 +in.cooling_unavailable_period Nov 12 - Nov 12 Cooling is unavailable during Nov 12 - Nov 12 +in.cooling_unavailable_period Nov 12 - Nov 14 Cooling is unavailable during Nov 12 - Nov 14 +in.cooling_unavailable_period Nov 12 - Nov 18 Cooling is unavailable during Nov 12 - Nov 18 +in.cooling_unavailable_period Nov 12 - Nov 25 Cooling is unavailable during Nov 12 - Nov 25 +in.cooling_unavailable_period Nov 13 - Dec 12 Cooling is unavailable during Nov 13 - Dec 12 +in.cooling_unavailable_period Nov 13 - Feb 10 Cooling is unavailable during Nov 13 - Feb 10 +in.cooling_unavailable_period Nov 13 - Nov 13 Cooling is unavailable during Nov 13 - Nov 13 +in.cooling_unavailable_period Nov 13 - Nov 15 Cooling is unavailable during Nov 13 - Nov 15 +in.cooling_unavailable_period Nov 13 - Nov 19 Cooling is unavailable during Nov 13 - Nov 19 +in.cooling_unavailable_period Nov 13 - Nov 26 Cooling is unavailable during Nov 13 - Nov 26 +in.cooling_unavailable_period Nov 14 - Dec 13 Cooling is unavailable during Nov 14 - Dec 13 +in.cooling_unavailable_period Nov 14 - Feb 11 Cooling is unavailable during Nov 14 - Feb 11 +in.cooling_unavailable_period Nov 14 - Nov 14 Cooling is unavailable during Nov 14 - Nov 14 +in.cooling_unavailable_period Nov 14 - Nov 16 Cooling is unavailable during Nov 14 - Nov 16 +in.cooling_unavailable_period Nov 14 - Nov 20 Cooling is unavailable during Nov 14 - Nov 20 +in.cooling_unavailable_period Nov 14 - Nov 27 Cooling is unavailable during Nov 14 - Nov 27 +in.cooling_unavailable_period Nov 15 - Dec 14 Cooling is unavailable during Nov 15 - Dec 14 +in.cooling_unavailable_period Nov 15 - Feb 12 Cooling is unavailable during Nov 15 - Feb 12 +in.cooling_unavailable_period Nov 15 - Nov 15 Cooling is unavailable during Nov 15 - Nov 15 +in.cooling_unavailable_period Nov 15 - Nov 17 Cooling is unavailable during Nov 15 - Nov 17 +in.cooling_unavailable_period Nov 15 - Nov 21 Cooling is unavailable during Nov 15 - Nov 21 +in.cooling_unavailable_period Nov 15 - Nov 28 Cooling is unavailable during Nov 15 - Nov 28 +in.cooling_unavailable_period Nov 16 - Dec 15 Cooling is unavailable during Nov 16 - Dec 15 +in.cooling_unavailable_period Nov 16 - Feb 13 Cooling is unavailable during Nov 16 - Feb 13 +in.cooling_unavailable_period Nov 16 - Nov 16 Cooling is unavailable during Nov 16 - Nov 16 +in.cooling_unavailable_period Nov 16 - Nov 18 Cooling is unavailable during Nov 16 - Nov 18 +in.cooling_unavailable_period Nov 16 - Nov 22 Cooling is unavailable during Nov 16 - Nov 22 +in.cooling_unavailable_period Nov 16 - Nov 29 Cooling is unavailable during Nov 16 - Nov 29 +in.cooling_unavailable_period Nov 17 - Dec 16 Cooling is unavailable during Nov 17 - Dec 16 +in.cooling_unavailable_period Nov 17 - Feb 14 Cooling is unavailable during Nov 17 - Feb 14 +in.cooling_unavailable_period Nov 17 - Nov 17 Cooling is unavailable during Nov 17 - Nov 17 +in.cooling_unavailable_period Nov 17 - Nov 19 Cooling is unavailable during Nov 17 - Nov 19 +in.cooling_unavailable_period Nov 17 - Nov 23 Cooling is unavailable during Nov 17 - Nov 23 +in.cooling_unavailable_period Nov 17 - Nov 30 Cooling is unavailable during Nov 17 - Nov 30 +in.cooling_unavailable_period Nov 18 - Dec 1 Cooling is unavailable during Nov 18 - Dec 1 +in.cooling_unavailable_period Nov 18 - Dec 17 Cooling is unavailable during Nov 18 - Dec 17 +in.cooling_unavailable_period Nov 18 - Feb 15 Cooling is unavailable during Nov 18 - Feb 15 +in.cooling_unavailable_period Nov 18 - Nov 18 Cooling is unavailable during Nov 18 - Nov 18 +in.cooling_unavailable_period Nov 18 - Nov 20 Cooling is unavailable during Nov 18 - Nov 20 +in.cooling_unavailable_period Nov 18 - Nov 24 Cooling is unavailable during Nov 18 - Nov 24 +in.cooling_unavailable_period Nov 19 - Dec 18 Cooling is unavailable during Nov 19 - Dec 18 +in.cooling_unavailable_period Nov 19 - Dec 2 Cooling is unavailable during Nov 19 - Dec 2 +in.cooling_unavailable_period Nov 19 - Feb 16 Cooling is unavailable during Nov 19 - Feb 16 +in.cooling_unavailable_period Nov 19 - Nov 19 Cooling is unavailable during Nov 19 - Nov 19 +in.cooling_unavailable_period Nov 19 - Nov 21 Cooling is unavailable during Nov 19 - Nov 21 +in.cooling_unavailable_period Nov 19 - Nov 25 Cooling is unavailable during Nov 19 - Nov 25 +in.cooling_unavailable_period Nov 2 - Dec 1 Cooling is unavailable during Nov 2 - Dec 1 +in.cooling_unavailable_period Nov 2 - Jan 30 Cooling is unavailable during Nov 2 - Jan 30 +in.cooling_unavailable_period Nov 2 - Nov 15 Cooling is unavailable during Nov 2 - Nov 15 +in.cooling_unavailable_period Nov 2 - Nov 2 Cooling is unavailable during Nov 2 - Nov 2 +in.cooling_unavailable_period Nov 2 - Nov 4 Cooling is unavailable during Nov 2 - Nov 4 +in.cooling_unavailable_period Nov 2 - Nov 8 Cooling is unavailable during Nov 2 - Nov 8 +in.cooling_unavailable_period Nov 20 - Dec 19 Cooling is unavailable during Nov 20 - Dec 19 +in.cooling_unavailable_period Nov 20 - Dec 3 Cooling is unavailable during Nov 20 - Dec 3 +in.cooling_unavailable_period Nov 20 - Feb 17 Cooling is unavailable during Nov 20 - Feb 17 +in.cooling_unavailable_period Nov 20 - Nov 20 Cooling is unavailable during Nov 20 - Nov 20 +in.cooling_unavailable_period Nov 20 - Nov 22 Cooling is unavailable during Nov 20 - Nov 22 +in.cooling_unavailable_period Nov 20 - Nov 26 Cooling is unavailable during Nov 20 - Nov 26 +in.cooling_unavailable_period Nov 21 - Dec 20 Cooling is unavailable during Nov 21 - Dec 20 +in.cooling_unavailable_period Nov 21 - Dec 4 Cooling is unavailable during Nov 21 - Dec 4 +in.cooling_unavailable_period Nov 21 - Feb 18 Cooling is unavailable during Nov 21 - Feb 18 +in.cooling_unavailable_period Nov 21 - Nov 21 Cooling is unavailable during Nov 21 - Nov 21 +in.cooling_unavailable_period Nov 21 - Nov 23 Cooling is unavailable during Nov 21 - Nov 23 +in.cooling_unavailable_period Nov 21 - Nov 27 Cooling is unavailable during Nov 21 - Nov 27 +in.cooling_unavailable_period Nov 22 - Dec 21 Cooling is unavailable during Nov 22 - Dec 21 +in.cooling_unavailable_period Nov 22 - Dec 5 Cooling is unavailable during Nov 22 - Dec 5 +in.cooling_unavailable_period Nov 22 - Feb 19 Cooling is unavailable during Nov 22 - Feb 19 +in.cooling_unavailable_period Nov 22 - Nov 22 Cooling is unavailable during Nov 22 - Nov 22 +in.cooling_unavailable_period Nov 22 - Nov 24 Cooling is unavailable during Nov 22 - Nov 24 +in.cooling_unavailable_period Nov 22 - Nov 28 Cooling is unavailable during Nov 22 - Nov 28 +in.cooling_unavailable_period Nov 23 - Dec 22 Cooling is unavailable during Nov 23 - Dec 22 +in.cooling_unavailable_period Nov 23 - Dec 6 Cooling is unavailable during Nov 23 - Dec 6 +in.cooling_unavailable_period Nov 23 - Feb 20 Cooling is unavailable during Nov 23 - Feb 20 +in.cooling_unavailable_period Nov 23 - Nov 23 Cooling is unavailable during Nov 23 - Nov 23 +in.cooling_unavailable_period Nov 23 - Nov 25 Cooling is unavailable during Nov 23 - Nov 25 +in.cooling_unavailable_period Nov 23 - Nov 29 Cooling is unavailable during Nov 23 - Nov 29 +in.cooling_unavailable_period Nov 24 - Dec 23 Cooling is unavailable during Nov 24 - Dec 23 +in.cooling_unavailable_period Nov 24 - Dec 7 Cooling is unavailable during Nov 24 - Dec 7 +in.cooling_unavailable_period Nov 24 - Feb 21 Cooling is unavailable during Nov 24 - Feb 21 +in.cooling_unavailable_period Nov 24 - Nov 24 Cooling is unavailable during Nov 24 - Nov 24 +in.cooling_unavailable_period Nov 24 - Nov 26 Cooling is unavailable during Nov 24 - Nov 26 +in.cooling_unavailable_period Nov 24 - Nov 30 Cooling is unavailable during Nov 24 - Nov 30 +in.cooling_unavailable_period Nov 25 - Dec 1 Cooling is unavailable during Nov 25 - Dec 1 +in.cooling_unavailable_period Nov 25 - Dec 24 Cooling is unavailable during Nov 25 - Dec 24 +in.cooling_unavailable_period Nov 25 - Dec 8 Cooling is unavailable during Nov 25 - Dec 8 +in.cooling_unavailable_period Nov 25 - Feb 22 Cooling is unavailable during Nov 25 - Feb 22 +in.cooling_unavailable_period Nov 25 - Nov 25 Cooling is unavailable during Nov 25 - Nov 25 +in.cooling_unavailable_period Nov 25 - Nov 27 Cooling is unavailable during Nov 25 - Nov 27 +in.cooling_unavailable_period Nov 26 - Dec 2 Cooling is unavailable during Nov 26 - Dec 2 +in.cooling_unavailable_period Nov 26 - Dec 25 Cooling is unavailable during Nov 26 - Dec 25 +in.cooling_unavailable_period Nov 26 - Dec 9 Cooling is unavailable during Nov 26 - Dec 9 +in.cooling_unavailable_period Nov 26 - Feb 23 Cooling is unavailable during Nov 26 - Feb 23 +in.cooling_unavailable_period Nov 26 - Nov 26 Cooling is unavailable during Nov 26 - Nov 26 +in.cooling_unavailable_period Nov 26 - Nov 28 Cooling is unavailable during Nov 26 - Nov 28 +in.cooling_unavailable_period Nov 27 - Dec 10 Cooling is unavailable during Nov 27 - Dec 10 +in.cooling_unavailable_period Nov 27 - Dec 26 Cooling is unavailable during Nov 27 - Dec 26 +in.cooling_unavailable_period Nov 27 - Dec 3 Cooling is unavailable during Nov 27 - Dec 3 +in.cooling_unavailable_period Nov 27 - Feb 24 Cooling is unavailable during Nov 27 - Feb 24 +in.cooling_unavailable_period Nov 27 - Nov 27 Cooling is unavailable during Nov 27 - Nov 27 +in.cooling_unavailable_period Nov 27 - Nov 29 Cooling is unavailable during Nov 27 - Nov 29 +in.cooling_unavailable_period Nov 28 - Dec 11 Cooling is unavailable during Nov 28 - Dec 11 +in.cooling_unavailable_period Nov 28 - Dec 27 Cooling is unavailable during Nov 28 - Dec 27 +in.cooling_unavailable_period Nov 28 - Dec 4 Cooling is unavailable during Nov 28 - Dec 4 +in.cooling_unavailable_period Nov 28 - Feb 25 Cooling is unavailable during Nov 28 - Feb 25 +in.cooling_unavailable_period Nov 28 - Nov 28 Cooling is unavailable during Nov 28 - Nov 28 +in.cooling_unavailable_period Nov 28 - Nov 30 Cooling is unavailable during Nov 28 - Nov 30 +in.cooling_unavailable_period Nov 29 - Dec 1 Cooling is unavailable during Nov 29 - Dec 1 +in.cooling_unavailable_period Nov 29 - Dec 12 Cooling is unavailable during Nov 29 - Dec 12 +in.cooling_unavailable_period Nov 29 - Dec 28 Cooling is unavailable during Nov 29 - Dec 28 +in.cooling_unavailable_period Nov 29 - Dec 5 Cooling is unavailable during Nov 29 - Dec 5 +in.cooling_unavailable_period Nov 29 - Feb 26 Cooling is unavailable during Nov 29 - Feb 26 +in.cooling_unavailable_period Nov 29 - Nov 29 Cooling is unavailable during Nov 29 - Nov 29 +in.cooling_unavailable_period Nov 3 - Dec 2 Cooling is unavailable during Nov 3 - Dec 2 +in.cooling_unavailable_period Nov 3 - Jan 31 Cooling is unavailable during Nov 3 - Jan 31 +in.cooling_unavailable_period Nov 3 - Nov 16 Cooling is unavailable during Nov 3 - Nov 16 +in.cooling_unavailable_period Nov 3 - Nov 3 Cooling is unavailable during Nov 3 - Nov 3 +in.cooling_unavailable_period Nov 3 - Nov 5 Cooling is unavailable during Nov 3 - Nov 5 +in.cooling_unavailable_period Nov 3 - Nov 9 Cooling is unavailable during Nov 3 - Nov 9 +in.cooling_unavailable_period Nov 30 - Dec 13 Cooling is unavailable during Nov 30 - Dec 13 +in.cooling_unavailable_period Nov 30 - Dec 2 Cooling is unavailable during Nov 30 - Dec 2 +in.cooling_unavailable_period Nov 30 - Dec 29 Cooling is unavailable during Nov 30 - Dec 29 +in.cooling_unavailable_period Nov 30 - Dec 6 Cooling is unavailable during Nov 30 - Dec 6 +in.cooling_unavailable_period Nov 30 - Feb 27 Cooling is unavailable during Nov 30 - Feb 27 +in.cooling_unavailable_period Nov 30 - Nov 30 Cooling is unavailable during Nov 30 - Nov 30 +in.cooling_unavailable_period Nov 4 - Dec 3 Cooling is unavailable during Nov 4 - Dec 3 +in.cooling_unavailable_period Nov 4 - Feb 1 Cooling is unavailable during Nov 4 - Feb 1 +in.cooling_unavailable_period Nov 4 - Nov 10 Cooling is unavailable during Nov 4 - Nov 10 +in.cooling_unavailable_period Nov 4 - Nov 17 Cooling is unavailable during Nov 4 - Nov 17 +in.cooling_unavailable_period Nov 4 - Nov 4 Cooling is unavailable during Nov 4 - Nov 4 +in.cooling_unavailable_period Nov 4 - Nov 6 Cooling is unavailable during Nov 4 - Nov 6 +in.cooling_unavailable_period Nov 5 - Dec 4 Cooling is unavailable during Nov 5 - Dec 4 +in.cooling_unavailable_period Nov 5 - Feb 2 Cooling is unavailable during Nov 5 - Feb 2 +in.cooling_unavailable_period Nov 5 - Nov 18 Cooling is unavailable during Nov 5 - Nov 18 +in.cooling_unavailable_period Nov 5 - Nov 5 Cooling is unavailable during Nov 5 - Nov 5 +in.cooling_unavailable_period Nov 5 - Nov 7 Cooling is unavailable during Nov 5 - Nov 7 +in.cooling_unavailable_period Nov 6 - Dec 5 Cooling is unavailable during Nov 6 - Dec 5 +in.cooling_unavailable_period Nov 6 - Feb 3 Cooling is unavailable during Nov 6 - Feb 3 +in.cooling_unavailable_period Nov 6 - Nov 12 Cooling is unavailable during Nov 6 - Nov 12 +in.cooling_unavailable_period Nov 6 - Nov 19 Cooling is unavailable during Nov 6 - Nov 19 +in.cooling_unavailable_period Nov 6 - Nov 6 Cooling is unavailable during Nov 6 - Nov 6 +in.cooling_unavailable_period Nov 6 - Nov 8 Cooling is unavailable during Nov 6 - Nov 8 +in.cooling_unavailable_period Nov 7 - Dec 6 Cooling is unavailable during Nov 7 - Dec 6 +in.cooling_unavailable_period Nov 7 - Feb 4 Cooling is unavailable during Nov 7 - Feb 4 +in.cooling_unavailable_period Nov 7 - Nov 13 Cooling is unavailable during Nov 7 - Nov 13 +in.cooling_unavailable_period Nov 7 - Nov 20 Cooling is unavailable during Nov 7 - Nov 20 +in.cooling_unavailable_period Nov 7 - Nov 7 Cooling is unavailable during Nov 7 - Nov 7 +in.cooling_unavailable_period Nov 7 - Nov 9 Cooling is unavailable during Nov 7 - Nov 9 +in.cooling_unavailable_period Nov 8 - Dec 7 Cooling is unavailable during Nov 8 - Dec 7 +in.cooling_unavailable_period Nov 8 - Feb 5 Cooling is unavailable during Nov 8 - Feb 5 +in.cooling_unavailable_period Nov 8 - Nov 10 Cooling is unavailable during Nov 8 - Nov 10 +in.cooling_unavailable_period Nov 8 - Nov 14 Cooling is unavailable during Nov 8 - Nov 14 +in.cooling_unavailable_period Nov 8 - Nov 21 Cooling is unavailable during Nov 8 - Nov 21 +in.cooling_unavailable_period Nov 8 - Nov 8 Cooling is unavailable during Nov 8 - Nov 8 +in.cooling_unavailable_period Nov 9 - Dec 8 Cooling is unavailable during Nov 9 - Dec 8 +in.cooling_unavailable_period Nov 9 - Feb 6 Cooling is unavailable during Nov 9 - Feb 6 +in.cooling_unavailable_period Nov 9 - Nov 11 Cooling is unavailable during Nov 9 - Nov 11 +in.cooling_unavailable_period Nov 9 - Nov 15 Cooling is unavailable during Nov 9 - Nov 15 +in.cooling_unavailable_period Nov 9 - Nov 22 Cooling is unavailable during Nov 9 - Nov 22 +in.cooling_unavailable_period Nov 9 - Nov 9 Cooling is unavailable during Nov 9 - Nov 9 +in.cooling_unavailable_period Oct 1 - Dec 29 Cooling is unavailable during Oct 1 - Dec 29 +in.cooling_unavailable_period Oct 1 - Oct 1 Cooling is unavailable during Oct 1 - Oct 1 +in.cooling_unavailable_period Oct 1 - Oct 14 Cooling is unavailable during Oct 1 - Oct 14 +in.cooling_unavailable_period Oct 1 - Oct 3 Cooling is unavailable during Oct 1 - Oct 3 +in.cooling_unavailable_period Oct 1 - Oct 30 Cooling is unavailable during Oct 1 - Oct 30 +in.cooling_unavailable_period Oct 1 - Oct 7 Cooling is unavailable during Oct 1 - Oct 7 +in.cooling_unavailable_period Oct 10 - Jan 7 Cooling is unavailable during Oct 10 - Jan 7 +in.cooling_unavailable_period Oct 10 - Nov 8 Cooling is unavailable during Oct 10 - Nov 8 +in.cooling_unavailable_period Oct 10 - Oct 10 Cooling is unavailable during Oct 10 - Oct 10 +in.cooling_unavailable_period Oct 10 - Oct 12 Cooling is unavailable during Oct 10 - Oct 12 +in.cooling_unavailable_period Oct 10 - Oct 16 Cooling is unavailable during Oct 10 - Oct 16 +in.cooling_unavailable_period Oct 10 - Oct 23 Cooling is unavailable during Oct 10 - Oct 23 +in.cooling_unavailable_period Oct 11 - Jan 8 Cooling is unavailable during Oct 11 - Jan 8 +in.cooling_unavailable_period Oct 11 - Nov 9 Cooling is unavailable during Oct 11 - Nov 9 +in.cooling_unavailable_period Oct 11 - Oct 11 Cooling is unavailable during Oct 11 - Oct 11 +in.cooling_unavailable_period Oct 11 - Oct 13 Cooling is unavailable during Oct 11 - Oct 13 +in.cooling_unavailable_period Oct 11 - Oct 17 Cooling is unavailable during Oct 11 - Oct 17 +in.cooling_unavailable_period Oct 11 - Oct 24 Cooling is unavailable during Oct 11 - Oct 24 +in.cooling_unavailable_period Oct 12 - Jan 9 Cooling is unavailable during Oct 12 - Jan 9 +in.cooling_unavailable_period Oct 12 - Nov 10 Cooling is unavailable during Oct 12 - Nov 10 +in.cooling_unavailable_period Oct 12 - Oct 12 Cooling is unavailable during Oct 12 - Oct 12 +in.cooling_unavailable_period Oct 12 - Oct 14 Cooling is unavailable during Oct 12 - Oct 14 +in.cooling_unavailable_period Oct 12 - Oct 18 Cooling is unavailable during Oct 12 - Oct 18 +in.cooling_unavailable_period Oct 12 - Oct 25 Cooling is unavailable during Oct 12 - Oct 25 +in.cooling_unavailable_period Oct 13 - Jan 10 Cooling is unavailable during Oct 13 - Jan 10 +in.cooling_unavailable_period Oct 13 - Nov 11 Cooling is unavailable during Oct 13 - Nov 11 +in.cooling_unavailable_period Oct 13 - Oct 13 Cooling is unavailable during Oct 13 - Oct 13 +in.cooling_unavailable_period Oct 13 - Oct 15 Cooling is unavailable during Oct 13 - Oct 15 +in.cooling_unavailable_period Oct 13 - Oct 19 Cooling is unavailable during Oct 13 - Oct 19 +in.cooling_unavailable_period Oct 13 - Oct 26 Cooling is unavailable during Oct 13 - Oct 26 +in.cooling_unavailable_period Oct 14 - Jan 11 Cooling is unavailable during Oct 14 - Jan 11 +in.cooling_unavailable_period Oct 14 - Nov 12 Cooling is unavailable during Oct 14 - Nov 12 +in.cooling_unavailable_period Oct 14 - Oct 14 Cooling is unavailable during Oct 14 - Oct 14 +in.cooling_unavailable_period Oct 14 - Oct 16 Cooling is unavailable during Oct 14 - Oct 16 +in.cooling_unavailable_period Oct 14 - Oct 20 Cooling is unavailable during Oct 14 - Oct 20 +in.cooling_unavailable_period Oct 14 - Oct 27 Cooling is unavailable during Oct 14 - Oct 27 +in.cooling_unavailable_period Oct 15 - Jan 12 Cooling is unavailable during Oct 15 - Jan 12 +in.cooling_unavailable_period Oct 15 - Nov 13 Cooling is unavailable during Oct 15 - Nov 13 +in.cooling_unavailable_period Oct 15 - Oct 15 Cooling is unavailable during Oct 15 - Oct 15 +in.cooling_unavailable_period Oct 15 - Oct 17 Cooling is unavailable during Oct 15 - Oct 17 +in.cooling_unavailable_period Oct 15 - Oct 21 Cooling is unavailable during Oct 15 - Oct 21 +in.cooling_unavailable_period Oct 15 - Oct 28 Cooling is unavailable during Oct 15 - Oct 28 +in.cooling_unavailable_period Oct 16 - Jan 13 Cooling is unavailable during Oct 16 - Jan 13 +in.cooling_unavailable_period Oct 16 - Nov 14 Cooling is unavailable during Oct 16 - Nov 14 +in.cooling_unavailable_period Oct 16 - Oct 16 Cooling is unavailable during Oct 16 - Oct 16 +in.cooling_unavailable_period Oct 16 - Oct 18 Cooling is unavailable during Oct 16 - Oct 18 +in.cooling_unavailable_period Oct 16 - Oct 22 Cooling is unavailable during Oct 16 - Oct 22 +in.cooling_unavailable_period Oct 16 - Oct 29 Cooling is unavailable during Oct 16 - Oct 29 +in.cooling_unavailable_period Oct 17 - Jan 14 Cooling is unavailable during Oct 17 - Jan 14 +in.cooling_unavailable_period Oct 17 - Nov 15 Cooling is unavailable during Oct 17 - Nov 15 +in.cooling_unavailable_period Oct 17 - Oct 17 Cooling is unavailable during Oct 17 - Oct 17 +in.cooling_unavailable_period Oct 17 - Oct 19 Cooling is unavailable during Oct 17 - Oct 19 +in.cooling_unavailable_period Oct 17 - Oct 23 Cooling is unavailable during Oct 17 - Oct 23 +in.cooling_unavailable_period Oct 17 - Oct 30 Cooling is unavailable during Oct 17 - Oct 30 +in.cooling_unavailable_period Oct 18 - Jan 15 Cooling is unavailable during Oct 18 - Jan 15 +in.cooling_unavailable_period Oct 18 - Nov 16 Cooling is unavailable during Oct 18 - Nov 16 +in.cooling_unavailable_period Oct 18 - Oct 18 Cooling is unavailable during Oct 18 - Oct 18 +in.cooling_unavailable_period Oct 18 - Oct 20 Cooling is unavailable during Oct 18 - Oct 20 +in.cooling_unavailable_period Oct 18 - Oct 24 Cooling is unavailable during Oct 18 - Oct 24 +in.cooling_unavailable_period Oct 18 - Oct 31 Cooling is unavailable during Oct 18 - Oct 31 +in.cooling_unavailable_period Oct 19 - Jan 16 Cooling is unavailable during Oct 19 - Jan 16 +in.cooling_unavailable_period Oct 19 - Nov 1 Cooling is unavailable during Oct 19 - Nov 1 +in.cooling_unavailable_period Oct 19 - Nov 17 Cooling is unavailable during Oct 19 - Nov 17 +in.cooling_unavailable_period Oct 19 - Oct 19 Cooling is unavailable during Oct 19 - Oct 19 +in.cooling_unavailable_period Oct 19 - Oct 21 Cooling is unavailable during Oct 19 - Oct 21 +in.cooling_unavailable_period Oct 19 - Oct 25 Cooling is unavailable during Oct 19 - Oct 25 +in.cooling_unavailable_period Oct 2 - Dec 30 Cooling is unavailable during Oct 2 - Dec 30 +in.cooling_unavailable_period Oct 2 - Oct 15 Cooling is unavailable during Oct 2 - Oct 15 +in.cooling_unavailable_period Oct 2 - Oct 2 Cooling is unavailable during Oct 2 - Oct 2 +in.cooling_unavailable_period Oct 2 - Oct 31 Cooling is unavailable during Oct 2 - Oct 31 +in.cooling_unavailable_period Oct 2 - Oct 4 Cooling is unavailable during Oct 2 - Oct 4 +in.cooling_unavailable_period Oct 2 - Oct 8 Cooling is unavailable during Oct 2 - Oct 8 +in.cooling_unavailable_period Oct 20 - Jan 17 Cooling is unavailable during Oct 20 - Jan 17 +in.cooling_unavailable_period Oct 20 - Nov 18 Cooling is unavailable during Oct 20 - Nov 18 +in.cooling_unavailable_period Oct 20 - Nov 2 Cooling is unavailable during Oct 20 - Nov 2 +in.cooling_unavailable_period Oct 20 - Oct 20 Cooling is unavailable during Oct 20 - Oct 20 +in.cooling_unavailable_period Oct 20 - Oct 22 Cooling is unavailable during Oct 20 - Oct 22 +in.cooling_unavailable_period Oct 20 - Oct 26 Cooling is unavailable during Oct 20 - Oct 26 +in.cooling_unavailable_period Oct 21 - Jan 18 Cooling is unavailable during Oct 21 - Jan 18 +in.cooling_unavailable_period Oct 21 - Nov 19 Cooling is unavailable during Oct 21 - Nov 19 +in.cooling_unavailable_period Oct 21 - Nov 3 Cooling is unavailable during Oct 21 - Nov 3 +in.cooling_unavailable_period Oct 21 - Oct 21 Cooling is unavailable during Oct 21 - Oct 21 +in.cooling_unavailable_period Oct 21 - Oct 23 Cooling is unavailable during Oct 21 - Oct 23 +in.cooling_unavailable_period Oct 21 - Oct 27 Cooling is unavailable during Oct 21 - Oct 27 +in.cooling_unavailable_period Oct 22 - Jan 19 Cooling is unavailable during Oct 22 - Jan 19 +in.cooling_unavailable_period Oct 22 - Nov 20 Cooling is unavailable during Oct 22 - Nov 20 +in.cooling_unavailable_period Oct 22 - Nov 4 Cooling is unavailable during Oct 22 - Nov 4 +in.cooling_unavailable_period Oct 22 - Oct 22 Cooling is unavailable during Oct 22 - Oct 22 +in.cooling_unavailable_period Oct 22 - Oct 24 Cooling is unavailable during Oct 22 - Oct 24 +in.cooling_unavailable_period Oct 22 - Oct 28 Cooling is unavailable during Oct 22 - Oct 28 +in.cooling_unavailable_period Oct 23 - Jan 20 Cooling is unavailable during Oct 23 - Jan 20 +in.cooling_unavailable_period Oct 23 - Nov 21 Cooling is unavailable during Oct 23 - Nov 21 +in.cooling_unavailable_period Oct 23 - Nov 5 Cooling is unavailable during Oct 23 - Nov 5 +in.cooling_unavailable_period Oct 23 - Oct 23 Cooling is unavailable during Oct 23 - Oct 23 +in.cooling_unavailable_period Oct 23 - Oct 25 Cooling is unavailable during Oct 23 - Oct 25 +in.cooling_unavailable_period Oct 23 - Oct 29 Cooling is unavailable during Oct 23 - Oct 29 +in.cooling_unavailable_period Oct 24 - Jan 21 Cooling is unavailable during Oct 24 - Jan 21 +in.cooling_unavailable_period Oct 24 - Nov 22 Cooling is unavailable during Oct 24 - Nov 22 +in.cooling_unavailable_period Oct 24 - Nov 6 Cooling is unavailable during Oct 24 - Nov 6 +in.cooling_unavailable_period Oct 24 - Oct 24 Cooling is unavailable during Oct 24 - Oct 24 +in.cooling_unavailable_period Oct 24 - Oct 26 Cooling is unavailable during Oct 24 - Oct 26 +in.cooling_unavailable_period Oct 24 - Oct 30 Cooling is unavailable during Oct 24 - Oct 30 +in.cooling_unavailable_period Oct 25 - Jan 22 Cooling is unavailable during Oct 25 - Jan 22 +in.cooling_unavailable_period Oct 25 - Nov 23 Cooling is unavailable during Oct 25 - Nov 23 +in.cooling_unavailable_period Oct 25 - Nov 7 Cooling is unavailable during Oct 25 - Nov 7 +in.cooling_unavailable_period Oct 25 - Oct 25 Cooling is unavailable during Oct 25 - Oct 25 +in.cooling_unavailable_period Oct 25 - Oct 27 Cooling is unavailable during Oct 25 - Oct 27 +in.cooling_unavailable_period Oct 25 - Oct 31 Cooling is unavailable during Oct 25 - Oct 31 +in.cooling_unavailable_period Oct 26 - Jan 23 Cooling is unavailable during Oct 26 - Jan 23 +in.cooling_unavailable_period Oct 26 - Nov 1 Cooling is unavailable during Oct 26 - Nov 1 +in.cooling_unavailable_period Oct 26 - Nov 24 Cooling is unavailable during Oct 26 - Nov 24 +in.cooling_unavailable_period Oct 26 - Nov 8 Cooling is unavailable during Oct 26 - Nov 8 +in.cooling_unavailable_period Oct 26 - Oct 26 Cooling is unavailable during Oct 26 - Oct 26 +in.cooling_unavailable_period Oct 26 - Oct 28 Cooling is unavailable during Oct 26 - Oct 28 +in.cooling_unavailable_period Oct 27 - Jan 24 Cooling is unavailable during Oct 27 - Jan 24 +in.cooling_unavailable_period Oct 27 - Nov 2 Cooling is unavailable during Oct 27 - Nov 2 +in.cooling_unavailable_period Oct 27 - Nov 25 Cooling is unavailable during Oct 27 - Nov 25 +in.cooling_unavailable_period Oct 27 - Nov 9 Cooling is unavailable during Oct 27 - Nov 9 +in.cooling_unavailable_period Oct 27 - Oct 27 Cooling is unavailable during Oct 27 - Oct 27 +in.cooling_unavailable_period Oct 27 - Oct 29 Cooling is unavailable during Oct 27 - Oct 29 +in.cooling_unavailable_period Oct 28 - Jan 25 Cooling is unavailable during Oct 28 - Jan 25 +in.cooling_unavailable_period Oct 28 - Nov 10 Cooling is unavailable during Oct 28 - Nov 10 +in.cooling_unavailable_period Oct 28 - Nov 26 Cooling is unavailable during Oct 28 - Nov 26 +in.cooling_unavailable_period Oct 28 - Nov 3 Cooling is unavailable during Oct 28 - Nov 3 +in.cooling_unavailable_period Oct 28 - Oct 28 Cooling is unavailable during Oct 28 - Oct 28 +in.cooling_unavailable_period Oct 28 - Oct 30 Cooling is unavailable during Oct 28 - Oct 30 +in.cooling_unavailable_period Oct 29 - Jan 26 Cooling is unavailable during Oct 29 - Jan 26 +in.cooling_unavailable_period Oct 29 - Nov 11 Cooling is unavailable during Oct 29 - Nov 11 +in.cooling_unavailable_period Oct 29 - Nov 27 Cooling is unavailable during Oct 29 - Nov 27 +in.cooling_unavailable_period Oct 29 - Nov 4 Cooling is unavailable during Oct 29 - Nov 4 +in.cooling_unavailable_period Oct 29 - Oct 29 Cooling is unavailable during Oct 29 - Oct 29 +in.cooling_unavailable_period Oct 29 - Oct 31 Cooling is unavailable during Oct 29 - Oct 31 +in.cooling_unavailable_period Oct 3 - Dec 31 Cooling is unavailable during Oct 3 - Dec 31 +in.cooling_unavailable_period Oct 3 - Nov 1 Cooling is unavailable during Oct 3 - Nov 1 +in.cooling_unavailable_period Oct 3 - Oct 16 Cooling is unavailable during Oct 3 - Oct 16 +in.cooling_unavailable_period Oct 3 - Oct 3 Cooling is unavailable during Oct 3 - Oct 3 +in.cooling_unavailable_period Oct 3 - Oct 5 Cooling is unavailable during Oct 3 - Oct 5 +in.cooling_unavailable_period Oct 3 - Oct 9 Cooling is unavailable during Oct 3 - Oct 9 +in.cooling_unavailable_period Oct 30 - Jan 27 Cooling is unavailable during Oct 30 - Jan 27 +in.cooling_unavailable_period Oct 30 - Nov 1 Cooling is unavailable during Oct 30 - Nov 1 +in.cooling_unavailable_period Oct 30 - Nov 12 Cooling is unavailable during Oct 30 - Nov 12 +in.cooling_unavailable_period Oct 30 - Nov 28 Cooling is unavailable during Oct 30 - Nov 28 +in.cooling_unavailable_period Oct 30 - Nov 5 Cooling is unavailable during Oct 30 - Nov 5 +in.cooling_unavailable_period Oct 30 - Oct 30 Cooling is unavailable during Oct 30 - Oct 30 +in.cooling_unavailable_period Oct 31 - Jan 28 Cooling is unavailable during Oct 31 - Jan 28 +in.cooling_unavailable_period Oct 31 - Nov 13 Cooling is unavailable during Oct 31 - Nov 13 +in.cooling_unavailable_period Oct 31 - Nov 2 Cooling is unavailable during Oct 31 - Nov 2 +in.cooling_unavailable_period Oct 31 - Nov 29 Cooling is unavailable during Oct 31 - Nov 29 +in.cooling_unavailable_period Oct 31 - Nov 6 Cooling is unavailable during Oct 31 - Nov 6 +in.cooling_unavailable_period Oct 31 - Oct 31 Cooling is unavailable during Oct 31 - Oct 31 +in.cooling_unavailable_period Oct 4 - Jan 1 Cooling is unavailable during Oct 4 - Jan 1 +in.cooling_unavailable_period Oct 4 - Nov 2 Cooling is unavailable during Oct 4 - Nov 2 +in.cooling_unavailable_period Oct 4 - Oct 10 Cooling is unavailable during Oct 4 - Oct 10 +in.cooling_unavailable_period Oct 4 - Oct 17 Cooling is unavailable during Oct 4 - Oct 17 +in.cooling_unavailable_period Oct 4 - Oct 4 Cooling is unavailable during Oct 4 - Oct 4 +in.cooling_unavailable_period Oct 4 - Oct 6 Cooling is unavailable during Oct 4 - Oct 6 +in.cooling_unavailable_period Oct 5 - Jan 2 Cooling is unavailable during Oct 5 - Jan 2 +in.cooling_unavailable_period Oct 5 - Nov 3 Cooling is unavailable during Oct 5 - Nov 3 +in.cooling_unavailable_period Oct 5 - Oct 11 Cooling is unavailable during Oct 5 - Oct 11 +in.cooling_unavailable_period Oct 5 - Oct 18 Cooling is unavailable during Oct 5 - Oct 18 +in.cooling_unavailable_period Oct 5 - Oct 5 Cooling is unavailable during Oct 5 - Oct 5 +in.cooling_unavailable_period Oct 5 - Oct 7 Cooling is unavailable during Oct 5 - Oct 7 +in.cooling_unavailable_period Oct 6 - Jan 3 Cooling is unavailable during Oct 6 - Jan 3 +in.cooling_unavailable_period Oct 6 - Nov 4 Cooling is unavailable during Oct 6 - Nov 4 +in.cooling_unavailable_period Oct 6 - Oct 12 Cooling is unavailable during Oct 6 - Oct 12 +in.cooling_unavailable_period Oct 6 - Oct 19 Cooling is unavailable during Oct 6 - Oct 19 +in.cooling_unavailable_period Oct 6 - Oct 6 Cooling is unavailable during Oct 6 - Oct 6 +in.cooling_unavailable_period Oct 6 - Oct 8 Cooling is unavailable during Oct 6 - Oct 8 +in.cooling_unavailable_period Oct 7 - Jan 4 Cooling is unavailable during Oct 7 - Jan 4 +in.cooling_unavailable_period Oct 7 - Nov 5 Cooling is unavailable during Oct 7 - Nov 5 +in.cooling_unavailable_period Oct 7 - Oct 13 Cooling is unavailable during Oct 7 - Oct 13 +in.cooling_unavailable_period Oct 7 - Oct 20 Cooling is unavailable during Oct 7 - Oct 20 +in.cooling_unavailable_period Oct 7 - Oct 7 Cooling is unavailable during Oct 7 - Oct 7 +in.cooling_unavailable_period Oct 7 - Oct 9 Cooling is unavailable during Oct 7 - Oct 9 +in.cooling_unavailable_period Oct 8 - Jan 5 Cooling is unavailable during Oct 8 - Jan 5 +in.cooling_unavailable_period Oct 8 - Nov 6 Cooling is unavailable during Oct 8 - Nov 6 +in.cooling_unavailable_period Oct 8 - Oct 10 Cooling is unavailable during Oct 8 - Oct 10 +in.cooling_unavailable_period Oct 8 - Oct 14 Cooling is unavailable during Oct 8 - Oct 14 +in.cooling_unavailable_period Oct 8 - Oct 21 Cooling is unavailable during Oct 8 - Oct 21 +in.cooling_unavailable_period Oct 8 - Oct 8 Cooling is unavailable during Oct 8 - Oct 8 +in.cooling_unavailable_period Oct 9 - Jan 6 Cooling is unavailable during Oct 9 - Jan 6 +in.cooling_unavailable_period Oct 9 - Nov 7 Cooling is unavailable during Oct 9 - Nov 7 +in.cooling_unavailable_period Oct 9 - Oct 11 Cooling is unavailable during Oct 9 - Oct 11 +in.cooling_unavailable_period Oct 9 - Oct 15 Cooling is unavailable during Oct 9 - Oct 15 +in.cooling_unavailable_period Oct 9 - Oct 22 Cooling is unavailable during Oct 9 - Oct 22 +in.cooling_unavailable_period Oct 9 - Oct 9 Cooling is unavailable during Oct 9 - Oct 9 +in.cooling_unavailable_period Sep 1 - Nov 29 Cooling is unavailable during Sep 1 - Nov 29 +in.cooling_unavailable_period Sep 1 - Sep 1 Cooling is unavailable during Sep 1 - Sep 1 +in.cooling_unavailable_period Sep 1 - Sep 14 Cooling is unavailable during Sep 1 - Sep 14 +in.cooling_unavailable_period Sep 1 - Sep 3 Cooling is unavailable during Sep 1 - Sep 3 +in.cooling_unavailable_period Sep 1 - Sep 30 Cooling is unavailable during Sep 1 - Sep 30 +in.cooling_unavailable_period Sep 1 - Sep 7 Cooling is unavailable during Sep 1 - Sep 7 +in.cooling_unavailable_period Sep 10 - Dec 8 Cooling is unavailable during Sep 10 - Dec 8 +in.cooling_unavailable_period Sep 10 - Oct 9 Cooling is unavailable during Sep 10 - Oct 9 +in.cooling_unavailable_period Sep 10 - Sep 10 Cooling is unavailable during Sep 10 - Sep 10 +in.cooling_unavailable_period Sep 10 - Sep 12 Cooling is unavailable during Sep 10 - Sep 12 +in.cooling_unavailable_period Sep 10 - Sep 16 Cooling is unavailable during Sep 10 - Sep 16 +in.cooling_unavailable_period Sep 10 - Sep 23 Cooling is unavailable during Sep 10 - Sep 23 +in.cooling_unavailable_period Sep 11 - Dec 9 Cooling is unavailable during Sep 11 - Dec 9 +in.cooling_unavailable_period Sep 11 - Oct 10 Cooling is unavailable during Sep 11 - Oct 10 +in.cooling_unavailable_period Sep 11 - Sep 11 Cooling is unavailable during Sep 11 - Sep 11 +in.cooling_unavailable_period Sep 11 - Sep 13 Cooling is unavailable during Sep 11 - Sep 13 +in.cooling_unavailable_period Sep 11 - Sep 17 Cooling is unavailable during Sep 11 - Sep 17 +in.cooling_unavailable_period Sep 11 - Sep 24 Cooling is unavailable during Sep 11 - Sep 24 +in.cooling_unavailable_period Sep 12 - Dec 10 Cooling is unavailable during Sep 12 - Dec 10 +in.cooling_unavailable_period Sep 12 - Oct 11 Cooling is unavailable during Sep 12 - Oct 11 +in.cooling_unavailable_period Sep 12 - Sep 12 Cooling is unavailable during Sep 12 - Sep 12 +in.cooling_unavailable_period Sep 12 - Sep 14 Cooling is unavailable during Sep 12 - Sep 14 +in.cooling_unavailable_period Sep 12 - Sep 18 Cooling is unavailable during Sep 12 - Sep 18 +in.cooling_unavailable_period Sep 12 - Sep 25 Cooling is unavailable during Sep 12 - Sep 25 +in.cooling_unavailable_period Sep 13 - Dec 11 Cooling is unavailable during Sep 13 - Dec 11 +in.cooling_unavailable_period Sep 13 - Oct 12 Cooling is unavailable during Sep 13 - Oct 12 +in.cooling_unavailable_period Sep 13 - Sep 13 Cooling is unavailable during Sep 13 - Sep 13 +in.cooling_unavailable_period Sep 13 - Sep 15 Cooling is unavailable during Sep 13 - Sep 15 +in.cooling_unavailable_period Sep 13 - Sep 19 Cooling is unavailable during Sep 13 - Sep 19 +in.cooling_unavailable_period Sep 13 - Sep 26 Cooling is unavailable during Sep 13 - Sep 26 +in.cooling_unavailable_period Sep 14 - Dec 12 Cooling is unavailable during Sep 14 - Dec 12 +in.cooling_unavailable_period Sep 14 - Oct 13 Cooling is unavailable during Sep 14 - Oct 13 +in.cooling_unavailable_period Sep 14 - Sep 14 Cooling is unavailable during Sep 14 - Sep 14 +in.cooling_unavailable_period Sep 14 - Sep 16 Cooling is unavailable during Sep 14 - Sep 16 +in.cooling_unavailable_period Sep 14 - Sep 20 Cooling is unavailable during Sep 14 - Sep 20 +in.cooling_unavailable_period Sep 14 - Sep 27 Cooling is unavailable during Sep 14 - Sep 27 +in.cooling_unavailable_period Sep 15 - Dec 13 Cooling is unavailable during Sep 15 - Dec 13 +in.cooling_unavailable_period Sep 15 - Oct 14 Cooling is unavailable during Sep 15 - Oct 14 +in.cooling_unavailable_period Sep 15 - Sep 15 Cooling is unavailable during Sep 15 - Sep 15 +in.cooling_unavailable_period Sep 15 - Sep 17 Cooling is unavailable during Sep 15 - Sep 17 +in.cooling_unavailable_period Sep 15 - Sep 21 Cooling is unavailable during Sep 15 - Sep 21 +in.cooling_unavailable_period Sep 15 - Sep 28 Cooling is unavailable during Sep 15 - Sep 28 +in.cooling_unavailable_period Sep 16 - Dec 14 Cooling is unavailable during Sep 16 - Dec 14 +in.cooling_unavailable_period Sep 16 - Oct 15 Cooling is unavailable during Sep 16 - Oct 15 +in.cooling_unavailable_period Sep 16 - Sep 16 Cooling is unavailable during Sep 16 - Sep 16 +in.cooling_unavailable_period Sep 16 - Sep 18 Cooling is unavailable during Sep 16 - Sep 18 +in.cooling_unavailable_period Sep 16 - Sep 22 Cooling is unavailable during Sep 16 - Sep 22 +in.cooling_unavailable_period Sep 16 - Sep 29 Cooling is unavailable during Sep 16 - Sep 29 +in.cooling_unavailable_period Sep 17 - Dec 15 Cooling is unavailable during Sep 17 - Dec 15 +in.cooling_unavailable_period Sep 17 - Oct 16 Cooling is unavailable during Sep 17 - Oct 16 +in.cooling_unavailable_period Sep 17 - Sep 17 Cooling is unavailable during Sep 17 - Sep 17 +in.cooling_unavailable_period Sep 17 - Sep 19 Cooling is unavailable during Sep 17 - Sep 19 +in.cooling_unavailable_period Sep 17 - Sep 23 Cooling is unavailable during Sep 17 - Sep 23 +in.cooling_unavailable_period Sep 17 - Sep 30 Cooling is unavailable during Sep 17 - Sep 30 +in.cooling_unavailable_period Sep 18 - Dec 16 Cooling is unavailable during Sep 18 - Dec 16 +in.cooling_unavailable_period Sep 18 - Oct 1 Cooling is unavailable during Sep 18 - Oct 1 +in.cooling_unavailable_period Sep 18 - Oct 17 Cooling is unavailable during Sep 18 - Oct 17 +in.cooling_unavailable_period Sep 18 - Sep 18 Cooling is unavailable during Sep 18 - Sep 18 +in.cooling_unavailable_period Sep 18 - Sep 20 Cooling is unavailable during Sep 18 - Sep 20 +in.cooling_unavailable_period Sep 18 - Sep 24 Cooling is unavailable during Sep 18 - Sep 24 +in.cooling_unavailable_period Sep 19 - Dec 17 Cooling is unavailable during Sep 19 - Dec 17 +in.cooling_unavailable_period Sep 19 - Oct 18 Cooling is unavailable during Sep 19 - Oct 18 +in.cooling_unavailable_period Sep 19 - Oct 2 Cooling is unavailable during Sep 19 - Oct 2 +in.cooling_unavailable_period Sep 19 - Sep 19 Cooling is unavailable during Sep 19 - Sep 19 +in.cooling_unavailable_period Sep 19 - Sep 21 Cooling is unavailable during Sep 19 - Sep 21 +in.cooling_unavailable_period Sep 19 - Sep 25 Cooling is unavailable during Sep 19 - Sep 25 +in.cooling_unavailable_period Sep 2 - Nov 30 Cooling is unavailable during Sep 2 - Nov 30 +in.cooling_unavailable_period Sep 2 - Oct 1 Cooling is unavailable during Sep 2 - Oct 1 +in.cooling_unavailable_period Sep 2 - Sep 15 Cooling is unavailable during Sep 2 - Sep 15 +in.cooling_unavailable_period Sep 2 - Sep 2 Cooling is unavailable during Sep 2 - Sep 2 +in.cooling_unavailable_period Sep 2 - Sep 4 Cooling is unavailable during Sep 2 - Sep 4 +in.cooling_unavailable_period Sep 2 - Sep 8 Cooling is unavailable during Sep 2 - Sep 8 +in.cooling_unavailable_period Sep 20 - Dec 18 Cooling is unavailable during Sep 20 - Dec 18 +in.cooling_unavailable_period Sep 20 - Oct 19 Cooling is unavailable during Sep 20 - Oct 19 +in.cooling_unavailable_period Sep 20 - Oct 3 Cooling is unavailable during Sep 20 - Oct 3 +in.cooling_unavailable_period Sep 20 - Sep 20 Cooling is unavailable during Sep 20 - Sep 20 +in.cooling_unavailable_period Sep 20 - Sep 22 Cooling is unavailable during Sep 20 - Sep 22 +in.cooling_unavailable_period Sep 20 - Sep 26 Cooling is unavailable during Sep 20 - Sep 26 +in.cooling_unavailable_period Sep 21 - Dec 19 Cooling is unavailable during Sep 21 - Dec 19 +in.cooling_unavailable_period Sep 21 - Oct 20 Cooling is unavailable during Sep 21 - Oct 20 +in.cooling_unavailable_period Sep 21 - Oct 4 Cooling is unavailable during Sep 21 - Oct 4 +in.cooling_unavailable_period Sep 21 - Sep 21 Cooling is unavailable during Sep 21 - Sep 21 +in.cooling_unavailable_period Sep 21 - Sep 23 Cooling is unavailable during Sep 21 - Sep 23 +in.cooling_unavailable_period Sep 21 - Sep 27 Cooling is unavailable during Sep 21 - Sep 27 +in.cooling_unavailable_period Sep 22 - Dec 20 Cooling is unavailable during Sep 22 - Dec 20 +in.cooling_unavailable_period Sep 22 - Oct 21 Cooling is unavailable during Sep 22 - Oct 21 +in.cooling_unavailable_period Sep 22 - Oct 5 Cooling is unavailable during Sep 22 - Oct 5 +in.cooling_unavailable_period Sep 22 - Sep 22 Cooling is unavailable during Sep 22 - Sep 22 +in.cooling_unavailable_period Sep 22 - Sep 24 Cooling is unavailable during Sep 22 - Sep 24 +in.cooling_unavailable_period Sep 22 - Sep 28 Cooling is unavailable during Sep 22 - Sep 28 +in.cooling_unavailable_period Sep 23 - Dec 21 Cooling is unavailable during Sep 23 - Dec 21 +in.cooling_unavailable_period Sep 23 - Oct 22 Cooling is unavailable during Sep 23 - Oct 22 +in.cooling_unavailable_period Sep 23 - Oct 6 Cooling is unavailable during Sep 23 - Oct 6 +in.cooling_unavailable_period Sep 23 - Sep 23 Cooling is unavailable during Sep 23 - Sep 23 +in.cooling_unavailable_period Sep 23 - Sep 25 Cooling is unavailable during Sep 23 - Sep 25 +in.cooling_unavailable_period Sep 23 - Sep 29 Cooling is unavailable during Sep 23 - Sep 29 +in.cooling_unavailable_period Sep 24 - Dec 22 Cooling is unavailable during Sep 24 - Dec 22 +in.cooling_unavailable_period Sep 24 - Oct 23 Cooling is unavailable during Sep 24 - Oct 23 +in.cooling_unavailable_period Sep 24 - Oct 7 Cooling is unavailable during Sep 24 - Oct 7 +in.cooling_unavailable_period Sep 24 - Sep 24 Cooling is unavailable during Sep 24 - Sep 24 +in.cooling_unavailable_period Sep 24 - Sep 26 Cooling is unavailable during Sep 24 - Sep 26 +in.cooling_unavailable_period Sep 24 - Sep 30 Cooling is unavailable during Sep 24 - Sep 30 +in.cooling_unavailable_period Sep 25 - Dec 23 Cooling is unavailable during Sep 25 - Dec 23 +in.cooling_unavailable_period Sep 25 - Oct 1 Cooling is unavailable during Sep 25 - Oct 1 +in.cooling_unavailable_period Sep 25 - Oct 24 Cooling is unavailable during Sep 25 - Oct 24 +in.cooling_unavailable_period Sep 25 - Oct 8 Cooling is unavailable during Sep 25 - Oct 8 +in.cooling_unavailable_period Sep 25 - Sep 25 Cooling is unavailable during Sep 25 - Sep 25 +in.cooling_unavailable_period Sep 25 - Sep 27 Cooling is unavailable during Sep 25 - Sep 27 +in.cooling_unavailable_period Sep 26 - Dec 24 Cooling is unavailable during Sep 26 - Dec 24 +in.cooling_unavailable_period Sep 26 - Oct 2 Cooling is unavailable during Sep 26 - Oct 2 +in.cooling_unavailable_period Sep 26 - Oct 25 Cooling is unavailable during Sep 26 - Oct 25 +in.cooling_unavailable_period Sep 26 - Oct 9 Cooling is unavailable during Sep 26 - Oct 9 +in.cooling_unavailable_period Sep 26 - Sep 26 Cooling is unavailable during Sep 26 - Sep 26 +in.cooling_unavailable_period Sep 26 - Sep 28 Cooling is unavailable during Sep 26 - Sep 28 +in.cooling_unavailable_period Sep 27 - Dec 25 Cooling is unavailable during Sep 27 - Dec 25 +in.cooling_unavailable_period Sep 27 - Oct 10 Cooling is unavailable during Sep 27 - Oct 10 +in.cooling_unavailable_period Sep 27 - Oct 26 Cooling is unavailable during Sep 27 - Oct 26 +in.cooling_unavailable_period Sep 27 - Oct 3 Cooling is unavailable during Sep 27 - Oct 3 +in.cooling_unavailable_period Sep 27 - Sep 27 Cooling is unavailable during Sep 27 - Sep 27 +in.cooling_unavailable_period Sep 27 - Sep 29 Cooling is unavailable during Sep 27 - Sep 29 +in.cooling_unavailable_period Sep 28 - Dec 26 Cooling is unavailable during Sep 28 - Dec 26 +in.cooling_unavailable_period Sep 28 - Oct 11 Cooling is unavailable during Sep 28 - Oct 11 +in.cooling_unavailable_period Sep 28 - Oct 27 Cooling is unavailable during Sep 28 - Oct 27 +in.cooling_unavailable_period Sep 28 - Oct 4 Cooling is unavailable during Sep 28 - Oct 4 +in.cooling_unavailable_period Sep 28 - Sep 28 Cooling is unavailable during Sep 28 - Sep 28 +in.cooling_unavailable_period Sep 28 - Sep 30 Cooling is unavailable during Sep 28 - Sep 30 +in.cooling_unavailable_period Sep 29 - Dec 27 Cooling is unavailable during Sep 29 - Dec 27 +in.cooling_unavailable_period Sep 29 - Oct 1 Cooling is unavailable during Sep 29 - Oct 1 +in.cooling_unavailable_period Sep 29 - Oct 12 Cooling is unavailable during Sep 29 - Oct 12 +in.cooling_unavailable_period Sep 29 - Oct 28 Cooling is unavailable during Sep 29 - Oct 28 +in.cooling_unavailable_period Sep 29 - Oct 5 Cooling is unavailable during Sep 29 - Oct 5 +in.cooling_unavailable_period Sep 29 - Sep 29 Cooling is unavailable during Sep 29 - Sep 29 +in.cooling_unavailable_period Sep 3 - Dec 1 Cooling is unavailable during Sep 3 - Dec 1 +in.cooling_unavailable_period Sep 3 - Oct 2 Cooling is unavailable during Sep 3 - Oct 2 +in.cooling_unavailable_period Sep 3 - Sep 16 Cooling is unavailable during Sep 3 - Sep 16 +in.cooling_unavailable_period Sep 3 - Sep 3 Cooling is unavailable during Sep 3 - Sep 3 +in.cooling_unavailable_period Sep 3 - Sep 5 Cooling is unavailable during Sep 3 - Sep 5 +in.cooling_unavailable_period Sep 3 - Sep 9 Cooling is unavailable during Sep 3 - Sep 9 +in.cooling_unavailable_period Sep 30 - Dec 28 Cooling is unavailable during Sep 30 - Dec 28 +in.cooling_unavailable_period Sep 30 - Oct 13 Cooling is unavailable during Sep 30 - Oct 13 +in.cooling_unavailable_period Sep 30 - Oct 2 Cooling is unavailable during Sep 30 - Oct 2 +in.cooling_unavailable_period Sep 30 - Oct 29 Cooling is unavailable during Sep 30 - Oct 29 +in.cooling_unavailable_period Sep 30 - Oct 6 Cooling is unavailable during Sep 30 - Oct 6 +in.cooling_unavailable_period Sep 30 - Sep 30 Cooling is unavailable during Sep 30 - Sep 30 +in.cooling_unavailable_period Sep 4 - Dec 2 Cooling is unavailable during Sep 4 - Dec 2 +in.cooling_unavailable_period Sep 4 - Oct 3 Cooling is unavailable during Sep 4 - Oct 3 +in.cooling_unavailable_period Sep 4 - Sep 10 Cooling is unavailable during Sep 4 - Sep 10 +in.cooling_unavailable_period Sep 4 - Sep 17 Cooling is unavailable during Sep 4 - Sep 17 +in.cooling_unavailable_period Sep 4 - Sep 4 Cooling is unavailable during Sep 4 - Sep 4 +in.cooling_unavailable_period Sep 4 - Sep 6 Cooling is unavailable during Sep 4 - Sep 6 +in.cooling_unavailable_period Sep 5 - Dec 3 Cooling is unavailable during Sep 5 - Dec 3 +in.cooling_unavailable_period Sep 5 - Oct 4 Cooling is unavailable during Sep 5 - Oct 4 +in.cooling_unavailable_period Sep 5 - Sep 11 Cooling is unavailable during Sep 5 - Sep 11 +in.cooling_unavailable_period Sep 5 - Sep 18 Cooling is unavailable during Sep 5 - Sep 18 +in.cooling_unavailable_period Sep 5 - Sep 5 Cooling is unavailable during Sep 5 - Sep 5 +in.cooling_unavailable_period Sep 5 - Sep 7 Cooling is unavailable during Sep 5 - Sep 7 +in.cooling_unavailable_period Sep 6 - Dec 4 Cooling is unavailable during Sep 6 - Dec 4 +in.cooling_unavailable_period Sep 6 - Oct 5 Cooling is unavailable during Sep 6 - Oct 5 +in.cooling_unavailable_period Sep 6 - Sep 12 Cooling is unavailable during Sep 6 - Sep 12 +in.cooling_unavailable_period Sep 6 - Sep 19 Cooling is unavailable during Sep 6 - Sep 19 +in.cooling_unavailable_period Sep 6 - Sep 6 Cooling is unavailable during Sep 6 - Sep 6 +in.cooling_unavailable_period Sep 6 - Sep 8 Cooling is unavailable during Sep 6 - Sep 8 +in.cooling_unavailable_period Sep 7 - Dec 5 Cooling is unavailable during Sep 7 - Dec 5 +in.cooling_unavailable_period Sep 7 - Oct 6 Cooling is unavailable during Sep 7 - Oct 6 +in.cooling_unavailable_period Sep 7 - Sep 13 Cooling is unavailable during Sep 7 - Sep 13 +in.cooling_unavailable_period Sep 7 - Sep 20 Cooling is unavailable during Sep 7 - Sep 20 +in.cooling_unavailable_period Sep 7 - Sep 7 Cooling is unavailable during Sep 7 - Sep 7 +in.cooling_unavailable_period Sep 7 - Sep 9 Cooling is unavailable during Sep 7 - Sep 9 +in.cooling_unavailable_period Sep 8 - Dec 6 Cooling is unavailable during Sep 8 - Dec 6 +in.cooling_unavailable_period Sep 8 - Oct 7 Cooling is unavailable during Sep 8 - Oct 7 +in.cooling_unavailable_period Sep 8 - Sep 10 Cooling is unavailable during Sep 8 - Sep 10 +in.cooling_unavailable_period Sep 8 - Sep 14 Cooling is unavailable during Sep 8 - Sep 14 +in.cooling_unavailable_period Sep 8 - Sep 21 Cooling is unavailable during Sep 8 - Sep 21 +in.cooling_unavailable_period Sep 8 - Sep 8 Cooling is unavailable during Sep 8 - Sep 8 +in.cooling_unavailable_period Sep 9 - Dec 7 Cooling is unavailable during Sep 9 - Dec 7 +in.cooling_unavailable_period Sep 9 - Oct 8 Cooling is unavailable during Sep 9 - Oct 8 +in.cooling_unavailable_period Sep 9 - Sep 11 Cooling is unavailable during Sep 9 - Sep 11 +in.cooling_unavailable_period Sep 9 - Sep 15 Cooling is unavailable during Sep 9 - Sep 15 +in.cooling_unavailable_period Sep 9 - Sep 22 Cooling is unavailable during Sep 9 - Sep 22 +in.cooling_unavailable_period Sep 9 - Sep 9 Cooling is unavailable during Sep 9 - Sep 9 +in.corridor Double-Loaded Interior Unit is adjacent to a shared corridor +in.corridor Not Applicable Corridor input is not applicable +in.county "AK, Aleutians East Borough" "The dwelling unit is in AK, Aleutians East Borough" +in.county "AK, Aleutians West Census Area" "The dwelling unit is in AK, Aleutians West Census Area" +in.county "AK, Anchorage Municipality" "The dwelling unit is in AK, Anchorage Municipality" +in.county "AK, Bethel Census Area" "The dwelling unit is in AK, Bethel Census Area" +in.county "AK, Bristol Bay Borough" "The dwelling unit is in AK, Bristol Bay Borough" +in.county "AK, Denali Borough" "The dwelling unit is in AK, Denali Borough" +in.county "AK, Dillingham Census Area" "The dwelling unit is in AK, Dillingham Census Area" +in.county "AK, Fairbanks North Star Borough" "The dwelling unit is in AK, Fairbanks North Star Borough" +in.county "AK, Haines Borough" "The dwelling unit is in AK, Haines Borough" +in.county "AK, Hoonah-Angoon Census Area" "The dwelling unit is in AK, Hoonah-Angoon Census Area" +in.county "AK, Juneau City and Borough" "The dwelling unit is in AK, Juneau City and Borough" +in.county "AK, Kenai Peninsula Borough" "The dwelling unit is in AK, Kenai Peninsula Borough" +in.county "AK, Ketchikan Gateway Borough" "The dwelling unit is in AK, Ketchikan Gateway Borough" +in.county "AK, Kodiak Island Borough" "The dwelling unit is in AK, Kodiak Island Borough" +in.county "AK, Kusilvak Census Area" "The dwelling unit is in AK, Kusilvak Census Area" +in.county "AK, Lake and Peninsula Borough" "The dwelling unit is in AK, Lake and Peninsula Borough" +in.county "AK, Matanuska-Susitna Borough" "The dwelling unit is in AK, Matanuska-Susitna Borough" +in.county "AK, Nome Census Area" "The dwelling unit is in AK, Nome Census Area" +in.county "AK, North Slope Borough" "The dwelling unit is in AK, North Slope Borough" +in.county "AK, Northwest Arctic Borough" "The dwelling unit is in AK, Northwest Arctic Borough" +in.county "AK, Petersburg Borough" "The dwelling unit is in AK, Petersburg Borough" +in.county "AK, Prince of Wales-Hyder Census Area" "The dwelling unit is in AK, Prince of Wales-Hyder Census Area" +in.county "AK, Sitka City and Borough" "The dwelling unit is in AK, Sitka City and Borough" +in.county "AK, Skagway Municipality" "The dwelling unit is in AK, Skagway Municipality" +in.county "AK, Southeast Fairbanks Census Area" "The dwelling unit is in AK, Southeast Fairbanks Census Area" +in.county "AK, Valdez-Cordova Census Area" "The dwelling unit is in AK, Valdez-Cordova Census Area" +in.county "AK, Wrangell City and Borough" "The dwelling unit is in AK, Wrangell City and Borough" +in.county "AK, Yakutat City and Borough" "The dwelling unit is in AK, Yakutat City and Borough" +in.county "AK, Yukon-Koyukuk Census Area" "The dwelling unit is in AK, Yukon-Koyukuk Census Area" +in.county "AL, Autauga County" "The dwelling unit is in AL, Autauga County" +in.county "AL, Baldwin County" "The dwelling unit is in AL, Baldwin County" +in.county "AL, Barbour County" "The dwelling unit is in AL, Barbour County" +in.county "AL, Bibb County" "The dwelling unit is in AL, Bibb County" +in.county "AL, Blount County" "The dwelling unit is in AL, Blount County" +in.county "AL, Bullock County" "The dwelling unit is in AL, Bullock County" +in.county "AL, Butler County" "The dwelling unit is in AL, Butler County" +in.county "AL, Calhoun County" "The dwelling unit is in AL, Calhoun County" +in.county "AL, Chambers County" "The dwelling unit is in AL, Chambers County" +in.county "AL, Cherokee County" "The dwelling unit is in AL, Cherokee County" +in.county "AL, Chilton County" "The dwelling unit is in AL, Chilton County" +in.county "AL, Choctaw County" "The dwelling unit is in AL, Choctaw County" +in.county "AL, Clarke County" "The dwelling unit is in AL, Clarke County" +in.county "AL, Clay County" "The dwelling unit is in AL, Clay County" +in.county "AL, Cleburne County" "The dwelling unit is in AL, Cleburne County" +in.county "AL, Coffee County" "The dwelling unit is in AL, Coffee County" +in.county "AL, Colbert County" "The dwelling unit is in AL, Colbert County" +in.county "AL, Conecuh County" "The dwelling unit is in AL, Conecuh County" +in.county "AL, Coosa County" "The dwelling unit is in AL, Coosa County" +in.county "AL, Covington County" "The dwelling unit is in AL, Covington County" +in.county "AL, Crenshaw County" "The dwelling unit is in AL, Crenshaw County" +in.county "AL, Cullman County" "The dwelling unit is in AL, Cullman County" +in.county "AL, Dale County" "The dwelling unit is in AL, Dale County" +in.county "AL, Dallas County" "The dwelling unit is in AL, Dallas County" +in.county "AL, DeKalb County" "The dwelling unit is in AL, DeKalb County" +in.county "AL, Elmore County" "The dwelling unit is in AL, Elmore County" +in.county "AL, Escambia County" "The dwelling unit is in AL, Escambia County" +in.county "AL, Etowah County" "The dwelling unit is in AL, Etowah County" +in.county "AL, Fayette County" "The dwelling unit is in AL, Fayette County" +in.county "AL, Franklin County" "The dwelling unit is in AL, Franklin County" +in.county "AL, Geneva County" "The dwelling unit is in AL, Geneva County" +in.county "AL, Greene County" "The dwelling unit is in AL, Greene County" +in.county "AL, Hale County" "The dwelling unit is in AL, Hale County" +in.county "AL, Henry County" "The dwelling unit is in AL, Henry County" +in.county "AL, Houston County" "The dwelling unit is in AL, Houston County" +in.county "AL, Jackson County" "The dwelling unit is in AL, Jackson County" +in.county "AL, Jefferson County" "The dwelling unit is in AL, Jefferson County" +in.county "AL, Lamar County" "The dwelling unit is in AL, Lamar County" +in.county "AL, Lauderdale County" "The dwelling unit is in AL, Lauderdale County" +in.county "AL, Lawrence County" "The dwelling unit is in AL, Lawrence County" +in.county "AL, Lee County" "The dwelling unit is in AL, Lee County" +in.county "AL, Limestone County" "The dwelling unit is in AL, Limestone County" +in.county "AL, Lowndes County" "The dwelling unit is in AL, Lowndes County" +in.county "AL, Macon County" "The dwelling unit is in AL, Macon County" +in.county "AL, Madison County" "The dwelling unit is in AL, Madison County" +in.county "AL, Marengo County" "The dwelling unit is in AL, Marengo County" +in.county "AL, Marion County" "The dwelling unit is in AL, Marion County" +in.county "AL, Marshall County" "The dwelling unit is in AL, Marshall County" +in.county "AL, Mobile County" "The dwelling unit is in AL, Mobile County" +in.county "AL, Monroe County" "The dwelling unit is in AL, Monroe County" +in.county "AL, Montgomery County" "The dwelling unit is in AL, Montgomery County" +in.county "AL, Morgan County" "The dwelling unit is in AL, Morgan County" +in.county "AL, Perry County" "The dwelling unit is in AL, Perry County" +in.county "AL, Pickens County" "The dwelling unit is in AL, Pickens County" +in.county "AL, Pike County" "The dwelling unit is in AL, Pike County" +in.county "AL, Randolph County" "The dwelling unit is in AL, Randolph County" +in.county "AL, Russell County" "The dwelling unit is in AL, Russell County" +in.county "AL, Shelby County" "The dwelling unit is in AL, Shelby County" +in.county "AL, St. Clair County" "The dwelling unit is in AL, St. Clair County" +in.county "AL, Sumter County" "The dwelling unit is in AL, Sumter County" +in.county "AL, Talladega County" "The dwelling unit is in AL, Talladega County" +in.county "AL, Tallapoosa County" "The dwelling unit is in AL, Tallapoosa County" +in.county "AL, Tuscaloosa County" "The dwelling unit is in AL, Tuscaloosa County" +in.county "AL, Walker County" "The dwelling unit is in AL, Walker County" +in.county "AL, Washington County" "The dwelling unit is in AL, Washington County" +in.county "AL, Wilcox County" "The dwelling unit is in AL, Wilcox County" +in.county "AL, Winston County" "The dwelling unit is in AL, Winston County" +in.county "AR, Arkansas County" "The dwelling unit is in AR, Arkansas County" +in.county "AR, Ashley County" "The dwelling unit is in AR, Ashley County" +in.county "AR, Baxter County" "The dwelling unit is in AR, Baxter County" +in.county "AR, Benton County" "The dwelling unit is in AR, Benton County" +in.county "AR, Boone County" "The dwelling unit is in AR, Boone County" +in.county "AR, Bradley County" "The dwelling unit is in AR, Bradley County" +in.county "AR, Calhoun County" "The dwelling unit is in AR, Calhoun County" +in.county "AR, Carroll County" "The dwelling unit is in AR, Carroll County" +in.county "AR, Chicot County" "The dwelling unit is in AR, Chicot County" +in.county "AR, Clark County" "The dwelling unit is in AR, Clark County" +in.county "AR, Clay County" "The dwelling unit is in AR, Clay County" +in.county "AR, Cleburne County" "The dwelling unit is in AR, Cleburne County" +in.county "AR, Cleveland County" "The dwelling unit is in AR, Cleveland County" +in.county "AR, Columbia County" "The dwelling unit is in AR, Columbia County" +in.county "AR, Conway County" "The dwelling unit is in AR, Conway County" +in.county "AR, Craighead County" "The dwelling unit is in AR, Craighead County" +in.county "AR, Crawford County" "The dwelling unit is in AR, Crawford County" +in.county "AR, Crittenden County" "The dwelling unit is in AR, Crittenden County" +in.county "AR, Cross County" "The dwelling unit is in AR, Cross County" +in.county "AR, Dallas County" "The dwelling unit is in AR, Dallas County" +in.county "AR, Desha County" "The dwelling unit is in AR, Desha County" +in.county "AR, Drew County" "The dwelling unit is in AR, Drew County" +in.county "AR, Faulkner County" "The dwelling unit is in AR, Faulkner County" +in.county "AR, Franklin County" "The dwelling unit is in AR, Franklin County" +in.county "AR, Fulton County" "The dwelling unit is in AR, Fulton County" +in.county "AR, Garland County" "The dwelling unit is in AR, Garland County" +in.county "AR, Grant County" "The dwelling unit is in AR, Grant County" +in.county "AR, Greene County" "The dwelling unit is in AR, Greene County" +in.county "AR, Hempstead County" "The dwelling unit is in AR, Hempstead County" +in.county "AR, Hot Spring County" "The dwelling unit is in AR, Hot Spring County" +in.county "AR, Howard County" "The dwelling unit is in AR, Howard County" +in.county "AR, Independence County" "The dwelling unit is in AR, Independence County" +in.county "AR, Izard County" "The dwelling unit is in AR, Izard County" +in.county "AR, Jackson County" "The dwelling unit is in AR, Jackson County" +in.county "AR, Jefferson County" "The dwelling unit is in AR, Jefferson County" +in.county "AR, Johnson County" "The dwelling unit is in AR, Johnson County" +in.county "AR, Lafayette County" "The dwelling unit is in AR, Lafayette County" +in.county "AR, Lawrence County" "The dwelling unit is in AR, Lawrence County" +in.county "AR, Lee County" "The dwelling unit is in AR, Lee County" +in.county "AR, Lincoln County" "The dwelling unit is in AR, Lincoln County" +in.county "AR, Little River County" "The dwelling unit is in AR, Little River County" +in.county "AR, Logan County" "The dwelling unit is in AR, Logan County" +in.county "AR, Lonoke County" "The dwelling unit is in AR, Lonoke County" +in.county "AR, Madison County" "The dwelling unit is in AR, Madison County" +in.county "AR, Marion County" "The dwelling unit is in AR, Marion County" +in.county "AR, Miller County" "The dwelling unit is in AR, Miller County" +in.county "AR, Mississippi County" "The dwelling unit is in AR, Mississippi County" +in.county "AR, Monroe County" "The dwelling unit is in AR, Monroe County" +in.county "AR, Montgomery County" "The dwelling unit is in AR, Montgomery County" +in.county "AR, Nevada County" "The dwelling unit is in AR, Nevada County" +in.county "AR, Newton County" "The dwelling unit is in AR, Newton County" +in.county "AR, Ouachita County" "The dwelling unit is in AR, Ouachita County" +in.county "AR, Perry County" "The dwelling unit is in AR, Perry County" +in.county "AR, Phillips County" "The dwelling unit is in AR, Phillips County" +in.county "AR, Pike County" "The dwelling unit is in AR, Pike County" +in.county "AR, Poinsett County" "The dwelling unit is in AR, Poinsett County" +in.county "AR, Polk County" "The dwelling unit is in AR, Polk County" +in.county "AR, Pope County" "The dwelling unit is in AR, Pope County" +in.county "AR, Prairie County" "The dwelling unit is in AR, Prairie County" +in.county "AR, Pulaski County" "The dwelling unit is in AR, Pulaski County" +in.county "AR, Randolph County" "The dwelling unit is in AR, Randolph County" +in.county "AR, Saline County" "The dwelling unit is in AR, Saline County" +in.county "AR, Scott County" "The dwelling unit is in AR, Scott County" +in.county "AR, Searcy County" "The dwelling unit is in AR, Searcy County" +in.county "AR, Sebastian County" "The dwelling unit is in AR, Sebastian County" +in.county "AR, Sevier County" "The dwelling unit is in AR, Sevier County" +in.county "AR, Sharp County" "The dwelling unit is in AR, Sharp County" +in.county "AR, St. Francis County" "The dwelling unit is in AR, St. Francis County" +in.county "AR, Stone County" "The dwelling unit is in AR, Stone County" +in.county "AR, Union County" "The dwelling unit is in AR, Union County" +in.county "AR, Van Buren County" "The dwelling unit is in AR, Van Buren County" +in.county "AR, Washington County" "The dwelling unit is in AR, Washington County" +in.county "AR, White County" "The dwelling unit is in AR, White County" +in.county "AR, Woodruff County" "The dwelling unit is in AR, Woodruff County" +in.county "AR, Yell County" "The dwelling unit is in AR, Yell County" +in.county "AZ, Apache County" "The dwelling unit is in AZ, Apache County" +in.county "AZ, Cochise County" "The dwelling unit is in AZ, Cochise County" +in.county "AZ, Coconino County" "The dwelling unit is in AZ, Coconino County" +in.county "AZ, Gila County" "The dwelling unit is in AZ, Gila County" +in.county "AZ, Graham County" "The dwelling unit is in AZ, Graham County" +in.county "AZ, Greenlee County" "The dwelling unit is in AZ, Greenlee County" +in.county "AZ, La Paz County" "The dwelling unit is in AZ, La Paz County" +in.county "AZ, Maricopa County" "The dwelling unit is in AZ, Maricopa County" +in.county "AZ, Mohave County" "The dwelling unit is in AZ, Mohave County" +in.county "AZ, Navajo County" "The dwelling unit is in AZ, Navajo County" +in.county "AZ, Pima County" "The dwelling unit is in AZ, Pima County" +in.county "AZ, Pinal County" "The dwelling unit is in AZ, Pinal County" +in.county "AZ, Santa Cruz County" "The dwelling unit is in AZ, Santa Cruz County" +in.county "AZ, Yavapai County" "The dwelling unit is in AZ, Yavapai County" +in.county "AZ, Yuma County" "The dwelling unit is in AZ, Yuma County" +in.county "CA, Alameda County" "The dwelling unit is in CA, Alameda County" +in.county "CA, Alpine County" "The dwelling unit is in CA, Alpine County" +in.county "CA, Amador County" "The dwelling unit is in CA, Amador County" +in.county "CA, Butte County" "The dwelling unit is in CA, Butte County" +in.county "CA, Calaveras County" "The dwelling unit is in CA, Calaveras County" +in.county "CA, Colusa County" "The dwelling unit is in CA, Colusa County" +in.county "CA, Contra Costa County" "The dwelling unit is in CA, Contra Costa County" +in.county "CA, Del Norte County" "The dwelling unit is in CA, Del Norte County" +in.county "CA, El Dorado County" "The dwelling unit is in CA, El Dorado County" +in.county "CA, Fresno County" "The dwelling unit is in CA, Fresno County" +in.county "CA, Glenn County" "The dwelling unit is in CA, Glenn County" +in.county "CA, Humboldt County" "The dwelling unit is in CA, Humboldt County" +in.county "CA, Imperial County" "The dwelling unit is in CA, Imperial County" +in.county "CA, Inyo County" "The dwelling unit is in CA, Inyo County" +in.county "CA, Kern County" "The dwelling unit is in CA, Kern County" +in.county "CA, Kings County" "The dwelling unit is in CA, Kings County" +in.county "CA, Lake County" "The dwelling unit is in CA, Lake County" +in.county "CA, Lassen County" "The dwelling unit is in CA, Lassen County" +in.county "CA, Los Angeles County" "The dwelling unit is in CA, Los Angeles County" +in.county "CA, Madera County" "The dwelling unit is in CA, Madera County" +in.county "CA, Marin County" "The dwelling unit is in CA, Marin County" +in.county "CA, Mariposa County" "The dwelling unit is in CA, Mariposa County" +in.county "CA, Mendocino County" "The dwelling unit is in CA, Mendocino County" +in.county "CA, Merced County" "The dwelling unit is in CA, Merced County" +in.county "CA, Modoc County" "The dwelling unit is in CA, Modoc County" +in.county "CA, Mono County" "The dwelling unit is in CA, Mono County" +in.county "CA, Monterey County" "The dwelling unit is in CA, Monterey County" +in.county "CA, Napa County" "The dwelling unit is in CA, Napa County" +in.county "CA, Nevada County" "The dwelling unit is in CA, Nevada County" +in.county "CA, Orange County" "The dwelling unit is in CA, Orange County" +in.county "CA, Placer County" "The dwelling unit is in CA, Placer County" +in.county "CA, Plumas County" "The dwelling unit is in CA, Plumas County" +in.county "CA, Riverside County" "The dwelling unit is in CA, Riverside County" +in.county "CA, Sacramento County" "The dwelling unit is in CA, Sacramento County" +in.county "CA, San Benito County" "The dwelling unit is in CA, San Benito County" +in.county "CA, San Bernardino County" "The dwelling unit is in CA, San Bernardino County" +in.county "CA, San Diego County" "The dwelling unit is in CA, San Diego County" +in.county "CA, San Francisco County" "The dwelling unit is in CA, San Francisco County" +in.county "CA, San Joaquin County" "The dwelling unit is in CA, San Joaquin County" +in.county "CA, San Luis Obispo County" "The dwelling unit is in CA, San Luis Obispo County" +in.county "CA, San Mateo County" "The dwelling unit is in CA, San Mateo County" +in.county "CA, Santa Barbara County" "The dwelling unit is in CA, Santa Barbara County" +in.county "CA, Santa Clara County" "The dwelling unit is in CA, Santa Clara County" +in.county "CA, Santa Cruz County" "The dwelling unit is in CA, Santa Cruz County" +in.county "CA, Shasta County" "The dwelling unit is in CA, Shasta County" +in.county "CA, Sierra County" "The dwelling unit is in CA, Sierra County" +in.county "CA, Siskiyou County" "The dwelling unit is in CA, Siskiyou County" +in.county "CA, Solano County" "The dwelling unit is in CA, Solano County" +in.county "CA, Sonoma County" "The dwelling unit is in CA, Sonoma County" +in.county "CA, Stanislaus County" "The dwelling unit is in CA, Stanislaus County" +in.county "CA, Sutter County" "The dwelling unit is in CA, Sutter County" +in.county "CA, Tehama County" "The dwelling unit is in CA, Tehama County" +in.county "CA, Trinity County" "The dwelling unit is in CA, Trinity County" +in.county "CA, Tulare County" "The dwelling unit is in CA, Tulare County" +in.county "CA, Tuolumne County" "The dwelling unit is in CA, Tuolumne County" +in.county "CA, Ventura County" "The dwelling unit is in CA, Ventura County" +in.county "CA, Yolo County" "The dwelling unit is in CA, Yolo County" +in.county "CA, Yuba County" "The dwelling unit is in CA, Yuba County" +in.county "CO, Adams County" "The dwelling unit is in CO, Adams County" +in.county "CO, Alamosa County" "The dwelling unit is in CO, Alamosa County" +in.county "CO, Arapahoe County" "The dwelling unit is in CO, Arapahoe County" +in.county "CO, Archuleta County" "The dwelling unit is in CO, Archuleta County" +in.county "CO, Baca County" "The dwelling unit is in CO, Baca County" +in.county "CO, Bent County" "The dwelling unit is in CO, Bent County" +in.county "CO, Boulder County" "The dwelling unit is in CO, Boulder County" +in.county "CO, Broomfield County" "The dwelling unit is in CO, Broomfield County" +in.county "CO, Chaffee County" "The dwelling unit is in CO, Chaffee County" +in.county "CO, Cheyenne County" "The dwelling unit is in CO, Cheyenne County" +in.county "CO, Clear Creek County" "The dwelling unit is in CO, Clear Creek County" +in.county "CO, Conejos County" "The dwelling unit is in CO, Conejos County" +in.county "CO, Costilla County" "The dwelling unit is in CO, Costilla County" +in.county "CO, Crowley County" "The dwelling unit is in CO, Crowley County" +in.county "CO, Custer County" "The dwelling unit is in CO, Custer County" +in.county "CO, Delta County" "The dwelling unit is in CO, Delta County" +in.county "CO, Denver County" "The dwelling unit is in CO, Denver County" +in.county "CO, Dolores County" "The dwelling unit is in CO, Dolores County" +in.county "CO, Douglas County" "The dwelling unit is in CO, Douglas County" +in.county "CO, Eagle County" "The dwelling unit is in CO, Eagle County" +in.county "CO, El Paso County" "The dwelling unit is in CO, El Paso County" +in.county "CO, Elbert County" "The dwelling unit is in CO, Elbert County" +in.county "CO, Fremont County" "The dwelling unit is in CO, Fremont County" +in.county "CO, Garfield County" "The dwelling unit is in CO, Garfield County" +in.county "CO, Gilpin County" "The dwelling unit is in CO, Gilpin County" +in.county "CO, Grand County" "The dwelling unit is in CO, Grand County" +in.county "CO, Gunnison County" "The dwelling unit is in CO, Gunnison County" +in.county "CO, Hinsdale County" "The dwelling unit is in CO, Hinsdale County" +in.county "CO, Huerfano County" "The dwelling unit is in CO, Huerfano County" +in.county "CO, Jackson County" "The dwelling unit is in CO, Jackson County" +in.county "CO, Jefferson County" "The dwelling unit is in CO, Jefferson County" +in.county "CO, Kiowa County" "The dwelling unit is in CO, Kiowa County" +in.county "CO, Kit Carson County" "The dwelling unit is in CO, Kit Carson County" +in.county "CO, La Plata County" "The dwelling unit is in CO, La Plata County" +in.county "CO, Lake County" "The dwelling unit is in CO, Lake County" +in.county "CO, Larimer County" "The dwelling unit is in CO, Larimer County" +in.county "CO, Las Animas County" "The dwelling unit is in CO, Las Animas County" +in.county "CO, Lincoln County" "The dwelling unit is in CO, Lincoln County" +in.county "CO, Logan County" "The dwelling unit is in CO, Logan County" +in.county "CO, Mesa County" "The dwelling unit is in CO, Mesa County" +in.county "CO, Mineral County" "The dwelling unit is in CO, Mineral County" +in.county "CO, Moffat County" "The dwelling unit is in CO, Moffat County" +in.county "CO, Montezuma County" "The dwelling unit is in CO, Montezuma County" +in.county "CO, Montrose County" "The dwelling unit is in CO, Montrose County" +in.county "CO, Morgan County" "The dwelling unit is in CO, Morgan County" +in.county "CO, Otero County" "The dwelling unit is in CO, Otero County" +in.county "CO, Ouray County" "The dwelling unit is in CO, Ouray County" +in.county "CO, Park County" "The dwelling unit is in CO, Park County" +in.county "CO, Phillips County" "The dwelling unit is in CO, Phillips County" +in.county "CO, Pitkin County" "The dwelling unit is in CO, Pitkin County" +in.county "CO, Prowers County" "The dwelling unit is in CO, Prowers County" +in.county "CO, Pueblo County" "The dwelling unit is in CO, Pueblo County" +in.county "CO, Rio Blanco County" "The dwelling unit is in CO, Rio Blanco County" +in.county "CO, Rio Grande County" "The dwelling unit is in CO, Rio Grande County" +in.county "CO, Routt County" "The dwelling unit is in CO, Routt County" +in.county "CO, Saguache County" "The dwelling unit is in CO, Saguache County" +in.county "CO, San Juan County" "The dwelling unit is in CO, San Juan County" +in.county "CO, San Miguel County" "The dwelling unit is in CO, San Miguel County" +in.county "CO, Sedgwick County" "The dwelling unit is in CO, Sedgwick County" +in.county "CO, Summit County" "The dwelling unit is in CO, Summit County" +in.county "CO, Teller County" "The dwelling unit is in CO, Teller County" +in.county "CO, Washington County" "The dwelling unit is in CO, Washington County" +in.county "CO, Weld County" "The dwelling unit is in CO, Weld County" +in.county "CO, Yuma County" "The dwelling unit is in CO, Yuma County" +in.county "CT, Fairfield County" "The dwelling unit is in CT, Fairfield County" +in.county "CT, Hartford County" "The dwelling unit is in CT, Hartford County" +in.county "CT, Litchfield County" "The dwelling unit is in CT, Litchfield County" +in.county "CT, Middlesex County" "The dwelling unit is in CT, Middlesex County" +in.county "CT, New Haven County" "The dwelling unit is in CT, New Haven County" +in.county "CT, New London County" "The dwelling unit is in CT, New London County" +in.county "CT, Tolland County" "The dwelling unit is in CT, Tolland County" +in.county "CT, Windham County" "The dwelling unit is in CT, Windham County" +in.county "DC, District of Columbia" "The dwelling unit is in DC, District of Columbia" +in.county "DE, Kent County" "The dwelling unit is in DE, Kent County" +in.county "DE, New Castle County" "The dwelling unit is in DE, New Castle County" +in.county "DE, Sussex County" "The dwelling unit is in DE, Sussex County" +in.county "FL, Alachua County" "The dwelling unit is in FL, Alachua County" +in.county "FL, Baker County" "The dwelling unit is in FL, Baker County" +in.county "FL, Bay County" "The dwelling unit is in FL, Bay County" +in.county "FL, Bradford County" "The dwelling unit is in FL, Bradford County" +in.county "FL, Brevard County" "The dwelling unit is in FL, Brevard County" +in.county "FL, Broward County" "The dwelling unit is in FL, Broward County" +in.county "FL, Calhoun County" "The dwelling unit is in FL, Calhoun County" +in.county "FL, Charlotte County" "The dwelling unit is in FL, Charlotte County" +in.county "FL, Citrus County" "The dwelling unit is in FL, Citrus County" +in.county "FL, Clay County" "The dwelling unit is in FL, Clay County" +in.county "FL, Collier County" "The dwelling unit is in FL, Collier County" +in.county "FL, Columbia County" "The dwelling unit is in FL, Columbia County" +in.county "FL, DeSoto County" "The dwelling unit is in FL, DeSoto County" +in.county "FL, Dixie County" "The dwelling unit is in FL, Dixie County" +in.county "FL, Duval County" "The dwelling unit is in FL, Duval County" +in.county "FL, Escambia County" "The dwelling unit is in FL, Escambia County" +in.county "FL, Flagler County" "The dwelling unit is in FL, Flagler County" +in.county "FL, Franklin County" "The dwelling unit is in FL, Franklin County" +in.county "FL, Gadsden County" "The dwelling unit is in FL, Gadsden County" +in.county "FL, Gilchrist County" "The dwelling unit is in FL, Gilchrist County" +in.county "FL, Glades County" "The dwelling unit is in FL, Glades County" +in.county "FL, Gulf County" "The dwelling unit is in FL, Gulf County" +in.county "FL, Hamilton County" "The dwelling unit is in FL, Hamilton County" +in.county "FL, Hardee County" "The dwelling unit is in FL, Hardee County" +in.county "FL, Hendry County" "The dwelling unit is in FL, Hendry County" +in.county "FL, Hernando County" "The dwelling unit is in FL, Hernando County" +in.county "FL, Highlands County" "The dwelling unit is in FL, Highlands County" +in.county "FL, Hillsborough County" "The dwelling unit is in FL, Hillsborough County" +in.county "FL, Holmes County" "The dwelling unit is in FL, Holmes County" +in.county "FL, Indian River County" "The dwelling unit is in FL, Indian River County" +in.county "FL, Jackson County" "The dwelling unit is in FL, Jackson County" +in.county "FL, Jefferson County" "The dwelling unit is in FL, Jefferson County" +in.county "FL, Lafayette County" "The dwelling unit is in FL, Lafayette County" +in.county "FL, Lake County" "The dwelling unit is in FL, Lake County" +in.county "FL, Lee County" "The dwelling unit is in FL, Lee County" +in.county "FL, Leon County" "The dwelling unit is in FL, Leon County" +in.county "FL, Levy County" "The dwelling unit is in FL, Levy County" +in.county "FL, Liberty County" "The dwelling unit is in FL, Liberty County" +in.county "FL, Madison County" "The dwelling unit is in FL, Madison County" +in.county "FL, Manatee County" "The dwelling unit is in FL, Manatee County" +in.county "FL, Marion County" "The dwelling unit is in FL, Marion County" +in.county "FL, Martin County" "The dwelling unit is in FL, Martin County" +in.county "FL, Miami-Dade County" "The dwelling unit is in FL, Miami-Dade County" +in.county "FL, Monroe County" "The dwelling unit is in FL, Monroe County" +in.county "FL, Nassau County" "The dwelling unit is in FL, Nassau County" +in.county "FL, Okaloosa County" "The dwelling unit is in FL, Okaloosa County" +in.county "FL, Okeechobee County" "The dwelling unit is in FL, Okeechobee County" +in.county "FL, Orange County" "The dwelling unit is in FL, Orange County" +in.county "FL, Osceola County" "The dwelling unit is in FL, Osceola County" +in.county "FL, Palm Beach County" "The dwelling unit is in FL, Palm Beach County" +in.county "FL, Pasco County" "The dwelling unit is in FL, Pasco County" +in.county "FL, Pinellas County" "The dwelling unit is in FL, Pinellas County" +in.county "FL, Polk County" "The dwelling unit is in FL, Polk County" +in.county "FL, Putnam County" "The dwelling unit is in FL, Putnam County" +in.county "FL, Santa Rosa County" "The dwelling unit is in FL, Santa Rosa County" +in.county "FL, Sarasota County" "The dwelling unit is in FL, Sarasota County" +in.county "FL, Seminole County" "The dwelling unit is in FL, Seminole County" +in.county "FL, St. Johns County" "The dwelling unit is in FL, St. Johns County" +in.county "FL, St. Lucie County" "The dwelling unit is in FL, St. Lucie County" +in.county "FL, Sumter County" "The dwelling unit is in FL, Sumter County" +in.county "FL, Suwannee County" "The dwelling unit is in FL, Suwannee County" +in.county "FL, Taylor County" "The dwelling unit is in FL, Taylor County" +in.county "FL, Union County" "The dwelling unit is in FL, Union County" +in.county "FL, Volusia County" "The dwelling unit is in FL, Volusia County" +in.county "FL, Wakulla County" "The dwelling unit is in FL, Wakulla County" +in.county "FL, Walton County" "The dwelling unit is in FL, Walton County" +in.county "FL, Washington County" "The dwelling unit is in FL, Washington County" +in.county "GA, Appling County" "The dwelling unit is in GA, Appling County" +in.county "GA, Atkinson County" "The dwelling unit is in GA, Atkinson County" +in.county "GA, Bacon County" "The dwelling unit is in GA, Bacon County" +in.county "GA, Baker County" "The dwelling unit is in GA, Baker County" +in.county "GA, Baldwin County" "The dwelling unit is in GA, Baldwin County" +in.county "GA, Banks County" "The dwelling unit is in GA, Banks County" +in.county "GA, Barrow County" "The dwelling unit is in GA, Barrow County" +in.county "GA, Bartow County" "The dwelling unit is in GA, Bartow County" +in.county "GA, Ben Hill County" "The dwelling unit is in GA, Ben Hill County" +in.county "GA, Berrien County" "The dwelling unit is in GA, Berrien County" +in.county "GA, Bibb County" "The dwelling unit is in GA, Bibb County" +in.county "GA, Bleckley County" "The dwelling unit is in GA, Bleckley County" +in.county "GA, Brantley County" "The dwelling unit is in GA, Brantley County" +in.county "GA, Brooks County" "The dwelling unit is in GA, Brooks County" +in.county "GA, Bryan County" "The dwelling unit is in GA, Bryan County" +in.county "GA, Bulloch County" "The dwelling unit is in GA, Bulloch County" +in.county "GA, Burke County" "The dwelling unit is in GA, Burke County" +in.county "GA, Butts County" "The dwelling unit is in GA, Butts County" +in.county "GA, Calhoun County" "The dwelling unit is in GA, Calhoun County" +in.county "GA, Camden County" "The dwelling unit is in GA, Camden County" +in.county "GA, Candler County" "The dwelling unit is in GA, Candler County" +in.county "GA, Carroll County" "The dwelling unit is in GA, Carroll County" +in.county "GA, Catoosa County" "The dwelling unit is in GA, Catoosa County" +in.county "GA, Charlton County" "The dwelling unit is in GA, Charlton County" +in.county "GA, Chatham County" "The dwelling unit is in GA, Chatham County" +in.county "GA, Chattahoochee County" "The dwelling unit is in GA, Chattahoochee County" +in.county "GA, Chattooga County" "The dwelling unit is in GA, Chattooga County" +in.county "GA, Cherokee County" "The dwelling unit is in GA, Cherokee County" +in.county "GA, Clarke County" "The dwelling unit is in GA, Clarke County" +in.county "GA, Clay County" "The dwelling unit is in GA, Clay County" +in.county "GA, Clayton County" "The dwelling unit is in GA, Clayton County" +in.county "GA, Clinch County" "The dwelling unit is in GA, Clinch County" +in.county "GA, Cobb County" "The dwelling unit is in GA, Cobb County" +in.county "GA, Coffee County" "The dwelling unit is in GA, Coffee County" +in.county "GA, Colquitt County" "The dwelling unit is in GA, Colquitt County" +in.county "GA, Columbia County" "The dwelling unit is in GA, Columbia County" +in.county "GA, Cook County" "The dwelling unit is in GA, Cook County" +in.county "GA, Coweta County" "The dwelling unit is in GA, Coweta County" +in.county "GA, Crawford County" "The dwelling unit is in GA, Crawford County" +in.county "GA, Crisp County" "The dwelling unit is in GA, Crisp County" +in.county "GA, Dade County" "The dwelling unit is in GA, Dade County" +in.county "GA, Dawson County" "The dwelling unit is in GA, Dawson County" +in.county "GA, DeKalb County" "The dwelling unit is in GA, DeKalb County" +in.county "GA, Decatur County" "The dwelling unit is in GA, Decatur County" +in.county "GA, Dodge County" "The dwelling unit is in GA, Dodge County" +in.county "GA, Dooly County" "The dwelling unit is in GA, Dooly County" +in.county "GA, Dougherty County" "The dwelling unit is in GA, Dougherty County" +in.county "GA, Douglas County" "The dwelling unit is in GA, Douglas County" +in.county "GA, Early County" "The dwelling unit is in GA, Early County" +in.county "GA, Echols County" "The dwelling unit is in GA, Echols County" +in.county "GA, Effingham County" "The dwelling unit is in GA, Effingham County" +in.county "GA, Elbert County" "The dwelling unit is in GA, Elbert County" +in.county "GA, Emanuel County" "The dwelling unit is in GA, Emanuel County" +in.county "GA, Evans County" "The dwelling unit is in GA, Evans County" +in.county "GA, Fannin County" "The dwelling unit is in GA, Fannin County" +in.county "GA, Fayette County" "The dwelling unit is in GA, Fayette County" +in.county "GA, Floyd County" "The dwelling unit is in GA, Floyd County" +in.county "GA, Forsyth County" "The dwelling unit is in GA, Forsyth County" +in.county "GA, Franklin County" "The dwelling unit is in GA, Franklin County" +in.county "GA, Fulton County" "The dwelling unit is in GA, Fulton County" +in.county "GA, Gilmer County" "The dwelling unit is in GA, Gilmer County" +in.county "GA, Glascock County" "The dwelling unit is in GA, Glascock County" +in.county "GA, Glynn County" "The dwelling unit is in GA, Glynn County" +in.county "GA, Gordon County" "The dwelling unit is in GA, Gordon County" +in.county "GA, Grady County" "The dwelling unit is in GA, Grady County" +in.county "GA, Greene County" "The dwelling unit is in GA, Greene County" +in.county "GA, Gwinnett County" "The dwelling unit is in GA, Gwinnett County" +in.county "GA, Habersham County" "The dwelling unit is in GA, Habersham County" +in.county "GA, Hall County" "The dwelling unit is in GA, Hall County" +in.county "GA, Hancock County" "The dwelling unit is in GA, Hancock County" +in.county "GA, Haralson County" "The dwelling unit is in GA, Haralson County" +in.county "GA, Harris County" "The dwelling unit is in GA, Harris County" +in.county "GA, Hart County" "The dwelling unit is in GA, Hart County" +in.county "GA, Heard County" "The dwelling unit is in GA, Heard County" +in.county "GA, Henry County" "The dwelling unit is in GA, Henry County" +in.county "GA, Houston County" "The dwelling unit is in GA, Houston County" +in.county "GA, Irwin County" "The dwelling unit is in GA, Irwin County" +in.county "GA, Jackson County" "The dwelling unit is in GA, Jackson County" +in.county "GA, Jasper County" "The dwelling unit is in GA, Jasper County" +in.county "GA, Jeff Davis County" "The dwelling unit is in GA, Jeff Davis County" +in.county "GA, Jefferson County" "The dwelling unit is in GA, Jefferson County" +in.county "GA, Jenkins County" "The dwelling unit is in GA, Jenkins County" +in.county "GA, Johnson County" "The dwelling unit is in GA, Johnson County" +in.county "GA, Jones County" "The dwelling unit is in GA, Jones County" +in.county "GA, Lamar County" "The dwelling unit is in GA, Lamar County" +in.county "GA, Lanier County" "The dwelling unit is in GA, Lanier County" +in.county "GA, Laurens County" "The dwelling unit is in GA, Laurens County" +in.county "GA, Lee County" "The dwelling unit is in GA, Lee County" +in.county "GA, Liberty County" "The dwelling unit is in GA, Liberty County" +in.county "GA, Lincoln County" "The dwelling unit is in GA, Lincoln County" +in.county "GA, Long County" "The dwelling unit is in GA, Long County" +in.county "GA, Lowndes County" "The dwelling unit is in GA, Lowndes County" +in.county "GA, Lumpkin County" "The dwelling unit is in GA, Lumpkin County" +in.county "GA, Macon County" "The dwelling unit is in GA, Macon County" +in.county "GA, Madison County" "The dwelling unit is in GA, Madison County" +in.county "GA, Marion County" "The dwelling unit is in GA, Marion County" +in.county "GA, McDuffie County" "The dwelling unit is in GA, McDuffie County" +in.county "GA, McIntosh County" "The dwelling unit is in GA, McIntosh County" +in.county "GA, Meriwether County" "The dwelling unit is in GA, Meriwether County" +in.county "GA, Miller County" "The dwelling unit is in GA, Miller County" +in.county "GA, Mitchell County" "The dwelling unit is in GA, Mitchell County" +in.county "GA, Monroe County" "The dwelling unit is in GA, Monroe County" +in.county "GA, Montgomery County" "The dwelling unit is in GA, Montgomery County" +in.county "GA, Morgan County" "The dwelling unit is in GA, Morgan County" +in.county "GA, Murray County" "The dwelling unit is in GA, Murray County" +in.county "GA, Muscogee County" "The dwelling unit is in GA, Muscogee County" +in.county "GA, Newton County" "The dwelling unit is in GA, Newton County" +in.county "GA, Oconee County" "The dwelling unit is in GA, Oconee County" +in.county "GA, Oglethorpe County" "The dwelling unit is in GA, Oglethorpe County" +in.county "GA, Paulding County" "The dwelling unit is in GA, Paulding County" +in.county "GA, Peach County" "The dwelling unit is in GA, Peach County" +in.county "GA, Pickens County" "The dwelling unit is in GA, Pickens County" +in.county "GA, Pierce County" "The dwelling unit is in GA, Pierce County" +in.county "GA, Pike County" "The dwelling unit is in GA, Pike County" +in.county "GA, Polk County" "The dwelling unit is in GA, Polk County" +in.county "GA, Pulaski County" "The dwelling unit is in GA, Pulaski County" +in.county "GA, Putnam County" "The dwelling unit is in GA, Putnam County" +in.county "GA, Quitman County" "The dwelling unit is in GA, Quitman County" +in.county "GA, Rabun County" "The dwelling unit is in GA, Rabun County" +in.county "GA, Randolph County" "The dwelling unit is in GA, Randolph County" +in.county "GA, Richmond County" "The dwelling unit is in GA, Richmond County" +in.county "GA, Rockdale County" "The dwelling unit is in GA, Rockdale County" +in.county "GA, Schley County" "The dwelling unit is in GA, Schley County" +in.county "GA, Screven County" "The dwelling unit is in GA, Screven County" +in.county "GA, Seminole County" "The dwelling unit is in GA, Seminole County" +in.county "GA, Spalding County" "The dwelling unit is in GA, Spalding County" +in.county "GA, Stephens County" "The dwelling unit is in GA, Stephens County" +in.county "GA, Stewart County" "The dwelling unit is in GA, Stewart County" +in.county "GA, Sumter County" "The dwelling unit is in GA, Sumter County" +in.county "GA, Talbot County" "The dwelling unit is in GA, Talbot County" +in.county "GA, Taliaferro County" "The dwelling unit is in GA, Taliaferro County" +in.county "GA, Tattnall County" "The dwelling unit is in GA, Tattnall County" +in.county "GA, Taylor County" "The dwelling unit is in GA, Taylor County" +in.county "GA, Telfair County" "The dwelling unit is in GA, Telfair County" +in.county "GA, Terrell County" "The dwelling unit is in GA, Terrell County" +in.county "GA, Thomas County" "The dwelling unit is in GA, Thomas County" +in.county "GA, Tift County" "The dwelling unit is in GA, Tift County" +in.county "GA, Toombs County" "The dwelling unit is in GA, Toombs County" +in.county "GA, Towns County" "The dwelling unit is in GA, Towns County" +in.county "GA, Treutlen County" "The dwelling unit is in GA, Treutlen County" +in.county "GA, Troup County" "The dwelling unit is in GA, Troup County" +in.county "GA, Turner County" "The dwelling unit is in GA, Turner County" +in.county "GA, Twiggs County" "The dwelling unit is in GA, Twiggs County" +in.county "GA, Union County" "The dwelling unit is in GA, Union County" +in.county "GA, Upson County" "The dwelling unit is in GA, Upson County" +in.county "GA, Walker County" "The dwelling unit is in GA, Walker County" +in.county "GA, Walton County" "The dwelling unit is in GA, Walton County" +in.county "GA, Ware County" "The dwelling unit is in GA, Ware County" +in.county "GA, Warren County" "The dwelling unit is in GA, Warren County" +in.county "GA, Washington County" "The dwelling unit is in GA, Washington County" +in.county "GA, Wayne County" "The dwelling unit is in GA, Wayne County" +in.county "GA, Webster County" "The dwelling unit is in GA, Webster County" +in.county "GA, Wheeler County" "The dwelling unit is in GA, Wheeler County" +in.county "GA, White County" "The dwelling unit is in GA, White County" +in.county "GA, Whitfield County" "The dwelling unit is in GA, Whitfield County" +in.county "GA, Wilcox County" "The dwelling unit is in GA, Wilcox County" +in.county "GA, Wilkes County" "The dwelling unit is in GA, Wilkes County" +in.county "GA, Wilkinson County" "The dwelling unit is in GA, Wilkinson County" +in.county "GA, Worth County" "The dwelling unit is in GA, Worth County" +in.county "HI, Hawaii County" "The dwelling unit is in HI, Hawaii County" +in.county "HI, Honolulu County" "The dwelling unit is in HI, Honolulu County" +in.county "HI, Kauai County" "The dwelling unit is in HI, Kauai County" +in.county "HI, Maui County" "The dwelling unit is in HI, Maui County" +in.county "IA, Adair County" "The dwelling unit is in IA, Adair County" +in.county "IA, Adams County" "The dwelling unit is in IA, Adams County" +in.county "IA, Allamakee County" "The dwelling unit is in IA, Allamakee County" +in.county "IA, Appanoose County" "The dwelling unit is in IA, Appanoose County" +in.county "IA, Audubon County" "The dwelling unit is in IA, Audubon County" +in.county "IA, Benton County" "The dwelling unit is in IA, Benton County" +in.county "IA, Black Hawk County" "The dwelling unit is in IA, Black Hawk County" +in.county "IA, Boone County" "The dwelling unit is in IA, Boone County" +in.county "IA, Bremer County" "The dwelling unit is in IA, Bremer County" +in.county "IA, Buchanan County" "The dwelling unit is in IA, Buchanan County" +in.county "IA, Buena Vista County" "The dwelling unit is in IA, Buena Vista County" +in.county "IA, Butler County" "The dwelling unit is in IA, Butler County" +in.county "IA, Calhoun County" "The dwelling unit is in IA, Calhoun County" +in.county "IA, Carroll County" "The dwelling unit is in IA, Carroll County" +in.county "IA, Cass County" "The dwelling unit is in IA, Cass County" +in.county "IA, Cedar County" "The dwelling unit is in IA, Cedar County" +in.county "IA, Cerro Gordo County" "The dwelling unit is in IA, Cerro Gordo County" +in.county "IA, Cherokee County" "The dwelling unit is in IA, Cherokee County" +in.county "IA, Chickasaw County" "The dwelling unit is in IA, Chickasaw County" +in.county "IA, Clarke County" "The dwelling unit is in IA, Clarke County" +in.county "IA, Clay County" "The dwelling unit is in IA, Clay County" +in.county "IA, Clayton County" "The dwelling unit is in IA, Clayton County" +in.county "IA, Clinton County" "The dwelling unit is in IA, Clinton County" +in.county "IA, Crawford County" "The dwelling unit is in IA, Crawford County" +in.county "IA, Dallas County" "The dwelling unit is in IA, Dallas County" +in.county "IA, Davis County" "The dwelling unit is in IA, Davis County" +in.county "IA, Decatur County" "The dwelling unit is in IA, Decatur County" +in.county "IA, Delaware County" "The dwelling unit is in IA, Delaware County" +in.county "IA, Des Moines County" "The dwelling unit is in IA, Des Moines County" +in.county "IA, Dickinson County" "The dwelling unit is in IA, Dickinson County" +in.county "IA, Dubuque County" "The dwelling unit is in IA, Dubuque County" +in.county "IA, Emmet County" "The dwelling unit is in IA, Emmet County" +in.county "IA, Fayette County" "The dwelling unit is in IA, Fayette County" +in.county "IA, Floyd County" "The dwelling unit is in IA, Floyd County" +in.county "IA, Franklin County" "The dwelling unit is in IA, Franklin County" +in.county "IA, Fremont County" "The dwelling unit is in IA, Fremont County" +in.county "IA, Greene County" "The dwelling unit is in IA, Greene County" +in.county "IA, Grundy County" "The dwelling unit is in IA, Grundy County" +in.county "IA, Guthrie County" "The dwelling unit is in IA, Guthrie County" +in.county "IA, Hamilton County" "The dwelling unit is in IA, Hamilton County" +in.county "IA, Hancock County" "The dwelling unit is in IA, Hancock County" +in.county "IA, Hardin County" "The dwelling unit is in IA, Hardin County" +in.county "IA, Harrison County" "The dwelling unit is in IA, Harrison County" +in.county "IA, Henry County" "The dwelling unit is in IA, Henry County" +in.county "IA, Howard County" "The dwelling unit is in IA, Howard County" +in.county "IA, Humboldt County" "The dwelling unit is in IA, Humboldt County" +in.county "IA, Ida County" "The dwelling unit is in IA, Ida County" +in.county "IA, Iowa County" "The dwelling unit is in IA, Iowa County" +in.county "IA, Jackson County" "The dwelling unit is in IA, Jackson County" +in.county "IA, Jasper County" "The dwelling unit is in IA, Jasper County" +in.county "IA, Jefferson County" "The dwelling unit is in IA, Jefferson County" +in.county "IA, Johnson County" "The dwelling unit is in IA, Johnson County" +in.county "IA, Jones County" "The dwelling unit is in IA, Jones County" +in.county "IA, Keokuk County" "The dwelling unit is in IA, Keokuk County" +in.county "IA, Kossuth County" "The dwelling unit is in IA, Kossuth County" +in.county "IA, Lee County" "The dwelling unit is in IA, Lee County" +in.county "IA, Linn County" "The dwelling unit is in IA, Linn County" +in.county "IA, Louisa County" "The dwelling unit is in IA, Louisa County" +in.county "IA, Lucas County" "The dwelling unit is in IA, Lucas County" +in.county "IA, Lyon County" "The dwelling unit is in IA, Lyon County" +in.county "IA, Madison County" "The dwelling unit is in IA, Madison County" +in.county "IA, Mahaska County" "The dwelling unit is in IA, Mahaska County" +in.county "IA, Marion County" "The dwelling unit is in IA, Marion County" +in.county "IA, Marshall County" "The dwelling unit is in IA, Marshall County" +in.county "IA, Mills County" "The dwelling unit is in IA, Mills County" +in.county "IA, Mitchell County" "The dwelling unit is in IA, Mitchell County" +in.county "IA, Monona County" "The dwelling unit is in IA, Monona County" +in.county "IA, Monroe County" "The dwelling unit is in IA, Monroe County" +in.county "IA, Montgomery County" "The dwelling unit is in IA, Montgomery County" +in.county "IA, Muscatine County" "The dwelling unit is in IA, Muscatine County" +in.county "IA, O'Brien County" "The dwelling unit is in IA, O'Brien County" +in.county "IA, Osceola County" "The dwelling unit is in IA, Osceola County" +in.county "IA, Page County" "The dwelling unit is in IA, Page County" +in.county "IA, Palo Alto County" "The dwelling unit is in IA, Palo Alto County" +in.county "IA, Plymouth County" "The dwelling unit is in IA, Plymouth County" +in.county "IA, Pocahontas County" "The dwelling unit is in IA, Pocahontas County" +in.county "IA, Polk County" "The dwelling unit is in IA, Polk County" +in.county "IA, Pottawattamie County" "The dwelling unit is in IA, Pottawattamie County" +in.county "IA, Poweshiek County" "The dwelling unit is in IA, Poweshiek County" +in.county "IA, Ringgold County" "The dwelling unit is in IA, Ringgold County" +in.county "IA, Sac County" "The dwelling unit is in IA, Sac County" +in.county "IA, Scott County" "The dwelling unit is in IA, Scott County" +in.county "IA, Shelby County" "The dwelling unit is in IA, Shelby County" +in.county "IA, Sioux County" "The dwelling unit is in IA, Sioux County" +in.county "IA, Story County" "The dwelling unit is in IA, Story County" +in.county "IA, Tama County" "The dwelling unit is in IA, Tama County" +in.county "IA, Taylor County" "The dwelling unit is in IA, Taylor County" +in.county "IA, Union County" "The dwelling unit is in IA, Union County" +in.county "IA, Van Buren County" "The dwelling unit is in IA, Van Buren County" +in.county "IA, Wapello County" "The dwelling unit is in IA, Wapello County" +in.county "IA, Warren County" "The dwelling unit is in IA, Warren County" +in.county "IA, Washington County" "The dwelling unit is in IA, Washington County" +in.county "IA, Wayne County" "The dwelling unit is in IA, Wayne County" +in.county "IA, Webster County" "The dwelling unit is in IA, Webster County" +in.county "IA, Winnebago County" "The dwelling unit is in IA, Winnebago County" +in.county "IA, Winneshiek County" "The dwelling unit is in IA, Winneshiek County" +in.county "IA, Woodbury County" "The dwelling unit is in IA, Woodbury County" +in.county "IA, Worth County" "The dwelling unit is in IA, Worth County" +in.county "IA, Wright County" "The dwelling unit is in IA, Wright County" +in.county "ID, Ada County" "The dwelling unit is in ID, Ada County" +in.county "ID, Adams County" "The dwelling unit is in ID, Adams County" +in.county "ID, Bannock County" "The dwelling unit is in ID, Bannock County" +in.county "ID, Bear Lake County" "The dwelling unit is in ID, Bear Lake County" +in.county "ID, Benewah County" "The dwelling unit is in ID, Benewah County" +in.county "ID, Bingham County" "The dwelling unit is in ID, Bingham County" +in.county "ID, Blaine County" "The dwelling unit is in ID, Blaine County" +in.county "ID, Boise County" "The dwelling unit is in ID, Boise County" +in.county "ID, Bonner County" "The dwelling unit is in ID, Bonner County" +in.county "ID, Bonneville County" "The dwelling unit is in ID, Bonneville County" +in.county "ID, Boundary County" "The dwelling unit is in ID, Boundary County" +in.county "ID, Butte County" "The dwelling unit is in ID, Butte County" +in.county "ID, Camas County" "The dwelling unit is in ID, Camas County" +in.county "ID, Canyon County" "The dwelling unit is in ID, Canyon County" +in.county "ID, Caribou County" "The dwelling unit is in ID, Caribou County" +in.county "ID, Cassia County" "The dwelling unit is in ID, Cassia County" +in.county "ID, Clark County" "The dwelling unit is in ID, Clark County" +in.county "ID, Clearwater County" "The dwelling unit is in ID, Clearwater County" +in.county "ID, Custer County" "The dwelling unit is in ID, Custer County" +in.county "ID, Elmore County" "The dwelling unit is in ID, Elmore County" +in.county "ID, Franklin County" "The dwelling unit is in ID, Franklin County" +in.county "ID, Fremont County" "The dwelling unit is in ID, Fremont County" +in.county "ID, Gem County" "The dwelling unit is in ID, Gem County" +in.county "ID, Gooding County" "The dwelling unit is in ID, Gooding County" +in.county "ID, Idaho County" "The dwelling unit is in ID, Idaho County" +in.county "ID, Jefferson County" "The dwelling unit is in ID, Jefferson County" +in.county "ID, Jerome County" "The dwelling unit is in ID, Jerome County" +in.county "ID, Kootenai County" "The dwelling unit is in ID, Kootenai County" +in.county "ID, Latah County" "The dwelling unit is in ID, Latah County" +in.county "ID, Lemhi County" "The dwelling unit is in ID, Lemhi County" +in.county "ID, Lewis County" "The dwelling unit is in ID, Lewis County" +in.county "ID, Lincoln County" "The dwelling unit is in ID, Lincoln County" +in.county "ID, Madison County" "The dwelling unit is in ID, Madison County" +in.county "ID, Minidoka County" "The dwelling unit is in ID, Minidoka County" +in.county "ID, Nez Perce County" "The dwelling unit is in ID, Nez Perce County" +in.county "ID, Oneida County" "The dwelling unit is in ID, Oneida County" +in.county "ID, Owyhee County" "The dwelling unit is in ID, Owyhee County" +in.county "ID, Payette County" "The dwelling unit is in ID, Payette County" +in.county "ID, Power County" "The dwelling unit is in ID, Power County" +in.county "ID, Shoshone County" "The dwelling unit is in ID, Shoshone County" +in.county "ID, Teton County" "The dwelling unit is in ID, Teton County" +in.county "ID, Twin Falls County" "The dwelling unit is in ID, Twin Falls County" +in.county "ID, Valley County" "The dwelling unit is in ID, Valley County" +in.county "ID, Washington County" "The dwelling unit is in ID, Washington County" +in.county "IL, Adams County" "The dwelling unit is in IL, Adams County" +in.county "IL, Alexander County" "The dwelling unit is in IL, Alexander County" +in.county "IL, Bond County" "The dwelling unit is in IL, Bond County" +in.county "IL, Boone County" "The dwelling unit is in IL, Boone County" +in.county "IL, Brown County" "The dwelling unit is in IL, Brown County" +in.county "IL, Bureau County" "The dwelling unit is in IL, Bureau County" +in.county "IL, Calhoun County" "The dwelling unit is in IL, Calhoun County" +in.county "IL, Carroll County" "The dwelling unit is in IL, Carroll County" +in.county "IL, Cass County" "The dwelling unit is in IL, Cass County" +in.county "IL, Champaign County" "The dwelling unit is in IL, Champaign County" +in.county "IL, Christian County" "The dwelling unit is in IL, Christian County" +in.county "IL, Clark County" "The dwelling unit is in IL, Clark County" +in.county "IL, Clay County" "The dwelling unit is in IL, Clay County" +in.county "IL, Clinton County" "The dwelling unit is in IL, Clinton County" +in.county "IL, Coles County" "The dwelling unit is in IL, Coles County" +in.county "IL, Cook County" "The dwelling unit is in IL, Cook County" +in.county "IL, Crawford County" "The dwelling unit is in IL, Crawford County" +in.county "IL, Cumberland County" "The dwelling unit is in IL, Cumberland County" +in.county "IL, De Witt County" "The dwelling unit is in IL, De Witt County" +in.county "IL, DeKalb County" "The dwelling unit is in IL, DeKalb County" +in.county "IL, Douglas County" "The dwelling unit is in IL, Douglas County" +in.county "IL, DuPage County" "The dwelling unit is in IL, DuPage County" +in.county "IL, Edgar County" "The dwelling unit is in IL, Edgar County" +in.county "IL, Edwards County" "The dwelling unit is in IL, Edwards County" +in.county "IL, Effingham County" "The dwelling unit is in IL, Effingham County" +in.county "IL, Fayette County" "The dwelling unit is in IL, Fayette County" +in.county "IL, Ford County" "The dwelling unit is in IL, Ford County" +in.county "IL, Franklin County" "The dwelling unit is in IL, Franklin County" +in.county "IL, Fulton County" "The dwelling unit is in IL, Fulton County" +in.county "IL, Gallatin County" "The dwelling unit is in IL, Gallatin County" +in.county "IL, Greene County" "The dwelling unit is in IL, Greene County" +in.county "IL, Grundy County" "The dwelling unit is in IL, Grundy County" +in.county "IL, Hamilton County" "The dwelling unit is in IL, Hamilton County" +in.county "IL, Hancock County" "The dwelling unit is in IL, Hancock County" +in.county "IL, Hardin County" "The dwelling unit is in IL, Hardin County" +in.county "IL, Henderson County" "The dwelling unit is in IL, Henderson County" +in.county "IL, Henry County" "The dwelling unit is in IL, Henry County" +in.county "IL, Iroquois County" "The dwelling unit is in IL, Iroquois County" +in.county "IL, Jackson County" "The dwelling unit is in IL, Jackson County" +in.county "IL, Jasper County" "The dwelling unit is in IL, Jasper County" +in.county "IL, Jefferson County" "The dwelling unit is in IL, Jefferson County" +in.county "IL, Jersey County" "The dwelling unit is in IL, Jersey County" +in.county "IL, Jo Daviess County" "The dwelling unit is in IL, Jo Daviess County" +in.county "IL, Johnson County" "The dwelling unit is in IL, Johnson County" +in.county "IL, Kane County" "The dwelling unit is in IL, Kane County" +in.county "IL, Kankakee County" "The dwelling unit is in IL, Kankakee County" +in.county "IL, Kendall County" "The dwelling unit is in IL, Kendall County" +in.county "IL, Knox County" "The dwelling unit is in IL, Knox County" +in.county "IL, LaSalle County" "The dwelling unit is in IL, LaSalle County" +in.county "IL, Lake County" "The dwelling unit is in IL, Lake County" +in.county "IL, Lawrence County" "The dwelling unit is in IL, Lawrence County" +in.county "IL, Lee County" "The dwelling unit is in IL, Lee County" +in.county "IL, Livingston County" "The dwelling unit is in IL, Livingston County" +in.county "IL, Logan County" "The dwelling unit is in IL, Logan County" +in.county "IL, Macon County" "The dwelling unit is in IL, Macon County" +in.county "IL, Macoupin County" "The dwelling unit is in IL, Macoupin County" +in.county "IL, Madison County" "The dwelling unit is in IL, Madison County" +in.county "IL, Marion County" "The dwelling unit is in IL, Marion County" +in.county "IL, Marshall County" "The dwelling unit is in IL, Marshall County" +in.county "IL, Mason County" "The dwelling unit is in IL, Mason County" +in.county "IL, Massac County" "The dwelling unit is in IL, Massac County" +in.county "IL, McDonough County" "The dwelling unit is in IL, McDonough County" +in.county "IL, McHenry County" "The dwelling unit is in IL, McHenry County" +in.county "IL, McLean County" "The dwelling unit is in IL, McLean County" +in.county "IL, Menard County" "The dwelling unit is in IL, Menard County" +in.county "IL, Mercer County" "The dwelling unit is in IL, Mercer County" +in.county "IL, Monroe County" "The dwelling unit is in IL, Monroe County" +in.county "IL, Montgomery County" "The dwelling unit is in IL, Montgomery County" +in.county "IL, Morgan County" "The dwelling unit is in IL, Morgan County" +in.county "IL, Moultrie County" "The dwelling unit is in IL, Moultrie County" +in.county "IL, Ogle County" "The dwelling unit is in IL, Ogle County" +in.county "IL, Peoria County" "The dwelling unit is in IL, Peoria County" +in.county "IL, Perry County" "The dwelling unit is in IL, Perry County" +in.county "IL, Piatt County" "The dwelling unit is in IL, Piatt County" +in.county "IL, Pike County" "The dwelling unit is in IL, Pike County" +in.county "IL, Pope County" "The dwelling unit is in IL, Pope County" +in.county "IL, Pulaski County" "The dwelling unit is in IL, Pulaski County" +in.county "IL, Putnam County" "The dwelling unit is in IL, Putnam County" +in.county "IL, Randolph County" "The dwelling unit is in IL, Randolph County" +in.county "IL, Richland County" "The dwelling unit is in IL, Richland County" +in.county "IL, Rock Island County" "The dwelling unit is in IL, Rock Island County" +in.county "IL, Saline County" "The dwelling unit is in IL, Saline County" +in.county "IL, Sangamon County" "The dwelling unit is in IL, Sangamon County" +in.county "IL, Schuyler County" "The dwelling unit is in IL, Schuyler County" +in.county "IL, Scott County" "The dwelling unit is in IL, Scott County" +in.county "IL, Shelby County" "The dwelling unit is in IL, Shelby County" +in.county "IL, St. Clair County" "The dwelling unit is in IL, St. Clair County" +in.county "IL, Stark County" "The dwelling unit is in IL, Stark County" +in.county "IL, Stephenson County" "The dwelling unit is in IL, Stephenson County" +in.county "IL, Tazewell County" "The dwelling unit is in IL, Tazewell County" +in.county "IL, Union County" "The dwelling unit is in IL, Union County" +in.county "IL, Vermilion County" "The dwelling unit is in IL, Vermilion County" +in.county "IL, Wabash County" "The dwelling unit is in IL, Wabash County" +in.county "IL, Warren County" "The dwelling unit is in IL, Warren County" +in.county "IL, Washington County" "The dwelling unit is in IL, Washington County" +in.county "IL, Wayne County" "The dwelling unit is in IL, Wayne County" +in.county "IL, White County" "The dwelling unit is in IL, White County" +in.county "IL, Whiteside County" "The dwelling unit is in IL, Whiteside County" +in.county "IL, Will County" "The dwelling unit is in IL, Will County" +in.county "IL, Williamson County" "The dwelling unit is in IL, Williamson County" +in.county "IL, Winnebago County" "The dwelling unit is in IL, Winnebago County" +in.county "IL, Woodford County" "The dwelling unit is in IL, Woodford County" +in.county "IN, Adams County" "The dwelling unit is in IN, Adams County" +in.county "IN, Allen County" "The dwelling unit is in IN, Allen County" +in.county "IN, Bartholomew County" "The dwelling unit is in IN, Bartholomew County" +in.county "IN, Benton County" "The dwelling unit is in IN, Benton County" +in.county "IN, Blackford County" "The dwelling unit is in IN, Blackford County" +in.county "IN, Boone County" "The dwelling unit is in IN, Boone County" +in.county "IN, Brown County" "The dwelling unit is in IN, Brown County" +in.county "IN, Carroll County" "The dwelling unit is in IN, Carroll County" +in.county "IN, Cass County" "The dwelling unit is in IN, Cass County" +in.county "IN, Clark County" "The dwelling unit is in IN, Clark County" +in.county "IN, Clay County" "The dwelling unit is in IN, Clay County" +in.county "IN, Clinton County" "The dwelling unit is in IN, Clinton County" +in.county "IN, Crawford County" "The dwelling unit is in IN, Crawford County" +in.county "IN, Daviess County" "The dwelling unit is in IN, Daviess County" +in.county "IN, DeKalb County" "The dwelling unit is in IN, DeKalb County" +in.county "IN, Dearborn County" "The dwelling unit is in IN, Dearborn County" +in.county "IN, Decatur County" "The dwelling unit is in IN, Decatur County" +in.county "IN, Delaware County" "The dwelling unit is in IN, Delaware County" +in.county "IN, Dubois County" "The dwelling unit is in IN, Dubois County" +in.county "IN, Elkhart County" "The dwelling unit is in IN, Elkhart County" +in.county "IN, Fayette County" "The dwelling unit is in IN, Fayette County" +in.county "IN, Floyd County" "The dwelling unit is in IN, Floyd County" +in.county "IN, Fountain County" "The dwelling unit is in IN, Fountain County" +in.county "IN, Franklin County" "The dwelling unit is in IN, Franklin County" +in.county "IN, Fulton County" "The dwelling unit is in IN, Fulton County" +in.county "IN, Gibson County" "The dwelling unit is in IN, Gibson County" +in.county "IN, Grant County" "The dwelling unit is in IN, Grant County" +in.county "IN, Greene County" "The dwelling unit is in IN, Greene County" +in.county "IN, Hamilton County" "The dwelling unit is in IN, Hamilton County" +in.county "IN, Hancock County" "The dwelling unit is in IN, Hancock County" +in.county "IN, Harrison County" "The dwelling unit is in IN, Harrison County" +in.county "IN, Hendricks County" "The dwelling unit is in IN, Hendricks County" +in.county "IN, Henry County" "The dwelling unit is in IN, Henry County" +in.county "IN, Howard County" "The dwelling unit is in IN, Howard County" +in.county "IN, Huntington County" "The dwelling unit is in IN, Huntington County" +in.county "IN, Jackson County" "The dwelling unit is in IN, Jackson County" +in.county "IN, Jasper County" "The dwelling unit is in IN, Jasper County" +in.county "IN, Jay County" "The dwelling unit is in IN, Jay County" +in.county "IN, Jefferson County" "The dwelling unit is in IN, Jefferson County" +in.county "IN, Jennings County" "The dwelling unit is in IN, Jennings County" +in.county "IN, Johnson County" "The dwelling unit is in IN, Johnson County" +in.county "IN, Knox County" "The dwelling unit is in IN, Knox County" +in.county "IN, Kosciusko County" "The dwelling unit is in IN, Kosciusko County" +in.county "IN, LaGrange County" "The dwelling unit is in IN, LaGrange County" +in.county "IN, LaPorte County" "The dwelling unit is in IN, LaPorte County" +in.county "IN, Lake County" "The dwelling unit is in IN, Lake County" +in.county "IN, Lawrence County" "The dwelling unit is in IN, Lawrence County" +in.county "IN, Madison County" "The dwelling unit is in IN, Madison County" +in.county "IN, Marion County" "The dwelling unit is in IN, Marion County" +in.county "IN, Marshall County" "The dwelling unit is in IN, Marshall County" +in.county "IN, Martin County" "The dwelling unit is in IN, Martin County" +in.county "IN, Miami County" "The dwelling unit is in IN, Miami County" +in.county "IN, Monroe County" "The dwelling unit is in IN, Monroe County" +in.county "IN, Montgomery County" "The dwelling unit is in IN, Montgomery County" +in.county "IN, Morgan County" "The dwelling unit is in IN, Morgan County" +in.county "IN, Newton County" "The dwelling unit is in IN, Newton County" +in.county "IN, Noble County" "The dwelling unit is in IN, Noble County" +in.county "IN, Ohio County" "The dwelling unit is in IN, Ohio County" +in.county "IN, Orange County" "The dwelling unit is in IN, Orange County" +in.county "IN, Owen County" "The dwelling unit is in IN, Owen County" +in.county "IN, Parke County" "The dwelling unit is in IN, Parke County" +in.county "IN, Perry County" "The dwelling unit is in IN, Perry County" +in.county "IN, Pike County" "The dwelling unit is in IN, Pike County" +in.county "IN, Porter County" "The dwelling unit is in IN, Porter County" +in.county "IN, Posey County" "The dwelling unit is in IN, Posey County" +in.county "IN, Pulaski County" "The dwelling unit is in IN, Pulaski County" +in.county "IN, Putnam County" "The dwelling unit is in IN, Putnam County" +in.county "IN, Randolph County" "The dwelling unit is in IN, Randolph County" +in.county "IN, Ripley County" "The dwelling unit is in IN, Ripley County" +in.county "IN, Rush County" "The dwelling unit is in IN, Rush County" +in.county "IN, Scott County" "The dwelling unit is in IN, Scott County" +in.county "IN, Shelby County" "The dwelling unit is in IN, Shelby County" +in.county "IN, Spencer County" "The dwelling unit is in IN, Spencer County" +in.county "IN, St. Joseph County" "The dwelling unit is in IN, St. Joseph County" +in.county "IN, Starke County" "The dwelling unit is in IN, Starke County" +in.county "IN, Steuben County" "The dwelling unit is in IN, Steuben County" +in.county "IN, Sullivan County" "The dwelling unit is in IN, Sullivan County" +in.county "IN, Switzerland County" "The dwelling unit is in IN, Switzerland County" +in.county "IN, Tippecanoe County" "The dwelling unit is in IN, Tippecanoe County" +in.county "IN, Tipton County" "The dwelling unit is in IN, Tipton County" +in.county "IN, Union County" "The dwelling unit is in IN, Union County" +in.county "IN, Vanderburgh County" "The dwelling unit is in IN, Vanderburgh County" +in.county "IN, Vermillion County" "The dwelling unit is in IN, Vermillion County" +in.county "IN, Vigo County" "The dwelling unit is in IN, Vigo County" +in.county "IN, Wabash County" "The dwelling unit is in IN, Wabash County" +in.county "IN, Warren County" "The dwelling unit is in IN, Warren County" +in.county "IN, Warrick County" "The dwelling unit is in IN, Warrick County" +in.county "IN, Washington County" "The dwelling unit is in IN, Washington County" +in.county "IN, Wayne County" "The dwelling unit is in IN, Wayne County" +in.county "IN, Wells County" "The dwelling unit is in IN, Wells County" +in.county "IN, White County" "The dwelling unit is in IN, White County" +in.county "IN, Whitley County" "The dwelling unit is in IN, Whitley County" +in.county "KS, Allen County" "The dwelling unit is in KS, Allen County" +in.county "KS, Anderson County" "The dwelling unit is in KS, Anderson County" +in.county "KS, Atchison County" "The dwelling unit is in KS, Atchison County" +in.county "KS, Barber County" "The dwelling unit is in KS, Barber County" +in.county "KS, Barton County" "The dwelling unit is in KS, Barton County" +in.county "KS, Bourbon County" "The dwelling unit is in KS, Bourbon County" +in.county "KS, Brown County" "The dwelling unit is in KS, Brown County" +in.county "KS, Butler County" "The dwelling unit is in KS, Butler County" +in.county "KS, Chase County" "The dwelling unit is in KS, Chase County" +in.county "KS, Chautauqua County" "The dwelling unit is in KS, Chautauqua County" +in.county "KS, Cherokee County" "The dwelling unit is in KS, Cherokee County" +in.county "KS, Cheyenne County" "The dwelling unit is in KS, Cheyenne County" +in.county "KS, Clark County" "The dwelling unit is in KS, Clark County" +in.county "KS, Clay County" "The dwelling unit is in KS, Clay County" +in.county "KS, Cloud County" "The dwelling unit is in KS, Cloud County" +in.county "KS, Coffey County" "The dwelling unit is in KS, Coffey County" +in.county "KS, Comanche County" "The dwelling unit is in KS, Comanche County" +in.county "KS, Cowley County" "The dwelling unit is in KS, Cowley County" +in.county "KS, Crawford County" "The dwelling unit is in KS, Crawford County" +in.county "KS, Decatur County" "The dwelling unit is in KS, Decatur County" +in.county "KS, Dickinson County" "The dwelling unit is in KS, Dickinson County" +in.county "KS, Doniphan County" "The dwelling unit is in KS, Doniphan County" +in.county "KS, Douglas County" "The dwelling unit is in KS, Douglas County" +in.county "KS, Edwards County" "The dwelling unit is in KS, Edwards County" +in.county "KS, Elk County" "The dwelling unit is in KS, Elk County" +in.county "KS, Ellis County" "The dwelling unit is in KS, Ellis County" +in.county "KS, Ellsworth County" "The dwelling unit is in KS, Ellsworth County" +in.county "KS, Finney County" "The dwelling unit is in KS, Finney County" +in.county "KS, Ford County" "The dwelling unit is in KS, Ford County" +in.county "KS, Franklin County" "The dwelling unit is in KS, Franklin County" +in.county "KS, Geary County" "The dwelling unit is in KS, Geary County" +in.county "KS, Gove County" "The dwelling unit is in KS, Gove County" +in.county "KS, Graham County" "The dwelling unit is in KS, Graham County" +in.county "KS, Grant County" "The dwelling unit is in KS, Grant County" +in.county "KS, Gray County" "The dwelling unit is in KS, Gray County" +in.county "KS, Greeley County" "The dwelling unit is in KS, Greeley County" +in.county "KS, Greenwood County" "The dwelling unit is in KS, Greenwood County" +in.county "KS, Hamilton County" "The dwelling unit is in KS, Hamilton County" +in.county "KS, Harper County" "The dwelling unit is in KS, Harper County" +in.county "KS, Harvey County" "The dwelling unit is in KS, Harvey County" +in.county "KS, Haskell County" "The dwelling unit is in KS, Haskell County" +in.county "KS, Hodgeman County" "The dwelling unit is in KS, Hodgeman County" +in.county "KS, Jackson County" "The dwelling unit is in KS, Jackson County" +in.county "KS, Jefferson County" "The dwelling unit is in KS, Jefferson County" +in.county "KS, Jewell County" "The dwelling unit is in KS, Jewell County" +in.county "KS, Johnson County" "The dwelling unit is in KS, Johnson County" +in.county "KS, Kearny County" "The dwelling unit is in KS, Kearny County" +in.county "KS, Kingman County" "The dwelling unit is in KS, Kingman County" +in.county "KS, Kiowa County" "The dwelling unit is in KS, Kiowa County" +in.county "KS, Labette County" "The dwelling unit is in KS, Labette County" +in.county "KS, Lane County" "The dwelling unit is in KS, Lane County" +in.county "KS, Leavenworth County" "The dwelling unit is in KS, Leavenworth County" +in.county "KS, Lincoln County" "The dwelling unit is in KS, Lincoln County" +in.county "KS, Linn County" "The dwelling unit is in KS, Linn County" +in.county "KS, Logan County" "The dwelling unit is in KS, Logan County" +in.county "KS, Lyon County" "The dwelling unit is in KS, Lyon County" +in.county "KS, Marion County" "The dwelling unit is in KS, Marion County" +in.county "KS, Marshall County" "The dwelling unit is in KS, Marshall County" +in.county "KS, McPherson County" "The dwelling unit is in KS, McPherson County" +in.county "KS, Meade County" "The dwelling unit is in KS, Meade County" +in.county "KS, Miami County" "The dwelling unit is in KS, Miami County" +in.county "KS, Mitchell County" "The dwelling unit is in KS, Mitchell County" +in.county "KS, Montgomery County" "The dwelling unit is in KS, Montgomery County" +in.county "KS, Morris County" "The dwelling unit is in KS, Morris County" +in.county "KS, Morton County" "The dwelling unit is in KS, Morton County" +in.county "KS, Nemaha County" "The dwelling unit is in KS, Nemaha County" +in.county "KS, Neosho County" "The dwelling unit is in KS, Neosho County" +in.county "KS, Ness County" "The dwelling unit is in KS, Ness County" +in.county "KS, Norton County" "The dwelling unit is in KS, Norton County" +in.county "KS, Osage County" "The dwelling unit is in KS, Osage County" +in.county "KS, Osborne County" "The dwelling unit is in KS, Osborne County" +in.county "KS, Ottawa County" "The dwelling unit is in KS, Ottawa County" +in.county "KS, Pawnee County" "The dwelling unit is in KS, Pawnee County" +in.county "KS, Phillips County" "The dwelling unit is in KS, Phillips County" +in.county "KS, Pottawatomie County" "The dwelling unit is in KS, Pottawatomie County" +in.county "KS, Pratt County" "The dwelling unit is in KS, Pratt County" +in.county "KS, Rawlins County" "The dwelling unit is in KS, Rawlins County" +in.county "KS, Reno County" "The dwelling unit is in KS, Reno County" +in.county "KS, Republic County" "The dwelling unit is in KS, Republic County" +in.county "KS, Rice County" "The dwelling unit is in KS, Rice County" +in.county "KS, Riley County" "The dwelling unit is in KS, Riley County" +in.county "KS, Rooks County" "The dwelling unit is in KS, Rooks County" +in.county "KS, Rush County" "The dwelling unit is in KS, Rush County" +in.county "KS, Russell County" "The dwelling unit is in KS, Russell County" +in.county "KS, Saline County" "The dwelling unit is in KS, Saline County" +in.county "KS, Scott County" "The dwelling unit is in KS, Scott County" +in.county "KS, Sedgwick County" "The dwelling unit is in KS, Sedgwick County" +in.county "KS, Seward County" "The dwelling unit is in KS, Seward County" +in.county "KS, Shawnee County" "The dwelling unit is in KS, Shawnee County" +in.county "KS, Sheridan County" "The dwelling unit is in KS, Sheridan County" +in.county "KS, Sherman County" "The dwelling unit is in KS, Sherman County" +in.county "KS, Smith County" "The dwelling unit is in KS, Smith County" +in.county "KS, Stafford County" "The dwelling unit is in KS, Stafford County" +in.county "KS, Stanton County" "The dwelling unit is in KS, Stanton County" +in.county "KS, Stevens County" "The dwelling unit is in KS, Stevens County" +in.county "KS, Sumner County" "The dwelling unit is in KS, Sumner County" +in.county "KS, Thomas County" "The dwelling unit is in KS, Thomas County" +in.county "KS, Trego County" "The dwelling unit is in KS, Trego County" +in.county "KS, Wabaunsee County" "The dwelling unit is in KS, Wabaunsee County" +in.county "KS, Wallace County" "The dwelling unit is in KS, Wallace County" +in.county "KS, Washington County" "The dwelling unit is in KS, Washington County" +in.county "KS, Wichita County" "The dwelling unit is in KS, Wichita County" +in.county "KS, Wilson County" "The dwelling unit is in KS, Wilson County" +in.county "KS, Woodson County" "The dwelling unit is in KS, Woodson County" +in.county "KS, Wyandotte County" "The dwelling unit is in KS, Wyandotte County" +in.county "KY, Adair County" "The dwelling unit is in KY, Adair County" +in.county "KY, Allen County" "The dwelling unit is in KY, Allen County" +in.county "KY, Anderson County" "The dwelling unit is in KY, Anderson County" +in.county "KY, Ballard County" "The dwelling unit is in KY, Ballard County" +in.county "KY, Barren County" "The dwelling unit is in KY, Barren County" +in.county "KY, Bath County" "The dwelling unit is in KY, Bath County" +in.county "KY, Bell County" "The dwelling unit is in KY, Bell County" +in.county "KY, Boone County" "The dwelling unit is in KY, Boone County" +in.county "KY, Bourbon County" "The dwelling unit is in KY, Bourbon County" +in.county "KY, Boyd County" "The dwelling unit is in KY, Boyd County" +in.county "KY, Boyle County" "The dwelling unit is in KY, Boyle County" +in.county "KY, Bracken County" "The dwelling unit is in KY, Bracken County" +in.county "KY, Breathitt County" "The dwelling unit is in KY, Breathitt County" +in.county "KY, Breckinridge County" "The dwelling unit is in KY, Breckinridge County" +in.county "KY, Bullitt County" "The dwelling unit is in KY, Bullitt County" +in.county "KY, Butler County" "The dwelling unit is in KY, Butler County" +in.county "KY, Caldwell County" "The dwelling unit is in KY, Caldwell County" +in.county "KY, Calloway County" "The dwelling unit is in KY, Calloway County" +in.county "KY, Campbell County" "The dwelling unit is in KY, Campbell County" +in.county "KY, Carlisle County" "The dwelling unit is in KY, Carlisle County" +in.county "KY, Carroll County" "The dwelling unit is in KY, Carroll County" +in.county "KY, Carter County" "The dwelling unit is in KY, Carter County" +in.county "KY, Casey County" "The dwelling unit is in KY, Casey County" +in.county "KY, Christian County" "The dwelling unit is in KY, Christian County" +in.county "KY, Clark County" "The dwelling unit is in KY, Clark County" +in.county "KY, Clay County" "The dwelling unit is in KY, Clay County" +in.county "KY, Clinton County" "The dwelling unit is in KY, Clinton County" +in.county "KY, Crittenden County" "The dwelling unit is in KY, Crittenden County" +in.county "KY, Cumberland County" "The dwelling unit is in KY, Cumberland County" +in.county "KY, Daviess County" "The dwelling unit is in KY, Daviess County" +in.county "KY, Edmonson County" "The dwelling unit is in KY, Edmonson County" +in.county "KY, Elliott County" "The dwelling unit is in KY, Elliott County" +in.county "KY, Estill County" "The dwelling unit is in KY, Estill County" +in.county "KY, Fayette County" "The dwelling unit is in KY, Fayette County" +in.county "KY, Fleming County" "The dwelling unit is in KY, Fleming County" +in.county "KY, Floyd County" "The dwelling unit is in KY, Floyd County" +in.county "KY, Franklin County" "The dwelling unit is in KY, Franklin County" +in.county "KY, Fulton County" "The dwelling unit is in KY, Fulton County" +in.county "KY, Gallatin County" "The dwelling unit is in KY, Gallatin County" +in.county "KY, Garrard County" "The dwelling unit is in KY, Garrard County" +in.county "KY, Grant County" "The dwelling unit is in KY, Grant County" +in.county "KY, Graves County" "The dwelling unit is in KY, Graves County" +in.county "KY, Grayson County" "The dwelling unit is in KY, Grayson County" +in.county "KY, Green County" "The dwelling unit is in KY, Green County" +in.county "KY, Greenup County" "The dwelling unit is in KY, Greenup County" +in.county "KY, Hancock County" "The dwelling unit is in KY, Hancock County" +in.county "KY, Hardin County" "The dwelling unit is in KY, Hardin County" +in.county "KY, Harlan County" "The dwelling unit is in KY, Harlan County" +in.county "KY, Harrison County" "The dwelling unit is in KY, Harrison County" +in.county "KY, Hart County" "The dwelling unit is in KY, Hart County" +in.county "KY, Henderson County" "The dwelling unit is in KY, Henderson County" +in.county "KY, Henry County" "The dwelling unit is in KY, Henry County" +in.county "KY, Hickman County" "The dwelling unit is in KY, Hickman County" +in.county "KY, Hopkins County" "The dwelling unit is in KY, Hopkins County" +in.county "KY, Jackson County" "The dwelling unit is in KY, Jackson County" +in.county "KY, Jefferson County" "The dwelling unit is in KY, Jefferson County" +in.county "KY, Jessamine County" "The dwelling unit is in KY, Jessamine County" +in.county "KY, Johnson County" "The dwelling unit is in KY, Johnson County" +in.county "KY, Kenton County" "The dwelling unit is in KY, Kenton County" +in.county "KY, Knott County" "The dwelling unit is in KY, Knott County" +in.county "KY, Knox County" "The dwelling unit is in KY, Knox County" +in.county "KY, Larue County" "The dwelling unit is in KY, Larue County" +in.county "KY, Laurel County" "The dwelling unit is in KY, Laurel County" +in.county "KY, Lawrence County" "The dwelling unit is in KY, Lawrence County" +in.county "KY, Lee County" "The dwelling unit is in KY, Lee County" +in.county "KY, Leslie County" "The dwelling unit is in KY, Leslie County" +in.county "KY, Letcher County" "The dwelling unit is in KY, Letcher County" +in.county "KY, Lewis County" "The dwelling unit is in KY, Lewis County" +in.county "KY, Lincoln County" "The dwelling unit is in KY, Lincoln County" +in.county "KY, Livingston County" "The dwelling unit is in KY, Livingston County" +in.county "KY, Logan County" "The dwelling unit is in KY, Logan County" +in.county "KY, Lyon County" "The dwelling unit is in KY, Lyon County" +in.county "KY, Madison County" "The dwelling unit is in KY, Madison County" +in.county "KY, Magoffin County" "The dwelling unit is in KY, Magoffin County" +in.county "KY, Marion County" "The dwelling unit is in KY, Marion County" +in.county "KY, Marshall County" "The dwelling unit is in KY, Marshall County" +in.county "KY, Martin County" "The dwelling unit is in KY, Martin County" +in.county "KY, Mason County" "The dwelling unit is in KY, Mason County" +in.county "KY, McCracken County" "The dwelling unit is in KY, McCracken County" +in.county "KY, McCreary County" "The dwelling unit is in KY, McCreary County" +in.county "KY, McLean County" "The dwelling unit is in KY, McLean County" +in.county "KY, Meade County" "The dwelling unit is in KY, Meade County" +in.county "KY, Menifee County" "The dwelling unit is in KY, Menifee County" +in.county "KY, Mercer County" "The dwelling unit is in KY, Mercer County" +in.county "KY, Metcalfe County" "The dwelling unit is in KY, Metcalfe County" +in.county "KY, Monroe County" "The dwelling unit is in KY, Monroe County" +in.county "KY, Montgomery County" "The dwelling unit is in KY, Montgomery County" +in.county "KY, Morgan County" "The dwelling unit is in KY, Morgan County" +in.county "KY, Muhlenberg County" "The dwelling unit is in KY, Muhlenberg County" +in.county "KY, Nelson County" "The dwelling unit is in KY, Nelson County" +in.county "KY, Nicholas County" "The dwelling unit is in KY, Nicholas County" +in.county "KY, Ohio County" "The dwelling unit is in KY, Ohio County" +in.county "KY, Oldham County" "The dwelling unit is in KY, Oldham County" +in.county "KY, Owen County" "The dwelling unit is in KY, Owen County" +in.county "KY, Owsley County" "The dwelling unit is in KY, Owsley County" +in.county "KY, Pendleton County" "The dwelling unit is in KY, Pendleton County" +in.county "KY, Perry County" "The dwelling unit is in KY, Perry County" +in.county "KY, Pike County" "The dwelling unit is in KY, Pike County" +in.county "KY, Powell County" "The dwelling unit is in KY, Powell County" +in.county "KY, Pulaski County" "The dwelling unit is in KY, Pulaski County" +in.county "KY, Robertson County" "The dwelling unit is in KY, Robertson County" +in.county "KY, Rockcastle County" "The dwelling unit is in KY, Rockcastle County" +in.county "KY, Rowan County" "The dwelling unit is in KY, Rowan County" +in.county "KY, Russell County" "The dwelling unit is in KY, Russell County" +in.county "KY, Scott County" "The dwelling unit is in KY, Scott County" +in.county "KY, Shelby County" "The dwelling unit is in KY, Shelby County" +in.county "KY, Simpson County" "The dwelling unit is in KY, Simpson County" +in.county "KY, Spencer County" "The dwelling unit is in KY, Spencer County" +in.county "KY, Taylor County" "The dwelling unit is in KY, Taylor County" +in.county "KY, Todd County" "The dwelling unit is in KY, Todd County" +in.county "KY, Trigg County" "The dwelling unit is in KY, Trigg County" +in.county "KY, Trimble County" "The dwelling unit is in KY, Trimble County" +in.county "KY, Union County" "The dwelling unit is in KY, Union County" +in.county "KY, Warren County" "The dwelling unit is in KY, Warren County" +in.county "KY, Washington County" "The dwelling unit is in KY, Washington County" +in.county "KY, Wayne County" "The dwelling unit is in KY, Wayne County" +in.county "KY, Webster County" "The dwelling unit is in KY, Webster County" +in.county "KY, Whitley County" "The dwelling unit is in KY, Whitley County" +in.county "KY, Wolfe County" "The dwelling unit is in KY, Wolfe County" +in.county "KY, Woodford County" "The dwelling unit is in KY, Woodford County" +in.county "LA, Acadia Parish" "The dwelling unit is in LA, Acadia Parish" +in.county "LA, Allen Parish" "The dwelling unit is in LA, Allen Parish" +in.county "LA, Ascension Parish" "The dwelling unit is in LA, Ascension Parish" +in.county "LA, Assumption Parish" "The dwelling unit is in LA, Assumption Parish" +in.county "LA, Avoyelles Parish" "The dwelling unit is in LA, Avoyelles Parish" +in.county "LA, Beauregard Parish" "The dwelling unit is in LA, Beauregard Parish" +in.county "LA, Bienville Parish" "The dwelling unit is in LA, Bienville Parish" +in.county "LA, Bossier Parish" "The dwelling unit is in LA, Bossier Parish" +in.county "LA, Caddo Parish" "The dwelling unit is in LA, Caddo Parish" +in.county "LA, Calcasieu Parish" "The dwelling unit is in LA, Calcasieu Parish" +in.county "LA, Caldwell Parish" "The dwelling unit is in LA, Caldwell Parish" +in.county "LA, Cameron Parish" "The dwelling unit is in LA, Cameron Parish" +in.county "LA, Catahoula Parish" "The dwelling unit is in LA, Catahoula Parish" +in.county "LA, Claiborne Parish" "The dwelling unit is in LA, Claiborne Parish" +in.county "LA, Concordia Parish" "The dwelling unit is in LA, Concordia Parish" +in.county "LA, De Soto Parish" "The dwelling unit is in LA, De Soto Parish" +in.county "LA, East Baton Rouge Parish" "The dwelling unit is in LA, East Baton Rouge Parish" +in.county "LA, East Carroll Parish" "The dwelling unit is in LA, East Carroll Parish" +in.county "LA, East Feliciana Parish" "The dwelling unit is in LA, East Feliciana Parish" +in.county "LA, Evangeline Parish" "The dwelling unit is in LA, Evangeline Parish" +in.county "LA, Franklin Parish" "The dwelling unit is in LA, Franklin Parish" +in.county "LA, Grant Parish" "The dwelling unit is in LA, Grant Parish" +in.county "LA, Iberia Parish" "The dwelling unit is in LA, Iberia Parish" +in.county "LA, Iberville Parish" "The dwelling unit is in LA, Iberville Parish" +in.county "LA, Jackson Parish" "The dwelling unit is in LA, Jackson Parish" +in.county "LA, Jefferson Davis Parish" "The dwelling unit is in LA, Jefferson Davis Parish" +in.county "LA, Jefferson Parish" "The dwelling unit is in LA, Jefferson Parish" +in.county "LA, La Salle Parish" "The dwelling unit is in LA, La Salle Parish" +in.county "LA, Lafayette Parish" "The dwelling unit is in LA, Lafayette Parish" +in.county "LA, Lafourche Parish" "The dwelling unit is in LA, Lafourche Parish" +in.county "LA, Lincoln Parish" "The dwelling unit is in LA, Lincoln Parish" +in.county "LA, Livingston Parish" "The dwelling unit is in LA, Livingston Parish" +in.county "LA, Madison Parish" "The dwelling unit is in LA, Madison Parish" +in.county "LA, Morehouse Parish" "The dwelling unit is in LA, Morehouse Parish" +in.county "LA, Natchitoches Parish" "The dwelling unit is in LA, Natchitoches Parish" +in.county "LA, Orleans Parish" "The dwelling unit is in LA, Orleans Parish" +in.county "LA, Ouachita Parish" "The dwelling unit is in LA, Ouachita Parish" +in.county "LA, Plaquemines Parish" "The dwelling unit is in LA, Plaquemines Parish" +in.county "LA, Pointe Coupee Parish" "The dwelling unit is in LA, Pointe Coupee Parish" +in.county "LA, Rapides Parish" "The dwelling unit is in LA, Rapides Parish" +in.county "LA, Red River Parish" "The dwelling unit is in LA, Red River Parish" +in.county "LA, Richland Parish" "The dwelling unit is in LA, Richland Parish" +in.county "LA, Sabine Parish" "The dwelling unit is in LA, Sabine Parish" +in.county "LA, St. Bernard Parish" "The dwelling unit is in LA, St. Bernard Parish" +in.county "LA, St. Charles Parish" "The dwelling unit is in LA, St. Charles Parish" +in.county "LA, St. Helena Parish" "The dwelling unit is in LA, St. Helena Parish" +in.county "LA, St. James Parish" "The dwelling unit is in LA, St. James Parish" +in.county "LA, St. John the Baptist Parish" "The dwelling unit is in LA, St. John the Baptist Parish" +in.county "LA, St. Landry Parish" "The dwelling unit is in LA, St. Landry Parish" +in.county "LA, St. Martin Parish" "The dwelling unit is in LA, St. Martin Parish" +in.county "LA, St. Mary Parish" "The dwelling unit is in LA, St. Mary Parish" +in.county "LA, St. Tammany Parish" "The dwelling unit is in LA, St. Tammany Parish" +in.county "LA, Tangipahoa Parish" "The dwelling unit is in LA, Tangipahoa Parish" +in.county "LA, Tensas Parish" "The dwelling unit is in LA, Tensas Parish" +in.county "LA, Terrebonne Parish" "The dwelling unit is in LA, Terrebonne Parish" +in.county "LA, Union Parish" "The dwelling unit is in LA, Union Parish" +in.county "LA, Vermilion Parish" "The dwelling unit is in LA, Vermilion Parish" +in.county "LA, Vernon Parish" "The dwelling unit is in LA, Vernon Parish" +in.county "LA, Washington Parish" "The dwelling unit is in LA, Washington Parish" +in.county "LA, Webster Parish" "The dwelling unit is in LA, Webster Parish" +in.county "LA, West Baton Rouge Parish" "The dwelling unit is in LA, West Baton Rouge Parish" +in.county "LA, West Carroll Parish" "The dwelling unit is in LA, West Carroll Parish" +in.county "LA, West Feliciana Parish" "The dwelling unit is in LA, West Feliciana Parish" +in.county "LA, Winn Parish" "The dwelling unit is in LA, Winn Parish" +in.county "MA, Barnstable County" "The dwelling unit is in MA, Barnstable County" +in.county "MA, Berkshire County" "The dwelling unit is in MA, Berkshire County" +in.county "MA, Bristol County" "The dwelling unit is in MA, Bristol County" +in.county "MA, Dukes County" "The dwelling unit is in MA, Dukes County" +in.county "MA, Essex County" "The dwelling unit is in MA, Essex County" +in.county "MA, Franklin County" "The dwelling unit is in MA, Franklin County" +in.county "MA, Hampden County" "The dwelling unit is in MA, Hampden County" +in.county "MA, Hampshire County" "The dwelling unit is in MA, Hampshire County" +in.county "MA, Middlesex County" "The dwelling unit is in MA, Middlesex County" +in.county "MA, Nantucket County" "The dwelling unit is in MA, Nantucket County" +in.county "MA, Norfolk County" "The dwelling unit is in MA, Norfolk County" +in.county "MA, Plymouth County" "The dwelling unit is in MA, Plymouth County" +in.county "MA, Suffolk County" "The dwelling unit is in MA, Suffolk County" +in.county "MA, Worcester County" "The dwelling unit is in MA, Worcester County" +in.county "MD, Allegany County" "The dwelling unit is in MD, Allegany County" +in.county "MD, Anne Arundel County" "The dwelling unit is in MD, Anne Arundel County" +in.county "MD, Baltimore County" "The dwelling unit is in MD, Baltimore County" +in.county "MD, Baltimore city" "The dwelling unit is in MD, Baltimore city" +in.county "MD, Calvert County" "The dwelling unit is in MD, Calvert County" +in.county "MD, Caroline County" "The dwelling unit is in MD, Caroline County" +in.county "MD, Carroll County" "The dwelling unit is in MD, Carroll County" +in.county "MD, Cecil County" "The dwelling unit is in MD, Cecil County" +in.county "MD, Charles County" "The dwelling unit is in MD, Charles County" +in.county "MD, Dorchester County" "The dwelling unit is in MD, Dorchester County" +in.county "MD, Frederick County" "The dwelling unit is in MD, Frederick County" +in.county "MD, Garrett County" "The dwelling unit is in MD, Garrett County" +in.county "MD, Harford County" "The dwelling unit is in MD, Harford County" +in.county "MD, Howard County" "The dwelling unit is in MD, Howard County" +in.county "MD, Kent County" "The dwelling unit is in MD, Kent County" +in.county "MD, Montgomery County" "The dwelling unit is in MD, Montgomery County" +in.county "MD, Prince George's County" "The dwelling unit is in MD, Prince George's County" +in.county "MD, Queen Anne's County" "The dwelling unit is in MD, Queen Anne's County" +in.county "MD, Somerset County" "The dwelling unit is in MD, Somerset County" +in.county "MD, St. Mary's County" "The dwelling unit is in MD, St. Mary's County" +in.county "MD, Talbot County" "The dwelling unit is in MD, Talbot County" +in.county "MD, Washington County" "The dwelling unit is in MD, Washington County" +in.county "MD, Wicomico County" "The dwelling unit is in MD, Wicomico County" +in.county "MD, Worcester County" "The dwelling unit is in MD, Worcester County" +in.county "ME, Androscoggin County" "The dwelling unit is in ME, Androscoggin County" +in.county "ME, Aroostook County" "The dwelling unit is in ME, Aroostook County" +in.county "ME, Cumberland County" "The dwelling unit is in ME, Cumberland County" +in.county "ME, Franklin County" "The dwelling unit is in ME, Franklin County" +in.county "ME, Hancock County" "The dwelling unit is in ME, Hancock County" +in.county "ME, Kennebec County" "The dwelling unit is in ME, Kennebec County" +in.county "ME, Knox County" "The dwelling unit is in ME, Knox County" +in.county "ME, Lincoln County" "The dwelling unit is in ME, Lincoln County" +in.county "ME, Oxford County" "The dwelling unit is in ME, Oxford County" +in.county "ME, Penobscot County" "The dwelling unit is in ME, Penobscot County" +in.county "ME, Piscataquis County" "The dwelling unit is in ME, Piscataquis County" +in.county "ME, Sagadahoc County" "The dwelling unit is in ME, Sagadahoc County" +in.county "ME, Somerset County" "The dwelling unit is in ME, Somerset County" +in.county "ME, Waldo County" "The dwelling unit is in ME, Waldo County" +in.county "ME, Washington County" "The dwelling unit is in ME, Washington County" +in.county "ME, York County" "The dwelling unit is in ME, York County" +in.county "MI, Alcona County" "The dwelling unit is in MI, Alcona County" +in.county "MI, Alger County" "The dwelling unit is in MI, Alger County" +in.county "MI, Allegan County" "The dwelling unit is in MI, Allegan County" +in.county "MI, Alpena County" "The dwelling unit is in MI, Alpena County" +in.county "MI, Antrim County" "The dwelling unit is in MI, Antrim County" +in.county "MI, Arenac County" "The dwelling unit is in MI, Arenac County" +in.county "MI, Baraga County" "The dwelling unit is in MI, Baraga County" +in.county "MI, Barry County" "The dwelling unit is in MI, Barry County" +in.county "MI, Bay County" "The dwelling unit is in MI, Bay County" +in.county "MI, Benzie County" "The dwelling unit is in MI, Benzie County" +in.county "MI, Berrien County" "The dwelling unit is in MI, Berrien County" +in.county "MI, Branch County" "The dwelling unit is in MI, Branch County" +in.county "MI, Calhoun County" "The dwelling unit is in MI, Calhoun County" +in.county "MI, Cass County" "The dwelling unit is in MI, Cass County" +in.county "MI, Charlevoix County" "The dwelling unit is in MI, Charlevoix County" +in.county "MI, Cheboygan County" "The dwelling unit is in MI, Cheboygan County" +in.county "MI, Chippewa County" "The dwelling unit is in MI, Chippewa County" +in.county "MI, Clare County" "The dwelling unit is in MI, Clare County" +in.county "MI, Clinton County" "The dwelling unit is in MI, Clinton County" +in.county "MI, Crawford County" "The dwelling unit is in MI, Crawford County" +in.county "MI, Delta County" "The dwelling unit is in MI, Delta County" +in.county "MI, Dickinson County" "The dwelling unit is in MI, Dickinson County" +in.county "MI, Eaton County" "The dwelling unit is in MI, Eaton County" +in.county "MI, Emmet County" "The dwelling unit is in MI, Emmet County" +in.county "MI, Genesee County" "The dwelling unit is in MI, Genesee County" +in.county "MI, Gladwin County" "The dwelling unit is in MI, Gladwin County" +in.county "MI, Gogebic County" "The dwelling unit is in MI, Gogebic County" +in.county "MI, Grand Traverse County" "The dwelling unit is in MI, Grand Traverse County" +in.county "MI, Gratiot County" "The dwelling unit is in MI, Gratiot County" +in.county "MI, Hillsdale County" "The dwelling unit is in MI, Hillsdale County" +in.county "MI, Houghton County" "The dwelling unit is in MI, Houghton County" +in.county "MI, Huron County" "The dwelling unit is in MI, Huron County" +in.county "MI, Ingham County" "The dwelling unit is in MI, Ingham County" +in.county "MI, Ionia County" "The dwelling unit is in MI, Ionia County" +in.county "MI, Iosco County" "The dwelling unit is in MI, Iosco County" +in.county "MI, Iron County" "The dwelling unit is in MI, Iron County" +in.county "MI, Isabella County" "The dwelling unit is in MI, Isabella County" +in.county "MI, Jackson County" "The dwelling unit is in MI, Jackson County" +in.county "MI, Kalamazoo County" "The dwelling unit is in MI, Kalamazoo County" +in.county "MI, Kalkaska County" "The dwelling unit is in MI, Kalkaska County" +in.county "MI, Kent County" "The dwelling unit is in MI, Kent County" +in.county "MI, Keweenaw County" "The dwelling unit is in MI, Keweenaw County" +in.county "MI, Lake County" "The dwelling unit is in MI, Lake County" +in.county "MI, Lapeer County" "The dwelling unit is in MI, Lapeer County" +in.county "MI, Leelanau County" "The dwelling unit is in MI, Leelanau County" +in.county "MI, Lenawee County" "The dwelling unit is in MI, Lenawee County" +in.county "MI, Livingston County" "The dwelling unit is in MI, Livingston County" +in.county "MI, Luce County" "The dwelling unit is in MI, Luce County" +in.county "MI, Mackinac County" "The dwelling unit is in MI, Mackinac County" +in.county "MI, Macomb County" "The dwelling unit is in MI, Macomb County" +in.county "MI, Manistee County" "The dwelling unit is in MI, Manistee County" +in.county "MI, Marquette County" "The dwelling unit is in MI, Marquette County" +in.county "MI, Mason County" "The dwelling unit is in MI, Mason County" +in.county "MI, Mecosta County" "The dwelling unit is in MI, Mecosta County" +in.county "MI, Menominee County" "The dwelling unit is in MI, Menominee County" +in.county "MI, Midland County" "The dwelling unit is in MI, Midland County" +in.county "MI, Missaukee County" "The dwelling unit is in MI, Missaukee County" +in.county "MI, Monroe County" "The dwelling unit is in MI, Monroe County" +in.county "MI, Montcalm County" "The dwelling unit is in MI, Montcalm County" +in.county "MI, Montmorency County" "The dwelling unit is in MI, Montmorency County" +in.county "MI, Muskegon County" "The dwelling unit is in MI, Muskegon County" +in.county "MI, Newaygo County" "The dwelling unit is in MI, Newaygo County" +in.county "MI, Oakland County" "The dwelling unit is in MI, Oakland County" +in.county "MI, Oceana County" "The dwelling unit is in MI, Oceana County" +in.county "MI, Ogemaw County" "The dwelling unit is in MI, Ogemaw County" +in.county "MI, Ontonagon County" "The dwelling unit is in MI, Ontonagon County" +in.county "MI, Osceola County" "The dwelling unit is in MI, Osceola County" +in.county "MI, Oscoda County" "The dwelling unit is in MI, Oscoda County" +in.county "MI, Otsego County" "The dwelling unit is in MI, Otsego County" +in.county "MI, Ottawa County" "The dwelling unit is in MI, Ottawa County" +in.county "MI, Presque Isle County" "The dwelling unit is in MI, Presque Isle County" +in.county "MI, Roscommon County" "The dwelling unit is in MI, Roscommon County" +in.county "MI, Saginaw County" "The dwelling unit is in MI, Saginaw County" +in.county "MI, Sanilac County" "The dwelling unit is in MI, Sanilac County" +in.county "MI, Schoolcraft County" "The dwelling unit is in MI, Schoolcraft County" +in.county "MI, Shiawassee County" "The dwelling unit is in MI, Shiawassee County" +in.county "MI, St. Clair County" "The dwelling unit is in MI, St. Clair County" +in.county "MI, St. Joseph County" "The dwelling unit is in MI, St. Joseph County" +in.county "MI, Tuscola County" "The dwelling unit is in MI, Tuscola County" +in.county "MI, Van Buren County" "The dwelling unit is in MI, Van Buren County" +in.county "MI, Washtenaw County" "The dwelling unit is in MI, Washtenaw County" +in.county "MI, Wayne County" "The dwelling unit is in MI, Wayne County" +in.county "MI, Wexford County" "The dwelling unit is in MI, Wexford County" +in.county "MN, Aitkin County" "The dwelling unit is in MN, Aitkin County" +in.county "MN, Anoka County" "The dwelling unit is in MN, Anoka County" +in.county "MN, Becker County" "The dwelling unit is in MN, Becker County" +in.county "MN, Beltrami County" "The dwelling unit is in MN, Beltrami County" +in.county "MN, Benton County" "The dwelling unit is in MN, Benton County" +in.county "MN, Big Stone County" "The dwelling unit is in MN, Big Stone County" +in.county "MN, Blue Earth County" "The dwelling unit is in MN, Blue Earth County" +in.county "MN, Brown County" "The dwelling unit is in MN, Brown County" +in.county "MN, Carlton County" "The dwelling unit is in MN, Carlton County" +in.county "MN, Carver County" "The dwelling unit is in MN, Carver County" +in.county "MN, Cass County" "The dwelling unit is in MN, Cass County" +in.county "MN, Chippewa County" "The dwelling unit is in MN, Chippewa County" +in.county "MN, Chisago County" "The dwelling unit is in MN, Chisago County" +in.county "MN, Clay County" "The dwelling unit is in MN, Clay County" +in.county "MN, Clearwater County" "The dwelling unit is in MN, Clearwater County" +in.county "MN, Cook County" "The dwelling unit is in MN, Cook County" +in.county "MN, Cottonwood County" "The dwelling unit is in MN, Cottonwood County" +in.county "MN, Crow Wing County" "The dwelling unit is in MN, Crow Wing County" +in.county "MN, Dakota County" "The dwelling unit is in MN, Dakota County" +in.county "MN, Dodge County" "The dwelling unit is in MN, Dodge County" +in.county "MN, Douglas County" "The dwelling unit is in MN, Douglas County" +in.county "MN, Faribault County" "The dwelling unit is in MN, Faribault County" +in.county "MN, Fillmore County" "The dwelling unit is in MN, Fillmore County" +in.county "MN, Freeborn County" "The dwelling unit is in MN, Freeborn County" +in.county "MN, Goodhue County" "The dwelling unit is in MN, Goodhue County" +in.county "MN, Grant County" "The dwelling unit is in MN, Grant County" +in.county "MN, Hennepin County" "The dwelling unit is in MN, Hennepin County" +in.county "MN, Houston County" "The dwelling unit is in MN, Houston County" +in.county "MN, Hubbard County" "The dwelling unit is in MN, Hubbard County" +in.county "MN, Isanti County" "The dwelling unit is in MN, Isanti County" +in.county "MN, Itasca County" "The dwelling unit is in MN, Itasca County" +in.county "MN, Jackson County" "The dwelling unit is in MN, Jackson County" +in.county "MN, Kanabec County" "The dwelling unit is in MN, Kanabec County" +in.county "MN, Kandiyohi County" "The dwelling unit is in MN, Kandiyohi County" +in.county "MN, Kittson County" "The dwelling unit is in MN, Kittson County" +in.county "MN, Koochiching County" "The dwelling unit is in MN, Koochiching County" +in.county "MN, Lac qui Parle County" "The dwelling unit is in MN, Lac qui Parle County" +in.county "MN, Lake County" "The dwelling unit is in MN, Lake County" +in.county "MN, Lake of the Woods County" "The dwelling unit is in MN, Lake of the Woods County" +in.county "MN, Le Sueur County" "The dwelling unit is in MN, Le Sueur County" +in.county "MN, Lincoln County" "The dwelling unit is in MN, Lincoln County" +in.county "MN, Lyon County" "The dwelling unit is in MN, Lyon County" +in.county "MN, Mahnomen County" "The dwelling unit is in MN, Mahnomen County" +in.county "MN, Marshall County" "The dwelling unit is in MN, Marshall County" +in.county "MN, Martin County" "The dwelling unit is in MN, Martin County" +in.county "MN, McLeod County" "The dwelling unit is in MN, McLeod County" +in.county "MN, Meeker County" "The dwelling unit is in MN, Meeker County" +in.county "MN, Mille Lacs County" "The dwelling unit is in MN, Mille Lacs County" +in.county "MN, Morrison County" "The dwelling unit is in MN, Morrison County" +in.county "MN, Mower County" "The dwelling unit is in MN, Mower County" +in.county "MN, Murray County" "The dwelling unit is in MN, Murray County" +in.county "MN, Nicollet County" "The dwelling unit is in MN, Nicollet County" +in.county "MN, Nobles County" "The dwelling unit is in MN, Nobles County" +in.county "MN, Norman County" "The dwelling unit is in MN, Norman County" +in.county "MN, Olmsted County" "The dwelling unit is in MN, Olmsted County" +in.county "MN, Otter Tail County" "The dwelling unit is in MN, Otter Tail County" +in.county "MN, Pennington County" "The dwelling unit is in MN, Pennington County" +in.county "MN, Pine County" "The dwelling unit is in MN, Pine County" +in.county "MN, Pipestone County" "The dwelling unit is in MN, Pipestone County" +in.county "MN, Polk County" "The dwelling unit is in MN, Polk County" +in.county "MN, Pope County" "The dwelling unit is in MN, Pope County" +in.county "MN, Ramsey County" "The dwelling unit is in MN, Ramsey County" +in.county "MN, Red Lake County" "The dwelling unit is in MN, Red Lake County" +in.county "MN, Redwood County" "The dwelling unit is in MN, Redwood County" +in.county "MN, Renville County" "The dwelling unit is in MN, Renville County" +in.county "MN, Rice County" "The dwelling unit is in MN, Rice County" +in.county "MN, Rock County" "The dwelling unit is in MN, Rock County" +in.county "MN, Roseau County" "The dwelling unit is in MN, Roseau County" +in.county "MN, Scott County" "The dwelling unit is in MN, Scott County" +in.county "MN, Sherburne County" "The dwelling unit is in MN, Sherburne County" +in.county "MN, Sibley County" "The dwelling unit is in MN, Sibley County" +in.county "MN, St. Louis County" "The dwelling unit is in MN, St. Louis County" +in.county "MN, Stearns County" "The dwelling unit is in MN, Stearns County" +in.county "MN, Steele County" "The dwelling unit is in MN, Steele County" +in.county "MN, Stevens County" "The dwelling unit is in MN, Stevens County" +in.county "MN, Swift County" "The dwelling unit is in MN, Swift County" +in.county "MN, Todd County" "The dwelling unit is in MN, Todd County" +in.county "MN, Traverse County" "The dwelling unit is in MN, Traverse County" +in.county "MN, Wabasha County" "The dwelling unit is in MN, Wabasha County" +in.county "MN, Wadena County" "The dwelling unit is in MN, Wadena County" +in.county "MN, Waseca County" "The dwelling unit is in MN, Waseca County" +in.county "MN, Washington County" "The dwelling unit is in MN, Washington County" +in.county "MN, Watonwan County" "The dwelling unit is in MN, Watonwan County" +in.county "MN, Wilkin County" "The dwelling unit is in MN, Wilkin County" +in.county "MN, Winona County" "The dwelling unit is in MN, Winona County" +in.county "MN, Wright County" "The dwelling unit is in MN, Wright County" +in.county "MN, Yellow Medicine County" "The dwelling unit is in MN, Yellow Medicine County" +in.county "MO, Adair County" "The dwelling unit is in MO, Adair County" +in.county "MO, Andrew County" "The dwelling unit is in MO, Andrew County" +in.county "MO, Atchison County" "The dwelling unit is in MO, Atchison County" +in.county "MO, Audrain County" "The dwelling unit is in MO, Audrain County" +in.county "MO, Barry County" "The dwelling unit is in MO, Barry County" +in.county "MO, Barton County" "The dwelling unit is in MO, Barton County" +in.county "MO, Bates County" "The dwelling unit is in MO, Bates County" +in.county "MO, Benton County" "The dwelling unit is in MO, Benton County" +in.county "MO, Bollinger County" "The dwelling unit is in MO, Bollinger County" +in.county "MO, Boone County" "The dwelling unit is in MO, Boone County" +in.county "MO, Buchanan County" "The dwelling unit is in MO, Buchanan County" +in.county "MO, Butler County" "The dwelling unit is in MO, Butler County" +in.county "MO, Caldwell County" "The dwelling unit is in MO, Caldwell County" +in.county "MO, Callaway County" "The dwelling unit is in MO, Callaway County" +in.county "MO, Camden County" "The dwelling unit is in MO, Camden County" +in.county "MO, Cape Girardeau County" "The dwelling unit is in MO, Cape Girardeau County" +in.county "MO, Carroll County" "The dwelling unit is in MO, Carroll County" +in.county "MO, Carter County" "The dwelling unit is in MO, Carter County" +in.county "MO, Cass County" "The dwelling unit is in MO, Cass County" +in.county "MO, Cedar County" "The dwelling unit is in MO, Cedar County" +in.county "MO, Chariton County" "The dwelling unit is in MO, Chariton County" +in.county "MO, Christian County" "The dwelling unit is in MO, Christian County" +in.county "MO, Clark County" "The dwelling unit is in MO, Clark County" +in.county "MO, Clay County" "The dwelling unit is in MO, Clay County" +in.county "MO, Clinton County" "The dwelling unit is in MO, Clinton County" +in.county "MO, Cole County" "The dwelling unit is in MO, Cole County" +in.county "MO, Cooper County" "The dwelling unit is in MO, Cooper County" +in.county "MO, Crawford County" "The dwelling unit is in MO, Crawford County" +in.county "MO, Dade County" "The dwelling unit is in MO, Dade County" +in.county "MO, Dallas County" "The dwelling unit is in MO, Dallas County" +in.county "MO, Daviess County" "The dwelling unit is in MO, Daviess County" +in.county "MO, DeKalb County" "The dwelling unit is in MO, DeKalb County" +in.county "MO, Dent County" "The dwelling unit is in MO, Dent County" +in.county "MO, Douglas County" "The dwelling unit is in MO, Douglas County" +in.county "MO, Dunklin County" "The dwelling unit is in MO, Dunklin County" +in.county "MO, Franklin County" "The dwelling unit is in MO, Franklin County" +in.county "MO, Gasconade County" "The dwelling unit is in MO, Gasconade County" +in.county "MO, Gentry County" "The dwelling unit is in MO, Gentry County" +in.county "MO, Greene County" "The dwelling unit is in MO, Greene County" +in.county "MO, Grundy County" "The dwelling unit is in MO, Grundy County" +in.county "MO, Harrison County" "The dwelling unit is in MO, Harrison County" +in.county "MO, Henry County" "The dwelling unit is in MO, Henry County" +in.county "MO, Hickory County" "The dwelling unit is in MO, Hickory County" +in.county "MO, Holt County" "The dwelling unit is in MO, Holt County" +in.county "MO, Howard County" "The dwelling unit is in MO, Howard County" +in.county "MO, Howell County" "The dwelling unit is in MO, Howell County" +in.county "MO, Iron County" "The dwelling unit is in MO, Iron County" +in.county "MO, Jackson County" "The dwelling unit is in MO, Jackson County" +in.county "MO, Jasper County" "The dwelling unit is in MO, Jasper County" +in.county "MO, Jefferson County" "The dwelling unit is in MO, Jefferson County" +in.county "MO, Johnson County" "The dwelling unit is in MO, Johnson County" +in.county "MO, Knox County" "The dwelling unit is in MO, Knox County" +in.county "MO, Laclede County" "The dwelling unit is in MO, Laclede County" +in.county "MO, Lafayette County" "The dwelling unit is in MO, Lafayette County" +in.county "MO, Lawrence County" "The dwelling unit is in MO, Lawrence County" +in.county "MO, Lewis County" "The dwelling unit is in MO, Lewis County" +in.county "MO, Lincoln County" "The dwelling unit is in MO, Lincoln County" +in.county "MO, Linn County" "The dwelling unit is in MO, Linn County" +in.county "MO, Livingston County" "The dwelling unit is in MO, Livingston County" +in.county "MO, Macon County" "The dwelling unit is in MO, Macon County" +in.county "MO, Madison County" "The dwelling unit is in MO, Madison County" +in.county "MO, Maries County" "The dwelling unit is in MO, Maries County" +in.county "MO, Marion County" "The dwelling unit is in MO, Marion County" +in.county "MO, McDonald County" "The dwelling unit is in MO, McDonald County" +in.county "MO, Mercer County" "The dwelling unit is in MO, Mercer County" +in.county "MO, Miller County" "The dwelling unit is in MO, Miller County" +in.county "MO, Mississippi County" "The dwelling unit is in MO, Mississippi County" +in.county "MO, Moniteau County" "The dwelling unit is in MO, Moniteau County" +in.county "MO, Monroe County" "The dwelling unit is in MO, Monroe County" +in.county "MO, Montgomery County" "The dwelling unit is in MO, Montgomery County" +in.county "MO, Morgan County" "The dwelling unit is in MO, Morgan County" +in.county "MO, New Madrid County" "The dwelling unit is in MO, New Madrid County" +in.county "MO, Newton County" "The dwelling unit is in MO, Newton County" +in.county "MO, Nodaway County" "The dwelling unit is in MO, Nodaway County" +in.county "MO, Oregon County" "The dwelling unit is in MO, Oregon County" +in.county "MO, Osage County" "The dwelling unit is in MO, Osage County" +in.county "MO, Ozark County" "The dwelling unit is in MO, Ozark County" +in.county "MO, Pemiscot County" "The dwelling unit is in MO, Pemiscot County" +in.county "MO, Perry County" "The dwelling unit is in MO, Perry County" +in.county "MO, Pettis County" "The dwelling unit is in MO, Pettis County" +in.county "MO, Phelps County" "The dwelling unit is in MO, Phelps County" +in.county "MO, Pike County" "The dwelling unit is in MO, Pike County" +in.county "MO, Platte County" "The dwelling unit is in MO, Platte County" +in.county "MO, Polk County" "The dwelling unit is in MO, Polk County" +in.county "MO, Pulaski County" "The dwelling unit is in MO, Pulaski County" +in.county "MO, Putnam County" "The dwelling unit is in MO, Putnam County" +in.county "MO, Ralls County" "The dwelling unit is in MO, Ralls County" +in.county "MO, Randolph County" "The dwelling unit is in MO, Randolph County" +in.county "MO, Ray County" "The dwelling unit is in MO, Ray County" +in.county "MO, Reynolds County" "The dwelling unit is in MO, Reynolds County" +in.county "MO, Ripley County" "The dwelling unit is in MO, Ripley County" +in.county "MO, Saline County" "The dwelling unit is in MO, Saline County" +in.county "MO, Schuyler County" "The dwelling unit is in MO, Schuyler County" +in.county "MO, Scotland County" "The dwelling unit is in MO, Scotland County" +in.county "MO, Scott County" "The dwelling unit is in MO, Scott County" +in.county "MO, Shannon County" "The dwelling unit is in MO, Shannon County" +in.county "MO, Shelby County" "The dwelling unit is in MO, Shelby County" +in.county "MO, St. Charles County" "The dwelling unit is in MO, St. Charles County" +in.county "MO, St. Clair County" "The dwelling unit is in MO, St. Clair County" +in.county "MO, St. Francois County" "The dwelling unit is in MO, St. Francois County" +in.county "MO, St. Louis County" "The dwelling unit is in MO, St. Louis County" +in.county "MO, St. Louis city" "The dwelling unit is in MO, St. Louis city" +in.county "MO, Ste. Genevieve County" "The dwelling unit is in MO, Ste. Genevieve County" +in.county "MO, Stoddard County" "The dwelling unit is in MO, Stoddard County" +in.county "MO, Stone County" "The dwelling unit is in MO, Stone County" +in.county "MO, Sullivan County" "The dwelling unit is in MO, Sullivan County" +in.county "MO, Taney County" "The dwelling unit is in MO, Taney County" +in.county "MO, Texas County" "The dwelling unit is in MO, Texas County" +in.county "MO, Vernon County" "The dwelling unit is in MO, Vernon County" +in.county "MO, Warren County" "The dwelling unit is in MO, Warren County" +in.county "MO, Washington County" "The dwelling unit is in MO, Washington County" +in.county "MO, Wayne County" "The dwelling unit is in MO, Wayne County" +in.county "MO, Webster County" "The dwelling unit is in MO, Webster County" +in.county "MO, Worth County" "The dwelling unit is in MO, Worth County" +in.county "MO, Wright County" "The dwelling unit is in MO, Wright County" +in.county "MS, Adams County" "The dwelling unit is in MS, Adams County" +in.county "MS, Alcorn County" "The dwelling unit is in MS, Alcorn County" +in.county "MS, Amite County" "The dwelling unit is in MS, Amite County" +in.county "MS, Attala County" "The dwelling unit is in MS, Attala County" +in.county "MS, Benton County" "The dwelling unit is in MS, Benton County" +in.county "MS, Bolivar County" "The dwelling unit is in MS, Bolivar County" +in.county "MS, Calhoun County" "The dwelling unit is in MS, Calhoun County" +in.county "MS, Carroll County" "The dwelling unit is in MS, Carroll County" +in.county "MS, Chickasaw County" "The dwelling unit is in MS, Chickasaw County" +in.county "MS, Choctaw County" "The dwelling unit is in MS, Choctaw County" +in.county "MS, Claiborne County" "The dwelling unit is in MS, Claiborne County" +in.county "MS, Clarke County" "The dwelling unit is in MS, Clarke County" +in.county "MS, Clay County" "The dwelling unit is in MS, Clay County" +in.county "MS, Coahoma County" "The dwelling unit is in MS, Coahoma County" +in.county "MS, Copiah County" "The dwelling unit is in MS, Copiah County" +in.county "MS, Covington County" "The dwelling unit is in MS, Covington County" +in.county "MS, DeSoto County" "The dwelling unit is in MS, DeSoto County" +in.county "MS, Forrest County" "The dwelling unit is in MS, Forrest County" +in.county "MS, Franklin County" "The dwelling unit is in MS, Franklin County" +in.county "MS, George County" "The dwelling unit is in MS, George County" +in.county "MS, Greene County" "The dwelling unit is in MS, Greene County" +in.county "MS, Grenada County" "The dwelling unit is in MS, Grenada County" +in.county "MS, Hancock County" "The dwelling unit is in MS, Hancock County" +in.county "MS, Harrison County" "The dwelling unit is in MS, Harrison County" +in.county "MS, Hinds County" "The dwelling unit is in MS, Hinds County" +in.county "MS, Holmes County" "The dwelling unit is in MS, Holmes County" +in.county "MS, Humphreys County" "The dwelling unit is in MS, Humphreys County" +in.county "MS, Issaquena County" "The dwelling unit is in MS, Issaquena County" +in.county "MS, Itawamba County" "The dwelling unit is in MS, Itawamba County" +in.county "MS, Jackson County" "The dwelling unit is in MS, Jackson County" +in.county "MS, Jasper County" "The dwelling unit is in MS, Jasper County" +in.county "MS, Jefferson County" "The dwelling unit is in MS, Jefferson County" +in.county "MS, Jefferson Davis County" "The dwelling unit is in MS, Jefferson Davis County" +in.county "MS, Jones County" "The dwelling unit is in MS, Jones County" +in.county "MS, Kemper County" "The dwelling unit is in MS, Kemper County" +in.county "MS, Lafayette County" "The dwelling unit is in MS, Lafayette County" +in.county "MS, Lamar County" "The dwelling unit is in MS, Lamar County" +in.county "MS, Lauderdale County" "The dwelling unit is in MS, Lauderdale County" +in.county "MS, Lawrence County" "The dwelling unit is in MS, Lawrence County" +in.county "MS, Leake County" "The dwelling unit is in MS, Leake County" +in.county "MS, Lee County" "The dwelling unit is in MS, Lee County" +in.county "MS, Leflore County" "The dwelling unit is in MS, Leflore County" +in.county "MS, Lincoln County" "The dwelling unit is in MS, Lincoln County" +in.county "MS, Lowndes County" "The dwelling unit is in MS, Lowndes County" +in.county "MS, Madison County" "The dwelling unit is in MS, Madison County" +in.county "MS, Marion County" "The dwelling unit is in MS, Marion County" +in.county "MS, Marshall County" "The dwelling unit is in MS, Marshall County" +in.county "MS, Monroe County" "The dwelling unit is in MS, Monroe County" +in.county "MS, Montgomery County" "The dwelling unit is in MS, Montgomery County" +in.county "MS, Neshoba County" "The dwelling unit is in MS, Neshoba County" +in.county "MS, Newton County" "The dwelling unit is in MS, Newton County" +in.county "MS, Noxubee County" "The dwelling unit is in MS, Noxubee County" +in.county "MS, Oktibbeha County" "The dwelling unit is in MS, Oktibbeha County" +in.county "MS, Panola County" "The dwelling unit is in MS, Panola County" +in.county "MS, Pearl River County" "The dwelling unit is in MS, Pearl River County" +in.county "MS, Perry County" "The dwelling unit is in MS, Perry County" +in.county "MS, Pike County" "The dwelling unit is in MS, Pike County" +in.county "MS, Pontotoc County" "The dwelling unit is in MS, Pontotoc County" +in.county "MS, Prentiss County" "The dwelling unit is in MS, Prentiss County" +in.county "MS, Quitman County" "The dwelling unit is in MS, Quitman County" +in.county "MS, Rankin County" "The dwelling unit is in MS, Rankin County" +in.county "MS, Scott County" "The dwelling unit is in MS, Scott County" +in.county "MS, Sharkey County" "The dwelling unit is in MS, Sharkey County" +in.county "MS, Simpson County" "The dwelling unit is in MS, Simpson County" +in.county "MS, Smith County" "The dwelling unit is in MS, Smith County" +in.county "MS, Stone County" "The dwelling unit is in MS, Stone County" +in.county "MS, Sunflower County" "The dwelling unit is in MS, Sunflower County" +in.county "MS, Tallahatchie County" "The dwelling unit is in MS, Tallahatchie County" +in.county "MS, Tate County" "The dwelling unit is in MS, Tate County" +in.county "MS, Tippah County" "The dwelling unit is in MS, Tippah County" +in.county "MS, Tishomingo County" "The dwelling unit is in MS, Tishomingo County" +in.county "MS, Tunica County" "The dwelling unit is in MS, Tunica County" +in.county "MS, Union County" "The dwelling unit is in MS, Union County" +in.county "MS, Walthall County" "The dwelling unit is in MS, Walthall County" +in.county "MS, Warren County" "The dwelling unit is in MS, Warren County" +in.county "MS, Washington County" "The dwelling unit is in MS, Washington County" +in.county "MS, Wayne County" "The dwelling unit is in MS, Wayne County" +in.county "MS, Webster County" "The dwelling unit is in MS, Webster County" +in.county "MS, Wilkinson County" "The dwelling unit is in MS, Wilkinson County" +in.county "MS, Winston County" "The dwelling unit is in MS, Winston County" +in.county "MS, Yalobusha County" "The dwelling unit is in MS, Yalobusha County" +in.county "MS, Yazoo County" "The dwelling unit is in MS, Yazoo County" +in.county "MT, Beaverhead County" "The dwelling unit is in MT, Beaverhead County" +in.county "MT, Big Horn County" "The dwelling unit is in MT, Big Horn County" +in.county "MT, Blaine County" "The dwelling unit is in MT, Blaine County" +in.county "MT, Broadwater County" "The dwelling unit is in MT, Broadwater County" +in.county "MT, Carbon County" "The dwelling unit is in MT, Carbon County" +in.county "MT, Carter County" "The dwelling unit is in MT, Carter County" +in.county "MT, Cascade County" "The dwelling unit is in MT, Cascade County" +in.county "MT, Chouteau County" "The dwelling unit is in MT, Chouteau County" +in.county "MT, Custer County" "The dwelling unit is in MT, Custer County" +in.county "MT, Daniels County" "The dwelling unit is in MT, Daniels County" +in.county "MT, Dawson County" "The dwelling unit is in MT, Dawson County" +in.county "MT, Deer Lodge County" "The dwelling unit is in MT, Deer Lodge County" +in.county "MT, Fallon County" "The dwelling unit is in MT, Fallon County" +in.county "MT, Fergus County" "The dwelling unit is in MT, Fergus County" +in.county "MT, Flathead County" "The dwelling unit is in MT, Flathead County" +in.county "MT, Gallatin County" "The dwelling unit is in MT, Gallatin County" +in.county "MT, Garfield County" "The dwelling unit is in MT, Garfield County" +in.county "MT, Glacier County" "The dwelling unit is in MT, Glacier County" +in.county "MT, Golden Valley County" "The dwelling unit is in MT, Golden Valley County" +in.county "MT, Granite County" "The dwelling unit is in MT, Granite County" +in.county "MT, Hill County" "The dwelling unit is in MT, Hill County" +in.county "MT, Jefferson County" "The dwelling unit is in MT, Jefferson County" +in.county "MT, Judith Basin County" "The dwelling unit is in MT, Judith Basin County" +in.county "MT, Lake County" "The dwelling unit is in MT, Lake County" +in.county "MT, Lewis and Clark County" "The dwelling unit is in MT, Lewis and Clark County" +in.county "MT, Liberty County" "The dwelling unit is in MT, Liberty County" +in.county "MT, Lincoln County" "The dwelling unit is in MT, Lincoln County" +in.county "MT, Madison County" "The dwelling unit is in MT, Madison County" +in.county "MT, McCone County" "The dwelling unit is in MT, McCone County" +in.county "MT, Meagher County" "The dwelling unit is in MT, Meagher County" +in.county "MT, Mineral County" "The dwelling unit is in MT, Mineral County" +in.county "MT, Missoula County" "The dwelling unit is in MT, Missoula County" +in.county "MT, Musselshell County" "The dwelling unit is in MT, Musselshell County" +in.county "MT, Park County" "The dwelling unit is in MT, Park County" +in.county "MT, Petroleum County" "The dwelling unit is in MT, Petroleum County" +in.county "MT, Phillips County" "The dwelling unit is in MT, Phillips County" +in.county "MT, Pondera County" "The dwelling unit is in MT, Pondera County" +in.county "MT, Powder River County" "The dwelling unit is in MT, Powder River County" +in.county "MT, Powell County" "The dwelling unit is in MT, Powell County" +in.county "MT, Prairie County" "The dwelling unit is in MT, Prairie County" +in.county "MT, Ravalli County" "The dwelling unit is in MT, Ravalli County" +in.county "MT, Richland County" "The dwelling unit is in MT, Richland County" +in.county "MT, Roosevelt County" "The dwelling unit is in MT, Roosevelt County" +in.county "MT, Rosebud County" "The dwelling unit is in MT, Rosebud County" +in.county "MT, Sanders County" "The dwelling unit is in MT, Sanders County" +in.county "MT, Sheridan County" "The dwelling unit is in MT, Sheridan County" +in.county "MT, Silver Bow County" "The dwelling unit is in MT, Silver Bow County" +in.county "MT, Stillwater County" "The dwelling unit is in MT, Stillwater County" +in.county "MT, Sweet Grass County" "The dwelling unit is in MT, Sweet Grass County" +in.county "MT, Teton County" "The dwelling unit is in MT, Teton County" +in.county "MT, Toole County" "The dwelling unit is in MT, Toole County" +in.county "MT, Treasure County" "The dwelling unit is in MT, Treasure County" +in.county "MT, Valley County" "The dwelling unit is in MT, Valley County" +in.county "MT, Wheatland County" "The dwelling unit is in MT, Wheatland County" +in.county "MT, Wibaux County" "The dwelling unit is in MT, Wibaux County" +in.county "MT, Yellowstone County" "The dwelling unit is in MT, Yellowstone County" +in.county "NC, Alamance County" "The dwelling unit is in NC, Alamance County" +in.county "NC, Alexander County" "The dwelling unit is in NC, Alexander County" +in.county "NC, Alleghany County" "The dwelling unit is in NC, Alleghany County" +in.county "NC, Anson County" "The dwelling unit is in NC, Anson County" +in.county "NC, Ashe County" "The dwelling unit is in NC, Ashe County" +in.county "NC, Avery County" "The dwelling unit is in NC, Avery County" +in.county "NC, Beaufort County" "The dwelling unit is in NC, Beaufort County" +in.county "NC, Bertie County" "The dwelling unit is in NC, Bertie County" +in.county "NC, Bladen County" "The dwelling unit is in NC, Bladen County" +in.county "NC, Brunswick County" "The dwelling unit is in NC, Brunswick County" +in.county "NC, Buncombe County" "The dwelling unit is in NC, Buncombe County" +in.county "NC, Burke County" "The dwelling unit is in NC, Burke County" +in.county "NC, Cabarrus County" "The dwelling unit is in NC, Cabarrus County" +in.county "NC, Caldwell County" "The dwelling unit is in NC, Caldwell County" +in.county "NC, Camden County" "The dwelling unit is in NC, Camden County" +in.county "NC, Carteret County" "The dwelling unit is in NC, Carteret County" +in.county "NC, Caswell County" "The dwelling unit is in NC, Caswell County" +in.county "NC, Catawba County" "The dwelling unit is in NC, Catawba County" +in.county "NC, Chatham County" "The dwelling unit is in NC, Chatham County" +in.county "NC, Cherokee County" "The dwelling unit is in NC, Cherokee County" +in.county "NC, Chowan County" "The dwelling unit is in NC, Chowan County" +in.county "NC, Clay County" "The dwelling unit is in NC, Clay County" +in.county "NC, Cleveland County" "The dwelling unit is in NC, Cleveland County" +in.county "NC, Columbus County" "The dwelling unit is in NC, Columbus County" +in.county "NC, Craven County" "The dwelling unit is in NC, Craven County" +in.county "NC, Cumberland County" "The dwelling unit is in NC, Cumberland County" +in.county "NC, Currituck County" "The dwelling unit is in NC, Currituck County" +in.county "NC, Dare County" "The dwelling unit is in NC, Dare County" +in.county "NC, Davidson County" "The dwelling unit is in NC, Davidson County" +in.county "NC, Davie County" "The dwelling unit is in NC, Davie County" +in.county "NC, Duplin County" "The dwelling unit is in NC, Duplin County" +in.county "NC, Durham County" "The dwelling unit is in NC, Durham County" +in.county "NC, Edgecombe County" "The dwelling unit is in NC, Edgecombe County" +in.county "NC, Forsyth County" "The dwelling unit is in NC, Forsyth County" +in.county "NC, Franklin County" "The dwelling unit is in NC, Franklin County" +in.county "NC, Gaston County" "The dwelling unit is in NC, Gaston County" +in.county "NC, Gates County" "The dwelling unit is in NC, Gates County" +in.county "NC, Graham County" "The dwelling unit is in NC, Graham County" +in.county "NC, Granville County" "The dwelling unit is in NC, Granville County" +in.county "NC, Greene County" "The dwelling unit is in NC, Greene County" +in.county "NC, Guilford County" "The dwelling unit is in NC, Guilford County" +in.county "NC, Halifax County" "The dwelling unit is in NC, Halifax County" +in.county "NC, Harnett County" "The dwelling unit is in NC, Harnett County" +in.county "NC, Haywood County" "The dwelling unit is in NC, Haywood County" +in.county "NC, Henderson County" "The dwelling unit is in NC, Henderson County" +in.county "NC, Hertford County" "The dwelling unit is in NC, Hertford County" +in.county "NC, Hoke County" "The dwelling unit is in NC, Hoke County" +in.county "NC, Hyde County" "The dwelling unit is in NC, Hyde County" +in.county "NC, Iredell County" "The dwelling unit is in NC, Iredell County" +in.county "NC, Jackson County" "The dwelling unit is in NC, Jackson County" +in.county "NC, Johnston County" "The dwelling unit is in NC, Johnston County" +in.county "NC, Jones County" "The dwelling unit is in NC, Jones County" +in.county "NC, Lee County" "The dwelling unit is in NC, Lee County" +in.county "NC, Lenoir County" "The dwelling unit is in NC, Lenoir County" +in.county "NC, Lincoln County" "The dwelling unit is in NC, Lincoln County" +in.county "NC, Macon County" "The dwelling unit is in NC, Macon County" +in.county "NC, Madison County" "The dwelling unit is in NC, Madison County" +in.county "NC, Martin County" "The dwelling unit is in NC, Martin County" +in.county "NC, McDowell County" "The dwelling unit is in NC, McDowell County" +in.county "NC, Mecklenburg County" "The dwelling unit is in NC, Mecklenburg County" +in.county "NC, Mitchell County" "The dwelling unit is in NC, Mitchell County" +in.county "NC, Montgomery County" "The dwelling unit is in NC, Montgomery County" +in.county "NC, Moore County" "The dwelling unit is in NC, Moore County" +in.county "NC, Nash County" "The dwelling unit is in NC, Nash County" +in.county "NC, New Hanover County" "The dwelling unit is in NC, New Hanover County" +in.county "NC, Northampton County" "The dwelling unit is in NC, Northampton County" +in.county "NC, Onslow County" "The dwelling unit is in NC, Onslow County" +in.county "NC, Orange County" "The dwelling unit is in NC, Orange County" +in.county "NC, Pamlico County" "The dwelling unit is in NC, Pamlico County" +in.county "NC, Pasquotank County" "The dwelling unit is in NC, Pasquotank County" +in.county "NC, Pender County" "The dwelling unit is in NC, Pender County" +in.county "NC, Perquimans County" "The dwelling unit is in NC, Perquimans County" +in.county "NC, Person County" "The dwelling unit is in NC, Person County" +in.county "NC, Pitt County" "The dwelling unit is in NC, Pitt County" +in.county "NC, Polk County" "The dwelling unit is in NC, Polk County" +in.county "NC, Randolph County" "The dwelling unit is in NC, Randolph County" +in.county "NC, Richmond County" "The dwelling unit is in NC, Richmond County" +in.county "NC, Robeson County" "The dwelling unit is in NC, Robeson County" +in.county "NC, Rockingham County" "The dwelling unit is in NC, Rockingham County" +in.county "NC, Rowan County" "The dwelling unit is in NC, Rowan County" +in.county "NC, Rutherford County" "The dwelling unit is in NC, Rutherford County" +in.county "NC, Sampson County" "The dwelling unit is in NC, Sampson County" +in.county "NC, Scotland County" "The dwelling unit is in NC, Scotland County" +in.county "NC, Stanly County" "The dwelling unit is in NC, Stanly County" +in.county "NC, Stokes County" "The dwelling unit is in NC, Stokes County" +in.county "NC, Surry County" "The dwelling unit is in NC, Surry County" +in.county "NC, Swain County" "The dwelling unit is in NC, Swain County" +in.county "NC, Transylvania County" "The dwelling unit is in NC, Transylvania County" +in.county "NC, Tyrrell County" "The dwelling unit is in NC, Tyrrell County" +in.county "NC, Union County" "The dwelling unit is in NC, Union County" +in.county "NC, Vance County" "The dwelling unit is in NC, Vance County" +in.county "NC, Wake County" "The dwelling unit is in NC, Wake County" +in.county "NC, Warren County" "The dwelling unit is in NC, Warren County" +in.county "NC, Washington County" "The dwelling unit is in NC, Washington County" +in.county "NC, Watauga County" "The dwelling unit is in NC, Watauga County" +in.county "NC, Wayne County" "The dwelling unit is in NC, Wayne County" +in.county "NC, Wilkes County" "The dwelling unit is in NC, Wilkes County" +in.county "NC, Wilson County" "The dwelling unit is in NC, Wilson County" +in.county "NC, Yadkin County" "The dwelling unit is in NC, Yadkin County" +in.county "NC, Yancey County" "The dwelling unit is in NC, Yancey County" +in.county "ND, Adams County" "The dwelling unit is in ND, Adams County" +in.county "ND, Barnes County" "The dwelling unit is in ND, Barnes County" +in.county "ND, Benson County" "The dwelling unit is in ND, Benson County" +in.county "ND, Billings County" "The dwelling unit is in ND, Billings County" +in.county "ND, Bottineau County" "The dwelling unit is in ND, Bottineau County" +in.county "ND, Bowman County" "The dwelling unit is in ND, Bowman County" +in.county "ND, Burke County" "The dwelling unit is in ND, Burke County" +in.county "ND, Burleigh County" "The dwelling unit is in ND, Burleigh County" +in.county "ND, Cass County" "The dwelling unit is in ND, Cass County" +in.county "ND, Cavalier County" "The dwelling unit is in ND, Cavalier County" +in.county "ND, Dickey County" "The dwelling unit is in ND, Dickey County" +in.county "ND, Divide County" "The dwelling unit is in ND, Divide County" +in.county "ND, Dunn County" "The dwelling unit is in ND, Dunn County" +in.county "ND, Eddy County" "The dwelling unit is in ND, Eddy County" +in.county "ND, Emmons County" "The dwelling unit is in ND, Emmons County" +in.county "ND, Foster County" "The dwelling unit is in ND, Foster County" +in.county "ND, Golden Valley County" "The dwelling unit is in ND, Golden Valley County" +in.county "ND, Grand Forks County" "The dwelling unit is in ND, Grand Forks County" +in.county "ND, Grant County" "The dwelling unit is in ND, Grant County" +in.county "ND, Griggs County" "The dwelling unit is in ND, Griggs County" +in.county "ND, Hettinger County" "The dwelling unit is in ND, Hettinger County" +in.county "ND, Kidder County" "The dwelling unit is in ND, Kidder County" +in.county "ND, LaMoure County" "The dwelling unit is in ND, LaMoure County" +in.county "ND, Logan County" "The dwelling unit is in ND, Logan County" +in.county "ND, McHenry County" "The dwelling unit is in ND, McHenry County" +in.county "ND, McIntosh County" "The dwelling unit is in ND, McIntosh County" +in.county "ND, McKenzie County" "The dwelling unit is in ND, McKenzie County" +in.county "ND, McLean County" "The dwelling unit is in ND, McLean County" +in.county "ND, Mercer County" "The dwelling unit is in ND, Mercer County" +in.county "ND, Morton County" "The dwelling unit is in ND, Morton County" +in.county "ND, Mountrail County" "The dwelling unit is in ND, Mountrail County" +in.county "ND, Nelson County" "The dwelling unit is in ND, Nelson County" +in.county "ND, Oliver County" "The dwelling unit is in ND, Oliver County" +in.county "ND, Pembina County" "The dwelling unit is in ND, Pembina County" +in.county "ND, Pierce County" "The dwelling unit is in ND, Pierce County" +in.county "ND, Ramsey County" "The dwelling unit is in ND, Ramsey County" +in.county "ND, Ransom County" "The dwelling unit is in ND, Ransom County" +in.county "ND, Renville County" "The dwelling unit is in ND, Renville County" +in.county "ND, Richland County" "The dwelling unit is in ND, Richland County" +in.county "ND, Rolette County" "The dwelling unit is in ND, Rolette County" +in.county "ND, Sargent County" "The dwelling unit is in ND, Sargent County" +in.county "ND, Sheridan County" "The dwelling unit is in ND, Sheridan County" +in.county "ND, Sioux County" "The dwelling unit is in ND, Sioux County" +in.county "ND, Slope County" "The dwelling unit is in ND, Slope County" +in.county "ND, Stark County" "The dwelling unit is in ND, Stark County" +in.county "ND, Steele County" "The dwelling unit is in ND, Steele County" +in.county "ND, Stutsman County" "The dwelling unit is in ND, Stutsman County" +in.county "ND, Towner County" "The dwelling unit is in ND, Towner County" +in.county "ND, Traill County" "The dwelling unit is in ND, Traill County" +in.county "ND, Walsh County" "The dwelling unit is in ND, Walsh County" +in.county "ND, Ward County" "The dwelling unit is in ND, Ward County" +in.county "ND, Wells County" "The dwelling unit is in ND, Wells County" +in.county "ND, Williams County" "The dwelling unit is in ND, Williams County" +in.county "NE, Adams County" "The dwelling unit is in NE, Adams County" +in.county "NE, Antelope County" "The dwelling unit is in NE, Antelope County" +in.county "NE, Arthur County" "The dwelling unit is in NE, Arthur County" +in.county "NE, Banner County" "The dwelling unit is in NE, Banner County" +in.county "NE, Blaine County" "The dwelling unit is in NE, Blaine County" +in.county "NE, Boone County" "The dwelling unit is in NE, Boone County" +in.county "NE, Box Butte County" "The dwelling unit is in NE, Box Butte County" +in.county "NE, Boyd County" "The dwelling unit is in NE, Boyd County" +in.county "NE, Brown County" "The dwelling unit is in NE, Brown County" +in.county "NE, Buffalo County" "The dwelling unit is in NE, Buffalo County" +in.county "NE, Burt County" "The dwelling unit is in NE, Burt County" +in.county "NE, Butler County" "The dwelling unit is in NE, Butler County" +in.county "NE, Cass County" "The dwelling unit is in NE, Cass County" +in.county "NE, Cedar County" "The dwelling unit is in NE, Cedar County" +in.county "NE, Chase County" "The dwelling unit is in NE, Chase County" +in.county "NE, Cherry County" "The dwelling unit is in NE, Cherry County" +in.county "NE, Cheyenne County" "The dwelling unit is in NE, Cheyenne County" +in.county "NE, Clay County" "The dwelling unit is in NE, Clay County" +in.county "NE, Colfax County" "The dwelling unit is in NE, Colfax County" +in.county "NE, Cuming County" "The dwelling unit is in NE, Cuming County" +in.county "NE, Custer County" "The dwelling unit is in NE, Custer County" +in.county "NE, Dakota County" "The dwelling unit is in NE, Dakota County" +in.county "NE, Dawes County" "The dwelling unit is in NE, Dawes County" +in.county "NE, Dawson County" "The dwelling unit is in NE, Dawson County" +in.county "NE, Deuel County" "The dwelling unit is in NE, Deuel County" +in.county "NE, Dixon County" "The dwelling unit is in NE, Dixon County" +in.county "NE, Dodge County" "The dwelling unit is in NE, Dodge County" +in.county "NE, Douglas County" "The dwelling unit is in NE, Douglas County" +in.county "NE, Dundy County" "The dwelling unit is in NE, Dundy County" +in.county "NE, Fillmore County" "The dwelling unit is in NE, Fillmore County" +in.county "NE, Franklin County" "The dwelling unit is in NE, Franklin County" +in.county "NE, Frontier County" "The dwelling unit is in NE, Frontier County" +in.county "NE, Furnas County" "The dwelling unit is in NE, Furnas County" +in.county "NE, Gage County" "The dwelling unit is in NE, Gage County" +in.county "NE, Garden County" "The dwelling unit is in NE, Garden County" +in.county "NE, Garfield County" "The dwelling unit is in NE, Garfield County" +in.county "NE, Gosper County" "The dwelling unit is in NE, Gosper County" +in.county "NE, Grant County" "The dwelling unit is in NE, Grant County" +in.county "NE, Greeley County" "The dwelling unit is in NE, Greeley County" +in.county "NE, Hall County" "The dwelling unit is in NE, Hall County" +in.county "NE, Hamilton County" "The dwelling unit is in NE, Hamilton County" +in.county "NE, Harlan County" "The dwelling unit is in NE, Harlan County" +in.county "NE, Hayes County" "The dwelling unit is in NE, Hayes County" +in.county "NE, Hitchcock County" "The dwelling unit is in NE, Hitchcock County" +in.county "NE, Holt County" "The dwelling unit is in NE, Holt County" +in.county "NE, Hooker County" "The dwelling unit is in NE, Hooker County" +in.county "NE, Howard County" "The dwelling unit is in NE, Howard County" +in.county "NE, Jefferson County" "The dwelling unit is in NE, Jefferson County" +in.county "NE, Johnson County" "The dwelling unit is in NE, Johnson County" +in.county "NE, Kearney County" "The dwelling unit is in NE, Kearney County" +in.county "NE, Keith County" "The dwelling unit is in NE, Keith County" +in.county "NE, Keya Paha County" "The dwelling unit is in NE, Keya Paha County" +in.county "NE, Kimball County" "The dwelling unit is in NE, Kimball County" +in.county "NE, Knox County" "The dwelling unit is in NE, Knox County" +in.county "NE, Lancaster County" "The dwelling unit is in NE, Lancaster County" +in.county "NE, Lincoln County" "The dwelling unit is in NE, Lincoln County" +in.county "NE, Logan County" "The dwelling unit is in NE, Logan County" +in.county "NE, Loup County" "The dwelling unit is in NE, Loup County" +in.county "NE, Madison County" "The dwelling unit is in NE, Madison County" +in.county "NE, McPherson County" "The dwelling unit is in NE, McPherson County" +in.county "NE, Merrick County" "The dwelling unit is in NE, Merrick County" +in.county "NE, Morrill County" "The dwelling unit is in NE, Morrill County" +in.county "NE, Nance County" "The dwelling unit is in NE, Nance County" +in.county "NE, Nemaha County" "The dwelling unit is in NE, Nemaha County" +in.county "NE, Nuckolls County" "The dwelling unit is in NE, Nuckolls County" +in.county "NE, Otoe County" "The dwelling unit is in NE, Otoe County" +in.county "NE, Pawnee County" "The dwelling unit is in NE, Pawnee County" +in.county "NE, Perkins County" "The dwelling unit is in NE, Perkins County" +in.county "NE, Phelps County" "The dwelling unit is in NE, Phelps County" +in.county "NE, Pierce County" "The dwelling unit is in NE, Pierce County" +in.county "NE, Platte County" "The dwelling unit is in NE, Platte County" +in.county "NE, Polk County" "The dwelling unit is in NE, Polk County" +in.county "NE, Red Willow County" "The dwelling unit is in NE, Red Willow County" +in.county "NE, Richardson County" "The dwelling unit is in NE, Richardson County" +in.county "NE, Rock County" "The dwelling unit is in NE, Rock County" +in.county "NE, Saline County" "The dwelling unit is in NE, Saline County" +in.county "NE, Sarpy County" "The dwelling unit is in NE, Sarpy County" +in.county "NE, Saunders County" "The dwelling unit is in NE, Saunders County" +in.county "NE, Scotts Bluff County" "The dwelling unit is in NE, Scotts Bluff County" +in.county "NE, Seward County" "The dwelling unit is in NE, Seward County" +in.county "NE, Sheridan County" "The dwelling unit is in NE, Sheridan County" +in.county "NE, Sherman County" "The dwelling unit is in NE, Sherman County" +in.county "NE, Sioux County" "The dwelling unit is in NE, Sioux County" +in.county "NE, Stanton County" "The dwelling unit is in NE, Stanton County" +in.county "NE, Thayer County" "The dwelling unit is in NE, Thayer County" +in.county "NE, Thomas County" "The dwelling unit is in NE, Thomas County" +in.county "NE, Thurston County" "The dwelling unit is in NE, Thurston County" +in.county "NE, Valley County" "The dwelling unit is in NE, Valley County" +in.county "NE, Washington County" "The dwelling unit is in NE, Washington County" +in.county "NE, Wayne County" "The dwelling unit is in NE, Wayne County" +in.county "NE, Webster County" "The dwelling unit is in NE, Webster County" +in.county "NE, Wheeler County" "The dwelling unit is in NE, Wheeler County" +in.county "NE, York County" "The dwelling unit is in NE, York County" +in.county "NH, Belknap County" "The dwelling unit is in NH, Belknap County" +in.county "NH, Carroll County" "The dwelling unit is in NH, Carroll County" +in.county "NH, Cheshire County" "The dwelling unit is in NH, Cheshire County" +in.county "NH, Coos County" "The dwelling unit is in NH, Coos County" +in.county "NH, Grafton County" "The dwelling unit is in NH, Grafton County" +in.county "NH, Hillsborough County" "The dwelling unit is in NH, Hillsborough County" +in.county "NH, Merrimack County" "The dwelling unit is in NH, Merrimack County" +in.county "NH, Rockingham County" "The dwelling unit is in NH, Rockingham County" +in.county "NH, Strafford County" "The dwelling unit is in NH, Strafford County" +in.county "NH, Sullivan County" "The dwelling unit is in NH, Sullivan County" +in.county "NJ, Atlantic County" "The dwelling unit is in NJ, Atlantic County" +in.county "NJ, Bergen County" "The dwelling unit is in NJ, Bergen County" +in.county "NJ, Burlington County" "The dwelling unit is in NJ, Burlington County" +in.county "NJ, Camden County" "The dwelling unit is in NJ, Camden County" +in.county "NJ, Cape May County" "The dwelling unit is in NJ, Cape May County" +in.county "NJ, Cumberland County" "The dwelling unit is in NJ, Cumberland County" +in.county "NJ, Essex County" "The dwelling unit is in NJ, Essex County" +in.county "NJ, Gloucester County" "The dwelling unit is in NJ, Gloucester County" +in.county "NJ, Hudson County" "The dwelling unit is in NJ, Hudson County" +in.county "NJ, Hunterdon County" "The dwelling unit is in NJ, Hunterdon County" +in.county "NJ, Mercer County" "The dwelling unit is in NJ, Mercer County" +in.county "NJ, Middlesex County" "The dwelling unit is in NJ, Middlesex County" +in.county "NJ, Monmouth County" "The dwelling unit is in NJ, Monmouth County" +in.county "NJ, Morris County" "The dwelling unit is in NJ, Morris County" +in.county "NJ, Ocean County" "The dwelling unit is in NJ, Ocean County" +in.county "NJ, Passaic County" "The dwelling unit is in NJ, Passaic County" +in.county "NJ, Salem County" "The dwelling unit is in NJ, Salem County" +in.county "NJ, Somerset County" "The dwelling unit is in NJ, Somerset County" +in.county "NJ, Sussex County" "The dwelling unit is in NJ, Sussex County" +in.county "NJ, Union County" "The dwelling unit is in NJ, Union County" +in.county "NJ, Warren County" "The dwelling unit is in NJ, Warren County" +in.county "NM, Bernalillo County" "The dwelling unit is in NM, Bernalillo County" +in.county "NM, Catron County" "The dwelling unit is in NM, Catron County" +in.county "NM, Chaves County" "The dwelling unit is in NM, Chaves County" +in.county "NM, Cibola County" "The dwelling unit is in NM, Cibola County" +in.county "NM, Colfax County" "The dwelling unit is in NM, Colfax County" +in.county "NM, Curry County" "The dwelling unit is in NM, Curry County" +in.county "NM, De Baca County" "The dwelling unit is in NM, De Baca County" +in.county "NM, Dona Ana County" "The dwelling unit is in NM, Dona Ana County" +in.county "NM, Eddy County" "The dwelling unit is in NM, Eddy County" +in.county "NM, Grant County" "The dwelling unit is in NM, Grant County" +in.county "NM, Guadalupe County" "The dwelling unit is in NM, Guadalupe County" +in.county "NM, Harding County" "The dwelling unit is in NM, Harding County" +in.county "NM, Hidalgo County" "The dwelling unit is in NM, Hidalgo County" +in.county "NM, Lea County" "The dwelling unit is in NM, Lea County" +in.county "NM, Lincoln County" "The dwelling unit is in NM, Lincoln County" +in.county "NM, Los Alamos County" "The dwelling unit is in NM, Los Alamos County" +in.county "NM, Luna County" "The dwelling unit is in NM, Luna County" +in.county "NM, McKinley County" "The dwelling unit is in NM, McKinley County" +in.county "NM, Mora County" "The dwelling unit is in NM, Mora County" +in.county "NM, Otero County" "The dwelling unit is in NM, Otero County" +in.county "NM, Quay County" "The dwelling unit is in NM, Quay County" +in.county "NM, Rio Arriba County" "The dwelling unit is in NM, Rio Arriba County" +in.county "NM, Roosevelt County" "The dwelling unit is in NM, Roosevelt County" +in.county "NM, San Juan County" "The dwelling unit is in NM, San Juan County" +in.county "NM, San Miguel County" "The dwelling unit is in NM, San Miguel County" +in.county "NM, Sandoval County" "The dwelling unit is in NM, Sandoval County" +in.county "NM, Santa Fe County" "The dwelling unit is in NM, Santa Fe County" +in.county "NM, Sierra County" "The dwelling unit is in NM, Sierra County" +in.county "NM, Socorro County" "The dwelling unit is in NM, Socorro County" +in.county "NM, Taos County" "The dwelling unit is in NM, Taos County" +in.county "NM, Torrance County" "The dwelling unit is in NM, Torrance County" +in.county "NM, Union County" "The dwelling unit is in NM, Union County" +in.county "NM, Valencia County" "The dwelling unit is in NM, Valencia County" +in.county "NV, Carson City" "The dwelling unit is in NV, Carson City" +in.county "NV, Churchill County" "The dwelling unit is in NV, Churchill County" +in.county "NV, Clark County" "The dwelling unit is in NV, Clark County" +in.county "NV, Douglas County" "The dwelling unit is in NV, Douglas County" +in.county "NV, Elko County" "The dwelling unit is in NV, Elko County" +in.county "NV, Esmeralda County" "The dwelling unit is in NV, Esmeralda County" +in.county "NV, Eureka County" "The dwelling unit is in NV, Eureka County" +in.county "NV, Humboldt County" "The dwelling unit is in NV, Humboldt County" +in.county "NV, Lander County" "The dwelling unit is in NV, Lander County" +in.county "NV, Lincoln County" "The dwelling unit is in NV, Lincoln County" +in.county "NV, Lyon County" "The dwelling unit is in NV, Lyon County" +in.county "NV, Mineral County" "The dwelling unit is in NV, Mineral County" +in.county "NV, Nye County" "The dwelling unit is in NV, Nye County" +in.county "NV, Pershing County" "The dwelling unit is in NV, Pershing County" +in.county "NV, Storey County" "The dwelling unit is in NV, Storey County" +in.county "NV, Washoe County" "The dwelling unit is in NV, Washoe County" +in.county "NV, White Pine County" "The dwelling unit is in NV, White Pine County" +in.county "NY, Albany County" "The dwelling unit is in NY, Albany County" +in.county "NY, Allegany County" "The dwelling unit is in NY, Allegany County" +in.county "NY, Bronx County" "The dwelling unit is in NY, Bronx County" +in.county "NY, Broome County" "The dwelling unit is in NY, Broome County" +in.county "NY, Cattaraugus County" "The dwelling unit is in NY, Cattaraugus County" +in.county "NY, Cayuga County" "The dwelling unit is in NY, Cayuga County" +in.county "NY, Chautauqua County" "The dwelling unit is in NY, Chautauqua County" +in.county "NY, Chemung County" "The dwelling unit is in NY, Chemung County" +in.county "NY, Chenango County" "The dwelling unit is in NY, Chenango County" +in.county "NY, Clinton County" "The dwelling unit is in NY, Clinton County" +in.county "NY, Columbia County" "The dwelling unit is in NY, Columbia County" +in.county "NY, Cortland County" "The dwelling unit is in NY, Cortland County" +in.county "NY, Delaware County" "The dwelling unit is in NY, Delaware County" +in.county "NY, Dutchess County" "The dwelling unit is in NY, Dutchess County" +in.county "NY, Erie County" "The dwelling unit is in NY, Erie County" +in.county "NY, Essex County" "The dwelling unit is in NY, Essex County" +in.county "NY, Franklin County" "The dwelling unit is in NY, Franklin County" +in.county "NY, Fulton County" "The dwelling unit is in NY, Fulton County" +in.county "NY, Genesee County" "The dwelling unit is in NY, Genesee County" +in.county "NY, Greene County" "The dwelling unit is in NY, Greene County" +in.county "NY, Hamilton County" "The dwelling unit is in NY, Hamilton County" +in.county "NY, Herkimer County" "The dwelling unit is in NY, Herkimer County" +in.county "NY, Jefferson County" "The dwelling unit is in NY, Jefferson County" +in.county "NY, Kings County" "The dwelling unit is in NY, Kings County" +in.county "NY, Lewis County" "The dwelling unit is in NY, Lewis County" +in.county "NY, Livingston County" "The dwelling unit is in NY, Livingston County" +in.county "NY, Madison County" "The dwelling unit is in NY, Madison County" +in.county "NY, Monroe County" "The dwelling unit is in NY, Monroe County" +in.county "NY, Montgomery County" "The dwelling unit is in NY, Montgomery County" +in.county "NY, Nassau County" "The dwelling unit is in NY, Nassau County" +in.county "NY, New York County" "The dwelling unit is in NY, New York County" +in.county "NY, Niagara County" "The dwelling unit is in NY, Niagara County" +in.county "NY, Oneida County" "The dwelling unit is in NY, Oneida County" +in.county "NY, Onondaga County" "The dwelling unit is in NY, Onondaga County" +in.county "NY, Ontario County" "The dwelling unit is in NY, Ontario County" +in.county "NY, Orange County" "The dwelling unit is in NY, Orange County" +in.county "NY, Orleans County" "The dwelling unit is in NY, Orleans County" +in.county "NY, Oswego County" "The dwelling unit is in NY, Oswego County" +in.county "NY, Otsego County" "The dwelling unit is in NY, Otsego County" +in.county "NY, Putnam County" "The dwelling unit is in NY, Putnam County" +in.county "NY, Queens County" "The dwelling unit is in NY, Queens County" +in.county "NY, Rensselaer County" "The dwelling unit is in NY, Rensselaer County" +in.county "NY, Richmond County" "The dwelling unit is in NY, Richmond County" +in.county "NY, Rockland County" "The dwelling unit is in NY, Rockland County" +in.county "NY, Saratoga County" "The dwelling unit is in NY, Saratoga County" +in.county "NY, Schenectady County" "The dwelling unit is in NY, Schenectady County" +in.county "NY, Schoharie County" "The dwelling unit is in NY, Schoharie County" +in.county "NY, Schuyler County" "The dwelling unit is in NY, Schuyler County" +in.county "NY, Seneca County" "The dwelling unit is in NY, Seneca County" +in.county "NY, St. Lawrence County" "The dwelling unit is in NY, St. Lawrence County" +in.county "NY, Steuben County" "The dwelling unit is in NY, Steuben County" +in.county "NY, Suffolk County" "The dwelling unit is in NY, Suffolk County" +in.county "NY, Sullivan County" "The dwelling unit is in NY, Sullivan County" +in.county "NY, Tioga County" "The dwelling unit is in NY, Tioga County" +in.county "NY, Tompkins County" "The dwelling unit is in NY, Tompkins County" +in.county "NY, Ulster County" "The dwelling unit is in NY, Ulster County" +in.county "NY, Warren County" "The dwelling unit is in NY, Warren County" +in.county "NY, Washington County" "The dwelling unit is in NY, Washington County" +in.county "NY, Wayne County" "The dwelling unit is in NY, Wayne County" +in.county "NY, Westchester County" "The dwelling unit is in NY, Westchester County" +in.county "NY, Wyoming County" "The dwelling unit is in NY, Wyoming County" +in.county "NY, Yates County" "The dwelling unit is in NY, Yates County" +in.county "OH, Adams County" "The dwelling unit is in OH, Adams County" +in.county "OH, Allen County" "The dwelling unit is in OH, Allen County" +in.county "OH, Ashland County" "The dwelling unit is in OH, Ashland County" +in.county "OH, Ashtabula County" "The dwelling unit is in OH, Ashtabula County" +in.county "OH, Athens County" "The dwelling unit is in OH, Athens County" +in.county "OH, Auglaize County" "The dwelling unit is in OH, Auglaize County" +in.county "OH, Belmont County" "The dwelling unit is in OH, Belmont County" +in.county "OH, Brown County" "The dwelling unit is in OH, Brown County" +in.county "OH, Butler County" "The dwelling unit is in OH, Butler County" +in.county "OH, Carroll County" "The dwelling unit is in OH, Carroll County" +in.county "OH, Champaign County" "The dwelling unit is in OH, Champaign County" +in.county "OH, Clark County" "The dwelling unit is in OH, Clark County" +in.county "OH, Clermont County" "The dwelling unit is in OH, Clermont County" +in.county "OH, Clinton County" "The dwelling unit is in OH, Clinton County" +in.county "OH, Columbiana County" "The dwelling unit is in OH, Columbiana County" +in.county "OH, Coshocton County" "The dwelling unit is in OH, Coshocton County" +in.county "OH, Crawford County" "The dwelling unit is in OH, Crawford County" +in.county "OH, Cuyahoga County" "The dwelling unit is in OH, Cuyahoga County" +in.county "OH, Darke County" "The dwelling unit is in OH, Darke County" +in.county "OH, Defiance County" "The dwelling unit is in OH, Defiance County" +in.county "OH, Delaware County" "The dwelling unit is in OH, Delaware County" +in.county "OH, Erie County" "The dwelling unit is in OH, Erie County" +in.county "OH, Fairfield County" "The dwelling unit is in OH, Fairfield County" +in.county "OH, Fayette County" "The dwelling unit is in OH, Fayette County" +in.county "OH, Franklin County" "The dwelling unit is in OH, Franklin County" +in.county "OH, Fulton County" "The dwelling unit is in OH, Fulton County" +in.county "OH, Gallia County" "The dwelling unit is in OH, Gallia County" +in.county "OH, Geauga County" "The dwelling unit is in OH, Geauga County" +in.county "OH, Greene County" "The dwelling unit is in OH, Greene County" +in.county "OH, Guernsey County" "The dwelling unit is in OH, Guernsey County" +in.county "OH, Hamilton County" "The dwelling unit is in OH, Hamilton County" +in.county "OH, Hancock County" "The dwelling unit is in OH, Hancock County" +in.county "OH, Hardin County" "The dwelling unit is in OH, Hardin County" +in.county "OH, Harrison County" "The dwelling unit is in OH, Harrison County" +in.county "OH, Henry County" "The dwelling unit is in OH, Henry County" +in.county "OH, Highland County" "The dwelling unit is in OH, Highland County" +in.county "OH, Hocking County" "The dwelling unit is in OH, Hocking County" +in.county "OH, Holmes County" "The dwelling unit is in OH, Holmes County" +in.county "OH, Huron County" "The dwelling unit is in OH, Huron County" +in.county "OH, Jackson County" "The dwelling unit is in OH, Jackson County" +in.county "OH, Jefferson County" "The dwelling unit is in OH, Jefferson County" +in.county "OH, Knox County" "The dwelling unit is in OH, Knox County" +in.county "OH, Lake County" "The dwelling unit is in OH, Lake County" +in.county "OH, Lawrence County" "The dwelling unit is in OH, Lawrence County" +in.county "OH, Licking County" "The dwelling unit is in OH, Licking County" +in.county "OH, Logan County" "The dwelling unit is in OH, Logan County" +in.county "OH, Lorain County" "The dwelling unit is in OH, Lorain County" +in.county "OH, Lucas County" "The dwelling unit is in OH, Lucas County" +in.county "OH, Madison County" "The dwelling unit is in OH, Madison County" +in.county "OH, Mahoning County" "The dwelling unit is in OH, Mahoning County" +in.county "OH, Marion County" "The dwelling unit is in OH, Marion County" +in.county "OH, Medina County" "The dwelling unit is in OH, Medina County" +in.county "OH, Meigs County" "The dwelling unit is in OH, Meigs County" +in.county "OH, Mercer County" "The dwelling unit is in OH, Mercer County" +in.county "OH, Miami County" "The dwelling unit is in OH, Miami County" +in.county "OH, Monroe County" "The dwelling unit is in OH, Monroe County" +in.county "OH, Montgomery County" "The dwelling unit is in OH, Montgomery County" +in.county "OH, Morgan County" "The dwelling unit is in OH, Morgan County" +in.county "OH, Morrow County" "The dwelling unit is in OH, Morrow County" +in.county "OH, Muskingum County" "The dwelling unit is in OH, Muskingum County" +in.county "OH, Noble County" "The dwelling unit is in OH, Noble County" +in.county "OH, Ottawa County" "The dwelling unit is in OH, Ottawa County" +in.county "OH, Paulding County" "The dwelling unit is in OH, Paulding County" +in.county "OH, Perry County" "The dwelling unit is in OH, Perry County" +in.county "OH, Pickaway County" "The dwelling unit is in OH, Pickaway County" +in.county "OH, Pike County" "The dwelling unit is in OH, Pike County" +in.county "OH, Portage County" "The dwelling unit is in OH, Portage County" +in.county "OH, Preble County" "The dwelling unit is in OH, Preble County" +in.county "OH, Putnam County" "The dwelling unit is in OH, Putnam County" +in.county "OH, Richland County" "The dwelling unit is in OH, Richland County" +in.county "OH, Ross County" "The dwelling unit is in OH, Ross County" +in.county "OH, Sandusky County" "The dwelling unit is in OH, Sandusky County" +in.county "OH, Scioto County" "The dwelling unit is in OH, Scioto County" +in.county "OH, Seneca County" "The dwelling unit is in OH, Seneca County" +in.county "OH, Shelby County" "The dwelling unit is in OH, Shelby County" +in.county "OH, Stark County" "The dwelling unit is in OH, Stark County" +in.county "OH, Summit County" "The dwelling unit is in OH, Summit County" +in.county "OH, Trumbull County" "The dwelling unit is in OH, Trumbull County" +in.county "OH, Tuscarawas County" "The dwelling unit is in OH, Tuscarawas County" +in.county "OH, Union County" "The dwelling unit is in OH, Union County" +in.county "OH, Van Wert County" "The dwelling unit is in OH, Van Wert County" +in.county "OH, Vinton County" "The dwelling unit is in OH, Vinton County" +in.county "OH, Warren County" "The dwelling unit is in OH, Warren County" +in.county "OH, Washington County" "The dwelling unit is in OH, Washington County" +in.county "OH, Wayne County" "The dwelling unit is in OH, Wayne County" +in.county "OH, Williams County" "The dwelling unit is in OH, Williams County" +in.county "OH, Wood County" "The dwelling unit is in OH, Wood County" +in.county "OH, Wyandot County" "The dwelling unit is in OH, Wyandot County" +in.county "OK, Adair County" "The dwelling unit is in OK, Adair County" +in.county "OK, Alfalfa County" "The dwelling unit is in OK, Alfalfa County" +in.county "OK, Atoka County" "The dwelling unit is in OK, Atoka County" +in.county "OK, Beaver County" "The dwelling unit is in OK, Beaver County" +in.county "OK, Beckham County" "The dwelling unit is in OK, Beckham County" +in.county "OK, Blaine County" "The dwelling unit is in OK, Blaine County" +in.county "OK, Bryan County" "The dwelling unit is in OK, Bryan County" +in.county "OK, Caddo County" "The dwelling unit is in OK, Caddo County" +in.county "OK, Canadian County" "The dwelling unit is in OK, Canadian County" +in.county "OK, Carter County" "The dwelling unit is in OK, Carter County" +in.county "OK, Cherokee County" "The dwelling unit is in OK, Cherokee County" +in.county "OK, Choctaw County" "The dwelling unit is in OK, Choctaw County" +in.county "OK, Cimarron County" "The dwelling unit is in OK, Cimarron County" +in.county "OK, Cleveland County" "The dwelling unit is in OK, Cleveland County" +in.county "OK, Coal County" "The dwelling unit is in OK, Coal County" +in.county "OK, Comanche County" "The dwelling unit is in OK, Comanche County" +in.county "OK, Cotton County" "The dwelling unit is in OK, Cotton County" +in.county "OK, Craig County" "The dwelling unit is in OK, Craig County" +in.county "OK, Creek County" "The dwelling unit is in OK, Creek County" +in.county "OK, Custer County" "The dwelling unit is in OK, Custer County" +in.county "OK, Delaware County" "The dwelling unit is in OK, Delaware County" +in.county "OK, Dewey County" "The dwelling unit is in OK, Dewey County" +in.county "OK, Ellis County" "The dwelling unit is in OK, Ellis County" +in.county "OK, Garfield County" "The dwelling unit is in OK, Garfield County" +in.county "OK, Garvin County" "The dwelling unit is in OK, Garvin County" +in.county "OK, Grady County" "The dwelling unit is in OK, Grady County" +in.county "OK, Grant County" "The dwelling unit is in OK, Grant County" +in.county "OK, Greer County" "The dwelling unit is in OK, Greer County" +in.county "OK, Harmon County" "The dwelling unit is in OK, Harmon County" +in.county "OK, Harper County" "The dwelling unit is in OK, Harper County" +in.county "OK, Haskell County" "The dwelling unit is in OK, Haskell County" +in.county "OK, Hughes County" "The dwelling unit is in OK, Hughes County" +in.county "OK, Jackson County" "The dwelling unit is in OK, Jackson County" +in.county "OK, Jefferson County" "The dwelling unit is in OK, Jefferson County" +in.county "OK, Johnston County" "The dwelling unit is in OK, Johnston County" +in.county "OK, Kay County" "The dwelling unit is in OK, Kay County" +in.county "OK, Kingfisher County" "The dwelling unit is in OK, Kingfisher County" +in.county "OK, Kiowa County" "The dwelling unit is in OK, Kiowa County" +in.county "OK, Latimer County" "The dwelling unit is in OK, Latimer County" +in.county "OK, Le Flore County" "The dwelling unit is in OK, Le Flore County" +in.county "OK, Lincoln County" "The dwelling unit is in OK, Lincoln County" +in.county "OK, Logan County" "The dwelling unit is in OK, Logan County" +in.county "OK, Love County" "The dwelling unit is in OK, Love County" +in.county "OK, Major County" "The dwelling unit is in OK, Major County" +in.county "OK, Marshall County" "The dwelling unit is in OK, Marshall County" +in.county "OK, Mayes County" "The dwelling unit is in OK, Mayes County" +in.county "OK, McClain County" "The dwelling unit is in OK, McClain County" +in.county "OK, McCurtain County" "The dwelling unit is in OK, McCurtain County" +in.county "OK, McIntosh County" "The dwelling unit is in OK, McIntosh County" +in.county "OK, Murray County" "The dwelling unit is in OK, Murray County" +in.county "OK, Muskogee County" "The dwelling unit is in OK, Muskogee County" +in.county "OK, Noble County" "The dwelling unit is in OK, Noble County" +in.county "OK, Nowata County" "The dwelling unit is in OK, Nowata County" +in.county "OK, Okfuskee County" "The dwelling unit is in OK, Okfuskee County" +in.county "OK, Oklahoma County" "The dwelling unit is in OK, Oklahoma County" +in.county "OK, Okmulgee County" "The dwelling unit is in OK, Okmulgee County" +in.county "OK, Osage County" "The dwelling unit is in OK, Osage County" +in.county "OK, Ottawa County" "The dwelling unit is in OK, Ottawa County" +in.county "OK, Pawnee County" "The dwelling unit is in OK, Pawnee County" +in.county "OK, Payne County" "The dwelling unit is in OK, Payne County" +in.county "OK, Pittsburg County" "The dwelling unit is in OK, Pittsburg County" +in.county "OK, Pontotoc County" "The dwelling unit is in OK, Pontotoc County" +in.county "OK, Pottawatomie County" "The dwelling unit is in OK, Pottawatomie County" +in.county "OK, Pushmataha County" "The dwelling unit is in OK, Pushmataha County" +in.county "OK, Roger Mills County" "The dwelling unit is in OK, Roger Mills County" +in.county "OK, Rogers County" "The dwelling unit is in OK, Rogers County" +in.county "OK, Seminole County" "The dwelling unit is in OK, Seminole County" +in.county "OK, Sequoyah County" "The dwelling unit is in OK, Sequoyah County" +in.county "OK, Stephens County" "The dwelling unit is in OK, Stephens County" +in.county "OK, Texas County" "The dwelling unit is in OK, Texas County" +in.county "OK, Tillman County" "The dwelling unit is in OK, Tillman County" +in.county "OK, Tulsa County" "The dwelling unit is in OK, Tulsa County" +in.county "OK, Wagoner County" "The dwelling unit is in OK, Wagoner County" +in.county "OK, Washington County" "The dwelling unit is in OK, Washington County" +in.county "OK, Washita County" "The dwelling unit is in OK, Washita County" +in.county "OK, Woods County" "The dwelling unit is in OK, Woods County" +in.county "OK, Woodward County" "The dwelling unit is in OK, Woodward County" +in.county "OR, Baker County" "The dwelling unit is in OR, Baker County" +in.county "OR, Benton County" "The dwelling unit is in OR, Benton County" +in.county "OR, Clackamas County" "The dwelling unit is in OR, Clackamas County" +in.county "OR, Clatsop County" "The dwelling unit is in OR, Clatsop County" +in.county "OR, Columbia County" "The dwelling unit is in OR, Columbia County" +in.county "OR, Coos County" "The dwelling unit is in OR, Coos County" +in.county "OR, Crook County" "The dwelling unit is in OR, Crook County" +in.county "OR, Curry County" "The dwelling unit is in OR, Curry County" +in.county "OR, Deschutes County" "The dwelling unit is in OR, Deschutes County" +in.county "OR, Douglas County" "The dwelling unit is in OR, Douglas County" +in.county "OR, Gilliam County" "The dwelling unit is in OR, Gilliam County" +in.county "OR, Grant County" "The dwelling unit is in OR, Grant County" +in.county "OR, Harney County" "The dwelling unit is in OR, Harney County" +in.county "OR, Hood River County" "The dwelling unit is in OR, Hood River County" +in.county "OR, Jackson County" "The dwelling unit is in OR, Jackson County" +in.county "OR, Jefferson County" "The dwelling unit is in OR, Jefferson County" +in.county "OR, Josephine County" "The dwelling unit is in OR, Josephine County" +in.county "OR, Klamath County" "The dwelling unit is in OR, Klamath County" +in.county "OR, Lake County" "The dwelling unit is in OR, Lake County" +in.county "OR, Lane County" "The dwelling unit is in OR, Lane County" +in.county "OR, Lincoln County" "The dwelling unit is in OR, Lincoln County" +in.county "OR, Linn County" "The dwelling unit is in OR, Linn County" +in.county "OR, Malheur County" "The dwelling unit is in OR, Malheur County" +in.county "OR, Marion County" "The dwelling unit is in OR, Marion County" +in.county "OR, Morrow County" "The dwelling unit is in OR, Morrow County" +in.county "OR, Multnomah County" "The dwelling unit is in OR, Multnomah County" +in.county "OR, Polk County" "The dwelling unit is in OR, Polk County" +in.county "OR, Sherman County" "The dwelling unit is in OR, Sherman County" +in.county "OR, Tillamook County" "The dwelling unit is in OR, Tillamook County" +in.county "OR, Umatilla County" "The dwelling unit is in OR, Umatilla County" +in.county "OR, Union County" "The dwelling unit is in OR, Union County" +in.county "OR, Wallowa County" "The dwelling unit is in OR, Wallowa County" +in.county "OR, Wasco County" "The dwelling unit is in OR, Wasco County" +in.county "OR, Washington County" "The dwelling unit is in OR, Washington County" +in.county "OR, Wheeler County" "The dwelling unit is in OR, Wheeler County" +in.county "OR, Yamhill County" "The dwelling unit is in OR, Yamhill County" +in.county "PA, Adams County" "The dwelling unit is in PA, Adams County" +in.county "PA, Allegheny County" "The dwelling unit is in PA, Allegheny County" +in.county "PA, Armstrong County" "The dwelling unit is in PA, Armstrong County" +in.county "PA, Beaver County" "The dwelling unit is in PA, Beaver County" +in.county "PA, Bedford County" "The dwelling unit is in PA, Bedford County" +in.county "PA, Berks County" "The dwelling unit is in PA, Berks County" +in.county "PA, Blair County" "The dwelling unit is in PA, Blair County" +in.county "PA, Bradford County" "The dwelling unit is in PA, Bradford County" +in.county "PA, Bucks County" "The dwelling unit is in PA, Bucks County" +in.county "PA, Butler County" "The dwelling unit is in PA, Butler County" +in.county "PA, Cambria County" "The dwelling unit is in PA, Cambria County" +in.county "PA, Cameron County" "The dwelling unit is in PA, Cameron County" +in.county "PA, Carbon County" "The dwelling unit is in PA, Carbon County" +in.county "PA, Centre County" "The dwelling unit is in PA, Centre County" +in.county "PA, Chester County" "The dwelling unit is in PA, Chester County" +in.county "PA, Clarion County" "The dwelling unit is in PA, Clarion County" +in.county "PA, Clearfield County" "The dwelling unit is in PA, Clearfield County" +in.county "PA, Clinton County" "The dwelling unit is in PA, Clinton County" +in.county "PA, Columbia County" "The dwelling unit is in PA, Columbia County" +in.county "PA, Crawford County" "The dwelling unit is in PA, Crawford County" +in.county "PA, Cumberland County" "The dwelling unit is in PA, Cumberland County" +in.county "PA, Dauphin County" "The dwelling unit is in PA, Dauphin County" +in.county "PA, Delaware County" "The dwelling unit is in PA, Delaware County" +in.county "PA, Elk County" "The dwelling unit is in PA, Elk County" +in.county "PA, Erie County" "The dwelling unit is in PA, Erie County" +in.county "PA, Fayette County" "The dwelling unit is in PA, Fayette County" +in.county "PA, Forest County" "The dwelling unit is in PA, Forest County" +in.county "PA, Franklin County" "The dwelling unit is in PA, Franklin County" +in.county "PA, Fulton County" "The dwelling unit is in PA, Fulton County" +in.county "PA, Greene County" "The dwelling unit is in PA, Greene County" +in.county "PA, Huntingdon County" "The dwelling unit is in PA, Huntingdon County" +in.county "PA, Indiana County" "The dwelling unit is in PA, Indiana County" +in.county "PA, Jefferson County" "The dwelling unit is in PA, Jefferson County" +in.county "PA, Juniata County" "The dwelling unit is in PA, Juniata County" +in.county "PA, Lackawanna County" "The dwelling unit is in PA, Lackawanna County" +in.county "PA, Lancaster County" "The dwelling unit is in PA, Lancaster County" +in.county "PA, Lawrence County" "The dwelling unit is in PA, Lawrence County" +in.county "PA, Lebanon County" "The dwelling unit is in PA, Lebanon County" +in.county "PA, Lehigh County" "The dwelling unit is in PA, Lehigh County" +in.county "PA, Luzerne County" "The dwelling unit is in PA, Luzerne County" +in.county "PA, Lycoming County" "The dwelling unit is in PA, Lycoming County" +in.county "PA, McKean County" "The dwelling unit is in PA, McKean County" +in.county "PA, Mercer County" "The dwelling unit is in PA, Mercer County" +in.county "PA, Mifflin County" "The dwelling unit is in PA, Mifflin County" +in.county "PA, Monroe County" "The dwelling unit is in PA, Monroe County" +in.county "PA, Montgomery County" "The dwelling unit is in PA, Montgomery County" +in.county "PA, Montour County" "The dwelling unit is in PA, Montour County" +in.county "PA, Northampton County" "The dwelling unit is in PA, Northampton County" +in.county "PA, Northumberland County" "The dwelling unit is in PA, Northumberland County" +in.county "PA, Perry County" "The dwelling unit is in PA, Perry County" +in.county "PA, Philadelphia County" "The dwelling unit is in PA, Philadelphia County" +in.county "PA, Pike County" "The dwelling unit is in PA, Pike County" +in.county "PA, Potter County" "The dwelling unit is in PA, Potter County" +in.county "PA, Schuylkill County" "The dwelling unit is in PA, Schuylkill County" +in.county "PA, Snyder County" "The dwelling unit is in PA, Snyder County" +in.county "PA, Somerset County" "The dwelling unit is in PA, Somerset County" +in.county "PA, Sullivan County" "The dwelling unit is in PA, Sullivan County" +in.county "PA, Susquehanna County" "The dwelling unit is in PA, Susquehanna County" +in.county "PA, Tioga County" "The dwelling unit is in PA, Tioga County" +in.county "PA, Union County" "The dwelling unit is in PA, Union County" +in.county "PA, Venango County" "The dwelling unit is in PA, Venango County" +in.county "PA, Warren County" "The dwelling unit is in PA, Warren County" +in.county "PA, Washington County" "The dwelling unit is in PA, Washington County" +in.county "PA, Wayne County" "The dwelling unit is in PA, Wayne County" +in.county "PA, Westmoreland County" "The dwelling unit is in PA, Westmoreland County" +in.county "PA, Wyoming County" "The dwelling unit is in PA, Wyoming County" +in.county "PA, York County" "The dwelling unit is in PA, York County" +in.county "RI, Bristol County" "The dwelling unit is in RI, Bristol County" +in.county "RI, Kent County" "The dwelling unit is in RI, Kent County" +in.county "RI, Newport County" "The dwelling unit is in RI, Newport County" +in.county "RI, Providence County" "The dwelling unit is in RI, Providence County" +in.county "RI, Washington County" "The dwelling unit is in RI, Washington County" +in.county "SC, Abbeville County" "The dwelling unit is in SC, Abbeville County" +in.county "SC, Aiken County" "The dwelling unit is in SC, Aiken County" +in.county "SC, Allendale County" "The dwelling unit is in SC, Allendale County" +in.county "SC, Anderson County" "The dwelling unit is in SC, Anderson County" +in.county "SC, Bamberg County" "The dwelling unit is in SC, Bamberg County" +in.county "SC, Barnwell County" "The dwelling unit is in SC, Barnwell County" +in.county "SC, Beaufort County" "The dwelling unit is in SC, Beaufort County" +in.county "SC, Berkeley County" "The dwelling unit is in SC, Berkeley County" +in.county "SC, Calhoun County" "The dwelling unit is in SC, Calhoun County" +in.county "SC, Charleston County" "The dwelling unit is in SC, Charleston County" +in.county "SC, Cherokee County" "The dwelling unit is in SC, Cherokee County" +in.county "SC, Chester County" "The dwelling unit is in SC, Chester County" +in.county "SC, Chesterfield County" "The dwelling unit is in SC, Chesterfield County" +in.county "SC, Clarendon County" "The dwelling unit is in SC, Clarendon County" +in.county "SC, Colleton County" "The dwelling unit is in SC, Colleton County" +in.county "SC, Darlington County" "The dwelling unit is in SC, Darlington County" +in.county "SC, Dillon County" "The dwelling unit is in SC, Dillon County" +in.county "SC, Dorchester County" "The dwelling unit is in SC, Dorchester County" +in.county "SC, Edgefield County" "The dwelling unit is in SC, Edgefield County" +in.county "SC, Fairfield County" "The dwelling unit is in SC, Fairfield County" +in.county "SC, Florence County" "The dwelling unit is in SC, Florence County" +in.county "SC, Georgetown County" "The dwelling unit is in SC, Georgetown County" +in.county "SC, Greenville County" "The dwelling unit is in SC, Greenville County" +in.county "SC, Greenwood County" "The dwelling unit is in SC, Greenwood County" +in.county "SC, Hampton County" "The dwelling unit is in SC, Hampton County" +in.county "SC, Horry County" "The dwelling unit is in SC, Horry County" +in.county "SC, Jasper County" "The dwelling unit is in SC, Jasper County" +in.county "SC, Kershaw County" "The dwelling unit is in SC, Kershaw County" +in.county "SC, Lancaster County" "The dwelling unit is in SC, Lancaster County" +in.county "SC, Laurens County" "The dwelling unit is in SC, Laurens County" +in.county "SC, Lee County" "The dwelling unit is in SC, Lee County" +in.county "SC, Lexington County" "The dwelling unit is in SC, Lexington County" +in.county "SC, Marion County" "The dwelling unit is in SC, Marion County" +in.county "SC, Marlboro County" "The dwelling unit is in SC, Marlboro County" +in.county "SC, McCormick County" "The dwelling unit is in SC, McCormick County" +in.county "SC, Newberry County" "The dwelling unit is in SC, Newberry County" +in.county "SC, Oconee County" "The dwelling unit is in SC, Oconee County" +in.county "SC, Orangeburg County" "The dwelling unit is in SC, Orangeburg County" +in.county "SC, Pickens County" "The dwelling unit is in SC, Pickens County" +in.county "SC, Richland County" "The dwelling unit is in SC, Richland County" +in.county "SC, Saluda County" "The dwelling unit is in SC, Saluda County" +in.county "SC, Spartanburg County" "The dwelling unit is in SC, Spartanburg County" +in.county "SC, Sumter County" "The dwelling unit is in SC, Sumter County" +in.county "SC, Union County" "The dwelling unit is in SC, Union County" +in.county "SC, Williamsburg County" "The dwelling unit is in SC, Williamsburg County" +in.county "SC, York County" "The dwelling unit is in SC, York County" +in.county "SD, Aurora County" "The dwelling unit is in SD, Aurora County" +in.county "SD, Beadle County" "The dwelling unit is in SD, Beadle County" +in.county "SD, Bennett County" "The dwelling unit is in SD, Bennett County" +in.county "SD, Bon Homme County" "The dwelling unit is in SD, Bon Homme County" +in.county "SD, Brookings County" "The dwelling unit is in SD, Brookings County" +in.county "SD, Brown County" "The dwelling unit is in SD, Brown County" +in.county "SD, Brule County" "The dwelling unit is in SD, Brule County" +in.county "SD, Buffalo County" "The dwelling unit is in SD, Buffalo County" +in.county "SD, Butte County" "The dwelling unit is in SD, Butte County" +in.county "SD, Campbell County" "The dwelling unit is in SD, Campbell County" +in.county "SD, Charles Mix County" "The dwelling unit is in SD, Charles Mix County" +in.county "SD, Clark County" "The dwelling unit is in SD, Clark County" +in.county "SD, Clay County" "The dwelling unit is in SD, Clay County" +in.county "SD, Codington County" "The dwelling unit is in SD, Codington County" +in.county "SD, Corson County" "The dwelling unit is in SD, Corson County" +in.county "SD, Custer County" "The dwelling unit is in SD, Custer County" +in.county "SD, Davison County" "The dwelling unit is in SD, Davison County" +in.county "SD, Day County" "The dwelling unit is in SD, Day County" +in.county "SD, Deuel County" "The dwelling unit is in SD, Deuel County" +in.county "SD, Dewey County" "The dwelling unit is in SD, Dewey County" +in.county "SD, Douglas County" "The dwelling unit is in SD, Douglas County" +in.county "SD, Edmunds County" "The dwelling unit is in SD, Edmunds County" +in.county "SD, Fall River County" "The dwelling unit is in SD, Fall River County" +in.county "SD, Faulk County" "The dwelling unit is in SD, Faulk County" +in.county "SD, Grant County" "The dwelling unit is in SD, Grant County" +in.county "SD, Gregory County" "The dwelling unit is in SD, Gregory County" +in.county "SD, Haakon County" "The dwelling unit is in SD, Haakon County" +in.county "SD, Hamlin County" "The dwelling unit is in SD, Hamlin County" +in.county "SD, Hand County" "The dwelling unit is in SD, Hand County" +in.county "SD, Hanson County" "The dwelling unit is in SD, Hanson County" +in.county "SD, Harding County" "The dwelling unit is in SD, Harding County" +in.county "SD, Hughes County" "The dwelling unit is in SD, Hughes County" +in.county "SD, Hutchinson County" "The dwelling unit is in SD, Hutchinson County" +in.county "SD, Hyde County" "The dwelling unit is in SD, Hyde County" +in.county "SD, Jackson County" "The dwelling unit is in SD, Jackson County" +in.county "SD, Jerauld County" "The dwelling unit is in SD, Jerauld County" +in.county "SD, Jones County" "The dwelling unit is in SD, Jones County" +in.county "SD, Kingsbury County" "The dwelling unit is in SD, Kingsbury County" +in.county "SD, Lake County" "The dwelling unit is in SD, Lake County" +in.county "SD, Lawrence County" "The dwelling unit is in SD, Lawrence County" +in.county "SD, Lincoln County" "The dwelling unit is in SD, Lincoln County" +in.county "SD, Lyman County" "The dwelling unit is in SD, Lyman County" +in.county "SD, Marshall County" "The dwelling unit is in SD, Marshall County" +in.county "SD, McCook County" "The dwelling unit is in SD, McCook County" +in.county "SD, McPherson County" "The dwelling unit is in SD, McPherson County" +in.county "SD, Meade County" "The dwelling unit is in SD, Meade County" +in.county "SD, Mellette County" "The dwelling unit is in SD, Mellette County" +in.county "SD, Miner County" "The dwelling unit is in SD, Miner County" +in.county "SD, Minnehaha County" "The dwelling unit is in SD, Minnehaha County" +in.county "SD, Moody County" "The dwelling unit is in SD, Moody County" +in.county "SD, Oglala Lakota County" "The dwelling unit is in SD, Oglala Lakota County" +in.county "SD, Pennington County" "The dwelling unit is in SD, Pennington County" +in.county "SD, Perkins County" "The dwelling unit is in SD, Perkins County" +in.county "SD, Potter County" "The dwelling unit is in SD, Potter County" +in.county "SD, Roberts County" "The dwelling unit is in SD, Roberts County" +in.county "SD, Sanborn County" "The dwelling unit is in SD, Sanborn County" +in.county "SD, Spink County" "The dwelling unit is in SD, Spink County" +in.county "SD, Stanley County" "The dwelling unit is in SD, Stanley County" +in.county "SD, Sully County" "The dwelling unit is in SD, Sully County" +in.county "SD, Todd County" "The dwelling unit is in SD, Todd County" +in.county "SD, Tripp County" "The dwelling unit is in SD, Tripp County" +in.county "SD, Turner County" "The dwelling unit is in SD, Turner County" +in.county "SD, Union County" "The dwelling unit is in SD, Union County" +in.county "SD, Walworth County" "The dwelling unit is in SD, Walworth County" +in.county "SD, Yankton County" "The dwelling unit is in SD, Yankton County" +in.county "SD, Ziebach County" "The dwelling unit is in SD, Ziebach County" +in.county "TN, Anderson County" "The dwelling unit is in TN, Anderson County" +in.county "TN, Bedford County" "The dwelling unit is in TN, Bedford County" +in.county "TN, Benton County" "The dwelling unit is in TN, Benton County" +in.county "TN, Bledsoe County" "The dwelling unit is in TN, Bledsoe County" +in.county "TN, Blount County" "The dwelling unit is in TN, Blount County" +in.county "TN, Bradley County" "The dwelling unit is in TN, Bradley County" +in.county "TN, Campbell County" "The dwelling unit is in TN, Campbell County" +in.county "TN, Cannon County" "The dwelling unit is in TN, Cannon County" +in.county "TN, Carroll County" "The dwelling unit is in TN, Carroll County" +in.county "TN, Carter County" "The dwelling unit is in TN, Carter County" +in.county "TN, Cheatham County" "The dwelling unit is in TN, Cheatham County" +in.county "TN, Chester County" "The dwelling unit is in TN, Chester County" +in.county "TN, Claiborne County" "The dwelling unit is in TN, Claiborne County" +in.county "TN, Clay County" "The dwelling unit is in TN, Clay County" +in.county "TN, Cocke County" "The dwelling unit is in TN, Cocke County" +in.county "TN, Coffee County" "The dwelling unit is in TN, Coffee County" +in.county "TN, Crockett County" "The dwelling unit is in TN, Crockett County" +in.county "TN, Cumberland County" "The dwelling unit is in TN, Cumberland County" +in.county "TN, Davidson County" "The dwelling unit is in TN, Davidson County" +in.county "TN, DeKalb County" "The dwelling unit is in TN, DeKalb County" +in.county "TN, Decatur County" "The dwelling unit is in TN, Decatur County" +in.county "TN, Dickson County" "The dwelling unit is in TN, Dickson County" +in.county "TN, Dyer County" "The dwelling unit is in TN, Dyer County" +in.county "TN, Fayette County" "The dwelling unit is in TN, Fayette County" +in.county "TN, Fentress County" "The dwelling unit is in TN, Fentress County" +in.county "TN, Franklin County" "The dwelling unit is in TN, Franklin County" +in.county "TN, Gibson County" "The dwelling unit is in TN, Gibson County" +in.county "TN, Giles County" "The dwelling unit is in TN, Giles County" +in.county "TN, Grainger County" "The dwelling unit is in TN, Grainger County" +in.county "TN, Greene County" "The dwelling unit is in TN, Greene County" +in.county "TN, Grundy County" "The dwelling unit is in TN, Grundy County" +in.county "TN, Hamblen County" "The dwelling unit is in TN, Hamblen County" +in.county "TN, Hamilton County" "The dwelling unit is in TN, Hamilton County" +in.county "TN, Hancock County" "The dwelling unit is in TN, Hancock County" +in.county "TN, Hardeman County" "The dwelling unit is in TN, Hardeman County" +in.county "TN, Hardin County" "The dwelling unit is in TN, Hardin County" +in.county "TN, Hawkins County" "The dwelling unit is in TN, Hawkins County" +in.county "TN, Haywood County" "The dwelling unit is in TN, Haywood County" +in.county "TN, Henderson County" "The dwelling unit is in TN, Henderson County" +in.county "TN, Henry County" "The dwelling unit is in TN, Henry County" +in.county "TN, Hickman County" "The dwelling unit is in TN, Hickman County" +in.county "TN, Houston County" "The dwelling unit is in TN, Houston County" +in.county "TN, Humphreys County" "The dwelling unit is in TN, Humphreys County" +in.county "TN, Jackson County" "The dwelling unit is in TN, Jackson County" +in.county "TN, Jefferson County" "The dwelling unit is in TN, Jefferson County" +in.county "TN, Johnson County" "The dwelling unit is in TN, Johnson County" +in.county "TN, Knox County" "The dwelling unit is in TN, Knox County" +in.county "TN, Lake County" "The dwelling unit is in TN, Lake County" +in.county "TN, Lauderdale County" "The dwelling unit is in TN, Lauderdale County" +in.county "TN, Lawrence County" "The dwelling unit is in TN, Lawrence County" +in.county "TN, Lewis County" "The dwelling unit is in TN, Lewis County" +in.county "TN, Lincoln County" "The dwelling unit is in TN, Lincoln County" +in.county "TN, Loudon County" "The dwelling unit is in TN, Loudon County" +in.county "TN, Macon County" "The dwelling unit is in TN, Macon County" +in.county "TN, Madison County" "The dwelling unit is in TN, Madison County" +in.county "TN, Marion County" "The dwelling unit is in TN, Marion County" +in.county "TN, Marshall County" "The dwelling unit is in TN, Marshall County" +in.county "TN, Maury County" "The dwelling unit is in TN, Maury County" +in.county "TN, McMinn County" "The dwelling unit is in TN, McMinn County" +in.county "TN, McNairy County" "The dwelling unit is in TN, McNairy County" +in.county "TN, Meigs County" "The dwelling unit is in TN, Meigs County" +in.county "TN, Monroe County" "The dwelling unit is in TN, Monroe County" +in.county "TN, Montgomery County" "The dwelling unit is in TN, Montgomery County" +in.county "TN, Moore County" "The dwelling unit is in TN, Moore County" +in.county "TN, Morgan County" "The dwelling unit is in TN, Morgan County" +in.county "TN, Obion County" "The dwelling unit is in TN, Obion County" +in.county "TN, Overton County" "The dwelling unit is in TN, Overton County" +in.county "TN, Perry County" "The dwelling unit is in TN, Perry County" +in.county "TN, Pickett County" "The dwelling unit is in TN, Pickett County" +in.county "TN, Polk County" "The dwelling unit is in TN, Polk County" +in.county "TN, Putnam County" "The dwelling unit is in TN, Putnam County" +in.county "TN, Rhea County" "The dwelling unit is in TN, Rhea County" +in.county "TN, Roane County" "The dwelling unit is in TN, Roane County" +in.county "TN, Robertson County" "The dwelling unit is in TN, Robertson County" +in.county "TN, Rutherford County" "The dwelling unit is in TN, Rutherford County" +in.county "TN, Scott County" "The dwelling unit is in TN, Scott County" +in.county "TN, Sequatchie County" "The dwelling unit is in TN, Sequatchie County" +in.county "TN, Sevier County" "The dwelling unit is in TN, Sevier County" +in.county "TN, Shelby County" "The dwelling unit is in TN, Shelby County" +in.county "TN, Smith County" "The dwelling unit is in TN, Smith County" +in.county "TN, Stewart County" "The dwelling unit is in TN, Stewart County" +in.county "TN, Sullivan County" "The dwelling unit is in TN, Sullivan County" +in.county "TN, Sumner County" "The dwelling unit is in TN, Sumner County" +in.county "TN, Tipton County" "The dwelling unit is in TN, Tipton County" +in.county "TN, Trousdale County" "The dwelling unit is in TN, Trousdale County" +in.county "TN, Unicoi County" "The dwelling unit is in TN, Unicoi County" +in.county "TN, Union County" "The dwelling unit is in TN, Union County" +in.county "TN, Van Buren County" "The dwelling unit is in TN, Van Buren County" +in.county "TN, Warren County" "The dwelling unit is in TN, Warren County" +in.county "TN, Washington County" "The dwelling unit is in TN, Washington County" +in.county "TN, Wayne County" "The dwelling unit is in TN, Wayne County" +in.county "TN, Weakley County" "The dwelling unit is in TN, Weakley County" +in.county "TN, White County" "The dwelling unit is in TN, White County" +in.county "TN, Williamson County" "The dwelling unit is in TN, Williamson County" +in.county "TN, Wilson County" "The dwelling unit is in TN, Wilson County" +in.county "TX, Anderson County" "The dwelling unit is in TX, Anderson County" +in.county "TX, Andrews County" "The dwelling unit is in TX, Andrews County" +in.county "TX, Angelina County" "The dwelling unit is in TX, Angelina County" +in.county "TX, Aransas County" "The dwelling unit is in TX, Aransas County" +in.county "TX, Archer County" "The dwelling unit is in TX, Archer County" +in.county "TX, Armstrong County" "The dwelling unit is in TX, Armstrong County" +in.county "TX, Atascosa County" "The dwelling unit is in TX, Atascosa County" +in.county "TX, Austin County" "The dwelling unit is in TX, Austin County" +in.county "TX, Bailey County" "The dwelling unit is in TX, Bailey County" +in.county "TX, Bandera County" "The dwelling unit is in TX, Bandera County" +in.county "TX, Bastrop County" "The dwelling unit is in TX, Bastrop County" +in.county "TX, Baylor County" "The dwelling unit is in TX, Baylor County" +in.county "TX, Bee County" "The dwelling unit is in TX, Bee County" +in.county "TX, Bell County" "The dwelling unit is in TX, Bell County" +in.county "TX, Bexar County" "The dwelling unit is in TX, Bexar County" +in.county "TX, Blanco County" "The dwelling unit is in TX, Blanco County" +in.county "TX, Borden County" "The dwelling unit is in TX, Borden County" +in.county "TX, Bosque County" "The dwelling unit is in TX, Bosque County" +in.county "TX, Bowie County" "The dwelling unit is in TX, Bowie County" +in.county "TX, Brazoria County" "The dwelling unit is in TX, Brazoria County" +in.county "TX, Brazos County" "The dwelling unit is in TX, Brazos County" +in.county "TX, Brewster County" "The dwelling unit is in TX, Brewster County" +in.county "TX, Briscoe County" "The dwelling unit is in TX, Briscoe County" +in.county "TX, Brooks County" "The dwelling unit is in TX, Brooks County" +in.county "TX, Brown County" "The dwelling unit is in TX, Brown County" +in.county "TX, Burleson County" "The dwelling unit is in TX, Burleson County" +in.county "TX, Burnet County" "The dwelling unit is in TX, Burnet County" +in.county "TX, Caldwell County" "The dwelling unit is in TX, Caldwell County" +in.county "TX, Calhoun County" "The dwelling unit is in TX, Calhoun County" +in.county "TX, Callahan County" "The dwelling unit is in TX, Callahan County" +in.county "TX, Cameron County" "The dwelling unit is in TX, Cameron County" +in.county "TX, Camp County" "The dwelling unit is in TX, Camp County" +in.county "TX, Carson County" "The dwelling unit is in TX, Carson County" +in.county "TX, Cass County" "The dwelling unit is in TX, Cass County" +in.county "TX, Castro County" "The dwelling unit is in TX, Castro County" +in.county "TX, Chambers County" "The dwelling unit is in TX, Chambers County" +in.county "TX, Cherokee County" "The dwelling unit is in TX, Cherokee County" +in.county "TX, Childress County" "The dwelling unit is in TX, Childress County" +in.county "TX, Clay County" "The dwelling unit is in TX, Clay County" +in.county "TX, Cochran County" "The dwelling unit is in TX, Cochran County" +in.county "TX, Coke County" "The dwelling unit is in TX, Coke County" +in.county "TX, Coleman County" "The dwelling unit is in TX, Coleman County" +in.county "TX, Collin County" "The dwelling unit is in TX, Collin County" +in.county "TX, Collingsworth County" "The dwelling unit is in TX, Collingsworth County" +in.county "TX, Colorado County" "The dwelling unit is in TX, Colorado County" +in.county "TX, Comal County" "The dwelling unit is in TX, Comal County" +in.county "TX, Comanche County" "The dwelling unit is in TX, Comanche County" +in.county "TX, Concho County" "The dwelling unit is in TX, Concho County" +in.county "TX, Cooke County" "The dwelling unit is in TX, Cooke County" +in.county "TX, Coryell County" "The dwelling unit is in TX, Coryell County" +in.county "TX, Cottle County" "The dwelling unit is in TX, Cottle County" +in.county "TX, Crane County" "The dwelling unit is in TX, Crane County" +in.county "TX, Crockett County" "The dwelling unit is in TX, Crockett County" +in.county "TX, Crosby County" "The dwelling unit is in TX, Crosby County" +in.county "TX, Culberson County" "The dwelling unit is in TX, Culberson County" +in.county "TX, Dallam County" "The dwelling unit is in TX, Dallam County" +in.county "TX, Dallas County" "The dwelling unit is in TX, Dallas County" +in.county "TX, Dawson County" "The dwelling unit is in TX, Dawson County" +in.county "TX, DeWitt County" "The dwelling unit is in TX, DeWitt County" +in.county "TX, Deaf Smith County" "The dwelling unit is in TX, Deaf Smith County" +in.county "TX, Delta County" "The dwelling unit is in TX, Delta County" +in.county "TX, Denton County" "The dwelling unit is in TX, Denton County" +in.county "TX, Dickens County" "The dwelling unit is in TX, Dickens County" +in.county "TX, Dimmit County" "The dwelling unit is in TX, Dimmit County" +in.county "TX, Donley County" "The dwelling unit is in TX, Donley County" +in.county "TX, Duval County" "The dwelling unit is in TX, Duval County" +in.county "TX, Eastland County" "The dwelling unit is in TX, Eastland County" +in.county "TX, Ector County" "The dwelling unit is in TX, Ector County" +in.county "TX, Edwards County" "The dwelling unit is in TX, Edwards County" +in.county "TX, El Paso County" "The dwelling unit is in TX, El Paso County" +in.county "TX, Ellis County" "The dwelling unit is in TX, Ellis County" +in.county "TX, Erath County" "The dwelling unit is in TX, Erath County" +in.county "TX, Falls County" "The dwelling unit is in TX, Falls County" +in.county "TX, Fannin County" "The dwelling unit is in TX, Fannin County" +in.county "TX, Fayette County" "The dwelling unit is in TX, Fayette County" +in.county "TX, Fisher County" "The dwelling unit is in TX, Fisher County" +in.county "TX, Floyd County" "The dwelling unit is in TX, Floyd County" +in.county "TX, Foard County" "The dwelling unit is in TX, Foard County" +in.county "TX, Fort Bend County" "The dwelling unit is in TX, Fort Bend County" +in.county "TX, Franklin County" "The dwelling unit is in TX, Franklin County" +in.county "TX, Freestone County" "The dwelling unit is in TX, Freestone County" +in.county "TX, Frio County" "The dwelling unit is in TX, Frio County" +in.county "TX, Gaines County" "The dwelling unit is in TX, Gaines County" +in.county "TX, Galveston County" "The dwelling unit is in TX, Galveston County" +in.county "TX, Garza County" "The dwelling unit is in TX, Garza County" +in.county "TX, Gillespie County" "The dwelling unit is in TX, Gillespie County" +in.county "TX, Glasscock County" "The dwelling unit is in TX, Glasscock County" +in.county "TX, Goliad County" "The dwelling unit is in TX, Goliad County" +in.county "TX, Gonzales County" "The dwelling unit is in TX, Gonzales County" +in.county "TX, Gray County" "The dwelling unit is in TX, Gray County" +in.county "TX, Grayson County" "The dwelling unit is in TX, Grayson County" +in.county "TX, Gregg County" "The dwelling unit is in TX, Gregg County" +in.county "TX, Grimes County" "The dwelling unit is in TX, Grimes County" +in.county "TX, Guadalupe County" "The dwelling unit is in TX, Guadalupe County" +in.county "TX, Hale County" "The dwelling unit is in TX, Hale County" +in.county "TX, Hall County" "The dwelling unit is in TX, Hall County" +in.county "TX, Hamilton County" "The dwelling unit is in TX, Hamilton County" +in.county "TX, Hansford County" "The dwelling unit is in TX, Hansford County" +in.county "TX, Hardeman County" "The dwelling unit is in TX, Hardeman County" +in.county "TX, Hardin County" "The dwelling unit is in TX, Hardin County" +in.county "TX, Harris County" "The dwelling unit is in TX, Harris County" +in.county "TX, Harrison County" "The dwelling unit is in TX, Harrison County" +in.county "TX, Hartley County" "The dwelling unit is in TX, Hartley County" +in.county "TX, Haskell County" "The dwelling unit is in TX, Haskell County" +in.county "TX, Hays County" "The dwelling unit is in TX, Hays County" +in.county "TX, Hemphill County" "The dwelling unit is in TX, Hemphill County" +in.county "TX, Henderson County" "The dwelling unit is in TX, Henderson County" +in.county "TX, Hidalgo County" "The dwelling unit is in TX, Hidalgo County" +in.county "TX, Hill County" "The dwelling unit is in TX, Hill County" +in.county "TX, Hockley County" "The dwelling unit is in TX, Hockley County" +in.county "TX, Hood County" "The dwelling unit is in TX, Hood County" +in.county "TX, Hopkins County" "The dwelling unit is in TX, Hopkins County" +in.county "TX, Houston County" "The dwelling unit is in TX, Houston County" +in.county "TX, Howard County" "The dwelling unit is in TX, Howard County" +in.county "TX, Hudspeth County" "The dwelling unit is in TX, Hudspeth County" +in.county "TX, Hunt County" "The dwelling unit is in TX, Hunt County" +in.county "TX, Hutchinson County" "The dwelling unit is in TX, Hutchinson County" +in.county "TX, Irion County" "The dwelling unit is in TX, Irion County" +in.county "TX, Jack County" "The dwelling unit is in TX, Jack County" +in.county "TX, Jackson County" "The dwelling unit is in TX, Jackson County" +in.county "TX, Jasper County" "The dwelling unit is in TX, Jasper County" +in.county "TX, Jeff Davis County" "The dwelling unit is in TX, Jeff Davis County" +in.county "TX, Jefferson County" "The dwelling unit is in TX, Jefferson County" +in.county "TX, Jim Hogg County" "The dwelling unit is in TX, Jim Hogg County" +in.county "TX, Jim Wells County" "The dwelling unit is in TX, Jim Wells County" +in.county "TX, Johnson County" "The dwelling unit is in TX, Johnson County" +in.county "TX, Jones County" "The dwelling unit is in TX, Jones County" +in.county "TX, Karnes County" "The dwelling unit is in TX, Karnes County" +in.county "TX, Kaufman County" "The dwelling unit is in TX, Kaufman County" +in.county "TX, Kendall County" "The dwelling unit is in TX, Kendall County" +in.county "TX, Kenedy County" "The dwelling unit is in TX, Kenedy County" +in.county "TX, Kent County" "The dwelling unit is in TX, Kent County" +in.county "TX, Kerr County" "The dwelling unit is in TX, Kerr County" +in.county "TX, Kimble County" "The dwelling unit is in TX, Kimble County" +in.county "TX, King County" "The dwelling unit is in TX, King County" +in.county "TX, Kinney County" "The dwelling unit is in TX, Kinney County" +in.county "TX, Kleberg County" "The dwelling unit is in TX, Kleberg County" +in.county "TX, Knox County" "The dwelling unit is in TX, Knox County" +in.county "TX, La Salle County" "The dwelling unit is in TX, La Salle County" +in.county "TX, Lamar County" "The dwelling unit is in TX, Lamar County" +in.county "TX, Lamb County" "The dwelling unit is in TX, Lamb County" +in.county "TX, Lampasas County" "The dwelling unit is in TX, Lampasas County" +in.county "TX, Lavaca County" "The dwelling unit is in TX, Lavaca County" +in.county "TX, Lee County" "The dwelling unit is in TX, Lee County" +in.county "TX, Leon County" "The dwelling unit is in TX, Leon County" +in.county "TX, Liberty County" "The dwelling unit is in TX, Liberty County" +in.county "TX, Limestone County" "The dwelling unit is in TX, Limestone County" +in.county "TX, Lipscomb County" "The dwelling unit is in TX, Lipscomb County" +in.county "TX, Live Oak County" "The dwelling unit is in TX, Live Oak County" +in.county "TX, Llano County" "The dwelling unit is in TX, Llano County" +in.county "TX, Lubbock County" "The dwelling unit is in TX, Lubbock County" +in.county "TX, Lynn County" "The dwelling unit is in TX, Lynn County" +in.county "TX, Madison County" "The dwelling unit is in TX, Madison County" +in.county "TX, Marion County" "The dwelling unit is in TX, Marion County" +in.county "TX, Martin County" "The dwelling unit is in TX, Martin County" +in.county "TX, Mason County" "The dwelling unit is in TX, Mason County" +in.county "TX, Matagorda County" "The dwelling unit is in TX, Matagorda County" +in.county "TX, Maverick County" "The dwelling unit is in TX, Maverick County" +in.county "TX, McCulloch County" "The dwelling unit is in TX, McCulloch County" +in.county "TX, McLennan County" "The dwelling unit is in TX, McLennan County" +in.county "TX, McMullen County" "The dwelling unit is in TX, McMullen County" +in.county "TX, Medina County" "The dwelling unit is in TX, Medina County" +in.county "TX, Menard County" "The dwelling unit is in TX, Menard County" +in.county "TX, Midland County" "The dwelling unit is in TX, Midland County" +in.county "TX, Milam County" "The dwelling unit is in TX, Milam County" +in.county "TX, Mills County" "The dwelling unit is in TX, Mills County" +in.county "TX, Mitchell County" "The dwelling unit is in TX, Mitchell County" +in.county "TX, Montague County" "The dwelling unit is in TX, Montague County" +in.county "TX, Montgomery County" "The dwelling unit is in TX, Montgomery County" +in.county "TX, Moore County" "The dwelling unit is in TX, Moore County" +in.county "TX, Morris County" "The dwelling unit is in TX, Morris County" +in.county "TX, Motley County" "The dwelling unit is in TX, Motley County" +in.county "TX, Nacogdoches County" "The dwelling unit is in TX, Nacogdoches County" +in.county "TX, Navarro County" "The dwelling unit is in TX, Navarro County" +in.county "TX, Newton County" "The dwelling unit is in TX, Newton County" +in.county "TX, Nolan County" "The dwelling unit is in TX, Nolan County" +in.county "TX, Nueces County" "The dwelling unit is in TX, Nueces County" +in.county "TX, Ochiltree County" "The dwelling unit is in TX, Ochiltree County" +in.county "TX, Oldham County" "The dwelling unit is in TX, Oldham County" +in.county "TX, Orange County" "The dwelling unit is in TX, Orange County" +in.county "TX, Palo Pinto County" "The dwelling unit is in TX, Palo Pinto County" +in.county "TX, Panola County" "The dwelling unit is in TX, Panola County" +in.county "TX, Parker County" "The dwelling unit is in TX, Parker County" +in.county "TX, Parmer County" "The dwelling unit is in TX, Parmer County" +in.county "TX, Pecos County" "The dwelling unit is in TX, Pecos County" +in.county "TX, Polk County" "The dwelling unit is in TX, Polk County" +in.county "TX, Potter County" "The dwelling unit is in TX, Potter County" +in.county "TX, Presidio County" "The dwelling unit is in TX, Presidio County" +in.county "TX, Rains County" "The dwelling unit is in TX, Rains County" +in.county "TX, Randall County" "The dwelling unit is in TX, Randall County" +in.county "TX, Reagan County" "The dwelling unit is in TX, Reagan County" +in.county "TX, Real County" "The dwelling unit is in TX, Real County" +in.county "TX, Red River County" "The dwelling unit is in TX, Red River County" +in.county "TX, Reeves County" "The dwelling unit is in TX, Reeves County" +in.county "TX, Refugio County" "The dwelling unit is in TX, Refugio County" +in.county "TX, Roberts County" "The dwelling unit is in TX, Roberts County" +in.county "TX, Robertson County" "The dwelling unit is in TX, Robertson County" +in.county "TX, Rockwall County" "The dwelling unit is in TX, Rockwall County" +in.county "TX, Runnels County" "The dwelling unit is in TX, Runnels County" +in.county "TX, Rusk County" "The dwelling unit is in TX, Rusk County" +in.county "TX, Sabine County" "The dwelling unit is in TX, Sabine County" +in.county "TX, San Augustine County" "The dwelling unit is in TX, San Augustine County" +in.county "TX, San Jacinto County" "The dwelling unit is in TX, San Jacinto County" +in.county "TX, San Patricio County" "The dwelling unit is in TX, San Patricio County" +in.county "TX, San Saba County" "The dwelling unit is in TX, San Saba County" +in.county "TX, Schleicher County" "The dwelling unit is in TX, Schleicher County" +in.county "TX, Scurry County" "The dwelling unit is in TX, Scurry County" +in.county "TX, Shackelford County" "The dwelling unit is in TX, Shackelford County" +in.county "TX, Shelby County" "The dwelling unit is in TX, Shelby County" +in.county "TX, Sherman County" "The dwelling unit is in TX, Sherman County" +in.county "TX, Smith County" "The dwelling unit is in TX, Smith County" +in.county "TX, Somervell County" "The dwelling unit is in TX, Somervell County" +in.county "TX, Starr County" "The dwelling unit is in TX, Starr County" +in.county "TX, Stephens County" "The dwelling unit is in TX, Stephens County" +in.county "TX, Sterling County" "The dwelling unit is in TX, Sterling County" +in.county "TX, Stonewall County" "The dwelling unit is in TX, Stonewall County" +in.county "TX, Sutton County" "The dwelling unit is in TX, Sutton County" +in.county "TX, Swisher County" "The dwelling unit is in TX, Swisher County" +in.county "TX, Tarrant County" "The dwelling unit is in TX, Tarrant County" +in.county "TX, Taylor County" "The dwelling unit is in TX, Taylor County" +in.county "TX, Terrell County" "The dwelling unit is in TX, Terrell County" +in.county "TX, Terry County" "The dwelling unit is in TX, Terry County" +in.county "TX, Throckmorton County" "The dwelling unit is in TX, Throckmorton County" +in.county "TX, Titus County" "The dwelling unit is in TX, Titus County" +in.county "TX, Tom Green County" "The dwelling unit is in TX, Tom Green County" +in.county "TX, Travis County" "The dwelling unit is in TX, Travis County" +in.county "TX, Trinity County" "The dwelling unit is in TX, Trinity County" +in.county "TX, Tyler County" "The dwelling unit is in TX, Tyler County" +in.county "TX, Upshur County" "The dwelling unit is in TX, Upshur County" +in.county "TX, Upton County" "The dwelling unit is in TX, Upton County" +in.county "TX, Uvalde County" "The dwelling unit is in TX, Uvalde County" +in.county "TX, Val Verde County" "The dwelling unit is in TX, Val Verde County" +in.county "TX, Van Zandt County" "The dwelling unit is in TX, Van Zandt County" +in.county "TX, Victoria County" "The dwelling unit is in TX, Victoria County" +in.county "TX, Walker County" "The dwelling unit is in TX, Walker County" +in.county "TX, Waller County" "The dwelling unit is in TX, Waller County" +in.county "TX, Ward County" "The dwelling unit is in TX, Ward County" +in.county "TX, Washington County" "The dwelling unit is in TX, Washington County" +in.county "TX, Webb County" "The dwelling unit is in TX, Webb County" +in.county "TX, Wharton County" "The dwelling unit is in TX, Wharton County" +in.county "TX, Wheeler County" "The dwelling unit is in TX, Wheeler County" +in.county "TX, Wichita County" "The dwelling unit is in TX, Wichita County" +in.county "TX, Wilbarger County" "The dwelling unit is in TX, Wilbarger County" +in.county "TX, Willacy County" "The dwelling unit is in TX, Willacy County" +in.county "TX, Williamson County" "The dwelling unit is in TX, Williamson County" +in.county "TX, Wilson County" "The dwelling unit is in TX, Wilson County" +in.county "TX, Winkler County" "The dwelling unit is in TX, Winkler County" +in.county "TX, Wise County" "The dwelling unit is in TX, Wise County" +in.county "TX, Wood County" "The dwelling unit is in TX, Wood County" +in.county "TX, Yoakum County" "The dwelling unit is in TX, Yoakum County" +in.county "TX, Young County" "The dwelling unit is in TX, Young County" +in.county "TX, Zapata County" "The dwelling unit is in TX, Zapata County" +in.county "TX, Zavala County" "The dwelling unit is in TX, Zavala County" +in.county "UT, Beaver County" "The dwelling unit is in UT, Beaver County" +in.county "UT, Box Elder County" "The dwelling unit is in UT, Box Elder County" +in.county "UT, Cache County" "The dwelling unit is in UT, Cache County" +in.county "UT, Carbon County" "The dwelling unit is in UT, Carbon County" +in.county "UT, Daggett County" "The dwelling unit is in UT, Daggett County" +in.county "UT, Davis County" "The dwelling unit is in UT, Davis County" +in.county "UT, Duchesne County" "The dwelling unit is in UT, Duchesne County" +in.county "UT, Emery County" "The dwelling unit is in UT, Emery County" +in.county "UT, Garfield County" "The dwelling unit is in UT, Garfield County" +in.county "UT, Grand County" "The dwelling unit is in UT, Grand County" +in.county "UT, Iron County" "The dwelling unit is in UT, Iron County" +in.county "UT, Juab County" "The dwelling unit is in UT, Juab County" +in.county "UT, Kane County" "The dwelling unit is in UT, Kane County" +in.county "UT, Millard County" "The dwelling unit is in UT, Millard County" +in.county "UT, Morgan County" "The dwelling unit is in UT, Morgan County" +in.county "UT, Piute County" "The dwelling unit is in UT, Piute County" +in.county "UT, Rich County" "The dwelling unit is in UT, Rich County" +in.county "UT, Salt Lake County" "The dwelling unit is in UT, Salt Lake County" +in.county "UT, San Juan County" "The dwelling unit is in UT, San Juan County" +in.county "UT, Sanpete County" "The dwelling unit is in UT, Sanpete County" +in.county "UT, Sevier County" "The dwelling unit is in UT, Sevier County" +in.county "UT, Summit County" "The dwelling unit is in UT, Summit County" +in.county "UT, Tooele County" "The dwelling unit is in UT, Tooele County" +in.county "UT, Uintah County" "The dwelling unit is in UT, Uintah County" +in.county "UT, Utah County" "The dwelling unit is in UT, Utah County" +in.county "UT, Wasatch County" "The dwelling unit is in UT, Wasatch County" +in.county "UT, Washington County" "The dwelling unit is in UT, Washington County" +in.county "UT, Wayne County" "The dwelling unit is in UT, Wayne County" +in.county "UT, Weber County" "The dwelling unit is in UT, Weber County" +in.county "VA, Accomack County" "The dwelling unit is in VA, Accomack County" +in.county "VA, Albemarle County" "The dwelling unit is in VA, Albemarle County" +in.county "VA, Alexandria city" "The dwelling unit is in VA, Alexandria city" +in.county "VA, Alleghany County" "The dwelling unit is in VA, Alleghany County" +in.county "VA, Amelia County" "The dwelling unit is in VA, Amelia County" +in.county "VA, Amherst County" "The dwelling unit is in VA, Amherst County" +in.county "VA, Appomattox County" "The dwelling unit is in VA, Appomattox County" +in.county "VA, Arlington County" "The dwelling unit is in VA, Arlington County" +in.county "VA, Augusta County" "The dwelling unit is in VA, Augusta County" +in.county "VA, Bath County" "The dwelling unit is in VA, Bath County" +in.county "VA, Bedford County" "The dwelling unit is in VA, Bedford County" +in.county "VA, Bland County" "The dwelling unit is in VA, Bland County" +in.county "VA, Botetourt County" "The dwelling unit is in VA, Botetourt County" +in.county "VA, Bristol city" "The dwelling unit is in VA, Bristol city" +in.county "VA, Brunswick County" "The dwelling unit is in VA, Brunswick County" +in.county "VA, Buchanan County" "The dwelling unit is in VA, Buchanan County" +in.county "VA, Buckingham County" "The dwelling unit is in VA, Buckingham County" +in.county "VA, Buena Vista city" "The dwelling unit is in VA, Buena Vista city" +in.county "VA, Campbell County" "The dwelling unit is in VA, Campbell County" +in.county "VA, Caroline County" "The dwelling unit is in VA, Caroline County" +in.county "VA, Carroll County" "The dwelling unit is in VA, Carroll County" +in.county "VA, Charles City County" "The dwelling unit is in VA, Charles City County" +in.county "VA, Charlotte County" "The dwelling unit is in VA, Charlotte County" +in.county "VA, Charlottesville city" "The dwelling unit is in VA, Charlottesville city" +in.county "VA, Chesapeake city" "The dwelling unit is in VA, Chesapeake city" +in.county "VA, Chesterfield County" "The dwelling unit is in VA, Chesterfield County" +in.county "VA, Clarke County" "The dwelling unit is in VA, Clarke County" +in.county "VA, Colonial Heights city" "The dwelling unit is in VA, Colonial Heights city" +in.county "VA, Covington city" "The dwelling unit is in VA, Covington city" +in.county "VA, Craig County" "The dwelling unit is in VA, Craig County" +in.county "VA, Culpeper County" "The dwelling unit is in VA, Culpeper County" +in.county "VA, Cumberland County" "The dwelling unit is in VA, Cumberland County" +in.county "VA, Danville city" "The dwelling unit is in VA, Danville city" +in.county "VA, Dickenson County" "The dwelling unit is in VA, Dickenson County" +in.county "VA, Dinwiddie County" "The dwelling unit is in VA, Dinwiddie County" +in.county "VA, Emporia city" "The dwelling unit is in VA, Emporia city" +in.county "VA, Essex County" "The dwelling unit is in VA, Essex County" +in.county "VA, Fairfax County" "The dwelling unit is in VA, Fairfax County" +in.county "VA, Fairfax city" "The dwelling unit is in VA, Fairfax city" +in.county "VA, Falls Church city" "The dwelling unit is in VA, Falls Church city" +in.county "VA, Fauquier County" "The dwelling unit is in VA, Fauquier County" +in.county "VA, Floyd County" "The dwelling unit is in VA, Floyd County" +in.county "VA, Fluvanna County" "The dwelling unit is in VA, Fluvanna County" +in.county "VA, Franklin County" "The dwelling unit is in VA, Franklin County" +in.county "VA, Franklin city" "The dwelling unit is in VA, Franklin city" +in.county "VA, Frederick County" "The dwelling unit is in VA, Frederick County" +in.county "VA, Fredericksburg city" "The dwelling unit is in VA, Fredericksburg city" +in.county "VA, Galax city" "The dwelling unit is in VA, Galax city" +in.county "VA, Giles County" "The dwelling unit is in VA, Giles County" +in.county "VA, Gloucester County" "The dwelling unit is in VA, Gloucester County" +in.county "VA, Goochland County" "The dwelling unit is in VA, Goochland County" +in.county "VA, Grayson County" "The dwelling unit is in VA, Grayson County" +in.county "VA, Greene County" "The dwelling unit is in VA, Greene County" +in.county "VA, Greensville County" "The dwelling unit is in VA, Greensville County" +in.county "VA, Halifax County" "The dwelling unit is in VA, Halifax County" +in.county "VA, Hampton city" "The dwelling unit is in VA, Hampton city" +in.county "VA, Hanover County" "The dwelling unit is in VA, Hanover County" +in.county "VA, Harrisonburg city" "The dwelling unit is in VA, Harrisonburg city" +in.county "VA, Henrico County" "The dwelling unit is in VA, Henrico County" +in.county "VA, Henry County" "The dwelling unit is in VA, Henry County" +in.county "VA, Highland County" "The dwelling unit is in VA, Highland County" +in.county "VA, Hopewell city" "The dwelling unit is in VA, Hopewell city" +in.county "VA, Isle of Wight County" "The dwelling unit is in VA, Isle of Wight County" +in.county "VA, James City County" "The dwelling unit is in VA, James City County" +in.county "VA, King George County" "The dwelling unit is in VA, King George County" +in.county "VA, King William County" "The dwelling unit is in VA, King William County" +in.county "VA, King and Queen County" "The dwelling unit is in VA, King and Queen County" +in.county "VA, Lancaster County" "The dwelling unit is in VA, Lancaster County" +in.county "VA, Lee County" "The dwelling unit is in VA, Lee County" +in.county "VA, Lexington city" "The dwelling unit is in VA, Lexington city" +in.county "VA, Loudoun County" "The dwelling unit is in VA, Loudoun County" +in.county "VA, Louisa County" "The dwelling unit is in VA, Louisa County" +in.county "VA, Lunenburg County" "The dwelling unit is in VA, Lunenburg County" +in.county "VA, Lynchburg city" "The dwelling unit is in VA, Lynchburg city" +in.county "VA, Madison County" "The dwelling unit is in VA, Madison County" +in.county "VA, Manassas Park city" "The dwelling unit is in VA, Manassas Park city" +in.county "VA, Manassas city" "The dwelling unit is in VA, Manassas city" +in.county "VA, Martinsville city" "The dwelling unit is in VA, Martinsville city" +in.county "VA, Mathews County" "The dwelling unit is in VA, Mathews County" +in.county "VA, Mecklenburg County" "The dwelling unit is in VA, Mecklenburg County" +in.county "VA, Middlesex County" "The dwelling unit is in VA, Middlesex County" +in.county "VA, Montgomery County" "The dwelling unit is in VA, Montgomery County" +in.county "VA, Nelson County" "The dwelling unit is in VA, Nelson County" +in.county "VA, New Kent County" "The dwelling unit is in VA, New Kent County" +in.county "VA, Newport News city" "The dwelling unit is in VA, Newport News city" +in.county "VA, Norfolk city" "The dwelling unit is in VA, Norfolk city" +in.county "VA, Northampton County" "The dwelling unit is in VA, Northampton County" +in.county "VA, Northumberland County" "The dwelling unit is in VA, Northumberland County" +in.county "VA, Norton city" "The dwelling unit is in VA, Norton city" +in.county "VA, Nottoway County" "The dwelling unit is in VA, Nottoway County" +in.county "VA, Orange County" "The dwelling unit is in VA, Orange County" +in.county "VA, Page County" "The dwelling unit is in VA, Page County" +in.county "VA, Patrick County" "The dwelling unit is in VA, Patrick County" +in.county "VA, Petersburg city" "The dwelling unit is in VA, Petersburg city" +in.county "VA, Pittsylvania County" "The dwelling unit is in VA, Pittsylvania County" +in.county "VA, Poquoson city" "The dwelling unit is in VA, Poquoson city" +in.county "VA, Portsmouth city" "The dwelling unit is in VA, Portsmouth city" +in.county "VA, Powhatan County" "The dwelling unit is in VA, Powhatan County" +in.county "VA, Prince Edward County" "The dwelling unit is in VA, Prince Edward County" +in.county "VA, Prince George County" "The dwelling unit is in VA, Prince George County" +in.county "VA, Prince William County" "The dwelling unit is in VA, Prince William County" +in.county "VA, Pulaski County" "The dwelling unit is in VA, Pulaski County" +in.county "VA, Radford city" "The dwelling unit is in VA, Radford city" +in.county "VA, Rappahannock County" "The dwelling unit is in VA, Rappahannock County" +in.county "VA, Richmond County" "The dwelling unit is in VA, Richmond County" +in.county "VA, Richmond city" "The dwelling unit is in VA, Richmond city" +in.county "VA, Roanoke County" "The dwelling unit is in VA, Roanoke County" +in.county "VA, Roanoke city" "The dwelling unit is in VA, Roanoke city" +in.county "VA, Rockbridge County" "The dwelling unit is in VA, Rockbridge County" +in.county "VA, Rockingham County" "The dwelling unit is in VA, Rockingham County" +in.county "VA, Russell County" "The dwelling unit is in VA, Russell County" +in.county "VA, Salem city" "The dwelling unit is in VA, Salem city" +in.county "VA, Scott County" "The dwelling unit is in VA, Scott County" +in.county "VA, Shenandoah County" "The dwelling unit is in VA, Shenandoah County" +in.county "VA, Smyth County" "The dwelling unit is in VA, Smyth County" +in.county "VA, Southampton County" "The dwelling unit is in VA, Southampton County" +in.county "VA, Spotsylvania County" "The dwelling unit is in VA, Spotsylvania County" +in.county "VA, Stafford County" "The dwelling unit is in VA, Stafford County" +in.county "VA, Staunton city" "The dwelling unit is in VA, Staunton city" +in.county "VA, Suffolk city" "The dwelling unit is in VA, Suffolk city" +in.county "VA, Surry County" "The dwelling unit is in VA, Surry County" +in.county "VA, Sussex County" "The dwelling unit is in VA, Sussex County" +in.county "VA, Tazewell County" "The dwelling unit is in VA, Tazewell County" +in.county "VA, Virginia Beach city" "The dwelling unit is in VA, Virginia Beach city" +in.county "VA, Warren County" "The dwelling unit is in VA, Warren County" +in.county "VA, Washington County" "The dwelling unit is in VA, Washington County" +in.county "VA, Waynesboro city" "The dwelling unit is in VA, Waynesboro city" +in.county "VA, Westmoreland County" "The dwelling unit is in VA, Westmoreland County" +in.county "VA, Williamsburg city" "The dwelling unit is in VA, Williamsburg city" +in.county "VA, Winchester city" "The dwelling unit is in VA, Winchester city" +in.county "VA, Wise County" "The dwelling unit is in VA, Wise County" +in.county "VA, Wythe County" "The dwelling unit is in VA, Wythe County" +in.county "VA, York County" "The dwelling unit is in VA, York County" +in.county "VT, Addison County" "The dwelling unit is in VT, Addison County" +in.county "VT, Bennington County" "The dwelling unit is in VT, Bennington County" +in.county "VT, Caledonia County" "The dwelling unit is in VT, Caledonia County" +in.county "VT, Chittenden County" "The dwelling unit is in VT, Chittenden County" +in.county "VT, Essex County" "The dwelling unit is in VT, Essex County" +in.county "VT, Franklin County" "The dwelling unit is in VT, Franklin County" +in.county "VT, Grand Isle County" "The dwelling unit is in VT, Grand Isle County" +in.county "VT, Lamoille County" "The dwelling unit is in VT, Lamoille County" +in.county "VT, Orange County" "The dwelling unit is in VT, Orange County" +in.county "VT, Orleans County" "The dwelling unit is in VT, Orleans County" +in.county "VT, Rutland County" "The dwelling unit is in VT, Rutland County" +in.county "VT, Washington County" "The dwelling unit is in VT, Washington County" +in.county "VT, Windham County" "The dwelling unit is in VT, Windham County" +in.county "VT, Windsor County" "The dwelling unit is in VT, Windsor County" +in.county "WA, Adams County" "The dwelling unit is in WA, Adams County" +in.county "WA, Asotin County" "The dwelling unit is in WA, Asotin County" +in.county "WA, Benton County" "The dwelling unit is in WA, Benton County" +in.county "WA, Chelan County" "The dwelling unit is in WA, Chelan County" +in.county "WA, Clallam County" "The dwelling unit is in WA, Clallam County" +in.county "WA, Clark County" "The dwelling unit is in WA, Clark County" +in.county "WA, Columbia County" "The dwelling unit is in WA, Columbia County" +in.county "WA, Cowlitz County" "The dwelling unit is in WA, Cowlitz County" +in.county "WA, Douglas County" "The dwelling unit is in WA, Douglas County" +in.county "WA, Ferry County" "The dwelling unit is in WA, Ferry County" +in.county "WA, Franklin County" "The dwelling unit is in WA, Franklin County" +in.county "WA, Garfield County" "The dwelling unit is in WA, Garfield County" +in.county "WA, Grant County" "The dwelling unit is in WA, Grant County" +in.county "WA, Grays Harbor County" "The dwelling unit is in WA, Grays Harbor County" +in.county "WA, Island County" "The dwelling unit is in WA, Island County" +in.county "WA, Jefferson County" "The dwelling unit is in WA, Jefferson County" +in.county "WA, King County" "The dwelling unit is in WA, King County" +in.county "WA, Kitsap County" "The dwelling unit is in WA, Kitsap County" +in.county "WA, Kittitas County" "The dwelling unit is in WA, Kittitas County" +in.county "WA, Klickitat County" "The dwelling unit is in WA, Klickitat County" +in.county "WA, Lewis County" "The dwelling unit is in WA, Lewis County" +in.county "WA, Lincoln County" "The dwelling unit is in WA, Lincoln County" +in.county "WA, Mason County" "The dwelling unit is in WA, Mason County" +in.county "WA, Okanogan County" "The dwelling unit is in WA, Okanogan County" +in.county "WA, Pacific County" "The dwelling unit is in WA, Pacific County" +in.county "WA, Pend Oreille County" "The dwelling unit is in WA, Pend Oreille County" +in.county "WA, Pierce County" "The dwelling unit is in WA, Pierce County" +in.county "WA, San Juan County" "The dwelling unit is in WA, San Juan County" +in.county "WA, Skagit County" "The dwelling unit is in WA, Skagit County" +in.county "WA, Skamania County" "The dwelling unit is in WA, Skamania County" +in.county "WA, Snohomish County" "The dwelling unit is in WA, Snohomish County" +in.county "WA, Spokane County" "The dwelling unit is in WA, Spokane County" +in.county "WA, Stevens County" "The dwelling unit is in WA, Stevens County" +in.county "WA, Thurston County" "The dwelling unit is in WA, Thurston County" +in.county "WA, Wahkiakum County" "The dwelling unit is in WA, Wahkiakum County" +in.county "WA, Walla Walla County" "The dwelling unit is in WA, Walla Walla County" +in.county "WA, Whatcom County" "The dwelling unit is in WA, Whatcom County" +in.county "WA, Whitman County" "The dwelling unit is in WA, Whitman County" +in.county "WA, Yakima County" "The dwelling unit is in WA, Yakima County" +in.county "WI, Adams County" "The dwelling unit is in WI, Adams County" +in.county "WI, Ashland County" "The dwelling unit is in WI, Ashland County" +in.county "WI, Barron County" "The dwelling unit is in WI, Barron County" +in.county "WI, Bayfield County" "The dwelling unit is in WI, Bayfield County" +in.county "WI, Brown County" "The dwelling unit is in WI, Brown County" +in.county "WI, Buffalo County" "The dwelling unit is in WI, Buffalo County" +in.county "WI, Burnett County" "The dwelling unit is in WI, Burnett County" +in.county "WI, Calumet County" "The dwelling unit is in WI, Calumet County" +in.county "WI, Chippewa County" "The dwelling unit is in WI, Chippewa County" +in.county "WI, Clark County" "The dwelling unit is in WI, Clark County" +in.county "WI, Columbia County" "The dwelling unit is in WI, Columbia County" +in.county "WI, Crawford County" "The dwelling unit is in WI, Crawford County" +in.county "WI, Dane County" "The dwelling unit is in WI, Dane County" +in.county "WI, Dodge County" "The dwelling unit is in WI, Dodge County" +in.county "WI, Door County" "The dwelling unit is in WI, Door County" +in.county "WI, Douglas County" "The dwelling unit is in WI, Douglas County" +in.county "WI, Dunn County" "The dwelling unit is in WI, Dunn County" +in.county "WI, Eau Claire County" "The dwelling unit is in WI, Eau Claire County" +in.county "WI, Florence County" "The dwelling unit is in WI, Florence County" +in.county "WI, Fond du Lac County" "The dwelling unit is in WI, Fond du Lac County" +in.county "WI, Forest County" "The dwelling unit is in WI, Forest County" +in.county "WI, Grant County" "The dwelling unit is in WI, Grant County" +in.county "WI, Green County" "The dwelling unit is in WI, Green County" +in.county "WI, Green Lake County" "The dwelling unit is in WI, Green Lake County" +in.county "WI, Iowa County" "The dwelling unit is in WI, Iowa County" +in.county "WI, Iron County" "The dwelling unit is in WI, Iron County" +in.county "WI, Jackson County" "The dwelling unit is in WI, Jackson County" +in.county "WI, Jefferson County" "The dwelling unit is in WI, Jefferson County" +in.county "WI, Juneau County" "The dwelling unit is in WI, Juneau County" +in.county "WI, Kenosha County" "The dwelling unit is in WI, Kenosha County" +in.county "WI, Kewaunee County" "The dwelling unit is in WI, Kewaunee County" +in.county "WI, La Crosse County" "The dwelling unit is in WI, La Crosse County" +in.county "WI, Lafayette County" "The dwelling unit is in WI, Lafayette County" +in.county "WI, Langlade County" "The dwelling unit is in WI, Langlade County" +in.county "WI, Lincoln County" "The dwelling unit is in WI, Lincoln County" +in.county "WI, Manitowoc County" "The dwelling unit is in WI, Manitowoc County" +in.county "WI, Marathon County" "The dwelling unit is in WI, Marathon County" +in.county "WI, Marinette County" "The dwelling unit is in WI, Marinette County" +in.county "WI, Marquette County" "The dwelling unit is in WI, Marquette County" +in.county "WI, Menominee County" "The dwelling unit is in WI, Menominee County" +in.county "WI, Milwaukee County" "The dwelling unit is in WI, Milwaukee County" +in.county "WI, Monroe County" "The dwelling unit is in WI, Monroe County" +in.county "WI, Oconto County" "The dwelling unit is in WI, Oconto County" +in.county "WI, Oneida County" "The dwelling unit is in WI, Oneida County" +in.county "WI, Outagamie County" "The dwelling unit is in WI, Outagamie County" +in.county "WI, Ozaukee County" "The dwelling unit is in WI, Ozaukee County" +in.county "WI, Pepin County" "The dwelling unit is in WI, Pepin County" +in.county "WI, Pierce County" "The dwelling unit is in WI, Pierce County" +in.county "WI, Polk County" "The dwelling unit is in WI, Polk County" +in.county "WI, Portage County" "The dwelling unit is in WI, Portage County" +in.county "WI, Price County" "The dwelling unit is in WI, Price County" +in.county "WI, Racine County" "The dwelling unit is in WI, Racine County" +in.county "WI, Richland County" "The dwelling unit is in WI, Richland County" +in.county "WI, Rock County" "The dwelling unit is in WI, Rock County" +in.county "WI, Rusk County" "The dwelling unit is in WI, Rusk County" +in.county "WI, Sauk County" "The dwelling unit is in WI, Sauk County" +in.county "WI, Sawyer County" "The dwelling unit is in WI, Sawyer County" +in.county "WI, Shawano County" "The dwelling unit is in WI, Shawano County" +in.county "WI, Sheboygan County" "The dwelling unit is in WI, Sheboygan County" +in.county "WI, St. Croix County" "The dwelling unit is in WI, St. Croix County" +in.county "WI, Taylor County" "The dwelling unit is in WI, Taylor County" +in.county "WI, Trempealeau County" "The dwelling unit is in WI, Trempealeau County" +in.county "WI, Vernon County" "The dwelling unit is in WI, Vernon County" +in.county "WI, Vilas County" "The dwelling unit is in WI, Vilas County" +in.county "WI, Walworth County" "The dwelling unit is in WI, Walworth County" +in.county "WI, Washburn County" "The dwelling unit is in WI, Washburn County" +in.county "WI, Washington County" "The dwelling unit is in WI, Washington County" +in.county "WI, Waukesha County" "The dwelling unit is in WI, Waukesha County" +in.county "WI, Waupaca County" "The dwelling unit is in WI, Waupaca County" +in.county "WI, Waushara County" "The dwelling unit is in WI, Waushara County" +in.county "WI, Winnebago County" "The dwelling unit is in WI, Winnebago County" +in.county "WI, Wood County" "The dwelling unit is in WI, Wood County" +in.county "WV, Barbour County" "The dwelling unit is in WV, Barbour County" +in.county "WV, Berkeley County" "The dwelling unit is in WV, Berkeley County" +in.county "WV, Boone County" "The dwelling unit is in WV, Boone County" +in.county "WV, Braxton County" "The dwelling unit is in WV, Braxton County" +in.county "WV, Brooke County" "The dwelling unit is in WV, Brooke County" +in.county "WV, Cabell County" "The dwelling unit is in WV, Cabell County" +in.county "WV, Calhoun County" "The dwelling unit is in WV, Calhoun County" +in.county "WV, Clay County" "The dwelling unit is in WV, Clay County" +in.county "WV, Doddridge County" "The dwelling unit is in WV, Doddridge County" +in.county "WV, Fayette County" "The dwelling unit is in WV, Fayette County" +in.county "WV, Gilmer County" "The dwelling unit is in WV, Gilmer County" +in.county "WV, Grant County" "The dwelling unit is in WV, Grant County" +in.county "WV, Greenbrier County" "The dwelling unit is in WV, Greenbrier County" +in.county "WV, Hampshire County" "The dwelling unit is in WV, Hampshire County" +in.county "WV, Hancock County" "The dwelling unit is in WV, Hancock County" +in.county "WV, Hardy County" "The dwelling unit is in WV, Hardy County" +in.county "WV, Harrison County" "The dwelling unit is in WV, Harrison County" +in.county "WV, Jackson County" "The dwelling unit is in WV, Jackson County" +in.county "WV, Jefferson County" "The dwelling unit is in WV, Jefferson County" +in.county "WV, Kanawha County" "The dwelling unit is in WV, Kanawha County" +in.county "WV, Lewis County" "The dwelling unit is in WV, Lewis County" +in.county "WV, Lincoln County" "The dwelling unit is in WV, Lincoln County" +in.county "WV, Logan County" "The dwelling unit is in WV, Logan County" +in.county "WV, Marion County" "The dwelling unit is in WV, Marion County" +in.county "WV, Marshall County" "The dwelling unit is in WV, Marshall County" +in.county "WV, Mason County" "The dwelling unit is in WV, Mason County" +in.county "WV, McDowell County" "The dwelling unit is in WV, McDowell County" +in.county "WV, Mercer County" "The dwelling unit is in WV, Mercer County" +in.county "WV, Mineral County" "The dwelling unit is in WV, Mineral County" +in.county "WV, Mingo County" "The dwelling unit is in WV, Mingo County" +in.county "WV, Monongalia County" "The dwelling unit is in WV, Monongalia County" +in.county "WV, Monroe County" "The dwelling unit is in WV, Monroe County" +in.county "WV, Morgan County" "The dwelling unit is in WV, Morgan County" +in.county "WV, Nicholas County" "The dwelling unit is in WV, Nicholas County" +in.county "WV, Ohio County" "The dwelling unit is in WV, Ohio County" +in.county "WV, Pendleton County" "The dwelling unit is in WV, Pendleton County" +in.county "WV, Pleasants County" "The dwelling unit is in WV, Pleasants County" +in.county "WV, Pocahontas County" "The dwelling unit is in WV, Pocahontas County" +in.county "WV, Preston County" "The dwelling unit is in WV, Preston County" +in.county "WV, Putnam County" "The dwelling unit is in WV, Putnam County" +in.county "WV, Raleigh County" "The dwelling unit is in WV, Raleigh County" +in.county "WV, Randolph County" "The dwelling unit is in WV, Randolph County" +in.county "WV, Ritchie County" "The dwelling unit is in WV, Ritchie County" +in.county "WV, Roane County" "The dwelling unit is in WV, Roane County" +in.county "WV, Summers County" "The dwelling unit is in WV, Summers County" +in.county "WV, Taylor County" "The dwelling unit is in WV, Taylor County" +in.county "WV, Tucker County" "The dwelling unit is in WV, Tucker County" +in.county "WV, Tyler County" "The dwelling unit is in WV, Tyler County" +in.county "WV, Upshur County" "The dwelling unit is in WV, Upshur County" +in.county "WV, Wayne County" "The dwelling unit is in WV, Wayne County" +in.county "WV, Webster County" "The dwelling unit is in WV, Webster County" +in.county "WV, Wetzel County" "The dwelling unit is in WV, Wetzel County" +in.county "WV, Wirt County" "The dwelling unit is in WV, Wirt County" +in.county "WV, Wood County" "The dwelling unit is in WV, Wood County" +in.county "WV, Wyoming County" "The dwelling unit is in WV, Wyoming County" +in.county "WY, Albany County" "The dwelling unit is in WY, Albany County" +in.county "WY, Big Horn County" "The dwelling unit is in WY, Big Horn County" +in.county "WY, Campbell County" "The dwelling unit is in WY, Campbell County" +in.county "WY, Carbon County" "The dwelling unit is in WY, Carbon County" +in.county "WY, Converse County" "The dwelling unit is in WY, Converse County" +in.county "WY, Crook County" "The dwelling unit is in WY, Crook County" +in.county "WY, Fremont County" "The dwelling unit is in WY, Fremont County" +in.county "WY, Goshen County" "The dwelling unit is in WY, Goshen County" +in.county "WY, Hot Springs County" "The dwelling unit is in WY, Hot Springs County" +in.county "WY, Johnson County" "The dwelling unit is in WY, Johnson County" +in.county "WY, Laramie County" "The dwelling unit is in WY, Laramie County" +in.county "WY, Lincoln County" "The dwelling unit is in WY, Lincoln County" +in.county "WY, Natrona County" "The dwelling unit is in WY, Natrona County" +in.county "WY, Niobrara County" "The dwelling unit is in WY, Niobrara County" +in.county "WY, Park County" "The dwelling unit is in WY, Park County" +in.county "WY, Platte County" "The dwelling unit is in WY, Platte County" +in.county "WY, Sheridan County" "The dwelling unit is in WY, Sheridan County" +in.county "WY, Sublette County" "The dwelling unit is in WY, Sublette County" +in.county "WY, Sweetwater County" "The dwelling unit is in WY, Sweetwater County" +in.county "WY, Teton County" "The dwelling unit is in WY, Teton County" +in.county "WY, Uinta County" "The dwelling unit is in WY, Uinta County" +in.county "WY, Washakie County" "The dwelling unit is in WY, Washakie County" +in.county "WY, Weston County" "The dwelling unit is in WY, Weston County" +in.county_and_puma "G0100010, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 001, the NHGIS PUMA code is 02100" +in.county_and_puma "G0100030, G01002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 003, the NHGIS PUMA code is 02600" +in.county_and_puma "G0100050, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 005, the NHGIS PUMA code is 02400" +in.county_and_puma "G0100070, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 007, the NHGIS PUMA code is 01700" +in.county_and_puma "G0100090, G01000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 009, the NHGIS PUMA code is 00800" +in.county_and_puma "G0100110, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 011, the NHGIS PUMA code is 02400" +in.county_and_puma "G0100130, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 013, the NHGIS PUMA code is 02300" +in.county_and_puma "G0100150, G01001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 015, the NHGIS PUMA code is 01100" +in.county_and_puma "G0100170, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 017, the NHGIS PUMA code is 01800" +in.county_and_puma "G0100190, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 019, the NHGIS PUMA code is 01000" +in.county_and_puma "G0100210, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 021, the NHGIS PUMA code is 01800" +in.county_and_puma "G0100230, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 023, the NHGIS PUMA code is 02200" +in.county_and_puma "G0100250, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 025, the NHGIS PUMA code is 02200" +in.county_and_puma "G0100270, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 027, the NHGIS PUMA code is 01000" +in.county_and_puma "G0100290, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 029, the NHGIS PUMA code is 01000" +in.county_and_puma "G0100310, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 031, the NHGIS PUMA code is 02300" +in.county_and_puma "G0100330, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G0100350, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 035, the NHGIS PUMA code is 02200" +in.county_and_puma "G0100370, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 037, the NHGIS PUMA code is 01800" +in.county_and_puma "G0100390, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 039, the NHGIS PUMA code is 02300" +in.county_and_puma "G0100410, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 041, the NHGIS PUMA code is 02300" +in.county_and_puma "G0100430, G01000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 043, the NHGIS PUMA code is 00700" +in.county_and_puma "G0100450, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 045, the NHGIS PUMA code is 02500" +in.county_and_puma "G0100470, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 047, the NHGIS PUMA code is 01700" +in.county_and_puma "G0100490, G01000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 049, the NHGIS PUMA code is 00400" +in.county_and_puma "G0100510, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 051, the NHGIS PUMA code is 02100" +in.county_and_puma "G0100530, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 053, the NHGIS PUMA code is 02200" +in.county_and_puma "G0100550, G01000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 055, the NHGIS PUMA code is 00900" +in.county_and_puma "G0100570, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 057, the NHGIS PUMA code is 01400" +in.county_and_puma "G0100590, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 059, the NHGIS PUMA code is 00100" +in.county_and_puma "G0100610, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 061, the NHGIS PUMA code is 02500" +in.county_and_puma "G0100630, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 063, the NHGIS PUMA code is 01700" +in.county_and_puma "G0100650, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 065, the NHGIS PUMA code is 01700" +in.county_and_puma "G0100670, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 067, the NHGIS PUMA code is 02500" +in.county_and_puma "G0100690, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 069, the NHGIS PUMA code is 02500" +in.county_and_puma "G0100710, G01000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 071, the NHGIS PUMA code is 00400" +in.county_and_puma "G0100730, G01001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01301" +in.county_and_puma "G0100730, G01001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01302" +in.county_and_puma "G0100730, G01001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01303" +in.county_and_puma "G0100730, G01001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01304" +in.county_and_puma "G0100730, G01001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01305" +in.county_and_puma "G0100750, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 075, the NHGIS PUMA code is 01400" +in.county_and_puma "G0100770, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 077, the NHGIS PUMA code is 00100" +in.county_and_puma "G0100790, G01000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 079, the NHGIS PUMA code is 00600" +in.county_and_puma "G0100810, G01001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 081, the NHGIS PUMA code is 01900" +in.county_and_puma "G0100830, G01000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 083, the NHGIS PUMA code is 00200" +in.county_and_puma "G0100850, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 085, the NHGIS PUMA code is 02100" +in.county_and_puma "G0100870, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 087, the NHGIS PUMA code is 02400" +in.county_and_puma "G0100890, G01000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00200" +in.county_and_puma "G0100890, G01000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00301" +in.county_and_puma "G0100890, G01000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00302" +in.county_and_puma "G0100890, G01000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00500" +in.county_and_puma "G0100910, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 091, the NHGIS PUMA code is 01700" +in.county_and_puma "G0100930, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 093, the NHGIS PUMA code is 00100" +in.county_and_puma "G0100930, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 093, the NHGIS PUMA code is 01400" +in.county_and_puma "G0100950, G01000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 095, the NHGIS PUMA code is 00500" +in.county_and_puma "G0100970, G01002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02701" +in.county_and_puma "G0100970, G01002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02702" +in.county_and_puma "G0100970, G01002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02703" +in.county_and_puma "G0100990, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 099, the NHGIS PUMA code is 02200" +in.county_and_puma "G0101010, G01002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 101, the NHGIS PUMA code is 02000" +in.county_and_puma "G0101010, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 101, the NHGIS PUMA code is 02100" +in.county_and_puma "G0101030, G01000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 103, the NHGIS PUMA code is 00600" +in.county_and_puma "G0101050, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 105, the NHGIS PUMA code is 01700" +in.county_and_puma "G0101070, G01001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 107, the NHGIS PUMA code is 01500" +in.county_and_puma "G0101090, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 109, the NHGIS PUMA code is 02400" +in.county_and_puma "G0101110, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 111, the NHGIS PUMA code is 01000" +in.county_and_puma "G0101130, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 113, the NHGIS PUMA code is 02400" +in.county_and_puma "G0101150, G01000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 115, the NHGIS PUMA code is 00800" +in.county_and_puma "G0101170, G01001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 117, the NHGIS PUMA code is 01200" +in.county_and_puma "G0101190, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 119, the NHGIS PUMA code is 01700" +in.county_and_puma "G0101210, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 121, the NHGIS PUMA code is 01000" +in.county_and_puma "G0101230, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 123, the NHGIS PUMA code is 01800" +in.county_and_puma "G0101250, G01001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 125, the NHGIS PUMA code is 01500" +in.county_and_puma "G0101250, G01001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 125, the NHGIS PUMA code is 01600" +in.county_and_puma "G0101270, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 127, the NHGIS PUMA code is 01400" +in.county_and_puma "G0101290, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 129, the NHGIS PUMA code is 02200" +in.county_and_puma "G0101310, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 131, the NHGIS PUMA code is 02200" +in.county_and_puma "G0101330, G01000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 133, the NHGIS PUMA code is 00700" +in.county_and_puma "G0200130, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 013, the NHGIS PUMA code is 00400" +in.county_and_puma "G0200160, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 016, the NHGIS PUMA code is 00400" +in.county_and_puma "G0200200, G02000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 020, the NHGIS PUMA code is 00101" +in.county_and_puma "G0200200, G02000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 020, the NHGIS PUMA code is 00102" +in.county_and_puma "G0200500, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 050, the NHGIS PUMA code is 00400" +in.county_and_puma "G0200600, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 060, the NHGIS PUMA code is 00400" +in.county_and_puma "G0200680, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 068, the NHGIS PUMA code is 00300" +in.county_and_puma "G0200700, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 070, the NHGIS PUMA code is 00400" +in.county_and_puma "G0200900, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 090, the NHGIS PUMA code is 00300" +in.county_and_puma "G0201000, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 100, the NHGIS PUMA code is 00300" +in.county_and_puma "G0201050, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 105, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201100, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 110, the NHGIS PUMA code is 00300" +in.county_and_puma "G0201220, G02000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 122, the NHGIS PUMA code is 00200" +in.county_and_puma "G0201300, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 130, the NHGIS PUMA code is 00300" +in.county_and_puma "G0201500, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 150, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201580, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 158, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201640, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 164, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201700, G02000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 170, the NHGIS PUMA code is 00200" +in.county_and_puma "G0201800, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 180, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201850, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 185, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201880, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 188, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201950, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 195, the NHGIS PUMA code is 00400" +in.county_and_puma "G0201980, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 198, the NHGIS PUMA code is 00400" +in.county_and_puma "G0202200, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 220, the NHGIS PUMA code is 00400" +in.county_and_puma "G0202300, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 230, the NHGIS PUMA code is 00300" +in.county_and_puma "G0202400, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 240, the NHGIS PUMA code is 00300" +in.county_and_puma "G0202610, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 261, the NHGIS PUMA code is 00300" +in.county_and_puma "G0202750, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 275, the NHGIS PUMA code is 00400" +in.county_and_puma "G0202820, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 282, the NHGIS PUMA code is 00400" +in.county_and_puma "G0202900, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 290, the NHGIS PUMA code is 00400" +in.county_and_puma "G0400010, G04000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G0400030, G04000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 003, the NHGIS PUMA code is 00900" +in.county_and_puma "G0400050, G04000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G0400070, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 007, the NHGIS PUMA code is 00800" +in.county_and_puma "G0400090, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 009, the NHGIS PUMA code is 00800" +in.county_and_puma "G0400110, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G0400120, G04000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 012, the NHGIS PUMA code is 00600" +in.county_and_puma "G0400130, G04000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G0400130, G04000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00101" +in.county_and_puma "G0400130, G04000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00102" +in.county_and_puma "G0400130, G04000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00103" +in.county_and_puma "G0400130, G04000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00104" +in.county_and_puma "G0400130, G04000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00105" +in.county_and_puma "G0400130, G04000106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00106" +in.county_and_puma "G0400130, G04000107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00107" +in.county_and_puma "G0400130, G04000108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00108" +in.county_and_puma "G0400130, G04000109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00109" +in.county_and_puma "G0400130, G04000110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00110" +in.county_and_puma "G0400130, G04000111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00111" +in.county_and_puma "G0400130, G04000112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00112" +in.county_and_puma "G0400130, G04000113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00113" +in.county_and_puma "G0400130, G04000114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00114" +in.county_and_puma "G0400130, G04000115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00115" +in.county_and_puma "G0400130, G04000116" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00116" +in.county_and_puma "G0400130, G04000117" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00117" +in.county_and_puma "G0400130, G04000118" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00118" +in.county_and_puma "G0400130, G04000119" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00119" +in.county_and_puma "G0400130, G04000120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00120" +in.county_and_puma "G0400130, G04000121" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00121" +in.county_and_puma "G0400130, G04000122" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00122" +in.county_and_puma "G0400130, G04000123" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00123" +in.county_and_puma "G0400130, G04000124" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00124" +in.county_and_puma "G0400130, G04000125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00125" +in.county_and_puma "G0400130, G04000126" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00126" +in.county_and_puma "G0400130, G04000127" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00127" +in.county_and_puma "G0400130, G04000128" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00128" +in.county_and_puma "G0400130, G04000129" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00129" +in.county_and_puma "G0400130, G04000130" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00130" +in.county_and_puma "G0400130, G04000131" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00131" +in.county_and_puma "G0400130, G04000132" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00132" +in.county_and_puma "G0400130, G04000133" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00133" +in.county_and_puma "G0400130, G04000134" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00134" +in.county_and_puma "G0400150, G04000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 015, the NHGIS PUMA code is 00600" +in.county_and_puma "G0400170, G04000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 017, the NHGIS PUMA code is 00300" +in.county_and_puma "G0400190, G04000201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00201" +in.county_and_puma "G0400190, G04000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00202" +in.county_and_puma "G0400190, G04000203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00203" +in.county_and_puma "G0400190, G04000204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00204" +in.county_and_puma "G0400190, G04000205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00205" +in.county_and_puma "G0400190, G04000206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00206" +in.county_and_puma "G0400190, G04000207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00207" +in.county_and_puma "G0400190, G04000208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00208" +in.county_and_puma "G0400190, G04000209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00209" +in.county_and_puma "G0400210, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00800" +in.county_and_puma "G0400210, G04000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00803" +in.county_and_puma "G0400210, G04000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00805" +in.county_and_puma "G0400210, G04000807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00807" +in.county_and_puma "G0400230, G04000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 023, the NHGIS PUMA code is 00900" +in.county_and_puma "G0400250, G04000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 025, the NHGIS PUMA code is 00500" +in.county_and_puma "G0400270, G04000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 027, the NHGIS PUMA code is 00700" +in.county_and_puma "G0500010, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 001, the NHGIS PUMA code is 01700" +in.county_and_puma "G0500010, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 001, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500030, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 003, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500050, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 005, the NHGIS PUMA code is 00300" +in.county_and_puma "G0500070, G05000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G0500090, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G0500110, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 011, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500130, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 013, the NHGIS PUMA code is 01900" +in.county_and_puma "G0500150, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 015, the NHGIS PUMA code is 00300" +in.county_and_puma "G0500170, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 017, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500190, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 019, the NHGIS PUMA code is 01600" +in.county_and_puma "G0500210, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 021, the NHGIS PUMA code is 00500" +in.county_and_puma "G0500230, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 023, the NHGIS PUMA code is 00400" +in.county_and_puma "G0500250, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 025, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500270, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 027, the NHGIS PUMA code is 01900" +in.county_and_puma "G0500290, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 029, the NHGIS PUMA code is 01300" +in.county_and_puma "G0500310, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 031, the NHGIS PUMA code is 00500" +in.county_and_puma "G0500310, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 031, the NHGIS PUMA code is 00600" +in.county_and_puma "G0500330, G05001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 033, the NHGIS PUMA code is 01400" +in.county_and_puma "G0500350, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 035, the NHGIS PUMA code is 00600" +in.county_and_puma "G0500370, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 037, the NHGIS PUMA code is 00700" +in.county_and_puma "G0500390, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 039, the NHGIS PUMA code is 01900" +in.county_and_puma "G0500410, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 041, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500430, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 043, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500450, G05001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 045, the NHGIS PUMA code is 01100" +in.county_and_puma "G0500470, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 047, the NHGIS PUMA code is 01500" +in.county_and_puma "G0500490, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 049, the NHGIS PUMA code is 00400" +in.county_and_puma "G0500510, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 051, the NHGIS PUMA code is 01600" +in.county_and_puma "G0500530, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 053, the NHGIS PUMA code is 01700" +in.county_and_puma "G0500550, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 055, the NHGIS PUMA code is 00500" +in.county_and_puma "G0500570, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 057, the NHGIS PUMA code is 02000" +in.county_and_puma "G0500590, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 059, the NHGIS PUMA code is 01600" +in.county_and_puma "G0500610, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 061, the NHGIS PUMA code is 01500" +in.county_and_puma "G0500630, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 063, the NHGIS PUMA code is 00400" +in.county_and_puma "G0500650, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 065, the NHGIS PUMA code is 00400" +in.county_and_puma "G0500670, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 067, the NHGIS PUMA code is 00800" +in.county_and_puma "G0500690, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 069, the NHGIS PUMA code is 01700" +in.county_and_puma "G0500710, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 071, the NHGIS PUMA code is 01300" +in.county_and_puma "G0500730, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 073, the NHGIS PUMA code is 02000" +in.county_and_puma "G0500750, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 075, the NHGIS PUMA code is 00500" +in.county_and_puma "G0500770, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 077, the NHGIS PUMA code is 00700" +in.county_and_puma "G0500790, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 079, the NHGIS PUMA code is 01800" +in.county_and_puma "G0500810, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 081, the NHGIS PUMA code is 02000" +in.county_and_puma "G0500830, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 083, the NHGIS PUMA code is 01500" +in.county_and_puma "G0500850, G05001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 085, the NHGIS PUMA code is 01100" +in.county_and_puma "G0500870, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 087, the NHGIS PUMA code is 00300" +in.county_and_puma "G0500890, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 089, the NHGIS PUMA code is 00300" +in.county_and_puma "G0500910, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 091, the NHGIS PUMA code is 02000" +in.county_and_puma "G0500930, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 093, the NHGIS PUMA code is 00600" +in.county_and_puma "G0500950, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 095, the NHGIS PUMA code is 00700" +in.county_and_puma "G0500970, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 097, the NHGIS PUMA code is 01600" +in.county_and_puma "G0500990, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 099, the NHGIS PUMA code is 02000" +in.county_and_puma "G0501010, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 101, the NHGIS PUMA code is 00300" +in.county_and_puma "G0501030, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 103, the NHGIS PUMA code is 01900" +in.county_and_puma "G0501050, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 105, the NHGIS PUMA code is 01300" +in.county_and_puma "G0501070, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 107, the NHGIS PUMA code is 00700" +in.county_and_puma "G0501090, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 109, the NHGIS PUMA code is 02000" +in.county_and_puma "G0501110, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 111, the NHGIS PUMA code is 00700" +in.county_and_puma "G0501130, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 113, the NHGIS PUMA code is 01500" +in.county_and_puma "G0501150, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 115, the NHGIS PUMA code is 01300" +in.county_and_puma "G0501170, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 117, the NHGIS PUMA code is 00800" +in.county_and_puma "G0501190, G05000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 119, the NHGIS PUMA code is 00900" +in.county_and_puma "G0501190, G05001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 119, the NHGIS PUMA code is 01000" +in.county_and_puma "G0501210, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 121, the NHGIS PUMA code is 00500" +in.county_and_puma "G0501230, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 123, the NHGIS PUMA code is 00700" +in.county_and_puma "G0501250, G05001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 125, the NHGIS PUMA code is 01200" +in.county_and_puma "G0501270, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 127, the NHGIS PUMA code is 01500" +in.county_and_puma "G0501290, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 129, the NHGIS PUMA code is 00300" +in.county_and_puma "G0501310, G05001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 131, the NHGIS PUMA code is 01400" +in.county_and_puma "G0501330, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 133, the NHGIS PUMA code is 01500" +in.county_and_puma "G0501350, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 135, the NHGIS PUMA code is 00400" +in.county_and_puma "G0501370, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 137, the NHGIS PUMA code is 00400" +in.county_and_puma "G0501390, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 139, the NHGIS PUMA code is 01900" +in.county_and_puma "G0501410, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 141, the NHGIS PUMA code is 00400" +in.county_and_puma "G0501430, G05000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 143, the NHGIS PUMA code is 00200" +in.county_and_puma "G0501450, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 145, the NHGIS PUMA code is 00800" +in.county_and_puma "G0501470, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 147, the NHGIS PUMA code is 00800" +in.county_and_puma "G0501490, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 149, the NHGIS PUMA code is 01300" +in.county_and_puma "G0600010, G06000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00101" +in.county_and_puma "G0600010, G06000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00102" +in.county_and_puma "G0600010, G06000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00103" +in.county_and_puma "G0600010, G06000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00104" +in.county_and_puma "G0600010, G06000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00105" +in.county_and_puma "G0600010, G06000106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00106" +in.county_and_puma "G0600010, G06000107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00107" +in.county_and_puma "G0600010, G06000108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00108" +in.county_and_puma "G0600010, G06000109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00109" +in.county_and_puma "G0600010, G06000110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00110" +in.county_and_puma "G0600030, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 003, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600050, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 005, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600070, G06000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 007, the NHGIS PUMA code is 00701" +in.county_and_puma "G0600070, G06000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 007, the NHGIS PUMA code is 00702" +in.county_and_puma "G0600090, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600110, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 011, the NHGIS PUMA code is 01100" +in.county_and_puma "G0600130, G06001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01301" +in.county_and_puma "G0600130, G06001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01302" +in.county_and_puma "G0600130, G06001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01303" +in.county_and_puma "G0600130, G06001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01304" +in.county_and_puma "G0600130, G06001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01305" +in.county_and_puma "G0600130, G06001306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01306" +in.county_and_puma "G0600130, G06001307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01307" +in.county_and_puma "G0600130, G06001308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01308" +in.county_and_puma "G0600130, G06001309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01309" +in.county_and_puma "G0600150, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 015, the NHGIS PUMA code is 01500" +in.county_and_puma "G0600170, G06001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 017, the NHGIS PUMA code is 01700" +in.county_and_puma "G0600190, G06001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01901" +in.county_and_puma "G0600190, G06001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01902" +in.county_and_puma "G0600190, G06001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01903" +in.county_and_puma "G0600190, G06001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01904" +in.county_and_puma "G0600190, G06001905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01905" +in.county_and_puma "G0600190, G06001906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01906" +in.county_and_puma "G0600190, G06001907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01907" +in.county_and_puma "G0600210, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 021, the NHGIS PUMA code is 01100" +in.county_and_puma "G0600230, G06002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 023, the NHGIS PUMA code is 02300" +in.county_and_puma "G0600250, G06002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 025, the NHGIS PUMA code is 02500" +in.county_and_puma "G0600270, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600290, G06002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02901" +in.county_and_puma "G0600290, G06002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02902" +in.county_and_puma "G0600290, G06002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02903" +in.county_and_puma "G0600290, G06002904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02904" +in.county_and_puma "G0600290, G06002905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02905" +in.county_and_puma "G0600310, G06003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 031, the NHGIS PUMA code is 03100" +in.county_and_puma "G0600330, G06003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 033, the NHGIS PUMA code is 03300" +in.county_and_puma "G0600350, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 035, the NHGIS PUMA code is 01500" +in.county_and_puma "G0600370, G06003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03701" +in.county_and_puma "G0600370, G06003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03702" +in.county_and_puma "G0600370, G06003703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03703" +in.county_and_puma "G0600370, G06003704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03704" +in.county_and_puma "G0600370, G06003705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03705" +in.county_and_puma "G0600370, G06003706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03706" +in.county_and_puma "G0600370, G06003707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03707" +in.county_and_puma "G0600370, G06003708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03708" +in.county_and_puma "G0600370, G06003709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03709" +in.county_and_puma "G0600370, G06003710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03710" +in.county_and_puma "G0600370, G06003711" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03711" +in.county_and_puma "G0600370, G06003712" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03712" +in.county_and_puma "G0600370, G06003713" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03713" +in.county_and_puma "G0600370, G06003714" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03714" +in.county_and_puma "G0600370, G06003715" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03715" +in.county_and_puma "G0600370, G06003716" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03716" +in.county_and_puma "G0600370, G06003717" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03717" +in.county_and_puma "G0600370, G06003718" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03718" +in.county_and_puma "G0600370, G06003719" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03719" +in.county_and_puma "G0600370, G06003720" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03720" +in.county_and_puma "G0600370, G06003721" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03721" +in.county_and_puma "G0600370, G06003722" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03722" +in.county_and_puma "G0600370, G06003723" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03723" +in.county_and_puma "G0600370, G06003724" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03724" +in.county_and_puma "G0600370, G06003725" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03725" +in.county_and_puma "G0600370, G06003726" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03726" +in.county_and_puma "G0600370, G06003727" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03727" +in.county_and_puma "G0600370, G06003728" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03728" +in.county_and_puma "G0600370, G06003729" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03729" +in.county_and_puma "G0600370, G06003730" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03730" +in.county_and_puma "G0600370, G06003731" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03731" +in.county_and_puma "G0600370, G06003732" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03732" +in.county_and_puma "G0600370, G06003733" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03733" +in.county_and_puma "G0600370, G06003734" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03734" +in.county_and_puma "G0600370, G06003735" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03735" +in.county_and_puma "G0600370, G06003736" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03736" +in.county_and_puma "G0600370, G06003737" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03737" +in.county_and_puma "G0600370, G06003738" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03738" +in.county_and_puma "G0600370, G06003739" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03739" +in.county_and_puma "G0600370, G06003740" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03740" +in.county_and_puma "G0600370, G06003741" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03741" +in.county_and_puma "G0600370, G06003742" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03742" +in.county_and_puma "G0600370, G06003743" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03743" +in.county_and_puma "G0600370, G06003744" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03744" +in.county_and_puma "G0600370, G06003745" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03745" +in.county_and_puma "G0600370, G06003746" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03746" +in.county_and_puma "G0600370, G06003747" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03747" +in.county_and_puma "G0600370, G06003748" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03748" +in.county_and_puma "G0600370, G06003749" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03749" +in.county_and_puma "G0600370, G06003750" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03750" +in.county_and_puma "G0600370, G06003751" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03751" +in.county_and_puma "G0600370, G06003752" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03752" +in.county_and_puma "G0600370, G06003753" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03753" +in.county_and_puma "G0600370, G06003754" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03754" +in.county_and_puma "G0600370, G06003755" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03755" +in.county_and_puma "G0600370, G06003756" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03756" +in.county_and_puma "G0600370, G06003757" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03757" +in.county_and_puma "G0600370, G06003758" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03758" +in.county_and_puma "G0600370, G06003759" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03759" +in.county_and_puma "G0600370, G06003760" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03760" +in.county_and_puma "G0600370, G06003761" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03761" +in.county_and_puma "G0600370, G06003762" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03762" +in.county_and_puma "G0600370, G06003763" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03763" +in.county_and_puma "G0600370, G06003764" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03764" +in.county_and_puma "G0600370, G06003765" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03765" +in.county_and_puma "G0600370, G06003766" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03766" +in.county_and_puma "G0600370, G06003767" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03767" +in.county_and_puma "G0600370, G06003768" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03768" +in.county_and_puma "G0600370, G06003769" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03769" +in.county_and_puma "G0600390, G06003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 039, the NHGIS PUMA code is 03900" +in.county_and_puma "G0600410, G06004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 041, the NHGIS PUMA code is 04101" +in.county_and_puma "G0600410, G06004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 041, the NHGIS PUMA code is 04102" +in.county_and_puma "G0600430, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 043, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600450, G06003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 045, the NHGIS PUMA code is 03300" +in.county_and_puma "G0600470, G06004701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 047, the NHGIS PUMA code is 04701" +in.county_and_puma "G0600470, G06004702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 047, the NHGIS PUMA code is 04702" +in.county_and_puma "G0600490, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 049, the NHGIS PUMA code is 01500" +in.county_and_puma "G0600510, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 051, the NHGIS PUMA code is 00300" +in.county_and_puma "G0600530, G06005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05301" +in.county_and_puma "G0600530, G06005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05302" +in.county_and_puma "G0600530, G06005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05303" +in.county_and_puma "G0600550, G06005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 055, the NHGIS PUMA code is 05500" +in.county_and_puma "G0600570, G06005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 057, the NHGIS PUMA code is 05700" +in.county_and_puma "G0600590, G06005901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05901" +in.county_and_puma "G0600590, G06005902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05902" +in.county_and_puma "G0600590, G06005903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05903" +in.county_and_puma "G0600590, G06005904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05904" +in.county_and_puma "G0600590, G06005905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05905" +in.county_and_puma "G0600590, G06005906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05906" +in.county_and_puma "G0600590, G06005907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05907" +in.county_and_puma "G0600590, G06005908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05908" +in.county_and_puma "G0600590, G06005909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05909" +in.county_and_puma "G0600590, G06005910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05910" +in.county_and_puma "G0600590, G06005911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05911" +in.county_and_puma "G0600590, G06005912" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05912" +in.county_and_puma "G0600590, G06005913" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05913" +in.county_and_puma "G0600590, G06005914" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05914" +in.county_and_puma "G0600590, G06005915" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05915" +in.county_and_puma "G0600590, G06005916" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05916" +in.county_and_puma "G0600590, G06005917" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05917" +in.county_and_puma "G0600590, G06005918" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05918" +in.county_and_puma "G0600610, G06006101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06101" +in.county_and_puma "G0600610, G06006102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06102" +in.county_and_puma "G0600610, G06006103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06103" +in.county_and_puma "G0600630, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 063, the NHGIS PUMA code is 01500" +in.county_and_puma "G0600650, G06006501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06501" +in.county_and_puma "G0600650, G06006502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06502" +in.county_and_puma "G0600650, G06006503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06503" +in.county_and_puma "G0600650, G06006504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06504" +in.county_and_puma "G0600650, G06006505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06505" +in.county_and_puma "G0600650, G06006506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06506" +in.county_and_puma "G0600650, G06006507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06507" +in.county_and_puma "G0600650, G06006508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06508" +in.county_and_puma "G0600650, G06006509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06509" +in.county_and_puma "G0600650, G06006510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06510" +in.county_and_puma "G0600650, G06006511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06511" +in.county_and_puma "G0600650, G06006512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06512" +in.county_and_puma "G0600650, G06006513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06513" +in.county_and_puma "G0600650, G06006514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06514" +in.county_and_puma "G0600650, G06006515" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06515" +in.county_and_puma "G0600670, G06006701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06701" +in.county_and_puma "G0600670, G06006702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06702" +in.county_and_puma "G0600670, G06006703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06703" +in.county_and_puma "G0600670, G06006704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06704" +in.county_and_puma "G0600670, G06006705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06705" +in.county_and_puma "G0600670, G06006706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06706" +in.county_and_puma "G0600670, G06006707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06707" +in.county_and_puma "G0600670, G06006708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06708" +in.county_and_puma "G0600670, G06006709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06709" +in.county_and_puma "G0600670, G06006710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06710" +in.county_and_puma "G0600670, G06006711" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06711" +in.county_and_puma "G0600670, G06006712" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06712" +in.county_and_puma "G0600690, G06005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 069, the NHGIS PUMA code is 05303" +in.county_and_puma "G0600710, G06007101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07101" +in.county_and_puma "G0600710, G06007102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07102" +in.county_and_puma "G0600710, G06007103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07103" +in.county_and_puma "G0600710, G06007104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07104" +in.county_and_puma "G0600710, G06007105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07105" +in.county_and_puma "G0600710, G06007106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07106" +in.county_and_puma "G0600710, G06007107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07107" +in.county_and_puma "G0600710, G06007108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07108" +in.county_and_puma "G0600710, G06007109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07109" +in.county_and_puma "G0600710, G06007110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07110" +in.county_and_puma "G0600710, G06007111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07111" +in.county_and_puma "G0600710, G06007112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07112" +in.county_and_puma "G0600710, G06007113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07113" +in.county_and_puma "G0600710, G06007114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07114" +in.county_and_puma "G0600710, G06007115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07115" +in.county_and_puma "G0600730, G06007301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07301" +in.county_and_puma "G0600730, G06007302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07302" +in.county_and_puma "G0600730, G06007303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07303" +in.county_and_puma "G0600730, G06007304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07304" +in.county_and_puma "G0600730, G06007305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07305" +in.county_and_puma "G0600730, G06007306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07306" +in.county_and_puma "G0600730, G06007307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07307" +in.county_and_puma "G0600730, G06007308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07308" +in.county_and_puma "G0600730, G06007309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07309" +in.county_and_puma "G0600730, G06007310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07310" +in.county_and_puma "G0600730, G06007311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07311" +in.county_and_puma "G0600730, G06007312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07312" +in.county_and_puma "G0600730, G06007313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07313" +in.county_and_puma "G0600730, G06007314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07314" +in.county_and_puma "G0600730, G06007315" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07315" +in.county_and_puma "G0600730, G06007316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07316" +in.county_and_puma "G0600730, G06007317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07317" +in.county_and_puma "G0600730, G06007318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07318" +in.county_and_puma "G0600730, G06007319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07319" +in.county_and_puma "G0600730, G06007320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07320" +in.county_and_puma "G0600730, G06007321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07321" +in.county_and_puma "G0600730, G06007322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07322" +in.county_and_puma "G0600750, G06007501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07501" +in.county_and_puma "G0600750, G06007502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07502" +in.county_and_puma "G0600750, G06007503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07503" +in.county_and_puma "G0600750, G06007504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07504" +in.county_and_puma "G0600750, G06007505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07505" +in.county_and_puma "G0600750, G06007506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07506" +in.county_and_puma "G0600750, G06007507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07507" +in.county_and_puma "G0600770, G06007701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07701" +in.county_and_puma "G0600770, G06007702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07702" +in.county_and_puma "G0600770, G06007703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07703" +in.county_and_puma "G0600770, G06007704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07704" +in.county_and_puma "G0600790, G06007901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 079, the NHGIS PUMA code is 07901" +in.county_and_puma "G0600790, G06007902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 079, the NHGIS PUMA code is 07902" +in.county_and_puma "G0600810, G06008101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08101" +in.county_and_puma "G0600810, G06008102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08102" +in.county_and_puma "G0600810, G06008103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08103" +in.county_and_puma "G0600810, G06008104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08104" +in.county_and_puma "G0600810, G06008105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08105" +in.county_and_puma "G0600810, G06008106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08106" +in.county_and_puma "G0600830, G06008301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08301" +in.county_and_puma "G0600830, G06008302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08302" +in.county_and_puma "G0600830, G06008303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08303" +in.county_and_puma "G0600850, G06008501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08501" +in.county_and_puma "G0600850, G06008502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08502" +in.county_and_puma "G0600850, G06008503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08503" +in.county_and_puma "G0600850, G06008504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08504" +in.county_and_puma "G0600850, G06008505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08505" +in.county_and_puma "G0600850, G06008506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08506" +in.county_and_puma "G0600850, G06008507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08507" +in.county_and_puma "G0600850, G06008508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08508" +in.county_and_puma "G0600850, G06008509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08509" +in.county_and_puma "G0600850, G06008510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08510" +in.county_and_puma "G0600850, G06008511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08511" +in.county_and_puma "G0600850, G06008512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08512" +in.county_and_puma "G0600850, G06008513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08513" +in.county_and_puma "G0600850, G06008514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08514" +in.county_and_puma "G0600870, G06008701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 087, the NHGIS PUMA code is 08701" +in.county_and_puma "G0600870, G06008702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 087, the NHGIS PUMA code is 08702" +in.county_and_puma "G0600890, G06008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 089, the NHGIS PUMA code is 08900" +in.county_and_puma "G0600910, G06005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 091, the NHGIS PUMA code is 05700" +in.county_and_puma "G0600930, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 093, the NHGIS PUMA code is 01500" +in.county_and_puma "G0600950, G06009501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09501" +in.county_and_puma "G0600950, G06009502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09502" +in.county_and_puma "G0600950, G06009503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09503" +in.county_and_puma "G0600970, G06009701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09701" +in.county_and_puma "G0600970, G06009702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09702" +in.county_and_puma "G0600970, G06009703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09703" +in.county_and_puma "G0600990, G06009901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09901" +in.county_and_puma "G0600990, G06009902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09902" +in.county_and_puma "G0600990, G06009903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09903" +in.county_and_puma "G0600990, G06009904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09904" +in.county_and_puma "G0601010, G06010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 101, the NHGIS PUMA code is 10100" +in.county_and_puma "G0601030, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 103, the NHGIS PUMA code is 01100" +in.county_and_puma "G0601050, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 105, the NHGIS PUMA code is 01100" +in.county_and_puma "G0601070, G06010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10701" +in.county_and_puma "G0601070, G06010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10702" +in.county_and_puma "G0601070, G06010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10703" +in.county_and_puma "G0601090, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 109, the NHGIS PUMA code is 00300" +in.county_and_puma "G0601110, G06011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11101" +in.county_and_puma "G0601110, G06011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11102" +in.county_and_puma "G0601110, G06011103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11103" +in.county_and_puma "G0601110, G06011104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11104" +in.county_and_puma "G0601110, G06011105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11105" +in.county_and_puma "G0601110, G06011106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11106" +in.county_and_puma "G0601130, G06011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 113, the NHGIS PUMA code is 11300" +in.county_and_puma "G0601150, G06010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 115, the NHGIS PUMA code is 10100" +in.county_and_puma "G0800010, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00804" +in.county_and_puma "G0800010, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00805" +in.county_and_puma "G0800010, G08000806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00806" +in.county_and_puma "G0800010, G08000807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00807" +in.county_and_puma "G0800010, G08000809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00809" +in.county_and_puma "G0800010, G08000810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00810" +in.county_and_puma "G0800010, G08000817" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00817" +in.county_and_puma "G0800010, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00824" +in.county_and_puma "G0800030, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 003, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800050, G08000808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00808" +in.county_and_puma "G0800050, G08000809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00809" +in.county_and_puma "G0800050, G08000810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00810" +in.county_and_puma "G0800050, G08000811" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00811" +in.county_and_puma "G0800050, G08000815" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00815" +in.county_and_puma "G0800050, G08000820" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00820" +in.county_and_puma "G0800050, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00824" +in.county_and_puma "G0800070, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 007, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800090, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 009, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800110, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 011, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800130, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00801" +in.county_and_puma "G0800130, G08000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00802" +in.county_and_puma "G0800130, G08000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00803" +in.county_and_puma "G0800130, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00804" +in.county_and_puma "G0800140, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 014, the NHGIS PUMA code is 00804" +in.county_and_puma "G0800140, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 014, the NHGIS PUMA code is 00805" +in.county_and_puma "G0800150, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 015, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800170, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 017, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800190, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 019, the NHGIS PUMA code is 00801" +in.county_and_puma "G0800210, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 021, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800230, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 023, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800250, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 025, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800270, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 027, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800290, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 029, the NHGIS PUMA code is 01002" +in.county_and_puma "G0800310, G08000812" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00812" +in.county_and_puma "G0800310, G08000813" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00813" +in.county_and_puma "G0800310, G08000814" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00814" +in.county_and_puma "G0800310, G08000815" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00815" +in.county_and_puma "G0800310, G08000816" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00816" +in.county_and_puma "G0800330, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 033, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800350, G08000821" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00821" +in.county_and_puma "G0800350, G08000822" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00822" +in.county_and_puma "G0800350, G08000823" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00823" +in.county_and_puma "G0800370, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 037, the NHGIS PUMA code is 00400" +in.county_and_puma "G0800390, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800390, G08000823" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 039, the NHGIS PUMA code is 00823" +in.county_and_puma "G0800410, G08004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04101" +in.county_and_puma "G0800410, G08004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04102" +in.county_and_puma "G0800410, G08004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04103" +in.county_and_puma "G0800410, G08004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04104" +in.county_and_puma "G0800410, G08004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04105" +in.county_and_puma "G0800410, G08004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04106" +in.county_and_puma "G0800430, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 043, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800450, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 045, the NHGIS PUMA code is 00200" +in.county_and_puma "G0800470, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 047, the NHGIS PUMA code is 00801" +in.county_and_puma "G0800490, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 049, the NHGIS PUMA code is 00400" +in.county_and_puma "G0800510, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 051, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800530, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 053, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800550, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 055, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800570, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 057, the NHGIS PUMA code is 00400" +in.county_and_puma "G0800590, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00801" +in.county_and_puma "G0800590, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00804" +in.county_and_puma "G0800590, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00805" +in.county_and_puma "G0800590, G08000817" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00817" +in.county_and_puma "G0800590, G08000818" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00818" +in.county_and_puma "G0800590, G08000819" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00819" +in.county_and_puma "G0800590, G08000820" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00820" +in.county_and_puma "G0800590, G08000821" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00821" +in.county_and_puma "G0800610, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 061, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800630, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 063, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800650, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 065, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800670, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 067, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800690, G08000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 069, the NHGIS PUMA code is 00102" +in.county_and_puma "G0800690, G08000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 069, the NHGIS PUMA code is 00103" +in.county_and_puma "G0800710, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 071, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800730, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 073, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800750, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 075, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800770, G08001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 077, the NHGIS PUMA code is 01001" +in.county_and_puma "G0800770, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 077, the NHGIS PUMA code is 01002" +in.county_and_puma "G0800790, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 079, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800810, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 081, the NHGIS PUMA code is 00200" +in.county_and_puma "G0800830, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 083, the NHGIS PUMA code is 00900" +in.county_and_puma "G0800850, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 085, the NHGIS PUMA code is 01002" +in.county_and_puma "G0800870, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 087, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800890, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 089, the NHGIS PUMA code is 00800" +in.county_and_puma "G0800910, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 091, the NHGIS PUMA code is 01002" +in.county_and_puma "G0800930, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 093, the NHGIS PUMA code is 00600" +in.county_and_puma "G0800950, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 095, the NHGIS PUMA code is 00100" +in.county_and_puma "G0800970, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 097, the NHGIS PUMA code is 00400" +in.county_and_puma "G0800990, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 099, the NHGIS PUMA code is 00800" +in.county_and_puma "G0801010, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00600" +in.county_and_puma "G0801010, G08000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00700" +in.county_and_puma "G0801010, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00800" +in.county_and_puma "G0801030, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 103, the NHGIS PUMA code is 00200" +in.county_and_puma "G0801050, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 105, the NHGIS PUMA code is 00800" +in.county_and_puma "G0801070, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 107, the NHGIS PUMA code is 00200" +in.county_and_puma "G0801090, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 109, the NHGIS PUMA code is 00800" +in.county_and_puma "G0801110, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 111, the NHGIS PUMA code is 00900" +in.county_and_puma "G0801130, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 113, the NHGIS PUMA code is 01002" +in.county_and_puma "G0801150, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 115, the NHGIS PUMA code is 00100" +in.county_and_puma "G0801170, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 117, the NHGIS PUMA code is 00400" +in.county_and_puma "G0801190, G08004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 119, the NHGIS PUMA code is 04101" +in.county_and_puma "G0801210, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 121, the NHGIS PUMA code is 00100" +in.county_and_puma "G0801230, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00100" +in.county_and_puma "G0801230, G08000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00300" +in.county_and_puma "G0801230, G08000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00802" +in.county_and_puma "G0801230, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00824" +in.county_and_puma "G0801250, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 125, the NHGIS PUMA code is 00100" +in.county_and_puma "G0900010, G09000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00100" +in.county_and_puma "G0900010, G09000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00101" +in.county_and_puma "G0900010, G09000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00102" +in.county_and_puma "G0900010, G09000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00103" +in.county_and_puma "G0900010, G09000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00104" +in.county_and_puma "G0900010, G09000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00105" +in.county_and_puma "G0900030, G09000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00300" +in.county_and_puma "G0900030, G09000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00301" +in.county_and_puma "G0900030, G09000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00302" +in.county_and_puma "G0900030, G09000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00303" +in.county_and_puma "G0900030, G09000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00304" +in.county_and_puma "G0900030, G09000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00305" +in.county_and_puma "G0900030, G09000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00306" +in.county_and_puma "G0900050, G09000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 005, the NHGIS PUMA code is 00500" +in.county_and_puma "G0900070, G09000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 007, the NHGIS PUMA code is 00700" +in.county_and_puma "G0900090, G09000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00900" +in.county_and_puma "G0900090, G09000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00901" +in.county_and_puma "G0900090, G09000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00902" +in.county_and_puma "G0900090, G09000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00903" +in.county_and_puma "G0900090, G09000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00904" +in.county_and_puma "G0900090, G09000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00905" +in.county_and_puma "G0900090, G09000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00906" +in.county_and_puma "G0900110, G09001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 011, the NHGIS PUMA code is 01100" +in.county_and_puma "G0900110, G09001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 011, the NHGIS PUMA code is 01101" +in.county_and_puma "G0900130, G09001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 013, the NHGIS PUMA code is 01300" +in.county_and_puma "G0900150, G09001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 015, the NHGIS PUMA code is 01500" +in.county_and_puma "G1000010, G10000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 001, the NHGIS PUMA code is 00200" +in.county_and_puma "G1000030, G10000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00101" +in.county_and_puma "G1000030, G10000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00102" +in.county_and_puma "G1000030, G10000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00103" +in.county_and_puma "G1000030, G10000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00104" +in.county_and_puma "G1000050, G10000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 005, the NHGIS PUMA code is 00300" +in.county_and_puma "G1100010, G11000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00101" +in.county_and_puma "G1100010, G11000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00102" +in.county_and_puma "G1100010, G11000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00103" +in.county_and_puma "G1100010, G11000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00104" +in.county_and_puma "G1100010, G11000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00105" +in.county_and_puma "G1200010, G12000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 001, the NHGIS PUMA code is 00101" +in.county_and_puma "G1200010, G12000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 001, the NHGIS PUMA code is 00102" +in.county_and_puma "G1200030, G12008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 003, the NHGIS PUMA code is 08900" +in.county_and_puma "G1200050, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 005, the NHGIS PUMA code is 00500" +in.county_and_puma "G1200070, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 007, the NHGIS PUMA code is 02300" +in.county_and_puma "G1200090, G12000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00901" +in.county_and_puma "G1200090, G12000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00902" +in.county_and_puma "G1200090, G12000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00903" +in.county_and_puma "G1200090, G12000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00904" +in.county_and_puma "G1200110, G12001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01101" +in.county_and_puma "G1200110, G12001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01102" +in.county_and_puma "G1200110, G12001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01103" +in.county_and_puma "G1200110, G12001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01104" +in.county_and_puma "G1200110, G12001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01105" +in.county_and_puma "G1200110, G12001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01106" +in.county_and_puma "G1200110, G12001107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01107" +in.county_and_puma "G1200110, G12001108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01108" +in.county_and_puma "G1200110, G12001109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01109" +in.county_and_puma "G1200110, G12001110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01110" +in.county_and_puma "G1200110, G12001111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01111" +in.county_and_puma "G1200110, G12001112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01112" +in.county_and_puma "G1200110, G12001113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01113" +in.county_and_puma "G1200110, G12001114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01114" +in.county_and_puma "G1200130, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 013, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200150, G12001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 015, the NHGIS PUMA code is 01500" +in.county_and_puma "G1200170, G12001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 017, the NHGIS PUMA code is 01701" +in.county_and_puma "G1200190, G12001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 019, the NHGIS PUMA code is 01900" +in.county_and_puma "G1200210, G12002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02101" +in.county_and_puma "G1200210, G12002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02102" +in.county_and_puma "G1200210, G12002103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02103" +in.county_and_puma "G1200230, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 023, the NHGIS PUMA code is 02300" +in.county_and_puma "G1200270, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 027, the NHGIS PUMA code is 02700" +in.county_and_puma "G1200290, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 029, the NHGIS PUMA code is 02300" +in.county_and_puma "G1200310, G12003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03101" +in.county_and_puma "G1200310, G12003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03102" +in.county_and_puma "G1200310, G12003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03103" +in.county_and_puma "G1200310, G12003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03104" +in.county_and_puma "G1200310, G12003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03105" +in.county_and_puma "G1200310, G12003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03106" +in.county_and_puma "G1200310, G12003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03107" +in.county_and_puma "G1200330, G12003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 033, the NHGIS PUMA code is 03301" +in.county_and_puma "G1200330, G12003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 033, the NHGIS PUMA code is 03302" +in.county_and_puma "G1200350, G12003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 035, the NHGIS PUMA code is 03500" +in.county_and_puma "G1200370, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 037, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200390, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 039, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200410, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 041, the NHGIS PUMA code is 02300" +in.county_and_puma "G1200430, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 043, the NHGIS PUMA code is 09300" +in.county_and_puma "G1200450, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 045, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200470, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 047, the NHGIS PUMA code is 12100" +in.county_and_puma "G1200490, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 049, the NHGIS PUMA code is 02700" +in.county_and_puma "G1200510, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 051, the NHGIS PUMA code is 09300" +in.county_and_puma "G1200530, G12005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 053, the NHGIS PUMA code is 05301" +in.county_and_puma "G1200550, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 055, the NHGIS PUMA code is 02700" +in.county_and_puma "G1200550, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 055, the NHGIS PUMA code is 09300" +in.county_and_puma "G1200570, G12005701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05701" +in.county_and_puma "G1200570, G12005702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05702" +in.county_and_puma "G1200570, G12005703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05703" +in.county_and_puma "G1200570, G12005704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05704" +in.county_and_puma "G1200570, G12005705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05705" +in.county_and_puma "G1200570, G12005706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05706" +in.county_and_puma "G1200570, G12005707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05707" +in.county_and_puma "G1200570, G12005708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05708" +in.county_and_puma "G1200590, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 059, the NHGIS PUMA code is 00500" +in.county_and_puma "G1200610, G12006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 061, the NHGIS PUMA code is 06100" +in.county_and_puma "G1200630, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 063, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200650, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 065, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200670, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 067, the NHGIS PUMA code is 12100" +in.county_and_puma "G1200690, G12006901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06901" +in.county_and_puma "G1200690, G12006902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06902" +in.county_and_puma "G1200690, G12006903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06903" +in.county_and_puma "G1200710, G12007101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07101" +in.county_and_puma "G1200710, G12007102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07102" +in.county_and_puma "G1200710, G12007103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07103" +in.county_and_puma "G1200710, G12007104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07104" +in.county_and_puma "G1200710, G12007105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07105" +in.county_and_puma "G1200730, G12007300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 073, the NHGIS PUMA code is 07300" +in.county_and_puma "G1200730, G12007301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 073, the NHGIS PUMA code is 07301" +in.county_and_puma "G1200750, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 075, the NHGIS PUMA code is 02300" +in.county_and_puma "G1200770, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 077, the NHGIS PUMA code is 06300" +in.county_and_puma "G1200790, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 079, the NHGIS PUMA code is 12100" +in.county_and_puma "G1200810, G12008101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08101" +in.county_and_puma "G1200810, G12008102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08102" +in.county_and_puma "G1200810, G12008103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08103" +in.county_and_puma "G1200830, G12008301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08301" +in.county_and_puma "G1200830, G12008302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08302" +in.county_and_puma "G1200830, G12008303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08303" +in.county_and_puma "G1200850, G12008500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 085, the NHGIS PUMA code is 08500" +in.county_and_puma "G1200860, G12008601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08601" +in.county_and_puma "G1200860, G12008602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08602" +in.county_and_puma "G1200860, G12008603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08603" +in.county_and_puma "G1200860, G12008604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08604" +in.county_and_puma "G1200860, G12008605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08605" +in.county_and_puma "G1200860, G12008606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08606" +in.county_and_puma "G1200860, G12008607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08607" +in.county_and_puma "G1200860, G12008608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08608" +in.county_and_puma "G1200860, G12008609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08609" +in.county_and_puma "G1200860, G12008610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08610" +in.county_and_puma "G1200860, G12008611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08611" +in.county_and_puma "G1200860, G12008612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08612" +in.county_and_puma "G1200860, G12008613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08613" +in.county_and_puma "G1200860, G12008614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08614" +in.county_and_puma "G1200860, G12008615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08615" +in.county_and_puma "G1200860, G12008616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08616" +in.county_and_puma "G1200860, G12008617" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08617" +in.county_and_puma "G1200860, G12008618" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08618" +in.county_and_puma "G1200860, G12008619" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08619" +in.county_and_puma "G1200860, G12008620" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08620" +in.county_and_puma "G1200860, G12008621" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08621" +in.county_and_puma "G1200860, G12008622" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08622" +in.county_and_puma "G1200860, G12008623" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08623" +in.county_and_puma "G1200860, G12008624" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08624" +in.county_and_puma "G1200860, G12008700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08700" +in.county_and_puma "G1200870, G12008700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 087, the NHGIS PUMA code is 08700" +in.county_and_puma "G1200890, G12008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 089, the NHGIS PUMA code is 08900" +in.county_and_puma "G1200910, G12009100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 091, the NHGIS PUMA code is 09100" +in.county_and_puma "G1200930, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 093, the NHGIS PUMA code is 09300" +in.county_and_puma "G1200950, G12009501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09501" +in.county_and_puma "G1200950, G12009502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09502" +in.county_and_puma "G1200950, G12009503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09503" +in.county_and_puma "G1200950, G12009504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09504" +in.county_and_puma "G1200950, G12009505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09505" +in.county_and_puma "G1200950, G12009506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09506" +in.county_and_puma "G1200950, G12009507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09507" +in.county_and_puma "G1200950, G12009508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09508" +in.county_and_puma "G1200950, G12009509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09509" +in.county_and_puma "G1200950, G12009510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09510" +in.county_and_puma "G1200970, G12009701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 097, the NHGIS PUMA code is 09701" +in.county_and_puma "G1200970, G12009702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 097, the NHGIS PUMA code is 09702" +in.county_and_puma "G1200990, G12009901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09901" +in.county_and_puma "G1200990, G12009902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09902" +in.county_and_puma "G1200990, G12009903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09903" +in.county_and_puma "G1200990, G12009904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09904" +in.county_and_puma "G1200990, G12009905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09905" +in.county_and_puma "G1200990, G12009906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09906" +in.county_and_puma "G1200990, G12009907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09907" +in.county_and_puma "G1200990, G12009908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09908" +in.county_and_puma "G1200990, G12009909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09909" +in.county_and_puma "G1200990, G12009910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09910" +in.county_and_puma "G1200990, G12009911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09911" +in.county_and_puma "G1201010, G12010101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10101" +in.county_and_puma "G1201010, G12010102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10102" +in.county_and_puma "G1201010, G12010103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10103" +in.county_and_puma "G1201010, G12010104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10104" +in.county_and_puma "G1201030, G12010301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10301" +in.county_and_puma "G1201030, G12010302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10302" +in.county_and_puma "G1201030, G12010303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10303" +in.county_and_puma "G1201030, G12010304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10304" +in.county_and_puma "G1201030, G12010305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10305" +in.county_and_puma "G1201030, G12010306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10306" +in.county_and_puma "G1201030, G12010307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10307" +in.county_and_puma "G1201030, G12010308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10308" +in.county_and_puma "G1201050, G12010501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10501" +in.county_and_puma "G1201050, G12010502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10502" +in.county_and_puma "G1201050, G12010503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10503" +in.county_and_puma "G1201050, G12010504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10504" +in.county_and_puma "G1201070, G12010700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 107, the NHGIS PUMA code is 10700" +in.county_and_puma "G1201090, G12010700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 109, the NHGIS PUMA code is 10700" +in.county_and_puma "G1201090, G12010900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 109, the NHGIS PUMA code is 10900" +in.county_and_puma "G1201110, G12011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 111, the NHGIS PUMA code is 11101" +in.county_and_puma "G1201110, G12011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 111, the NHGIS PUMA code is 11102" +in.county_and_puma "G1201130, G12011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 113, the NHGIS PUMA code is 11300" +in.county_and_puma "G1201150, G12011501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11501" +in.county_and_puma "G1201150, G12011502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11502" +in.county_and_puma "G1201150, G12011503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11503" +in.county_and_puma "G1201170, G12011701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11701" +in.county_and_puma "G1201170, G12011702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11702" +in.county_and_puma "G1201170, G12011703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11703" +in.county_and_puma "G1201170, G12011704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11704" +in.county_and_puma "G1201190, G12006902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 119, the NHGIS PUMA code is 06902" +in.county_and_puma "G1201190, G12006903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 119, the NHGIS PUMA code is 06903" +in.county_and_puma "G1201210, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 121, the NHGIS PUMA code is 12100" +in.county_and_puma "G1201230, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 123, the NHGIS PUMA code is 12100" +in.county_and_puma "G1201250, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 125, the NHGIS PUMA code is 02300" +in.county_and_puma "G1201270, G12003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 03500" +in.county_and_puma "G1201270, G12012701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12701" +in.county_and_puma "G1201270, G12012702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12702" +in.county_and_puma "G1201270, G12012703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12703" +in.county_and_puma "G1201270, G12012704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12704" +in.county_and_puma "G1201290, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 129, the NHGIS PUMA code is 06300" +in.county_and_puma "G1201310, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 131, the NHGIS PUMA code is 00500" +in.county_and_puma "G1201330, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 133, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300010, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 001, the NHGIS PUMA code is 01200" +in.county_and_puma "G1300030, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 003, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300050, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 005, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300070, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 007, the NHGIS PUMA code is 01100" +in.county_and_puma "G1300090, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 009, the NHGIS PUMA code is 01600" +in.county_and_puma "G1300110, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 011, the NHGIS PUMA code is 03500" +in.county_and_puma "G1300130, G13003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 013, the NHGIS PUMA code is 03800" +in.county_and_puma "G1300150, G13002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 015, the NHGIS PUMA code is 02900" +in.county_and_puma "G1300170, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 017, the NHGIS PUMA code is 00700" +in.county_and_puma "G1300190, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 019, the NHGIS PUMA code is 00700" +in.county_and_puma "G1300210, G13001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 021, the NHGIS PUMA code is 01400" +in.county_and_puma "G1300230, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 023, the NHGIS PUMA code is 01300" +in.county_and_puma "G1300250, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 025, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300270, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 027, the NHGIS PUMA code is 00700" +in.county_and_puma "G1300290, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 029, the NHGIS PUMA code is 00200" +in.county_and_puma "G1300310, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 031, the NHGIS PUMA code is 00300" +in.county_and_puma "G1300330, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 033, the NHGIS PUMA code is 04200" +in.county_and_puma "G1300350, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 035, the NHGIS PUMA code is 01900" +in.county_and_puma "G1300370, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 037, the NHGIS PUMA code is 01100" +in.county_and_puma "G1300390, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G1300430, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 043, the NHGIS PUMA code is 01300" +in.county_and_puma "G1300450, G13002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 045, the NHGIS PUMA code is 02300" +in.county_and_puma "G1300470, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 047, the NHGIS PUMA code is 02600" +in.county_and_puma "G1300490, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 049, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300510, G13000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 051, the NHGIS PUMA code is 00401" +in.county_and_puma "G1300510, G13000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 051, the NHGIS PUMA code is 00402" +in.county_and_puma "G1300530, G13001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 053, the NHGIS PUMA code is 01700" +in.county_and_puma "G1300550, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 055, the NHGIS PUMA code is 02600" +in.county_and_puma "G1300570, G13003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 057, the NHGIS PUMA code is 03101" +in.county_and_puma "G1300570, G13003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 057, the NHGIS PUMA code is 03102" +in.county_and_puma "G1300590, G13003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 059, the NHGIS PUMA code is 03600" +in.county_and_puma "G1300610, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 061, the NHGIS PUMA code is 01800" +in.county_and_puma "G1300630, G13005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 063, the NHGIS PUMA code is 05001" +in.county_and_puma "G1300630, G13005002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 063, the NHGIS PUMA code is 05002" +in.county_and_puma "G1300650, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 065, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300670, G13003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03001" +in.county_and_puma "G1300670, G13003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03002" +in.county_and_puma "G1300670, G13003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03003" +in.county_and_puma "G1300670, G13003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03004" +in.county_and_puma "G1300670, G13003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03005" +in.county_and_puma "G1300690, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 069, the NHGIS PUMA code is 00500" +in.county_and_puma "G1300710, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 071, the NHGIS PUMA code is 00800" +in.county_and_puma "G1300730, G13004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 073, the NHGIS PUMA code is 04100" +in.county_and_puma "G1300750, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 075, the NHGIS PUMA code is 00700" +in.county_and_puma "G1300770, G13002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 077, the NHGIS PUMA code is 02100" +in.county_and_puma "G1300790, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 079, the NHGIS PUMA code is 01600" +in.county_and_puma "G1300810, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 081, the NHGIS PUMA code is 01800" +in.county_and_puma "G1300830, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 083, the NHGIS PUMA code is 02600" +in.county_and_puma "G1300850, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 085, the NHGIS PUMA code is 03200" +in.county_and_puma "G1300870, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 087, the NHGIS PUMA code is 01100" +in.county_and_puma "G1300890, G13001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 01007" +in.county_and_puma "G1300890, G13001008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 01008" +in.county_and_puma "G1300890, G13002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02001" +in.county_and_puma "G1300890, G13002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02002" +in.county_and_puma "G1300890, G13002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02003" +in.county_and_puma "G1300890, G13002004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02004" +in.county_and_puma "G1300910, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 091, the NHGIS PUMA code is 01300" +in.county_and_puma "G1300930, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 093, the NHGIS PUMA code is 01800" +in.county_and_puma "G1300950, G13000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 095, the NHGIS PUMA code is 00900" +in.county_and_puma "G1300970, G13004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 097, the NHGIS PUMA code is 04400" +in.county_and_puma "G1300990, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 099, the NHGIS PUMA code is 01100" +in.county_and_puma "G1301010, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 101, the NHGIS PUMA code is 00500" +in.county_and_puma "G1301030, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 103, the NHGIS PUMA code is 00300" +in.county_and_puma "G1301050, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 105, the NHGIS PUMA code is 03700" +in.county_and_puma "G1301070, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 107, the NHGIS PUMA code is 01300" +in.county_and_puma "G1301090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 109, the NHGIS PUMA code is 01200" +in.county_and_puma "G1301110, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 111, the NHGIS PUMA code is 02800" +in.county_and_puma "G1301130, G13002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 113, the NHGIS PUMA code is 02400" +in.county_and_puma "G1301150, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 115, the NHGIS PUMA code is 02500" +in.county_and_puma "G1301170, G13003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 117, the NHGIS PUMA code is 03300" +in.county_and_puma "G1301190, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 119, the NHGIS PUMA code is 03500" +in.county_and_puma "G1301210, G13001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01001" +in.county_and_puma "G1301210, G13001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01002" +in.county_and_puma "G1301210, G13001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01003" +in.county_and_puma "G1301210, G13001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01004" +in.county_and_puma "G1301210, G13001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01005" +in.county_and_puma "G1301210, G13001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01006" +in.county_and_puma "G1301210, G13001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01007" +in.county_and_puma "G1301210, G13004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 04600" +in.county_and_puma "G1301230, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 123, the NHGIS PUMA code is 02800" +in.county_and_puma "G1301250, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 125, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301270, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 127, the NHGIS PUMA code is 00100" +in.county_and_puma "G1301290, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 129, the NHGIS PUMA code is 02800" +in.county_and_puma "G1301310, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 131, the NHGIS PUMA code is 01100" +in.county_and_puma "G1301330, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 133, the NHGIS PUMA code is 03700" +in.county_and_puma "G1301350, G13004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04001" +in.county_and_puma "G1301350, G13004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04002" +in.county_and_puma "G1301350, G13004003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04003" +in.county_and_puma "G1301350, G13004004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04004" +in.county_and_puma "G1301350, G13004005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04005" +in.county_and_puma "G1301350, G13004006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04006" +in.county_and_puma "G1301370, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 137, the NHGIS PUMA code is 03500" +in.county_and_puma "G1301390, G13003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 139, the NHGIS PUMA code is 03400" +in.county_and_puma "G1301410, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 141, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301430, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 143, the NHGIS PUMA code is 02500" +in.county_and_puma "G1301450, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 145, the NHGIS PUMA code is 01800" +in.county_and_puma "G1301470, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 147, the NHGIS PUMA code is 03500" +in.county_and_puma "G1301490, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 149, the NHGIS PUMA code is 02200" +in.county_and_puma "G1301510, G13006001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 151, the NHGIS PUMA code is 06001" +in.county_and_puma "G1301510, G13006002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 151, the NHGIS PUMA code is 06002" +in.county_and_puma "G1301530, G13001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 153, the NHGIS PUMA code is 01500" +in.county_and_puma "G1301550, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 155, the NHGIS PUMA code is 00700" +in.county_and_puma "G1301570, G13003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 157, the NHGIS PUMA code is 03800" +in.county_and_puma "G1301590, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 159, the NHGIS PUMA code is 03900" +in.county_and_puma "G1301610, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 161, the NHGIS PUMA code is 01200" +in.county_and_puma "G1301630, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 163, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301650, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 165, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301670, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 167, the NHGIS PUMA code is 01300" +in.county_and_puma "G1301690, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 169, the NHGIS PUMA code is 01600" +in.county_and_puma "G1301710, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 171, the NHGIS PUMA code is 01900" +in.county_and_puma "G1301730, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 173, the NHGIS PUMA code is 00500" +in.county_and_puma "G1301750, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 175, the NHGIS PUMA code is 01300" +in.county_and_puma "G1301770, G13000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 177, the NHGIS PUMA code is 00900" +in.county_and_puma "G1301790, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 179, the NHGIS PUMA code is 00200" +in.county_and_puma "G1301810, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 181, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301830, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 183, the NHGIS PUMA code is 00200" +in.county_and_puma "G1301850, G13000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 185, the NHGIS PUMA code is 00600" +in.county_and_puma "G1301870, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 187, the NHGIS PUMA code is 03200" +in.county_and_puma "G1301890, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 189, the NHGIS PUMA code is 04200" +in.county_and_puma "G1301910, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 191, the NHGIS PUMA code is 00100" +in.county_and_puma "G1301930, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 193, the NHGIS PUMA code is 01800" +in.county_and_puma "G1301950, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 195, the NHGIS PUMA code is 03700" +in.county_and_puma "G1301970, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 197, the NHGIS PUMA code is 01800" +in.county_and_puma "G1301990, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 199, the NHGIS PUMA code is 02200" +in.county_and_puma "G1302010, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 201, the NHGIS PUMA code is 01100" +in.county_and_puma "G1302050, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 205, the NHGIS PUMA code is 01100" +in.county_and_puma "G1302070, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 207, the NHGIS PUMA code is 01600" +in.county_and_puma "G1302090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 209, the NHGIS PUMA code is 01200" +in.county_and_puma "G1302110, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 211, the NHGIS PUMA code is 03900" +in.county_and_puma "G1302130, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 213, the NHGIS PUMA code is 02800" +in.county_and_puma "G1302150, G13001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 215, the NHGIS PUMA code is 01700" +in.county_and_puma "G1302170, G13004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 217, the NHGIS PUMA code is 04300" +in.county_and_puma "G1302190, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 219, the NHGIS PUMA code is 03700" +in.county_and_puma "G1302210, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 221, the NHGIS PUMA code is 03700" +in.county_and_puma "G1302230, G13004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 223, the NHGIS PUMA code is 04500" +in.county_and_puma "G1302250, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 225, the NHGIS PUMA code is 01600" +in.county_and_puma "G1302270, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 227, the NHGIS PUMA code is 02800" +in.county_and_puma "G1302290, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 229, the NHGIS PUMA code is 00500" +in.county_and_puma "G1302310, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 231, the NHGIS PUMA code is 01900" +in.county_and_puma "G1302330, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 233, the NHGIS PUMA code is 02500" +in.county_and_puma "G1302350, G13001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 235, the NHGIS PUMA code is 01500" +in.county_and_puma "G1302370, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 237, the NHGIS PUMA code is 01600" +in.county_and_puma "G1302390, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 239, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302410, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 241, the NHGIS PUMA code is 03200" +in.county_and_puma "G1302430, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 243, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302450, G13004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 245, the NHGIS PUMA code is 04000" +in.county_and_puma "G1302470, G13004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 247, the NHGIS PUMA code is 04300" +in.county_and_puma "G1302490, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 249, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302510, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 251, the NHGIS PUMA code is 00300" +in.county_and_puma "G1302530, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 253, the NHGIS PUMA code is 01100" +in.county_and_puma "G1302550, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 255, the NHGIS PUMA code is 01900" +in.county_and_puma "G1302570, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 257, the NHGIS PUMA code is 03500" +in.county_and_puma "G1302590, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 259, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302610, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 261, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302630, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 263, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302650, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 265, the NHGIS PUMA code is 04200" +in.county_and_puma "G1302670, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 267, the NHGIS PUMA code is 01200" +in.county_and_puma "G1302690, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 269, the NHGIS PUMA code is 01800" +in.county_and_puma "G1302710, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 271, the NHGIS PUMA code is 01200" +in.county_and_puma "G1302730, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 273, the NHGIS PUMA code is 01100" +in.county_and_puma "G1302750, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 275, the NHGIS PUMA code is 00800" +in.county_and_puma "G1302770, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 277, the NHGIS PUMA code is 00700" +in.county_and_puma "G1302790, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 279, the NHGIS PUMA code is 01200" +in.county_and_puma "G1302810, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 281, the NHGIS PUMA code is 03200" +in.county_and_puma "G1302830, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 283, the NHGIS PUMA code is 01300" +in.county_and_puma "G1302850, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 285, the NHGIS PUMA code is 02200" +in.county_and_puma "G1302870, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 287, the NHGIS PUMA code is 00700" +in.county_and_puma "G1302890, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 289, the NHGIS PUMA code is 01600" +in.county_and_puma "G1302910, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 291, the NHGIS PUMA code is 03200" +in.county_and_puma "G1302930, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 293, the NHGIS PUMA code is 01900" +in.county_and_puma "G1302950, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 295, the NHGIS PUMA code is 02600" +in.county_and_puma "G1302970, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 297, the NHGIS PUMA code is 03900" +in.county_and_puma "G1302990, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 299, the NHGIS PUMA code is 00500" +in.county_and_puma "G1303010, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 301, the NHGIS PUMA code is 04200" +in.county_and_puma "G1303030, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 303, the NHGIS PUMA code is 04200" +in.county_and_puma "G1303050, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 305, the NHGIS PUMA code is 01200" +in.county_and_puma "G1303070, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 307, the NHGIS PUMA code is 01800" +in.county_and_puma "G1303090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 309, the NHGIS PUMA code is 01200" +in.county_and_puma "G1303110, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 311, the NHGIS PUMA code is 03200" +in.county_and_puma "G1303130, G13002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 313, the NHGIS PUMA code is 02700" +in.county_and_puma "G1303150, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 315, the NHGIS PUMA code is 01300" +in.county_and_puma "G1303170, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 317, the NHGIS PUMA code is 04200" +in.county_and_puma "G1303190, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 319, the NHGIS PUMA code is 01600" +in.county_and_puma "G1303210, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 321, the NHGIS PUMA code is 00800" +in.county_and_puma "G1500010, G15000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 001, the NHGIS PUMA code is 00200" +in.county_and_puma "G1500030, G15000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00301" +in.county_and_puma "G1500030, G15000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00302" +in.county_and_puma "G1500030, G15000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00303" +in.county_and_puma "G1500030, G15000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00304" +in.county_and_puma "G1500030, G15000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00305" +in.county_and_puma "G1500030, G15000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00306" +in.county_and_puma "G1500030, G15000307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00307" +in.county_and_puma "G1500030, G15000308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00308" +in.county_and_puma "G1500070, G15000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G1500090, G15000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 009, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600010, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00400" +in.county_and_puma "G1600010, G16000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00600" +in.county_and_puma "G1600010, G16000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00701" +in.county_and_puma "G1600010, G16000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00702" +in.county_and_puma "G1600010, G16000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00800" +in.county_and_puma "G1600030, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 003, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600050, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 005, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600070, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 007, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600090, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 009, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600110, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 011, the NHGIS PUMA code is 01100" +in.county_and_puma "G1600110, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 011, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600130, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 013, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600150, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 015, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600170, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 017, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600190, G16001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 019, the NHGIS PUMA code is 01200" +in.county_and_puma "G1600210, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 021, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600230, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 023, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600250, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 025, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600270, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00400" +in.county_and_puma "G1600270, G16000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00500" +in.county_and_puma "G1600270, G16000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00600" +in.county_and_puma "G1600290, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 029, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600310, G16000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 031, the NHGIS PUMA code is 00900" +in.county_and_puma "G1600330, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 033, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600350, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 035, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600370, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 037, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600390, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 039, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600410, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 041, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600430, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 043, the NHGIS PUMA code is 01100" +in.county_and_puma "G1600450, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 045, the NHGIS PUMA code is 00400" +in.county_and_puma "G1600470, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 047, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600490, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 049, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600510, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 051, the NHGIS PUMA code is 01100" +in.county_and_puma "G1600530, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 053, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600550, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 055, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600550, G16000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 055, the NHGIS PUMA code is 00200" +in.county_and_puma "G1600570, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 057, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600590, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 059, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600610, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600630, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 063, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600650, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 065, the NHGIS PUMA code is 01100" +in.county_and_puma "G1600670, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 067, the NHGIS PUMA code is 01000" +in.county_and_puma "G1600690, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 069, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600710, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 071, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600730, G16000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 073, the NHGIS PUMA code is 00500" +in.county_and_puma "G1600750, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 075, the NHGIS PUMA code is 00400" +in.county_and_puma "G1600770, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 077, the NHGIS PUMA code is 01300" +in.county_and_puma "G1600790, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 079, the NHGIS PUMA code is 00100" +in.county_and_puma "G1600810, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 081, the NHGIS PUMA code is 01100" +in.county_and_puma "G1600830, G16000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 083, the NHGIS PUMA code is 00900" +in.county_and_puma "G1600850, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 085, the NHGIS PUMA code is 00300" +in.county_and_puma "G1600870, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 087, the NHGIS PUMA code is 00400" +in.county_and_puma "G1700010, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G1700030, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 003, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700050, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 005, the NHGIS PUMA code is 00501" +in.county_and_puma "G1700070, G17002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 007, the NHGIS PUMA code is 02901" +in.county_and_puma "G1700090, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G1700110, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 011, the NHGIS PUMA code is 02501" +in.county_and_puma "G1700130, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 013, the NHGIS PUMA code is 00401" +in.county_and_puma "G1700150, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 015, the NHGIS PUMA code is 00104" +in.county_and_puma "G1700170, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 017, the NHGIS PUMA code is 00401" +in.county_and_puma "G1700190, G17002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 019, the NHGIS PUMA code is 02100" +in.county_and_puma "G1700210, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 021, the NHGIS PUMA code is 01602" +in.county_and_puma "G1700230, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 023, the NHGIS PUMA code is 00700" +in.county_and_puma "G1700250, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 025, the NHGIS PUMA code is 00700" +in.county_and_puma "G1700270, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 027, the NHGIS PUMA code is 00501" +in.county_and_puma "G1700290, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 029, the NHGIS PUMA code is 00600" +in.county_and_puma "G1700310, G17003401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03401" +in.county_and_puma "G1700310, G17003407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03407" +in.county_and_puma "G1700310, G17003408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03408" +in.county_and_puma "G1700310, G17003409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03409" +in.county_and_puma "G1700310, G17003410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03410" +in.county_and_puma "G1700310, G17003411" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03411" +in.county_and_puma "G1700310, G17003412" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03412" +in.county_and_puma "G1700310, G17003413" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03413" +in.county_and_puma "G1700310, G17003414" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03414" +in.county_and_puma "G1700310, G17003415" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03415" +in.county_and_puma "G1700310, G17003416" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03416" +in.county_and_puma "G1700310, G17003417" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03417" +in.county_and_puma "G1700310, G17003418" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03418" +in.county_and_puma "G1700310, G17003419" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03419" +in.county_and_puma "G1700310, G17003420" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03420" +in.county_and_puma "G1700310, G17003421" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03421" +in.county_and_puma "G1700310, G17003422" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03422" +in.county_and_puma "G1700310, G17003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03501" +in.county_and_puma "G1700310, G17003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03502" +in.county_and_puma "G1700310, G17003503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03503" +in.county_and_puma "G1700310, G17003504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03504" +in.county_and_puma "G1700310, G17003520" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03520" +in.county_and_puma "G1700310, G17003521" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03521" +in.county_and_puma "G1700310, G17003522" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03522" +in.county_and_puma "G1700310, G17003523" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03523" +in.county_and_puma "G1700310, G17003524" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03524" +in.county_and_puma "G1700310, G17003525" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03525" +in.county_and_puma "G1700310, G17003526" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03526" +in.county_and_puma "G1700310, G17003527" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03527" +in.county_and_puma "G1700310, G17003528" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03528" +in.county_and_puma "G1700310, G17003529" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03529" +in.county_and_puma "G1700310, G17003530" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03530" +in.county_and_puma "G1700310, G17003531" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03531" +in.county_and_puma "G1700310, G17003532" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03532" +in.county_and_puma "G1700330, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 033, the NHGIS PUMA code is 00700" +in.county_and_puma "G1700350, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 035, the NHGIS PUMA code is 00600" +in.county_and_puma "G1700370, G17002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 037, the NHGIS PUMA code is 02601" +in.county_and_puma "G1700390, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 039, the NHGIS PUMA code is 01602" +in.county_and_puma "G1700410, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 041, the NHGIS PUMA code is 00600" +in.county_and_puma "G1700430, G17003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03202" +in.county_and_puma "G1700430, G17003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03203" +in.county_and_puma "G1700430, G17003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03204" +in.county_and_puma "G1700430, G17003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03205" +in.county_and_puma "G1700430, G17003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03207" +in.county_and_puma "G1700430, G17003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03208" +in.county_and_puma "G1700430, G17003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03209" +in.county_and_puma "G1700450, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 045, the NHGIS PUMA code is 00600" +in.county_and_puma "G1700470, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 047, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700490, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 049, the NHGIS PUMA code is 00501" +in.county_and_puma "G1700510, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 051, the NHGIS PUMA code is 00501" +in.county_and_puma "G1700530, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 053, the NHGIS PUMA code is 02200" +in.county_and_puma "G1700550, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 055, the NHGIS PUMA code is 00900" +in.county_and_puma "G1700570, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 057, the NHGIS PUMA code is 00202" +in.county_and_puma "G1700590, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 059, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700610, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 061, the NHGIS PUMA code is 00401" +in.county_and_puma "G1700630, G17003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 063, the NHGIS PUMA code is 03700" +in.county_and_puma "G1700650, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 065, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700670, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 067, the NHGIS PUMA code is 00202" +in.county_and_puma "G1700690, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 069, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700710, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 071, the NHGIS PUMA code is 00202" +in.county_and_puma "G1700730, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 073, the NHGIS PUMA code is 00202" +in.county_and_puma "G1700750, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 075, the NHGIS PUMA code is 02200" +in.county_and_puma "G1700770, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 077, the NHGIS PUMA code is 00900" +in.county_and_puma "G1700790, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 079, the NHGIS PUMA code is 00700" +in.county_and_puma "G1700810, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 081, the NHGIS PUMA code is 01001" +in.county_and_puma "G1700830, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 083, the NHGIS PUMA code is 00401" +in.county_and_puma "G1700850, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 085, the NHGIS PUMA code is 00104" +in.county_and_puma "G1700870, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 087, the NHGIS PUMA code is 00800" +in.county_and_puma "G1700890, G17003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03005" +in.county_and_puma "G1700890, G17003007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03007" +in.county_and_puma "G1700890, G17003008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03008" +in.county_and_puma "G1700890, G17003009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03009" +in.county_and_puma "G1700910, G17002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 091, the NHGIS PUMA code is 02300" +in.county_and_puma "G1700930, G17003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 093, the NHGIS PUMA code is 03700" +in.county_and_puma "G1700950, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 095, the NHGIS PUMA code is 02501" +in.county_and_puma "G1700970, G17003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03306" +in.county_and_puma "G1700970, G17003307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03307" +in.county_and_puma "G1700970, G17003308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03308" +in.county_and_puma "G1700970, G17003309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03309" +in.county_and_puma "G1700970, G17003310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03310" +in.county_and_puma "G1700990, G17002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 099, the NHGIS PUMA code is 02400" +in.county_and_puma "G1701010, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 101, the NHGIS PUMA code is 00700" +in.county_and_puma "G1701030, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 103, the NHGIS PUMA code is 00104" +in.county_and_puma "G1701050, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 105, the NHGIS PUMA code is 02200" +in.county_and_puma "G1701070, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 107, the NHGIS PUMA code is 01602" +in.county_and_puma "G1701090, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 109, the NHGIS PUMA code is 00202" +in.county_and_puma "G1701110, G17003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 111, the NHGIS PUMA code is 03601" +in.county_and_puma "G1701110, G17003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 111, the NHGIS PUMA code is 03602" +in.county_and_puma "G1701130, G17002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 113, the NHGIS PUMA code is 02000" +in.county_and_puma "G1701150, G17001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 115, the NHGIS PUMA code is 01500" +in.county_and_puma "G1701170, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 117, the NHGIS PUMA code is 00401" +in.county_and_puma "G1701190, G17001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 119, the NHGIS PUMA code is 01204" +in.county_and_puma "G1701190, G17001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 119, the NHGIS PUMA code is 01205" +in.county_and_puma "G1701210, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 121, the NHGIS PUMA code is 01001" +in.county_and_puma "G1701230, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 123, the NHGIS PUMA code is 02501" +in.county_and_puma "G1701250, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 125, the NHGIS PUMA code is 00300" +in.county_and_puma "G1701270, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 127, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701290, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 129, the NHGIS PUMA code is 01602" +in.county_and_puma "G1701310, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 131, the NHGIS PUMA code is 00202" +in.county_and_puma "G1701330, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 133, the NHGIS PUMA code is 01001" +in.county_and_puma "G1701350, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 135, the NHGIS PUMA code is 00501" +in.county_and_puma "G1701370, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 137, the NHGIS PUMA code is 00401" +in.county_and_puma "G1701390, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 139, the NHGIS PUMA code is 01602" +in.county_and_puma "G1701410, G17002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 141, the NHGIS PUMA code is 02700" +in.county_and_puma "G1701430, G17001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 143, the NHGIS PUMA code is 01701" +in.county_and_puma "G1701450, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 145, the NHGIS PUMA code is 00900" +in.county_and_puma "G1701470, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 147, the NHGIS PUMA code is 01602" +in.county_and_puma "G1701490, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 149, the NHGIS PUMA code is 00300" +in.county_and_puma "G1701510, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 151, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701530, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 153, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701550, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 155, the NHGIS PUMA code is 02501" +in.county_and_puma "G1701570, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 157, the NHGIS PUMA code is 01001" +in.county_and_puma "G1701590, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 159, the NHGIS PUMA code is 00700" +in.county_and_puma "G1701610, G17000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 161, the NHGIS PUMA code is 00105" +in.county_and_puma "G1701630, G17001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 163, the NHGIS PUMA code is 01104" +in.county_and_puma "G1701630, G17001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 163, the NHGIS PUMA code is 01105" +in.county_and_puma "G1701650, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 165, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701670, G17001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 167, the NHGIS PUMA code is 01300" +in.county_and_puma "G1701690, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 169, the NHGIS PUMA code is 00300" +in.county_and_puma "G1701710, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 171, the NHGIS PUMA code is 00401" +in.county_and_puma "G1701730, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 173, the NHGIS PUMA code is 01602" +in.county_and_puma "G1701750, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 175, the NHGIS PUMA code is 02501" +in.county_and_puma "G1701770, G17002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 177, the NHGIS PUMA code is 02700" +in.county_and_puma "G1701790, G17001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 179, the NHGIS PUMA code is 01900" +in.county_and_puma "G1701810, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 181, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701830, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 183, the NHGIS PUMA code is 02200" +in.county_and_puma "G1701850, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 185, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701870, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 187, the NHGIS PUMA code is 00202" +in.county_and_puma "G1701890, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 189, the NHGIS PUMA code is 01001" +in.county_and_puma "G1701910, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 191, the NHGIS PUMA code is 00700" +in.county_and_puma "G1701930, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 193, the NHGIS PUMA code is 00800" +in.county_and_puma "G1701950, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 195, the NHGIS PUMA code is 00104" +in.county_and_puma "G1701970, G17003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03102" +in.county_and_puma "G1701970, G17003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03105" +in.county_and_puma "G1701970, G17003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03106" +in.county_and_puma "G1701970, G17003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03107" +in.county_and_puma "G1701970, G17003108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03108" +in.county_and_puma "G1701990, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 199, the NHGIS PUMA code is 00900" +in.county_and_puma "G1702010, G17002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 201, the NHGIS PUMA code is 02801" +in.county_and_puma "G1702010, G17002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 201, the NHGIS PUMA code is 02901" +in.county_and_puma "G1702030, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 203, the NHGIS PUMA code is 02501" +in.county_and_puma "G1800010, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 001, the NHGIS PUMA code is 00900" +in.county_and_puma "G1800030, G18001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01001" +in.county_and_puma "G1800030, G18001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01002" +in.county_and_puma "G1800030, G18001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01003" +in.county_and_puma "G1800050, G18002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 005, the NHGIS PUMA code is 02900" +in.county_and_puma "G1800070, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 007, the NHGIS PUMA code is 01100" +in.county_and_puma "G1800090, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 009, the NHGIS PUMA code is 01500" +in.county_and_puma "G1800110, G18001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 011, the NHGIS PUMA code is 01801" +in.county_and_puma "G1800130, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 013, the NHGIS PUMA code is 02100" +in.county_and_puma "G1800150, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 015, the NHGIS PUMA code is 01100" +in.county_and_puma "G1800170, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 017, the NHGIS PUMA code is 01300" +in.county_and_puma "G1800190, G18003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 019, the NHGIS PUMA code is 03600" +in.county_and_puma "G1800210, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 021, the NHGIS PUMA code is 01600" +in.county_and_puma "G1800230, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 023, the NHGIS PUMA code is 01100" +in.county_and_puma "G1800250, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 025, the NHGIS PUMA code is 03400" +in.county_and_puma "G1800270, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 027, the NHGIS PUMA code is 02700" +in.county_and_puma "G1800290, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 029, the NHGIS PUMA code is 03100" +in.county_and_puma "G1800310, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 031, the NHGIS PUMA code is 03000" +in.county_and_puma "G1800330, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 033, the NHGIS PUMA code is 00600" +in.county_and_puma "G1800350, G18002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 035, the NHGIS PUMA code is 02000" +in.county_and_puma "G1800370, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 037, the NHGIS PUMA code is 03400" +in.county_and_puma "G1800390, G18000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 039, the NHGIS PUMA code is 00500" +in.county_and_puma "G1800410, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 041, the NHGIS PUMA code is 02600" +in.county_and_puma "G1800430, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 043, the NHGIS PUMA code is 03500" +in.county_and_puma "G1800450, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 045, the NHGIS PUMA code is 01600" +in.county_and_puma "G1800470, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 047, the NHGIS PUMA code is 03100" +in.county_and_puma "G1800490, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 049, the NHGIS PUMA code is 00700" +in.county_and_puma "G1800510, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 051, the NHGIS PUMA code is 03200" +in.county_and_puma "G1800530, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 053, the NHGIS PUMA code is 01400" +in.county_and_puma "G1800550, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 055, the NHGIS PUMA code is 02700" +in.county_and_puma "G1800570, G18001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01801" +in.county_and_puma "G1800570, G18001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01802" +in.county_and_puma "G1800570, G18001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01803" +in.county_and_puma "G1800590, G18002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 059, the NHGIS PUMA code is 02500" +in.county_and_puma "G1800610, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 061, the NHGIS PUMA code is 03500" +in.county_and_puma "G1800630, G18002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 063, the NHGIS PUMA code is 02200" +in.county_and_puma "G1800650, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 065, the NHGIS PUMA code is 01500" +in.county_and_puma "G1800670, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 067, the NHGIS PUMA code is 01300" +in.county_and_puma "G1800690, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 069, the NHGIS PUMA code is 00900" +in.county_and_puma "G1800710, G18002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 071, the NHGIS PUMA code is 02900" +in.county_and_puma "G1800730, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 073, the NHGIS PUMA code is 00700" +in.county_and_puma "G1800750, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 075, the NHGIS PUMA code is 01500" +in.county_and_puma "G1800770, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 077, the NHGIS PUMA code is 03000" +in.county_and_puma "G1800790, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 079, the NHGIS PUMA code is 03000" +in.county_and_puma "G1800810, G18002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 081, the NHGIS PUMA code is 02400" +in.county_and_puma "G1800830, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 083, the NHGIS PUMA code is 03400" +in.county_and_puma "G1800850, G18000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 085, the NHGIS PUMA code is 00800" +in.county_and_puma "G1800870, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 087, the NHGIS PUMA code is 00600" +in.county_and_puma "G1800890, G18000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00101" +in.county_and_puma "G1800890, G18000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00102" +in.county_and_puma "G1800890, G18000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00103" +in.county_and_puma "G1800890, G18000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00104" +in.county_and_puma "G1800910, G18000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 091, the NHGIS PUMA code is 00300" +in.county_and_puma "G1800930, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 093, the NHGIS PUMA code is 02700" +in.county_and_puma "G1800950, G18001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 095, the NHGIS PUMA code is 01900" +in.county_and_puma "G1800970, G18002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02301" +in.county_and_puma "G1800970, G18002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02302" +in.county_and_puma "G1800970, G18002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02303" +in.county_and_puma "G1800970, G18002304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02304" +in.county_and_puma "G1800970, G18002305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02305" +in.county_and_puma "G1800970, G18002306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02306" +in.county_and_puma "G1800970, G18002307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02307" +in.county_and_puma "G1800990, G18000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 099, the NHGIS PUMA code is 00800" +in.county_and_puma "G1801010, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 101, the NHGIS PUMA code is 02700" +in.county_and_puma "G1801030, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 103, the NHGIS PUMA code is 01400" +in.county_and_puma "G1801050, G18002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 105, the NHGIS PUMA code is 02800" +in.county_and_puma "G1801070, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 107, the NHGIS PUMA code is 01100" +in.county_and_puma "G1801090, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 109, the NHGIS PUMA code is 02100" +in.county_and_puma "G1801110, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 111, the NHGIS PUMA code is 00700" +in.county_and_puma "G1801130, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 113, the NHGIS PUMA code is 00600" +in.county_and_puma "G1801150, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 115, the NHGIS PUMA code is 03100" +in.county_and_puma "G1801170, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 117, the NHGIS PUMA code is 02700" +in.county_and_puma "G1801190, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 119, the NHGIS PUMA code is 02700" +in.county_and_puma "G1801210, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 121, the NHGIS PUMA code is 01600" +in.county_and_puma "G1801230, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 123, the NHGIS PUMA code is 03400" +in.county_and_puma "G1801250, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 125, the NHGIS PUMA code is 03400" +in.county_and_puma "G1801270, G18000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 127, the NHGIS PUMA code is 00200" +in.county_and_puma "G1801290, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 129, the NHGIS PUMA code is 03200" +in.county_and_puma "G1801310, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 131, the NHGIS PUMA code is 00700" +in.county_and_puma "G1801330, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 133, the NHGIS PUMA code is 02100" +in.county_and_puma "G1801350, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 135, the NHGIS PUMA code is 01500" +in.county_and_puma "G1801370, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 137, the NHGIS PUMA code is 03100" +in.county_and_puma "G1801390, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 139, the NHGIS PUMA code is 02600" +in.county_and_puma "G1801410, G18000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 141, the NHGIS PUMA code is 00401" +in.county_and_puma "G1801410, G18000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 141, the NHGIS PUMA code is 00402" +in.county_and_puma "G1801430, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 143, the NHGIS PUMA code is 03000" +in.county_and_puma "G1801450, G18002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 145, the NHGIS PUMA code is 02500" +in.county_and_puma "G1801470, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 147, the NHGIS PUMA code is 03400" +in.county_and_puma "G1801490, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 149, the NHGIS PUMA code is 00700" +in.county_and_puma "G1801510, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 151, the NHGIS PUMA code is 00600" +in.county_and_puma "G1801530, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 153, the NHGIS PUMA code is 01600" +in.county_and_puma "G1801550, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 155, the NHGIS PUMA code is 03100" +in.county_and_puma "G1801570, G18001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 157, the NHGIS PUMA code is 01200" +in.county_and_puma "G1801590, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 159, the NHGIS PUMA code is 01300" +in.county_and_puma "G1801610, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 161, the NHGIS PUMA code is 02600" +in.county_and_puma "G1801630, G18003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 163, the NHGIS PUMA code is 03300" +in.county_and_puma "G1801650, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 165, the NHGIS PUMA code is 01600" +in.county_and_puma "G1801670, G18001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 167, the NHGIS PUMA code is 01700" +in.county_and_puma "G1801690, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 169, the NHGIS PUMA code is 01400" +in.county_and_puma "G1801710, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 171, the NHGIS PUMA code is 01600" +in.county_and_puma "G1801730, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 173, the NHGIS PUMA code is 03200" +in.county_and_puma "G1801750, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 175, the NHGIS PUMA code is 03500" +in.county_and_puma "G1801770, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 177, the NHGIS PUMA code is 02600" +in.county_and_puma "G1801790, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 179, the NHGIS PUMA code is 00900" +in.county_and_puma "G1801810, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 181, the NHGIS PUMA code is 01100" +in.county_and_puma "G1801830, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 183, the NHGIS PUMA code is 00900" +in.county_and_puma "G1900010, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 001, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900030, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 003, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900050, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900070, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 007, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900090, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 009, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900110, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 011, the NHGIS PUMA code is 01200" +in.county_and_puma "G1900130, G19000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 013, the NHGIS PUMA code is 00500" +in.county_and_puma "G1900150, G19001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 015, the NHGIS PUMA code is 01300" +in.county_and_puma "G1900170, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900190, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 019, the NHGIS PUMA code is 00700" +in.county_and_puma "G1900210, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 021, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900230, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 023, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900250, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 025, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900270, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 027, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900290, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 029, the NHGIS PUMA code is 02100" +in.county_and_puma "G1900310, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 031, the NHGIS PUMA code is 00800" +in.county_and_puma "G1900330, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 033, the NHGIS PUMA code is 00200" +in.county_and_puma "G1900350, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 035, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900370, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 037, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900390, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 039, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900410, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 041, the NHGIS PUMA code is 00100" +in.county_and_puma "G1900430, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 043, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900450, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 045, the NHGIS PUMA code is 00800" +in.county_and_puma "G1900470, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 047, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900490, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 049, the NHGIS PUMA code is 01400" +in.county_and_puma "G1900490, G19001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 049, the NHGIS PUMA code is 01500" +in.county_and_puma "G1900510, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 051, the NHGIS PUMA code is 02200" +in.county_and_puma "G1900530, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 053, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900550, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 055, the NHGIS PUMA code is 00700" +in.county_and_puma "G1900570, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 057, the NHGIS PUMA code is 02300" +in.county_and_puma "G1900590, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 059, the NHGIS PUMA code is 00100" +in.county_and_puma "G1900610, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 061, the NHGIS PUMA code is 00700" +in.county_and_puma "G1900630, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 063, the NHGIS PUMA code is 00100" +in.county_and_puma "G1900650, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 065, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900670, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 067, the NHGIS PUMA code is 00200" +in.county_and_puma "G1900690, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 069, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900710, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 071, the NHGIS PUMA code is 02100" +in.county_and_puma "G1900730, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 073, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900750, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 075, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900770, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 077, the NHGIS PUMA code is 01800" +in.county_and_puma "G1900790, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 079, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900810, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 081, the NHGIS PUMA code is 00200" +in.county_and_puma "G1900830, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 083, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900850, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 085, the NHGIS PUMA code is 02100" +in.county_and_puma "G1900870, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 087, the NHGIS PUMA code is 02300" +in.county_and_puma "G1900890, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 089, the NHGIS PUMA code is 00400" +in.county_and_puma "G1900910, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 091, the NHGIS PUMA code is 00600" +in.county_and_puma "G1900930, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 093, the NHGIS PUMA code is 01900" +in.county_and_puma "G1900950, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 095, the NHGIS PUMA code is 01200" +in.county_and_puma "G1900970, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 097, the NHGIS PUMA code is 00700" +in.county_and_puma "G1900990, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 099, the NHGIS PUMA code is 01400" +in.county_and_puma "G1901010, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 101, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901030, G19001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 103, the NHGIS PUMA code is 01100" +in.county_and_puma "G1901050, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 105, the NHGIS PUMA code is 00800" +in.county_and_puma "G1901070, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 107, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901090, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 109, the NHGIS PUMA code is 00200" +in.county_and_puma "G1901110, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 111, the NHGIS PUMA code is 02300" +in.county_and_puma "G1901130, G19001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 113, the NHGIS PUMA code is 01000" +in.county_and_puma "G1901150, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 115, the NHGIS PUMA code is 02300" +in.county_and_puma "G1901170, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 117, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901190, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 119, the NHGIS PUMA code is 00100" +in.county_and_puma "G1901210, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 121, the NHGIS PUMA code is 01400" +in.county_and_puma "G1901230, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 123, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901250, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 125, the NHGIS PUMA code is 01400" +in.county_and_puma "G1901270, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 127, the NHGIS PUMA code is 01200" +in.county_and_puma "G1901290, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 129, the NHGIS PUMA code is 02100" +in.county_and_puma "G1901310, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 131, the NHGIS PUMA code is 00200" +in.county_and_puma "G1901330, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 133, the NHGIS PUMA code is 01900" +in.county_and_puma "G1901350, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 135, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901370, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 137, the NHGIS PUMA code is 02100" +in.county_and_puma "G1901390, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 139, the NHGIS PUMA code is 00800" +in.county_and_puma "G1901410, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 141, the NHGIS PUMA code is 00100" +in.county_and_puma "G1901430, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 143, the NHGIS PUMA code is 00100" +in.county_and_puma "G1901450, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 145, the NHGIS PUMA code is 02100" +in.county_and_puma "G1901470, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 147, the NHGIS PUMA code is 00100" +in.county_and_puma "G1901490, G19002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 149, the NHGIS PUMA code is 02000" +in.county_and_puma "G1901510, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 151, the NHGIS PUMA code is 01900" +in.county_and_puma "G1901530, G19001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01500" +in.county_and_puma "G1901530, G19001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01600" +in.county_and_puma "G1901530, G19001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01700" +in.county_and_puma "G1901550, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 155, the NHGIS PUMA code is 02100" +in.county_and_puma "G1901570, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 157, the NHGIS PUMA code is 01200" +in.county_and_puma "G1901590, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 159, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901610, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 161, the NHGIS PUMA code is 01900" +in.county_and_puma "G1901630, G19000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 163, the NHGIS PUMA code is 00900" +in.county_and_puma "G1901650, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 165, the NHGIS PUMA code is 02100" +in.county_and_puma "G1901670, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 167, the NHGIS PUMA code is 00100" +in.county_and_puma "G1901690, G19001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 169, the NHGIS PUMA code is 01300" +in.county_and_puma "G1901710, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 171, the NHGIS PUMA code is 01200" +in.county_and_puma "G1901730, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 173, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901750, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 175, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901770, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 177, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901790, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 179, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901810, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 181, the NHGIS PUMA code is 01400" +in.county_and_puma "G1901830, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 183, the NHGIS PUMA code is 02200" +in.county_and_puma "G1901850, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 185, the NHGIS PUMA code is 01800" +in.county_and_puma "G1901870, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 187, the NHGIS PUMA code is 00600" +in.county_and_puma "G1901890, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 189, the NHGIS PUMA code is 00200" +in.county_and_puma "G1901910, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 191, the NHGIS PUMA code is 00400" +in.county_and_puma "G1901930, G19002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 193, the NHGIS PUMA code is 02000" +in.county_and_puma "G1901950, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 195, the NHGIS PUMA code is 00200" +in.county_and_puma "G1901970, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 197, the NHGIS PUMA code is 00600" +in.county_and_puma "G2000010, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 001, the NHGIS PUMA code is 01400" +in.county_and_puma "G2000030, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 003, the NHGIS PUMA code is 01400" +in.county_and_puma "G2000050, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G2000070, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 007, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000090, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 009, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000110, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 011, the NHGIS PUMA code is 01400" +in.county_and_puma "G2000130, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 013, the NHGIS PUMA code is 00802" +in.county_and_puma "G2000150, G20001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 015, the NHGIS PUMA code is 01302" +in.county_and_puma "G2000150, G20001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 015, the NHGIS PUMA code is 01304" +in.county_and_puma "G2000170, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 017, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000190, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 019, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000210, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 021, the NHGIS PUMA code is 01500" +in.county_and_puma "G2000230, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 023, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000250, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 025, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000270, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 027, the NHGIS PUMA code is 00200" +in.county_and_puma "G2000290, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 029, the NHGIS PUMA code is 00200" +in.county_and_puma "G2000310, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 031, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000330, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 033, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000350, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 035, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000350, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 035, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000370, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 037, the NHGIS PUMA code is 01500" +in.county_and_puma "G2000390, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000410, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 041, the NHGIS PUMA code is 00200" +in.county_and_puma "G2000430, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 043, the NHGIS PUMA code is 00400" +in.county_and_puma "G2000450, G20000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 045, the NHGIS PUMA code is 00700" +in.county_and_puma "G2000470, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 047, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000490, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 049, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000510, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 051, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000530, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 053, the NHGIS PUMA code is 00200" +in.county_and_puma "G2000550, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 055, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000570, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 057, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000590, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 059, the NHGIS PUMA code is 01400" +in.county_and_puma "G2000610, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G2000630, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 063, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000650, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 065, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000670, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 067, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000690, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 069, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000710, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 071, the NHGIS PUMA code is 00100" +in.county_and_puma "G2000730, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 073, the NHGIS PUMA code is 00900" +in.county_and_puma "G2000750, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 075, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000770, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 077, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000790, G20001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 079, the NHGIS PUMA code is 01301" +in.county_and_puma "G2000810, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 081, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000830, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 083, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000850, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 085, the NHGIS PUMA code is 00802" +in.county_and_puma "G2000870, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 087, the NHGIS PUMA code is 00400" +in.county_and_puma "G2000890, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 089, the NHGIS PUMA code is 00200" +in.county_and_puma "G2000910, G20000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00601" +in.county_and_puma "G2000910, G20000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00602" +in.county_and_puma "G2000910, G20000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00603" +in.county_and_puma "G2000910, G20000604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00604" +in.county_and_puma "G2000930, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 093, the NHGIS PUMA code is 01200" +in.county_and_puma "G2000950, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 095, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000970, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 097, the NHGIS PUMA code is 01100" +in.county_and_puma "G2000990, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 099, the NHGIS PUMA code is 01500" +in.county_and_puma "G2001010, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 101, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001030, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 103, the NHGIS PUMA code is 00400" +in.county_and_puma "G2001050, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 105, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001070, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 107, the NHGIS PUMA code is 01400" +in.county_and_puma "G2001090, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 109, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001110, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 111, the NHGIS PUMA code is 00900" +in.county_and_puma "G2001130, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 113, the NHGIS PUMA code is 01000" +in.county_and_puma "G2001150, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 115, the NHGIS PUMA code is 00900" +in.county_and_puma "G2001170, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 117, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001190, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 119, the NHGIS PUMA code is 01200" +in.county_and_puma "G2001210, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 121, the NHGIS PUMA code is 01400" +in.county_and_puma "G2001230, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 123, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001250, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 125, the NHGIS PUMA code is 01500" +in.county_and_puma "G2001270, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 127, the NHGIS PUMA code is 00900" +in.county_and_puma "G2001290, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 129, the NHGIS PUMA code is 01200" +in.county_and_puma "G2001310, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 131, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001330, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 133, the NHGIS PUMA code is 01500" +in.county_and_puma "G2001350, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 135, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001370, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 137, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001390, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 139, the NHGIS PUMA code is 00802" +in.county_and_puma "G2001410, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 141, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001430, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 143, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001450, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 145, the NHGIS PUMA code is 01100" +in.county_and_puma "G2001470, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 147, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001490, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 149, the NHGIS PUMA code is 00300" +in.county_and_puma "G2001510, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 151, the NHGIS PUMA code is 01100" +in.county_and_puma "G2001530, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 153, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001550, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 155, the NHGIS PUMA code is 01000" +in.county_and_puma "G2001570, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 157, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001590, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 159, the NHGIS PUMA code is 01000" +in.county_and_puma "G2001610, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 161, the NHGIS PUMA code is 00300" +in.county_and_puma "G2001630, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 163, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001650, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 165, the NHGIS PUMA code is 01100" +in.county_and_puma "G2001670, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 167, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001690, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 169, the NHGIS PUMA code is 00200" +in.county_and_puma "G2001710, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 171, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001730, G20001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01301" +in.county_and_puma "G2001730, G20001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01302" +in.county_and_puma "G2001730, G20001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01303" +in.county_and_puma "G2001730, G20001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01304" +in.county_and_puma "G2001750, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 175, the NHGIS PUMA code is 01200" +in.county_and_puma "G2001770, G20000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 177, the NHGIS PUMA code is 00801" +in.county_and_puma "G2001770, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 177, the NHGIS PUMA code is 00802" +in.county_and_puma "G2001790, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 179, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001810, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 181, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001830, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 183, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001850, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 185, the NHGIS PUMA code is 01100" +in.county_and_puma "G2001870, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 187, the NHGIS PUMA code is 01200" +in.county_and_puma "G2001890, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 189, the NHGIS PUMA code is 01200" +in.county_and_puma "G2001910, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 191, the NHGIS PUMA code is 01100" +in.county_and_puma "G2001930, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 193, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001950, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 195, the NHGIS PUMA code is 00100" +in.county_and_puma "G2001970, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 197, the NHGIS PUMA code is 00802" +in.county_and_puma "G2001990, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 199, the NHGIS PUMA code is 00100" +in.county_and_puma "G2002010, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 201, the NHGIS PUMA code is 00200" +in.county_and_puma "G2002030, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 203, the NHGIS PUMA code is 00100" +in.county_and_puma "G2002050, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 205, the NHGIS PUMA code is 00900" +in.county_and_puma "G2002070, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 207, the NHGIS PUMA code is 00900" +in.county_and_puma "G2002090, G20000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 209, the NHGIS PUMA code is 00500" +in.county_and_puma "G2100010, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 001, the NHGIS PUMA code is 00600" +in.county_and_puma "G2100030, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 003, the NHGIS PUMA code is 00400" +in.county_and_puma "G2100050, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 005, the NHGIS PUMA code is 02000" +in.county_and_puma "G2100070, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G2100090, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G2100110, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 011, the NHGIS PUMA code is 02700" +in.county_and_puma "G2100130, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 013, the NHGIS PUMA code is 00900" +in.county_and_puma "G2100150, G21002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 015, the NHGIS PUMA code is 02500" +in.county_and_puma "G2100170, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 017, the NHGIS PUMA code is 02300" +in.county_and_puma "G2100190, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 019, the NHGIS PUMA code is 02800" +in.county_and_puma "G2100210, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 021, the NHGIS PUMA code is 02100" +in.county_and_puma "G2100230, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 023, the NHGIS PUMA code is 02700" +in.county_and_puma "G2100250, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 025, the NHGIS PUMA code is 01000" +in.county_and_puma "G2100270, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 027, the NHGIS PUMA code is 01300" +in.county_and_puma "G2100290, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 029, the NHGIS PUMA code is 01600" +in.county_and_puma "G2100310, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 031, the NHGIS PUMA code is 00400" +in.county_and_puma "G2100330, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 033, the NHGIS PUMA code is 00200" +in.county_and_puma "G2100350, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 035, the NHGIS PUMA code is 00100" +in.county_and_puma "G2100370, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 037, the NHGIS PUMA code is 02600" +in.county_and_puma "G2100390, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G2100410, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 041, the NHGIS PUMA code is 02600" +in.county_and_puma "G2100430, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 043, the NHGIS PUMA code is 02800" +in.county_and_puma "G2100450, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 045, the NHGIS PUMA code is 00600" +in.county_and_puma "G2100470, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 047, the NHGIS PUMA code is 00300" +in.county_and_puma "G2100490, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 049, the NHGIS PUMA code is 02300" +in.county_and_puma "G2100510, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 051, the NHGIS PUMA code is 00800" +in.county_and_puma "G2100530, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 053, the NHGIS PUMA code is 00600" +in.county_and_puma "G2100550, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 055, the NHGIS PUMA code is 00200" +in.county_and_puma "G2100570, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 057, the NHGIS PUMA code is 00600" +in.county_and_puma "G2100590, G21001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 059, the NHGIS PUMA code is 01500" +in.county_and_puma "G2100610, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 061, the NHGIS PUMA code is 00400" +in.county_and_puma "G2100630, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 063, the NHGIS PUMA code is 02800" +in.county_and_puma "G2100650, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 065, the NHGIS PUMA code is 02200" +in.county_and_puma "G2100670, G21001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 067, the NHGIS PUMA code is 01901" +in.county_and_puma "G2100670, G21001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 067, the NHGIS PUMA code is 01902" +in.county_and_puma "G2100690, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 069, the NHGIS PUMA code is 02700" +in.county_and_puma "G2100710, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 071, the NHGIS PUMA code is 01100" +in.county_and_puma "G2100730, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 073, the NHGIS PUMA code is 02000" +in.county_and_puma "G2100750, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 075, the NHGIS PUMA code is 00100" +in.county_and_puma "G2100770, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 077, the NHGIS PUMA code is 02600" +in.county_and_puma "G2100790, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 079, the NHGIS PUMA code is 02100" +in.county_and_puma "G2100810, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 081, the NHGIS PUMA code is 02600" +in.county_and_puma "G2100830, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 083, the NHGIS PUMA code is 00100" +in.county_and_puma "G2100850, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 085, the NHGIS PUMA code is 01300" +in.county_and_puma "G2100870, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 087, the NHGIS PUMA code is 00600" +in.county_and_puma "G2100890, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 089, the NHGIS PUMA code is 02800" +in.county_and_puma "G2100910, G21001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 091, the NHGIS PUMA code is 01500" +in.county_and_puma "G2100930, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 093, the NHGIS PUMA code is 01200" +in.county_and_puma "G2100930, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 093, the NHGIS PUMA code is 01300" +in.county_and_puma "G2100950, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 095, the NHGIS PUMA code is 00900" +in.county_and_puma "G2100970, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 097, the NHGIS PUMA code is 02300" +in.county_and_puma "G2100990, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 099, the NHGIS PUMA code is 00400" +in.county_and_puma "G2101010, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 101, the NHGIS PUMA code is 01400" +in.county_and_puma "G2101030, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 103, the NHGIS PUMA code is 01800" +in.county_and_puma "G2101050, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 105, the NHGIS PUMA code is 00100" +in.county_and_puma "G2101070, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 107, the NHGIS PUMA code is 00200" +in.county_and_puma "G2101090, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 109, the NHGIS PUMA code is 00800" +in.county_and_puma "G2101110, G21001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01701" +in.county_and_puma "G2101110, G21001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01702" +in.county_and_puma "G2101110, G21001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01703" +in.county_and_puma "G2101110, G21001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01704" +in.county_and_puma "G2101110, G21001705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01705" +in.county_and_puma "G2101110, G21001706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01706" +in.county_and_puma "G2101130, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 113, the NHGIS PUMA code is 02100" +in.county_and_puma "G2101150, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 115, the NHGIS PUMA code is 01100" +in.county_and_puma "G2101170, G21002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 117, the NHGIS PUMA code is 02400" +in.county_and_puma "G2101190, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 119, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101210, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 121, the NHGIS PUMA code is 00900" +in.county_and_puma "G2101230, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 123, the NHGIS PUMA code is 01200" +in.county_and_puma "G2101250, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 125, the NHGIS PUMA code is 00800" +in.county_and_puma "G2101270, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 127, the NHGIS PUMA code is 02800" +in.county_and_puma "G2101290, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 129, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101310, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 131, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101330, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 133, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101350, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 135, the NHGIS PUMA code is 02700" +in.county_and_puma "G2101370, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 137, the NHGIS PUMA code is 02100" +in.county_and_puma "G2101390, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 139, the NHGIS PUMA code is 00200" +in.county_and_puma "G2101410, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 141, the NHGIS PUMA code is 00400" +in.county_and_puma "G2101430, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 143, the NHGIS PUMA code is 00300" +in.county_and_puma "G2101450, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 145, the NHGIS PUMA code is 00100" +in.county_and_puma "G2101470, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 147, the NHGIS PUMA code is 00700" +in.county_and_puma "G2101490, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 149, the NHGIS PUMA code is 01400" +in.county_and_puma "G2101510, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 151, the NHGIS PUMA code is 02200" +in.county_and_puma "G2101530, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 153, the NHGIS PUMA code is 01100" +in.county_and_puma "G2101550, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 155, the NHGIS PUMA code is 01200" +in.county_and_puma "G2101570, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 157, the NHGIS PUMA code is 00100" +in.county_and_puma "G2101590, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 159, the NHGIS PUMA code is 01100" +in.county_and_puma "G2101610, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 161, the NHGIS PUMA code is 02700" +in.county_and_puma "G2101630, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 163, the NHGIS PUMA code is 01300" +in.county_and_puma "G2101650, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 165, the NHGIS PUMA code is 02700" +in.county_and_puma "G2101670, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 167, the NHGIS PUMA code is 02000" +in.county_and_puma "G2101690, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 169, the NHGIS PUMA code is 00400" +in.county_and_puma "G2101710, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 171, the NHGIS PUMA code is 00400" +in.county_and_puma "G2101730, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 173, the NHGIS PUMA code is 02700" +in.county_and_puma "G2101750, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 175, the NHGIS PUMA code is 02700" +in.county_and_puma "G2101770, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 177, the NHGIS PUMA code is 00200" +in.county_and_puma "G2101790, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 179, the NHGIS PUMA code is 01200" +in.county_and_puma "G2101810, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 181, the NHGIS PUMA code is 02300" +in.county_and_puma "G2101830, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 183, the NHGIS PUMA code is 01400" +in.county_and_puma "G2101850, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 185, the NHGIS PUMA code is 01800" +in.county_and_puma "G2101870, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 187, the NHGIS PUMA code is 02600" +in.county_and_puma "G2101890, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 189, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101910, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 191, the NHGIS PUMA code is 02600" +in.county_and_puma "G2101930, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 193, the NHGIS PUMA code is 01000" +in.county_and_puma "G2101950, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 195, the NHGIS PUMA code is 01100" +in.county_and_puma "G2101970, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 197, the NHGIS PUMA code is 02200" +in.county_and_puma "G2101990, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 199, the NHGIS PUMA code is 00700" +in.county_and_puma "G2102010, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 201, the NHGIS PUMA code is 02700" +in.county_and_puma "G2102030, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 203, the NHGIS PUMA code is 00800" +in.county_and_puma "G2102050, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 205, the NHGIS PUMA code is 02700" +in.county_and_puma "G2102070, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 207, the NHGIS PUMA code is 00600" +in.county_and_puma "G2102090, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 209, the NHGIS PUMA code is 02300" +in.county_and_puma "G2102110, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 211, the NHGIS PUMA code is 01600" +in.county_and_puma "G2102110, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 211, the NHGIS PUMA code is 01800" +in.county_and_puma "G2102130, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 213, the NHGIS PUMA code is 00400" +in.county_and_puma "G2102150, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 215, the NHGIS PUMA code is 01600" +in.county_and_puma "G2102170, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 217, the NHGIS PUMA code is 00600" +in.county_and_puma "G2102190, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 219, the NHGIS PUMA code is 00300" +in.county_and_puma "G2102210, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 221, the NHGIS PUMA code is 00300" +in.county_and_puma "G2102230, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 223, the NHGIS PUMA code is 01800" +in.county_and_puma "G2102250, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 225, the NHGIS PUMA code is 01400" +in.county_and_puma "G2102270, G21000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 227, the NHGIS PUMA code is 00500" +in.county_and_puma "G2102290, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 229, the NHGIS PUMA code is 01200" +in.county_and_puma "G2102310, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 231, the NHGIS PUMA code is 00700" +in.county_and_puma "G2102330, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 233, the NHGIS PUMA code is 01400" +in.county_and_puma "G2102350, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 235, the NHGIS PUMA code is 00900" +in.county_and_puma "G2102370, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 237, the NHGIS PUMA code is 01000" +in.county_and_puma "G2102390, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 239, the NHGIS PUMA code is 02000" +in.county_and_puma "G2200010, G22001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 001, the NHGIS PUMA code is 01100" +in.county_and_puma "G2200030, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 003, the NHGIS PUMA code is 00800" +in.county_and_puma "G2200050, G22001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 005, the NHGIS PUMA code is 01600" +in.county_and_puma "G2200070, G22002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 007, the NHGIS PUMA code is 02000" +in.county_and_puma "G2200090, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 009, the NHGIS PUMA code is 00600" +in.county_and_puma "G2200110, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G2200130, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 013, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200150, G22000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 015, the NHGIS PUMA code is 00200" +in.county_and_puma "G2200170, G22000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 017, the NHGIS PUMA code is 00100" +in.county_and_puma "G2200170, G22000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 017, the NHGIS PUMA code is 00101" +in.county_and_puma "G2200190, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 019, the NHGIS PUMA code is 00800" +in.county_and_puma "G2200190, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 019, the NHGIS PUMA code is 00900" +in.county_and_puma "G2200210, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 021, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200230, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 023, the NHGIS PUMA code is 00900" +in.county_and_puma "G2200250, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 025, the NHGIS PUMA code is 00600" +in.county_and_puma "G2200270, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200290, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 029, the NHGIS PUMA code is 00600" +in.county_and_puma "G2200310, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 031, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200330, G22001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01500" +in.county_and_puma "G2200330, G22001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01501" +in.county_and_puma "G2200330, G22001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01502" +in.county_and_puma "G2200350, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 035, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200370, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 037, the NHGIS PUMA code is 01400" +in.county_and_puma "G2200390, G22001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 039, the NHGIS PUMA code is 01000" +in.county_and_puma "G2200410, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 041, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200430, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 043, the NHGIS PUMA code is 00600" +in.county_and_puma "G2200450, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 045, the NHGIS PUMA code is 01300" +in.county_and_puma "G2200470, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 047, the NHGIS PUMA code is 01400" +in.county_and_puma "G2200490, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 049, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200510, G22002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02300" +in.county_and_puma "G2200510, G22002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02301" +in.county_and_puma "G2200510, G22002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02302" +in.county_and_puma "G2200510, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02500" +in.county_and_puma "G2200530, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 053, the NHGIS PUMA code is 00900" +in.county_and_puma "G2200550, G22001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 055, the NHGIS PUMA code is 01200" +in.county_and_puma "G2200550, G22001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 055, the NHGIS PUMA code is 01201" +in.county_and_puma "G2200570, G22002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 057, the NHGIS PUMA code is 02000" +in.county_and_puma "G2200590, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 059, the NHGIS PUMA code is 00600" +in.county_and_puma "G2200610, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200630, G22001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 063, the NHGIS PUMA code is 01700" +in.county_and_puma "G2200650, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 065, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200670, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 067, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200690, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 069, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200710, G22002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02400" +in.county_and_puma "G2200710, G22002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02401" +in.county_and_puma "G2200710, G22002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02402" +in.county_and_puma "G2200730, G22000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 073, the NHGIS PUMA code is 00400" +in.county_and_puma "G2200750, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 075, the NHGIS PUMA code is 02500" +in.county_and_puma "G2200770, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 077, the NHGIS PUMA code is 01400" +in.county_and_puma "G2200790, G22000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 079, the NHGIS PUMA code is 00700" +in.county_and_puma "G2200810, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 081, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200830, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 083, the NHGIS PUMA code is 00500" +in.county_and_puma "G2200850, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 085, the NHGIS PUMA code is 00300" +in.county_and_puma "G2200870, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 087, the NHGIS PUMA code is 02500" +in.county_and_puma "G2200890, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 089, the NHGIS PUMA code is 01900" +in.county_and_puma "G2200910, G22001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 091, the NHGIS PUMA code is 01700" +in.county_and_puma "G2200930, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 093, the NHGIS PUMA code is 01900" +in.county_and_puma "G2200950, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 095, the NHGIS PUMA code is 01900" +in.county_and_puma "G2200970, G22001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 097, the NHGIS PUMA code is 01000" +in.county_and_puma "G2200990, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 099, the NHGIS PUMA code is 01300" +in.county_and_puma "G2201010, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 101, the NHGIS PUMA code is 01300" +in.county_and_puma "G2201030, G22002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 103, the NHGIS PUMA code is 02200" +in.county_and_puma "G2201030, G22002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 103, the NHGIS PUMA code is 02201" +in.county_and_puma "G2201050, G22001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 105, the NHGIS PUMA code is 01800" +in.county_and_puma "G2201070, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 107, the NHGIS PUMA code is 00500" +in.county_and_puma "G2201090, G22002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 109, the NHGIS PUMA code is 02100" +in.county_and_puma "G2201110, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 111, the NHGIS PUMA code is 00500" +in.county_and_puma "G2201130, G22001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 113, the NHGIS PUMA code is 01100" +in.county_and_puma "G2201150, G22000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 115, the NHGIS PUMA code is 00700" +in.county_and_puma "G2201170, G22001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 117, the NHGIS PUMA code is 01800" +in.county_and_puma "G2201190, G22000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 119, the NHGIS PUMA code is 00200" +in.county_and_puma "G2201210, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 121, the NHGIS PUMA code is 01400" +in.county_and_puma "G2201230, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 123, the NHGIS PUMA code is 00500" +in.county_and_puma "G2201250, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 125, the NHGIS PUMA code is 01400" +in.county_and_puma "G2201270, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 127, the NHGIS PUMA code is 00600" +in.county_and_puma "G2300010, G23000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 001, the NHGIS PUMA code is 00600" +in.county_and_puma "G2300030, G23000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 003, the NHGIS PUMA code is 00100" +in.county_and_puma "G2300050, G23000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00700" +in.county_and_puma "G2300050, G23000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00800" +in.county_and_puma "G2300050, G23000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00900" +in.county_and_puma "G2300050, G23001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 01000" +in.county_and_puma "G2300070, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 007, the NHGIS PUMA code is 00200" +in.county_and_puma "G2300090, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 009, the NHGIS PUMA code is 00500" +in.county_and_puma "G2300110, G23000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 011, the NHGIS PUMA code is 00400" +in.county_and_puma "G2300130, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 013, the NHGIS PUMA code is 00500" +in.county_and_puma "G2300150, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 015, the NHGIS PUMA code is 00500" +in.county_and_puma "G2300170, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 017, the NHGIS PUMA code is 00200" +in.county_and_puma "G2300190, G23000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 019, the NHGIS PUMA code is 00300" +in.county_and_puma "G2300210, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G2300230, G23000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 023, the NHGIS PUMA code is 00700" +in.county_and_puma "G2300250, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 025, the NHGIS PUMA code is 00200" +in.county_and_puma "G2300270, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 027, the NHGIS PUMA code is 00500" +in.county_and_puma "G2300290, G23000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 029, the NHGIS PUMA code is 00100" +in.county_and_puma "G2300310, G23000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 031, the NHGIS PUMA code is 00800" +in.county_and_puma "G2300310, G23000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 031, the NHGIS PUMA code is 00900" +in.county_and_puma "G2400010, G24000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 001, the NHGIS PUMA code is 00100" +in.county_and_puma "G2400030, G24001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01201" +in.county_and_puma "G2400030, G24001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01202" +in.county_and_puma "G2400030, G24001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01203" +in.county_and_puma "G2400030, G24001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01204" +in.county_and_puma "G2400050, G24000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00501" +in.county_and_puma "G2400050, G24000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00502" +in.county_and_puma "G2400050, G24000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00503" +in.county_and_puma "G2400050, G24000504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00504" +in.county_and_puma "G2400050, G24000505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00505" +in.county_and_puma "G2400050, G24000506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00506" +in.county_and_puma "G2400050, G24000507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00507" +in.county_and_puma "G2400090, G24001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 009, the NHGIS PUMA code is 01500" +in.county_and_puma "G2400110, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 011, the NHGIS PUMA code is 01300" +in.county_and_puma "G2400130, G24000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 013, the NHGIS PUMA code is 00400" +in.county_and_puma "G2400150, G24000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 015, the NHGIS PUMA code is 00700" +in.county_and_puma "G2400170, G24001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 017, the NHGIS PUMA code is 01600" +in.county_and_puma "G2400190, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 019, the NHGIS PUMA code is 01300" +in.county_and_puma "G2400210, G24000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 021, the NHGIS PUMA code is 00301" +in.county_and_puma "G2400210, G24000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 021, the NHGIS PUMA code is 00302" +in.county_and_puma "G2400230, G24000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 023, the NHGIS PUMA code is 00100" +in.county_and_puma "G2400250, G24000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 025, the NHGIS PUMA code is 00601" +in.county_and_puma "G2400250, G24000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 025, the NHGIS PUMA code is 00602" +in.county_and_puma "G2400270, G24000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 027, the NHGIS PUMA code is 00901" +in.county_and_puma "G2400270, G24000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 027, the NHGIS PUMA code is 00902" +in.county_and_puma "G2400290, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 029, the NHGIS PUMA code is 01300" +in.county_and_puma "G2400310, G24001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01001" +in.county_and_puma "G2400310, G24001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01002" +in.county_and_puma "G2400310, G24001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01003" +in.county_and_puma "G2400310, G24001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01004" +in.county_and_puma "G2400310, G24001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01005" +in.county_and_puma "G2400310, G24001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01006" +in.county_and_puma "G2400310, G24001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01007" +in.county_and_puma "G2400330, G24001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01101" +in.county_and_puma "G2400330, G24001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01102" +in.county_and_puma "G2400330, G24001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01103" +in.county_and_puma "G2400330, G24001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01104" +in.county_and_puma "G2400330, G24001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01105" +in.county_and_puma "G2400330, G24001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01106" +in.county_and_puma "G2400330, G24001107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01107" +in.county_and_puma "G2400350, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 035, the NHGIS PUMA code is 01300" +in.county_and_puma "G2400370, G24001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 037, the NHGIS PUMA code is 01500" +in.county_and_puma "G2400390, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 039, the NHGIS PUMA code is 01400" +in.county_and_puma "G2400410, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 041, the NHGIS PUMA code is 01300" +in.county_and_puma "G2400430, G24000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 043, the NHGIS PUMA code is 00200" +in.county_and_puma "G2400450, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 045, the NHGIS PUMA code is 01400" +in.county_and_puma "G2400470, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 047, the NHGIS PUMA code is 01400" +in.county_and_puma "G2405100, G24000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00801" +in.county_and_puma "G2405100, G24000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00802" +in.county_and_puma "G2405100, G24000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00803" +in.county_and_puma "G2405100, G24000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00804" +in.county_and_puma "G2405100, G24000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00805" +in.county_and_puma "G2500010, G25004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 001, the NHGIS PUMA code is 04700" +in.county_and_puma "G2500010, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 001, the NHGIS PUMA code is 04800" +in.county_and_puma "G2500030, G25000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 003, the NHGIS PUMA code is 00100" +in.county_and_puma "G2500050, G25004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04200" +in.county_and_puma "G2500050, G25004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04301" +in.county_and_puma "G2500050, G25004302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04302" +in.county_and_puma "G2500050, G25004303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04303" +in.county_and_puma "G2500050, G25004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04500" +in.county_and_puma "G2500050, G25004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04901" +in.county_and_puma "G2500070, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 007, the NHGIS PUMA code is 04800" +in.county_and_puma "G2500090, G25000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00701" +in.county_and_puma "G2500090, G25000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00702" +in.county_and_puma "G2500090, G25000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00703" +in.county_and_puma "G2500090, G25000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00704" +in.county_and_puma "G2500090, G25001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 01000" +in.county_and_puma "G2500090, G25001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 01300" +in.county_and_puma "G2500090, G25002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 02800" +in.county_and_puma "G2500110, G25000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 011, the NHGIS PUMA code is 00200" +in.county_and_puma "G2500130, G25001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01600" +in.county_and_puma "G2500130, G25001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01900" +in.county_and_puma "G2500130, G25001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01901" +in.county_and_puma "G2500130, G25001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01902" +in.county_and_puma "G2500150, G25000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 015, the NHGIS PUMA code is 00200" +in.county_and_puma "G2500150, G25001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 015, the NHGIS PUMA code is 01600" +in.county_and_puma "G2500170, G25000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G2500170, G25000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00501" +in.county_and_puma "G2500170, G25000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00502" +in.county_and_puma "G2500170, G25000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00503" +in.county_and_puma "G2500170, G25000504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00504" +in.county_and_puma "G2500170, G25000505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00505" +in.county_and_puma "G2500170, G25000506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00506" +in.county_and_puma "G2500170, G25000507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00507" +in.county_and_puma "G2500170, G25000508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00508" +in.county_and_puma "G2500170, G25001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01000" +in.county_and_puma "G2500170, G25001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01300" +in.county_and_puma "G2500170, G25001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01400" +in.county_and_puma "G2500170, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 02400" +in.county_and_puma "G2500170, G25002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 02800" +in.county_and_puma "G2500170, G25003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 03400" +in.county_and_puma "G2500170, G25003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 03500" +in.county_and_puma "G2500190, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 019, the NHGIS PUMA code is 04800" +in.county_and_puma "G2500210, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 02400" +in.county_and_puma "G2500210, G25003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03400" +in.county_and_puma "G2500210, G25003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03500" +in.county_and_puma "G2500210, G25003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03601" +in.county_and_puma "G2500210, G25003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03602" +in.county_and_puma "G2500210, G25003603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03603" +in.county_and_puma "G2500210, G25003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03900" +in.county_and_puma "G2500210, G25004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 04000" +in.county_and_puma "G2500210, G25004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 04200" +in.county_and_puma "G2500230, G25003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 03900" +in.county_and_puma "G2500230, G25004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04000" +in.county_and_puma "G2500230, G25004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04301" +in.county_and_puma "G2500230, G25004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04901" +in.county_and_puma "G2500230, G25004902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04902" +in.county_and_puma "G2500230, G25004903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04903" +in.county_and_puma "G2500250, G25003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03301" +in.county_and_puma "G2500250, G25003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03302" +in.county_and_puma "G2500250, G25003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03303" +in.county_and_puma "G2500250, G25003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03304" +in.county_and_puma "G2500250, G25003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03305" +in.county_and_puma "G2500250, G25003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03306" +in.county_and_puma "G2500270, G25000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G2500270, G25000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00301" +in.county_and_puma "G2500270, G25000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00302" +in.county_and_puma "G2500270, G25000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00303" +in.county_and_puma "G2500270, G25000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00304" +in.county_and_puma "G2500270, G25000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00400" +in.county_and_puma "G2500270, G25001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 01400" +in.county_and_puma "G2500270, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 02400" +in.county_and_puma "G2600010, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G2600030, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G2600050, G26000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 005, the NHGIS PUMA code is 00900" +in.county_and_puma "G2600070, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 007, the NHGIS PUMA code is 00300" +in.county_and_puma "G2600090, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G2600110, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 011, the NHGIS PUMA code is 01300" +in.county_and_puma "G2600130, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600150, G26002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 015, the NHGIS PUMA code is 02000" +in.county_and_puma "G2600170, G26001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 017, the NHGIS PUMA code is 01400" +in.county_and_puma "G2600190, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 019, the NHGIS PUMA code is 00500" +in.county_and_puma "G2600210, G26002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 021, the NHGIS PUMA code is 02400" +in.county_and_puma "G2600230, G26002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 023, the NHGIS PUMA code is 02200" +in.county_and_puma "G2600250, G26002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 025, the NHGIS PUMA code is 02000" +in.county_and_puma "G2600270, G26002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 027, the NHGIS PUMA code is 02300" +in.county_and_puma "G2600290, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 029, the NHGIS PUMA code is 00400" +in.county_and_puma "G2600310, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 031, the NHGIS PUMA code is 00300" +in.county_and_puma "G2600330, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 033, the NHGIS PUMA code is 00200" +in.county_and_puma "G2600350, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 035, the NHGIS PUMA code is 01200" +in.county_and_puma "G2600370, G26001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 037, the NHGIS PUMA code is 01900" +in.county_and_puma "G2600390, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 039, the NHGIS PUMA code is 00300" +in.county_and_puma "G2600410, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 041, the NHGIS PUMA code is 00200" +in.county_and_puma "G2600430, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 043, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600450, G26001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 045, the NHGIS PUMA code is 01900" +in.county_and_puma "G2600470, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 047, the NHGIS PUMA code is 00400" +in.county_and_puma "G2600490, G26001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01701" +in.county_and_puma "G2600490, G26001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01702" +in.county_and_puma "G2600490, G26001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01703" +in.county_and_puma "G2600490, G26001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01704" +in.county_and_puma "G2600510, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 051, the NHGIS PUMA code is 01300" +in.county_and_puma "G2600530, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 053, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600550, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 055, the NHGIS PUMA code is 00500" +in.county_and_puma "G2600570, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 057, the NHGIS PUMA code is 01200" +in.county_and_puma "G2600590, G26002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 059, the NHGIS PUMA code is 02500" +in.county_and_puma "G2600610, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 061, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600630, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 063, the NHGIS PUMA code is 01600" +in.county_and_puma "G2600650, G26001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 065, the NHGIS PUMA code is 01801" +in.county_and_puma "G2600650, G26001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 065, the NHGIS PUMA code is 01802" +in.county_and_puma "G2600670, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 067, the NHGIS PUMA code is 01100" +in.county_and_puma "G2600690, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 069, the NHGIS PUMA code is 01300" +in.county_and_puma "G2600710, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 071, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600730, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 073, the NHGIS PUMA code is 01200" +in.county_and_puma "G2600750, G26002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 075, the NHGIS PUMA code is 02600" +in.county_and_puma "G2600770, G26002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 077, the NHGIS PUMA code is 02101" +in.county_and_puma "G2600770, G26002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 077, the NHGIS PUMA code is 02102" +in.county_and_puma "G2600790, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 079, the NHGIS PUMA code is 00400" +in.county_and_puma "G2600810, G26001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01001" +in.county_and_puma "G2600810, G26001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01002" +in.county_and_puma "G2600810, G26001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01003" +in.county_and_puma "G2600810, G26001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01004" +in.county_and_puma "G2600830, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 083, the NHGIS PUMA code is 00100" +in.county_and_puma "G2600850, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 085, the NHGIS PUMA code is 00600" +in.county_and_puma "G2600870, G26001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 087, the NHGIS PUMA code is 01701" +in.county_and_puma "G2600890, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 089, the NHGIS PUMA code is 00500" +in.county_and_puma "G2600910, G26002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 091, the NHGIS PUMA code is 02500" +in.county_and_puma "G2600930, G26002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 093, the NHGIS PUMA code is 02800" +in.county_and_puma "G2600950, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 095, the NHGIS PUMA code is 00200" +in.county_and_puma "G2600970, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 097, the NHGIS PUMA code is 00200" +in.county_and_puma "G2600990, G26003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03001" +in.county_and_puma "G2600990, G26003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03002" +in.county_and_puma "G2600990, G26003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03003" +in.county_and_puma "G2600990, G26003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03004" +in.county_and_puma "G2600990, G26003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03005" +in.county_and_puma "G2600990, G26003006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03006" +in.county_and_puma "G2601010, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 101, the NHGIS PUMA code is 00500" +in.county_and_puma "G2601030, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 103, the NHGIS PUMA code is 00100" +in.county_and_puma "G2601050, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 105, the NHGIS PUMA code is 00600" +in.county_and_puma "G2601070, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 107, the NHGIS PUMA code is 01100" +in.county_and_puma "G2601090, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 109, the NHGIS PUMA code is 00200" +in.county_and_puma "G2601110, G26001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 111, the NHGIS PUMA code is 01400" +in.county_and_puma "G2601130, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 113, the NHGIS PUMA code is 00400" +in.county_and_puma "G2601150, G26003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 115, the NHGIS PUMA code is 03300" +in.county_and_puma "G2601170, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 117, the NHGIS PUMA code is 01100" +in.county_and_puma "G2601190, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 119, the NHGIS PUMA code is 00300" +in.county_and_puma "G2601210, G26000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 121, the NHGIS PUMA code is 00700" +in.county_and_puma "G2601230, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 123, the NHGIS PUMA code is 00600" +in.county_and_puma "G2601250, G26002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02901" +in.county_and_puma "G2601250, G26002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02902" +in.county_and_puma "G2601250, G26002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02903" +in.county_and_puma "G2601250, G26002904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02904" +in.county_and_puma "G2601250, G26002905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02905" +in.county_and_puma "G2601250, G26002906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02906" +in.county_and_puma "G2601250, G26002907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02907" +in.county_and_puma "G2601250, G26002908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02908" +in.county_and_puma "G2601270, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 127, the NHGIS PUMA code is 00600" +in.county_and_puma "G2601290, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 129, the NHGIS PUMA code is 01300" +in.county_and_puma "G2601310, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 131, the NHGIS PUMA code is 00100" +in.county_and_puma "G2601330, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 133, the NHGIS PUMA code is 01100" +in.county_and_puma "G2601350, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 135, the NHGIS PUMA code is 00300" +in.county_and_puma "G2601370, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 137, the NHGIS PUMA code is 00300" +in.county_and_puma "G2601390, G26000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 139, the NHGIS PUMA code is 00801" +in.county_and_puma "G2601390, G26000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 139, the NHGIS PUMA code is 00802" +in.county_and_puma "G2601410, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 141, the NHGIS PUMA code is 00300" +in.county_and_puma "G2601430, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 143, the NHGIS PUMA code is 01300" +in.county_and_puma "G2601450, G26001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 145, the NHGIS PUMA code is 01500" +in.county_and_puma "G2601470, G26003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 147, the NHGIS PUMA code is 03100" +in.county_and_puma "G2601490, G26002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 149, the NHGIS PUMA code is 02200" +in.county_and_puma "G2601510, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 151, the NHGIS PUMA code is 01600" +in.county_and_puma "G2601530, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 153, the NHGIS PUMA code is 00200" +in.county_and_puma "G2601550, G26001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 155, the NHGIS PUMA code is 01704" +in.county_and_puma "G2601570, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 157, the NHGIS PUMA code is 01600" +in.county_and_puma "G2601590, G26002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 159, the NHGIS PUMA code is 02300" +in.county_and_puma "G2601610, G26002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02701" +in.county_and_puma "G2601610, G26002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02702" +in.county_and_puma "G2601610, G26002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02703" +in.county_and_puma "G2601630, G26003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03201" +in.county_and_puma "G2601630, G26003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03202" +in.county_and_puma "G2601630, G26003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03203" +in.county_and_puma "G2601630, G26003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03204" +in.county_and_puma "G2601630, G26003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03205" +in.county_and_puma "G2601630, G26003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03206" +in.county_and_puma "G2601630, G26003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03207" +in.county_and_puma "G2601630, G26003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03208" +in.county_and_puma "G2601630, G26003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03209" +in.county_and_puma "G2601630, G26003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03210" +in.county_and_puma "G2601630, G26003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03211" +in.county_and_puma "G2601630, G26003212" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03212" +in.county_and_puma "G2601630, G26003213" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03213" +in.county_and_puma "G2601650, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 165, the NHGIS PUMA code is 00400" +in.county_and_puma "G2700010, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G2700030, G27001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01101" +in.county_and_puma "G2700030, G27001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01102" +in.county_and_puma "G2700030, G27001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01103" +in.county_and_puma "G2700050, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700070, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 007, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700090, G27001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 009, the NHGIS PUMA code is 01000" +in.county_and_puma "G2700110, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G2700130, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 013, the NHGIS PUMA code is 02200" +in.county_and_puma "G2700150, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 015, the NHGIS PUMA code is 02000" +in.county_and_puma "G2700170, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 017, the NHGIS PUMA code is 00300" +in.county_and_puma "G2700170, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G2700190, G27001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 019, the NHGIS PUMA code is 01700" +in.county_and_puma "G2700210, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 021, the NHGIS PUMA code is 00300" +in.county_and_puma "G2700230, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 023, the NHGIS PUMA code is 02000" +in.county_and_puma "G2700250, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 025, the NHGIS PUMA code is 00600" +in.county_and_puma "G2700270, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 027, the NHGIS PUMA code is 00100" +in.county_and_puma "G2700290, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 029, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700310, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 031, the NHGIS PUMA code is 00400" +in.county_and_puma "G2700330, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 033, the NHGIS PUMA code is 02100" +in.county_and_puma "G2700350, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 035, the NHGIS PUMA code is 00700" +in.county_and_puma "G2700370, G27001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01501" +in.county_and_puma "G2700370, G27001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01502" +in.county_and_puma "G2700370, G27001503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01503" +in.county_and_puma "G2700390, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 039, the NHGIS PUMA code is 02400" +in.county_and_puma "G2700410, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 041, the NHGIS PUMA code is 00800" +in.county_and_puma "G2700430, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 043, the NHGIS PUMA code is 02100" +in.county_and_puma "G2700450, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 045, the NHGIS PUMA code is 02600" +in.county_and_puma "G2700470, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 047, the NHGIS PUMA code is 02400" +in.county_and_puma "G2700490, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 049, the NHGIS PUMA code is 02300" +in.county_and_puma "G2700510, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 051, the NHGIS PUMA code is 00800" +in.county_and_puma "G2700530, G27001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01401" +in.county_and_puma "G2700530, G27001402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01402" +in.county_and_puma "G2700530, G27001403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01403" +in.county_and_puma "G2700530, G27001404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01404" +in.county_and_puma "G2700530, G27001405" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01405" +in.county_and_puma "G2700530, G27001406" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01406" +in.county_and_puma "G2700530, G27001407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01407" +in.county_and_puma "G2700530, G27001408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01408" +in.county_and_puma "G2700530, G27001409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01409" +in.county_and_puma "G2700530, G27001410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01410" +in.county_and_puma "G2700550, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 055, the NHGIS PUMA code is 02600" +in.county_and_puma "G2700570, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 057, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700590, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 059, the NHGIS PUMA code is 00600" +in.county_and_puma "G2700610, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G2700630, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 063, the NHGIS PUMA code is 02100" +in.county_and_puma "G2700650, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 065, the NHGIS PUMA code is 00600" +in.county_and_puma "G2700670, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 067, the NHGIS PUMA code is 01900" +in.county_and_puma "G2700690, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 069, the NHGIS PUMA code is 00100" +in.county_and_puma "G2700710, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 071, the NHGIS PUMA code is 00400" +in.county_and_puma "G2700730, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 073, the NHGIS PUMA code is 02000" +in.county_and_puma "G2700750, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 075, the NHGIS PUMA code is 00400" +in.county_and_puma "G2700770, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 077, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700790, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 079, the NHGIS PUMA code is 02300" +in.county_and_puma "G2700810, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 081, the NHGIS PUMA code is 02000" +in.county_and_puma "G2700830, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 083, the NHGIS PUMA code is 02000" +in.county_and_puma "G2700850, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 085, the NHGIS PUMA code is 01900" +in.county_and_puma "G2700870, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 087, the NHGIS PUMA code is 00200" +in.county_and_puma "G2700890, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 089, the NHGIS PUMA code is 00100" +in.county_and_puma "G2700910, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 091, the NHGIS PUMA code is 02100" +in.county_and_puma "G2700930, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 093, the NHGIS PUMA code is 01900" +in.county_and_puma "G2700950, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 095, the NHGIS PUMA code is 00600" +in.county_and_puma "G2700970, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 097, the NHGIS PUMA code is 00700" +in.county_and_puma "G2700990, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 099, the NHGIS PUMA code is 02400" +in.county_and_puma "G2701010, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 101, the NHGIS PUMA code is 02100" +in.county_and_puma "G2701030, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 103, the NHGIS PUMA code is 02200" +in.county_and_puma "G2701050, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 105, the NHGIS PUMA code is 02100" +in.county_and_puma "G2701070, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 107, the NHGIS PUMA code is 00100" +in.county_and_puma "G2701090, G27002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 109, the NHGIS PUMA code is 02500" +in.county_and_puma "G2701110, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 111, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701130, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 113, the NHGIS PUMA code is 00100" +in.county_and_puma "G2701150, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 115, the NHGIS PUMA code is 00600" +in.county_and_puma "G2701170, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 117, the NHGIS PUMA code is 02100" +in.county_and_puma "G2701190, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 119, the NHGIS PUMA code is 00100" +in.county_and_puma "G2701210, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 121, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701230, G27001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01301" +in.county_and_puma "G2701230, G27001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01302" +in.county_and_puma "G2701230, G27001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01303" +in.county_and_puma "G2701230, G27001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01304" +in.county_and_puma "G2701250, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 125, the NHGIS PUMA code is 00100" +in.county_and_puma "G2701270, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 127, the NHGIS PUMA code is 02000" +in.county_and_puma "G2701290, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 129, the NHGIS PUMA code is 01900" +in.county_and_puma "G2701310, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 131, the NHGIS PUMA code is 02300" +in.county_and_puma "G2701330, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 133, the NHGIS PUMA code is 02100" +in.county_and_puma "G2701350, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 135, the NHGIS PUMA code is 00100" +in.county_and_puma "G2701370, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 137, the NHGIS PUMA code is 00400" +in.county_and_puma "G2701370, G27000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 137, the NHGIS PUMA code is 00500" +in.county_and_puma "G2701390, G27001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 139, the NHGIS PUMA code is 01600" +in.county_and_puma "G2701390, G27001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 139, the NHGIS PUMA code is 01700" +in.county_and_puma "G2701410, G27001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 141, the NHGIS PUMA code is 01000" +in.county_and_puma "G2701430, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 143, the NHGIS PUMA code is 01900" +in.county_and_puma "G2701450, G27000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 145, the NHGIS PUMA code is 00900" +in.county_and_puma "G2701470, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 147, the NHGIS PUMA code is 02400" +in.county_and_puma "G2701490, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 149, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701510, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 151, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701530, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 153, the NHGIS PUMA code is 00700" +in.county_and_puma "G2701550, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 155, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701570, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 157, the NHGIS PUMA code is 02600" +in.county_and_puma "G2701590, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 159, the NHGIS PUMA code is 00700" +in.county_and_puma "G2701610, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 161, the NHGIS PUMA code is 02200" +in.county_and_puma "G2701630, G27001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 163, the NHGIS PUMA code is 01201" +in.county_and_puma "G2701630, G27001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 163, the NHGIS PUMA code is 01202" +in.county_and_puma "G2701650, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 165, the NHGIS PUMA code is 02100" +in.county_and_puma "G2701670, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 167, the NHGIS PUMA code is 00800" +in.county_and_puma "G2701690, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 169, the NHGIS PUMA code is 02600" +in.county_and_puma "G2701710, G27001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 171, the NHGIS PUMA code is 01800" +in.county_and_puma "G2701730, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 173, the NHGIS PUMA code is 02000" +in.county_and_puma "G2800010, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 001, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800030, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G2800050, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 005, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800070, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 007, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800090, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 009, the NHGIS PUMA code is 00200" +in.county_and_puma "G2800110, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G2800130, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 013, the NHGIS PUMA code is 00400" +in.county_and_puma "G2800150, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 015, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800170, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G2800190, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 019, the NHGIS PUMA code is 00600" +in.county_and_puma "G2800210, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 021, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800230, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 023, the NHGIS PUMA code is 01500" +in.county_and_puma "G2800250, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 025, the NHGIS PUMA code is 00600" +in.county_and_puma "G2800270, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G2800290, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 029, the NHGIS PUMA code is 01200" +in.county_and_puma "G2800310, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 031, the NHGIS PUMA code is 01700" +in.county_and_puma "G2800330, G28000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G2800350, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 035, the NHGIS PUMA code is 01800" +in.county_and_puma "G2800370, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 037, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800390, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 039, the NHGIS PUMA code is 01900" +in.county_and_puma "G2800410, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 041, the NHGIS PUMA code is 01700" +in.county_and_puma "G2800430, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 043, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800450, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 045, the NHGIS PUMA code is 01900" +in.county_and_puma "G2800470, G28002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 047, the NHGIS PUMA code is 02000" +in.county_and_puma "G2800490, G28001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01000" +in.county_and_puma "G2800490, G28001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01100" +in.county_and_puma "G2800490, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01200" +in.county_and_puma "G2800510, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 051, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800530, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 053, the NHGIS PUMA code is 00800" +in.county_and_puma "G2800550, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 055, the NHGIS PUMA code is 00800" +in.county_and_puma "G2800570, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 057, the NHGIS PUMA code is 00400" +in.county_and_puma "G2800590, G28002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 059, the NHGIS PUMA code is 02100" +in.county_and_puma "G2800610, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 061, the NHGIS PUMA code is 01400" +in.county_and_puma "G2800630, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 063, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800650, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 065, the NHGIS PUMA code is 01700" +in.county_and_puma "G2800670, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 067, the NHGIS PUMA code is 01700" +in.county_and_puma "G2800690, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 069, the NHGIS PUMA code is 01400" +in.county_and_puma "G2800710, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 071, the NHGIS PUMA code is 00400" +in.county_and_puma "G2800730, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 073, the NHGIS PUMA code is 01800" +in.county_and_puma "G2800750, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 075, the NHGIS PUMA code is 01500" +in.county_and_puma "G2800770, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 077, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800790, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 079, the NHGIS PUMA code is 01400" +in.county_and_puma "G2800810, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 081, the NHGIS PUMA code is 00500" +in.county_and_puma "G2800830, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 083, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800850, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 085, the NHGIS PUMA code is 01600" +in.county_and_puma "G2800870, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 087, the NHGIS PUMA code is 00600" +in.county_and_puma "G2800890, G28000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 089, the NHGIS PUMA code is 00900" +in.county_and_puma "G2800890, G28001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 089, the NHGIS PUMA code is 01000" +in.county_and_puma "G2800910, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 091, the NHGIS PUMA code is 01800" +in.county_and_puma "G2800930, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 093, the NHGIS PUMA code is 00200" +in.county_and_puma "G2800950, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 095, the NHGIS PUMA code is 00400" +in.county_and_puma "G2800970, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 097, the NHGIS PUMA code is 00700" +in.county_and_puma "G2800990, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 099, the NHGIS PUMA code is 01400" +in.county_and_puma "G2801010, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 101, the NHGIS PUMA code is 01500" +in.county_and_puma "G2801030, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 103, the NHGIS PUMA code is 00600" +in.county_and_puma "G2801050, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 105, the NHGIS PUMA code is 00600" +in.county_and_puma "G2801070, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 107, the NHGIS PUMA code is 00300" +in.county_and_puma "G2801090, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 109, the NHGIS PUMA code is 01900" +in.county_and_puma "G2801110, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 111, the NHGIS PUMA code is 01800" +in.county_and_puma "G2801130, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 113, the NHGIS PUMA code is 01600" +in.county_and_puma "G2801150, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 115, the NHGIS PUMA code is 00500" +in.county_and_puma "G2801170, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 117, the NHGIS PUMA code is 00200" +in.county_and_puma "G2801190, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 119, the NHGIS PUMA code is 00300" +in.county_and_puma "G2801210, G28001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 121, the NHGIS PUMA code is 01300" +in.county_and_puma "G2801230, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 123, the NHGIS PUMA code is 01400" +in.county_and_puma "G2801250, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 125, the NHGIS PUMA code is 00800" +in.county_and_puma "G2801270, G28001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 127, the NHGIS PUMA code is 01300" +in.county_and_puma "G2801290, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 129, the NHGIS PUMA code is 01400" +in.county_and_puma "G2801310, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 131, the NHGIS PUMA code is 01900" +in.county_and_puma "G2801330, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 133, the NHGIS PUMA code is 00800" +in.county_and_puma "G2801350, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 135, the NHGIS PUMA code is 00300" +in.county_and_puma "G2801370, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 137, the NHGIS PUMA code is 00300" +in.county_and_puma "G2801390, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 139, the NHGIS PUMA code is 00200" +in.county_and_puma "G2801410, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 141, the NHGIS PUMA code is 00200" +in.county_and_puma "G2801430, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 143, the NHGIS PUMA code is 00300" +in.county_and_puma "G2801450, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 145, the NHGIS PUMA code is 00500" +in.county_and_puma "G2801470, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 147, the NHGIS PUMA code is 01600" +in.county_and_puma "G2801490, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 149, the NHGIS PUMA code is 01200" +in.county_and_puma "G2801510, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 151, the NHGIS PUMA code is 00800" +in.county_and_puma "G2801530, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 153, the NHGIS PUMA code is 01700" +in.county_and_puma "G2801550, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 155, the NHGIS PUMA code is 00600" +in.county_and_puma "G2801570, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 157, the NHGIS PUMA code is 01600" +in.county_and_puma "G2801590, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 159, the NHGIS PUMA code is 00600" +in.county_and_puma "G2801610, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 161, the NHGIS PUMA code is 00700" +in.county_and_puma "G2801630, G28000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 163, the NHGIS PUMA code is 00900" +in.county_and_puma "G2900010, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G2900030, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G2900050, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 005, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900070, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 007, the NHGIS PUMA code is 00400" +in.county_and_puma "G2900090, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 009, the NHGIS PUMA code is 02700" +in.county_and_puma "G2900110, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 011, the NHGIS PUMA code is 01200" +in.county_and_puma "G2900130, G29001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 013, the NHGIS PUMA code is 01100" +in.county_and_puma "G2900150, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 015, the NHGIS PUMA code is 01300" +in.county_and_puma "G2900170, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 017, the NHGIS PUMA code is 02200" +in.county_and_puma "G2900190, G29000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 019, the NHGIS PUMA code is 00600" +in.county_and_puma "G2900210, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G2900230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 023, the NHGIS PUMA code is 02400" +in.county_and_puma "G2900250, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 025, the NHGIS PUMA code is 00800" +in.county_and_puma "G2900270, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 027, the NHGIS PUMA code is 00500" +in.county_and_puma "G2900290, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 029, the NHGIS PUMA code is 01400" +in.county_and_puma "G2900310, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 031, the NHGIS PUMA code is 02200" +in.county_and_puma "G2900330, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 033, the NHGIS PUMA code is 00700" +in.county_and_puma "G2900350, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 035, the NHGIS PUMA code is 02400" +in.county_and_puma "G2900370, G29001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 037, the NHGIS PUMA code is 01100" +in.county_and_puma "G2900390, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 039, the NHGIS PUMA code is 01200" +in.county_and_puma "G2900410, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 041, the NHGIS PUMA code is 00700" +in.county_and_puma "G2900430, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 043, the NHGIS PUMA code is 02601" +in.county_and_puma "G2900450, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 045, the NHGIS PUMA code is 00300" +in.county_and_puma "G2900470, G29000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00901" +in.county_and_puma "G2900470, G29000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00902" +in.county_and_puma "G2900470, G29000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00903" +in.county_and_puma "G2900490, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 049, the NHGIS PUMA code is 00800" +in.county_and_puma "G2900510, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 051, the NHGIS PUMA code is 00500" +in.county_and_puma "G2900530, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 053, the NHGIS PUMA code is 00700" +in.county_and_puma "G2900550, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 055, the NHGIS PUMA code is 01500" +in.county_and_puma "G2900570, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 057, the NHGIS PUMA code is 01200" +in.county_and_puma "G2900590, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 059, the NHGIS PUMA code is 01300" +in.county_and_puma "G2900610, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 061, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900630, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 063, the NHGIS PUMA code is 00200" +in.county_and_puma "G2900650, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 065, the NHGIS PUMA code is 01500" +in.county_and_puma "G2900670, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 067, the NHGIS PUMA code is 02500" +in.county_and_puma "G2900690, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 069, the NHGIS PUMA code is 02300" +in.county_and_puma "G2900710, G29001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 071, the NHGIS PUMA code is 01600" +in.county_and_puma "G2900730, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 073, the NHGIS PUMA code is 01500" +in.county_and_puma "G2900750, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 075, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900770, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02601" +in.county_and_puma "G2900770, G29002602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02602" +in.county_and_puma "G2900770, G29002603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02603" +in.county_and_puma "G2900790, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 079, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900810, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 081, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900830, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 083, the NHGIS PUMA code is 01200" +in.county_and_puma "G2900850, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 085, the NHGIS PUMA code is 01300" +in.county_and_puma "G2900870, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 087, the NHGIS PUMA code is 00100" +in.county_and_puma "G2900890, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 089, the NHGIS PUMA code is 00700" +in.county_and_puma "G2900910, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 091, the NHGIS PUMA code is 02500" +in.county_and_puma "G2900930, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 093, the NHGIS PUMA code is 02400" +in.county_and_puma "G2900950, G29001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01001" +in.county_and_puma "G2900950, G29001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01002" +in.county_and_puma "G2900950, G29001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01003" +in.county_and_puma "G2900950, G29001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01004" +in.county_and_puma "G2900950, G29001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01005" +in.county_and_puma "G2900970, G29002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 097, the NHGIS PUMA code is 02800" +in.county_and_puma "G2900990, G29002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 099, the NHGIS PUMA code is 02001" +in.county_and_puma "G2900990, G29002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 099, the NHGIS PUMA code is 02002" +in.county_and_puma "G2901010, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 101, the NHGIS PUMA code is 00800" +in.county_and_puma "G2901030, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 103, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901050, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 105, the NHGIS PUMA code is 01300" +in.county_and_puma "G2901070, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 107, the NHGIS PUMA code is 00800" +in.county_and_puma "G2901090, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 109, the NHGIS PUMA code is 01200" +in.county_and_puma "G2901110, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 111, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901130, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 113, the NHGIS PUMA code is 00400" +in.county_and_puma "G2901150, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 115, the NHGIS PUMA code is 00100" +in.county_and_puma "G2901170, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 117, the NHGIS PUMA code is 00100" +in.county_and_puma "G2901190, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 119, the NHGIS PUMA code is 02700" +in.county_and_puma "G2901210, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 121, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 123, the NHGIS PUMA code is 02400" +in.county_and_puma "G2901250, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 125, the NHGIS PUMA code is 01500" +in.county_and_puma "G2901270, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 127, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901290, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 129, the NHGIS PUMA code is 00100" +in.county_and_puma "G2901310, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 131, the NHGIS PUMA code is 01400" +in.county_and_puma "G2901330, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 133, the NHGIS PUMA code is 02300" +in.county_and_puma "G2901350, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 135, the NHGIS PUMA code is 00500" +in.county_and_puma "G2901370, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 137, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901390, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 139, the NHGIS PUMA code is 00400" +in.county_and_puma "G2901410, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 141, the NHGIS PUMA code is 01400" +in.county_and_puma "G2901430, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 143, the NHGIS PUMA code is 02300" +in.county_and_puma "G2901450, G29002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 145, the NHGIS PUMA code is 02800" +in.county_and_puma "G2901470, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 147, the NHGIS PUMA code is 00100" +in.county_and_puma "G2901490, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 149, the NHGIS PUMA code is 02500" +in.county_and_puma "G2901510, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 151, the NHGIS PUMA code is 00500" +in.county_and_puma "G2901530, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 153, the NHGIS PUMA code is 02500" +in.county_and_puma "G2901550, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 155, the NHGIS PUMA code is 02300" +in.county_and_puma "G2901570, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 157, the NHGIS PUMA code is 02100" +in.county_and_puma "G2901590, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 159, the NHGIS PUMA code is 00700" +in.county_and_puma "G2901610, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 161, the NHGIS PUMA code is 01500" +in.county_and_puma "G2901630, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 163, the NHGIS PUMA code is 00400" +in.county_and_puma "G2901650, G29000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 165, the NHGIS PUMA code is 00903" +in.county_and_puma "G2901670, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 167, the NHGIS PUMA code is 01300" +in.county_and_puma "G2901690, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 169, the NHGIS PUMA code is 01400" +in.county_and_puma "G2901710, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 171, the NHGIS PUMA code is 00100" +in.county_and_puma "G2901730, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 173, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901750, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 175, the NHGIS PUMA code is 00700" +in.county_and_puma "G2901770, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 177, the NHGIS PUMA code is 00800" +in.county_and_puma "G2901790, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 179, the NHGIS PUMA code is 02400" +in.county_and_puma "G2901810, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 181, the NHGIS PUMA code is 02400" +in.county_and_puma "G2901830, G29001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01701" +in.county_and_puma "G2901830, G29001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01702" +in.county_and_puma "G2901830, G29001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01703" +in.county_and_puma "G2901850, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 185, the NHGIS PUMA code is 01200" +in.county_and_puma "G2901860, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 186, the NHGIS PUMA code is 02100" +in.county_and_puma "G2901870, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 187, the NHGIS PUMA code is 02100" +in.county_and_puma "G2901890, G29001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01801" +in.county_and_puma "G2901890, G29001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01802" +in.county_and_puma "G2901890, G29001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01803" +in.county_and_puma "G2901890, G29001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01804" +in.county_and_puma "G2901890, G29001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01805" +in.county_and_puma "G2901890, G29001806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01806" +in.county_and_puma "G2901890, G29001807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01807" +in.county_and_puma "G2901890, G29001808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01808" +in.county_and_puma "G2901950, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 195, the NHGIS PUMA code is 00700" +in.county_and_puma "G2901970, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 197, the NHGIS PUMA code is 00300" +in.county_and_puma "G2901990, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 199, the NHGIS PUMA code is 00300" +in.county_and_puma "G2902010, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 201, the NHGIS PUMA code is 02200" +in.county_and_puma "G2902030, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 203, the NHGIS PUMA code is 02500" +in.county_and_puma "G2902050, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 205, the NHGIS PUMA code is 00300" +in.county_and_puma "G2902070, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 207, the NHGIS PUMA code is 02300" +in.county_and_puma "G2902090, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 209, the NHGIS PUMA code is 02700" +in.county_and_puma "G2902110, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 211, the NHGIS PUMA code is 00100" +in.county_and_puma "G2902130, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 213, the NHGIS PUMA code is 02700" +in.county_and_puma "G2902150, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 215, the NHGIS PUMA code is 02500" +in.county_and_puma "G2902170, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 217, the NHGIS PUMA code is 01200" +in.county_and_puma "G2902190, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 219, the NHGIS PUMA code is 00400" +in.county_and_puma "G2902210, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 221, the NHGIS PUMA code is 02100" +in.county_and_puma "G2902230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 223, the NHGIS PUMA code is 02400" +in.county_and_puma "G2902250, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 225, the NHGIS PUMA code is 02601" +in.county_and_puma "G2902270, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 227, the NHGIS PUMA code is 00100" +in.county_and_puma "G2902290, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 229, the NHGIS PUMA code is 02500" +in.county_and_puma "G2905100, G29001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 510, the NHGIS PUMA code is 01901" +in.county_and_puma "G2905100, G29001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 510, the NHGIS PUMA code is 01902" +in.county_and_puma "G3000010, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000030, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 003, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000050, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000070, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 007, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000090, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 009, the NHGIS PUMA code is 00500" +in.county_and_puma "G3000110, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 011, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000130, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 013, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000150, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 015, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000170, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 017, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000190, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 019, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000210, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 021, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000230, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 023, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000250, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 025, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000270, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 027, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000290, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 029, the NHGIS PUMA code is 00100" +in.county_and_puma "G3000310, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 031, the NHGIS PUMA code is 00500" +in.county_and_puma "G3000330, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 033, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000350, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 035, the NHGIS PUMA code is 00100" +in.county_and_puma "G3000370, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 037, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000390, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 039, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000410, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 041, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000430, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 043, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000450, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 045, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000470, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 047, the NHGIS PUMA code is 00200" +in.county_and_puma "G3000490, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 049, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000510, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 051, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000530, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 053, the NHGIS PUMA code is 00100" +in.county_and_puma "G3000550, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 055, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000570, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 057, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000590, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 059, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000610, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 061, the NHGIS PUMA code is 00200" +in.county_and_puma "G3000630, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 063, the NHGIS PUMA code is 00200" +in.county_and_puma "G3000650, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 065, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000670, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 067, the NHGIS PUMA code is 00500" +in.county_and_puma "G3000690, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 069, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000710, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 071, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000730, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 073, the NHGIS PUMA code is 00400" +in.county_and_puma "G3000750, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 075, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000770, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 077, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000790, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 079, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000810, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 081, the NHGIS PUMA code is 00200" +in.county_and_puma "G3000830, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 083, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000850, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 085, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000870, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 087, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000890, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 089, the NHGIS PUMA code is 00200" +in.county_and_puma "G3000910, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 091, the NHGIS PUMA code is 00600" +in.county_and_puma "G3000930, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 093, the NHGIS PUMA code is 00300" +in.county_and_puma "G3000950, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 095, the NHGIS PUMA code is 00500" +in.county_and_puma "G3000970, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 097, the NHGIS PUMA code is 00500" +in.county_and_puma "G3000990, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 099, the NHGIS PUMA code is 00400" +in.county_and_puma "G3001010, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 101, the NHGIS PUMA code is 00400" +in.county_and_puma "G3001030, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 103, the NHGIS PUMA code is 00600" +in.county_and_puma "G3001050, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 105, the NHGIS PUMA code is 00600" +in.county_and_puma "G3001070, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 107, the NHGIS PUMA code is 00400" +in.county_and_puma "G3001090, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 109, the NHGIS PUMA code is 00600" +in.county_and_puma "G3001110, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 111, the NHGIS PUMA code is 00600" +in.county_and_puma "G3001110, G30000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 111, the NHGIS PUMA code is 00700" +in.county_and_puma "G3100010, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 001, the NHGIS PUMA code is 00500" +in.county_and_puma "G3100030, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100050, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100070, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100090, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100110, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 011, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100130, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100150, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 015, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100170, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 017, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100190, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 019, the NHGIS PUMA code is 00500" +in.county_and_puma "G3100210, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100230, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 023, the NHGIS PUMA code is 00600" +in.county_and_puma "G3100250, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 025, the NHGIS PUMA code is 00701" +in.county_and_puma "G3100270, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 027, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100290, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 029, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100310, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 031, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100330, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100350, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 035, the NHGIS PUMA code is 00500" +in.county_and_puma "G3100370, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 037, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100390, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 039, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100410, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 041, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100430, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 043, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100450, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 045, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100470, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 047, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100490, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 049, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100510, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 051, the NHGIS PUMA code is 00200" +in.county_and_puma "G3100530, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 053, the NHGIS PUMA code is 00701" +in.county_and_puma "G3100550, G31000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00901" +in.county_and_puma "G3100550, G31000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00902" +in.county_and_puma "G3100550, G31000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00903" +in.county_and_puma "G3100550, G31000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00904" +in.county_and_puma "G3100570, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 057, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100590, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 059, the NHGIS PUMA code is 00600" +in.county_and_puma "G3100610, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 061, the NHGIS PUMA code is 00500" +in.county_and_puma "G3100630, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 063, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100650, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 065, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100670, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 067, the NHGIS PUMA code is 00600" +in.county_and_puma "G3100690, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 069, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100710, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 071, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100730, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 073, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100750, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 075, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100770, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 077, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100790, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 079, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100810, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 081, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100830, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 083, the NHGIS PUMA code is 00500" +in.county_and_puma "G3100850, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 085, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100870, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 087, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100890, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 089, the NHGIS PUMA code is 00100" +in.county_and_puma "G3100910, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 091, the NHGIS PUMA code is 00400" +in.county_and_puma "G3100930, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 093, the NHGIS PUMA code is 00300" +in.county_and_puma "G3100950, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 095, the NHGIS PUMA code is 00600" +in.county_and_puma "G3100970, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 097, the NHGIS PUMA code is 00600" +in.county_and_puma "G3100990, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 099, the NHGIS PUMA code is 00500" +in.county_and_puma "G3101010, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 101, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101030, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 103, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101050, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 105, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101070, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 107, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101090, G31000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 109, the NHGIS PUMA code is 00801" +in.county_and_puma "G3101090, G31000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 109, the NHGIS PUMA code is 00802" +in.county_and_puma "G3101110, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 111, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101130, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 113, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101150, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 115, the NHGIS PUMA code is 00300" +in.county_and_puma "G3101170, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 117, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101190, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 119, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101210, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 121, the NHGIS PUMA code is 00300" +in.county_and_puma "G3101230, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 123, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101250, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 125, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101270, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 127, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101290, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 129, the NHGIS PUMA code is 00500" +in.county_and_puma "G3101310, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 131, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101330, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 133, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101350, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 135, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101370, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 137, the NHGIS PUMA code is 00500" +in.county_and_puma "G3101390, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 139, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101410, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 141, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101430, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 143, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101450, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 145, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101470, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 147, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101490, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 149, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101510, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 151, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101530, G31000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 153, the NHGIS PUMA code is 00702" +in.county_and_puma "G3101550, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 155, the NHGIS PUMA code is 00701" +in.county_and_puma "G3101570, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 157, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101590, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 159, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101610, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 161, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101630, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 163, the NHGIS PUMA code is 00300" +in.county_and_puma "G3101650, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 165, the NHGIS PUMA code is 00100" +in.county_and_puma "G3101670, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 167, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101690, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 169, the NHGIS PUMA code is 00600" +in.county_and_puma "G3101710, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 171, the NHGIS PUMA code is 00400" +in.county_and_puma "G3101730, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 173, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101750, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 175, the NHGIS PUMA code is 00300" +in.county_and_puma "G3101770, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 177, the NHGIS PUMA code is 00701" +in.county_and_puma "G3101790, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 179, the NHGIS PUMA code is 00200" +in.county_and_puma "G3101810, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 181, the NHGIS PUMA code is 00500" +in.county_and_puma "G3101830, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 183, the NHGIS PUMA code is 00300" +in.county_and_puma "G3101850, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 185, the NHGIS PUMA code is 00600" +in.county_and_puma "G3200010, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200030, G32000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00401" +in.county_and_puma "G3200030, G32000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00402" +in.county_and_puma "G3200030, G32000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00403" +in.county_and_puma "G3200030, G32000404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00404" +in.county_and_puma "G3200030, G32000405" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00405" +in.county_and_puma "G3200030, G32000406" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00406" +in.county_and_puma "G3200030, G32000407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00407" +in.county_and_puma "G3200030, G32000408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00408" +in.county_and_puma "G3200030, G32000409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00409" +in.county_and_puma "G3200030, G32000410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00410" +in.county_and_puma "G3200030, G32000411" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00411" +in.county_and_puma "G3200030, G32000412" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00412" +in.county_and_puma "G3200030, G32000413" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00413" +in.county_and_puma "G3200050, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G3200070, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 007, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200090, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200110, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 011, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200130, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 013, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200150, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 015, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200170, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 017, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200190, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 019, the NHGIS PUMA code is 00200" +in.county_and_puma "G3200210, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 021, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200230, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 023, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200270, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G3200290, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 029, the NHGIS PUMA code is 00200" +in.county_and_puma "G3200310, G32000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00101" +in.county_and_puma "G3200310, G32000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00102" +in.county_and_puma "G3200310, G32000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00103" +in.county_and_puma "G3200330, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 033, the NHGIS PUMA code is 00300" +in.county_and_puma "G3205100, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 510, the NHGIS PUMA code is 00200" +in.county_and_puma "G3300010, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 001, the NHGIS PUMA code is 00200" +in.county_and_puma "G3300030, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G3300030, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 003, the NHGIS PUMA code is 00300" +in.county_and_puma "G3300050, G33000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 005, the NHGIS PUMA code is 00500" +in.county_and_puma "G3300070, G33000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G3300090, G33000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 009, the NHGIS PUMA code is 00100" +in.county_and_puma "G3300110, G33000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00600" +in.county_and_puma "G3300110, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00700" +in.county_and_puma "G3300110, G33000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G3300110, G33000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00900" +in.county_and_puma "G3300130, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00200" +in.county_and_puma "G3300130, G33000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00400" +in.county_and_puma "G3300130, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00700" +in.county_and_puma "G3300150, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 00300" +in.county_and_puma "G3300150, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 00700" +in.county_and_puma "G3300150, G33001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 01000" +in.county_and_puma "G3300170, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 017, the NHGIS PUMA code is 00300" +in.county_and_puma "G3300190, G33000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 019, the NHGIS PUMA code is 00500" +in.county_and_puma "G3400010, G34000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 00101" +in.county_and_puma "G3400010, G34000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 00102" +in.county_and_puma "G3400010, G34002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 02600" +in.county_and_puma "G3400030, G34000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00301" +in.county_and_puma "G3400030, G34000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00302" +in.county_and_puma "G3400030, G34000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00303" +in.county_and_puma "G3400030, G34000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00304" +in.county_and_puma "G3400030, G34000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00305" +in.county_and_puma "G3400030, G34000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00306" +in.county_and_puma "G3400030, G34000307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00307" +in.county_and_puma "G3400030, G34000308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00308" +in.county_and_puma "G3400050, G34002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02001" +in.county_and_puma "G3400050, G34002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02002" +in.county_and_puma "G3400050, G34002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02003" +in.county_and_puma "G3400070, G34002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02101" +in.county_and_puma "G3400070, G34002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02102" +in.county_and_puma "G3400070, G34002103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02103" +in.county_and_puma "G3400070, G34002104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02104" +in.county_and_puma "G3400090, G34002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 009, the NHGIS PUMA code is 02600" +in.county_and_puma "G3400110, G34002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 011, the NHGIS PUMA code is 02400" +in.county_and_puma "G3400110, G34002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 011, the NHGIS PUMA code is 02500" +in.county_and_puma "G3400130, G34001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01301" +in.county_and_puma "G3400130, G34001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01302" +in.county_and_puma "G3400130, G34001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01401" +in.county_and_puma "G3400130, G34001402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01402" +in.county_and_puma "G3400130, G34001403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01403" +in.county_and_puma "G3400130, G34001404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01404" +in.county_and_puma "G3400150, G34002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 015, the NHGIS PUMA code is 02201" +in.county_and_puma "G3400150, G34002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 015, the NHGIS PUMA code is 02202" +in.county_and_puma "G3400170, G34000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00601" +in.county_and_puma "G3400170, G34000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00602" +in.county_and_puma "G3400170, G34000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00701" +in.county_and_puma "G3400170, G34000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00702" +in.county_and_puma "G3400170, G34000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00703" +in.county_and_puma "G3400190, G34000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 019, the NHGIS PUMA code is 00800" +in.county_and_puma "G3400210, G34002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02301" +in.county_and_puma "G3400210, G34002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02302" +in.county_and_puma "G3400210, G34002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02303" +in.county_and_puma "G3400230, G34000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00901" +in.county_and_puma "G3400230, G34000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00902" +in.county_and_puma "G3400230, G34000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00903" +in.county_and_puma "G3400230, G34000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00904" +in.county_and_puma "G3400230, G34000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00905" +in.county_and_puma "G3400230, G34000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00906" +in.county_and_puma "G3400230, G34000907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00907" +in.county_and_puma "G3400250, G34001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01101" +in.county_and_puma "G3400250, G34001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01102" +in.county_and_puma "G3400250, G34001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01103" +in.county_and_puma "G3400250, G34001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01104" +in.county_and_puma "G3400250, G34001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01105" +in.county_and_puma "G3400250, G34001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01106" +in.county_and_puma "G3400270, G34001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01501" +in.county_and_puma "G3400270, G34001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01502" +in.county_and_puma "G3400270, G34001503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01503" +in.county_and_puma "G3400270, G34001504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01504" +in.county_and_puma "G3400290, G34001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01201" +in.county_and_puma "G3400290, G34001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01202" +in.county_and_puma "G3400290, G34001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01203" +in.county_and_puma "G3400290, G34001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01204" +in.county_and_puma "G3400290, G34001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01205" +in.county_and_puma "G3400310, G34000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00400" +in.county_and_puma "G3400310, G34000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00501" +in.county_and_puma "G3400310, G34000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00502" +in.county_and_puma "G3400310, G34000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00503" +in.county_and_puma "G3400330, G34002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 033, the NHGIS PUMA code is 02500" +in.county_and_puma "G3400350, G34001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01001" +in.county_and_puma "G3400350, G34001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01002" +in.county_and_puma "G3400350, G34001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01003" +in.county_and_puma "G3400370, G34001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 037, the NHGIS PUMA code is 01600" +in.county_and_puma "G3400390, G34001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01800" +in.county_and_puma "G3400390, G34001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01901" +in.county_and_puma "G3400390, G34001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01902" +in.county_and_puma "G3400390, G34001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01903" +in.county_and_puma "G3400390, G34001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01904" +in.county_and_puma "G3400410, G34001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 041, the NHGIS PUMA code is 01700" +in.county_and_puma "G3500010, G35000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00700" +in.county_and_puma "G3500010, G35000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00801" +in.county_and_puma "G3500010, G35000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00802" +in.county_and_puma "G3500010, G35000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00803" +in.county_and_puma "G3500010, G35000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00804" +in.county_and_puma "G3500010, G35000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00805" +in.county_and_puma "G3500010, G35000806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00806" +in.county_and_puma "G3500030, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 003, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500050, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 005, the NHGIS PUMA code is 01100" +in.county_and_puma "G3500060, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 006, the NHGIS PUMA code is 00100" +in.county_and_puma "G3500070, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 007, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500090, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500110, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 011, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500130, G35001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 013, the NHGIS PUMA code is 01001" +in.county_and_puma "G3500130, G35001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 013, the NHGIS PUMA code is 01002" +in.county_and_puma "G3500150, G35001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 015, the NHGIS PUMA code is 01200" +in.county_and_puma "G3500170, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 017, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500190, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 019, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500210, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 021, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500230, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 023, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500250, G35001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 025, the NHGIS PUMA code is 01200" +in.county_and_puma "G3500270, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 027, the NHGIS PUMA code is 01100" +in.county_and_puma "G3500280, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 028, the NHGIS PUMA code is 00300" +in.county_and_puma "G3500290, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 029, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500310, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 031, the NHGIS PUMA code is 00100" +in.county_and_puma "G3500330, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 033, the NHGIS PUMA code is 00300" +in.county_and_puma "G3500350, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 035, the NHGIS PUMA code is 01100" +in.county_and_puma "G3500370, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 037, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500390, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 039, the NHGIS PUMA code is 00300" +in.county_and_puma "G3500410, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 041, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500430, G35000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 043, the NHGIS PUMA code is 00600" +in.county_and_puma "G3500450, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 045, the NHGIS PUMA code is 00100" +in.county_and_puma "G3500450, G35000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 045, the NHGIS PUMA code is 00200" +in.county_and_puma "G3500470, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 047, the NHGIS PUMA code is 00300" +in.county_and_puma "G3500490, G35000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 049, the NHGIS PUMA code is 00500" +in.county_and_puma "G3500510, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 051, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500530, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 053, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500550, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 055, the NHGIS PUMA code is 00300" +in.county_and_puma "G3500570, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 057, the NHGIS PUMA code is 00900" +in.county_and_puma "G3500590, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 059, the NHGIS PUMA code is 00400" +in.county_and_puma "G3500610, G35000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 061, the NHGIS PUMA code is 00700" +in.county_and_puma "G3600010, G36002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 001, the NHGIS PUMA code is 02001" +in.county_and_puma "G3600010, G36002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 001, the NHGIS PUMA code is 02002" +in.county_and_puma "G3600030, G36002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 003, the NHGIS PUMA code is 02500" +in.county_and_puma "G3600050, G36003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03701" +in.county_and_puma "G3600050, G36003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03702" +in.county_and_puma "G3600050, G36003703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03703" +in.county_and_puma "G3600050, G36003704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03704" +in.county_and_puma "G3600050, G36003705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03705" +in.county_and_puma "G3600050, G36003706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03706" +in.county_and_puma "G3600050, G36003707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03707" +in.county_and_puma "G3600050, G36003708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03708" +in.county_and_puma "G3600050, G36003709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03709" +in.county_and_puma "G3600050, G36003710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03710" +in.county_and_puma "G3600070, G36002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02201" +in.county_and_puma "G3600070, G36002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02202" +in.county_and_puma "G3600070, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02203" +in.county_and_puma "G3600090, G36002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 009, the NHGIS PUMA code is 02500" +in.county_and_puma "G3600110, G36000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 011, the NHGIS PUMA code is 00704" +in.county_and_puma "G3600130, G36002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 013, the NHGIS PUMA code is 02600" +in.county_and_puma "G3600150, G36002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 015, the NHGIS PUMA code is 02401" +in.county_and_puma "G3600150, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 015, the NHGIS PUMA code is 02402" +in.county_and_puma "G3600170, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 017, the NHGIS PUMA code is 02203" +in.county_and_puma "G3600190, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 019, the NHGIS PUMA code is 00200" +in.county_and_puma "G3600210, G36002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 021, the NHGIS PUMA code is 02100" +in.county_and_puma "G3600230, G36001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 023, the NHGIS PUMA code is 01500" +in.county_and_puma "G3600250, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 025, the NHGIS PUMA code is 02203" +in.county_and_puma "G3600270, G36002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 027, the NHGIS PUMA code is 02801" +in.county_and_puma "G3600270, G36002802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 027, the NHGIS PUMA code is 02802" +in.county_and_puma "G3600290, G36001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01201" +in.county_and_puma "G3600290, G36001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01202" +in.county_and_puma "G3600290, G36001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01203" +in.county_and_puma "G3600290, G36001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01204" +in.county_and_puma "G3600290, G36001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01205" +in.county_and_puma "G3600290, G36001206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01206" +in.county_and_puma "G3600290, G36001207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01207" +in.county_and_puma "G3600310, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 031, the NHGIS PUMA code is 00200" +in.county_and_puma "G3600330, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 033, the NHGIS PUMA code is 00200" +in.county_and_puma "G3600350, G36001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 035, the NHGIS PUMA code is 01600" +in.county_and_puma "G3600370, G36001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 037, the NHGIS PUMA code is 01000" +in.county_and_puma "G3600390, G36002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 039, the NHGIS PUMA code is 02100" +in.county_and_puma "G3600410, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 041, the NHGIS PUMA code is 00200" +in.county_and_puma "G3600430, G36000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 043, the NHGIS PUMA code is 00401" +in.county_and_puma "G3600430, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 043, the NHGIS PUMA code is 00403" +in.county_and_puma "G3600450, G36000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 045, the NHGIS PUMA code is 00500" +in.county_and_puma "G3600470, G36004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04001" +in.county_and_puma "G3600470, G36004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04002" +in.county_and_puma "G3600470, G36004003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04003" +in.county_and_puma "G3600470, G36004004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04004" +in.county_and_puma "G3600470, G36004005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04005" +in.county_and_puma "G3600470, G36004006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04006" +in.county_and_puma "G3600470, G36004007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04007" +in.county_and_puma "G3600470, G36004008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04008" +in.county_and_puma "G3600470, G36004009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04009" +in.county_and_puma "G3600470, G36004010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04010" +in.county_and_puma "G3600470, G36004011" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04011" +in.county_and_puma "G3600470, G36004012" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04012" +in.county_and_puma "G3600470, G36004013" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04013" +in.county_and_puma "G3600470, G36004014" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04014" +in.county_and_puma "G3600470, G36004015" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04015" +in.county_and_puma "G3600470, G36004016" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04016" +in.county_and_puma "G3600470, G36004017" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04017" +in.county_and_puma "G3600470, G36004018" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04018" +in.county_and_puma "G3600490, G36000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 049, the NHGIS PUMA code is 00500" +in.county_and_puma "G3600510, G36001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 051, the NHGIS PUMA code is 01300" +in.county_and_puma "G3600530, G36001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 053, the NHGIS PUMA code is 01500" +in.county_and_puma "G3600550, G36000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00901" +in.county_and_puma "G3600550, G36000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00902" +in.county_and_puma "G3600550, G36000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00903" +in.county_and_puma "G3600550, G36000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00904" +in.county_and_puma "G3600550, G36000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00905" +in.county_and_puma "G3600550, G36000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00906" +in.county_and_puma "G3600570, G36001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 057, the NHGIS PUMA code is 01600" +in.county_and_puma "G3600590, G36003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03201" +in.county_and_puma "G3600590, G36003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03202" +in.county_and_puma "G3600590, G36003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03203" +in.county_and_puma "G3600590, G36003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03204" +in.county_and_puma "G3600590, G36003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03205" +in.county_and_puma "G3600590, G36003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03206" +in.county_and_puma "G3600590, G36003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03207" +in.county_and_puma "G3600590, G36003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03208" +in.county_and_puma "G3600590, G36003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03209" +in.county_and_puma "G3600590, G36003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03210" +in.county_and_puma "G3600590, G36003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03211" +in.county_and_puma "G3600590, G36003212" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03212" +in.county_and_puma "G3600610, G36003801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03801" +in.county_and_puma "G3600610, G36003802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03802" +in.county_and_puma "G3600610, G36003803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03803" +in.county_and_puma "G3600610, G36003804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03804" +in.county_and_puma "G3600610, G36003805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03805" +in.county_and_puma "G3600610, G36003806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03806" +in.county_and_puma "G3600610, G36003807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03807" +in.county_and_puma "G3600610, G36003808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03808" +in.county_and_puma "G3600610, G36003809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03809" +in.county_and_puma "G3600610, G36003810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03810" +in.county_and_puma "G3600630, G36001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 063, the NHGIS PUMA code is 01101" +in.county_and_puma "G3600630, G36001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 063, the NHGIS PUMA code is 01102" +in.county_and_puma "G3600650, G36000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00401" +in.county_and_puma "G3600650, G36000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00402" +in.county_and_puma "G3600650, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00403" +in.county_and_puma "G3600670, G36000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00701" +in.county_and_puma "G3600670, G36000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00702" +in.county_and_puma "G3600670, G36000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00703" +in.county_and_puma "G3600670, G36000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00704" +in.county_and_puma "G3600690, G36001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 069, the NHGIS PUMA code is 01400" +in.county_and_puma "G3600710, G36002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02901" +in.county_and_puma "G3600710, G36002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02902" +in.county_and_puma "G3600710, G36002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02903" +in.county_and_puma "G3600730, G36001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 073, the NHGIS PUMA code is 01000" +in.county_and_puma "G3600750, G36000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 075, the NHGIS PUMA code is 00600" +in.county_and_puma "G3600770, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 077, the NHGIS PUMA code is 00403" +in.county_and_puma "G3600790, G36003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 079, the NHGIS PUMA code is 03101" +in.county_and_puma "G3600810, G36004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04101" +in.county_and_puma "G3600810, G36004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04102" +in.county_and_puma "G3600810, G36004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04103" +in.county_and_puma "G3600810, G36004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04104" +in.county_and_puma "G3600810, G36004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04105" +in.county_and_puma "G3600810, G36004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04106" +in.county_and_puma "G3600810, G36004107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04107" +in.county_and_puma "G3600810, G36004108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04108" +in.county_and_puma "G3600810, G36004109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04109" +in.county_and_puma "G3600810, G36004110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04110" +in.county_and_puma "G3600810, G36004111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04111" +in.county_and_puma "G3600810, G36004112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04112" +in.county_and_puma "G3600810, G36004113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04113" +in.county_and_puma "G3600810, G36004114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04114" +in.county_and_puma "G3600830, G36001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 083, the NHGIS PUMA code is 01900" +in.county_and_puma "G3600850, G36003901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03901" +in.county_and_puma "G3600850, G36003902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03902" +in.county_and_puma "G3600850, G36003903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03903" +in.county_and_puma "G3600870, G36003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03001" +in.county_and_puma "G3600870, G36003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03002" +in.county_and_puma "G3600870, G36003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03003" +in.county_and_puma "G3600890, G36000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 089, the NHGIS PUMA code is 00100" +in.county_and_puma "G3600910, G36001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 091, the NHGIS PUMA code is 01801" +in.county_and_puma "G3600910, G36001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 091, the NHGIS PUMA code is 01802" +in.county_and_puma "G3600930, G36001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 093, the NHGIS PUMA code is 01700" +in.county_and_puma "G3600950, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 095, the NHGIS PUMA code is 00403" +in.county_and_puma "G3600970, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 097, the NHGIS PUMA code is 02402" +in.county_and_puma "G3600990, G36000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 099, the NHGIS PUMA code is 00800" +in.county_and_puma "G3601010, G36002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 101, the NHGIS PUMA code is 02401" +in.county_and_puma "G3601010, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 101, the NHGIS PUMA code is 02402" +in.county_and_puma "G3601030, G36003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03301" +in.county_and_puma "G3601030, G36003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03302" +in.county_and_puma "G3601030, G36003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03303" +in.county_and_puma "G3601030, G36003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03304" +in.county_and_puma "G3601030, G36003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03305" +in.county_and_puma "G3601030, G36003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03306" +in.county_and_puma "G3601030, G36003307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03307" +in.county_and_puma "G3601030, G36003308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03308" +in.county_and_puma "G3601030, G36003309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03309" +in.county_and_puma "G3601030, G36003310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03310" +in.county_and_puma "G3601030, G36003311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03311" +in.county_and_puma "G3601030, G36003312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03312" +in.county_and_puma "G3601030, G36003313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03313" +in.county_and_puma "G3601050, G36002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 105, the NHGIS PUMA code is 02701" +in.county_and_puma "G3601070, G36002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 107, the NHGIS PUMA code is 02202" +in.county_and_puma "G3601090, G36002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 109, the NHGIS PUMA code is 02300" +in.county_and_puma "G3601110, G36002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 111, the NHGIS PUMA code is 02701" +in.county_and_puma "G3601110, G36002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 111, the NHGIS PUMA code is 02702" +in.county_and_puma "G3601130, G36000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 113, the NHGIS PUMA code is 00300" +in.county_and_puma "G3601150, G36000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 115, the NHGIS PUMA code is 00300" +in.county_and_puma "G3601170, G36000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 117, the NHGIS PUMA code is 00800" +in.county_and_puma "G3601190, G36003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03101" +in.county_and_puma "G3601190, G36003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03102" +in.county_and_puma "G3601190, G36003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03103" +in.county_and_puma "G3601190, G36003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03104" +in.county_and_puma "G3601190, G36003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03105" +in.county_and_puma "G3601190, G36003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03106" +in.county_and_puma "G3601190, G36003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03107" +in.county_and_puma "G3601210, G36001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 121, the NHGIS PUMA code is 01300" +in.county_and_puma "G3601230, G36001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 123, the NHGIS PUMA code is 01400" +in.county_and_puma "G3700010, G37001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 001, the NHGIS PUMA code is 01600" +in.county_and_puma "G3700030, G37002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 003, the NHGIS PUMA code is 02000" +in.county_and_puma "G3700050, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G3700070, G37005300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 007, the NHGIS PUMA code is 05300" +in.county_and_puma "G3700090, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 009, the NHGIS PUMA code is 00100" +in.county_and_puma "G3700110, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 011, the NHGIS PUMA code is 00100" +in.county_and_puma "G3700130, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 013, the NHGIS PUMA code is 04400" +in.county_and_puma "G3700150, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 015, the NHGIS PUMA code is 00800" +in.county_and_puma "G3700170, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 017, the NHGIS PUMA code is 04900" +in.county_and_puma "G3700190, G37004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 019, the NHGIS PUMA code is 04800" +in.county_and_puma "G3700210, G37002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 021, the NHGIS PUMA code is 02201" +in.county_and_puma "G3700210, G37002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 021, the NHGIS PUMA code is 02202" +in.county_and_puma "G3700230, G37002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 023, the NHGIS PUMA code is 02100" +in.county_and_puma "G3700250, G37003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 025, the NHGIS PUMA code is 03200" +in.county_and_puma "G3700250, G37003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 025, the NHGIS PUMA code is 03300" +in.county_and_puma "G3700270, G37002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 027, the NHGIS PUMA code is 02000" +in.county_and_puma "G3700290, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 029, the NHGIS PUMA code is 00700" +in.county_and_puma "G3700310, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 031, the NHGIS PUMA code is 04400" +in.county_and_puma "G3700330, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 033, the NHGIS PUMA code is 00400" +in.county_and_puma "G3700350, G37002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 035, the NHGIS PUMA code is 02800" +in.county_and_puma "G3700370, G37001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 037, the NHGIS PUMA code is 01500" +in.county_and_puma "G3700390, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 039, the NHGIS PUMA code is 02400" +in.county_and_puma "G3700410, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 041, the NHGIS PUMA code is 00700" +in.county_and_puma "G3700430, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 043, the NHGIS PUMA code is 02400" +in.county_and_puma "G3700450, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 045, the NHGIS PUMA code is 02600" +in.county_and_puma "G3700450, G37002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 045, the NHGIS PUMA code is 02700" +in.county_and_puma "G3700470, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 047, the NHGIS PUMA code is 04900" +in.county_and_puma "G3700490, G37004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 049, the NHGIS PUMA code is 04300" +in.county_and_puma "G3700510, G37005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05001" +in.county_and_puma "G3700510, G37005002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05002" +in.county_and_puma "G3700510, G37005003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05003" +in.county_and_puma "G3700530, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 053, the NHGIS PUMA code is 00700" +in.county_and_puma "G3700550, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 055, the NHGIS PUMA code is 00800" +in.county_and_puma "G3700570, G37003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 057, the NHGIS PUMA code is 03500" +in.county_and_puma "G3700590, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 059, the NHGIS PUMA code is 01900" +in.county_and_puma "G3700610, G37003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 061, the NHGIS PUMA code is 03900" +in.county_and_puma "G3700630, G37001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 063, the NHGIS PUMA code is 01301" +in.county_and_puma "G3700630, G37001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 063, the NHGIS PUMA code is 01302" +in.county_and_puma "G3700650, G37000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 065, the NHGIS PUMA code is 00900" +in.county_and_puma "G3700670, G37001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01801" +in.county_and_puma "G3700670, G37001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01802" +in.county_and_puma "G3700670, G37001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01803" +in.county_and_puma "G3700690, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 069, the NHGIS PUMA code is 00500" +in.county_and_puma "G3700710, G37003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 071, the NHGIS PUMA code is 03001" +in.county_and_puma "G3700710, G37003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 071, the NHGIS PUMA code is 03002" +in.county_and_puma "G3700730, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 073, the NHGIS PUMA code is 00700" +in.county_and_puma "G3700750, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 075, the NHGIS PUMA code is 02300" +in.county_and_puma "G3700770, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 077, the NHGIS PUMA code is 00400" +in.county_and_puma "G3700790, G37001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 079, the NHGIS PUMA code is 01000" +in.county_and_puma "G3700810, G37001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01701" +in.county_and_puma "G3700810, G37001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01702" +in.county_and_puma "G3700810, G37001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01703" +in.county_and_puma "G3700810, G37001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01704" +in.county_and_puma "G3700830, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 083, the NHGIS PUMA code is 00600" +in.county_and_puma "G3700850, G37003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 085, the NHGIS PUMA code is 03800" +in.county_and_puma "G3700870, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 087, the NHGIS PUMA code is 02300" +in.county_and_puma "G3700890, G37002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 089, the NHGIS PUMA code is 02500" +in.county_and_puma "G3700910, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 091, the NHGIS PUMA code is 00600" +in.county_and_puma "G3700930, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 093, the NHGIS PUMA code is 05200" +in.county_and_puma "G3700950, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 095, the NHGIS PUMA code is 00800" +in.county_and_puma "G3700970, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 097, the NHGIS PUMA code is 01900" +in.county_and_puma "G3700970, G37002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 097, the NHGIS PUMA code is 02900" +in.county_and_puma "G3700990, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 099, the NHGIS PUMA code is 02300" +in.county_and_puma "G3700990, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 099, the NHGIS PUMA code is 02400" +in.county_and_puma "G3701010, G37001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 101, the NHGIS PUMA code is 01100" +in.county_and_puma "G3701030, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 103, the NHGIS PUMA code is 04100" +in.county_and_puma "G3701050, G37001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 105, the NHGIS PUMA code is 01500" +in.county_and_puma "G3701070, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 107, the NHGIS PUMA code is 04100" +in.county_and_puma "G3701090, G37002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 109, the NHGIS PUMA code is 02700" +in.county_and_puma "G3701110, G37002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 111, the NHGIS PUMA code is 02100" +in.county_and_puma "G3701130, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 113, the NHGIS PUMA code is 02400" +in.county_and_puma "G3701150, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 115, the NHGIS PUMA code is 02300" +in.county_and_puma "G3701170, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 117, the NHGIS PUMA code is 00800" +in.county_and_puma "G3701190, G37003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03101" +in.county_and_puma "G3701190, G37003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03102" +in.county_and_puma "G3701190, G37003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03103" +in.county_and_puma "G3701190, G37003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03104" +in.county_and_puma "G3701190, G37003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03105" +in.county_and_puma "G3701190, G37003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03106" +in.county_and_puma "G3701190, G37003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03107" +in.county_and_puma "G3701190, G37003108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03108" +in.county_and_puma "G3701210, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 121, the NHGIS PUMA code is 00100" +in.county_and_puma "G3701230, G37003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 123, the NHGIS PUMA code is 03700" +in.county_and_puma "G3701250, G37003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 125, the NHGIS PUMA code is 03700" +in.county_and_puma "G3701270, G37000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 127, the NHGIS PUMA code is 00900" +in.county_and_puma "G3701290, G37004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 129, the NHGIS PUMA code is 04600" +in.county_and_puma "G3701290, G37004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 129, the NHGIS PUMA code is 04700" +in.county_and_puma "G3701310, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 131, the NHGIS PUMA code is 00600" +in.county_and_puma "G3701330, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 133, the NHGIS PUMA code is 04100" +in.county_and_puma "G3701330, G37004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 133, the NHGIS PUMA code is 04500" +in.county_and_puma "G3701350, G37001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 135, the NHGIS PUMA code is 01400" +in.county_and_puma "G3701370, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 137, the NHGIS PUMA code is 04400" +in.county_and_puma "G3701390, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 139, the NHGIS PUMA code is 00700" +in.county_and_puma "G3701410, G37004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 141, the NHGIS PUMA code is 04600" +in.county_and_puma "G3701430, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 143, the NHGIS PUMA code is 00700" +in.county_and_puma "G3701450, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 145, the NHGIS PUMA code is 00400" +in.county_and_puma "G3701470, G37004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 147, the NHGIS PUMA code is 04200" +in.county_and_puma "G3701490, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 149, the NHGIS PUMA code is 02600" +in.county_and_puma "G3701510, G37003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 151, the NHGIS PUMA code is 03600" +in.county_and_puma "G3701530, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 153, the NHGIS PUMA code is 05200" +in.county_and_puma "G3701550, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 155, the NHGIS PUMA code is 04900" +in.county_and_puma "G3701550, G37005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 155, the NHGIS PUMA code is 05100" +in.county_and_puma "G3701570, G37000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 157, the NHGIS PUMA code is 00300" +in.county_and_puma "G3701590, G37003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 159, the NHGIS PUMA code is 03400" +in.county_and_puma "G3701610, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 161, the NHGIS PUMA code is 02600" +in.county_and_puma "G3701630, G37003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 163, the NHGIS PUMA code is 03900" +in.county_and_puma "G3701650, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 165, the NHGIS PUMA code is 05200" +in.county_and_puma "G3701670, G37003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 167, the NHGIS PUMA code is 03300" +in.county_and_puma "G3701690, G37000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 169, the NHGIS PUMA code is 00300" +in.county_and_puma "G3701710, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 171, the NHGIS PUMA code is 00200" +in.county_and_puma "G3701730, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 173, the NHGIS PUMA code is 02300" +in.county_and_puma "G3701750, G37002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 175, the NHGIS PUMA code is 02500" +in.county_and_puma "G3701770, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 177, the NHGIS PUMA code is 00800" +in.county_and_puma "G3701790, G37005300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 179, the NHGIS PUMA code is 05300" +in.county_and_puma "G3701790, G37005400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 179, the NHGIS PUMA code is 05400" +in.county_and_puma "G3701810, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 181, the NHGIS PUMA code is 00500" +in.county_and_puma "G3701830, G37001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01201" +in.county_and_puma "G3701830, G37001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01202" +in.county_and_puma "G3701830, G37001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01203" +in.county_and_puma "G3701830, G37001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01204" +in.county_and_puma "G3701830, G37001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01205" +in.county_and_puma "G3701830, G37001206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01206" +in.county_and_puma "G3701830, G37001207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01207" +in.county_and_puma "G3701830, G37001208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01208" +in.county_and_puma "G3701850, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 185, the NHGIS PUMA code is 00500" +in.county_and_puma "G3701850, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 185, the NHGIS PUMA code is 00600" +in.county_and_puma "G3701870, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 187, the NHGIS PUMA code is 00800" +in.county_and_puma "G3701890, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 189, the NHGIS PUMA code is 00100" +in.county_and_puma "G3701910, G37004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 191, the NHGIS PUMA code is 04000" +in.county_and_puma "G3701930, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 193, the NHGIS PUMA code is 00200" +in.county_and_puma "G3701950, G37001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 195, the NHGIS PUMA code is 01000" +in.county_and_puma "G3701970, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 197, the NHGIS PUMA code is 01900" +in.county_and_puma "G3701990, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 199, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800010, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 001, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800030, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 003, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800050, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800070, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800090, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 009, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800110, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 011, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800130, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800150, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 015, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800170, G38000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 017, the NHGIS PUMA code is 00500" +in.county_and_puma "G3800190, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 019, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800210, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800230, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 023, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800250, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 025, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800270, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 027, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800290, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 029, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800310, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 031, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800330, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800350, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 035, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800370, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 037, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800390, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 039, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800410, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 041, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800430, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 043, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800450, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 045, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800470, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 047, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800490, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 049, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800510, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 051, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800530, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 053, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800550, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 055, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800570, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 057, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800590, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 059, the NHGIS PUMA code is 00300" +in.county_and_puma "G3800610, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 061, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800630, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 063, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800650, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 065, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800670, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 067, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800690, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 069, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800710, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 071, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800730, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 073, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800750, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 075, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800770, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 077, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800790, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 079, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800810, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 081, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800830, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 083, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800850, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 085, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800870, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 087, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800890, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 089, the NHGIS PUMA code is 00100" +in.county_and_puma "G3800910, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 091, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800930, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 093, the NHGIS PUMA code is 00200" +in.county_and_puma "G3800950, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 095, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800970, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 097, the NHGIS PUMA code is 00400" +in.county_and_puma "G3800990, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 099, the NHGIS PUMA code is 00400" +in.county_and_puma "G3801010, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 101, the NHGIS PUMA code is 00100" +in.county_and_puma "G3801030, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 103, the NHGIS PUMA code is 00200" +in.county_and_puma "G3801050, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 105, the NHGIS PUMA code is 00100" +in.county_and_puma "G3900010, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 001, the NHGIS PUMA code is 05200" +in.county_and_puma "G3900030, G39002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 003, the NHGIS PUMA code is 02500" +in.county_and_puma "G3900050, G39002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 005, the NHGIS PUMA code is 02100" +in.county_and_puma "G3900070, G39001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 007, the NHGIS PUMA code is 01300" +in.county_and_puma "G3900090, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 009, the NHGIS PUMA code is 05000" +in.county_and_puma "G3900110, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 011, the NHGIS PUMA code is 02600" +in.county_and_puma "G3900130, G39003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 013, the NHGIS PUMA code is 03500" +in.county_and_puma "G3900150, G39005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 015, the NHGIS PUMA code is 05700" +in.county_and_puma "G3900170, G39005401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05401" +in.county_and_puma "G3900170, G39005402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05402" +in.county_and_puma "G3900170, G39005403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05403" +in.county_and_puma "G3900190, G39003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 019, the NHGIS PUMA code is 03300" +in.county_and_puma "G3900210, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 021, the NHGIS PUMA code is 02700" +in.county_and_puma "G3900230, G39004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 023, the NHGIS PUMA code is 04300" +in.county_and_puma "G3900250, G39005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 025, the NHGIS PUMA code is 05600" +in.county_and_puma "G3900250, G39005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 025, the NHGIS PUMA code is 05700" +in.county_and_puma "G3900270, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 027, the NHGIS PUMA code is 05200" +in.county_and_puma "G3900290, G39003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 029, the NHGIS PUMA code is 03400" +in.county_and_puma "G3900310, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 031, the NHGIS PUMA code is 02900" +in.county_and_puma "G3900330, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 033, the NHGIS PUMA code is 02300" +in.county_and_puma "G3900350, G39000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00901" +in.county_and_puma "G3900350, G39000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00902" +in.county_and_puma "G3900350, G39000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00903" +in.county_and_puma "G3900350, G39000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00904" +in.county_and_puma "G3900350, G39000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00905" +in.county_and_puma "G3900350, G39000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00906" +in.county_and_puma "G3900350, G39000907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00907" +in.county_and_puma "G3900350, G39000908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00908" +in.county_and_puma "G3900350, G39000909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00909" +in.county_and_puma "G3900350, G39000910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00910" +in.county_and_puma "G3900370, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 037, the NHGIS PUMA code is 04500" +in.county_and_puma "G3900390, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G3900410, G39004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 041, the NHGIS PUMA code is 04000" +in.county_and_puma "G3900430, G39000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 043, the NHGIS PUMA code is 00700" +in.county_and_puma "G3900450, G39003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 045, the NHGIS PUMA code is 03900" +in.county_and_puma "G3900470, G39004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 047, the NHGIS PUMA code is 04800" +in.county_and_puma "G3900490, G39004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04101" +in.county_and_puma "G3900490, G39004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04102" +in.county_and_puma "G3900490, G39004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04103" +in.county_and_puma "G3900490, G39004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04104" +in.county_and_puma "G3900490, G39004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04105" +in.county_and_puma "G3900490, G39004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04106" +in.county_and_puma "G3900490, G39004107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04107" +in.county_and_puma "G3900490, G39004108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04108" +in.county_and_puma "G3900490, G39004109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04109" +in.county_and_puma "G3900490, G39004110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04110" +in.county_and_puma "G3900490, G39004111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04111" +in.county_and_puma "G3900510, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 051, the NHGIS PUMA code is 00200" +in.county_and_puma "G3900530, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 053, the NHGIS PUMA code is 05000" +in.county_and_puma "G3900550, G39001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 055, the NHGIS PUMA code is 01200" +in.county_and_puma "G3900570, G39004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 057, the NHGIS PUMA code is 04700" +in.county_and_puma "G3900590, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 059, the NHGIS PUMA code is 02900" +in.county_and_puma "G3900610, G39005501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05501" +in.county_and_puma "G3900610, G39005502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05502" +in.county_and_puma "G3900610, G39005503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05503" +in.county_and_puma "G3900610, G39005504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05504" +in.county_and_puma "G3900610, G39005505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05505" +in.county_and_puma "G3900610, G39005506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05506" +in.county_and_puma "G3900610, G39005507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05507" +in.county_and_puma "G3900630, G39002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 063, the NHGIS PUMA code is 02400" +in.county_and_puma "G3900650, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 065, the NHGIS PUMA code is 02700" +in.county_and_puma "G3900670, G39003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 067, the NHGIS PUMA code is 03000" +in.county_and_puma "G3900690, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 069, the NHGIS PUMA code is 00100" +in.county_and_puma "G3900710, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 071, the NHGIS PUMA code is 05200" +in.county_and_puma "G3900730, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 073, the NHGIS PUMA code is 04900" +in.county_and_puma "G3900750, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 075, the NHGIS PUMA code is 02900" +in.county_and_puma "G3900770, G39002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 077, the NHGIS PUMA code is 02100" +in.county_and_puma "G3900790, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 079, the NHGIS PUMA code is 04900" +in.county_and_puma "G3900810, G39003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 081, the NHGIS PUMA code is 03500" +in.county_and_puma "G3900830, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 083, the NHGIS PUMA code is 02800" +in.county_and_puma "G3900850, G39001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01000" +in.county_and_puma "G3900850, G39001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01100" +in.county_and_puma "G3900850, G39001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01200" +in.county_and_puma "G3900870, G39005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 087, the NHGIS PUMA code is 05100" +in.county_and_puma "G3900890, G39003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 089, the NHGIS PUMA code is 03800" +in.county_and_puma "G3900910, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 091, the NHGIS PUMA code is 02700" +in.county_and_puma "G3900930, G39000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 093, the NHGIS PUMA code is 00801" +in.county_and_puma "G3900930, G39000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 093, the NHGIS PUMA code is 00802" +in.county_and_puma "G3900950, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00200" +in.county_and_puma "G3900950, G39000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00300" +in.county_and_puma "G3900950, G39000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00400" +in.county_and_puma "G3900950, G39000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00500" +in.county_and_puma "G3900950, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00600" +in.county_and_puma "G3900970, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 097, the NHGIS PUMA code is 04200" +in.county_and_puma "G3900990, G39001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 099, the NHGIS PUMA code is 01400" +in.county_and_puma "G3900990, G39001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 099, the NHGIS PUMA code is 01500" +in.county_and_puma "G3901010, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 101, the NHGIS PUMA code is 02800" +in.county_and_puma "G3901030, G39001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 103, the NHGIS PUMA code is 01900" +in.county_and_puma "G3901050, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 105, the NHGIS PUMA code is 05000" +in.county_and_puma "G3901070, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 107, the NHGIS PUMA code is 02600" +in.county_and_puma "G3901090, G39004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 109, the NHGIS PUMA code is 04400" +in.county_and_puma "G3901110, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 111, the NHGIS PUMA code is 03600" +in.county_and_puma "G3901130, G39004601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04601" +in.county_and_puma "G3901130, G39004602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04602" +in.county_and_puma "G3901130, G39004603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04603" +in.county_and_puma "G3901130, G39004604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04604" +in.county_and_puma "G3901150, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 115, the NHGIS PUMA code is 03600" +in.county_and_puma "G3901170, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 117, the NHGIS PUMA code is 02800" +in.county_and_puma "G3901190, G39003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 119, the NHGIS PUMA code is 03700" +in.county_and_puma "G3901210, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 121, the NHGIS PUMA code is 03600" +in.county_and_puma "G3901230, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 123, the NHGIS PUMA code is 00600" +in.county_and_puma "G3901250, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 125, the NHGIS PUMA code is 00100" +in.county_and_puma "G3901270, G39003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 127, the NHGIS PUMA code is 03700" +in.county_and_puma "G3901290, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 129, the NHGIS PUMA code is 04200" +in.county_and_puma "G3901310, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 131, the NHGIS PUMA code is 04900" +in.county_and_puma "G3901330, G39001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 133, the NHGIS PUMA code is 01700" +in.county_and_puma "G3901350, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 135, the NHGIS PUMA code is 04500" +in.county_and_puma "G3901370, G39002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 137, the NHGIS PUMA code is 02400" +in.county_and_puma "G3901390, G39002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 139, the NHGIS PUMA code is 02200" +in.county_and_puma "G3901410, G39004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 141, the NHGIS PUMA code is 04800" +in.county_and_puma "G3901430, G39000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 143, the NHGIS PUMA code is 00700" +in.county_and_puma "G3901450, G39005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 145, the NHGIS PUMA code is 05100" +in.county_and_puma "G3901470, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 147, the NHGIS PUMA code is 02300" +in.county_and_puma "G3901490, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 149, the NHGIS PUMA code is 04500" +in.county_and_puma "G3901510, G39003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03100" +in.county_and_puma "G3901510, G39003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03200" +in.county_and_puma "G3901510, G39003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03300" +in.county_and_puma "G3901530, G39001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01801" +in.county_and_puma "G3901530, G39001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01802" +in.county_and_puma "G3901530, G39001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01803" +in.county_and_puma "G3901530, G39001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01804" +in.county_and_puma "G3901530, G39001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01805" +in.county_and_puma "G3901550, G39001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 155, the NHGIS PUMA code is 01400" +in.county_and_puma "G3901550, G39001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 155, the NHGIS PUMA code is 01600" +in.county_and_puma "G3901570, G39003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 157, the NHGIS PUMA code is 03000" +in.county_and_puma "G3901590, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 159, the NHGIS PUMA code is 04200" +in.county_and_puma "G3901610, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 161, the NHGIS PUMA code is 02600" +in.county_and_puma "G3901630, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 163, the NHGIS PUMA code is 04900" +in.county_and_puma "G3901650, G39005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 165, the NHGIS PUMA code is 05301" +in.county_and_puma "G3901650, G39005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 165, the NHGIS PUMA code is 05302" +in.county_and_puma "G3901670, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 167, the NHGIS PUMA code is 03600" +in.county_and_puma "G3901690, G39002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 169, the NHGIS PUMA code is 02000" +in.county_and_puma "G3901710, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 171, the NHGIS PUMA code is 00100" +in.county_and_puma "G3901730, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00200" +in.county_and_puma "G3901730, G39000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00300" +in.county_and_puma "G3901730, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00600" +in.county_and_puma "G3901750, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 175, the NHGIS PUMA code is 02300" +in.county_and_puma "G4000010, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 001, the NHGIS PUMA code is 00200" +in.county_and_puma "G4000030, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 003, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000050, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 005, the NHGIS PUMA code is 00702" +in.county_and_puma "G4000070, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 007, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000090, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000110, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 011, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000130, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 013, the NHGIS PUMA code is 00702" +in.county_and_puma "G4000150, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 015, the NHGIS PUMA code is 00602" +in.county_and_puma "G4000170, G40000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 017, the NHGIS PUMA code is 00800" +in.county_and_puma "G4000190, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 019, the NHGIS PUMA code is 00701" +in.county_and_puma "G4000210, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G4000230, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 023, the NHGIS PUMA code is 00300" +in.county_and_puma "G4000250, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 025, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000270, G40000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 027, the NHGIS PUMA code is 00900" +in.county_and_puma "G4000290, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 029, the NHGIS PUMA code is 00702" +in.county_and_puma "G4000310, G40000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 031, the NHGIS PUMA code is 00601" +in.county_and_puma "G4000310, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 031, the NHGIS PUMA code is 00602" +in.county_and_puma "G4000330, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 033, the NHGIS PUMA code is 00602" +in.county_and_puma "G4000350, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 035, the NHGIS PUMA code is 00100" +in.county_and_puma "G4000370, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01204" +in.county_and_puma "G4000370, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01501" +in.county_and_puma "G4000370, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01601" +in.county_and_puma "G4000390, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 039, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000410, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 041, the NHGIS PUMA code is 00100" +in.county_and_puma "G4000430, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 043, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000450, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 045, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000470, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 047, the NHGIS PUMA code is 01400" +in.county_and_puma "G4000490, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 049, the NHGIS PUMA code is 00701" +in.county_and_puma "G4000510, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 051, the NHGIS PUMA code is 01101" +in.county_and_puma "G4000530, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 053, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000550, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 055, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000570, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 057, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000590, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 059, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000610, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G4000630, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 063, the NHGIS PUMA code is 01501" +in.county_and_puma "G4000650, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 065, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000670, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 067, the NHGIS PUMA code is 00602" +in.county_and_puma "G4000690, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 069, the NHGIS PUMA code is 00702" +in.county_and_puma "G4000710, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 071, the NHGIS PUMA code is 01400" +in.county_and_puma "G4000730, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 073, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000750, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 075, the NHGIS PUMA code is 00400" +in.county_and_puma "G4000770, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 077, the NHGIS PUMA code is 00300" +in.county_and_puma "G4000790, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 079, the NHGIS PUMA code is 00300" +in.county_and_puma "G4000810, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 081, the NHGIS PUMA code is 01102" +in.county_and_puma "G4000830, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 083, the NHGIS PUMA code is 01102" +in.county_and_puma "G4000850, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 085, the NHGIS PUMA code is 00701" +in.county_and_puma "G4000870, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 087, the NHGIS PUMA code is 01101" +in.county_and_puma "G4000890, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 089, the NHGIS PUMA code is 00300" +in.county_and_puma "G4000910, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 091, the NHGIS PUMA code is 01302" +in.county_and_puma "G4000930, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 093, the NHGIS PUMA code is 00500" +in.county_and_puma "G4000950, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 095, the NHGIS PUMA code is 00702" +in.county_and_puma "G4000970, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 097, the NHGIS PUMA code is 00100" +in.county_and_puma "G4000990, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 099, the NHGIS PUMA code is 00701" +in.county_and_puma "G4001010, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 101, the NHGIS PUMA code is 01302" +in.county_and_puma "G4001030, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 103, the NHGIS PUMA code is 01400" +in.county_and_puma "G4001050, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 105, the NHGIS PUMA code is 00100" +in.county_and_puma "G4001070, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 107, the NHGIS PUMA code is 01501" +in.county_and_puma "G4001090, G40001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01001" +in.county_and_puma "G4001090, G40001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01002" +in.county_and_puma "G4001090, G40001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01003" +in.county_and_puma "G4001090, G40001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01004" +in.county_and_puma "G4001090, G40001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01005" +in.county_and_puma "G4001090, G40001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01006" +in.county_and_puma "G4001110, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 111, the NHGIS PUMA code is 01302" +in.county_and_puma "G4001130, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 113, the NHGIS PUMA code is 01204" +in.county_and_puma "G4001130, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 113, the NHGIS PUMA code is 01601" +in.county_and_puma "G4001150, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 115, the NHGIS PUMA code is 00100" +in.county_and_puma "G4001170, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 117, the NHGIS PUMA code is 01601" +in.county_and_puma "G4001190, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 119, the NHGIS PUMA code is 01501" +in.county_and_puma "G4001210, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 121, the NHGIS PUMA code is 00300" +in.county_and_puma "G4001230, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 123, the NHGIS PUMA code is 00701" +in.county_and_puma "G4001230, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 123, the NHGIS PUMA code is 00702" +in.county_and_puma "G4001250, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 125, the NHGIS PUMA code is 01101" +in.county_and_puma "G4001250, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 125, the NHGIS PUMA code is 01102" +in.county_and_puma "G4001270, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 127, the NHGIS PUMA code is 00300" +in.county_and_puma "G4001290, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 129, the NHGIS PUMA code is 00400" +in.county_and_puma "G4001310, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 131, the NHGIS PUMA code is 00100" +in.county_and_puma "G4001310, G40001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 131, the NHGIS PUMA code is 01301" +in.county_and_puma "G4001330, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 133, the NHGIS PUMA code is 01501" +in.county_and_puma "G4001350, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 135, the NHGIS PUMA code is 00200" +in.county_and_puma "G4001370, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 137, the NHGIS PUMA code is 00602" +in.county_and_puma "G4001390, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 139, the NHGIS PUMA code is 00500" +in.county_and_puma "G4001410, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 141, the NHGIS PUMA code is 00602" +in.county_and_puma "G4001430, G40001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01201" +in.county_and_puma "G4001430, G40001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01202" +in.county_and_puma "G4001430, G40001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01203" +in.county_and_puma "G4001430, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01204" +in.county_and_puma "G4001450, G40001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 145, the NHGIS PUMA code is 01301" +in.county_and_puma "G4001450, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 145, the NHGIS PUMA code is 01302" +in.county_and_puma "G4001470, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 147, the NHGIS PUMA code is 01601" +in.county_and_puma "G4001490, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 149, the NHGIS PUMA code is 00400" +in.county_and_puma "G4001510, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 151, the NHGIS PUMA code is 00500" +in.county_and_puma "G4001530, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 153, the NHGIS PUMA code is 00500" +in.county_and_puma "G4100010, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 001, the NHGIS PUMA code is 00100" +in.county_and_puma "G4100030, G41000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 003, the NHGIS PUMA code is 00600" +in.county_and_puma "G4100050, G41001317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01317" +in.county_and_puma "G4100050, G41001318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01318" +in.county_and_puma "G4100050, G41001319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01319" +in.county_and_puma "G4100070, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 007, the NHGIS PUMA code is 00500" +in.county_and_puma "G4100090, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 009, the NHGIS PUMA code is 00500" +in.county_and_puma "G4100110, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G4100130, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 013, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100150, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 015, the NHGIS PUMA code is 00800" +in.county_and_puma "G4100170, G41000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G4100190, G41001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 019, the NHGIS PUMA code is 01000" +in.county_and_puma "G4100210, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 021, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100230, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 023, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100250, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 025, the NHGIS PUMA code is 00300" +in.county_and_puma "G4100270, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 027, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100290, G41000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 029, the NHGIS PUMA code is 00901" +in.county_and_puma "G4100290, G41000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 029, the NHGIS PUMA code is 00902" +in.county_and_puma "G4100310, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 031, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100330, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 033, the NHGIS PUMA code is 00800" +in.county_and_puma "G4100350, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 035, the NHGIS PUMA code is 00300" +in.county_and_puma "G4100370, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 037, the NHGIS PUMA code is 00300" +in.county_and_puma "G4100390, G41000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00703" +in.county_and_puma "G4100390, G41000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00704" +in.county_and_puma "G4100390, G41000705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00705" +in.county_and_puma "G4100410, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 041, the NHGIS PUMA code is 00500" +in.county_and_puma "G4100430, G41000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 043, the NHGIS PUMA code is 00600" +in.county_and_puma "G4100450, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 045, the NHGIS PUMA code is 00300" +in.county_and_puma "G4100470, G41001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01103" +in.county_and_puma "G4100470, G41001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01104" +in.county_and_puma "G4100470, G41001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01105" +in.county_and_puma "G4100490, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 049, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100510, G41001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01301" +in.county_and_puma "G4100510, G41001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01302" +in.county_and_puma "G4100510, G41001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01303" +in.county_and_puma "G4100510, G41001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01305" +in.county_and_puma "G4100510, G41001314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01314" +in.county_and_puma "G4100510, G41001316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01316" +in.county_and_puma "G4100530, G41001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 053, the NHGIS PUMA code is 01200" +in.county_and_puma "G4100550, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 055, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100570, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 057, the NHGIS PUMA code is 00500" +in.county_and_puma "G4100590, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 059, the NHGIS PUMA code is 00100" +in.county_and_puma "G4100610, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 061, the NHGIS PUMA code is 00100" +in.county_and_puma "G4100630, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 063, the NHGIS PUMA code is 00100" +in.county_and_puma "G4100650, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 065, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100670, G41001320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01320" +in.county_and_puma "G4100670, G41001321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01321" +in.county_and_puma "G4100670, G41001322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01322" +in.county_and_puma "G4100670, G41001323" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01323" +in.county_and_puma "G4100670, G41001324" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01324" +in.county_and_puma "G4100690, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 069, the NHGIS PUMA code is 00200" +in.county_and_puma "G4100710, G41001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 071, the NHGIS PUMA code is 01200" +in.county_and_puma "G4200010, G42003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 001, the NHGIS PUMA code is 03701" +in.county_and_puma "G4200030, G42001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01701" +in.county_and_puma "G4200030, G42001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01702" +in.county_and_puma "G4200030, G42001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01801" +in.county_and_puma "G4200030, G42001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01802" +in.county_and_puma "G4200030, G42001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01803" +in.county_and_puma "G4200030, G42001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01804" +in.county_and_puma "G4200030, G42001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01805" +in.county_and_puma "G4200030, G42001806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01806" +in.county_and_puma "G4200030, G42001807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01807" +in.county_and_puma "G4200050, G42001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 005, the NHGIS PUMA code is 01900" +in.county_and_puma "G4200070, G42001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 007, the NHGIS PUMA code is 01501" +in.county_and_puma "G4200070, G42001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 007, the NHGIS PUMA code is 01502" +in.county_and_puma "G4200090, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 009, the NHGIS PUMA code is 03800" +in.county_and_puma "G4200110, G42002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02701" +in.county_and_puma "G4200110, G42002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02702" +in.county_and_puma "G4200110, G42002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02703" +in.county_and_puma "G4200130, G42002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 013, the NHGIS PUMA code is 02200" +in.county_and_puma "G4200150, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 015, the NHGIS PUMA code is 00400" +in.county_and_puma "G4200170, G42003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03001" +in.county_and_puma "G4200170, G42003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03002" +in.county_and_puma "G4200170, G42003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03003" +in.county_and_puma "G4200170, G42003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03004" +in.county_and_puma "G4200190, G42001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 019, the NHGIS PUMA code is 01600" +in.county_and_puma "G4200210, G42002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 021, the NHGIS PUMA code is 02100" +in.county_and_puma "G4200230, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 023, the NHGIS PUMA code is 00300" +in.county_and_puma "G4200250, G42002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 025, the NHGIS PUMA code is 02801" +in.county_and_puma "G4200270, G42001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 027, the NHGIS PUMA code is 01200" +in.county_and_puma "G4200290, G42003401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03401" +in.county_and_puma "G4200290, G42003402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03402" +in.county_and_puma "G4200290, G42003403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03403" +in.county_and_puma "G4200290, G42003404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03404" +in.county_and_puma "G4200310, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 031, the NHGIS PUMA code is 01300" +in.county_and_puma "G4200330, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 033, the NHGIS PUMA code is 00300" +in.county_and_puma "G4200350, G42000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 035, the NHGIS PUMA code is 00900" +in.county_and_puma "G4200370, G42000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 037, the NHGIS PUMA code is 00803" +in.county_and_puma "G4200390, G42000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 039, the NHGIS PUMA code is 00200" +in.county_and_puma "G4200410, G42002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 041, the NHGIS PUMA code is 02301" +in.county_and_puma "G4200410, G42002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 041, the NHGIS PUMA code is 02302" +in.county_and_puma "G4200430, G42002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 043, the NHGIS PUMA code is 02401" +in.county_and_puma "G4200430, G42002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 043, the NHGIS PUMA code is 02402" +in.county_and_puma "G4200450, G42003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03301" +in.county_and_puma "G4200450, G42003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03302" +in.county_and_puma "G4200450, G42003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03303" +in.county_and_puma "G4200450, G42003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03304" +in.county_and_puma "G4200470, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 047, the NHGIS PUMA code is 00300" +in.county_and_puma "G4200490, G42000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 049, the NHGIS PUMA code is 00101" +in.county_and_puma "G4200490, G42000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 049, the NHGIS PUMA code is 00102" +in.county_and_puma "G4200510, G42003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 051, the NHGIS PUMA code is 03900" +in.county_and_puma "G4200530, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 053, the NHGIS PUMA code is 01300" +in.county_and_puma "G4200550, G42003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 055, the NHGIS PUMA code is 03701" +in.county_and_puma "G4200550, G42003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 055, the NHGIS PUMA code is 03702" +in.county_and_puma "G4200570, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 057, the NHGIS PUMA code is 03800" +in.county_and_puma "G4200590, G42004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 059, the NHGIS PUMA code is 04002" +in.county_and_puma "G4200610, G42002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 061, the NHGIS PUMA code is 02200" +in.county_and_puma "G4200630, G42001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 063, the NHGIS PUMA code is 01900" +in.county_and_puma "G4200650, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 065, the NHGIS PUMA code is 01300" +in.county_and_puma "G4200670, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 067, the NHGIS PUMA code is 01100" +in.county_and_puma "G4200690, G42000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 069, the NHGIS PUMA code is 00701" +in.county_and_puma "G4200690, G42000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 069, the NHGIS PUMA code is 00702" +in.county_and_puma "G4200710, G42003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03501" +in.county_and_puma "G4200710, G42003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03502" +in.county_and_puma "G4200710, G42003503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03503" +in.county_and_puma "G4200710, G42003504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03504" +in.county_and_puma "G4200730, G42001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 073, the NHGIS PUMA code is 01501" +in.county_and_puma "G4200750, G42002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 075, the NHGIS PUMA code is 02500" +in.county_and_puma "G4200770, G42002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02801" +in.county_and_puma "G4200770, G42002802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02802" +in.county_and_puma "G4200770, G42002803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02803" +in.county_and_puma "G4200770, G42002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02901" +in.county_and_puma "G4200790, G42000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00801" +in.county_and_puma "G4200790, G42000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00802" +in.county_and_puma "G4200790, G42000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00803" +in.county_and_puma "G4200810, G42000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 081, the NHGIS PUMA code is 00900" +in.county_and_puma "G4200830, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 083, the NHGIS PUMA code is 00300" +in.county_and_puma "G4200850, G42001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 085, the NHGIS PUMA code is 01400" +in.county_and_puma "G4200870, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 087, the NHGIS PUMA code is 01100" +in.county_and_puma "G4200890, G42000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 089, the NHGIS PUMA code is 00600" +in.county_and_puma "G4200910, G42003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03101" +in.county_and_puma "G4200910, G42003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03102" +in.county_and_puma "G4200910, G42003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03103" +in.county_and_puma "G4200910, G42003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03104" +in.county_and_puma "G4200910, G42003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03105" +in.county_and_puma "G4200910, G42003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03106" +in.county_and_puma "G4200930, G42001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 093, the NHGIS PUMA code is 01000" +in.county_and_puma "G4200950, G42002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 095, the NHGIS PUMA code is 02901" +in.county_and_puma "G4200950, G42002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 095, the NHGIS PUMA code is 02902" +in.county_and_puma "G4200970, G42001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 097, the NHGIS PUMA code is 01000" +in.county_and_puma "G4200990, G42002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 099, the NHGIS PUMA code is 02301" +in.county_and_puma "G4201010, G42003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03201" +in.county_and_puma "G4201010, G42003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03202" +in.county_and_puma "G4201010, G42003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03203" +in.county_and_puma "G4201010, G42003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03204" +in.county_and_puma "G4201010, G42003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03205" +in.county_and_puma "G4201010, G42003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03206" +in.county_and_puma "G4201010, G42003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03207" +in.county_and_puma "G4201010, G42003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03208" +in.county_and_puma "G4201010, G42003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03209" +in.county_and_puma "G4201010, G42003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03210" +in.county_and_puma "G4201010, G42003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03211" +in.county_and_puma "G4201030, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 103, the NHGIS PUMA code is 00500" +in.county_and_puma "G4201050, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 105, the NHGIS PUMA code is 00300" +in.county_and_puma "G4201070, G42002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 107, the NHGIS PUMA code is 02600" +in.county_and_puma "G4201090, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 109, the NHGIS PUMA code is 01100" +in.county_and_puma "G4201110, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 111, the NHGIS PUMA code is 03800" +in.county_and_puma "G4201130, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 113, the NHGIS PUMA code is 00400" +in.county_and_puma "G4201150, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 115, the NHGIS PUMA code is 00500" +in.county_and_puma "G4201170, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 117, the NHGIS PUMA code is 00400" +in.county_and_puma "G4201190, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 119, the NHGIS PUMA code is 01100" +in.county_and_puma "G4201210, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 121, the NHGIS PUMA code is 01300" +in.county_and_puma "G4201230, G42000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 123, the NHGIS PUMA code is 00200" +in.county_and_puma "G4201250, G42004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 125, the NHGIS PUMA code is 04001" +in.county_and_puma "G4201250, G42004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 125, the NHGIS PUMA code is 04002" +in.county_and_puma "G4201270, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 127, the NHGIS PUMA code is 00500" +in.county_and_puma "G4201290, G42002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02001" +in.county_and_puma "G4201290, G42002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02002" +in.county_and_puma "G4201290, G42002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02003" +in.county_and_puma "G4201310, G42000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 131, the NHGIS PUMA code is 00702" +in.county_and_puma "G4201330, G42003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03601" +in.county_and_puma "G4201330, G42003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03602" +in.county_and_puma "G4201330, G42003603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03603" +in.county_and_puma "G4400010, G44000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G4400030, G44000201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 003, the NHGIS PUMA code is 00201" +in.county_and_puma "G4400050, G44000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 005, the NHGIS PUMA code is 00300" +in.county_and_puma "G4400070, G44000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00101" +in.county_and_puma "G4400070, G44000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00102" +in.county_and_puma "G4400070, G44000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00103" +in.county_and_puma "G4400070, G44000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00104" +in.county_and_puma "G4400090, G44000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G4500010, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 001, the NHGIS PUMA code is 01600" +in.county_and_puma "G4500030, G45001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 003, the NHGIS PUMA code is 01500" +in.county_and_puma "G4500050, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 005, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500070, G45000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 007, the NHGIS PUMA code is 00200" +in.county_and_puma "G4500090, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 009, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500110, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 011, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500130, G45001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 013, the NHGIS PUMA code is 01400" +in.county_and_puma "G4500150, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01201" +in.county_and_puma "G4500150, G45001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01202" +in.county_and_puma "G4500150, G45001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01203" +in.county_and_puma "G4500150, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01204" +in.county_and_puma "G4500170, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 017, the NHGIS PUMA code is 00605" +in.county_and_puma "G4500190, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01201" +in.county_and_puma "G4500190, G45001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01202" +in.county_and_puma "G4500190, G45001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01203" +in.county_and_puma "G4500190, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01204" +in.county_and_puma "G4500210, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 021, the NHGIS PUMA code is 00400" +in.county_and_puma "G4500230, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 023, the NHGIS PUMA code is 00400" +in.county_and_puma "G4500250, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 025, the NHGIS PUMA code is 00700" +in.county_and_puma "G4500270, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 027, the NHGIS PUMA code is 00800" +in.county_and_puma "G4500290, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 029, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500310, G45000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 031, the NHGIS PUMA code is 00900" +in.county_and_puma "G4500330, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 033, the NHGIS PUMA code is 01000" +in.county_and_puma "G4500350, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 035, the NHGIS PUMA code is 01201" +in.county_and_puma "G4500350, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 035, the NHGIS PUMA code is 01204" +in.county_and_puma "G4500370, G45001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 037, the NHGIS PUMA code is 01500" +in.county_and_puma "G4500390, G45000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 039, the NHGIS PUMA code is 00603" +in.county_and_puma "G4500410, G45000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 041, the NHGIS PUMA code is 00900" +in.county_and_puma "G4500430, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 043, the NHGIS PUMA code is 01000" +in.county_and_puma "G4500450, G45000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00102" +in.county_and_puma "G4500450, G45000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00103" +in.county_and_puma "G4500450, G45000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00104" +in.county_and_puma "G4500450, G45000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00105" +in.county_and_puma "G4500470, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 047, the NHGIS PUMA code is 01600" +in.county_and_puma "G4500490, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 049, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500510, G45001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 051, the NHGIS PUMA code is 01101" +in.county_and_puma "G4500510, G45001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 051, the NHGIS PUMA code is 01102" +in.county_and_puma "G4500530, G45001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 053, the NHGIS PUMA code is 01400" +in.county_and_puma "G4500550, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 055, the NHGIS PUMA code is 00605" +in.county_and_puma "G4500570, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 057, the NHGIS PUMA code is 00700" +in.county_and_puma "G4500590, G45000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 059, the NHGIS PUMA code is 00105" +in.county_and_puma "G4500610, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 061, the NHGIS PUMA code is 00800" +in.county_and_puma "G4500630, G45000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 063, the NHGIS PUMA code is 00601" +in.county_and_puma "G4500630, G45000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 063, the NHGIS PUMA code is 00602" +in.county_and_puma "G4500650, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 065, the NHGIS PUMA code is 01600" +in.county_and_puma "G4500670, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 067, the NHGIS PUMA code is 01000" +in.county_and_puma "G4500690, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 069, the NHGIS PUMA code is 00700" +in.county_and_puma "G4500710, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 071, the NHGIS PUMA code is 00400" +in.county_and_puma "G4500730, G45000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 073, the NHGIS PUMA code is 00101" +in.county_and_puma "G4500750, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 075, the NHGIS PUMA code is 01300" +in.county_and_puma "G4500770, G45000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 077, the NHGIS PUMA code is 00101" +in.county_and_puma "G4500790, G45000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00603" +in.county_and_puma "G4500790, G45000604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00604" +in.county_and_puma "G4500790, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00605" +in.county_and_puma "G4500810, G45000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 081, the NHGIS PUMA code is 00601" +in.county_and_puma "G4500830, G45000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 083, the NHGIS PUMA code is 00301" +in.county_and_puma "G4500830, G45000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 083, the NHGIS PUMA code is 00302" +in.county_and_puma "G4500850, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 085, the NHGIS PUMA code is 00800" +in.county_and_puma "G4500870, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 087, the NHGIS PUMA code is 00400" +in.county_and_puma "G4500890, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 089, the NHGIS PUMA code is 00800" +in.county_and_puma "G4500910, G45000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 091, the NHGIS PUMA code is 00501" +in.county_and_puma "G4500910, G45000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 091, the NHGIS PUMA code is 00502" +in.county_and_puma "G4600030, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 003, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600050, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 005, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600070, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 007, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600090, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600110, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 011, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600130, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 013, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600150, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 015, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600170, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 017, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600190, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 019, the NHGIS PUMA code is 00100" +in.county_and_puma "G4600210, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 021, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600230, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 023, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600250, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 025, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600270, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 027, the NHGIS PUMA code is 00500" +in.county_and_puma "G4600290, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 029, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600310, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 031, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600330, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G4600350, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 035, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600370, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 037, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600390, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 039, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600410, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 041, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600430, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 043, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600450, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 045, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600470, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 047, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600490, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 049, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600510, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 051, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600530, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 053, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600550, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 055, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600570, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 057, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600590, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 059, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600610, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 061, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600630, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 063, the NHGIS PUMA code is 00100" +in.county_and_puma "G4600650, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 065, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600670, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 067, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600690, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 069, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600710, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 071, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600730, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 073, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600750, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 075, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600770, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 077, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600790, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 079, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600810, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 081, the NHGIS PUMA code is 00100" +in.county_and_puma "G4600830, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 083, the NHGIS PUMA code is 00500" +in.county_and_puma "G4600830, G46000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 083, the NHGIS PUMA code is 00600" +in.county_and_puma "G4600850, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 085, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600870, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 087, the NHGIS PUMA code is 00500" +in.county_and_puma "G4600890, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 089, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600910, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 091, the NHGIS PUMA code is 00300" +in.county_and_puma "G4600930, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 093, the NHGIS PUMA code is 00100" +in.county_and_puma "G4600950, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 095, the NHGIS PUMA code is 00200" +in.county_and_puma "G4600970, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 097, the NHGIS PUMA code is 00400" +in.county_and_puma "G4600990, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 099, the NHGIS PUMA code is 00500" +in.county_and_puma "G4600990, G46000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 099, the NHGIS PUMA code is 00600" +in.county_and_puma "G4601010, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 101, the NHGIS PUMA code is 00400" +in.county_and_puma "G4601020, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 102, the NHGIS PUMA code is 00200" +in.county_and_puma "G4601030, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 103, the NHGIS PUMA code is 00100" +in.county_and_puma "G4601050, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 105, the NHGIS PUMA code is 00100" +in.county_and_puma "G4601070, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 107, the NHGIS PUMA code is 00300" +in.county_and_puma "G4601090, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 109, the NHGIS PUMA code is 00300" +in.county_and_puma "G4601110, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 111, the NHGIS PUMA code is 00400" +in.county_and_puma "G4601150, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 115, the NHGIS PUMA code is 00300" +in.county_and_puma "G4601170, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 117, the NHGIS PUMA code is 00200" +in.county_and_puma "G4601190, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 119, the NHGIS PUMA code is 00200" +in.county_and_puma "G4601210, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 121, the NHGIS PUMA code is 00200" +in.county_and_puma "G4601230, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 123, the NHGIS PUMA code is 00200" +in.county_and_puma "G4601250, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 125, the NHGIS PUMA code is 00500" +in.county_and_puma "G4601270, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 127, the NHGIS PUMA code is 00500" +in.county_and_puma "G4601290, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 129, the NHGIS PUMA code is 00300" +in.county_and_puma "G4601350, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 135, the NHGIS PUMA code is 00500" +in.county_and_puma "G4601370, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 137, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700010, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 001, the NHGIS PUMA code is 01601" +in.county_and_puma "G4700030, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 003, the NHGIS PUMA code is 02700" +in.county_and_puma "G4700050, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700070, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 007, the NHGIS PUMA code is 02100" +in.county_and_puma "G4700090, G47001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 009, the NHGIS PUMA code is 01700" +in.county_and_puma "G4700110, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 011, the NHGIS PUMA code is 01900" +in.county_and_puma "G4700130, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 013, the NHGIS PUMA code is 00900" +in.county_and_puma "G4700150, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 015, the NHGIS PUMA code is 00600" +in.county_and_puma "G4700170, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 017, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700190, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 019, the NHGIS PUMA code is 01200" +in.county_and_puma "G4700210, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 021, the NHGIS PUMA code is 00400" +in.county_and_puma "G4700230, G47003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 023, the NHGIS PUMA code is 03000" +in.county_and_puma "G4700250, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 025, the NHGIS PUMA code is 00900" +in.county_and_puma "G4700270, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 027, the NHGIS PUMA code is 00700" +in.county_and_puma "G4700290, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 029, the NHGIS PUMA code is 01400" +in.county_and_puma "G4700310, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 031, the NHGIS PUMA code is 02200" +in.county_and_puma "G4700330, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G4700350, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 035, the NHGIS PUMA code is 00800" +in.county_and_puma "G4700370, G47002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02501" +in.county_and_puma "G4700370, G47002502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02502" +in.county_and_puma "G4700370, G47002503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02503" +in.county_and_puma "G4700370, G47002504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02504" +in.county_and_puma "G4700370, G47002505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02505" +in.county_and_puma "G4700390, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 039, the NHGIS PUMA code is 02900" +in.county_and_puma "G4700410, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 041, the NHGIS PUMA code is 00600" +in.county_and_puma "G4700430, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 043, the NHGIS PUMA code is 00400" +in.county_and_puma "G4700450, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 045, the NHGIS PUMA code is 00100" +in.county_and_puma "G4700470, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 047, the NHGIS PUMA code is 03100" +in.county_and_puma "G4700490, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 049, the NHGIS PUMA code is 00800" +in.county_and_puma "G4700510, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 051, the NHGIS PUMA code is 02200" +in.county_and_puma "G4700530, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 053, the NHGIS PUMA code is 00100" +in.county_and_puma "G4700550, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 055, the NHGIS PUMA code is 02800" +in.county_and_puma "G4700570, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 057, the NHGIS PUMA code is 01400" +in.county_and_puma "G4700590, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 059, the NHGIS PUMA code is 01200" +in.county_and_puma "G4700610, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 061, the NHGIS PUMA code is 02100" +in.county_and_puma "G4700630, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 063, the NHGIS PUMA code is 01400" +in.county_and_puma "G4700650, G47002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02001" +in.county_and_puma "G4700650, G47002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02002" +in.county_and_puma "G4700650, G47002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02003" +in.county_and_puma "G4700670, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 067, the NHGIS PUMA code is 00900" +in.county_and_puma "G4700690, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 069, the NHGIS PUMA code is 02900" +in.county_and_puma "G4700710, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 071, the NHGIS PUMA code is 02900" +in.county_and_puma "G4700730, G47001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 073, the NHGIS PUMA code is 01000" +in.county_and_puma "G4700750, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 075, the NHGIS PUMA code is 02900" +in.county_and_puma "G4700770, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 077, the NHGIS PUMA code is 02900" +in.county_and_puma "G4700790, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 079, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700810, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 081, the NHGIS PUMA code is 00400" +in.county_and_puma "G4700830, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 083, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700850, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 085, the NHGIS PUMA code is 00200" +in.county_and_puma "G4700870, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 087, the NHGIS PUMA code is 00700" +in.county_and_puma "G4700890, G47001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 089, the NHGIS PUMA code is 01500" +in.county_and_puma "G4700910, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 091, the NHGIS PUMA code is 01200" +in.county_and_puma "G4700930, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01601" +in.county_and_puma "G4700930, G47001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01602" +in.county_and_puma "G4700930, G47001603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01603" +in.county_and_puma "G4700930, G47001604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01604" +in.county_and_puma "G4700950, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 095, the NHGIS PUMA code is 00100" +in.county_and_puma "G4700970, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 097, the NHGIS PUMA code is 03100" +in.county_and_puma "G4700990, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 099, the NHGIS PUMA code is 02800" +in.county_and_puma "G4701010, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 101, the NHGIS PUMA code is 02800" +in.county_and_puma "G4701030, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 103, the NHGIS PUMA code is 02200" +in.county_and_puma "G4701050, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 105, the NHGIS PUMA code is 01800" +in.county_and_puma "G4701070, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 107, the NHGIS PUMA code is 01900" +in.county_and_puma "G4701090, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 109, the NHGIS PUMA code is 02900" +in.county_and_puma "G4701110, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 111, the NHGIS PUMA code is 00600" +in.county_and_puma "G4701130, G47003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 113, the NHGIS PUMA code is 03000" +in.county_and_puma "G4701150, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 115, the NHGIS PUMA code is 02100" +in.county_and_puma "G4701170, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 117, the NHGIS PUMA code is 02700" +in.county_and_puma "G4701190, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 119, the NHGIS PUMA code is 02700" +in.county_and_puma "G4701210, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 121, the NHGIS PUMA code is 02100" +in.county_and_puma "G4701230, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 123, the NHGIS PUMA code is 01800" +in.county_and_puma "G4701250, G47000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 125, the NHGIS PUMA code is 00300" +in.county_and_puma "G4701270, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 127, the NHGIS PUMA code is 02200" +in.county_and_puma "G4701290, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 129, the NHGIS PUMA code is 00900" +in.county_and_puma "G4701310, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 131, the NHGIS PUMA code is 00100" +in.county_and_puma "G4701330, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 133, the NHGIS PUMA code is 00700" +in.county_and_puma "G4701350, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 135, the NHGIS PUMA code is 02800" +in.county_and_puma "G4701370, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 137, the NHGIS PUMA code is 00700" +in.county_and_puma "G4701390, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 139, the NHGIS PUMA code is 01900" +in.county_and_puma "G4701410, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 141, the NHGIS PUMA code is 00700" +in.county_and_puma "G4701430, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 143, the NHGIS PUMA code is 02100" +in.county_and_puma "G4701450, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 145, the NHGIS PUMA code is 01800" +in.county_and_puma "G4701470, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 147, the NHGIS PUMA code is 00400" +in.county_and_puma "G4701490, G47002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 149, the NHGIS PUMA code is 02401" +in.county_and_puma "G4701490, G47002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 149, the NHGIS PUMA code is 02402" +in.county_and_puma "G4701510, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 151, the NHGIS PUMA code is 00900" +in.county_and_puma "G4701530, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 153, the NHGIS PUMA code is 02100" +in.county_and_puma "G4701550, G47001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 155, the NHGIS PUMA code is 01500" +in.county_and_puma "G4701570, G47003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03201" +in.county_and_puma "G4701570, G47003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03202" +in.county_and_puma "G4701570, G47003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03203" +in.county_and_puma "G4701570, G47003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03204" +in.county_and_puma "G4701570, G47003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03205" +in.county_and_puma "G4701570, G47003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03206" +in.county_and_puma "G4701570, G47003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03207" +in.county_and_puma "G4701570, G47003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03208" +in.county_and_puma "G4701590, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 159, the NHGIS PUMA code is 00600" +in.county_and_puma "G4701610, G47000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 161, the NHGIS PUMA code is 00300" +in.county_and_puma "G4701630, G47001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 163, the NHGIS PUMA code is 01000" +in.county_and_puma "G4701630, G47001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 163, the NHGIS PUMA code is 01100" +in.county_and_puma "G4701650, G47000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 165, the NHGIS PUMA code is 00500" +in.county_and_puma "G4701670, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 167, the NHGIS PUMA code is 03100" +in.county_and_puma "G4701690, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 169, the NHGIS PUMA code is 00600" +in.county_and_puma "G4701710, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 171, the NHGIS PUMA code is 01200" +in.county_and_puma "G4701730, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 173, the NHGIS PUMA code is 01601" +in.county_and_puma "G4701750, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 175, the NHGIS PUMA code is 00800" +in.county_and_puma "G4701770, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 177, the NHGIS PUMA code is 00600" +in.county_and_puma "G4701790, G47001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 179, the NHGIS PUMA code is 01300" +in.county_and_puma "G4701810, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 181, the NHGIS PUMA code is 02800" +in.county_and_puma "G4701830, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 183, the NHGIS PUMA code is 00200" +in.county_and_puma "G4701850, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 185, the NHGIS PUMA code is 00800" +in.county_and_puma "G4701870, G47002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 187, the NHGIS PUMA code is 02600" +in.county_and_puma "G4701890, G47002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 189, the NHGIS PUMA code is 02300" +in.county_and_puma "G4800010, G48001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 001, the NHGIS PUMA code is 01800" +in.county_and_puma "G4800030, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 003, the NHGIS PUMA code is 03200" +in.county_and_puma "G4800050, G48004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 005, the NHGIS PUMA code is 04000" +in.county_and_puma "G4800070, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 007, the NHGIS PUMA code is 06500" +in.county_and_puma "G4800090, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 009, the NHGIS PUMA code is 00600" +in.county_and_puma "G4800110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 011, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800130, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 013, the NHGIS PUMA code is 06100" +in.county_and_puma "G4800150, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 015, the NHGIS PUMA code is 05000" +in.county_and_puma "G4800170, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 017, the NHGIS PUMA code is 00400" +in.county_and_puma "G4800190, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 019, the NHGIS PUMA code is 06100" +in.county_and_puma "G4800210, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 021, the NHGIS PUMA code is 05100" +in.county_and_puma "G4800230, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 023, the NHGIS PUMA code is 00600" +in.county_and_puma "G4800250, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 025, the NHGIS PUMA code is 06500" +in.county_and_puma "G4800270, G48003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 027, the NHGIS PUMA code is 03501" +in.county_and_puma "G4800270, G48003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 027, the NHGIS PUMA code is 03502" +in.county_and_puma "G4800290, G48005901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05901" +in.county_and_puma "G4800290, G48005902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05902" +in.county_and_puma "G4800290, G48005903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05903" +in.county_and_puma "G4800290, G48005904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05904" +in.county_and_puma "G4800290, G48005905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05905" +in.county_and_puma "G4800290, G48005906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05906" +in.county_and_puma "G4800290, G48005907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05907" +in.county_and_puma "G4800290, G48005908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05908" +in.county_and_puma "G4800290, G48005909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05909" +in.county_and_puma "G4800290, G48005910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05910" +in.county_and_puma "G4800290, G48005911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05911" +in.county_and_puma "G4800290, G48005912" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05912" +in.county_and_puma "G4800290, G48005913" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05913" +in.county_and_puma "G4800290, G48005914" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05914" +in.county_and_puma "G4800290, G48005915" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05915" +in.county_and_puma "G4800290, G48005916" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05916" +in.county_and_puma "G4800310, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 031, the NHGIS PUMA code is 06000" +in.county_and_puma "G4800330, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 033, the NHGIS PUMA code is 02800" +in.county_and_puma "G4800350, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 035, the NHGIS PUMA code is 03700" +in.county_and_puma "G4800370, G48001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 037, the NHGIS PUMA code is 01100" +in.county_and_puma "G4800390, G48004801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04801" +in.county_and_puma "G4800390, G48004802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04802" +in.county_and_puma "G4800390, G48004803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04803" +in.county_and_puma "G4800410, G48003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 041, the NHGIS PUMA code is 03602" +in.county_and_puma "G4800430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 043, the NHGIS PUMA code is 03200" +in.county_and_puma "G4800450, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 045, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800470, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 047, the NHGIS PUMA code is 06900" +in.county_and_puma "G4800490, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 049, the NHGIS PUMA code is 02600" +in.county_and_puma "G4800510, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 051, the NHGIS PUMA code is 03601" +in.county_and_puma "G4800530, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 053, the NHGIS PUMA code is 03400" +in.county_and_puma "G4800550, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 055, the NHGIS PUMA code is 05100" +in.county_and_puma "G4800570, G48005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 057, the NHGIS PUMA code is 05600" +in.county_and_puma "G4800590, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 059, the NHGIS PUMA code is 02600" +in.county_and_puma "G4800610, G48006701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06701" +in.county_and_puma "G4800610, G48006702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06702" +in.county_and_puma "G4800610, G48006703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06703" +in.county_and_puma "G4800630, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 063, the NHGIS PUMA code is 01300" +in.county_and_puma "G4800650, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 065, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800670, G48001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 067, the NHGIS PUMA code is 01100" +in.county_and_puma "G4800690, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 069, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800710, G48004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 071, the NHGIS PUMA code is 04400" +in.county_and_puma "G4800730, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 073, the NHGIS PUMA code is 01700" +in.county_and_puma "G4800750, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 075, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800770, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 077, the NHGIS PUMA code is 00600" +in.county_and_puma "G4800790, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 079, the NHGIS PUMA code is 00400" +in.county_and_puma "G4800810, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 081, the NHGIS PUMA code is 02800" +in.county_and_puma "G4800830, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 083, the NHGIS PUMA code is 02600" +in.county_and_puma "G4800850, G48001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01901" +in.county_and_puma "G4800850, G48001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01902" +in.county_and_puma "G4800850, G48001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01903" +in.county_and_puma "G4800850, G48001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01904" +in.county_and_puma "G4800850, G48001905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01905" +in.county_and_puma "G4800850, G48001906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01906" +in.county_and_puma "G4800850, G48001907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01907" +in.county_and_puma "G4800870, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 087, the NHGIS PUMA code is 00100" +in.county_and_puma "G4800890, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 089, the NHGIS PUMA code is 05000" +in.county_and_puma "G4800910, G48005800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 091, the NHGIS PUMA code is 05800" +in.county_and_puma "G4800930, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 093, the NHGIS PUMA code is 02600" +in.county_and_puma "G4800950, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 095, the NHGIS PUMA code is 02800" +in.county_and_puma "G4800970, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 097, the NHGIS PUMA code is 00800" +in.county_and_puma "G4800990, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 099, the NHGIS PUMA code is 03400" +in.county_and_puma "G4801010, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 101, the NHGIS PUMA code is 00600" +in.county_and_puma "G4801030, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 103, the NHGIS PUMA code is 03200" +in.county_and_puma "G4801050, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 105, the NHGIS PUMA code is 02800" +in.county_and_puma "G4801070, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 107, the NHGIS PUMA code is 00400" +in.county_and_puma "G4801090, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 109, the NHGIS PUMA code is 03200" +in.county_and_puma "G4801110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 111, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801130, G48002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02301" +in.county_and_puma "G4801130, G48002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02302" +in.county_and_puma "G4801130, G48002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02303" +in.county_and_puma "G4801130, G48002304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02304" +in.county_and_puma "G4801130, G48002305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02305" +in.county_and_puma "G4801130, G48002306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02306" +in.county_and_puma "G4801130, G48002307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02307" +in.county_and_puma "G4801130, G48002308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02308" +in.county_and_puma "G4801130, G48002309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02309" +in.county_and_puma "G4801130, G48002310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02310" +in.county_and_puma "G4801130, G48002311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02311" +in.county_and_puma "G4801130, G48002312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02312" +in.county_and_puma "G4801130, G48002313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02313" +in.county_and_puma "G4801130, G48002314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02314" +in.county_and_puma "G4801130, G48002315" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02315" +in.county_and_puma "G4801130, G48002316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02316" +in.county_and_puma "G4801130, G48002317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02317" +in.county_and_puma "G4801130, G48002318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02318" +in.county_and_puma "G4801130, G48002319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02319" +in.county_and_puma "G4801130, G48002320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02320" +in.county_and_puma "G4801130, G48002321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02321" +in.county_and_puma "G4801130, G48002322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02322" +in.county_and_puma "G4801150, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 115, the NHGIS PUMA code is 02800" +in.county_and_puma "G4801170, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 117, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801190, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 119, the NHGIS PUMA code is 01000" +in.county_and_puma "G4801210, G48002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02001" +in.county_and_puma "G4801210, G48002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02002" +in.county_and_puma "G4801210, G48002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02003" +in.county_and_puma "G4801210, G48002004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02004" +in.county_and_puma "G4801210, G48002005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02005" +in.county_and_puma "G4801210, G48002006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02006" +in.county_and_puma "G4801230, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 123, the NHGIS PUMA code is 05500" +in.county_and_puma "G4801250, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 125, the NHGIS PUMA code is 00400" +in.county_and_puma "G4801270, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 127, the NHGIS PUMA code is 06200" +in.county_and_puma "G4801290, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 129, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801310, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 131, the NHGIS PUMA code is 06400" +in.county_and_puma "G4801330, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 133, the NHGIS PUMA code is 02600" +in.county_and_puma "G4801350, G48003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 135, the NHGIS PUMA code is 03100" +in.county_and_puma "G4801370, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 137, the NHGIS PUMA code is 06200" +in.county_and_puma "G4801390, G48002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 139, the NHGIS PUMA code is 02101" +in.county_and_puma "G4801410, G48003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03301" +in.county_and_puma "G4801410, G48003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03302" +in.county_and_puma "G4801410, G48003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03303" +in.county_and_puma "G4801410, G48003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03304" +in.county_and_puma "G4801410, G48003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03305" +in.county_and_puma "G4801410, G48003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03306" +in.county_and_puma "G4801430, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 143, the NHGIS PUMA code is 02200" +in.county_and_puma "G4801450, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 145, the NHGIS PUMA code is 03700" +in.county_and_puma "G4801470, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 147, the NHGIS PUMA code is 00800" +in.county_and_puma "G4801490, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 149, the NHGIS PUMA code is 05100" +in.county_and_puma "G4801510, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 151, the NHGIS PUMA code is 02600" +in.county_and_puma "G4801530, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 153, the NHGIS PUMA code is 00400" +in.county_and_puma "G4801550, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 155, the NHGIS PUMA code is 00600" +in.county_and_puma "G4801570, G48004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04901" +in.county_and_puma "G4801570, G48004902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04902" +in.county_and_puma "G4801570, G48004903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04903" +in.county_and_puma "G4801570, G48004904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04904" +in.county_and_puma "G4801570, G48004905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04905" +in.county_and_puma "G4801590, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 159, the NHGIS PUMA code is 01000" +in.county_and_puma "G4801610, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 161, the NHGIS PUMA code is 03700" +in.county_and_puma "G4801630, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 163, the NHGIS PUMA code is 06100" +in.county_and_puma "G4801650, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 165, the NHGIS PUMA code is 03200" +in.county_and_puma "G4801670, G48004701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 167, the NHGIS PUMA code is 04701" +in.county_and_puma "G4801670, G48004702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 167, the NHGIS PUMA code is 04702" +in.county_and_puma "G4801690, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 169, the NHGIS PUMA code is 00400" +in.county_and_puma "G4801710, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 171, the NHGIS PUMA code is 06000" +in.county_and_puma "G4801730, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 173, the NHGIS PUMA code is 02800" +in.county_and_puma "G4801750, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 175, the NHGIS PUMA code is 05500" +in.county_and_puma "G4801770, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 177, the NHGIS PUMA code is 05500" +in.county_and_puma "G4801790, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 179, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801810, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 181, the NHGIS PUMA code is 00800" +in.county_and_puma "G4801830, G48001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 183, the NHGIS PUMA code is 01600" +in.county_and_puma "G4801850, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 185, the NHGIS PUMA code is 03601" +in.county_and_puma "G4801870, G48005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 187, the NHGIS PUMA code is 05700" +in.county_and_puma "G4801890, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 189, the NHGIS PUMA code is 00400" +in.county_and_puma "G4801910, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 191, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801930, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 193, the NHGIS PUMA code is 03400" +in.county_and_puma "G4801950, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 195, the NHGIS PUMA code is 00100" +in.county_and_puma "G4801970, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 197, the NHGIS PUMA code is 00600" +in.county_and_puma "G4801990, G48004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 199, the NHGIS PUMA code is 04200" +in.county_and_puma "G4802010, G48004601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04601" +in.county_and_puma "G4802010, G48004602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04602" +in.county_and_puma "G4802010, G48004603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04603" +in.county_and_puma "G4802010, G48004604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04604" +in.county_and_puma "G4802010, G48004605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04605" +in.county_and_puma "G4802010, G48004606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04606" +in.county_and_puma "G4802010, G48004607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04607" +in.county_and_puma "G4802010, G48004608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04608" +in.county_and_puma "G4802010, G48004609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04609" +in.county_and_puma "G4802010, G48004610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04610" +in.county_and_puma "G4802010, G48004611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04611" +in.county_and_puma "G4802010, G48004612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04612" +in.county_and_puma "G4802010, G48004613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04613" +in.county_and_puma "G4802010, G48004614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04614" +in.county_and_puma "G4802010, G48004615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04615" +in.county_and_puma "G4802010, G48004616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04616" +in.county_and_puma "G4802010, G48004617" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04617" +in.county_and_puma "G4802010, G48004618" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04618" +in.county_and_puma "G4802010, G48004619" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04619" +in.county_and_puma "G4802010, G48004620" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04620" +in.county_and_puma "G4802010, G48004621" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04621" +in.county_and_puma "G4802010, G48004622" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04622" +in.county_and_puma "G4802010, G48004623" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04623" +in.county_and_puma "G4802010, G48004624" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04624" +in.county_and_puma "G4802010, G48004625" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04625" +in.county_and_puma "G4802010, G48004626" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04626" +in.county_and_puma "G4802010, G48004627" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04627" +in.county_and_puma "G4802010, G48004628" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04628" +in.county_and_puma "G4802010, G48004629" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04629" +in.county_and_puma "G4802010, G48004630" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04630" +in.county_and_puma "G4802010, G48004631" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04631" +in.county_and_puma "G4802010, G48004632" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04632" +in.county_and_puma "G4802010, G48004633" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04633" +in.county_and_puma "G4802010, G48004634" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04634" +in.county_and_puma "G4802010, G48004635" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04635" +in.county_and_puma "G4802010, G48004636" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04636" +in.county_and_puma "G4802010, G48004637" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04637" +in.county_and_puma "G4802010, G48004638" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04638" +in.county_and_puma "G4802030, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 203, the NHGIS PUMA code is 01200" +in.county_and_puma "G4802050, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 205, the NHGIS PUMA code is 00100" +in.county_and_puma "G4802070, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 207, the NHGIS PUMA code is 02600" +in.county_and_puma "G4802090, G48005400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 209, the NHGIS PUMA code is 05400" +in.county_and_puma "G4802110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 211, the NHGIS PUMA code is 00100" +in.county_and_puma "G4802130, G48001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 213, the NHGIS PUMA code is 01800" +in.county_and_puma "G4802150, G48006801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06801" +in.county_and_puma "G4802150, G48006802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06802" +in.county_and_puma "G4802150, G48006803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06803" +in.county_and_puma "G4802150, G48006804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06804" +in.county_and_puma "G4802150, G48006805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06805" +in.county_and_puma "G4802150, G48006806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06806" +in.county_and_puma "G4802150, G48006807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06807" +in.county_and_puma "G4802170, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 217, the NHGIS PUMA code is 03700" +in.county_and_puma "G4802190, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 219, the NHGIS PUMA code is 00400" +in.county_and_puma "G4802210, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 221, the NHGIS PUMA code is 02200" +in.county_and_puma "G4802230, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 223, the NHGIS PUMA code is 01000" +in.county_and_puma "G4802250, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 225, the NHGIS PUMA code is 03900" +in.county_and_puma "G4802270, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 227, the NHGIS PUMA code is 02800" +in.county_and_puma "G4802290, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 229, the NHGIS PUMA code is 03200" +in.county_and_puma "G4802310, G48000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 231, the NHGIS PUMA code is 00900" +in.county_and_puma "G4802330, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 233, the NHGIS PUMA code is 00100" +in.county_and_puma "G4802350, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 235, the NHGIS PUMA code is 02800" +in.county_and_puma "G4802370, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 237, the NHGIS PUMA code is 00600" +in.county_and_puma "G4802390, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 239, the NHGIS PUMA code is 05500" +in.county_and_puma "G4802410, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 241, the NHGIS PUMA code is 04100" +in.county_and_puma "G4802430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 243, the NHGIS PUMA code is 03200" +in.county_and_puma "G4802450, G48004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 245, the NHGIS PUMA code is 04301" +in.county_and_puma "G4802450, G48004302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 245, the NHGIS PUMA code is 04302" +in.county_and_puma "G4802470, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 247, the NHGIS PUMA code is 06400" +in.county_and_puma "G4802490, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 249, the NHGIS PUMA code is 06900" +in.county_and_puma "G4802510, G48002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 251, the NHGIS PUMA code is 02102" +in.county_and_puma "G4802530, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 253, the NHGIS PUMA code is 02600" +in.county_and_puma "G4802550, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 255, the NHGIS PUMA code is 05500" +in.county_and_puma "G4802570, G48001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 257, the NHGIS PUMA code is 01400" +in.county_and_puma "G4802590, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 259, the NHGIS PUMA code is 06000" +in.county_and_puma "G4802610, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 261, the NHGIS PUMA code is 06900" +in.county_and_puma "G4802630, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 263, the NHGIS PUMA code is 02600" +in.county_and_puma "G4802650, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 265, the NHGIS PUMA code is 06000" +in.county_and_puma "G4802670, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 267, the NHGIS PUMA code is 02800" +in.county_and_puma "G4802690, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 269, the NHGIS PUMA code is 00400" +in.county_and_puma "G4802710, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 271, the NHGIS PUMA code is 06200" +in.county_and_puma "G4802730, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 273, the NHGIS PUMA code is 06900" +in.county_and_puma "G4802750, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 275, the NHGIS PUMA code is 02600" +in.county_and_puma "G4802770, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 277, the NHGIS PUMA code is 01000" +in.county_and_puma "G4802790, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 279, the NHGIS PUMA code is 00400" +in.county_and_puma "G4802810, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 281, the NHGIS PUMA code is 03400" +in.county_and_puma "G4802830, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 283, the NHGIS PUMA code is 06200" +in.county_and_puma "G4802850, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 285, the NHGIS PUMA code is 05500" +in.county_and_puma "G4802870, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 287, the NHGIS PUMA code is 05100" +in.county_and_puma "G4802890, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 289, the NHGIS PUMA code is 03601" +in.county_and_puma "G4802910, G48004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 291, the NHGIS PUMA code is 04400" +in.county_and_puma "G4802930, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 293, the NHGIS PUMA code is 03700" +in.county_and_puma "G4802950, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 295, the NHGIS PUMA code is 00100" +in.county_and_puma "G4802970, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 297, the NHGIS PUMA code is 06400" +in.county_and_puma "G4802990, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 299, the NHGIS PUMA code is 03400" +in.county_and_puma "G4803030, G48000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 303, the NHGIS PUMA code is 00501" +in.county_and_puma "G4803030, G48000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 303, the NHGIS PUMA code is 00502" +in.county_and_puma "G4803050, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 305, the NHGIS PUMA code is 00400" +in.county_and_puma "G4803070, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 307, the NHGIS PUMA code is 02800" +in.county_and_puma "G4803090, G48003801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 309, the NHGIS PUMA code is 03801" +in.county_and_puma "G4803090, G48003802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 309, the NHGIS PUMA code is 03802" +in.county_and_puma "G4803110, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 311, the NHGIS PUMA code is 06400" +in.county_and_puma "G4803130, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 313, the NHGIS PUMA code is 03601" +in.county_and_puma "G4803150, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 315, the NHGIS PUMA code is 01200" +in.county_and_puma "G4803170, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 317, the NHGIS PUMA code is 02800" +in.county_and_puma "G4803190, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 319, the NHGIS PUMA code is 02800" +in.county_and_puma "G4803210, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 321, the NHGIS PUMA code is 05000" +in.county_and_puma "G4803230, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 323, the NHGIS PUMA code is 06200" +in.county_and_puma "G4803250, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 325, the NHGIS PUMA code is 06100" +in.county_and_puma "G4803270, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 327, the NHGIS PUMA code is 02800" +in.county_and_puma "G4803290, G48003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 329, the NHGIS PUMA code is 03000" +in.county_and_puma "G4803310, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 331, the NHGIS PUMA code is 03601" +in.county_and_puma "G4803330, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 333, the NHGIS PUMA code is 03400" +in.county_and_puma "G4803350, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 335, the NHGIS PUMA code is 02600" +in.county_and_puma "G4803370, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 337, the NHGIS PUMA code is 00600" +in.county_and_puma "G4803390, G48004501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04501" +in.county_and_puma "G4803390, G48004502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04502" +in.county_and_puma "G4803390, G48004503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04503" +in.county_and_puma "G4803390, G48004504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04504" +in.county_and_puma "G4803410, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 341, the NHGIS PUMA code is 00100" +in.county_and_puma "G4803430, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 343, the NHGIS PUMA code is 01000" +in.county_and_puma "G4803450, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 345, the NHGIS PUMA code is 00400" +in.county_and_puma "G4803470, G48004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 347, the NHGIS PUMA code is 04000" +in.county_and_puma "G4803490, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 349, the NHGIS PUMA code is 03700" +in.county_and_puma "G4803510, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 351, the NHGIS PUMA code is 04100" +in.county_and_puma "G4803530, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 353, the NHGIS PUMA code is 02600" +in.county_and_puma "G4803550, G48006601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06601" +in.county_and_puma "G4803550, G48006602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06602" +in.county_and_puma "G4803550, G48006603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06603" +in.county_and_puma "G4803570, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 357, the NHGIS PUMA code is 00100" +in.county_and_puma "G4803590, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 359, the NHGIS PUMA code is 00100" +in.county_and_puma "G4803610, G48004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 361, the NHGIS PUMA code is 04200" +in.county_and_puma "G4803630, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 363, the NHGIS PUMA code is 02200" +in.county_and_puma "G4803650, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 365, the NHGIS PUMA code is 01700" +in.county_and_puma "G4803670, G48002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 367, the NHGIS PUMA code is 02400" +in.county_and_puma "G4803690, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 369, the NHGIS PUMA code is 00100" +in.county_and_puma "G4803710, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 371, the NHGIS PUMA code is 03200" +in.county_and_puma "G4803730, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 373, the NHGIS PUMA code is 03900" +in.county_and_puma "G4803750, G48000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 375, the NHGIS PUMA code is 00200" +in.county_and_puma "G4803770, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 377, the NHGIS PUMA code is 03200" +in.county_and_puma "G4803790, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 379, the NHGIS PUMA code is 01300" +in.county_and_puma "G4803810, G48000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 381, the NHGIS PUMA code is 00300" +in.county_and_puma "G4803830, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 383, the NHGIS PUMA code is 02800" +in.county_and_puma "G4803850, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 385, the NHGIS PUMA code is 06200" +in.county_and_puma "G4803870, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 387, the NHGIS PUMA code is 01000" +in.county_and_puma "G4803890, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 389, the NHGIS PUMA code is 03200" +in.county_and_puma "G4803910, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 391, the NHGIS PUMA code is 06500" +in.county_and_puma "G4803930, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 393, the NHGIS PUMA code is 00100" +in.county_and_puma "G4803950, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 395, the NHGIS PUMA code is 03601" +in.county_and_puma "G4803970, G48000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 397, the NHGIS PUMA code is 00900" +in.county_and_puma "G4803990, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 399, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804010, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 401, the NHGIS PUMA code is 01700" +in.county_and_puma "G4804030, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 403, the NHGIS PUMA code is 04100" +in.county_and_puma "G4804050, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 405, the NHGIS PUMA code is 04100" +in.county_and_puma "G4804070, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 407, the NHGIS PUMA code is 03900" +in.county_and_puma "G4804090, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 409, the NHGIS PUMA code is 06500" +in.county_and_puma "G4804110, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 411, the NHGIS PUMA code is 03400" +in.county_and_puma "G4804130, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 413, the NHGIS PUMA code is 02800" +in.county_and_puma "G4804150, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 415, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804170, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 417, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804190, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 419, the NHGIS PUMA code is 04100" +in.county_and_puma "G4804210, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 421, the NHGIS PUMA code is 00100" +in.county_and_puma "G4804230, G48001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 423, the NHGIS PUMA code is 01501" +in.county_and_puma "G4804230, G48001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 423, the NHGIS PUMA code is 01502" +in.county_and_puma "G4804250, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 425, the NHGIS PUMA code is 02200" +in.county_and_puma "G4804270, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 427, the NHGIS PUMA code is 06400" +in.county_and_puma "G4804290, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 429, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804310, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 431, the NHGIS PUMA code is 02800" +in.county_and_puma "G4804330, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 433, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804350, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 435, the NHGIS PUMA code is 02800" +in.county_and_puma "G4804370, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 437, the NHGIS PUMA code is 00100" +in.county_and_puma "G4804390, G48002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02501" +in.county_and_puma "G4804390, G48002502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02502" +in.county_and_puma "G4804390, G48002503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02503" +in.county_and_puma "G4804390, G48002504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02504" +in.county_and_puma "G4804390, G48002505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02505" +in.county_and_puma "G4804390, G48002506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02506" +in.county_and_puma "G4804390, G48002507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02507" +in.county_and_puma "G4804390, G48002508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02508" +in.county_and_puma "G4804390, G48002509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02509" +in.county_and_puma "G4804390, G48002510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02510" +in.county_and_puma "G4804390, G48002511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02511" +in.county_and_puma "G4804390, G48002512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02512" +in.county_and_puma "G4804390, G48002513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02513" +in.county_and_puma "G4804390, G48002514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02514" +in.county_and_puma "G4804390, G48002515" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02515" +in.county_and_puma "G4804390, G48002516" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02516" +in.county_and_puma "G4804410, G48002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 441, the NHGIS PUMA code is 02700" +in.county_and_puma "G4804430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 443, the NHGIS PUMA code is 03200" +in.county_and_puma "G4804450, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 445, the NHGIS PUMA code is 00400" +in.county_and_puma "G4804470, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 447, the NHGIS PUMA code is 02600" +in.county_and_puma "G4804490, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 449, the NHGIS PUMA code is 01000" +in.county_and_puma "G4804510, G48002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 451, the NHGIS PUMA code is 02900" +in.county_and_puma "G4804530, G48005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05301" +in.county_and_puma "G4804530, G48005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05302" +in.county_and_puma "G4804530, G48005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05303" +in.county_and_puma "G4804530, G48005304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05304" +in.county_and_puma "G4804530, G48005305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05305" +in.county_and_puma "G4804530, G48005306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05306" +in.county_and_puma "G4804530, G48005307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05307" +in.county_and_puma "G4804530, G48005308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05308" +in.county_and_puma "G4804530, G48005309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05309" +in.county_and_puma "G4804550, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 455, the NHGIS PUMA code is 03900" +in.county_and_puma "G4804570, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 457, the NHGIS PUMA code is 04100" +in.county_and_puma "G4804590, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 459, the NHGIS PUMA code is 01200" +in.county_and_puma "G4804610, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 461, the NHGIS PUMA code is 02800" +in.county_and_puma "G4804630, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 463, the NHGIS PUMA code is 06200" +in.county_and_puma "G4804650, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 465, the NHGIS PUMA code is 06200" +in.county_and_puma "G4804670, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 467, the NHGIS PUMA code is 01300" +in.county_and_puma "G4804690, G48005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 469, the NHGIS PUMA code is 05600" +in.county_and_puma "G4804710, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 471, the NHGIS PUMA code is 03900" +in.county_and_puma "G4804730, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 473, the NHGIS PUMA code is 05000" +in.county_and_puma "G4804750, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 475, the NHGIS PUMA code is 03200" +in.county_and_puma "G4804770, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 477, the NHGIS PUMA code is 03601" +in.county_and_puma "G4804790, G48006301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 479, the NHGIS PUMA code is 06301" +in.county_and_puma "G4804790, G48006302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 479, the NHGIS PUMA code is 06302" +in.county_and_puma "G4804810, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 481, the NHGIS PUMA code is 05000" +in.county_and_puma "G4804830, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 483, the NHGIS PUMA code is 00100" +in.county_and_puma "G4804850, G48000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 485, the NHGIS PUMA code is 00700" +in.county_and_puma "G4804870, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 487, the NHGIS PUMA code is 00600" +in.county_and_puma "G4804890, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 489, the NHGIS PUMA code is 06900" +in.county_and_puma "G4804910, G48005201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05201" +in.county_and_puma "G4804910, G48005202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05202" +in.county_and_puma "G4804910, G48005203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05203" +in.county_and_puma "G4804910, G48005204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05204" +in.county_and_puma "G4804930, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 493, the NHGIS PUMA code is 05500" +in.county_and_puma "G4804950, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 495, the NHGIS PUMA code is 03200" +in.county_and_puma "G4804970, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 497, the NHGIS PUMA code is 00600" +in.county_and_puma "G4804990, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 499, the NHGIS PUMA code is 01300" +in.county_and_puma "G4805010, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 501, the NHGIS PUMA code is 00400" +in.county_and_puma "G4805030, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 503, the NHGIS PUMA code is 00600" +in.county_and_puma "G4805050, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 505, the NHGIS PUMA code is 06400" +in.county_and_puma "G4805070, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 507, the NHGIS PUMA code is 06200" +in.county_and_puma "G4900010, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 001, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900030, G49003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 003, the NHGIS PUMA code is 03001" +in.county_and_puma "G4900050, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 005, the NHGIS PUMA code is 05001" +in.county_and_puma "G4900070, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 007, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900090, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 009, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900110, G49011001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 011, the NHGIS PUMA code is 11001" +in.county_and_puma "G4900110, G49011002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 011, the NHGIS PUMA code is 11002" +in.county_and_puma "G4900130, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 013, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900150, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 015, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900170, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 017, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900190, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 019, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900210, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 021, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900230, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 023, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900250, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 025, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900270, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 027, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900290, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 029, the NHGIS PUMA code is 05001" +in.county_and_puma "G4900310, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 031, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900330, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 033, the NHGIS PUMA code is 05001" +in.county_and_puma "G4900350, G49035001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35001" +in.county_and_puma "G4900350, G49035002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35002" +in.county_and_puma "G4900350, G49035003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35003" +in.county_and_puma "G4900350, G49035004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35004" +in.county_and_puma "G4900350, G49035005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35005" +in.county_and_puma "G4900350, G49035006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35006" +in.county_and_puma "G4900350, G49035007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35007" +in.county_and_puma "G4900350, G49035008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35008" +in.county_and_puma "G4900350, G49035009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35009" +in.county_and_puma "G4900370, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 037, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900390, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 039, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900410, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 041, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900430, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 043, the NHGIS PUMA code is 05001" +in.county_and_puma "G4900450, G49003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 045, the NHGIS PUMA code is 03001" +in.county_and_puma "G4900470, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 047, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900490, G49049001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49001" +in.county_and_puma "G4900490, G49049002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49002" +in.county_and_puma "G4900490, G49049003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49003" +in.county_and_puma "G4900490, G49049004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49004" +in.county_and_puma "G4900510, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 051, the NHGIS PUMA code is 13001" +in.county_and_puma "G4900530, G49053001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 053, the NHGIS PUMA code is 53001" +in.county_and_puma "G4900550, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 055, the NHGIS PUMA code is 21001" +in.county_and_puma "G4900570, G49057001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 057, the NHGIS PUMA code is 57001" +in.county_and_puma "G4900570, G49057002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 057, the NHGIS PUMA code is 57002" +in.county_and_puma "G5000010, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 001, the NHGIS PUMA code is 00400" +in.county_and_puma "G5000030, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 003, the NHGIS PUMA code is 00400" +in.county_and_puma "G5000050, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G5000070, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G5000090, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 009, the NHGIS PUMA code is 00200" +in.county_and_puma "G5000110, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 011, the NHGIS PUMA code is 00100" +in.county_and_puma "G5000130, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G5000150, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 015, the NHGIS PUMA code is 00200" +in.county_and_puma "G5000170, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 017, the NHGIS PUMA code is 00300" +in.county_and_puma "G5000190, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 019, the NHGIS PUMA code is 00200" +in.county_and_puma "G5000210, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 021, the NHGIS PUMA code is 00400" +in.county_and_puma "G5000230, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 023, the NHGIS PUMA code is 00200" +in.county_and_puma "G5000250, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 025, the NHGIS PUMA code is 00300" +in.county_and_puma "G5000270, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 027, the NHGIS PUMA code is 00300" +in.county_and_puma "G5100010, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 001, the NHGIS PUMA code is 51125" +in.county_and_puma "G5100030, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 003, the NHGIS PUMA code is 51089" +in.county_and_puma "G5100030, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 003, the NHGIS PUMA code is 51090" +in.county_and_puma "G5100050, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 005, the NHGIS PUMA code is 51045" +in.county_and_puma "G5100070, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 007, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100090, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 009, the NHGIS PUMA code is 51095" +in.county_and_puma "G5100110, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 011, the NHGIS PUMA code is 51095" +in.county_and_puma "G5100130, G51001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 013, the NHGIS PUMA code is 01301" +in.county_and_puma "G5100130, G51001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 013, the NHGIS PUMA code is 01302" +in.county_and_puma "G5100150, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 015, the NHGIS PUMA code is 51080" +in.county_and_puma "G5100170, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 017, the NHGIS PUMA code is 51080" +in.county_and_puma "G5100190, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 019, the NHGIS PUMA code is 51095" +in.county_and_puma "G5100210, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 021, the NHGIS PUMA code is 51020" +in.county_and_puma "G5100230, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 023, the NHGIS PUMA code is 51045" +in.county_and_puma "G5100250, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 025, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100270, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 027, the NHGIS PUMA code is 51010" +in.county_and_puma "G5100290, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 029, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100310, G51051096" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 031, the NHGIS PUMA code is 51096" +in.county_and_puma "G5100330, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 033, the NHGIS PUMA code is 51120" +in.county_and_puma "G5100350, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 035, the NHGIS PUMA code is 51020" +in.county_and_puma "G5100360, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 036, the NHGIS PUMA code is 51215" +in.county_and_puma "G5100370, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 037, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100410, G51004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04101" +in.county_and_puma "G5100410, G51004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04102" +in.county_and_puma "G5100410, G51004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04103" +in.county_and_puma "G5100430, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 043, the NHGIS PUMA code is 51084" +in.county_and_puma "G5100450, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 045, the NHGIS PUMA code is 51045" +in.county_and_puma "G5100470, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 047, the NHGIS PUMA code is 51087" +in.county_and_puma "G5100490, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 049, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100510, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 051, the NHGIS PUMA code is 51010" +in.county_and_puma "G5100530, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 053, the NHGIS PUMA code is 51135" +in.county_and_puma "G5100570, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 057, the NHGIS PUMA code is 51125" +in.county_and_puma "G5100590, G51059301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59301" +in.county_and_puma "G5100590, G51059302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59302" +in.county_and_puma "G5100590, G51059303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59303" +in.county_and_puma "G5100590, G51059304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59304" +in.county_and_puma "G5100590, G51059305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59305" +in.county_and_puma "G5100590, G51059306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59306" +in.county_and_puma "G5100590, G51059307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59307" +in.county_and_puma "G5100590, G51059308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59308" +in.county_and_puma "G5100590, G51059309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59309" +in.county_and_puma "G5100610, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 061, the NHGIS PUMA code is 51087" +in.county_and_puma "G5100630, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 063, the NHGIS PUMA code is 51040" +in.county_and_puma "G5100650, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 065, the NHGIS PUMA code is 51089" +in.county_and_puma "G5100670, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 067, the NHGIS PUMA code is 51045" +in.county_and_puma "G5100690, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 069, the NHGIS PUMA code is 51084" +in.county_and_puma "G5100710, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 071, the NHGIS PUMA code is 51040" +in.county_and_puma "G5100730, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 073, the NHGIS PUMA code is 51125" +in.county_and_puma "G5100750, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 075, the NHGIS PUMA code is 51215" +in.county_and_puma "G5100770, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 077, the NHGIS PUMA code is 51020" +in.county_and_puma "G5100790, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 079, the NHGIS PUMA code is 51090" +in.county_and_puma "G5100810, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 081, the NHGIS PUMA code is 51135" +in.county_and_puma "G5100830, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 083, the NHGIS PUMA code is 51105" +in.county_and_puma "G5100850, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 085, the NHGIS PUMA code is 51215" +in.county_and_puma "G5100870, G51051224" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 087, the NHGIS PUMA code is 51224" +in.county_and_puma "G5100870, G51051225" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 087, the NHGIS PUMA code is 51225" +in.county_and_puma "G5100890, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 089, the NHGIS PUMA code is 51097" +in.county_and_puma "G5100910, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 091, the NHGIS PUMA code is 51080" +in.county_and_puma "G5100930, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 093, the NHGIS PUMA code is 51145" +in.county_and_puma "G5100950, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 095, the NHGIS PUMA code is 51206" +in.county_and_puma "G5100970, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 097, the NHGIS PUMA code is 51125" +in.county_and_puma "G5100990, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 099, the NHGIS PUMA code is 51120" +in.county_and_puma "G5101010, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 101, the NHGIS PUMA code is 51215" +in.county_and_puma "G5101030, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 103, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101050, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 105, the NHGIS PUMA code is 51010" +in.county_and_puma "G5101070, G51010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10701" +in.county_and_puma "G5101070, G51010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10702" +in.county_and_puma "G5101070, G51010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10703" +in.county_and_puma "G5101090, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 109, the NHGIS PUMA code is 51089" +in.county_and_puma "G5101110, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 111, the NHGIS PUMA code is 51105" +in.county_and_puma "G5101130, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 113, the NHGIS PUMA code is 51087" +in.county_and_puma "G5101150, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 115, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101170, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 117, the NHGIS PUMA code is 51105" +in.county_and_puma "G5101190, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 119, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101210, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 121, the NHGIS PUMA code is 51040" +in.county_and_puma "G5101250, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 125, the NHGIS PUMA code is 51089" +in.county_and_puma "G5101270, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 127, the NHGIS PUMA code is 51215" +in.county_and_puma "G5101310, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 131, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101330, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 133, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101350, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 135, the NHGIS PUMA code is 51105" +in.county_and_puma "G5101370, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 137, the NHGIS PUMA code is 51087" +in.county_and_puma "G5101390, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 139, the NHGIS PUMA code is 51085" +in.county_and_puma "G5101410, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 141, the NHGIS PUMA code is 51097" +in.county_and_puma "G5101430, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 143, the NHGIS PUMA code is 51097" +in.county_and_puma "G5101450, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 145, the NHGIS PUMA code is 51215" +in.county_and_puma "G5101470, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 147, the NHGIS PUMA code is 51105" +in.county_and_puma "G5101490, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 149, the NHGIS PUMA code is 51135" +in.county_and_puma "G5101530, G51051244" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51244" +in.county_and_puma "G5101530, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51245" +in.county_and_puma "G5101530, G51051246" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51246" +in.county_and_puma "G5101550, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 155, the NHGIS PUMA code is 51040" +in.county_and_puma "G5101570, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 157, the NHGIS PUMA code is 51087" +in.county_and_puma "G5101590, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 159, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101610, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 161, the NHGIS PUMA code is 51044" +in.county_and_puma "G5101610, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 161, the NHGIS PUMA code is 51045" +in.county_and_puma "G5101630, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 163, the NHGIS PUMA code is 51080" +in.county_and_puma "G5101650, G51051110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 165, the NHGIS PUMA code is 51110" +in.county_and_puma "G5101670, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 167, the NHGIS PUMA code is 51010" +in.county_and_puma "G5101690, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 169, the NHGIS PUMA code is 51010" +in.county_and_puma "G5101710, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 171, the NHGIS PUMA code is 51085" +in.county_and_puma "G5101730, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 173, the NHGIS PUMA code is 51020" +in.county_and_puma "G5101750, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 175, the NHGIS PUMA code is 51145" +in.county_and_puma "G5101770, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 177, the NHGIS PUMA code is 51120" +in.county_and_puma "G5101790, G51051115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 179, the NHGIS PUMA code is 51115" +in.county_and_puma "G5101810, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 181, the NHGIS PUMA code is 51135" +in.county_and_puma "G5101830, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 183, the NHGIS PUMA code is 51135" +in.county_and_puma "G5101850, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 185, the NHGIS PUMA code is 51010" +in.county_and_puma "G5101870, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 187, the NHGIS PUMA code is 51085" +in.county_and_puma "G5101910, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 191, the NHGIS PUMA code is 51020" +in.county_and_puma "G5101930, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 193, the NHGIS PUMA code is 51125" +in.county_and_puma "G5101950, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 195, the NHGIS PUMA code is 51010" +in.county_and_puma "G5101970, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 197, the NHGIS PUMA code is 51020" +in.county_and_puma "G5101990, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 199, the NHGIS PUMA code is 51206" +in.county_and_puma "G5105100, G51051255" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 510, the NHGIS PUMA code is 51255" +in.county_and_puma "G5105200, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 520, the NHGIS PUMA code is 51020" +in.county_and_puma "G5105300, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 530, the NHGIS PUMA code is 51080" +in.county_and_puma "G5105400, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 540, the NHGIS PUMA code is 51090" +in.county_and_puma "G5105500, G51055001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 550, the NHGIS PUMA code is 55001" +in.county_and_puma "G5105500, G51055002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 550, the NHGIS PUMA code is 55002" +in.county_and_puma "G5105700, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 570, the NHGIS PUMA code is 51135" +in.county_and_puma "G5105800, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 580, the NHGIS PUMA code is 51045" +in.county_and_puma "G5105900, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 590, the NHGIS PUMA code is 51097" +in.county_and_puma "G5105950, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 595, the NHGIS PUMA code is 51135" +in.county_and_puma "G5106000, G51059303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 600, the NHGIS PUMA code is 59303" +in.county_and_puma "G5106100, G51059308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 610, the NHGIS PUMA code is 59308" +in.county_and_puma "G5106200, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 620, the NHGIS PUMA code is 51145" +in.county_and_puma "G5106300, G51051115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 630, the NHGIS PUMA code is 51115" +in.county_and_puma "G5106400, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 640, the NHGIS PUMA code is 51020" +in.county_and_puma "G5106500, G51051186" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 650, the NHGIS PUMA code is 51186" +in.county_and_puma "G5106600, G51051110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 660, the NHGIS PUMA code is 51110" +in.county_and_puma "G5106700, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 670, the NHGIS PUMA code is 51135" +in.county_and_puma "G5106780, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 678, the NHGIS PUMA code is 51080" +in.county_and_puma "G5106800, G51051096" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 680, the NHGIS PUMA code is 51096" +in.county_and_puma "G5106830, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 683, the NHGIS PUMA code is 51245" +in.county_and_puma "G5106850, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 685, the NHGIS PUMA code is 51245" +in.county_and_puma "G5106900, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 690, the NHGIS PUMA code is 51097" +in.county_and_puma "G5107000, G51051175" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 700, the NHGIS PUMA code is 51175" +in.county_and_puma "G5107100, G51051154" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 710, the NHGIS PUMA code is 51154" +in.county_and_puma "G5107100, G51051155" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 710, the NHGIS PUMA code is 51155" +in.county_and_puma "G5107200, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 720, the NHGIS PUMA code is 51010" +in.county_and_puma "G5107300, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 730, the NHGIS PUMA code is 51135" +in.county_and_puma "G5107350, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 735, the NHGIS PUMA code is 51206" +in.county_and_puma "G5107400, G51051155" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 740, the NHGIS PUMA code is 51155" +in.county_and_puma "G5107500, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 750, the NHGIS PUMA code is 51040" +in.county_and_puma "G5107600, G51051235" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 760, the NHGIS PUMA code is 51235" +in.county_and_puma "G5107700, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 770, the NHGIS PUMA code is 51044" +in.county_and_puma "G5107750, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 775, the NHGIS PUMA code is 51044" +in.county_and_puma "G5107900, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 790, the NHGIS PUMA code is 51080" +in.county_and_puma "G5108000, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 800, the NHGIS PUMA code is 51145" +in.county_and_puma "G5108100, G51051164" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51164" +in.county_and_puma "G5108100, G51051165" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51165" +in.county_and_puma "G5108100, G51051167" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51167" +in.county_and_puma "G5108200, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 820, the NHGIS PUMA code is 51080" +in.county_and_puma "G5108300, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 830, the NHGIS PUMA code is 51206" +in.county_and_puma "G5108400, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 840, the NHGIS PUMA code is 51084" +in.county_and_puma "G5300010, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 001, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300030, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 003, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300050, G53010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10701" +in.county_and_puma "G5300050, G53010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10702" +in.county_and_puma "G5300050, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10703" +in.county_and_puma "G5300070, G53010300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 007, the NHGIS PUMA code is 10300" +in.county_and_puma "G5300090, G53011900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 009, the NHGIS PUMA code is 11900" +in.county_and_puma "G5300110, G53011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11101" +in.county_and_puma "G5300110, G53011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11102" +in.county_and_puma "G5300110, G53011103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11103" +in.county_and_puma "G5300110, G53011104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11104" +in.county_and_puma "G5300130, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 013, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300150, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 015, the NHGIS PUMA code is 11200" +in.county_and_puma "G5300170, G53010300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 017, the NHGIS PUMA code is 10300" +in.county_and_puma "G5300190, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 019, the NHGIS PUMA code is 10400" +in.county_and_puma "G5300210, G53010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 021, the NHGIS PUMA code is 10701" +in.county_and_puma "G5300210, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 021, the NHGIS PUMA code is 10703" +in.county_and_puma "G5300230, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 023, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300250, G53010800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 025, the NHGIS PUMA code is 10800" +in.county_and_puma "G5300270, G53011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 027, the NHGIS PUMA code is 11300" +in.county_and_puma "G5300290, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 029, the NHGIS PUMA code is 10200" +in.county_and_puma "G5300310, G53011900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 031, the NHGIS PUMA code is 11900" +in.county_and_puma "G5300330, G53011601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11601" +in.county_and_puma "G5300330, G53011602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11602" +in.county_and_puma "G5300330, G53011603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11603" +in.county_and_puma "G5300330, G53011604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11604" +in.county_and_puma "G5300330, G53011605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11605" +in.county_and_puma "G5300330, G53011606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11606" +in.county_and_puma "G5300330, G53011607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11607" +in.county_and_puma "G5300330, G53011608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11608" +in.county_and_puma "G5300330, G53011609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11609" +in.county_and_puma "G5300330, G53011610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11610" +in.county_and_puma "G5300330, G53011611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11611" +in.county_and_puma "G5300330, G53011612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11612" +in.county_and_puma "G5300330, G53011613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11613" +in.county_and_puma "G5300330, G53011614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11614" +in.county_and_puma "G5300330, G53011615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11615" +in.county_and_puma "G5300330, G53011616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11616" +in.county_and_puma "G5300350, G53011801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 035, the NHGIS PUMA code is 11801" +in.county_and_puma "G5300350, G53011802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 035, the NHGIS PUMA code is 11802" +in.county_and_puma "G5300370, G53010800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 037, the NHGIS PUMA code is 10800" +in.county_and_puma "G5300390, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 039, the NHGIS PUMA code is 11000" +in.county_and_puma "G5300410, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 041, the NHGIS PUMA code is 11000" +in.county_and_puma "G5300430, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 043, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300450, G53011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 045, the NHGIS PUMA code is 11300" +in.county_and_puma "G5300470, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 047, the NHGIS PUMA code is 10400" +in.county_and_puma "G5300490, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 049, the NHGIS PUMA code is 11200" +in.county_and_puma "G5300510, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 051, the NHGIS PUMA code is 10400" +in.county_and_puma "G5300530, G53011501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11501" +in.county_and_puma "G5300530, G53011502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11502" +in.county_and_puma "G5300530, G53011503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11503" +in.county_and_puma "G5300530, G53011504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11504" +in.county_and_puma "G5300530, G53011505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11505" +in.county_and_puma "G5300530, G53011506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11506" +in.county_and_puma "G5300530, G53011507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11507" +in.county_and_puma "G5300550, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 055, the NHGIS PUMA code is 10200" +in.county_and_puma "G5300570, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 057, the NHGIS PUMA code is 10200" +in.county_and_puma "G5300590, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 059, the NHGIS PUMA code is 11000" +in.county_and_puma "G5300610, G53011701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11701" +in.county_and_puma "G5300610, G53011702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11702" +in.county_and_puma "G5300610, G53011703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11703" +in.county_and_puma "G5300610, G53011704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11704" +in.county_and_puma "G5300610, G53011705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11705" +in.county_and_puma "G5300610, G53011706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11706" +in.county_and_puma "G5300630, G53010501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10501" +in.county_and_puma "G5300630, G53010502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10502" +in.county_and_puma "G5300630, G53010503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10503" +in.county_and_puma "G5300630, G53010504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10504" +in.county_and_puma "G5300650, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 065, the NHGIS PUMA code is 10400" +in.county_and_puma "G5300670, G53011401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 067, the NHGIS PUMA code is 11401" +in.county_and_puma "G5300670, G53011402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 067, the NHGIS PUMA code is 11402" +in.county_and_puma "G5300690, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 069, the NHGIS PUMA code is 11200" +in.county_and_puma "G5300710, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 071, the NHGIS PUMA code is 10703" +in.county_and_puma "G5300730, G53010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 073, the NHGIS PUMA code is 10100" +in.county_and_puma "G5300750, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 075, the NHGIS PUMA code is 10600" +in.county_and_puma "G5300770, G53010901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 077, the NHGIS PUMA code is 10901" +in.county_and_puma "G5300770, G53010902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 077, the NHGIS PUMA code is 10902" +in.county_and_puma "G5400010, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 001, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400030, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 003, the NHGIS PUMA code is 00400" +in.county_and_puma "G5400050, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 005, the NHGIS PUMA code is 00900" +in.county_and_puma "G5400070, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 007, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400090, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 009, the NHGIS PUMA code is 00100" +in.county_and_puma "G5400110, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 011, the NHGIS PUMA code is 00800" +in.county_and_puma "G5400130, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 013, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400150, G54001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 015, the NHGIS PUMA code is 01000" +in.county_and_puma "G5400170, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 017, the NHGIS PUMA code is 00200" +in.county_and_puma "G5400190, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 019, the NHGIS PUMA code is 01200" +in.county_and_puma "G5400210, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 021, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400230, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 023, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400250, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 025, the NHGIS PUMA code is 01100" +in.county_and_puma "G5400270, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 027, the NHGIS PUMA code is 00400" +in.county_and_puma "G5400290, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 029, the NHGIS PUMA code is 00100" +in.county_and_puma "G5400310, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 031, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400330, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 033, the NHGIS PUMA code is 00200" +in.county_and_puma "G5400350, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 035, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400370, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 037, the NHGIS PUMA code is 00400" +in.county_and_puma "G5400390, G54001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 039, the NHGIS PUMA code is 01000" +in.county_and_puma "G5400410, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 041, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400430, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 043, the NHGIS PUMA code is 00900" +in.county_and_puma "G5400450, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 045, the NHGIS PUMA code is 01300" +in.county_and_puma "G5400470, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 047, the NHGIS PUMA code is 01300" +in.county_and_puma "G5400490, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 049, the NHGIS PUMA code is 00200" +in.county_and_puma "G5400510, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 051, the NHGIS PUMA code is 00100" +in.county_and_puma "G5400530, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 053, the NHGIS PUMA code is 00800" +in.county_and_puma "G5400550, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 055, the NHGIS PUMA code is 01200" +in.county_and_puma "G5400570, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 057, the NHGIS PUMA code is 00400" +in.county_and_puma "G5400590, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 059, the NHGIS PUMA code is 01300" +in.county_and_puma "G5400610, G54000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 061, the NHGIS PUMA code is 00300" +in.county_and_puma "G5400630, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 063, the NHGIS PUMA code is 01100" +in.county_and_puma "G5400650, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 065, the NHGIS PUMA code is 00400" +in.county_and_puma "G5400670, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 067, the NHGIS PUMA code is 01100" +in.county_and_puma "G5400690, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 069, the NHGIS PUMA code is 00100" +in.county_and_puma "G5400710, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 071, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400730, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 073, the NHGIS PUMA code is 00700" +in.county_and_puma "G5400750, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 075, the NHGIS PUMA code is 01100" +in.county_and_puma "G5400770, G54000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 077, the NHGIS PUMA code is 00300" +in.county_and_puma "G5400790, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 079, the NHGIS PUMA code is 00900" +in.county_and_puma "G5400810, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 081, the NHGIS PUMA code is 01200" +in.county_and_puma "G5400830, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 083, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400850, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 085, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400870, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 087, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400890, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 089, the NHGIS PUMA code is 01100" +in.county_and_puma "G5400910, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 091, the NHGIS PUMA code is 00200" +in.county_and_puma "G5400930, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 093, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400950, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 095, the NHGIS PUMA code is 00600" +in.county_and_puma "G5400970, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 097, the NHGIS PUMA code is 00500" +in.county_and_puma "G5400990, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 099, the NHGIS PUMA code is 00800" +in.county_and_puma "G5401010, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 101, the NHGIS PUMA code is 01100" +in.county_and_puma "G5401030, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 103, the NHGIS PUMA code is 00600" +in.county_and_puma "G5401050, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 105, the NHGIS PUMA code is 00700" +in.county_and_puma "G5401070, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 107, the NHGIS PUMA code is 00700" +in.county_and_puma "G5401090, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 109, the NHGIS PUMA code is 01300" +in.county_and_puma "G5500010, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 001, the NHGIS PUMA code is 01601" +in.county_and_puma "G5500030, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 003, the NHGIS PUMA code is 00100" +in.county_and_puma "G5500050, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 005, the NHGIS PUMA code is 55101" +in.county_and_puma "G5500070, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 007, the NHGIS PUMA code is 00100" +in.county_and_puma "G5500090, G55000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 009, the NHGIS PUMA code is 00200" +in.county_and_puma "G5500090, G55000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 009, the NHGIS PUMA code is 00300" +in.county_and_puma "G5500110, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 011, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500130, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 013, the NHGIS PUMA code is 00100" +in.county_and_puma "G5500150, G55001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 015, the NHGIS PUMA code is 01401" +in.county_and_puma "G5500170, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 017, the NHGIS PUMA code is 55101" +in.county_and_puma "G5500170, G55055103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 017, the NHGIS PUMA code is 55103" +in.county_and_puma "G5500190, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 019, the NHGIS PUMA code is 55101" +in.county_and_puma "G5500210, G55001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 021, the NHGIS PUMA code is 01000" +in.county_and_puma "G5500230, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 023, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500250, G55000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00101" +in.county_and_puma "G5500250, G55000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00102" +in.county_and_puma "G5500250, G55000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00103" +in.county_and_puma "G5500270, G55001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 027, the NHGIS PUMA code is 01001" +in.county_and_puma "G5500290, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 029, the NHGIS PUMA code is 01300" +in.county_and_puma "G5500310, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 031, the NHGIS PUMA code is 00100" +in.county_and_puma "G5500330, G55055102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 033, the NHGIS PUMA code is 55102" +in.county_and_puma "G5500350, G55055103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 035, the NHGIS PUMA code is 55103" +in.county_and_puma "G5500370, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 037, the NHGIS PUMA code is 01300" +in.county_and_puma "G5500390, G55001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 039, the NHGIS PUMA code is 01401" +in.county_and_puma "G5500410, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 041, the NHGIS PUMA code is 00600" +in.county_and_puma "G5500430, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 043, the NHGIS PUMA code is 00800" +in.county_and_puma "G5500450, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 045, the NHGIS PUMA code is 00800" +in.county_and_puma "G5500470, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 047, the NHGIS PUMA code is 01400" +in.county_and_puma "G5500490, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 049, the NHGIS PUMA code is 00800" +in.county_and_puma "G5500510, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 051, the NHGIS PUMA code is 00100" +in.county_and_puma "G5500530, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 053, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500550, G55001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 055, the NHGIS PUMA code is 01001" +in.county_and_puma "G5500570, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 057, the NHGIS PUMA code is 01601" +in.county_and_puma "G5500590, G55010000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 059, the NHGIS PUMA code is 10000" +in.county_and_puma "G5500610, G55001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 061, the NHGIS PUMA code is 01301" +in.county_and_puma "G5500630, G55000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 063, the NHGIS PUMA code is 00900" +in.county_and_puma "G5500650, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 065, the NHGIS PUMA code is 00800" +in.county_and_puma "G5500670, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 067, the NHGIS PUMA code is 00600" +in.county_and_puma "G5500690, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 069, the NHGIS PUMA code is 00600" +in.county_and_puma "G5500710, G55001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 071, the NHGIS PUMA code is 01301" +in.county_and_puma "G5500730, G55001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 073, the NHGIS PUMA code is 01600" +in.county_and_puma "G5500750, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 075, the NHGIS PUMA code is 01300" +in.county_and_puma "G5500770, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 077, the NHGIS PUMA code is 01400" +in.county_and_puma "G5500780, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 078, the NHGIS PUMA code is 01400" +in.county_and_puma "G5500790, G55040101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40101" +in.county_and_puma "G5500790, G55040301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40301" +in.county_and_puma "G5500790, G55040701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40701" +in.county_and_puma "G5500790, G55041001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41001" +in.county_and_puma "G5500790, G55041002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41002" +in.county_and_puma "G5500790, G55041003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41003" +in.county_and_puma "G5500790, G55041004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41004" +in.county_and_puma "G5500790, G55041005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41005" +in.county_and_puma "G5500810, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 081, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500830, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 083, the NHGIS PUMA code is 01300" +in.county_and_puma "G5500850, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 085, the NHGIS PUMA code is 00600" +in.county_and_puma "G5500870, G55001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 087, the NHGIS PUMA code is 01500" +in.county_and_puma "G5500890, G55020000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 089, the NHGIS PUMA code is 20000" +in.county_and_puma "G5500910, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 091, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500930, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 093, the NHGIS PUMA code is 00700" +in.county_and_puma "G5500950, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 095, the NHGIS PUMA code is 55101" +in.county_and_puma "G5500970, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 097, the NHGIS PUMA code is 01601" +in.county_and_puma "G5500990, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 099, the NHGIS PUMA code is 00100" +in.county_and_puma "G5501010, G55030000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 101, the NHGIS PUMA code is 30000" +in.county_and_puma "G5501030, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 103, the NHGIS PUMA code is 00800" +in.county_and_puma "G5501050, G55002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 105, the NHGIS PUMA code is 02400" +in.county_and_puma "G5501070, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 107, the NHGIS PUMA code is 00100" +in.county_and_puma "G5501090, G55055102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 109, the NHGIS PUMA code is 55102" +in.county_and_puma "G5501110, G55001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 111, the NHGIS PUMA code is 01000" +in.county_and_puma "G5501130, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 113, the NHGIS PUMA code is 00100" +in.county_and_puma "G5501150, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 115, the NHGIS PUMA code is 01400" +in.county_and_puma "G5501170, G55002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 117, the NHGIS PUMA code is 02500" +in.county_and_puma "G5501190, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 119, the NHGIS PUMA code is 00100" +in.county_and_puma "G5501210, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 121, the NHGIS PUMA code is 00700" +in.county_and_puma "G5501230, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 123, the NHGIS PUMA code is 00700" +in.county_and_puma "G5501250, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 125, the NHGIS PUMA code is 00600" +in.county_and_puma "G5501270, G55050000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 127, the NHGIS PUMA code is 50000" +in.county_and_puma "G5501290, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 129, the NHGIS PUMA code is 00100" +in.county_and_puma "G5501310, G55020000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 131, the NHGIS PUMA code is 20000" +in.county_and_puma "G5501330, G55070101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70101" +in.county_and_puma "G5501330, G55070201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70201" +in.county_and_puma "G5501330, G55070301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70301" +in.county_and_puma "G5501350, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 135, the NHGIS PUMA code is 01400" +in.county_and_puma "G5501370, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 137, the NHGIS PUMA code is 01400" +in.county_and_puma "G5501390, G55001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 139, the NHGIS PUMA code is 01501" +in.county_and_puma "G5501410, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 141, the NHGIS PUMA code is 01601" +in.county_and_puma "G5600010, G56000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 001, the NHGIS PUMA code is 00300" +in.county_and_puma "G5600030, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 003, the NHGIS PUMA code is 00100" +in.county_and_puma "G5600050, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 005, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600070, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 007, the NHGIS PUMA code is 00400" +in.county_and_puma "G5600090, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 009, the NHGIS PUMA code is 00400" +in.county_and_puma "G5600110, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 011, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600130, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 013, the NHGIS PUMA code is 00500" +in.county_and_puma "G5600150, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 015, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600170, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 017, the NHGIS PUMA code is 00500" +in.county_and_puma "G5600190, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 019, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600210, G56000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 021, the NHGIS PUMA code is 00300" +in.county_and_puma "G5600230, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 023, the NHGIS PUMA code is 00100" +in.county_and_puma "G5600250, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 025, the NHGIS PUMA code is 00400" +in.county_and_puma "G5600270, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 027, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600290, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 029, the NHGIS PUMA code is 00100" +in.county_and_puma "G5600310, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 031, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600330, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 033, the NHGIS PUMA code is 00100" +in.county_and_puma "G5600350, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 035, the NHGIS PUMA code is 00500" +in.county_and_puma "G5600370, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 037, the NHGIS PUMA code is 00500" +in.county_and_puma "G5600390, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 039, the NHGIS PUMA code is 00100" +in.county_and_puma "G5600410, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 041, the NHGIS PUMA code is 00500" +in.county_and_puma "G5600430, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 043, the NHGIS PUMA code is 00200" +in.county_and_puma "G5600450, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 045, the NHGIS PUMA code is 00200" +in.county_metro_status Metropolitan The dwelling unit is located in a county that is in a Metropolitan area +in.county_metro_status Non-Metropolitan The dwelling unit is located in a county that is in a Non-Metropolitan area +in.county_name Abbeville County The dwelling unit is located in Abbeville County +in.county_name Acadia Parish The dwelling unit is located in Acadia Parish +in.county_name Accomack County The dwelling unit is located in Accomack County +in.county_name Ada County The dwelling unit is located in Ada County +in.county_name Adair County The dwelling unit is located in Adair County +in.county_name Adams County The dwelling unit is located in Adams County +in.county_name Addison County The dwelling unit is located in Addison County +in.county_name Aiken County The dwelling unit is located in Aiken County +in.county_name Aitkin County The dwelling unit is located in Aitkin County +in.county_name Alachua County The dwelling unit is located in Alachua County +in.county_name Alamance County The dwelling unit is located in Alamance County +in.county_name Alameda County The dwelling unit is located in Alameda County +in.county_name Alamosa County The dwelling unit is located in Alamosa County +in.county_name Albany County The dwelling unit is located in Albany County +in.county_name Albemarle County The dwelling unit is located in Albemarle County +in.county_name Alcona County The dwelling unit is located in Alcona County +in.county_name Alcorn County The dwelling unit is located in Alcorn County +in.county_name Aleutians East Borough The dwelling unit is located in Aleutians East Borough +in.county_name Aleutians West Census Area The dwelling unit is located in Aleutians West Census Area +in.county_name Alexander County The dwelling unit is located in Alexander County +in.county_name Alexandria city The dwelling unit is located in Alexandria city +in.county_name Alfalfa County The dwelling unit is located in Alfalfa County +in.county_name Alger County The dwelling unit is located in Alger County +in.county_name Allamakee County The dwelling unit is located in Allamakee County +in.county_name Allegan County The dwelling unit is located in Allegan County +in.county_name Allegany County The dwelling unit is located in Allegany County +in.county_name Alleghany County The dwelling unit is located in Alleghany County +in.county_name Allegheny County The dwelling unit is located in Allegheny County +in.county_name Allen County The dwelling unit is located in Allen County +in.county_name Allen Parish The dwelling unit is located in Allen Parish +in.county_name Allendale County The dwelling unit is located in Allendale County +in.county_name Alpena County The dwelling unit is located in Alpena County +in.county_name Alpine County The dwelling unit is located in Alpine County +in.county_name Amador County The dwelling unit is located in Amador County +in.county_name Amelia County The dwelling unit is located in Amelia County +in.county_name Amherst County The dwelling unit is located in Amherst County +in.county_name Amite County The dwelling unit is located in Amite County +in.county_name Anchorage Municipality The dwelling unit is located in Anchorage Municipality +in.county_name Anderson County The dwelling unit is located in Anderson County +in.county_name Andrew County The dwelling unit is located in Andrew County +in.county_name Andrews County The dwelling unit is located in Andrews County +in.county_name Androscoggin County The dwelling unit is located in Androscoggin County +in.county_name Angelina County The dwelling unit is located in Angelina County +in.county_name Anne Arundel County The dwelling unit is located in Anne Arundel County +in.county_name Anoka County The dwelling unit is located in Anoka County +in.county_name Anson County The dwelling unit is located in Anson County +in.county_name Antelope County The dwelling unit is located in Antelope County +in.county_name Antrim County The dwelling unit is located in Antrim County +in.county_name Apache County The dwelling unit is located in Apache County +in.county_name Appanoose County The dwelling unit is located in Appanoose County +in.county_name Appling County The dwelling unit is located in Appling County +in.county_name Appomattox County The dwelling unit is located in Appomattox County +in.county_name Aransas County The dwelling unit is located in Aransas County +in.county_name Arapahoe County The dwelling unit is located in Arapahoe County +in.county_name Archer County The dwelling unit is located in Archer County +in.county_name Archuleta County The dwelling unit is located in Archuleta County +in.county_name Arenac County The dwelling unit is located in Arenac County +in.county_name Arkansas County The dwelling unit is located in Arkansas County +in.county_name Arlington County The dwelling unit is located in Arlington County +in.county_name Armstrong County The dwelling unit is located in Armstrong County +in.county_name Aroostook County The dwelling unit is located in Aroostook County +in.county_name Arthur County The dwelling unit is located in Arthur County +in.county_name Ascension Parish The dwelling unit is located in Ascension Parish +in.county_name Ashe County The dwelling unit is located in Ashe County +in.county_name Ashland County The dwelling unit is located in Ashland County +in.county_name Ashley County The dwelling unit is located in Ashley County +in.county_name Ashtabula County The dwelling unit is located in Ashtabula County +in.county_name Asotin County The dwelling unit is located in Asotin County +in.county_name Assumption Parish The dwelling unit is located in Assumption Parish +in.county_name Atascosa County The dwelling unit is located in Atascosa County +in.county_name Atchison County The dwelling unit is located in Atchison County +in.county_name Athens County The dwelling unit is located in Athens County +in.county_name Atkinson County The dwelling unit is located in Atkinson County +in.county_name Atlantic County The dwelling unit is located in Atlantic County +in.county_name Atoka County The dwelling unit is located in Atoka County +in.county_name Attala County The dwelling unit is located in Attala County +in.county_name Audrain County The dwelling unit is located in Audrain County +in.county_name Audubon County The dwelling unit is located in Audubon County +in.county_name Auglaize County The dwelling unit is located in Auglaize County +in.county_name Augusta County The dwelling unit is located in Augusta County +in.county_name Aurora County The dwelling unit is located in Aurora County +in.county_name Austin County The dwelling unit is located in Austin County +in.county_name Autauga County The dwelling unit is located in Autauga County +in.county_name Avery County The dwelling unit is located in Avery County +in.county_name Avoyelles Parish The dwelling unit is located in Avoyelles Parish +in.county_name Baca County The dwelling unit is located in Baca County +in.county_name Bacon County The dwelling unit is located in Bacon County +in.county_name Bailey County The dwelling unit is located in Bailey County +in.county_name Baker County The dwelling unit is located in Baker County +in.county_name Baldwin County The dwelling unit is located in Baldwin County +in.county_name Ballard County The dwelling unit is located in Ballard County +in.county_name Baltimore County The dwelling unit is located in Baltimore County +in.county_name Baltimore city The dwelling unit is located in Baltimore city +in.county_name Bamberg County The dwelling unit is located in Bamberg County +in.county_name Bandera County The dwelling unit is located in Bandera County +in.county_name Banks County The dwelling unit is located in Banks County +in.county_name Banner County The dwelling unit is located in Banner County +in.county_name Bannock County The dwelling unit is located in Bannock County +in.county_name Baraga County The dwelling unit is located in Baraga County +in.county_name Barber County The dwelling unit is located in Barber County +in.county_name Barbour County The dwelling unit is located in Barbour County +in.county_name Barnes County The dwelling unit is located in Barnes County +in.county_name Barnstable County The dwelling unit is located in Barnstable County +in.county_name Barnwell County The dwelling unit is located in Barnwell County +in.county_name Barren County The dwelling unit is located in Barren County +in.county_name Barron County The dwelling unit is located in Barron County +in.county_name Barrow County The dwelling unit is located in Barrow County +in.county_name Barry County The dwelling unit is located in Barry County +in.county_name Bartholomew County The dwelling unit is located in Bartholomew County +in.county_name Barton County The dwelling unit is located in Barton County +in.county_name Bartow County The dwelling unit is located in Bartow County +in.county_name Bastrop County The dwelling unit is located in Bastrop County +in.county_name Bates County The dwelling unit is located in Bates County +in.county_name Bath County The dwelling unit is located in Bath County +in.county_name Baxter County The dwelling unit is located in Baxter County +in.county_name Bay County The dwelling unit is located in Bay County +in.county_name Bayfield County The dwelling unit is located in Bayfield County +in.county_name Baylor County The dwelling unit is located in Baylor County +in.county_name Beadle County The dwelling unit is located in Beadle County +in.county_name Bear Lake County The dwelling unit is located in Bear Lake County +in.county_name Beaufort County The dwelling unit is located in Beaufort County +in.county_name Beauregard Parish The dwelling unit is located in Beauregard Parish +in.county_name Beaver County The dwelling unit is located in Beaver County +in.county_name Beaverhead County The dwelling unit is located in Beaverhead County +in.county_name Becker County The dwelling unit is located in Becker County +in.county_name Beckham County The dwelling unit is located in Beckham County +in.county_name Bedford County The dwelling unit is located in Bedford County +in.county_name Bee County The dwelling unit is located in Bee County +in.county_name Belknap County The dwelling unit is located in Belknap County +in.county_name Bell County The dwelling unit is located in Bell County +in.county_name Belmont County The dwelling unit is located in Belmont County +in.county_name Beltrami County The dwelling unit is located in Beltrami County +in.county_name Ben Hill County The dwelling unit is located in Ben Hill County +in.county_name Benewah County The dwelling unit is located in Benewah County +in.county_name Bennett County The dwelling unit is located in Bennett County +in.county_name Bennington County The dwelling unit is located in Bennington County +in.county_name Benson County The dwelling unit is located in Benson County +in.county_name Bent County The dwelling unit is located in Bent County +in.county_name Benton County The dwelling unit is located in Benton County +in.county_name Benzie County The dwelling unit is located in Benzie County +in.county_name Bergen County The dwelling unit is located in Bergen County +in.county_name Berkeley County The dwelling unit is located in Berkeley County +in.county_name Berks County The dwelling unit is located in Berks County +in.county_name Berkshire County The dwelling unit is located in Berkshire County +in.county_name Bernalillo County The dwelling unit is located in Bernalillo County +in.county_name Berrien County The dwelling unit is located in Berrien County +in.county_name Bertie County The dwelling unit is located in Bertie County +in.county_name Bethel Census Area The dwelling unit is located in Bethel Census Area +in.county_name Bexar County The dwelling unit is located in Bexar County +in.county_name Bibb County The dwelling unit is located in Bibb County +in.county_name Bienville Parish The dwelling unit is located in Bienville Parish +in.county_name Big Horn County The dwelling unit is located in Big Horn County +in.county_name Big Stone County The dwelling unit is located in Big Stone County +in.county_name Billings County The dwelling unit is located in Billings County +in.county_name Bingham County The dwelling unit is located in Bingham County +in.county_name Black Hawk County The dwelling unit is located in Black Hawk County +in.county_name Blackford County The dwelling unit is located in Blackford County +in.county_name Bladen County The dwelling unit is located in Bladen County +in.county_name Blaine County The dwelling unit is located in Blaine County +in.county_name Blair County The dwelling unit is located in Blair County +in.county_name Blanco County The dwelling unit is located in Blanco County +in.county_name Bland County The dwelling unit is located in Bland County +in.county_name Bleckley County The dwelling unit is located in Bleckley County +in.county_name Bledsoe County The dwelling unit is located in Bledsoe County +in.county_name Blount County The dwelling unit is located in Blount County +in.county_name Blue Earth County The dwelling unit is located in Blue Earth County +in.county_name Boise County The dwelling unit is located in Boise County +in.county_name Bolivar County The dwelling unit is located in Bolivar County +in.county_name Bollinger County The dwelling unit is located in Bollinger County +in.county_name Bon Homme County The dwelling unit is located in Bon Homme County +in.county_name Bond County The dwelling unit is located in Bond County +in.county_name Bonner County The dwelling unit is located in Bonner County +in.county_name Bonneville County The dwelling unit is located in Bonneville County +in.county_name Boone County The dwelling unit is located in Boone County +in.county_name Borden County The dwelling unit is located in Borden County +in.county_name Bosque County The dwelling unit is located in Bosque County +in.county_name Bossier Parish The dwelling unit is located in Bossier Parish +in.county_name Botetourt County The dwelling unit is located in Botetourt County +in.county_name Bottineau County The dwelling unit is located in Bottineau County +in.county_name Boulder County The dwelling unit is located in Boulder County +in.county_name Boundary County The dwelling unit is located in Boundary County +in.county_name Bourbon County The dwelling unit is located in Bourbon County +in.county_name Bowie County The dwelling unit is located in Bowie County +in.county_name Bowman County The dwelling unit is located in Bowman County +in.county_name Box Butte County The dwelling unit is located in Box Butte County +in.county_name Box Elder County The dwelling unit is located in Box Elder County +in.county_name Boyd County The dwelling unit is located in Boyd County +in.county_name Boyle County The dwelling unit is located in Boyle County +in.county_name Bracken County The dwelling unit is located in Bracken County +in.county_name Bradford County The dwelling unit is located in Bradford County +in.county_name Bradley County The dwelling unit is located in Bradley County +in.county_name Branch County The dwelling unit is located in Branch County +in.county_name Brantley County The dwelling unit is located in Brantley County +in.county_name Braxton County The dwelling unit is located in Braxton County +in.county_name Brazoria County The dwelling unit is located in Brazoria County +in.county_name Brazos County The dwelling unit is located in Brazos County +in.county_name Breathitt County The dwelling unit is located in Breathitt County +in.county_name Breckinridge County The dwelling unit is located in Breckinridge County +in.county_name Bremer County The dwelling unit is located in Bremer County +in.county_name Brevard County The dwelling unit is located in Brevard County +in.county_name Brewster County The dwelling unit is located in Brewster County +in.county_name Briscoe County The dwelling unit is located in Briscoe County +in.county_name Bristol Bay Borough The dwelling unit is located in Bristol Bay Borough +in.county_name Bristol County The dwelling unit is located in Bristol County +in.county_name Bristol city The dwelling unit is located in Bristol city +in.county_name Broadwater County The dwelling unit is located in Broadwater County +in.county_name Bronx County The dwelling unit is located in Bronx County +in.county_name Brooke County The dwelling unit is located in Brooke County +in.county_name Brookings County The dwelling unit is located in Brookings County +in.county_name Brooks County The dwelling unit is located in Brooks County +in.county_name Broome County The dwelling unit is located in Broome County +in.county_name Broomfield County The dwelling unit is located in Broomfield County +in.county_name Broward County The dwelling unit is located in Broward County +in.county_name Brown County The dwelling unit is located in Brown County +in.county_name Brule County The dwelling unit is located in Brule County +in.county_name Brunswick County The dwelling unit is located in Brunswick County +in.county_name Bryan County The dwelling unit is located in Bryan County +in.county_name Buchanan County The dwelling unit is located in Buchanan County +in.county_name Buckingham County The dwelling unit is located in Buckingham County +in.county_name Bucks County The dwelling unit is located in Bucks County +in.county_name Buena Vista County The dwelling unit is located in Buena Vista County +in.county_name Buena Vista city The dwelling unit is located in Buena Vista city +in.county_name Buffalo County The dwelling unit is located in Buffalo County +in.county_name Bullitt County The dwelling unit is located in Bullitt County +in.county_name Bulloch County The dwelling unit is located in Bulloch County +in.county_name Bullock County The dwelling unit is located in Bullock County +in.county_name Buncombe County The dwelling unit is located in Buncombe County +in.county_name Bureau County The dwelling unit is located in Bureau County +in.county_name Burke County The dwelling unit is located in Burke County +in.county_name Burleigh County The dwelling unit is located in Burleigh County +in.county_name Burleson County The dwelling unit is located in Burleson County +in.county_name Burlington County The dwelling unit is located in Burlington County +in.county_name Burnet County The dwelling unit is located in Burnet County +in.county_name Burnett County The dwelling unit is located in Burnett County +in.county_name Burt County The dwelling unit is located in Burt County +in.county_name Butler County The dwelling unit is located in Butler County +in.county_name Butte County The dwelling unit is located in Butte County +in.county_name Butts County The dwelling unit is located in Butts County +in.county_name Cabarrus County The dwelling unit is located in Cabarrus County +in.county_name Cabell County The dwelling unit is located in Cabell County +in.county_name Cache County The dwelling unit is located in Cache County +in.county_name Caddo County The dwelling unit is located in Caddo County +in.county_name Caddo Parish The dwelling unit is located in Caddo Parish +in.county_name Calaveras County The dwelling unit is located in Calaveras County +in.county_name Calcasieu Parish The dwelling unit is located in Calcasieu Parish +in.county_name Caldwell County The dwelling unit is located in Caldwell County +in.county_name Caldwell Parish The dwelling unit is located in Caldwell Parish +in.county_name Caledonia County The dwelling unit is located in Caledonia County +in.county_name Calhoun County The dwelling unit is located in Calhoun County +in.county_name Callahan County The dwelling unit is located in Callahan County +in.county_name Callaway County The dwelling unit is located in Callaway County +in.county_name Calloway County The dwelling unit is located in Calloway County +in.county_name Calumet County The dwelling unit is located in Calumet County +in.county_name Calvert County The dwelling unit is located in Calvert County +in.county_name Camas County The dwelling unit is located in Camas County +in.county_name Cambria County The dwelling unit is located in Cambria County +in.county_name Camden County The dwelling unit is located in Camden County +in.county_name Cameron County The dwelling unit is located in Cameron County +in.county_name Cameron Parish The dwelling unit is located in Cameron Parish +in.county_name Camp County The dwelling unit is located in Camp County +in.county_name Campbell County The dwelling unit is located in Campbell County +in.county_name Canadian County The dwelling unit is located in Canadian County +in.county_name Candler County The dwelling unit is located in Candler County +in.county_name Cannon County The dwelling unit is located in Cannon County +in.county_name Canyon County The dwelling unit is located in Canyon County +in.county_name Cape Girardeau County The dwelling unit is located in Cape Girardeau County +in.county_name Cape May County The dwelling unit is located in Cape May County +in.county_name Carbon County The dwelling unit is located in Carbon County +in.county_name Caribou County The dwelling unit is located in Caribou County +in.county_name Carlisle County The dwelling unit is located in Carlisle County +in.county_name Carlton County The dwelling unit is located in Carlton County +in.county_name Caroline County The dwelling unit is located in Caroline County +in.county_name Carroll County The dwelling unit is located in Carroll County +in.county_name Carson City The dwelling unit is located in Carson City +in.county_name Carson County The dwelling unit is located in Carson County +in.county_name Carter County The dwelling unit is located in Carter County +in.county_name Carteret County The dwelling unit is located in Carteret County +in.county_name Carver County The dwelling unit is located in Carver County +in.county_name Cascade County The dwelling unit is located in Cascade County +in.county_name Casey County The dwelling unit is located in Casey County +in.county_name Cass County The dwelling unit is located in Cass County +in.county_name Cassia County The dwelling unit is located in Cassia County +in.county_name Castro County The dwelling unit is located in Castro County +in.county_name Caswell County The dwelling unit is located in Caswell County +in.county_name Catahoula Parish The dwelling unit is located in Catahoula Parish +in.county_name Catawba County The dwelling unit is located in Catawba County +in.county_name Catoosa County The dwelling unit is located in Catoosa County +in.county_name Catron County The dwelling unit is located in Catron County +in.county_name Cattaraugus County The dwelling unit is located in Cattaraugus County +in.county_name Cavalier County The dwelling unit is located in Cavalier County +in.county_name Cayuga County The dwelling unit is located in Cayuga County +in.county_name Cecil County The dwelling unit is located in Cecil County +in.county_name Cedar County The dwelling unit is located in Cedar County +in.county_name Centre County The dwelling unit is located in Centre County +in.county_name Cerro Gordo County The dwelling unit is located in Cerro Gordo County +in.county_name Chaffee County The dwelling unit is located in Chaffee County +in.county_name Chambers County The dwelling unit is located in Chambers County +in.county_name Champaign County The dwelling unit is located in Champaign County +in.county_name Chariton County The dwelling unit is located in Chariton County +in.county_name Charles City County The dwelling unit is located in Charles City County +in.county_name Charles County The dwelling unit is located in Charles County +in.county_name Charles Mix County The dwelling unit is located in Charles Mix County +in.county_name Charleston County The dwelling unit is located in Charleston County +in.county_name Charlevoix County The dwelling unit is located in Charlevoix County +in.county_name Charlotte County The dwelling unit is located in Charlotte County +in.county_name Charlottesville city The dwelling unit is located in Charlottesville city +in.county_name Charlton County The dwelling unit is located in Charlton County +in.county_name Chase County The dwelling unit is located in Chase County +in.county_name Chatham County The dwelling unit is located in Chatham County +in.county_name Chattahoochee County The dwelling unit is located in Chattahoochee County +in.county_name Chattooga County The dwelling unit is located in Chattooga County +in.county_name Chautauqua County The dwelling unit is located in Chautauqua County +in.county_name Chaves County The dwelling unit is located in Chaves County +in.county_name Cheatham County The dwelling unit is located in Cheatham County +in.county_name Cheboygan County The dwelling unit is located in Cheboygan County +in.county_name Chelan County The dwelling unit is located in Chelan County +in.county_name Chemung County The dwelling unit is located in Chemung County +in.county_name Chenango County The dwelling unit is located in Chenango County +in.county_name Cherokee County The dwelling unit is located in Cherokee County +in.county_name Cherry County The dwelling unit is located in Cherry County +in.county_name Chesapeake city The dwelling unit is located in Chesapeake city +in.county_name Cheshire County The dwelling unit is located in Cheshire County +in.county_name Chester County The dwelling unit is located in Chester County +in.county_name Chesterfield County The dwelling unit is located in Chesterfield County +in.county_name Cheyenne County The dwelling unit is located in Cheyenne County +in.county_name Chickasaw County The dwelling unit is located in Chickasaw County +in.county_name Chicot County The dwelling unit is located in Chicot County +in.county_name Childress County The dwelling unit is located in Childress County +in.county_name Chilton County The dwelling unit is located in Chilton County +in.county_name Chippewa County The dwelling unit is located in Chippewa County +in.county_name Chisago County The dwelling unit is located in Chisago County +in.county_name Chittenden County The dwelling unit is located in Chittenden County +in.county_name Choctaw County The dwelling unit is located in Choctaw County +in.county_name Chouteau County The dwelling unit is located in Chouteau County +in.county_name Chowan County The dwelling unit is located in Chowan County +in.county_name Christian County The dwelling unit is located in Christian County +in.county_name Churchill County The dwelling unit is located in Churchill County +in.county_name Cibola County The dwelling unit is located in Cibola County +in.county_name Cimarron County The dwelling unit is located in Cimarron County +in.county_name Citrus County The dwelling unit is located in Citrus County +in.county_name Clackamas County The dwelling unit is located in Clackamas County +in.county_name Claiborne County The dwelling unit is located in Claiborne County +in.county_name Claiborne Parish The dwelling unit is located in Claiborne Parish +in.county_name Clallam County The dwelling unit is located in Clallam County +in.county_name Clare County The dwelling unit is located in Clare County +in.county_name Clarendon County The dwelling unit is located in Clarendon County +in.county_name Clarion County The dwelling unit is located in Clarion County +in.county_name Clark County The dwelling unit is located in Clark County +in.county_name Clarke County The dwelling unit is located in Clarke County +in.county_name Clatsop County The dwelling unit is located in Clatsop County +in.county_name Clay County The dwelling unit is located in Clay County +in.county_name Clayton County The dwelling unit is located in Clayton County +in.county_name Clear Creek County The dwelling unit is located in Clear Creek County +in.county_name Clearfield County The dwelling unit is located in Clearfield County +in.county_name Clearwater County The dwelling unit is located in Clearwater County +in.county_name Cleburne County The dwelling unit is located in Cleburne County +in.county_name Clermont County The dwelling unit is located in Clermont County +in.county_name Cleveland County The dwelling unit is located in Cleveland County +in.county_name Clinch County The dwelling unit is located in Clinch County +in.county_name Clinton County The dwelling unit is located in Clinton County +in.county_name Cloud County The dwelling unit is located in Cloud County +in.county_name Coahoma County The dwelling unit is located in Coahoma County +in.county_name Coal County The dwelling unit is located in Coal County +in.county_name Cobb County The dwelling unit is located in Cobb County +in.county_name Cochise County The dwelling unit is located in Cochise County +in.county_name Cochran County The dwelling unit is located in Cochran County +in.county_name Cocke County The dwelling unit is located in Cocke County +in.county_name Coconino County The dwelling unit is located in Coconino County +in.county_name Codington County The dwelling unit is located in Codington County +in.county_name Coffee County The dwelling unit is located in Coffee County +in.county_name Coffey County The dwelling unit is located in Coffey County +in.county_name Coke County The dwelling unit is located in Coke County +in.county_name Colbert County The dwelling unit is located in Colbert County +in.county_name Cole County The dwelling unit is located in Cole County +in.county_name Coleman County The dwelling unit is located in Coleman County +in.county_name Coles County The dwelling unit is located in Coles County +in.county_name Colfax County The dwelling unit is located in Colfax County +in.county_name Colleton County The dwelling unit is located in Colleton County +in.county_name Collier County The dwelling unit is located in Collier County +in.county_name Collin County The dwelling unit is located in Collin County +in.county_name Collingsworth County The dwelling unit is located in Collingsworth County +in.county_name Colonial Heights city The dwelling unit is located in Colonial Heights city +in.county_name Colorado County The dwelling unit is located in Colorado County +in.county_name Colquitt County The dwelling unit is located in Colquitt County +in.county_name Columbia County The dwelling unit is located in Columbia County +in.county_name Columbiana County The dwelling unit is located in Columbiana County +in.county_name Columbus County The dwelling unit is located in Columbus County +in.county_name Colusa County The dwelling unit is located in Colusa County +in.county_name Comal County The dwelling unit is located in Comal County +in.county_name Comanche County The dwelling unit is located in Comanche County +in.county_name Concho County The dwelling unit is located in Concho County +in.county_name Concordia Parish The dwelling unit is located in Concordia Parish +in.county_name Conecuh County The dwelling unit is located in Conecuh County +in.county_name Conejos County The dwelling unit is located in Conejos County +in.county_name Contra Costa County The dwelling unit is located in Contra Costa County +in.county_name Converse County The dwelling unit is located in Converse County +in.county_name Conway County The dwelling unit is located in Conway County +in.county_name Cook County The dwelling unit is located in Cook County +in.county_name Cooke County The dwelling unit is located in Cooke County +in.county_name Cooper County The dwelling unit is located in Cooper County +in.county_name Coos County The dwelling unit is located in Coos County +in.county_name Coosa County The dwelling unit is located in Coosa County +in.county_name Copiah County The dwelling unit is located in Copiah County +in.county_name Corson County The dwelling unit is located in Corson County +in.county_name Cortland County The dwelling unit is located in Cortland County +in.county_name Coryell County The dwelling unit is located in Coryell County +in.county_name Coshocton County The dwelling unit is located in Coshocton County +in.county_name Costilla County The dwelling unit is located in Costilla County +in.county_name Cottle County The dwelling unit is located in Cottle County +in.county_name Cotton County The dwelling unit is located in Cotton County +in.county_name Cottonwood County The dwelling unit is located in Cottonwood County +in.county_name Covington County The dwelling unit is located in Covington County +in.county_name Covington city The dwelling unit is located in Covington city +in.county_name Coweta County The dwelling unit is located in Coweta County +in.county_name Cowley County The dwelling unit is located in Cowley County +in.county_name Cowlitz County The dwelling unit is located in Cowlitz County +in.county_name Craig County The dwelling unit is located in Craig County +in.county_name Craighead County The dwelling unit is located in Craighead County +in.county_name Crane County The dwelling unit is located in Crane County +in.county_name Craven County The dwelling unit is located in Craven County +in.county_name Crawford County The dwelling unit is located in Crawford County +in.county_name Creek County The dwelling unit is located in Creek County +in.county_name Crenshaw County The dwelling unit is located in Crenshaw County +in.county_name Crisp County The dwelling unit is located in Crisp County +in.county_name Crittenden County The dwelling unit is located in Crittenden County +in.county_name Crockett County The dwelling unit is located in Crockett County +in.county_name Crook County The dwelling unit is located in Crook County +in.county_name Crosby County The dwelling unit is located in Crosby County +in.county_name Cross County The dwelling unit is located in Cross County +in.county_name Crow Wing County The dwelling unit is located in Crow Wing County +in.county_name Crowley County The dwelling unit is located in Crowley County +in.county_name Culberson County The dwelling unit is located in Culberson County +in.county_name Cullman County The dwelling unit is located in Cullman County +in.county_name Culpeper County The dwelling unit is located in Culpeper County +in.county_name Cumberland County The dwelling unit is located in Cumberland County +in.county_name Cuming County The dwelling unit is located in Cuming County +in.county_name Currituck County The dwelling unit is located in Currituck County +in.county_name Curry County The dwelling unit is located in Curry County +in.county_name Custer County The dwelling unit is located in Custer County +in.county_name Cuyahoga County The dwelling unit is located in Cuyahoga County +in.county_name Dade County The dwelling unit is located in Dade County +in.county_name Daggett County The dwelling unit is located in Daggett County +in.county_name Dakota County The dwelling unit is located in Dakota County +in.county_name Dale County The dwelling unit is located in Dale County +in.county_name Dallam County The dwelling unit is located in Dallam County +in.county_name Dallas County The dwelling unit is located in Dallas County +in.county_name Dane County The dwelling unit is located in Dane County +in.county_name Daniels County The dwelling unit is located in Daniels County +in.county_name Danville city The dwelling unit is located in Danville city +in.county_name Dare County The dwelling unit is located in Dare County +in.county_name Darke County The dwelling unit is located in Darke County +in.county_name Darlington County The dwelling unit is located in Darlington County +in.county_name Dauphin County The dwelling unit is located in Dauphin County +in.county_name Davidson County The dwelling unit is located in Davidson County +in.county_name Davie County The dwelling unit is located in Davie County +in.county_name Daviess County The dwelling unit is located in Daviess County +in.county_name Davis County The dwelling unit is located in Davis County +in.county_name Davison County The dwelling unit is located in Davison County +in.county_name Dawes County The dwelling unit is located in Dawes County +in.county_name Dawson County The dwelling unit is located in Dawson County +in.county_name Day County The dwelling unit is located in Day County +in.county_name De Baca County The dwelling unit is located in De Baca County +in.county_name De Soto Parish The dwelling unit is located in De Soto Parish +in.county_name De Witt County The dwelling unit is located in De Witt County +in.county_name DeKalb County The dwelling unit is located in DeKalb County +in.county_name DeSoto County The dwelling unit is located in DeSoto County +in.county_name DeWitt County The dwelling unit is located in DeWitt County +in.county_name Deaf Smith County The dwelling unit is located in Deaf Smith County +in.county_name Dearborn County The dwelling unit is located in Dearborn County +in.county_name Decatur County The dwelling unit is located in Decatur County +in.county_name Deer Lodge County The dwelling unit is located in Deer Lodge County +in.county_name Defiance County The dwelling unit is located in Defiance County +in.county_name Del Norte County The dwelling unit is located in Del Norte County +in.county_name Delaware County The dwelling unit is located in Delaware County +in.county_name Delta County The dwelling unit is located in Delta County +in.county_name Denali Borough The dwelling unit is located in Denali Borough +in.county_name Dent County The dwelling unit is located in Dent County +in.county_name Denton County The dwelling unit is located in Denton County +in.county_name Denver County The dwelling unit is located in Denver County +in.county_name Des Moines County The dwelling unit is located in Des Moines County +in.county_name Deschutes County The dwelling unit is located in Deschutes County +in.county_name Desha County The dwelling unit is located in Desha County +in.county_name Deuel County The dwelling unit is located in Deuel County +in.county_name Dewey County The dwelling unit is located in Dewey County +in.county_name Dickens County The dwelling unit is located in Dickens County +in.county_name Dickenson County The dwelling unit is located in Dickenson County +in.county_name Dickey County The dwelling unit is located in Dickey County +in.county_name Dickinson County The dwelling unit is located in Dickinson County +in.county_name Dickson County The dwelling unit is located in Dickson County +in.county_name Dillingham Census Area The dwelling unit is located in Dillingham Census Area +in.county_name Dillon County The dwelling unit is located in Dillon County +in.county_name Dimmit County The dwelling unit is located in Dimmit County +in.county_name Dinwiddie County The dwelling unit is located in Dinwiddie County +in.county_name District of Columbia The dwelling unit is located in District of Columbia +in.county_name Divide County The dwelling unit is located in Divide County +in.county_name Dixie County The dwelling unit is located in Dixie County +in.county_name Dixon County The dwelling unit is located in Dixon County +in.county_name Doddridge County The dwelling unit is located in Doddridge County +in.county_name Dodge County The dwelling unit is located in Dodge County +in.county_name Dolores County The dwelling unit is located in Dolores County +in.county_name Dona Ana County The dwelling unit is located in Dona Ana County +in.county_name Doniphan County The dwelling unit is located in Doniphan County +in.county_name Donley County The dwelling unit is located in Donley County +in.county_name Dooly County The dwelling unit is located in Dooly County +in.county_name Door County The dwelling unit is located in Door County +in.county_name Dorchester County The dwelling unit is located in Dorchester County +in.county_name Dougherty County The dwelling unit is located in Dougherty County +in.county_name Douglas County The dwelling unit is located in Douglas County +in.county_name Drew County The dwelling unit is located in Drew County +in.county_name DuPage County The dwelling unit is located in DuPage County +in.county_name Dubois County The dwelling unit is located in Dubois County +in.county_name Dubuque County The dwelling unit is located in Dubuque County +in.county_name Duchesne County The dwelling unit is located in Duchesne County +in.county_name Dukes County The dwelling unit is located in Dukes County +in.county_name Dundy County The dwelling unit is located in Dundy County +in.county_name Dunklin County The dwelling unit is located in Dunklin County +in.county_name Dunn County The dwelling unit is located in Dunn County +in.county_name Duplin County The dwelling unit is located in Duplin County +in.county_name Durham County The dwelling unit is located in Durham County +in.county_name Dutchess County The dwelling unit is located in Dutchess County +in.county_name Duval County The dwelling unit is located in Duval County +in.county_name Dyer County The dwelling unit is located in Dyer County +in.county_name Eagle County The dwelling unit is located in Eagle County +in.county_name Early County The dwelling unit is located in Early County +in.county_name East Baton Rouge Parish The dwelling unit is located in East Baton Rouge Parish +in.county_name East Carroll Parish The dwelling unit is located in East Carroll Parish +in.county_name East Feliciana Parish The dwelling unit is located in East Feliciana Parish +in.county_name Eastland County The dwelling unit is located in Eastland County +in.county_name Eaton County The dwelling unit is located in Eaton County +in.county_name Eau Claire County The dwelling unit is located in Eau Claire County +in.county_name Echols County The dwelling unit is located in Echols County +in.county_name Ector County The dwelling unit is located in Ector County +in.county_name Eddy County The dwelling unit is located in Eddy County +in.county_name Edgar County The dwelling unit is located in Edgar County +in.county_name Edgecombe County The dwelling unit is located in Edgecombe County +in.county_name Edgefield County The dwelling unit is located in Edgefield County +in.county_name Edmonson County The dwelling unit is located in Edmonson County +in.county_name Edmunds County The dwelling unit is located in Edmunds County +in.county_name Edwards County The dwelling unit is located in Edwards County +in.county_name Effingham County The dwelling unit is located in Effingham County +in.county_name El Dorado County The dwelling unit is located in El Dorado County +in.county_name El Paso County The dwelling unit is located in El Paso County +in.county_name Elbert County The dwelling unit is located in Elbert County +in.county_name Elk County The dwelling unit is located in Elk County +in.county_name Elkhart County The dwelling unit is located in Elkhart County +in.county_name Elko County The dwelling unit is located in Elko County +in.county_name Elliott County The dwelling unit is located in Elliott County +in.county_name Ellis County The dwelling unit is located in Ellis County +in.county_name Ellsworth County The dwelling unit is located in Ellsworth County +in.county_name Elmore County The dwelling unit is located in Elmore County +in.county_name Emanuel County The dwelling unit is located in Emanuel County +in.county_name Emery County The dwelling unit is located in Emery County +in.county_name Emmet County The dwelling unit is located in Emmet County +in.county_name Emmons County The dwelling unit is located in Emmons County +in.county_name Emporia city The dwelling unit is located in Emporia city +in.county_name Erath County The dwelling unit is located in Erath County +in.county_name Erie County The dwelling unit is located in Erie County +in.county_name Escambia County The dwelling unit is located in Escambia County +in.county_name Esmeralda County The dwelling unit is located in Esmeralda County +in.county_name Essex County The dwelling unit is located in Essex County +in.county_name Estill County The dwelling unit is located in Estill County +in.county_name Etowah County The dwelling unit is located in Etowah County +in.county_name Eureka County The dwelling unit is located in Eureka County +in.county_name Evangeline Parish The dwelling unit is located in Evangeline Parish +in.county_name Evans County The dwelling unit is located in Evans County +in.county_name Fairbanks North Star Borough The dwelling unit is located in Fairbanks North Star Borough +in.county_name Fairfax County The dwelling unit is located in Fairfax County +in.county_name Fairfax city The dwelling unit is located in Fairfax city +in.county_name Fairfield County The dwelling unit is located in Fairfield County +in.county_name Fall River County The dwelling unit is located in Fall River County +in.county_name Fallon County The dwelling unit is located in Fallon County +in.county_name Falls Church city The dwelling unit is located in Falls Church city +in.county_name Falls County The dwelling unit is located in Falls County +in.county_name Fannin County The dwelling unit is located in Fannin County +in.county_name Faribault County The dwelling unit is located in Faribault County +in.county_name Faulk County The dwelling unit is located in Faulk County +in.county_name Faulkner County The dwelling unit is located in Faulkner County +in.county_name Fauquier County The dwelling unit is located in Fauquier County +in.county_name Fayette County The dwelling unit is located in Fayette County +in.county_name Fentress County The dwelling unit is located in Fentress County +in.county_name Fergus County The dwelling unit is located in Fergus County +in.county_name Ferry County The dwelling unit is located in Ferry County +in.county_name Fillmore County The dwelling unit is located in Fillmore County +in.county_name Finney County The dwelling unit is located in Finney County +in.county_name Fisher County The dwelling unit is located in Fisher County +in.county_name Flagler County The dwelling unit is located in Flagler County +in.county_name Flathead County The dwelling unit is located in Flathead County +in.county_name Fleming County The dwelling unit is located in Fleming County +in.county_name Florence County The dwelling unit is located in Florence County +in.county_name Floyd County The dwelling unit is located in Floyd County +in.county_name Fluvanna County The dwelling unit is located in Fluvanna County +in.county_name Foard County The dwelling unit is located in Foard County +in.county_name Fond du Lac County The dwelling unit is located in Fond du Lac County +in.county_name Ford County The dwelling unit is located in Ford County +in.county_name Forest County The dwelling unit is located in Forest County +in.county_name Forrest County The dwelling unit is located in Forrest County +in.county_name Forsyth County The dwelling unit is located in Forsyth County +in.county_name Fort Bend County The dwelling unit is located in Fort Bend County +in.county_name Foster County The dwelling unit is located in Foster County +in.county_name Fountain County The dwelling unit is located in Fountain County +in.county_name Franklin County The dwelling unit is located in Franklin County +in.county_name Franklin Parish The dwelling unit is located in Franklin Parish +in.county_name Franklin city The dwelling unit is located in Franklin city +in.county_name Frederick County The dwelling unit is located in Frederick County +in.county_name Fredericksburg city The dwelling unit is located in Fredericksburg city +in.county_name Freeborn County The dwelling unit is located in Freeborn County +in.county_name Freestone County The dwelling unit is located in Freestone County +in.county_name Fremont County The dwelling unit is located in Fremont County +in.county_name Fresno County The dwelling unit is located in Fresno County +in.county_name Frio County The dwelling unit is located in Frio County +in.county_name Frontier County The dwelling unit is located in Frontier County +in.county_name Fulton County The dwelling unit is located in Fulton County +in.county_name Furnas County The dwelling unit is located in Furnas County +in.county_name Gadsden County The dwelling unit is located in Gadsden County +in.county_name Gage County The dwelling unit is located in Gage County +in.county_name Gaines County The dwelling unit is located in Gaines County +in.county_name Galax city The dwelling unit is located in Galax city +in.county_name Gallatin County The dwelling unit is located in Gallatin County +in.county_name Gallia County The dwelling unit is located in Gallia County +in.county_name Galveston County The dwelling unit is located in Galveston County +in.county_name Garden County The dwelling unit is located in Garden County +in.county_name Garfield County The dwelling unit is located in Garfield County +in.county_name Garland County The dwelling unit is located in Garland County +in.county_name Garrard County The dwelling unit is located in Garrard County +in.county_name Garrett County The dwelling unit is located in Garrett County +in.county_name Garvin County The dwelling unit is located in Garvin County +in.county_name Garza County The dwelling unit is located in Garza County +in.county_name Gasconade County The dwelling unit is located in Gasconade County +in.county_name Gaston County The dwelling unit is located in Gaston County +in.county_name Gates County The dwelling unit is located in Gates County +in.county_name Geary County The dwelling unit is located in Geary County +in.county_name Geauga County The dwelling unit is located in Geauga County +in.county_name Gem County The dwelling unit is located in Gem County +in.county_name Genesee County The dwelling unit is located in Genesee County +in.county_name Geneva County The dwelling unit is located in Geneva County +in.county_name Gentry County The dwelling unit is located in Gentry County +in.county_name George County The dwelling unit is located in George County +in.county_name Georgetown County The dwelling unit is located in Georgetown County +in.county_name Gibson County The dwelling unit is located in Gibson County +in.county_name Gila County The dwelling unit is located in Gila County +in.county_name Gilchrist County The dwelling unit is located in Gilchrist County +in.county_name Giles County The dwelling unit is located in Giles County +in.county_name Gillespie County The dwelling unit is located in Gillespie County +in.county_name Gilliam County The dwelling unit is located in Gilliam County +in.county_name Gilmer County The dwelling unit is located in Gilmer County +in.county_name Gilpin County The dwelling unit is located in Gilpin County +in.county_name Glacier County The dwelling unit is located in Glacier County +in.county_name Glades County The dwelling unit is located in Glades County +in.county_name Gladwin County The dwelling unit is located in Gladwin County +in.county_name Glascock County The dwelling unit is located in Glascock County +in.county_name Glasscock County The dwelling unit is located in Glasscock County +in.county_name Glenn County The dwelling unit is located in Glenn County +in.county_name Gloucester County The dwelling unit is located in Gloucester County +in.county_name Glynn County The dwelling unit is located in Glynn County +in.county_name Gogebic County The dwelling unit is located in Gogebic County +in.county_name Golden Valley County The dwelling unit is located in Golden Valley County +in.county_name Goliad County The dwelling unit is located in Goliad County +in.county_name Gonzales County The dwelling unit is located in Gonzales County +in.county_name Goochland County The dwelling unit is located in Goochland County +in.county_name Goodhue County The dwelling unit is located in Goodhue County +in.county_name Gooding County The dwelling unit is located in Gooding County +in.county_name Gordon County The dwelling unit is located in Gordon County +in.county_name Goshen County The dwelling unit is located in Goshen County +in.county_name Gosper County The dwelling unit is located in Gosper County +in.county_name Gove County The dwelling unit is located in Gove County +in.county_name Grady County The dwelling unit is located in Grady County +in.county_name Grafton County The dwelling unit is located in Grafton County +in.county_name Graham County The dwelling unit is located in Graham County +in.county_name Grainger County The dwelling unit is located in Grainger County +in.county_name Grand County The dwelling unit is located in Grand County +in.county_name Grand Forks County The dwelling unit is located in Grand Forks County +in.county_name Grand Isle County The dwelling unit is located in Grand Isle County +in.county_name Grand Traverse County The dwelling unit is located in Grand Traverse County +in.county_name Granite County The dwelling unit is located in Granite County +in.county_name Grant County The dwelling unit is located in Grant County +in.county_name Grant Parish The dwelling unit is located in Grant Parish +in.county_name Granville County The dwelling unit is located in Granville County +in.county_name Gratiot County The dwelling unit is located in Gratiot County +in.county_name Graves County The dwelling unit is located in Graves County +in.county_name Gray County The dwelling unit is located in Gray County +in.county_name Grays Harbor County The dwelling unit is located in Grays Harbor County +in.county_name Grayson County The dwelling unit is located in Grayson County +in.county_name Greeley County The dwelling unit is located in Greeley County +in.county_name Green County The dwelling unit is located in Green County +in.county_name Green Lake County The dwelling unit is located in Green Lake County +in.county_name Greenbrier County The dwelling unit is located in Greenbrier County +in.county_name Greene County The dwelling unit is located in Greene County +in.county_name Greenlee County The dwelling unit is located in Greenlee County +in.county_name Greensville County The dwelling unit is located in Greensville County +in.county_name Greenup County The dwelling unit is located in Greenup County +in.county_name Greenville County The dwelling unit is located in Greenville County +in.county_name Greenwood County The dwelling unit is located in Greenwood County +in.county_name Greer County The dwelling unit is located in Greer County +in.county_name Gregg County The dwelling unit is located in Gregg County +in.county_name Gregory County The dwelling unit is located in Gregory County +in.county_name Grenada County The dwelling unit is located in Grenada County +in.county_name Griggs County The dwelling unit is located in Griggs County +in.county_name Grimes County The dwelling unit is located in Grimes County +in.county_name Grundy County The dwelling unit is located in Grundy County +in.county_name Guadalupe County The dwelling unit is located in Guadalupe County +in.county_name Guernsey County The dwelling unit is located in Guernsey County +in.county_name Guilford County The dwelling unit is located in Guilford County +in.county_name Gulf County The dwelling unit is located in Gulf County +in.county_name Gunnison County The dwelling unit is located in Gunnison County +in.county_name Guthrie County The dwelling unit is located in Guthrie County +in.county_name Gwinnett County The dwelling unit is located in Gwinnett County +in.county_name Haakon County The dwelling unit is located in Haakon County +in.county_name Habersham County The dwelling unit is located in Habersham County +in.county_name Haines Borough The dwelling unit is located in Haines Borough +in.county_name Hale County The dwelling unit is located in Hale County +in.county_name Halifax County The dwelling unit is located in Halifax County +in.county_name Hall County The dwelling unit is located in Hall County +in.county_name Hamblen County The dwelling unit is located in Hamblen County +in.county_name Hamilton County The dwelling unit is located in Hamilton County +in.county_name Hamlin County The dwelling unit is located in Hamlin County +in.county_name Hampden County The dwelling unit is located in Hampden County +in.county_name Hampshire County The dwelling unit is located in Hampshire County +in.county_name Hampton County The dwelling unit is located in Hampton County +in.county_name Hampton city The dwelling unit is located in Hampton city +in.county_name Hancock County The dwelling unit is located in Hancock County +in.county_name Hand County The dwelling unit is located in Hand County +in.county_name Hanover County The dwelling unit is located in Hanover County +in.county_name Hansford County The dwelling unit is located in Hansford County +in.county_name Hanson County The dwelling unit is located in Hanson County +in.county_name Haralson County The dwelling unit is located in Haralson County +in.county_name Hardee County The dwelling unit is located in Hardee County +in.county_name Hardeman County The dwelling unit is located in Hardeman County +in.county_name Hardin County The dwelling unit is located in Hardin County +in.county_name Harding County The dwelling unit is located in Harding County +in.county_name Hardy County The dwelling unit is located in Hardy County +in.county_name Harford County The dwelling unit is located in Harford County +in.county_name Harlan County The dwelling unit is located in Harlan County +in.county_name Harmon County The dwelling unit is located in Harmon County +in.county_name Harnett County The dwelling unit is located in Harnett County +in.county_name Harney County The dwelling unit is located in Harney County +in.county_name Harper County The dwelling unit is located in Harper County +in.county_name Harris County The dwelling unit is located in Harris County +in.county_name Harrison County The dwelling unit is located in Harrison County +in.county_name Harrisonburg city The dwelling unit is located in Harrisonburg city +in.county_name Hart County The dwelling unit is located in Hart County +in.county_name Hartford County The dwelling unit is located in Hartford County +in.county_name Hartley County The dwelling unit is located in Hartley County +in.county_name Harvey County The dwelling unit is located in Harvey County +in.county_name Haskell County The dwelling unit is located in Haskell County +in.county_name Hawaii County The dwelling unit is located in Hawaii County +in.county_name Hawkins County The dwelling unit is located in Hawkins County +in.county_name Hayes County The dwelling unit is located in Hayes County +in.county_name Hays County The dwelling unit is located in Hays County +in.county_name Haywood County The dwelling unit is located in Haywood County +in.county_name Heard County The dwelling unit is located in Heard County +in.county_name Hemphill County The dwelling unit is located in Hemphill County +in.county_name Hempstead County The dwelling unit is located in Hempstead County +in.county_name Henderson County The dwelling unit is located in Henderson County +in.county_name Hendricks County The dwelling unit is located in Hendricks County +in.county_name Hendry County The dwelling unit is located in Hendry County +in.county_name Hennepin County The dwelling unit is located in Hennepin County +in.county_name Henrico County The dwelling unit is located in Henrico County +in.county_name Henry County The dwelling unit is located in Henry County +in.county_name Herkimer County The dwelling unit is located in Herkimer County +in.county_name Hernando County The dwelling unit is located in Hernando County +in.county_name Hertford County The dwelling unit is located in Hertford County +in.county_name Hettinger County The dwelling unit is located in Hettinger County +in.county_name Hickman County The dwelling unit is located in Hickman County +in.county_name Hickory County The dwelling unit is located in Hickory County +in.county_name Hidalgo County The dwelling unit is located in Hidalgo County +in.county_name Highland County The dwelling unit is located in Highland County +in.county_name Highlands County The dwelling unit is located in Highlands County +in.county_name Hill County The dwelling unit is located in Hill County +in.county_name Hillsborough County The dwelling unit is located in Hillsborough County +in.county_name Hillsdale County The dwelling unit is located in Hillsdale County +in.county_name Hinds County The dwelling unit is located in Hinds County +in.county_name Hinsdale County The dwelling unit is located in Hinsdale County +in.county_name Hitchcock County The dwelling unit is located in Hitchcock County +in.county_name Hocking County The dwelling unit is located in Hocking County +in.county_name Hockley County The dwelling unit is located in Hockley County +in.county_name Hodgeman County The dwelling unit is located in Hodgeman County +in.county_name Hoke County The dwelling unit is located in Hoke County +in.county_name Holmes County The dwelling unit is located in Holmes County +in.county_name Holt County The dwelling unit is located in Holt County +in.county_name Honolulu County The dwelling unit is located in Honolulu County +in.county_name Hood County The dwelling unit is located in Hood County +in.county_name Hood River County The dwelling unit is located in Hood River County +in.county_name Hooker County The dwelling unit is located in Hooker County +in.county_name Hoonah-Angoon Census Area The dwelling unit is located in Hoonah-Angoon Census Area +in.county_name Hopewell city The dwelling unit is located in Hopewell city +in.county_name Hopkins County The dwelling unit is located in Hopkins County +in.county_name Horry County The dwelling unit is located in Horry County +in.county_name Hot Spring County The dwelling unit is located in Hot Spring County +in.county_name Hot Springs County The dwelling unit is located in Hot Springs County +in.county_name Houghton County The dwelling unit is located in Houghton County +in.county_name Houston County The dwelling unit is located in Houston County +in.county_name Howard County The dwelling unit is located in Howard County +in.county_name Howell County The dwelling unit is located in Howell County +in.county_name Hubbard County The dwelling unit is located in Hubbard County +in.county_name Hudson County The dwelling unit is located in Hudson County +in.county_name Hudspeth County The dwelling unit is located in Hudspeth County +in.county_name Huerfano County The dwelling unit is located in Huerfano County +in.county_name Hughes County The dwelling unit is located in Hughes County +in.county_name Humboldt County The dwelling unit is located in Humboldt County +in.county_name Humphreys County The dwelling unit is located in Humphreys County +in.county_name Hunt County The dwelling unit is located in Hunt County +in.county_name Hunterdon County The dwelling unit is located in Hunterdon County +in.county_name Huntingdon County The dwelling unit is located in Huntingdon County +in.county_name Huntington County The dwelling unit is located in Huntington County +in.county_name Huron County The dwelling unit is located in Huron County +in.county_name Hutchinson County The dwelling unit is located in Hutchinson County +in.county_name Hyde County The dwelling unit is located in Hyde County +in.county_name Iberia Parish The dwelling unit is located in Iberia Parish +in.county_name Iberville Parish The dwelling unit is located in Iberville Parish +in.county_name Ida County The dwelling unit is located in Ida County +in.county_name Idaho County The dwelling unit is located in Idaho County +in.county_name Imperial County The dwelling unit is located in Imperial County +in.county_name Independence County The dwelling unit is located in Independence County +in.county_name Indian River County The dwelling unit is located in Indian River County +in.county_name Indiana County The dwelling unit is located in Indiana County +in.county_name Ingham County The dwelling unit is located in Ingham County +in.county_name Inyo County The dwelling unit is located in Inyo County +in.county_name Ionia County The dwelling unit is located in Ionia County +in.county_name Iosco County The dwelling unit is located in Iosco County +in.county_name Iowa County The dwelling unit is located in Iowa County +in.county_name Iredell County The dwelling unit is located in Iredell County +in.county_name Irion County The dwelling unit is located in Irion County +in.county_name Iron County The dwelling unit is located in Iron County +in.county_name Iroquois County The dwelling unit is located in Iroquois County +in.county_name Irwin County The dwelling unit is located in Irwin County +in.county_name Isabella County The dwelling unit is located in Isabella County +in.county_name Isanti County The dwelling unit is located in Isanti County +in.county_name Island County The dwelling unit is located in Island County +in.county_name Isle of Wight County The dwelling unit is located in Isle of Wight County +in.county_name Issaquena County The dwelling unit is located in Issaquena County +in.county_name Itasca County The dwelling unit is located in Itasca County +in.county_name Itawamba County The dwelling unit is located in Itawamba County +in.county_name Izard County The dwelling unit is located in Izard County +in.county_name Jack County The dwelling unit is located in Jack County +in.county_name Jackson County The dwelling unit is located in Jackson County +in.county_name Jackson Parish The dwelling unit is located in Jackson Parish +in.county_name James City County The dwelling unit is located in James City County +in.county_name Jasper County The dwelling unit is located in Jasper County +in.county_name Jay County The dwelling unit is located in Jay County +in.county_name Jeff Davis County The dwelling unit is located in Jeff Davis County +in.county_name Jefferson County The dwelling unit is located in Jefferson County +in.county_name Jefferson Davis County The dwelling unit is located in Jefferson Davis County +in.county_name Jefferson Davis Parish The dwelling unit is located in Jefferson Davis Parish +in.county_name Jefferson Parish The dwelling unit is located in Jefferson Parish +in.county_name Jenkins County The dwelling unit is located in Jenkins County +in.county_name Jennings County The dwelling unit is located in Jennings County +in.county_name Jerauld County The dwelling unit is located in Jerauld County +in.county_name Jerome County The dwelling unit is located in Jerome County +in.county_name Jersey County The dwelling unit is located in Jersey County +in.county_name Jessamine County The dwelling unit is located in Jessamine County +in.county_name Jewell County The dwelling unit is located in Jewell County +in.county_name Jim Hogg County The dwelling unit is located in Jim Hogg County +in.county_name Jim Wells County The dwelling unit is located in Jim Wells County +in.county_name Jo Daviess County The dwelling unit is located in Jo Daviess County +in.county_name Johnson County The dwelling unit is located in Johnson County +in.county_name Johnston County The dwelling unit is located in Johnston County +in.county_name Jones County The dwelling unit is located in Jones County +in.county_name Josephine County The dwelling unit is located in Josephine County +in.county_name Juab County The dwelling unit is located in Juab County +in.county_name Judith Basin County The dwelling unit is located in Judith Basin County +in.county_name Juneau City and Borough The dwelling unit is located in Juneau City and Borough +in.county_name Juneau County The dwelling unit is located in Juneau County +in.county_name Juniata County The dwelling unit is located in Juniata County +in.county_name Kalamazoo County The dwelling unit is located in Kalamazoo County +in.county_name Kalkaska County The dwelling unit is located in Kalkaska County +in.county_name Kanabec County The dwelling unit is located in Kanabec County +in.county_name Kanawha County The dwelling unit is located in Kanawha County +in.county_name Kandiyohi County The dwelling unit is located in Kandiyohi County +in.county_name Kane County The dwelling unit is located in Kane County +in.county_name Kankakee County The dwelling unit is located in Kankakee County +in.county_name Karnes County The dwelling unit is located in Karnes County +in.county_name Kauai County The dwelling unit is located in Kauai County +in.county_name Kaufman County The dwelling unit is located in Kaufman County +in.county_name Kay County The dwelling unit is located in Kay County +in.county_name Kearney County The dwelling unit is located in Kearney County +in.county_name Kearny County The dwelling unit is located in Kearny County +in.county_name Keith County The dwelling unit is located in Keith County +in.county_name Kemper County The dwelling unit is located in Kemper County +in.county_name Kenai Peninsula Borough The dwelling unit is located in Kenai Peninsula Borough +in.county_name Kendall County The dwelling unit is located in Kendall County +in.county_name Kenedy County The dwelling unit is located in Kenedy County +in.county_name Kennebec County The dwelling unit is located in Kennebec County +in.county_name Kenosha County The dwelling unit is located in Kenosha County +in.county_name Kent County The dwelling unit is located in Kent County +in.county_name Kenton County The dwelling unit is located in Kenton County +in.county_name Keokuk County The dwelling unit is located in Keokuk County +in.county_name Kern County The dwelling unit is located in Kern County +in.county_name Kerr County The dwelling unit is located in Kerr County +in.county_name Kershaw County The dwelling unit is located in Kershaw County +in.county_name Ketchikan Gateway Borough The dwelling unit is located in Ketchikan Gateway Borough +in.county_name Kewaunee County The dwelling unit is located in Kewaunee County +in.county_name Keweenaw County The dwelling unit is located in Keweenaw County +in.county_name Keya Paha County The dwelling unit is located in Keya Paha County +in.county_name Kidder County The dwelling unit is located in Kidder County +in.county_name Kimball County The dwelling unit is located in Kimball County +in.county_name Kimble County The dwelling unit is located in Kimble County +in.county_name King County The dwelling unit is located in King County +in.county_name King George County The dwelling unit is located in King George County +in.county_name King William County The dwelling unit is located in King William County +in.county_name King and Queen County The dwelling unit is located in King and Queen County +in.county_name Kingfisher County The dwelling unit is located in Kingfisher County +in.county_name Kingman County The dwelling unit is located in Kingman County +in.county_name Kings County The dwelling unit is located in Kings County +in.county_name Kingsbury County The dwelling unit is located in Kingsbury County +in.county_name Kinney County The dwelling unit is located in Kinney County +in.county_name Kiowa County The dwelling unit is located in Kiowa County +in.county_name Kit Carson County The dwelling unit is located in Kit Carson County +in.county_name Kitsap County The dwelling unit is located in Kitsap County +in.county_name Kittitas County The dwelling unit is located in Kittitas County +in.county_name Kittson County The dwelling unit is located in Kittson County +in.county_name Klamath County The dwelling unit is located in Klamath County +in.county_name Kleberg County The dwelling unit is located in Kleberg County +in.county_name Klickitat County The dwelling unit is located in Klickitat County +in.county_name Knott County The dwelling unit is located in Knott County +in.county_name Knox County The dwelling unit is located in Knox County +in.county_name Kodiak Island Borough The dwelling unit is located in Kodiak Island Borough +in.county_name Koochiching County The dwelling unit is located in Koochiching County +in.county_name Kootenai County The dwelling unit is located in Kootenai County +in.county_name Kosciusko County The dwelling unit is located in Kosciusko County +in.county_name Kossuth County The dwelling unit is located in Kossuth County +in.county_name Kusilvak Census Area The dwelling unit is located in Kusilvak Census Area +in.county_name La Crosse County The dwelling unit is located in La Crosse County +in.county_name La Paz County The dwelling unit is located in La Paz County +in.county_name La Plata County The dwelling unit is located in La Plata County +in.county_name La Salle County The dwelling unit is located in La Salle County +in.county_name La Salle Parish The dwelling unit is located in La Salle Parish +in.county_name LaGrange County The dwelling unit is located in LaGrange County +in.county_name LaMoure County The dwelling unit is located in LaMoure County +in.county_name LaPorte County The dwelling unit is located in LaPorte County +in.county_name LaSalle County The dwelling unit is located in LaSalle County +in.county_name Labette County The dwelling unit is located in Labette County +in.county_name Lac qui Parle County The dwelling unit is located in Lac qui Parle County +in.county_name Lackawanna County The dwelling unit is located in Lackawanna County +in.county_name Laclede County The dwelling unit is located in Laclede County +in.county_name Lafayette County The dwelling unit is located in Lafayette County +in.county_name Lafayette Parish The dwelling unit is located in Lafayette Parish +in.county_name Lafourche Parish The dwelling unit is located in Lafourche Parish +in.county_name Lake County The dwelling unit is located in Lake County +in.county_name Lake and Peninsula Borough The dwelling unit is located in Lake and Peninsula Borough +in.county_name Lake of the Woods County The dwelling unit is located in Lake of the Woods County +in.county_name Lamar County The dwelling unit is located in Lamar County +in.county_name Lamb County The dwelling unit is located in Lamb County +in.county_name Lamoille County The dwelling unit is located in Lamoille County +in.county_name Lampasas County The dwelling unit is located in Lampasas County +in.county_name Lancaster County The dwelling unit is located in Lancaster County +in.county_name Lander County The dwelling unit is located in Lander County +in.county_name Lane County The dwelling unit is located in Lane County +in.county_name Langlade County The dwelling unit is located in Langlade County +in.county_name Lanier County The dwelling unit is located in Lanier County +in.county_name Lapeer County The dwelling unit is located in Lapeer County +in.county_name Laramie County The dwelling unit is located in Laramie County +in.county_name Larimer County The dwelling unit is located in Larimer County +in.county_name Larue County The dwelling unit is located in Larue County +in.county_name Las Animas County The dwelling unit is located in Las Animas County +in.county_name Lassen County The dwelling unit is located in Lassen County +in.county_name Latah County The dwelling unit is located in Latah County +in.county_name Latimer County The dwelling unit is located in Latimer County +in.county_name Lauderdale County The dwelling unit is located in Lauderdale County +in.county_name Laurel County The dwelling unit is located in Laurel County +in.county_name Laurens County The dwelling unit is located in Laurens County +in.county_name Lavaca County The dwelling unit is located in Lavaca County +in.county_name Lawrence County The dwelling unit is located in Lawrence County +in.county_name Le Flore County The dwelling unit is located in Le Flore County +in.county_name Le Sueur County The dwelling unit is located in Le Sueur County +in.county_name Lea County The dwelling unit is located in Lea County +in.county_name Leake County The dwelling unit is located in Leake County +in.county_name Leavenworth County The dwelling unit is located in Leavenworth County +in.county_name Lebanon County The dwelling unit is located in Lebanon County +in.county_name Lee County The dwelling unit is located in Lee County +in.county_name Leelanau County The dwelling unit is located in Leelanau County +in.county_name Leflore County The dwelling unit is located in Leflore County +in.county_name Lehigh County The dwelling unit is located in Lehigh County +in.county_name Lemhi County The dwelling unit is located in Lemhi County +in.county_name Lenawee County The dwelling unit is located in Lenawee County +in.county_name Lenoir County The dwelling unit is located in Lenoir County +in.county_name Leon County The dwelling unit is located in Leon County +in.county_name Leslie County The dwelling unit is located in Leslie County +in.county_name Letcher County The dwelling unit is located in Letcher County +in.county_name Levy County The dwelling unit is located in Levy County +in.county_name Lewis County The dwelling unit is located in Lewis County +in.county_name Lewis and Clark County The dwelling unit is located in Lewis and Clark County +in.county_name Lexington County The dwelling unit is located in Lexington County +in.county_name Lexington city The dwelling unit is located in Lexington city +in.county_name Liberty County The dwelling unit is located in Liberty County +in.county_name Licking County The dwelling unit is located in Licking County +in.county_name Limestone County The dwelling unit is located in Limestone County +in.county_name Lincoln County The dwelling unit is located in Lincoln County +in.county_name Lincoln Parish The dwelling unit is located in Lincoln Parish +in.county_name Linn County The dwelling unit is located in Linn County +in.county_name Lipscomb County The dwelling unit is located in Lipscomb County +in.county_name Litchfield County The dwelling unit is located in Litchfield County +in.county_name Little River County The dwelling unit is located in Little River County +in.county_name Live Oak County The dwelling unit is located in Live Oak County +in.county_name Livingston County The dwelling unit is located in Livingston County +in.county_name Livingston Parish The dwelling unit is located in Livingston Parish +in.county_name Llano County The dwelling unit is located in Llano County +in.county_name Logan County The dwelling unit is located in Logan County +in.county_name Long County The dwelling unit is located in Long County +in.county_name Lonoke County The dwelling unit is located in Lonoke County +in.county_name Lorain County The dwelling unit is located in Lorain County +in.county_name Los Alamos County The dwelling unit is located in Los Alamos County +in.county_name Los Angeles County The dwelling unit is located in Los Angeles County +in.county_name Loudon County The dwelling unit is located in Loudon County +in.county_name Loudoun County The dwelling unit is located in Loudoun County +in.county_name Louisa County The dwelling unit is located in Louisa County +in.county_name Loup County The dwelling unit is located in Loup County +in.county_name Love County The dwelling unit is located in Love County +in.county_name Lowndes County The dwelling unit is located in Lowndes County +in.county_name Lubbock County The dwelling unit is located in Lubbock County +in.county_name Lucas County The dwelling unit is located in Lucas County +in.county_name Luce County The dwelling unit is located in Luce County +in.county_name Lumpkin County The dwelling unit is located in Lumpkin County +in.county_name Luna County The dwelling unit is located in Luna County +in.county_name Lunenburg County The dwelling unit is located in Lunenburg County +in.county_name Luzerne County The dwelling unit is located in Luzerne County +in.county_name Lycoming County The dwelling unit is located in Lycoming County +in.county_name Lyman County The dwelling unit is located in Lyman County +in.county_name Lynchburg city The dwelling unit is located in Lynchburg city +in.county_name Lynn County The dwelling unit is located in Lynn County +in.county_name Lyon County The dwelling unit is located in Lyon County +in.county_name Mackinac County The dwelling unit is located in Mackinac County +in.county_name Macomb County The dwelling unit is located in Macomb County +in.county_name Macon County The dwelling unit is located in Macon County +in.county_name Macoupin County The dwelling unit is located in Macoupin County +in.county_name Madera County The dwelling unit is located in Madera County +in.county_name Madison County The dwelling unit is located in Madison County +in.county_name Madison Parish The dwelling unit is located in Madison Parish +in.county_name Magoffin County The dwelling unit is located in Magoffin County +in.county_name Mahaska County The dwelling unit is located in Mahaska County +in.county_name Mahnomen County The dwelling unit is located in Mahnomen County +in.county_name Mahoning County The dwelling unit is located in Mahoning County +in.county_name Major County The dwelling unit is located in Major County +in.county_name Malheur County The dwelling unit is located in Malheur County +in.county_name Manassas Park city The dwelling unit is located in Manassas Park city +in.county_name Manassas city The dwelling unit is located in Manassas city +in.county_name Manatee County The dwelling unit is located in Manatee County +in.county_name Manistee County The dwelling unit is located in Manistee County +in.county_name Manitowoc County The dwelling unit is located in Manitowoc County +in.county_name Marathon County The dwelling unit is located in Marathon County +in.county_name Marengo County The dwelling unit is located in Marengo County +in.county_name Maricopa County The dwelling unit is located in Maricopa County +in.county_name Maries County The dwelling unit is located in Maries County +in.county_name Marin County The dwelling unit is located in Marin County +in.county_name Marinette County The dwelling unit is located in Marinette County +in.county_name Marion County The dwelling unit is located in Marion County +in.county_name Mariposa County The dwelling unit is located in Mariposa County +in.county_name Marlboro County The dwelling unit is located in Marlboro County +in.county_name Marquette County The dwelling unit is located in Marquette County +in.county_name Marshall County The dwelling unit is located in Marshall County +in.county_name Martin County The dwelling unit is located in Martin County +in.county_name Martinsville city The dwelling unit is located in Martinsville city +in.county_name Mason County The dwelling unit is located in Mason County +in.county_name Massac County The dwelling unit is located in Massac County +in.county_name Matagorda County The dwelling unit is located in Matagorda County +in.county_name Matanuska-Susitna Borough The dwelling unit is located in Matanuska-Susitna Borough +in.county_name Mathews County The dwelling unit is located in Mathews County +in.county_name Maui County The dwelling unit is located in Maui County +in.county_name Maury County The dwelling unit is located in Maury County +in.county_name Maverick County The dwelling unit is located in Maverick County +in.county_name Mayes County The dwelling unit is located in Mayes County +in.county_name McClain County The dwelling unit is located in McClain County +in.county_name McCone County The dwelling unit is located in McCone County +in.county_name McCook County The dwelling unit is located in McCook County +in.county_name McCormick County The dwelling unit is located in McCormick County +in.county_name McCracken County The dwelling unit is located in McCracken County +in.county_name McCreary County The dwelling unit is located in McCreary County +in.county_name McCulloch County The dwelling unit is located in McCulloch County +in.county_name McCurtain County The dwelling unit is located in McCurtain County +in.county_name McDonald County The dwelling unit is located in McDonald County +in.county_name McDonough County The dwelling unit is located in McDonough County +in.county_name McDowell County The dwelling unit is located in McDowell County +in.county_name McDuffie County The dwelling unit is located in McDuffie County +in.county_name McHenry County The dwelling unit is located in McHenry County +in.county_name McIntosh County The dwelling unit is located in McIntosh County +in.county_name McKean County The dwelling unit is located in McKean County +in.county_name McKenzie County The dwelling unit is located in McKenzie County +in.county_name McKinley County The dwelling unit is located in McKinley County +in.county_name McLean County The dwelling unit is located in McLean County +in.county_name McLennan County The dwelling unit is located in McLennan County +in.county_name McLeod County The dwelling unit is located in McLeod County +in.county_name McMinn County The dwelling unit is located in McMinn County +in.county_name McMullen County The dwelling unit is located in McMullen County +in.county_name McNairy County The dwelling unit is located in McNairy County +in.county_name McPherson County The dwelling unit is located in McPherson County +in.county_name Meade County The dwelling unit is located in Meade County +in.county_name Meagher County The dwelling unit is located in Meagher County +in.county_name Mecklenburg County The dwelling unit is located in Mecklenburg County +in.county_name Mecosta County The dwelling unit is located in Mecosta County +in.county_name Medina County The dwelling unit is located in Medina County +in.county_name Meeker County The dwelling unit is located in Meeker County +in.county_name Meigs County The dwelling unit is located in Meigs County +in.county_name Mellette County The dwelling unit is located in Mellette County +in.county_name Menard County The dwelling unit is located in Menard County +in.county_name Mendocino County The dwelling unit is located in Mendocino County +in.county_name Menifee County The dwelling unit is located in Menifee County +in.county_name Menominee County The dwelling unit is located in Menominee County +in.county_name Merced County The dwelling unit is located in Merced County +in.county_name Mercer County The dwelling unit is located in Mercer County +in.county_name Meriwether County The dwelling unit is located in Meriwether County +in.county_name Merrick County The dwelling unit is located in Merrick County +in.county_name Merrimack County The dwelling unit is located in Merrimack County +in.county_name Mesa County The dwelling unit is located in Mesa County +in.county_name Metcalfe County The dwelling unit is located in Metcalfe County +in.county_name Miami County The dwelling unit is located in Miami County +in.county_name Miami-Dade County The dwelling unit is located in Miami-Dade County +in.county_name Middlesex County The dwelling unit is located in Middlesex County +in.county_name Midland County The dwelling unit is located in Midland County +in.county_name Mifflin County The dwelling unit is located in Mifflin County +in.county_name Milam County The dwelling unit is located in Milam County +in.county_name Millard County The dwelling unit is located in Millard County +in.county_name Mille Lacs County The dwelling unit is located in Mille Lacs County +in.county_name Miller County The dwelling unit is located in Miller County +in.county_name Mills County The dwelling unit is located in Mills County +in.county_name Milwaukee County The dwelling unit is located in Milwaukee County +in.county_name Miner County The dwelling unit is located in Miner County +in.county_name Mineral County The dwelling unit is located in Mineral County +in.county_name Mingo County The dwelling unit is located in Mingo County +in.county_name Minidoka County The dwelling unit is located in Minidoka County +in.county_name Minnehaha County The dwelling unit is located in Minnehaha County +in.county_name Missaukee County The dwelling unit is located in Missaukee County +in.county_name Mississippi County The dwelling unit is located in Mississippi County +in.county_name Missoula County The dwelling unit is located in Missoula County +in.county_name Mitchell County The dwelling unit is located in Mitchell County +in.county_name Mobile County The dwelling unit is located in Mobile County +in.county_name Modoc County The dwelling unit is located in Modoc County +in.county_name Moffat County The dwelling unit is located in Moffat County +in.county_name Mohave County The dwelling unit is located in Mohave County +in.county_name Moniteau County The dwelling unit is located in Moniteau County +in.county_name Monmouth County The dwelling unit is located in Monmouth County +in.county_name Mono County The dwelling unit is located in Mono County +in.county_name Monona County The dwelling unit is located in Monona County +in.county_name Monongalia County The dwelling unit is located in Monongalia County +in.county_name Monroe County The dwelling unit is located in Monroe County +in.county_name Montague County The dwelling unit is located in Montague County +in.county_name Montcalm County The dwelling unit is located in Montcalm County +in.county_name Monterey County The dwelling unit is located in Monterey County +in.county_name Montezuma County The dwelling unit is located in Montezuma County +in.county_name Montgomery County The dwelling unit is located in Montgomery County +in.county_name Montmorency County The dwelling unit is located in Montmorency County +in.county_name Montour County The dwelling unit is located in Montour County +in.county_name Montrose County The dwelling unit is located in Montrose County +in.county_name Moody County The dwelling unit is located in Moody County +in.county_name Moore County The dwelling unit is located in Moore County +in.county_name Mora County The dwelling unit is located in Mora County +in.county_name Morehouse Parish The dwelling unit is located in Morehouse Parish +in.county_name Morgan County The dwelling unit is located in Morgan County +in.county_name Morrill County The dwelling unit is located in Morrill County +in.county_name Morris County The dwelling unit is located in Morris County +in.county_name Morrison County The dwelling unit is located in Morrison County +in.county_name Morrow County The dwelling unit is located in Morrow County +in.county_name Morton County The dwelling unit is located in Morton County +in.county_name Motley County The dwelling unit is located in Motley County +in.county_name Moultrie County The dwelling unit is located in Moultrie County +in.county_name Mountrail County The dwelling unit is located in Mountrail County +in.county_name Mower County The dwelling unit is located in Mower County +in.county_name Muhlenberg County The dwelling unit is located in Muhlenberg County +in.county_name Multnomah County The dwelling unit is located in Multnomah County +in.county_name Murray County The dwelling unit is located in Murray County +in.county_name Muscatine County The dwelling unit is located in Muscatine County +in.county_name Muscogee County The dwelling unit is located in Muscogee County +in.county_name Muskegon County The dwelling unit is located in Muskegon County +in.county_name Muskingum County The dwelling unit is located in Muskingum County +in.county_name Muskogee County The dwelling unit is located in Muskogee County +in.county_name Musselshell County The dwelling unit is located in Musselshell County +in.county_name Nacogdoches County The dwelling unit is located in Nacogdoches County +in.county_name Nance County The dwelling unit is located in Nance County +in.county_name Nantucket County The dwelling unit is located in Nantucket County +in.county_name Napa County The dwelling unit is located in Napa County +in.county_name Nash County The dwelling unit is located in Nash County +in.county_name Nassau County The dwelling unit is located in Nassau County +in.county_name Natchitoches Parish The dwelling unit is located in Natchitoches Parish +in.county_name Natrona County The dwelling unit is located in Natrona County +in.county_name Navajo County The dwelling unit is located in Navajo County +in.county_name Navarro County The dwelling unit is located in Navarro County +in.county_name Nelson County The dwelling unit is located in Nelson County +in.county_name Nemaha County The dwelling unit is located in Nemaha County +in.county_name Neosho County The dwelling unit is located in Neosho County +in.county_name Neshoba County The dwelling unit is located in Neshoba County +in.county_name Ness County The dwelling unit is located in Ness County +in.county_name Nevada County The dwelling unit is located in Nevada County +in.county_name New Castle County The dwelling unit is located in New Castle County +in.county_name New Hanover County The dwelling unit is located in New Hanover County +in.county_name New Haven County The dwelling unit is located in New Haven County +in.county_name New Kent County The dwelling unit is located in New Kent County +in.county_name New London County The dwelling unit is located in New London County +in.county_name New Madrid County The dwelling unit is located in New Madrid County +in.county_name New York County The dwelling unit is located in New York County +in.county_name Newaygo County The dwelling unit is located in Newaygo County +in.county_name Newberry County The dwelling unit is located in Newberry County +in.county_name Newport County The dwelling unit is located in Newport County +in.county_name Newport News city The dwelling unit is located in Newport News city +in.county_name Newton County The dwelling unit is located in Newton County +in.county_name Nez Perce County The dwelling unit is located in Nez Perce County +in.county_name Niagara County The dwelling unit is located in Niagara County +in.county_name Nicholas County The dwelling unit is located in Nicholas County +in.county_name Nicollet County The dwelling unit is located in Nicollet County +in.county_name Niobrara County The dwelling unit is located in Niobrara County +in.county_name Noble County The dwelling unit is located in Noble County +in.county_name Nobles County The dwelling unit is located in Nobles County +in.county_name Nodaway County The dwelling unit is located in Nodaway County +in.county_name Nolan County The dwelling unit is located in Nolan County +in.county_name Nome Census Area The dwelling unit is located in Nome Census Area +in.county_name Norfolk County The dwelling unit is located in Norfolk County +in.county_name Norfolk city The dwelling unit is located in Norfolk city +in.county_name Norman County The dwelling unit is located in Norman County +in.county_name North Slope Borough The dwelling unit is located in North Slope Borough +in.county_name Northampton County The dwelling unit is located in Northampton County +in.county_name Northumberland County The dwelling unit is located in Northumberland County +in.county_name Northwest Arctic Borough The dwelling unit is located in Northwest Arctic Borough +in.county_name Norton County The dwelling unit is located in Norton County +in.county_name Norton city The dwelling unit is located in Norton city +in.county_name Nottoway County The dwelling unit is located in Nottoway County +in.county_name Nowata County The dwelling unit is located in Nowata County +in.county_name Noxubee County The dwelling unit is located in Noxubee County +in.county_name Nuckolls County The dwelling unit is located in Nuckolls County +in.county_name Nueces County The dwelling unit is located in Nueces County +in.county_name Nye County The dwelling unit is located in Nye County +in.county_name O'Brien County The dwelling unit is located in O'Brien County +in.county_name Oakland County The dwelling unit is located in Oakland County +in.county_name Obion County The dwelling unit is located in Obion County +in.county_name Ocean County The dwelling unit is located in Ocean County +in.county_name Oceana County The dwelling unit is located in Oceana County +in.county_name Ochiltree County The dwelling unit is located in Ochiltree County +in.county_name Oconee County The dwelling unit is located in Oconee County +in.county_name Oconto County The dwelling unit is located in Oconto County +in.county_name Ogemaw County The dwelling unit is located in Ogemaw County +in.county_name Oglala Lakota County The dwelling unit is located in Oglala Lakota County +in.county_name Ogle County The dwelling unit is located in Ogle County +in.county_name Oglethorpe County The dwelling unit is located in Oglethorpe County +in.county_name Ohio County The dwelling unit is located in Ohio County +in.county_name Okaloosa County The dwelling unit is located in Okaloosa County +in.county_name Okanogan County The dwelling unit is located in Okanogan County +in.county_name Okeechobee County The dwelling unit is located in Okeechobee County +in.county_name Okfuskee County The dwelling unit is located in Okfuskee County +in.county_name Oklahoma County The dwelling unit is located in Oklahoma County +in.county_name Okmulgee County The dwelling unit is located in Okmulgee County +in.county_name Oktibbeha County The dwelling unit is located in Oktibbeha County +in.county_name Oldham County The dwelling unit is located in Oldham County +in.county_name Oliver County The dwelling unit is located in Oliver County +in.county_name Olmsted County The dwelling unit is located in Olmsted County +in.county_name Oneida County The dwelling unit is located in Oneida County +in.county_name Onondaga County The dwelling unit is located in Onondaga County +in.county_name Onslow County The dwelling unit is located in Onslow County +in.county_name Ontario County The dwelling unit is located in Ontario County +in.county_name Ontonagon County The dwelling unit is located in Ontonagon County +in.county_name Orange County The dwelling unit is located in Orange County +in.county_name Orangeburg County The dwelling unit is located in Orangeburg County +in.county_name Oregon County The dwelling unit is located in Oregon County +in.county_name Orleans County The dwelling unit is located in Orleans County +in.county_name Orleans Parish The dwelling unit is located in Orleans Parish +in.county_name Osage County The dwelling unit is located in Osage County +in.county_name Osborne County The dwelling unit is located in Osborne County +in.county_name Osceola County The dwelling unit is located in Osceola County +in.county_name Oscoda County The dwelling unit is located in Oscoda County +in.county_name Oswego County The dwelling unit is located in Oswego County +in.county_name Otero County The dwelling unit is located in Otero County +in.county_name Otoe County The dwelling unit is located in Otoe County +in.county_name Otsego County The dwelling unit is located in Otsego County +in.county_name Ottawa County The dwelling unit is located in Ottawa County +in.county_name Otter Tail County The dwelling unit is located in Otter Tail County +in.county_name Ouachita County The dwelling unit is located in Ouachita County +in.county_name Ouachita Parish The dwelling unit is located in Ouachita Parish +in.county_name Ouray County The dwelling unit is located in Ouray County +in.county_name Outagamie County The dwelling unit is located in Outagamie County +in.county_name Overton County The dwelling unit is located in Overton County +in.county_name Owen County The dwelling unit is located in Owen County +in.county_name Owsley County The dwelling unit is located in Owsley County +in.county_name Owyhee County The dwelling unit is located in Owyhee County +in.county_name Oxford County The dwelling unit is located in Oxford County +in.county_name Ozark County The dwelling unit is located in Ozark County +in.county_name Ozaukee County The dwelling unit is located in Ozaukee County +in.county_name Pacific County The dwelling unit is located in Pacific County +in.county_name Page County The dwelling unit is located in Page County +in.county_name Palm Beach County The dwelling unit is located in Palm Beach County +in.county_name Palo Alto County The dwelling unit is located in Palo Alto County +in.county_name Palo Pinto County The dwelling unit is located in Palo Pinto County +in.county_name Pamlico County The dwelling unit is located in Pamlico County +in.county_name Panola County The dwelling unit is located in Panola County +in.county_name Park County The dwelling unit is located in Park County +in.county_name Parke County The dwelling unit is located in Parke County +in.county_name Parker County The dwelling unit is located in Parker County +in.county_name Parmer County The dwelling unit is located in Parmer County +in.county_name Pasco County The dwelling unit is located in Pasco County +in.county_name Pasquotank County The dwelling unit is located in Pasquotank County +in.county_name Passaic County The dwelling unit is located in Passaic County +in.county_name Patrick County The dwelling unit is located in Patrick County +in.county_name Paulding County The dwelling unit is located in Paulding County +in.county_name Pawnee County The dwelling unit is located in Pawnee County +in.county_name Payette County The dwelling unit is located in Payette County +in.county_name Payne County The dwelling unit is located in Payne County +in.county_name Peach County The dwelling unit is located in Peach County +in.county_name Pearl River County The dwelling unit is located in Pearl River County +in.county_name Pecos County The dwelling unit is located in Pecos County +in.county_name Pembina County The dwelling unit is located in Pembina County +in.county_name Pemiscot County The dwelling unit is located in Pemiscot County +in.county_name Pend Oreille County The dwelling unit is located in Pend Oreille County +in.county_name Pender County The dwelling unit is located in Pender County +in.county_name Pendleton County The dwelling unit is located in Pendleton County +in.county_name Pennington County The dwelling unit is located in Pennington County +in.county_name Penobscot County The dwelling unit is located in Penobscot County +in.county_name Peoria County The dwelling unit is located in Peoria County +in.county_name Pepin County The dwelling unit is located in Pepin County +in.county_name Perkins County The dwelling unit is located in Perkins County +in.county_name Perquimans County The dwelling unit is located in Perquimans County +in.county_name Perry County The dwelling unit is located in Perry County +in.county_name Pershing County The dwelling unit is located in Pershing County +in.county_name Person County The dwelling unit is located in Person County +in.county_name Petersburg Borough The dwelling unit is located in Petersburg Borough +in.county_name Petersburg city The dwelling unit is located in Petersburg city +in.county_name Petroleum County The dwelling unit is located in Petroleum County +in.county_name Pettis County The dwelling unit is located in Pettis County +in.county_name Phelps County The dwelling unit is located in Phelps County +in.county_name Philadelphia County The dwelling unit is located in Philadelphia County +in.county_name Phillips County The dwelling unit is located in Phillips County +in.county_name Piatt County The dwelling unit is located in Piatt County +in.county_name Pickaway County The dwelling unit is located in Pickaway County +in.county_name Pickens County The dwelling unit is located in Pickens County +in.county_name Pickett County The dwelling unit is located in Pickett County +in.county_name Pierce County The dwelling unit is located in Pierce County +in.county_name Pike County The dwelling unit is located in Pike County +in.county_name Pima County The dwelling unit is located in Pima County +in.county_name Pinal County The dwelling unit is located in Pinal County +in.county_name Pine County The dwelling unit is located in Pine County +in.county_name Pinellas County The dwelling unit is located in Pinellas County +in.county_name Pipestone County The dwelling unit is located in Pipestone County +in.county_name Piscataquis County The dwelling unit is located in Piscataquis County +in.county_name Pitkin County The dwelling unit is located in Pitkin County +in.county_name Pitt County The dwelling unit is located in Pitt County +in.county_name Pittsburg County The dwelling unit is located in Pittsburg County +in.county_name Pittsylvania County The dwelling unit is located in Pittsylvania County +in.county_name Piute County The dwelling unit is located in Piute County +in.county_name Placer County The dwelling unit is located in Placer County +in.county_name Plaquemines Parish The dwelling unit is located in Plaquemines Parish +in.county_name Platte County The dwelling unit is located in Platte County +in.county_name Pleasants County The dwelling unit is located in Pleasants County +in.county_name Plumas County The dwelling unit is located in Plumas County +in.county_name Plymouth County The dwelling unit is located in Plymouth County +in.county_name Pocahontas County The dwelling unit is located in Pocahontas County +in.county_name Poinsett County The dwelling unit is located in Poinsett County +in.county_name Pointe Coupee Parish The dwelling unit is located in Pointe Coupee Parish +in.county_name Polk County The dwelling unit is located in Polk County +in.county_name Pondera County The dwelling unit is located in Pondera County +in.county_name Pontotoc County The dwelling unit is located in Pontotoc County +in.county_name Pope County The dwelling unit is located in Pope County +in.county_name Poquoson city The dwelling unit is located in Poquoson city +in.county_name Portage County The dwelling unit is located in Portage County +in.county_name Porter County The dwelling unit is located in Porter County +in.county_name Portsmouth city The dwelling unit is located in Portsmouth city +in.county_name Posey County The dwelling unit is located in Posey County +in.county_name Pottawatomie County The dwelling unit is located in Pottawatomie County +in.county_name Pottawattamie County The dwelling unit is located in Pottawattamie County +in.county_name Potter County The dwelling unit is located in Potter County +in.county_name Powder River County The dwelling unit is located in Powder River County +in.county_name Powell County The dwelling unit is located in Powell County +in.county_name Power County The dwelling unit is located in Power County +in.county_name Poweshiek County The dwelling unit is located in Poweshiek County +in.county_name Powhatan County The dwelling unit is located in Powhatan County +in.county_name Prairie County The dwelling unit is located in Prairie County +in.county_name Pratt County The dwelling unit is located in Pratt County +in.county_name Preble County The dwelling unit is located in Preble County +in.county_name Prentiss County The dwelling unit is located in Prentiss County +in.county_name Presidio County The dwelling unit is located in Presidio County +in.county_name Presque Isle County The dwelling unit is located in Presque Isle County +in.county_name Preston County The dwelling unit is located in Preston County +in.county_name Price County The dwelling unit is located in Price County +in.county_name Prince Edward County The dwelling unit is located in Prince Edward County +in.county_name Prince George County The dwelling unit is located in Prince George County +in.county_name Prince George's County The dwelling unit is located in Prince George's County +in.county_name Prince William County The dwelling unit is located in Prince William County +in.county_name Providence County The dwelling unit is located in Providence County +in.county_name Prowers County The dwelling unit is located in Prowers County +in.county_name Pueblo County The dwelling unit is located in Pueblo County +in.county_name Pulaski County The dwelling unit is located in Pulaski County +in.county_name Pushmataha County The dwelling unit is located in Pushmataha County +in.county_name Putnam County The dwelling unit is located in Putnam County +in.county_name Quay County The dwelling unit is located in Quay County +in.county_name Queen Anne's County The dwelling unit is located in Queen Anne's County +in.county_name Queens County The dwelling unit is located in Queens County +in.county_name Quitman County The dwelling unit is located in Quitman County +in.county_name Rabun County The dwelling unit is located in Rabun County +in.county_name Racine County The dwelling unit is located in Racine County +in.county_name Radford city The dwelling unit is located in Radford city +in.county_name Rains County The dwelling unit is located in Rains County +in.county_name Raleigh County The dwelling unit is located in Raleigh County +in.county_name Ralls County The dwelling unit is located in Ralls County +in.county_name Ramsey County The dwelling unit is located in Ramsey County +in.county_name Randall County The dwelling unit is located in Randall County +in.county_name Randolph County The dwelling unit is located in Randolph County +in.county_name Rankin County The dwelling unit is located in Rankin County +in.county_name Ransom County The dwelling unit is located in Ransom County +in.county_name Rapides Parish The dwelling unit is located in Rapides Parish +in.county_name Rappahannock County The dwelling unit is located in Rappahannock County +in.county_name Ravalli County The dwelling unit is located in Ravalli County +in.county_name Rawlins County The dwelling unit is located in Rawlins County +in.county_name Ray County The dwelling unit is located in Ray County +in.county_name Reagan County The dwelling unit is located in Reagan County +in.county_name Real County The dwelling unit is located in Real County +in.county_name Red Lake County The dwelling unit is located in Red Lake County +in.county_name Red River County The dwelling unit is located in Red River County +in.county_name Red River Parish The dwelling unit is located in Red River Parish +in.county_name Red Willow County The dwelling unit is located in Red Willow County +in.county_name Redwood County The dwelling unit is located in Redwood County +in.county_name Reeves County The dwelling unit is located in Reeves County +in.county_name Refugio County The dwelling unit is located in Refugio County +in.county_name Reno County The dwelling unit is located in Reno County +in.county_name Rensselaer County The dwelling unit is located in Rensselaer County +in.county_name Renville County The dwelling unit is located in Renville County +in.county_name Republic County The dwelling unit is located in Republic County +in.county_name Reynolds County The dwelling unit is located in Reynolds County +in.county_name Rhea County The dwelling unit is located in Rhea County +in.county_name Rice County The dwelling unit is located in Rice County +in.county_name Rich County The dwelling unit is located in Rich County +in.county_name Richardson County The dwelling unit is located in Richardson County +in.county_name Richland County The dwelling unit is located in Richland County +in.county_name Richland Parish The dwelling unit is located in Richland Parish +in.county_name Richmond County The dwelling unit is located in Richmond County +in.county_name Richmond city The dwelling unit is located in Richmond city +in.county_name Riley County The dwelling unit is located in Riley County +in.county_name Ringgold County The dwelling unit is located in Ringgold County +in.county_name Rio Arriba County The dwelling unit is located in Rio Arriba County +in.county_name Rio Blanco County The dwelling unit is located in Rio Blanco County +in.county_name Rio Grande County The dwelling unit is located in Rio Grande County +in.county_name Ripley County The dwelling unit is located in Ripley County +in.county_name Ritchie County The dwelling unit is located in Ritchie County +in.county_name Riverside County The dwelling unit is located in Riverside County +in.county_name Roane County The dwelling unit is located in Roane County +in.county_name Roanoke County The dwelling unit is located in Roanoke County +in.county_name Roanoke city The dwelling unit is located in Roanoke city +in.county_name Roberts County The dwelling unit is located in Roberts County +in.county_name Robertson County The dwelling unit is located in Robertson County +in.county_name Robeson County The dwelling unit is located in Robeson County +in.county_name Rock County The dwelling unit is located in Rock County +in.county_name Rock Island County The dwelling unit is located in Rock Island County +in.county_name Rockbridge County The dwelling unit is located in Rockbridge County +in.county_name Rockcastle County The dwelling unit is located in Rockcastle County +in.county_name Rockdale County The dwelling unit is located in Rockdale County +in.county_name Rockingham County The dwelling unit is located in Rockingham County +in.county_name Rockland County The dwelling unit is located in Rockland County +in.county_name Rockwall County The dwelling unit is located in Rockwall County +in.county_name Roger Mills County The dwelling unit is located in Roger Mills County +in.county_name Rogers County The dwelling unit is located in Rogers County +in.county_name Rolette County The dwelling unit is located in Rolette County +in.county_name Rooks County The dwelling unit is located in Rooks County +in.county_name Roosevelt County The dwelling unit is located in Roosevelt County +in.county_name Roscommon County The dwelling unit is located in Roscommon County +in.county_name Roseau County The dwelling unit is located in Roseau County +in.county_name Rosebud County The dwelling unit is located in Rosebud County +in.county_name Ross County The dwelling unit is located in Ross County +in.county_name Routt County The dwelling unit is located in Routt County +in.county_name Rowan County The dwelling unit is located in Rowan County +in.county_name Runnels County The dwelling unit is located in Runnels County +in.county_name Rush County The dwelling unit is located in Rush County +in.county_name Rusk County The dwelling unit is located in Rusk County +in.county_name Russell County The dwelling unit is located in Russell County +in.county_name Rutherford County The dwelling unit is located in Rutherford County +in.county_name Rutland County The dwelling unit is located in Rutland County +in.county_name Sabine County The dwelling unit is located in Sabine County +in.county_name Sabine Parish The dwelling unit is located in Sabine Parish +in.county_name Sac County The dwelling unit is located in Sac County +in.county_name Sacramento County The dwelling unit is located in Sacramento County +in.county_name Sagadahoc County The dwelling unit is located in Sagadahoc County +in.county_name Saginaw County The dwelling unit is located in Saginaw County +in.county_name Saguache County The dwelling unit is located in Saguache County +in.county_name Salem County The dwelling unit is located in Salem County +in.county_name Salem city The dwelling unit is located in Salem city +in.county_name Saline County The dwelling unit is located in Saline County +in.county_name Salt Lake County The dwelling unit is located in Salt Lake County +in.county_name Saluda County The dwelling unit is located in Saluda County +in.county_name Sampson County The dwelling unit is located in Sampson County +in.county_name San Augustine County The dwelling unit is located in San Augustine County +in.county_name San Benito County The dwelling unit is located in San Benito County +in.county_name San Bernardino County The dwelling unit is located in San Bernardino County +in.county_name San Diego County The dwelling unit is located in San Diego County +in.county_name San Francisco County The dwelling unit is located in San Francisco County +in.county_name San Jacinto County The dwelling unit is located in San Jacinto County +in.county_name San Joaquin County The dwelling unit is located in San Joaquin County +in.county_name San Juan County The dwelling unit is located in San Juan County +in.county_name San Luis Obispo County The dwelling unit is located in San Luis Obispo County +in.county_name San Mateo County The dwelling unit is located in San Mateo County +in.county_name San Miguel County The dwelling unit is located in San Miguel County +in.county_name San Patricio County The dwelling unit is located in San Patricio County +in.county_name San Saba County The dwelling unit is located in San Saba County +in.county_name Sanborn County The dwelling unit is located in Sanborn County +in.county_name Sanders County The dwelling unit is located in Sanders County +in.county_name Sandoval County The dwelling unit is located in Sandoval County +in.county_name Sandusky County The dwelling unit is located in Sandusky County +in.county_name Sangamon County The dwelling unit is located in Sangamon County +in.county_name Sanilac County The dwelling unit is located in Sanilac County +in.county_name Sanpete County The dwelling unit is located in Sanpete County +in.county_name Santa Barbara County The dwelling unit is located in Santa Barbara County +in.county_name Santa Clara County The dwelling unit is located in Santa Clara County +in.county_name Santa Cruz County The dwelling unit is located in Santa Cruz County +in.county_name Santa Fe County The dwelling unit is located in Santa Fe County +in.county_name Santa Rosa County The dwelling unit is located in Santa Rosa County +in.county_name Sarasota County The dwelling unit is located in Sarasota County +in.county_name Saratoga County The dwelling unit is located in Saratoga County +in.county_name Sargent County The dwelling unit is located in Sargent County +in.county_name Sarpy County The dwelling unit is located in Sarpy County +in.county_name Sauk County The dwelling unit is located in Sauk County +in.county_name Saunders County The dwelling unit is located in Saunders County +in.county_name Sawyer County The dwelling unit is located in Sawyer County +in.county_name Schenectady County The dwelling unit is located in Schenectady County +in.county_name Schleicher County The dwelling unit is located in Schleicher County +in.county_name Schley County The dwelling unit is located in Schley County +in.county_name Schoharie County The dwelling unit is located in Schoharie County +in.county_name Schoolcraft County The dwelling unit is located in Schoolcraft County +in.county_name Schuyler County The dwelling unit is located in Schuyler County +in.county_name Schuylkill County The dwelling unit is located in Schuylkill County +in.county_name Scioto County The dwelling unit is located in Scioto County +in.county_name Scotland County The dwelling unit is located in Scotland County +in.county_name Scott County The dwelling unit is located in Scott County +in.county_name Scotts Bluff County The dwelling unit is located in Scotts Bluff County +in.county_name Screven County The dwelling unit is located in Screven County +in.county_name Scurry County The dwelling unit is located in Scurry County +in.county_name Searcy County The dwelling unit is located in Searcy County +in.county_name Sebastian County The dwelling unit is located in Sebastian County +in.county_name Sedgwick County The dwelling unit is located in Sedgwick County +in.county_name Seminole County The dwelling unit is located in Seminole County +in.county_name Seneca County The dwelling unit is located in Seneca County +in.county_name Sequatchie County The dwelling unit is located in Sequatchie County +in.county_name Sequoyah County The dwelling unit is located in Sequoyah County +in.county_name Sevier County The dwelling unit is located in Sevier County +in.county_name Seward County The dwelling unit is located in Seward County +in.county_name Shackelford County The dwelling unit is located in Shackelford County +in.county_name Shannon County The dwelling unit is located in Shannon County +in.county_name Sharkey County The dwelling unit is located in Sharkey County +in.county_name Sharp County The dwelling unit is located in Sharp County +in.county_name Shasta County The dwelling unit is located in Shasta County +in.county_name Shawano County The dwelling unit is located in Shawano County +in.county_name Shawnee County The dwelling unit is located in Shawnee County +in.county_name Sheboygan County The dwelling unit is located in Sheboygan County +in.county_name Shelby County The dwelling unit is located in Shelby County +in.county_name Shenandoah County The dwelling unit is located in Shenandoah County +in.county_name Sherburne County The dwelling unit is located in Sherburne County +in.county_name Sheridan County The dwelling unit is located in Sheridan County +in.county_name Sherman County The dwelling unit is located in Sherman County +in.county_name Shiawassee County The dwelling unit is located in Shiawassee County +in.county_name Shoshone County The dwelling unit is located in Shoshone County +in.county_name Sibley County The dwelling unit is located in Sibley County +in.county_name Sierra County The dwelling unit is located in Sierra County +in.county_name Silver Bow County The dwelling unit is located in Silver Bow County +in.county_name Simpson County The dwelling unit is located in Simpson County +in.county_name Sioux County The dwelling unit is located in Sioux County +in.county_name Siskiyou County The dwelling unit is located in Siskiyou County +in.county_name Sitka City and Borough The dwelling unit is located in Sitka City and Borough +in.county_name Skagit County The dwelling unit is located in Skagit County +in.county_name Skagway Municipality The dwelling unit is located in Skagway Municipality +in.county_name Skamania County The dwelling unit is located in Skamania County +in.county_name Slope County The dwelling unit is located in Slope County +in.county_name Smith County The dwelling unit is located in Smith County +in.county_name Smyth County The dwelling unit is located in Smyth County +in.county_name Snohomish County The dwelling unit is located in Snohomish County +in.county_name Snyder County The dwelling unit is located in Snyder County +in.county_name Socorro County The dwelling unit is located in Socorro County +in.county_name Solano County The dwelling unit is located in Solano County +in.county_name Somerset County The dwelling unit is located in Somerset County +in.county_name Somervell County The dwelling unit is located in Somervell County +in.county_name Sonoma County The dwelling unit is located in Sonoma County +in.county_name Southampton County The dwelling unit is located in Southampton County +in.county_name Southeast Fairbanks Census Area The dwelling unit is located in Southeast Fairbanks Census Area +in.county_name Spalding County The dwelling unit is located in Spalding County +in.county_name Spartanburg County The dwelling unit is located in Spartanburg County +in.county_name Spencer County The dwelling unit is located in Spencer County +in.county_name Spink County The dwelling unit is located in Spink County +in.county_name Spokane County The dwelling unit is located in Spokane County +in.county_name Spotsylvania County The dwelling unit is located in Spotsylvania County +in.county_name St. Bernard Parish The dwelling unit is located in St. Bernard Parish +in.county_name St. Charles County The dwelling unit is located in St. Charles County +in.county_name St. Charles Parish The dwelling unit is located in St. Charles Parish +in.county_name St. Clair County The dwelling unit is located in St. Clair County +in.county_name St. Croix County The dwelling unit is located in St. Croix County +in.county_name St. Francis County The dwelling unit is located in St. Francis County +in.county_name St. Francois County The dwelling unit is located in St. Francois County +in.county_name St. Helena Parish The dwelling unit is located in St. Helena Parish +in.county_name St. James Parish The dwelling unit is located in St. James Parish +in.county_name St. John the Baptist Parish The dwelling unit is located in St. John the Baptist Parish +in.county_name St. Johns County The dwelling unit is located in St. Johns County +in.county_name St. Joseph County The dwelling unit is located in St. Joseph County +in.county_name St. Landry Parish The dwelling unit is located in St. Landry Parish +in.county_name St. Lawrence County The dwelling unit is located in St. Lawrence County +in.county_name St. Louis County The dwelling unit is located in St. Louis County +in.county_name St. Louis city The dwelling unit is located in St. Louis city +in.county_name St. Lucie County The dwelling unit is located in St. Lucie County +in.county_name St. Martin Parish The dwelling unit is located in St. Martin Parish +in.county_name St. Mary Parish The dwelling unit is located in St. Mary Parish +in.county_name St. Mary's County The dwelling unit is located in St. Mary's County +in.county_name St. Tammany Parish The dwelling unit is located in St. Tammany Parish +in.county_name Stafford County The dwelling unit is located in Stafford County +in.county_name Stanislaus County The dwelling unit is located in Stanislaus County +in.county_name Stanley County The dwelling unit is located in Stanley County +in.county_name Stanly County The dwelling unit is located in Stanly County +in.county_name Stanton County The dwelling unit is located in Stanton County +in.county_name Stark County The dwelling unit is located in Stark County +in.county_name Starke County The dwelling unit is located in Starke County +in.county_name Starr County The dwelling unit is located in Starr County +in.county_name Staunton city The dwelling unit is located in Staunton city +in.county_name Ste. Genevieve County The dwelling unit is located in Ste. Genevieve County +in.county_name Stearns County The dwelling unit is located in Stearns County +in.county_name Steele County The dwelling unit is located in Steele County +in.county_name Stephens County The dwelling unit is located in Stephens County +in.county_name Stephenson County The dwelling unit is located in Stephenson County +in.county_name Sterling County The dwelling unit is located in Sterling County +in.county_name Steuben County The dwelling unit is located in Steuben County +in.county_name Stevens County The dwelling unit is located in Stevens County +in.county_name Stewart County The dwelling unit is located in Stewart County +in.county_name Stillwater County The dwelling unit is located in Stillwater County +in.county_name Stoddard County The dwelling unit is located in Stoddard County +in.county_name Stokes County The dwelling unit is located in Stokes County +in.county_name Stone County The dwelling unit is located in Stone County +in.county_name Stonewall County The dwelling unit is located in Stonewall County +in.county_name Storey County The dwelling unit is located in Storey County +in.county_name Story County The dwelling unit is located in Story County +in.county_name Strafford County The dwelling unit is located in Strafford County +in.county_name Stutsman County The dwelling unit is located in Stutsman County +in.county_name Sublette County The dwelling unit is located in Sublette County +in.county_name Suffolk County The dwelling unit is located in Suffolk County +in.county_name Suffolk city The dwelling unit is located in Suffolk city +in.county_name Sullivan County The dwelling unit is located in Sullivan County +in.county_name Sully County The dwelling unit is located in Sully County +in.county_name Summers County The dwelling unit is located in Summers County +in.county_name Summit County The dwelling unit is located in Summit County +in.county_name Sumner County The dwelling unit is located in Sumner County +in.county_name Sumter County The dwelling unit is located in Sumter County +in.county_name Sunflower County The dwelling unit is located in Sunflower County +in.county_name Surry County The dwelling unit is located in Surry County +in.county_name Susquehanna County The dwelling unit is located in Susquehanna County +in.county_name Sussex County The dwelling unit is located in Sussex County +in.county_name Sutter County The dwelling unit is located in Sutter County +in.county_name Sutton County The dwelling unit is located in Sutton County +in.county_name Suwannee County The dwelling unit is located in Suwannee County +in.county_name Swain County The dwelling unit is located in Swain County +in.county_name Sweet Grass County The dwelling unit is located in Sweet Grass County +in.county_name Sweetwater County The dwelling unit is located in Sweetwater County +in.county_name Swift County The dwelling unit is located in Swift County +in.county_name Swisher County The dwelling unit is located in Swisher County +in.county_name Switzerland County The dwelling unit is located in Switzerland County +in.county_name Talbot County The dwelling unit is located in Talbot County +in.county_name Taliaferro County The dwelling unit is located in Taliaferro County +in.county_name Talladega County The dwelling unit is located in Talladega County +in.county_name Tallahatchie County The dwelling unit is located in Tallahatchie County +in.county_name Tallapoosa County The dwelling unit is located in Tallapoosa County +in.county_name Tama County The dwelling unit is located in Tama County +in.county_name Taney County The dwelling unit is located in Taney County +in.county_name Tangipahoa Parish The dwelling unit is located in Tangipahoa Parish +in.county_name Taos County The dwelling unit is located in Taos County +in.county_name Tarrant County The dwelling unit is located in Tarrant County +in.county_name Tate County The dwelling unit is located in Tate County +in.county_name Tattnall County The dwelling unit is located in Tattnall County +in.county_name Taylor County The dwelling unit is located in Taylor County +in.county_name Tazewell County The dwelling unit is located in Tazewell County +in.county_name Tehama County The dwelling unit is located in Tehama County +in.county_name Telfair County The dwelling unit is located in Telfair County +in.county_name Teller County The dwelling unit is located in Teller County +in.county_name Tensas Parish The dwelling unit is located in Tensas Parish +in.county_name Terrebonne Parish The dwelling unit is located in Terrebonne Parish +in.county_name Terrell County The dwelling unit is located in Terrell County +in.county_name Terry County The dwelling unit is located in Terry County +in.county_name Teton County The dwelling unit is located in Teton County +in.county_name Texas County The dwelling unit is located in Texas County +in.county_name Thayer County The dwelling unit is located in Thayer County +in.county_name Thomas County The dwelling unit is located in Thomas County +in.county_name Throckmorton County The dwelling unit is located in Throckmorton County +in.county_name Thurston County The dwelling unit is located in Thurston County +in.county_name Tift County The dwelling unit is located in Tift County +in.county_name Tillamook County The dwelling unit is located in Tillamook County +in.county_name Tillman County The dwelling unit is located in Tillman County +in.county_name Tioga County The dwelling unit is located in Tioga County +in.county_name Tippah County The dwelling unit is located in Tippah County +in.county_name Tippecanoe County The dwelling unit is located in Tippecanoe County +in.county_name Tipton County The dwelling unit is located in Tipton County +in.county_name Tishomingo County The dwelling unit is located in Tishomingo County +in.county_name Titus County The dwelling unit is located in Titus County +in.county_name Todd County The dwelling unit is located in Todd County +in.county_name Tolland County The dwelling unit is located in Tolland County +in.county_name Tom Green County The dwelling unit is located in Tom Green County +in.county_name Tompkins County The dwelling unit is located in Tompkins County +in.county_name Tooele County The dwelling unit is located in Tooele County +in.county_name Toole County The dwelling unit is located in Toole County +in.county_name Toombs County The dwelling unit is located in Toombs County +in.county_name Torrance County The dwelling unit is located in Torrance County +in.county_name Towner County The dwelling unit is located in Towner County +in.county_name Towns County The dwelling unit is located in Towns County +in.county_name Traill County The dwelling unit is located in Traill County +in.county_name Transylvania County The dwelling unit is located in Transylvania County +in.county_name Traverse County The dwelling unit is located in Traverse County +in.county_name Travis County The dwelling unit is located in Travis County +in.county_name Treasure County The dwelling unit is located in Treasure County +in.county_name Trego County The dwelling unit is located in Trego County +in.county_name Trempealeau County The dwelling unit is located in Trempealeau County +in.county_name Treutlen County The dwelling unit is located in Treutlen County +in.county_name Trigg County The dwelling unit is located in Trigg County +in.county_name Trimble County The dwelling unit is located in Trimble County +in.county_name Trinity County The dwelling unit is located in Trinity County +in.county_name Tripp County The dwelling unit is located in Tripp County +in.county_name Troup County The dwelling unit is located in Troup County +in.county_name Trousdale County The dwelling unit is located in Trousdale County +in.county_name Trumbull County The dwelling unit is located in Trumbull County +in.county_name Tucker County The dwelling unit is located in Tucker County +in.county_name Tulare County The dwelling unit is located in Tulare County +in.county_name Tulsa County The dwelling unit is located in Tulsa County +in.county_name Tunica County The dwelling unit is located in Tunica County +in.county_name Tuolumne County The dwelling unit is located in Tuolumne County +in.county_name Turner County The dwelling unit is located in Turner County +in.county_name Tuscaloosa County The dwelling unit is located in Tuscaloosa County +in.county_name Tuscarawas County The dwelling unit is located in Tuscarawas County +in.county_name Tuscola County The dwelling unit is located in Tuscola County +in.county_name Twiggs County The dwelling unit is located in Twiggs County +in.county_name Twin Falls County The dwelling unit is located in Twin Falls County +in.county_name Tyler County The dwelling unit is located in Tyler County +in.county_name Tyrrell County The dwelling unit is located in Tyrrell County +in.county_name Uinta County The dwelling unit is located in Uinta County +in.county_name Uintah County The dwelling unit is located in Uintah County +in.county_name Ulster County The dwelling unit is located in Ulster County +in.county_name Umatilla County The dwelling unit is located in Umatilla County +in.county_name Unicoi County The dwelling unit is located in Unicoi County +in.county_name Union County The dwelling unit is located in Union County +in.county_name Union Parish The dwelling unit is located in Union Parish +in.county_name Upshur County The dwelling unit is located in Upshur County +in.county_name Upson County The dwelling unit is located in Upson County +in.county_name Upton County The dwelling unit is located in Upton County +in.county_name Utah County The dwelling unit is located in Utah County +in.county_name Uvalde County The dwelling unit is located in Uvalde County +in.county_name Val Verde County The dwelling unit is located in Val Verde County +in.county_name Valdez-Cordova Census Area The dwelling unit is located in Valdez-Cordova Census Area +in.county_name Valencia County The dwelling unit is located in Valencia County +in.county_name Valley County The dwelling unit is located in Valley County +in.county_name Van Buren County The dwelling unit is located in Van Buren County +in.county_name Van Wert County The dwelling unit is located in Van Wert County +in.county_name Van Zandt County The dwelling unit is located in Van Zandt County +in.county_name Vance County The dwelling unit is located in Vance County +in.county_name Vanderburgh County The dwelling unit is located in Vanderburgh County +in.county_name Venango County The dwelling unit is located in Venango County +in.county_name Ventura County The dwelling unit is located in Ventura County +in.county_name Vermilion County The dwelling unit is located in Vermilion County +in.county_name Vermilion Parish The dwelling unit is located in Vermilion Parish +in.county_name Vermillion County The dwelling unit is located in Vermillion County +in.county_name Vernon County The dwelling unit is located in Vernon County +in.county_name Vernon Parish The dwelling unit is located in Vernon Parish +in.county_name Victoria County The dwelling unit is located in Victoria County +in.county_name Vigo County The dwelling unit is located in Vigo County +in.county_name Vilas County The dwelling unit is located in Vilas County +in.county_name Vinton County The dwelling unit is located in Vinton County +in.county_name Virginia Beach city The dwelling unit is located in Virginia Beach city +in.county_name Volusia County The dwelling unit is located in Volusia County +in.county_name Wabash County The dwelling unit is located in Wabash County +in.county_name Wabasha County The dwelling unit is located in Wabasha County +in.county_name Wabaunsee County The dwelling unit is located in Wabaunsee County +in.county_name Wadena County The dwelling unit is located in Wadena County +in.county_name Wagoner County The dwelling unit is located in Wagoner County +in.county_name Wahkiakum County The dwelling unit is located in Wahkiakum County +in.county_name Wake County The dwelling unit is located in Wake County +in.county_name Wakulla County The dwelling unit is located in Wakulla County +in.county_name Waldo County The dwelling unit is located in Waldo County +in.county_name Walker County The dwelling unit is located in Walker County +in.county_name Walla Walla County The dwelling unit is located in Walla Walla County +in.county_name Wallace County The dwelling unit is located in Wallace County +in.county_name Waller County The dwelling unit is located in Waller County +in.county_name Wallowa County The dwelling unit is located in Wallowa County +in.county_name Walsh County The dwelling unit is located in Walsh County +in.county_name Walthall County The dwelling unit is located in Walthall County +in.county_name Walton County The dwelling unit is located in Walton County +in.county_name Walworth County The dwelling unit is located in Walworth County +in.county_name Wapello County The dwelling unit is located in Wapello County +in.county_name Ward County The dwelling unit is located in Ward County +in.county_name Ware County The dwelling unit is located in Ware County +in.county_name Warren County The dwelling unit is located in Warren County +in.county_name Warrick County The dwelling unit is located in Warrick County +in.county_name Wasatch County The dwelling unit is located in Wasatch County +in.county_name Wasco County The dwelling unit is located in Wasco County +in.county_name Waseca County The dwelling unit is located in Waseca County +in.county_name Washakie County The dwelling unit is located in Washakie County +in.county_name Washburn County The dwelling unit is located in Washburn County +in.county_name Washington County The dwelling unit is located in Washington County +in.county_name Washington Parish The dwelling unit is located in Washington Parish +in.county_name Washita County The dwelling unit is located in Washita County +in.county_name Washoe County The dwelling unit is located in Washoe County +in.county_name Washtenaw County The dwelling unit is located in Washtenaw County +in.county_name Watauga County The dwelling unit is located in Watauga County +in.county_name Watonwan County The dwelling unit is located in Watonwan County +in.county_name Waukesha County The dwelling unit is located in Waukesha County +in.county_name Waupaca County The dwelling unit is located in Waupaca County +in.county_name Waushara County The dwelling unit is located in Waushara County +in.county_name Wayne County The dwelling unit is located in Wayne County +in.county_name Waynesboro city The dwelling unit is located in Waynesboro city +in.county_name Weakley County The dwelling unit is located in Weakley County +in.county_name Webb County The dwelling unit is located in Webb County +in.county_name Weber County The dwelling unit is located in Weber County +in.county_name Webster County The dwelling unit is located in Webster County +in.county_name Webster Parish The dwelling unit is located in Webster Parish +in.county_name Weld County The dwelling unit is located in Weld County +in.county_name Wells County The dwelling unit is located in Wells County +in.county_name West Baton Rouge Parish The dwelling unit is located in West Baton Rouge Parish +in.county_name West Carroll Parish The dwelling unit is located in West Carroll Parish +in.county_name West Feliciana Parish The dwelling unit is located in West Feliciana Parish +in.county_name Westchester County The dwelling unit is located in Westchester County +in.county_name Westmoreland County The dwelling unit is located in Westmoreland County +in.county_name Weston County The dwelling unit is located in Weston County +in.county_name Wetzel County The dwelling unit is located in Wetzel County +in.county_name Wexford County The dwelling unit is located in Wexford County +in.county_name Wharton County The dwelling unit is located in Wharton County +in.county_name Whatcom County The dwelling unit is located in Whatcom County +in.county_name Wheatland County The dwelling unit is located in Wheatland County +in.county_name Wheeler County The dwelling unit is located in Wheeler County +in.county_name White County The dwelling unit is located in White County +in.county_name White Pine County The dwelling unit is located in White Pine County +in.county_name Whiteside County The dwelling unit is located in Whiteside County +in.county_name Whitfield County The dwelling unit is located in Whitfield County +in.county_name Whitley County The dwelling unit is located in Whitley County +in.county_name Whitman County The dwelling unit is located in Whitman County +in.county_name Wibaux County The dwelling unit is located in Wibaux County +in.county_name Wichita County The dwelling unit is located in Wichita County +in.county_name Wicomico County The dwelling unit is located in Wicomico County +in.county_name Wilbarger County The dwelling unit is located in Wilbarger County +in.county_name Wilcox County The dwelling unit is located in Wilcox County +in.county_name Wilkes County The dwelling unit is located in Wilkes County +in.county_name Wilkin County The dwelling unit is located in Wilkin County +in.county_name Wilkinson County The dwelling unit is located in Wilkinson County +in.county_name Will County The dwelling unit is located in Will County +in.county_name Willacy County The dwelling unit is located in Willacy County +in.county_name Williams County The dwelling unit is located in Williams County +in.county_name Williamsburg County The dwelling unit is located in Williamsburg County +in.county_name Williamsburg city The dwelling unit is located in Williamsburg city +in.county_name Williamson County The dwelling unit is located in Williamson County +in.county_name Wilson County The dwelling unit is located in Wilson County +in.county_name Winchester city The dwelling unit is located in Winchester city +in.county_name Windham County The dwelling unit is located in Windham County +in.county_name Windsor County The dwelling unit is located in Windsor County +in.county_name Winkler County The dwelling unit is located in Winkler County +in.county_name Winn Parish The dwelling unit is located in Winn Parish +in.county_name Winnebago County The dwelling unit is located in Winnebago County +in.county_name Winneshiek County The dwelling unit is located in Winneshiek County +in.county_name Winona County The dwelling unit is located in Winona County +in.county_name Winston County The dwelling unit is located in Winston County +in.county_name Wirt County The dwelling unit is located in Wirt County +in.county_name Wise County The dwelling unit is located in Wise County +in.county_name Wolfe County The dwelling unit is located in Wolfe County +in.county_name Wood County The dwelling unit is located in Wood County +in.county_name Woodbury County The dwelling unit is located in Woodbury County +in.county_name Woodford County The dwelling unit is located in Woodford County +in.county_name Woodruff County The dwelling unit is located in Woodruff County +in.county_name Woods County The dwelling unit is located in Woods County +in.county_name Woodson County The dwelling unit is located in Woodson County +in.county_name Woodward County The dwelling unit is located in Woodward County +in.county_name Worcester County The dwelling unit is located in Worcester County +in.county_name Worth County The dwelling unit is located in Worth County +in.county_name Wrangell City and Borough The dwelling unit is located in Wrangell City and Borough +in.county_name Wright County The dwelling unit is located in Wright County +in.county_name Wyandot County The dwelling unit is located in Wyandot County +in.county_name Wyandotte County The dwelling unit is located in Wyandotte County +in.county_name Wyoming County The dwelling unit is located in Wyoming County +in.county_name Wythe County The dwelling unit is located in Wythe County +in.county_name Yadkin County The dwelling unit is located in Yadkin County +in.county_name Yakima County The dwelling unit is located in Yakima County +in.county_name Yakutat City and Borough The dwelling unit is located in Yakutat City and Borough +in.county_name Yalobusha County The dwelling unit is located in Yalobusha County +in.county_name Yamhill County The dwelling unit is located in Yamhill County +in.county_name Yancey County The dwelling unit is located in Yancey County +in.county_name Yankton County The dwelling unit is located in Yankton County +in.county_name Yates County The dwelling unit is located in Yates County +in.county_name Yavapai County The dwelling unit is located in Yavapai County +in.county_name Yazoo County The dwelling unit is located in Yazoo County +in.county_name Yell County The dwelling unit is located in Yell County +in.county_name Yellow Medicine County The dwelling unit is located in Yellow Medicine County +in.county_name Yellowstone County The dwelling unit is located in Yellowstone County +in.county_name Yoakum County The dwelling unit is located in Yoakum County +in.county_name Yolo County The dwelling unit is located in Yolo County +in.county_name York County The dwelling unit is located in York County +in.county_name Young County The dwelling unit is located in Young County +in.county_name Yuba County The dwelling unit is located in Yuba County +in.county_name Yukon-Koyukuk Census Area The dwelling unit is located in Yukon-Koyukuk Census Area +in.county_name Yuma County The dwelling unit is located in Yuma County +in.county_name Zapata County The dwelling unit is located in Zapata County +in.county_name Zavala County The dwelling unit is located in Zavala County +in.county_name Ziebach County The dwelling unit is located in Ziebach County +in.custom_state AK The dwelling unit is located in AK state +in.custom_state Others The dwelling unit is located in Others state +in.dehumidifier None No dehumidifier +in.dishwasher 290 Rated kWh 290 kWh rated dishwasher +in.dishwasher 318 Rated kWh 318 kWh rated dishwasher +in.dishwasher None No dishwasher +in.dishwasher_usage_level 100% Usage The usage of dishwasher is at 100% the national average +in.dishwasher_usage_level 120% Usage The usage of dishwasher is at 120% the national average +in.dishwasher_usage_level 80% Usage The usage of dishwasher is at 80% the national average +in.door_area 20 ft^2 Door area is 20 square footage +in.doors Fiberglass Door material is fiberglass +in.duct_leakage_and_insulation "0% Leakage to Outside, Uninsulated" 0% of duct airflow lost to leakage; ducts are uninsulated +in.duct_leakage_and_insulation "10% Leakage to Outside, R-4" 10% of duct airflow is lost to leakage; nominal duct insulation is R-4 +in.duct_leakage_and_insulation "10% Leakage to Outside, R-6" 10% of duct airflow is lost to leakage; nominal duct insulation is R-6 +in.duct_leakage_and_insulation "10% Leakage to Outside, R-8" 10% of duct airflow is lost to leakage; nominal duct insulation is R-8 +in.duct_leakage_and_insulation "10% Leakage to Outside, Uninsulated" 10% of duct airflow is lost to leakage; ducts are uninsulated +in.duct_leakage_and_insulation "20% Leakage to Outside, R-4" 20% of duct airflow is lost to leakage; nominal duct insulation is R-4 +in.duct_leakage_and_insulation "20% Leakage to Outside, R-6" 20% of duct airflow is lost to leakage; nominal duct insulation is R-6 +in.duct_leakage_and_insulation "20% Leakage to Outside, R-8" 20% of duct airflow is lost to leakage; nominal duct insulation is R-8 +in.duct_leakage_and_insulation "20% Leakage to Outside, Uninsulated" 20% of duct airflow is lost to leakage; ducts are uninsulated +in.duct_leakage_and_insulation "30% Leakage to Outside, R-4" 30% of duct airflow is lost to leakage; nominal duct insulation is R-4 +in.duct_leakage_and_insulation "30% Leakage to Outside, R-6" 30% of duct airflow is lost to leakage; nominal duct insulation is R-6 +in.duct_leakage_and_insulation "30% Leakage to Outside, R-8" 30% of duct airflow is lost to leakage; nominal duct insulation is R-8 +in.duct_leakage_and_insulation "30% Leakage to Outside, Uninsulated" 30% of duct airflow is lost to leakage; ducts are uninsulated +in.duct_leakage_and_insulation None No ducts exist +in.duct_location Attic The location of duct system is Attic +in.duct_location Crawlspace The location of duct system is Crawlspace +in.duct_location Garage The location of duct system is Garage +in.duct_location Heated Basement The location of duct system is Heated Basement +in.duct_location Living Space The location of duct system is Living Space +in.duct_location None No ducts exist +in.duct_location Unheated Basement The location of duct system is Unheated Basement +in.eaves 2 ft 2 feet eaves depth +in.electric_panel_breaker_space_total_count 8 The electric panel has a total of 8 breaker spaces +in.electric_panel_breaker_space_total_count 9 The electric panel has a total of 9 breaker spaces +in.electric_panel_breaker_space_total_count 10 The electric panel has a total of 10 breaker spaces +in.electric_panel_breaker_space_total_count 11 The electric panel has a total of 11 breaker spaces +in.electric_panel_breaker_space_total_count 12 The electric panel has a total of 12 breaker spaces +in.electric_panel_breaker_space_total_count 13 The electric panel has a total of 13 breaker spaces +in.electric_panel_breaker_space_total_count 14 The electric panel has a total of 14 breaker spaces +in.electric_panel_breaker_space_total_count 15 The electric panel has a total of 15 breaker spaces +in.electric_panel_breaker_space_total_count 16 The electric panel has a total of 16 breaker spaces +in.electric_panel_breaker_space_total_count 17 The electric panel has a total of 17 breaker spaces +in.electric_panel_breaker_space_total_count 18 The electric panel has a total of 18 breaker spaces +in.electric_panel_breaker_space_total_count 19 The electric panel has a total of 19 breaker spaces +in.electric_panel_breaker_space_total_count 20 The electric panel has a total of 20 breaker spaces +in.electric_panel_breaker_space_total_count 21 The electric panel has a total of 21 breaker spaces +in.electric_panel_breaker_space_total_count 22 The electric panel has a total of 22 breaker spaces +in.electric_panel_breaker_space_total_count 23 The electric panel has a total of 23 breaker spaces +in.electric_panel_breaker_space_total_count 24 The electric panel has a total of 24 breaker spaces +in.electric_panel_breaker_space_total_count 25 The electric panel has a total of 25 breaker spaces +in.electric_panel_breaker_space_total_count 26 The electric panel has a total of 26 breaker spaces +in.electric_panel_breaker_space_total_count 27 The electric panel has a total of 27 breaker spaces +in.electric_panel_breaker_space_total_count 28 The electric panel has a total of 28 breaker spaces +in.electric_panel_breaker_space_total_count 29 The electric panel has a total of 29 breaker spaces +in.electric_panel_breaker_space_total_count 30 The electric panel has a total of 30 breaker spaces +in.electric_panel_breaker_space_total_count 31 The electric panel has a total of 31 breaker spaces +in.electric_panel_breaker_space_total_count 32 The electric panel has a total of 32 breaker spaces +in.electric_panel_breaker_space_total_count 33 The electric panel has a total of 33 breaker spaces +in.electric_panel_breaker_space_total_count 34 The electric panel has a total of 34 breaker spaces +in.electric_panel_breaker_space_total_count 35 The electric panel has a total of 35 breaker spaces +in.electric_panel_breaker_space_total_count 36 The electric panel has a total of 36 breaker spaces +in.electric_panel_breaker_space_total_count 37 The electric panel has a total of 37 breaker spaces +in.electric_panel_breaker_space_total_count 38 The electric panel has a total of 38 breaker spaces +in.electric_panel_breaker_space_total_count 39 The electric panel has a total of 39 breaker spaces +in.electric_panel_breaker_space_total_count 40 The electric panel has a total of 40 breaker spaces +in.electric_panel_breaker_space_total_count 41 The electric panel has a total of 41 breaker spaces +in.electric_panel_breaker_space_total_count 42 The electric panel has a total of 42 breaker spaces +in.electric_panel_breaker_space_total_count 43 The electric panel has a total of 43 breaker spaces +in.electric_panel_breaker_space_total_count 44 The electric panel has a total of 44 breaker spaces +in.electric_panel_breaker_space_total_count 45 The electric panel has a total of 45 breaker spaces +in.electric_panel_breaker_space_total_count 46 The electric panel has a total of 46 breaker spaces +in.electric_panel_breaker_space_total_count 47 The electric panel has a total of 47 breaker spaces +in.electric_panel_breaker_space_total_count 48 The electric panel has a total of 48 breaker spaces +in.electric_panel_breaker_space_total_count 49 The electric panel has a total of 49 breaker spaces +in.electric_panel_breaker_space_total_count 50 The electric panel has a total of 50 breaker spaces +in.electric_panel_breaker_space_total_count 51 The electric panel has a total of 51 breaker spaces +in.electric_panel_breaker_space_total_count 52 The electric panel has a total of 52 breaker spaces +in.electric_panel_breaker_space_total_count 53 The electric panel has a total of 53 breaker spaces +in.electric_panel_breaker_space_total_count 54 The electric panel has a total of 54 breaker spaces +in.electric_panel_breaker_space_total_count 55 The electric panel has a total of 55 breaker spaces +in.electric_panel_breaker_space_total_count 56 The electric panel has a total of 56 breaker spaces +in.electric_panel_breaker_space_total_count 57 The electric panel has a total of 57 breaker spaces +in.electric_panel_breaker_space_total_count 58 The electric panel has a total of 58 breaker spaces +in.electric_panel_breaker_space_total_count 59 The electric panel has a total of 59 breaker spaces +in.electric_panel_breaker_space_total_count 60 The electric panel has a total of 60 breaker spaces +in.electric_panel_service_rating..a 60 The electric panel is rated at 60 A +in.electric_panel_service_rating..a 90 The electric panel is rated at 90 A +in.electric_panel_service_rating..a 100 The electric panel is rated at 100 A +in.electric_panel_service_rating..a 120 The electric panel is rated at 120 A +in.electric_panel_service_rating..a 125 The electric panel is rated at 125 A +in.electric_panel_service_rating..a 150 The electric panel is rated at 150 A +in.electric_panel_service_rating..a 200 The electric panel is rated at 200 A +in.electric_panel_service_rating..a 250 The electric panel is rated at 250 A +in.electric_panel_service_rating..a 300 The electric panel is rated at 300 A +in.electric_panel_service_rating..a 400 The electric panel is rated at 400 A +in.electric_panel_service_rating_bin..a 100 The electric panel is rated at 100 A +in.electric_panel_service_rating_bin..a 101-124 The electric panel is rated in a range of 101-124 A +in.electric_panel_service_rating_bin..a 125 The electric panel is rated in a range of 125 A +in.electric_panel_service_rating_bin..a 126-199 The electric panel is rated in a range of 126-199 A +in.electric_panel_service_rating_bin..a 200 The electric panel is rated in a range of 200 A +in.electric_panel_service_rating_bin..a 201+ The electric panel is rated in a range of 201+ A +in.electric_panel_service_rating_bin..a <100 The electric panel is rated in a range of <100 A +in.electric_vehicle_battery "Compact, Battery Electric Vehicle, 200 mile range" The electric vehicle is Compact and has a 200-mile battery range +in.electric_vehicle_battery "Compact, Battery Electric Vehicle, 300 mile range" The electric vehicle is Compact and has a 300-mile battery range +in.electric_vehicle_battery "Midsize, Battery Electric Vehicle, 200 mile range" The electric vehicle is Midsize and has a 200-mile battery range +in.electric_vehicle_battery "Midsize, Battery Electric Vehicle, 300 mile range" The electric vehicle is Midsize and has a 300-mile battery range +in.electric_vehicle_battery "Pickup, Battery Electric Vehicle, 200 mile range" The electric vehicle is Pickup and has a 200-mile battery range +in.electric_vehicle_battery "Pickup, Battery Electric Vehicle, 300 mile range" The electric vehicle is Pickup and has a 300-mile battery range +in.electric_vehicle_battery "SUV, Battery Electric Vehicle, 200 mile range" The electric vehicle is SUV and has a 200-mile battery range +in.electric_vehicle_battery "SUV, Battery Electric Vehicle, 300 mile range" The electric vehicle is SUV and has a 300-mile battery range +in.electric_vehicle_charge_at_home 0-19% 0-19% of electric vehicle charging occurs at home +in.electric_vehicle_charge_at_home 100% All electric vehicle charging occurs at home +in.electric_vehicle_charge_at_home 20-39% 20-39% of electric vehicle charging occurs at home +in.electric_vehicle_charge_at_home 40-59% 40-59% of electric vehicle charging occurs at home +in.electric_vehicle_charge_at_home 60-79% 60-79% of electric vehicle charging occurs at home +in.electric_vehicle_charge_at_home 80-99% 80-99% of electric vehicle charging occurs at home +in.electric_vehicle_charger Level 1 charger The electric vehicle charger at the dwelling unit is a Level 1 charger +in.electric_vehicle_charger Level 2 charger The electric vehicle charger at the dwelling unit is a Level 2 charger +in.electric_vehicle_charger None There is no electric vehicle charger at the dwelling unit +in.electric_vehicle_miles_traveled 1000 The electric vehicle is driven 1000 miles per year +in.electric_vehicle_miles_traveled 3000 The electric vehicle is driven 3000 miles per year +in.electric_vehicle_miles_traveled 5000 The electric vehicle is driven 5000 miles per year +in.electric_vehicle_miles_traveled 7000 The electric vehicle is driven 7000 miles per year +in.electric_vehicle_miles_traveled 9000 The electric vehicle is driven 9000 miles per year +in.electric_vehicle_miles_traveled 11000 The electric vehicle is driven 11000 miles per year +in.electric_vehicle_miles_traveled 13000 The electric vehicle is driven 13000 miles per year +in.electric_vehicle_miles_traveled 15000 The electric vehicle is driven 15000 miles per year +in.electric_vehicle_miles_traveled 17000 The electric vehicle is driven 17000 miles per year +in.electric_vehicle_miles_traveled 19000 The electric vehicle is driven 19000 miles per year +in.electric_vehicle_miles_traveled 22500 The electric vehicle is driven 22500 miles per year +in.electric_vehicle_outlet_access No The unit doesn't have an outlet within 20 feet of vehicle parking +in.electric_vehicle_outlet_access Yes The unit has an outlet within 20 feet of vehicle parking +in.electric_vehicle_ownership No The dwelling unit doesn't own an electric vehicle. +in.electric_vehicle_ownership Yes The dwelling unit owns an electric vehicle. +in.energystar_climate_zone_2023 North-Central Climate zones used by EnergyStar is North-Central +in.energystar_climate_zone_2023 Northern Climate zones used by EnergyStar is Northern +in.energystar_climate_zone_2023 South-Central Climate zones used by EnergyStar is South-Central +in.energystar_climate_zone_2023 Southern Climate zones used by EnergyStar is Southern +in.federal_poverty_level 0-100% Federal poverty level of 0-100% +in.federal_poverty_level 100-150% Federal poverty level of 100-150% +in.federal_poverty_level 150-200% Federal poverty level of 150-200% +in.federal_poverty_level 200-300% Federal poverty level of 200-300% +in.federal_poverty_level 300-400% Federal poverty level of 300-400% +in.federal_poverty_level 400%+ Federal poverty level of 400%+ +in.federal_poverty_level Not Available Federal poverty level is Not Available +in.generation_and_emissions_assessment_region CAISO Generation and emission assessment region of CAISO +in.generation_and_emissions_assessment_region ERCOT Generation and emission assessment region of ERCOT +in.generation_and_emissions_assessment_region FRCC Generation and emission assessment region of FRCC +in.generation_and_emissions_assessment_region ISONE Generation and emission assessment region of ISONE +in.generation_and_emissions_assessment_region MISO Central Generation and emission assessment region of MISO Central +in.generation_and_emissions_assessment_region MISO North Generation and emission assessment region of MISO North +in.generation_and_emissions_assessment_region MISO South Generation and emission assessment region of MISO South +in.generation_and_emissions_assessment_region NYISO Generation and emission assessment region of NYISO +in.generation_and_emissions_assessment_region None Generation and emission assessment region of None +in.generation_and_emissions_assessment_region Northern Grid East Generation and emission assessment region of Northern Grid East +in.generation_and_emissions_assessment_region Northern Grid South Generation and emission assessment region of Northern Grid South +in.generation_and_emissions_assessment_region Northern Grid West Generation and emission assessment region of Northern Grid West +in.generation_and_emissions_assessment_region PJM East Generation and emission assessment region of PJM East +in.generation_and_emissions_assessment_region PJM West Generation and emission assessment region of PJM West +in.generation_and_emissions_assessment_region SERTP Generation and emission assessment region of SERTP +in.generation_and_emissions_assessment_region SPP North Generation and emission assessment region of SPP North +in.generation_and_emissions_assessment_region SPP South Generation and emission assessment region of SPP South +in.generation_and_emissions_assessment_region West Connect North Generation and emission assessment region of West Connect North +in.generation_and_emissions_assessment_region West Connect South Generation and emission assessment region of West Connect South +in.geometry_attic_type Finished Attic or Cathedral Ceilings Living space extends up to the roof structure +in.geometry_attic_type None No attic +in.geometry_attic_type Unvented Attic Attic space is unvented +in.geometry_attic_type Vented Attic Attic space is unfinished +in.geometry_building_horizontal_location_mf Left "Unit is located on the left side of a multifamily building, and has a shared right wall" +in.geometry_building_horizontal_location_mf Middle "Unit is located in the middle of a multifamily building, and has shared walls on the left and right" +in.geometry_building_horizontal_location_mf None Unit is not part of a multifamily building +in.geometry_building_horizontal_location_mf Not Applicable Unit does not have shared walls on the right or left +in.geometry_building_horizontal_location_mf Right "Unit is located on the right side of a multifamily building, and has a shared left wall" +in.geometry_building_horizontal_location_sfa Left "Unit is located on the left side of a single-family attached building, and has a shared right wall" +in.geometry_building_horizontal_location_sfa Middle "Unit is located in the middle of a single-family attached building, and has shared walls on the left and right" +in.geometry_building_horizontal_location_sfa None Unit is not part of a single-family attached building +in.geometry_building_horizontal_location_sfa Right "Unit is located on the right side of a single-family attached building, and has a shared left wall" +in.geometry_building_level_mf Bottom "Unit is on the bottom level of a multifamily building, and may have a shared ceiling" +in.geometry_building_level_mf Middle Unit is in a middle level of a multifamily building and has a shared floor and ceiling +in.geometry_building_level_mf None Not a multifamily building unit +in.geometry_building_level_mf Top Unit is on the top level of a multifamily building and has a shared floor +in.geometry_building_number_units_mf 2 Unit is in a multi-family building with 2 units +in.geometry_building_number_units_mf 3 Unit is in a multi-family building with 3 units +in.geometry_building_number_units_mf 4 Unit is in a multi-family building with 4 units +in.geometry_building_number_units_mf 5 Unit is in a multi-family building with 5 units +in.geometry_building_number_units_mf 6 Unit is in a multi-family building with 6 units +in.geometry_building_number_units_mf 7 Unit is in a multi-family building with 7 units +in.geometry_building_number_units_mf 8 Unit is in a multi-family building with 8 units +in.geometry_building_number_units_mf 9 Unit is in a multi-family building with 9 units +in.geometry_building_number_units_mf 10 Unit is in a multi-family building with 10 units +in.geometry_building_number_units_mf 11 Unit is in a multi-family building with 11 units +in.geometry_building_number_units_mf 12 Unit is in a multi-family building with 12 units +in.geometry_building_number_units_mf 13 Unit is in a multi-family building with 13 units +in.geometry_building_number_units_mf 14 Unit is in a multi-family building with 14 units +in.geometry_building_number_units_mf 15 Unit is in a multi-family building with 15 units +in.geometry_building_number_units_mf 16 Unit is in a multi-family building with 16 units +in.geometry_building_number_units_mf 17 Unit is in a multi-family building with 17 units +in.geometry_building_number_units_mf 18 Unit is in a multi-family building with 18 units +in.geometry_building_number_units_mf 19 Unit is in a multi-family building with 19 units +in.geometry_building_number_units_mf 20 Unit is in a multi-family building with 20 units +in.geometry_building_number_units_mf 24 Unit is in a multi-family building with 24 units +in.geometry_building_number_units_mf 30 Unit is in a multi-family building with 30 units +in.geometry_building_number_units_mf 36 Unit is in a multi-family building with 36 units +in.geometry_building_number_units_mf 43 Unit is in a multi-family building with 43 units +in.geometry_building_number_units_mf 67 Unit is in a multi-family building with 67 units +in.geometry_building_number_units_mf 116 Unit is in a multi-family building with 116 units +in.geometry_building_number_units_mf 183 Unit is in a multi-family building with 183 units +in.geometry_building_number_units_mf 326 Unit is in a multi-family building with 326 units +in.geometry_building_number_units_mf None Unit is not part of a multifamily building +in.geometry_building_number_units_sfa 5 Unit is in a attached single-family building with 5 units +in.geometry_building_number_units_sfa 6 Unit is in a attached single-family building with 6 units +in.geometry_building_number_units_sfa 7 Unit is in a attached single-family building with 7 units +in.geometry_building_number_units_sfa 8 Unit is in a attached single-family building with 8 units +in.geometry_building_number_units_sfa 10 Unit is in a attached single-family building with 10 units +in.geometry_building_number_units_sfa 12 Unit is in a attached single-family building with 12 units +in.geometry_building_number_units_sfa 15 Unit is in a attached single-family building with 15 units +in.geometry_building_number_units_sfa 16 Unit is in a attached single-family building with 16 units +in.geometry_building_number_units_sfa 20 Unit is in a attached single-family building with 20 units +in.geometry_building_number_units_sfa 24 Unit is in a attached single-family building with 24 units +in.geometry_building_number_units_sfa 30 Unit is in a attached single-family building with 30 units +in.geometry_building_number_units_sfa 36 Unit is in a attached single-family building with 36 units +in.geometry_building_number_units_sfa 50 Unit is in a attached single-family building with 50 units +in.geometry_building_number_units_sfa 60 Unit is in a attached single-family building with 60 units +in.geometry_building_number_units_sfa 90 Unit is in a attached single-family building with 90 units +in.geometry_building_number_units_sfa 144 Unit is in a attached single-family building with 144 units +in.geometry_building_number_units_sfa None Unit is not part of a single-family attached building +in.geometry_building_type_acs 10 to 19 Unit "Multifamily building with 10 to 19 units, as defined by the American Community Survey" +in.geometry_building_type_acs 2 Unit "Multifamily building with 2 units, as defined by the American Community Survey" +in.geometry_building_type_acs 20 to 49 Unit "Multifamily building with 20 to 49 units, as defined by the American Community Survey" +in.geometry_building_type_acs 3 or 4 Unit "Multifamily building with 3 to 4 units, as defined by the American Community Survey" +in.geometry_building_type_acs 5 to 9 Unit "Multifamily building with 5 to 9 units, as defined by the American Community Survey" +in.geometry_building_type_acs 50 or more Unit "Multifamily building with 50 or more units, as defined by the American Community Survey" +in.geometry_building_type_acs Mobile Home Mobile home building type as defined by the American Community Survey +in.geometry_building_type_acs Single-Family Attached Single-family attached building type as defined by the American Community Survey +in.geometry_building_type_acs Single-Family Detached Single-family detached building type as defined by the American Community Survey +in.geometry_building_type_height Mobile Home Mobile home building type +in.geometry_building_type_height Multi-Family with 2 - 4 Units Multi-family building with 2-4 Units +in.geometry_building_type_height "Multi-Family with 5+ Units, 1-3 Stories" Multifamily building with 5 or more units and 1 to 3 stories (low-rise) +in.geometry_building_type_height "Multi-Family with 5+ Units, 4-7 Stories" Multifamily building with 5 or more units and 4 to 7 stories (mid-rise) +in.geometry_building_type_height "Multi-Family with 5+ Units, 8+ Stories" Multifamily building with 5 or more units and more than 8 stories (high-rise) +in.geometry_building_type_height Single-Family Attached Single-family attached building type +in.geometry_building_type_height Single-Family Detached Single-family detached building type +in.geometry_building_type_recs Mobile Home Mobile home building type as defined by RECS 2009 +in.geometry_building_type_recs Multi-Family with 2 - 4 Units Multifamily building type with 2 to 4 units as defined by RECS 2009 +in.geometry_building_type_recs Multi-Family with 5+ Units Multifamily building type with more than 5 units as defined by RECS 2009 +in.geometry_building_type_recs Single-Family Attached Single-family attached building type as defined by RECS 2009 +in.geometry_building_type_recs Single-Family Detached Single-family detached building type as defined by RECS 2009 +in.geometry_floor_area 0-499 Finished floor area bin from 0 to 499 ft2 +in.geometry_floor_area 1000-1499 Finished floor area bin from 1000 to 1499 ft2 +in.geometry_floor_area 1500-1999 Finished floor area bin from 1500 to 1999 ft2 +in.geometry_floor_area 2000-2499 Finished floor area bin from 2000 to 2499 ft2 +in.geometry_floor_area 2500-2999 Finished floor area bin from 2500 to 2999 ft2 +in.geometry_floor_area 3000-3999 Finished floor area bin from 3000 to 3999 ft2 +in.geometry_floor_area 4000+ Finished floor area bin 4000 ft2 and greater +in.geometry_floor_area 500-749 Finished floor area bin from 500 to 749 ft2 +in.geometry_floor_area 750-999 Finished floor area bin from 750 to 999 ft2 +in.geometry_floor_area_bin 0-1499 Finished floor area bin from 0 to 1499 ft2 +in.geometry_floor_area_bin 1500-2499 Finished floor area bin from 1500 to 2499 ft2 +in.geometry_floor_area_bin 2500-3999 Finished floor area bin from 2500 to 3999 ft2 +in.geometry_floor_area_bin 4000+ Finished floor area bin 4000 ft2 and greater +in.geometry_foundation_type Ambient Pier and beam foundation +in.geometry_foundation_type Heated Basement Heated basement foundation +in.geometry_foundation_type Slab Slab foundation +in.geometry_foundation_type Unheated Basement Unheated basement foundation +in.geometry_foundation_type Unvented Crawlspace Unvented crawlspace foundation +in.geometry_foundation_type Vented Crawlspace Vented crawlspace foundation +in.geometry_garage 1 Car Building has a 1 car garage +in.geometry_garage 2 Car Building has a 2 car garage +in.geometry_garage 3 Car Building has a 3 car garage +in.geometry_garage None Building does not have a garage +in.geometry_space_combination "Mobile Home, Ambient, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Heated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Slab, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Slab, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Slab, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Ambient, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Ambient, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Ambient, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +in.geometry_stories 1 1 story building +in.geometry_stories 2 2 story building +in.geometry_stories 3 3 story building +in.geometry_stories 4 4 story building +in.geometry_stories 5 5 story building +in.geometry_stories 6 6 story building +in.geometry_stories 7 7 story building +in.geometry_stories 8 8 story building +in.geometry_stories 9 9 story building +in.geometry_stories 10 10 story building +in.geometry_stories 11 11 story building +in.geometry_stories 12 12 story building +in.geometry_stories 13 13 story building +in.geometry_stories 14 14 story building +in.geometry_stories 15 15 story building +in.geometry_stories 20 20 story building +in.geometry_stories 21 21 story building +in.geometry_stories 35 35 story building +in.geometry_stories_low_rise 1 1 story low rise building +in.geometry_stories_low_rise 2 2 story low rise building +in.geometry_stories_low_rise 3 3 story low rise building +in.geometry_stories_low_rise 4+ 4+ story low rise building +in.geometry_story_bin 8+ 8 or more story building +in.geometry_story_bin <8 Less than 8 story building +in.geometry_wall_exterior_finish "Aluminum, Light" "Aluminum, Light exterior finish" +in.geometry_wall_exterior_finish "Brick, Light" "Brick, Light exterior finish" +in.geometry_wall_exterior_finish "Brick, Medium/Dark" "Brick, Medium/Dark exterior finish" +in.geometry_wall_exterior_finish "Fiber-Cement, Light" "Fiber-Cement, Light exterior finish" +in.geometry_wall_exterior_finish None None exterior finish +in.geometry_wall_exterior_finish "Shingle, Asbestos, Medium" "Shingle, Asbestos, Medium exterior finish" +in.geometry_wall_exterior_finish "Shingle, Composition, Medium" "Shingle, Composition, Medium exterior finish" +in.geometry_wall_exterior_finish "Stucco, Light" "Stucco, Light exterior finish" +in.geometry_wall_exterior_finish "Stucco, Medium/Dark" "Stucco, Medium/Dark exterior finish" +in.geometry_wall_exterior_finish "Vinyl, Light" "Vinyl, Light exterior finish" +in.geometry_wall_exterior_finish "Wood, Medium/Dark" "Wood, Medium/Dark exterior finish" +in.geometry_wall_type Brick Exterior wall type is brick +in.geometry_wall_type Concrete Exterior wall type is concrete +in.geometry_wall_type Steel Frame Exterior wall type is steel frame +in.geometry_wall_type Wood Frame Exterior wall type is wood frame +in.ground_thermal_conductivity 0.5 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 0.5 Btu/hr-ft-F +in.ground_thermal_conductivity 0.8 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 0.8 Btu/hr-ft-F +in.ground_thermal_conductivity 1.1 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.1 Btu/hr-ft-F +in.ground_thermal_conductivity 1.4 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.4 Btu/hr-ft-F +in.ground_thermal_conductivity 1.7 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.7 Btu/hr-ft-F +in.ground_thermal_conductivity 2 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2 Btu/hr-ft-F +in.ground_thermal_conductivity 2.3 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2.3 Btu/hr-ft-F +in.ground_thermal_conductivity 2.6 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2.6 Btu/hr-ft-F +in.has_pv No Does not have rooftop PV +in.has_pv Yes Has rooftop PV +in.heating_fuel Electricity Electricity heating fuel +in.heating_fuel Fuel Oil Fuel oil heating fuel +in.heating_fuel Natural Gas Natural gas heating fuel +in.heating_fuel None None heating fuel +in.heating_fuel Other Fuel Other fuel heating fuel +in.heating_fuel Propane Propane heating fuel +in.heating_fuel Wood Wood heating fuel +in.heating_setpoint 55F Base heating setpoint is 55F before offset is applied +in.heating_setpoint 60F Base heating setpoint is 60F before offset is applied +in.heating_setpoint 62F Base heating setpoint is 62F before offset is applied +in.heating_setpoint 65F Base heating setpoint is 65F before offset is applied +in.heating_setpoint 67F Base heating setpoint is 67F before offset is applied +in.heating_setpoint 68F Base heating setpoint is 68F before offset is applied +in.heating_setpoint 70F Base heating setpoint is 70F before offset is applied +in.heating_setpoint 72F Base heating setpoint is 72F before offset is applied +in.heating_setpoint 75F Base heating setpoint is 75F before offset is applied +in.heating_setpoint 76F Base heating setpoint is 76F before offset is applied +in.heating_setpoint 78F Base heating setpoint is 78F before offset is applied +in.heating_setpoint 80F Base heating setpoint is 80F before offset is applied +in.heating_setpoint_has_offset No Heating setpoint doesn't have offset +in.heating_setpoint_has_offset Yes Heating setpoint has offset +in.heating_setpoint_offset_magnitude 0F The magnitude of heating setpoint offset is 0F +in.heating_setpoint_offset_magnitude 12F The magnitude of heating setpoint offset is 12F +in.heating_setpoint_offset_magnitude 3F The magnitude of heating setpoint offset is 3F +in.heating_setpoint_offset_magnitude 6F The magnitude of heating setpoint offset is 6F +in.heating_setpoint_offset_period Day Heating setpoint schedule is decreased during the day (9am to 5pm) +in.heating_setpoint_offset_period Day +1h "Heating setpoint schedule is decreased during the day, shifted +1 hour from the Day schedule" +in.heating_setpoint_offset_period Day +2h "Heating setpoint schedule is decreased during the day, shifted +2 hour from the Day schedule" +in.heating_setpoint_offset_period Day +3h "Heating setpoint schedule is decreased during the day, shifted +3 hour from the Day schedule" +in.heating_setpoint_offset_period Day +4h "Heating setpoint schedule is decreased during the day, shifted +4 hour from the Day schedule" +in.heating_setpoint_offset_period Day +5h "Heating setpoint schedule is decreased during the day, shifted +5 hour from the Day schedule" +in.heating_setpoint_offset_period Day -1h "Heating setpoint schedule is decreased during the day, shifted -1 hour from the Day schedule" +in.heating_setpoint_offset_period Day -2h "Heating setpoint schedule is decreased during the day, shifted -2 hour from the Day schedule" +in.heating_setpoint_offset_period Day -3h "Heating setpoint schedule is decreased during the day, shifted -3 hour from the Day schedule" +in.heating_setpoint_offset_period Day -4h "Heating setpoint schedule is decreased during the day, shifted -4 hour from the Day schedule" +in.heating_setpoint_offset_period Day -5h "Heating setpoint schedule is decreased during the day, shifted -5 hour from the Day schedule" +in.heating_setpoint_offset_period Day and Night Heating setpoint schedule is decreased during the day (9am to 5pm) and at night (10pm to 7am) +in.heating_setpoint_offset_period Day and Night +1h "Heating setpoint schedule is decreased during the day and at night, shifted +1 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night +2h "Heating setpoint schedule is decreased during the day and at night, shifted +2 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night +3h "Heating setpoint schedule is decreased during the day and at night, shifted +3 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night +4h "Heating setpoint schedule is decreased during the day and at night, shifted +4 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night +5h "Heating setpoint schedule is decreased during the day and at night, shifted +5 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night -1h "Heating setpoint schedule is decreased during the day and at night, shifted -1 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night -2h "Heating setpoint schedule is decreased during the day and at night, shifted -2 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night -3h "Heating setpoint schedule is decreased during the day and at night, shifted -3 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night -4h "Heating setpoint schedule is decreased during the day and at night, shifted -4 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Day and Night -5h "Heating setpoint schedule is decreased during the day and at night, shifted -5 hour from the Day and Night schedule" +in.heating_setpoint_offset_period Night Heating setpoint schedule is decreased at night (10pm to 7am) +in.heating_setpoint_offset_period Night +1h "Heating setpoint schedule is decreased at night, shifted +1 hour from the Night schedule" +in.heating_setpoint_offset_period Night +2h "Heating setpoint schedule is decreased at night, shifted +2 hour from the Night schedule" +in.heating_setpoint_offset_period Night +3h "Heating setpoint schedule is decreased at night, shifted +3 hour from the Night schedule" +in.heating_setpoint_offset_period Night +4h "Heating setpoint schedule is decreased at night, shifted +4 hour from the Night schedule" +in.heating_setpoint_offset_period Night +5h "Heating setpoint schedule is decreased at night, shifted +5 hour from the Night schedule" +in.heating_setpoint_offset_period Night -1h "Heating setpoint schedule is decreased at night, shifted -1 hour from the Night schedule" +in.heating_setpoint_offset_period Night -2h "Heating setpoint schedule is decreased at night, shifted -2 hour from the Night schedule" +in.heating_setpoint_offset_period Night -3h "Heating setpoint schedule is decreased at night, shifted -3 hour from the Night schedule" +in.heating_setpoint_offset_period Night -4h "Heating setpoint schedule is decreased at night, shifted -4 hour from the Night schedule" +in.heating_setpoint_offset_period Night -5h "Heating setpoint schedule is decreased at night, shifted -5 hour from the Night schedule" +in.heating_setpoint_offset_period None No heating setpoint offset schedule applied +in.heating_unavailable_days 1 day 1 day in a year heating is unavailable +in.heating_unavailable_days 1 month 1 month in a year heating is unavailable +in.heating_unavailable_days 1 week 1 week in a year heating is unavailable +in.heating_unavailable_days 2 weeks 2 weeks in a year heating is unavailable +in.heating_unavailable_days 3 days 3 days in a year heating is unavailable +in.heating_unavailable_days 3 months 3 months in a year heating is unavailable +in.heating_unavailable_days Never Heating is available for the whole year +in.heating_unavailable_days Year round Heating is unavailable for the whole year +in.heating_unavailable_period Apr 1 - Apr 1 Heating is unavailable during Apr 1 - Apr 1 +in.heating_unavailable_period Apr 1 - Apr 14 Heating is unavailable during Apr 1 - Apr 14 +in.heating_unavailable_period Apr 1 - Apr 3 Heating is unavailable during Apr 1 - Apr 3 +in.heating_unavailable_period Apr 1 - Apr 30 Heating is unavailable during Apr 1 - Apr 30 +in.heating_unavailable_period Apr 1 - Apr 7 Heating is unavailable during Apr 1 - Apr 7 +in.heating_unavailable_period Apr 1 - Jun 29 Heating is unavailable during Apr 1 - Jun 29 +in.heating_unavailable_period Apr 10 - Apr 10 Heating is unavailable during Apr 10 - Apr 10 +in.heating_unavailable_period Apr 10 - Apr 12 Heating is unavailable during Apr 10 - Apr 12 +in.heating_unavailable_period Apr 10 - Apr 16 Heating is unavailable during Apr 10 - Apr 16 +in.heating_unavailable_period Apr 10 - Apr 23 Heating is unavailable during Apr 10 - Apr 23 +in.heating_unavailable_period Apr 10 - Jul 8 Heating is unavailable during Apr 10 - Jul 8 +in.heating_unavailable_period Apr 10 - May 9 Heating is unavailable during Apr 10 - May 9 +in.heating_unavailable_period Apr 11 - Apr 11 Heating is unavailable during Apr 11 - Apr 11 +in.heating_unavailable_period Apr 11 - Apr 13 Heating is unavailable during Apr 11 - Apr 13 +in.heating_unavailable_period Apr 11 - Apr 17 Heating is unavailable during Apr 11 - Apr 17 +in.heating_unavailable_period Apr 11 - Apr 24 Heating is unavailable during Apr 11 - Apr 24 +in.heating_unavailable_period Apr 11 - Jul 9 Heating is unavailable during Apr 11 - Jul 9 +in.heating_unavailable_period Apr 11 - May 10 Heating is unavailable during Apr 11 - May 10 +in.heating_unavailable_period Apr 12 - Apr 12 Heating is unavailable during Apr 12 - Apr 12 +in.heating_unavailable_period Apr 12 - Apr 14 Heating is unavailable during Apr 12 - Apr 14 +in.heating_unavailable_period Apr 12 - Apr 18 Heating is unavailable during Apr 12 - Apr 18 +in.heating_unavailable_period Apr 12 - Apr 25 Heating is unavailable during Apr 12 - Apr 25 +in.heating_unavailable_period Apr 12 - Jul 10 Heating is unavailable during Apr 12 - Jul 10 +in.heating_unavailable_period Apr 12 - May 11 Heating is unavailable during Apr 12 - May 11 +in.heating_unavailable_period Apr 13 - Apr 13 Heating is unavailable during Apr 13 - Apr 13 +in.heating_unavailable_period Apr 13 - Apr 15 Heating is unavailable during Apr 13 - Apr 15 +in.heating_unavailable_period Apr 13 - Apr 19 Heating is unavailable during Apr 13 - Apr 19 +in.heating_unavailable_period Apr 13 - Apr 26 Heating is unavailable during Apr 13 - Apr 26 +in.heating_unavailable_period Apr 13 - Jul 11 Heating is unavailable during Apr 13 - Jul 11 +in.heating_unavailable_period Apr 13 - May 12 Heating is unavailable during Apr 13 - May 12 +in.heating_unavailable_period Apr 14 - Apr 14 Heating is unavailable during Apr 14 - Apr 14 +in.heating_unavailable_period Apr 14 - Apr 16 Heating is unavailable during Apr 14 - Apr 16 +in.heating_unavailable_period Apr 14 - Apr 20 Heating is unavailable during Apr 14 - Apr 20 +in.heating_unavailable_period Apr 14 - Apr 27 Heating is unavailable during Apr 14 - Apr 27 +in.heating_unavailable_period Apr 14 - Jul 12 Heating is unavailable during Apr 14 - Jul 12 +in.heating_unavailable_period Apr 14 - May 13 Heating is unavailable during Apr 14 - May 13 +in.heating_unavailable_period Apr 15 - Apr 15 Heating is unavailable during Apr 15 - Apr 15 +in.heating_unavailable_period Apr 15 - Apr 17 Heating is unavailable during Apr 15 - Apr 17 +in.heating_unavailable_period Apr 15 - Apr 21 Heating is unavailable during Apr 15 - Apr 21 +in.heating_unavailable_period Apr 15 - Apr 28 Heating is unavailable during Apr 15 - Apr 28 +in.heating_unavailable_period Apr 15 - Jul 13 Heating is unavailable during Apr 15 - Jul 13 +in.heating_unavailable_period Apr 15 - May 14 Heating is unavailable during Apr 15 - May 14 +in.heating_unavailable_period Apr 16 - Apr 16 Heating is unavailable during Apr 16 - Apr 16 +in.heating_unavailable_period Apr 16 - Apr 18 Heating is unavailable during Apr 16 - Apr 18 +in.heating_unavailable_period Apr 16 - Apr 22 Heating is unavailable during Apr 16 - Apr 22 +in.heating_unavailable_period Apr 16 - Apr 29 Heating is unavailable during Apr 16 - Apr 29 +in.heating_unavailable_period Apr 16 - Jul 14 Heating is unavailable during Apr 16 - Jul 14 +in.heating_unavailable_period Apr 16 - May 15 Heating is unavailable during Apr 16 - May 15 +in.heating_unavailable_period Apr 17 - Apr 17 Heating is unavailable during Apr 17 - Apr 17 +in.heating_unavailable_period Apr 17 - Apr 19 Heating is unavailable during Apr 17 - Apr 19 +in.heating_unavailable_period Apr 17 - Apr 23 Heating is unavailable during Apr 17 - Apr 23 +in.heating_unavailable_period Apr 17 - Apr 30 Heating is unavailable during Apr 17 - Apr 30 +in.heating_unavailable_period Apr 17 - Jul 15 Heating is unavailable during Apr 17 - Jul 15 +in.heating_unavailable_period Apr 17 - May 16 Heating is unavailable during Apr 17 - May 16 +in.heating_unavailable_period Apr 18 - Apr 18 Heating is unavailable during Apr 18 - Apr 18 +in.heating_unavailable_period Apr 18 - Apr 20 Heating is unavailable during Apr 18 - Apr 20 +in.heating_unavailable_period Apr 18 - Apr 24 Heating is unavailable during Apr 18 - Apr 24 +in.heating_unavailable_period Apr 18 - Jul 16 Heating is unavailable during Apr 18 - Jul 16 +in.heating_unavailable_period Apr 18 - May 1 Heating is unavailable during Apr 18 - May 1 +in.heating_unavailable_period Apr 18 - May 17 Heating is unavailable during Apr 18 - May 17 +in.heating_unavailable_period Apr 19 - Apr 19 Heating is unavailable during Apr 19 - Apr 19 +in.heating_unavailable_period Apr 19 - Apr 21 Heating is unavailable during Apr 19 - Apr 21 +in.heating_unavailable_period Apr 19 - Apr 25 Heating is unavailable during Apr 19 - Apr 25 +in.heating_unavailable_period Apr 19 - Jul 17 Heating is unavailable during Apr 19 - Jul 17 +in.heating_unavailable_period Apr 19 - May 18 Heating is unavailable during Apr 19 - May 18 +in.heating_unavailable_period Apr 19 - May 2 Heating is unavailable during Apr 19 - May 2 +in.heating_unavailable_period Apr 2 - Apr 15 Heating is unavailable during Apr 2 - Apr 15 +in.heating_unavailable_period Apr 2 - Apr 2 Heating is unavailable during Apr 2 - Apr 2 +in.heating_unavailable_period Apr 2 - Apr 4 Heating is unavailable during Apr 2 - Apr 4 +in.heating_unavailable_period Apr 2 - Apr 8 Heating is unavailable during Apr 2 - Apr 8 +in.heating_unavailable_period Apr 2 - Jun 30 Heating is unavailable during Apr 2 - Jun 30 +in.heating_unavailable_period Apr 2 - May 1 Heating is unavailable during Apr 2 - May 1 +in.heating_unavailable_period Apr 20 - Apr 20 Heating is unavailable during Apr 20 - Apr 20 +in.heating_unavailable_period Apr 20 - Apr 22 Heating is unavailable during Apr 20 - Apr 22 +in.heating_unavailable_period Apr 20 - Apr 26 Heating is unavailable during Apr 20 - Apr 26 +in.heating_unavailable_period Apr 20 - Jul 18 Heating is unavailable during Apr 20 - Jul 18 +in.heating_unavailable_period Apr 20 - May 19 Heating is unavailable during Apr 20 - May 19 +in.heating_unavailable_period Apr 20 - May 3 Heating is unavailable during Apr 20 - May 3 +in.heating_unavailable_period Apr 21 - Apr 21 Heating is unavailable during Apr 21 - Apr 21 +in.heating_unavailable_period Apr 21 - Apr 23 Heating is unavailable during Apr 21 - Apr 23 +in.heating_unavailable_period Apr 21 - Apr 27 Heating is unavailable during Apr 21 - Apr 27 +in.heating_unavailable_period Apr 21 - Jul 19 Heating is unavailable during Apr 21 - Jul 19 +in.heating_unavailable_period Apr 21 - May 20 Heating is unavailable during Apr 21 - May 20 +in.heating_unavailable_period Apr 21 - May 4 Heating is unavailable during Apr 21 - May 4 +in.heating_unavailable_period Apr 22 - Apr 22 Heating is unavailable during Apr 22 - Apr 22 +in.heating_unavailable_period Apr 22 - Apr 24 Heating is unavailable during Apr 22 - Apr 24 +in.heating_unavailable_period Apr 22 - Apr 28 Heating is unavailable during Apr 22 - Apr 28 +in.heating_unavailable_period Apr 22 - Jul 20 Heating is unavailable during Apr 22 - Jul 20 +in.heating_unavailable_period Apr 22 - May 21 Heating is unavailable during Apr 22 - May 21 +in.heating_unavailable_period Apr 22 - May 5 Heating is unavailable during Apr 22 - May 5 +in.heating_unavailable_period Apr 23 - Apr 23 Heating is unavailable during Apr 23 - Apr 23 +in.heating_unavailable_period Apr 23 - Apr 25 Heating is unavailable during Apr 23 - Apr 25 +in.heating_unavailable_period Apr 23 - Apr 29 Heating is unavailable during Apr 23 - Apr 29 +in.heating_unavailable_period Apr 23 - Jul 21 Heating is unavailable during Apr 23 - Jul 21 +in.heating_unavailable_period Apr 23 - May 22 Heating is unavailable during Apr 23 - May 22 +in.heating_unavailable_period Apr 23 - May 6 Heating is unavailable during Apr 23 - May 6 +in.heating_unavailable_period Apr 24 - Apr 24 Heating is unavailable during Apr 24 - Apr 24 +in.heating_unavailable_period Apr 24 - Apr 26 Heating is unavailable during Apr 24 - Apr 26 +in.heating_unavailable_period Apr 24 - Apr 30 Heating is unavailable during Apr 24 - Apr 30 +in.heating_unavailable_period Apr 24 - Jul 22 Heating is unavailable during Apr 24 - Jul 22 +in.heating_unavailable_period Apr 24 - May 23 Heating is unavailable during Apr 24 - May 23 +in.heating_unavailable_period Apr 24 - May 7 Heating is unavailable during Apr 24 - May 7 +in.heating_unavailable_period Apr 25 - Apr 25 Heating is unavailable during Apr 25 - Apr 25 +in.heating_unavailable_period Apr 25 - Apr 27 Heating is unavailable during Apr 25 - Apr 27 +in.heating_unavailable_period Apr 25 - Jul 23 Heating is unavailable during Apr 25 - Jul 23 +in.heating_unavailable_period Apr 25 - May 1 Heating is unavailable during Apr 25 - May 1 +in.heating_unavailable_period Apr 25 - May 24 Heating is unavailable during Apr 25 - May 24 +in.heating_unavailable_period Apr 25 - May 8 Heating is unavailable during Apr 25 - May 8 +in.heating_unavailable_period Apr 26 - Apr 26 Heating is unavailable during Apr 26 - Apr 26 +in.heating_unavailable_period Apr 26 - Apr 28 Heating is unavailable during Apr 26 - Apr 28 +in.heating_unavailable_period Apr 26 - Jul 24 Heating is unavailable during Apr 26 - Jul 24 +in.heating_unavailable_period Apr 26 - May 2 Heating is unavailable during Apr 26 - May 2 +in.heating_unavailable_period Apr 26 - May 25 Heating is unavailable during Apr 26 - May 25 +in.heating_unavailable_period Apr 26 - May 9 Heating is unavailable during Apr 26 - May 9 +in.heating_unavailable_period Apr 27 - Apr 27 Heating is unavailable during Apr 27 - Apr 27 +in.heating_unavailable_period Apr 27 - Apr 29 Heating is unavailable during Apr 27 - Apr 29 +in.heating_unavailable_period Apr 27 - Jul 25 Heating is unavailable during Apr 27 - Jul 25 +in.heating_unavailable_period Apr 27 - May 10 Heating is unavailable during Apr 27 - May 10 +in.heating_unavailable_period Apr 27 - May 26 Heating is unavailable during Apr 27 - May 26 +in.heating_unavailable_period Apr 27 - May 3 Heating is unavailable during Apr 27 - May 3 +in.heating_unavailable_period Apr 28 - Apr 28 Heating is unavailable during Apr 28 - Apr 28 +in.heating_unavailable_period Apr 28 - Apr 30 Heating is unavailable during Apr 28 - Apr 30 +in.heating_unavailable_period Apr 28 - Jul 26 Heating is unavailable during Apr 28 - Jul 26 +in.heating_unavailable_period Apr 28 - May 11 Heating is unavailable during Apr 28 - May 11 +in.heating_unavailable_period Apr 28 - May 27 Heating is unavailable during Apr 28 - May 27 +in.heating_unavailable_period Apr 28 - May 4 Heating is unavailable during Apr 28 - May 4 +in.heating_unavailable_period Apr 29 - Apr 29 Heating is unavailable during Apr 29 - Apr 29 +in.heating_unavailable_period Apr 29 - Jul 27 Heating is unavailable during Apr 29 - Jul 27 +in.heating_unavailable_period Apr 29 - May 1 Heating is unavailable during Apr 29 - May 1 +in.heating_unavailable_period Apr 29 - May 12 Heating is unavailable during Apr 29 - May 12 +in.heating_unavailable_period Apr 29 - May 28 Heating is unavailable during Apr 29 - May 28 +in.heating_unavailable_period Apr 29 - May 5 Heating is unavailable during Apr 29 - May 5 +in.heating_unavailable_period Apr 3 - Apr 16 Heating is unavailable during Apr 3 - Apr 16 +in.heating_unavailable_period Apr 3 - Apr 3 Heating is unavailable during Apr 3 - Apr 3 +in.heating_unavailable_period Apr 3 - Apr 5 Heating is unavailable during Apr 3 - Apr 5 +in.heating_unavailable_period Apr 3 - Apr 9 Heating is unavailable during Apr 3 - Apr 9 +in.heating_unavailable_period Apr 3 - Jul 1 Heating is unavailable during Apr 3 - Jul 1 +in.heating_unavailable_period Apr 3 - May 2 Heating is unavailable during Apr 3 - May 2 +in.heating_unavailable_period Apr 30 - Apr 30 Heating is unavailable during Apr 30 - Apr 30 +in.heating_unavailable_period Apr 30 - Jul 28 Heating is unavailable during Apr 30 - Jul 28 +in.heating_unavailable_period Apr 30 - May 13 Heating is unavailable during Apr 30 - May 13 +in.heating_unavailable_period Apr 30 - May 2 Heating is unavailable during Apr 30 - May 2 +in.heating_unavailable_period Apr 30 - May 29 Heating is unavailable during Apr 30 - May 29 +in.heating_unavailable_period Apr 30 - May 6 Heating is unavailable during Apr 30 - May 6 +in.heating_unavailable_period Apr 4 - Apr 10 Heating is unavailable during Apr 4 - Apr 10 +in.heating_unavailable_period Apr 4 - Apr 17 Heating is unavailable during Apr 4 - Apr 17 +in.heating_unavailable_period Apr 4 - Apr 4 Heating is unavailable during Apr 4 - Apr 4 +in.heating_unavailable_period Apr 4 - Apr 6 Heating is unavailable during Apr 4 - Apr 6 +in.heating_unavailable_period Apr 4 - Jul 2 Heating is unavailable during Apr 4 - Jul 2 +in.heating_unavailable_period Apr 4 - May 3 Heating is unavailable during Apr 4 - May 3 +in.heating_unavailable_period Apr 5 - Apr 11 Heating is unavailable during Apr 5 - Apr 11 +in.heating_unavailable_period Apr 5 - Apr 18 Heating is unavailable during Apr 5 - Apr 18 +in.heating_unavailable_period Apr 5 - Apr 5 Heating is unavailable during Apr 5 - Apr 5 +in.heating_unavailable_period Apr 5 - Apr 7 Heating is unavailable during Apr 5 - Apr 7 +in.heating_unavailable_period Apr 5 - Jul 3 Heating is unavailable during Apr 5 - Jul 3 +in.heating_unavailable_period Apr 5 - May 4 Heating is unavailable during Apr 5 - May 4 +in.heating_unavailable_period Apr 6 - Apr 12 Heating is unavailable during Apr 6 - Apr 12 +in.heating_unavailable_period Apr 6 - Apr 19 Heating is unavailable during Apr 6 - Apr 19 +in.heating_unavailable_period Apr 6 - Apr 6 Heating is unavailable during Apr 6 - Apr 6 +in.heating_unavailable_period Apr 6 - Apr 8 Heating is unavailable during Apr 6 - Apr 8 +in.heating_unavailable_period Apr 6 - Jul 4 Heating is unavailable during Apr 6 - Jul 4 +in.heating_unavailable_period Apr 6 - May 5 Heating is unavailable during Apr 6 - May 5 +in.heating_unavailable_period Apr 7 - Apr 13 Heating is unavailable during Apr 7 - Apr 13 +in.heating_unavailable_period Apr 7 - Apr 20 Heating is unavailable during Apr 7 - Apr 20 +in.heating_unavailable_period Apr 7 - Apr 7 Heating is unavailable during Apr 7 - Apr 7 +in.heating_unavailable_period Apr 7 - Apr 9 Heating is unavailable during Apr 7 - Apr 9 +in.heating_unavailable_period Apr 7 - Jul 5 Heating is unavailable during Apr 7 - Jul 5 +in.heating_unavailable_period Apr 7 - May 6 Heating is unavailable during Apr 7 - May 6 +in.heating_unavailable_period Apr 8 - Apr 10 Heating is unavailable during Apr 8 - Apr 10 +in.heating_unavailable_period Apr 8 - Apr 14 Heating is unavailable during Apr 8 - Apr 14 +in.heating_unavailable_period Apr 8 - Apr 21 Heating is unavailable during Apr 8 - Apr 21 +in.heating_unavailable_period Apr 8 - Apr 8 Heating is unavailable during Apr 8 - Apr 8 +in.heating_unavailable_period Apr 8 - Jul 6 Heating is unavailable during Apr 8 - Jul 6 +in.heating_unavailable_period Apr 8 - May 7 Heating is unavailable during Apr 8 - May 7 +in.heating_unavailable_period Apr 9 - Apr 11 Heating is unavailable during Apr 9 - Apr 11 +in.heating_unavailable_period Apr 9 - Apr 15 Heating is unavailable during Apr 9 - Apr 15 +in.heating_unavailable_period Apr 9 - Apr 22 Heating is unavailable during Apr 9 - Apr 22 +in.heating_unavailable_period Apr 9 - Apr 9 Heating is unavailable during Apr 9 - Apr 9 +in.heating_unavailable_period Apr 9 - Jul 7 Heating is unavailable during Apr 9 - Jul 7 +in.heating_unavailable_period Apr 9 - May 8 Heating is unavailable during Apr 9 - May 8 +in.heating_unavailable_period Aug 1 - Aug 1 Heating is unavailable during Aug 1 - Aug 1 +in.heating_unavailable_period Aug 11 - Aug 13 Heating is unavailable during Aug 11 - Aug 13 +in.heating_unavailable_period Aug 11 - Aug 24 Heating is unavailable during Aug 11 - Aug 24 +in.heating_unavailable_period Aug 12 - Aug 12 Heating is unavailable during Aug 12 - Aug 12 +in.heating_unavailable_period Aug 12 - Aug 18 Heating is unavailable during Aug 12 - Aug 18 +in.heating_unavailable_period Aug 13 - Aug 15 Heating is unavailable during Aug 13 - Aug 15 +in.heating_unavailable_period Aug 13 - Aug 26 Heating is unavailable during Aug 13 - Aug 26 +in.heating_unavailable_period Aug 14 - Aug 20 Heating is unavailable during Aug 14 - Aug 20 +in.heating_unavailable_period Aug 15 - Aug 15 Heating is unavailable during Aug 15 - Aug 15 +in.heating_unavailable_period Aug 15 - Aug 17 Heating is unavailable during Aug 15 - Aug 17 +in.heating_unavailable_period Aug 16 - Sep 14 Heating is unavailable during Aug 16 - Sep 14 +in.heating_unavailable_period Aug 17 - Aug 17 Heating is unavailable during Aug 17 - Aug 17 +in.heating_unavailable_period Aug 17 - Aug 23 Heating is unavailable during Aug 17 - Aug 23 +in.heating_unavailable_period Aug 19 - Aug 21 Heating is unavailable during Aug 19 - Aug 21 +in.heating_unavailable_period Aug 19 - Sep 17 Heating is unavailable during Aug 19 - Sep 17 +in.heating_unavailable_period Aug 20 - Nov 17 Heating is unavailable during Aug 20 - Nov 17 +in.heating_unavailable_period Aug 24 - Aug 30 Heating is unavailable during Aug 24 - Aug 30 +in.heating_unavailable_period Aug 24 - Nov 21 Heating is unavailable during Aug 24 - Nov 21 +in.heating_unavailable_period Aug 24 - Sep 6 Heating is unavailable during Aug 24 - Sep 6 +in.heating_unavailable_period Aug 25 - Sep 23 Heating is unavailable during Aug 25 - Sep 23 +in.heating_unavailable_period Aug 26 - Aug 28 Heating is unavailable during Aug 26 - Aug 28 +in.heating_unavailable_period Aug 26 - Sep 24 Heating is unavailable during Aug 26 - Sep 24 +in.heating_unavailable_period Aug 26 - Sep 8 Heating is unavailable during Aug 26 - Sep 8 +in.heating_unavailable_period Aug 27 - Aug 27 Heating is unavailable during Aug 27 - Aug 27 +in.heating_unavailable_period Aug 27 - Sep 2 Heating is unavailable during Aug 27 - Sep 2 +in.heating_unavailable_period Aug 27 - Sep 25 Heating is unavailable during Aug 27 - Sep 25 +in.heating_unavailable_period Aug 27 - Sep 9 Heating is unavailable during Aug 27 - Sep 9 +in.heating_unavailable_period Aug 28 - Aug 28 Heating is unavailable during Aug 28 - Aug 28 +in.heating_unavailable_period Aug 29 - Sep 11 Heating is unavailable during Aug 29 - Sep 11 +in.heating_unavailable_period Aug 29 - Sep 4 Heating is unavailable during Aug 29 - Sep 4 +in.heating_unavailable_period Aug 3 - Aug 9 Heating is unavailable during Aug 3 - Aug 9 +in.heating_unavailable_period Aug 31 - Aug 31 Heating is unavailable during Aug 31 - Aug 31 +in.heating_unavailable_period Aug 31 - Sep 29 Heating is unavailable during Aug 31 - Sep 29 +in.heating_unavailable_period Aug 31 - Sep 6 Heating is unavailable during Aug 31 - Sep 6 +in.heating_unavailable_period Aug 4 - Sep 2 Heating is unavailable during Aug 4 - Sep 2 +in.heating_unavailable_period Aug 6 - Aug 12 Heating is unavailable during Aug 6 - Aug 12 +in.heating_unavailable_period Aug 6 - Aug 8 Heating is unavailable during Aug 6 - Aug 8 +in.heating_unavailable_period Aug 7 - Aug 13 Heating is unavailable during Aug 7 - Aug 13 +in.heating_unavailable_period Aug 8 - Aug 8 Heating is unavailable during Aug 8 - Aug 8 +in.heating_unavailable_period Aug 9 - Nov 6 Heating is unavailable during Aug 9 - Nov 6 +in.heating_unavailable_period Dec 1 - Dec 1 Heating is unavailable during Dec 1 - Dec 1 +in.heating_unavailable_period Dec 1 - Dec 14 Heating is unavailable during Dec 1 - Dec 14 +in.heating_unavailable_period Dec 1 - Dec 3 Heating is unavailable during Dec 1 - Dec 3 +in.heating_unavailable_period Dec 1 - Dec 30 Heating is unavailable during Dec 1 - Dec 30 +in.heating_unavailable_period Dec 1 - Dec 7 Heating is unavailable during Dec 1 - Dec 7 +in.heating_unavailable_period Dec 1 - Feb 28 Heating is unavailable during Dec 1 - Feb 28 +in.heating_unavailable_period Dec 10 - Dec 10 Heating is unavailable during Dec 10 - Dec 10 +in.heating_unavailable_period Dec 10 - Dec 12 Heating is unavailable during Dec 10 - Dec 12 +in.heating_unavailable_period Dec 10 - Dec 16 Heating is unavailable during Dec 10 - Dec 16 +in.heating_unavailable_period Dec 10 - Dec 23 Heating is unavailable during Dec 10 - Dec 23 +in.heating_unavailable_period Dec 10 - Jan 8 Heating is unavailable during Dec 10 - Jan 8 +in.heating_unavailable_period Dec 10 - Mar 9 Heating is unavailable during Dec 10 - Mar 9 +in.heating_unavailable_period Dec 11 - Dec 11 Heating is unavailable during Dec 11 - Dec 11 +in.heating_unavailable_period Dec 11 - Dec 13 Heating is unavailable during Dec 11 - Dec 13 +in.heating_unavailable_period Dec 11 - Dec 17 Heating is unavailable during Dec 11 - Dec 17 +in.heating_unavailable_period Dec 11 - Dec 24 Heating is unavailable during Dec 11 - Dec 24 +in.heating_unavailable_period Dec 11 - Jan 9 Heating is unavailable during Dec 11 - Jan 9 +in.heating_unavailable_period Dec 11 - Mar 10 Heating is unavailable during Dec 11 - Mar 10 +in.heating_unavailable_period Dec 12 - Dec 12 Heating is unavailable during Dec 12 - Dec 12 +in.heating_unavailable_period Dec 12 - Dec 14 Heating is unavailable during Dec 12 - Dec 14 +in.heating_unavailable_period Dec 12 - Dec 18 Heating is unavailable during Dec 12 - Dec 18 +in.heating_unavailable_period Dec 12 - Dec 25 Heating is unavailable during Dec 12 - Dec 25 +in.heating_unavailable_period Dec 12 - Jan 10 Heating is unavailable during Dec 12 - Jan 10 +in.heating_unavailable_period Dec 12 - Mar 11 Heating is unavailable during Dec 12 - Mar 11 +in.heating_unavailable_period Dec 13 - Dec 13 Heating is unavailable during Dec 13 - Dec 13 +in.heating_unavailable_period Dec 13 - Dec 15 Heating is unavailable during Dec 13 - Dec 15 +in.heating_unavailable_period Dec 13 - Dec 19 Heating is unavailable during Dec 13 - Dec 19 +in.heating_unavailable_period Dec 13 - Dec 26 Heating is unavailable during Dec 13 - Dec 26 +in.heating_unavailable_period Dec 13 - Jan 11 Heating is unavailable during Dec 13 - Jan 11 +in.heating_unavailable_period Dec 13 - Mar 12 Heating is unavailable during Dec 13 - Mar 12 +in.heating_unavailable_period Dec 14 - Dec 14 Heating is unavailable during Dec 14 - Dec 14 +in.heating_unavailable_period Dec 14 - Dec 16 Heating is unavailable during Dec 14 - Dec 16 +in.heating_unavailable_period Dec 14 - Dec 20 Heating is unavailable during Dec 14 - Dec 20 +in.heating_unavailable_period Dec 14 - Dec 27 Heating is unavailable during Dec 14 - Dec 27 +in.heating_unavailable_period Dec 14 - Jan 12 Heating is unavailable during Dec 14 - Jan 12 +in.heating_unavailable_period Dec 14 - Mar 13 Heating is unavailable during Dec 14 - Mar 13 +in.heating_unavailable_period Dec 15 - Dec 15 Heating is unavailable during Dec 15 - Dec 15 +in.heating_unavailable_period Dec 15 - Dec 17 Heating is unavailable during Dec 15 - Dec 17 +in.heating_unavailable_period Dec 15 - Dec 21 Heating is unavailable during Dec 15 - Dec 21 +in.heating_unavailable_period Dec 15 - Dec 28 Heating is unavailable during Dec 15 - Dec 28 +in.heating_unavailable_period Dec 15 - Jan 13 Heating is unavailable during Dec 15 - Jan 13 +in.heating_unavailable_period Dec 15 - Mar 14 Heating is unavailable during Dec 15 - Mar 14 +in.heating_unavailable_period Dec 16 - Dec 16 Heating is unavailable during Dec 16 - Dec 16 +in.heating_unavailable_period Dec 16 - Dec 18 Heating is unavailable during Dec 16 - Dec 18 +in.heating_unavailable_period Dec 16 - Dec 22 Heating is unavailable during Dec 16 - Dec 22 +in.heating_unavailable_period Dec 16 - Dec 29 Heating is unavailable during Dec 16 - Dec 29 +in.heating_unavailable_period Dec 16 - Jan 14 Heating is unavailable during Dec 16 - Jan 14 +in.heating_unavailable_period Dec 16 - Mar 15 Heating is unavailable during Dec 16 - Mar 15 +in.heating_unavailable_period Dec 17 - Dec 17 Heating is unavailable during Dec 17 - Dec 17 +in.heating_unavailable_period Dec 17 - Dec 19 Heating is unavailable during Dec 17 - Dec 19 +in.heating_unavailable_period Dec 17 - Dec 23 Heating is unavailable during Dec 17 - Dec 23 +in.heating_unavailable_period Dec 17 - Dec 30 Heating is unavailable during Dec 17 - Dec 30 +in.heating_unavailable_period Dec 17 - Jan 15 Heating is unavailable during Dec 17 - Jan 15 +in.heating_unavailable_period Dec 17 - Mar 16 Heating is unavailable during Dec 17 - Mar 16 +in.heating_unavailable_period Dec 18 - Dec 18 Heating is unavailable during Dec 18 - Dec 18 +in.heating_unavailable_period Dec 18 - Dec 20 Heating is unavailable during Dec 18 - Dec 20 +in.heating_unavailable_period Dec 18 - Dec 24 Heating is unavailable during Dec 18 - Dec 24 +in.heating_unavailable_period Dec 18 - Dec 31 Heating is unavailable during Dec 18 - Dec 31 +in.heating_unavailable_period Dec 18 - Jan 16 Heating is unavailable during Dec 18 - Jan 16 +in.heating_unavailable_period Dec 18 - Mar 17 Heating is unavailable during Dec 18 - Mar 17 +in.heating_unavailable_period Dec 19 - Dec 19 Heating is unavailable during Dec 19 - Dec 19 +in.heating_unavailable_period Dec 19 - Dec 21 Heating is unavailable during Dec 19 - Dec 21 +in.heating_unavailable_period Dec 19 - Dec 25 Heating is unavailable during Dec 19 - Dec 25 +in.heating_unavailable_period Dec 19 - Jan 1 Heating is unavailable during Dec 19 - Jan 1 +in.heating_unavailable_period Dec 19 - Jan 17 Heating is unavailable during Dec 19 - Jan 17 +in.heating_unavailable_period Dec 19 - Mar 18 Heating is unavailable during Dec 19 - Mar 18 +in.heating_unavailable_period Dec 2 - Dec 15 Heating is unavailable during Dec 2 - Dec 15 +in.heating_unavailable_period Dec 2 - Dec 2 Heating is unavailable during Dec 2 - Dec 2 +in.heating_unavailable_period Dec 2 - Dec 31 Heating is unavailable during Dec 2 - Dec 31 +in.heating_unavailable_period Dec 2 - Dec 4 Heating is unavailable during Dec 2 - Dec 4 +in.heating_unavailable_period Dec 2 - Dec 8 Heating is unavailable during Dec 2 - Dec 8 +in.heating_unavailable_period Dec 2 - Mar 1 Heating is unavailable during Dec 2 - Mar 1 +in.heating_unavailable_period Dec 20 - Dec 20 Heating is unavailable during Dec 20 - Dec 20 +in.heating_unavailable_period Dec 20 - Dec 22 Heating is unavailable during Dec 20 - Dec 22 +in.heating_unavailable_period Dec 20 - Dec 26 Heating is unavailable during Dec 20 - Dec 26 +in.heating_unavailable_period Dec 20 - Jan 18 Heating is unavailable during Dec 20 - Jan 18 +in.heating_unavailable_period Dec 20 - Jan 2 Heating is unavailable during Dec 20 - Jan 2 +in.heating_unavailable_period Dec 20 - Mar 19 Heating is unavailable during Dec 20 - Mar 19 +in.heating_unavailable_period Dec 21 - Dec 21 Heating is unavailable during Dec 21 - Dec 21 +in.heating_unavailable_period Dec 21 - Dec 23 Heating is unavailable during Dec 21 - Dec 23 +in.heating_unavailable_period Dec 21 - Dec 27 Heating is unavailable during Dec 21 - Dec 27 +in.heating_unavailable_period Dec 21 - Jan 19 Heating is unavailable during Dec 21 - Jan 19 +in.heating_unavailable_period Dec 21 - Jan 3 Heating is unavailable during Dec 21 - Jan 3 +in.heating_unavailable_period Dec 21 - Mar 20 Heating is unavailable during Dec 21 - Mar 20 +in.heating_unavailable_period Dec 22 - Dec 22 Heating is unavailable during Dec 22 - Dec 22 +in.heating_unavailable_period Dec 22 - Dec 24 Heating is unavailable during Dec 22 - Dec 24 +in.heating_unavailable_period Dec 22 - Dec 28 Heating is unavailable during Dec 22 - Dec 28 +in.heating_unavailable_period Dec 22 - Jan 20 Heating is unavailable during Dec 22 - Jan 20 +in.heating_unavailable_period Dec 22 - Jan 4 Heating is unavailable during Dec 22 - Jan 4 +in.heating_unavailable_period Dec 22 - Mar 21 Heating is unavailable during Dec 22 - Mar 21 +in.heating_unavailable_period Dec 23 - Dec 23 Heating is unavailable during Dec 23 - Dec 23 +in.heating_unavailable_period Dec 23 - Dec 25 Heating is unavailable during Dec 23 - Dec 25 +in.heating_unavailable_period Dec 23 - Dec 29 Heating is unavailable during Dec 23 - Dec 29 +in.heating_unavailable_period Dec 23 - Jan 21 Heating is unavailable during Dec 23 - Jan 21 +in.heating_unavailable_period Dec 23 - Jan 5 Heating is unavailable during Dec 23 - Jan 5 +in.heating_unavailable_period Dec 23 - Mar 22 Heating is unavailable during Dec 23 - Mar 22 +in.heating_unavailable_period Dec 24 - Dec 24 Heating is unavailable during Dec 24 - Dec 24 +in.heating_unavailable_period Dec 24 - Dec 26 Heating is unavailable during Dec 24 - Dec 26 +in.heating_unavailable_period Dec 24 - Dec 30 Heating is unavailable during Dec 24 - Dec 30 +in.heating_unavailable_period Dec 24 - Jan 22 Heating is unavailable during Dec 24 - Jan 22 +in.heating_unavailable_period Dec 24 - Jan 6 Heating is unavailable during Dec 24 - Jan 6 +in.heating_unavailable_period Dec 24 - Mar 23 Heating is unavailable during Dec 24 - Mar 23 +in.heating_unavailable_period Dec 25 - Dec 25 Heating is unavailable during Dec 25 - Dec 25 +in.heating_unavailable_period Dec 25 - Dec 27 Heating is unavailable during Dec 25 - Dec 27 +in.heating_unavailable_period Dec 25 - Dec 31 Heating is unavailable during Dec 25 - Dec 31 +in.heating_unavailable_period Dec 25 - Jan 23 Heating is unavailable during Dec 25 - Jan 23 +in.heating_unavailable_period Dec 25 - Jan 7 Heating is unavailable during Dec 25 - Jan 7 +in.heating_unavailable_period Dec 25 - Mar 24 Heating is unavailable during Dec 25 - Mar 24 +in.heating_unavailable_period Dec 26 - Dec 26 Heating is unavailable during Dec 26 - Dec 26 +in.heating_unavailable_period Dec 26 - Dec 28 Heating is unavailable during Dec 26 - Dec 28 +in.heating_unavailable_period Dec 26 - Jan 1 Heating is unavailable during Dec 26 - Jan 1 +in.heating_unavailable_period Dec 26 - Jan 24 Heating is unavailable during Dec 26 - Jan 24 +in.heating_unavailable_period Dec 26 - Jan 8 Heating is unavailable during Dec 26 - Jan 8 +in.heating_unavailable_period Dec 26 - Mar 25 Heating is unavailable during Dec 26 - Mar 25 +in.heating_unavailable_period Dec 27 - Dec 27 Heating is unavailable during Dec 27 - Dec 27 +in.heating_unavailable_period Dec 27 - Dec 29 Heating is unavailable during Dec 27 - Dec 29 +in.heating_unavailable_period Dec 27 - Jan 2 Heating is unavailable during Dec 27 - Jan 2 +in.heating_unavailable_period Dec 27 - Jan 25 Heating is unavailable during Dec 27 - Jan 25 +in.heating_unavailable_period Dec 27 - Jan 9 Heating is unavailable during Dec 27 - Jan 9 +in.heating_unavailable_period Dec 27 - Mar 26 Heating is unavailable during Dec 27 - Mar 26 +in.heating_unavailable_period Dec 28 - Dec 28 Heating is unavailable during Dec 28 - Dec 28 +in.heating_unavailable_period Dec 28 - Dec 30 Heating is unavailable during Dec 28 - Dec 30 +in.heating_unavailable_period Dec 28 - Jan 10 Heating is unavailable during Dec 28 - Jan 10 +in.heating_unavailable_period Dec 28 - Jan 26 Heating is unavailable during Dec 28 - Jan 26 +in.heating_unavailable_period Dec 28 - Jan 3 Heating is unavailable during Dec 28 - Jan 3 +in.heating_unavailable_period Dec 28 - Mar 27 Heating is unavailable during Dec 28 - Mar 27 +in.heating_unavailable_period Dec 29 - Dec 29 Heating is unavailable during Dec 29 - Dec 29 +in.heating_unavailable_period Dec 29 - Dec 31 Heating is unavailable during Dec 29 - Dec 31 +in.heating_unavailable_period Dec 29 - Jan 11 Heating is unavailable during Dec 29 - Jan 11 +in.heating_unavailable_period Dec 29 - Jan 27 Heating is unavailable during Dec 29 - Jan 27 +in.heating_unavailable_period Dec 29 - Jan 4 Heating is unavailable during Dec 29 - Jan 4 +in.heating_unavailable_period Dec 29 - Mar 28 Heating is unavailable during Dec 29 - Mar 28 +in.heating_unavailable_period Dec 3 - Dec 16 Heating is unavailable during Dec 3 - Dec 16 +in.heating_unavailable_period Dec 3 - Dec 3 Heating is unavailable during Dec 3 - Dec 3 +in.heating_unavailable_period Dec 3 - Dec 5 Heating is unavailable during Dec 3 - Dec 5 +in.heating_unavailable_period Dec 3 - Dec 9 Heating is unavailable during Dec 3 - Dec 9 +in.heating_unavailable_period Dec 3 - Jan 1 Heating is unavailable during Dec 3 - Jan 1 +in.heating_unavailable_period Dec 3 - Mar 2 Heating is unavailable during Dec 3 - Mar 2 +in.heating_unavailable_period Dec 30 - Dec 30 Heating is unavailable during Dec 30 - Dec 30 +in.heating_unavailable_period Dec 30 - Jan 1 Heating is unavailable during Dec 30 - Jan 1 +in.heating_unavailable_period Dec 30 - Jan 12 Heating is unavailable during Dec 30 - Jan 12 +in.heating_unavailable_period Dec 30 - Jan 28 Heating is unavailable during Dec 30 - Jan 28 +in.heating_unavailable_period Dec 30 - Jan 5 Heating is unavailable during Dec 30 - Jan 5 +in.heating_unavailable_period Dec 30 - Mar 29 Heating is unavailable during Dec 30 - Mar 29 +in.heating_unavailable_period Dec 31 - Dec 31 Heating is unavailable during Dec 31 - Dec 31 +in.heating_unavailable_period Dec 31 - Jan 13 Heating is unavailable during Dec 31 - Jan 13 +in.heating_unavailable_period Dec 31 - Jan 2 Heating is unavailable during Dec 31 - Jan 2 +in.heating_unavailable_period Dec 31 - Jan 29 Heating is unavailable during Dec 31 - Jan 29 +in.heating_unavailable_period Dec 31 - Jan 6 Heating is unavailable during Dec 31 - Jan 6 +in.heating_unavailable_period Dec 31 - Mar 30 Heating is unavailable during Dec 31 - Mar 30 +in.heating_unavailable_period Dec 4 - Dec 10 Heating is unavailable during Dec 4 - Dec 10 +in.heating_unavailable_period Dec 4 - Dec 17 Heating is unavailable during Dec 4 - Dec 17 +in.heating_unavailable_period Dec 4 - Dec 4 Heating is unavailable during Dec 4 - Dec 4 +in.heating_unavailable_period Dec 4 - Dec 6 Heating is unavailable during Dec 4 - Dec 6 +in.heating_unavailable_period Dec 4 - Jan 2 Heating is unavailable during Dec 4 - Jan 2 +in.heating_unavailable_period Dec 4 - Mar 3 Heating is unavailable during Dec 4 - Mar 3 +in.heating_unavailable_period Dec 5 - Dec 11 Heating is unavailable during Dec 5 - Dec 11 +in.heating_unavailable_period Dec 5 - Dec 18 Heating is unavailable during Dec 5 - Dec 18 +in.heating_unavailable_period Dec 5 - Dec 5 Heating is unavailable during Dec 5 - Dec 5 +in.heating_unavailable_period Dec 5 - Dec 7 Heating is unavailable during Dec 5 - Dec 7 +in.heating_unavailable_period Dec 5 - Jan 3 Heating is unavailable during Dec 5 - Jan 3 +in.heating_unavailable_period Dec 5 - Mar 4 Heating is unavailable during Dec 5 - Mar 4 +in.heating_unavailable_period Dec 6 - Dec 12 Heating is unavailable during Dec 6 - Dec 12 +in.heating_unavailable_period Dec 6 - Dec 19 Heating is unavailable during Dec 6 - Dec 19 +in.heating_unavailable_period Dec 6 - Dec 6 Heating is unavailable during Dec 6 - Dec 6 +in.heating_unavailable_period Dec 6 - Dec 8 Heating is unavailable during Dec 6 - Dec 8 +in.heating_unavailable_period Dec 6 - Jan 4 Heating is unavailable during Dec 6 - Jan 4 +in.heating_unavailable_period Dec 6 - Mar 5 Heating is unavailable during Dec 6 - Mar 5 +in.heating_unavailable_period Dec 7 - Dec 13 Heating is unavailable during Dec 7 - Dec 13 +in.heating_unavailable_period Dec 7 - Dec 20 Heating is unavailable during Dec 7 - Dec 20 +in.heating_unavailable_period Dec 7 - Dec 7 Heating is unavailable during Dec 7 - Dec 7 +in.heating_unavailable_period Dec 7 - Dec 9 Heating is unavailable during Dec 7 - Dec 9 +in.heating_unavailable_period Dec 7 - Jan 5 Heating is unavailable during Dec 7 - Jan 5 +in.heating_unavailable_period Dec 7 - Mar 6 Heating is unavailable during Dec 7 - Mar 6 +in.heating_unavailable_period Dec 8 - Dec 10 Heating is unavailable during Dec 8 - Dec 10 +in.heating_unavailable_period Dec 8 - Dec 14 Heating is unavailable during Dec 8 - Dec 14 +in.heating_unavailable_period Dec 8 - Dec 21 Heating is unavailable during Dec 8 - Dec 21 +in.heating_unavailable_period Dec 8 - Dec 8 Heating is unavailable during Dec 8 - Dec 8 +in.heating_unavailable_period Dec 8 - Jan 6 Heating is unavailable during Dec 8 - Jan 6 +in.heating_unavailable_period Dec 8 - Mar 7 Heating is unavailable during Dec 8 - Mar 7 +in.heating_unavailable_period Dec 9 - Dec 11 Heating is unavailable during Dec 9 - Dec 11 +in.heating_unavailable_period Dec 9 - Dec 15 Heating is unavailable during Dec 9 - Dec 15 +in.heating_unavailable_period Dec 9 - Dec 22 Heating is unavailable during Dec 9 - Dec 22 +in.heating_unavailable_period Dec 9 - Dec 9 Heating is unavailable during Dec 9 - Dec 9 +in.heating_unavailable_period Dec 9 - Jan 7 Heating is unavailable during Dec 9 - Jan 7 +in.heating_unavailable_period Dec 9 - Mar 8 Heating is unavailable during Dec 9 - Mar 8 +in.heating_unavailable_period Feb 1 - Feb 1 Heating is unavailable during Feb 1 - Feb 1 +in.heating_unavailable_period Feb 1 - Feb 14 Heating is unavailable during Feb 1 - Feb 14 +in.heating_unavailable_period Feb 1 - Feb 3 Heating is unavailable during Feb 1 - Feb 3 +in.heating_unavailable_period Feb 1 - Feb 7 Heating is unavailable during Feb 1 - Feb 7 +in.heating_unavailable_period Feb 1 - Mar 2 Heating is unavailable during Feb 1 - Mar 2 +in.heating_unavailable_period Feb 1 - May 1 Heating is unavailable during Feb 1 - May 1 +in.heating_unavailable_period Feb 10 - Feb 10 Heating is unavailable during Feb 10 - Feb 10 +in.heating_unavailable_period Feb 10 - Feb 12 Heating is unavailable during Feb 10 - Feb 12 +in.heating_unavailable_period Feb 10 - Feb 16 Heating is unavailable during Feb 10 - Feb 16 +in.heating_unavailable_period Feb 10 - Feb 23 Heating is unavailable during Feb 10 - Feb 23 +in.heating_unavailable_period Feb 10 - Mar 11 Heating is unavailable during Feb 10 - Mar 11 +in.heating_unavailable_period Feb 10 - May 10 Heating is unavailable during Feb 10 - May 10 +in.heating_unavailable_period Feb 11 - Feb 11 Heating is unavailable during Feb 11 - Feb 11 +in.heating_unavailable_period Feb 11 - Feb 13 Heating is unavailable during Feb 11 - Feb 13 +in.heating_unavailable_period Feb 11 - Feb 17 Heating is unavailable during Feb 11 - Feb 17 +in.heating_unavailable_period Feb 11 - Feb 24 Heating is unavailable during Feb 11 - Feb 24 +in.heating_unavailable_period Feb 11 - Mar 12 Heating is unavailable during Feb 11 - Mar 12 +in.heating_unavailable_period Feb 11 - May 11 Heating is unavailable during Feb 11 - May 11 +in.heating_unavailable_period Feb 12 - Feb 12 Heating is unavailable during Feb 12 - Feb 12 +in.heating_unavailable_period Feb 12 - Feb 14 Heating is unavailable during Feb 12 - Feb 14 +in.heating_unavailable_period Feb 12 - Feb 18 Heating is unavailable during Feb 12 - Feb 18 +in.heating_unavailable_period Feb 12 - Feb 25 Heating is unavailable during Feb 12 - Feb 25 +in.heating_unavailable_period Feb 12 - Mar 13 Heating is unavailable during Feb 12 - Mar 13 +in.heating_unavailable_period Feb 12 - May 12 Heating is unavailable during Feb 12 - May 12 +in.heating_unavailable_period Feb 13 - Feb 13 Heating is unavailable during Feb 13 - Feb 13 +in.heating_unavailable_period Feb 13 - Feb 15 Heating is unavailable during Feb 13 - Feb 15 +in.heating_unavailable_period Feb 13 - Feb 19 Heating is unavailable during Feb 13 - Feb 19 +in.heating_unavailable_period Feb 13 - Feb 26 Heating is unavailable during Feb 13 - Feb 26 +in.heating_unavailable_period Feb 13 - Mar 14 Heating is unavailable during Feb 13 - Mar 14 +in.heating_unavailable_period Feb 13 - May 13 Heating is unavailable during Feb 13 - May 13 +in.heating_unavailable_period Feb 14 - Feb 14 Heating is unavailable during Feb 14 - Feb 14 +in.heating_unavailable_period Feb 14 - Feb 16 Heating is unavailable during Feb 14 - Feb 16 +in.heating_unavailable_period Feb 14 - Feb 20 Heating is unavailable during Feb 14 - Feb 20 +in.heating_unavailable_period Feb 14 - Feb 27 Heating is unavailable during Feb 14 - Feb 27 +in.heating_unavailable_period Feb 14 - Mar 15 Heating is unavailable during Feb 14 - Mar 15 +in.heating_unavailable_period Feb 14 - May 14 Heating is unavailable during Feb 14 - May 14 +in.heating_unavailable_period Feb 15 - Feb 15 Heating is unavailable during Feb 15 - Feb 15 +in.heating_unavailable_period Feb 15 - Feb 17 Heating is unavailable during Feb 15 - Feb 17 +in.heating_unavailable_period Feb 15 - Feb 21 Heating is unavailable during Feb 15 - Feb 21 +in.heating_unavailable_period Feb 15 - Feb 28 Heating is unavailable during Feb 15 - Feb 28 +in.heating_unavailable_period Feb 15 - Mar 16 Heating is unavailable during Feb 15 - Mar 16 +in.heating_unavailable_period Feb 15 - May 15 Heating is unavailable during Feb 15 - May 15 +in.heating_unavailable_period Feb 16 - Feb 16 Heating is unavailable during Feb 16 - Feb 16 +in.heating_unavailable_period Feb 16 - Feb 18 Heating is unavailable during Feb 16 - Feb 18 +in.heating_unavailable_period Feb 16 - Feb 22 Heating is unavailable during Feb 16 - Feb 22 +in.heating_unavailable_period Feb 16 - Mar 1 Heating is unavailable during Feb 16 - Mar 1 +in.heating_unavailable_period Feb 16 - Mar 17 Heating is unavailable during Feb 16 - Mar 17 +in.heating_unavailable_period Feb 16 - May 16 Heating is unavailable during Feb 16 - May 16 +in.heating_unavailable_period Feb 17 - Feb 17 Heating is unavailable during Feb 17 - Feb 17 +in.heating_unavailable_period Feb 17 - Feb 19 Heating is unavailable during Feb 17 - Feb 19 +in.heating_unavailable_period Feb 17 - Feb 23 Heating is unavailable during Feb 17 - Feb 23 +in.heating_unavailable_period Feb 17 - Mar 18 Heating is unavailable during Feb 17 - Mar 18 +in.heating_unavailable_period Feb 17 - Mar 2 Heating is unavailable during Feb 17 - Mar 2 +in.heating_unavailable_period Feb 17 - May 17 Heating is unavailable during Feb 17 - May 17 +in.heating_unavailable_period Feb 18 - Feb 18 Heating is unavailable during Feb 18 - Feb 18 +in.heating_unavailable_period Feb 18 - Feb 20 Heating is unavailable during Feb 18 - Feb 20 +in.heating_unavailable_period Feb 18 - Feb 24 Heating is unavailable during Feb 18 - Feb 24 +in.heating_unavailable_period Feb 18 - Mar 19 Heating is unavailable during Feb 18 - Mar 19 +in.heating_unavailable_period Feb 18 - Mar 3 Heating is unavailable during Feb 18 - Mar 3 +in.heating_unavailable_period Feb 18 - May 18 Heating is unavailable during Feb 18 - May 18 +in.heating_unavailable_period Feb 19 - Feb 19 Heating is unavailable during Feb 19 - Feb 19 +in.heating_unavailable_period Feb 19 - Feb 21 Heating is unavailable during Feb 19 - Feb 21 +in.heating_unavailable_period Feb 19 - Feb 25 Heating is unavailable during Feb 19 - Feb 25 +in.heating_unavailable_period Feb 19 - Mar 20 Heating is unavailable during Feb 19 - Mar 20 +in.heating_unavailable_period Feb 19 - Mar 4 Heating is unavailable during Feb 19 - Mar 4 +in.heating_unavailable_period Feb 19 - May 19 Heating is unavailable during Feb 19 - May 19 +in.heating_unavailable_period Feb 2 - Feb 15 Heating is unavailable during Feb 2 - Feb 15 +in.heating_unavailable_period Feb 2 - Feb 2 Heating is unavailable during Feb 2 - Feb 2 +in.heating_unavailable_period Feb 2 - Feb 4 Heating is unavailable during Feb 2 - Feb 4 +in.heating_unavailable_period Feb 2 - Feb 8 Heating is unavailable during Feb 2 - Feb 8 +in.heating_unavailable_period Feb 2 - Mar 3 Heating is unavailable during Feb 2 - Mar 3 +in.heating_unavailable_period Feb 2 - May 2 Heating is unavailable during Feb 2 - May 2 +in.heating_unavailable_period Feb 20 - Feb 20 Heating is unavailable during Feb 20 - Feb 20 +in.heating_unavailable_period Feb 20 - Feb 22 Heating is unavailable during Feb 20 - Feb 22 +in.heating_unavailable_period Feb 20 - Feb 26 Heating is unavailable during Feb 20 - Feb 26 +in.heating_unavailable_period Feb 20 - Mar 21 Heating is unavailable during Feb 20 - Mar 21 +in.heating_unavailable_period Feb 20 - Mar 5 Heating is unavailable during Feb 20 - Mar 5 +in.heating_unavailable_period Feb 20 - May 20 Heating is unavailable during Feb 20 - May 20 +in.heating_unavailable_period Feb 21 - Feb 21 Heating is unavailable during Feb 21 - Feb 21 +in.heating_unavailable_period Feb 21 - Feb 23 Heating is unavailable during Feb 21 - Feb 23 +in.heating_unavailable_period Feb 21 - Feb 27 Heating is unavailable during Feb 21 - Feb 27 +in.heating_unavailable_period Feb 21 - Mar 22 Heating is unavailable during Feb 21 - Mar 22 +in.heating_unavailable_period Feb 21 - Mar 6 Heating is unavailable during Feb 21 - Mar 6 +in.heating_unavailable_period Feb 21 - May 21 Heating is unavailable during Feb 21 - May 21 +in.heating_unavailable_period Feb 22 - Feb 22 Heating is unavailable during Feb 22 - Feb 22 +in.heating_unavailable_period Feb 22 - Feb 24 Heating is unavailable during Feb 22 - Feb 24 +in.heating_unavailable_period Feb 22 - Feb 28 Heating is unavailable during Feb 22 - Feb 28 +in.heating_unavailable_period Feb 22 - Mar 23 Heating is unavailable during Feb 22 - Mar 23 +in.heating_unavailable_period Feb 22 - Mar 7 Heating is unavailable during Feb 22 - Mar 7 +in.heating_unavailable_period Feb 22 - May 22 Heating is unavailable during Feb 22 - May 22 +in.heating_unavailable_period Feb 23 - Feb 23 Heating is unavailable during Feb 23 - Feb 23 +in.heating_unavailable_period Feb 23 - Feb 25 Heating is unavailable during Feb 23 - Feb 25 +in.heating_unavailable_period Feb 23 - Mar 1 Heating is unavailable during Feb 23 - Mar 1 +in.heating_unavailable_period Feb 23 - Mar 24 Heating is unavailable during Feb 23 - Mar 24 +in.heating_unavailable_period Feb 23 - Mar 8 Heating is unavailable during Feb 23 - Mar 8 +in.heating_unavailable_period Feb 23 - May 23 Heating is unavailable during Feb 23 - May 23 +in.heating_unavailable_period Feb 24 - Feb 24 Heating is unavailable during Feb 24 - Feb 24 +in.heating_unavailable_period Feb 24 - Feb 26 Heating is unavailable during Feb 24 - Feb 26 +in.heating_unavailable_period Feb 24 - Mar 2 Heating is unavailable during Feb 24 - Mar 2 +in.heating_unavailable_period Feb 24 - Mar 25 Heating is unavailable during Feb 24 - Mar 25 +in.heating_unavailable_period Feb 24 - Mar 9 Heating is unavailable during Feb 24 - Mar 9 +in.heating_unavailable_period Feb 24 - May 24 Heating is unavailable during Feb 24 - May 24 +in.heating_unavailable_period Feb 25 - Feb 25 Heating is unavailable during Feb 25 - Feb 25 +in.heating_unavailable_period Feb 25 - Feb 27 Heating is unavailable during Feb 25 - Feb 27 +in.heating_unavailable_period Feb 25 - Mar 10 Heating is unavailable during Feb 25 - Mar 10 +in.heating_unavailable_period Feb 25 - Mar 26 Heating is unavailable during Feb 25 - Mar 26 +in.heating_unavailable_period Feb 25 - Mar 3 Heating is unavailable during Feb 25 - Mar 3 +in.heating_unavailable_period Feb 25 - May 25 Heating is unavailable during Feb 25 - May 25 +in.heating_unavailable_period Feb 26 - Feb 26 Heating is unavailable during Feb 26 - Feb 26 +in.heating_unavailable_period Feb 26 - Feb 28 Heating is unavailable during Feb 26 - Feb 28 +in.heating_unavailable_period Feb 26 - Mar 11 Heating is unavailable during Feb 26 - Mar 11 +in.heating_unavailable_period Feb 26 - Mar 27 Heating is unavailable during Feb 26 - Mar 27 +in.heating_unavailable_period Feb 26 - Mar 4 Heating is unavailable during Feb 26 - Mar 4 +in.heating_unavailable_period Feb 26 - May 26 Heating is unavailable during Feb 26 - May 26 +in.heating_unavailable_period Feb 27 - Feb 27 Heating is unavailable during Feb 27 - Feb 27 +in.heating_unavailable_period Feb 27 - Mar 1 Heating is unavailable during Feb 27 - Mar 1 +in.heating_unavailable_period Feb 27 - Mar 12 Heating is unavailable during Feb 27 - Mar 12 +in.heating_unavailable_period Feb 27 - Mar 28 Heating is unavailable during Feb 27 - Mar 28 +in.heating_unavailable_period Feb 27 - Mar 5 Heating is unavailable during Feb 27 - Mar 5 +in.heating_unavailable_period Feb 27 - May 27 Heating is unavailable during Feb 27 - May 27 +in.heating_unavailable_period Feb 28 - Feb 28 Heating is unavailable during Feb 28 - Feb 28 +in.heating_unavailable_period Feb 28 - Mar 13 Heating is unavailable during Feb 28 - Mar 13 +in.heating_unavailable_period Feb 28 - Mar 2 Heating is unavailable during Feb 28 - Mar 2 +in.heating_unavailable_period Feb 28 - Mar 29 Heating is unavailable during Feb 28 - Mar 29 +in.heating_unavailable_period Feb 28 - Mar 6 Heating is unavailable during Feb 28 - Mar 6 +in.heating_unavailable_period Feb 28 - May 28 Heating is unavailable during Feb 28 - May 28 +in.heating_unavailable_period Feb 3 - Feb 16 Heating is unavailable during Feb 3 - Feb 16 +in.heating_unavailable_period Feb 3 - Feb 3 Heating is unavailable during Feb 3 - Feb 3 +in.heating_unavailable_period Feb 3 - Feb 5 Heating is unavailable during Feb 3 - Feb 5 +in.heating_unavailable_period Feb 3 - Feb 9 Heating is unavailable during Feb 3 - Feb 9 +in.heating_unavailable_period Feb 3 - Mar 4 Heating is unavailable during Feb 3 - Mar 4 +in.heating_unavailable_period Feb 3 - May 3 Heating is unavailable during Feb 3 - May 3 +in.heating_unavailable_period Feb 4 - Feb 10 Heating is unavailable during Feb 4 - Feb 10 +in.heating_unavailable_period Feb 4 - Feb 17 Heating is unavailable during Feb 4 - Feb 17 +in.heating_unavailable_period Feb 4 - Feb 4 Heating is unavailable during Feb 4 - Feb 4 +in.heating_unavailable_period Feb 4 - Feb 6 Heating is unavailable during Feb 4 - Feb 6 +in.heating_unavailable_period Feb 4 - Mar 5 Heating is unavailable during Feb 4 - Mar 5 +in.heating_unavailable_period Feb 4 - May 4 Heating is unavailable during Feb 4 - May 4 +in.heating_unavailable_period Feb 5 - Feb 11 Heating is unavailable during Feb 5 - Feb 11 +in.heating_unavailable_period Feb 5 - Feb 18 Heating is unavailable during Feb 5 - Feb 18 +in.heating_unavailable_period Feb 5 - Feb 5 Heating is unavailable during Feb 5 - Feb 5 +in.heating_unavailable_period Feb 5 - Feb 7 Heating is unavailable during Feb 5 - Feb 7 +in.heating_unavailable_period Feb 5 - Mar 6 Heating is unavailable during Feb 5 - Mar 6 +in.heating_unavailable_period Feb 5 - May 5 Heating is unavailable during Feb 5 - May 5 +in.heating_unavailable_period Feb 6 - Feb 12 Heating is unavailable during Feb 6 - Feb 12 +in.heating_unavailable_period Feb 6 - Feb 19 Heating is unavailable during Feb 6 - Feb 19 +in.heating_unavailable_period Feb 6 - Feb 6 Heating is unavailable during Feb 6 - Feb 6 +in.heating_unavailable_period Feb 6 - Feb 8 Heating is unavailable during Feb 6 - Feb 8 +in.heating_unavailable_period Feb 6 - Mar 7 Heating is unavailable during Feb 6 - Mar 7 +in.heating_unavailable_period Feb 6 - May 6 Heating is unavailable during Feb 6 - May 6 +in.heating_unavailable_period Feb 7 - Feb 13 Heating is unavailable during Feb 7 - Feb 13 +in.heating_unavailable_period Feb 7 - Feb 20 Heating is unavailable during Feb 7 - Feb 20 +in.heating_unavailable_period Feb 7 - Feb 7 Heating is unavailable during Feb 7 - Feb 7 +in.heating_unavailable_period Feb 7 - Feb 9 Heating is unavailable during Feb 7 - Feb 9 +in.heating_unavailable_period Feb 7 - Mar 8 Heating is unavailable during Feb 7 - Mar 8 +in.heating_unavailable_period Feb 7 - May 7 Heating is unavailable during Feb 7 - May 7 +in.heating_unavailable_period Feb 8 - Feb 10 Heating is unavailable during Feb 8 - Feb 10 +in.heating_unavailable_period Feb 8 - Feb 14 Heating is unavailable during Feb 8 - Feb 14 +in.heating_unavailable_period Feb 8 - Feb 21 Heating is unavailable during Feb 8 - Feb 21 +in.heating_unavailable_period Feb 8 - Feb 8 Heating is unavailable during Feb 8 - Feb 8 +in.heating_unavailable_period Feb 8 - Mar 9 Heating is unavailable during Feb 8 - Mar 9 +in.heating_unavailable_period Feb 8 - May 8 Heating is unavailable during Feb 8 - May 8 +in.heating_unavailable_period Feb 9 - Feb 11 Heating is unavailable during Feb 9 - Feb 11 +in.heating_unavailable_period Feb 9 - Feb 15 Heating is unavailable during Feb 9 - Feb 15 +in.heating_unavailable_period Feb 9 - Feb 22 Heating is unavailable during Feb 9 - Feb 22 +in.heating_unavailable_period Feb 9 - Feb 9 Heating is unavailable during Feb 9 - Feb 9 +in.heating_unavailable_period Feb 9 - Mar 10 Heating is unavailable during Feb 9 - Mar 10 +in.heating_unavailable_period Feb 9 - May 9 Heating is unavailable during Feb 9 - May 9 +in.heating_unavailable_period Jan 1 - Dec 31 Heating is unavailable during Jan 1 - Dec 31 +in.heating_unavailable_period Jan 1 - Jan 1 Heating is unavailable during Jan 1 - Jan 1 +in.heating_unavailable_period Jan 1 - Jan 14 Heating is unavailable during Jan 1 - Jan 14 +in.heating_unavailable_period Jan 1 - Jan 3 Heating is unavailable during Jan 1 - Jan 3 +in.heating_unavailable_period Jan 1 - Jan 30 Heating is unavailable during Jan 1 - Jan 30 +in.heating_unavailable_period Jan 1 - Jan 7 Heating is unavailable during Jan 1 - Jan 7 +in.heating_unavailable_period Jan 1 - Mar 31 Heating is unavailable during Jan 1 - Mar 31 +in.heating_unavailable_period Jan 10 - Apr 9 Heating is unavailable during Jan 10 - Apr 9 +in.heating_unavailable_period Jan 10 - Feb 8 Heating is unavailable during Jan 10 - Feb 8 +in.heating_unavailable_period Jan 10 - Jan 10 Heating is unavailable during Jan 10 - Jan 10 +in.heating_unavailable_period Jan 10 - Jan 12 Heating is unavailable during Jan 10 - Jan 12 +in.heating_unavailable_period Jan 10 - Jan 16 Heating is unavailable during Jan 10 - Jan 16 +in.heating_unavailable_period Jan 10 - Jan 23 Heating is unavailable during Jan 10 - Jan 23 +in.heating_unavailable_period Jan 11 - Apr 10 Heating is unavailable during Jan 11 - Apr 10 +in.heating_unavailable_period Jan 11 - Feb 9 Heating is unavailable during Jan 11 - Feb 9 +in.heating_unavailable_period Jan 11 - Jan 11 Heating is unavailable during Jan 11 - Jan 11 +in.heating_unavailable_period Jan 11 - Jan 13 Heating is unavailable during Jan 11 - Jan 13 +in.heating_unavailable_period Jan 11 - Jan 17 Heating is unavailable during Jan 11 - Jan 17 +in.heating_unavailable_period Jan 11 - Jan 24 Heating is unavailable during Jan 11 - Jan 24 +in.heating_unavailable_period Jan 12 - Apr 11 Heating is unavailable during Jan 12 - Apr 11 +in.heating_unavailable_period Jan 12 - Feb 10 Heating is unavailable during Jan 12 - Feb 10 +in.heating_unavailable_period Jan 12 - Jan 12 Heating is unavailable during Jan 12 - Jan 12 +in.heating_unavailable_period Jan 12 - Jan 14 Heating is unavailable during Jan 12 - Jan 14 +in.heating_unavailable_period Jan 12 - Jan 18 Heating is unavailable during Jan 12 - Jan 18 +in.heating_unavailable_period Jan 12 - Jan 25 Heating is unavailable during Jan 12 - Jan 25 +in.heating_unavailable_period Jan 13 - Apr 12 Heating is unavailable during Jan 13 - Apr 12 +in.heating_unavailable_period Jan 13 - Feb 11 Heating is unavailable during Jan 13 - Feb 11 +in.heating_unavailable_period Jan 13 - Jan 13 Heating is unavailable during Jan 13 - Jan 13 +in.heating_unavailable_period Jan 13 - Jan 15 Heating is unavailable during Jan 13 - Jan 15 +in.heating_unavailable_period Jan 13 - Jan 19 Heating is unavailable during Jan 13 - Jan 19 +in.heating_unavailable_period Jan 13 - Jan 26 Heating is unavailable during Jan 13 - Jan 26 +in.heating_unavailable_period Jan 14 - Apr 13 Heating is unavailable during Jan 14 - Apr 13 +in.heating_unavailable_period Jan 14 - Feb 12 Heating is unavailable during Jan 14 - Feb 12 +in.heating_unavailable_period Jan 14 - Jan 14 Heating is unavailable during Jan 14 - Jan 14 +in.heating_unavailable_period Jan 14 - Jan 16 Heating is unavailable during Jan 14 - Jan 16 +in.heating_unavailable_period Jan 14 - Jan 20 Heating is unavailable during Jan 14 - Jan 20 +in.heating_unavailable_period Jan 14 - Jan 27 Heating is unavailable during Jan 14 - Jan 27 +in.heating_unavailable_period Jan 15 - Apr 14 Heating is unavailable during Jan 15 - Apr 14 +in.heating_unavailable_period Jan 15 - Feb 13 Heating is unavailable during Jan 15 - Feb 13 +in.heating_unavailable_period Jan 15 - Jan 15 Heating is unavailable during Jan 15 - Jan 15 +in.heating_unavailable_period Jan 15 - Jan 17 Heating is unavailable during Jan 15 - Jan 17 +in.heating_unavailable_period Jan 15 - Jan 21 Heating is unavailable during Jan 15 - Jan 21 +in.heating_unavailable_period Jan 15 - Jan 28 Heating is unavailable during Jan 15 - Jan 28 +in.heating_unavailable_period Jan 16 - Apr 15 Heating is unavailable during Jan 16 - Apr 15 +in.heating_unavailable_period Jan 16 - Feb 14 Heating is unavailable during Jan 16 - Feb 14 +in.heating_unavailable_period Jan 16 - Jan 16 Heating is unavailable during Jan 16 - Jan 16 +in.heating_unavailable_period Jan 16 - Jan 18 Heating is unavailable during Jan 16 - Jan 18 +in.heating_unavailable_period Jan 16 - Jan 22 Heating is unavailable during Jan 16 - Jan 22 +in.heating_unavailable_period Jan 16 - Jan 29 Heating is unavailable during Jan 16 - Jan 29 +in.heating_unavailable_period Jan 17 - Apr 16 Heating is unavailable during Jan 17 - Apr 16 +in.heating_unavailable_period Jan 17 - Feb 15 Heating is unavailable during Jan 17 - Feb 15 +in.heating_unavailable_period Jan 17 - Jan 17 Heating is unavailable during Jan 17 - Jan 17 +in.heating_unavailable_period Jan 17 - Jan 19 Heating is unavailable during Jan 17 - Jan 19 +in.heating_unavailable_period Jan 17 - Jan 23 Heating is unavailable during Jan 17 - Jan 23 +in.heating_unavailable_period Jan 17 - Jan 30 Heating is unavailable during Jan 17 - Jan 30 +in.heating_unavailable_period Jan 18 - Apr 17 Heating is unavailable during Jan 18 - Apr 17 +in.heating_unavailable_period Jan 18 - Feb 16 Heating is unavailable during Jan 18 - Feb 16 +in.heating_unavailable_period Jan 18 - Jan 18 Heating is unavailable during Jan 18 - Jan 18 +in.heating_unavailable_period Jan 18 - Jan 20 Heating is unavailable during Jan 18 - Jan 20 +in.heating_unavailable_period Jan 18 - Jan 24 Heating is unavailable during Jan 18 - Jan 24 +in.heating_unavailable_period Jan 18 - Jan 31 Heating is unavailable during Jan 18 - Jan 31 +in.heating_unavailable_period Jan 19 - Apr 18 Heating is unavailable during Jan 19 - Apr 18 +in.heating_unavailable_period Jan 19 - Feb 1 Heating is unavailable during Jan 19 - Feb 1 +in.heating_unavailable_period Jan 19 - Feb 17 Heating is unavailable during Jan 19 - Feb 17 +in.heating_unavailable_period Jan 19 - Jan 19 Heating is unavailable during Jan 19 - Jan 19 +in.heating_unavailable_period Jan 19 - Jan 21 Heating is unavailable during Jan 19 - Jan 21 +in.heating_unavailable_period Jan 19 - Jan 25 Heating is unavailable during Jan 19 - Jan 25 +in.heating_unavailable_period Jan 2 - Apr 1 Heating is unavailable during Jan 2 - Apr 1 +in.heating_unavailable_period Jan 2 - Jan 15 Heating is unavailable during Jan 2 - Jan 15 +in.heating_unavailable_period Jan 2 - Jan 2 Heating is unavailable during Jan 2 - Jan 2 +in.heating_unavailable_period Jan 2 - Jan 31 Heating is unavailable during Jan 2 - Jan 31 +in.heating_unavailable_period Jan 2 - Jan 4 Heating is unavailable during Jan 2 - Jan 4 +in.heating_unavailable_period Jan 2 - Jan 8 Heating is unavailable during Jan 2 - Jan 8 +in.heating_unavailable_period Jan 20 - Apr 19 Heating is unavailable during Jan 20 - Apr 19 +in.heating_unavailable_period Jan 20 - Feb 18 Heating is unavailable during Jan 20 - Feb 18 +in.heating_unavailable_period Jan 20 - Feb 2 Heating is unavailable during Jan 20 - Feb 2 +in.heating_unavailable_period Jan 20 - Jan 20 Heating is unavailable during Jan 20 - Jan 20 +in.heating_unavailable_period Jan 20 - Jan 22 Heating is unavailable during Jan 20 - Jan 22 +in.heating_unavailable_period Jan 20 - Jan 26 Heating is unavailable during Jan 20 - Jan 26 +in.heating_unavailable_period Jan 21 - Apr 20 Heating is unavailable during Jan 21 - Apr 20 +in.heating_unavailable_period Jan 21 - Feb 19 Heating is unavailable during Jan 21 - Feb 19 +in.heating_unavailable_period Jan 21 - Feb 3 Heating is unavailable during Jan 21 - Feb 3 +in.heating_unavailable_period Jan 21 - Jan 21 Heating is unavailable during Jan 21 - Jan 21 +in.heating_unavailable_period Jan 21 - Jan 23 Heating is unavailable during Jan 21 - Jan 23 +in.heating_unavailable_period Jan 21 - Jan 27 Heating is unavailable during Jan 21 - Jan 27 +in.heating_unavailable_period Jan 22 - Apr 21 Heating is unavailable during Jan 22 - Apr 21 +in.heating_unavailable_period Jan 22 - Feb 20 Heating is unavailable during Jan 22 - Feb 20 +in.heating_unavailable_period Jan 22 - Feb 4 Heating is unavailable during Jan 22 - Feb 4 +in.heating_unavailable_period Jan 22 - Jan 22 Heating is unavailable during Jan 22 - Jan 22 +in.heating_unavailable_period Jan 22 - Jan 24 Heating is unavailable during Jan 22 - Jan 24 +in.heating_unavailable_period Jan 22 - Jan 28 Heating is unavailable during Jan 22 - Jan 28 +in.heating_unavailable_period Jan 23 - Apr 22 Heating is unavailable during Jan 23 - Apr 22 +in.heating_unavailable_period Jan 23 - Feb 21 Heating is unavailable during Jan 23 - Feb 21 +in.heating_unavailable_period Jan 23 - Feb 5 Heating is unavailable during Jan 23 - Feb 5 +in.heating_unavailable_period Jan 23 - Jan 23 Heating is unavailable during Jan 23 - Jan 23 +in.heating_unavailable_period Jan 23 - Jan 25 Heating is unavailable during Jan 23 - Jan 25 +in.heating_unavailable_period Jan 23 - Jan 29 Heating is unavailable during Jan 23 - Jan 29 +in.heating_unavailable_period Jan 24 - Apr 23 Heating is unavailable during Jan 24 - Apr 23 +in.heating_unavailable_period Jan 24 - Feb 22 Heating is unavailable during Jan 24 - Feb 22 +in.heating_unavailable_period Jan 24 - Feb 6 Heating is unavailable during Jan 24 - Feb 6 +in.heating_unavailable_period Jan 24 - Jan 24 Heating is unavailable during Jan 24 - Jan 24 +in.heating_unavailable_period Jan 24 - Jan 26 Heating is unavailable during Jan 24 - Jan 26 +in.heating_unavailable_period Jan 24 - Jan 30 Heating is unavailable during Jan 24 - Jan 30 +in.heating_unavailable_period Jan 25 - Apr 24 Heating is unavailable during Jan 25 - Apr 24 +in.heating_unavailable_period Jan 25 - Feb 23 Heating is unavailable during Jan 25 - Feb 23 +in.heating_unavailable_period Jan 25 - Feb 7 Heating is unavailable during Jan 25 - Feb 7 +in.heating_unavailable_period Jan 25 - Jan 25 Heating is unavailable during Jan 25 - Jan 25 +in.heating_unavailable_period Jan 25 - Jan 27 Heating is unavailable during Jan 25 - Jan 27 +in.heating_unavailable_period Jan 25 - Jan 31 Heating is unavailable during Jan 25 - Jan 31 +in.heating_unavailable_period Jan 26 - Apr 25 Heating is unavailable during Jan 26 - Apr 25 +in.heating_unavailable_period Jan 26 - Feb 1 Heating is unavailable during Jan 26 - Feb 1 +in.heating_unavailable_period Jan 26 - Feb 24 Heating is unavailable during Jan 26 - Feb 24 +in.heating_unavailable_period Jan 26 - Feb 8 Heating is unavailable during Jan 26 - Feb 8 +in.heating_unavailable_period Jan 26 - Jan 26 Heating is unavailable during Jan 26 - Jan 26 +in.heating_unavailable_period Jan 26 - Jan 28 Heating is unavailable during Jan 26 - Jan 28 +in.heating_unavailable_period Jan 27 - Apr 26 Heating is unavailable during Jan 27 - Apr 26 +in.heating_unavailable_period Jan 27 - Feb 2 Heating is unavailable during Jan 27 - Feb 2 +in.heating_unavailable_period Jan 27 - Feb 25 Heating is unavailable during Jan 27 - Feb 25 +in.heating_unavailable_period Jan 27 - Feb 9 Heating is unavailable during Jan 27 - Feb 9 +in.heating_unavailable_period Jan 27 - Jan 27 Heating is unavailable during Jan 27 - Jan 27 +in.heating_unavailable_period Jan 27 - Jan 29 Heating is unavailable during Jan 27 - Jan 29 +in.heating_unavailable_period Jan 28 - Apr 27 Heating is unavailable during Jan 28 - Apr 27 +in.heating_unavailable_period Jan 28 - Feb 10 Heating is unavailable during Jan 28 - Feb 10 +in.heating_unavailable_period Jan 28 - Feb 26 Heating is unavailable during Jan 28 - Feb 26 +in.heating_unavailable_period Jan 28 - Feb 3 Heating is unavailable during Jan 28 - Feb 3 +in.heating_unavailable_period Jan 28 - Jan 28 Heating is unavailable during Jan 28 - Jan 28 +in.heating_unavailable_period Jan 28 - Jan 30 Heating is unavailable during Jan 28 - Jan 30 +in.heating_unavailable_period Jan 29 - Apr 28 Heating is unavailable during Jan 29 - Apr 28 +in.heating_unavailable_period Jan 29 - Feb 11 Heating is unavailable during Jan 29 - Feb 11 +in.heating_unavailable_period Jan 29 - Feb 27 Heating is unavailable during Jan 29 - Feb 27 +in.heating_unavailable_period Jan 29 - Feb 4 Heating is unavailable during Jan 29 - Feb 4 +in.heating_unavailable_period Jan 29 - Jan 29 Heating is unavailable during Jan 29 - Jan 29 +in.heating_unavailable_period Jan 29 - Jan 31 Heating is unavailable during Jan 29 - Jan 31 +in.heating_unavailable_period Jan 3 - Apr 2 Heating is unavailable during Jan 3 - Apr 2 +in.heating_unavailable_period Jan 3 - Feb 1 Heating is unavailable during Jan 3 - Feb 1 +in.heating_unavailable_period Jan 3 - Jan 16 Heating is unavailable during Jan 3 - Jan 16 +in.heating_unavailable_period Jan 3 - Jan 3 Heating is unavailable during Jan 3 - Jan 3 +in.heating_unavailable_period Jan 3 - Jan 5 Heating is unavailable during Jan 3 - Jan 5 +in.heating_unavailable_period Jan 3 - Jan 9 Heating is unavailable during Jan 3 - Jan 9 +in.heating_unavailable_period Jan 30 - Apr 29 Heating is unavailable during Jan 30 - Apr 29 +in.heating_unavailable_period Jan 30 - Feb 1 Heating is unavailable during Jan 30 - Feb 1 +in.heating_unavailable_period Jan 30 - Feb 12 Heating is unavailable during Jan 30 - Feb 12 +in.heating_unavailable_period Jan 30 - Feb 28 Heating is unavailable during Jan 30 - Feb 28 +in.heating_unavailable_period Jan 30 - Feb 5 Heating is unavailable during Jan 30 - Feb 5 +in.heating_unavailable_period Jan 30 - Jan 30 Heating is unavailable during Jan 30 - Jan 30 +in.heating_unavailable_period Jan 31 - Apr 30 Heating is unavailable during Jan 31 - Apr 30 +in.heating_unavailable_period Jan 31 - Feb 13 Heating is unavailable during Jan 31 - Feb 13 +in.heating_unavailable_period Jan 31 - Feb 2 Heating is unavailable during Jan 31 - Feb 2 +in.heating_unavailable_period Jan 31 - Feb 6 Heating is unavailable during Jan 31 - Feb 6 +in.heating_unavailable_period Jan 31 - Jan 31 Heating is unavailable during Jan 31 - Jan 31 +in.heating_unavailable_period Jan 31 - Mar 1 Heating is unavailable during Jan 31 - Mar 1 +in.heating_unavailable_period Jan 4 - Apr 3 Heating is unavailable during Jan 4 - Apr 3 +in.heating_unavailable_period Jan 4 - Feb 2 Heating is unavailable during Jan 4 - Feb 2 +in.heating_unavailable_period Jan 4 - Jan 10 Heating is unavailable during Jan 4 - Jan 10 +in.heating_unavailable_period Jan 4 - Jan 17 Heating is unavailable during Jan 4 - Jan 17 +in.heating_unavailable_period Jan 4 - Jan 4 Heating is unavailable during Jan 4 - Jan 4 +in.heating_unavailable_period Jan 4 - Jan 6 Heating is unavailable during Jan 4 - Jan 6 +in.heating_unavailable_period Jan 5 - Apr 4 Heating is unavailable during Jan 5 - Apr 4 +in.heating_unavailable_period Jan 5 - Feb 3 Heating is unavailable during Jan 5 - Feb 3 +in.heating_unavailable_period Jan 5 - Jan 11 Heating is unavailable during Jan 5 - Jan 11 +in.heating_unavailable_period Jan 5 - Jan 18 Heating is unavailable during Jan 5 - Jan 18 +in.heating_unavailable_period Jan 5 - Jan 5 Heating is unavailable during Jan 5 - Jan 5 +in.heating_unavailable_period Jan 5 - Jan 7 Heating is unavailable during Jan 5 - Jan 7 +in.heating_unavailable_period Jan 6 - Apr 5 Heating is unavailable during Jan 6 - Apr 5 +in.heating_unavailable_period Jan 6 - Feb 4 Heating is unavailable during Jan 6 - Feb 4 +in.heating_unavailable_period Jan 6 - Jan 12 Heating is unavailable during Jan 6 - Jan 12 +in.heating_unavailable_period Jan 6 - Jan 19 Heating is unavailable during Jan 6 - Jan 19 +in.heating_unavailable_period Jan 6 - Jan 6 Heating is unavailable during Jan 6 - Jan 6 +in.heating_unavailable_period Jan 6 - Jan 8 Heating is unavailable during Jan 6 - Jan 8 +in.heating_unavailable_period Jan 7 - Apr 6 Heating is unavailable during Jan 7 - Apr 6 +in.heating_unavailable_period Jan 7 - Feb 5 Heating is unavailable during Jan 7 - Feb 5 +in.heating_unavailable_period Jan 7 - Jan 13 Heating is unavailable during Jan 7 - Jan 13 +in.heating_unavailable_period Jan 7 - Jan 20 Heating is unavailable during Jan 7 - Jan 20 +in.heating_unavailable_period Jan 7 - Jan 7 Heating is unavailable during Jan 7 - Jan 7 +in.heating_unavailable_period Jan 7 - Jan 9 Heating is unavailable during Jan 7 - Jan 9 +in.heating_unavailable_period Jan 8 - Apr 7 Heating is unavailable during Jan 8 - Apr 7 +in.heating_unavailable_period Jan 8 - Feb 6 Heating is unavailable during Jan 8 - Feb 6 +in.heating_unavailable_period Jan 8 - Jan 10 Heating is unavailable during Jan 8 - Jan 10 +in.heating_unavailable_period Jan 8 - Jan 14 Heating is unavailable during Jan 8 - Jan 14 +in.heating_unavailable_period Jan 8 - Jan 21 Heating is unavailable during Jan 8 - Jan 21 +in.heating_unavailable_period Jan 8 - Jan 8 Heating is unavailable during Jan 8 - Jan 8 +in.heating_unavailable_period Jan 9 - Apr 8 Heating is unavailable during Jan 9 - Apr 8 +in.heating_unavailable_period Jan 9 - Feb 7 Heating is unavailable during Jan 9 - Feb 7 +in.heating_unavailable_period Jan 9 - Jan 11 Heating is unavailable during Jan 9 - Jan 11 +in.heating_unavailable_period Jan 9 - Jan 15 Heating is unavailable during Jan 9 - Jan 15 +in.heating_unavailable_period Jan 9 - Jan 22 Heating is unavailable during Jan 9 - Jan 22 +in.heating_unavailable_period Jan 9 - Jan 9 Heating is unavailable during Jan 9 - Jan 9 +in.heating_unavailable_period Jul 1 - Jul 1 Heating is unavailable during Jul 1 - Jul 1 +in.heating_unavailable_period Jul 1 - Jul 14 Heating is unavailable during Jul 1 - Jul 14 +in.heating_unavailable_period Jul 1 - Jul 3 Heating is unavailable during Jul 1 - Jul 3 +in.heating_unavailable_period Jul 1 - Jul 7 Heating is unavailable during Jul 1 - Jul 7 +in.heating_unavailable_period Jul 1 - Sep 28 Heating is unavailable during Jul 1 - Sep 28 +in.heating_unavailable_period Jul 10 - Aug 8 Heating is unavailable during Jul 10 - Aug 8 +in.heating_unavailable_period Jul 10 - Jul 10 Heating is unavailable during Jul 10 - Jul 10 +in.heating_unavailable_period Jul 10 - Jul 12 Heating is unavailable during Jul 10 - Jul 12 +in.heating_unavailable_period Jul 11 - Aug 9 Heating is unavailable during Jul 11 - Aug 9 +in.heating_unavailable_period Jul 11 - Jul 11 Heating is unavailable during Jul 11 - Jul 11 +in.heating_unavailable_period Jul 11 - Jul 13 Heating is unavailable during Jul 11 - Jul 13 +in.heating_unavailable_period Jul 11 - Jul 17 Heating is unavailable during Jul 11 - Jul 17 +in.heating_unavailable_period Jul 11 - Jul 24 Heating is unavailable during Jul 11 - Jul 24 +in.heating_unavailable_period Jul 12 - Jul 12 Heating is unavailable during Jul 12 - Jul 12 +in.heating_unavailable_period Jul 12 - Jul 14 Heating is unavailable during Jul 12 - Jul 14 +in.heating_unavailable_period Jul 12 - Jul 18 Heating is unavailable during Jul 12 - Jul 18 +in.heating_unavailable_period Jul 13 - Jul 13 Heating is unavailable during Jul 13 - Jul 13 +in.heating_unavailable_period Jul 13 - Oct 10 Heating is unavailable during Jul 13 - Oct 10 +in.heating_unavailable_period Jul 14 - Aug 12 Heating is unavailable during Jul 14 - Aug 12 +in.heating_unavailable_period Jul 14 - Jul 14 Heating is unavailable during Jul 14 - Jul 14 +in.heating_unavailable_period Jul 14 - Jul 16 Heating is unavailable during Jul 14 - Jul 16 +in.heating_unavailable_period Jul 14 - Jul 20 Heating is unavailable during Jul 14 - Jul 20 +in.heating_unavailable_period Jul 15 - Jul 15 Heating is unavailable during Jul 15 - Jul 15 +in.heating_unavailable_period Jul 15 - Jul 21 Heating is unavailable during Jul 15 - Jul 21 +in.heating_unavailable_period Jul 16 - Jul 16 Heating is unavailable during Jul 16 - Jul 16 +in.heating_unavailable_period Jul 16 - Jul 18 Heating is unavailable during Jul 16 - Jul 18 +in.heating_unavailable_period Jul 16 - Jul 22 Heating is unavailable during Jul 16 - Jul 22 +in.heating_unavailable_period Jul 16 - Oct 13 Heating is unavailable during Jul 16 - Oct 13 +in.heating_unavailable_period Jul 17 - Jul 17 Heating is unavailable during Jul 17 - Jul 17 +in.heating_unavailable_period Jul 17 - Jul 19 Heating is unavailable during Jul 17 - Jul 19 +in.heating_unavailable_period Jul 17 - Jul 23 Heating is unavailable during Jul 17 - Jul 23 +in.heating_unavailable_period Jul 18 - Aug 16 Heating is unavailable during Jul 18 - Aug 16 +in.heating_unavailable_period Jul 18 - Jul 18 Heating is unavailable during Jul 18 - Jul 18 +in.heating_unavailable_period Jul 18 - Jul 20 Heating is unavailable during Jul 18 - Jul 20 +in.heating_unavailable_period Jul 18 - Jul 24 Heating is unavailable during Jul 18 - Jul 24 +in.heating_unavailable_period Jul 18 - Jul 31 Heating is unavailable during Jul 18 - Jul 31 +in.heating_unavailable_period Jul 18 - Oct 15 Heating is unavailable during Jul 18 - Oct 15 +in.heating_unavailable_period Jul 19 - Aug 1 Heating is unavailable during Jul 19 - Aug 1 +in.heating_unavailable_period Jul 19 - Aug 17 Heating is unavailable during Jul 19 - Aug 17 +in.heating_unavailable_period Jul 19 - Jul 19 Heating is unavailable during Jul 19 - Jul 19 +in.heating_unavailable_period Jul 19 - Jul 21 Heating is unavailable during Jul 19 - Jul 21 +in.heating_unavailable_period Jul 19 - Jul 25 Heating is unavailable during Jul 19 - Jul 25 +in.heating_unavailable_period Jul 2 - Jul 31 Heating is unavailable during Jul 2 - Jul 31 +in.heating_unavailable_period Jul 2 - Jul 8 Heating is unavailable during Jul 2 - Jul 8 +in.heating_unavailable_period Jul 2 - Sep 29 Heating is unavailable during Jul 2 - Sep 29 +in.heating_unavailable_period Jul 20 - Jul 20 Heating is unavailable during Jul 20 - Jul 20 +in.heating_unavailable_period Jul 20 - Jul 22 Heating is unavailable during Jul 20 - Jul 22 +in.heating_unavailable_period Jul 21 - Aug 19 Heating is unavailable during Jul 21 - Aug 19 +in.heating_unavailable_period Jul 21 - Jul 21 Heating is unavailable during Jul 21 - Jul 21 +in.heating_unavailable_period Jul 21 - Jul 23 Heating is unavailable during Jul 21 - Jul 23 +in.heating_unavailable_period Jul 21 - Jul 27 Heating is unavailable during Jul 21 - Jul 27 +in.heating_unavailable_period Jul 22 - Aug 20 Heating is unavailable during Jul 22 - Aug 20 +in.heating_unavailable_period Jul 22 - Aug 4 Heating is unavailable during Jul 22 - Aug 4 +in.heating_unavailable_period Jul 22 - Jul 22 Heating is unavailable during Jul 22 - Jul 22 +in.heating_unavailable_period Jul 22 - Jul 24 Heating is unavailable during Jul 22 - Jul 24 +in.heating_unavailable_period Jul 22 - Oct 19 Heating is unavailable during Jul 22 - Oct 19 +in.heating_unavailable_period Jul 23 - Aug 21 Heating is unavailable during Jul 23 - Aug 21 +in.heating_unavailable_period Jul 23 - Jul 23 Heating is unavailable during Jul 23 - Jul 23 +in.heating_unavailable_period Jul 23 - Jul 25 Heating is unavailable during Jul 23 - Jul 25 +in.heating_unavailable_period Jul 24 - Aug 22 Heating is unavailable during Jul 24 - Aug 22 +in.heating_unavailable_period Jul 24 - Aug 6 Heating is unavailable during Jul 24 - Aug 6 +in.heating_unavailable_period Jul 24 - Jul 24 Heating is unavailable during Jul 24 - Jul 24 +in.heating_unavailable_period Jul 24 - Jul 26 Heating is unavailable during Jul 24 - Jul 26 +in.heating_unavailable_period Jul 24 - Jul 30 Heating is unavailable during Jul 24 - Jul 30 +in.heating_unavailable_period Jul 25 - Aug 23 Heating is unavailable during Jul 25 - Aug 23 +in.heating_unavailable_period Jul 25 - Aug 7 Heating is unavailable during Jul 25 - Aug 7 +in.heating_unavailable_period Jul 25 - Jul 25 Heating is unavailable during Jul 25 - Jul 25 +in.heating_unavailable_period Jul 25 - Jul 27 Heating is unavailable during Jul 25 - Jul 27 +in.heating_unavailable_period Jul 25 - Jul 31 Heating is unavailable during Jul 25 - Jul 31 +in.heating_unavailable_period Jul 25 - Oct 22 Heating is unavailable during Jul 25 - Oct 22 +in.heating_unavailable_period Jul 26 - Aug 1 Heating is unavailable during Jul 26 - Aug 1 +in.heating_unavailable_period Jul 26 - Jul 26 Heating is unavailable during Jul 26 - Jul 26 +in.heating_unavailable_period Jul 26 - Jul 28 Heating is unavailable during Jul 26 - Jul 28 +in.heating_unavailable_period Jul 26 - Oct 23 Heating is unavailable during Jul 26 - Oct 23 +in.heating_unavailable_period Jul 27 - Aug 2 Heating is unavailable during Jul 27 - Aug 2 +in.heating_unavailable_period Jul 27 - Aug 9 Heating is unavailable during Jul 27 - Aug 9 +in.heating_unavailable_period Jul 27 - Jul 29 Heating is unavailable during Jul 27 - Jul 29 +in.heating_unavailable_period Jul 27 - Oct 24 Heating is unavailable during Jul 27 - Oct 24 +in.heating_unavailable_period Jul 28 - Aug 3 Heating is unavailable during Jul 28 - Aug 3 +in.heating_unavailable_period Jul 28 - Jul 28 Heating is unavailable during Jul 28 - Jul 28 +in.heating_unavailable_period Jul 28 - Jul 30 Heating is unavailable during Jul 28 - Jul 30 +in.heating_unavailable_period Jul 29 - Aug 4 Heating is unavailable during Jul 29 - Aug 4 +in.heating_unavailable_period Jul 29 - Jul 29 Heating is unavailable during Jul 29 - Jul 29 +in.heating_unavailable_period Jul 29 - Jul 31 Heating is unavailable during Jul 29 - Jul 31 +in.heating_unavailable_period Jul 3 - Aug 1 Heating is unavailable during Jul 3 - Aug 1 +in.heating_unavailable_period Jul 3 - Jul 3 Heating is unavailable during Jul 3 - Jul 3 +in.heating_unavailable_period Jul 3 - Jul 5 Heating is unavailable during Jul 3 - Jul 5 +in.heating_unavailable_period Jul 3 - Jul 9 Heating is unavailable during Jul 3 - Jul 9 +in.heating_unavailable_period Jul 30 - Aug 1 Heating is unavailable during Jul 30 - Aug 1 +in.heating_unavailable_period Jul 30 - Aug 28 Heating is unavailable during Jul 30 - Aug 28 +in.heating_unavailable_period Jul 30 - Aug 5 Heating is unavailable during Jul 30 - Aug 5 +in.heating_unavailable_period Jul 30 - Jul 30 Heating is unavailable during Jul 30 - Jul 30 +in.heating_unavailable_period Jul 31 - Aug 2 Heating is unavailable during Jul 31 - Aug 2 +in.heating_unavailable_period Jul 31 - Aug 6 Heating is unavailable during Jul 31 - Aug 6 +in.heating_unavailable_period Jul 4 - Jul 17 Heating is unavailable during Jul 4 - Jul 17 +in.heating_unavailable_period Jul 4 - Jul 4 Heating is unavailable during Jul 4 - Jul 4 +in.heating_unavailable_period Jul 4 - Jul 6 Heating is unavailable during Jul 4 - Jul 6 +in.heating_unavailable_period Jul 5 - Jul 18 Heating is unavailable during Jul 5 - Jul 18 +in.heating_unavailable_period Jul 5 - Jul 5 Heating is unavailable during Jul 5 - Jul 5 +in.heating_unavailable_period Jul 5 - Jul 7 Heating is unavailable during Jul 5 - Jul 7 +in.heating_unavailable_period Jul 5 - Oct 2 Heating is unavailable during Jul 5 - Oct 2 +in.heating_unavailable_period Jul 6 - Jul 12 Heating is unavailable during Jul 6 - Jul 12 +in.heating_unavailable_period Jul 6 - Jul 6 Heating is unavailable during Jul 6 - Jul 6 +in.heating_unavailable_period Jul 6 - Jul 8 Heating is unavailable during Jul 6 - Jul 8 +in.heating_unavailable_period Jul 6 - Oct 3 Heating is unavailable during Jul 6 - Oct 3 +in.heating_unavailable_period Jul 7 - Jul 13 Heating is unavailable during Jul 7 - Jul 13 +in.heating_unavailable_period Jul 7 - Jul 20 Heating is unavailable during Jul 7 - Jul 20 +in.heating_unavailable_period Jul 7 - Jul 9 Heating is unavailable during Jul 7 - Jul 9 +in.heating_unavailable_period Jul 8 - Aug 6 Heating is unavailable during Jul 8 - Aug 6 +in.heating_unavailable_period Jul 8 - Jul 10 Heating is unavailable during Jul 8 - Jul 10 +in.heating_unavailable_period Jul 8 - Jul 8 Heating is unavailable during Jul 8 - Jul 8 +in.heating_unavailable_period Jul 8 - Oct 5 Heating is unavailable during Jul 8 - Oct 5 +in.heating_unavailable_period Jul 9 - Aug 7 Heating is unavailable during Jul 9 - Aug 7 +in.heating_unavailable_period Jul 9 - Jul 11 Heating is unavailable during Jul 9 - Jul 11 +in.heating_unavailable_period Jul 9 - Jul 15 Heating is unavailable during Jul 9 - Jul 15 +in.heating_unavailable_period Jul 9 - Jul 22 Heating is unavailable during Jul 9 - Jul 22 +in.heating_unavailable_period Jun 1 - Aug 29 Heating is unavailable during Jun 1 - Aug 29 +in.heating_unavailable_period Jun 1 - Jun 1 Heating is unavailable during Jun 1 - Jun 1 +in.heating_unavailable_period Jun 1 - Jun 14 Heating is unavailable during Jun 1 - Jun 14 +in.heating_unavailable_period Jun 1 - Jun 3 Heating is unavailable during Jun 1 - Jun 3 +in.heating_unavailable_period Jun 1 - Jun 7 Heating is unavailable during Jun 1 - Jun 7 +in.heating_unavailable_period Jun 10 - Jul 9 Heating is unavailable during Jun 10 - Jul 9 +in.heating_unavailable_period Jun 10 - Jun 10 Heating is unavailable during Jun 10 - Jun 10 +in.heating_unavailable_period Jun 10 - Jun 12 Heating is unavailable during Jun 10 - Jun 12 +in.heating_unavailable_period Jun 10 - Jun 16 Heating is unavailable during Jun 10 - Jun 16 +in.heating_unavailable_period Jun 10 - Sep 7 Heating is unavailable during Jun 10 - Sep 7 +in.heating_unavailable_period Jun 11 - Jul 10 Heating is unavailable during Jun 11 - Jul 10 +in.heating_unavailable_period Jun 11 - Jun 11 Heating is unavailable during Jun 11 - Jun 11 +in.heating_unavailable_period Jun 11 - Jun 13 Heating is unavailable during Jun 11 - Jun 13 +in.heating_unavailable_period Jun 11 - Jun 17 Heating is unavailable during Jun 11 - Jun 17 +in.heating_unavailable_period Jun 11 - Jun 24 Heating is unavailable during Jun 11 - Jun 24 +in.heating_unavailable_period Jun 11 - Sep 8 Heating is unavailable during Jun 11 - Sep 8 +in.heating_unavailable_period Jun 12 - Jul 11 Heating is unavailable during Jun 12 - Jul 11 +in.heating_unavailable_period Jun 12 - Jun 12 Heating is unavailable during Jun 12 - Jun 12 +in.heating_unavailable_period Jun 12 - Jun 14 Heating is unavailable during Jun 12 - Jun 14 +in.heating_unavailable_period Jun 12 - Jun 18 Heating is unavailable during Jun 12 - Jun 18 +in.heating_unavailable_period Jun 12 - Jun 25 Heating is unavailable during Jun 12 - Jun 25 +in.heating_unavailable_period Jun 12 - Sep 9 Heating is unavailable during Jun 12 - Sep 9 +in.heating_unavailable_period Jun 13 - Jun 13 Heating is unavailable during Jun 13 - Jun 13 +in.heating_unavailable_period Jun 13 - Jun 15 Heating is unavailable during Jun 13 - Jun 15 +in.heating_unavailable_period Jun 13 - Sep 10 Heating is unavailable during Jun 13 - Sep 10 +in.heating_unavailable_period Jun 14 - Jul 13 Heating is unavailable during Jun 14 - Jul 13 +in.heating_unavailable_period Jun 14 - Jun 14 Heating is unavailable during Jun 14 - Jun 14 +in.heating_unavailable_period Jun 14 - Jun 16 Heating is unavailable during Jun 14 - Jun 16 +in.heating_unavailable_period Jun 14 - Jun 20 Heating is unavailable during Jun 14 - Jun 20 +in.heating_unavailable_period Jun 14 - Sep 11 Heating is unavailable during Jun 14 - Sep 11 +in.heating_unavailable_period Jun 15 - Jul 14 Heating is unavailable during Jun 15 - Jul 14 +in.heating_unavailable_period Jun 15 - Jun 15 Heating is unavailable during Jun 15 - Jun 15 +in.heating_unavailable_period Jun 15 - Jun 17 Heating is unavailable during Jun 15 - Jun 17 +in.heating_unavailable_period Jun 15 - Jun 21 Heating is unavailable during Jun 15 - Jun 21 +in.heating_unavailable_period Jun 15 - Jun 28 Heating is unavailable during Jun 15 - Jun 28 +in.heating_unavailable_period Jun 16 - Jul 15 Heating is unavailable during Jun 16 - Jul 15 +in.heating_unavailable_period Jun 16 - Jun 16 Heating is unavailable during Jun 16 - Jun 16 +in.heating_unavailable_period Jun 16 - Jun 18 Heating is unavailable during Jun 16 - Jun 18 +in.heating_unavailable_period Jun 16 - Jun 22 Heating is unavailable during Jun 16 - Jun 22 +in.heating_unavailable_period Jun 16 - Jun 29 Heating is unavailable during Jun 16 - Jun 29 +in.heating_unavailable_period Jun 16 - Sep 13 Heating is unavailable during Jun 16 - Sep 13 +in.heating_unavailable_period Jun 17 - Jul 16 Heating is unavailable during Jun 17 - Jul 16 +in.heating_unavailable_period Jun 17 - Jun 17 Heating is unavailable during Jun 17 - Jun 17 +in.heating_unavailable_period Jun 17 - Jun 19 Heating is unavailable during Jun 17 - Jun 19 +in.heating_unavailable_period Jun 17 - Jun 23 Heating is unavailable during Jun 17 - Jun 23 +in.heating_unavailable_period Jun 17 - Jun 30 Heating is unavailable during Jun 17 - Jun 30 +in.heating_unavailable_period Jun 17 - Sep 14 Heating is unavailable during Jun 17 - Sep 14 +in.heating_unavailable_period Jun 18 - Jul 1 Heating is unavailable during Jun 18 - Jul 1 +in.heating_unavailable_period Jun 18 - Jul 17 Heating is unavailable during Jun 18 - Jul 17 +in.heating_unavailable_period Jun 18 - Jun 18 Heating is unavailable during Jun 18 - Jun 18 +in.heating_unavailable_period Jun 18 - Jun 20 Heating is unavailable during Jun 18 - Jun 20 +in.heating_unavailable_period Jun 18 - Jun 24 Heating is unavailable during Jun 18 - Jun 24 +in.heating_unavailable_period Jun 18 - Sep 15 Heating is unavailable during Jun 18 - Sep 15 +in.heating_unavailable_period Jun 19 - Jul 18 Heating is unavailable during Jun 19 - Jul 18 +in.heating_unavailable_period Jun 19 - Jul 2 Heating is unavailable during Jun 19 - Jul 2 +in.heating_unavailable_period Jun 19 - Jun 19 Heating is unavailable during Jun 19 - Jun 19 +in.heating_unavailable_period Jun 19 - Jun 21 Heating is unavailable during Jun 19 - Jun 21 +in.heating_unavailable_period Jun 19 - Jun 25 Heating is unavailable during Jun 19 - Jun 25 +in.heating_unavailable_period Jun 19 - Sep 16 Heating is unavailable during Jun 19 - Sep 16 +in.heating_unavailable_period Jun 2 - Aug 30 Heating is unavailable during Jun 2 - Aug 30 +in.heating_unavailable_period Jun 2 - Jul 1 Heating is unavailable during Jun 2 - Jul 1 +in.heating_unavailable_period Jun 2 - Jun 15 Heating is unavailable during Jun 2 - Jun 15 +in.heating_unavailable_period Jun 2 - Jun 2 Heating is unavailable during Jun 2 - Jun 2 +in.heating_unavailable_period Jun 2 - Jun 4 Heating is unavailable during Jun 2 - Jun 4 +in.heating_unavailable_period Jun 2 - Jun 8 Heating is unavailable during Jun 2 - Jun 8 +in.heating_unavailable_period Jun 20 - Jul 19 Heating is unavailable during Jun 20 - Jul 19 +in.heating_unavailable_period Jun 20 - Jul 3 Heating is unavailable during Jun 20 - Jul 3 +in.heating_unavailable_period Jun 20 - Jun 20 Heating is unavailable during Jun 20 - Jun 20 +in.heating_unavailable_period Jun 20 - Jun 22 Heating is unavailable during Jun 20 - Jun 22 +in.heating_unavailable_period Jun 20 - Jun 26 Heating is unavailable during Jun 20 - Jun 26 +in.heating_unavailable_period Jun 20 - Sep 17 Heating is unavailable during Jun 20 - Sep 17 +in.heating_unavailable_period Jun 21 - Jul 20 Heating is unavailable during Jun 21 - Jul 20 +in.heating_unavailable_period Jun 21 - Jul 4 Heating is unavailable during Jun 21 - Jul 4 +in.heating_unavailable_period Jun 21 - Jun 21 Heating is unavailable during Jun 21 - Jun 21 +in.heating_unavailable_period Jun 21 - Jun 23 Heating is unavailable during Jun 21 - Jun 23 +in.heating_unavailable_period Jun 21 - Jun 27 Heating is unavailable during Jun 21 - Jun 27 +in.heating_unavailable_period Jun 22 - Jul 21 Heating is unavailable during Jun 22 - Jul 21 +in.heating_unavailable_period Jun 22 - Jul 5 Heating is unavailable during Jun 22 - Jul 5 +in.heating_unavailable_period Jun 22 - Jun 22 Heating is unavailable during Jun 22 - Jun 22 +in.heating_unavailable_period Jun 22 - Jun 24 Heating is unavailable during Jun 22 - Jun 24 +in.heating_unavailable_period Jun 22 - Jun 28 Heating is unavailable during Jun 22 - Jun 28 +in.heating_unavailable_period Jun 22 - Sep 19 Heating is unavailable during Jun 22 - Sep 19 +in.heating_unavailable_period Jun 23 - Jul 22 Heating is unavailable during Jun 23 - Jul 22 +in.heating_unavailable_period Jun 23 - Jul 6 Heating is unavailable during Jun 23 - Jul 6 +in.heating_unavailable_period Jun 23 - Jun 23 Heating is unavailable during Jun 23 - Jun 23 +in.heating_unavailable_period Jun 23 - Jun 25 Heating is unavailable during Jun 23 - Jun 25 +in.heating_unavailable_period Jun 23 - Jun 29 Heating is unavailable during Jun 23 - Jun 29 +in.heating_unavailable_period Jun 23 - Sep 20 Heating is unavailable during Jun 23 - Sep 20 +in.heating_unavailable_period Jun 24 - Jul 23 Heating is unavailable during Jun 24 - Jul 23 +in.heating_unavailable_period Jun 24 - Jul 7 Heating is unavailable during Jun 24 - Jul 7 +in.heating_unavailable_period Jun 24 - Jun 24 Heating is unavailable during Jun 24 - Jun 24 +in.heating_unavailable_period Jun 24 - Jun 26 Heating is unavailable during Jun 24 - Jun 26 +in.heating_unavailable_period Jun 24 - Jun 30 Heating is unavailable during Jun 24 - Jun 30 +in.heating_unavailable_period Jun 24 - Sep 21 Heating is unavailable during Jun 24 - Sep 21 +in.heating_unavailable_period Jun 25 - Jul 1 Heating is unavailable during Jun 25 - Jul 1 +in.heating_unavailable_period Jun 25 - Jul 24 Heating is unavailable during Jun 25 - Jul 24 +in.heating_unavailable_period Jun 25 - Jul 8 Heating is unavailable during Jun 25 - Jul 8 +in.heating_unavailable_period Jun 25 - Jun 25 Heating is unavailable during Jun 25 - Jun 25 +in.heating_unavailable_period Jun 25 - Jun 27 Heating is unavailable during Jun 25 - Jun 27 +in.heating_unavailable_period Jun 25 - Sep 22 Heating is unavailable during Jun 25 - Sep 22 +in.heating_unavailable_period Jun 26 - Jul 2 Heating is unavailable during Jun 26 - Jul 2 +in.heating_unavailable_period Jun 26 - Jul 25 Heating is unavailable during Jun 26 - Jul 25 +in.heating_unavailable_period Jun 26 - Jun 26 Heating is unavailable during Jun 26 - Jun 26 +in.heating_unavailable_period Jun 26 - Jun 28 Heating is unavailable during Jun 26 - Jun 28 +in.heating_unavailable_period Jun 26 - Sep 23 Heating is unavailable during Jun 26 - Sep 23 +in.heating_unavailable_period Jun 27 - Jul 26 Heating is unavailable during Jun 27 - Jul 26 +in.heating_unavailable_period Jun 27 - Jul 3 Heating is unavailable during Jun 27 - Jul 3 +in.heating_unavailable_period Jun 27 - Jun 27 Heating is unavailable during Jun 27 - Jun 27 +in.heating_unavailable_period Jun 27 - Jun 29 Heating is unavailable during Jun 27 - Jun 29 +in.heating_unavailable_period Jun 27 - Sep 24 Heating is unavailable during Jun 27 - Sep 24 +in.heating_unavailable_period Jun 28 - Jul 11 Heating is unavailable during Jun 28 - Jul 11 +in.heating_unavailable_period Jun 28 - Jul 4 Heating is unavailable during Jun 28 - Jul 4 +in.heating_unavailable_period Jun 28 - Jun 28 Heating is unavailable during Jun 28 - Jun 28 +in.heating_unavailable_period Jun 28 - Jun 30 Heating is unavailable during Jun 28 - Jun 30 +in.heating_unavailable_period Jun 28 - Sep 25 Heating is unavailable during Jun 28 - Sep 25 +in.heating_unavailable_period Jun 29 - Jul 1 Heating is unavailable during Jun 29 - Jul 1 +in.heating_unavailable_period Jun 29 - Jul 12 Heating is unavailable during Jun 29 - Jul 12 +in.heating_unavailable_period Jun 29 - Jul 28 Heating is unavailable during Jun 29 - Jul 28 +in.heating_unavailable_period Jun 29 - Jul 5 Heating is unavailable during Jun 29 - Jul 5 +in.heating_unavailable_period Jun 29 - Jun 29 Heating is unavailable during Jun 29 - Jun 29 +in.heating_unavailable_period Jun 29 - Sep 26 Heating is unavailable during Jun 29 - Sep 26 +in.heating_unavailable_period Jun 3 - Aug 31 Heating is unavailable during Jun 3 - Aug 31 +in.heating_unavailable_period Jun 3 - Jul 2 Heating is unavailable during Jun 3 - Jul 2 +in.heating_unavailable_period Jun 3 - Jun 16 Heating is unavailable during Jun 3 - Jun 16 +in.heating_unavailable_period Jun 3 - Jun 3 Heating is unavailable during Jun 3 - Jun 3 +in.heating_unavailable_period Jun 3 - Jun 5 Heating is unavailable during Jun 3 - Jun 5 +in.heating_unavailable_period Jun 3 - Jun 9 Heating is unavailable during Jun 3 - Jun 9 +in.heating_unavailable_period Jun 30 - Jul 13 Heating is unavailable during Jun 30 - Jul 13 +in.heating_unavailable_period Jun 30 - Jul 2 Heating is unavailable during Jun 30 - Jul 2 +in.heating_unavailable_period Jun 30 - Jul 29 Heating is unavailable during Jun 30 - Jul 29 +in.heating_unavailable_period Jun 30 - Jul 6 Heating is unavailable during Jun 30 - Jul 6 +in.heating_unavailable_period Jun 30 - Jun 30 Heating is unavailable during Jun 30 - Jun 30 +in.heating_unavailable_period Jun 30 - Sep 27 Heating is unavailable during Jun 30 - Sep 27 +in.heating_unavailable_period Jun 4 - Jul 3 Heating is unavailable during Jun 4 - Jul 3 +in.heating_unavailable_period Jun 4 - Jun 10 Heating is unavailable during Jun 4 - Jun 10 +in.heating_unavailable_period Jun 4 - Jun 17 Heating is unavailable during Jun 4 - Jun 17 +in.heating_unavailable_period Jun 4 - Jun 4 Heating is unavailable during Jun 4 - Jun 4 +in.heating_unavailable_period Jun 4 - Jun 6 Heating is unavailable during Jun 4 - Jun 6 +in.heating_unavailable_period Jun 4 - Sep 1 Heating is unavailable during Jun 4 - Sep 1 +in.heating_unavailable_period Jun 5 - Jul 4 Heating is unavailable during Jun 5 - Jul 4 +in.heating_unavailable_period Jun 5 - Jun 11 Heating is unavailable during Jun 5 - Jun 11 +in.heating_unavailable_period Jun 5 - Jun 18 Heating is unavailable during Jun 5 - Jun 18 +in.heating_unavailable_period Jun 5 - Jun 5 Heating is unavailable during Jun 5 - Jun 5 +in.heating_unavailable_period Jun 5 - Jun 7 Heating is unavailable during Jun 5 - Jun 7 +in.heating_unavailable_period Jun 6 - Jul 5 Heating is unavailable during Jun 6 - Jul 5 +in.heating_unavailable_period Jun 6 - Jun 12 Heating is unavailable during Jun 6 - Jun 12 +in.heating_unavailable_period Jun 6 - Jun 19 Heating is unavailable during Jun 6 - Jun 19 +in.heating_unavailable_period Jun 6 - Jun 6 Heating is unavailable during Jun 6 - Jun 6 +in.heating_unavailable_period Jun 6 - Jun 8 Heating is unavailable during Jun 6 - Jun 8 +in.heating_unavailable_period Jun 6 - Sep 3 Heating is unavailable during Jun 6 - Sep 3 +in.heating_unavailable_period Jun 7 - Jul 6 Heating is unavailable during Jun 7 - Jul 6 +in.heating_unavailable_period Jun 7 - Jun 13 Heating is unavailable during Jun 7 - Jun 13 +in.heating_unavailable_period Jun 7 - Jun 20 Heating is unavailable during Jun 7 - Jun 20 +in.heating_unavailable_period Jun 7 - Jun 7 Heating is unavailable during Jun 7 - Jun 7 +in.heating_unavailable_period Jun 7 - Jun 9 Heating is unavailable during Jun 7 - Jun 9 +in.heating_unavailable_period Jun 8 - Jul 7 Heating is unavailable during Jun 8 - Jul 7 +in.heating_unavailable_period Jun 8 - Jun 10 Heating is unavailable during Jun 8 - Jun 10 +in.heating_unavailable_period Jun 8 - Jun 14 Heating is unavailable during Jun 8 - Jun 14 +in.heating_unavailable_period Jun 8 - Jun 21 Heating is unavailable during Jun 8 - Jun 21 +in.heating_unavailable_period Jun 8 - Jun 8 Heating is unavailable during Jun 8 - Jun 8 +in.heating_unavailable_period Jun 9 - Jul 8 Heating is unavailable during Jun 9 - Jul 8 +in.heating_unavailable_period Jun 9 - Jun 11 Heating is unavailable during Jun 9 - Jun 11 +in.heating_unavailable_period Jun 9 - Jun 22 Heating is unavailable during Jun 9 - Jun 22 +in.heating_unavailable_period Jun 9 - Jun 9 Heating is unavailable during Jun 9 - Jun 9 +in.heating_unavailable_period Jun 9 - Sep 6 Heating is unavailable during Jun 9 - Sep 6 +in.heating_unavailable_period Mar 1 - Mar 1 Heating is unavailable during Mar 1 - Mar 1 +in.heating_unavailable_period Mar 1 - Mar 14 Heating is unavailable during Mar 1 - Mar 14 +in.heating_unavailable_period Mar 1 - Mar 3 Heating is unavailable during Mar 1 - Mar 3 +in.heating_unavailable_period Mar 1 - Mar 30 Heating is unavailable during Mar 1 - Mar 30 +in.heating_unavailable_period Mar 1 - Mar 7 Heating is unavailable during Mar 1 - Mar 7 +in.heating_unavailable_period Mar 1 - May 29 Heating is unavailable during Mar 1 - May 29 +in.heating_unavailable_period Mar 10 - Apr 8 Heating is unavailable during Mar 10 - Apr 8 +in.heating_unavailable_period Mar 10 - Jun 7 Heating is unavailable during Mar 10 - Jun 7 +in.heating_unavailable_period Mar 10 - Mar 10 Heating is unavailable during Mar 10 - Mar 10 +in.heating_unavailable_period Mar 10 - Mar 12 Heating is unavailable during Mar 10 - Mar 12 +in.heating_unavailable_period Mar 10 - Mar 16 Heating is unavailable during Mar 10 - Mar 16 +in.heating_unavailable_period Mar 10 - Mar 23 Heating is unavailable during Mar 10 - Mar 23 +in.heating_unavailable_period Mar 11 - Apr 9 Heating is unavailable during Mar 11 - Apr 9 +in.heating_unavailable_period Mar 11 - Jun 8 Heating is unavailable during Mar 11 - Jun 8 +in.heating_unavailable_period Mar 11 - Mar 11 Heating is unavailable during Mar 11 - Mar 11 +in.heating_unavailable_period Mar 11 - Mar 13 Heating is unavailable during Mar 11 - Mar 13 +in.heating_unavailable_period Mar 11 - Mar 17 Heating is unavailable during Mar 11 - Mar 17 +in.heating_unavailable_period Mar 11 - Mar 24 Heating is unavailable during Mar 11 - Mar 24 +in.heating_unavailable_period Mar 12 - Apr 10 Heating is unavailable during Mar 12 - Apr 10 +in.heating_unavailable_period Mar 12 - Jun 9 Heating is unavailable during Mar 12 - Jun 9 +in.heating_unavailable_period Mar 12 - Mar 12 Heating is unavailable during Mar 12 - Mar 12 +in.heating_unavailable_period Mar 12 - Mar 14 Heating is unavailable during Mar 12 - Mar 14 +in.heating_unavailable_period Mar 12 - Mar 18 Heating is unavailable during Mar 12 - Mar 18 +in.heating_unavailable_period Mar 12 - Mar 25 Heating is unavailable during Mar 12 - Mar 25 +in.heating_unavailable_period Mar 13 - Apr 11 Heating is unavailable during Mar 13 - Apr 11 +in.heating_unavailable_period Mar 13 - Jun 10 Heating is unavailable during Mar 13 - Jun 10 +in.heating_unavailable_period Mar 13 - Mar 13 Heating is unavailable during Mar 13 - Mar 13 +in.heating_unavailable_period Mar 13 - Mar 15 Heating is unavailable during Mar 13 - Mar 15 +in.heating_unavailable_period Mar 13 - Mar 19 Heating is unavailable during Mar 13 - Mar 19 +in.heating_unavailable_period Mar 13 - Mar 26 Heating is unavailable during Mar 13 - Mar 26 +in.heating_unavailable_period Mar 14 - Apr 12 Heating is unavailable during Mar 14 - Apr 12 +in.heating_unavailable_period Mar 14 - Jun 11 Heating is unavailable during Mar 14 - Jun 11 +in.heating_unavailable_period Mar 14 - Mar 14 Heating is unavailable during Mar 14 - Mar 14 +in.heating_unavailable_period Mar 14 - Mar 16 Heating is unavailable during Mar 14 - Mar 16 +in.heating_unavailable_period Mar 14 - Mar 20 Heating is unavailable during Mar 14 - Mar 20 +in.heating_unavailable_period Mar 14 - Mar 27 Heating is unavailable during Mar 14 - Mar 27 +in.heating_unavailable_period Mar 15 - Apr 13 Heating is unavailable during Mar 15 - Apr 13 +in.heating_unavailable_period Mar 15 - Jun 12 Heating is unavailable during Mar 15 - Jun 12 +in.heating_unavailable_period Mar 15 - Mar 15 Heating is unavailable during Mar 15 - Mar 15 +in.heating_unavailable_period Mar 15 - Mar 17 Heating is unavailable during Mar 15 - Mar 17 +in.heating_unavailable_period Mar 15 - Mar 21 Heating is unavailable during Mar 15 - Mar 21 +in.heating_unavailable_period Mar 15 - Mar 28 Heating is unavailable during Mar 15 - Mar 28 +in.heating_unavailable_period Mar 16 - Apr 14 Heating is unavailable during Mar 16 - Apr 14 +in.heating_unavailable_period Mar 16 - Jun 13 Heating is unavailable during Mar 16 - Jun 13 +in.heating_unavailable_period Mar 16 - Mar 16 Heating is unavailable during Mar 16 - Mar 16 +in.heating_unavailable_period Mar 16 - Mar 18 Heating is unavailable during Mar 16 - Mar 18 +in.heating_unavailable_period Mar 16 - Mar 22 Heating is unavailable during Mar 16 - Mar 22 +in.heating_unavailable_period Mar 16 - Mar 29 Heating is unavailable during Mar 16 - Mar 29 +in.heating_unavailable_period Mar 17 - Apr 15 Heating is unavailable during Mar 17 - Apr 15 +in.heating_unavailable_period Mar 17 - Jun 14 Heating is unavailable during Mar 17 - Jun 14 +in.heating_unavailable_period Mar 17 - Mar 17 Heating is unavailable during Mar 17 - Mar 17 +in.heating_unavailable_period Mar 17 - Mar 19 Heating is unavailable during Mar 17 - Mar 19 +in.heating_unavailable_period Mar 17 - Mar 23 Heating is unavailable during Mar 17 - Mar 23 +in.heating_unavailable_period Mar 17 - Mar 30 Heating is unavailable during Mar 17 - Mar 30 +in.heating_unavailable_period Mar 18 - Apr 16 Heating is unavailable during Mar 18 - Apr 16 +in.heating_unavailable_period Mar 18 - Jun 15 Heating is unavailable during Mar 18 - Jun 15 +in.heating_unavailable_period Mar 18 - Mar 18 Heating is unavailable during Mar 18 - Mar 18 +in.heating_unavailable_period Mar 18 - Mar 20 Heating is unavailable during Mar 18 - Mar 20 +in.heating_unavailable_period Mar 18 - Mar 24 Heating is unavailable during Mar 18 - Mar 24 +in.heating_unavailable_period Mar 18 - Mar 31 Heating is unavailable during Mar 18 - Mar 31 +in.heating_unavailable_period Mar 19 - Apr 1 Heating is unavailable during Mar 19 - Apr 1 +in.heating_unavailable_period Mar 19 - Apr 17 Heating is unavailable during Mar 19 - Apr 17 +in.heating_unavailable_period Mar 19 - Jun 16 Heating is unavailable during Mar 19 - Jun 16 +in.heating_unavailable_period Mar 19 - Mar 19 Heating is unavailable during Mar 19 - Mar 19 +in.heating_unavailable_period Mar 19 - Mar 21 Heating is unavailable during Mar 19 - Mar 21 +in.heating_unavailable_period Mar 19 - Mar 25 Heating is unavailable during Mar 19 - Mar 25 +in.heating_unavailable_period Mar 2 - Mar 15 Heating is unavailable during Mar 2 - Mar 15 +in.heating_unavailable_period Mar 2 - Mar 2 Heating is unavailable during Mar 2 - Mar 2 +in.heating_unavailable_period Mar 2 - Mar 31 Heating is unavailable during Mar 2 - Mar 31 +in.heating_unavailable_period Mar 2 - Mar 4 Heating is unavailable during Mar 2 - Mar 4 +in.heating_unavailable_period Mar 2 - Mar 8 Heating is unavailable during Mar 2 - Mar 8 +in.heating_unavailable_period Mar 2 - May 30 Heating is unavailable during Mar 2 - May 30 +in.heating_unavailable_period Mar 20 - Apr 18 Heating is unavailable during Mar 20 - Apr 18 +in.heating_unavailable_period Mar 20 - Apr 2 Heating is unavailable during Mar 20 - Apr 2 +in.heating_unavailable_period Mar 20 - Jun 17 Heating is unavailable during Mar 20 - Jun 17 +in.heating_unavailable_period Mar 20 - Mar 20 Heating is unavailable during Mar 20 - Mar 20 +in.heating_unavailable_period Mar 20 - Mar 22 Heating is unavailable during Mar 20 - Mar 22 +in.heating_unavailable_period Mar 20 - Mar 26 Heating is unavailable during Mar 20 - Mar 26 +in.heating_unavailable_period Mar 21 - Apr 19 Heating is unavailable during Mar 21 - Apr 19 +in.heating_unavailable_period Mar 21 - Apr 3 Heating is unavailable during Mar 21 - Apr 3 +in.heating_unavailable_period Mar 21 - Jun 18 Heating is unavailable during Mar 21 - Jun 18 +in.heating_unavailable_period Mar 21 - Mar 21 Heating is unavailable during Mar 21 - Mar 21 +in.heating_unavailable_period Mar 21 - Mar 23 Heating is unavailable during Mar 21 - Mar 23 +in.heating_unavailable_period Mar 21 - Mar 27 Heating is unavailable during Mar 21 - Mar 27 +in.heating_unavailable_period Mar 22 - Apr 20 Heating is unavailable during Mar 22 - Apr 20 +in.heating_unavailable_period Mar 22 - Apr 4 Heating is unavailable during Mar 22 - Apr 4 +in.heating_unavailable_period Mar 22 - Jun 19 Heating is unavailable during Mar 22 - Jun 19 +in.heating_unavailable_period Mar 22 - Mar 22 Heating is unavailable during Mar 22 - Mar 22 +in.heating_unavailable_period Mar 22 - Mar 24 Heating is unavailable during Mar 22 - Mar 24 +in.heating_unavailable_period Mar 22 - Mar 28 Heating is unavailable during Mar 22 - Mar 28 +in.heating_unavailable_period Mar 23 - Apr 21 Heating is unavailable during Mar 23 - Apr 21 +in.heating_unavailable_period Mar 23 - Apr 5 Heating is unavailable during Mar 23 - Apr 5 +in.heating_unavailable_period Mar 23 - Jun 20 Heating is unavailable during Mar 23 - Jun 20 +in.heating_unavailable_period Mar 23 - Mar 23 Heating is unavailable during Mar 23 - Mar 23 +in.heating_unavailable_period Mar 23 - Mar 25 Heating is unavailable during Mar 23 - Mar 25 +in.heating_unavailable_period Mar 23 - Mar 29 Heating is unavailable during Mar 23 - Mar 29 +in.heating_unavailable_period Mar 24 - Apr 22 Heating is unavailable during Mar 24 - Apr 22 +in.heating_unavailable_period Mar 24 - Apr 6 Heating is unavailable during Mar 24 - Apr 6 +in.heating_unavailable_period Mar 24 - Jun 21 Heating is unavailable during Mar 24 - Jun 21 +in.heating_unavailable_period Mar 24 - Mar 24 Heating is unavailable during Mar 24 - Mar 24 +in.heating_unavailable_period Mar 24 - Mar 26 Heating is unavailable during Mar 24 - Mar 26 +in.heating_unavailable_period Mar 24 - Mar 30 Heating is unavailable during Mar 24 - Mar 30 +in.heating_unavailable_period Mar 25 - Apr 23 Heating is unavailable during Mar 25 - Apr 23 +in.heating_unavailable_period Mar 25 - Apr 7 Heating is unavailable during Mar 25 - Apr 7 +in.heating_unavailable_period Mar 25 - Jun 22 Heating is unavailable during Mar 25 - Jun 22 +in.heating_unavailable_period Mar 25 - Mar 25 Heating is unavailable during Mar 25 - Mar 25 +in.heating_unavailable_period Mar 25 - Mar 27 Heating is unavailable during Mar 25 - Mar 27 +in.heating_unavailable_period Mar 25 - Mar 31 Heating is unavailable during Mar 25 - Mar 31 +in.heating_unavailable_period Mar 26 - Apr 1 Heating is unavailable during Mar 26 - Apr 1 +in.heating_unavailable_period Mar 26 - Apr 24 Heating is unavailable during Mar 26 - Apr 24 +in.heating_unavailable_period Mar 26 - Apr 8 Heating is unavailable during Mar 26 - Apr 8 +in.heating_unavailable_period Mar 26 - Jun 23 Heating is unavailable during Mar 26 - Jun 23 +in.heating_unavailable_period Mar 26 - Mar 26 Heating is unavailable during Mar 26 - Mar 26 +in.heating_unavailable_period Mar 26 - Mar 28 Heating is unavailable during Mar 26 - Mar 28 +in.heating_unavailable_period Mar 27 - Apr 2 Heating is unavailable during Mar 27 - Apr 2 +in.heating_unavailable_period Mar 27 - Apr 25 Heating is unavailable during Mar 27 - Apr 25 +in.heating_unavailable_period Mar 27 - Apr 9 Heating is unavailable during Mar 27 - Apr 9 +in.heating_unavailable_period Mar 27 - Jun 24 Heating is unavailable during Mar 27 - Jun 24 +in.heating_unavailable_period Mar 27 - Mar 27 Heating is unavailable during Mar 27 - Mar 27 +in.heating_unavailable_period Mar 27 - Mar 29 Heating is unavailable during Mar 27 - Mar 29 +in.heating_unavailable_period Mar 28 - Apr 10 Heating is unavailable during Mar 28 - Apr 10 +in.heating_unavailable_period Mar 28 - Apr 26 Heating is unavailable during Mar 28 - Apr 26 +in.heating_unavailable_period Mar 28 - Apr 3 Heating is unavailable during Mar 28 - Apr 3 +in.heating_unavailable_period Mar 28 - Jun 25 Heating is unavailable during Mar 28 - Jun 25 +in.heating_unavailable_period Mar 28 - Mar 28 Heating is unavailable during Mar 28 - Mar 28 +in.heating_unavailable_period Mar 28 - Mar 30 Heating is unavailable during Mar 28 - Mar 30 +in.heating_unavailable_period Mar 29 - Apr 11 Heating is unavailable during Mar 29 - Apr 11 +in.heating_unavailable_period Mar 29 - Apr 27 Heating is unavailable during Mar 29 - Apr 27 +in.heating_unavailable_period Mar 29 - Apr 4 Heating is unavailable during Mar 29 - Apr 4 +in.heating_unavailable_period Mar 29 - Jun 26 Heating is unavailable during Mar 29 - Jun 26 +in.heating_unavailable_period Mar 29 - Mar 29 Heating is unavailable during Mar 29 - Mar 29 +in.heating_unavailable_period Mar 29 - Mar 31 Heating is unavailable during Mar 29 - Mar 31 +in.heating_unavailable_period Mar 3 - Apr 1 Heating is unavailable during Mar 3 - Apr 1 +in.heating_unavailable_period Mar 3 - Mar 16 Heating is unavailable during Mar 3 - Mar 16 +in.heating_unavailable_period Mar 3 - Mar 3 Heating is unavailable during Mar 3 - Mar 3 +in.heating_unavailable_period Mar 3 - Mar 5 Heating is unavailable during Mar 3 - Mar 5 +in.heating_unavailable_period Mar 3 - Mar 9 Heating is unavailable during Mar 3 - Mar 9 +in.heating_unavailable_period Mar 3 - May 31 Heating is unavailable during Mar 3 - May 31 +in.heating_unavailable_period Mar 30 - Apr 1 Heating is unavailable during Mar 30 - Apr 1 +in.heating_unavailable_period Mar 30 - Apr 12 Heating is unavailable during Mar 30 - Apr 12 +in.heating_unavailable_period Mar 30 - Apr 28 Heating is unavailable during Mar 30 - Apr 28 +in.heating_unavailable_period Mar 30 - Apr 5 Heating is unavailable during Mar 30 - Apr 5 +in.heating_unavailable_period Mar 30 - Jun 27 Heating is unavailable during Mar 30 - Jun 27 +in.heating_unavailable_period Mar 30 - Mar 30 Heating is unavailable during Mar 30 - Mar 30 +in.heating_unavailable_period Mar 31 - Apr 13 Heating is unavailable during Mar 31 - Apr 13 +in.heating_unavailable_period Mar 31 - Apr 2 Heating is unavailable during Mar 31 - Apr 2 +in.heating_unavailable_period Mar 31 - Apr 29 Heating is unavailable during Mar 31 - Apr 29 +in.heating_unavailable_period Mar 31 - Apr 6 Heating is unavailable during Mar 31 - Apr 6 +in.heating_unavailable_period Mar 31 - Jun 28 Heating is unavailable during Mar 31 - Jun 28 +in.heating_unavailable_period Mar 31 - Mar 31 Heating is unavailable during Mar 31 - Mar 31 +in.heating_unavailable_period Mar 4 - Apr 2 Heating is unavailable during Mar 4 - Apr 2 +in.heating_unavailable_period Mar 4 - Jun 1 Heating is unavailable during Mar 4 - Jun 1 +in.heating_unavailable_period Mar 4 - Mar 10 Heating is unavailable during Mar 4 - Mar 10 +in.heating_unavailable_period Mar 4 - Mar 17 Heating is unavailable during Mar 4 - Mar 17 +in.heating_unavailable_period Mar 4 - Mar 4 Heating is unavailable during Mar 4 - Mar 4 +in.heating_unavailable_period Mar 4 - Mar 6 Heating is unavailable during Mar 4 - Mar 6 +in.heating_unavailable_period Mar 5 - Apr 3 Heating is unavailable during Mar 5 - Apr 3 +in.heating_unavailable_period Mar 5 - Jun 2 Heating is unavailable during Mar 5 - Jun 2 +in.heating_unavailable_period Mar 5 - Mar 11 Heating is unavailable during Mar 5 - Mar 11 +in.heating_unavailable_period Mar 5 - Mar 18 Heating is unavailable during Mar 5 - Mar 18 +in.heating_unavailable_period Mar 5 - Mar 5 Heating is unavailable during Mar 5 - Mar 5 +in.heating_unavailable_period Mar 5 - Mar 7 Heating is unavailable during Mar 5 - Mar 7 +in.heating_unavailable_period Mar 6 - Apr 4 Heating is unavailable during Mar 6 - Apr 4 +in.heating_unavailable_period Mar 6 - Jun 3 Heating is unavailable during Mar 6 - Jun 3 +in.heating_unavailable_period Mar 6 - Mar 12 Heating is unavailable during Mar 6 - Mar 12 +in.heating_unavailable_period Mar 6 - Mar 19 Heating is unavailable during Mar 6 - Mar 19 +in.heating_unavailable_period Mar 6 - Mar 6 Heating is unavailable during Mar 6 - Mar 6 +in.heating_unavailable_period Mar 6 - Mar 8 Heating is unavailable during Mar 6 - Mar 8 +in.heating_unavailable_period Mar 7 - Apr 5 Heating is unavailable during Mar 7 - Apr 5 +in.heating_unavailable_period Mar 7 - Jun 4 Heating is unavailable during Mar 7 - Jun 4 +in.heating_unavailable_period Mar 7 - Mar 13 Heating is unavailable during Mar 7 - Mar 13 +in.heating_unavailable_period Mar 7 - Mar 20 Heating is unavailable during Mar 7 - Mar 20 +in.heating_unavailable_period Mar 7 - Mar 7 Heating is unavailable during Mar 7 - Mar 7 +in.heating_unavailable_period Mar 7 - Mar 9 Heating is unavailable during Mar 7 - Mar 9 +in.heating_unavailable_period Mar 8 - Apr 6 Heating is unavailable during Mar 8 - Apr 6 +in.heating_unavailable_period Mar 8 - Jun 5 Heating is unavailable during Mar 8 - Jun 5 +in.heating_unavailable_period Mar 8 - Mar 10 Heating is unavailable during Mar 8 - Mar 10 +in.heating_unavailable_period Mar 8 - Mar 14 Heating is unavailable during Mar 8 - Mar 14 +in.heating_unavailable_period Mar 8 - Mar 21 Heating is unavailable during Mar 8 - Mar 21 +in.heating_unavailable_period Mar 8 - Mar 8 Heating is unavailable during Mar 8 - Mar 8 +in.heating_unavailable_period Mar 9 - Apr 7 Heating is unavailable during Mar 9 - Apr 7 +in.heating_unavailable_period Mar 9 - Jun 6 Heating is unavailable during Mar 9 - Jun 6 +in.heating_unavailable_period Mar 9 - Mar 11 Heating is unavailable during Mar 9 - Mar 11 +in.heating_unavailable_period Mar 9 - Mar 15 Heating is unavailable during Mar 9 - Mar 15 +in.heating_unavailable_period Mar 9 - Mar 22 Heating is unavailable during Mar 9 - Mar 22 +in.heating_unavailable_period Mar 9 - Mar 9 Heating is unavailable during Mar 9 - Mar 9 +in.heating_unavailable_period May 1 - Jul 29 Heating is unavailable during May 1 - Jul 29 +in.heating_unavailable_period May 1 - May 1 Heating is unavailable during May 1 - May 1 +in.heating_unavailable_period May 1 - May 14 Heating is unavailable during May 1 - May 14 +in.heating_unavailable_period May 1 - May 3 Heating is unavailable during May 1 - May 3 +in.heating_unavailable_period May 1 - May 30 Heating is unavailable during May 1 - May 30 +in.heating_unavailable_period May 1 - May 7 Heating is unavailable during May 1 - May 7 +in.heating_unavailable_period May 10 - Aug 7 Heating is unavailable during May 10 - Aug 7 +in.heating_unavailable_period May 10 - Jun 8 Heating is unavailable during May 10 - Jun 8 +in.heating_unavailable_period May 10 - May 10 Heating is unavailable during May 10 - May 10 +in.heating_unavailable_period May 10 - May 12 Heating is unavailable during May 10 - May 12 +in.heating_unavailable_period May 10 - May 16 Heating is unavailable during May 10 - May 16 +in.heating_unavailable_period May 10 - May 23 Heating is unavailable during May 10 - May 23 +in.heating_unavailable_period May 11 - Aug 8 Heating is unavailable during May 11 - Aug 8 +in.heating_unavailable_period May 11 - Jun 9 Heating is unavailable during May 11 - Jun 9 +in.heating_unavailable_period May 11 - May 11 Heating is unavailable during May 11 - May 11 +in.heating_unavailable_period May 11 - May 13 Heating is unavailable during May 11 - May 13 +in.heating_unavailable_period May 11 - May 17 Heating is unavailable during May 11 - May 17 +in.heating_unavailable_period May 11 - May 24 Heating is unavailable during May 11 - May 24 +in.heating_unavailable_period May 12 - Aug 9 Heating is unavailable during May 12 - Aug 9 +in.heating_unavailable_period May 12 - Jun 10 Heating is unavailable during May 12 - Jun 10 +in.heating_unavailable_period May 12 - May 12 Heating is unavailable during May 12 - May 12 +in.heating_unavailable_period May 12 - May 14 Heating is unavailable during May 12 - May 14 +in.heating_unavailable_period May 12 - May 18 Heating is unavailable during May 12 - May 18 +in.heating_unavailable_period May 12 - May 25 Heating is unavailable during May 12 - May 25 +in.heating_unavailable_period May 13 - Aug 10 Heating is unavailable during May 13 - Aug 10 +in.heating_unavailable_period May 13 - Jun 11 Heating is unavailable during May 13 - Jun 11 +in.heating_unavailable_period May 13 - May 13 Heating is unavailable during May 13 - May 13 +in.heating_unavailable_period May 13 - May 15 Heating is unavailable during May 13 - May 15 +in.heating_unavailable_period May 13 - May 19 Heating is unavailable during May 13 - May 19 +in.heating_unavailable_period May 13 - May 26 Heating is unavailable during May 13 - May 26 +in.heating_unavailable_period May 14 - Aug 11 Heating is unavailable during May 14 - Aug 11 +in.heating_unavailable_period May 14 - Jun 12 Heating is unavailable during May 14 - Jun 12 +in.heating_unavailable_period May 14 - May 14 Heating is unavailable during May 14 - May 14 +in.heating_unavailable_period May 14 - May 16 Heating is unavailable during May 14 - May 16 +in.heating_unavailable_period May 14 - May 20 Heating is unavailable during May 14 - May 20 +in.heating_unavailable_period May 14 - May 27 Heating is unavailable during May 14 - May 27 +in.heating_unavailable_period May 15 - Aug 12 Heating is unavailable during May 15 - Aug 12 +in.heating_unavailable_period May 15 - Jun 13 Heating is unavailable during May 15 - Jun 13 +in.heating_unavailable_period May 15 - May 15 Heating is unavailable during May 15 - May 15 +in.heating_unavailable_period May 15 - May 17 Heating is unavailable during May 15 - May 17 +in.heating_unavailable_period May 15 - May 21 Heating is unavailable during May 15 - May 21 +in.heating_unavailable_period May 15 - May 28 Heating is unavailable during May 15 - May 28 +in.heating_unavailable_period May 16 - Aug 13 Heating is unavailable during May 16 - Aug 13 +in.heating_unavailable_period May 16 - Jun 14 Heating is unavailable during May 16 - Jun 14 +in.heating_unavailable_period May 16 - May 16 Heating is unavailable during May 16 - May 16 +in.heating_unavailable_period May 16 - May 18 Heating is unavailable during May 16 - May 18 +in.heating_unavailable_period May 16 - May 22 Heating is unavailable during May 16 - May 22 +in.heating_unavailable_period May 16 - May 29 Heating is unavailable during May 16 - May 29 +in.heating_unavailable_period May 17 - Aug 14 Heating is unavailable during May 17 - Aug 14 +in.heating_unavailable_period May 17 - Jun 15 Heating is unavailable during May 17 - Jun 15 +in.heating_unavailable_period May 17 - May 17 Heating is unavailable during May 17 - May 17 +in.heating_unavailable_period May 17 - May 19 Heating is unavailable during May 17 - May 19 +in.heating_unavailable_period May 17 - May 23 Heating is unavailable during May 17 - May 23 +in.heating_unavailable_period May 17 - May 30 Heating is unavailable during May 17 - May 30 +in.heating_unavailable_period May 18 - Aug 15 Heating is unavailable during May 18 - Aug 15 +in.heating_unavailable_period May 18 - Jun 16 Heating is unavailable during May 18 - Jun 16 +in.heating_unavailable_period May 18 - May 18 Heating is unavailable during May 18 - May 18 +in.heating_unavailable_period May 18 - May 20 Heating is unavailable during May 18 - May 20 +in.heating_unavailable_period May 18 - May 24 Heating is unavailable during May 18 - May 24 +in.heating_unavailable_period May 18 - May 31 Heating is unavailable during May 18 - May 31 +in.heating_unavailable_period May 19 - Aug 16 Heating is unavailable during May 19 - Aug 16 +in.heating_unavailable_period May 19 - Jun 1 Heating is unavailable during May 19 - Jun 1 +in.heating_unavailable_period May 19 - Jun 17 Heating is unavailable during May 19 - Jun 17 +in.heating_unavailable_period May 19 - May 19 Heating is unavailable during May 19 - May 19 +in.heating_unavailable_period May 19 - May 21 Heating is unavailable during May 19 - May 21 +in.heating_unavailable_period May 19 - May 25 Heating is unavailable during May 19 - May 25 +in.heating_unavailable_period May 2 - Jul 30 Heating is unavailable during May 2 - Jul 30 +in.heating_unavailable_period May 2 - May 15 Heating is unavailable during May 2 - May 15 +in.heating_unavailable_period May 2 - May 2 Heating is unavailable during May 2 - May 2 +in.heating_unavailable_period May 2 - May 31 Heating is unavailable during May 2 - May 31 +in.heating_unavailable_period May 2 - May 4 Heating is unavailable during May 2 - May 4 +in.heating_unavailable_period May 2 - May 8 Heating is unavailable during May 2 - May 8 +in.heating_unavailable_period May 20 - Aug 17 Heating is unavailable during May 20 - Aug 17 +in.heating_unavailable_period May 20 - Jun 18 Heating is unavailable during May 20 - Jun 18 +in.heating_unavailable_period May 20 - Jun 2 Heating is unavailable during May 20 - Jun 2 +in.heating_unavailable_period May 20 - May 20 Heating is unavailable during May 20 - May 20 +in.heating_unavailable_period May 20 - May 22 Heating is unavailable during May 20 - May 22 +in.heating_unavailable_period May 20 - May 26 Heating is unavailable during May 20 - May 26 +in.heating_unavailable_period May 21 - Aug 18 Heating is unavailable during May 21 - Aug 18 +in.heating_unavailable_period May 21 - Jun 19 Heating is unavailable during May 21 - Jun 19 +in.heating_unavailable_period May 21 - Jun 3 Heating is unavailable during May 21 - Jun 3 +in.heating_unavailable_period May 21 - May 21 Heating is unavailable during May 21 - May 21 +in.heating_unavailable_period May 21 - May 23 Heating is unavailable during May 21 - May 23 +in.heating_unavailable_period May 21 - May 27 Heating is unavailable during May 21 - May 27 +in.heating_unavailable_period May 22 - Aug 19 Heating is unavailable during May 22 - Aug 19 +in.heating_unavailable_period May 22 - Jun 20 Heating is unavailable during May 22 - Jun 20 +in.heating_unavailable_period May 22 - Jun 4 Heating is unavailable during May 22 - Jun 4 +in.heating_unavailable_period May 22 - May 22 Heating is unavailable during May 22 - May 22 +in.heating_unavailable_period May 22 - May 24 Heating is unavailable during May 22 - May 24 +in.heating_unavailable_period May 22 - May 28 Heating is unavailable during May 22 - May 28 +in.heating_unavailable_period May 23 - Aug 20 Heating is unavailable during May 23 - Aug 20 +in.heating_unavailable_period May 23 - Jun 21 Heating is unavailable during May 23 - Jun 21 +in.heating_unavailable_period May 23 - Jun 5 Heating is unavailable during May 23 - Jun 5 +in.heating_unavailable_period May 23 - May 23 Heating is unavailable during May 23 - May 23 +in.heating_unavailable_period May 23 - May 25 Heating is unavailable during May 23 - May 25 +in.heating_unavailable_period May 23 - May 29 Heating is unavailable during May 23 - May 29 +in.heating_unavailable_period May 24 - Aug 21 Heating is unavailable during May 24 - Aug 21 +in.heating_unavailable_period May 24 - Jun 22 Heating is unavailable during May 24 - Jun 22 +in.heating_unavailable_period May 24 - Jun 6 Heating is unavailable during May 24 - Jun 6 +in.heating_unavailable_period May 24 - May 24 Heating is unavailable during May 24 - May 24 +in.heating_unavailable_period May 24 - May 26 Heating is unavailable during May 24 - May 26 +in.heating_unavailable_period May 24 - May 30 Heating is unavailable during May 24 - May 30 +in.heating_unavailable_period May 25 - Aug 22 Heating is unavailable during May 25 - Aug 22 +in.heating_unavailable_period May 25 - Jun 23 Heating is unavailable during May 25 - Jun 23 +in.heating_unavailable_period May 25 - Jun 7 Heating is unavailable during May 25 - Jun 7 +in.heating_unavailable_period May 25 - May 25 Heating is unavailable during May 25 - May 25 +in.heating_unavailable_period May 25 - May 27 Heating is unavailable during May 25 - May 27 +in.heating_unavailable_period May 25 - May 31 Heating is unavailable during May 25 - May 31 +in.heating_unavailable_period May 26 - Aug 23 Heating is unavailable during May 26 - Aug 23 +in.heating_unavailable_period May 26 - Jun 1 Heating is unavailable during May 26 - Jun 1 +in.heating_unavailable_period May 26 - Jun 24 Heating is unavailable during May 26 - Jun 24 +in.heating_unavailable_period May 26 - Jun 8 Heating is unavailable during May 26 - Jun 8 +in.heating_unavailable_period May 26 - May 26 Heating is unavailable during May 26 - May 26 +in.heating_unavailable_period May 26 - May 28 Heating is unavailable during May 26 - May 28 +in.heating_unavailable_period May 27 - Aug 24 Heating is unavailable during May 27 - Aug 24 +in.heating_unavailable_period May 27 - Jun 2 Heating is unavailable during May 27 - Jun 2 +in.heating_unavailable_period May 27 - Jun 25 Heating is unavailable during May 27 - Jun 25 +in.heating_unavailable_period May 27 - Jun 9 Heating is unavailable during May 27 - Jun 9 +in.heating_unavailable_period May 27 - May 27 Heating is unavailable during May 27 - May 27 +in.heating_unavailable_period May 27 - May 29 Heating is unavailable during May 27 - May 29 +in.heating_unavailable_period May 28 - Aug 25 Heating is unavailable during May 28 - Aug 25 +in.heating_unavailable_period May 28 - Jun 10 Heating is unavailable during May 28 - Jun 10 +in.heating_unavailable_period May 28 - Jun 26 Heating is unavailable during May 28 - Jun 26 +in.heating_unavailable_period May 28 - Jun 3 Heating is unavailable during May 28 - Jun 3 +in.heating_unavailable_period May 28 - May 28 Heating is unavailable during May 28 - May 28 +in.heating_unavailable_period May 28 - May 30 Heating is unavailable during May 28 - May 30 +in.heating_unavailable_period May 29 - Aug 26 Heating is unavailable during May 29 - Aug 26 +in.heating_unavailable_period May 29 - Jun 11 Heating is unavailable during May 29 - Jun 11 +in.heating_unavailable_period May 29 - Jun 27 Heating is unavailable during May 29 - Jun 27 +in.heating_unavailable_period May 29 - Jun 4 Heating is unavailable during May 29 - Jun 4 +in.heating_unavailable_period May 29 - May 29 Heating is unavailable during May 29 - May 29 +in.heating_unavailable_period May 29 - May 31 Heating is unavailable during May 29 - May 31 +in.heating_unavailable_period May 3 - Jul 31 Heating is unavailable during May 3 - Jul 31 +in.heating_unavailable_period May 3 - Jun 1 Heating is unavailable during May 3 - Jun 1 +in.heating_unavailable_period May 3 - May 16 Heating is unavailable during May 3 - May 16 +in.heating_unavailable_period May 3 - May 3 Heating is unavailable during May 3 - May 3 +in.heating_unavailable_period May 3 - May 5 Heating is unavailable during May 3 - May 5 +in.heating_unavailable_period May 3 - May 9 Heating is unavailable during May 3 - May 9 +in.heating_unavailable_period May 30 - Aug 27 Heating is unavailable during May 30 - Aug 27 +in.heating_unavailable_period May 30 - Jun 1 Heating is unavailable during May 30 - Jun 1 +in.heating_unavailable_period May 30 - Jun 12 Heating is unavailable during May 30 - Jun 12 +in.heating_unavailable_period May 30 - Jun 28 Heating is unavailable during May 30 - Jun 28 +in.heating_unavailable_period May 30 - Jun 5 Heating is unavailable during May 30 - Jun 5 +in.heating_unavailable_period May 30 - May 30 Heating is unavailable during May 30 - May 30 +in.heating_unavailable_period May 31 - Aug 28 Heating is unavailable during May 31 - Aug 28 +in.heating_unavailable_period May 31 - Jun 13 Heating is unavailable during May 31 - Jun 13 +in.heating_unavailable_period May 31 - Jun 2 Heating is unavailable during May 31 - Jun 2 +in.heating_unavailable_period May 31 - Jun 29 Heating is unavailable during May 31 - Jun 29 +in.heating_unavailable_period May 31 - Jun 6 Heating is unavailable during May 31 - Jun 6 +in.heating_unavailable_period May 31 - May 31 Heating is unavailable during May 31 - May 31 +in.heating_unavailable_period May 4 - Aug 1 Heating is unavailable during May 4 - Aug 1 +in.heating_unavailable_period May 4 - Jun 2 Heating is unavailable during May 4 - Jun 2 +in.heating_unavailable_period May 4 - May 10 Heating is unavailable during May 4 - May 10 +in.heating_unavailable_period May 4 - May 17 Heating is unavailable during May 4 - May 17 +in.heating_unavailable_period May 4 - May 4 Heating is unavailable during May 4 - May 4 +in.heating_unavailable_period May 4 - May 6 Heating is unavailable during May 4 - May 6 +in.heating_unavailable_period May 5 - Aug 2 Heating is unavailable during May 5 - Aug 2 +in.heating_unavailable_period May 5 - Jun 3 Heating is unavailable during May 5 - Jun 3 +in.heating_unavailable_period May 5 - May 11 Heating is unavailable during May 5 - May 11 +in.heating_unavailable_period May 5 - May 18 Heating is unavailable during May 5 - May 18 +in.heating_unavailable_period May 5 - May 5 Heating is unavailable during May 5 - May 5 +in.heating_unavailable_period May 5 - May 7 Heating is unavailable during May 5 - May 7 +in.heating_unavailable_period May 6 - Aug 3 Heating is unavailable during May 6 - Aug 3 +in.heating_unavailable_period May 6 - Jun 4 Heating is unavailable during May 6 - Jun 4 +in.heating_unavailable_period May 6 - May 12 Heating is unavailable during May 6 - May 12 +in.heating_unavailable_period May 6 - May 19 Heating is unavailable during May 6 - May 19 +in.heating_unavailable_period May 6 - May 6 Heating is unavailable during May 6 - May 6 +in.heating_unavailable_period May 6 - May 8 Heating is unavailable during May 6 - May 8 +in.heating_unavailable_period May 7 - Aug 4 Heating is unavailable during May 7 - Aug 4 +in.heating_unavailable_period May 7 - Jun 5 Heating is unavailable during May 7 - Jun 5 +in.heating_unavailable_period May 7 - May 13 Heating is unavailable during May 7 - May 13 +in.heating_unavailable_period May 7 - May 20 Heating is unavailable during May 7 - May 20 +in.heating_unavailable_period May 7 - May 7 Heating is unavailable during May 7 - May 7 +in.heating_unavailable_period May 7 - May 9 Heating is unavailable during May 7 - May 9 +in.heating_unavailable_period May 8 - Aug 5 Heating is unavailable during May 8 - Aug 5 +in.heating_unavailable_period May 8 - Jun 6 Heating is unavailable during May 8 - Jun 6 +in.heating_unavailable_period May 8 - May 10 Heating is unavailable during May 8 - May 10 +in.heating_unavailable_period May 8 - May 14 Heating is unavailable during May 8 - May 14 +in.heating_unavailable_period May 8 - May 21 Heating is unavailable during May 8 - May 21 +in.heating_unavailable_period May 8 - May 8 Heating is unavailable during May 8 - May 8 +in.heating_unavailable_period May 9 - Aug 6 Heating is unavailable during May 9 - Aug 6 +in.heating_unavailable_period May 9 - Jun 7 Heating is unavailable during May 9 - Jun 7 +in.heating_unavailable_period May 9 - May 11 Heating is unavailable during May 9 - May 11 +in.heating_unavailable_period May 9 - May 15 Heating is unavailable during May 9 - May 15 +in.heating_unavailable_period May 9 - May 22 Heating is unavailable during May 9 - May 22 +in.heating_unavailable_period May 9 - May 9 Heating is unavailable during May 9 - May 9 +in.heating_unavailable_period Never Heating is unavailable during Never +in.heating_unavailable_period Nov 1 - Jan 29 Heating is unavailable during Nov 1 - Jan 29 +in.heating_unavailable_period Nov 1 - Nov 1 Heating is unavailable during Nov 1 - Nov 1 +in.heating_unavailable_period Nov 1 - Nov 14 Heating is unavailable during Nov 1 - Nov 14 +in.heating_unavailable_period Nov 1 - Nov 3 Heating is unavailable during Nov 1 - Nov 3 +in.heating_unavailable_period Nov 1 - Nov 30 Heating is unavailable during Nov 1 - Nov 30 +in.heating_unavailable_period Nov 1 - Nov 7 Heating is unavailable during Nov 1 - Nov 7 +in.heating_unavailable_period Nov 10 - Dec 9 Heating is unavailable during Nov 10 - Dec 9 +in.heating_unavailable_period Nov 10 - Feb 7 Heating is unavailable during Nov 10 - Feb 7 +in.heating_unavailable_period Nov 10 - Nov 10 Heating is unavailable during Nov 10 - Nov 10 +in.heating_unavailable_period Nov 10 - Nov 12 Heating is unavailable during Nov 10 - Nov 12 +in.heating_unavailable_period Nov 10 - Nov 16 Heating is unavailable during Nov 10 - Nov 16 +in.heating_unavailable_period Nov 10 - Nov 23 Heating is unavailable during Nov 10 - Nov 23 +in.heating_unavailable_period Nov 11 - Dec 10 Heating is unavailable during Nov 11 - Dec 10 +in.heating_unavailable_period Nov 11 - Feb 8 Heating is unavailable during Nov 11 - Feb 8 +in.heating_unavailable_period Nov 11 - Nov 11 Heating is unavailable during Nov 11 - Nov 11 +in.heating_unavailable_period Nov 11 - Nov 13 Heating is unavailable during Nov 11 - Nov 13 +in.heating_unavailable_period Nov 11 - Nov 17 Heating is unavailable during Nov 11 - Nov 17 +in.heating_unavailable_period Nov 11 - Nov 24 Heating is unavailable during Nov 11 - Nov 24 +in.heating_unavailable_period Nov 12 - Dec 11 Heating is unavailable during Nov 12 - Dec 11 +in.heating_unavailable_period Nov 12 - Feb 9 Heating is unavailable during Nov 12 - Feb 9 +in.heating_unavailable_period Nov 12 - Nov 12 Heating is unavailable during Nov 12 - Nov 12 +in.heating_unavailable_period Nov 12 - Nov 14 Heating is unavailable during Nov 12 - Nov 14 +in.heating_unavailable_period Nov 12 - Nov 18 Heating is unavailable during Nov 12 - Nov 18 +in.heating_unavailable_period Nov 12 - Nov 25 Heating is unavailable during Nov 12 - Nov 25 +in.heating_unavailable_period Nov 13 - Dec 12 Heating is unavailable during Nov 13 - Dec 12 +in.heating_unavailable_period Nov 13 - Feb 10 Heating is unavailable during Nov 13 - Feb 10 +in.heating_unavailable_period Nov 13 - Nov 13 Heating is unavailable during Nov 13 - Nov 13 +in.heating_unavailable_period Nov 13 - Nov 15 Heating is unavailable during Nov 13 - Nov 15 +in.heating_unavailable_period Nov 13 - Nov 19 Heating is unavailable during Nov 13 - Nov 19 +in.heating_unavailable_period Nov 13 - Nov 26 Heating is unavailable during Nov 13 - Nov 26 +in.heating_unavailable_period Nov 14 - Dec 13 Heating is unavailable during Nov 14 - Dec 13 +in.heating_unavailable_period Nov 14 - Feb 11 Heating is unavailable during Nov 14 - Feb 11 +in.heating_unavailable_period Nov 14 - Nov 14 Heating is unavailable during Nov 14 - Nov 14 +in.heating_unavailable_period Nov 14 - Nov 16 Heating is unavailable during Nov 14 - Nov 16 +in.heating_unavailable_period Nov 14 - Nov 20 Heating is unavailable during Nov 14 - Nov 20 +in.heating_unavailable_period Nov 14 - Nov 27 Heating is unavailable during Nov 14 - Nov 27 +in.heating_unavailable_period Nov 15 - Dec 14 Heating is unavailable during Nov 15 - Dec 14 +in.heating_unavailable_period Nov 15 - Feb 12 Heating is unavailable during Nov 15 - Feb 12 +in.heating_unavailable_period Nov 15 - Nov 15 Heating is unavailable during Nov 15 - Nov 15 +in.heating_unavailable_period Nov 15 - Nov 17 Heating is unavailable during Nov 15 - Nov 17 +in.heating_unavailable_period Nov 15 - Nov 21 Heating is unavailable during Nov 15 - Nov 21 +in.heating_unavailable_period Nov 15 - Nov 28 Heating is unavailable during Nov 15 - Nov 28 +in.heating_unavailable_period Nov 16 - Dec 15 Heating is unavailable during Nov 16 - Dec 15 +in.heating_unavailable_period Nov 16 - Feb 13 Heating is unavailable during Nov 16 - Feb 13 +in.heating_unavailable_period Nov 16 - Nov 16 Heating is unavailable during Nov 16 - Nov 16 +in.heating_unavailable_period Nov 16 - Nov 18 Heating is unavailable during Nov 16 - Nov 18 +in.heating_unavailable_period Nov 16 - Nov 22 Heating is unavailable during Nov 16 - Nov 22 +in.heating_unavailable_period Nov 16 - Nov 29 Heating is unavailable during Nov 16 - Nov 29 +in.heating_unavailable_period Nov 17 - Dec 16 Heating is unavailable during Nov 17 - Dec 16 +in.heating_unavailable_period Nov 17 - Feb 14 Heating is unavailable during Nov 17 - Feb 14 +in.heating_unavailable_period Nov 17 - Nov 17 Heating is unavailable during Nov 17 - Nov 17 +in.heating_unavailable_period Nov 17 - Nov 19 Heating is unavailable during Nov 17 - Nov 19 +in.heating_unavailable_period Nov 17 - Nov 23 Heating is unavailable during Nov 17 - Nov 23 +in.heating_unavailable_period Nov 17 - Nov 30 Heating is unavailable during Nov 17 - Nov 30 +in.heating_unavailable_period Nov 18 - Dec 1 Heating is unavailable during Nov 18 - Dec 1 +in.heating_unavailable_period Nov 18 - Dec 17 Heating is unavailable during Nov 18 - Dec 17 +in.heating_unavailable_period Nov 18 - Feb 15 Heating is unavailable during Nov 18 - Feb 15 +in.heating_unavailable_period Nov 18 - Nov 18 Heating is unavailable during Nov 18 - Nov 18 +in.heating_unavailable_period Nov 18 - Nov 20 Heating is unavailable during Nov 18 - Nov 20 +in.heating_unavailable_period Nov 18 - Nov 24 Heating is unavailable during Nov 18 - Nov 24 +in.heating_unavailable_period Nov 19 - Dec 18 Heating is unavailable during Nov 19 - Dec 18 +in.heating_unavailable_period Nov 19 - Dec 2 Heating is unavailable during Nov 19 - Dec 2 +in.heating_unavailable_period Nov 19 - Feb 16 Heating is unavailable during Nov 19 - Feb 16 +in.heating_unavailable_period Nov 19 - Nov 19 Heating is unavailable during Nov 19 - Nov 19 +in.heating_unavailable_period Nov 19 - Nov 21 Heating is unavailable during Nov 19 - Nov 21 +in.heating_unavailable_period Nov 19 - Nov 25 Heating is unavailable during Nov 19 - Nov 25 +in.heating_unavailable_period Nov 2 - Dec 1 Heating is unavailable during Nov 2 - Dec 1 +in.heating_unavailable_period Nov 2 - Jan 30 Heating is unavailable during Nov 2 - Jan 30 +in.heating_unavailable_period Nov 2 - Nov 15 Heating is unavailable during Nov 2 - Nov 15 +in.heating_unavailable_period Nov 2 - Nov 2 Heating is unavailable during Nov 2 - Nov 2 +in.heating_unavailable_period Nov 2 - Nov 4 Heating is unavailable during Nov 2 - Nov 4 +in.heating_unavailable_period Nov 2 - Nov 8 Heating is unavailable during Nov 2 - Nov 8 +in.heating_unavailable_period Nov 20 - Dec 19 Heating is unavailable during Nov 20 - Dec 19 +in.heating_unavailable_period Nov 20 - Dec 3 Heating is unavailable during Nov 20 - Dec 3 +in.heating_unavailable_period Nov 20 - Feb 17 Heating is unavailable during Nov 20 - Feb 17 +in.heating_unavailable_period Nov 20 - Nov 20 Heating is unavailable during Nov 20 - Nov 20 +in.heating_unavailable_period Nov 20 - Nov 22 Heating is unavailable during Nov 20 - Nov 22 +in.heating_unavailable_period Nov 20 - Nov 26 Heating is unavailable during Nov 20 - Nov 26 +in.heating_unavailable_period Nov 21 - Dec 20 Heating is unavailable during Nov 21 - Dec 20 +in.heating_unavailable_period Nov 21 - Dec 4 Heating is unavailable during Nov 21 - Dec 4 +in.heating_unavailable_period Nov 21 - Feb 18 Heating is unavailable during Nov 21 - Feb 18 +in.heating_unavailable_period Nov 21 - Nov 21 Heating is unavailable during Nov 21 - Nov 21 +in.heating_unavailable_period Nov 21 - Nov 23 Heating is unavailable during Nov 21 - Nov 23 +in.heating_unavailable_period Nov 21 - Nov 27 Heating is unavailable during Nov 21 - Nov 27 +in.heating_unavailable_period Nov 22 - Dec 21 Heating is unavailable during Nov 22 - Dec 21 +in.heating_unavailable_period Nov 22 - Dec 5 Heating is unavailable during Nov 22 - Dec 5 +in.heating_unavailable_period Nov 22 - Feb 19 Heating is unavailable during Nov 22 - Feb 19 +in.heating_unavailable_period Nov 22 - Nov 22 Heating is unavailable during Nov 22 - Nov 22 +in.heating_unavailable_period Nov 22 - Nov 24 Heating is unavailable during Nov 22 - Nov 24 +in.heating_unavailable_period Nov 22 - Nov 28 Heating is unavailable during Nov 22 - Nov 28 +in.heating_unavailable_period Nov 23 - Dec 22 Heating is unavailable during Nov 23 - Dec 22 +in.heating_unavailable_period Nov 23 - Dec 6 Heating is unavailable during Nov 23 - Dec 6 +in.heating_unavailable_period Nov 23 - Feb 20 Heating is unavailable during Nov 23 - Feb 20 +in.heating_unavailable_period Nov 23 - Nov 23 Heating is unavailable during Nov 23 - Nov 23 +in.heating_unavailable_period Nov 23 - Nov 25 Heating is unavailable during Nov 23 - Nov 25 +in.heating_unavailable_period Nov 23 - Nov 29 Heating is unavailable during Nov 23 - Nov 29 +in.heating_unavailable_period Nov 24 - Dec 23 Heating is unavailable during Nov 24 - Dec 23 +in.heating_unavailable_period Nov 24 - Dec 7 Heating is unavailable during Nov 24 - Dec 7 +in.heating_unavailable_period Nov 24 - Feb 21 Heating is unavailable during Nov 24 - Feb 21 +in.heating_unavailable_period Nov 24 - Nov 24 Heating is unavailable during Nov 24 - Nov 24 +in.heating_unavailable_period Nov 24 - Nov 26 Heating is unavailable during Nov 24 - Nov 26 +in.heating_unavailable_period Nov 24 - Nov 30 Heating is unavailable during Nov 24 - Nov 30 +in.heating_unavailable_period Nov 25 - Dec 1 Heating is unavailable during Nov 25 - Dec 1 +in.heating_unavailable_period Nov 25 - Dec 24 Heating is unavailable during Nov 25 - Dec 24 +in.heating_unavailable_period Nov 25 - Dec 8 Heating is unavailable during Nov 25 - Dec 8 +in.heating_unavailable_period Nov 25 - Feb 22 Heating is unavailable during Nov 25 - Feb 22 +in.heating_unavailable_period Nov 25 - Nov 25 Heating is unavailable during Nov 25 - Nov 25 +in.heating_unavailable_period Nov 25 - Nov 27 Heating is unavailable during Nov 25 - Nov 27 +in.heating_unavailable_period Nov 26 - Dec 2 Heating is unavailable during Nov 26 - Dec 2 +in.heating_unavailable_period Nov 26 - Dec 25 Heating is unavailable during Nov 26 - Dec 25 +in.heating_unavailable_period Nov 26 - Dec 9 Heating is unavailable during Nov 26 - Dec 9 +in.heating_unavailable_period Nov 26 - Feb 23 Heating is unavailable during Nov 26 - Feb 23 +in.heating_unavailable_period Nov 26 - Nov 26 Heating is unavailable during Nov 26 - Nov 26 +in.heating_unavailable_period Nov 26 - Nov 28 Heating is unavailable during Nov 26 - Nov 28 +in.heating_unavailable_period Nov 27 - Dec 10 Heating is unavailable during Nov 27 - Dec 10 +in.heating_unavailable_period Nov 27 - Dec 26 Heating is unavailable during Nov 27 - Dec 26 +in.heating_unavailable_period Nov 27 - Dec 3 Heating is unavailable during Nov 27 - Dec 3 +in.heating_unavailable_period Nov 27 - Feb 24 Heating is unavailable during Nov 27 - Feb 24 +in.heating_unavailable_period Nov 27 - Nov 27 Heating is unavailable during Nov 27 - Nov 27 +in.heating_unavailable_period Nov 27 - Nov 29 Heating is unavailable during Nov 27 - Nov 29 +in.heating_unavailable_period Nov 28 - Dec 11 Heating is unavailable during Nov 28 - Dec 11 +in.heating_unavailable_period Nov 28 - Dec 27 Heating is unavailable during Nov 28 - Dec 27 +in.heating_unavailable_period Nov 28 - Dec 4 Heating is unavailable during Nov 28 - Dec 4 +in.heating_unavailable_period Nov 28 - Feb 25 Heating is unavailable during Nov 28 - Feb 25 +in.heating_unavailable_period Nov 28 - Nov 28 Heating is unavailable during Nov 28 - Nov 28 +in.heating_unavailable_period Nov 28 - Nov 30 Heating is unavailable during Nov 28 - Nov 30 +in.heating_unavailable_period Nov 29 - Dec 1 Heating is unavailable during Nov 29 - Dec 1 +in.heating_unavailable_period Nov 29 - Dec 12 Heating is unavailable during Nov 29 - Dec 12 +in.heating_unavailable_period Nov 29 - Dec 28 Heating is unavailable during Nov 29 - Dec 28 +in.heating_unavailable_period Nov 29 - Dec 5 Heating is unavailable during Nov 29 - Dec 5 +in.heating_unavailable_period Nov 29 - Feb 26 Heating is unavailable during Nov 29 - Feb 26 +in.heating_unavailable_period Nov 29 - Nov 29 Heating is unavailable during Nov 29 - Nov 29 +in.heating_unavailable_period Nov 3 - Dec 2 Heating is unavailable during Nov 3 - Dec 2 +in.heating_unavailable_period Nov 3 - Jan 31 Heating is unavailable during Nov 3 - Jan 31 +in.heating_unavailable_period Nov 3 - Nov 16 Heating is unavailable during Nov 3 - Nov 16 +in.heating_unavailable_period Nov 3 - Nov 3 Heating is unavailable during Nov 3 - Nov 3 +in.heating_unavailable_period Nov 3 - Nov 5 Heating is unavailable during Nov 3 - Nov 5 +in.heating_unavailable_period Nov 3 - Nov 9 Heating is unavailable during Nov 3 - Nov 9 +in.heating_unavailable_period Nov 30 - Dec 13 Heating is unavailable during Nov 30 - Dec 13 +in.heating_unavailable_period Nov 30 - Dec 2 Heating is unavailable during Nov 30 - Dec 2 +in.heating_unavailable_period Nov 30 - Dec 29 Heating is unavailable during Nov 30 - Dec 29 +in.heating_unavailable_period Nov 30 - Dec 6 Heating is unavailable during Nov 30 - Dec 6 +in.heating_unavailable_period Nov 30 - Feb 27 Heating is unavailable during Nov 30 - Feb 27 +in.heating_unavailable_period Nov 30 - Nov 30 Heating is unavailable during Nov 30 - Nov 30 +in.heating_unavailable_period Nov 4 - Dec 3 Heating is unavailable during Nov 4 - Dec 3 +in.heating_unavailable_period Nov 4 - Feb 1 Heating is unavailable during Nov 4 - Feb 1 +in.heating_unavailable_period Nov 4 - Nov 10 Heating is unavailable during Nov 4 - Nov 10 +in.heating_unavailable_period Nov 4 - Nov 17 Heating is unavailable during Nov 4 - Nov 17 +in.heating_unavailable_period Nov 4 - Nov 4 Heating is unavailable during Nov 4 - Nov 4 +in.heating_unavailable_period Nov 4 - Nov 6 Heating is unavailable during Nov 4 - Nov 6 +in.heating_unavailable_period Nov 5 - Dec 4 Heating is unavailable during Nov 5 - Dec 4 +in.heating_unavailable_period Nov 5 - Feb 2 Heating is unavailable during Nov 5 - Feb 2 +in.heating_unavailable_period Nov 5 - Nov 11 Heating is unavailable during Nov 5 - Nov 11 +in.heating_unavailable_period Nov 5 - Nov 18 Heating is unavailable during Nov 5 - Nov 18 +in.heating_unavailable_period Nov 5 - Nov 5 Heating is unavailable during Nov 5 - Nov 5 +in.heating_unavailable_period Nov 5 - Nov 7 Heating is unavailable during Nov 5 - Nov 7 +in.heating_unavailable_period Nov 6 - Dec 5 Heating is unavailable during Nov 6 - Dec 5 +in.heating_unavailable_period Nov 6 - Feb 3 Heating is unavailable during Nov 6 - Feb 3 +in.heating_unavailable_period Nov 6 - Nov 12 Heating is unavailable during Nov 6 - Nov 12 +in.heating_unavailable_period Nov 6 - Nov 19 Heating is unavailable during Nov 6 - Nov 19 +in.heating_unavailable_period Nov 6 - Nov 6 Heating is unavailable during Nov 6 - Nov 6 +in.heating_unavailable_period Nov 6 - Nov 8 Heating is unavailable during Nov 6 - Nov 8 +in.heating_unavailable_period Nov 7 - Dec 6 Heating is unavailable during Nov 7 - Dec 6 +in.heating_unavailable_period Nov 7 - Feb 4 Heating is unavailable during Nov 7 - Feb 4 +in.heating_unavailable_period Nov 7 - Nov 13 Heating is unavailable during Nov 7 - Nov 13 +in.heating_unavailable_period Nov 7 - Nov 20 Heating is unavailable during Nov 7 - Nov 20 +in.heating_unavailable_period Nov 7 - Nov 7 Heating is unavailable during Nov 7 - Nov 7 +in.heating_unavailable_period Nov 7 - Nov 9 Heating is unavailable during Nov 7 - Nov 9 +in.heating_unavailable_period Nov 8 - Dec 7 Heating is unavailable during Nov 8 - Dec 7 +in.heating_unavailable_period Nov 8 - Feb 5 Heating is unavailable during Nov 8 - Feb 5 +in.heating_unavailable_period Nov 8 - Nov 10 Heating is unavailable during Nov 8 - Nov 10 +in.heating_unavailable_period Nov 8 - Nov 14 Heating is unavailable during Nov 8 - Nov 14 +in.heating_unavailable_period Nov 8 - Nov 21 Heating is unavailable during Nov 8 - Nov 21 +in.heating_unavailable_period Nov 8 - Nov 8 Heating is unavailable during Nov 8 - Nov 8 +in.heating_unavailable_period Nov 9 - Dec 8 Heating is unavailable during Nov 9 - Dec 8 +in.heating_unavailable_period Nov 9 - Feb 6 Heating is unavailable during Nov 9 - Feb 6 +in.heating_unavailable_period Nov 9 - Nov 11 Heating is unavailable during Nov 9 - Nov 11 +in.heating_unavailable_period Nov 9 - Nov 15 Heating is unavailable during Nov 9 - Nov 15 +in.heating_unavailable_period Nov 9 - Nov 22 Heating is unavailable during Nov 9 - Nov 22 +in.heating_unavailable_period Nov 9 - Nov 9 Heating is unavailable during Nov 9 - Nov 9 +in.heating_unavailable_period Oct 1 - Dec 29 Heating is unavailable during Oct 1 - Dec 29 +in.heating_unavailable_period Oct 1 - Oct 1 Heating is unavailable during Oct 1 - Oct 1 +in.heating_unavailable_period Oct 1 - Oct 14 Heating is unavailable during Oct 1 - Oct 14 +in.heating_unavailable_period Oct 1 - Oct 3 Heating is unavailable during Oct 1 - Oct 3 +in.heating_unavailable_period Oct 1 - Oct 30 Heating is unavailable during Oct 1 - Oct 30 +in.heating_unavailable_period Oct 1 - Oct 7 Heating is unavailable during Oct 1 - Oct 7 +in.heating_unavailable_period Oct 10 - Jan 7 Heating is unavailable during Oct 10 - Jan 7 +in.heating_unavailable_period Oct 10 - Nov 8 Heating is unavailable during Oct 10 - Nov 8 +in.heating_unavailable_period Oct 10 - Oct 10 Heating is unavailable during Oct 10 - Oct 10 +in.heating_unavailable_period Oct 10 - Oct 12 Heating is unavailable during Oct 10 - Oct 12 +in.heating_unavailable_period Oct 10 - Oct 16 Heating is unavailable during Oct 10 - Oct 16 +in.heating_unavailable_period Oct 10 - Oct 23 Heating is unavailable during Oct 10 - Oct 23 +in.heating_unavailable_period Oct 11 - Jan 8 Heating is unavailable during Oct 11 - Jan 8 +in.heating_unavailable_period Oct 11 - Nov 9 Heating is unavailable during Oct 11 - Nov 9 +in.heating_unavailable_period Oct 11 - Oct 11 Heating is unavailable during Oct 11 - Oct 11 +in.heating_unavailable_period Oct 11 - Oct 13 Heating is unavailable during Oct 11 - Oct 13 +in.heating_unavailable_period Oct 11 - Oct 17 Heating is unavailable during Oct 11 - Oct 17 +in.heating_unavailable_period Oct 11 - Oct 24 Heating is unavailable during Oct 11 - Oct 24 +in.heating_unavailable_period Oct 12 - Jan 9 Heating is unavailable during Oct 12 - Jan 9 +in.heating_unavailable_period Oct 12 - Nov 10 Heating is unavailable during Oct 12 - Nov 10 +in.heating_unavailable_period Oct 12 - Oct 12 Heating is unavailable during Oct 12 - Oct 12 +in.heating_unavailable_period Oct 12 - Oct 14 Heating is unavailable during Oct 12 - Oct 14 +in.heating_unavailable_period Oct 12 - Oct 18 Heating is unavailable during Oct 12 - Oct 18 +in.heating_unavailable_period Oct 12 - Oct 25 Heating is unavailable during Oct 12 - Oct 25 +in.heating_unavailable_period Oct 13 - Jan 10 Heating is unavailable during Oct 13 - Jan 10 +in.heating_unavailable_period Oct 13 - Nov 11 Heating is unavailable during Oct 13 - Nov 11 +in.heating_unavailable_period Oct 13 - Oct 13 Heating is unavailable during Oct 13 - Oct 13 +in.heating_unavailable_period Oct 13 - Oct 15 Heating is unavailable during Oct 13 - Oct 15 +in.heating_unavailable_period Oct 13 - Oct 19 Heating is unavailable during Oct 13 - Oct 19 +in.heating_unavailable_period Oct 13 - Oct 26 Heating is unavailable during Oct 13 - Oct 26 +in.heating_unavailable_period Oct 14 - Jan 11 Heating is unavailable during Oct 14 - Jan 11 +in.heating_unavailable_period Oct 14 - Nov 12 Heating is unavailable during Oct 14 - Nov 12 +in.heating_unavailable_period Oct 14 - Oct 14 Heating is unavailable during Oct 14 - Oct 14 +in.heating_unavailable_period Oct 14 - Oct 16 Heating is unavailable during Oct 14 - Oct 16 +in.heating_unavailable_period Oct 14 - Oct 20 Heating is unavailable during Oct 14 - Oct 20 +in.heating_unavailable_period Oct 14 - Oct 27 Heating is unavailable during Oct 14 - Oct 27 +in.heating_unavailable_period Oct 15 - Jan 12 Heating is unavailable during Oct 15 - Jan 12 +in.heating_unavailable_period Oct 15 - Nov 13 Heating is unavailable during Oct 15 - Nov 13 +in.heating_unavailable_period Oct 15 - Oct 15 Heating is unavailable during Oct 15 - Oct 15 +in.heating_unavailable_period Oct 15 - Oct 17 Heating is unavailable during Oct 15 - Oct 17 +in.heating_unavailable_period Oct 15 - Oct 21 Heating is unavailable during Oct 15 - Oct 21 +in.heating_unavailable_period Oct 15 - Oct 28 Heating is unavailable during Oct 15 - Oct 28 +in.heating_unavailable_period Oct 16 - Jan 13 Heating is unavailable during Oct 16 - Jan 13 +in.heating_unavailable_period Oct 16 - Nov 14 Heating is unavailable during Oct 16 - Nov 14 +in.heating_unavailable_period Oct 16 - Oct 16 Heating is unavailable during Oct 16 - Oct 16 +in.heating_unavailable_period Oct 16 - Oct 18 Heating is unavailable during Oct 16 - Oct 18 +in.heating_unavailable_period Oct 16 - Oct 22 Heating is unavailable during Oct 16 - Oct 22 +in.heating_unavailable_period Oct 16 - Oct 29 Heating is unavailable during Oct 16 - Oct 29 +in.heating_unavailable_period Oct 17 - Jan 14 Heating is unavailable during Oct 17 - Jan 14 +in.heating_unavailable_period Oct 17 - Nov 15 Heating is unavailable during Oct 17 - Nov 15 +in.heating_unavailable_period Oct 17 - Oct 17 Heating is unavailable during Oct 17 - Oct 17 +in.heating_unavailable_period Oct 17 - Oct 19 Heating is unavailable during Oct 17 - Oct 19 +in.heating_unavailable_period Oct 17 - Oct 23 Heating is unavailable during Oct 17 - Oct 23 +in.heating_unavailable_period Oct 17 - Oct 30 Heating is unavailable during Oct 17 - Oct 30 +in.heating_unavailable_period Oct 18 - Jan 15 Heating is unavailable during Oct 18 - Jan 15 +in.heating_unavailable_period Oct 18 - Nov 16 Heating is unavailable during Oct 18 - Nov 16 +in.heating_unavailable_period Oct 18 - Oct 18 Heating is unavailable during Oct 18 - Oct 18 +in.heating_unavailable_period Oct 18 - Oct 20 Heating is unavailable during Oct 18 - Oct 20 +in.heating_unavailable_period Oct 18 - Oct 24 Heating is unavailable during Oct 18 - Oct 24 +in.heating_unavailable_period Oct 18 - Oct 31 Heating is unavailable during Oct 18 - Oct 31 +in.heating_unavailable_period Oct 19 - Jan 16 Heating is unavailable during Oct 19 - Jan 16 +in.heating_unavailable_period Oct 19 - Nov 1 Heating is unavailable during Oct 19 - Nov 1 +in.heating_unavailable_period Oct 19 - Nov 17 Heating is unavailable during Oct 19 - Nov 17 +in.heating_unavailable_period Oct 19 - Oct 19 Heating is unavailable during Oct 19 - Oct 19 +in.heating_unavailable_period Oct 19 - Oct 21 Heating is unavailable during Oct 19 - Oct 21 +in.heating_unavailable_period Oct 19 - Oct 25 Heating is unavailable during Oct 19 - Oct 25 +in.heating_unavailable_period Oct 2 - Dec 30 Heating is unavailable during Oct 2 - Dec 30 +in.heating_unavailable_period Oct 2 - Oct 15 Heating is unavailable during Oct 2 - Oct 15 +in.heating_unavailable_period Oct 2 - Oct 2 Heating is unavailable during Oct 2 - Oct 2 +in.heating_unavailable_period Oct 2 - Oct 31 Heating is unavailable during Oct 2 - Oct 31 +in.heating_unavailable_period Oct 2 - Oct 4 Heating is unavailable during Oct 2 - Oct 4 +in.heating_unavailable_period Oct 2 - Oct 8 Heating is unavailable during Oct 2 - Oct 8 +in.heating_unavailable_period Oct 20 - Jan 17 Heating is unavailable during Oct 20 - Jan 17 +in.heating_unavailable_period Oct 20 - Nov 18 Heating is unavailable during Oct 20 - Nov 18 +in.heating_unavailable_period Oct 20 - Nov 2 Heating is unavailable during Oct 20 - Nov 2 +in.heating_unavailable_period Oct 20 - Oct 20 Heating is unavailable during Oct 20 - Oct 20 +in.heating_unavailable_period Oct 20 - Oct 22 Heating is unavailable during Oct 20 - Oct 22 +in.heating_unavailable_period Oct 20 - Oct 26 Heating is unavailable during Oct 20 - Oct 26 +in.heating_unavailable_period Oct 21 - Jan 18 Heating is unavailable during Oct 21 - Jan 18 +in.heating_unavailable_period Oct 21 - Nov 19 Heating is unavailable during Oct 21 - Nov 19 +in.heating_unavailable_period Oct 21 - Nov 3 Heating is unavailable during Oct 21 - Nov 3 +in.heating_unavailable_period Oct 21 - Oct 21 Heating is unavailable during Oct 21 - Oct 21 +in.heating_unavailable_period Oct 21 - Oct 23 Heating is unavailable during Oct 21 - Oct 23 +in.heating_unavailable_period Oct 21 - Oct 27 Heating is unavailable during Oct 21 - Oct 27 +in.heating_unavailable_period Oct 22 - Jan 19 Heating is unavailable during Oct 22 - Jan 19 +in.heating_unavailable_period Oct 22 - Nov 20 Heating is unavailable during Oct 22 - Nov 20 +in.heating_unavailable_period Oct 22 - Nov 4 Heating is unavailable during Oct 22 - Nov 4 +in.heating_unavailable_period Oct 22 - Oct 22 Heating is unavailable during Oct 22 - Oct 22 +in.heating_unavailable_period Oct 22 - Oct 24 Heating is unavailable during Oct 22 - Oct 24 +in.heating_unavailable_period Oct 22 - Oct 28 Heating is unavailable during Oct 22 - Oct 28 +in.heating_unavailable_period Oct 23 - Jan 20 Heating is unavailable during Oct 23 - Jan 20 +in.heating_unavailable_period Oct 23 - Nov 21 Heating is unavailable during Oct 23 - Nov 21 +in.heating_unavailable_period Oct 23 - Nov 5 Heating is unavailable during Oct 23 - Nov 5 +in.heating_unavailable_period Oct 23 - Oct 23 Heating is unavailable during Oct 23 - Oct 23 +in.heating_unavailable_period Oct 23 - Oct 25 Heating is unavailable during Oct 23 - Oct 25 +in.heating_unavailable_period Oct 23 - Oct 29 Heating is unavailable during Oct 23 - Oct 29 +in.heating_unavailable_period Oct 24 - Jan 21 Heating is unavailable during Oct 24 - Jan 21 +in.heating_unavailable_period Oct 24 - Nov 22 Heating is unavailable during Oct 24 - Nov 22 +in.heating_unavailable_period Oct 24 - Nov 6 Heating is unavailable during Oct 24 - Nov 6 +in.heating_unavailable_period Oct 24 - Oct 24 Heating is unavailable during Oct 24 - Oct 24 +in.heating_unavailable_period Oct 24 - Oct 26 Heating is unavailable during Oct 24 - Oct 26 +in.heating_unavailable_period Oct 24 - Oct 30 Heating is unavailable during Oct 24 - Oct 30 +in.heating_unavailable_period Oct 25 - Jan 22 Heating is unavailable during Oct 25 - Jan 22 +in.heating_unavailable_period Oct 25 - Nov 23 Heating is unavailable during Oct 25 - Nov 23 +in.heating_unavailable_period Oct 25 - Nov 7 Heating is unavailable during Oct 25 - Nov 7 +in.heating_unavailable_period Oct 25 - Oct 25 Heating is unavailable during Oct 25 - Oct 25 +in.heating_unavailable_period Oct 25 - Oct 27 Heating is unavailable during Oct 25 - Oct 27 +in.heating_unavailable_period Oct 25 - Oct 31 Heating is unavailable during Oct 25 - Oct 31 +in.heating_unavailable_period Oct 26 - Jan 23 Heating is unavailable during Oct 26 - Jan 23 +in.heating_unavailable_period Oct 26 - Nov 1 Heating is unavailable during Oct 26 - Nov 1 +in.heating_unavailable_period Oct 26 - Nov 24 Heating is unavailable during Oct 26 - Nov 24 +in.heating_unavailable_period Oct 26 - Nov 8 Heating is unavailable during Oct 26 - Nov 8 +in.heating_unavailable_period Oct 26 - Oct 26 Heating is unavailable during Oct 26 - Oct 26 +in.heating_unavailable_period Oct 26 - Oct 28 Heating is unavailable during Oct 26 - Oct 28 +in.heating_unavailable_period Oct 27 - Jan 24 Heating is unavailable during Oct 27 - Jan 24 +in.heating_unavailable_period Oct 27 - Nov 2 Heating is unavailable during Oct 27 - Nov 2 +in.heating_unavailable_period Oct 27 - Nov 25 Heating is unavailable during Oct 27 - Nov 25 +in.heating_unavailable_period Oct 27 - Nov 9 Heating is unavailable during Oct 27 - Nov 9 +in.heating_unavailable_period Oct 27 - Oct 27 Heating is unavailable during Oct 27 - Oct 27 +in.heating_unavailable_period Oct 27 - Oct 29 Heating is unavailable during Oct 27 - Oct 29 +in.heating_unavailable_period Oct 28 - Jan 25 Heating is unavailable during Oct 28 - Jan 25 +in.heating_unavailable_period Oct 28 - Nov 10 Heating is unavailable during Oct 28 - Nov 10 +in.heating_unavailable_period Oct 28 - Nov 26 Heating is unavailable during Oct 28 - Nov 26 +in.heating_unavailable_period Oct 28 - Nov 3 Heating is unavailable during Oct 28 - Nov 3 +in.heating_unavailable_period Oct 28 - Oct 28 Heating is unavailable during Oct 28 - Oct 28 +in.heating_unavailable_period Oct 28 - Oct 30 Heating is unavailable during Oct 28 - Oct 30 +in.heating_unavailable_period Oct 29 - Jan 26 Heating is unavailable during Oct 29 - Jan 26 +in.heating_unavailable_period Oct 29 - Nov 11 Heating is unavailable during Oct 29 - Nov 11 +in.heating_unavailable_period Oct 29 - Nov 27 Heating is unavailable during Oct 29 - Nov 27 +in.heating_unavailable_period Oct 29 - Nov 4 Heating is unavailable during Oct 29 - Nov 4 +in.heating_unavailable_period Oct 29 - Oct 29 Heating is unavailable during Oct 29 - Oct 29 +in.heating_unavailable_period Oct 29 - Oct 31 Heating is unavailable during Oct 29 - Oct 31 +in.heating_unavailable_period Oct 3 - Dec 31 Heating is unavailable during Oct 3 - Dec 31 +in.heating_unavailable_period Oct 3 - Nov 1 Heating is unavailable during Oct 3 - Nov 1 +in.heating_unavailable_period Oct 3 - Oct 16 Heating is unavailable during Oct 3 - Oct 16 +in.heating_unavailable_period Oct 3 - Oct 3 Heating is unavailable during Oct 3 - Oct 3 +in.heating_unavailable_period Oct 3 - Oct 5 Heating is unavailable during Oct 3 - Oct 5 +in.heating_unavailable_period Oct 3 - Oct 9 Heating is unavailable during Oct 3 - Oct 9 +in.heating_unavailable_period Oct 30 - Jan 27 Heating is unavailable during Oct 30 - Jan 27 +in.heating_unavailable_period Oct 30 - Nov 1 Heating is unavailable during Oct 30 - Nov 1 +in.heating_unavailable_period Oct 30 - Nov 12 Heating is unavailable during Oct 30 - Nov 12 +in.heating_unavailable_period Oct 30 - Nov 28 Heating is unavailable during Oct 30 - Nov 28 +in.heating_unavailable_period Oct 30 - Nov 5 Heating is unavailable during Oct 30 - Nov 5 +in.heating_unavailable_period Oct 30 - Oct 30 Heating is unavailable during Oct 30 - Oct 30 +in.heating_unavailable_period Oct 31 - Jan 28 Heating is unavailable during Oct 31 - Jan 28 +in.heating_unavailable_period Oct 31 - Nov 13 Heating is unavailable during Oct 31 - Nov 13 +in.heating_unavailable_period Oct 31 - Nov 2 Heating is unavailable during Oct 31 - Nov 2 +in.heating_unavailable_period Oct 31 - Nov 29 Heating is unavailable during Oct 31 - Nov 29 +in.heating_unavailable_period Oct 31 - Nov 6 Heating is unavailable during Oct 31 - Nov 6 +in.heating_unavailable_period Oct 31 - Oct 31 Heating is unavailable during Oct 31 - Oct 31 +in.heating_unavailable_period Oct 4 - Jan 1 Heating is unavailable during Oct 4 - Jan 1 +in.heating_unavailable_period Oct 4 - Nov 2 Heating is unavailable during Oct 4 - Nov 2 +in.heating_unavailable_period Oct 4 - Oct 10 Heating is unavailable during Oct 4 - Oct 10 +in.heating_unavailable_period Oct 4 - Oct 17 Heating is unavailable during Oct 4 - Oct 17 +in.heating_unavailable_period Oct 4 - Oct 4 Heating is unavailable during Oct 4 - Oct 4 +in.heating_unavailable_period Oct 4 - Oct 6 Heating is unavailable during Oct 4 - Oct 6 +in.heating_unavailable_period Oct 5 - Jan 2 Heating is unavailable during Oct 5 - Jan 2 +in.heating_unavailable_period Oct 5 - Nov 3 Heating is unavailable during Oct 5 - Nov 3 +in.heating_unavailable_period Oct 5 - Oct 11 Heating is unavailable during Oct 5 - Oct 11 +in.heating_unavailable_period Oct 5 - Oct 18 Heating is unavailable during Oct 5 - Oct 18 +in.heating_unavailable_period Oct 5 - Oct 5 Heating is unavailable during Oct 5 - Oct 5 +in.heating_unavailable_period Oct 5 - Oct 7 Heating is unavailable during Oct 5 - Oct 7 +in.heating_unavailable_period Oct 6 - Jan 3 Heating is unavailable during Oct 6 - Jan 3 +in.heating_unavailable_period Oct 6 - Nov 4 Heating is unavailable during Oct 6 - Nov 4 +in.heating_unavailable_period Oct 6 - Oct 12 Heating is unavailable during Oct 6 - Oct 12 +in.heating_unavailable_period Oct 6 - Oct 19 Heating is unavailable during Oct 6 - Oct 19 +in.heating_unavailable_period Oct 6 - Oct 6 Heating is unavailable during Oct 6 - Oct 6 +in.heating_unavailable_period Oct 6 - Oct 8 Heating is unavailable during Oct 6 - Oct 8 +in.heating_unavailable_period Oct 7 - Jan 4 Heating is unavailable during Oct 7 - Jan 4 +in.heating_unavailable_period Oct 7 - Nov 5 Heating is unavailable during Oct 7 - Nov 5 +in.heating_unavailable_period Oct 7 - Oct 13 Heating is unavailable during Oct 7 - Oct 13 +in.heating_unavailable_period Oct 7 - Oct 20 Heating is unavailable during Oct 7 - Oct 20 +in.heating_unavailable_period Oct 7 - Oct 7 Heating is unavailable during Oct 7 - Oct 7 +in.heating_unavailable_period Oct 7 - Oct 9 Heating is unavailable during Oct 7 - Oct 9 +in.heating_unavailable_period Oct 8 - Jan 5 Heating is unavailable during Oct 8 - Jan 5 +in.heating_unavailable_period Oct 8 - Nov 6 Heating is unavailable during Oct 8 - Nov 6 +in.heating_unavailable_period Oct 8 - Oct 10 Heating is unavailable during Oct 8 - Oct 10 +in.heating_unavailable_period Oct 8 - Oct 14 Heating is unavailable during Oct 8 - Oct 14 +in.heating_unavailable_period Oct 8 - Oct 21 Heating is unavailable during Oct 8 - Oct 21 +in.heating_unavailable_period Oct 8 - Oct 8 Heating is unavailable during Oct 8 - Oct 8 +in.heating_unavailable_period Oct 9 - Jan 6 Heating is unavailable during Oct 9 - Jan 6 +in.heating_unavailable_period Oct 9 - Nov 7 Heating is unavailable during Oct 9 - Nov 7 +in.heating_unavailable_period Oct 9 - Oct 11 Heating is unavailable during Oct 9 - Oct 11 +in.heating_unavailable_period Oct 9 - Oct 15 Heating is unavailable during Oct 9 - Oct 15 +in.heating_unavailable_period Oct 9 - Oct 22 Heating is unavailable during Oct 9 - Oct 22 +in.heating_unavailable_period Oct 9 - Oct 9 Heating is unavailable during Oct 9 - Oct 9 +in.heating_unavailable_period Sep 1 - Sep 1 Heating is unavailable during Sep 1 - Sep 1 +in.heating_unavailable_period Sep 1 - Sep 14 Heating is unavailable during Sep 1 - Sep 14 +in.heating_unavailable_period Sep 1 - Sep 3 Heating is unavailable during Sep 1 - Sep 3 +in.heating_unavailable_period Sep 1 - Sep 7 Heating is unavailable during Sep 1 - Sep 7 +in.heating_unavailable_period Sep 10 - Oct 9 Heating is unavailable during Sep 10 - Oct 9 +in.heating_unavailable_period Sep 10 - Sep 12 Heating is unavailable during Sep 10 - Sep 12 +in.heating_unavailable_period Sep 10 - Sep 16 Heating is unavailable during Sep 10 - Sep 16 +in.heating_unavailable_period Sep 10 - Sep 23 Heating is unavailable during Sep 10 - Sep 23 +in.heating_unavailable_period Sep 11 - Dec 9 Heating is unavailable during Sep 11 - Dec 9 +in.heating_unavailable_period Sep 11 - Oct 10 Heating is unavailable during Sep 11 - Oct 10 +in.heating_unavailable_period Sep 11 - Sep 11 Heating is unavailable during Sep 11 - Sep 11 +in.heating_unavailable_period Sep 11 - Sep 13 Heating is unavailable during Sep 11 - Sep 13 +in.heating_unavailable_period Sep 11 - Sep 17 Heating is unavailable during Sep 11 - Sep 17 +in.heating_unavailable_period Sep 11 - Sep 24 Heating is unavailable during Sep 11 - Sep 24 +in.heating_unavailable_period Sep 12 - Dec 10 Heating is unavailable during Sep 12 - Dec 10 +in.heating_unavailable_period Sep 12 - Oct 11 Heating is unavailable during Sep 12 - Oct 11 +in.heating_unavailable_period Sep 12 - Sep 12 Heating is unavailable during Sep 12 - Sep 12 +in.heating_unavailable_period Sep 12 - Sep 14 Heating is unavailable during Sep 12 - Sep 14 +in.heating_unavailable_period Sep 12 - Sep 18 Heating is unavailable during Sep 12 - Sep 18 +in.heating_unavailable_period Sep 13 - Dec 11 Heating is unavailable during Sep 13 - Dec 11 +in.heating_unavailable_period Sep 13 - Sep 13 Heating is unavailable during Sep 13 - Sep 13 +in.heating_unavailable_period Sep 13 - Sep 15 Heating is unavailable during Sep 13 - Sep 15 +in.heating_unavailable_period Sep 14 - Dec 12 Heating is unavailable during Sep 14 - Dec 12 +in.heating_unavailable_period Sep 14 - Oct 13 Heating is unavailable during Sep 14 - Oct 13 +in.heating_unavailable_period Sep 14 - Sep 14 Heating is unavailable during Sep 14 - Sep 14 +in.heating_unavailable_period Sep 14 - Sep 16 Heating is unavailable during Sep 14 - Sep 16 +in.heating_unavailable_period Sep 14 - Sep 20 Heating is unavailable during Sep 14 - Sep 20 +in.heating_unavailable_period Sep 15 - Dec 13 Heating is unavailable during Sep 15 - Dec 13 +in.heating_unavailable_period Sep 15 - Sep 15 Heating is unavailable during Sep 15 - Sep 15 +in.heating_unavailable_period Sep 15 - Sep 17 Heating is unavailable during Sep 15 - Sep 17 +in.heating_unavailable_period Sep 15 - Sep 21 Heating is unavailable during Sep 15 - Sep 21 +in.heating_unavailable_period Sep 16 - Dec 14 Heating is unavailable during Sep 16 - Dec 14 +in.heating_unavailable_period Sep 16 - Oct 15 Heating is unavailable during Sep 16 - Oct 15 +in.heating_unavailable_period Sep 16 - Sep 16 Heating is unavailable during Sep 16 - Sep 16 +in.heating_unavailable_period Sep 16 - Sep 18 Heating is unavailable during Sep 16 - Sep 18 +in.heating_unavailable_period Sep 16 - Sep 22 Heating is unavailable during Sep 16 - Sep 22 +in.heating_unavailable_period Sep 17 - Dec 15 Heating is unavailable during Sep 17 - Dec 15 +in.heating_unavailable_period Sep 17 - Sep 17 Heating is unavailable during Sep 17 - Sep 17 +in.heating_unavailable_period Sep 17 - Sep 19 Heating is unavailable during Sep 17 - Sep 19 +in.heating_unavailable_period Sep 17 - Sep 23 Heating is unavailable during Sep 17 - Sep 23 +in.heating_unavailable_period Sep 18 - Dec 16 Heating is unavailable during Sep 18 - Dec 16 +in.heating_unavailable_period Sep 18 - Sep 18 Heating is unavailable during Sep 18 - Sep 18 +in.heating_unavailable_period Sep 18 - Sep 20 Heating is unavailable during Sep 18 - Sep 20 +in.heating_unavailable_period Sep 18 - Sep 24 Heating is unavailable during Sep 18 - Sep 24 +in.heating_unavailable_period Sep 19 - Oct 18 Heating is unavailable during Sep 19 - Oct 18 +in.heating_unavailable_period Sep 19 - Oct 2 Heating is unavailable during Sep 19 - Oct 2 +in.heating_unavailable_period Sep 19 - Sep 19 Heating is unavailable during Sep 19 - Sep 19 +in.heating_unavailable_period Sep 19 - Sep 21 Heating is unavailable during Sep 19 - Sep 21 +in.heating_unavailable_period Sep 19 - Sep 25 Heating is unavailable during Sep 19 - Sep 25 +in.heating_unavailable_period Sep 2 - Sep 15 Heating is unavailable during Sep 2 - Sep 15 +in.heating_unavailable_period Sep 2 - Sep 2 Heating is unavailable during Sep 2 - Sep 2 +in.heating_unavailable_period Sep 2 - Sep 4 Heating is unavailable during Sep 2 - Sep 4 +in.heating_unavailable_period Sep 2 - Sep 8 Heating is unavailable during Sep 2 - Sep 8 +in.heating_unavailable_period Sep 20 - Oct 19 Heating is unavailable during Sep 20 - Oct 19 +in.heating_unavailable_period Sep 20 - Oct 3 Heating is unavailable during Sep 20 - Oct 3 +in.heating_unavailable_period Sep 20 - Sep 20 Heating is unavailable during Sep 20 - Sep 20 +in.heating_unavailable_period Sep 20 - Sep 22 Heating is unavailable during Sep 20 - Sep 22 +in.heating_unavailable_period Sep 20 - Sep 26 Heating is unavailable during Sep 20 - Sep 26 +in.heating_unavailable_period Sep 21 - Oct 4 Heating is unavailable during Sep 21 - Oct 4 +in.heating_unavailable_period Sep 21 - Sep 21 Heating is unavailable during Sep 21 - Sep 21 +in.heating_unavailable_period Sep 21 - Sep 23 Heating is unavailable during Sep 21 - Sep 23 +in.heating_unavailable_period Sep 21 - Sep 27 Heating is unavailable during Sep 21 - Sep 27 +in.heating_unavailable_period Sep 22 - Oct 21 Heating is unavailable during Sep 22 - Oct 21 +in.heating_unavailable_period Sep 22 - Sep 22 Heating is unavailable during Sep 22 - Sep 22 +in.heating_unavailable_period Sep 22 - Sep 24 Heating is unavailable during Sep 22 - Sep 24 +in.heating_unavailable_period Sep 23 - Dec 21 Heating is unavailable during Sep 23 - Dec 21 +in.heating_unavailable_period Sep 23 - Oct 22 Heating is unavailable during Sep 23 - Oct 22 +in.heating_unavailable_period Sep 23 - Oct 6 Heating is unavailable during Sep 23 - Oct 6 +in.heating_unavailable_period Sep 23 - Sep 23 Heating is unavailable during Sep 23 - Sep 23 +in.heating_unavailable_period Sep 23 - Sep 25 Heating is unavailable during Sep 23 - Sep 25 +in.heating_unavailable_period Sep 23 - Sep 29 Heating is unavailable during Sep 23 - Sep 29 +in.heating_unavailable_period Sep 24 - Dec 22 Heating is unavailable during Sep 24 - Dec 22 +in.heating_unavailable_period Sep 24 - Oct 23 Heating is unavailable during Sep 24 - Oct 23 +in.heating_unavailable_period Sep 24 - Oct 7 Heating is unavailable during Sep 24 - Oct 7 +in.heating_unavailable_period Sep 24 - Sep 24 Heating is unavailable during Sep 24 - Sep 24 +in.heating_unavailable_period Sep 24 - Sep 26 Heating is unavailable during Sep 24 - Sep 26 +in.heating_unavailable_period Sep 24 - Sep 30 Heating is unavailable during Sep 24 - Sep 30 +in.heating_unavailable_period Sep 25 - Dec 23 Heating is unavailable during Sep 25 - Dec 23 +in.heating_unavailable_period Sep 25 - Oct 1 Heating is unavailable during Sep 25 - Oct 1 +in.heating_unavailable_period Sep 25 - Oct 8 Heating is unavailable during Sep 25 - Oct 8 +in.heating_unavailable_period Sep 25 - Sep 25 Heating is unavailable during Sep 25 - Sep 25 +in.heating_unavailable_period Sep 25 - Sep 27 Heating is unavailable during Sep 25 - Sep 27 +in.heating_unavailable_period Sep 26 - Oct 2 Heating is unavailable during Sep 26 - Oct 2 +in.heating_unavailable_period Sep 26 - Oct 9 Heating is unavailable during Sep 26 - Oct 9 +in.heating_unavailable_period Sep 26 - Sep 26 Heating is unavailable during Sep 26 - Sep 26 +in.heating_unavailable_period Sep 26 - Sep 28 Heating is unavailable during Sep 26 - Sep 28 +in.heating_unavailable_period Sep 27 - Dec 25 Heating is unavailable during Sep 27 - Dec 25 +in.heating_unavailable_period Sep 27 - Oct 10 Heating is unavailable during Sep 27 - Oct 10 +in.heating_unavailable_period Sep 27 - Oct 26 Heating is unavailable during Sep 27 - Oct 26 +in.heating_unavailable_period Sep 27 - Oct 3 Heating is unavailable during Sep 27 - Oct 3 +in.heating_unavailable_period Sep 27 - Sep 27 Heating is unavailable during Sep 27 - Sep 27 +in.heating_unavailable_period Sep 27 - Sep 29 Heating is unavailable during Sep 27 - Sep 29 +in.heating_unavailable_period Sep 28 - Dec 26 Heating is unavailable during Sep 28 - Dec 26 +in.heating_unavailable_period Sep 28 - Oct 11 Heating is unavailable during Sep 28 - Oct 11 +in.heating_unavailable_period Sep 28 - Oct 27 Heating is unavailable during Sep 28 - Oct 27 +in.heating_unavailable_period Sep 28 - Oct 4 Heating is unavailable during Sep 28 - Oct 4 +in.heating_unavailable_period Sep 28 - Sep 28 Heating is unavailable during Sep 28 - Sep 28 +in.heating_unavailable_period Sep 28 - Sep 30 Heating is unavailable during Sep 28 - Sep 30 +in.heating_unavailable_period Sep 29 - Oct 1 Heating is unavailable during Sep 29 - Oct 1 +in.heating_unavailable_period Sep 29 - Oct 12 Heating is unavailable during Sep 29 - Oct 12 +in.heating_unavailable_period Sep 29 - Oct 28 Heating is unavailable during Sep 29 - Oct 28 +in.heating_unavailable_period Sep 29 - Oct 5 Heating is unavailable during Sep 29 - Oct 5 +in.heating_unavailable_period Sep 29 - Sep 29 Heating is unavailable during Sep 29 - Sep 29 +in.heating_unavailable_period Sep 3 - Oct 2 Heating is unavailable during Sep 3 - Oct 2 +in.heating_unavailable_period Sep 3 - Sep 16 Heating is unavailable during Sep 3 - Sep 16 +in.heating_unavailable_period Sep 3 - Sep 3 Heating is unavailable during Sep 3 - Sep 3 +in.heating_unavailable_period Sep 3 - Sep 5 Heating is unavailable during Sep 3 - Sep 5 +in.heating_unavailable_period Sep 3 - Sep 9 Heating is unavailable during Sep 3 - Sep 9 +in.heating_unavailable_period Sep 30 - Dec 28 Heating is unavailable during Sep 30 - Dec 28 +in.heating_unavailable_period Sep 30 - Oct 13 Heating is unavailable during Sep 30 - Oct 13 +in.heating_unavailable_period Sep 30 - Oct 2 Heating is unavailable during Sep 30 - Oct 2 +in.heating_unavailable_period Sep 30 - Oct 29 Heating is unavailable during Sep 30 - Oct 29 +in.heating_unavailable_period Sep 30 - Oct 6 Heating is unavailable during Sep 30 - Oct 6 +in.heating_unavailable_period Sep 30 - Sep 30 Heating is unavailable during Sep 30 - Sep 30 +in.heating_unavailable_period Sep 4 - Dec 2 Heating is unavailable during Sep 4 - Dec 2 +in.heating_unavailable_period Sep 4 - Oct 3 Heating is unavailable during Sep 4 - Oct 3 +in.heating_unavailable_period Sep 4 - Sep 10 Heating is unavailable during Sep 4 - Sep 10 +in.heating_unavailable_period Sep 4 - Sep 4 Heating is unavailable during Sep 4 - Sep 4 +in.heating_unavailable_period Sep 4 - Sep 6 Heating is unavailable during Sep 4 - Sep 6 +in.heating_unavailable_period Sep 5 - Dec 3 Heating is unavailable during Sep 5 - Dec 3 +in.heating_unavailable_period Sep 5 - Sep 18 Heating is unavailable during Sep 5 - Sep 18 +in.heating_unavailable_period Sep 5 - Sep 5 Heating is unavailable during Sep 5 - Sep 5 +in.heating_unavailable_period Sep 5 - Sep 7 Heating is unavailable during Sep 5 - Sep 7 +in.heating_unavailable_period Sep 6 - Oct 5 Heating is unavailable during Sep 6 - Oct 5 +in.heating_unavailable_period Sep 6 - Sep 12 Heating is unavailable during Sep 6 - Sep 12 +in.heating_unavailable_period Sep 6 - Sep 6 Heating is unavailable during Sep 6 - Sep 6 +in.heating_unavailable_period Sep 6 - Sep 8 Heating is unavailable during Sep 6 - Sep 8 +in.heating_unavailable_period Sep 7 - Dec 5 Heating is unavailable during Sep 7 - Dec 5 +in.heating_unavailable_period Sep 7 - Oct 6 Heating is unavailable during Sep 7 - Oct 6 +in.heating_unavailable_period Sep 7 - Sep 13 Heating is unavailable during Sep 7 - Sep 13 +in.heating_unavailable_period Sep 7 - Sep 20 Heating is unavailable during Sep 7 - Sep 20 +in.heating_unavailable_period Sep 7 - Sep 7 Heating is unavailable during Sep 7 - Sep 7 +in.heating_unavailable_period Sep 7 - Sep 9 Heating is unavailable during Sep 7 - Sep 9 +in.heating_unavailable_period Sep 8 - Dec 6 Heating is unavailable during Sep 8 - Dec 6 +in.heating_unavailable_period Sep 8 - Oct 7 Heating is unavailable during Sep 8 - Oct 7 +in.heating_unavailable_period Sep 8 - Sep 10 Heating is unavailable during Sep 8 - Sep 10 +in.heating_unavailable_period Sep 8 - Sep 14 Heating is unavailable during Sep 8 - Sep 14 +in.heating_unavailable_period Sep 8 - Sep 21 Heating is unavailable during Sep 8 - Sep 21 +in.heating_unavailable_period Sep 8 - Sep 8 Heating is unavailable during Sep 8 - Sep 8 +in.heating_unavailable_period Sep 9 - Dec 7 Heating is unavailable during Sep 9 - Dec 7 +in.heating_unavailable_period Sep 9 - Sep 11 Heating is unavailable during Sep 9 - Sep 11 +in.heating_unavailable_period Sep 9 - Sep 15 Heating is unavailable during Sep 9 - Sep 15 +in.heating_unavailable_period Sep 9 - Sep 22 Heating is unavailable during Sep 9 - Sep 22 +in.heating_unavailable_period Sep 9 - Sep 9 Heating is unavailable during Sep 9 - Sep 9 +in.holiday_lighting No Exterior Use No holiday lighting load +in.hot_water_distribution Uninsulated Uninsulated piping +in.hot_water_fixtures 100% Usage Hot water fixtures used at 100% the national average +in.hot_water_fixtures 110% Usage Hot water fixtures used at 110% the national average +in.hot_water_fixtures 120% Usage Hot water fixtures used at 120% the national average +in.hot_water_fixtures 130% Usage Hot water fixtures used at 130% the national average +in.hot_water_fixtures 140% Usage Hot water fixtures used at 140% the national average +in.hot_water_fixtures 150% Usage Hot water fixtures used at 150% the national average +in.hot_water_fixtures 160% Usage Hot water fixtures used at 160% the national average +in.hot_water_fixtures 170% Usage Hot water fixtures used at 170% the national average +in.hot_water_fixtures 180% Usage Hot water fixtures used at 180% the national average +in.hot_water_fixtures 200% Usage Hot water fixtures used at 200% the national average +in.hot_water_fixtures 50% Usage Hot water fixtures used at 50% the national average +in.hot_water_fixtures 60% Usage Hot water fixtures used at 60% the national average +in.hot_water_fixtures 70% Usage Hot water fixtures used at 70% the national average +in.hot_water_fixtures 80% Usage Hot water fixtures used at 80% the national average +in.hot_water_fixtures 90% Usage Hot water fixtures used at 90% the national average +in.household_has_tribal_persons No The houshold occupying the dwelling unit doesn't have tribal persons +in.household_has_tribal_persons Not Available Data on whether there are tribal persons within the dwelling unit are not available +in.household_has_tribal_persons Yes The houshold occupying the dwelling unit has at least one tribal person +in.hvac_cooling_autosizing_factor None Cooling airflow and capacity scaling factor auto-sizing methodology is not used +in.hvac_cooling_efficiency "AC, SEER 10" 10 SEER Central AC +in.hvac_cooling_efficiency "AC, SEER 13" 13 SEER Central AC +in.hvac_cooling_efficiency "AC, SEER 15" 15 SEER Central AC +in.hvac_cooling_efficiency "AC, SEER 8" 8 SEER Central AC +in.hvac_cooling_efficiency Ducted Heat Pump Ducted Heat Pump cooling +in.hvac_cooling_efficiency Non-Ducted Heat Pump Non-Ducted Heat Pump cooling +in.hvac_cooling_efficiency None No cooling system +in.hvac_cooling_efficiency "Room AC, EER 10.7" 10.7 EER Room AC +in.hvac_cooling_efficiency "Room AC, EER 12.0" 12.0 EER Room AC +in.hvac_cooling_efficiency "Room AC, EER 8.5" 8.5 EER Room AC +in.hvac_cooling_efficiency "Room AC, EER 9.8" 9.8 EER Room AC +in.hvac_cooling_efficiency Shared Cooling A shared system is used for cooling +in.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning 20% Conditioned Space is 20% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning 40% Conditioned Space is 40% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning 60% Conditioned Space is 60% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning 80% Conditioned Space is 80% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning <10% Conditioned Space is <10% Conditioned for cooling +in.hvac_cooling_partial_space_conditioning None Space is not conditioned +in.hvac_cooling_type Central AC Central AC is used for cooling +in.hvac_cooling_type Ducted Heat Pump Ducted heat pump is used for cooling +in.hvac_cooling_type Non-Ducted Heat Pump Non-Ducted heat pump is used for cooling +in.hvac_cooling_type None No cooling system +in.hvac_cooling_type Room AC Room AC is used for cooling +in.hvac_has_ducts No Unit does not have ducts +in.hvac_has_ducts Yes Unit has ducts +in.hvac_has_shared_system Cooling Only Shared HVAC system is used for cooling only +in.hvac_has_shared_system Heating Only Shared HVAC system is used for heating only +in.hvac_has_shared_system Heating and Cooling Shared HVAC system is used for heating and cooling +in.hvac_has_shared_system None No shared HVAC system present +in.hvac_has_zonal_electric_heating No No electric baseboard heating +in.hvac_has_zonal_electric_heating Yes Has electric baseboard heating +in.hvac_heating_autosizing_factor None Heating airflow and capacity scaling factor auto-sizing methodology is not used +in.hvac_heating_efficiency "ASHP, SEER 10, 6.2 HSPF" 10 SEER air source heat pump +in.hvac_heating_efficiency "ASHP, SEER 13, 7.7 HSPF" 13 SEER air source heat pump +in.hvac_heating_efficiency "ASHP, SEER 15, 8.5 HSPF" 15 SEER air source heat pump +in.hvac_heating_efficiency "Electric Baseboard, 100% Efficiency" Electric baseboard heating system +in.hvac_heating_efficiency "Electric Boiler, 100% AFUE" Electric boiler heating system +in.hvac_heating_efficiency "Electric Furnace, 100% AFUE" Electric furnace heating system +in.hvac_heating_efficiency "Electric Wall Furnace, 100% AFUE" Electric wall furnace heating system +in.hvac_heating_efficiency "Fuel Boiler, 76% AFUE" "Fuel Boiler, 76% AFUE" +in.hvac_heating_efficiency "Fuel Boiler, 80% AFUE" "Fuel Boiler, 80% AFUE" +in.hvac_heating_efficiency "Fuel Boiler, 90% AFUE" "Fuel Boiler, 90% AFUE" +in.hvac_heating_efficiency "Fuel Furnace, 60% AFUE" "Fuel Furnace, 60% AFUE" +in.hvac_heating_efficiency "Fuel Furnace, 76% AFUE" "Fuel Furnace, 76% AFUE" +in.hvac_heating_efficiency "Fuel Furnace, 80% AFUE" "Fuel Furnace, 80% AFUE" +in.hvac_heating_efficiency "Fuel Furnace, 92.5% AFUE" "Fuel Furnace, 92.5% AFUE" +in.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 60% AFUE" "Fuel Wall/Floor Furnace, 60% AFUE" +in.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 68% AFUE" "Fuel Wall/Floor Furnace, 68% AFUE" +in.hvac_heating_efficiency "MSHP, SEER 14.5, 8.2 HSPF" 14.5 SEER mini split heat pump +in.hvac_heating_efficiency "MSHP, SEER 29.3, 14 HSPF" 29.3 SEER mini split heat pump +in.hvac_heating_efficiency None No heating system +in.hvac_heating_efficiency Shared Heating A shared system is used for heating +in.hvac_heating_type Ducted Heat Pump Heat pump system with ducts +in.hvac_heating_type Ducted Heating Non-heat pump heating system with ducts is used for heating +in.hvac_heating_type Non-Ducted Heat Pump Heat pump system with no ducts is used for heating +in.hvac_heating_type Non-Ducted Heating Non-heat pump heating system with no ducts is used for heating +in.hvac_heating_type None No heating system +in.hvac_heating_type_and_fuel Electricity ASHP Electric air source heat pump heating system +in.hvac_heating_type_and_fuel Electricity Baseboard Electric baseboard heating system +in.hvac_heating_type_and_fuel Electricity Electric Boiler Electric boiler heating system +in.hvac_heating_type_and_fuel Electricity Electric Furnace Electric furnace heating system +in.hvac_heating_type_and_fuel Electricity Electric Wall Furnace Electric wall furnace heating system +in.hvac_heating_type_and_fuel Electricity MSHP Electric mini split heat pump heating system +in.hvac_heating_type_and_fuel Electricity Shared Heating Electric shared heating system +in.hvac_heating_type_and_fuel Fuel Oil Fuel Boiler Fuel oil boiler heating system +in.hvac_heating_type_and_fuel Fuel Oil Fuel Furnace Fuel oil furnace heating system +in.hvac_heating_type_and_fuel Fuel Oil Fuel Wall/Floor Furnace Fuel oil wall/floor furnace heating system +in.hvac_heating_type_and_fuel Fuel Oil Shared Heating Fuel oil shared heating system +in.hvac_heating_type_and_fuel Natural Gas Fuel Boiler Natural gas boiler heating system +in.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Natural gas furnace heating system +in.hvac_heating_type_and_fuel Natural Gas Fuel Wall/Floor Furnace Natural gas wall/floor furnance heating system +in.hvac_heating_type_and_fuel Natural Gas Shared Heating Natural gas shared heating system +in.hvac_heating_type_and_fuel None No heating system +in.hvac_heating_type_and_fuel Other Fuel Fuel Boiler Other fuel (wood) boiler heating system +in.hvac_heating_type_and_fuel Other Fuel Fuel Furnace Other fuel (wood) furnace heating system +in.hvac_heating_type_and_fuel Other Fuel Fuel Wall/Floor Furnace Other fuel (wood) wall/floor furnace heating system +in.hvac_heating_type_and_fuel Other Fuel Shared Heating Other fuel (wood) shared heating system +in.hvac_heating_type_and_fuel Propane Fuel Boiler Propane boiler heating system +in.hvac_heating_type_and_fuel Propane Fuel Furnace Propane furnace heating system +in.hvac_heating_type_and_fuel Propane Fuel Wall/Floor Furnace Propane wall/floor furnace heating system +in.hvac_heating_type_and_fuel Propane Shared Heating Propane shared heating system +in.hvac_heating_type_and_fuel Void Not applicable for this variable +in.hvac_secondary_heating_efficiency "Fuel Boiler, 76% AFUE" "The secondary heating system is Fuel Boiler, 76% AFUE" +in.hvac_secondary_heating_efficiency "Fuel Boiler, 80% AFUE" "The secondary heating system is Fuel Boiler, 80% AFUE" +in.hvac_secondary_heating_efficiency "Fuel Boiler, 90% AFUE" "The secondary heating system is Fuel Boiler, 90% AFUE" +in.hvac_secondary_heating_efficiency "Fuel Furnace, 80% AFUE" "The secondary heating system is Fuel Furnace, 80% AFUE" +in.hvac_secondary_heating_efficiency "Fuel Furnace, 92.5% AFUE" "The secondary heating system is Fuel Furnace, 92.5% AFUE" +in.hvac_secondary_heating_efficiency None No secondary heating system +in.hvac_secondary_heating_fuel Fuel Oil The secondary heating system uses Fuel Oil as fuel +in.hvac_secondary_heating_fuel Natural Gas The secondary heating system uses Natural Gas as fuel +in.hvac_secondary_heating_fuel None No secondary heating system +in.hvac_secondary_heating_fuel Wood The secondary heating system uses Wood as fuel +in.hvac_secondary_heating_partial_space_conditioning 0% No space has secondary heating +in.hvac_secondary_heating_partial_space_conditioning 10% 10% space has secondary heating +in.hvac_secondary_heating_partial_space_conditioning 20% 20% space has secondary heating +in.hvac_secondary_heating_partial_space_conditioning 30% 30% space has secondary heating +in.hvac_secondary_heating_partial_space_conditioning 40% 40% space has secondary heating +in.hvac_secondary_heating_partial_space_conditioning 49% 49% space has secondary heating +in.hvac_secondary_heating_type Ducted Heating Secondary heating system is ducted +in.hvac_secondary_heating_type Non-Ducted Heating Secondary heating system is non-ducted +in.hvac_secondary_heating_type None No secondary heating system +in.hvac_shared_efficiencies "Boiler Baseboards Heating Only, Electricity" Shared electric boiler baseboard heating system +in.hvac_shared_efficiencies "Boiler Baseboards Heating Only, Fuel" Shared fuel boiler baseboard heating system +in.hvac_shared_efficiencies Fan Coil Cooling Only Central chiller +in.hvac_shared_efficiencies "Fan Coil Heating and Cooling, Electricity" Central chiller and central electric boiler +in.hvac_shared_efficiencies "Fan Coil Heating and Cooling, Fuel" Central chiller and central fuel boiler +in.hvac_shared_efficiencies None No shared HVAC system present +in.hvac_system_is_faulted No Does not model HVAC installation faults +in.hvac_system_is_scaled None Does not model HVAC installation faults +in.hvac_system_single_speed_ac_airflow None Does not model HVAC installation faults +in.hvac_system_single_speed_ac_charge None Does not model HVAC installation faults +in.hvac_system_single_speed_ashp_airflow None Does not model HVAC installation faults +in.hvac_system_single_speed_ashp_charge None Does not model HVAC installation faults +in.income 10000-14999 Income level of $10000-$14999 +in.income 100000-119999 Income level of $100000-$119999 +in.income 120000-139999 Income level of $120000-$139999 +in.income 140000-159999 Income level of $140000-$159999 +in.income 15000-19999 Income level of $15000-$19999 +in.income 160000-179999 Income level of $160000-$179999 +in.income 180000-199999 Income level of $180000-$199999 +in.income 20000-24999 Income level of $20000-$24999 +in.income 200000+ Income level of $200000+ +in.income 25000-29999 Income level of $25000-$29999 +in.income 30000-34999 Income level of $30000-$34999 +in.income 35000-39999 Income level of $35000-$39999 +in.income 40000-44999 Income level of $40000-$44999 +in.income 45000-49999 Income level of $45000-$49999 +in.income 50000-59999 Income level of $50000-$59999 +in.income 60000-69999 Income level of $60000-$69999 +in.income 70000-79999 Income level of $70000-$79999 +in.income 80000-99999 Income level of $80000-$99999 +in.income <10000 Income level of <$10000 +in.income Not Available Income level is Not Available +in.income_recs_2015 100000-119999 Income level of $100000-$119999 according to RECS 2015 +in.income_recs_2015 120000-139999 Income level of $120000-$139999 according to RECS 2015 +in.income_recs_2015 140000+ Income level of $140000+ according to RECS 2015 +in.income_recs_2015 20000-39999 Income level of $20000-$39999 according to RECS 2015 +in.income_recs_2015 40000-59999 Income level of $40000-$59999 according to RECS 2015 +in.income_recs_2015 60000-79999 Income level of $60000-$79999 according to RECS 2015 +in.income_recs_2015 80000-99999 Income level of $80000-$99999 according to RECS 2015 +in.income_recs_2015 <20000 Income level of <$20000 according to RECS 2015 +in.income_recs_2015 Not Available Income level is Not Available according to RECS 2015 +in.income_recs_2020 100000-149999 Income level of $100000-$149999 according to RECS 2020 +in.income_recs_2020 150000+ Income level of $150000+ according to RECS 2020 +in.income_recs_2020 20000-39999 Income level of $20000-$39999 according to RECS 2020 +in.income_recs_2020 40000-59999 Income level of $40000-$59999 according to RECS 2020 +in.income_recs_2020 60000-99999 Income level of $60000-$99999 according to RECS 2020 +in.income_recs_2020 <20000 Income level of <$20000 according to RECS 2020 +in.income_recs_2020 Not Available Income level is Not Available according to RECS 2020 +in.infiltration 1 ACH50 Infiltration rate of 1 ACH50 in living and garage spaces +in.infiltration 10 ACH50 Infiltration rate of 10 ACH50 in living and garage spaces +in.infiltration 15 ACH50 Infiltration rate of 15 ACH50 in living and garage spaces +in.infiltration 2 ACH50 Infiltration rate of 2 ACH50 in living and garage spaces +in.infiltration 20 ACH50 Infiltration rate of 20 ACH50 in living and garage spaces +in.infiltration 25 ACH50 Infiltration rate of 25 ACH50 in living and garage spaces +in.infiltration 3 ACH50 Infiltration rate of 3 ACH50 in living and garage spaces +in.infiltration 30 ACH50 Infiltration rate of 30 ACH50 in living and garage spaces +in.infiltration 4 ACH50 Infiltration rate of 4 ACH50 in living and garage spaces +in.infiltration 40 ACH50 Infiltration rate of 40 ACH50 in living and garage spaces +in.infiltration 5 ACH50 Infiltration rate of 5 ACH50 in living and garage spaces +in.infiltration 50 ACH50 Infiltration rate of 50 ACH50 in living and garage spaces +in.infiltration 6 ACH50 Infiltration rate of 6 ACH50 in living and garage spaces +in.infiltration 7 ACH50 Infiltration rate of 7 ACH50 in living and garage spaces +in.infiltration 8 ACH50 Infiltration rate of 8 ACH50 in living and garage spaces +in.insulation_ceiling None No insulation in ceiling +in.insulation_ceiling R-13 R-13 ceiling insulation +in.insulation_ceiling R-19 R-19 ceiling insulation +in.insulation_ceiling R-30 R-30 ceiling insulation +in.insulation_ceiling R-38 R-38 ceiling insulation +in.insulation_ceiling R-49 R-49 ceiling insulation +in.insulation_ceiling R-7 R-7 ceiling insulation +in.insulation_ceiling Uninsulated Uninsulated ceiling +in.insulation_floor Ceiling R-13 R-13 floor cavity insulation +in.insulation_floor Ceiling R-19 R-19 floor cavity insulation +in.insulation_floor Ceiling R-30 R-30 floor cavity insualtion +in.insulation_floor None Floor cavity insulation is not applicable +in.insulation_floor Uninsulated Uninsulated floor cavity +in.insulation_foundation_wall None Foundation wall insulation is not applicable +in.insulation_foundation_wall Uninsulated Uninsulated foundation walls +in.insulation_foundation_wall "Wall R-10, Exterior" R-10 rigid foundation wall insulation +in.insulation_foundation_wall "Wall R-15, Exterior" R-15 rigid foundation wall insulation +in.insulation_foundation_wall "Wall R-5, Exterior" R-5 rigid foundation wall insulation +in.insulation_rim_joist None Rim joist insulation is not applicable +in.insulation_rim_joist "R-10, Exterior" R-10 exterior rim joist insulation +in.insulation_rim_joist "R-15, Exterior" R-15 exterior rim joist insulation +in.insulation_rim_joist "R-5, Exterior" R-5 exterior rim joist insulation +in.insulation_rim_joist Uninsulated Uninsulated rim joist +in.insulation_roof "Finished, R-13" R-13 finished roof insulation +in.insulation_roof "Finished, R-19" R-19 finished roof insulation +in.insulation_roof "Finished, R-30" R-30 finished roof insulation +in.insulation_roof "Finished, R-38" R-38 finished roof insulation +in.insulation_roof "Finished, R-49" R-49 finished roof insulation +in.insulation_roof "Finished, R-7" R-7 finished roof insulation +in.insulation_roof "Finished, Uninsulated" Uninsulated finished roof +in.insulation_roof "Unfinished, Uninsulated" No finished roof +in.insulation_slab "2ft R10 Perimeter, Vertical" R-10 rigid perimeter insulation extending 2ft below the top of the slab +in.insulation_slab "2ft R10 Under, Horizontal" R-10 rigid insulation beneath slab +in.insulation_slab "2ft R5 Perimeter, Vertical" R-5 rigid perimeter insulation extending 2ft below the top of the slab +in.insulation_slab "2ft R5 Under, Horizontal" R-5 rigid insulation beneath slab +in.insulation_slab None Slab insulation not applicable +in.insulation_slab Uninsulated Uninsulated slab +in.insulation_wall "Brick, 12-in, 3-wythe, R-11" 12 inch thick brick wall with R-11 insulation +in.insulation_wall "Brick, 12-in, 3-wythe, R-15" 12 inch thick brick wall with R-15 insulation +in.insulation_wall "Brick, 12-in, 3-wythe, R-19" 12 inch thick brick wall with R-19 insulation +in.insulation_wall "Brick, 12-in, 3-wythe, R-7" 12 inch thick brick wall with R-7 insulation +in.insulation_wall "Brick, 12-in, 3-wythe, Uninsulated" "12 inch thick brick wall, uninsulated" +in.insulation_wall "CMU, 6-in Hollow, R-11" 6 inch thick hollow CMU wall with R-11 insulation +in.insulation_wall "CMU, 6-in Hollow, R-15" 6 inch thick hollow CMU wall with R-15 insulation +in.insulation_wall "CMU, 6-in Hollow, R-19" 6 inch thick hollow CMU wall with R-19 insulation +in.insulation_wall "CMU, 6-in Hollow, R-7" 6 inch thick hollow CMU wall with R-7 insulation +in.insulation_wall "CMU, 6-in Hollow, Uninsulated" "6 inch thick hollow CMU wall, uninsulated" +in.insulation_wall "Wood Stud, R-11" Wood frame walls with R-11 insulation +in.insulation_wall "Wood Stud, R-15" Wood frame walls with R-15 insulation +in.insulation_wall "Wood Stud, R-19" Wood frame walls with R-19 insulation +in.insulation_wall "Wood Stud, R-7" Wood frame walls with R-7 insulation +in.insulation_wall "Wood Stud, Uninsulated" "Wood frame walls, uninsulated" +in.interior_shading "Summer = 0.7, Winter = 0.85" Window shading that reduces summer solar gains by 30% and winter solar gains by 15% +in.iso_rto_region CAISO California ISO +in.iso_rto_region ERCOT Electric Reliability Council of Texas +in.iso_rto_region MISO Midcontinent ISO +in.iso_rto_region NEISO New England ISO +in.iso_rto_region NYISO New York ISO +in.iso_rto_region None No ISO/RTO +in.iso_rto_region PJM Pennsylvania-New Jersey-Maryland RTO +in.iso_rto_region SPP Southwest Power Pool RTO +in.lighting 100% CFL All lighting is compact flourescent lighting +in.lighting 100% Incandescent All lighting is incandescent +in.lighting 100% LED All lighting is LED +in.lighting_interior_use 100% Usage Interior lighting usage at 100% the national average +in.lighting_other_use 100% Usage Exterior and garage lighting usage at 100% the national average +in.location_region CR02 ResStock custom region 2 +in.location_region CR03 ResStock custom region 3 +in.location_region CR04 ResStock custom region 4 +in.location_region CR05 ResStock custom region 5 +in.location_region CR06 ResStock custom region 6 +in.location_region CR07 ResStock custom region 7 +in.location_region CR08 ResStock custom region 8 +in.location_region CR09 ResStock custom region 9 +in.location_region CR10 ResStock custom region 10 +in.location_region CR11 ResStock custom region 11 +in.location_region CRAK ResStock custom region AK +in.location_region CRHI ResStock custom region HI +in.mechanical_ventilation None No mechanical ventilation +in.metropolitan_and_micropolitan_statistical_area "Aberdeen, SD MicroSA" "The dwelling unit is located in Aberdeen, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Aberdeen, WA MicroSA" "The dwelling unit is located in Aberdeen, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Abilene, TX MSA" "The dwelling unit is located in Abilene, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Ada, OK MicroSA" "The dwelling unit is located in Ada, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Adrian, MI MicroSA" "The dwelling unit is located in Adrian, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Akron, OH MSA" "The dwelling unit is located in Akron, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Alamogordo, NM MicroSA" "The dwelling unit is located in Alamogordo, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Albany, GA MSA" "The dwelling unit is located in Albany, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Albany, OR MSA" "The dwelling unit is located in Albany, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Albany-Schenectady-Troy, NY MSA" "The dwelling unit is located in Albany-Schenectady-Troy, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Albemarle, NC MicroSA" "The dwelling unit is located in Albemarle, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Albert Lea, MN MicroSA" "The dwelling unit is located in Albert Lea, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Albertville, AL MicroSA" "The dwelling unit is located in Albertville, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Albuquerque, NM MSA" "The dwelling unit is located in Albuquerque, NM MSA" +in.metropolitan_and_micropolitan_statistical_area "Alexandria, LA MSA" "The dwelling unit is located in Alexandria, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Alexandria, MN MicroSA" "The dwelling unit is located in Alexandria, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Alice, TX MicroSA" "The dwelling unit is located in Alice, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Allentown-Bethlehem-Easton, PA-NJ MSA" "The dwelling unit is located in Allentown-Bethlehem-Easton, PA-NJ MSA" +in.metropolitan_and_micropolitan_statistical_area "Alma, MI MicroSA" "The dwelling unit is located in Alma, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Alpena, MI MicroSA" "The dwelling unit is located in Alpena, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Altoona, PA MSA" "The dwelling unit is located in Altoona, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Altus, OK MicroSA" "The dwelling unit is located in Altus, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Amarillo, TX MSA" "The dwelling unit is located in Amarillo, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Americus, GA MicroSA" "The dwelling unit is located in Americus, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ames, IA MSA" "The dwelling unit is located in Ames, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Amsterdam, NY MicroSA" "The dwelling unit is located in Amsterdam, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Anchorage, AK MSA" "The dwelling unit is located in Anchorage, AK MSA" +in.metropolitan_and_micropolitan_statistical_area "Andrews, TX MicroSA" "The dwelling unit is located in Andrews, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Angola, IN MicroSA" "The dwelling unit is located in Angola, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ann Arbor, MI MSA" "The dwelling unit is located in Ann Arbor, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Anniston-Oxford-Jacksonville, AL MSA" "The dwelling unit is located in Anniston-Oxford-Jacksonville, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Appleton, WI MSA" "The dwelling unit is located in Appleton, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Arcadia, FL MicroSA" "The dwelling unit is located in Arcadia, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ardmore, OK MicroSA" "The dwelling unit is located in Ardmore, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Arkadelphia, AR MicroSA" "The dwelling unit is located in Arkadelphia, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Arkansas City-Winfield, KS MicroSA" "The dwelling unit is located in Arkansas City-Winfield, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Asheville, NC MSA" "The dwelling unit is located in Asheville, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Ashland, OH MicroSA" "The dwelling unit is located in Ashland, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ashtabula, OH MicroSA" "The dwelling unit is located in Ashtabula, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Astoria, OR MicroSA" "The dwelling unit is located in Astoria, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Atchison, KS MicroSA" "The dwelling unit is located in Atchison, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Athens, OH MicroSA" "The dwelling unit is located in Athens, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Athens, TN MicroSA" "The dwelling unit is located in Athens, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Athens, TX MicroSA" "The dwelling unit is located in Athens, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Athens-Clarke County, GA MSA" "The dwelling unit is located in Athens-Clarke County, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Atlanta-Sandy Springs-Roswell, GA MSA" "The dwelling unit is located in Atlanta-Sandy Springs-Roswell, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Atlantic City-Hammonton, NJ MSA" "The dwelling unit is located in Atlantic City-Hammonton, NJ MSA" +in.metropolitan_and_micropolitan_statistical_area "Auburn, IN MicroSA" "The dwelling unit is located in Auburn, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Auburn, NY MicroSA" "The dwelling unit is located in Auburn, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Auburn-Opelika, AL MSA" "The dwelling unit is located in Auburn-Opelika, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Augusta-Richmond County, GA-SC MSA" "The dwelling unit is located in Augusta-Richmond County, GA-SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Augusta-Waterville, ME MicroSA" "The dwelling unit is located in Augusta-Waterville, ME MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Austin, MN MicroSA" "The dwelling unit is located in Austin, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Austin-Round Rock, TX MSA" "The dwelling unit is located in Austin-Round Rock, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Bainbridge, GA MicroSA" "The dwelling unit is located in Bainbridge, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bakersfield, CA MSA" "The dwelling unit is located in Bakersfield, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Baltimore-Columbia-Towson, MD MSA" "The dwelling unit is located in Baltimore-Columbia-Towson, MD MSA" +in.metropolitan_and_micropolitan_statistical_area "Bangor, ME MSA" "The dwelling unit is located in Bangor, ME MSA" +in.metropolitan_and_micropolitan_statistical_area "Baraboo, WI MicroSA" "The dwelling unit is located in Baraboo, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bardstown, KY MicroSA" "The dwelling unit is located in Bardstown, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Barnstable Town, MA MSA" "The dwelling unit is located in Barnstable Town, MA MSA" +in.metropolitan_and_micropolitan_statistical_area "Barre, VT MicroSA" "The dwelling unit is located in Barre, VT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bartlesville, OK MicroSA" "The dwelling unit is located in Bartlesville, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bastrop, LA MicroSA" "The dwelling unit is located in Bastrop, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Batavia, NY MicroSA" "The dwelling unit is located in Batavia, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Batesville, AR MicroSA" "The dwelling unit is located in Batesville, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Baton Rouge, LA MSA" "The dwelling unit is located in Baton Rouge, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Battle Creek, MI MSA" "The dwelling unit is located in Battle Creek, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Bay City, MI MSA" "The dwelling unit is located in Bay City, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Bay City, TX MicroSA" "The dwelling unit is located in Bay City, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Beatrice, NE MicroSA" "The dwelling unit is located in Beatrice, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Beaumont-Port Arthur, TX MSA" "The dwelling unit is located in Beaumont-Port Arthur, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Beaver Dam, WI MicroSA" "The dwelling unit is located in Beaver Dam, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Beckley, WV MSA" "The dwelling unit is located in Beckley, WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Bedford, IN MicroSA" "The dwelling unit is located in Bedford, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Beeville, TX MicroSA" "The dwelling unit is located in Beeville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bellefontaine, OH MicroSA" "The dwelling unit is located in Bellefontaine, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bellingham, WA MSA" "The dwelling unit is located in Bellingham, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Bemidji, MN MicroSA" "The dwelling unit is located in Bemidji, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bend-Redmond, OR MSA" "The dwelling unit is located in Bend-Redmond, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Bennettsville, SC MicroSA" "The dwelling unit is located in Bennettsville, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bennington, VT MicroSA" "The dwelling unit is located in Bennington, VT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Berlin, NH-VT MicroSA" "The dwelling unit is located in Berlin, NH-VT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Big Rapids, MI MicroSA" "The dwelling unit is located in Big Rapids, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Big Spring, TX MicroSA" "The dwelling unit is located in Big Spring, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Big Stone Gap, VA MicroSA" "The dwelling unit is located in Big Stone Gap, VA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Billings, MT MSA" "The dwelling unit is located in Billings, MT MSA" +in.metropolitan_and_micropolitan_statistical_area "Binghamton, NY MSA" "The dwelling unit is located in Binghamton, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Birmingham-Hoover, AL MSA" "The dwelling unit is located in Birmingham-Hoover, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Bismarck, ND MSA" "The dwelling unit is located in Bismarck, ND MSA" +in.metropolitan_and_micropolitan_statistical_area "Blackfoot, ID MicroSA" "The dwelling unit is located in Blackfoot, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Blacksburg-Christiansburg-Radford, VA MSA" "The dwelling unit is located in Blacksburg-Christiansburg-Radford, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Bloomington, IL MSA" "The dwelling unit is located in Bloomington, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Bloomington, IN MSA" "The dwelling unit is located in Bloomington, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Bloomsburg-Berwick, PA MSA" "The dwelling unit is located in Bloomsburg-Berwick, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Bluefield, WV-VA MicroSA" "The dwelling unit is located in Bluefield, WV-VA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Blytheville, AR MicroSA" "The dwelling unit is located in Blytheville, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bogalusa, LA MicroSA" "The dwelling unit is located in Bogalusa, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Boise City, ID MSA" "The dwelling unit is located in Boise City, ID MSA" +in.metropolitan_and_micropolitan_statistical_area "Boone, IA MicroSA" "The dwelling unit is located in Boone, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Boone, NC MicroSA" "The dwelling unit is located in Boone, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Borger, TX MicroSA" "The dwelling unit is located in Borger, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Boston-Cambridge-Newton, MA-NH MSA" "The dwelling unit is located in Boston-Cambridge-Newton, MA-NH MSA" +in.metropolitan_and_micropolitan_statistical_area "Boulder, CO MSA" "The dwelling unit is located in Boulder, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Bowling Green, KY MSA" "The dwelling unit is located in Bowling Green, KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Bozeman, MT MicroSA" "The dwelling unit is located in Bozeman, MT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bradford, PA MicroSA" "The dwelling unit is located in Bradford, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brainerd, MN MicroSA" "The dwelling unit is located in Brainerd, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Branson, MO MicroSA" "The dwelling unit is located in Branson, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Breckenridge, CO MicroSA" "The dwelling unit is located in Breckenridge, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bremerton-Silverdale, WA MSA" "The dwelling unit is located in Bremerton-Silverdale, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Brenham, TX MicroSA" "The dwelling unit is located in Brenham, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brevard, NC MicroSA" "The dwelling unit is located in Brevard, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Bridgeport-Stamford-Norwalk, CT MSA" "The dwelling unit is located in Bridgeport-Stamford-Norwalk, CT MSA" +in.metropolitan_and_micropolitan_statistical_area "Brookhaven, MS MicroSA" "The dwelling unit is located in Brookhaven, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brookings, OR MicroSA" "The dwelling unit is located in Brookings, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brookings, SD MicroSA" "The dwelling unit is located in Brookings, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brownsville-Harlingen, TX MSA" "The dwelling unit is located in Brownsville-Harlingen, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Brownwood, TX MicroSA" "The dwelling unit is located in Brownwood, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Brunswick, GA MSA" "The dwelling unit is located in Brunswick, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Bucyrus, OH MicroSA" "The dwelling unit is located in Bucyrus, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" "The dwelling unit is located in Buffalo-Cheektowaga-Niagara Falls, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Burley, ID MicroSA" "The dwelling unit is located in Burley, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Burlington, IA-IL MicroSA" "The dwelling unit is located in Burlington, IA-IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Burlington, NC MSA" "The dwelling unit is located in Burlington, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Burlington-South Burlington, VT MSA" "The dwelling unit is located in Burlington-South Burlington, VT MSA" +in.metropolitan_and_micropolitan_statistical_area "Butte-Silver Bow, MT MicroSA" "The dwelling unit is located in Butte-Silver Bow, MT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cadillac, MI MicroSA" "The dwelling unit is located in Cadillac, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Calhoun, GA MicroSA" "The dwelling unit is located in Calhoun, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "California-Lexington Park, MD MSA" "The dwelling unit is located in California-Lexington Park, MD MSA" +in.metropolitan_and_micropolitan_statistical_area "Cambridge, MD MicroSA" "The dwelling unit is located in Cambridge, MD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cambridge, OH MicroSA" "The dwelling unit is located in Cambridge, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Camden, AR MicroSA" "The dwelling unit is located in Camden, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Campbellsville, KY MicroSA" "The dwelling unit is located in Campbellsville, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Canon City, CO MicroSA" "The dwelling unit is located in Canon City, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Canton, IL MicroSA" "The dwelling unit is located in Canton, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Canton-Massillon, OH MSA" "The dwelling unit is located in Canton-Massillon, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Cape Coral-Fort Myers, FL MSA" "The dwelling unit is located in Cape Coral-Fort Myers, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Cape Girardeau, MO-IL MSA" "The dwelling unit is located in Cape Girardeau, MO-IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Carbondale-Marion, IL MSA" "The dwelling unit is located in Carbondale-Marion, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Carlsbad-Artesia, NM MicroSA" "The dwelling unit is located in Carlsbad-Artesia, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Carson City, NV MSA" "The dwelling unit is located in Carson City, NV MSA" +in.metropolitan_and_micropolitan_statistical_area "Casper, WY MSA" "The dwelling unit is located in Casper, WY MSA" +in.metropolitan_and_micropolitan_statistical_area "Cedar City, UT MicroSA" "The dwelling unit is located in Cedar City, UT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cedar Rapids, IA MSA" "The dwelling unit is located in Cedar Rapids, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Cedartown, GA MicroSA" "The dwelling unit is located in Cedartown, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Celina, OH MicroSA" "The dwelling unit is located in Celina, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Centralia, IL MicroSA" "The dwelling unit is located in Centralia, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Centralia, WA MicroSA" "The dwelling unit is located in Centralia, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Chambersburg-Waynesboro, PA MSA" "The dwelling unit is located in Chambersburg-Waynesboro, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Champaign-Urbana, IL MSA" "The dwelling unit is located in Champaign-Urbana, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Charleston, WV MSA" "The dwelling unit is located in Charleston, WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Charleston-Mattoon, IL MicroSA" "The dwelling unit is located in Charleston-Mattoon, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Charleston-North Charleston, SC MSA" "The dwelling unit is located in Charleston-North Charleston, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Charlotte-Concord-Gastonia, NC-SC MSA" "The dwelling unit is located in Charlotte-Concord-Gastonia, NC-SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Charlottesville, VA MSA" "The dwelling unit is located in Charlottesville, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Chattanooga, TN-GA MSA" "The dwelling unit is located in Chattanooga, TN-GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Cheyenne, WY MSA" "The dwelling unit is located in Cheyenne, WY MSA" +in.metropolitan_and_micropolitan_statistical_area "Chicago-Naperville-Elgin, IL-IN-WI MSA" "The dwelling unit is located in Chicago-Naperville-Elgin, IL-IN-WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Chico, CA MSA" "The dwelling unit is located in Chico, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Chillicothe, OH MicroSA" "The dwelling unit is located in Chillicothe, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cincinnati, OH-KY-IN MSA" "The dwelling unit is located in Cincinnati, OH-KY-IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Claremont-Lebanon, NH-VT MicroSA" "The dwelling unit is located in Claremont-Lebanon, NH-VT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Clarksburg, WV MicroSA" "The dwelling unit is located in Clarksburg, WV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Clarksdale, MS MicroSA" "The dwelling unit is located in Clarksdale, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Clarksville, TN-KY MSA" "The dwelling unit is located in Clarksville, TN-KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Clearlake, CA MicroSA" "The dwelling unit is located in Clearlake, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cleveland, MS MicroSA" "The dwelling unit is located in Cleveland, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cleveland, TN MSA" "The dwelling unit is located in Cleveland, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Cleveland-Elyria, OH MSA" "The dwelling unit is located in Cleveland-Elyria, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Clewiston, FL MicroSA" "The dwelling unit is located in Clewiston, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Clinton, IA MicroSA" "The dwelling unit is located in Clinton, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Clovis, NM MicroSA" "The dwelling unit is located in Clovis, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Coeur d'Alene, ID MSA" "The dwelling unit is located in Coeur d'Alene, ID MSA" +in.metropolitan_and_micropolitan_statistical_area "Coffeyville, KS MicroSA" "The dwelling unit is located in Coffeyville, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Coldwater, MI MicroSA" "The dwelling unit is located in Coldwater, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "College Station-Bryan, TX MSA" "The dwelling unit is located in College Station-Bryan, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Colorado Springs, CO MSA" "The dwelling unit is located in Colorado Springs, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Columbia, MO MSA" "The dwelling unit is located in Columbia, MO MSA" +in.metropolitan_and_micropolitan_statistical_area "Columbia, SC MSA" "The dwelling unit is located in Columbia, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Columbus, GA-AL MSA" "The dwelling unit is located in Columbus, GA-AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Columbus, IN MSA" "The dwelling unit is located in Columbus, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Columbus, MS MicroSA" "The dwelling unit is located in Columbus, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Columbus, NE MicroSA" "The dwelling unit is located in Columbus, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Columbus, OH MSA" "The dwelling unit is located in Columbus, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Concord, NH MicroSA" "The dwelling unit is located in Concord, NH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Connersville, IN MicroSA" "The dwelling unit is located in Connersville, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cookeville, TN MicroSA" "The dwelling unit is located in Cookeville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Coos Bay, OR MicroSA" "The dwelling unit is located in Coos Bay, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cordele, GA MicroSA" "The dwelling unit is located in Cordele, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Corinth, MS MicroSA" "The dwelling unit is located in Corinth, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cornelia, GA MicroSA" "The dwelling unit is located in Cornelia, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Corning, NY MicroSA" "The dwelling unit is located in Corning, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Corpus Christi, TX MSA" "The dwelling unit is located in Corpus Christi, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Corsicana, TX MicroSA" "The dwelling unit is located in Corsicana, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cortland, NY MicroSA" "The dwelling unit is located in Cortland, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Corvallis, OR MSA" "The dwelling unit is located in Corvallis, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Coshocton, OH MicroSA" "The dwelling unit is located in Coshocton, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Craig, CO MicroSA" "The dwelling unit is located in Craig, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Crawfordsville, IN MicroSA" "The dwelling unit is located in Crawfordsville, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Crescent City, CA MicroSA" "The dwelling unit is located in Crescent City, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Crestview-Fort Walton Beach-Destin, FL MSA" "The dwelling unit is located in Crestview-Fort Walton Beach-Destin, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Crossville, TN MicroSA" "The dwelling unit is located in Crossville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cullman, AL MicroSA" "The dwelling unit is located in Cullman, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cullowhee, NC MicroSA" "The dwelling unit is located in Cullowhee, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Cumberland, MD-WV MSA" "The dwelling unit is located in Cumberland, MD-WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Dallas-Fort Worth-Arlington, TX MSA" "The dwelling unit is located in Dallas-Fort Worth-Arlington, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Dalton, GA MSA" "The dwelling unit is located in Dalton, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Danville, IL MSA" "The dwelling unit is located in Danville, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Danville, KY MicroSA" "The dwelling unit is located in Danville, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Danville, VA MicroSA" "The dwelling unit is located in Danville, VA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Daphne-Fairhope-Foley, AL MSA" "The dwelling unit is located in Daphne-Fairhope-Foley, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Davenport-Moline-Rock Island, IA-IL MSA" "The dwelling unit is located in Davenport-Moline-Rock Island, IA-IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Dayton, OH MSA" "The dwelling unit is located in Dayton, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Dayton, TN MicroSA" "The dwelling unit is located in Dayton, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "DeRidder, LA MicroSA" "The dwelling unit is located in DeRidder, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Decatur, AL MSA" "The dwelling unit is located in Decatur, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Decatur, IL MSA" "The dwelling unit is located in Decatur, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Decatur, IN MicroSA" "The dwelling unit is located in Decatur, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Defiance, OH MicroSA" "The dwelling unit is located in Defiance, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Del Rio, TX MicroSA" "The dwelling unit is located in Del Rio, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Deltona-Daytona Beach-Ormond Beach, FL MSA" "The dwelling unit is located in Deltona-Daytona Beach-Ormond Beach, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Deming, NM MicroSA" "The dwelling unit is located in Deming, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Denver-Aurora-Lakewood, CO MSA" "The dwelling unit is located in Denver-Aurora-Lakewood, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Des Moines-West Des Moines, IA MSA" "The dwelling unit is located in Des Moines-West Des Moines, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Detroit-Warren-Dearborn, MI MSA" "The dwelling unit is located in Detroit-Warren-Dearborn, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Dickinson, ND MicroSA" "The dwelling unit is located in Dickinson, ND MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dixon, IL MicroSA" "The dwelling unit is located in Dixon, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dodge City, KS MicroSA" "The dwelling unit is located in Dodge City, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dothan, AL MSA" "The dwelling unit is located in Dothan, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Douglas, GA MicroSA" "The dwelling unit is located in Douglas, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dover, DE MSA" "The dwelling unit is located in Dover, DE MSA" +in.metropolitan_and_micropolitan_statistical_area "DuBois, PA MicroSA" "The dwelling unit is located in DuBois, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dublin, GA MicroSA" "The dwelling unit is located in Dublin, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dubuque, IA MSA" "The dwelling unit is located in Dubuque, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Duluth, MN-WI MSA" "The dwelling unit is located in Duluth, MN-WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Dumas, TX MicroSA" "The dwelling unit is located in Dumas, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Duncan, OK MicroSA" "The dwelling unit is located in Duncan, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Dunn, NC MicroSA" "The dwelling unit is located in Dunn, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Durango, CO MicroSA" "The dwelling unit is located in Durango, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Durant, OK MicroSA" "The dwelling unit is located in Durant, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Durham-Chapel Hill, NC MSA" "The dwelling unit is located in Durham-Chapel Hill, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Dyersburg, TN MicroSA" "The dwelling unit is located in Dyersburg, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Eagle Pass, TX MicroSA" "The dwelling unit is located in Eagle Pass, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "East Stroudsburg, PA MSA" "The dwelling unit is located in East Stroudsburg, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Easton, MD MicroSA" "The dwelling unit is located in Easton, MD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Eau Claire, WI MSA" "The dwelling unit is located in Eau Claire, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Edwards, CO MicroSA" "The dwelling unit is located in Edwards, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Effingham, IL MicroSA" "The dwelling unit is located in Effingham, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "El Campo, TX MicroSA" "The dwelling unit is located in El Campo, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "El Centro, CA MSA" "The dwelling unit is located in El Centro, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "El Dorado, AR MicroSA" "The dwelling unit is located in El Dorado, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "El Paso, TX MSA" "The dwelling unit is located in El Paso, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Elizabeth City, NC MicroSA" "The dwelling unit is located in Elizabeth City, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Elizabethtown-Fort Knox, KY MSA" "The dwelling unit is located in Elizabethtown-Fort Knox, KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Elk City, OK MicroSA" "The dwelling unit is located in Elk City, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Elkhart-Goshen, IN MSA" "The dwelling unit is located in Elkhart-Goshen, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Elkins, WV MicroSA" "The dwelling unit is located in Elkins, WV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Elko, NV MicroSA" "The dwelling unit is located in Elko, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ellensburg, WA MicroSA" "The dwelling unit is located in Ellensburg, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Elmira, NY MSA" "The dwelling unit is located in Elmira, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Emporia, KS MicroSA" "The dwelling unit is located in Emporia, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Enid, OK MicroSA" "The dwelling unit is located in Enid, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Enterprise, AL MicroSA" "The dwelling unit is located in Enterprise, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Erie, PA MSA" "The dwelling unit is located in Erie, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Escanaba, MI MicroSA" "The dwelling unit is located in Escanaba, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Espanola, NM MicroSA" "The dwelling unit is located in Espanola, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Eugene, OR MSA" "The dwelling unit is located in Eugene, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Eureka-Arcata-Fortuna, CA MicroSA" "The dwelling unit is located in Eureka-Arcata-Fortuna, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Evanston, WY MicroSA" "The dwelling unit is located in Evanston, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Evansville, IN-KY MSA" "The dwelling unit is located in Evansville, IN-KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Fairbanks, AK MSA" "The dwelling unit is located in Fairbanks, AK MSA" +in.metropolitan_and_micropolitan_statistical_area "Fairfield, IA MicroSA" "The dwelling unit is located in Fairfield, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fairmont, WV MicroSA" "The dwelling unit is located in Fairmont, WV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fallon, NV MicroSA" "The dwelling unit is located in Fallon, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fargo, ND-MN MSA" "The dwelling unit is located in Fargo, ND-MN MSA" +in.metropolitan_and_micropolitan_statistical_area "Faribault-Northfield, MN MicroSA" "The dwelling unit is located in Faribault-Northfield, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Farmington, MO MicroSA" "The dwelling unit is located in Farmington, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Farmington, NM MSA" "The dwelling unit is located in Farmington, NM MSA" +in.metropolitan_and_micropolitan_statistical_area "Fayetteville, NC MSA" "The dwelling unit is located in Fayetteville, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Fayetteville-Springdale-Rogers, AR-MO MSA" "The dwelling unit is located in Fayetteville-Springdale-Rogers, AR-MO MSA" +in.metropolitan_and_micropolitan_statistical_area "Fergus Falls, MN MicroSA" "The dwelling unit is located in Fergus Falls, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fernley, NV MicroSA" "The dwelling unit is located in Fernley, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Findlay, OH MicroSA" "The dwelling unit is located in Findlay, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fitzgerald, GA MicroSA" "The dwelling unit is located in Fitzgerald, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Flagstaff, AZ MSA" "The dwelling unit is located in Flagstaff, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Flint, MI MSA" "The dwelling unit is located in Flint, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Florence, SC MSA" "The dwelling unit is located in Florence, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Florence-Muscle Shoals, AL MSA" "The dwelling unit is located in Florence-Muscle Shoals, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Fond du Lac, WI MSA" "The dwelling unit is located in Fond du Lac, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Forest City, NC MicroSA" "The dwelling unit is located in Forest City, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Forrest City, AR MicroSA" "The dwelling unit is located in Forrest City, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Collins, CO MSA" "The dwelling unit is located in Fort Collins, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Dodge, IA MicroSA" "The dwelling unit is located in Fort Dodge, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Leonard Wood, MO MicroSA" "The dwelling unit is located in Fort Leonard Wood, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Madison-Keokuk, IA-IL-MO MicroSA" "The dwelling unit is located in Fort Madison-Keokuk, IA-IL-MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Morgan, CO MicroSA" "The dwelling unit is located in Fort Morgan, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Polk South, LA MicroSA" "The dwelling unit is located in Fort Polk South, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Smith, AR-OK MSA" "The dwelling unit is located in Fort Smith, AR-OK MSA" +in.metropolitan_and_micropolitan_statistical_area "Fort Wayne, IN MSA" "The dwelling unit is located in Fort Wayne, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Frankfort, IN MicroSA" "The dwelling unit is located in Frankfort, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Frankfort, KY MicroSA" "The dwelling unit is located in Frankfort, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fredericksburg, TX MicroSA" "The dwelling unit is located in Fredericksburg, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Freeport, IL MicroSA" "The dwelling unit is located in Freeport, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fremont, NE MicroSA" "The dwelling unit is located in Fremont, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fremont, OH MicroSA" "The dwelling unit is located in Fremont, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Fresno, CA MSA" "The dwelling unit is located in Fresno, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Gadsden, AL MSA" "The dwelling unit is located in Gadsden, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Gaffney, SC MicroSA" "The dwelling unit is located in Gaffney, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gainesville, FL MSA" "The dwelling unit is located in Gainesville, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Gainesville, GA MSA" "The dwelling unit is located in Gainesville, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Gainesville, TX MicroSA" "The dwelling unit is located in Gainesville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Galesburg, IL MicroSA" "The dwelling unit is located in Galesburg, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gallup, NM MicroSA" "The dwelling unit is located in Gallup, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Garden City, KS MicroSA" "The dwelling unit is located in Garden City, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gardnerville Ranchos, NV MicroSA" "The dwelling unit is located in Gardnerville Ranchos, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Georgetown, SC MicroSA" "The dwelling unit is located in Georgetown, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gettysburg, PA MSA" "The dwelling unit is located in Gettysburg, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Gillette, WY MicroSA" "The dwelling unit is located in Gillette, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Glasgow, KY MicroSA" "The dwelling unit is located in Glasgow, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Glens Falls, NY MSA" "The dwelling unit is located in Glens Falls, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Glenwood Springs, CO MicroSA" "The dwelling unit is located in Glenwood Springs, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gloversville, NY MicroSA" "The dwelling unit is located in Gloversville, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Goldsboro, NC MSA" "The dwelling unit is located in Goldsboro, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Grand Forks, ND-MN MSA" "The dwelling unit is located in Grand Forks, ND-MN MSA" +in.metropolitan_and_micropolitan_statistical_area "Grand Island, NE MSA" "The dwelling unit is located in Grand Island, NE MSA" +in.metropolitan_and_micropolitan_statistical_area "Grand Junction, CO MSA" "The dwelling unit is located in Grand Junction, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Grand Rapids-Wyoming, MI MSA" "The dwelling unit is located in Grand Rapids-Wyoming, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Grants Pass, OR MSA" "The dwelling unit is located in Grants Pass, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Grants, NM MicroSA" "The dwelling unit is located in Grants, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Great Bend, KS MicroSA" "The dwelling unit is located in Great Bend, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Great Falls, MT MSA" "The dwelling unit is located in Great Falls, MT MSA" +in.metropolitan_and_micropolitan_statistical_area "Greeley, CO MSA" "The dwelling unit is located in Greeley, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Green Bay, WI MSA" "The dwelling unit is located in Green Bay, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Greeneville, TN MicroSA" "The dwelling unit is located in Greeneville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greenfield Town, MA MicroSA" "The dwelling unit is located in Greenfield Town, MA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greensboro-High Point, NC MSA" "The dwelling unit is located in Greensboro-High Point, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Greensburg, IN MicroSA" "The dwelling unit is located in Greensburg, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greenville, MS MicroSA" "The dwelling unit is located in Greenville, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greenville, NC MSA" "The dwelling unit is located in Greenville, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Greenville, OH MicroSA" "The dwelling unit is located in Greenville, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greenville-Anderson-Mauldin, SC MSA" "The dwelling unit is located in Greenville-Anderson-Mauldin, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Greenwood, MS MicroSA" "The dwelling unit is located in Greenwood, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Greenwood, SC MicroSA" "The dwelling unit is located in Greenwood, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Grenada, MS MicroSA" "The dwelling unit is located in Grenada, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Gulfport-Biloxi-Pascagoula, MS MSA" "The dwelling unit is located in Gulfport-Biloxi-Pascagoula, MS MSA" +in.metropolitan_and_micropolitan_statistical_area "Guymon, OK MicroSA" "The dwelling unit is located in Guymon, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hagerstown-Martinsburg, MD-WV MSA" "The dwelling unit is located in Hagerstown-Martinsburg, MD-WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Hailey, ID MicroSA" "The dwelling unit is located in Hailey, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hammond, LA MSA" "The dwelling unit is located in Hammond, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Hanford-Corcoran, CA MSA" "The dwelling unit is located in Hanford-Corcoran, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Hannibal, MO MicroSA" "The dwelling unit is located in Hannibal, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Harrisburg-Carlisle, PA MSA" "The dwelling unit is located in Harrisburg-Carlisle, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Harrison, AR MicroSA" "The dwelling unit is located in Harrison, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Harrisonburg, VA MSA" "The dwelling unit is located in Harrisonburg, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Hartford-West Hartford-East Hartford, CT MSA" "The dwelling unit is located in Hartford-West Hartford-East Hartford, CT MSA" +in.metropolitan_and_micropolitan_statistical_area "Hastings, NE MicroSA" "The dwelling unit is located in Hastings, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hattiesburg, MS MSA" "The dwelling unit is located in Hattiesburg, MS MSA" +in.metropolitan_and_micropolitan_statistical_area "Hays, KS MicroSA" "The dwelling unit is located in Hays, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Heber, UT MicroSA" "The dwelling unit is located in Heber, UT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Helena, MT MicroSA" "The dwelling unit is located in Helena, MT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Helena-West Helena, AR MicroSA" "The dwelling unit is located in Helena-West Helena, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Henderson, NC MicroSA" "The dwelling unit is located in Henderson, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hereford, TX MicroSA" "The dwelling unit is located in Hereford, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hermiston-Pendleton, OR MicroSA" "The dwelling unit is located in Hermiston-Pendleton, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hickory-Lenoir-Morganton, NC MSA" "The dwelling unit is located in Hickory-Lenoir-Morganton, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Hillsdale, MI MicroSA" "The dwelling unit is located in Hillsdale, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hilo, HI MicroSA" "The dwelling unit is located in Hilo, HI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hilton Head Island-Bluffton-Beaufort, SC MSA" "The dwelling unit is located in Hilton Head Island-Bluffton-Beaufort, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Hinesville, GA MSA" "The dwelling unit is located in Hinesville, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Hobbs, NM MicroSA" "The dwelling unit is located in Hobbs, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Holland, MI MicroSA" "The dwelling unit is located in Holland, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Homosassa Springs, FL MSA" "The dwelling unit is located in Homosassa Springs, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Hood River, OR MicroSA" "The dwelling unit is located in Hood River, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hot Springs, AR MSA" "The dwelling unit is located in Hot Springs, AR MSA" +in.metropolitan_and_micropolitan_statistical_area "Houghton, MI MicroSA" "The dwelling unit is located in Houghton, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Houma-Thibodaux, LA MSA" "The dwelling unit is located in Houma-Thibodaux, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Houston-The Woodlands-Sugar Land, TX MSA" "The dwelling unit is located in Houston-The Woodlands-Sugar Land, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Hudson, NY MicroSA" "The dwelling unit is located in Hudson, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Huntingdon, PA MicroSA" "The dwelling unit is located in Huntingdon, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Huntington, IN MicroSA" "The dwelling unit is located in Huntington, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Huntington-Ashland, WV-KY-OH MSA" "The dwelling unit is located in Huntington-Ashland, WV-KY-OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Huntsville, AL MSA" "The dwelling unit is located in Huntsville, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Huntsville, TX MicroSA" "The dwelling unit is located in Huntsville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Huron, SD MicroSA" "The dwelling unit is located in Huron, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hutchinson, KS MicroSA" "The dwelling unit is located in Hutchinson, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Hutchinson, MN MicroSA" "The dwelling unit is located in Hutchinson, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Idaho Falls, ID MSA" "The dwelling unit is located in Idaho Falls, ID MSA" +in.metropolitan_and_micropolitan_statistical_area "Indiana, PA MicroSA" "The dwelling unit is located in Indiana, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Indianapolis-Carmel-Anderson, IN MSA" "The dwelling unit is located in Indianapolis-Carmel-Anderson, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Indianola, MS MicroSA" "The dwelling unit is located in Indianola, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ionia, MI MicroSA" "The dwelling unit is located in Ionia, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Iowa City, IA MSA" "The dwelling unit is located in Iowa City, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Iron Mountain, MI-WI MicroSA" "The dwelling unit is located in Iron Mountain, MI-WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ithaca, NY MSA" "The dwelling unit is located in Ithaca, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Jackson, MI MSA" "The dwelling unit is located in Jackson, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Jackson, MS MSA" "The dwelling unit is located in Jackson, MS MSA" +in.metropolitan_and_micropolitan_statistical_area "Jackson, OH MicroSA" "The dwelling unit is located in Jackson, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jackson, TN MSA" "The dwelling unit is located in Jackson, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Jackson, WY-ID MicroSA" "The dwelling unit is located in Jackson, WY-ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jacksonville, FL MSA" "The dwelling unit is located in Jacksonville, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Jacksonville, IL MicroSA" "The dwelling unit is located in Jacksonville, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jacksonville, NC MSA" "The dwelling unit is located in Jacksonville, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Jacksonville, TX MicroSA" "The dwelling unit is located in Jacksonville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jamestown, ND MicroSA" "The dwelling unit is located in Jamestown, ND MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jamestown-Dunkirk-Fredonia, NY MicroSA" "The dwelling unit is located in Jamestown-Dunkirk-Fredonia, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Janesville-Beloit, WI MSA" "The dwelling unit is located in Janesville-Beloit, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Jasper, IN MicroSA" "The dwelling unit is located in Jasper, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jefferson City, MO MSA" "The dwelling unit is located in Jefferson City, MO MSA" +in.metropolitan_and_micropolitan_statistical_area "Jefferson, GA MicroSA" "The dwelling unit is located in Jefferson, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Jesup, GA MicroSA" "The dwelling unit is located in Jesup, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Johnson City, TN MSA" "The dwelling unit is located in Johnson City, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Johnstown, PA MSA" "The dwelling unit is located in Johnstown, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Jonesboro, AR MSA" "The dwelling unit is located in Jonesboro, AR MSA" +in.metropolitan_and_micropolitan_statistical_area "Joplin, MO MSA" "The dwelling unit is located in Joplin, MO MSA" +in.metropolitan_and_micropolitan_statistical_area "Junction City, KS MicroSA" "The dwelling unit is located in Junction City, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Juneau, AK MicroSA" "The dwelling unit is located in Juneau, AK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kahului-Wailuku-Lahaina, HI MSA" "The dwelling unit is located in Kahului-Wailuku-Lahaina, HI MSA" +in.metropolitan_and_micropolitan_statistical_area "Kalamazoo-Portage, MI MSA" "The dwelling unit is located in Kalamazoo-Portage, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Kalispell, MT MicroSA" "The dwelling unit is located in Kalispell, MT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kankakee, IL MSA" "The dwelling unit is located in Kankakee, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Kansas City, MO-KS MSA" "The dwelling unit is located in Kansas City, MO-KS MSA" +in.metropolitan_and_micropolitan_statistical_area "Kapaa, HI MicroSA" "The dwelling unit is located in Kapaa, HI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kearney, NE MicroSA" "The dwelling unit is located in Kearney, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Keene, NH MicroSA" "The dwelling unit is located in Keene, NH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kendallville, IN MicroSA" "The dwelling unit is located in Kendallville, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kennett, MO MicroSA" "The dwelling unit is located in Kennett, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kennewick-Richland, WA MSA" "The dwelling unit is located in Kennewick-Richland, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Kerrville, TX MicroSA" "The dwelling unit is located in Kerrville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ketchikan, AK MicroSA" "The dwelling unit is located in Ketchikan, AK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Key West, FL MicroSA" "The dwelling unit is located in Key West, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kill Devil Hills, NC MicroSA" "The dwelling unit is located in Kill Devil Hills, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Killeen-Temple, TX MSA" "The dwelling unit is located in Killeen-Temple, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Kingsport-Bristol-Bristol, TN-VA MSA" "The dwelling unit is located in Kingsport-Bristol-Bristol, TN-VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Kingston, NY MSA" "The dwelling unit is located in Kingston, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Kingsville, TX MicroSA" "The dwelling unit is located in Kingsville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kinston, NC MicroSA" "The dwelling unit is located in Kinston, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Kirksville, MO MicroSA" "The dwelling unit is located in Kirksville, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Klamath Falls, OR MicroSA" "The dwelling unit is located in Klamath Falls, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Knoxville, TN MSA" "The dwelling unit is located in Knoxville, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Kokomo, IN MSA" "The dwelling unit is located in Kokomo, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "La Crosse-Onalaska, WI-MN MSA" "The dwelling unit is located in La Crosse-Onalaska, WI-MN MSA" +in.metropolitan_and_micropolitan_statistical_area "La Grande, OR MicroSA" "The dwelling unit is located in La Grande, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "LaGrange, GA MicroSA" "The dwelling unit is located in LaGrange, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Laconia, NH MicroSA" "The dwelling unit is located in Laconia, NH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lafayette, LA MSA" "The dwelling unit is located in Lafayette, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Lafayette-West Lafayette, IN MSA" "The dwelling unit is located in Lafayette-West Lafayette, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Lake Charles, LA MSA" "The dwelling unit is located in Lake Charles, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Lake City, FL MicroSA" "The dwelling unit is located in Lake City, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lake Havasu City-Kingman, AZ MSA" "The dwelling unit is located in Lake Havasu City-Kingman, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Lakeland-Winter Haven, FL MSA" "The dwelling unit is located in Lakeland-Winter Haven, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Lamesa, TX MicroSA" "The dwelling unit is located in Lamesa, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lancaster, PA MSA" "The dwelling unit is located in Lancaster, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Lansing-East Lansing, MI MSA" "The dwelling unit is located in Lansing-East Lansing, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Laramie, WY MicroSA" "The dwelling unit is located in Laramie, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Laredo, TX MSA" "The dwelling unit is located in Laredo, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Las Cruces, NM MSA" "The dwelling unit is located in Las Cruces, NM MSA" +in.metropolitan_and_micropolitan_statistical_area "Las Vegas, NM MicroSA" "The dwelling unit is located in Las Vegas, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Las Vegas-Henderson-Paradise, NV MSA" "The dwelling unit is located in Las Vegas-Henderson-Paradise, NV MSA" +in.metropolitan_and_micropolitan_statistical_area "Laurel, MS MicroSA" "The dwelling unit is located in Laurel, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Laurinburg, NC MicroSA" "The dwelling unit is located in Laurinburg, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lawrence, KS MSA" "The dwelling unit is located in Lawrence, KS MSA" +in.metropolitan_and_micropolitan_statistical_area "Lawrenceburg, TN MicroSA" "The dwelling unit is located in Lawrenceburg, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lawton, OK MSA" "The dwelling unit is located in Lawton, OK MSA" +in.metropolitan_and_micropolitan_statistical_area "Lebanon, MO MicroSA" "The dwelling unit is located in Lebanon, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lebanon, PA MSA" "The dwelling unit is located in Lebanon, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Levelland, TX MicroSA" "The dwelling unit is located in Levelland, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lewisburg, PA MicroSA" "The dwelling unit is located in Lewisburg, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lewisburg, TN MicroSA" "The dwelling unit is located in Lewisburg, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lewiston, ID-WA MSA" "The dwelling unit is located in Lewiston, ID-WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Lewiston-Auburn, ME MSA" "The dwelling unit is located in Lewiston-Auburn, ME MSA" +in.metropolitan_and_micropolitan_statistical_area "Lewistown, PA MicroSA" "The dwelling unit is located in Lewistown, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lexington, NE MicroSA" "The dwelling unit is located in Lexington, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lexington-Fayette, KY MSA" "The dwelling unit is located in Lexington-Fayette, KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Liberal, KS MicroSA" "The dwelling unit is located in Liberal, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lima, OH MSA" "The dwelling unit is located in Lima, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Lincoln, IL MicroSA" "The dwelling unit is located in Lincoln, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lincoln, NE MSA" "The dwelling unit is located in Lincoln, NE MSA" +in.metropolitan_and_micropolitan_statistical_area "Little Rock-North Little Rock-Conway, AR MSA" "The dwelling unit is located in Little Rock-North Little Rock-Conway, AR MSA" +in.metropolitan_and_micropolitan_statistical_area "Lock Haven, PA MicroSA" "The dwelling unit is located in Lock Haven, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Logan, UT-ID MSA" "The dwelling unit is located in Logan, UT-ID MSA" +in.metropolitan_and_micropolitan_statistical_area "Logan, WV MicroSA" "The dwelling unit is located in Logan, WV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Logansport, IN MicroSA" "The dwelling unit is located in Logansport, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "London, KY MicroSA" "The dwelling unit is located in London, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Longview, TX MSA" "The dwelling unit is located in Longview, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Longview, WA MSA" "The dwelling unit is located in Longview, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Los Alamos, NM MicroSA" "The dwelling unit is located in Los Alamos, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Los Angeles-Long Beach-Anaheim, CA MSA" "The dwelling unit is located in Los Angeles-Long Beach-Anaheim, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Louisville/Jefferson County, KY-IN MSA" "The dwelling unit is located in Louisville/Jefferson County, KY-IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Lubbock, TX MSA" "The dwelling unit is located in Lubbock, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Ludington, MI MicroSA" "The dwelling unit is located in Ludington, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lufkin, TX MicroSA" "The dwelling unit is located in Lufkin, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lumberton, NC MicroSA" "The dwelling unit is located in Lumberton, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Lynchburg, VA MSA" "The dwelling unit is located in Lynchburg, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Macomb, IL MicroSA" "The dwelling unit is located in Macomb, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Macon, GA MSA" "The dwelling unit is located in Macon, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Madera, CA MSA" "The dwelling unit is located in Madera, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Madison, IN MicroSA" "The dwelling unit is located in Madison, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Madison, WI MSA" "The dwelling unit is located in Madison, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Madisonville, KY MicroSA" "The dwelling unit is located in Madisonville, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Magnolia, AR MicroSA" "The dwelling unit is located in Magnolia, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Malone, NY MicroSA" "The dwelling unit is located in Malone, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Malvern, AR MicroSA" "The dwelling unit is located in Malvern, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Manchester-Nashua, NH MSA" "The dwelling unit is located in Manchester-Nashua, NH MSA" +in.metropolitan_and_micropolitan_statistical_area "Manhattan, KS MSA" "The dwelling unit is located in Manhattan, KS MSA" +in.metropolitan_and_micropolitan_statistical_area "Manitowoc, WI MicroSA" "The dwelling unit is located in Manitowoc, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mankato-North Mankato, MN MSA" "The dwelling unit is located in Mankato-North Mankato, MN MSA" +in.metropolitan_and_micropolitan_statistical_area "Mansfield, OH MSA" "The dwelling unit is located in Mansfield, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Marietta, OH MicroSA" "The dwelling unit is located in Marietta, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marinette, WI-MI MicroSA" "The dwelling unit is located in Marinette, WI-MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marion, IN MicroSA" "The dwelling unit is located in Marion, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marion, NC MicroSA" "The dwelling unit is located in Marion, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marion, OH MicroSA" "The dwelling unit is located in Marion, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marquette, MI MicroSA" "The dwelling unit is located in Marquette, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marshall, MN MicroSA" "The dwelling unit is located in Marshall, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marshall, MO MicroSA" "The dwelling unit is located in Marshall, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marshall, TX MicroSA" "The dwelling unit is located in Marshall, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Marshalltown, IA MicroSA" "The dwelling unit is located in Marshalltown, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Martin, TN MicroSA" "The dwelling unit is located in Martin, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Martinsville, VA MicroSA" "The dwelling unit is located in Martinsville, VA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Maryville, MO MicroSA" "The dwelling unit is located in Maryville, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mason City, IA MicroSA" "The dwelling unit is located in Mason City, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mayfield, KY MicroSA" "The dwelling unit is located in Mayfield, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Maysville, KY MicroSA" "The dwelling unit is located in Maysville, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "McAlester, OK MicroSA" "The dwelling unit is located in McAlester, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "McAllen-Edinburg-Mission, TX MSA" "The dwelling unit is located in McAllen-Edinburg-Mission, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "McComb, MS MicroSA" "The dwelling unit is located in McComb, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "McMinnville, TN MicroSA" "The dwelling unit is located in McMinnville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "McPherson, KS MicroSA" "The dwelling unit is located in McPherson, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Meadville, PA MicroSA" "The dwelling unit is located in Meadville, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Medford, OR MSA" "The dwelling unit is located in Medford, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Memphis, TN-MS-AR MSA" "The dwelling unit is located in Memphis, TN-MS-AR MSA" +in.metropolitan_and_micropolitan_statistical_area "Menomonie, WI MicroSA" "The dwelling unit is located in Menomonie, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Merced, CA MSA" "The dwelling unit is located in Merced, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Meridian, MS MicroSA" "The dwelling unit is located in Meridian, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Merrill, WI MicroSA" "The dwelling unit is located in Merrill, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mexico, MO MicroSA" "The dwelling unit is located in Mexico, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Miami, OK MicroSA" "The dwelling unit is located in Miami, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" "The dwelling unit is located in Miami-Fort Lauderdale-West Palm Beach, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Michigan City-La Porte, IN MSA" "The dwelling unit is located in Michigan City-La Porte, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Middlesborough, KY MicroSA" "The dwelling unit is located in Middlesborough, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Midland, MI MSA" "The dwelling unit is located in Midland, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Midland, TX MSA" "The dwelling unit is located in Midland, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Milledgeville, GA MicroSA" "The dwelling unit is located in Milledgeville, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Milwaukee-Waukesha-West Allis, WI MSA" "The dwelling unit is located in Milwaukee-Waukesha-West Allis, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Mineral Wells, TX MicroSA" "The dwelling unit is located in Mineral Wells, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" "The dwelling unit is located in Minneapolis-St. Paul-Bloomington, MN-WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Minot, ND MicroSA" "The dwelling unit is located in Minot, ND MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Missoula, MT MSA" "The dwelling unit is located in Missoula, MT MSA" +in.metropolitan_and_micropolitan_statistical_area "Mitchell, SD MicroSA" "The dwelling unit is located in Mitchell, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Moberly, MO MicroSA" "The dwelling unit is located in Moberly, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mobile, AL MSA" "The dwelling unit is located in Mobile, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Modesto, CA MSA" "The dwelling unit is located in Modesto, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Monroe, LA MSA" "The dwelling unit is located in Monroe, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Monroe, MI MSA" "The dwelling unit is located in Monroe, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Montgomery, AL MSA" "The dwelling unit is located in Montgomery, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Montrose, CO MicroSA" "The dwelling unit is located in Montrose, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Morehead City, NC MicroSA" "The dwelling unit is located in Morehead City, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Morgan City, LA MicroSA" "The dwelling unit is located in Morgan City, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Morgantown, WV MSA" "The dwelling unit is located in Morgantown, WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Morristown, TN MSA" "The dwelling unit is located in Morristown, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Moscow, ID MicroSA" "The dwelling unit is located in Moscow, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Moses Lake, WA MicroSA" "The dwelling unit is located in Moses Lake, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Moultrie, GA MicroSA" "The dwelling unit is located in Moultrie, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Airy, NC MicroSA" "The dwelling unit is located in Mount Airy, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Pleasant, MI MicroSA" "The dwelling unit is located in Mount Pleasant, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Pleasant, TX MicroSA" "The dwelling unit is located in Mount Pleasant, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Sterling, KY MicroSA" "The dwelling unit is located in Mount Sterling, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Vernon, IL MicroSA" "The dwelling unit is located in Mount Vernon, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Vernon, OH MicroSA" "The dwelling unit is located in Mount Vernon, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mount Vernon-Anacortes, WA MSA" "The dwelling unit is located in Mount Vernon-Anacortes, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Mountain Home, AR MicroSA" "The dwelling unit is located in Mountain Home, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Mountain Home, ID MicroSA" "The dwelling unit is located in Mountain Home, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Muncie, IN MSA" "The dwelling unit is located in Muncie, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Murray, KY MicroSA" "The dwelling unit is located in Murray, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Muscatine, IA MicroSA" "The dwelling unit is located in Muscatine, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Muskegon, MI MSA" "The dwelling unit is located in Muskegon, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Muskogee, OK MicroSA" "The dwelling unit is located in Muskogee, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" "The dwelling unit is located in Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Nacogdoches, TX MicroSA" "The dwelling unit is located in Nacogdoches, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Napa, CA MSA" "The dwelling unit is located in Napa, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Naples-Immokalee-Marco Island, FL MSA" "The dwelling unit is located in Naples-Immokalee-Marco Island, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" "The dwelling unit is located in Nashville-Davidson--Murfreesboro--Franklin, TN MSA" +in.metropolitan_and_micropolitan_statistical_area "Natchez, MS-LA MicroSA" "The dwelling unit is located in Natchez, MS-LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Natchitoches, LA MicroSA" "The dwelling unit is located in Natchitoches, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "New Bern, NC MSA" "The dwelling unit is located in New Bern, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "New Castle, IN MicroSA" "The dwelling unit is located in New Castle, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "New Castle, PA MicroSA" "The dwelling unit is located in New Castle, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "New Haven-Milford, CT MSA" "The dwelling unit is located in New Haven-Milford, CT MSA" +in.metropolitan_and_micropolitan_statistical_area "New Orleans-Metairie, LA MSA" "The dwelling unit is located in New Orleans-Metairie, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "New Philadelphia-Dover, OH MicroSA" "The dwelling unit is located in New Philadelphia-Dover, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "New Ulm, MN MicroSA" "The dwelling unit is located in New Ulm, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "New York-Newark-Jersey City, NY-NJ-PA MSA" "The dwelling unit is located in New York-Newark-Jersey City, NY-NJ-PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Newberry, SC MicroSA" "The dwelling unit is located in Newberry, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Newport, OR MicroSA" "The dwelling unit is located in Newport, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Newport, TN MicroSA" "The dwelling unit is located in Newport, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Newton, IA MicroSA" "The dwelling unit is located in Newton, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Niles-Benton Harbor, MI MSA" "The dwelling unit is located in Niles-Benton Harbor, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Nogales, AZ MicroSA" "The dwelling unit is located in Nogales, AZ MicroSA" +in.metropolitan_and_micropolitan_statistical_area None The dwelling unit is located in None +in.metropolitan_and_micropolitan_statistical_area "Norfolk, NE MicroSA" "The dwelling unit is located in Norfolk, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "North Platte, NE MicroSA" "The dwelling unit is located in North Platte, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "North Port-Sarasota-Bradenton, FL MSA" "The dwelling unit is located in North Port-Sarasota-Bradenton, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "North Vernon, IN MicroSA" "The dwelling unit is located in North Vernon, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "North Wilkesboro, NC MicroSA" "The dwelling unit is located in North Wilkesboro, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Norwalk, OH MicroSA" "The dwelling unit is located in Norwalk, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Norwich-New London, CT MSA" "The dwelling unit is located in Norwich-New London, CT MSA" +in.metropolitan_and_micropolitan_statistical_area "Oak Harbor, WA MicroSA" "The dwelling unit is located in Oak Harbor, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ocala, FL MSA" "The dwelling unit is located in Ocala, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Ocean City, NJ MSA" "The dwelling unit is located in Ocean City, NJ MSA" +in.metropolitan_and_micropolitan_statistical_area "Odessa, TX MSA" "The dwelling unit is located in Odessa, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Ogden-Clearfield, UT MSA" "The dwelling unit is located in Ogden-Clearfield, UT MSA" +in.metropolitan_and_micropolitan_statistical_area "Ogdensburg-Massena, NY MicroSA" "The dwelling unit is located in Ogdensburg-Massena, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Oil City, PA MicroSA" "The dwelling unit is located in Oil City, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Okeechobee, FL MicroSA" "The dwelling unit is located in Okeechobee, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Oklahoma City, OK MSA" "The dwelling unit is located in Oklahoma City, OK MSA" +in.metropolitan_and_micropolitan_statistical_area "Olean, NY MicroSA" "The dwelling unit is located in Olean, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Olympia-Tumwater, WA MSA" "The dwelling unit is located in Olympia-Tumwater, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Omaha-Council Bluffs, NE-IA MSA" "The dwelling unit is located in Omaha-Council Bluffs, NE-IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Oneonta, NY MicroSA" "The dwelling unit is located in Oneonta, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ontario, OR-ID MicroSA" "The dwelling unit is located in Ontario, OR-ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Opelousas, LA MicroSA" "The dwelling unit is located in Opelousas, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Orangeburg, SC MicroSA" "The dwelling unit is located in Orangeburg, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Orlando-Kissimmee-Sanford, FL MSA" "The dwelling unit is located in Orlando-Kissimmee-Sanford, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Oshkosh-Neenah, WI MSA" "The dwelling unit is located in Oshkosh-Neenah, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Oskaloosa, IA MicroSA" "The dwelling unit is located in Oskaloosa, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Othello, WA MicroSA" "The dwelling unit is located in Othello, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ottawa, KS MicroSA" "The dwelling unit is located in Ottawa, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ottawa-Peru, IL MicroSA" "The dwelling unit is located in Ottawa-Peru, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ottumwa, IA MicroSA" "The dwelling unit is located in Ottumwa, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Owatonna, MN MicroSA" "The dwelling unit is located in Owatonna, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Owensboro, KY MSA" "The dwelling unit is located in Owensboro, KY MSA" +in.metropolitan_and_micropolitan_statistical_area "Owosso, MI MicroSA" "The dwelling unit is located in Owosso, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Oxford, MS MicroSA" "The dwelling unit is located in Oxford, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Oxford, NC MicroSA" "The dwelling unit is located in Oxford, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Oxnard-Thousand Oaks-Ventura, CA MSA" "The dwelling unit is located in Oxnard-Thousand Oaks-Ventura, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Ozark, AL MicroSA" "The dwelling unit is located in Ozark, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Paducah, KY-IL MicroSA" "The dwelling unit is located in Paducah, KY-IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pahrump, NV MicroSA" "The dwelling unit is located in Pahrump, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Palatka, FL MicroSA" "The dwelling unit is located in Palatka, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Palestine, TX MicroSA" "The dwelling unit is located in Palestine, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Palm Bay-Melbourne-Titusville, FL MSA" "The dwelling unit is located in Palm Bay-Melbourne-Titusville, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Pampa, TX MicroSA" "The dwelling unit is located in Pampa, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Panama City, FL MSA" "The dwelling unit is located in Panama City, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Paragould, AR MicroSA" "The dwelling unit is located in Paragould, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Paris, TN MicroSA" "The dwelling unit is located in Paris, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Paris, TX MicroSA" "The dwelling unit is located in Paris, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Parkersburg-Vienna, WV MSA" "The dwelling unit is located in Parkersburg-Vienna, WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Parsons, KS MicroSA" "The dwelling unit is located in Parsons, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Payson, AZ MicroSA" "The dwelling unit is located in Payson, AZ MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pecos, TX MicroSA" "The dwelling unit is located in Pecos, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pensacola-Ferry Pass-Brent, FL MSA" "The dwelling unit is located in Pensacola-Ferry Pass-Brent, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Peoria, IL MSA" "The dwelling unit is located in Peoria, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Peru, IN MicroSA" "The dwelling unit is located in Peru, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" "The dwelling unit is located in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" +in.metropolitan_and_micropolitan_statistical_area "Phoenix-Mesa-Scottsdale, AZ MSA" "The dwelling unit is located in Phoenix-Mesa-Scottsdale, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Picayune, MS MicroSA" "The dwelling unit is located in Picayune, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pierre, SD MicroSA" "The dwelling unit is located in Pierre, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pine Bluff, AR MSA" "The dwelling unit is located in Pine Bluff, AR MSA" +in.metropolitan_and_micropolitan_statistical_area "Pinehurst-Southern Pines, NC MicroSA" "The dwelling unit is located in Pinehurst-Southern Pines, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pittsburg, KS MicroSA" "The dwelling unit is located in Pittsburg, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pittsburgh, PA MSA" "The dwelling unit is located in Pittsburgh, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Pittsfield, MA MSA" "The dwelling unit is located in Pittsfield, MA MSA" +in.metropolitan_and_micropolitan_statistical_area "Plainview, TX MicroSA" "The dwelling unit is located in Plainview, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Platteville, WI MicroSA" "The dwelling unit is located in Platteville, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Plattsburgh, NY MicroSA" "The dwelling unit is located in Plattsburgh, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Plymouth, IN MicroSA" "The dwelling unit is located in Plymouth, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pocatello, ID MSA" "The dwelling unit is located in Pocatello, ID MSA" +in.metropolitan_and_micropolitan_statistical_area "Point Pleasant, WV-OH MicroSA" "The dwelling unit is located in Point Pleasant, WV-OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ponca City, OK MicroSA" "The dwelling unit is located in Ponca City, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pontiac, IL MicroSA" "The dwelling unit is located in Pontiac, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Poplar Bluff, MO MicroSA" "The dwelling unit is located in Poplar Bluff, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Port Angeles, WA MicroSA" "The dwelling unit is located in Port Angeles, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Port Clinton, OH MicroSA" "The dwelling unit is located in Port Clinton, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Port Lavaca, TX MicroSA" "The dwelling unit is located in Port Lavaca, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Port St. Lucie, FL MSA" "The dwelling unit is located in Port St. Lucie, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Portales, NM MicroSA" "The dwelling unit is located in Portales, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Portland-South Portland, ME MSA" "The dwelling unit is located in Portland-South Portland, ME MSA" +in.metropolitan_and_micropolitan_statistical_area "Portland-Vancouver-Hillsboro, OR-WA MSA" "The dwelling unit is located in Portland-Vancouver-Hillsboro, OR-WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Portsmouth, OH MicroSA" "The dwelling unit is located in Portsmouth, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Pottsville, PA MicroSA" "The dwelling unit is located in Pottsville, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Prescott, AZ MSA" "The dwelling unit is located in Prescott, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Price, UT MicroSA" "The dwelling unit is located in Price, UT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Prineville, OR MicroSA" "The dwelling unit is located in Prineville, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Providence-Warwick, RI-MA MSA" "The dwelling unit is located in Providence-Warwick, RI-MA MSA" +in.metropolitan_and_micropolitan_statistical_area "Provo-Orem, UT MSA" "The dwelling unit is located in Provo-Orem, UT MSA" +in.metropolitan_and_micropolitan_statistical_area "Pueblo, CO MSA" "The dwelling unit is located in Pueblo, CO MSA" +in.metropolitan_and_micropolitan_statistical_area "Pullman, WA MicroSA" "The dwelling unit is located in Pullman, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Punta Gorda, FL MSA" "The dwelling unit is located in Punta Gorda, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Quincy, IL-MO MicroSA" "The dwelling unit is located in Quincy, IL-MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Racine, WI MSA" "The dwelling unit is located in Racine, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Raleigh, NC MSA" "The dwelling unit is located in Raleigh, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Rapid City, SD MSA" "The dwelling unit is located in Rapid City, SD MSA" +in.metropolitan_and_micropolitan_statistical_area "Raymondville, TX MicroSA" "The dwelling unit is located in Raymondville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Reading, PA MSA" "The dwelling unit is located in Reading, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Red Bluff, CA MicroSA" "The dwelling unit is located in Red Bluff, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Red Wing, MN MicroSA" "The dwelling unit is located in Red Wing, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Redding, CA MSA" "The dwelling unit is located in Redding, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Reno, NV MSA" "The dwelling unit is located in Reno, NV MSA" +in.metropolitan_and_micropolitan_statistical_area "Rexburg, ID MicroSA" "The dwelling unit is located in Rexburg, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Richmond, IN MicroSA" "The dwelling unit is located in Richmond, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Richmond, VA MSA" "The dwelling unit is located in Richmond, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Richmond-Berea, KY MicroSA" "The dwelling unit is located in Richmond-Berea, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rio Grande City, TX MicroSA" "The dwelling unit is located in Rio Grande City, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Riverside-San Bernardino-Ontario, CA MSA" "The dwelling unit is located in Riverside-San Bernardino-Ontario, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Riverton, WY MicroSA" "The dwelling unit is located in Riverton, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Roanoke Rapids, NC MicroSA" "The dwelling unit is located in Roanoke Rapids, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Roanoke, VA MSA" "The dwelling unit is located in Roanoke, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Rochelle, IL MicroSA" "The dwelling unit is located in Rochelle, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rochester, MN MSA" "The dwelling unit is located in Rochester, MN MSA" +in.metropolitan_and_micropolitan_statistical_area "Rochester, NY MSA" "The dwelling unit is located in Rochester, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Rock Springs, WY MicroSA" "The dwelling unit is located in Rock Springs, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rockford, IL MSA" "The dwelling unit is located in Rockford, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Rockingham, NC MicroSA" "The dwelling unit is located in Rockingham, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rocky Mount, NC MSA" "The dwelling unit is located in Rocky Mount, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Rolla, MO MicroSA" "The dwelling unit is located in Rolla, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rome, GA MSA" "The dwelling unit is located in Rome, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Roseburg, OR MicroSA" "The dwelling unit is located in Roseburg, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Roswell, NM MicroSA" "The dwelling unit is located in Roswell, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Russellville, AR MicroSA" "The dwelling unit is located in Russellville, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Ruston, LA MicroSA" "The dwelling unit is located in Ruston, LA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Rutland, VT MicroSA" "The dwelling unit is located in Rutland, VT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sacramento--Roseville--Arden-Arcade, CA MSA" "The dwelling unit is located in Sacramento--Roseville--Arden-Arcade, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Safford, AZ MicroSA" "The dwelling unit is located in Safford, AZ MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Saginaw, MI MSA" "The dwelling unit is located in Saginaw, MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Salem, OH MicroSA" "The dwelling unit is located in Salem, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Salem, OR MSA" "The dwelling unit is located in Salem, OR MSA" +in.metropolitan_and_micropolitan_statistical_area "Salina, KS MicroSA" "The dwelling unit is located in Salina, KS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Salinas, CA MSA" "The dwelling unit is located in Salinas, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Salisbury, MD-DE MSA" "The dwelling unit is located in Salisbury, MD-DE MSA" +in.metropolitan_and_micropolitan_statistical_area "Salt Lake City, UT MSA" "The dwelling unit is located in Salt Lake City, UT MSA" +in.metropolitan_and_micropolitan_statistical_area "San Angelo, TX MSA" "The dwelling unit is located in San Angelo, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "San Antonio-New Braunfels, TX MSA" "The dwelling unit is located in San Antonio-New Braunfels, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "San Diego-Carlsbad, CA MSA" "The dwelling unit is located in San Diego-Carlsbad, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "San Francisco-Oakland-Hayward, CA MSA" "The dwelling unit is located in San Francisco-Oakland-Hayward, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "San Jose-Sunnyvale-Santa Clara, CA MSA" "The dwelling unit is located in San Jose-Sunnyvale-Santa Clara, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" "The dwelling unit is located in San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Sandpoint, ID MicroSA" "The dwelling unit is located in Sandpoint, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sandusky, OH MicroSA" "The dwelling unit is located in Sandusky, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sanford, NC MicroSA" "The dwelling unit is located in Sanford, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Santa Cruz-Watsonville, CA MSA" "The dwelling unit is located in Santa Cruz-Watsonville, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Santa Fe, NM MSA" "The dwelling unit is located in Santa Fe, NM MSA" +in.metropolitan_and_micropolitan_statistical_area "Santa Maria-Santa Barbara, CA MSA" "The dwelling unit is located in Santa Maria-Santa Barbara, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Santa Rosa, CA MSA" "The dwelling unit is located in Santa Rosa, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Sault Ste. Marie, MI MicroSA" "The dwelling unit is located in Sault Ste. Marie, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Savannah, GA MSA" "The dwelling unit is located in Savannah, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Sayre, PA MicroSA" "The dwelling unit is located in Sayre, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Scottsbluff, NE MicroSA" "The dwelling unit is located in Scottsbluff, NE MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Scottsboro, AL MicroSA" "The dwelling unit is located in Scottsboro, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Scranton--Wilkes-Barre--Hazleton, PA MSA" "The dwelling unit is located in Scranton--Wilkes-Barre--Hazleton, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Searcy, AR MicroSA" "The dwelling unit is located in Searcy, AR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Seattle-Tacoma-Bellevue, WA MSA" "The dwelling unit is located in Seattle-Tacoma-Bellevue, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Sebastian-Vero Beach, FL MSA" "The dwelling unit is located in Sebastian-Vero Beach, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Sebring, FL MSA" "The dwelling unit is located in Sebring, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Sedalia, MO MicroSA" "The dwelling unit is located in Sedalia, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Selinsgrove, PA MicroSA" "The dwelling unit is located in Selinsgrove, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Selma, AL MicroSA" "The dwelling unit is located in Selma, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Seneca Falls, NY MicroSA" "The dwelling unit is located in Seneca Falls, NY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Seneca, SC MicroSA" "The dwelling unit is located in Seneca, SC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sevierville, TN MicroSA" "The dwelling unit is located in Sevierville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Seymour, IN MicroSA" "The dwelling unit is located in Seymour, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Shawano, WI MicroSA" "The dwelling unit is located in Shawano, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Shawnee, OK MicroSA" "The dwelling unit is located in Shawnee, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sheboygan, WI MSA" "The dwelling unit is located in Sheboygan, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Shelby, NC MicroSA" "The dwelling unit is located in Shelby, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Shelbyville, TN MicroSA" "The dwelling unit is located in Shelbyville, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Shelton, WA MicroSA" "The dwelling unit is located in Shelton, WA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sheridan, WY MicroSA" "The dwelling unit is located in Sheridan, WY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sherman-Denison, TX MSA" "The dwelling unit is located in Sherman-Denison, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Show Low, AZ MicroSA" "The dwelling unit is located in Show Low, AZ MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Shreveport-Bossier City, LA MSA" "The dwelling unit is located in Shreveport-Bossier City, LA MSA" +in.metropolitan_and_micropolitan_statistical_area "Sidney, OH MicroSA" "The dwelling unit is located in Sidney, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sierra Vista-Douglas, AZ MSA" "The dwelling unit is located in Sierra Vista-Douglas, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Sikeston, MO MicroSA" "The dwelling unit is located in Sikeston, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Silver City, NM MicroSA" "The dwelling unit is located in Silver City, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sioux City, IA-NE-SD MSA" "The dwelling unit is located in Sioux City, IA-NE-SD MSA" +in.metropolitan_and_micropolitan_statistical_area "Sioux Falls, SD MSA" "The dwelling unit is located in Sioux Falls, SD MSA" +in.metropolitan_and_micropolitan_statistical_area "Snyder, TX MicroSA" "The dwelling unit is located in Snyder, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Somerset, KY MicroSA" "The dwelling unit is located in Somerset, KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Somerset, PA MicroSA" "The dwelling unit is located in Somerset, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sonora, CA MicroSA" "The dwelling unit is located in Sonora, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "South Bend-Mishawaka, IN-MI MSA" "The dwelling unit is located in South Bend-Mishawaka, IN-MI MSA" +in.metropolitan_and_micropolitan_statistical_area "Spartanburg, SC MSA" "The dwelling unit is located in Spartanburg, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Spearfish, SD MicroSA" "The dwelling unit is located in Spearfish, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Spencer, IA MicroSA" "The dwelling unit is located in Spencer, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Spirit Lake, IA MicroSA" "The dwelling unit is located in Spirit Lake, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Spokane-Spokane Valley, WA MSA" "The dwelling unit is located in Spokane-Spokane Valley, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Springfield, IL MSA" "The dwelling unit is located in Springfield, IL MSA" +in.metropolitan_and_micropolitan_statistical_area "Springfield, MA MSA" "The dwelling unit is located in Springfield, MA MSA" +in.metropolitan_and_micropolitan_statistical_area "Springfield, MO MSA" "The dwelling unit is located in Springfield, MO MSA" +in.metropolitan_and_micropolitan_statistical_area "Springfield, OH MSA" "The dwelling unit is located in Springfield, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "St. Cloud, MN MSA" "The dwelling unit is located in St. Cloud, MN MSA" +in.metropolitan_and_micropolitan_statistical_area "St. George, UT MSA" "The dwelling unit is located in St. George, UT MSA" +in.metropolitan_and_micropolitan_statistical_area "St. Joseph, MO-KS MSA" "The dwelling unit is located in St. Joseph, MO-KS MSA" +in.metropolitan_and_micropolitan_statistical_area "St. Louis, MO-IL MSA" "The dwelling unit is located in St. Louis, MO-IL MSA" +in.metropolitan_and_micropolitan_statistical_area "St. Marys, GA MicroSA" "The dwelling unit is located in St. Marys, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Starkville, MS MicroSA" "The dwelling unit is located in Starkville, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "State College, PA MSA" "The dwelling unit is located in State College, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Statesboro, GA MicroSA" "The dwelling unit is located in Statesboro, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Staunton-Waynesboro, VA MSA" "The dwelling unit is located in Staunton-Waynesboro, VA MSA" +in.metropolitan_and_micropolitan_statistical_area "Steamboat Springs, CO MicroSA" "The dwelling unit is located in Steamboat Springs, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Stephenville, TX MicroSA" "The dwelling unit is located in Stephenville, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sterling, CO MicroSA" "The dwelling unit is located in Sterling, CO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sterling, IL MicroSA" "The dwelling unit is located in Sterling, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Stevens Point, WI MicroSA" "The dwelling unit is located in Stevens Point, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Stillwater, OK MicroSA" "The dwelling unit is located in Stillwater, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Stockton-Lodi, CA MSA" "The dwelling unit is located in Stockton-Lodi, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Storm Lake, IA MicroSA" "The dwelling unit is located in Storm Lake, IA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sturgis, MI MicroSA" "The dwelling unit is located in Sturgis, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sulphur Springs, TX MicroSA" "The dwelling unit is located in Sulphur Springs, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Summerville, GA MicroSA" "The dwelling unit is located in Summerville, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Summit Park, UT MicroSA" "The dwelling unit is located in Summit Park, UT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sumter, SC MSA" "The dwelling unit is located in Sumter, SC MSA" +in.metropolitan_and_micropolitan_statistical_area "Sunbury, PA MicroSA" "The dwelling unit is located in Sunbury, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Susanville, CA MicroSA" "The dwelling unit is located in Susanville, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Sweetwater, TX MicroSA" "The dwelling unit is located in Sweetwater, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Syracuse, NY MSA" "The dwelling unit is located in Syracuse, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Tahlequah, OK MicroSA" "The dwelling unit is located in Tahlequah, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Talladega-Sylacauga, AL MicroSA" "The dwelling unit is located in Talladega-Sylacauga, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tallahassee, FL MSA" "The dwelling unit is located in Tallahassee, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Tampa-St. Petersburg-Clearwater, FL MSA" "The dwelling unit is located in Tampa-St. Petersburg-Clearwater, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Taos, NM MicroSA" "The dwelling unit is located in Taos, NM MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Taylorville, IL MicroSA" "The dwelling unit is located in Taylorville, IL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Terre Haute, IN MSA" "The dwelling unit is located in Terre Haute, IN MSA" +in.metropolitan_and_micropolitan_statistical_area "Texarkana, TX-AR MSA" "The dwelling unit is located in Texarkana, TX-AR MSA" +in.metropolitan_and_micropolitan_statistical_area "The Dalles, OR MicroSA" "The dwelling unit is located in The Dalles, OR MicroSA" +in.metropolitan_and_micropolitan_statistical_area "The Villages, FL MSA" "The dwelling unit is located in The Villages, FL MSA" +in.metropolitan_and_micropolitan_statistical_area "Thomaston, GA MicroSA" "The dwelling unit is located in Thomaston, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Thomasville, GA MicroSA" "The dwelling unit is located in Thomasville, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tiffin, OH MicroSA" "The dwelling unit is located in Tiffin, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tifton, GA MicroSA" "The dwelling unit is located in Tifton, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Toccoa, GA MicroSA" "The dwelling unit is located in Toccoa, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Toledo, OH MSA" "The dwelling unit is located in Toledo, OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Topeka, KS MSA" "The dwelling unit is located in Topeka, KS MSA" +in.metropolitan_and_micropolitan_statistical_area "Torrington, CT MicroSA" "The dwelling unit is located in Torrington, CT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Traverse City, MI MicroSA" "The dwelling unit is located in Traverse City, MI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Trenton, NJ MSA" "The dwelling unit is located in Trenton, NJ MSA" +in.metropolitan_and_micropolitan_statistical_area "Troy, AL MicroSA" "The dwelling unit is located in Troy, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Truckee-Grass Valley, CA MicroSA" "The dwelling unit is located in Truckee-Grass Valley, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tucson, AZ MSA" "The dwelling unit is located in Tucson, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Tullahoma-Manchester, TN MicroSA" "The dwelling unit is located in Tullahoma-Manchester, TN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tulsa, OK MSA" "The dwelling unit is located in Tulsa, OK MSA" +in.metropolitan_and_micropolitan_statistical_area "Tupelo, MS MicroSA" "The dwelling unit is located in Tupelo, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tuscaloosa, AL MSA" "The dwelling unit is located in Tuscaloosa, AL MSA" +in.metropolitan_and_micropolitan_statistical_area "Twin Falls, ID MicroSA" "The dwelling unit is located in Twin Falls, ID MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Tyler, TX MSA" "The dwelling unit is located in Tyler, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Ukiah, CA MicroSA" "The dwelling unit is located in Ukiah, CA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Union City, TN-KY MicroSA" "The dwelling unit is located in Union City, TN-KY MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Urban Honolulu, HI MSA" "The dwelling unit is located in Urban Honolulu, HI MSA" +in.metropolitan_and_micropolitan_statistical_area "Urbana, OH MicroSA" "The dwelling unit is located in Urbana, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Utica-Rome, NY MSA" "The dwelling unit is located in Utica-Rome, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Uvalde, TX MicroSA" "The dwelling unit is located in Uvalde, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Valdosta, GA MSA" "The dwelling unit is located in Valdosta, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Vallejo-Fairfield, CA MSA" "The dwelling unit is located in Vallejo-Fairfield, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Valley, AL MicroSA" "The dwelling unit is located in Valley, AL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Van Wert, OH MicroSA" "The dwelling unit is located in Van Wert, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vermillion, SD MicroSA" "The dwelling unit is located in Vermillion, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vernal, UT MicroSA" "The dwelling unit is located in Vernal, UT MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vernon, TX MicroSA" "The dwelling unit is located in Vernon, TX MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vicksburg, MS MicroSA" "The dwelling unit is located in Vicksburg, MS MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Victoria, TX MSA" "The dwelling unit is located in Victoria, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Vidalia, GA MicroSA" "The dwelling unit is located in Vidalia, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vincennes, IN MicroSA" "The dwelling unit is located in Vincennes, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Vineland-Bridgeton, NJ MSA" "The dwelling unit is located in Vineland-Bridgeton, NJ MSA" +in.metropolitan_and_micropolitan_statistical_area "Vineyard Haven, MA MicroSA" "The dwelling unit is located in Vineyard Haven, MA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" "The dwelling unit is located in Virginia Beach-Norfolk-Newport News, VA-NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Visalia-Porterville, CA MSA" "The dwelling unit is located in Visalia-Porterville, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Wabash, IN MicroSA" "The dwelling unit is located in Wabash, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Waco, TX MSA" "The dwelling unit is located in Waco, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Wahpeton, ND-MN MicroSA" "The dwelling unit is located in Wahpeton, ND-MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Walla Walla, WA MSA" "The dwelling unit is located in Walla Walla, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Wapakoneta, OH MicroSA" "The dwelling unit is located in Wapakoneta, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Warner Robins, GA MSA" "The dwelling unit is located in Warner Robins, GA MSA" +in.metropolitan_and_micropolitan_statistical_area "Warren, PA MicroSA" "The dwelling unit is located in Warren, PA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Warrensburg, MO MicroSA" "The dwelling unit is located in Warrensburg, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Warsaw, IN MicroSA" "The dwelling unit is located in Warsaw, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Washington Court House, OH MicroSA" "The dwelling unit is located in Washington Court House, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Washington, IN MicroSA" "The dwelling unit is located in Washington, IN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Washington, NC MicroSA" "The dwelling unit is located in Washington, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" "The dwelling unit is located in Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Waterloo-Cedar Falls, IA MSA" "The dwelling unit is located in Waterloo-Cedar Falls, IA MSA" +in.metropolitan_and_micropolitan_statistical_area "Watertown, SD MicroSA" "The dwelling unit is located in Watertown, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Watertown-Fort Atkinson, WI MicroSA" "The dwelling unit is located in Watertown-Fort Atkinson, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Watertown-Fort Drum, NY MSA" "The dwelling unit is located in Watertown-Fort Drum, NY MSA" +in.metropolitan_and_micropolitan_statistical_area "Wauchula, FL MicroSA" "The dwelling unit is located in Wauchula, FL MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wausau, WI MSA" "The dwelling unit is located in Wausau, WI MSA" +in.metropolitan_and_micropolitan_statistical_area "Waycross, GA MicroSA" "The dwelling unit is located in Waycross, GA MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Weatherford, OK MicroSA" "The dwelling unit is located in Weatherford, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Weirton-Steubenville, WV-OH MSA" "The dwelling unit is located in Weirton-Steubenville, WV-OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Wenatchee, WA MSA" "The dwelling unit is located in Wenatchee, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "West Plains, MO MicroSA" "The dwelling unit is located in West Plains, MO MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wheeling, WV-OH MSA" "The dwelling unit is located in Wheeling, WV-OH MSA" +in.metropolitan_and_micropolitan_statistical_area "Whitewater-Elkhorn, WI MicroSA" "The dwelling unit is located in Whitewater-Elkhorn, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wichita Falls, TX MSA" "The dwelling unit is located in Wichita Falls, TX MSA" +in.metropolitan_and_micropolitan_statistical_area "Wichita, KS MSA" "The dwelling unit is located in Wichita, KS MSA" +in.metropolitan_and_micropolitan_statistical_area "Williamsport, PA MSA" "The dwelling unit is located in Williamsport, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Williston, ND MicroSA" "The dwelling unit is located in Williston, ND MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Willmar, MN MicroSA" "The dwelling unit is located in Willmar, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wilmington, NC MSA" "The dwelling unit is located in Wilmington, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Wilmington, OH MicroSA" "The dwelling unit is located in Wilmington, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wilson, NC MicroSA" "The dwelling unit is located in Wilson, NC MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Winchester, VA-WV MSA" "The dwelling unit is located in Winchester, VA-WV MSA" +in.metropolitan_and_micropolitan_statistical_area "Winnemucca, NV MicroSA" "The dwelling unit is located in Winnemucca, NV MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Winona, MN MicroSA" "The dwelling unit is located in Winona, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Winston-Salem, NC MSA" "The dwelling unit is located in Winston-Salem, NC MSA" +in.metropolitan_and_micropolitan_statistical_area "Wisconsin Rapids-Marshfield, WI MicroSA" "The dwelling unit is located in Wisconsin Rapids-Marshfield, WI MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Woodward, OK MicroSA" "The dwelling unit is located in Woodward, OK MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Wooster, OH MicroSA" "The dwelling unit is located in Wooster, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Worcester, MA-CT MSA" "The dwelling unit is located in Worcester, MA-CT MSA" +in.metropolitan_and_micropolitan_statistical_area "Worthington, MN MicroSA" "The dwelling unit is located in Worthington, MN MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Yakima, WA MSA" "The dwelling unit is located in Yakima, WA MSA" +in.metropolitan_and_micropolitan_statistical_area "Yankton, SD MicroSA" "The dwelling unit is located in Yankton, SD MicroSA" +in.metropolitan_and_micropolitan_statistical_area "York-Hanover, PA MSA" "The dwelling unit is located in York-Hanover, PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Youngstown-Warren-Boardman, OH-PA MSA" "The dwelling unit is located in Youngstown-Warren-Boardman, OH-PA MSA" +in.metropolitan_and_micropolitan_statistical_area "Yuba City, CA MSA" "The dwelling unit is located in Yuba City, CA MSA" +in.metropolitan_and_micropolitan_statistical_area "Yuma, AZ MSA" "The dwelling unit is located in Yuma, AZ MSA" +in.metropolitan_and_micropolitan_statistical_area "Zanesville, OH MicroSA" "The dwelling unit is located in Zanesville, OH MicroSA" +in.metropolitan_and_micropolitan_statistical_area "Zapata, TX MicroSA" "The dwelling unit is located in Zapata, TX MicroSA" +in.misc_extra_refrigerator EF 10.2 Extra refrigerator with energy factor 10.2 +in.misc_extra_refrigerator EF 10.5 Extra refrigerator with energy factor 10.5 +in.misc_extra_refrigerator EF 15.9 Extra refrigerator with energy factor 15.9 +in.misc_extra_refrigerator EF 17.6 Extra refrigerator with energy factor 17.6 +in.misc_extra_refrigerator EF 19.9 Extra refrigerator with energy factor 19.9 +in.misc_extra_refrigerator EF 21.9 Extra refrigerator with energy factor 21.9 +in.misc_extra_refrigerator EF 6.7 Extra refrigerator with energy factor 6.7 +in.misc_extra_refrigerator None No extra refrigerator +in.misc_freezer "EF 12, National Average" "Stand-alone freezer with energy factor 12, scaled to the national average freezer usage" +in.misc_freezer None No stand-alone freezer +in.misc_gas_fireplace Gas Fireplace Natural gas fueled fireplace +in.misc_gas_fireplace None No gas fireplace +in.misc_gas_grill Gas Grill Natural gas fueled grill +in.misc_gas_grill None No gas grill +in.misc_gas_lighting Gas Lighting Has gas lighting +in.misc_gas_lighting None No gas lighting +in.misc_hot_tub_spa Electricity Electrically-heated hot tub +in.misc_hot_tub_spa Natural Gas Natural gas-heated hot tub +in.misc_hot_tub_spa None No hot tub +in.misc_hot_tub_spa Other Fuel Other fuel-heated hot tub +in.misc_pool Has Pool Housing unit has a pool +in.misc_pool None Housing unit does not have a pool +in.misc_pool_heater Electric Heat Pump Electric Heat Pump-heated pool +in.misc_pool_heater Electricity Electrically-heated pool +in.misc_pool_heater Natural Gas Natural gas-heated pool +in.misc_pool_heater None No pool heater +in.misc_pool_heater Other Fuel Other fuel-heated pool +in.misc_pool_pump 1.0 HP Pump 1.0 HP pool pump +in.misc_pool_pump None No pool pump +in.misc_well_pump None No well pump +in.misc_well_pump Typical Efficiency Well pump with energy usage of 400kWh/yr +in.natural_ventilation "Cooling Season, 7 days/wk" Venitlation from windows 3 days per week for the full year +in.neighbors 12 12 ft distance between the building and the nearest neighbors to the left and right +in.neighbors 2 2 ft distance between the building and the nearest neighbors to the left and right +in.neighbors 27 27 ft distance between the building and the nearest neighbors to the left and right +in.neighbors 4 4 ft distance between the building and the nearest neighbors to the left and right +in.neighbors 7 7 ft distance between the building and the nearest neighbors to the left and right +in.neighbors Left/Right at 15ft 15 ft distance between the building and the nearest neighbors to the left and right +in.neighbors None No immediate neighbors in any direction +in.occupants 0 0 occupants live in the building +in.occupants 1 1 occupant lives in the building +in.occupants 10+ 10+ occupants live in the building +in.occupants 2 2 occupants live in the building +in.occupants 3 3 occupants live in the building +in.occupants 4 4 occupants live in the building +in.occupants 5 5 occupants live in the building +in.occupants 6 6 occupants live in the building +in.occupants 7 7 occupants live in the building +in.occupants 8 8 occupants live in the building +in.occupants 9 9 occupants live in the building +in.orientation East Housing unit faces east +in.orientation North Housing unit faces north +in.orientation Northeast Housing unit faces northeast +in.orientation Northwest Housing unit faces northwest +in.orientation South Housing unit faces south +in.orientation Southeast Housing unit faces southeast +in.orientation Southwest Housing unit faces southwest +in.orientation West Housing unit faces west +in.overhangs None No overhangs above windows +in.plug_load_diversity 100% Applies further diversity to the plug load usage with a 1.0 multiplier +in.plug_load_diversity 200% Applies further diversity to the plug load usage with a 2.0 multiplier +in.plug_load_diversity 50% Applies further diversity to the plug load usage with a 0.5 multiplier +in.plug_loads 100% Plug load usage is 100% of the national average +in.plug_loads 101% Plug load usage is 101% of the national average +in.plug_loads 102% Plug load usage is 102% of the national average +in.plug_loads 103% Plug load usage is 103% of the national average +in.plug_loads 104% Plug load usage is 104% of the national average +in.plug_loads 105% Plug load usage is 105% of the national average +in.plug_loads 106% Plug load usage is 106% of the national average +in.plug_loads 108% Plug load usage is 108% of the national average +in.plug_loads 110% Plug load usage is 110% of the national average +in.plug_loads 113% Plug load usage is 113% of the national average +in.plug_loads 119% Plug load usage is 119% of the national average +in.plug_loads 121% Plug load usage is 121% of the national average +in.plug_loads 123% Plug load usage is 123% of the national average +in.plug_loads 134% Plug load usage is 134% of the national average +in.plug_loads 137% Plug load usage is 137% of the national average +in.plug_loads 140% Plug load usage is 140% of the national average +in.plug_loads 144% Plug load usage is 144% of the national average +in.plug_loads 166% Plug load usage is 166% of the national average +in.plug_loads 78% Plug load usage is 78% of the national average +in.plug_loads 79% Plug load usage is 79% of the national average +in.plug_loads 82% Plug load usage is 82% of the national average +in.plug_loads 84% Plug load usage is 84% of the national average +in.plug_loads 85% Plug load usage is 85% of the national average +in.plug_loads 86% Plug load usage is 86% of the national average +in.plug_loads 89% Plug load usage is 89% of the national average +in.plug_loads 91% Plug load usage is 91% of the national average +in.plug_loads 94% Plug load usage is 94% of the national average +in.plug_loads 95% Plug load usage is 95% of the national average +in.plug_loads 96% Plug load usage is 96% of the national average +in.plug_loads 97% Plug load usage is 97% of the national average +in.plug_loads 99% Plug load usage is 99% of the national average +in.puma "AK, 00101" "The dwelling unit is located in AK, the NHGIS PUMA code is 00101" +in.puma "AK, 00102" "The dwelling unit is located in AK, the NHGIS PUMA code is 00102" +in.puma "AK, 00200" "The dwelling unit is located in AK, the NHGIS PUMA code is 00200" +in.puma "AK, 00300" "The dwelling unit is located in AK, the NHGIS PUMA code is 00300" +in.puma "AK, 00400" "The dwelling unit is located in AK, the NHGIS PUMA code is 00400" +in.puma "AL, 00100" "The dwelling unit is located in AL, the NHGIS PUMA code is 00100" +in.puma "AL, 00200" "The dwelling unit is located in AL, the NHGIS PUMA code is 00200" +in.puma "AL, 00301" "The dwelling unit is located in AL, the NHGIS PUMA code is 00301" +in.puma "AL, 00302" "The dwelling unit is located in AL, the NHGIS PUMA code is 00302" +in.puma "AL, 00400" "The dwelling unit is located in AL, the NHGIS PUMA code is 00400" +in.puma "AL, 00500" "The dwelling unit is located in AL, the NHGIS PUMA code is 00500" +in.puma "AL, 00600" "The dwelling unit is located in AL, the NHGIS PUMA code is 00600" +in.puma "AL, 00700" "The dwelling unit is located in AL, the NHGIS PUMA code is 00700" +in.puma "AL, 00800" "The dwelling unit is located in AL, the NHGIS PUMA code is 00800" +in.puma "AL, 00900" "The dwelling unit is located in AL, the NHGIS PUMA code is 00900" +in.puma "AL, 01000" "The dwelling unit is located in AL, the NHGIS PUMA code is 01000" +in.puma "AL, 01100" "The dwelling unit is located in AL, the NHGIS PUMA code is 01100" +in.puma "AL, 01200" "The dwelling unit is located in AL, the NHGIS PUMA code is 01200" +in.puma "AL, 01301" "The dwelling unit is located in AL, the NHGIS PUMA code is 01301" +in.puma "AL, 01302" "The dwelling unit is located in AL, the NHGIS PUMA code is 01302" +in.puma "AL, 01303" "The dwelling unit is located in AL, the NHGIS PUMA code is 01303" +in.puma "AL, 01304" "The dwelling unit is located in AL, the NHGIS PUMA code is 01304" +in.puma "AL, 01305" "The dwelling unit is located in AL, the NHGIS PUMA code is 01305" +in.puma "AL, 01400" "The dwelling unit is located in AL, the NHGIS PUMA code is 01400" +in.puma "AL, 01500" "The dwelling unit is located in AL, the NHGIS PUMA code is 01500" +in.puma "AL, 01600" "The dwelling unit is located in AL, the NHGIS PUMA code is 01600" +in.puma "AL, 01700" "The dwelling unit is located in AL, the NHGIS PUMA code is 01700" +in.puma "AL, 01800" "The dwelling unit is located in AL, the NHGIS PUMA code is 01800" +in.puma "AL, 01900" "The dwelling unit is located in AL, the NHGIS PUMA code is 01900" +in.puma "AL, 02000" "The dwelling unit is located in AL, the NHGIS PUMA code is 02000" +in.puma "AL, 02100" "The dwelling unit is located in AL, the NHGIS PUMA code is 02100" +in.puma "AL, 02200" "The dwelling unit is located in AL, the NHGIS PUMA code is 02200" +in.puma "AL, 02300" "The dwelling unit is located in AL, the NHGIS PUMA code is 02300" +in.puma "AL, 02400" "The dwelling unit is located in AL, the NHGIS PUMA code is 02400" +in.puma "AL, 02500" "The dwelling unit is located in AL, the NHGIS PUMA code is 02500" +in.puma "AL, 02600" "The dwelling unit is located in AL, the NHGIS PUMA code is 02600" +in.puma "AL, 02701" "The dwelling unit is located in AL, the NHGIS PUMA code is 02701" +in.puma "AL, 02702" "The dwelling unit is located in AL, the NHGIS PUMA code is 02702" +in.puma "AL, 02703" "The dwelling unit is located in AL, the NHGIS PUMA code is 02703" +in.puma "AR, 00100" "The dwelling unit is located in AR, the NHGIS PUMA code is 00100" +in.puma "AR, 00200" "The dwelling unit is located in AR, the NHGIS PUMA code is 00200" +in.puma "AR, 00300" "The dwelling unit is located in AR, the NHGIS PUMA code is 00300" +in.puma "AR, 00400" "The dwelling unit is located in AR, the NHGIS PUMA code is 00400" +in.puma "AR, 00500" "The dwelling unit is located in AR, the NHGIS PUMA code is 00500" +in.puma "AR, 00600" "The dwelling unit is located in AR, the NHGIS PUMA code is 00600" +in.puma "AR, 00700" "The dwelling unit is located in AR, the NHGIS PUMA code is 00700" +in.puma "AR, 00800" "The dwelling unit is located in AR, the NHGIS PUMA code is 00800" +in.puma "AR, 00900" "The dwelling unit is located in AR, the NHGIS PUMA code is 00900" +in.puma "AR, 01000" "The dwelling unit is located in AR, the NHGIS PUMA code is 01000" +in.puma "AR, 01100" "The dwelling unit is located in AR, the NHGIS PUMA code is 01100" +in.puma "AR, 01200" "The dwelling unit is located in AR, the NHGIS PUMA code is 01200" +in.puma "AR, 01300" "The dwelling unit is located in AR, the NHGIS PUMA code is 01300" +in.puma "AR, 01400" "The dwelling unit is located in AR, the NHGIS PUMA code is 01400" +in.puma "AR, 01500" "The dwelling unit is located in AR, the NHGIS PUMA code is 01500" +in.puma "AR, 01600" "The dwelling unit is located in AR, the NHGIS PUMA code is 01600" +in.puma "AR, 01700" "The dwelling unit is located in AR, the NHGIS PUMA code is 01700" +in.puma "AR, 01800" "The dwelling unit is located in AR, the NHGIS PUMA code is 01800" +in.puma "AR, 01900" "The dwelling unit is located in AR, the NHGIS PUMA code is 01900" +in.puma "AR, 02000" "The dwelling unit is located in AR, the NHGIS PUMA code is 02000" +in.puma "AZ, 00100" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00100" +in.puma "AZ, 00101" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00101" +in.puma "AZ, 00102" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00102" +in.puma "AZ, 00103" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00103" +in.puma "AZ, 00104" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00104" +in.puma "AZ, 00105" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00105" +in.puma "AZ, 00106" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00106" +in.puma "AZ, 00107" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00107" +in.puma "AZ, 00108" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00108" +in.puma "AZ, 00109" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00109" +in.puma "AZ, 00110" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00110" +in.puma "AZ, 00111" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00111" +in.puma "AZ, 00112" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00112" +in.puma "AZ, 00113" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00113" +in.puma "AZ, 00114" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00114" +in.puma "AZ, 00115" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00115" +in.puma "AZ, 00116" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00116" +in.puma "AZ, 00117" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00117" +in.puma "AZ, 00118" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00118" +in.puma "AZ, 00119" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00119" +in.puma "AZ, 00120" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00120" +in.puma "AZ, 00121" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00121" +in.puma "AZ, 00122" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00122" +in.puma "AZ, 00123" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00123" +in.puma "AZ, 00124" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00124" +in.puma "AZ, 00125" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00125" +in.puma "AZ, 00126" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00126" +in.puma "AZ, 00127" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00127" +in.puma "AZ, 00128" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00128" +in.puma "AZ, 00129" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00129" +in.puma "AZ, 00130" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00130" +in.puma "AZ, 00131" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00131" +in.puma "AZ, 00132" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00132" +in.puma "AZ, 00133" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00133" +in.puma "AZ, 00134" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00134" +in.puma "AZ, 00201" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00201" +in.puma "AZ, 00202" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00202" +in.puma "AZ, 00203" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00203" +in.puma "AZ, 00204" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00204" +in.puma "AZ, 00205" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00205" +in.puma "AZ, 00206" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00206" +in.puma "AZ, 00207" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00207" +in.puma "AZ, 00208" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00208" +in.puma "AZ, 00209" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00209" +in.puma "AZ, 00300" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00300" +in.puma "AZ, 00400" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00400" +in.puma "AZ, 00500" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00500" +in.puma "AZ, 00600" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00600" +in.puma "AZ, 00700" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00700" +in.puma "AZ, 00800" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00800" +in.puma "AZ, 00803" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00803" +in.puma "AZ, 00805" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00805" +in.puma "AZ, 00807" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00807" +in.puma "AZ, 00900" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00900" +in.puma "CA, 00101" "The dwelling unit is located in CA, the NHGIS PUMA code is 00101" +in.puma "CA, 00102" "The dwelling unit is located in CA, the NHGIS PUMA code is 00102" +in.puma "CA, 00103" "The dwelling unit is located in CA, the NHGIS PUMA code is 00103" +in.puma "CA, 00104" "The dwelling unit is located in CA, the NHGIS PUMA code is 00104" +in.puma "CA, 00105" "The dwelling unit is located in CA, the NHGIS PUMA code is 00105" +in.puma "CA, 00106" "The dwelling unit is located in CA, the NHGIS PUMA code is 00106" +in.puma "CA, 00107" "The dwelling unit is located in CA, the NHGIS PUMA code is 00107" +in.puma "CA, 00108" "The dwelling unit is located in CA, the NHGIS PUMA code is 00108" +in.puma "CA, 00109" "The dwelling unit is located in CA, the NHGIS PUMA code is 00109" +in.puma "CA, 00110" "The dwelling unit is located in CA, the NHGIS PUMA code is 00110" +in.puma "CA, 00300" "The dwelling unit is located in CA, the NHGIS PUMA code is 00300" +in.puma "CA, 00701" "The dwelling unit is located in CA, the NHGIS PUMA code is 00701" +in.puma "CA, 00702" "The dwelling unit is located in CA, the NHGIS PUMA code is 00702" +in.puma "CA, 01100" "The dwelling unit is located in CA, the NHGIS PUMA code is 01100" +in.puma "CA, 01301" "The dwelling unit is located in CA, the NHGIS PUMA code is 01301" +in.puma "CA, 01302" "The dwelling unit is located in CA, the NHGIS PUMA code is 01302" +in.puma "CA, 01303" "The dwelling unit is located in CA, the NHGIS PUMA code is 01303" +in.puma "CA, 01304" "The dwelling unit is located in CA, the NHGIS PUMA code is 01304" +in.puma "CA, 01305" "The dwelling unit is located in CA, the NHGIS PUMA code is 01305" +in.puma "CA, 01306" "The dwelling unit is located in CA, the NHGIS PUMA code is 01306" +in.puma "CA, 01307" "The dwelling unit is located in CA, the NHGIS PUMA code is 01307" +in.puma "CA, 01308" "The dwelling unit is located in CA, the NHGIS PUMA code is 01308" +in.puma "CA, 01309" "The dwelling unit is located in CA, the NHGIS PUMA code is 01309" +in.puma "CA, 01500" "The dwelling unit is located in CA, the NHGIS PUMA code is 01500" +in.puma "CA, 01700" "The dwelling unit is located in CA, the NHGIS PUMA code is 01700" +in.puma "CA, 01901" "The dwelling unit is located in CA, the NHGIS PUMA code is 01901" +in.puma "CA, 01902" "The dwelling unit is located in CA, the NHGIS PUMA code is 01902" +in.puma "CA, 01903" "The dwelling unit is located in CA, the NHGIS PUMA code is 01903" +in.puma "CA, 01904" "The dwelling unit is located in CA, the NHGIS PUMA code is 01904" +in.puma "CA, 01905" "The dwelling unit is located in CA, the NHGIS PUMA code is 01905" +in.puma "CA, 01906" "The dwelling unit is located in CA, the NHGIS PUMA code is 01906" +in.puma "CA, 01907" "The dwelling unit is located in CA, the NHGIS PUMA code is 01907" +in.puma "CA, 02300" "The dwelling unit is located in CA, the NHGIS PUMA code is 02300" +in.puma "CA, 02500" "The dwelling unit is located in CA, the NHGIS PUMA code is 02500" +in.puma "CA, 02901" "The dwelling unit is located in CA, the NHGIS PUMA code is 02901" +in.puma "CA, 02902" "The dwelling unit is located in CA, the NHGIS PUMA code is 02902" +in.puma "CA, 02903" "The dwelling unit is located in CA, the NHGIS PUMA code is 02903" +in.puma "CA, 02904" "The dwelling unit is located in CA, the NHGIS PUMA code is 02904" +in.puma "CA, 02905" "The dwelling unit is located in CA, the NHGIS PUMA code is 02905" +in.puma "CA, 03100" "The dwelling unit is located in CA, the NHGIS PUMA code is 03100" +in.puma "CA, 03300" "The dwelling unit is located in CA, the NHGIS PUMA code is 03300" +in.puma "CA, 03701" "The dwelling unit is located in CA, the NHGIS PUMA code is 03701" +in.puma "CA, 03702" "The dwelling unit is located in CA, the NHGIS PUMA code is 03702" +in.puma "CA, 03703" "The dwelling unit is located in CA, the NHGIS PUMA code is 03703" +in.puma "CA, 03704" "The dwelling unit is located in CA, the NHGIS PUMA code is 03704" +in.puma "CA, 03705" "The dwelling unit is located in CA, the NHGIS PUMA code is 03705" +in.puma "CA, 03706" "The dwelling unit is located in CA, the NHGIS PUMA code is 03706" +in.puma "CA, 03707" "The dwelling unit is located in CA, the NHGIS PUMA code is 03707" +in.puma "CA, 03708" "The dwelling unit is located in CA, the NHGIS PUMA code is 03708" +in.puma "CA, 03709" "The dwelling unit is located in CA, the NHGIS PUMA code is 03709" +in.puma "CA, 03710" "The dwelling unit is located in CA, the NHGIS PUMA code is 03710" +in.puma "CA, 03711" "The dwelling unit is located in CA, the NHGIS PUMA code is 03711" +in.puma "CA, 03712" "The dwelling unit is located in CA, the NHGIS PUMA code is 03712" +in.puma "CA, 03713" "The dwelling unit is located in CA, the NHGIS PUMA code is 03713" +in.puma "CA, 03714" "The dwelling unit is located in CA, the NHGIS PUMA code is 03714" +in.puma "CA, 03715" "The dwelling unit is located in CA, the NHGIS PUMA code is 03715" +in.puma "CA, 03716" "The dwelling unit is located in CA, the NHGIS PUMA code is 03716" +in.puma "CA, 03717" "The dwelling unit is located in CA, the NHGIS PUMA code is 03717" +in.puma "CA, 03718" "The dwelling unit is located in CA, the NHGIS PUMA code is 03718" +in.puma "CA, 03719" "The dwelling unit is located in CA, the NHGIS PUMA code is 03719" +in.puma "CA, 03720" "The dwelling unit is located in CA, the NHGIS PUMA code is 03720" +in.puma "CA, 03721" "The dwelling unit is located in CA, the NHGIS PUMA code is 03721" +in.puma "CA, 03722" "The dwelling unit is located in CA, the NHGIS PUMA code is 03722" +in.puma "CA, 03723" "The dwelling unit is located in CA, the NHGIS PUMA code is 03723" +in.puma "CA, 03724" "The dwelling unit is located in CA, the NHGIS PUMA code is 03724" +in.puma "CA, 03725" "The dwelling unit is located in CA, the NHGIS PUMA code is 03725" +in.puma "CA, 03726" "The dwelling unit is located in CA, the NHGIS PUMA code is 03726" +in.puma "CA, 03727" "The dwelling unit is located in CA, the NHGIS PUMA code is 03727" +in.puma "CA, 03728" "The dwelling unit is located in CA, the NHGIS PUMA code is 03728" +in.puma "CA, 03729" "The dwelling unit is located in CA, the NHGIS PUMA code is 03729" +in.puma "CA, 03730" "The dwelling unit is located in CA, the NHGIS PUMA code is 03730" +in.puma "CA, 03731" "The dwelling unit is located in CA, the NHGIS PUMA code is 03731" +in.puma "CA, 03732" "The dwelling unit is located in CA, the NHGIS PUMA code is 03732" +in.puma "CA, 03733" "The dwelling unit is located in CA, the NHGIS PUMA code is 03733" +in.puma "CA, 03734" "The dwelling unit is located in CA, the NHGIS PUMA code is 03734" +in.puma "CA, 03735" "The dwelling unit is located in CA, the NHGIS PUMA code is 03735" +in.puma "CA, 03736" "The dwelling unit is located in CA, the NHGIS PUMA code is 03736" +in.puma "CA, 03737" "The dwelling unit is located in CA, the NHGIS PUMA code is 03737" +in.puma "CA, 03738" "The dwelling unit is located in CA, the NHGIS PUMA code is 03738" +in.puma "CA, 03739" "The dwelling unit is located in CA, the NHGIS PUMA code is 03739" +in.puma "CA, 03740" "The dwelling unit is located in CA, the NHGIS PUMA code is 03740" +in.puma "CA, 03741" "The dwelling unit is located in CA, the NHGIS PUMA code is 03741" +in.puma "CA, 03742" "The dwelling unit is located in CA, the NHGIS PUMA code is 03742" +in.puma "CA, 03743" "The dwelling unit is located in CA, the NHGIS PUMA code is 03743" +in.puma "CA, 03744" "The dwelling unit is located in CA, the NHGIS PUMA code is 03744" +in.puma "CA, 03745" "The dwelling unit is located in CA, the NHGIS PUMA code is 03745" +in.puma "CA, 03746" "The dwelling unit is located in CA, the NHGIS PUMA code is 03746" +in.puma "CA, 03747" "The dwelling unit is located in CA, the NHGIS PUMA code is 03747" +in.puma "CA, 03748" "The dwelling unit is located in CA, the NHGIS PUMA code is 03748" +in.puma "CA, 03749" "The dwelling unit is located in CA, the NHGIS PUMA code is 03749" +in.puma "CA, 03750" "The dwelling unit is located in CA, the NHGIS PUMA code is 03750" +in.puma "CA, 03751" "The dwelling unit is located in CA, the NHGIS PUMA code is 03751" +in.puma "CA, 03752" "The dwelling unit is located in CA, the NHGIS PUMA code is 03752" +in.puma "CA, 03753" "The dwelling unit is located in CA, the NHGIS PUMA code is 03753" +in.puma "CA, 03754" "The dwelling unit is located in CA, the NHGIS PUMA code is 03754" +in.puma "CA, 03755" "The dwelling unit is located in CA, the NHGIS PUMA code is 03755" +in.puma "CA, 03756" "The dwelling unit is located in CA, the NHGIS PUMA code is 03756" +in.puma "CA, 03757" "The dwelling unit is located in CA, the NHGIS PUMA code is 03757" +in.puma "CA, 03758" "The dwelling unit is located in CA, the NHGIS PUMA code is 03758" +in.puma "CA, 03759" "The dwelling unit is located in CA, the NHGIS PUMA code is 03759" +in.puma "CA, 03760" "The dwelling unit is located in CA, the NHGIS PUMA code is 03760" +in.puma "CA, 03761" "The dwelling unit is located in CA, the NHGIS PUMA code is 03761" +in.puma "CA, 03762" "The dwelling unit is located in CA, the NHGIS PUMA code is 03762" +in.puma "CA, 03763" "The dwelling unit is located in CA, the NHGIS PUMA code is 03763" +in.puma "CA, 03764" "The dwelling unit is located in CA, the NHGIS PUMA code is 03764" +in.puma "CA, 03765" "The dwelling unit is located in CA, the NHGIS PUMA code is 03765" +in.puma "CA, 03766" "The dwelling unit is located in CA, the NHGIS PUMA code is 03766" +in.puma "CA, 03767" "The dwelling unit is located in CA, the NHGIS PUMA code is 03767" +in.puma "CA, 03768" "The dwelling unit is located in CA, the NHGIS PUMA code is 03768" +in.puma "CA, 03769" "The dwelling unit is located in CA, the NHGIS PUMA code is 03769" +in.puma "CA, 03900" "The dwelling unit is located in CA, the NHGIS PUMA code is 03900" +in.puma "CA, 04101" "The dwelling unit is located in CA, the NHGIS PUMA code is 04101" +in.puma "CA, 04102" "The dwelling unit is located in CA, the NHGIS PUMA code is 04102" +in.puma "CA, 04701" "The dwelling unit is located in CA, the NHGIS PUMA code is 04701" +in.puma "CA, 04702" "The dwelling unit is located in CA, the NHGIS PUMA code is 04702" +in.puma "CA, 05301" "The dwelling unit is located in CA, the NHGIS PUMA code is 05301" +in.puma "CA, 05302" "The dwelling unit is located in CA, the NHGIS PUMA code is 05302" +in.puma "CA, 05303" "The dwelling unit is located in CA, the NHGIS PUMA code is 05303" +in.puma "CA, 05500" "The dwelling unit is located in CA, the NHGIS PUMA code is 05500" +in.puma "CA, 05700" "The dwelling unit is located in CA, the NHGIS PUMA code is 05700" +in.puma "CA, 05901" "The dwelling unit is located in CA, the NHGIS PUMA code is 05901" +in.puma "CA, 05902" "The dwelling unit is located in CA, the NHGIS PUMA code is 05902" +in.puma "CA, 05903" "The dwelling unit is located in CA, the NHGIS PUMA code is 05903" +in.puma "CA, 05904" "The dwelling unit is located in CA, the NHGIS PUMA code is 05904" +in.puma "CA, 05905" "The dwelling unit is located in CA, the NHGIS PUMA code is 05905" +in.puma "CA, 05906" "The dwelling unit is located in CA, the NHGIS PUMA code is 05906" +in.puma "CA, 05907" "The dwelling unit is located in CA, the NHGIS PUMA code is 05907" +in.puma "CA, 05908" "The dwelling unit is located in CA, the NHGIS PUMA code is 05908" +in.puma "CA, 05909" "The dwelling unit is located in CA, the NHGIS PUMA code is 05909" +in.puma "CA, 05910" "The dwelling unit is located in CA, the NHGIS PUMA code is 05910" +in.puma "CA, 05911" "The dwelling unit is located in CA, the NHGIS PUMA code is 05911" +in.puma "CA, 05912" "The dwelling unit is located in CA, the NHGIS PUMA code is 05912" +in.puma "CA, 05913" "The dwelling unit is located in CA, the NHGIS PUMA code is 05913" +in.puma "CA, 05914" "The dwelling unit is located in CA, the NHGIS PUMA code is 05914" +in.puma "CA, 05915" "The dwelling unit is located in CA, the NHGIS PUMA code is 05915" +in.puma "CA, 05916" "The dwelling unit is located in CA, the NHGIS PUMA code is 05916" +in.puma "CA, 05917" "The dwelling unit is located in CA, the NHGIS PUMA code is 05917" +in.puma "CA, 05918" "The dwelling unit is located in CA, the NHGIS PUMA code is 05918" +in.puma "CA, 06101" "The dwelling unit is located in CA, the NHGIS PUMA code is 06101" +in.puma "CA, 06102" "The dwelling unit is located in CA, the NHGIS PUMA code is 06102" +in.puma "CA, 06103" "The dwelling unit is located in CA, the NHGIS PUMA code is 06103" +in.puma "CA, 06501" "The dwelling unit is located in CA, the NHGIS PUMA code is 06501" +in.puma "CA, 06502" "The dwelling unit is located in CA, the NHGIS PUMA code is 06502" +in.puma "CA, 06503" "The dwelling unit is located in CA, the NHGIS PUMA code is 06503" +in.puma "CA, 06504" "The dwelling unit is located in CA, the NHGIS PUMA code is 06504" +in.puma "CA, 06505" "The dwelling unit is located in CA, the NHGIS PUMA code is 06505" +in.puma "CA, 06506" "The dwelling unit is located in CA, the NHGIS PUMA code is 06506" +in.puma "CA, 06507" "The dwelling unit is located in CA, the NHGIS PUMA code is 06507" +in.puma "CA, 06508" "The dwelling unit is located in CA, the NHGIS PUMA code is 06508" +in.puma "CA, 06509" "The dwelling unit is located in CA, the NHGIS PUMA code is 06509" +in.puma "CA, 06510" "The dwelling unit is located in CA, the NHGIS PUMA code is 06510" +in.puma "CA, 06511" "The dwelling unit is located in CA, the NHGIS PUMA code is 06511" +in.puma "CA, 06512" "The dwelling unit is located in CA, the NHGIS PUMA code is 06512" +in.puma "CA, 06513" "The dwelling unit is located in CA, the NHGIS PUMA code is 06513" +in.puma "CA, 06514" "The dwelling unit is located in CA, the NHGIS PUMA code is 06514" +in.puma "CA, 06515" "The dwelling unit is located in CA, the NHGIS PUMA code is 06515" +in.puma "CA, 06701" "The dwelling unit is located in CA, the NHGIS PUMA code is 06701" +in.puma "CA, 06702" "The dwelling unit is located in CA, the NHGIS PUMA code is 06702" +in.puma "CA, 06703" "The dwelling unit is located in CA, the NHGIS PUMA code is 06703" +in.puma "CA, 06704" "The dwelling unit is located in CA, the NHGIS PUMA code is 06704" +in.puma "CA, 06705" "The dwelling unit is located in CA, the NHGIS PUMA code is 06705" +in.puma "CA, 06706" "The dwelling unit is located in CA, the NHGIS PUMA code is 06706" +in.puma "CA, 06707" "The dwelling unit is located in CA, the NHGIS PUMA code is 06707" +in.puma "CA, 06708" "The dwelling unit is located in CA, the NHGIS PUMA code is 06708" +in.puma "CA, 06709" "The dwelling unit is located in CA, the NHGIS PUMA code is 06709" +in.puma "CA, 06710" "The dwelling unit is located in CA, the NHGIS PUMA code is 06710" +in.puma "CA, 06711" "The dwelling unit is located in CA, the NHGIS PUMA code is 06711" +in.puma "CA, 06712" "The dwelling unit is located in CA, the NHGIS PUMA code is 06712" +in.puma "CA, 07101" "The dwelling unit is located in CA, the NHGIS PUMA code is 07101" +in.puma "CA, 07102" "The dwelling unit is located in CA, the NHGIS PUMA code is 07102" +in.puma "CA, 07103" "The dwelling unit is located in CA, the NHGIS PUMA code is 07103" +in.puma "CA, 07104" "The dwelling unit is located in CA, the NHGIS PUMA code is 07104" +in.puma "CA, 07105" "The dwelling unit is located in CA, the NHGIS PUMA code is 07105" +in.puma "CA, 07106" "The dwelling unit is located in CA, the NHGIS PUMA code is 07106" +in.puma "CA, 07107" "The dwelling unit is located in CA, the NHGIS PUMA code is 07107" +in.puma "CA, 07108" "The dwelling unit is located in CA, the NHGIS PUMA code is 07108" +in.puma "CA, 07109" "The dwelling unit is located in CA, the NHGIS PUMA code is 07109" +in.puma "CA, 07110" "The dwelling unit is located in CA, the NHGIS PUMA code is 07110" +in.puma "CA, 07111" "The dwelling unit is located in CA, the NHGIS PUMA code is 07111" +in.puma "CA, 07112" "The dwelling unit is located in CA, the NHGIS PUMA code is 07112" +in.puma "CA, 07113" "The dwelling unit is located in CA, the NHGIS PUMA code is 07113" +in.puma "CA, 07114" "The dwelling unit is located in CA, the NHGIS PUMA code is 07114" +in.puma "CA, 07115" "The dwelling unit is located in CA, the NHGIS PUMA code is 07115" +in.puma "CA, 07301" "The dwelling unit is located in CA, the NHGIS PUMA code is 07301" +in.puma "CA, 07302" "The dwelling unit is located in CA, the NHGIS PUMA code is 07302" +in.puma "CA, 07303" "The dwelling unit is located in CA, the NHGIS PUMA code is 07303" +in.puma "CA, 07304" "The dwelling unit is located in CA, the NHGIS PUMA code is 07304" +in.puma "CA, 07305" "The dwelling unit is located in CA, the NHGIS PUMA code is 07305" +in.puma "CA, 07306" "The dwelling unit is located in CA, the NHGIS PUMA code is 07306" +in.puma "CA, 07307" "The dwelling unit is located in CA, the NHGIS PUMA code is 07307" +in.puma "CA, 07308" "The dwelling unit is located in CA, the NHGIS PUMA code is 07308" +in.puma "CA, 07309" "The dwelling unit is located in CA, the NHGIS PUMA code is 07309" +in.puma "CA, 07310" "The dwelling unit is located in CA, the NHGIS PUMA code is 07310" +in.puma "CA, 07311" "The dwelling unit is located in CA, the NHGIS PUMA code is 07311" +in.puma "CA, 07312" "The dwelling unit is located in CA, the NHGIS PUMA code is 07312" +in.puma "CA, 07313" "The dwelling unit is located in CA, the NHGIS PUMA code is 07313" +in.puma "CA, 07314" "The dwelling unit is located in CA, the NHGIS PUMA code is 07314" +in.puma "CA, 07315" "The dwelling unit is located in CA, the NHGIS PUMA code is 07315" +in.puma "CA, 07316" "The dwelling unit is located in CA, the NHGIS PUMA code is 07316" +in.puma "CA, 07317" "The dwelling unit is located in CA, the NHGIS PUMA code is 07317" +in.puma "CA, 07318" "The dwelling unit is located in CA, the NHGIS PUMA code is 07318" +in.puma "CA, 07319" "The dwelling unit is located in CA, the NHGIS PUMA code is 07319" +in.puma "CA, 07320" "The dwelling unit is located in CA, the NHGIS PUMA code is 07320" +in.puma "CA, 07321" "The dwelling unit is located in CA, the NHGIS PUMA code is 07321" +in.puma "CA, 07322" "The dwelling unit is located in CA, the NHGIS PUMA code is 07322" +in.puma "CA, 07501" "The dwelling unit is located in CA, the NHGIS PUMA code is 07501" +in.puma "CA, 07502" "The dwelling unit is located in CA, the NHGIS PUMA code is 07502" +in.puma "CA, 07503" "The dwelling unit is located in CA, the NHGIS PUMA code is 07503" +in.puma "CA, 07504" "The dwelling unit is located in CA, the NHGIS PUMA code is 07504" +in.puma "CA, 07505" "The dwelling unit is located in CA, the NHGIS PUMA code is 07505" +in.puma "CA, 07506" "The dwelling unit is located in CA, the NHGIS PUMA code is 07506" +in.puma "CA, 07507" "The dwelling unit is located in CA, the NHGIS PUMA code is 07507" +in.puma "CA, 07701" "The dwelling unit is located in CA, the NHGIS PUMA code is 07701" +in.puma "CA, 07702" "The dwelling unit is located in CA, the NHGIS PUMA code is 07702" +in.puma "CA, 07703" "The dwelling unit is located in CA, the NHGIS PUMA code is 07703" +in.puma "CA, 07704" "The dwelling unit is located in CA, the NHGIS PUMA code is 07704" +in.puma "CA, 07901" "The dwelling unit is located in CA, the NHGIS PUMA code is 07901" +in.puma "CA, 07902" "The dwelling unit is located in CA, the NHGIS PUMA code is 07902" +in.puma "CA, 08101" "The dwelling unit is located in CA, the NHGIS PUMA code is 08101" +in.puma "CA, 08102" "The dwelling unit is located in CA, the NHGIS PUMA code is 08102" +in.puma "CA, 08103" "The dwelling unit is located in CA, the NHGIS PUMA code is 08103" +in.puma "CA, 08104" "The dwelling unit is located in CA, the NHGIS PUMA code is 08104" +in.puma "CA, 08105" "The dwelling unit is located in CA, the NHGIS PUMA code is 08105" +in.puma "CA, 08106" "The dwelling unit is located in CA, the NHGIS PUMA code is 08106" +in.puma "CA, 08301" "The dwelling unit is located in CA, the NHGIS PUMA code is 08301" +in.puma "CA, 08302" "The dwelling unit is located in CA, the NHGIS PUMA code is 08302" +in.puma "CA, 08303" "The dwelling unit is located in CA, the NHGIS PUMA code is 08303" +in.puma "CA, 08501" "The dwelling unit is located in CA, the NHGIS PUMA code is 08501" +in.puma "CA, 08502" "The dwelling unit is located in CA, the NHGIS PUMA code is 08502" +in.puma "CA, 08503" "The dwelling unit is located in CA, the NHGIS PUMA code is 08503" +in.puma "CA, 08504" "The dwelling unit is located in CA, the NHGIS PUMA code is 08504" +in.puma "CA, 08505" "The dwelling unit is located in CA, the NHGIS PUMA code is 08505" +in.puma "CA, 08506" "The dwelling unit is located in CA, the NHGIS PUMA code is 08506" +in.puma "CA, 08507" "The dwelling unit is located in CA, the NHGIS PUMA code is 08507" +in.puma "CA, 08508" "The dwelling unit is located in CA, the NHGIS PUMA code is 08508" +in.puma "CA, 08509" "The dwelling unit is located in CA, the NHGIS PUMA code is 08509" +in.puma "CA, 08510" "The dwelling unit is located in CA, the NHGIS PUMA code is 08510" +in.puma "CA, 08511" "The dwelling unit is located in CA, the NHGIS PUMA code is 08511" +in.puma "CA, 08512" "The dwelling unit is located in CA, the NHGIS PUMA code is 08512" +in.puma "CA, 08513" "The dwelling unit is located in CA, the NHGIS PUMA code is 08513" +in.puma "CA, 08514" "The dwelling unit is located in CA, the NHGIS PUMA code is 08514" +in.puma "CA, 08701" "The dwelling unit is located in CA, the NHGIS PUMA code is 08701" +in.puma "CA, 08702" "The dwelling unit is located in CA, the NHGIS PUMA code is 08702" +in.puma "CA, 08900" "The dwelling unit is located in CA, the NHGIS PUMA code is 08900" +in.puma "CA, 09501" "The dwelling unit is located in CA, the NHGIS PUMA code is 09501" +in.puma "CA, 09502" "The dwelling unit is located in CA, the NHGIS PUMA code is 09502" +in.puma "CA, 09503" "The dwelling unit is located in CA, the NHGIS PUMA code is 09503" +in.puma "CA, 09701" "The dwelling unit is located in CA, the NHGIS PUMA code is 09701" +in.puma "CA, 09702" "The dwelling unit is located in CA, the NHGIS PUMA code is 09702" +in.puma "CA, 09703" "The dwelling unit is located in CA, the NHGIS PUMA code is 09703" +in.puma "CA, 09901" "The dwelling unit is located in CA, the NHGIS PUMA code is 09901" +in.puma "CA, 09902" "The dwelling unit is located in CA, the NHGIS PUMA code is 09902" +in.puma "CA, 09903" "The dwelling unit is located in CA, the NHGIS PUMA code is 09903" +in.puma "CA, 09904" "The dwelling unit is located in CA, the NHGIS PUMA code is 09904" +in.puma "CA, 10100" "The dwelling unit is located in CA, the NHGIS PUMA code is 10100" +in.puma "CA, 10701" "The dwelling unit is located in CA, the NHGIS PUMA code is 10701" +in.puma "CA, 10702" "The dwelling unit is located in CA, the NHGIS PUMA code is 10702" +in.puma "CA, 10703" "The dwelling unit is located in CA, the NHGIS PUMA code is 10703" +in.puma "CA, 11101" "The dwelling unit is located in CA, the NHGIS PUMA code is 11101" +in.puma "CA, 11102" "The dwelling unit is located in CA, the NHGIS PUMA code is 11102" +in.puma "CA, 11103" "The dwelling unit is located in CA, the NHGIS PUMA code is 11103" +in.puma "CA, 11104" "The dwelling unit is located in CA, the NHGIS PUMA code is 11104" +in.puma "CA, 11105" "The dwelling unit is located in CA, the NHGIS PUMA code is 11105" +in.puma "CA, 11106" "The dwelling unit is located in CA, the NHGIS PUMA code is 11106" +in.puma "CA, 11300" "The dwelling unit is located in CA, the NHGIS PUMA code is 11300" +in.puma "CO, 00100" "The dwelling unit is located in CO, the NHGIS PUMA code is 00100" +in.puma "CO, 00102" "The dwelling unit is located in CO, the NHGIS PUMA code is 00102" +in.puma "CO, 00103" "The dwelling unit is located in CO, the NHGIS PUMA code is 00103" +in.puma "CO, 00200" "The dwelling unit is located in CO, the NHGIS PUMA code is 00200" +in.puma "CO, 00300" "The dwelling unit is located in CO, the NHGIS PUMA code is 00300" +in.puma "CO, 00400" "The dwelling unit is located in CO, the NHGIS PUMA code is 00400" +in.puma "CO, 00600" "The dwelling unit is located in CO, the NHGIS PUMA code is 00600" +in.puma "CO, 00700" "The dwelling unit is located in CO, the NHGIS PUMA code is 00700" +in.puma "CO, 00800" "The dwelling unit is located in CO, the NHGIS PUMA code is 00800" +in.puma "CO, 00801" "The dwelling unit is located in CO, the NHGIS PUMA code is 00801" +in.puma "CO, 00802" "The dwelling unit is located in CO, the NHGIS PUMA code is 00802" +in.puma "CO, 00803" "The dwelling unit is located in CO, the NHGIS PUMA code is 00803" +in.puma "CO, 00804" "The dwelling unit is located in CO, the NHGIS PUMA code is 00804" +in.puma "CO, 00805" "The dwelling unit is located in CO, the NHGIS PUMA code is 00805" +in.puma "CO, 00806" "The dwelling unit is located in CO, the NHGIS PUMA code is 00806" +in.puma "CO, 00807" "The dwelling unit is located in CO, the NHGIS PUMA code is 00807" +in.puma "CO, 00808" "The dwelling unit is located in CO, the NHGIS PUMA code is 00808" +in.puma "CO, 00809" "The dwelling unit is located in CO, the NHGIS PUMA code is 00809" +in.puma "CO, 00810" "The dwelling unit is located in CO, the NHGIS PUMA code is 00810" +in.puma "CO, 00811" "The dwelling unit is located in CO, the NHGIS PUMA code is 00811" +in.puma "CO, 00812" "The dwelling unit is located in CO, the NHGIS PUMA code is 00812" +in.puma "CO, 00813" "The dwelling unit is located in CO, the NHGIS PUMA code is 00813" +in.puma "CO, 00814" "The dwelling unit is located in CO, the NHGIS PUMA code is 00814" +in.puma "CO, 00815" "The dwelling unit is located in CO, the NHGIS PUMA code is 00815" +in.puma "CO, 00816" "The dwelling unit is located in CO, the NHGIS PUMA code is 00816" +in.puma "CO, 00817" "The dwelling unit is located in CO, the NHGIS PUMA code is 00817" +in.puma "CO, 00818" "The dwelling unit is located in CO, the NHGIS PUMA code is 00818" +in.puma "CO, 00819" "The dwelling unit is located in CO, the NHGIS PUMA code is 00819" +in.puma "CO, 00820" "The dwelling unit is located in CO, the NHGIS PUMA code is 00820" +in.puma "CO, 00821" "The dwelling unit is located in CO, the NHGIS PUMA code is 00821" +in.puma "CO, 00822" "The dwelling unit is located in CO, the NHGIS PUMA code is 00822" +in.puma "CO, 00823" "The dwelling unit is located in CO, the NHGIS PUMA code is 00823" +in.puma "CO, 00824" "The dwelling unit is located in CO, the NHGIS PUMA code is 00824" +in.puma "CO, 00900" "The dwelling unit is located in CO, the NHGIS PUMA code is 00900" +in.puma "CO, 01001" "The dwelling unit is located in CO, the NHGIS PUMA code is 01001" +in.puma "CO, 01002" "The dwelling unit is located in CO, the NHGIS PUMA code is 01002" +in.puma "CO, 04101" "The dwelling unit is located in CO, the NHGIS PUMA code is 04101" +in.puma "CO, 04102" "The dwelling unit is located in CO, the NHGIS PUMA code is 04102" +in.puma "CO, 04103" "The dwelling unit is located in CO, the NHGIS PUMA code is 04103" +in.puma "CO, 04104" "The dwelling unit is located in CO, the NHGIS PUMA code is 04104" +in.puma "CO, 04105" "The dwelling unit is located in CO, the NHGIS PUMA code is 04105" +in.puma "CO, 04106" "The dwelling unit is located in CO, the NHGIS PUMA code is 04106" +in.puma "CT, 00100" "The dwelling unit is located in CT, the NHGIS PUMA code is 00100" +in.puma "CT, 00101" "The dwelling unit is located in CT, the NHGIS PUMA code is 00101" +in.puma "CT, 00102" "The dwelling unit is located in CT, the NHGIS PUMA code is 00102" +in.puma "CT, 00103" "The dwelling unit is located in CT, the NHGIS PUMA code is 00103" +in.puma "CT, 00104" "The dwelling unit is located in CT, the NHGIS PUMA code is 00104" +in.puma "CT, 00105" "The dwelling unit is located in CT, the NHGIS PUMA code is 00105" +in.puma "CT, 00300" "The dwelling unit is located in CT, the NHGIS PUMA code is 00300" +in.puma "CT, 00301" "The dwelling unit is located in CT, the NHGIS PUMA code is 00301" +in.puma "CT, 00302" "The dwelling unit is located in CT, the NHGIS PUMA code is 00302" +in.puma "CT, 00303" "The dwelling unit is located in CT, the NHGIS PUMA code is 00303" +in.puma "CT, 00304" "The dwelling unit is located in CT, the NHGIS PUMA code is 00304" +in.puma "CT, 00305" "The dwelling unit is located in CT, the NHGIS PUMA code is 00305" +in.puma "CT, 00306" "The dwelling unit is located in CT, the NHGIS PUMA code is 00306" +in.puma "CT, 00500" "The dwelling unit is located in CT, the NHGIS PUMA code is 00500" +in.puma "CT, 00700" "The dwelling unit is located in CT, the NHGIS PUMA code is 00700" +in.puma "CT, 00900" "The dwelling unit is located in CT, the NHGIS PUMA code is 00900" +in.puma "CT, 00901" "The dwelling unit is located in CT, the NHGIS PUMA code is 00901" +in.puma "CT, 00902" "The dwelling unit is located in CT, the NHGIS PUMA code is 00902" +in.puma "CT, 00903" "The dwelling unit is located in CT, the NHGIS PUMA code is 00903" +in.puma "CT, 00904" "The dwelling unit is located in CT, the NHGIS PUMA code is 00904" +in.puma "CT, 00905" "The dwelling unit is located in CT, the NHGIS PUMA code is 00905" +in.puma "CT, 00906" "The dwelling unit is located in CT, the NHGIS PUMA code is 00906" +in.puma "CT, 01100" "The dwelling unit is located in CT, the NHGIS PUMA code is 01100" +in.puma "CT, 01101" "The dwelling unit is located in CT, the NHGIS PUMA code is 01101" +in.puma "CT, 01300" "The dwelling unit is located in CT, the NHGIS PUMA code is 01300" +in.puma "CT, 01500" "The dwelling unit is located in CT, the NHGIS PUMA code is 01500" +in.puma "DC, 00101" "The dwelling unit is located in DC, the NHGIS PUMA code is 00101" +in.puma "DC, 00102" "The dwelling unit is located in DC, the NHGIS PUMA code is 00102" +in.puma "DC, 00103" "The dwelling unit is located in DC, the NHGIS PUMA code is 00103" +in.puma "DC, 00104" "The dwelling unit is located in DC, the NHGIS PUMA code is 00104" +in.puma "DC, 00105" "The dwelling unit is located in DC, the NHGIS PUMA code is 00105" +in.puma "DE, 00101" "The dwelling unit is located in DE, the NHGIS PUMA code is 00101" +in.puma "DE, 00102" "The dwelling unit is located in DE, the NHGIS PUMA code is 00102" +in.puma "DE, 00103" "The dwelling unit is located in DE, the NHGIS PUMA code is 00103" +in.puma "DE, 00104" "The dwelling unit is located in DE, the NHGIS PUMA code is 00104" +in.puma "DE, 00200" "The dwelling unit is located in DE, the NHGIS PUMA code is 00200" +in.puma "DE, 00300" "The dwelling unit is located in DE, the NHGIS PUMA code is 00300" +in.puma "FL, 00101" "The dwelling unit is located in FL, the NHGIS PUMA code is 00101" +in.puma "FL, 00102" "The dwelling unit is located in FL, the NHGIS PUMA code is 00102" +in.puma "FL, 00500" "The dwelling unit is located in FL, the NHGIS PUMA code is 00500" +in.puma "FL, 00901" "The dwelling unit is located in FL, the NHGIS PUMA code is 00901" +in.puma "FL, 00902" "The dwelling unit is located in FL, the NHGIS PUMA code is 00902" +in.puma "FL, 00903" "The dwelling unit is located in FL, the NHGIS PUMA code is 00903" +in.puma "FL, 00904" "The dwelling unit is located in FL, the NHGIS PUMA code is 00904" +in.puma "FL, 01101" "The dwelling unit is located in FL, the NHGIS PUMA code is 01101" +in.puma "FL, 01102" "The dwelling unit is located in FL, the NHGIS PUMA code is 01102" +in.puma "FL, 01103" "The dwelling unit is located in FL, the NHGIS PUMA code is 01103" +in.puma "FL, 01104" "The dwelling unit is located in FL, the NHGIS PUMA code is 01104" +in.puma "FL, 01105" "The dwelling unit is located in FL, the NHGIS PUMA code is 01105" +in.puma "FL, 01106" "The dwelling unit is located in FL, the NHGIS PUMA code is 01106" +in.puma "FL, 01107" "The dwelling unit is located in FL, the NHGIS PUMA code is 01107" +in.puma "FL, 01108" "The dwelling unit is located in FL, the NHGIS PUMA code is 01108" +in.puma "FL, 01109" "The dwelling unit is located in FL, the NHGIS PUMA code is 01109" +in.puma "FL, 01110" "The dwelling unit is located in FL, the NHGIS PUMA code is 01110" +in.puma "FL, 01111" "The dwelling unit is located in FL, the NHGIS PUMA code is 01111" +in.puma "FL, 01112" "The dwelling unit is located in FL, the NHGIS PUMA code is 01112" +in.puma "FL, 01113" "The dwelling unit is located in FL, the NHGIS PUMA code is 01113" +in.puma "FL, 01114" "The dwelling unit is located in FL, the NHGIS PUMA code is 01114" +in.puma "FL, 01500" "The dwelling unit is located in FL, the NHGIS PUMA code is 01500" +in.puma "FL, 01701" "The dwelling unit is located in FL, the NHGIS PUMA code is 01701" +in.puma "FL, 01900" "The dwelling unit is located in FL, the NHGIS PUMA code is 01900" +in.puma "FL, 02101" "The dwelling unit is located in FL, the NHGIS PUMA code is 02101" +in.puma "FL, 02102" "The dwelling unit is located in FL, the NHGIS PUMA code is 02102" +in.puma "FL, 02103" "The dwelling unit is located in FL, the NHGIS PUMA code is 02103" +in.puma "FL, 02300" "The dwelling unit is located in FL, the NHGIS PUMA code is 02300" +in.puma "FL, 02700" "The dwelling unit is located in FL, the NHGIS PUMA code is 02700" +in.puma "FL, 03101" "The dwelling unit is located in FL, the NHGIS PUMA code is 03101" +in.puma "FL, 03102" "The dwelling unit is located in FL, the NHGIS PUMA code is 03102" +in.puma "FL, 03103" "The dwelling unit is located in FL, the NHGIS PUMA code is 03103" +in.puma "FL, 03104" "The dwelling unit is located in FL, the NHGIS PUMA code is 03104" +in.puma "FL, 03105" "The dwelling unit is located in FL, the NHGIS PUMA code is 03105" +in.puma "FL, 03106" "The dwelling unit is located in FL, the NHGIS PUMA code is 03106" +in.puma "FL, 03107" "The dwelling unit is located in FL, the NHGIS PUMA code is 03107" +in.puma "FL, 03301" "The dwelling unit is located in FL, the NHGIS PUMA code is 03301" +in.puma "FL, 03302" "The dwelling unit is located in FL, the NHGIS PUMA code is 03302" +in.puma "FL, 03500" "The dwelling unit is located in FL, the NHGIS PUMA code is 03500" +in.puma "FL, 05301" "The dwelling unit is located in FL, the NHGIS PUMA code is 05301" +in.puma "FL, 05701" "The dwelling unit is located in FL, the NHGIS PUMA code is 05701" +in.puma "FL, 05702" "The dwelling unit is located in FL, the NHGIS PUMA code is 05702" +in.puma "FL, 05703" "The dwelling unit is located in FL, the NHGIS PUMA code is 05703" +in.puma "FL, 05704" "The dwelling unit is located in FL, the NHGIS PUMA code is 05704" +in.puma "FL, 05705" "The dwelling unit is located in FL, the NHGIS PUMA code is 05705" +in.puma "FL, 05706" "The dwelling unit is located in FL, the NHGIS PUMA code is 05706" +in.puma "FL, 05707" "The dwelling unit is located in FL, the NHGIS PUMA code is 05707" +in.puma "FL, 05708" "The dwelling unit is located in FL, the NHGIS PUMA code is 05708" +in.puma "FL, 06100" "The dwelling unit is located in FL, the NHGIS PUMA code is 06100" +in.puma "FL, 06300" "The dwelling unit is located in FL, the NHGIS PUMA code is 06300" +in.puma "FL, 06901" "The dwelling unit is located in FL, the NHGIS PUMA code is 06901" +in.puma "FL, 06902" "The dwelling unit is located in FL, the NHGIS PUMA code is 06902" +in.puma "FL, 06903" "The dwelling unit is located in FL, the NHGIS PUMA code is 06903" +in.puma "FL, 07101" "The dwelling unit is located in FL, the NHGIS PUMA code is 07101" +in.puma "FL, 07102" "The dwelling unit is located in FL, the NHGIS PUMA code is 07102" +in.puma "FL, 07103" "The dwelling unit is located in FL, the NHGIS PUMA code is 07103" +in.puma "FL, 07104" "The dwelling unit is located in FL, the NHGIS PUMA code is 07104" +in.puma "FL, 07105" "The dwelling unit is located in FL, the NHGIS PUMA code is 07105" +in.puma "FL, 07300" "The dwelling unit is located in FL, the NHGIS PUMA code is 07300" +in.puma "FL, 07301" "The dwelling unit is located in FL, the NHGIS PUMA code is 07301" +in.puma "FL, 08101" "The dwelling unit is located in FL, the NHGIS PUMA code is 08101" +in.puma "FL, 08102" "The dwelling unit is located in FL, the NHGIS PUMA code is 08102" +in.puma "FL, 08103" "The dwelling unit is located in FL, the NHGIS PUMA code is 08103" +in.puma "FL, 08301" "The dwelling unit is located in FL, the NHGIS PUMA code is 08301" +in.puma "FL, 08302" "The dwelling unit is located in FL, the NHGIS PUMA code is 08302" +in.puma "FL, 08303" "The dwelling unit is located in FL, the NHGIS PUMA code is 08303" +in.puma "FL, 08500" "The dwelling unit is located in FL, the NHGIS PUMA code is 08500" +in.puma "FL, 08601" "The dwelling unit is located in FL, the NHGIS PUMA code is 08601" +in.puma "FL, 08602" "The dwelling unit is located in FL, the NHGIS PUMA code is 08602" +in.puma "FL, 08603" "The dwelling unit is located in FL, the NHGIS PUMA code is 08603" +in.puma "FL, 08604" "The dwelling unit is located in FL, the NHGIS PUMA code is 08604" +in.puma "FL, 08605" "The dwelling unit is located in FL, the NHGIS PUMA code is 08605" +in.puma "FL, 08606" "The dwelling unit is located in FL, the NHGIS PUMA code is 08606" +in.puma "FL, 08607" "The dwelling unit is located in FL, the NHGIS PUMA code is 08607" +in.puma "FL, 08608" "The dwelling unit is located in FL, the NHGIS PUMA code is 08608" +in.puma "FL, 08609" "The dwelling unit is located in FL, the NHGIS PUMA code is 08609" +in.puma "FL, 08610" "The dwelling unit is located in FL, the NHGIS PUMA code is 08610" +in.puma "FL, 08611" "The dwelling unit is located in FL, the NHGIS PUMA code is 08611" +in.puma "FL, 08612" "The dwelling unit is located in FL, the NHGIS PUMA code is 08612" +in.puma "FL, 08613" "The dwelling unit is located in FL, the NHGIS PUMA code is 08613" +in.puma "FL, 08614" "The dwelling unit is located in FL, the NHGIS PUMA code is 08614" +in.puma "FL, 08615" "The dwelling unit is located in FL, the NHGIS PUMA code is 08615" +in.puma "FL, 08616" "The dwelling unit is located in FL, the NHGIS PUMA code is 08616" +in.puma "FL, 08617" "The dwelling unit is located in FL, the NHGIS PUMA code is 08617" +in.puma "FL, 08618" "The dwelling unit is located in FL, the NHGIS PUMA code is 08618" +in.puma "FL, 08619" "The dwelling unit is located in FL, the NHGIS PUMA code is 08619" +in.puma "FL, 08620" "The dwelling unit is located in FL, the NHGIS PUMA code is 08620" +in.puma "FL, 08621" "The dwelling unit is located in FL, the NHGIS PUMA code is 08621" +in.puma "FL, 08622" "The dwelling unit is located in FL, the NHGIS PUMA code is 08622" +in.puma "FL, 08623" "The dwelling unit is located in FL, the NHGIS PUMA code is 08623" +in.puma "FL, 08624" "The dwelling unit is located in FL, the NHGIS PUMA code is 08624" +in.puma "FL, 08700" "The dwelling unit is located in FL, the NHGIS PUMA code is 08700" +in.puma "FL, 08900" "The dwelling unit is located in FL, the NHGIS PUMA code is 08900" +in.puma "FL, 09100" "The dwelling unit is located in FL, the NHGIS PUMA code is 09100" +in.puma "FL, 09300" "The dwelling unit is located in FL, the NHGIS PUMA code is 09300" +in.puma "FL, 09501" "The dwelling unit is located in FL, the NHGIS PUMA code is 09501" +in.puma "FL, 09502" "The dwelling unit is located in FL, the NHGIS PUMA code is 09502" +in.puma "FL, 09503" "The dwelling unit is located in FL, the NHGIS PUMA code is 09503" +in.puma "FL, 09504" "The dwelling unit is located in FL, the NHGIS PUMA code is 09504" +in.puma "FL, 09505" "The dwelling unit is located in FL, the NHGIS PUMA code is 09505" +in.puma "FL, 09506" "The dwelling unit is located in FL, the NHGIS PUMA code is 09506" +in.puma "FL, 09507" "The dwelling unit is located in FL, the NHGIS PUMA code is 09507" +in.puma "FL, 09508" "The dwelling unit is located in FL, the NHGIS PUMA code is 09508" +in.puma "FL, 09509" "The dwelling unit is located in FL, the NHGIS PUMA code is 09509" +in.puma "FL, 09510" "The dwelling unit is located in FL, the NHGIS PUMA code is 09510" +in.puma "FL, 09701" "The dwelling unit is located in FL, the NHGIS PUMA code is 09701" +in.puma "FL, 09702" "The dwelling unit is located in FL, the NHGIS PUMA code is 09702" +in.puma "FL, 09901" "The dwelling unit is located in FL, the NHGIS PUMA code is 09901" +in.puma "FL, 09902" "The dwelling unit is located in FL, the NHGIS PUMA code is 09902" +in.puma "FL, 09903" "The dwelling unit is located in FL, the NHGIS PUMA code is 09903" +in.puma "FL, 09904" "The dwelling unit is located in FL, the NHGIS PUMA code is 09904" +in.puma "FL, 09905" "The dwelling unit is located in FL, the NHGIS PUMA code is 09905" +in.puma "FL, 09906" "The dwelling unit is located in FL, the NHGIS PUMA code is 09906" +in.puma "FL, 09907" "The dwelling unit is located in FL, the NHGIS PUMA code is 09907" +in.puma "FL, 09908" "The dwelling unit is located in FL, the NHGIS PUMA code is 09908" +in.puma "FL, 09909" "The dwelling unit is located in FL, the NHGIS PUMA code is 09909" +in.puma "FL, 09910" "The dwelling unit is located in FL, the NHGIS PUMA code is 09910" +in.puma "FL, 09911" "The dwelling unit is located in FL, the NHGIS PUMA code is 09911" +in.puma "FL, 10101" "The dwelling unit is located in FL, the NHGIS PUMA code is 10101" +in.puma "FL, 10102" "The dwelling unit is located in FL, the NHGIS PUMA code is 10102" +in.puma "FL, 10103" "The dwelling unit is located in FL, the NHGIS PUMA code is 10103" +in.puma "FL, 10104" "The dwelling unit is located in FL, the NHGIS PUMA code is 10104" +in.puma "FL, 10301" "The dwelling unit is located in FL, the NHGIS PUMA code is 10301" +in.puma "FL, 10302" "The dwelling unit is located in FL, the NHGIS PUMA code is 10302" +in.puma "FL, 10303" "The dwelling unit is located in FL, the NHGIS PUMA code is 10303" +in.puma "FL, 10304" "The dwelling unit is located in FL, the NHGIS PUMA code is 10304" +in.puma "FL, 10305" "The dwelling unit is located in FL, the NHGIS PUMA code is 10305" +in.puma "FL, 10306" "The dwelling unit is located in FL, the NHGIS PUMA code is 10306" +in.puma "FL, 10307" "The dwelling unit is located in FL, the NHGIS PUMA code is 10307" +in.puma "FL, 10308" "The dwelling unit is located in FL, the NHGIS PUMA code is 10308" +in.puma "FL, 10501" "The dwelling unit is located in FL, the NHGIS PUMA code is 10501" +in.puma "FL, 10502" "The dwelling unit is located in FL, the NHGIS PUMA code is 10502" +in.puma "FL, 10503" "The dwelling unit is located in FL, the NHGIS PUMA code is 10503" +in.puma "FL, 10504" "The dwelling unit is located in FL, the NHGIS PUMA code is 10504" +in.puma "FL, 10700" "The dwelling unit is located in FL, the NHGIS PUMA code is 10700" +in.puma "FL, 10900" "The dwelling unit is located in FL, the NHGIS PUMA code is 10900" +in.puma "FL, 11101" "The dwelling unit is located in FL, the NHGIS PUMA code is 11101" +in.puma "FL, 11102" "The dwelling unit is located in FL, the NHGIS PUMA code is 11102" +in.puma "FL, 11300" "The dwelling unit is located in FL, the NHGIS PUMA code is 11300" +in.puma "FL, 11501" "The dwelling unit is located in FL, the NHGIS PUMA code is 11501" +in.puma "FL, 11502" "The dwelling unit is located in FL, the NHGIS PUMA code is 11502" +in.puma "FL, 11503" "The dwelling unit is located in FL, the NHGIS PUMA code is 11503" +in.puma "FL, 11701" "The dwelling unit is located in FL, the NHGIS PUMA code is 11701" +in.puma "FL, 11702" "The dwelling unit is located in FL, the NHGIS PUMA code is 11702" +in.puma "FL, 11703" "The dwelling unit is located in FL, the NHGIS PUMA code is 11703" +in.puma "FL, 11704" "The dwelling unit is located in FL, the NHGIS PUMA code is 11704" +in.puma "FL, 12100" "The dwelling unit is located in FL, the NHGIS PUMA code is 12100" +in.puma "FL, 12701" "The dwelling unit is located in FL, the NHGIS PUMA code is 12701" +in.puma "FL, 12702" "The dwelling unit is located in FL, the NHGIS PUMA code is 12702" +in.puma "FL, 12703" "The dwelling unit is located in FL, the NHGIS PUMA code is 12703" +in.puma "FL, 12704" "The dwelling unit is located in FL, the NHGIS PUMA code is 12704" +in.puma "GA, 00100" "The dwelling unit is located in GA, the NHGIS PUMA code is 00100" +in.puma "GA, 00200" "The dwelling unit is located in GA, the NHGIS PUMA code is 00200" +in.puma "GA, 00300" "The dwelling unit is located in GA, the NHGIS PUMA code is 00300" +in.puma "GA, 00401" "The dwelling unit is located in GA, the NHGIS PUMA code is 00401" +in.puma "GA, 00402" "The dwelling unit is located in GA, the NHGIS PUMA code is 00402" +in.puma "GA, 00500" "The dwelling unit is located in GA, the NHGIS PUMA code is 00500" +in.puma "GA, 00600" "The dwelling unit is located in GA, the NHGIS PUMA code is 00600" +in.puma "GA, 00700" "The dwelling unit is located in GA, the NHGIS PUMA code is 00700" +in.puma "GA, 00800" "The dwelling unit is located in GA, the NHGIS PUMA code is 00800" +in.puma "GA, 00900" "The dwelling unit is located in GA, the NHGIS PUMA code is 00900" +in.puma "GA, 01001" "The dwelling unit is located in GA, the NHGIS PUMA code is 01001" +in.puma "GA, 01002" "The dwelling unit is located in GA, the NHGIS PUMA code is 01002" +in.puma "GA, 01003" "The dwelling unit is located in GA, the NHGIS PUMA code is 01003" +in.puma "GA, 01004" "The dwelling unit is located in GA, the NHGIS PUMA code is 01004" +in.puma "GA, 01005" "The dwelling unit is located in GA, the NHGIS PUMA code is 01005" +in.puma "GA, 01006" "The dwelling unit is located in GA, the NHGIS PUMA code is 01006" +in.puma "GA, 01007" "The dwelling unit is located in GA, the NHGIS PUMA code is 01007" +in.puma "GA, 01008" "The dwelling unit is located in GA, the NHGIS PUMA code is 01008" +in.puma "GA, 01100" "The dwelling unit is located in GA, the NHGIS PUMA code is 01100" +in.puma "GA, 01200" "The dwelling unit is located in GA, the NHGIS PUMA code is 01200" +in.puma "GA, 01300" "The dwelling unit is located in GA, the NHGIS PUMA code is 01300" +in.puma "GA, 01400" "The dwelling unit is located in GA, the NHGIS PUMA code is 01400" +in.puma "GA, 01500" "The dwelling unit is located in GA, the NHGIS PUMA code is 01500" +in.puma "GA, 01600" "The dwelling unit is located in GA, the NHGIS PUMA code is 01600" +in.puma "GA, 01700" "The dwelling unit is located in GA, the NHGIS PUMA code is 01700" +in.puma "GA, 01800" "The dwelling unit is located in GA, the NHGIS PUMA code is 01800" +in.puma "GA, 01900" "The dwelling unit is located in GA, the NHGIS PUMA code is 01900" +in.puma "GA, 02001" "The dwelling unit is located in GA, the NHGIS PUMA code is 02001" +in.puma "GA, 02002" "The dwelling unit is located in GA, the NHGIS PUMA code is 02002" +in.puma "GA, 02003" "The dwelling unit is located in GA, the NHGIS PUMA code is 02003" +in.puma "GA, 02004" "The dwelling unit is located in GA, the NHGIS PUMA code is 02004" +in.puma "GA, 02100" "The dwelling unit is located in GA, the NHGIS PUMA code is 02100" +in.puma "GA, 02200" "The dwelling unit is located in GA, the NHGIS PUMA code is 02200" +in.puma "GA, 02300" "The dwelling unit is located in GA, the NHGIS PUMA code is 02300" +in.puma "GA, 02400" "The dwelling unit is located in GA, the NHGIS PUMA code is 02400" +in.puma "GA, 02500" "The dwelling unit is located in GA, the NHGIS PUMA code is 02500" +in.puma "GA, 02600" "The dwelling unit is located in GA, the NHGIS PUMA code is 02600" +in.puma "GA, 02700" "The dwelling unit is located in GA, the NHGIS PUMA code is 02700" +in.puma "GA, 02800" "The dwelling unit is located in GA, the NHGIS PUMA code is 02800" +in.puma "GA, 02900" "The dwelling unit is located in GA, the NHGIS PUMA code is 02900" +in.puma "GA, 03001" "The dwelling unit is located in GA, the NHGIS PUMA code is 03001" +in.puma "GA, 03002" "The dwelling unit is located in GA, the NHGIS PUMA code is 03002" +in.puma "GA, 03003" "The dwelling unit is located in GA, the NHGIS PUMA code is 03003" +in.puma "GA, 03004" "The dwelling unit is located in GA, the NHGIS PUMA code is 03004" +in.puma "GA, 03005" "The dwelling unit is located in GA, the NHGIS PUMA code is 03005" +in.puma "GA, 03101" "The dwelling unit is located in GA, the NHGIS PUMA code is 03101" +in.puma "GA, 03102" "The dwelling unit is located in GA, the NHGIS PUMA code is 03102" +in.puma "GA, 03200" "The dwelling unit is located in GA, the NHGIS PUMA code is 03200" +in.puma "GA, 03300" "The dwelling unit is located in GA, the NHGIS PUMA code is 03300" +in.puma "GA, 03400" "The dwelling unit is located in GA, the NHGIS PUMA code is 03400" +in.puma "GA, 03500" "The dwelling unit is located in GA, the NHGIS PUMA code is 03500" +in.puma "GA, 03600" "The dwelling unit is located in GA, the NHGIS PUMA code is 03600" +in.puma "GA, 03700" "The dwelling unit is located in GA, the NHGIS PUMA code is 03700" +in.puma "GA, 03800" "The dwelling unit is located in GA, the NHGIS PUMA code is 03800" +in.puma "GA, 03900" "The dwelling unit is located in GA, the NHGIS PUMA code is 03900" +in.puma "GA, 04000" "The dwelling unit is located in GA, the NHGIS PUMA code is 04000" +in.puma "GA, 04001" "The dwelling unit is located in GA, the NHGIS PUMA code is 04001" +in.puma "GA, 04002" "The dwelling unit is located in GA, the NHGIS PUMA code is 04002" +in.puma "GA, 04003" "The dwelling unit is located in GA, the NHGIS PUMA code is 04003" +in.puma "GA, 04004" "The dwelling unit is located in GA, the NHGIS PUMA code is 04004" +in.puma "GA, 04005" "The dwelling unit is located in GA, the NHGIS PUMA code is 04005" +in.puma "GA, 04006" "The dwelling unit is located in GA, the NHGIS PUMA code is 04006" +in.puma "GA, 04100" "The dwelling unit is located in GA, the NHGIS PUMA code is 04100" +in.puma "GA, 04200" "The dwelling unit is located in GA, the NHGIS PUMA code is 04200" +in.puma "GA, 04300" "The dwelling unit is located in GA, the NHGIS PUMA code is 04300" +in.puma "GA, 04400" "The dwelling unit is located in GA, the NHGIS PUMA code is 04400" +in.puma "GA, 04500" "The dwelling unit is located in GA, the NHGIS PUMA code is 04500" +in.puma "GA, 04600" "The dwelling unit is located in GA, the NHGIS PUMA code is 04600" +in.puma "GA, 05001" "The dwelling unit is located in GA, the NHGIS PUMA code is 05001" +in.puma "GA, 05002" "The dwelling unit is located in GA, the NHGIS PUMA code is 05002" +in.puma "GA, 06001" "The dwelling unit is located in GA, the NHGIS PUMA code is 06001" +in.puma "GA, 06002" "The dwelling unit is located in GA, the NHGIS PUMA code is 06002" +in.puma "HI, 00100" "The dwelling unit is located in HI, the NHGIS PUMA code is 00100" +in.puma "HI, 00200" "The dwelling unit is located in HI, the NHGIS PUMA code is 00200" +in.puma "HI, 00301" "The dwelling unit is located in HI, the NHGIS PUMA code is 00301" +in.puma "HI, 00302" "The dwelling unit is located in HI, the NHGIS PUMA code is 00302" +in.puma "HI, 00303" "The dwelling unit is located in HI, the NHGIS PUMA code is 00303" +in.puma "HI, 00304" "The dwelling unit is located in HI, the NHGIS PUMA code is 00304" +in.puma "HI, 00305" "The dwelling unit is located in HI, the NHGIS PUMA code is 00305" +in.puma "HI, 00306" "The dwelling unit is located in HI, the NHGIS PUMA code is 00306" +in.puma "HI, 00307" "The dwelling unit is located in HI, the NHGIS PUMA code is 00307" +in.puma "HI, 00308" "The dwelling unit is located in HI, the NHGIS PUMA code is 00308" +in.puma "IA, 00100" "The dwelling unit is located in IA, the NHGIS PUMA code is 00100" +in.puma "IA, 00200" "The dwelling unit is located in IA, the NHGIS PUMA code is 00200" +in.puma "IA, 00400" "The dwelling unit is located in IA, the NHGIS PUMA code is 00400" +in.puma "IA, 00500" "The dwelling unit is located in IA, the NHGIS PUMA code is 00500" +in.puma "IA, 00600" "The dwelling unit is located in IA, the NHGIS PUMA code is 00600" +in.puma "IA, 00700" "The dwelling unit is located in IA, the NHGIS PUMA code is 00700" +in.puma "IA, 00800" "The dwelling unit is located in IA, the NHGIS PUMA code is 00800" +in.puma "IA, 00900" "The dwelling unit is located in IA, the NHGIS PUMA code is 00900" +in.puma "IA, 01000" "The dwelling unit is located in IA, the NHGIS PUMA code is 01000" +in.puma "IA, 01100" "The dwelling unit is located in IA, the NHGIS PUMA code is 01100" +in.puma "IA, 01200" "The dwelling unit is located in IA, the NHGIS PUMA code is 01200" +in.puma "IA, 01300" "The dwelling unit is located in IA, the NHGIS PUMA code is 01300" +in.puma "IA, 01400" "The dwelling unit is located in IA, the NHGIS PUMA code is 01400" +in.puma "IA, 01500" "The dwelling unit is located in IA, the NHGIS PUMA code is 01500" +in.puma "IA, 01600" "The dwelling unit is located in IA, the NHGIS PUMA code is 01600" +in.puma "IA, 01700" "The dwelling unit is located in IA, the NHGIS PUMA code is 01700" +in.puma "IA, 01800" "The dwelling unit is located in IA, the NHGIS PUMA code is 01800" +in.puma "IA, 01900" "The dwelling unit is located in IA, the NHGIS PUMA code is 01900" +in.puma "IA, 02000" "The dwelling unit is located in IA, the NHGIS PUMA code is 02000" +in.puma "IA, 02100" "The dwelling unit is located in IA, the NHGIS PUMA code is 02100" +in.puma "IA, 02200" "The dwelling unit is located in IA, the NHGIS PUMA code is 02200" +in.puma "IA, 02300" "The dwelling unit is located in IA, the NHGIS PUMA code is 02300" +in.puma "ID, 00100" "The dwelling unit is located in ID, the NHGIS PUMA code is 00100" +in.puma "ID, 00200" "The dwelling unit is located in ID, the NHGIS PUMA code is 00200" +in.puma "ID, 00300" "The dwelling unit is located in ID, the NHGIS PUMA code is 00300" +in.puma "ID, 00400" "The dwelling unit is located in ID, the NHGIS PUMA code is 00400" +in.puma "ID, 00500" "The dwelling unit is located in ID, the NHGIS PUMA code is 00500" +in.puma "ID, 00600" "The dwelling unit is located in ID, the NHGIS PUMA code is 00600" +in.puma "ID, 00701" "The dwelling unit is located in ID, the NHGIS PUMA code is 00701" +in.puma "ID, 00702" "The dwelling unit is located in ID, the NHGIS PUMA code is 00702" +in.puma "ID, 00800" "The dwelling unit is located in ID, the NHGIS PUMA code is 00800" +in.puma "ID, 00900" "The dwelling unit is located in ID, the NHGIS PUMA code is 00900" +in.puma "ID, 01000" "The dwelling unit is located in ID, the NHGIS PUMA code is 01000" +in.puma "ID, 01100" "The dwelling unit is located in ID, the NHGIS PUMA code is 01100" +in.puma "ID, 01200" "The dwelling unit is located in ID, the NHGIS PUMA code is 01200" +in.puma "ID, 01300" "The dwelling unit is located in ID, the NHGIS PUMA code is 01300" +in.puma "IL, 00104" "The dwelling unit is located in IL, the NHGIS PUMA code is 00104" +in.puma "IL, 00105" "The dwelling unit is located in IL, the NHGIS PUMA code is 00105" +in.puma "IL, 00202" "The dwelling unit is located in IL, the NHGIS PUMA code is 00202" +in.puma "IL, 00300" "The dwelling unit is located in IL, the NHGIS PUMA code is 00300" +in.puma "IL, 00401" "The dwelling unit is located in IL, the NHGIS PUMA code is 00401" +in.puma "IL, 00501" "The dwelling unit is located in IL, the NHGIS PUMA code is 00501" +in.puma "IL, 00600" "The dwelling unit is located in IL, the NHGIS PUMA code is 00600" +in.puma "IL, 00700" "The dwelling unit is located in IL, the NHGIS PUMA code is 00700" +in.puma "IL, 00800" "The dwelling unit is located in IL, the NHGIS PUMA code is 00800" +in.puma "IL, 00900" "The dwelling unit is located in IL, the NHGIS PUMA code is 00900" +in.puma "IL, 01001" "The dwelling unit is located in IL, the NHGIS PUMA code is 01001" +in.puma "IL, 01104" "The dwelling unit is located in IL, the NHGIS PUMA code is 01104" +in.puma "IL, 01105" "The dwelling unit is located in IL, the NHGIS PUMA code is 01105" +in.puma "IL, 01204" "The dwelling unit is located in IL, the NHGIS PUMA code is 01204" +in.puma "IL, 01205" "The dwelling unit is located in IL, the NHGIS PUMA code is 01205" +in.puma "IL, 01300" "The dwelling unit is located in IL, the NHGIS PUMA code is 01300" +in.puma "IL, 01500" "The dwelling unit is located in IL, the NHGIS PUMA code is 01500" +in.puma "IL, 01602" "The dwelling unit is located in IL, the NHGIS PUMA code is 01602" +in.puma "IL, 01701" "The dwelling unit is located in IL, the NHGIS PUMA code is 01701" +in.puma "IL, 01900" "The dwelling unit is located in IL, the NHGIS PUMA code is 01900" +in.puma "IL, 02000" "The dwelling unit is located in IL, the NHGIS PUMA code is 02000" +in.puma "IL, 02100" "The dwelling unit is located in IL, the NHGIS PUMA code is 02100" +in.puma "IL, 02200" "The dwelling unit is located in IL, the NHGIS PUMA code is 02200" +in.puma "IL, 02300" "The dwelling unit is located in IL, the NHGIS PUMA code is 02300" +in.puma "IL, 02400" "The dwelling unit is located in IL, the NHGIS PUMA code is 02400" +in.puma "IL, 02501" "The dwelling unit is located in IL, the NHGIS PUMA code is 02501" +in.puma "IL, 02601" "The dwelling unit is located in IL, the NHGIS PUMA code is 02601" +in.puma "IL, 02700" "The dwelling unit is located in IL, the NHGIS PUMA code is 02700" +in.puma "IL, 02801" "The dwelling unit is located in IL, the NHGIS PUMA code is 02801" +in.puma "IL, 02901" "The dwelling unit is located in IL, the NHGIS PUMA code is 02901" +in.puma "IL, 03005" "The dwelling unit is located in IL, the NHGIS PUMA code is 03005" +in.puma "IL, 03007" "The dwelling unit is located in IL, the NHGIS PUMA code is 03007" +in.puma "IL, 03008" "The dwelling unit is located in IL, the NHGIS PUMA code is 03008" +in.puma "IL, 03009" "The dwelling unit is located in IL, the NHGIS PUMA code is 03009" +in.puma "IL, 03102" "The dwelling unit is located in IL, the NHGIS PUMA code is 03102" +in.puma "IL, 03105" "The dwelling unit is located in IL, the NHGIS PUMA code is 03105" +in.puma "IL, 03106" "The dwelling unit is located in IL, the NHGIS PUMA code is 03106" +in.puma "IL, 03107" "The dwelling unit is located in IL, the NHGIS PUMA code is 03107" +in.puma "IL, 03108" "The dwelling unit is located in IL, the NHGIS PUMA code is 03108" +in.puma "IL, 03202" "The dwelling unit is located in IL, the NHGIS PUMA code is 03202" +in.puma "IL, 03203" "The dwelling unit is located in IL, the NHGIS PUMA code is 03203" +in.puma "IL, 03204" "The dwelling unit is located in IL, the NHGIS PUMA code is 03204" +in.puma "IL, 03205" "The dwelling unit is located in IL, the NHGIS PUMA code is 03205" +in.puma "IL, 03207" "The dwelling unit is located in IL, the NHGIS PUMA code is 03207" +in.puma "IL, 03208" "The dwelling unit is located in IL, the NHGIS PUMA code is 03208" +in.puma "IL, 03209" "The dwelling unit is located in IL, the NHGIS PUMA code is 03209" +in.puma "IL, 03306" "The dwelling unit is located in IL, the NHGIS PUMA code is 03306" +in.puma "IL, 03307" "The dwelling unit is located in IL, the NHGIS PUMA code is 03307" +in.puma "IL, 03308" "The dwelling unit is located in IL, the NHGIS PUMA code is 03308" +in.puma "IL, 03309" "The dwelling unit is located in IL, the NHGIS PUMA code is 03309" +in.puma "IL, 03310" "The dwelling unit is located in IL, the NHGIS PUMA code is 03310" +in.puma "IL, 03401" "The dwelling unit is located in IL, the NHGIS PUMA code is 03401" +in.puma "IL, 03407" "The dwelling unit is located in IL, the NHGIS PUMA code is 03407" +in.puma "IL, 03408" "The dwelling unit is located in IL, the NHGIS PUMA code is 03408" +in.puma "IL, 03409" "The dwelling unit is located in IL, the NHGIS PUMA code is 03409" +in.puma "IL, 03410" "The dwelling unit is located in IL, the NHGIS PUMA code is 03410" +in.puma "IL, 03411" "The dwelling unit is located in IL, the NHGIS PUMA code is 03411" +in.puma "IL, 03412" "The dwelling unit is located in IL, the NHGIS PUMA code is 03412" +in.puma "IL, 03413" "The dwelling unit is located in IL, the NHGIS PUMA code is 03413" +in.puma "IL, 03414" "The dwelling unit is located in IL, the NHGIS PUMA code is 03414" +in.puma "IL, 03415" "The dwelling unit is located in IL, the NHGIS PUMA code is 03415" +in.puma "IL, 03416" "The dwelling unit is located in IL, the NHGIS PUMA code is 03416" +in.puma "IL, 03417" "The dwelling unit is located in IL, the NHGIS PUMA code is 03417" +in.puma "IL, 03418" "The dwelling unit is located in IL, the NHGIS PUMA code is 03418" +in.puma "IL, 03419" "The dwelling unit is located in IL, the NHGIS PUMA code is 03419" +in.puma "IL, 03420" "The dwelling unit is located in IL, the NHGIS PUMA code is 03420" +in.puma "IL, 03421" "The dwelling unit is located in IL, the NHGIS PUMA code is 03421" +in.puma "IL, 03422" "The dwelling unit is located in IL, the NHGIS PUMA code is 03422" +in.puma "IL, 03501" "The dwelling unit is located in IL, the NHGIS PUMA code is 03501" +in.puma "IL, 03502" "The dwelling unit is located in IL, the NHGIS PUMA code is 03502" +in.puma "IL, 03503" "The dwelling unit is located in IL, the NHGIS PUMA code is 03503" +in.puma "IL, 03504" "The dwelling unit is located in IL, the NHGIS PUMA code is 03504" +in.puma "IL, 03520" "The dwelling unit is located in IL, the NHGIS PUMA code is 03520" +in.puma "IL, 03521" "The dwelling unit is located in IL, the NHGIS PUMA code is 03521" +in.puma "IL, 03522" "The dwelling unit is located in IL, the NHGIS PUMA code is 03522" +in.puma "IL, 03523" "The dwelling unit is located in IL, the NHGIS PUMA code is 03523" +in.puma "IL, 03524" "The dwelling unit is located in IL, the NHGIS PUMA code is 03524" +in.puma "IL, 03525" "The dwelling unit is located in IL, the NHGIS PUMA code is 03525" +in.puma "IL, 03526" "The dwelling unit is located in IL, the NHGIS PUMA code is 03526" +in.puma "IL, 03527" "The dwelling unit is located in IL, the NHGIS PUMA code is 03527" +in.puma "IL, 03528" "The dwelling unit is located in IL, the NHGIS PUMA code is 03528" +in.puma "IL, 03529" "The dwelling unit is located in IL, the NHGIS PUMA code is 03529" +in.puma "IL, 03530" "The dwelling unit is located in IL, the NHGIS PUMA code is 03530" +in.puma "IL, 03531" "The dwelling unit is located in IL, the NHGIS PUMA code is 03531" +in.puma "IL, 03532" "The dwelling unit is located in IL, the NHGIS PUMA code is 03532" +in.puma "IL, 03601" "The dwelling unit is located in IL, the NHGIS PUMA code is 03601" +in.puma "IL, 03602" "The dwelling unit is located in IL, the NHGIS PUMA code is 03602" +in.puma "IL, 03700" "The dwelling unit is located in IL, the NHGIS PUMA code is 03700" +in.puma "IN, 00101" "The dwelling unit is located in IN, the NHGIS PUMA code is 00101" +in.puma "IN, 00102" "The dwelling unit is located in IN, the NHGIS PUMA code is 00102" +in.puma "IN, 00103" "The dwelling unit is located in IN, the NHGIS PUMA code is 00103" +in.puma "IN, 00104" "The dwelling unit is located in IN, the NHGIS PUMA code is 00104" +in.puma "IN, 00200" "The dwelling unit is located in IN, the NHGIS PUMA code is 00200" +in.puma "IN, 00300" "The dwelling unit is located in IN, the NHGIS PUMA code is 00300" +in.puma "IN, 00401" "The dwelling unit is located in IN, the NHGIS PUMA code is 00401" +in.puma "IN, 00402" "The dwelling unit is located in IN, the NHGIS PUMA code is 00402" +in.puma "IN, 00500" "The dwelling unit is located in IN, the NHGIS PUMA code is 00500" +in.puma "IN, 00600" "The dwelling unit is located in IN, the NHGIS PUMA code is 00600" +in.puma "IN, 00700" "The dwelling unit is located in IN, the NHGIS PUMA code is 00700" +in.puma "IN, 00800" "The dwelling unit is located in IN, the NHGIS PUMA code is 00800" +in.puma "IN, 00900" "The dwelling unit is located in IN, the NHGIS PUMA code is 00900" +in.puma "IN, 01001" "The dwelling unit is located in IN, the NHGIS PUMA code is 01001" +in.puma "IN, 01002" "The dwelling unit is located in IN, the NHGIS PUMA code is 01002" +in.puma "IN, 01003" "The dwelling unit is located in IN, the NHGIS PUMA code is 01003" +in.puma "IN, 01100" "The dwelling unit is located in IN, the NHGIS PUMA code is 01100" +in.puma "IN, 01200" "The dwelling unit is located in IN, the NHGIS PUMA code is 01200" +in.puma "IN, 01300" "The dwelling unit is located in IN, the NHGIS PUMA code is 01300" +in.puma "IN, 01400" "The dwelling unit is located in IN, the NHGIS PUMA code is 01400" +in.puma "IN, 01500" "The dwelling unit is located in IN, the NHGIS PUMA code is 01500" +in.puma "IN, 01600" "The dwelling unit is located in IN, the NHGIS PUMA code is 01600" +in.puma "IN, 01700" "The dwelling unit is located in IN, the NHGIS PUMA code is 01700" +in.puma "IN, 01801" "The dwelling unit is located in IN, the NHGIS PUMA code is 01801" +in.puma "IN, 01802" "The dwelling unit is located in IN, the NHGIS PUMA code is 01802" +in.puma "IN, 01803" "The dwelling unit is located in IN, the NHGIS PUMA code is 01803" +in.puma "IN, 01900" "The dwelling unit is located in IN, the NHGIS PUMA code is 01900" +in.puma "IN, 02000" "The dwelling unit is located in IN, the NHGIS PUMA code is 02000" +in.puma "IN, 02100" "The dwelling unit is located in IN, the NHGIS PUMA code is 02100" +in.puma "IN, 02200" "The dwelling unit is located in IN, the NHGIS PUMA code is 02200" +in.puma "IN, 02301" "The dwelling unit is located in IN, the NHGIS PUMA code is 02301" +in.puma "IN, 02302" "The dwelling unit is located in IN, the NHGIS PUMA code is 02302" +in.puma "IN, 02303" "The dwelling unit is located in IN, the NHGIS PUMA code is 02303" +in.puma "IN, 02304" "The dwelling unit is located in IN, the NHGIS PUMA code is 02304" +in.puma "IN, 02305" "The dwelling unit is located in IN, the NHGIS PUMA code is 02305" +in.puma "IN, 02306" "The dwelling unit is located in IN, the NHGIS PUMA code is 02306" +in.puma "IN, 02307" "The dwelling unit is located in IN, the NHGIS PUMA code is 02307" +in.puma "IN, 02400" "The dwelling unit is located in IN, the NHGIS PUMA code is 02400" +in.puma "IN, 02500" "The dwelling unit is located in IN, the NHGIS PUMA code is 02500" +in.puma "IN, 02600" "The dwelling unit is located in IN, the NHGIS PUMA code is 02600" +in.puma "IN, 02700" "The dwelling unit is located in IN, the NHGIS PUMA code is 02700" +in.puma "IN, 02800" "The dwelling unit is located in IN, the NHGIS PUMA code is 02800" +in.puma "IN, 02900" "The dwelling unit is located in IN, the NHGIS PUMA code is 02900" +in.puma "IN, 03000" "The dwelling unit is located in IN, the NHGIS PUMA code is 03000" +in.puma "IN, 03100" "The dwelling unit is located in IN, the NHGIS PUMA code is 03100" +in.puma "IN, 03200" "The dwelling unit is located in IN, the NHGIS PUMA code is 03200" +in.puma "IN, 03300" "The dwelling unit is located in IN, the NHGIS PUMA code is 03300" +in.puma "IN, 03400" "The dwelling unit is located in IN, the NHGIS PUMA code is 03400" +in.puma "IN, 03500" "The dwelling unit is located in IN, the NHGIS PUMA code is 03500" +in.puma "IN, 03600" "The dwelling unit is located in IN, the NHGIS PUMA code is 03600" +in.puma "KS, 00100" "The dwelling unit is located in KS, the NHGIS PUMA code is 00100" +in.puma "KS, 00200" "The dwelling unit is located in KS, the NHGIS PUMA code is 00200" +in.puma "KS, 00300" "The dwelling unit is located in KS, the NHGIS PUMA code is 00300" +in.puma "KS, 00400" "The dwelling unit is located in KS, the NHGIS PUMA code is 00400" +in.puma "KS, 00500" "The dwelling unit is located in KS, the NHGIS PUMA code is 00500" +in.puma "KS, 00601" "The dwelling unit is located in KS, the NHGIS PUMA code is 00601" +in.puma "KS, 00602" "The dwelling unit is located in KS, the NHGIS PUMA code is 00602" +in.puma "KS, 00603" "The dwelling unit is located in KS, the NHGIS PUMA code is 00603" +in.puma "KS, 00604" "The dwelling unit is located in KS, the NHGIS PUMA code is 00604" +in.puma "KS, 00700" "The dwelling unit is located in KS, the NHGIS PUMA code is 00700" +in.puma "KS, 00801" "The dwelling unit is located in KS, the NHGIS PUMA code is 00801" +in.puma "KS, 00802" "The dwelling unit is located in KS, the NHGIS PUMA code is 00802" +in.puma "KS, 00900" "The dwelling unit is located in KS, the NHGIS PUMA code is 00900" +in.puma "KS, 01000" "The dwelling unit is located in KS, the NHGIS PUMA code is 01000" +in.puma "KS, 01100" "The dwelling unit is located in KS, the NHGIS PUMA code is 01100" +in.puma "KS, 01200" "The dwelling unit is located in KS, the NHGIS PUMA code is 01200" +in.puma "KS, 01301" "The dwelling unit is located in KS, the NHGIS PUMA code is 01301" +in.puma "KS, 01302" "The dwelling unit is located in KS, the NHGIS PUMA code is 01302" +in.puma "KS, 01303" "The dwelling unit is located in KS, the NHGIS PUMA code is 01303" +in.puma "KS, 01304" "The dwelling unit is located in KS, the NHGIS PUMA code is 01304" +in.puma "KS, 01400" "The dwelling unit is located in KS, the NHGIS PUMA code is 01400" +in.puma "KS, 01500" "The dwelling unit is located in KS, the NHGIS PUMA code is 01500" +in.puma "KY, 00100" "The dwelling unit is located in KY, the NHGIS PUMA code is 00100" +in.puma "KY, 00200" "The dwelling unit is located in KY, the NHGIS PUMA code is 00200" +in.puma "KY, 00300" "The dwelling unit is located in KY, the NHGIS PUMA code is 00300" +in.puma "KY, 00400" "The dwelling unit is located in KY, the NHGIS PUMA code is 00400" +in.puma "KY, 00500" "The dwelling unit is located in KY, the NHGIS PUMA code is 00500" +in.puma "KY, 00600" "The dwelling unit is located in KY, the NHGIS PUMA code is 00600" +in.puma "KY, 00700" "The dwelling unit is located in KY, the NHGIS PUMA code is 00700" +in.puma "KY, 00800" "The dwelling unit is located in KY, the NHGIS PUMA code is 00800" +in.puma "KY, 00900" "The dwelling unit is located in KY, the NHGIS PUMA code is 00900" +in.puma "KY, 01000" "The dwelling unit is located in KY, the NHGIS PUMA code is 01000" +in.puma "KY, 01100" "The dwelling unit is located in KY, the NHGIS PUMA code is 01100" +in.puma "KY, 01200" "The dwelling unit is located in KY, the NHGIS PUMA code is 01200" +in.puma "KY, 01300" "The dwelling unit is located in KY, the NHGIS PUMA code is 01300" +in.puma "KY, 01400" "The dwelling unit is located in KY, the NHGIS PUMA code is 01400" +in.puma "KY, 01500" "The dwelling unit is located in KY, the NHGIS PUMA code is 01500" +in.puma "KY, 01600" "The dwelling unit is located in KY, the NHGIS PUMA code is 01600" +in.puma "KY, 01701" "The dwelling unit is located in KY, the NHGIS PUMA code is 01701" +in.puma "KY, 01702" "The dwelling unit is located in KY, the NHGIS PUMA code is 01702" +in.puma "KY, 01703" "The dwelling unit is located in KY, the NHGIS PUMA code is 01703" +in.puma "KY, 01704" "The dwelling unit is located in KY, the NHGIS PUMA code is 01704" +in.puma "KY, 01705" "The dwelling unit is located in KY, the NHGIS PUMA code is 01705" +in.puma "KY, 01706" "The dwelling unit is located in KY, the NHGIS PUMA code is 01706" +in.puma "KY, 01800" "The dwelling unit is located in KY, the NHGIS PUMA code is 01800" +in.puma "KY, 01901" "The dwelling unit is located in KY, the NHGIS PUMA code is 01901" +in.puma "KY, 01902" "The dwelling unit is located in KY, the NHGIS PUMA code is 01902" +in.puma "KY, 02000" "The dwelling unit is located in KY, the NHGIS PUMA code is 02000" +in.puma "KY, 02100" "The dwelling unit is located in KY, the NHGIS PUMA code is 02100" +in.puma "KY, 02200" "The dwelling unit is located in KY, the NHGIS PUMA code is 02200" +in.puma "KY, 02300" "The dwelling unit is located in KY, the NHGIS PUMA code is 02300" +in.puma "KY, 02400" "The dwelling unit is located in KY, the NHGIS PUMA code is 02400" +in.puma "KY, 02500" "The dwelling unit is located in KY, the NHGIS PUMA code is 02500" +in.puma "KY, 02600" "The dwelling unit is located in KY, the NHGIS PUMA code is 02600" +in.puma "KY, 02700" "The dwelling unit is located in KY, the NHGIS PUMA code is 02700" +in.puma "KY, 02800" "The dwelling unit is located in KY, the NHGIS PUMA code is 02800" +in.puma "LA, 00100" "The dwelling unit is located in LA, the NHGIS PUMA code is 00100" +in.puma "LA, 00101" "The dwelling unit is located in LA, the NHGIS PUMA code is 00101" +in.puma "LA, 00200" "The dwelling unit is located in LA, the NHGIS PUMA code is 00200" +in.puma "LA, 00300" "The dwelling unit is located in LA, the NHGIS PUMA code is 00300" +in.puma "LA, 00400" "The dwelling unit is located in LA, the NHGIS PUMA code is 00400" +in.puma "LA, 00500" "The dwelling unit is located in LA, the NHGIS PUMA code is 00500" +in.puma "LA, 00600" "The dwelling unit is located in LA, the NHGIS PUMA code is 00600" +in.puma "LA, 00700" "The dwelling unit is located in LA, the NHGIS PUMA code is 00700" +in.puma "LA, 00800" "The dwelling unit is located in LA, the NHGIS PUMA code is 00800" +in.puma "LA, 00900" "The dwelling unit is located in LA, the NHGIS PUMA code is 00900" +in.puma "LA, 01000" "The dwelling unit is located in LA, the NHGIS PUMA code is 01000" +in.puma "LA, 01100" "The dwelling unit is located in LA, the NHGIS PUMA code is 01100" +in.puma "LA, 01200" "The dwelling unit is located in LA, the NHGIS PUMA code is 01200" +in.puma "LA, 01201" "The dwelling unit is located in LA, the NHGIS PUMA code is 01201" +in.puma "LA, 01300" "The dwelling unit is located in LA, the NHGIS PUMA code is 01300" +in.puma "LA, 01400" "The dwelling unit is located in LA, the NHGIS PUMA code is 01400" +in.puma "LA, 01500" "The dwelling unit is located in LA, the NHGIS PUMA code is 01500" +in.puma "LA, 01501" "The dwelling unit is located in LA, the NHGIS PUMA code is 01501" +in.puma "LA, 01502" "The dwelling unit is located in LA, the NHGIS PUMA code is 01502" +in.puma "LA, 01600" "The dwelling unit is located in LA, the NHGIS PUMA code is 01600" +in.puma "LA, 01700" "The dwelling unit is located in LA, the NHGIS PUMA code is 01700" +in.puma "LA, 01800" "The dwelling unit is located in LA, the NHGIS PUMA code is 01800" +in.puma "LA, 01900" "The dwelling unit is located in LA, the NHGIS PUMA code is 01900" +in.puma "LA, 02000" "The dwelling unit is located in LA, the NHGIS PUMA code is 02000" +in.puma "LA, 02100" "The dwelling unit is located in LA, the NHGIS PUMA code is 02100" +in.puma "LA, 02200" "The dwelling unit is located in LA, the NHGIS PUMA code is 02200" +in.puma "LA, 02201" "The dwelling unit is located in LA, the NHGIS PUMA code is 02201" +in.puma "LA, 02300" "The dwelling unit is located in LA, the NHGIS PUMA code is 02300" +in.puma "LA, 02301" "The dwelling unit is located in LA, the NHGIS PUMA code is 02301" +in.puma "LA, 02302" "The dwelling unit is located in LA, the NHGIS PUMA code is 02302" +in.puma "LA, 02400" "The dwelling unit is located in LA, the NHGIS PUMA code is 02400" +in.puma "LA, 02401" "The dwelling unit is located in LA, the NHGIS PUMA code is 02401" +in.puma "LA, 02402" "The dwelling unit is located in LA, the NHGIS PUMA code is 02402" +in.puma "LA, 02500" "The dwelling unit is located in LA, the NHGIS PUMA code is 02500" +in.puma "MA, 00100" "The dwelling unit is located in MA, the NHGIS PUMA code is 00100" +in.puma "MA, 00200" "The dwelling unit is located in MA, the NHGIS PUMA code is 00200" +in.puma "MA, 00300" "The dwelling unit is located in MA, the NHGIS PUMA code is 00300" +in.puma "MA, 00301" "The dwelling unit is located in MA, the NHGIS PUMA code is 00301" +in.puma "MA, 00302" "The dwelling unit is located in MA, the NHGIS PUMA code is 00302" +in.puma "MA, 00303" "The dwelling unit is located in MA, the NHGIS PUMA code is 00303" +in.puma "MA, 00304" "The dwelling unit is located in MA, the NHGIS PUMA code is 00304" +in.puma "MA, 00400" "The dwelling unit is located in MA, the NHGIS PUMA code is 00400" +in.puma "MA, 00501" "The dwelling unit is located in MA, the NHGIS PUMA code is 00501" +in.puma "MA, 00502" "The dwelling unit is located in MA, the NHGIS PUMA code is 00502" +in.puma "MA, 00503" "The dwelling unit is located in MA, the NHGIS PUMA code is 00503" +in.puma "MA, 00504" "The dwelling unit is located in MA, the NHGIS PUMA code is 00504" +in.puma "MA, 00505" "The dwelling unit is located in MA, the NHGIS PUMA code is 00505" +in.puma "MA, 00506" "The dwelling unit is located in MA, the NHGIS PUMA code is 00506" +in.puma "MA, 00507" "The dwelling unit is located in MA, the NHGIS PUMA code is 00507" +in.puma "MA, 00508" "The dwelling unit is located in MA, the NHGIS PUMA code is 00508" +in.puma "MA, 00701" "The dwelling unit is located in MA, the NHGIS PUMA code is 00701" +in.puma "MA, 00702" "The dwelling unit is located in MA, the NHGIS PUMA code is 00702" +in.puma "MA, 00703" "The dwelling unit is located in MA, the NHGIS PUMA code is 00703" +in.puma "MA, 00704" "The dwelling unit is located in MA, the NHGIS PUMA code is 00704" +in.puma "MA, 01000" "The dwelling unit is located in MA, the NHGIS PUMA code is 01000" +in.puma "MA, 01300" "The dwelling unit is located in MA, the NHGIS PUMA code is 01300" +in.puma "MA, 01400" "The dwelling unit is located in MA, the NHGIS PUMA code is 01400" +in.puma "MA, 01600" "The dwelling unit is located in MA, the NHGIS PUMA code is 01600" +in.puma "MA, 01900" "The dwelling unit is located in MA, the NHGIS PUMA code is 01900" +in.puma "MA, 01901" "The dwelling unit is located in MA, the NHGIS PUMA code is 01901" +in.puma "MA, 01902" "The dwelling unit is located in MA, the NHGIS PUMA code is 01902" +in.puma "MA, 02400" "The dwelling unit is located in MA, the NHGIS PUMA code is 02400" +in.puma "MA, 02800" "The dwelling unit is located in MA, the NHGIS PUMA code is 02800" +in.puma "MA, 03301" "The dwelling unit is located in MA, the NHGIS PUMA code is 03301" +in.puma "MA, 03302" "The dwelling unit is located in MA, the NHGIS PUMA code is 03302" +in.puma "MA, 03303" "The dwelling unit is located in MA, the NHGIS PUMA code is 03303" +in.puma "MA, 03304" "The dwelling unit is located in MA, the NHGIS PUMA code is 03304" +in.puma "MA, 03305" "The dwelling unit is located in MA, the NHGIS PUMA code is 03305" +in.puma "MA, 03306" "The dwelling unit is located in MA, the NHGIS PUMA code is 03306" +in.puma "MA, 03400" "The dwelling unit is located in MA, the NHGIS PUMA code is 03400" +in.puma "MA, 03500" "The dwelling unit is located in MA, the NHGIS PUMA code is 03500" +in.puma "MA, 03601" "The dwelling unit is located in MA, the NHGIS PUMA code is 03601" +in.puma "MA, 03602" "The dwelling unit is located in MA, the NHGIS PUMA code is 03602" +in.puma "MA, 03603" "The dwelling unit is located in MA, the NHGIS PUMA code is 03603" +in.puma "MA, 03900" "The dwelling unit is located in MA, the NHGIS PUMA code is 03900" +in.puma "MA, 04000" "The dwelling unit is located in MA, the NHGIS PUMA code is 04000" +in.puma "MA, 04200" "The dwelling unit is located in MA, the NHGIS PUMA code is 04200" +in.puma "MA, 04301" "The dwelling unit is located in MA, the NHGIS PUMA code is 04301" +in.puma "MA, 04302" "The dwelling unit is located in MA, the NHGIS PUMA code is 04302" +in.puma "MA, 04303" "The dwelling unit is located in MA, the NHGIS PUMA code is 04303" +in.puma "MA, 04500" "The dwelling unit is located in MA, the NHGIS PUMA code is 04500" +in.puma "MA, 04700" "The dwelling unit is located in MA, the NHGIS PUMA code is 04700" +in.puma "MA, 04800" "The dwelling unit is located in MA, the NHGIS PUMA code is 04800" +in.puma "MA, 04901" "The dwelling unit is located in MA, the NHGIS PUMA code is 04901" +in.puma "MA, 04902" "The dwelling unit is located in MA, the NHGIS PUMA code is 04902" +in.puma "MA, 04903" "The dwelling unit is located in MA, the NHGIS PUMA code is 04903" +in.puma "MD, 00100" "The dwelling unit is located in MD, the NHGIS PUMA code is 00100" +in.puma "MD, 00200" "The dwelling unit is located in MD, the NHGIS PUMA code is 00200" +in.puma "MD, 00301" "The dwelling unit is located in MD, the NHGIS PUMA code is 00301" +in.puma "MD, 00302" "The dwelling unit is located in MD, the NHGIS PUMA code is 00302" +in.puma "MD, 00400" "The dwelling unit is located in MD, the NHGIS PUMA code is 00400" +in.puma "MD, 00501" "The dwelling unit is located in MD, the NHGIS PUMA code is 00501" +in.puma "MD, 00502" "The dwelling unit is located in MD, the NHGIS PUMA code is 00502" +in.puma "MD, 00503" "The dwelling unit is located in MD, the NHGIS PUMA code is 00503" +in.puma "MD, 00504" "The dwelling unit is located in MD, the NHGIS PUMA code is 00504" +in.puma "MD, 00505" "The dwelling unit is located in MD, the NHGIS PUMA code is 00505" +in.puma "MD, 00506" "The dwelling unit is located in MD, the NHGIS PUMA code is 00506" +in.puma "MD, 00507" "The dwelling unit is located in MD, the NHGIS PUMA code is 00507" +in.puma "MD, 00601" "The dwelling unit is located in MD, the NHGIS PUMA code is 00601" +in.puma "MD, 00602" "The dwelling unit is located in MD, the NHGIS PUMA code is 00602" +in.puma "MD, 00700" "The dwelling unit is located in MD, the NHGIS PUMA code is 00700" +in.puma "MD, 00801" "The dwelling unit is located in MD, the NHGIS PUMA code is 00801" +in.puma "MD, 00802" "The dwelling unit is located in MD, the NHGIS PUMA code is 00802" +in.puma "MD, 00803" "The dwelling unit is located in MD, the NHGIS PUMA code is 00803" +in.puma "MD, 00804" "The dwelling unit is located in MD, the NHGIS PUMA code is 00804" +in.puma "MD, 00805" "The dwelling unit is located in MD, the NHGIS PUMA code is 00805" +in.puma "MD, 00901" "The dwelling unit is located in MD, the NHGIS PUMA code is 00901" +in.puma "MD, 00902" "The dwelling unit is located in MD, the NHGIS PUMA code is 00902" +in.puma "MD, 01001" "The dwelling unit is located in MD, the NHGIS PUMA code is 01001" +in.puma "MD, 01002" "The dwelling unit is located in MD, the NHGIS PUMA code is 01002" +in.puma "MD, 01003" "The dwelling unit is located in MD, the NHGIS PUMA code is 01003" +in.puma "MD, 01004" "The dwelling unit is located in MD, the NHGIS PUMA code is 01004" +in.puma "MD, 01005" "The dwelling unit is located in MD, the NHGIS PUMA code is 01005" +in.puma "MD, 01006" "The dwelling unit is located in MD, the NHGIS PUMA code is 01006" +in.puma "MD, 01007" "The dwelling unit is located in MD, the NHGIS PUMA code is 01007" +in.puma "MD, 01101" "The dwelling unit is located in MD, the NHGIS PUMA code is 01101" +in.puma "MD, 01102" "The dwelling unit is located in MD, the NHGIS PUMA code is 01102" +in.puma "MD, 01103" "The dwelling unit is located in MD, the NHGIS PUMA code is 01103" +in.puma "MD, 01104" "The dwelling unit is located in MD, the NHGIS PUMA code is 01104" +in.puma "MD, 01105" "The dwelling unit is located in MD, the NHGIS PUMA code is 01105" +in.puma "MD, 01106" "The dwelling unit is located in MD, the NHGIS PUMA code is 01106" +in.puma "MD, 01107" "The dwelling unit is located in MD, the NHGIS PUMA code is 01107" +in.puma "MD, 01201" "The dwelling unit is located in MD, the NHGIS PUMA code is 01201" +in.puma "MD, 01202" "The dwelling unit is located in MD, the NHGIS PUMA code is 01202" +in.puma "MD, 01203" "The dwelling unit is located in MD, the NHGIS PUMA code is 01203" +in.puma "MD, 01204" "The dwelling unit is located in MD, the NHGIS PUMA code is 01204" +in.puma "MD, 01300" "The dwelling unit is located in MD, the NHGIS PUMA code is 01300" +in.puma "MD, 01400" "The dwelling unit is located in MD, the NHGIS PUMA code is 01400" +in.puma "MD, 01500" "The dwelling unit is located in MD, the NHGIS PUMA code is 01500" +in.puma "MD, 01600" "The dwelling unit is located in MD, the NHGIS PUMA code is 01600" +in.puma "ME, 00100" "The dwelling unit is located in ME, the NHGIS PUMA code is 00100" +in.puma "ME, 00200" "The dwelling unit is located in ME, the NHGIS PUMA code is 00200" +in.puma "ME, 00300" "The dwelling unit is located in ME, the NHGIS PUMA code is 00300" +in.puma "ME, 00400" "The dwelling unit is located in ME, the NHGIS PUMA code is 00400" +in.puma "ME, 00500" "The dwelling unit is located in ME, the NHGIS PUMA code is 00500" +in.puma "ME, 00600" "The dwelling unit is located in ME, the NHGIS PUMA code is 00600" +in.puma "ME, 00700" "The dwelling unit is located in ME, the NHGIS PUMA code is 00700" +in.puma "ME, 00800" "The dwelling unit is located in ME, the NHGIS PUMA code is 00800" +in.puma "ME, 00900" "The dwelling unit is located in ME, the NHGIS PUMA code is 00900" +in.puma "ME, 01000" "The dwelling unit is located in ME, the NHGIS PUMA code is 01000" +in.puma "MI, 00100" "The dwelling unit is located in MI, the NHGIS PUMA code is 00100" +in.puma "MI, 00200" "The dwelling unit is located in MI, the NHGIS PUMA code is 00200" +in.puma "MI, 00300" "The dwelling unit is located in MI, the NHGIS PUMA code is 00300" +in.puma "MI, 00400" "The dwelling unit is located in MI, the NHGIS PUMA code is 00400" +in.puma "MI, 00500" "The dwelling unit is located in MI, the NHGIS PUMA code is 00500" +in.puma "MI, 00600" "The dwelling unit is located in MI, the NHGIS PUMA code is 00600" +in.puma "MI, 00700" "The dwelling unit is located in MI, the NHGIS PUMA code is 00700" +in.puma "MI, 00801" "The dwelling unit is located in MI, the NHGIS PUMA code is 00801" +in.puma "MI, 00802" "The dwelling unit is located in MI, the NHGIS PUMA code is 00802" +in.puma "MI, 00900" "The dwelling unit is located in MI, the NHGIS PUMA code is 00900" +in.puma "MI, 01001" "The dwelling unit is located in MI, the NHGIS PUMA code is 01001" +in.puma "MI, 01002" "The dwelling unit is located in MI, the NHGIS PUMA code is 01002" +in.puma "MI, 01003" "The dwelling unit is located in MI, the NHGIS PUMA code is 01003" +in.puma "MI, 01004" "The dwelling unit is located in MI, the NHGIS PUMA code is 01004" +in.puma "MI, 01100" "The dwelling unit is located in MI, the NHGIS PUMA code is 01100" +in.puma "MI, 01200" "The dwelling unit is located in MI, the NHGIS PUMA code is 01200" +in.puma "MI, 01300" "The dwelling unit is located in MI, the NHGIS PUMA code is 01300" +in.puma "MI, 01400" "The dwelling unit is located in MI, the NHGIS PUMA code is 01400" +in.puma "MI, 01500" "The dwelling unit is located in MI, the NHGIS PUMA code is 01500" +in.puma "MI, 01600" "The dwelling unit is located in MI, the NHGIS PUMA code is 01600" +in.puma "MI, 01701" "The dwelling unit is located in MI, the NHGIS PUMA code is 01701" +in.puma "MI, 01702" "The dwelling unit is located in MI, the NHGIS PUMA code is 01702" +in.puma "MI, 01703" "The dwelling unit is located in MI, the NHGIS PUMA code is 01703" +in.puma "MI, 01704" "The dwelling unit is located in MI, the NHGIS PUMA code is 01704" +in.puma "MI, 01801" "The dwelling unit is located in MI, the NHGIS PUMA code is 01801" +in.puma "MI, 01802" "The dwelling unit is located in MI, the NHGIS PUMA code is 01802" +in.puma "MI, 01900" "The dwelling unit is located in MI, the NHGIS PUMA code is 01900" +in.puma "MI, 02000" "The dwelling unit is located in MI, the NHGIS PUMA code is 02000" +in.puma "MI, 02101" "The dwelling unit is located in MI, the NHGIS PUMA code is 02101" +in.puma "MI, 02102" "The dwelling unit is located in MI, the NHGIS PUMA code is 02102" +in.puma "MI, 02200" "The dwelling unit is located in MI, the NHGIS PUMA code is 02200" +in.puma "MI, 02300" "The dwelling unit is located in MI, the NHGIS PUMA code is 02300" +in.puma "MI, 02400" "The dwelling unit is located in MI, the NHGIS PUMA code is 02400" +in.puma "MI, 02500" "The dwelling unit is located in MI, the NHGIS PUMA code is 02500" +in.puma "MI, 02600" "The dwelling unit is located in MI, the NHGIS PUMA code is 02600" +in.puma "MI, 02701" "The dwelling unit is located in MI, the NHGIS PUMA code is 02701" +in.puma "MI, 02702" "The dwelling unit is located in MI, the NHGIS PUMA code is 02702" +in.puma "MI, 02703" "The dwelling unit is located in MI, the NHGIS PUMA code is 02703" +in.puma "MI, 02800" "The dwelling unit is located in MI, the NHGIS PUMA code is 02800" +in.puma "MI, 02901" "The dwelling unit is located in MI, the NHGIS PUMA code is 02901" +in.puma "MI, 02902" "The dwelling unit is located in MI, the NHGIS PUMA code is 02902" +in.puma "MI, 02903" "The dwelling unit is located in MI, the NHGIS PUMA code is 02903" +in.puma "MI, 02904" "The dwelling unit is located in MI, the NHGIS PUMA code is 02904" +in.puma "MI, 02905" "The dwelling unit is located in MI, the NHGIS PUMA code is 02905" +in.puma "MI, 02906" "The dwelling unit is located in MI, the NHGIS PUMA code is 02906" +in.puma "MI, 02907" "The dwelling unit is located in MI, the NHGIS PUMA code is 02907" +in.puma "MI, 02908" "The dwelling unit is located in MI, the NHGIS PUMA code is 02908" +in.puma "MI, 03001" "The dwelling unit is located in MI, the NHGIS PUMA code is 03001" +in.puma "MI, 03002" "The dwelling unit is located in MI, the NHGIS PUMA code is 03002" +in.puma "MI, 03003" "The dwelling unit is located in MI, the NHGIS PUMA code is 03003" +in.puma "MI, 03004" "The dwelling unit is located in MI, the NHGIS PUMA code is 03004" +in.puma "MI, 03005" "The dwelling unit is located in MI, the NHGIS PUMA code is 03005" +in.puma "MI, 03006" "The dwelling unit is located in MI, the NHGIS PUMA code is 03006" +in.puma "MI, 03100" "The dwelling unit is located in MI, the NHGIS PUMA code is 03100" +in.puma "MI, 03201" "The dwelling unit is located in MI, the NHGIS PUMA code is 03201" +in.puma "MI, 03202" "The dwelling unit is located in MI, the NHGIS PUMA code is 03202" +in.puma "MI, 03203" "The dwelling unit is located in MI, the NHGIS PUMA code is 03203" +in.puma "MI, 03204" "The dwelling unit is located in MI, the NHGIS PUMA code is 03204" +in.puma "MI, 03205" "The dwelling unit is located in MI, the NHGIS PUMA code is 03205" +in.puma "MI, 03206" "The dwelling unit is located in MI, the NHGIS PUMA code is 03206" +in.puma "MI, 03207" "The dwelling unit is located in MI, the NHGIS PUMA code is 03207" +in.puma "MI, 03208" "The dwelling unit is located in MI, the NHGIS PUMA code is 03208" +in.puma "MI, 03209" "The dwelling unit is located in MI, the NHGIS PUMA code is 03209" +in.puma "MI, 03210" "The dwelling unit is located in MI, the NHGIS PUMA code is 03210" +in.puma "MI, 03211" "The dwelling unit is located in MI, the NHGIS PUMA code is 03211" +in.puma "MI, 03212" "The dwelling unit is located in MI, the NHGIS PUMA code is 03212" +in.puma "MI, 03213" "The dwelling unit is located in MI, the NHGIS PUMA code is 03213" +in.puma "MI, 03300" "The dwelling unit is located in MI, the NHGIS PUMA code is 03300" +in.puma "MN, 00100" "The dwelling unit is located in MN, the NHGIS PUMA code is 00100" +in.puma "MN, 00200" "The dwelling unit is located in MN, the NHGIS PUMA code is 00200" +in.puma "MN, 00300" "The dwelling unit is located in MN, the NHGIS PUMA code is 00300" +in.puma "MN, 00400" "The dwelling unit is located in MN, the NHGIS PUMA code is 00400" +in.puma "MN, 00500" "The dwelling unit is located in MN, the NHGIS PUMA code is 00500" +in.puma "MN, 00600" "The dwelling unit is located in MN, the NHGIS PUMA code is 00600" +in.puma "MN, 00700" "The dwelling unit is located in MN, the NHGIS PUMA code is 00700" +in.puma "MN, 00800" "The dwelling unit is located in MN, the NHGIS PUMA code is 00800" +in.puma "MN, 00900" "The dwelling unit is located in MN, the NHGIS PUMA code is 00900" +in.puma "MN, 01000" "The dwelling unit is located in MN, the NHGIS PUMA code is 01000" +in.puma "MN, 01101" "The dwelling unit is located in MN, the NHGIS PUMA code is 01101" +in.puma "MN, 01102" "The dwelling unit is located in MN, the NHGIS PUMA code is 01102" +in.puma "MN, 01103" "The dwelling unit is located in MN, the NHGIS PUMA code is 01103" +in.puma "MN, 01201" "The dwelling unit is located in MN, the NHGIS PUMA code is 01201" +in.puma "MN, 01202" "The dwelling unit is located in MN, the NHGIS PUMA code is 01202" +in.puma "MN, 01301" "The dwelling unit is located in MN, the NHGIS PUMA code is 01301" +in.puma "MN, 01302" "The dwelling unit is located in MN, the NHGIS PUMA code is 01302" +in.puma "MN, 01303" "The dwelling unit is located in MN, the NHGIS PUMA code is 01303" +in.puma "MN, 01304" "The dwelling unit is located in MN, the NHGIS PUMA code is 01304" +in.puma "MN, 01401" "The dwelling unit is located in MN, the NHGIS PUMA code is 01401" +in.puma "MN, 01402" "The dwelling unit is located in MN, the NHGIS PUMA code is 01402" +in.puma "MN, 01403" "The dwelling unit is located in MN, the NHGIS PUMA code is 01403" +in.puma "MN, 01404" "The dwelling unit is located in MN, the NHGIS PUMA code is 01404" +in.puma "MN, 01405" "The dwelling unit is located in MN, the NHGIS PUMA code is 01405" +in.puma "MN, 01406" "The dwelling unit is located in MN, the NHGIS PUMA code is 01406" +in.puma "MN, 01407" "The dwelling unit is located in MN, the NHGIS PUMA code is 01407" +in.puma "MN, 01408" "The dwelling unit is located in MN, the NHGIS PUMA code is 01408" +in.puma "MN, 01409" "The dwelling unit is located in MN, the NHGIS PUMA code is 01409" +in.puma "MN, 01410" "The dwelling unit is located in MN, the NHGIS PUMA code is 01410" +in.puma "MN, 01501" "The dwelling unit is located in MN, the NHGIS PUMA code is 01501" +in.puma "MN, 01502" "The dwelling unit is located in MN, the NHGIS PUMA code is 01502" +in.puma "MN, 01503" "The dwelling unit is located in MN, the NHGIS PUMA code is 01503" +in.puma "MN, 01600" "The dwelling unit is located in MN, the NHGIS PUMA code is 01600" +in.puma "MN, 01700" "The dwelling unit is located in MN, the NHGIS PUMA code is 01700" +in.puma "MN, 01800" "The dwelling unit is located in MN, the NHGIS PUMA code is 01800" +in.puma "MN, 01900" "The dwelling unit is located in MN, the NHGIS PUMA code is 01900" +in.puma "MN, 02000" "The dwelling unit is located in MN, the NHGIS PUMA code is 02000" +in.puma "MN, 02100" "The dwelling unit is located in MN, the NHGIS PUMA code is 02100" +in.puma "MN, 02200" "The dwelling unit is located in MN, the NHGIS PUMA code is 02200" +in.puma "MN, 02300" "The dwelling unit is located in MN, the NHGIS PUMA code is 02300" +in.puma "MN, 02400" "The dwelling unit is located in MN, the NHGIS PUMA code is 02400" +in.puma "MN, 02500" "The dwelling unit is located in MN, the NHGIS PUMA code is 02500" +in.puma "MN, 02600" "The dwelling unit is located in MN, the NHGIS PUMA code is 02600" +in.puma "MO, 00100" "The dwelling unit is located in MO, the NHGIS PUMA code is 00100" +in.puma "MO, 00200" "The dwelling unit is located in MO, the NHGIS PUMA code is 00200" +in.puma "MO, 00300" "The dwelling unit is located in MO, the NHGIS PUMA code is 00300" +in.puma "MO, 00400" "The dwelling unit is located in MO, the NHGIS PUMA code is 00400" +in.puma "MO, 00500" "The dwelling unit is located in MO, the NHGIS PUMA code is 00500" +in.puma "MO, 00600" "The dwelling unit is located in MO, the NHGIS PUMA code is 00600" +in.puma "MO, 00700" "The dwelling unit is located in MO, the NHGIS PUMA code is 00700" +in.puma "MO, 00800" "The dwelling unit is located in MO, the NHGIS PUMA code is 00800" +in.puma "MO, 00901" "The dwelling unit is located in MO, the NHGIS PUMA code is 00901" +in.puma "MO, 00902" "The dwelling unit is located in MO, the NHGIS PUMA code is 00902" +in.puma "MO, 00903" "The dwelling unit is located in MO, the NHGIS PUMA code is 00903" +in.puma "MO, 01001" "The dwelling unit is located in MO, the NHGIS PUMA code is 01001" +in.puma "MO, 01002" "The dwelling unit is located in MO, the NHGIS PUMA code is 01002" +in.puma "MO, 01003" "The dwelling unit is located in MO, the NHGIS PUMA code is 01003" +in.puma "MO, 01004" "The dwelling unit is located in MO, the NHGIS PUMA code is 01004" +in.puma "MO, 01005" "The dwelling unit is located in MO, the NHGIS PUMA code is 01005" +in.puma "MO, 01100" "The dwelling unit is located in MO, the NHGIS PUMA code is 01100" +in.puma "MO, 01200" "The dwelling unit is located in MO, the NHGIS PUMA code is 01200" +in.puma "MO, 01300" "The dwelling unit is located in MO, the NHGIS PUMA code is 01300" +in.puma "MO, 01400" "The dwelling unit is located in MO, the NHGIS PUMA code is 01400" +in.puma "MO, 01500" "The dwelling unit is located in MO, the NHGIS PUMA code is 01500" +in.puma "MO, 01600" "The dwelling unit is located in MO, the NHGIS PUMA code is 01600" +in.puma "MO, 01701" "The dwelling unit is located in MO, the NHGIS PUMA code is 01701" +in.puma "MO, 01702" "The dwelling unit is located in MO, the NHGIS PUMA code is 01702" +in.puma "MO, 01703" "The dwelling unit is located in MO, the NHGIS PUMA code is 01703" +in.puma "MO, 01801" "The dwelling unit is located in MO, the NHGIS PUMA code is 01801" +in.puma "MO, 01802" "The dwelling unit is located in MO, the NHGIS PUMA code is 01802" +in.puma "MO, 01803" "The dwelling unit is located in MO, the NHGIS PUMA code is 01803" +in.puma "MO, 01804" "The dwelling unit is located in MO, the NHGIS PUMA code is 01804" +in.puma "MO, 01805" "The dwelling unit is located in MO, the NHGIS PUMA code is 01805" +in.puma "MO, 01806" "The dwelling unit is located in MO, the NHGIS PUMA code is 01806" +in.puma "MO, 01807" "The dwelling unit is located in MO, the NHGIS PUMA code is 01807" +in.puma "MO, 01808" "The dwelling unit is located in MO, the NHGIS PUMA code is 01808" +in.puma "MO, 01901" "The dwelling unit is located in MO, the NHGIS PUMA code is 01901" +in.puma "MO, 01902" "The dwelling unit is located in MO, the NHGIS PUMA code is 01902" +in.puma "MO, 02001" "The dwelling unit is located in MO, the NHGIS PUMA code is 02001" +in.puma "MO, 02002" "The dwelling unit is located in MO, the NHGIS PUMA code is 02002" +in.puma "MO, 02100" "The dwelling unit is located in MO, the NHGIS PUMA code is 02100" +in.puma "MO, 02200" "The dwelling unit is located in MO, the NHGIS PUMA code is 02200" +in.puma "MO, 02300" "The dwelling unit is located in MO, the NHGIS PUMA code is 02300" +in.puma "MO, 02400" "The dwelling unit is located in MO, the NHGIS PUMA code is 02400" +in.puma "MO, 02500" "The dwelling unit is located in MO, the NHGIS PUMA code is 02500" +in.puma "MO, 02601" "The dwelling unit is located in MO, the NHGIS PUMA code is 02601" +in.puma "MO, 02602" "The dwelling unit is located in MO, the NHGIS PUMA code is 02602" +in.puma "MO, 02603" "The dwelling unit is located in MO, the NHGIS PUMA code is 02603" +in.puma "MO, 02700" "The dwelling unit is located in MO, the NHGIS PUMA code is 02700" +in.puma "MO, 02800" "The dwelling unit is located in MO, the NHGIS PUMA code is 02800" +in.puma "MS, 00100" "The dwelling unit is located in MS, the NHGIS PUMA code is 00100" +in.puma "MS, 00200" "The dwelling unit is located in MS, the NHGIS PUMA code is 00200" +in.puma "MS, 00300" "The dwelling unit is located in MS, the NHGIS PUMA code is 00300" +in.puma "MS, 00400" "The dwelling unit is located in MS, the NHGIS PUMA code is 00400" +in.puma "MS, 00500" "The dwelling unit is located in MS, the NHGIS PUMA code is 00500" +in.puma "MS, 00600" "The dwelling unit is located in MS, the NHGIS PUMA code is 00600" +in.puma "MS, 00700" "The dwelling unit is located in MS, the NHGIS PUMA code is 00700" +in.puma "MS, 00800" "The dwelling unit is located in MS, the NHGIS PUMA code is 00800" +in.puma "MS, 00900" "The dwelling unit is located in MS, the NHGIS PUMA code is 00900" +in.puma "MS, 01000" "The dwelling unit is located in MS, the NHGIS PUMA code is 01000" +in.puma "MS, 01100" "The dwelling unit is located in MS, the NHGIS PUMA code is 01100" +in.puma "MS, 01200" "The dwelling unit is located in MS, the NHGIS PUMA code is 01200" +in.puma "MS, 01300" "The dwelling unit is located in MS, the NHGIS PUMA code is 01300" +in.puma "MS, 01400" "The dwelling unit is located in MS, the NHGIS PUMA code is 01400" +in.puma "MS, 01500" "The dwelling unit is located in MS, the NHGIS PUMA code is 01500" +in.puma "MS, 01600" "The dwelling unit is located in MS, the NHGIS PUMA code is 01600" +in.puma "MS, 01700" "The dwelling unit is located in MS, the NHGIS PUMA code is 01700" +in.puma "MS, 01800" "The dwelling unit is located in MS, the NHGIS PUMA code is 01800" +in.puma "MS, 01900" "The dwelling unit is located in MS, the NHGIS PUMA code is 01900" +in.puma "MS, 02000" "The dwelling unit is located in MS, the NHGIS PUMA code is 02000" +in.puma "MS, 02100" "The dwelling unit is located in MS, the NHGIS PUMA code is 02100" +in.puma "MT, 00100" "The dwelling unit is located in MT, the NHGIS PUMA code is 00100" +in.puma "MT, 00200" "The dwelling unit is located in MT, the NHGIS PUMA code is 00200" +in.puma "MT, 00300" "The dwelling unit is located in MT, the NHGIS PUMA code is 00300" +in.puma "MT, 00400" "The dwelling unit is located in MT, the NHGIS PUMA code is 00400" +in.puma "MT, 00500" "The dwelling unit is located in MT, the NHGIS PUMA code is 00500" +in.puma "MT, 00600" "The dwelling unit is located in MT, the NHGIS PUMA code is 00600" +in.puma "MT, 00700" "The dwelling unit is located in MT, the NHGIS PUMA code is 00700" +in.puma "NC, 00100" "The dwelling unit is located in NC, the NHGIS PUMA code is 00100" +in.puma "NC, 00200" "The dwelling unit is located in NC, the NHGIS PUMA code is 00200" +in.puma "NC, 00300" "The dwelling unit is located in NC, the NHGIS PUMA code is 00300" +in.puma "NC, 00400" "The dwelling unit is located in NC, the NHGIS PUMA code is 00400" +in.puma "NC, 00500" "The dwelling unit is located in NC, the NHGIS PUMA code is 00500" +in.puma "NC, 00600" "The dwelling unit is located in NC, the NHGIS PUMA code is 00600" +in.puma "NC, 00700" "The dwelling unit is located in NC, the NHGIS PUMA code is 00700" +in.puma "NC, 00800" "The dwelling unit is located in NC, the NHGIS PUMA code is 00800" +in.puma "NC, 00900" "The dwelling unit is located in NC, the NHGIS PUMA code is 00900" +in.puma "NC, 01000" "The dwelling unit is located in NC, the NHGIS PUMA code is 01000" +in.puma "NC, 01100" "The dwelling unit is located in NC, the NHGIS PUMA code is 01100" +in.puma "NC, 01201" "The dwelling unit is located in NC, the NHGIS PUMA code is 01201" +in.puma "NC, 01202" "The dwelling unit is located in NC, the NHGIS PUMA code is 01202" +in.puma "NC, 01203" "The dwelling unit is located in NC, the NHGIS PUMA code is 01203" +in.puma "NC, 01204" "The dwelling unit is located in NC, the NHGIS PUMA code is 01204" +in.puma "NC, 01205" "The dwelling unit is located in NC, the NHGIS PUMA code is 01205" +in.puma "NC, 01206" "The dwelling unit is located in NC, the NHGIS PUMA code is 01206" +in.puma "NC, 01207" "The dwelling unit is located in NC, the NHGIS PUMA code is 01207" +in.puma "NC, 01208" "The dwelling unit is located in NC, the NHGIS PUMA code is 01208" +in.puma "NC, 01301" "The dwelling unit is located in NC, the NHGIS PUMA code is 01301" +in.puma "NC, 01302" "The dwelling unit is located in NC, the NHGIS PUMA code is 01302" +in.puma "NC, 01400" "The dwelling unit is located in NC, the NHGIS PUMA code is 01400" +in.puma "NC, 01500" "The dwelling unit is located in NC, the NHGIS PUMA code is 01500" +in.puma "NC, 01600" "The dwelling unit is located in NC, the NHGIS PUMA code is 01600" +in.puma "NC, 01701" "The dwelling unit is located in NC, the NHGIS PUMA code is 01701" +in.puma "NC, 01702" "The dwelling unit is located in NC, the NHGIS PUMA code is 01702" +in.puma "NC, 01703" "The dwelling unit is located in NC, the NHGIS PUMA code is 01703" +in.puma "NC, 01704" "The dwelling unit is located in NC, the NHGIS PUMA code is 01704" +in.puma "NC, 01801" "The dwelling unit is located in NC, the NHGIS PUMA code is 01801" +in.puma "NC, 01802" "The dwelling unit is located in NC, the NHGIS PUMA code is 01802" +in.puma "NC, 01803" "The dwelling unit is located in NC, the NHGIS PUMA code is 01803" +in.puma "NC, 01900" "The dwelling unit is located in NC, the NHGIS PUMA code is 01900" +in.puma "NC, 02000" "The dwelling unit is located in NC, the NHGIS PUMA code is 02000" +in.puma "NC, 02100" "The dwelling unit is located in NC, the NHGIS PUMA code is 02100" +in.puma "NC, 02201" "The dwelling unit is located in NC, the NHGIS PUMA code is 02201" +in.puma "NC, 02202" "The dwelling unit is located in NC, the NHGIS PUMA code is 02202" +in.puma "NC, 02300" "The dwelling unit is located in NC, the NHGIS PUMA code is 02300" +in.puma "NC, 02400" "The dwelling unit is located in NC, the NHGIS PUMA code is 02400" +in.puma "NC, 02500" "The dwelling unit is located in NC, the NHGIS PUMA code is 02500" +in.puma "NC, 02600" "The dwelling unit is located in NC, the NHGIS PUMA code is 02600" +in.puma "NC, 02700" "The dwelling unit is located in NC, the NHGIS PUMA code is 02700" +in.puma "NC, 02800" "The dwelling unit is located in NC, the NHGIS PUMA code is 02800" +in.puma "NC, 02900" "The dwelling unit is located in NC, the NHGIS PUMA code is 02900" +in.puma "NC, 03001" "The dwelling unit is located in NC, the NHGIS PUMA code is 03001" +in.puma "NC, 03002" "The dwelling unit is located in NC, the NHGIS PUMA code is 03002" +in.puma "NC, 03101" "The dwelling unit is located in NC, the NHGIS PUMA code is 03101" +in.puma "NC, 03102" "The dwelling unit is located in NC, the NHGIS PUMA code is 03102" +in.puma "NC, 03103" "The dwelling unit is located in NC, the NHGIS PUMA code is 03103" +in.puma "NC, 03104" "The dwelling unit is located in NC, the NHGIS PUMA code is 03104" +in.puma "NC, 03105" "The dwelling unit is located in NC, the NHGIS PUMA code is 03105" +in.puma "NC, 03106" "The dwelling unit is located in NC, the NHGIS PUMA code is 03106" +in.puma "NC, 03107" "The dwelling unit is located in NC, the NHGIS PUMA code is 03107" +in.puma "NC, 03108" "The dwelling unit is located in NC, the NHGIS PUMA code is 03108" +in.puma "NC, 03200" "The dwelling unit is located in NC, the NHGIS PUMA code is 03200" +in.puma "NC, 03300" "The dwelling unit is located in NC, the NHGIS PUMA code is 03300" +in.puma "NC, 03400" "The dwelling unit is located in NC, the NHGIS PUMA code is 03400" +in.puma "NC, 03500" "The dwelling unit is located in NC, the NHGIS PUMA code is 03500" +in.puma "NC, 03600" "The dwelling unit is located in NC, the NHGIS PUMA code is 03600" +in.puma "NC, 03700" "The dwelling unit is located in NC, the NHGIS PUMA code is 03700" +in.puma "NC, 03800" "The dwelling unit is located in NC, the NHGIS PUMA code is 03800" +in.puma "NC, 03900" "The dwelling unit is located in NC, the NHGIS PUMA code is 03900" +in.puma "NC, 04000" "The dwelling unit is located in NC, the NHGIS PUMA code is 04000" +in.puma "NC, 04100" "The dwelling unit is located in NC, the NHGIS PUMA code is 04100" +in.puma "NC, 04200" "The dwelling unit is located in NC, the NHGIS PUMA code is 04200" +in.puma "NC, 04300" "The dwelling unit is located in NC, the NHGIS PUMA code is 04300" +in.puma "NC, 04400" "The dwelling unit is located in NC, the NHGIS PUMA code is 04400" +in.puma "NC, 04500" "The dwelling unit is located in NC, the NHGIS PUMA code is 04500" +in.puma "NC, 04600" "The dwelling unit is located in NC, the NHGIS PUMA code is 04600" +in.puma "NC, 04700" "The dwelling unit is located in NC, the NHGIS PUMA code is 04700" +in.puma "NC, 04800" "The dwelling unit is located in NC, the NHGIS PUMA code is 04800" +in.puma "NC, 04900" "The dwelling unit is located in NC, the NHGIS PUMA code is 04900" +in.puma "NC, 05001" "The dwelling unit is located in NC, the NHGIS PUMA code is 05001" +in.puma "NC, 05002" "The dwelling unit is located in NC, the NHGIS PUMA code is 05002" +in.puma "NC, 05003" "The dwelling unit is located in NC, the NHGIS PUMA code is 05003" +in.puma "NC, 05100" "The dwelling unit is located in NC, the NHGIS PUMA code is 05100" +in.puma "NC, 05200" "The dwelling unit is located in NC, the NHGIS PUMA code is 05200" +in.puma "NC, 05300" "The dwelling unit is located in NC, the NHGIS PUMA code is 05300" +in.puma "NC, 05400" "The dwelling unit is located in NC, the NHGIS PUMA code is 05400" +in.puma "ND, 00100" "The dwelling unit is located in ND, the NHGIS PUMA code is 00100" +in.puma "ND, 00200" "The dwelling unit is located in ND, the NHGIS PUMA code is 00200" +in.puma "ND, 00300" "The dwelling unit is located in ND, the NHGIS PUMA code is 00300" +in.puma "ND, 00400" "The dwelling unit is located in ND, the NHGIS PUMA code is 00400" +in.puma "ND, 00500" "The dwelling unit is located in ND, the NHGIS PUMA code is 00500" +in.puma "NE, 00100" "The dwelling unit is located in NE, the NHGIS PUMA code is 00100" +in.puma "NE, 00200" "The dwelling unit is located in NE, the NHGIS PUMA code is 00200" +in.puma "NE, 00300" "The dwelling unit is located in NE, the NHGIS PUMA code is 00300" +in.puma "NE, 00400" "The dwelling unit is located in NE, the NHGIS PUMA code is 00400" +in.puma "NE, 00500" "The dwelling unit is located in NE, the NHGIS PUMA code is 00500" +in.puma "NE, 00600" "The dwelling unit is located in NE, the NHGIS PUMA code is 00600" +in.puma "NE, 00701" "The dwelling unit is located in NE, the NHGIS PUMA code is 00701" +in.puma "NE, 00702" "The dwelling unit is located in NE, the NHGIS PUMA code is 00702" +in.puma "NE, 00801" "The dwelling unit is located in NE, the NHGIS PUMA code is 00801" +in.puma "NE, 00802" "The dwelling unit is located in NE, the NHGIS PUMA code is 00802" +in.puma "NE, 00901" "The dwelling unit is located in NE, the NHGIS PUMA code is 00901" +in.puma "NE, 00902" "The dwelling unit is located in NE, the NHGIS PUMA code is 00902" +in.puma "NE, 00903" "The dwelling unit is located in NE, the NHGIS PUMA code is 00903" +in.puma "NE, 00904" "The dwelling unit is located in NE, the NHGIS PUMA code is 00904" +in.puma "NH, 00100" "The dwelling unit is located in NH, the NHGIS PUMA code is 00100" +in.puma "NH, 00200" "The dwelling unit is located in NH, the NHGIS PUMA code is 00200" +in.puma "NH, 00300" "The dwelling unit is located in NH, the NHGIS PUMA code is 00300" +in.puma "NH, 00400" "The dwelling unit is located in NH, the NHGIS PUMA code is 00400" +in.puma "NH, 00500" "The dwelling unit is located in NH, the NHGIS PUMA code is 00500" +in.puma "NH, 00600" "The dwelling unit is located in NH, the NHGIS PUMA code is 00600" +in.puma "NH, 00700" "The dwelling unit is located in NH, the NHGIS PUMA code is 00700" +in.puma "NH, 00800" "The dwelling unit is located in NH, the NHGIS PUMA code is 00800" +in.puma "NH, 00900" "The dwelling unit is located in NH, the NHGIS PUMA code is 00900" +in.puma "NH, 01000" "The dwelling unit is located in NH, the NHGIS PUMA code is 01000" +in.puma "NJ, 00101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00101" +in.puma "NJ, 00102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00102" +in.puma "NJ, 00301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00301" +in.puma "NJ, 00302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00302" +in.puma "NJ, 00303" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00303" +in.puma "NJ, 00304" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00304" +in.puma "NJ, 00305" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00305" +in.puma "NJ, 00306" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00306" +in.puma "NJ, 00307" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00307" +in.puma "NJ, 00308" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00308" +in.puma "NJ, 00400" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00400" +in.puma "NJ, 00501" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00501" +in.puma "NJ, 00502" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00502" +in.puma "NJ, 00503" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00503" +in.puma "NJ, 00601" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00601" +in.puma "NJ, 00602" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00602" +in.puma "NJ, 00701" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00701" +in.puma "NJ, 00702" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00702" +in.puma "NJ, 00703" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00703" +in.puma "NJ, 00800" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00800" +in.puma "NJ, 00901" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00901" +in.puma "NJ, 00902" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00902" +in.puma "NJ, 00903" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00903" +in.puma "NJ, 00904" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00904" +in.puma "NJ, 00905" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00905" +in.puma "NJ, 00906" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00906" +in.puma "NJ, 00907" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00907" +in.puma "NJ, 01001" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01001" +in.puma "NJ, 01002" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01002" +in.puma "NJ, 01003" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01003" +in.puma "NJ, 01101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01101" +in.puma "NJ, 01102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01102" +in.puma "NJ, 01103" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01103" +in.puma "NJ, 01104" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01104" +in.puma "NJ, 01105" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01105" +in.puma "NJ, 01106" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01106" +in.puma "NJ, 01201" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01201" +in.puma "NJ, 01202" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01202" +in.puma "NJ, 01203" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01203" +in.puma "NJ, 01204" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01204" +in.puma "NJ, 01205" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01205" +in.puma "NJ, 01301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01301" +in.puma "NJ, 01302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01302" +in.puma "NJ, 01401" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01401" +in.puma "NJ, 01402" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01402" +in.puma "NJ, 01403" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01403" +in.puma "NJ, 01404" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01404" +in.puma "NJ, 01501" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01501" +in.puma "NJ, 01502" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01502" +in.puma "NJ, 01503" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01503" +in.puma "NJ, 01504" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01504" +in.puma "NJ, 01600" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01600" +in.puma "NJ, 01700" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01700" +in.puma "NJ, 01800" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01800" +in.puma "NJ, 01901" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01901" +in.puma "NJ, 01902" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01902" +in.puma "NJ, 01903" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01903" +in.puma "NJ, 01904" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01904" +in.puma "NJ, 02001" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02001" +in.puma "NJ, 02002" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02002" +in.puma "NJ, 02003" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02003" +in.puma "NJ, 02101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02101" +in.puma "NJ, 02102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02102" +in.puma "NJ, 02103" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02103" +in.puma "NJ, 02104" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02104" +in.puma "NJ, 02201" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02201" +in.puma "NJ, 02202" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02202" +in.puma "NJ, 02301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02301" +in.puma "NJ, 02302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02302" +in.puma "NJ, 02303" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02303" +in.puma "NJ, 02400" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02400" +in.puma "NJ, 02500" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02500" +in.puma "NJ, 02600" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02600" +in.puma "NM, 00100" "The dwelling unit is located in NM, the NHGIS PUMA code is 00100" +in.puma "NM, 00200" "The dwelling unit is located in NM, the NHGIS PUMA code is 00200" +in.puma "NM, 00300" "The dwelling unit is located in NM, the NHGIS PUMA code is 00300" +in.puma "NM, 00400" "The dwelling unit is located in NM, the NHGIS PUMA code is 00400" +in.puma "NM, 00500" "The dwelling unit is located in NM, the NHGIS PUMA code is 00500" +in.puma "NM, 00600" "The dwelling unit is located in NM, the NHGIS PUMA code is 00600" +in.puma "NM, 00700" "The dwelling unit is located in NM, the NHGIS PUMA code is 00700" +in.puma "NM, 00801" "The dwelling unit is located in NM, the NHGIS PUMA code is 00801" +in.puma "NM, 00802" "The dwelling unit is located in NM, the NHGIS PUMA code is 00802" +in.puma "NM, 00803" "The dwelling unit is located in NM, the NHGIS PUMA code is 00803" +in.puma "NM, 00804" "The dwelling unit is located in NM, the NHGIS PUMA code is 00804" +in.puma "NM, 00805" "The dwelling unit is located in NM, the NHGIS PUMA code is 00805" +in.puma "NM, 00806" "The dwelling unit is located in NM, the NHGIS PUMA code is 00806" +in.puma "NM, 00900" "The dwelling unit is located in NM, the NHGIS PUMA code is 00900" +in.puma "NM, 01001" "The dwelling unit is located in NM, the NHGIS PUMA code is 01001" +in.puma "NM, 01002" "The dwelling unit is located in NM, the NHGIS PUMA code is 01002" +in.puma "NM, 01100" "The dwelling unit is located in NM, the NHGIS PUMA code is 01100" +in.puma "NM, 01200" "The dwelling unit is located in NM, the NHGIS PUMA code is 01200" +in.puma "NV, 00101" "The dwelling unit is located in NV, the NHGIS PUMA code is 00101" +in.puma "NV, 00102" "The dwelling unit is located in NV, the NHGIS PUMA code is 00102" +in.puma "NV, 00103" "The dwelling unit is located in NV, the NHGIS PUMA code is 00103" +in.puma "NV, 00200" "The dwelling unit is located in NV, the NHGIS PUMA code is 00200" +in.puma "NV, 00300" "The dwelling unit is located in NV, the NHGIS PUMA code is 00300" +in.puma "NV, 00401" "The dwelling unit is located in NV, the NHGIS PUMA code is 00401" +in.puma "NV, 00402" "The dwelling unit is located in NV, the NHGIS PUMA code is 00402" +in.puma "NV, 00403" "The dwelling unit is located in NV, the NHGIS PUMA code is 00403" +in.puma "NV, 00404" "The dwelling unit is located in NV, the NHGIS PUMA code is 00404" +in.puma "NV, 00405" "The dwelling unit is located in NV, the NHGIS PUMA code is 00405" +in.puma "NV, 00406" "The dwelling unit is located in NV, the NHGIS PUMA code is 00406" +in.puma "NV, 00407" "The dwelling unit is located in NV, the NHGIS PUMA code is 00407" +in.puma "NV, 00408" "The dwelling unit is located in NV, the NHGIS PUMA code is 00408" +in.puma "NV, 00409" "The dwelling unit is located in NV, the NHGIS PUMA code is 00409" +in.puma "NV, 00410" "The dwelling unit is located in NV, the NHGIS PUMA code is 00410" +in.puma "NV, 00411" "The dwelling unit is located in NV, the NHGIS PUMA code is 00411" +in.puma "NV, 00412" "The dwelling unit is located in NV, the NHGIS PUMA code is 00412" +in.puma "NV, 00413" "The dwelling unit is located in NV, the NHGIS PUMA code is 00413" +in.puma "NY, 00100" "The dwelling unit is located in NY, the NHGIS PUMA code is 00100" +in.puma "NY, 00200" "The dwelling unit is located in NY, the NHGIS PUMA code is 00200" +in.puma "NY, 00300" "The dwelling unit is located in NY, the NHGIS PUMA code is 00300" +in.puma "NY, 00401" "The dwelling unit is located in NY, the NHGIS PUMA code is 00401" +in.puma "NY, 00402" "The dwelling unit is located in NY, the NHGIS PUMA code is 00402" +in.puma "NY, 00403" "The dwelling unit is located in NY, the NHGIS PUMA code is 00403" +in.puma "NY, 00500" "The dwelling unit is located in NY, the NHGIS PUMA code is 00500" +in.puma "NY, 00600" "The dwelling unit is located in NY, the NHGIS PUMA code is 00600" +in.puma "NY, 00701" "The dwelling unit is located in NY, the NHGIS PUMA code is 00701" +in.puma "NY, 00702" "The dwelling unit is located in NY, the NHGIS PUMA code is 00702" +in.puma "NY, 00703" "The dwelling unit is located in NY, the NHGIS PUMA code is 00703" +in.puma "NY, 00704" "The dwelling unit is located in NY, the NHGIS PUMA code is 00704" +in.puma "NY, 00800" "The dwelling unit is located in NY, the NHGIS PUMA code is 00800" +in.puma "NY, 00901" "The dwelling unit is located in NY, the NHGIS PUMA code is 00901" +in.puma "NY, 00902" "The dwelling unit is located in NY, the NHGIS PUMA code is 00902" +in.puma "NY, 00903" "The dwelling unit is located in NY, the NHGIS PUMA code is 00903" +in.puma "NY, 00904" "The dwelling unit is located in NY, the NHGIS PUMA code is 00904" +in.puma "NY, 00905" "The dwelling unit is located in NY, the NHGIS PUMA code is 00905" +in.puma "NY, 00906" "The dwelling unit is located in NY, the NHGIS PUMA code is 00906" +in.puma "NY, 01000" "The dwelling unit is located in NY, the NHGIS PUMA code is 01000" +in.puma "NY, 01101" "The dwelling unit is located in NY, the NHGIS PUMA code is 01101" +in.puma "NY, 01102" "The dwelling unit is located in NY, the NHGIS PUMA code is 01102" +in.puma "NY, 01201" "The dwelling unit is located in NY, the NHGIS PUMA code is 01201" +in.puma "NY, 01202" "The dwelling unit is located in NY, the NHGIS PUMA code is 01202" +in.puma "NY, 01203" "The dwelling unit is located in NY, the NHGIS PUMA code is 01203" +in.puma "NY, 01204" "The dwelling unit is located in NY, the NHGIS PUMA code is 01204" +in.puma "NY, 01205" "The dwelling unit is located in NY, the NHGIS PUMA code is 01205" +in.puma "NY, 01206" "The dwelling unit is located in NY, the NHGIS PUMA code is 01206" +in.puma "NY, 01207" "The dwelling unit is located in NY, the NHGIS PUMA code is 01207" +in.puma "NY, 01300" "The dwelling unit is located in NY, the NHGIS PUMA code is 01300" +in.puma "NY, 01400" "The dwelling unit is located in NY, the NHGIS PUMA code is 01400" +in.puma "NY, 01500" "The dwelling unit is located in NY, the NHGIS PUMA code is 01500" +in.puma "NY, 01600" "The dwelling unit is located in NY, the NHGIS PUMA code is 01600" +in.puma "NY, 01700" "The dwelling unit is located in NY, the NHGIS PUMA code is 01700" +in.puma "NY, 01801" "The dwelling unit is located in NY, the NHGIS PUMA code is 01801" +in.puma "NY, 01802" "The dwelling unit is located in NY, the NHGIS PUMA code is 01802" +in.puma "NY, 01900" "The dwelling unit is located in NY, the NHGIS PUMA code is 01900" +in.puma "NY, 02001" "The dwelling unit is located in NY, the NHGIS PUMA code is 02001" +in.puma "NY, 02002" "The dwelling unit is located in NY, the NHGIS PUMA code is 02002" +in.puma "NY, 02100" "The dwelling unit is located in NY, the NHGIS PUMA code is 02100" +in.puma "NY, 02201" "The dwelling unit is located in NY, the NHGIS PUMA code is 02201" +in.puma "NY, 02202" "The dwelling unit is located in NY, the NHGIS PUMA code is 02202" +in.puma "NY, 02203" "The dwelling unit is located in NY, the NHGIS PUMA code is 02203" +in.puma "NY, 02300" "The dwelling unit is located in NY, the NHGIS PUMA code is 02300" +in.puma "NY, 02401" "The dwelling unit is located in NY, the NHGIS PUMA code is 02401" +in.puma "NY, 02402" "The dwelling unit is located in NY, the NHGIS PUMA code is 02402" +in.puma "NY, 02500" "The dwelling unit is located in NY, the NHGIS PUMA code is 02500" +in.puma "NY, 02600" "The dwelling unit is located in NY, the NHGIS PUMA code is 02600" +in.puma "NY, 02701" "The dwelling unit is located in NY, the NHGIS PUMA code is 02701" +in.puma "NY, 02702" "The dwelling unit is located in NY, the NHGIS PUMA code is 02702" +in.puma "NY, 02801" "The dwelling unit is located in NY, the NHGIS PUMA code is 02801" +in.puma "NY, 02802" "The dwelling unit is located in NY, the NHGIS PUMA code is 02802" +in.puma "NY, 02901" "The dwelling unit is located in NY, the NHGIS PUMA code is 02901" +in.puma "NY, 02902" "The dwelling unit is located in NY, the NHGIS PUMA code is 02902" +in.puma "NY, 02903" "The dwelling unit is located in NY, the NHGIS PUMA code is 02903" +in.puma "NY, 03001" "The dwelling unit is located in NY, the NHGIS PUMA code is 03001" +in.puma "NY, 03002" "The dwelling unit is located in NY, the NHGIS PUMA code is 03002" +in.puma "NY, 03003" "The dwelling unit is located in NY, the NHGIS PUMA code is 03003" +in.puma "NY, 03101" "The dwelling unit is located in NY, the NHGIS PUMA code is 03101" +in.puma "NY, 03102" "The dwelling unit is located in NY, the NHGIS PUMA code is 03102" +in.puma "NY, 03103" "The dwelling unit is located in NY, the NHGIS PUMA code is 03103" +in.puma "NY, 03104" "The dwelling unit is located in NY, the NHGIS PUMA code is 03104" +in.puma "NY, 03105" "The dwelling unit is located in NY, the NHGIS PUMA code is 03105" +in.puma "NY, 03106" "The dwelling unit is located in NY, the NHGIS PUMA code is 03106" +in.puma "NY, 03107" "The dwelling unit is located in NY, the NHGIS PUMA code is 03107" +in.puma "NY, 03201" "The dwelling unit is located in NY, the NHGIS PUMA code is 03201" +in.puma "NY, 03202" "The dwelling unit is located in NY, the NHGIS PUMA code is 03202" +in.puma "NY, 03203" "The dwelling unit is located in NY, the NHGIS PUMA code is 03203" +in.puma "NY, 03204" "The dwelling unit is located in NY, the NHGIS PUMA code is 03204" +in.puma "NY, 03205" "The dwelling unit is located in NY, the NHGIS PUMA code is 03205" +in.puma "NY, 03206" "The dwelling unit is located in NY, the NHGIS PUMA code is 03206" +in.puma "NY, 03207" "The dwelling unit is located in NY, the NHGIS PUMA code is 03207" +in.puma "NY, 03208" "The dwelling unit is located in NY, the NHGIS PUMA code is 03208" +in.puma "NY, 03209" "The dwelling unit is located in NY, the NHGIS PUMA code is 03209" +in.puma "NY, 03210" "The dwelling unit is located in NY, the NHGIS PUMA code is 03210" +in.puma "NY, 03211" "The dwelling unit is located in NY, the NHGIS PUMA code is 03211" +in.puma "NY, 03212" "The dwelling unit is located in NY, the NHGIS PUMA code is 03212" +in.puma "NY, 03301" "The dwelling unit is located in NY, the NHGIS PUMA code is 03301" +in.puma "NY, 03302" "The dwelling unit is located in NY, the NHGIS PUMA code is 03302" +in.puma "NY, 03303" "The dwelling unit is located in NY, the NHGIS PUMA code is 03303" +in.puma "NY, 03304" "The dwelling unit is located in NY, the NHGIS PUMA code is 03304" +in.puma "NY, 03305" "The dwelling unit is located in NY, the NHGIS PUMA code is 03305" +in.puma "NY, 03306" "The dwelling unit is located in NY, the NHGIS PUMA code is 03306" +in.puma "NY, 03307" "The dwelling unit is located in NY, the NHGIS PUMA code is 03307" +in.puma "NY, 03308" "The dwelling unit is located in NY, the NHGIS PUMA code is 03308" +in.puma "NY, 03309" "The dwelling unit is located in NY, the NHGIS PUMA code is 03309" +in.puma "NY, 03310" "The dwelling unit is located in NY, the NHGIS PUMA code is 03310" +in.puma "NY, 03311" "The dwelling unit is located in NY, the NHGIS PUMA code is 03311" +in.puma "NY, 03312" "The dwelling unit is located in NY, the NHGIS PUMA code is 03312" +in.puma "NY, 03313" "The dwelling unit is located in NY, the NHGIS PUMA code is 03313" +in.puma "NY, 03701" "The dwelling unit is located in NY, the NHGIS PUMA code is 03701" +in.puma "NY, 03702" "The dwelling unit is located in NY, the NHGIS PUMA code is 03702" +in.puma "NY, 03703" "The dwelling unit is located in NY, the NHGIS PUMA code is 03703" +in.puma "NY, 03704" "The dwelling unit is located in NY, the NHGIS PUMA code is 03704" +in.puma "NY, 03705" "The dwelling unit is located in NY, the NHGIS PUMA code is 03705" +in.puma "NY, 03706" "The dwelling unit is located in NY, the NHGIS PUMA code is 03706" +in.puma "NY, 03707" "The dwelling unit is located in NY, the NHGIS PUMA code is 03707" +in.puma "NY, 03708" "The dwelling unit is located in NY, the NHGIS PUMA code is 03708" +in.puma "NY, 03709" "The dwelling unit is located in NY, the NHGIS PUMA code is 03709" +in.puma "NY, 03710" "The dwelling unit is located in NY, the NHGIS PUMA code is 03710" +in.puma "NY, 03801" "The dwelling unit is located in NY, the NHGIS PUMA code is 03801" +in.puma "NY, 03802" "The dwelling unit is located in NY, the NHGIS PUMA code is 03802" +in.puma "NY, 03803" "The dwelling unit is located in NY, the NHGIS PUMA code is 03803" +in.puma "NY, 03804" "The dwelling unit is located in NY, the NHGIS PUMA code is 03804" +in.puma "NY, 03805" "The dwelling unit is located in NY, the NHGIS PUMA code is 03805" +in.puma "NY, 03806" "The dwelling unit is located in NY, the NHGIS PUMA code is 03806" +in.puma "NY, 03807" "The dwelling unit is located in NY, the NHGIS PUMA code is 03807" +in.puma "NY, 03808" "The dwelling unit is located in NY, the NHGIS PUMA code is 03808" +in.puma "NY, 03809" "The dwelling unit is located in NY, the NHGIS PUMA code is 03809" +in.puma "NY, 03810" "The dwelling unit is located in NY, the NHGIS PUMA code is 03810" +in.puma "NY, 03901" "The dwelling unit is located in NY, the NHGIS PUMA code is 03901" +in.puma "NY, 03902" "The dwelling unit is located in NY, the NHGIS PUMA code is 03902" +in.puma "NY, 03903" "The dwelling unit is located in NY, the NHGIS PUMA code is 03903" +in.puma "NY, 04001" "The dwelling unit is located in NY, the NHGIS PUMA code is 04001" +in.puma "NY, 04002" "The dwelling unit is located in NY, the NHGIS PUMA code is 04002" +in.puma "NY, 04003" "The dwelling unit is located in NY, the NHGIS PUMA code is 04003" +in.puma "NY, 04004" "The dwelling unit is located in NY, the NHGIS PUMA code is 04004" +in.puma "NY, 04005" "The dwelling unit is located in NY, the NHGIS PUMA code is 04005" +in.puma "NY, 04006" "The dwelling unit is located in NY, the NHGIS PUMA code is 04006" +in.puma "NY, 04007" "The dwelling unit is located in NY, the NHGIS PUMA code is 04007" +in.puma "NY, 04008" "The dwelling unit is located in NY, the NHGIS PUMA code is 04008" +in.puma "NY, 04009" "The dwelling unit is located in NY, the NHGIS PUMA code is 04009" +in.puma "NY, 04010" "The dwelling unit is located in NY, the NHGIS PUMA code is 04010" +in.puma "NY, 04011" "The dwelling unit is located in NY, the NHGIS PUMA code is 04011" +in.puma "NY, 04012" "The dwelling unit is located in NY, the NHGIS PUMA code is 04012" +in.puma "NY, 04013" "The dwelling unit is located in NY, the NHGIS PUMA code is 04013" +in.puma "NY, 04014" "The dwelling unit is located in NY, the NHGIS PUMA code is 04014" +in.puma "NY, 04015" "The dwelling unit is located in NY, the NHGIS PUMA code is 04015" +in.puma "NY, 04016" "The dwelling unit is located in NY, the NHGIS PUMA code is 04016" +in.puma "NY, 04017" "The dwelling unit is located in NY, the NHGIS PUMA code is 04017" +in.puma "NY, 04018" "The dwelling unit is located in NY, the NHGIS PUMA code is 04018" +in.puma "NY, 04101" "The dwelling unit is located in NY, the NHGIS PUMA code is 04101" +in.puma "NY, 04102" "The dwelling unit is located in NY, the NHGIS PUMA code is 04102" +in.puma "NY, 04103" "The dwelling unit is located in NY, the NHGIS PUMA code is 04103" +in.puma "NY, 04104" "The dwelling unit is located in NY, the NHGIS PUMA code is 04104" +in.puma "NY, 04105" "The dwelling unit is located in NY, the NHGIS PUMA code is 04105" +in.puma "NY, 04106" "The dwelling unit is located in NY, the NHGIS PUMA code is 04106" +in.puma "NY, 04107" "The dwelling unit is located in NY, the NHGIS PUMA code is 04107" +in.puma "NY, 04108" "The dwelling unit is located in NY, the NHGIS PUMA code is 04108" +in.puma "NY, 04109" "The dwelling unit is located in NY, the NHGIS PUMA code is 04109" +in.puma "NY, 04110" "The dwelling unit is located in NY, the NHGIS PUMA code is 04110" +in.puma "NY, 04111" "The dwelling unit is located in NY, the NHGIS PUMA code is 04111" +in.puma "NY, 04112" "The dwelling unit is located in NY, the NHGIS PUMA code is 04112" +in.puma "NY, 04113" "The dwelling unit is located in NY, the NHGIS PUMA code is 04113" +in.puma "NY, 04114" "The dwelling unit is located in NY, the NHGIS PUMA code is 04114" +in.puma "OH, 00100" "The dwelling unit is located in OH, the NHGIS PUMA code is 00100" +in.puma "OH, 00200" "The dwelling unit is located in OH, the NHGIS PUMA code is 00200" +in.puma "OH, 00300" "The dwelling unit is located in OH, the NHGIS PUMA code is 00300" +in.puma "OH, 00400" "The dwelling unit is located in OH, the NHGIS PUMA code is 00400" +in.puma "OH, 00500" "The dwelling unit is located in OH, the NHGIS PUMA code is 00500" +in.puma "OH, 00600" "The dwelling unit is located in OH, the NHGIS PUMA code is 00600" +in.puma "OH, 00700" "The dwelling unit is located in OH, the NHGIS PUMA code is 00700" +in.puma "OH, 00801" "The dwelling unit is located in OH, the NHGIS PUMA code is 00801" +in.puma "OH, 00802" "The dwelling unit is located in OH, the NHGIS PUMA code is 00802" +in.puma "OH, 00901" "The dwelling unit is located in OH, the NHGIS PUMA code is 00901" +in.puma "OH, 00902" "The dwelling unit is located in OH, the NHGIS PUMA code is 00902" +in.puma "OH, 00903" "The dwelling unit is located in OH, the NHGIS PUMA code is 00903" +in.puma "OH, 00904" "The dwelling unit is located in OH, the NHGIS PUMA code is 00904" +in.puma "OH, 00905" "The dwelling unit is located in OH, the NHGIS PUMA code is 00905" +in.puma "OH, 00906" "The dwelling unit is located in OH, the NHGIS PUMA code is 00906" +in.puma "OH, 00907" "The dwelling unit is located in OH, the NHGIS PUMA code is 00907" +in.puma "OH, 00908" "The dwelling unit is located in OH, the NHGIS PUMA code is 00908" +in.puma "OH, 00909" "The dwelling unit is located in OH, the NHGIS PUMA code is 00909" +in.puma "OH, 00910" "The dwelling unit is located in OH, the NHGIS PUMA code is 00910" +in.puma "OH, 01000" "The dwelling unit is located in OH, the NHGIS PUMA code is 01000" +in.puma "OH, 01100" "The dwelling unit is located in OH, the NHGIS PUMA code is 01100" +in.puma "OH, 01200" "The dwelling unit is located in OH, the NHGIS PUMA code is 01200" +in.puma "OH, 01300" "The dwelling unit is located in OH, the NHGIS PUMA code is 01300" +in.puma "OH, 01400" "The dwelling unit is located in OH, the NHGIS PUMA code is 01400" +in.puma "OH, 01500" "The dwelling unit is located in OH, the NHGIS PUMA code is 01500" +in.puma "OH, 01600" "The dwelling unit is located in OH, the NHGIS PUMA code is 01600" +in.puma "OH, 01700" "The dwelling unit is located in OH, the NHGIS PUMA code is 01700" +in.puma "OH, 01801" "The dwelling unit is located in OH, the NHGIS PUMA code is 01801" +in.puma "OH, 01802" "The dwelling unit is located in OH, the NHGIS PUMA code is 01802" +in.puma "OH, 01803" "The dwelling unit is located in OH, the NHGIS PUMA code is 01803" +in.puma "OH, 01804" "The dwelling unit is located in OH, the NHGIS PUMA code is 01804" +in.puma "OH, 01805" "The dwelling unit is located in OH, the NHGIS PUMA code is 01805" +in.puma "OH, 01900" "The dwelling unit is located in OH, the NHGIS PUMA code is 01900" +in.puma "OH, 02000" "The dwelling unit is located in OH, the NHGIS PUMA code is 02000" +in.puma "OH, 02100" "The dwelling unit is located in OH, the NHGIS PUMA code is 02100" +in.puma "OH, 02200" "The dwelling unit is located in OH, the NHGIS PUMA code is 02200" +in.puma "OH, 02300" "The dwelling unit is located in OH, the NHGIS PUMA code is 02300" +in.puma "OH, 02400" "The dwelling unit is located in OH, the NHGIS PUMA code is 02400" +in.puma "OH, 02500" "The dwelling unit is located in OH, the NHGIS PUMA code is 02500" +in.puma "OH, 02600" "The dwelling unit is located in OH, the NHGIS PUMA code is 02600" +in.puma "OH, 02700" "The dwelling unit is located in OH, the NHGIS PUMA code is 02700" +in.puma "OH, 02800" "The dwelling unit is located in OH, the NHGIS PUMA code is 02800" +in.puma "OH, 02900" "The dwelling unit is located in OH, the NHGIS PUMA code is 02900" +in.puma "OH, 03000" "The dwelling unit is located in OH, the NHGIS PUMA code is 03000" +in.puma "OH, 03100" "The dwelling unit is located in OH, the NHGIS PUMA code is 03100" +in.puma "OH, 03200" "The dwelling unit is located in OH, the NHGIS PUMA code is 03200" +in.puma "OH, 03300" "The dwelling unit is located in OH, the NHGIS PUMA code is 03300" +in.puma "OH, 03400" "The dwelling unit is located in OH, the NHGIS PUMA code is 03400" +in.puma "OH, 03500" "The dwelling unit is located in OH, the NHGIS PUMA code is 03500" +in.puma "OH, 03600" "The dwelling unit is located in OH, the NHGIS PUMA code is 03600" +in.puma "OH, 03700" "The dwelling unit is located in OH, the NHGIS PUMA code is 03700" +in.puma "OH, 03800" "The dwelling unit is located in OH, the NHGIS PUMA code is 03800" +in.puma "OH, 03900" "The dwelling unit is located in OH, the NHGIS PUMA code is 03900" +in.puma "OH, 04000" "The dwelling unit is located in OH, the NHGIS PUMA code is 04000" +in.puma "OH, 04101" "The dwelling unit is located in OH, the NHGIS PUMA code is 04101" +in.puma "OH, 04102" "The dwelling unit is located in OH, the NHGIS PUMA code is 04102" +in.puma "OH, 04103" "The dwelling unit is located in OH, the NHGIS PUMA code is 04103" +in.puma "OH, 04104" "The dwelling unit is located in OH, the NHGIS PUMA code is 04104" +in.puma "OH, 04105" "The dwelling unit is located in OH, the NHGIS PUMA code is 04105" +in.puma "OH, 04106" "The dwelling unit is located in OH, the NHGIS PUMA code is 04106" +in.puma "OH, 04107" "The dwelling unit is located in OH, the NHGIS PUMA code is 04107" +in.puma "OH, 04108" "The dwelling unit is located in OH, the NHGIS PUMA code is 04108" +in.puma "OH, 04109" "The dwelling unit is located in OH, the NHGIS PUMA code is 04109" +in.puma "OH, 04110" "The dwelling unit is located in OH, the NHGIS PUMA code is 04110" +in.puma "OH, 04111" "The dwelling unit is located in OH, the NHGIS PUMA code is 04111" +in.puma "OH, 04200" "The dwelling unit is located in OH, the NHGIS PUMA code is 04200" +in.puma "OH, 04300" "The dwelling unit is located in OH, the NHGIS PUMA code is 04300" +in.puma "OH, 04400" "The dwelling unit is located in OH, the NHGIS PUMA code is 04400" +in.puma "OH, 04500" "The dwelling unit is located in OH, the NHGIS PUMA code is 04500" +in.puma "OH, 04601" "The dwelling unit is located in OH, the NHGIS PUMA code is 04601" +in.puma "OH, 04602" "The dwelling unit is located in OH, the NHGIS PUMA code is 04602" +in.puma "OH, 04603" "The dwelling unit is located in OH, the NHGIS PUMA code is 04603" +in.puma "OH, 04604" "The dwelling unit is located in OH, the NHGIS PUMA code is 04604" +in.puma "OH, 04700" "The dwelling unit is located in OH, the NHGIS PUMA code is 04700" +in.puma "OH, 04800" "The dwelling unit is located in OH, the NHGIS PUMA code is 04800" +in.puma "OH, 04900" "The dwelling unit is located in OH, the NHGIS PUMA code is 04900" +in.puma "OH, 05000" "The dwelling unit is located in OH, the NHGIS PUMA code is 05000" +in.puma "OH, 05100" "The dwelling unit is located in OH, the NHGIS PUMA code is 05100" +in.puma "OH, 05200" "The dwelling unit is located in OH, the NHGIS PUMA code is 05200" +in.puma "OH, 05301" "The dwelling unit is located in OH, the NHGIS PUMA code is 05301" +in.puma "OH, 05302" "The dwelling unit is located in OH, the NHGIS PUMA code is 05302" +in.puma "OH, 05401" "The dwelling unit is located in OH, the NHGIS PUMA code is 05401" +in.puma "OH, 05402" "The dwelling unit is located in OH, the NHGIS PUMA code is 05402" +in.puma "OH, 05403" "The dwelling unit is located in OH, the NHGIS PUMA code is 05403" +in.puma "OH, 05501" "The dwelling unit is located in OH, the NHGIS PUMA code is 05501" +in.puma "OH, 05502" "The dwelling unit is located in OH, the NHGIS PUMA code is 05502" +in.puma "OH, 05503" "The dwelling unit is located in OH, the NHGIS PUMA code is 05503" +in.puma "OH, 05504" "The dwelling unit is located in OH, the NHGIS PUMA code is 05504" +in.puma "OH, 05505" "The dwelling unit is located in OH, the NHGIS PUMA code is 05505" +in.puma "OH, 05506" "The dwelling unit is located in OH, the NHGIS PUMA code is 05506" +in.puma "OH, 05507" "The dwelling unit is located in OH, the NHGIS PUMA code is 05507" +in.puma "OH, 05600" "The dwelling unit is located in OH, the NHGIS PUMA code is 05600" +in.puma "OH, 05700" "The dwelling unit is located in OH, the NHGIS PUMA code is 05700" +in.puma "OK, 00100" "The dwelling unit is located in OK, the NHGIS PUMA code is 00100" +in.puma "OK, 00200" "The dwelling unit is located in OK, the NHGIS PUMA code is 00200" +in.puma "OK, 00300" "The dwelling unit is located in OK, the NHGIS PUMA code is 00300" +in.puma "OK, 00400" "The dwelling unit is located in OK, the NHGIS PUMA code is 00400" +in.puma "OK, 00500" "The dwelling unit is located in OK, the NHGIS PUMA code is 00500" +in.puma "OK, 00601" "The dwelling unit is located in OK, the NHGIS PUMA code is 00601" +in.puma "OK, 00602" "The dwelling unit is located in OK, the NHGIS PUMA code is 00602" +in.puma "OK, 00701" "The dwelling unit is located in OK, the NHGIS PUMA code is 00701" +in.puma "OK, 00702" "The dwelling unit is located in OK, the NHGIS PUMA code is 00702" +in.puma "OK, 00800" "The dwelling unit is located in OK, the NHGIS PUMA code is 00800" +in.puma "OK, 00900" "The dwelling unit is located in OK, the NHGIS PUMA code is 00900" +in.puma "OK, 01001" "The dwelling unit is located in OK, the NHGIS PUMA code is 01001" +in.puma "OK, 01002" "The dwelling unit is located in OK, the NHGIS PUMA code is 01002" +in.puma "OK, 01003" "The dwelling unit is located in OK, the NHGIS PUMA code is 01003" +in.puma "OK, 01004" "The dwelling unit is located in OK, the NHGIS PUMA code is 01004" +in.puma "OK, 01005" "The dwelling unit is located in OK, the NHGIS PUMA code is 01005" +in.puma "OK, 01006" "The dwelling unit is located in OK, the NHGIS PUMA code is 01006" +in.puma "OK, 01101" "The dwelling unit is located in OK, the NHGIS PUMA code is 01101" +in.puma "OK, 01102" "The dwelling unit is located in OK, the NHGIS PUMA code is 01102" +in.puma "OK, 01201" "The dwelling unit is located in OK, the NHGIS PUMA code is 01201" +in.puma "OK, 01202" "The dwelling unit is located in OK, the NHGIS PUMA code is 01202" +in.puma "OK, 01203" "The dwelling unit is located in OK, the NHGIS PUMA code is 01203" +in.puma "OK, 01204" "The dwelling unit is located in OK, the NHGIS PUMA code is 01204" +in.puma "OK, 01301" "The dwelling unit is located in OK, the NHGIS PUMA code is 01301" +in.puma "OK, 01302" "The dwelling unit is located in OK, the NHGIS PUMA code is 01302" +in.puma "OK, 01400" "The dwelling unit is located in OK, the NHGIS PUMA code is 01400" +in.puma "OK, 01501" "The dwelling unit is located in OK, the NHGIS PUMA code is 01501" +in.puma "OK, 01601" "The dwelling unit is located in OK, the NHGIS PUMA code is 01601" +in.puma "OR, 00100" "The dwelling unit is located in OR, the NHGIS PUMA code is 00100" +in.puma "OR, 00200" "The dwelling unit is located in OR, the NHGIS PUMA code is 00200" +in.puma "OR, 00300" "The dwelling unit is located in OR, the NHGIS PUMA code is 00300" +in.puma "OR, 00400" "The dwelling unit is located in OR, the NHGIS PUMA code is 00400" +in.puma "OR, 00500" "The dwelling unit is located in OR, the NHGIS PUMA code is 00500" +in.puma "OR, 00600" "The dwelling unit is located in OR, the NHGIS PUMA code is 00600" +in.puma "OR, 00703" "The dwelling unit is located in OR, the NHGIS PUMA code is 00703" +in.puma "OR, 00704" "The dwelling unit is located in OR, the NHGIS PUMA code is 00704" +in.puma "OR, 00705" "The dwelling unit is located in OR, the NHGIS PUMA code is 00705" +in.puma "OR, 00800" "The dwelling unit is located in OR, the NHGIS PUMA code is 00800" +in.puma "OR, 00901" "The dwelling unit is located in OR, the NHGIS PUMA code is 00901" +in.puma "OR, 00902" "The dwelling unit is located in OR, the NHGIS PUMA code is 00902" +in.puma "OR, 01000" "The dwelling unit is located in OR, the NHGIS PUMA code is 01000" +in.puma "OR, 01103" "The dwelling unit is located in OR, the NHGIS PUMA code is 01103" +in.puma "OR, 01104" "The dwelling unit is located in OR, the NHGIS PUMA code is 01104" +in.puma "OR, 01105" "The dwelling unit is located in OR, the NHGIS PUMA code is 01105" +in.puma "OR, 01200" "The dwelling unit is located in OR, the NHGIS PUMA code is 01200" +in.puma "OR, 01301" "The dwelling unit is located in OR, the NHGIS PUMA code is 01301" +in.puma "OR, 01302" "The dwelling unit is located in OR, the NHGIS PUMA code is 01302" +in.puma "OR, 01303" "The dwelling unit is located in OR, the NHGIS PUMA code is 01303" +in.puma "OR, 01305" "The dwelling unit is located in OR, the NHGIS PUMA code is 01305" +in.puma "OR, 01314" "The dwelling unit is located in OR, the NHGIS PUMA code is 01314" +in.puma "OR, 01316" "The dwelling unit is located in OR, the NHGIS PUMA code is 01316" +in.puma "OR, 01317" "The dwelling unit is located in OR, the NHGIS PUMA code is 01317" +in.puma "OR, 01318" "The dwelling unit is located in OR, the NHGIS PUMA code is 01318" +in.puma "OR, 01319" "The dwelling unit is located in OR, the NHGIS PUMA code is 01319" +in.puma "OR, 01320" "The dwelling unit is located in OR, the NHGIS PUMA code is 01320" +in.puma "OR, 01321" "The dwelling unit is located in OR, the NHGIS PUMA code is 01321" +in.puma "OR, 01322" "The dwelling unit is located in OR, the NHGIS PUMA code is 01322" +in.puma "OR, 01323" "The dwelling unit is located in OR, the NHGIS PUMA code is 01323" +in.puma "OR, 01324" "The dwelling unit is located in OR, the NHGIS PUMA code is 01324" +in.puma "PA, 00101" "The dwelling unit is located in PA, the NHGIS PUMA code is 00101" +in.puma "PA, 00102" "The dwelling unit is located in PA, the NHGIS PUMA code is 00102" +in.puma "PA, 00200" "The dwelling unit is located in PA, the NHGIS PUMA code is 00200" +in.puma "PA, 00300" "The dwelling unit is located in PA, the NHGIS PUMA code is 00300" +in.puma "PA, 00400" "The dwelling unit is located in PA, the NHGIS PUMA code is 00400" +in.puma "PA, 00500" "The dwelling unit is located in PA, the NHGIS PUMA code is 00500" +in.puma "PA, 00600" "The dwelling unit is located in PA, the NHGIS PUMA code is 00600" +in.puma "PA, 00701" "The dwelling unit is located in PA, the NHGIS PUMA code is 00701" +in.puma "PA, 00702" "The dwelling unit is located in PA, the NHGIS PUMA code is 00702" +in.puma "PA, 00801" "The dwelling unit is located in PA, the NHGIS PUMA code is 00801" +in.puma "PA, 00802" "The dwelling unit is located in PA, the NHGIS PUMA code is 00802" +in.puma "PA, 00803" "The dwelling unit is located in PA, the NHGIS PUMA code is 00803" +in.puma "PA, 00900" "The dwelling unit is located in PA, the NHGIS PUMA code is 00900" +in.puma "PA, 01000" "The dwelling unit is located in PA, the NHGIS PUMA code is 01000" +in.puma "PA, 01100" "The dwelling unit is located in PA, the NHGIS PUMA code is 01100" +in.puma "PA, 01200" "The dwelling unit is located in PA, the NHGIS PUMA code is 01200" +in.puma "PA, 01300" "The dwelling unit is located in PA, the NHGIS PUMA code is 01300" +in.puma "PA, 01400" "The dwelling unit is located in PA, the NHGIS PUMA code is 01400" +in.puma "PA, 01501" "The dwelling unit is located in PA, the NHGIS PUMA code is 01501" +in.puma "PA, 01502" "The dwelling unit is located in PA, the NHGIS PUMA code is 01502" +in.puma "PA, 01600" "The dwelling unit is located in PA, the NHGIS PUMA code is 01600" +in.puma "PA, 01701" "The dwelling unit is located in PA, the NHGIS PUMA code is 01701" +in.puma "PA, 01702" "The dwelling unit is located in PA, the NHGIS PUMA code is 01702" +in.puma "PA, 01801" "The dwelling unit is located in PA, the NHGIS PUMA code is 01801" +in.puma "PA, 01802" "The dwelling unit is located in PA, the NHGIS PUMA code is 01802" +in.puma "PA, 01803" "The dwelling unit is located in PA, the NHGIS PUMA code is 01803" +in.puma "PA, 01804" "The dwelling unit is located in PA, the NHGIS PUMA code is 01804" +in.puma "PA, 01805" "The dwelling unit is located in PA, the NHGIS PUMA code is 01805" +in.puma "PA, 01806" "The dwelling unit is located in PA, the NHGIS PUMA code is 01806" +in.puma "PA, 01807" "The dwelling unit is located in PA, the NHGIS PUMA code is 01807" +in.puma "PA, 01900" "The dwelling unit is located in PA, the NHGIS PUMA code is 01900" +in.puma "PA, 02001" "The dwelling unit is located in PA, the NHGIS PUMA code is 02001" +in.puma "PA, 02002" "The dwelling unit is located in PA, the NHGIS PUMA code is 02002" +in.puma "PA, 02003" "The dwelling unit is located in PA, the NHGIS PUMA code is 02003" +in.puma "PA, 02100" "The dwelling unit is located in PA, the NHGIS PUMA code is 02100" +in.puma "PA, 02200" "The dwelling unit is located in PA, the NHGIS PUMA code is 02200" +in.puma "PA, 02301" "The dwelling unit is located in PA, the NHGIS PUMA code is 02301" +in.puma "PA, 02302" "The dwelling unit is located in PA, the NHGIS PUMA code is 02302" +in.puma "PA, 02401" "The dwelling unit is located in PA, the NHGIS PUMA code is 02401" +in.puma "PA, 02402" "The dwelling unit is located in PA, the NHGIS PUMA code is 02402" +in.puma "PA, 02500" "The dwelling unit is located in PA, the NHGIS PUMA code is 02500" +in.puma "PA, 02600" "The dwelling unit is located in PA, the NHGIS PUMA code is 02600" +in.puma "PA, 02701" "The dwelling unit is located in PA, the NHGIS PUMA code is 02701" +in.puma "PA, 02702" "The dwelling unit is located in PA, the NHGIS PUMA code is 02702" +in.puma "PA, 02703" "The dwelling unit is located in PA, the NHGIS PUMA code is 02703" +in.puma "PA, 02801" "The dwelling unit is located in PA, the NHGIS PUMA code is 02801" +in.puma "PA, 02802" "The dwelling unit is located in PA, the NHGIS PUMA code is 02802" +in.puma "PA, 02803" "The dwelling unit is located in PA, the NHGIS PUMA code is 02803" +in.puma "PA, 02901" "The dwelling unit is located in PA, the NHGIS PUMA code is 02901" +in.puma "PA, 02902" "The dwelling unit is located in PA, the NHGIS PUMA code is 02902" +in.puma "PA, 03001" "The dwelling unit is located in PA, the NHGIS PUMA code is 03001" +in.puma "PA, 03002" "The dwelling unit is located in PA, the NHGIS PUMA code is 03002" +in.puma "PA, 03003" "The dwelling unit is located in PA, the NHGIS PUMA code is 03003" +in.puma "PA, 03004" "The dwelling unit is located in PA, the NHGIS PUMA code is 03004" +in.puma "PA, 03101" "The dwelling unit is located in PA, the NHGIS PUMA code is 03101" +in.puma "PA, 03102" "The dwelling unit is located in PA, the NHGIS PUMA code is 03102" +in.puma "PA, 03103" "The dwelling unit is located in PA, the NHGIS PUMA code is 03103" +in.puma "PA, 03104" "The dwelling unit is located in PA, the NHGIS PUMA code is 03104" +in.puma "PA, 03105" "The dwelling unit is located in PA, the NHGIS PUMA code is 03105" +in.puma "PA, 03106" "The dwelling unit is located in PA, the NHGIS PUMA code is 03106" +in.puma "PA, 03201" "The dwelling unit is located in PA, the NHGIS PUMA code is 03201" +in.puma "PA, 03202" "The dwelling unit is located in PA, the NHGIS PUMA code is 03202" +in.puma "PA, 03203" "The dwelling unit is located in PA, the NHGIS PUMA code is 03203" +in.puma "PA, 03204" "The dwelling unit is located in PA, the NHGIS PUMA code is 03204" +in.puma "PA, 03205" "The dwelling unit is located in PA, the NHGIS PUMA code is 03205" +in.puma "PA, 03206" "The dwelling unit is located in PA, the NHGIS PUMA code is 03206" +in.puma "PA, 03207" "The dwelling unit is located in PA, the NHGIS PUMA code is 03207" +in.puma "PA, 03208" "The dwelling unit is located in PA, the NHGIS PUMA code is 03208" +in.puma "PA, 03209" "The dwelling unit is located in PA, the NHGIS PUMA code is 03209" +in.puma "PA, 03210" "The dwelling unit is located in PA, the NHGIS PUMA code is 03210" +in.puma "PA, 03211" "The dwelling unit is located in PA, the NHGIS PUMA code is 03211" +in.puma "PA, 03301" "The dwelling unit is located in PA, the NHGIS PUMA code is 03301" +in.puma "PA, 03302" "The dwelling unit is located in PA, the NHGIS PUMA code is 03302" +in.puma "PA, 03303" "The dwelling unit is located in PA, the NHGIS PUMA code is 03303" +in.puma "PA, 03304" "The dwelling unit is located in PA, the NHGIS PUMA code is 03304" +in.puma "PA, 03401" "The dwelling unit is located in PA, the NHGIS PUMA code is 03401" +in.puma "PA, 03402" "The dwelling unit is located in PA, the NHGIS PUMA code is 03402" +in.puma "PA, 03403" "The dwelling unit is located in PA, the NHGIS PUMA code is 03403" +in.puma "PA, 03404" "The dwelling unit is located in PA, the NHGIS PUMA code is 03404" +in.puma "PA, 03501" "The dwelling unit is located in PA, the NHGIS PUMA code is 03501" +in.puma "PA, 03502" "The dwelling unit is located in PA, the NHGIS PUMA code is 03502" +in.puma "PA, 03503" "The dwelling unit is located in PA, the NHGIS PUMA code is 03503" +in.puma "PA, 03504" "The dwelling unit is located in PA, the NHGIS PUMA code is 03504" +in.puma "PA, 03601" "The dwelling unit is located in PA, the NHGIS PUMA code is 03601" +in.puma "PA, 03602" "The dwelling unit is located in PA, the NHGIS PUMA code is 03602" +in.puma "PA, 03603" "The dwelling unit is located in PA, the NHGIS PUMA code is 03603" +in.puma "PA, 03701" "The dwelling unit is located in PA, the NHGIS PUMA code is 03701" +in.puma "PA, 03702" "The dwelling unit is located in PA, the NHGIS PUMA code is 03702" +in.puma "PA, 03800" "The dwelling unit is located in PA, the NHGIS PUMA code is 03800" +in.puma "PA, 03900" "The dwelling unit is located in PA, the NHGIS PUMA code is 03900" +in.puma "PA, 04001" "The dwelling unit is located in PA, the NHGIS PUMA code is 04001" +in.puma "PA, 04002" "The dwelling unit is located in PA, the NHGIS PUMA code is 04002" +in.puma "RI, 00101" "The dwelling unit is located in RI, the NHGIS PUMA code is 00101" +in.puma "RI, 00102" "The dwelling unit is located in RI, the NHGIS PUMA code is 00102" +in.puma "RI, 00103" "The dwelling unit is located in RI, the NHGIS PUMA code is 00103" +in.puma "RI, 00104" "The dwelling unit is located in RI, the NHGIS PUMA code is 00104" +in.puma "RI, 00201" "The dwelling unit is located in RI, the NHGIS PUMA code is 00201" +in.puma "RI, 00300" "The dwelling unit is located in RI, the NHGIS PUMA code is 00300" +in.puma "RI, 00400" "The dwelling unit is located in RI, the NHGIS PUMA code is 00400" +in.puma "SC, 00101" "The dwelling unit is located in SC, the NHGIS PUMA code is 00101" +in.puma "SC, 00102" "The dwelling unit is located in SC, the NHGIS PUMA code is 00102" +in.puma "SC, 00103" "The dwelling unit is located in SC, the NHGIS PUMA code is 00103" +in.puma "SC, 00104" "The dwelling unit is located in SC, the NHGIS PUMA code is 00104" +in.puma "SC, 00105" "The dwelling unit is located in SC, the NHGIS PUMA code is 00105" +in.puma "SC, 00200" "The dwelling unit is located in SC, the NHGIS PUMA code is 00200" +in.puma "SC, 00301" "The dwelling unit is located in SC, the NHGIS PUMA code is 00301" +in.puma "SC, 00302" "The dwelling unit is located in SC, the NHGIS PUMA code is 00302" +in.puma "SC, 00400" "The dwelling unit is located in SC, the NHGIS PUMA code is 00400" +in.puma "SC, 00501" "The dwelling unit is located in SC, the NHGIS PUMA code is 00501" +in.puma "SC, 00502" "The dwelling unit is located in SC, the NHGIS PUMA code is 00502" +in.puma "SC, 00601" "The dwelling unit is located in SC, the NHGIS PUMA code is 00601" +in.puma "SC, 00602" "The dwelling unit is located in SC, the NHGIS PUMA code is 00602" +in.puma "SC, 00603" "The dwelling unit is located in SC, the NHGIS PUMA code is 00603" +in.puma "SC, 00604" "The dwelling unit is located in SC, the NHGIS PUMA code is 00604" +in.puma "SC, 00605" "The dwelling unit is located in SC, the NHGIS PUMA code is 00605" +in.puma "SC, 00700" "The dwelling unit is located in SC, the NHGIS PUMA code is 00700" +in.puma "SC, 00800" "The dwelling unit is located in SC, the NHGIS PUMA code is 00800" +in.puma "SC, 00900" "The dwelling unit is located in SC, the NHGIS PUMA code is 00900" +in.puma "SC, 01000" "The dwelling unit is located in SC, the NHGIS PUMA code is 01000" +in.puma "SC, 01101" "The dwelling unit is located in SC, the NHGIS PUMA code is 01101" +in.puma "SC, 01102" "The dwelling unit is located in SC, the NHGIS PUMA code is 01102" +in.puma "SC, 01201" "The dwelling unit is located in SC, the NHGIS PUMA code is 01201" +in.puma "SC, 01202" "The dwelling unit is located in SC, the NHGIS PUMA code is 01202" +in.puma "SC, 01203" "The dwelling unit is located in SC, the NHGIS PUMA code is 01203" +in.puma "SC, 01204" "The dwelling unit is located in SC, the NHGIS PUMA code is 01204" +in.puma "SC, 01300" "The dwelling unit is located in SC, the NHGIS PUMA code is 01300" +in.puma "SC, 01400" "The dwelling unit is located in SC, the NHGIS PUMA code is 01400" +in.puma "SC, 01500" "The dwelling unit is located in SC, the NHGIS PUMA code is 01500" +in.puma "SC, 01600" "The dwelling unit is located in SC, the NHGIS PUMA code is 01600" +in.puma "SD, 00100" "The dwelling unit is located in SD, the NHGIS PUMA code is 00100" +in.puma "SD, 00200" "The dwelling unit is located in SD, the NHGIS PUMA code is 00200" +in.puma "SD, 00300" "The dwelling unit is located in SD, the NHGIS PUMA code is 00300" +in.puma "SD, 00400" "The dwelling unit is located in SD, the NHGIS PUMA code is 00400" +in.puma "SD, 00500" "The dwelling unit is located in SD, the NHGIS PUMA code is 00500" +in.puma "SD, 00600" "The dwelling unit is located in SD, the NHGIS PUMA code is 00600" +in.puma "TN, 00100" "The dwelling unit is located in TN, the NHGIS PUMA code is 00100" +in.puma "TN, 00200" "The dwelling unit is located in TN, the NHGIS PUMA code is 00200" +in.puma "TN, 00300" "The dwelling unit is located in TN, the NHGIS PUMA code is 00300" +in.puma "TN, 00400" "The dwelling unit is located in TN, the NHGIS PUMA code is 00400" +in.puma "TN, 00500" "The dwelling unit is located in TN, the NHGIS PUMA code is 00500" +in.puma "TN, 00600" "The dwelling unit is located in TN, the NHGIS PUMA code is 00600" +in.puma "TN, 00700" "The dwelling unit is located in TN, the NHGIS PUMA code is 00700" +in.puma "TN, 00800" "The dwelling unit is located in TN, the NHGIS PUMA code is 00800" +in.puma "TN, 00900" "The dwelling unit is located in TN, the NHGIS PUMA code is 00900" +in.puma "TN, 01000" "The dwelling unit is located in TN, the NHGIS PUMA code is 01000" +in.puma "TN, 01100" "The dwelling unit is located in TN, the NHGIS PUMA code is 01100" +in.puma "TN, 01200" "The dwelling unit is located in TN, the NHGIS PUMA code is 01200" +in.puma "TN, 01300" "The dwelling unit is located in TN, the NHGIS PUMA code is 01300" +in.puma "TN, 01400" "The dwelling unit is located in TN, the NHGIS PUMA code is 01400" +in.puma "TN, 01500" "The dwelling unit is located in TN, the NHGIS PUMA code is 01500" +in.puma "TN, 01601" "The dwelling unit is located in TN, the NHGIS PUMA code is 01601" +in.puma "TN, 01602" "The dwelling unit is located in TN, the NHGIS PUMA code is 01602" +in.puma "TN, 01603" "The dwelling unit is located in TN, the NHGIS PUMA code is 01603" +in.puma "TN, 01604" "The dwelling unit is located in TN, the NHGIS PUMA code is 01604" +in.puma "TN, 01700" "The dwelling unit is located in TN, the NHGIS PUMA code is 01700" +in.puma "TN, 01800" "The dwelling unit is located in TN, the NHGIS PUMA code is 01800" +in.puma "TN, 01900" "The dwelling unit is located in TN, the NHGIS PUMA code is 01900" +in.puma "TN, 02001" "The dwelling unit is located in TN, the NHGIS PUMA code is 02001" +in.puma "TN, 02002" "The dwelling unit is located in TN, the NHGIS PUMA code is 02002" +in.puma "TN, 02003" "The dwelling unit is located in TN, the NHGIS PUMA code is 02003" +in.puma "TN, 02100" "The dwelling unit is located in TN, the NHGIS PUMA code is 02100" +in.puma "TN, 02200" "The dwelling unit is located in TN, the NHGIS PUMA code is 02200" +in.puma "TN, 02300" "The dwelling unit is located in TN, the NHGIS PUMA code is 02300" +in.puma "TN, 02401" "The dwelling unit is located in TN, the NHGIS PUMA code is 02401" +in.puma "TN, 02402" "The dwelling unit is located in TN, the NHGIS PUMA code is 02402" +in.puma "TN, 02501" "The dwelling unit is located in TN, the NHGIS PUMA code is 02501" +in.puma "TN, 02502" "The dwelling unit is located in TN, the NHGIS PUMA code is 02502" +in.puma "TN, 02503" "The dwelling unit is located in TN, the NHGIS PUMA code is 02503" +in.puma "TN, 02504" "The dwelling unit is located in TN, the NHGIS PUMA code is 02504" +in.puma "TN, 02505" "The dwelling unit is located in TN, the NHGIS PUMA code is 02505" +in.puma "TN, 02600" "The dwelling unit is located in TN, the NHGIS PUMA code is 02600" +in.puma "TN, 02700" "The dwelling unit is located in TN, the NHGIS PUMA code is 02700" +in.puma "TN, 02800" "The dwelling unit is located in TN, the NHGIS PUMA code is 02800" +in.puma "TN, 02900" "The dwelling unit is located in TN, the NHGIS PUMA code is 02900" +in.puma "TN, 03000" "The dwelling unit is located in TN, the NHGIS PUMA code is 03000" +in.puma "TN, 03100" "The dwelling unit is located in TN, the NHGIS PUMA code is 03100" +in.puma "TN, 03201" "The dwelling unit is located in TN, the NHGIS PUMA code is 03201" +in.puma "TN, 03202" "The dwelling unit is located in TN, the NHGIS PUMA code is 03202" +in.puma "TN, 03203" "The dwelling unit is located in TN, the NHGIS PUMA code is 03203" +in.puma "TN, 03204" "The dwelling unit is located in TN, the NHGIS PUMA code is 03204" +in.puma "TN, 03205" "The dwelling unit is located in TN, the NHGIS PUMA code is 03205" +in.puma "TN, 03206" "The dwelling unit is located in TN, the NHGIS PUMA code is 03206" +in.puma "TN, 03207" "The dwelling unit is located in TN, the NHGIS PUMA code is 03207" +in.puma "TN, 03208" "The dwelling unit is located in TN, the NHGIS PUMA code is 03208" +in.puma "TX, 00100" "The dwelling unit is located in TX, the NHGIS PUMA code is 00100" +in.puma "TX, 00200" "The dwelling unit is located in TX, the NHGIS PUMA code is 00200" +in.puma "TX, 00300" "The dwelling unit is located in TX, the NHGIS PUMA code is 00300" +in.puma "TX, 00400" "The dwelling unit is located in TX, the NHGIS PUMA code is 00400" +in.puma "TX, 00501" "The dwelling unit is located in TX, the NHGIS PUMA code is 00501" +in.puma "TX, 00502" "The dwelling unit is located in TX, the NHGIS PUMA code is 00502" +in.puma "TX, 00600" "The dwelling unit is located in TX, the NHGIS PUMA code is 00600" +in.puma "TX, 00700" "The dwelling unit is located in TX, the NHGIS PUMA code is 00700" +in.puma "TX, 00800" "The dwelling unit is located in TX, the NHGIS PUMA code is 00800" +in.puma "TX, 00900" "The dwelling unit is located in TX, the NHGIS PUMA code is 00900" +in.puma "TX, 01000" "The dwelling unit is located in TX, the NHGIS PUMA code is 01000" +in.puma "TX, 01100" "The dwelling unit is located in TX, the NHGIS PUMA code is 01100" +in.puma "TX, 01200" "The dwelling unit is located in TX, the NHGIS PUMA code is 01200" +in.puma "TX, 01300" "The dwelling unit is located in TX, the NHGIS PUMA code is 01300" +in.puma "TX, 01400" "The dwelling unit is located in TX, the NHGIS PUMA code is 01400" +in.puma "TX, 01501" "The dwelling unit is located in TX, the NHGIS PUMA code is 01501" +in.puma "TX, 01502" "The dwelling unit is located in TX, the NHGIS PUMA code is 01502" +in.puma "TX, 01600" "The dwelling unit is located in TX, the NHGIS PUMA code is 01600" +in.puma "TX, 01700" "The dwelling unit is located in TX, the NHGIS PUMA code is 01700" +in.puma "TX, 01800" "The dwelling unit is located in TX, the NHGIS PUMA code is 01800" +in.puma "TX, 01901" "The dwelling unit is located in TX, the NHGIS PUMA code is 01901" +in.puma "TX, 01902" "The dwelling unit is located in TX, the NHGIS PUMA code is 01902" +in.puma "TX, 01903" "The dwelling unit is located in TX, the NHGIS PUMA code is 01903" +in.puma "TX, 01904" "The dwelling unit is located in TX, the NHGIS PUMA code is 01904" +in.puma "TX, 01905" "The dwelling unit is located in TX, the NHGIS PUMA code is 01905" +in.puma "TX, 01906" "The dwelling unit is located in TX, the NHGIS PUMA code is 01906" +in.puma "TX, 01907" "The dwelling unit is located in TX, the NHGIS PUMA code is 01907" +in.puma "TX, 02001" "The dwelling unit is located in TX, the NHGIS PUMA code is 02001" +in.puma "TX, 02002" "The dwelling unit is located in TX, the NHGIS PUMA code is 02002" +in.puma "TX, 02003" "The dwelling unit is located in TX, the NHGIS PUMA code is 02003" +in.puma "TX, 02004" "The dwelling unit is located in TX, the NHGIS PUMA code is 02004" +in.puma "TX, 02005" "The dwelling unit is located in TX, the NHGIS PUMA code is 02005" +in.puma "TX, 02006" "The dwelling unit is located in TX, the NHGIS PUMA code is 02006" +in.puma "TX, 02101" "The dwelling unit is located in TX, the NHGIS PUMA code is 02101" +in.puma "TX, 02102" "The dwelling unit is located in TX, the NHGIS PUMA code is 02102" +in.puma "TX, 02200" "The dwelling unit is located in TX, the NHGIS PUMA code is 02200" +in.puma "TX, 02301" "The dwelling unit is located in TX, the NHGIS PUMA code is 02301" +in.puma "TX, 02302" "The dwelling unit is located in TX, the NHGIS PUMA code is 02302" +in.puma "TX, 02303" "The dwelling unit is located in TX, the NHGIS PUMA code is 02303" +in.puma "TX, 02304" "The dwelling unit is located in TX, the NHGIS PUMA code is 02304" +in.puma "TX, 02305" "The dwelling unit is located in TX, the NHGIS PUMA code is 02305" +in.puma "TX, 02306" "The dwelling unit is located in TX, the NHGIS PUMA code is 02306" +in.puma "TX, 02307" "The dwelling unit is located in TX, the NHGIS PUMA code is 02307" +in.puma "TX, 02308" "The dwelling unit is located in TX, the NHGIS PUMA code is 02308" +in.puma "TX, 02309" "The dwelling unit is located in TX, the NHGIS PUMA code is 02309" +in.puma "TX, 02310" "The dwelling unit is located in TX, the NHGIS PUMA code is 02310" +in.puma "TX, 02311" "The dwelling unit is located in TX, the NHGIS PUMA code is 02311" +in.puma "TX, 02312" "The dwelling unit is located in TX, the NHGIS PUMA code is 02312" +in.puma "TX, 02313" "The dwelling unit is located in TX, the NHGIS PUMA code is 02313" +in.puma "TX, 02314" "The dwelling unit is located in TX, the NHGIS PUMA code is 02314" +in.puma "TX, 02315" "The dwelling unit is located in TX, the NHGIS PUMA code is 02315" +in.puma "TX, 02316" "The dwelling unit is located in TX, the NHGIS PUMA code is 02316" +in.puma "TX, 02317" "The dwelling unit is located in TX, the NHGIS PUMA code is 02317" +in.puma "TX, 02318" "The dwelling unit is located in TX, the NHGIS PUMA code is 02318" +in.puma "TX, 02319" "The dwelling unit is located in TX, the NHGIS PUMA code is 02319" +in.puma "TX, 02320" "The dwelling unit is located in TX, the NHGIS PUMA code is 02320" +in.puma "TX, 02321" "The dwelling unit is located in TX, the NHGIS PUMA code is 02321" +in.puma "TX, 02322" "The dwelling unit is located in TX, the NHGIS PUMA code is 02322" +in.puma "TX, 02400" "The dwelling unit is located in TX, the NHGIS PUMA code is 02400" +in.puma "TX, 02501" "The dwelling unit is located in TX, the NHGIS PUMA code is 02501" +in.puma "TX, 02502" "The dwelling unit is located in TX, the NHGIS PUMA code is 02502" +in.puma "TX, 02503" "The dwelling unit is located in TX, the NHGIS PUMA code is 02503" +in.puma "TX, 02504" "The dwelling unit is located in TX, the NHGIS PUMA code is 02504" +in.puma "TX, 02505" "The dwelling unit is located in TX, the NHGIS PUMA code is 02505" +in.puma "TX, 02506" "The dwelling unit is located in TX, the NHGIS PUMA code is 02506" +in.puma "TX, 02507" "The dwelling unit is located in TX, the NHGIS PUMA code is 02507" +in.puma "TX, 02508" "The dwelling unit is located in TX, the NHGIS PUMA code is 02508" +in.puma "TX, 02509" "The dwelling unit is located in TX, the NHGIS PUMA code is 02509" +in.puma "TX, 02510" "The dwelling unit is located in TX, the NHGIS PUMA code is 02510" +in.puma "TX, 02511" "The dwelling unit is located in TX, the NHGIS PUMA code is 02511" +in.puma "TX, 02512" "The dwelling unit is located in TX, the NHGIS PUMA code is 02512" +in.puma "TX, 02513" "The dwelling unit is located in TX, the NHGIS PUMA code is 02513" +in.puma "TX, 02514" "The dwelling unit is located in TX, the NHGIS PUMA code is 02514" +in.puma "TX, 02515" "The dwelling unit is located in TX, the NHGIS PUMA code is 02515" +in.puma "TX, 02516" "The dwelling unit is located in TX, the NHGIS PUMA code is 02516" +in.puma "TX, 02600" "The dwelling unit is located in TX, the NHGIS PUMA code is 02600" +in.puma "TX, 02700" "The dwelling unit is located in TX, the NHGIS PUMA code is 02700" +in.puma "TX, 02800" "The dwelling unit is located in TX, the NHGIS PUMA code is 02800" +in.puma "TX, 02900" "The dwelling unit is located in TX, the NHGIS PUMA code is 02900" +in.puma "TX, 03000" "The dwelling unit is located in TX, the NHGIS PUMA code is 03000" +in.puma "TX, 03100" "The dwelling unit is located in TX, the NHGIS PUMA code is 03100" +in.puma "TX, 03200" "The dwelling unit is located in TX, the NHGIS PUMA code is 03200" +in.puma "TX, 03301" "The dwelling unit is located in TX, the NHGIS PUMA code is 03301" +in.puma "TX, 03302" "The dwelling unit is located in TX, the NHGIS PUMA code is 03302" +in.puma "TX, 03303" "The dwelling unit is located in TX, the NHGIS PUMA code is 03303" +in.puma "TX, 03304" "The dwelling unit is located in TX, the NHGIS PUMA code is 03304" +in.puma "TX, 03305" "The dwelling unit is located in TX, the NHGIS PUMA code is 03305" +in.puma "TX, 03306" "The dwelling unit is located in TX, the NHGIS PUMA code is 03306" +in.puma "TX, 03400" "The dwelling unit is located in TX, the NHGIS PUMA code is 03400" +in.puma "TX, 03501" "The dwelling unit is located in TX, the NHGIS PUMA code is 03501" +in.puma "TX, 03502" "The dwelling unit is located in TX, the NHGIS PUMA code is 03502" +in.puma "TX, 03601" "The dwelling unit is located in TX, the NHGIS PUMA code is 03601" +in.puma "TX, 03602" "The dwelling unit is located in TX, the NHGIS PUMA code is 03602" +in.puma "TX, 03700" "The dwelling unit is located in TX, the NHGIS PUMA code is 03700" +in.puma "TX, 03801" "The dwelling unit is located in TX, the NHGIS PUMA code is 03801" +in.puma "TX, 03802" "The dwelling unit is located in TX, the NHGIS PUMA code is 03802" +in.puma "TX, 03900" "The dwelling unit is located in TX, the NHGIS PUMA code is 03900" +in.puma "TX, 04000" "The dwelling unit is located in TX, the NHGIS PUMA code is 04000" +in.puma "TX, 04100" "The dwelling unit is located in TX, the NHGIS PUMA code is 04100" +in.puma "TX, 04200" "The dwelling unit is located in TX, the NHGIS PUMA code is 04200" +in.puma "TX, 04301" "The dwelling unit is located in TX, the NHGIS PUMA code is 04301" +in.puma "TX, 04302" "The dwelling unit is located in TX, the NHGIS PUMA code is 04302" +in.puma "TX, 04400" "The dwelling unit is located in TX, the NHGIS PUMA code is 04400" +in.puma "TX, 04501" "The dwelling unit is located in TX, the NHGIS PUMA code is 04501" +in.puma "TX, 04502" "The dwelling unit is located in TX, the NHGIS PUMA code is 04502" +in.puma "TX, 04503" "The dwelling unit is located in TX, the NHGIS PUMA code is 04503" +in.puma "TX, 04504" "The dwelling unit is located in TX, the NHGIS PUMA code is 04504" +in.puma "TX, 04601" "The dwelling unit is located in TX, the NHGIS PUMA code is 04601" +in.puma "TX, 04602" "The dwelling unit is located in TX, the NHGIS PUMA code is 04602" +in.puma "TX, 04603" "The dwelling unit is located in TX, the NHGIS PUMA code is 04603" +in.puma "TX, 04604" "The dwelling unit is located in TX, the NHGIS PUMA code is 04604" +in.puma "TX, 04605" "The dwelling unit is located in TX, the NHGIS PUMA code is 04605" +in.puma "TX, 04606" "The dwelling unit is located in TX, the NHGIS PUMA code is 04606" +in.puma "TX, 04607" "The dwelling unit is located in TX, the NHGIS PUMA code is 04607" +in.puma "TX, 04608" "The dwelling unit is located in TX, the NHGIS PUMA code is 04608" +in.puma "TX, 04609" "The dwelling unit is located in TX, the NHGIS PUMA code is 04609" +in.puma "TX, 04610" "The dwelling unit is located in TX, the NHGIS PUMA code is 04610" +in.puma "TX, 04611" "The dwelling unit is located in TX, the NHGIS PUMA code is 04611" +in.puma "TX, 04612" "The dwelling unit is located in TX, the NHGIS PUMA code is 04612" +in.puma "TX, 04613" "The dwelling unit is located in TX, the NHGIS PUMA code is 04613" +in.puma "TX, 04614" "The dwelling unit is located in TX, the NHGIS PUMA code is 04614" +in.puma "TX, 04615" "The dwelling unit is located in TX, the NHGIS PUMA code is 04615" +in.puma "TX, 04616" "The dwelling unit is located in TX, the NHGIS PUMA code is 04616" +in.puma "TX, 04617" "The dwelling unit is located in TX, the NHGIS PUMA code is 04617" +in.puma "TX, 04618" "The dwelling unit is located in TX, the NHGIS PUMA code is 04618" +in.puma "TX, 04619" "The dwelling unit is located in TX, the NHGIS PUMA code is 04619" +in.puma "TX, 04620" "The dwelling unit is located in TX, the NHGIS PUMA code is 04620" +in.puma "TX, 04621" "The dwelling unit is located in TX, the NHGIS PUMA code is 04621" +in.puma "TX, 04622" "The dwelling unit is located in TX, the NHGIS PUMA code is 04622" +in.puma "TX, 04623" "The dwelling unit is located in TX, the NHGIS PUMA code is 04623" +in.puma "TX, 04624" "The dwelling unit is located in TX, the NHGIS PUMA code is 04624" +in.puma "TX, 04625" "The dwelling unit is located in TX, the NHGIS PUMA code is 04625" +in.puma "TX, 04626" "The dwelling unit is located in TX, the NHGIS PUMA code is 04626" +in.puma "TX, 04627" "The dwelling unit is located in TX, the NHGIS PUMA code is 04627" +in.puma "TX, 04628" "The dwelling unit is located in TX, the NHGIS PUMA code is 04628" +in.puma "TX, 04629" "The dwelling unit is located in TX, the NHGIS PUMA code is 04629" +in.puma "TX, 04630" "The dwelling unit is located in TX, the NHGIS PUMA code is 04630" +in.puma "TX, 04631" "The dwelling unit is located in TX, the NHGIS PUMA code is 04631" +in.puma "TX, 04632" "The dwelling unit is located in TX, the NHGIS PUMA code is 04632" +in.puma "TX, 04633" "The dwelling unit is located in TX, the NHGIS PUMA code is 04633" +in.puma "TX, 04634" "The dwelling unit is located in TX, the NHGIS PUMA code is 04634" +in.puma "TX, 04635" "The dwelling unit is located in TX, the NHGIS PUMA code is 04635" +in.puma "TX, 04636" "The dwelling unit is located in TX, the NHGIS PUMA code is 04636" +in.puma "TX, 04637" "The dwelling unit is located in TX, the NHGIS PUMA code is 04637" +in.puma "TX, 04638" "The dwelling unit is located in TX, the NHGIS PUMA code is 04638" +in.puma "TX, 04701" "The dwelling unit is located in TX, the NHGIS PUMA code is 04701" +in.puma "TX, 04702" "The dwelling unit is located in TX, the NHGIS PUMA code is 04702" +in.puma "TX, 04801" "The dwelling unit is located in TX, the NHGIS PUMA code is 04801" +in.puma "TX, 04802" "The dwelling unit is located in TX, the NHGIS PUMA code is 04802" +in.puma "TX, 04803" "The dwelling unit is located in TX, the NHGIS PUMA code is 04803" +in.puma "TX, 04901" "The dwelling unit is located in TX, the NHGIS PUMA code is 04901" +in.puma "TX, 04902" "The dwelling unit is located in TX, the NHGIS PUMA code is 04902" +in.puma "TX, 04903" "The dwelling unit is located in TX, the NHGIS PUMA code is 04903" +in.puma "TX, 04904" "The dwelling unit is located in TX, the NHGIS PUMA code is 04904" +in.puma "TX, 04905" "The dwelling unit is located in TX, the NHGIS PUMA code is 04905" +in.puma "TX, 05000" "The dwelling unit is located in TX, the NHGIS PUMA code is 05000" +in.puma "TX, 05100" "The dwelling unit is located in TX, the NHGIS PUMA code is 05100" +in.puma "TX, 05201" "The dwelling unit is located in TX, the NHGIS PUMA code is 05201" +in.puma "TX, 05202" "The dwelling unit is located in TX, the NHGIS PUMA code is 05202" +in.puma "TX, 05203" "The dwelling unit is located in TX, the NHGIS PUMA code is 05203" +in.puma "TX, 05204" "The dwelling unit is located in TX, the NHGIS PUMA code is 05204" +in.puma "TX, 05301" "The dwelling unit is located in TX, the NHGIS PUMA code is 05301" +in.puma "TX, 05302" "The dwelling unit is located in TX, the NHGIS PUMA code is 05302" +in.puma "TX, 05303" "The dwelling unit is located in TX, the NHGIS PUMA code is 05303" +in.puma "TX, 05304" "The dwelling unit is located in TX, the NHGIS PUMA code is 05304" +in.puma "TX, 05305" "The dwelling unit is located in TX, the NHGIS PUMA code is 05305" +in.puma "TX, 05306" "The dwelling unit is located in TX, the NHGIS PUMA code is 05306" +in.puma "TX, 05307" "The dwelling unit is located in TX, the NHGIS PUMA code is 05307" +in.puma "TX, 05308" "The dwelling unit is located in TX, the NHGIS PUMA code is 05308" +in.puma "TX, 05309" "The dwelling unit is located in TX, the NHGIS PUMA code is 05309" +in.puma "TX, 05400" "The dwelling unit is located in TX, the NHGIS PUMA code is 05400" +in.puma "TX, 05500" "The dwelling unit is located in TX, the NHGIS PUMA code is 05500" +in.puma "TX, 05600" "The dwelling unit is located in TX, the NHGIS PUMA code is 05600" +in.puma "TX, 05700" "The dwelling unit is located in TX, the NHGIS PUMA code is 05700" +in.puma "TX, 05800" "The dwelling unit is located in TX, the NHGIS PUMA code is 05800" +in.puma "TX, 05901" "The dwelling unit is located in TX, the NHGIS PUMA code is 05901" +in.puma "TX, 05902" "The dwelling unit is located in TX, the NHGIS PUMA code is 05902" +in.puma "TX, 05903" "The dwelling unit is located in TX, the NHGIS PUMA code is 05903" +in.puma "TX, 05904" "The dwelling unit is located in TX, the NHGIS PUMA code is 05904" +in.puma "TX, 05905" "The dwelling unit is located in TX, the NHGIS PUMA code is 05905" +in.puma "TX, 05906" "The dwelling unit is located in TX, the NHGIS PUMA code is 05906" +in.puma "TX, 05907" "The dwelling unit is located in TX, the NHGIS PUMA code is 05907" +in.puma "TX, 05908" "The dwelling unit is located in TX, the NHGIS PUMA code is 05908" +in.puma "TX, 05909" "The dwelling unit is located in TX, the NHGIS PUMA code is 05909" +in.puma "TX, 05910" "The dwelling unit is located in TX, the NHGIS PUMA code is 05910" +in.puma "TX, 05911" "The dwelling unit is located in TX, the NHGIS PUMA code is 05911" +in.puma "TX, 05912" "The dwelling unit is located in TX, the NHGIS PUMA code is 05912" +in.puma "TX, 05913" "The dwelling unit is located in TX, the NHGIS PUMA code is 05913" +in.puma "TX, 05914" "The dwelling unit is located in TX, the NHGIS PUMA code is 05914" +in.puma "TX, 05915" "The dwelling unit is located in TX, the NHGIS PUMA code is 05915" +in.puma "TX, 05916" "The dwelling unit is located in TX, the NHGIS PUMA code is 05916" +in.puma "TX, 06000" "The dwelling unit is located in TX, the NHGIS PUMA code is 06000" +in.puma "TX, 06100" "The dwelling unit is located in TX, the NHGIS PUMA code is 06100" +in.puma "TX, 06200" "The dwelling unit is located in TX, the NHGIS PUMA code is 06200" +in.puma "TX, 06301" "The dwelling unit is located in TX, the NHGIS PUMA code is 06301" +in.puma "TX, 06302" "The dwelling unit is located in TX, the NHGIS PUMA code is 06302" +in.puma "TX, 06400" "The dwelling unit is located in TX, the NHGIS PUMA code is 06400" +in.puma "TX, 06500" "The dwelling unit is located in TX, the NHGIS PUMA code is 06500" +in.puma "TX, 06601" "The dwelling unit is located in TX, the NHGIS PUMA code is 06601" +in.puma "TX, 06602" "The dwelling unit is located in TX, the NHGIS PUMA code is 06602" +in.puma "TX, 06603" "The dwelling unit is located in TX, the NHGIS PUMA code is 06603" +in.puma "TX, 06701" "The dwelling unit is located in TX, the NHGIS PUMA code is 06701" +in.puma "TX, 06702" "The dwelling unit is located in TX, the NHGIS PUMA code is 06702" +in.puma "TX, 06703" "The dwelling unit is located in TX, the NHGIS PUMA code is 06703" +in.puma "TX, 06801" "The dwelling unit is located in TX, the NHGIS PUMA code is 06801" +in.puma "TX, 06802" "The dwelling unit is located in TX, the NHGIS PUMA code is 06802" +in.puma "TX, 06803" "The dwelling unit is located in TX, the NHGIS PUMA code is 06803" +in.puma "TX, 06804" "The dwelling unit is located in TX, the NHGIS PUMA code is 06804" +in.puma "TX, 06805" "The dwelling unit is located in TX, the NHGIS PUMA code is 06805" +in.puma "TX, 06806" "The dwelling unit is located in TX, the NHGIS PUMA code is 06806" +in.puma "TX, 06807" "The dwelling unit is located in TX, the NHGIS PUMA code is 06807" +in.puma "TX, 06900" "The dwelling unit is located in TX, the NHGIS PUMA code is 06900" +in.puma "UT, 03001" "The dwelling unit is located in UT, the NHGIS PUMA code is 03001" +in.puma "UT, 05001" "The dwelling unit is located in UT, the NHGIS PUMA code is 05001" +in.puma "UT, 11001" "The dwelling unit is located in UT, the NHGIS PUMA code is 11001" +in.puma "UT, 11002" "The dwelling unit is located in UT, the NHGIS PUMA code is 11002" +in.puma "UT, 13001" "The dwelling unit is located in UT, the NHGIS PUMA code is 13001" +in.puma "UT, 21001" "The dwelling unit is located in UT, the NHGIS PUMA code is 21001" +in.puma "UT, 35001" "The dwelling unit is located in UT, the NHGIS PUMA code is 35001" +in.puma "UT, 35002" "The dwelling unit is located in UT, the NHGIS PUMA code is 35002" +in.puma "UT, 35003" "The dwelling unit is located in UT, the NHGIS PUMA code is 35003" +in.puma "UT, 35004" "The dwelling unit is located in UT, the NHGIS PUMA code is 35004" +in.puma "UT, 35005" "The dwelling unit is located in UT, the NHGIS PUMA code is 35005" +in.puma "UT, 35006" "The dwelling unit is located in UT, the NHGIS PUMA code is 35006" +in.puma "UT, 35007" "The dwelling unit is located in UT, the NHGIS PUMA code is 35007" +in.puma "UT, 35008" "The dwelling unit is located in UT, the NHGIS PUMA code is 35008" +in.puma "UT, 35009" "The dwelling unit is located in UT, the NHGIS PUMA code is 35009" +in.puma "UT, 49001" "The dwelling unit is located in UT, the NHGIS PUMA code is 49001" +in.puma "UT, 49002" "The dwelling unit is located in UT, the NHGIS PUMA code is 49002" +in.puma "UT, 49003" "The dwelling unit is located in UT, the NHGIS PUMA code is 49003" +in.puma "UT, 49004" "The dwelling unit is located in UT, the NHGIS PUMA code is 49004" +in.puma "UT, 53001" "The dwelling unit is located in UT, the NHGIS PUMA code is 53001" +in.puma "UT, 57001" "The dwelling unit is located in UT, the NHGIS PUMA code is 57001" +in.puma "UT, 57002" "The dwelling unit is located in UT, the NHGIS PUMA code is 57002" +in.puma "VA, 01301" "The dwelling unit is located in VA, the NHGIS PUMA code is 01301" +in.puma "VA, 01302" "The dwelling unit is located in VA, the NHGIS PUMA code is 01302" +in.puma "VA, 04101" "The dwelling unit is located in VA, the NHGIS PUMA code is 04101" +in.puma "VA, 04102" "The dwelling unit is located in VA, the NHGIS PUMA code is 04102" +in.puma "VA, 04103" "The dwelling unit is located in VA, the NHGIS PUMA code is 04103" +in.puma "VA, 10701" "The dwelling unit is located in VA, the NHGIS PUMA code is 10701" +in.puma "VA, 10702" "The dwelling unit is located in VA, the NHGIS PUMA code is 10702" +in.puma "VA, 10703" "The dwelling unit is located in VA, the NHGIS PUMA code is 10703" +in.puma "VA, 51010" "The dwelling unit is located in VA, the NHGIS PUMA code is 51010" +in.puma "VA, 51020" "The dwelling unit is located in VA, the NHGIS PUMA code is 51020" +in.puma "VA, 51040" "The dwelling unit is located in VA, the NHGIS PUMA code is 51040" +in.puma "VA, 51044" "The dwelling unit is located in VA, the NHGIS PUMA code is 51044" +in.puma "VA, 51045" "The dwelling unit is located in VA, the NHGIS PUMA code is 51045" +in.puma "VA, 51080" "The dwelling unit is located in VA, the NHGIS PUMA code is 51080" +in.puma "VA, 51084" "The dwelling unit is located in VA, the NHGIS PUMA code is 51084" +in.puma "VA, 51085" "The dwelling unit is located in VA, the NHGIS PUMA code is 51085" +in.puma "VA, 51087" "The dwelling unit is located in VA, the NHGIS PUMA code is 51087" +in.puma "VA, 51089" "The dwelling unit is located in VA, the NHGIS PUMA code is 51089" +in.puma "VA, 51090" "The dwelling unit is located in VA, the NHGIS PUMA code is 51090" +in.puma "VA, 51095" "The dwelling unit is located in VA, the NHGIS PUMA code is 51095" +in.puma "VA, 51096" "The dwelling unit is located in VA, the NHGIS PUMA code is 51096" +in.puma "VA, 51097" "The dwelling unit is located in VA, the NHGIS PUMA code is 51097" +in.puma "VA, 51105" "The dwelling unit is located in VA, the NHGIS PUMA code is 51105" +in.puma "VA, 51110" "The dwelling unit is located in VA, the NHGIS PUMA code is 51110" +in.puma "VA, 51115" "The dwelling unit is located in VA, the NHGIS PUMA code is 51115" +in.puma "VA, 51120" "The dwelling unit is located in VA, the NHGIS PUMA code is 51120" +in.puma "VA, 51125" "The dwelling unit is located in VA, the NHGIS PUMA code is 51125" +in.puma "VA, 51135" "The dwelling unit is located in VA, the NHGIS PUMA code is 51135" +in.puma "VA, 51145" "The dwelling unit is located in VA, the NHGIS PUMA code is 51145" +in.puma "VA, 51154" "The dwelling unit is located in VA, the NHGIS PUMA code is 51154" +in.puma "VA, 51155" "The dwelling unit is located in VA, the NHGIS PUMA code is 51155" +in.puma "VA, 51164" "The dwelling unit is located in VA, the NHGIS PUMA code is 51164" +in.puma "VA, 51165" "The dwelling unit is located in VA, the NHGIS PUMA code is 51165" +in.puma "VA, 51167" "The dwelling unit is located in VA, the NHGIS PUMA code is 51167" +in.puma "VA, 51175" "The dwelling unit is located in VA, the NHGIS PUMA code is 51175" +in.puma "VA, 51186" "The dwelling unit is located in VA, the NHGIS PUMA code is 51186" +in.puma "VA, 51206" "The dwelling unit is located in VA, the NHGIS PUMA code is 51206" +in.puma "VA, 51215" "The dwelling unit is located in VA, the NHGIS PUMA code is 51215" +in.puma "VA, 51224" "The dwelling unit is located in VA, the NHGIS PUMA code is 51224" +in.puma "VA, 51225" "The dwelling unit is located in VA, the NHGIS PUMA code is 51225" +in.puma "VA, 51235" "The dwelling unit is located in VA, the NHGIS PUMA code is 51235" +in.puma "VA, 51244" "The dwelling unit is located in VA, the NHGIS PUMA code is 51244" +in.puma "VA, 51245" "The dwelling unit is located in VA, the NHGIS PUMA code is 51245" +in.puma "VA, 51246" "The dwelling unit is located in VA, the NHGIS PUMA code is 51246" +in.puma "VA, 51255" "The dwelling unit is located in VA, the NHGIS PUMA code is 51255" +in.puma "VA, 55001" "The dwelling unit is located in VA, the NHGIS PUMA code is 55001" +in.puma "VA, 55002" "The dwelling unit is located in VA, the NHGIS PUMA code is 55002" +in.puma "VA, 59301" "The dwelling unit is located in VA, the NHGIS PUMA code is 59301" +in.puma "VA, 59302" "The dwelling unit is located in VA, the NHGIS PUMA code is 59302" +in.puma "VA, 59303" "The dwelling unit is located in VA, the NHGIS PUMA code is 59303" +in.puma "VA, 59304" "The dwelling unit is located in VA, the NHGIS PUMA code is 59304" +in.puma "VA, 59305" "The dwelling unit is located in VA, the NHGIS PUMA code is 59305" +in.puma "VA, 59306" "The dwelling unit is located in VA, the NHGIS PUMA code is 59306" +in.puma "VA, 59307" "The dwelling unit is located in VA, the NHGIS PUMA code is 59307" +in.puma "VA, 59308" "The dwelling unit is located in VA, the NHGIS PUMA code is 59308" +in.puma "VA, 59309" "The dwelling unit is located in VA, the NHGIS PUMA code is 59309" +in.puma "VT, 00100" "The dwelling unit is located in VT, the NHGIS PUMA code is 00100" +in.puma "VT, 00200" "The dwelling unit is located in VT, the NHGIS PUMA code is 00200" +in.puma "VT, 00300" "The dwelling unit is located in VT, the NHGIS PUMA code is 00300" +in.puma "VT, 00400" "The dwelling unit is located in VT, the NHGIS PUMA code is 00400" +in.puma "WA, 10100" "The dwelling unit is located in WA, the NHGIS PUMA code is 10100" +in.puma "WA, 10200" "The dwelling unit is located in WA, the NHGIS PUMA code is 10200" +in.puma "WA, 10300" "The dwelling unit is located in WA, the NHGIS PUMA code is 10300" +in.puma "WA, 10400" "The dwelling unit is located in WA, the NHGIS PUMA code is 10400" +in.puma "WA, 10501" "The dwelling unit is located in WA, the NHGIS PUMA code is 10501" +in.puma "WA, 10502" "The dwelling unit is located in WA, the NHGIS PUMA code is 10502" +in.puma "WA, 10503" "The dwelling unit is located in WA, the NHGIS PUMA code is 10503" +in.puma "WA, 10504" "The dwelling unit is located in WA, the NHGIS PUMA code is 10504" +in.puma "WA, 10600" "The dwelling unit is located in WA, the NHGIS PUMA code is 10600" +in.puma "WA, 10701" "The dwelling unit is located in WA, the NHGIS PUMA code is 10701" +in.puma "WA, 10702" "The dwelling unit is located in WA, the NHGIS PUMA code is 10702" +in.puma "WA, 10703" "The dwelling unit is located in WA, the NHGIS PUMA code is 10703" +in.puma "WA, 10800" "The dwelling unit is located in WA, the NHGIS PUMA code is 10800" +in.puma "WA, 10901" "The dwelling unit is located in WA, the NHGIS PUMA code is 10901" +in.puma "WA, 10902" "The dwelling unit is located in WA, the NHGIS PUMA code is 10902" +in.puma "WA, 11000" "The dwelling unit is located in WA, the NHGIS PUMA code is 11000" +in.puma "WA, 11101" "The dwelling unit is located in WA, the NHGIS PUMA code is 11101" +in.puma "WA, 11102" "The dwelling unit is located in WA, the NHGIS PUMA code is 11102" +in.puma "WA, 11103" "The dwelling unit is located in WA, the NHGIS PUMA code is 11103" +in.puma "WA, 11104" "The dwelling unit is located in WA, the NHGIS PUMA code is 11104" +in.puma "WA, 11200" "The dwelling unit is located in WA, the NHGIS PUMA code is 11200" +in.puma "WA, 11300" "The dwelling unit is located in WA, the NHGIS PUMA code is 11300" +in.puma "WA, 11401" "The dwelling unit is located in WA, the NHGIS PUMA code is 11401" +in.puma "WA, 11402" "The dwelling unit is located in WA, the NHGIS PUMA code is 11402" +in.puma "WA, 11501" "The dwelling unit is located in WA, the NHGIS PUMA code is 11501" +in.puma "WA, 11502" "The dwelling unit is located in WA, the NHGIS PUMA code is 11502" +in.puma "WA, 11503" "The dwelling unit is located in WA, the NHGIS PUMA code is 11503" +in.puma "WA, 11504" "The dwelling unit is located in WA, the NHGIS PUMA code is 11504" +in.puma "WA, 11505" "The dwelling unit is located in WA, the NHGIS PUMA code is 11505" +in.puma "WA, 11506" "The dwelling unit is located in WA, the NHGIS PUMA code is 11506" +in.puma "WA, 11507" "The dwelling unit is located in WA, the NHGIS PUMA code is 11507" +in.puma "WA, 11601" "The dwelling unit is located in WA, the NHGIS PUMA code is 11601" +in.puma "WA, 11602" "The dwelling unit is located in WA, the NHGIS PUMA code is 11602" +in.puma "WA, 11603" "The dwelling unit is located in WA, the NHGIS PUMA code is 11603" +in.puma "WA, 11604" "The dwelling unit is located in WA, the NHGIS PUMA code is 11604" +in.puma "WA, 11605" "The dwelling unit is located in WA, the NHGIS PUMA code is 11605" +in.puma "WA, 11606" "The dwelling unit is located in WA, the NHGIS PUMA code is 11606" +in.puma "WA, 11607" "The dwelling unit is located in WA, the NHGIS PUMA code is 11607" +in.puma "WA, 11608" "The dwelling unit is located in WA, the NHGIS PUMA code is 11608" +in.puma "WA, 11609" "The dwelling unit is located in WA, the NHGIS PUMA code is 11609" +in.puma "WA, 11610" "The dwelling unit is located in WA, the NHGIS PUMA code is 11610" +in.puma "WA, 11611" "The dwelling unit is located in WA, the NHGIS PUMA code is 11611" +in.puma "WA, 11612" "The dwelling unit is located in WA, the NHGIS PUMA code is 11612" +in.puma "WA, 11613" "The dwelling unit is located in WA, the NHGIS PUMA code is 11613" +in.puma "WA, 11614" "The dwelling unit is located in WA, the NHGIS PUMA code is 11614" +in.puma "WA, 11615" "The dwelling unit is located in WA, the NHGIS PUMA code is 11615" +in.puma "WA, 11616" "The dwelling unit is located in WA, the NHGIS PUMA code is 11616" +in.puma "WA, 11701" "The dwelling unit is located in WA, the NHGIS PUMA code is 11701" +in.puma "WA, 11702" "The dwelling unit is located in WA, the NHGIS PUMA code is 11702" +in.puma "WA, 11703" "The dwelling unit is located in WA, the NHGIS PUMA code is 11703" +in.puma "WA, 11704" "The dwelling unit is located in WA, the NHGIS PUMA code is 11704" +in.puma "WA, 11705" "The dwelling unit is located in WA, the NHGIS PUMA code is 11705" +in.puma "WA, 11706" "The dwelling unit is located in WA, the NHGIS PUMA code is 11706" +in.puma "WA, 11801" "The dwelling unit is located in WA, the NHGIS PUMA code is 11801" +in.puma "WA, 11802" "The dwelling unit is located in WA, the NHGIS PUMA code is 11802" +in.puma "WA, 11900" "The dwelling unit is located in WA, the NHGIS PUMA code is 11900" +in.puma "WI, 00100" "The dwelling unit is located in WI, the NHGIS PUMA code is 00100" +in.puma "WI, 00101" "The dwelling unit is located in WI, the NHGIS PUMA code is 00101" +in.puma "WI, 00102" "The dwelling unit is located in WI, the NHGIS PUMA code is 00102" +in.puma "WI, 00103" "The dwelling unit is located in WI, the NHGIS PUMA code is 00103" +in.puma "WI, 00200" "The dwelling unit is located in WI, the NHGIS PUMA code is 00200" +in.puma "WI, 00300" "The dwelling unit is located in WI, the NHGIS PUMA code is 00300" +in.puma "WI, 00600" "The dwelling unit is located in WI, the NHGIS PUMA code is 00600" +in.puma "WI, 00700" "The dwelling unit is located in WI, the NHGIS PUMA code is 00700" +in.puma "WI, 00800" "The dwelling unit is located in WI, the NHGIS PUMA code is 00800" +in.puma "WI, 00900" "The dwelling unit is located in WI, the NHGIS PUMA code is 00900" +in.puma "WI, 01000" "The dwelling unit is located in WI, the NHGIS PUMA code is 01000" +in.puma "WI, 01001" "The dwelling unit is located in WI, the NHGIS PUMA code is 01001" +in.puma "WI, 01300" "The dwelling unit is located in WI, the NHGIS PUMA code is 01300" +in.puma "WI, 01301" "The dwelling unit is located in WI, the NHGIS PUMA code is 01301" +in.puma "WI, 01400" "The dwelling unit is located in WI, the NHGIS PUMA code is 01400" +in.puma "WI, 01401" "The dwelling unit is located in WI, the NHGIS PUMA code is 01401" +in.puma "WI, 01500" "The dwelling unit is located in WI, the NHGIS PUMA code is 01500" +in.puma "WI, 01501" "The dwelling unit is located in WI, the NHGIS PUMA code is 01501" +in.puma "WI, 01600" "The dwelling unit is located in WI, the NHGIS PUMA code is 01600" +in.puma "WI, 01601" "The dwelling unit is located in WI, the NHGIS PUMA code is 01601" +in.puma "WI, 02400" "The dwelling unit is located in WI, the NHGIS PUMA code is 02400" +in.puma "WI, 02500" "The dwelling unit is located in WI, the NHGIS PUMA code is 02500" +in.puma "WI, 10000" "The dwelling unit is located in WI, the NHGIS PUMA code is 10000" +in.puma "WI, 20000" "The dwelling unit is located in WI, the NHGIS PUMA code is 20000" +in.puma "WI, 30000" "The dwelling unit is located in WI, the NHGIS PUMA code is 30000" +in.puma "WI, 40101" "The dwelling unit is located in WI, the NHGIS PUMA code is 40101" +in.puma "WI, 40301" "The dwelling unit is located in WI, the NHGIS PUMA code is 40301" +in.puma "WI, 40701" "The dwelling unit is located in WI, the NHGIS PUMA code is 40701" +in.puma "WI, 41001" "The dwelling unit is located in WI, the NHGIS PUMA code is 41001" +in.puma "WI, 41002" "The dwelling unit is located in WI, the NHGIS PUMA code is 41002" +in.puma "WI, 41003" "The dwelling unit is located in WI, the NHGIS PUMA code is 41003" +in.puma "WI, 41004" "The dwelling unit is located in WI, the NHGIS PUMA code is 41004" +in.puma "WI, 41005" "The dwelling unit is located in WI, the NHGIS PUMA code is 41005" +in.puma "WI, 50000" "The dwelling unit is located in WI, the NHGIS PUMA code is 50000" +in.puma "WI, 55101" "The dwelling unit is located in WI, the NHGIS PUMA code is 55101" +in.puma "WI, 55102" "The dwelling unit is located in WI, the NHGIS PUMA code is 55102" +in.puma "WI, 55103" "The dwelling unit is located in WI, the NHGIS PUMA code is 55103" +in.puma "WI, 70101" "The dwelling unit is located in WI, the NHGIS PUMA code is 70101" +in.puma "WI, 70201" "The dwelling unit is located in WI, the NHGIS PUMA code is 70201" +in.puma "WI, 70301" "The dwelling unit is located in WI, the NHGIS PUMA code is 70301" +in.puma "WV, 00100" "The dwelling unit is located in WV, the NHGIS PUMA code is 00100" +in.puma "WV, 00200" "The dwelling unit is located in WV, the NHGIS PUMA code is 00200" +in.puma "WV, 00300" "The dwelling unit is located in WV, the NHGIS PUMA code is 00300" +in.puma "WV, 00400" "The dwelling unit is located in WV, the NHGIS PUMA code is 00400" +in.puma "WV, 00500" "The dwelling unit is located in WV, the NHGIS PUMA code is 00500" +in.puma "WV, 00600" "The dwelling unit is located in WV, the NHGIS PUMA code is 00600" +in.puma "WV, 00700" "The dwelling unit is located in WV, the NHGIS PUMA code is 00700" +in.puma "WV, 00800" "The dwelling unit is located in WV, the NHGIS PUMA code is 00800" +in.puma "WV, 00900" "The dwelling unit is located in WV, the NHGIS PUMA code is 00900" +in.puma "WV, 01000" "The dwelling unit is located in WV, the NHGIS PUMA code is 01000" +in.puma "WV, 01100" "The dwelling unit is located in WV, the NHGIS PUMA code is 01100" +in.puma "WV, 01200" "The dwelling unit is located in WV, the NHGIS PUMA code is 01200" +in.puma "WV, 01300" "The dwelling unit is located in WV, the NHGIS PUMA code is 01300" +in.puma "WY, 00100" "The dwelling unit is located in WY, the NHGIS PUMA code is 00100" +in.puma "WY, 00200" "The dwelling unit is located in WY, the NHGIS PUMA code is 00200" +in.puma "WY, 00300" "The dwelling unit is located in WY, the NHGIS PUMA code is 00300" +in.puma "WY, 00400" "The dwelling unit is located in WY, the NHGIS PUMA code is 00400" +in.puma "WY, 00500" "The dwelling unit is located in WY, the NHGIS PUMA code is 00500" +in.puma_metro_status "In metro area, not/partially in principal city" "PUMA is in metro area, but not principal city" +in.puma_metro_status "In metro area, principal city" "PUMA is in metro area, and in principal city" +in.puma_metro_status Not/partially in metro area PUMA is not in a full or partial metro area +in.pv_orientation East PV system is oriented to the east +in.pv_orientation None No PV system +in.pv_orientation North PV system is oriented to the north +in.pv_orientation Northeast PV system is oriented to the northeast +in.pv_orientation Northwest PV system is oriented to the northwest +in.pv_orientation South PV system is oriented to the south +in.pv_orientation Southeast PV system is oriented to the southeast +in.pv_orientation Southwest PV system is oriented to the southwest +in.pv_orientation West PV system is oriented to the west +in.pv_system_size 1.0 kWDC 1.0 kW PV system +in.pv_system_size 11.0 kWDC 11.0 kW PV system +in.pv_system_size 13.0 kWDC 13.0 kW PV system +in.pv_system_size 3.0 kWDC 3.0 kW PV system +in.pv_system_size 5.0 kWDC 5.0 kW PV system +in.pv_system_size 7.0 kWDC 7.0 kW PV system +in.pv_system_size 9.0 kWDC 9.0 kW PV system +in.pv_system_size None No PV system +in.radiant_barrier No Attic does not have a radiant barrier +in.radiant_barrier None Attic radiant barier is not applicable +in.range_spot_vent_hour Hour0 "Range spot ventilation occurs at hour 0, and lasts for 1 hour" +in.range_spot_vent_hour Hour1 "Range spot ventilation occurs at hour 1, and lasts for 1 hour" +in.range_spot_vent_hour Hour10 "Range spot ventilation occurs at hour 10, and lasts for 1 hour" +in.range_spot_vent_hour Hour11 "Range spot ventilation occurs at hour 11, and lasts for 1 hour" +in.range_spot_vent_hour Hour12 "Range spot ventilation occurs at hour 12, and lasts for 1 hour" +in.range_spot_vent_hour Hour13 "Range spot ventilation occurs at hour 13, and lasts for 1 hour" +in.range_spot_vent_hour Hour14 "Range spot ventilation occurs at hour 14, and lasts for 1 hour" +in.range_spot_vent_hour Hour15 "Range spot ventilation occurs at hour 15, and lasts for 1 hour" +in.range_spot_vent_hour Hour16 "Range spot ventilation occurs at hour 16, and lasts for 1 hour" +in.range_spot_vent_hour Hour17 "Range spot ventilation occurs at hour 17, and lasts for 1 hour" +in.range_spot_vent_hour Hour18 "Range spot ventilation occurs at hour 18, and lasts for 1 hour" +in.range_spot_vent_hour Hour19 "Range spot ventilation occurs at hour 19, and lasts for 1 hour" +in.range_spot_vent_hour Hour2 "Range spot ventilation occurs at hour 2, and lasts for 1 hour" +in.range_spot_vent_hour Hour20 "Range spot ventilation occurs at hour 20, and lasts for 1 hour" +in.range_spot_vent_hour Hour21 "Range spot ventilation occurs at hour 21, and lasts for 1 hour" +in.range_spot_vent_hour Hour22 "Range spot ventilation occurs at hour 22, and lasts for 1 hour" +in.range_spot_vent_hour Hour23 "Range spot ventilation occurs at hour 23, and lasts for 1 hour" +in.range_spot_vent_hour Hour3 "Range spot ventilation occurs at hour 3, and lasts for 1 hour" +in.range_spot_vent_hour Hour4 "Range spot ventilation occurs at hour 4, and lasts for 1 hour" +in.range_spot_vent_hour Hour5 "Range spot ventilation occurs at hour 5, and lasts for 1 hour" +in.range_spot_vent_hour Hour6 "Range spot ventilation occurs at hour 6, and lasts for 1 hour" +in.range_spot_vent_hour Hour7 "Range spot ventilation occurs at hour 7, and lasts for 1 hour" +in.range_spot_vent_hour Hour8 "Range spot ventilation occurs at hour 8, and lasts for 1 hour" +in.range_spot_vent_hour Hour9 "Range spot ventilation occurs at hour 9, and lasts for 1 hour" +in.reeds_balancing_area 1 Balancing area 1 of the Regional Energy Deployment System Model +in.reeds_balancing_area 2 Balancing area 2 of the Regional Energy Deployment System Model +in.reeds_balancing_area 3 Balancing area 3 of the Regional Energy Deployment System Model +in.reeds_balancing_area 4 Balancing area 4 of the Regional Energy Deployment System Model +in.reeds_balancing_area 5 Balancing area 5 of the Regional Energy Deployment System Model +in.reeds_balancing_area 6 Balancing area 6 of the Regional Energy Deployment System Model +in.reeds_balancing_area 7 Balancing area 7 of the Regional Energy Deployment System Model +in.reeds_balancing_area 8 Balancing area 8 of the Regional Energy Deployment System Model +in.reeds_balancing_area 9 Balancing area 9 of the Regional Energy Deployment System Model +in.reeds_balancing_area 10 Balancing area 10 of the Regional Energy Deployment System Model +in.reeds_balancing_area 11 Balancing area 11 of the Regional Energy Deployment System Model +in.reeds_balancing_area 12 Balancing area 12 of the Regional Energy Deployment System Model +in.reeds_balancing_area 13 Balancing area 13 of the Regional Energy Deployment System Model +in.reeds_balancing_area 14 Balancing area 14 of the Regional Energy Deployment System Model +in.reeds_balancing_area 15 Balancing area 15 of the Regional Energy Deployment System Model +in.reeds_balancing_area 16 Balancing area 16 of the Regional Energy Deployment System Model +in.reeds_balancing_area 17 Balancing area 17 of the Regional Energy Deployment System Model +in.reeds_balancing_area 18 Balancing area 18 of the Regional Energy Deployment System Model +in.reeds_balancing_area 19 Balancing area 19 of the Regional Energy Deployment System Model +in.reeds_balancing_area 20 Balancing area 20 of the Regional Energy Deployment System Model +in.reeds_balancing_area 21 Balancing area 21 of the Regional Energy Deployment System Model +in.reeds_balancing_area 22 Balancing area 22 of the Regional Energy Deployment System Model +in.reeds_balancing_area 23 Balancing area 23 of the Regional Energy Deployment System Model +in.reeds_balancing_area 24 Balancing area 24 of the Regional Energy Deployment System Model +in.reeds_balancing_area 25 Balancing area 25 of the Regional Energy Deployment System Model +in.reeds_balancing_area 26 Balancing area 26 of the Regional Energy Deployment System Model +in.reeds_balancing_area 27 Balancing area 27 of the Regional Energy Deployment System Model +in.reeds_balancing_area 28 Balancing area 28 of the Regional Energy Deployment System Model +in.reeds_balancing_area 29 Balancing area 29 of the Regional Energy Deployment System Model +in.reeds_balancing_area 30 Balancing area 30 of the Regional Energy Deployment System Model +in.reeds_balancing_area 31 Balancing area 31 of the Regional Energy Deployment System Model +in.reeds_balancing_area 32 Balancing area 32 of the Regional Energy Deployment System Model +in.reeds_balancing_area 33 Balancing area 33 of the Regional Energy Deployment System Model +in.reeds_balancing_area 34 Balancing area 34 of the Regional Energy Deployment System Model +in.reeds_balancing_area 35 Balancing area 35 of the Regional Energy Deployment System Model +in.reeds_balancing_area 36 Balancing area 36 of the Regional Energy Deployment System Model +in.reeds_balancing_area 37 Balancing area 37 of the Regional Energy Deployment System Model +in.reeds_balancing_area 38 Balancing area 38 of the Regional Energy Deployment System Model +in.reeds_balancing_area 39 Balancing area 39 of the Regional Energy Deployment System Model +in.reeds_balancing_area 40 Balancing area 40 of the Regional Energy Deployment System Model +in.reeds_balancing_area 41 Balancing area 41 of the Regional Energy Deployment System Model +in.reeds_balancing_area 42 Balancing area 42 of the Regional Energy Deployment System Model +in.reeds_balancing_area 43 Balancing area 43 of the Regional Energy Deployment System Model +in.reeds_balancing_area 44 Balancing area 44 of the Regional Energy Deployment System Model +in.reeds_balancing_area 45 Balancing area 45 of the Regional Energy Deployment System Model +in.reeds_balancing_area 46 Balancing area 46 of the Regional Energy Deployment System Model +in.reeds_balancing_area 47 Balancing area 47 of the Regional Energy Deployment System Model +in.reeds_balancing_area 48 Balancing area 48 of the Regional Energy Deployment System Model +in.reeds_balancing_area 49 Balancing area 49 of the Regional Energy Deployment System Model +in.reeds_balancing_area 50 Balancing area 50 of the Regional Energy Deployment System Model +in.reeds_balancing_area 51 Balancing area 51 of the Regional Energy Deployment System Model +in.reeds_balancing_area 52 Balancing area 52 of the Regional Energy Deployment System Model +in.reeds_balancing_area 53 Balancing area 53 of the Regional Energy Deployment System Model +in.reeds_balancing_area 54 Balancing area 54 of the Regional Energy Deployment System Model +in.reeds_balancing_area 55 Balancing area 55 of the Regional Energy Deployment System Model +in.reeds_balancing_area 56 Balancing area 56 of the Regional Energy Deployment System Model +in.reeds_balancing_area 57 Balancing area 57 of the Regional Energy Deployment System Model +in.reeds_balancing_area 58 Balancing area 58 of the Regional Energy Deployment System Model +in.reeds_balancing_area 59 Balancing area 59 of the Regional Energy Deployment System Model +in.reeds_balancing_area 60 Balancing area 60 of the Regional Energy Deployment System Model +in.reeds_balancing_area 61 Balancing area 61 of the Regional Energy Deployment System Model +in.reeds_balancing_area 62 Balancing area 62 of the Regional Energy Deployment System Model +in.reeds_balancing_area 63 Balancing area 63 of the Regional Energy Deployment System Model +in.reeds_balancing_area 64 Balancing area 64 of the Regional Energy Deployment System Model +in.reeds_balancing_area 65 Balancing area 65 of the Regional Energy Deployment System Model +in.reeds_balancing_area 66 Balancing area 66 of the Regional Energy Deployment System Model +in.reeds_balancing_area 67 Balancing area 67 of the Regional Energy Deployment System Model +in.reeds_balancing_area 68 Balancing area 68 of the Regional Energy Deployment System Model +in.reeds_balancing_area 69 Balancing area 69 of the Regional Energy Deployment System Model +in.reeds_balancing_area 70 Balancing area 70 of the Regional Energy Deployment System Model +in.reeds_balancing_area 71 Balancing area 71 of the Regional Energy Deployment System Model +in.reeds_balancing_area 72 Balancing area 72 of the Regional Energy Deployment System Model +in.reeds_balancing_area 73 Balancing area 73 of the Regional Energy Deployment System Model +in.reeds_balancing_area 74 Balancing area 74 of the Regional Energy Deployment System Model +in.reeds_balancing_area 75 Balancing area 75 of the Regional Energy Deployment System Model +in.reeds_balancing_area 76 Balancing area 76 of the Regional Energy Deployment System Model +in.reeds_balancing_area 77 Balancing area 77 of the Regional Energy Deployment System Model +in.reeds_balancing_area 78 Balancing area 78 of the Regional Energy Deployment System Model +in.reeds_balancing_area 79 Balancing area 79 of the Regional Energy Deployment System Model +in.reeds_balancing_area 80 Balancing area 80 of the Regional Energy Deployment System Model +in.reeds_balancing_area 81 Balancing area 81 of the Regional Energy Deployment System Model +in.reeds_balancing_area 82 Balancing area 82 of the Regional Energy Deployment System Model +in.reeds_balancing_area 83 Balancing area 83 of the Regional Energy Deployment System Model +in.reeds_balancing_area 84 Balancing area 84 of the Regional Energy Deployment System Model +in.reeds_balancing_area 85 Balancing area 85 of the Regional Energy Deployment System Model +in.reeds_balancing_area 86 Balancing area 86 of the Regional Energy Deployment System Model +in.reeds_balancing_area 87 Balancing area 87 of the Regional Energy Deployment System Model +in.reeds_balancing_area 88 Balancing area 88 of the Regional Energy Deployment System Model +in.reeds_balancing_area 89 Balancing area 89 of the Regional Energy Deployment System Model +in.reeds_balancing_area 90 Balancing area 90 of the Regional Energy Deployment System Model +in.reeds_balancing_area 91 Balancing area 91 of the Regional Energy Deployment System Model +in.reeds_balancing_area 92 Balancing area 92 of the Regional Energy Deployment System Model +in.reeds_balancing_area 93 Balancing area 93 of the Regional Energy Deployment System Model +in.reeds_balancing_area 94 Balancing area 94 of the Regional Energy Deployment System Model +in.reeds_balancing_area 95 Balancing area 95 of the Regional Energy Deployment System Model +in.reeds_balancing_area 96 Balancing area 96 of the Regional Energy Deployment System Model +in.reeds_balancing_area 97 Balancing area 97 of the Regional Energy Deployment System Model +in.reeds_balancing_area 98 Balancing area 98 of the Regional Energy Deployment System Model +in.reeds_balancing_area 99 Balancing area 99 of the Regional Energy Deployment System Model +in.reeds_balancing_area 100 Balancing area 100 of the Regional Energy Deployment System Model +in.reeds_balancing_area 101 Balancing area 101 of the Regional Energy Deployment System Model +in.reeds_balancing_area 102 Balancing area 102 of the Regional Energy Deployment System Model +in.reeds_balancing_area 103 Balancing area 103 of the Regional Energy Deployment System Model +in.reeds_balancing_area 104 Balancing area 104 of the Regional Energy Deployment System Model +in.reeds_balancing_area 105 Balancing area 105 of the Regional Energy Deployment System Model +in.reeds_balancing_area 106 Balancing area 106 of the Regional Energy Deployment System Model +in.reeds_balancing_area 107 Balancing area 107 of the Regional Energy Deployment System Model +in.reeds_balancing_area 108 Balancing area 108 of the Regional Energy Deployment System Model +in.reeds_balancing_area 109 Balancing area 109 of the Regional Energy Deployment System Model +in.reeds_balancing_area 110 Balancing area 110 of the Regional Energy Deployment System Model +in.reeds_balancing_area 111 Balancing area 111 of the Regional Energy Deployment System Model +in.reeds_balancing_area 112 Balancing area 112 of the Regional Energy Deployment System Model +in.reeds_balancing_area 113 Balancing area 113 of the Regional Energy Deployment System Model +in.reeds_balancing_area 114 Balancing area 114 of the Regional Energy Deployment System Model +in.reeds_balancing_area 115 Balancing area 115 of the Regional Energy Deployment System Model +in.reeds_balancing_area 116 Balancing area 116 of the Regional Energy Deployment System Model +in.reeds_balancing_area 117 Balancing area 117 of the Regional Energy Deployment System Model +in.reeds_balancing_area 118 Balancing area 118 of the Regional Energy Deployment System Model +in.reeds_balancing_area 119 Balancing area 119 of the Regional Energy Deployment System Model +in.reeds_balancing_area 120 Balancing area 120 of the Regional Energy Deployment System Model +in.reeds_balancing_area 121 Balancing area 121 of the Regional Energy Deployment System Model +in.reeds_balancing_area 122 Balancing area 122 of the Regional Energy Deployment System Model +in.reeds_balancing_area 123 Balancing area 123 of the Regional Energy Deployment System Model +in.reeds_balancing_area 124 Balancing area 124 of the Regional Energy Deployment System Model +in.reeds_balancing_area 125 Balancing area 125 of the Regional Energy Deployment System Model +in.reeds_balancing_area 126 Balancing area 126 of the Regional Energy Deployment System Model +in.reeds_balancing_area 127 Balancing area 127 of the Regional Energy Deployment System Model +in.reeds_balancing_area 128 Balancing area 128 of the Regional Energy Deployment System Model +in.reeds_balancing_area 129 Balancing area 129 of the Regional Energy Deployment System Model +in.reeds_balancing_area 130 Balancing area 130 of the Regional Energy Deployment System Model +in.reeds_balancing_area 131 Balancing area 131 of the Regional Energy Deployment System Model +in.reeds_balancing_area 132 Balancing area 132 of the Regional Energy Deployment System Model +in.reeds_balancing_area 133 Balancing area 133 of the Regional Energy Deployment System Model +in.reeds_balancing_area 134 Balancing area 134 of the Regional Energy Deployment System Model +in.reeds_balancing_area None No information on the balancing area of the Regional Energy Deployment System Model +in.refrigerator EF 10.2 Refrigerator with energy factor 10.2 +in.refrigerator EF 10.5 Refrigerator with energy factor 10.5 +in.refrigerator EF 15.9 Refrigerator with energy factor 15.9 +in.refrigerator EF 17.6 Refrigerator with energy factor 17.6 +in.refrigerator EF 19.9 Refrigerator with energy factor 19.9 +in.refrigerator EF 21.9 Refrigerator with energy factor 21.9 +in.refrigerator EF 6.7 Refrigerator with energy factor 6.7 +in.refrigerator None No refrigerator +in.refrigerator_usage_level 100% Usage Refrigerator is at 100% the national average +in.refrigerator_usage_level 105% Usage Refrigerator is at 100% the national average +in.refrigerator_usage_level 95% Usage Refrigerator is at 100% the national average +in.representative_income 1 Representative total house income in the dwelling unit is $1 +in.representative_income 4 Representative total house income in the dwelling unit is $4 +in.representative_income 10 Representative total house income in the dwelling unit is $10 +in.representative_income 11 Representative total house income in the dwelling unit is $11 +in.representative_income 20 Representative total house income in the dwelling unit is $20 +in.representative_income 21 Representative total house income in the dwelling unit is $21 +in.representative_income 22 Representative total house income in the dwelling unit is $22 +in.representative_income 30 Representative total house income in the dwelling unit is $30 +in.representative_income 31 Representative total house income in the dwelling unit is $31 +in.representative_income 32 Representative total house income in the dwelling unit is $32 +in.representative_income 40 Representative total house income in the dwelling unit is $40 +in.representative_income 42 Representative total house income in the dwelling unit is $42 +in.representative_income 43 Representative total house income in the dwelling unit is $43 +in.representative_income 53 Representative total house income in the dwelling unit is $53 +in.representative_income 61 Representative total house income in the dwelling unit is $61 +in.representative_income 62 Representative total house income in the dwelling unit is $62 +in.representative_income 64 Representative total house income in the dwelling unit is $64 +in.representative_income 65 Representative total house income in the dwelling unit is $65 +in.representative_income 71 Representative total house income in the dwelling unit is $71 +in.representative_income 72 Representative total house income in the dwelling unit is $72 +in.representative_income 74 Representative total house income in the dwelling unit is $74 +in.representative_income 82 Representative total house income in the dwelling unit is $82 +in.representative_income 86 Representative total house income in the dwelling unit is $86 +in.representative_income 91 Representative total house income in the dwelling unit is $91 +in.representative_income 95 Representative total house income in the dwelling unit is $95 +in.representative_income 97 Representative total house income in the dwelling unit is $97 +in.representative_income 101 Representative total house income in the dwelling unit is $101 +in.representative_income 103 Representative total house income in the dwelling unit is $103 +in.representative_income 105 Representative total house income in the dwelling unit is $105 +in.representative_income 108 Representative total house income in the dwelling unit is $108 +in.representative_income 121 Representative total house income in the dwelling unit is $121 +in.representative_income 124 Representative total house income in the dwelling unit is $124 +in.representative_income 126 Representative total house income in the dwelling unit is $126 +in.representative_income 129 Representative total house income in the dwelling unit is $129 +in.representative_income 134 Representative total house income in the dwelling unit is $134 +in.representative_income 138 Representative total house income in the dwelling unit is $138 +in.representative_income 139 Representative total house income in the dwelling unit is $139 +in.representative_income 141 Representative total house income in the dwelling unit is $141 +in.representative_income 145 Representative total house income in the dwelling unit is $145 +in.representative_income 151 Representative total house income in the dwelling unit is $151 +in.representative_income 152 Representative total house income in the dwelling unit is $152 +in.representative_income 155 Representative total house income in the dwelling unit is $155 +in.representative_income 161 Representative total house income in the dwelling unit is $161 +in.representative_income 162 Representative total house income in the dwelling unit is $162 +in.representative_income 165 Representative total house income in the dwelling unit is $165 +in.representative_income 169 Representative total house income in the dwelling unit is $169 +in.representative_income 171 Representative total house income in the dwelling unit is $171 +in.representative_income 173 Representative total house income in the dwelling unit is $173 +in.representative_income 179 Representative total house income in the dwelling unit is $179 +in.representative_income 182 Representative total house income in the dwelling unit is $182 +in.representative_income 183 Representative total house income in the dwelling unit is $183 +in.representative_income 185 Representative total house income in the dwelling unit is $185 +in.representative_income 192 Representative total house income in the dwelling unit is $192 +in.representative_income 194 Representative total house income in the dwelling unit is $194 +in.representative_income 196 Representative total house income in the dwelling unit is $196 +in.representative_income 200 Representative total house income in the dwelling unit is $200 +in.representative_income 202 Representative total house income in the dwelling unit is $202 +in.representative_income 204 Representative total house income in the dwelling unit is $204 +in.representative_income 205 Representative total house income in the dwelling unit is $205 +in.representative_income 207 Representative total house income in the dwelling unit is $207 +in.representative_income 211 Representative total house income in the dwelling unit is $211 +in.representative_income 212 Representative total house income in the dwelling unit is $212 +in.representative_income 215 Representative total house income in the dwelling unit is $215 +in.representative_income 216 Representative total house income in the dwelling unit is $216 +in.representative_income 221 Representative total house income in the dwelling unit is $221 +in.representative_income 222 Representative total house income in the dwelling unit is $222 +in.representative_income 225 Representative total house income in the dwelling unit is $225 +in.representative_income 232 Representative total house income in the dwelling unit is $232 +in.representative_income 236 Representative total house income in the dwelling unit is $236 +in.representative_income 242 Representative total house income in the dwelling unit is $242 +in.representative_income 243 Representative total house income in the dwelling unit is $243 +in.representative_income 247 Representative total house income in the dwelling unit is $247 +in.representative_income 248 Representative total house income in the dwelling unit is $248 +in.representative_income 253 Representative total house income in the dwelling unit is $253 +in.representative_income 258 Representative total house income in the dwelling unit is $258 +in.representative_income 259 Representative total house income in the dwelling unit is $259 +in.representative_income 263 Representative total house income in the dwelling unit is $263 +in.representative_income 264 Representative total house income in the dwelling unit is $264 +in.representative_income 268 Representative total house income in the dwelling unit is $268 +in.representative_income 270 Representative total house income in the dwelling unit is $270 +in.representative_income 279 Representative total house income in the dwelling unit is $279 +in.representative_income 281 Representative total house income in the dwelling unit is $281 +in.representative_income 283 Representative total house income in the dwelling unit is $283 +in.representative_income 289 Representative total house income in the dwelling unit is $289 +in.representative_income 290 Representative total house income in the dwelling unit is $290 +in.representative_income 293 Representative total house income in the dwelling unit is $293 +in.representative_income 295 Representative total house income in the dwelling unit is $295 +in.representative_income 299 Representative total house income in the dwelling unit is $299 +in.representative_income 300 Representative total house income in the dwelling unit is $300 +in.representative_income 303 Representative total house income in the dwelling unit is $303 +in.representative_income 309 Representative total house income in the dwelling unit is $309 +in.representative_income 311 Representative total house income in the dwelling unit is $311 +in.representative_income 313 Representative total house income in the dwelling unit is $313 +in.representative_income 317 Representative total house income in the dwelling unit is $317 +in.representative_income 320 Representative total house income in the dwelling unit is $320 +in.representative_income 322 Representative total house income in the dwelling unit is $322 +in.representative_income 324 Representative total house income in the dwelling unit is $324 +in.representative_income 330 Representative total house income in the dwelling unit is $330 +in.representative_income 333 Representative total house income in the dwelling unit is $333 +in.representative_income 343 Representative total house income in the dwelling unit is $343 +in.representative_income 344 Representative total house income in the dwelling unit is $344 +in.representative_income 345 Representative total house income in the dwelling unit is $345 +in.representative_income 348 Representative total house income in the dwelling unit is $348 +in.representative_income 351 Representative total house income in the dwelling unit is $351 +in.representative_income 354 Representative total house income in the dwelling unit is $354 +in.representative_income 356 Representative total house income in the dwelling unit is $356 +in.representative_income 361 Representative total house income in the dwelling unit is $361 +in.representative_income 364 Representative total house income in the dwelling unit is $364 +in.representative_income 369 Representative total house income in the dwelling unit is $369 +in.representative_income 372 Representative total house income in the dwelling unit is $372 +in.representative_income 374 Representative total house income in the dwelling unit is $374 +in.representative_income 376 Representative total house income in the dwelling unit is $376 +in.representative_income 378 Representative total house income in the dwelling unit is $378 +in.representative_income 379 Representative total house income in the dwelling unit is $379 +in.representative_income 382 Representative total house income in the dwelling unit is $382 +in.representative_income 387 Representative total house income in the dwelling unit is $387 +in.representative_income 388 Representative total house income in the dwelling unit is $388 +in.representative_income 394 Representative total house income in the dwelling unit is $394 +in.representative_income 400 Representative total house income in the dwelling unit is $400 +in.representative_income 402 Representative total house income in the dwelling unit is $402 +in.representative_income 404 Representative total house income in the dwelling unit is $404 +in.representative_income 406 Representative total house income in the dwelling unit is $406 +in.representative_income 411 Representative total house income in the dwelling unit is $411 +in.representative_income 412 Representative total house income in the dwelling unit is $412 +in.representative_income 418 Representative total house income in the dwelling unit is $418 +in.representative_income 422 Representative total house income in the dwelling unit is $422 +in.representative_income 424 Representative total house income in the dwelling unit is $424 +in.representative_income 429 Representative total house income in the dwelling unit is $429 +in.representative_income 430 Representative total house income in the dwelling unit is $430 +in.representative_income 433 Representative total house income in the dwelling unit is $433 +in.representative_income 434 Representative total house income in the dwelling unit is $434 +in.representative_income 443 Representative total house income in the dwelling unit is $443 +in.representative_income 444 Representative total house income in the dwelling unit is $444 +in.representative_income 450 Representative total house income in the dwelling unit is $450 +in.representative_income 454 Representative total house income in the dwelling unit is $454 +in.representative_income 455 Representative total house income in the dwelling unit is $455 +in.representative_income 464 Representative total house income in the dwelling unit is $464 +in.representative_income 465 Representative total house income in the dwelling unit is $465 +in.representative_income 473 Representative total house income in the dwelling unit is $473 +in.representative_income 474 Representative total house income in the dwelling unit is $474 +in.representative_income 483 Representative total house income in the dwelling unit is $483 +in.representative_income 487 Representative total house income in the dwelling unit is $487 +in.representative_income 495 Representative total house income in the dwelling unit is $495 +in.representative_income 505 Representative total house income in the dwelling unit is $505 +in.representative_income 506 Representative total house income in the dwelling unit is $506 +in.representative_income 507 Representative total house income in the dwelling unit is $507 +in.representative_income 516 Representative total house income in the dwelling unit is $516 +in.representative_income 519 Representative total house income in the dwelling unit is $519 +in.representative_income 526 Representative total house income in the dwelling unit is $526 +in.representative_income 527 Representative total house income in the dwelling unit is $527 +in.representative_income 532 Representative total house income in the dwelling unit is $532 +in.representative_income 536 Representative total house income in the dwelling unit is $536 +in.representative_income 537 Representative total house income in the dwelling unit is $537 +in.representative_income 541 Representative total house income in the dwelling unit is $541 +in.representative_income 545 Representative total house income in the dwelling unit is $545 +in.representative_income 547 Representative total house income in the dwelling unit is $547 +in.representative_income 551 Representative total house income in the dwelling unit is $551 +in.representative_income 556 Representative total house income in the dwelling unit is $556 +in.representative_income 557 Representative total house income in the dwelling unit is $557 +in.representative_income 558 Representative total house income in the dwelling unit is $558 +in.representative_income 562 Representative total house income in the dwelling unit is $562 +in.representative_income 569 Representative total house income in the dwelling unit is $569 +in.representative_income 574 Representative total house income in the dwelling unit is $574 +in.representative_income 577 Representative total house income in the dwelling unit is $577 +in.representative_income 579 Representative total house income in the dwelling unit is $579 +in.representative_income 590 Representative total house income in the dwelling unit is $590 +in.representative_income 591 Representative total house income in the dwelling unit is $591 +in.representative_income 595 Representative total house income in the dwelling unit is $595 +in.representative_income 596 Representative total house income in the dwelling unit is $596 +in.representative_income 599 Representative total house income in the dwelling unit is $599 +in.representative_income 605 Representative total house income in the dwelling unit is $605 +in.representative_income 606 Representative total house income in the dwelling unit is $606 +in.representative_income 609 Representative total house income in the dwelling unit is $609 +in.representative_income 612 Representative total house income in the dwelling unit is $612 +in.representative_income 616 Representative total house income in the dwelling unit is $616 +in.representative_income 619 Representative total house income in the dwelling unit is $619 +in.representative_income 624 Representative total house income in the dwelling unit is $624 +in.representative_income 626 Representative total house income in the dwelling unit is $626 +in.representative_income 633 Representative total house income in the dwelling unit is $633 +in.representative_income 636 Representative total house income in the dwelling unit is $636 +in.representative_income 639 Representative total house income in the dwelling unit is $639 +in.representative_income 643 Representative total house income in the dwelling unit is $643 +in.representative_income 644 Representative total house income in the dwelling unit is $644 +in.representative_income 646 Representative total house income in the dwelling unit is $646 +in.representative_income 648 Representative total house income in the dwelling unit is $648 +in.representative_income 654 Representative total house income in the dwelling unit is $654 +in.representative_income 657 Representative total house income in the dwelling unit is $657 +in.representative_income 659 Representative total house income in the dwelling unit is $659 +in.representative_income 666 Representative total house income in the dwelling unit is $666 +in.representative_income 671 Representative total house income in the dwelling unit is $671 +in.representative_income 677 Representative total house income in the dwelling unit is $677 +in.representative_income 681 Representative total house income in the dwelling unit is $681 +in.representative_income 686 Representative total house income in the dwelling unit is $686 +in.representative_income 687 Representative total house income in the dwelling unit is $687 +in.representative_income 691 Representative total house income in the dwelling unit is $691 +in.representative_income 692 Representative total house income in the dwelling unit is $692 +in.representative_income 696 Representative total house income in the dwelling unit is $696 +in.representative_income 697 Representative total house income in the dwelling unit is $697 +in.representative_income 701 Representative total house income in the dwelling unit is $701 +in.representative_income 702 Representative total house income in the dwelling unit is $702 +in.representative_income 707 Representative total house income in the dwelling unit is $707 +in.representative_income 708 Representative total house income in the dwelling unit is $708 +in.representative_income 709 Representative total house income in the dwelling unit is $709 +in.representative_income 712 Representative total house income in the dwelling unit is $712 +in.representative_income 717 Representative total house income in the dwelling unit is $717 +in.representative_income 719 Representative total house income in the dwelling unit is $719 +in.representative_income 722 Representative total house income in the dwelling unit is $722 +in.representative_income 724 Representative total house income in the dwelling unit is $724 +in.representative_income 728 Representative total house income in the dwelling unit is $728 +in.representative_income 729 Representative total house income in the dwelling unit is $729 +in.representative_income 735 Representative total house income in the dwelling unit is $735 +in.representative_income 738 Representative total house income in the dwelling unit is $738 +in.representative_income 741 Representative total house income in the dwelling unit is $741 +in.representative_income 748 Representative total house income in the dwelling unit is $748 +in.representative_income 752 Representative total house income in the dwelling unit is $752 +in.representative_income 756 Representative total house income in the dwelling unit is $756 +in.representative_income 758 Representative total house income in the dwelling unit is $758 +in.representative_income 759 Representative total house income in the dwelling unit is $759 +in.representative_income 762 Representative total house income in the dwelling unit is $762 +in.representative_income 770 Representative total house income in the dwelling unit is $770 +in.representative_income 773 Representative total house income in the dwelling unit is $773 +in.representative_income 774 Representative total house income in the dwelling unit is $774 +in.representative_income 778 Representative total house income in the dwelling unit is $778 +in.representative_income 781 Representative total house income in the dwelling unit is $781 +in.representative_income 784 Representative total house income in the dwelling unit is $784 +in.representative_income 789 Representative total house income in the dwelling unit is $789 +in.representative_income 791 Representative total house income in the dwelling unit is $791 +in.representative_income 794 Representative total house income in the dwelling unit is $794 +in.representative_income 798 Representative total house income in the dwelling unit is $798 +in.representative_income 800 Representative total house income in the dwelling unit is $800 +in.representative_income 802 Representative total house income in the dwelling unit is $802 +in.representative_income 804 Representative total house income in the dwelling unit is $804 +in.representative_income 805 Representative total house income in the dwelling unit is $805 +in.representative_income 808 Representative total house income in the dwelling unit is $808 +in.representative_income 810 Representative total house income in the dwelling unit is $810 +in.representative_income 815 Representative total house income in the dwelling unit is $815 +in.representative_income 816 Representative total house income in the dwelling unit is $816 +in.representative_income 818 Representative total house income in the dwelling unit is $818 +in.representative_income 822 Representative total house income in the dwelling unit is $822 +in.representative_income 825 Representative total house income in the dwelling unit is $825 +in.representative_income 826 Representative total house income in the dwelling unit is $826 +in.representative_income 832 Representative total house income in the dwelling unit is $832 +in.representative_income 833 Representative total house income in the dwelling unit is $833 +in.representative_income 836 Representative total house income in the dwelling unit is $836 +in.representative_income 838 Representative total house income in the dwelling unit is $838 +in.representative_income 843 Representative total house income in the dwelling unit is $843 +in.representative_income 849 Representative total house income in the dwelling unit is $849 +in.representative_income 853 Representative total house income in the dwelling unit is $853 +in.representative_income 856 Representative total house income in the dwelling unit is $856 +in.representative_income 858 Representative total house income in the dwelling unit is $858 +in.representative_income 859 Representative total house income in the dwelling unit is $859 +in.representative_income 864 Representative total house income in the dwelling unit is $864 +in.representative_income 865 Representative total house income in the dwelling unit is $865 +in.representative_income 869 Representative total house income in the dwelling unit is $869 +in.representative_income 876 Representative total house income in the dwelling unit is $876 +in.representative_income 879 Representative total house income in the dwelling unit is $879 +in.representative_income 881 Representative total house income in the dwelling unit is $881 +in.representative_income 886 Representative total house income in the dwelling unit is $886 +in.representative_income 891 Representative total house income in the dwelling unit is $891 +in.representative_income 896 Representative total house income in the dwelling unit is $896 +in.representative_income 897 Representative total house income in the dwelling unit is $897 +in.representative_income 899 Representative total house income in the dwelling unit is $899 +in.representative_income 902 Representative total house income in the dwelling unit is $902 +in.representative_income 907 Representative total house income in the dwelling unit is $907 +in.representative_income 908 Representative total house income in the dwelling unit is $908 +in.representative_income 909 Representative total house income in the dwelling unit is $909 +in.representative_income 913 Representative total house income in the dwelling unit is $913 +in.representative_income 918 Representative total house income in the dwelling unit is $918 +in.representative_income 919 Representative total house income in the dwelling unit is $919 +in.representative_income 923 Representative total house income in the dwelling unit is $923 +in.representative_income 928 Representative total house income in the dwelling unit is $928 +in.representative_income 929 Representative total house income in the dwelling unit is $929 +in.representative_income 934 Representative total house income in the dwelling unit is $934 +in.representative_income 938 Representative total house income in the dwelling unit is $938 +in.representative_income 940 Representative total house income in the dwelling unit is $940 +in.representative_income 945 Representative total house income in the dwelling unit is $945 +in.representative_income 949 Representative total house income in the dwelling unit is $949 +in.representative_income 950 Representative total house income in the dwelling unit is $950 +in.representative_income 951 Representative total house income in the dwelling unit is $951 +in.representative_income 955 Representative total house income in the dwelling unit is $955 +in.representative_income 959 Representative total house income in the dwelling unit is $959 +in.representative_income 960 Representative total house income in the dwelling unit is $960 +in.representative_income 966 Representative total house income in the dwelling unit is $966 +in.representative_income 970 Representative total house income in the dwelling unit is $970 +in.representative_income 972 Representative total house income in the dwelling unit is $972 +in.representative_income 980 Representative total house income in the dwelling unit is $980 +in.representative_income 981 Representative total house income in the dwelling unit is $981 +in.representative_income 983 Representative total house income in the dwelling unit is $983 +in.representative_income 987 Representative total house income in the dwelling unit is $987 +in.representative_income 990 Representative total house income in the dwelling unit is $990 +in.representative_income 991 Representative total house income in the dwelling unit is $991 +in.representative_income 994 Representative total house income in the dwelling unit is $994 +in.representative_income 999 Representative total house income in the dwelling unit is $999 +in.representative_income 1000 Representative total house income in the dwelling unit is $1000 +in.representative_income 1001 Representative total house income in the dwelling unit is $1001 +in.representative_income 1002 Representative total house income in the dwelling unit is $1002 +in.representative_income 1005 Representative total house income in the dwelling unit is $1005 +in.representative_income 1009 Representative total house income in the dwelling unit is $1009 +in.representative_income 1010 Representative total house income in the dwelling unit is $1010 +in.representative_income 1011 Representative total house income in the dwelling unit is $1011 +in.representative_income 1012 Representative total house income in the dwelling unit is $1012 +in.representative_income 1015 Representative total house income in the dwelling unit is $1015 +in.representative_income 1016 Representative total house income in the dwelling unit is $1016 +in.representative_income 1020 Representative total house income in the dwelling unit is $1020 +in.representative_income 1021 Representative total house income in the dwelling unit is $1021 +in.representative_income 1023 Representative total house income in the dwelling unit is $1023 +in.representative_income 1026 Representative total house income in the dwelling unit is $1026 +in.representative_income 1031 Representative total house income in the dwelling unit is $1031 +in.representative_income 1041 Representative total house income in the dwelling unit is $1041 +in.representative_income 1048 Representative total house income in the dwelling unit is $1048 +in.representative_income 1052 Representative total house income in the dwelling unit is $1052 +in.representative_income 1055 Representative total house income in the dwelling unit is $1055 +in.representative_income 1059 Representative total house income in the dwelling unit is $1059 +in.representative_income 1061 Representative total house income in the dwelling unit is $1061 +in.representative_income 1065 Representative total house income in the dwelling unit is $1065 +in.representative_income 1071 Representative total house income in the dwelling unit is $1071 +in.representative_income 1073 Representative total house income in the dwelling unit is $1073 +in.representative_income 1076 Representative total house income in the dwelling unit is $1076 +in.representative_income 1080 Representative total house income in the dwelling unit is $1080 +in.representative_income 1083 Representative total house income in the dwelling unit is $1083 +in.representative_income 1091 Representative total house income in the dwelling unit is $1091 +in.representative_income 1092 Representative total house income in the dwelling unit is $1092 +in.representative_income 1095 Representative total house income in the dwelling unit is $1095 +in.representative_income 1105 Representative total house income in the dwelling unit is $1105 +in.representative_income 1106 Representative total house income in the dwelling unit is $1106 +in.representative_income 1107 Representative total house income in the dwelling unit is $1107 +in.representative_income 1111 Representative total house income in the dwelling unit is $1111 +in.representative_income 1112 Representative total house income in the dwelling unit is $1112 +in.representative_income 1116 Representative total house income in the dwelling unit is $1116 +in.representative_income 1121 Representative total house income in the dwelling unit is $1121 +in.representative_income 1125 Representative total house income in the dwelling unit is $1125 +in.representative_income 1127 Representative total house income in the dwelling unit is $1127 +in.representative_income 1135 Representative total house income in the dwelling unit is $1135 +in.representative_income 1141 Representative total house income in the dwelling unit is $1141 +in.representative_income 1150 Representative total house income in the dwelling unit is $1150 +in.representative_income 1160 Representative total house income in the dwelling unit is $1160 +in.representative_income 1162 Representative total house income in the dwelling unit is $1162 +in.representative_income 1166 Representative total house income in the dwelling unit is $1166 +in.representative_income 1170 Representative total house income in the dwelling unit is $1170 +in.representative_income 1171 Representative total house income in the dwelling unit is $1171 +in.representative_income 1177 Representative total house income in the dwelling unit is $1177 +in.representative_income 1181 Representative total house income in the dwelling unit is $1181 +in.representative_income 1189 Representative total house income in the dwelling unit is $1189 +in.representative_income 1202 Representative total house income in the dwelling unit is $1202 +in.representative_income 1212 Representative total house income in the dwelling unit is $1212 +in.representative_income 1222 Representative total house income in the dwelling unit is $1222 +in.representative_income 1238 Representative total house income in the dwelling unit is $1238 +in.representative_income 1244 Representative total house income in the dwelling unit is $1244 +in.representative_income 1248 Representative total house income in the dwelling unit is $1248 +in.representative_income 1253 Representative total house income in the dwelling unit is $1253 +in.representative_income 1258 Representative total house income in the dwelling unit is $1258 +in.representative_income 1265 Representative total house income in the dwelling unit is $1265 +in.representative_income 1266 Representative total house income in the dwelling unit is $1266 +in.representative_income 1279 Representative total house income in the dwelling unit is $1279 +in.representative_income 1286 Representative total house income in the dwelling unit is $1286 +in.representative_income 1288 Representative total house income in the dwelling unit is $1288 +in.representative_income 1297 Representative total house income in the dwelling unit is $1297 +in.representative_income 1313 Representative total house income in the dwelling unit is $1313 +in.representative_income 1319 Representative total house income in the dwelling unit is $1319 +in.representative_income 1329 Representative total house income in the dwelling unit is $1329 +in.representative_income 1330 Representative total house income in the dwelling unit is $1330 +in.representative_income 1331 Representative total house income in the dwelling unit is $1331 +in.representative_income 1341 Representative total house income in the dwelling unit is $1341 +in.representative_income 1350 Representative total house income in the dwelling unit is $1350 +in.representative_income 1351 Representative total house income in the dwelling unit is $1351 +in.representative_income 1354 Representative total house income in the dwelling unit is $1354 +in.representative_income 1362 Representative total house income in the dwelling unit is $1362 +in.representative_income 1363 Representative total house income in the dwelling unit is $1363 +in.representative_income 1364 Representative total house income in the dwelling unit is $1364 +in.representative_income 1371 Representative total house income in the dwelling unit is $1371 +in.representative_income 1372 Representative total house income in the dwelling unit is $1372 +in.representative_income 1374 Representative total house income in the dwelling unit is $1374 +in.representative_income 1381 Representative total house income in the dwelling unit is $1381 +in.representative_income 1392 Representative total house income in the dwelling unit is $1392 +in.representative_income 1396 Representative total house income in the dwelling unit is $1396 +in.representative_income 1403 Representative total house income in the dwelling unit is $1403 +in.representative_income 1405 Representative total house income in the dwelling unit is $1405 +in.representative_income 1407 Representative total house income in the dwelling unit is $1407 +in.representative_income 1414 Representative total house income in the dwelling unit is $1414 +in.representative_income 1423 Representative total house income in the dwelling unit is $1423 +in.representative_income 1434 Representative total house income in the dwelling unit is $1434 +in.representative_income 1441 Representative total house income in the dwelling unit is $1441 +in.representative_income 1444 Representative total house income in the dwelling unit is $1444 +in.representative_income 1445 Representative total house income in the dwelling unit is $1445 +in.representative_income 1448 Representative total house income in the dwelling unit is $1448 +in.representative_income 1455 Representative total house income in the dwelling unit is $1455 +in.representative_income 1459 Representative total house income in the dwelling unit is $1459 +in.representative_income 1460 Representative total house income in the dwelling unit is $1460 +in.representative_income 1465 Representative total house income in the dwelling unit is $1465 +in.representative_income 1475 Representative total house income in the dwelling unit is $1475 +in.representative_income 1476 Representative total house income in the dwelling unit is $1476 +in.representative_income 1481 Representative total house income in the dwelling unit is $1481 +in.representative_income 1490 Representative total house income in the dwelling unit is $1490 +in.representative_income 1491 Representative total house income in the dwelling unit is $1491 +in.representative_income 1495 Representative total house income in the dwelling unit is $1495 +in.representative_income 1502 Representative total house income in the dwelling unit is $1502 +in.representative_income 1503 Representative total house income in the dwelling unit is $1503 +in.representative_income 1508 Representative total house income in the dwelling unit is $1508 +in.representative_income 1509 Representative total house income in the dwelling unit is $1509 +in.representative_income 1510 Representative total house income in the dwelling unit is $1510 +in.representative_income 1513 Representative total house income in the dwelling unit is $1513 +in.representative_income 1515 Representative total house income in the dwelling unit is $1515 +in.representative_income 1517 Representative total house income in the dwelling unit is $1517 +in.representative_income 1519 Representative total house income in the dwelling unit is $1519 +in.representative_income 1524 Representative total house income in the dwelling unit is $1524 +in.representative_income 1534 Representative total house income in the dwelling unit is $1534 +in.representative_income 1535 Representative total house income in the dwelling unit is $1535 +in.representative_income 1540 Representative total house income in the dwelling unit is $1540 +in.representative_income 1546 Representative total house income in the dwelling unit is $1546 +in.representative_income 1547 Representative total house income in the dwelling unit is $1547 +in.representative_income 1549 Representative total house income in the dwelling unit is $1549 +in.representative_income 1561 Representative total house income in the dwelling unit is $1561 +in.representative_income 1567 Representative total house income in the dwelling unit is $1567 +in.representative_income 1568 Representative total house income in the dwelling unit is $1568 +in.representative_income 1581 Representative total house income in the dwelling unit is $1581 +in.representative_income 1587 Representative total house income in the dwelling unit is $1587 +in.representative_income 1609 Representative total house income in the dwelling unit is $1609 +in.representative_income 1610 Representative total house income in the dwelling unit is $1610 +in.representative_income 1614 Representative total house income in the dwelling unit is $1614 +in.representative_income 1616 Representative total house income in the dwelling unit is $1616 +in.representative_income 1621 Representative total house income in the dwelling unit is $1621 +in.representative_income 1622 Representative total house income in the dwelling unit is $1622 +in.representative_income 1626 Representative total house income in the dwelling unit is $1626 +in.representative_income 1647 Representative total house income in the dwelling unit is $1647 +in.representative_income 1650 Representative total house income in the dwelling unit is $1650 +in.representative_income 1653 Representative total house income in the dwelling unit is $1653 +in.representative_income 1654 Representative total house income in the dwelling unit is $1654 +in.representative_income 1671 Representative total house income in the dwelling unit is $1671 +in.representative_income 1677 Representative total house income in the dwelling unit is $1677 +in.representative_income 1682 Representative total house income in the dwelling unit is $1682 +in.representative_income 1685 Representative total house income in the dwelling unit is $1685 +in.representative_income 1687 Representative total house income in the dwelling unit is $1687 +in.representative_income 1688 Representative total house income in the dwelling unit is $1688 +in.representative_income 1696 Representative total house income in the dwelling unit is $1696 +in.representative_income 1697 Representative total house income in the dwelling unit is $1697 +in.representative_income 1702 Representative total house income in the dwelling unit is $1702 +in.representative_income 1707 Representative total house income in the dwelling unit is $1707 +in.representative_income 1717 Representative total house income in the dwelling unit is $1717 +in.representative_income 1718 Representative total house income in the dwelling unit is $1718 +in.representative_income 1729 Representative total house income in the dwelling unit is $1729 +in.representative_income 1732 Representative total house income in the dwelling unit is $1732 +in.representative_income 1737 Representative total house income in the dwelling unit is $1737 +in.representative_income 1739 Representative total house income in the dwelling unit is $1739 +in.representative_income 1740 Representative total house income in the dwelling unit is $1740 +in.representative_income 1754 Representative total house income in the dwelling unit is $1754 +in.representative_income 1764 Representative total house income in the dwelling unit is $1764 +in.representative_income 1772 Representative total house income in the dwelling unit is $1772 +in.representative_income 1778 Representative total house income in the dwelling unit is $1778 +in.representative_income 1783 Representative total house income in the dwelling unit is $1783 +in.representative_income 1784 Representative total house income in the dwelling unit is $1784 +in.representative_income 1793 Representative total house income in the dwelling unit is $1793 +in.representative_income 1804 Representative total house income in the dwelling unit is $1804 +in.representative_income 1805 Representative total house income in the dwelling unit is $1805 +in.representative_income 1814 Representative total house income in the dwelling unit is $1814 +in.representative_income 1815 Representative total house income in the dwelling unit is $1815 +in.representative_income 1818 Representative total house income in the dwelling unit is $1818 +in.representative_income 1825 Representative total house income in the dwelling unit is $1825 +in.representative_income 1835 Representative total house income in the dwelling unit is $1835 +in.representative_income 1836 Representative total house income in the dwelling unit is $1836 +in.representative_income 1838 Representative total house income in the dwelling unit is $1838 +in.representative_income 1845 Representative total house income in the dwelling unit is $1845 +in.representative_income 1857 Representative total house income in the dwelling unit is $1857 +in.representative_income 1858 Representative total house income in the dwelling unit is $1858 +in.representative_income 1868 Representative total house income in the dwelling unit is $1868 +in.representative_income 1869 Representative total house income in the dwelling unit is $1869 +in.representative_income 1877 Representative total house income in the dwelling unit is $1877 +in.representative_income 1880 Representative total house income in the dwelling unit is $1880 +in.representative_income 1887 Representative total house income in the dwelling unit is $1887 +in.representative_income 1889 Representative total house income in the dwelling unit is $1889 +in.representative_income 1890 Representative total house income in the dwelling unit is $1890 +in.representative_income 1893 Representative total house income in the dwelling unit is $1893 +in.representative_income 1898 Representative total house income in the dwelling unit is $1898 +in.representative_income 1901 Representative total house income in the dwelling unit is $1901 +in.representative_income 1909 Representative total house income in the dwelling unit is $1909 +in.representative_income 1910 Representative total house income in the dwelling unit is $1910 +in.representative_income 1919 Representative total house income in the dwelling unit is $1919 +in.representative_income 1928 Representative total house income in the dwelling unit is $1928 +in.representative_income 1929 Representative total house income in the dwelling unit is $1929 +in.representative_income 1933 Representative total house income in the dwelling unit is $1933 +in.representative_income 1937 Representative total house income in the dwelling unit is $1937 +in.representative_income 1944 Representative total house income in the dwelling unit is $1944 +in.representative_income 1959 Representative total house income in the dwelling unit is $1959 +in.representative_income 1970 Representative total house income in the dwelling unit is $1970 +in.representative_income 1975 Representative total house income in the dwelling unit is $1975 +in.representative_income 1977 Representative total house income in the dwelling unit is $1977 +in.representative_income 1980 Representative total house income in the dwelling unit is $1980 +in.representative_income 1981 Representative total house income in the dwelling unit is $1981 +in.representative_income 1986 Representative total house income in the dwelling unit is $1986 +in.representative_income 1991 Representative total house income in the dwelling unit is $1991 +in.representative_income 2000 Representative total house income in the dwelling unit is $2000 +in.representative_income 2004 Representative total house income in the dwelling unit is $2004 +in.representative_income 2018 Representative total house income in the dwelling unit is $2018 +in.representative_income 2020 Representative total house income in the dwelling unit is $2020 +in.representative_income 2021 Representative total house income in the dwelling unit is $2021 +in.representative_income 2022 Representative total house income in the dwelling unit is $2022 +in.representative_income 2024 Representative total house income in the dwelling unit is $2024 +in.representative_income 2036 Representative total house income in the dwelling unit is $2036 +in.representative_income 2039 Representative total house income in the dwelling unit is $2039 +in.representative_income 2040 Representative total house income in the dwelling unit is $2040 +in.representative_income 2046 Representative total house income in the dwelling unit is $2046 +in.representative_income 2053 Representative total house income in the dwelling unit is $2053 +in.representative_income 2057 Representative total house income in the dwelling unit is $2057 +in.representative_income 2058 Representative total house income in the dwelling unit is $2058 +in.representative_income 2063 Representative total house income in the dwelling unit is $2063 +in.representative_income 2072 Representative total house income in the dwelling unit is $2072 +in.representative_income 2073 Representative total house income in the dwelling unit is $2073 +in.representative_income 2075 Representative total house income in the dwelling unit is $2075 +in.representative_income 2076 Representative total house income in the dwelling unit is $2076 +in.representative_income 2088 Representative total house income in the dwelling unit is $2088 +in.representative_income 2096 Representative total house income in the dwelling unit is $2096 +in.representative_income 2098 Representative total house income in the dwelling unit is $2098 +in.representative_income 2104 Representative total house income in the dwelling unit is $2104 +in.representative_income 2106 Representative total house income in the dwelling unit is $2106 +in.representative_income 2107 Representative total house income in the dwelling unit is $2107 +in.representative_income 2109 Representative total house income in the dwelling unit is $2109 +in.representative_income 2121 Representative total house income in the dwelling unit is $2121 +in.representative_income 2129 Representative total house income in the dwelling unit is $2129 +in.representative_income 2131 Representative total house income in the dwelling unit is $2131 +in.representative_income 2140 Representative total house income in the dwelling unit is $2140 +in.representative_income 2141 Representative total house income in the dwelling unit is $2141 +in.representative_income 2146 Representative total house income in the dwelling unit is $2146 +in.representative_income 2147 Representative total house income in the dwelling unit is $2147 +in.representative_income 2148 Representative total house income in the dwelling unit is $2148 +in.representative_income 2150 Representative total house income in the dwelling unit is $2150 +in.representative_income 2151 Representative total house income in the dwelling unit is $2151 +in.representative_income 2156 Representative total house income in the dwelling unit is $2156 +in.representative_income 2159 Representative total house income in the dwelling unit is $2159 +in.representative_income 2161 Representative total house income in the dwelling unit is $2161 +in.representative_income 2162 Representative total house income in the dwelling unit is $2162 +in.representative_income 2166 Representative total house income in the dwelling unit is $2166 +in.representative_income 2168 Representative total house income in the dwelling unit is $2168 +in.representative_income 2172 Representative total house income in the dwelling unit is $2172 +in.representative_income 2179 Representative total house income in the dwelling unit is $2179 +in.representative_income 2183 Representative total house income in the dwelling unit is $2183 +in.representative_income 2189 Representative total house income in the dwelling unit is $2189 +in.representative_income 2193 Representative total house income in the dwelling unit is $2193 +in.representative_income 2201 Representative total house income in the dwelling unit is $2201 +in.representative_income 2204 Representative total house income in the dwelling unit is $2204 +in.representative_income 2212 Representative total house income in the dwelling unit is $2212 +in.representative_income 2215 Representative total house income in the dwelling unit is $2215 +in.representative_income 2220 Representative total house income in the dwelling unit is $2220 +in.representative_income 2222 Representative total house income in the dwelling unit is $2222 +in.representative_income 2226 Representative total house income in the dwelling unit is $2226 +in.representative_income 2228 Representative total house income in the dwelling unit is $2228 +in.representative_income 2232 Representative total house income in the dwelling unit is $2232 +in.representative_income 2233 Representative total house income in the dwelling unit is $2233 +in.representative_income 2238 Representative total house income in the dwelling unit is $2238 +in.representative_income 2243 Representative total house income in the dwelling unit is $2243 +in.representative_income 2246 Representative total house income in the dwelling unit is $2246 +in.representative_income 2254 Representative total house income in the dwelling unit is $2254 +in.representative_income 2257 Representative total house income in the dwelling unit is $2257 +in.representative_income 2259 Representative total house income in the dwelling unit is $2259 +in.representative_income 2260 Representative total house income in the dwelling unit is $2260 +in.representative_income 2269 Representative total house income in the dwelling unit is $2269 +in.representative_income 2273 Representative total house income in the dwelling unit is $2273 +in.representative_income 2276 Representative total house income in the dwelling unit is $2276 +in.representative_income 2279 Representative total house income in the dwelling unit is $2279 +in.representative_income 2285 Representative total house income in the dwelling unit is $2285 +in.representative_income 2288 Representative total house income in the dwelling unit is $2288 +in.representative_income 2291 Representative total house income in the dwelling unit is $2291 +in.representative_income 2300 Representative total house income in the dwelling unit is $2300 +in.representative_income 2308 Representative total house income in the dwelling unit is $2308 +in.representative_income 2312 Representative total house income in the dwelling unit is $2312 +in.representative_income 2320 Representative total house income in the dwelling unit is $2320 +in.representative_income 2321 Representative total house income in the dwelling unit is $2321 +in.representative_income 2323 Representative total house income in the dwelling unit is $2323 +in.representative_income 2331 Representative total house income in the dwelling unit is $2331 +in.representative_income 2334 Representative total house income in the dwelling unit is $2334 +in.representative_income 2336 Representative total house income in the dwelling unit is $2336 +in.representative_income 2338 Representative total house income in the dwelling unit is $2338 +in.representative_income 2340 Representative total house income in the dwelling unit is $2340 +in.representative_income 2341 Representative total house income in the dwelling unit is $2341 +in.representative_income 2342 Representative total house income in the dwelling unit is $2342 +in.representative_income 2343 Representative total house income in the dwelling unit is $2343 +in.representative_income 2352 Representative total house income in the dwelling unit is $2352 +in.representative_income 2353 Representative total house income in the dwelling unit is $2353 +in.representative_income 2354 Representative total house income in the dwelling unit is $2354 +in.representative_income 2355 Representative total house income in the dwelling unit is $2355 +in.representative_income 2362 Representative total house income in the dwelling unit is $2362 +in.representative_income 2366 Representative total house income in the dwelling unit is $2366 +in.representative_income 2373 Representative total house income in the dwelling unit is $2373 +in.representative_income 2374 Representative total house income in the dwelling unit is $2374 +in.representative_income 2377 Representative total house income in the dwelling unit is $2377 +in.representative_income 2383 Representative total house income in the dwelling unit is $2383 +in.representative_income 2384 Representative total house income in the dwelling unit is $2384 +in.representative_income 2394 Representative total house income in the dwelling unit is $2394 +in.representative_income 2399 Representative total house income in the dwelling unit is $2399 +in.representative_income 2403 Representative total house income in the dwelling unit is $2403 +in.representative_income 2405 Representative total house income in the dwelling unit is $2405 +in.representative_income 2408 Representative total house income in the dwelling unit is $2408 +in.representative_income 2414 Representative total house income in the dwelling unit is $2414 +in.representative_income 2415 Representative total house income in the dwelling unit is $2415 +in.representative_income 2420 Representative total house income in the dwelling unit is $2420 +in.representative_income 2424 Representative total house income in the dwelling unit is $2424 +in.representative_income 2426 Representative total house income in the dwelling unit is $2426 +in.representative_income 2431 Representative total house income in the dwelling unit is $2431 +in.representative_income 2442 Representative total house income in the dwelling unit is $2442 +in.representative_income 2455 Representative total house income in the dwelling unit is $2455 +in.representative_income 2457 Representative total house income in the dwelling unit is $2457 +in.representative_income 2466 Representative total house income in the dwelling unit is $2466 +in.representative_income 2467 Representative total house income in the dwelling unit is $2467 +in.representative_income 2469 Representative total house income in the dwelling unit is $2469 +in.representative_income 2470 Representative total house income in the dwelling unit is $2470 +in.representative_income 2475 Representative total house income in the dwelling unit is $2475 +in.representative_income 2478 Representative total house income in the dwelling unit is $2478 +in.representative_income 2485 Representative total house income in the dwelling unit is $2485 +in.representative_income 2491 Representative total house income in the dwelling unit is $2491 +in.representative_income 2503 Representative total house income in the dwelling unit is $2503 +in.representative_income 2505 Representative total house income in the dwelling unit is $2505 +in.representative_income 2515 Representative total house income in the dwelling unit is $2515 +in.representative_income 2517 Representative total house income in the dwelling unit is $2517 +in.representative_income 2523 Representative total house income in the dwelling unit is $2523 +in.representative_income 2525 Representative total house income in the dwelling unit is $2525 +in.representative_income 2527 Representative total house income in the dwelling unit is $2527 +in.representative_income 2531 Representative total house income in the dwelling unit is $2531 +in.representative_income 2533 Representative total house income in the dwelling unit is $2533 +in.representative_income 2538 Representative total house income in the dwelling unit is $2538 +in.representative_income 2539 Representative total house income in the dwelling unit is $2539 +in.representative_income 2544 Representative total house income in the dwelling unit is $2544 +in.representative_income 2550 Representative total house income in the dwelling unit is $2550 +in.representative_income 2556 Representative total house income in the dwelling unit is $2556 +in.representative_income 2558 Representative total house income in the dwelling unit is $2558 +in.representative_income 2571 Representative total house income in the dwelling unit is $2571 +in.representative_income 2573 Representative total house income in the dwelling unit is $2573 +in.representative_income 2576 Representative total house income in the dwelling unit is $2576 +in.representative_income 2578 Representative total house income in the dwelling unit is $2578 +in.representative_income 2580 Representative total house income in the dwelling unit is $2580 +in.representative_income 2584 Representative total house income in the dwelling unit is $2584 +in.representative_income 2586 Representative total house income in the dwelling unit is $2586 +in.representative_income 2587 Representative total house income in the dwelling unit is $2587 +in.representative_income 2593 Representative total house income in the dwelling unit is $2593 +in.representative_income 2594 Representative total house income in the dwelling unit is $2594 +in.representative_income 2598 Representative total house income in the dwelling unit is $2598 +in.representative_income 2606 Representative total house income in the dwelling unit is $2606 +in.representative_income 2609 Representative total house income in the dwelling unit is $2609 +in.representative_income 2626 Representative total house income in the dwelling unit is $2626 +in.representative_income 2630 Representative total house income in the dwelling unit is $2630 +in.representative_income 2636 Representative total house income in the dwelling unit is $2636 +in.representative_income 2640 Representative total house income in the dwelling unit is $2640 +in.representative_income 2641 Representative total house income in the dwelling unit is $2641 +in.representative_income 2642 Representative total house income in the dwelling unit is $2642 +in.representative_income 2647 Representative total house income in the dwelling unit is $2647 +in.representative_income 2651 Representative total house income in the dwelling unit is $2651 +in.representative_income 2661 Representative total house income in the dwelling unit is $2661 +in.representative_income 2669 Representative total house income in the dwelling unit is $2669 +in.representative_income 2677 Representative total house income in the dwelling unit is $2677 +in.representative_income 2682 Representative total house income in the dwelling unit is $2682 +in.representative_income 2683 Representative total house income in the dwelling unit is $2683 +in.representative_income 2689 Representative total house income in the dwelling unit is $2689 +in.representative_income 2694 Representative total house income in the dwelling unit is $2694 +in.representative_income 2700 Representative total house income in the dwelling unit is $2700 +in.representative_income 2701 Representative total house income in the dwelling unit is $2701 +in.representative_income 2703 Representative total house income in the dwelling unit is $2703 +in.representative_income 2707 Representative total house income in the dwelling unit is $2707 +in.representative_income 2712 Representative total house income in the dwelling unit is $2712 +in.representative_income 2713 Representative total house income in the dwelling unit is $2713 +in.representative_income 2715 Representative total house income in the dwelling unit is $2715 +in.representative_income 2727 Representative total house income in the dwelling unit is $2727 +in.representative_income 2729 Representative total house income in the dwelling unit is $2729 +in.representative_income 2742 Representative total house income in the dwelling unit is $2742 +in.representative_income 2748 Representative total house income in the dwelling unit is $2748 +in.representative_income 2755 Representative total house income in the dwelling unit is $2755 +in.representative_income 2756 Representative total house income in the dwelling unit is $2756 +in.representative_income 2766 Representative total house income in the dwelling unit is $2766 +in.representative_income 2770 Representative total house income in the dwelling unit is $2770 +in.representative_income 2775 Representative total house income in the dwelling unit is $2775 +in.representative_income 2777 Representative total house income in the dwelling unit is $2777 +in.representative_income 2778 Representative total house income in the dwelling unit is $2778 +in.representative_income 2785 Representative total house income in the dwelling unit is $2785 +in.representative_income 2788 Representative total house income in the dwelling unit is $2788 +in.representative_income 2791 Representative total house income in the dwelling unit is $2791 +in.representative_income 2798 Representative total house income in the dwelling unit is $2798 +in.representative_income 2805 Representative total house income in the dwelling unit is $2805 +in.representative_income 2808 Representative total house income in the dwelling unit is $2808 +in.representative_income 2810 Representative total house income in the dwelling unit is $2810 +in.representative_income 2815 Representative total house income in the dwelling unit is $2815 +in.representative_income 2816 Representative total house income in the dwelling unit is $2816 +in.representative_income 2820 Representative total house income in the dwelling unit is $2820 +in.representative_income 2826 Representative total house income in the dwelling unit is $2826 +in.representative_income 2828 Representative total house income in the dwelling unit is $2828 +in.representative_income 2836 Representative total house income in the dwelling unit is $2836 +in.representative_income 2837 Representative total house income in the dwelling unit is $2837 +in.representative_income 2842 Representative total house income in the dwelling unit is $2842 +in.representative_income 2844 Representative total house income in the dwelling unit is $2844 +in.representative_income 2848 Representative total house income in the dwelling unit is $2848 +in.representative_income 2856 Representative total house income in the dwelling unit is $2856 +in.representative_income 2858 Representative total house income in the dwelling unit is $2858 +in.representative_income 2864 Representative total house income in the dwelling unit is $2864 +in.representative_income 2877 Representative total house income in the dwelling unit is $2877 +in.representative_income 2888 Representative total house income in the dwelling unit is $2888 +in.representative_income 2898 Representative total house income in the dwelling unit is $2898 +in.representative_income 2918 Representative total house income in the dwelling unit is $2918 +in.representative_income 2921 Representative total house income in the dwelling unit is $2921 +in.representative_income 2929 Representative total house income in the dwelling unit is $2929 +in.representative_income 2939 Representative total house income in the dwelling unit is $2939 +in.representative_income 2953 Representative total house income in the dwelling unit is $2953 +in.representative_income 2957 Representative total house income in the dwelling unit is $2957 +in.representative_income 2960 Representative total house income in the dwelling unit is $2960 +in.representative_income 2966 Representative total house income in the dwelling unit is $2966 +in.representative_income 2973 Representative total house income in the dwelling unit is $2973 +in.representative_income 2979 Representative total house income in the dwelling unit is $2979 +in.representative_income 2981 Representative total house income in the dwelling unit is $2981 +in.representative_income 2984 Representative total house income in the dwelling unit is $2984 +in.representative_income 2992 Representative total house income in the dwelling unit is $2992 +in.representative_income 2993 Representative total house income in the dwelling unit is $2993 +in.representative_income 2996 Representative total house income in the dwelling unit is $2996 +in.representative_income 3005 Representative total house income in the dwelling unit is $3005 +in.representative_income 3006 Representative total house income in the dwelling unit is $3006 +in.representative_income 3010 Representative total house income in the dwelling unit is $3010 +in.representative_income 3012 Representative total house income in the dwelling unit is $3012 +in.representative_income 3015 Representative total house income in the dwelling unit is $3015 +in.representative_income 3016 Representative total house income in the dwelling unit is $3016 +in.representative_income 3017 Representative total house income in the dwelling unit is $3017 +in.representative_income 3022 Representative total house income in the dwelling unit is $3022 +in.representative_income 3025 Representative total house income in the dwelling unit is $3025 +in.representative_income 3027 Representative total house income in the dwelling unit is $3027 +in.representative_income 3030 Representative total house income in the dwelling unit is $3030 +in.representative_income 3032 Representative total house income in the dwelling unit is $3032 +in.representative_income 3042 Representative total house income in the dwelling unit is $3042 +in.representative_income 3045 Representative total house income in the dwelling unit is $3045 +in.representative_income 3047 Representative total house income in the dwelling unit is $3047 +in.representative_income 3051 Representative total house income in the dwelling unit is $3051 +in.representative_income 3059 Representative total house income in the dwelling unit is $3059 +in.representative_income 3066 Representative total house income in the dwelling unit is $3066 +in.representative_income 3070 Representative total house income in the dwelling unit is $3070 +in.representative_income 3082 Representative total house income in the dwelling unit is $3082 +in.representative_income 3090 Representative total house income in the dwelling unit is $3090 +in.representative_income 3091 Representative total house income in the dwelling unit is $3091 +in.representative_income 3094 Representative total house income in the dwelling unit is $3094 +in.representative_income 3100 Representative total house income in the dwelling unit is $3100 +in.representative_income 3101 Representative total house income in the dwelling unit is $3101 +in.representative_income 3111 Representative total house income in the dwelling unit is $3111 +in.representative_income 3113 Representative total house income in the dwelling unit is $3113 +in.representative_income 3124 Representative total house income in the dwelling unit is $3124 +in.representative_income 3125 Representative total house income in the dwelling unit is $3125 +in.representative_income 3131 Representative total house income in the dwelling unit is $3131 +in.representative_income 3133 Representative total house income in the dwelling unit is $3133 +in.representative_income 3135 Representative total house income in the dwelling unit is $3135 +in.representative_income 3146 Representative total house income in the dwelling unit is $3146 +in.representative_income 3153 Representative total house income in the dwelling unit is $3153 +in.representative_income 3164 Representative total house income in the dwelling unit is $3164 +in.representative_income 3174 Representative total house income in the dwelling unit is $3174 +in.representative_income 3179 Representative total house income in the dwelling unit is $3179 +in.representative_income 3182 Representative total house income in the dwelling unit is $3182 +in.representative_income 3185 Representative total house income in the dwelling unit is $3185 +in.representative_income 3187 Representative total house income in the dwelling unit is $3187 +in.representative_income 3197 Representative total house income in the dwelling unit is $3197 +in.representative_income 3198 Representative total house income in the dwelling unit is $3198 +in.representative_income 3199 Representative total house income in the dwelling unit is $3199 +in.representative_income 3217 Representative total house income in the dwelling unit is $3217 +in.representative_income 3220 Representative total house income in the dwelling unit is $3220 +in.representative_income 3227 Representative total house income in the dwelling unit is $3227 +in.representative_income 3232 Representative total house income in the dwelling unit is $3232 +in.representative_income 3237 Representative total house income in the dwelling unit is $3237 +in.representative_income 3241 Representative total house income in the dwelling unit is $3241 +in.representative_income 3243 Representative total house income in the dwelling unit is $3243 +in.representative_income 3248 Representative total house income in the dwelling unit is $3248 +in.representative_income 3259 Representative total house income in the dwelling unit is $3259 +in.representative_income 3263 Representative total house income in the dwelling unit is $3263 +in.representative_income 3264 Representative total house income in the dwelling unit is $3264 +in.representative_income 3269 Representative total house income in the dwelling unit is $3269 +in.representative_income 3273 Representative total house income in the dwelling unit is $3273 +in.representative_income 3274 Representative total house income in the dwelling unit is $3274 +in.representative_income 3291 Representative total house income in the dwelling unit is $3291 +in.representative_income 3293 Representative total house income in the dwelling unit is $3293 +in.representative_income 3296 Representative total house income in the dwelling unit is $3296 +in.representative_income 3301 Representative total house income in the dwelling unit is $3301 +in.representative_income 3306 Representative total house income in the dwelling unit is $3306 +in.representative_income 3317 Representative total house income in the dwelling unit is $3317 +in.representative_income 3321 Representative total house income in the dwelling unit is $3321 +in.representative_income 3322 Representative total house income in the dwelling unit is $3322 +in.representative_income 3328 Representative total house income in the dwelling unit is $3328 +in.representative_income 3333 Representative total house income in the dwelling unit is $3333 +in.representative_income 3343 Representative total house income in the dwelling unit is $3343 +in.representative_income 3349 Representative total house income in the dwelling unit is $3349 +in.representative_income 3352 Representative total house income in the dwelling unit is $3352 +in.representative_income 3360 Representative total house income in the dwelling unit is $3360 +in.representative_income 3363 Representative total house income in the dwelling unit is $3363 +in.representative_income 3365 Representative total house income in the dwelling unit is $3365 +in.representative_income 3371 Representative total house income in the dwelling unit is $3371 +in.representative_income 3372 Representative total house income in the dwelling unit is $3372 +in.representative_income 3374 Representative total house income in the dwelling unit is $3374 +in.representative_income 3383 Representative total house income in the dwelling unit is $3383 +in.representative_income 3385 Representative total house income in the dwelling unit is $3385 +in.representative_income 3391 Representative total house income in the dwelling unit is $3391 +in.representative_income 3392 Representative total house income in the dwelling unit is $3392 +in.representative_income 3394 Representative total house income in the dwelling unit is $3394 +in.representative_income 3395 Representative total house income in the dwelling unit is $3395 +in.representative_income 3403 Representative total house income in the dwelling unit is $3403 +in.representative_income 3404 Representative total house income in the dwelling unit is $3404 +in.representative_income 3414 Representative total house income in the dwelling unit is $3414 +in.representative_income 3424 Representative total house income in the dwelling unit is $3424 +in.representative_income 3427 Representative total house income in the dwelling unit is $3427 +in.representative_income 3428 Representative total house income in the dwelling unit is $3428 +in.representative_income 3434 Representative total house income in the dwelling unit is $3434 +in.representative_income 3435 Representative total house income in the dwelling unit is $3435 +in.representative_income 3446 Representative total house income in the dwelling unit is $3446 +in.representative_income 3448 Representative total house income in the dwelling unit is $3448 +in.representative_income 3454 Representative total house income in the dwelling unit is $3454 +in.representative_income 3455 Representative total house income in the dwelling unit is $3455 +in.representative_income 3456 Representative total house income in the dwelling unit is $3456 +in.representative_income 3457 Representative total house income in the dwelling unit is $3457 +in.representative_income 3465 Representative total house income in the dwelling unit is $3465 +in.representative_income 3467 Representative total house income in the dwelling unit is $3467 +in.representative_income 3478 Representative total house income in the dwelling unit is $3478 +in.representative_income 3479 Representative total house income in the dwelling unit is $3479 +in.representative_income 3481 Representative total house income in the dwelling unit is $3481 +in.representative_income 3486 Representative total house income in the dwelling unit is $3486 +in.representative_income 3491 Representative total house income in the dwelling unit is $3491 +in.representative_income 3496 Representative total house income in the dwelling unit is $3496 +in.representative_income 3499 Representative total house income in the dwelling unit is $3499 +in.representative_income 3506 Representative total house income in the dwelling unit is $3506 +in.representative_income 3507 Representative total house income in the dwelling unit is $3507 +in.representative_income 3510 Representative total house income in the dwelling unit is $3510 +in.representative_income 3511 Representative total house income in the dwelling unit is $3511 +in.representative_income 3512 Representative total house income in the dwelling unit is $3512 +in.representative_income 3517 Representative total house income in the dwelling unit is $3517 +in.representative_income 3533 Representative total house income in the dwelling unit is $3533 +in.representative_income 3536 Representative total house income in the dwelling unit is $3536 +in.representative_income 3543 Representative total house income in the dwelling unit is $3543 +in.representative_income 3546 Representative total house income in the dwelling unit is $3546 +in.representative_income 3548 Representative total house income in the dwelling unit is $3548 +in.representative_income 3552 Representative total house income in the dwelling unit is $3552 +in.representative_income 3559 Representative total house income in the dwelling unit is $3559 +in.representative_income 3561 Representative total house income in the dwelling unit is $3561 +in.representative_income 3564 Representative total house income in the dwelling unit is $3564 +in.representative_income 3566 Representative total house income in the dwelling unit is $3566 +in.representative_income 3575 Representative total house income in the dwelling unit is $3575 +in.representative_income 3583 Representative total house income in the dwelling unit is $3583 +in.representative_income 3586 Representative total house income in the dwelling unit is $3586 +in.representative_income 3588 Representative total house income in the dwelling unit is $3588 +in.representative_income 3589 Representative total house income in the dwelling unit is $3589 +in.representative_income 3592 Representative total house income in the dwelling unit is $3592 +in.representative_income 3596 Representative total house income in the dwelling unit is $3596 +in.representative_income 3598 Representative total house income in the dwelling unit is $3598 +in.representative_income 3607 Representative total house income in the dwelling unit is $3607 +in.representative_income 3609 Representative total house income in the dwelling unit is $3609 +in.representative_income 3610 Representative total house income in the dwelling unit is $3610 +in.representative_income 3616 Representative total house income in the dwelling unit is $3616 +in.representative_income 3617 Representative total house income in the dwelling unit is $3617 +in.representative_income 3628 Representative total house income in the dwelling unit is $3628 +in.representative_income 3631 Representative total house income in the dwelling unit is $3631 +in.representative_income 3633 Representative total house income in the dwelling unit is $3633 +in.representative_income 3637 Representative total house income in the dwelling unit is $3637 +in.representative_income 3638 Representative total house income in the dwelling unit is $3638 +in.representative_income 3645 Representative total house income in the dwelling unit is $3645 +in.representative_income 3647 Representative total house income in the dwelling unit is $3647 +in.representative_income 3649 Representative total house income in the dwelling unit is $3649 +in.representative_income 3657 Representative total house income in the dwelling unit is $3657 +in.representative_income 3659 Representative total house income in the dwelling unit is $3659 +in.representative_income 3661 Representative total house income in the dwelling unit is $3661 +in.representative_income 3667 Representative total house income in the dwelling unit is $3667 +in.representative_income 3671 Representative total house income in the dwelling unit is $3671 +in.representative_income 3674 Representative total house income in the dwelling unit is $3674 +in.representative_income 3675 Representative total house income in the dwelling unit is $3675 +in.representative_income 3681 Representative total house income in the dwelling unit is $3681 +in.representative_income 3689 Representative total house income in the dwelling unit is $3689 +in.representative_income 3691 Representative total house income in the dwelling unit is $3691 +in.representative_income 3696 Representative total house income in the dwelling unit is $3696 +in.representative_income 3703 Representative total house income in the dwelling unit is $3703 +in.representative_income 3704 Representative total house income in the dwelling unit is $3704 +in.representative_income 3713 Representative total house income in the dwelling unit is $3713 +in.representative_income 3717 Representative total house income in the dwelling unit is $3717 +in.representative_income 3723 Representative total house income in the dwelling unit is $3723 +in.representative_income 3728 Representative total house income in the dwelling unit is $3728 +in.representative_income 3735 Representative total house income in the dwelling unit is $3735 +in.representative_income 3738 Representative total house income in the dwelling unit is $3738 +in.representative_income 3739 Representative total house income in the dwelling unit is $3739 +in.representative_income 3743 Representative total house income in the dwelling unit is $3743 +in.representative_income 3744 Representative total house income in the dwelling unit is $3744 +in.representative_income 3746 Representative total house income in the dwelling unit is $3746 +in.representative_income 3749 Representative total house income in the dwelling unit is $3749 +in.representative_income 3755 Representative total house income in the dwelling unit is $3755 +in.representative_income 3757 Representative total house income in the dwelling unit is $3757 +in.representative_income 3760 Representative total house income in the dwelling unit is $3760 +in.representative_income 3771 Representative total house income in the dwelling unit is $3771 +in.representative_income 3775 Representative total house income in the dwelling unit is $3775 +in.representative_income 3782 Representative total house income in the dwelling unit is $3782 +in.representative_income 3786 Representative total house income in the dwelling unit is $3786 +in.representative_income 3788 Representative total house income in the dwelling unit is $3788 +in.representative_income 3790 Representative total house income in the dwelling unit is $3790 +in.representative_income 3793 Representative total house income in the dwelling unit is $3793 +in.representative_income 3796 Representative total house income in the dwelling unit is $3796 +in.representative_income 3797 Representative total house income in the dwelling unit is $3797 +in.representative_income 3803 Representative total house income in the dwelling unit is $3803 +in.representative_income 3808 Representative total house income in the dwelling unit is $3808 +in.representative_income 3811 Representative total house income in the dwelling unit is $3811 +in.representative_income 3816 Representative total house income in the dwelling unit is $3816 +in.representative_income 3817 Representative total house income in the dwelling unit is $3817 +in.representative_income 3822 Representative total house income in the dwelling unit is $3822 +in.representative_income 3836 Representative total house income in the dwelling unit is $3836 +in.representative_income 3838 Representative total house income in the dwelling unit is $3838 +in.representative_income 3839 Representative total house income in the dwelling unit is $3839 +in.representative_income 3843 Representative total house income in the dwelling unit is $3843 +in.representative_income 3850 Representative total house income in the dwelling unit is $3850 +in.representative_income 3858 Representative total house income in the dwelling unit is $3858 +in.representative_income 3860 Representative total house income in the dwelling unit is $3860 +in.representative_income 3864 Representative total house income in the dwelling unit is $3864 +in.representative_income 3865 Representative total house income in the dwelling unit is $3865 +in.representative_income 3878 Representative total house income in the dwelling unit is $3878 +in.representative_income 3879 Representative total house income in the dwelling unit is $3879 +in.representative_income 3886 Representative total house income in the dwelling unit is $3886 +in.representative_income 3888 Representative total house income in the dwelling unit is $3888 +in.representative_income 3889 Representative total house income in the dwelling unit is $3889 +in.representative_income 3890 Representative total house income in the dwelling unit is $3890 +in.representative_income 3899 Representative total house income in the dwelling unit is $3899 +in.representative_income 3902 Representative total house income in the dwelling unit is $3902 +in.representative_income 3910 Representative total house income in the dwelling unit is $3910 +in.representative_income 3919 Representative total house income in the dwelling unit is $3919 +in.representative_income 3920 Representative total house income in the dwelling unit is $3920 +in.representative_income 3922 Representative total house income in the dwelling unit is $3922 +in.representative_income 3929 Representative total house income in the dwelling unit is $3929 +in.representative_income 3940 Representative total house income in the dwelling unit is $3940 +in.representative_income 3950 Representative total house income in the dwelling unit is $3950 +in.representative_income 3951 Representative total house income in the dwelling unit is $3951 +in.representative_income 3952 Representative total house income in the dwelling unit is $3952 +in.representative_income 3954 Representative total house income in the dwelling unit is $3954 +in.representative_income 3955 Representative total house income in the dwelling unit is $3955 +in.representative_income 3970 Representative total house income in the dwelling unit is $3970 +in.representative_income 3971 Representative total house income in the dwelling unit is $3971 +in.representative_income 3972 Representative total house income in the dwelling unit is $3972 +in.representative_income 3983 Representative total house income in the dwelling unit is $3983 +in.representative_income 3984 Representative total house income in the dwelling unit is $3984 +in.representative_income 3998 Representative total house income in the dwelling unit is $3998 +in.representative_income 4004 Representative total house income in the dwelling unit is $4004 +in.representative_income 4007 Representative total house income in the dwelling unit is $4007 +in.representative_income 4011 Representative total house income in the dwelling unit is $4011 +in.representative_income 4018 Representative total house income in the dwelling unit is $4018 +in.representative_income 4019 Representative total house income in the dwelling unit is $4019 +in.representative_income 4023 Representative total house income in the dwelling unit is $4023 +in.representative_income 4025 Representative total house income in the dwelling unit is $4025 +in.representative_income 4030 Representative total house income in the dwelling unit is $4030 +in.representative_income 4034 Representative total house income in the dwelling unit is $4034 +in.representative_income 4041 Representative total house income in the dwelling unit is $4041 +in.representative_income 4046 Representative total house income in the dwelling unit is $4046 +in.representative_income 4051 Representative total house income in the dwelling unit is $4051 +in.representative_income 4052 Representative total house income in the dwelling unit is $4052 +in.representative_income 4058 Representative total house income in the dwelling unit is $4058 +in.representative_income 4060 Representative total house income in the dwelling unit is $4060 +in.representative_income 4062 Representative total house income in the dwelling unit is $4062 +in.representative_income 4069 Representative total house income in the dwelling unit is $4069 +in.representative_income 4071 Representative total house income in the dwelling unit is $4071 +in.representative_income 4075 Representative total house income in the dwelling unit is $4075 +in.representative_income 4079 Representative total house income in the dwelling unit is $4079 +in.representative_income 4084 Representative total house income in the dwelling unit is $4084 +in.representative_income 4085 Representative total house income in the dwelling unit is $4085 +in.representative_income 4091 Representative total house income in the dwelling unit is $4091 +in.representative_income 4094 Representative total house income in the dwelling unit is $4094 +in.representative_income 4101 Representative total house income in the dwelling unit is $4101 +in.representative_income 4105 Representative total house income in the dwelling unit is $4105 +in.representative_income 4106 Representative total house income in the dwelling unit is $4106 +in.representative_income 4113 Representative total house income in the dwelling unit is $4113 +in.representative_income 4114 Representative total house income in the dwelling unit is $4114 +in.representative_income 4116 Representative total house income in the dwelling unit is $4116 +in.representative_income 4121 Representative total house income in the dwelling unit is $4121 +in.representative_income 4124 Representative total house income in the dwelling unit is $4124 +in.representative_income 4125 Representative total house income in the dwelling unit is $4125 +in.representative_income 4127 Representative total house income in the dwelling unit is $4127 +in.representative_income 4133 Representative total house income in the dwelling unit is $4133 +in.representative_income 4142 Representative total house income in the dwelling unit is $4142 +in.representative_income 4147 Representative total house income in the dwelling unit is $4147 +in.representative_income 4149 Representative total house income in the dwelling unit is $4149 +in.representative_income 4152 Representative total house income in the dwelling unit is $4152 +in.representative_income 4154 Representative total house income in the dwelling unit is $4154 +in.representative_income 4157 Representative total house income in the dwelling unit is $4157 +in.representative_income 4166 Representative total house income in the dwelling unit is $4166 +in.representative_income 4167 Representative total house income in the dwelling unit is $4167 +in.representative_income 4175 Representative total house income in the dwelling unit is $4175 +in.representative_income 4177 Representative total house income in the dwelling unit is $4177 +in.representative_income 4181 Representative total house income in the dwelling unit is $4181 +in.representative_income 4182 Representative total house income in the dwelling unit is $4182 +in.representative_income 4187 Representative total house income in the dwelling unit is $4187 +in.representative_income 4188 Representative total house income in the dwelling unit is $4188 +in.representative_income 4192 Representative total house income in the dwelling unit is $4192 +in.representative_income 4197 Representative total house income in the dwelling unit is $4197 +in.representative_income 4198 Representative total house income in the dwelling unit is $4198 +in.representative_income 4214 Representative total house income in the dwelling unit is $4214 +in.representative_income 4217 Representative total house income in the dwelling unit is $4217 +in.representative_income 4219 Representative total house income in the dwelling unit is $4219 +in.representative_income 4224 Representative total house income in the dwelling unit is $4224 +in.representative_income 4229 Representative total house income in the dwelling unit is $4229 +in.representative_income 4233 Representative total house income in the dwelling unit is $4233 +in.representative_income 4235 Representative total house income in the dwelling unit is $4235 +in.representative_income 4243 Representative total house income in the dwelling unit is $4243 +in.representative_income 4246 Representative total house income in the dwelling unit is $4246 +in.representative_income 4247 Representative total house income in the dwelling unit is $4247 +in.representative_income 4260 Representative total house income in the dwelling unit is $4260 +in.representative_income 4267 Representative total house income in the dwelling unit is $4267 +in.representative_income 4268 Representative total house income in the dwelling unit is $4268 +in.representative_income 4271 Representative total house income in the dwelling unit is $4271 +in.representative_income 4272 Representative total house income in the dwelling unit is $4272 +in.representative_income 4280 Representative total house income in the dwelling unit is $4280 +in.representative_income 4290 Representative total house income in the dwelling unit is $4290 +in.representative_income 4292 Representative total house income in the dwelling unit is $4292 +in.representative_income 4293 Representative total house income in the dwelling unit is $4293 +in.representative_income 4295 Representative total house income in the dwelling unit is $4295 +in.representative_income 4313 Representative total house income in the dwelling unit is $4313 +in.representative_income 4314 Representative total house income in the dwelling unit is $4314 +in.representative_income 4315 Representative total house income in the dwelling unit is $4315 +in.representative_income 4321 Representative total house income in the dwelling unit is $4321 +in.representative_income 4323 Representative total house income in the dwelling unit is $4323 +in.representative_income 4324 Representative total house income in the dwelling unit is $4324 +in.representative_income 4332 Representative total house income in the dwelling unit is $4332 +in.representative_income 4337 Representative total house income in the dwelling unit is $4337 +in.representative_income 4344 Representative total house income in the dwelling unit is $4344 +in.representative_income 4348 Representative total house income in the dwelling unit is $4348 +in.representative_income 4357 Representative total house income in the dwelling unit is $4357 +in.representative_income 4361 Representative total house income in the dwelling unit is $4361 +in.representative_income 4366 Representative total house income in the dwelling unit is $4366 +in.representative_income 4374 Representative total house income in the dwelling unit is $4374 +in.representative_income 4376 Representative total house income in the dwelling unit is $4376 +in.representative_income 4380 Representative total house income in the dwelling unit is $4380 +in.representative_income 4388 Representative total house income in the dwelling unit is $4388 +in.representative_income 4401 Representative total house income in the dwelling unit is $4401 +in.representative_income 4414 Representative total house income in the dwelling unit is $4414 +in.representative_income 4419 Representative total house income in the dwelling unit is $4419 +in.representative_income 4422 Representative total house income in the dwelling unit is $4422 +in.representative_income 4424 Representative total house income in the dwelling unit is $4424 +in.representative_income 4429 Representative total house income in the dwelling unit is $4429 +in.representative_income 4430 Representative total house income in the dwelling unit is $4430 +in.representative_income 4435 Representative total house income in the dwelling unit is $4435 +in.representative_income 4440 Representative total house income in the dwelling unit is $4440 +in.representative_income 4444 Representative total house income in the dwelling unit is $4444 +in.representative_income 4445 Representative total house income in the dwelling unit is $4445 +in.representative_income 4450 Representative total house income in the dwelling unit is $4450 +in.representative_income 4461 Representative total house income in the dwelling unit is $4461 +in.representative_income 4473 Representative total house income in the dwelling unit is $4473 +in.representative_income 4475 Representative total house income in the dwelling unit is $4475 +in.representative_income 4476 Representative total house income in the dwelling unit is $4476 +in.representative_income 4477 Representative total house income in the dwelling unit is $4477 +in.representative_income 4503 Representative total house income in the dwelling unit is $4503 +in.representative_income 4506 Representative total house income in the dwelling unit is $4506 +in.representative_income 4507 Representative total house income in the dwelling unit is $4507 +in.representative_income 4509 Representative total house income in the dwelling unit is $4509 +in.representative_income 4515 Representative total house income in the dwelling unit is $4515 +in.representative_income 4517 Representative total house income in the dwelling unit is $4517 +in.representative_income 4519 Representative total house income in the dwelling unit is $4519 +in.representative_income 4523 Representative total house income in the dwelling unit is $4523 +in.representative_income 4535 Representative total house income in the dwelling unit is $4535 +in.representative_income 4536 Representative total house income in the dwelling unit is $4536 +in.representative_income 4538 Representative total house income in the dwelling unit is $4538 +in.representative_income 4539 Representative total house income in the dwelling unit is $4539 +in.representative_income 4545 Representative total house income in the dwelling unit is $4545 +in.representative_income 4546 Representative total house income in the dwelling unit is $4546 +in.representative_income 4551 Representative total house income in the dwelling unit is $4551 +in.representative_income 4562 Representative total house income in the dwelling unit is $4562 +in.representative_income 4573 Representative total house income in the dwelling unit is $4573 +in.representative_income 4576 Representative total house income in the dwelling unit is $4576 +in.representative_income 4579 Representative total house income in the dwelling unit is $4579 +in.representative_income 4581 Representative total house income in the dwelling unit is $4581 +in.representative_income 4582 Representative total house income in the dwelling unit is $4582 +in.representative_income 4585 Representative total house income in the dwelling unit is $4585 +in.representative_income 4588 Representative total house income in the dwelling unit is $4588 +in.representative_income 4590 Representative total house income in the dwelling unit is $4590 +in.representative_income 4591 Representative total house income in the dwelling unit is $4591 +in.representative_income 4594 Representative total house income in the dwelling unit is $4594 +in.representative_income 4598 Representative total house income in the dwelling unit is $4598 +in.representative_income 4600 Representative total house income in the dwelling unit is $4600 +in.representative_income 4616 Representative total house income in the dwelling unit is $4616 +in.representative_income 4619 Representative total house income in the dwelling unit is $4619 +in.representative_income 4637 Representative total house income in the dwelling unit is $4637 +in.representative_income 4640 Representative total house income in the dwelling unit is $4640 +in.representative_income 4642 Representative total house income in the dwelling unit is $4642 +in.representative_income 4646 Representative total house income in the dwelling unit is $4646 +in.representative_income 4647 Representative total house income in the dwelling unit is $4647 +in.representative_income 4648 Representative total house income in the dwelling unit is $4648 +in.representative_income 4662 Representative total house income in the dwelling unit is $4662 +in.representative_income 4667 Representative total house income in the dwelling unit is $4667 +in.representative_income 4672 Representative total house income in the dwelling unit is $4672 +in.representative_income 4679 Representative total house income in the dwelling unit is $4679 +in.representative_income 4680 Representative total house income in the dwelling unit is $4680 +in.representative_income 4683 Representative total house income in the dwelling unit is $4683 +in.representative_income 4687 Representative total house income in the dwelling unit is $4687 +in.representative_income 4691 Representative total house income in the dwelling unit is $4691 +in.representative_income 4693 Representative total house income in the dwelling unit is $4693 +in.representative_income 4697 Representative total house income in the dwelling unit is $4697 +in.representative_income 4701 Representative total house income in the dwelling unit is $4701 +in.representative_income 4708 Representative total house income in the dwelling unit is $4708 +in.representative_income 4724 Representative total house income in the dwelling unit is $4724 +in.representative_income 4732 Representative total house income in the dwelling unit is $4732 +in.representative_income 4734 Representative total house income in the dwelling unit is $4734 +in.representative_income 4735 Representative total house income in the dwelling unit is $4735 +in.representative_income 4743 Representative total house income in the dwelling unit is $4743 +in.representative_income 4744 Representative total house income in the dwelling unit is $4744 +in.representative_income 4746 Representative total house income in the dwelling unit is $4746 +in.representative_income 4748 Representative total house income in the dwelling unit is $4748 +in.representative_income 4752 Representative total house income in the dwelling unit is $4752 +in.representative_income 4754 Representative total house income in the dwelling unit is $4754 +in.representative_income 4755 Representative total house income in the dwelling unit is $4755 +in.representative_income 4757 Representative total house income in the dwelling unit is $4757 +in.representative_income 4776 Representative total house income in the dwelling unit is $4776 +in.representative_income 4777 Representative total house income in the dwelling unit is $4777 +in.representative_income 4778 Representative total house income in the dwelling unit is $4778 +in.representative_income 4786 Representative total house income in the dwelling unit is $4786 +in.representative_income 4788 Representative total house income in the dwelling unit is $4788 +in.representative_income 4796 Representative total house income in the dwelling unit is $4796 +in.representative_income 4808 Representative total house income in the dwelling unit is $4808 +in.representative_income 4809 Representative total house income in the dwelling unit is $4809 +in.representative_income 4819 Representative total house income in the dwelling unit is $4819 +in.representative_income 4830 Representative total house income in the dwelling unit is $4830 +in.representative_income 4838 Representative total house income in the dwelling unit is $4838 +in.representative_income 4840 Representative total house income in the dwelling unit is $4840 +in.representative_income 4841 Representative total house income in the dwelling unit is $4841 +in.representative_income 4842 Representative total house income in the dwelling unit is $4842 +in.representative_income 4845 Representative total house income in the dwelling unit is $4845 +in.representative_income 4848 Representative total house income in the dwelling unit is $4848 +in.representative_income 4849 Representative total house income in the dwelling unit is $4849 +in.representative_income 4850 Representative total house income in the dwelling unit is $4850 +in.representative_income 4852 Representative total house income in the dwelling unit is $4852 +in.representative_income 4858 Representative total house income in the dwelling unit is $4858 +in.representative_income 4859 Representative total house income in the dwelling unit is $4859 +in.representative_income 4862 Representative total house income in the dwelling unit is $4862 +in.representative_income 4869 Representative total house income in the dwelling unit is $4869 +in.representative_income 4872 Representative total house income in the dwelling unit is $4872 +in.representative_income 4880 Representative total house income in the dwelling unit is $4880 +in.representative_income 4883 Representative total house income in the dwelling unit is $4883 +in.representative_income 4884 Representative total house income in the dwelling unit is $4884 +in.representative_income 4889 Representative total house income in the dwelling unit is $4889 +in.representative_income 4893 Representative total house income in the dwelling unit is $4893 +in.representative_income 4894 Representative total house income in the dwelling unit is $4894 +in.representative_income 4898 Representative total house income in the dwelling unit is $4898 +in.representative_income 4899 Representative total house income in the dwelling unit is $4899 +in.representative_income 4902 Representative total house income in the dwelling unit is $4902 +in.representative_income 4909 Representative total house income in the dwelling unit is $4909 +in.representative_income 4916 Representative total house income in the dwelling unit is $4916 +in.representative_income 4938 Representative total house income in the dwelling unit is $4938 +in.representative_income 4940 Representative total house income in the dwelling unit is $4940 +in.representative_income 4946 Representative total house income in the dwelling unit is $4946 +in.representative_income 4950 Representative total house income in the dwelling unit is $4950 +in.representative_income 4951 Representative total house income in the dwelling unit is $4951 +in.representative_income 4952 Representative total house income in the dwelling unit is $4952 +in.representative_income 4957 Representative total house income in the dwelling unit is $4957 +in.representative_income 4959 Representative total house income in the dwelling unit is $4959 +in.representative_income 4970 Representative total house income in the dwelling unit is $4970 +in.representative_income 4981 Representative total house income in the dwelling unit is $4981 +in.representative_income 4982 Representative total house income in the dwelling unit is $4982 +in.representative_income 4990 Representative total house income in the dwelling unit is $4990 +in.representative_income 4992 Representative total house income in the dwelling unit is $4992 +in.representative_income 5001 Representative total house income in the dwelling unit is $5001 +in.representative_income 5009 Representative total house income in the dwelling unit is $5009 +in.representative_income 5010 Representative total house income in the dwelling unit is $5010 +in.representative_income 5013 Representative total house income in the dwelling unit is $5013 +in.representative_income 5024 Representative total house income in the dwelling unit is $5024 +in.representative_income 5033 Representative total house income in the dwelling unit is $5033 +in.representative_income 5035 Representative total house income in the dwelling unit is $5035 +in.representative_income 5045 Representative total house income in the dwelling unit is $5045 +in.representative_income 5051 Representative total house income in the dwelling unit is $5051 +in.representative_income 5054 Representative total house income in the dwelling unit is $5054 +in.representative_income 5056 Representative total house income in the dwelling unit is $5056 +in.representative_income 5062 Representative total house income in the dwelling unit is $5062 +in.representative_income 5066 Representative total house income in the dwelling unit is $5066 +in.representative_income 5067 Representative total house income in the dwelling unit is $5067 +in.representative_income 5071 Representative total house income in the dwelling unit is $5071 +in.representative_income 5078 Representative total house income in the dwelling unit is $5078 +in.representative_income 5081 Representative total house income in the dwelling unit is $5081 +in.representative_income 5091 Representative total house income in the dwelling unit is $5091 +in.representative_income 5093 Representative total house income in the dwelling unit is $5093 +in.representative_income 5104 Representative total house income in the dwelling unit is $5104 +in.representative_income 5105 Representative total house income in the dwelling unit is $5105 +in.representative_income 5111 Representative total house income in the dwelling unit is $5111 +in.representative_income 5115 Representative total house income in the dwelling unit is $5115 +in.representative_income 5119 Representative total house income in the dwelling unit is $5119 +in.representative_income 5121 Representative total house income in the dwelling unit is $5121 +in.representative_income 5131 Representative total house income in the dwelling unit is $5131 +in.representative_income 5136 Representative total house income in the dwelling unit is $5136 +in.representative_income 5143 Representative total house income in the dwelling unit is $5143 +in.representative_income 5147 Representative total house income in the dwelling unit is $5147 +in.representative_income 5152 Representative total house income in the dwelling unit is $5152 +in.representative_income 5153 Representative total house income in the dwelling unit is $5153 +in.representative_income 5154 Representative total house income in the dwelling unit is $5154 +in.representative_income 5158 Representative total house income in the dwelling unit is $5158 +in.representative_income 5165 Representative total house income in the dwelling unit is $5165 +in.representative_income 5167 Representative total house income in the dwelling unit is $5167 +in.representative_income 5170 Representative total house income in the dwelling unit is $5170 +in.representative_income 5178 Representative total house income in the dwelling unit is $5178 +in.representative_income 5187 Representative total house income in the dwelling unit is $5187 +in.representative_income 5188 Representative total house income in the dwelling unit is $5188 +in.representative_income 5191 Representative total house income in the dwelling unit is $5191 +in.representative_income 5192 Representative total house income in the dwelling unit is $5192 +in.representative_income 5202 Representative total house income in the dwelling unit is $5202 +in.representative_income 5203 Representative total house income in the dwelling unit is $5203 +in.representative_income 5208 Representative total house income in the dwelling unit is $5208 +in.representative_income 5211 Representative total house income in the dwelling unit is $5211 +in.representative_income 5216 Representative total house income in the dwelling unit is $5216 +in.representative_income 5219 Representative total house income in the dwelling unit is $5219 +in.representative_income 5229 Representative total house income in the dwelling unit is $5229 +in.representative_income 5231 Representative total house income in the dwelling unit is $5231 +in.representative_income 5240 Representative total house income in the dwelling unit is $5240 +in.representative_income 5241 Representative total house income in the dwelling unit is $5241 +in.representative_income 5243 Representative total house income in the dwelling unit is $5243 +in.representative_income 5245 Representative total house income in the dwelling unit is $5245 +in.representative_income 5253 Representative total house income in the dwelling unit is $5253 +in.representative_income 5260 Representative total house income in the dwelling unit is $5260 +in.representative_income 5262 Representative total house income in the dwelling unit is $5262 +in.representative_income 5263 Representative total house income in the dwelling unit is $5263 +in.representative_income 5271 Representative total house income in the dwelling unit is $5271 +in.representative_income 5273 Representative total house income in the dwelling unit is $5273 +in.representative_income 5282 Representative total house income in the dwelling unit is $5282 +in.representative_income 5283 Representative total house income in the dwelling unit is $5283 +in.representative_income 5293 Representative total house income in the dwelling unit is $5293 +in.representative_income 5295 Representative total house income in the dwelling unit is $5295 +in.representative_income 5304 Representative total house income in the dwelling unit is $5304 +in.representative_income 5305 Representative total house income in the dwelling unit is $5305 +in.representative_income 5307 Representative total house income in the dwelling unit is $5307 +in.representative_income 5315 Representative total house income in the dwelling unit is $5315 +in.representative_income 5318 Representative total house income in the dwelling unit is $5318 +in.representative_income 5322 Representative total house income in the dwelling unit is $5322 +in.representative_income 5324 Representative total house income in the dwelling unit is $5324 +in.representative_income 5327 Representative total house income in the dwelling unit is $5327 +in.representative_income 5335 Representative total house income in the dwelling unit is $5335 +in.representative_income 5344 Representative total house income in the dwelling unit is $5344 +in.representative_income 5349 Representative total house income in the dwelling unit is $5349 +in.representative_income 5354 Representative total house income in the dwelling unit is $5354 +in.representative_income 5363 Representative total house income in the dwelling unit is $5363 +in.representative_income 5365 Representative total house income in the dwelling unit is $5365 +in.representative_income 5367 Representative total house income in the dwelling unit is $5367 +in.representative_income 5368 Representative total house income in the dwelling unit is $5368 +in.representative_income 5372 Representative total house income in the dwelling unit is $5372 +in.representative_income 5377 Representative total house income in the dwelling unit is $5377 +in.representative_income 5378 Representative total house income in the dwelling unit is $5378 +in.representative_income 5379 Representative total house income in the dwelling unit is $5379 +in.representative_income 5381 Representative total house income in the dwelling unit is $5381 +in.representative_income 5384 Representative total house income in the dwelling unit is $5384 +in.representative_income 5385 Representative total house income in the dwelling unit is $5385 +in.representative_income 5389 Representative total house income in the dwelling unit is $5389 +in.representative_income 5392 Representative total house income in the dwelling unit is $5392 +in.representative_income 5400 Representative total house income in the dwelling unit is $5400 +in.representative_income 5403 Representative total house income in the dwelling unit is $5403 +in.representative_income 5410 Representative total house income in the dwelling unit is $5410 +in.representative_income 5421 Representative total house income in the dwelling unit is $5421 +in.representative_income 5424 Representative total house income in the dwelling unit is $5424 +in.representative_income 5429 Representative total house income in the dwelling unit is $5429 +in.representative_income 5431 Representative total house income in the dwelling unit is $5431 +in.representative_income 5435 Representative total house income in the dwelling unit is $5435 +in.representative_income 5440 Representative total house income in the dwelling unit is $5440 +in.representative_income 5442 Representative total house income in the dwelling unit is $5442 +in.representative_income 5446 Representative total house income in the dwelling unit is $5446 +in.representative_income 5455 Representative total house income in the dwelling unit is $5455 +in.representative_income 5462 Representative total house income in the dwelling unit is $5462 +in.representative_income 5464 Representative total house income in the dwelling unit is $5464 +in.representative_income 5467 Representative total house income in the dwelling unit is $5467 +in.representative_income 5474 Representative total house income in the dwelling unit is $5474 +in.representative_income 5475 Representative total house income in the dwelling unit is $5475 +in.representative_income 5484 Representative total house income in the dwelling unit is $5484 +in.representative_income 5485 Representative total house income in the dwelling unit is $5485 +in.representative_income 5495 Representative total house income in the dwelling unit is $5495 +in.representative_income 5508 Representative total house income in the dwelling unit is $5508 +in.representative_income 5510 Representative total house income in the dwelling unit is $5510 +in.representative_income 5515 Representative total house income in the dwelling unit is $5515 +in.representative_income 5516 Representative total house income in the dwelling unit is $5516 +in.representative_income 5518 Representative total house income in the dwelling unit is $5518 +in.representative_income 5521 Representative total house income in the dwelling unit is $5521 +in.representative_income 5528 Representative total house income in the dwelling unit is $5528 +in.representative_income 5536 Representative total house income in the dwelling unit is $5536 +in.representative_income 5539 Representative total house income in the dwelling unit is $5539 +in.representative_income 5543 Representative total house income in the dwelling unit is $5543 +in.representative_income 5547 Representative total house income in the dwelling unit is $5547 +in.representative_income 5550 Representative total house income in the dwelling unit is $5550 +in.representative_income 5554 Representative total house income in the dwelling unit is $5554 +in.representative_income 5556 Representative total house income in the dwelling unit is $5556 +in.representative_income 5564 Representative total house income in the dwelling unit is $5564 +in.representative_income 5565 Representative total house income in the dwelling unit is $5565 +in.representative_income 5570 Representative total house income in the dwelling unit is $5570 +in.representative_income 5576 Representative total house income in the dwelling unit is $5576 +in.representative_income 5578 Representative total house income in the dwelling unit is $5578 +in.representative_income 5580 Representative total house income in the dwelling unit is $5580 +in.representative_income 5582 Representative total house income in the dwelling unit is $5582 +in.representative_income 5588 Representative total house income in the dwelling unit is $5588 +in.representative_income 5590 Representative total house income in the dwelling unit is $5590 +in.representative_income 5593 Representative total house income in the dwelling unit is $5593 +in.representative_income 5597 Representative total house income in the dwelling unit is $5597 +in.representative_income 5603 Representative total house income in the dwelling unit is $5603 +in.representative_income 5606 Representative total house income in the dwelling unit is $5606 +in.representative_income 5608 Representative total house income in the dwelling unit is $5608 +in.representative_income 5610 Representative total house income in the dwelling unit is $5610 +in.representative_income 5618 Representative total house income in the dwelling unit is $5618 +in.representative_income 5625 Representative total house income in the dwelling unit is $5625 +in.representative_income 5627 Representative total house income in the dwelling unit is $5627 +in.representative_income 5629 Representative total house income in the dwelling unit is $5629 +in.representative_income 5637 Representative total house income in the dwelling unit is $5637 +in.representative_income 5647 Representative total house income in the dwelling unit is $5647 +in.representative_income 5657 Representative total house income in the dwelling unit is $5657 +in.representative_income 5662 Representative total house income in the dwelling unit is $5662 +in.representative_income 5667 Representative total house income in the dwelling unit is $5667 +in.representative_income 5673 Representative total house income in the dwelling unit is $5673 +in.representative_income 5683 Representative total house income in the dwelling unit is $5683 +in.representative_income 5689 Representative total house income in the dwelling unit is $5689 +in.representative_income 5692 Representative total house income in the dwelling unit is $5692 +in.representative_income 5693 Representative total house income in the dwelling unit is $5693 +in.representative_income 5694 Representative total house income in the dwelling unit is $5694 +in.representative_income 5695 Representative total house income in the dwelling unit is $5695 +in.representative_income 5697 Representative total house income in the dwelling unit is $5697 +in.representative_income 5699 Representative total house income in the dwelling unit is $5699 +in.representative_income 5707 Representative total house income in the dwelling unit is $5707 +in.representative_income 5711 Representative total house income in the dwelling unit is $5711 +in.representative_income 5721 Representative total house income in the dwelling unit is $5721 +in.representative_income 5725 Representative total house income in the dwelling unit is $5725 +in.representative_income 5726 Representative total house income in the dwelling unit is $5726 +in.representative_income 5732 Representative total house income in the dwelling unit is $5732 +in.representative_income 5746 Representative total house income in the dwelling unit is $5746 +in.representative_income 5755 Representative total house income in the dwelling unit is $5755 +in.representative_income 5758 Representative total house income in the dwelling unit is $5758 +in.representative_income 5769 Representative total house income in the dwelling unit is $5769 +in.representative_income 5776 Representative total house income in the dwelling unit is $5776 +in.representative_income 5778 Representative total house income in the dwelling unit is $5778 +in.representative_income 5791 Representative total house income in the dwelling unit is $5791 +in.representative_income 5797 Representative total house income in the dwelling unit is $5797 +in.representative_income 5800 Representative total house income in the dwelling unit is $5800 +in.representative_income 5804 Representative total house income in the dwelling unit is $5804 +in.representative_income 5806 Representative total house income in the dwelling unit is $5806 +in.representative_income 5807 Representative total house income in the dwelling unit is $5807 +in.representative_income 5808 Representative total house income in the dwelling unit is $5808 +in.representative_income 5811 Representative total house income in the dwelling unit is $5811 +in.representative_income 5813 Representative total house income in the dwelling unit is $5813 +in.representative_income 5821 Representative total house income in the dwelling unit is $5821 +in.representative_income 5827 Representative total house income in the dwelling unit is $5827 +in.representative_income 5829 Representative total house income in the dwelling unit is $5829 +in.representative_income 5832 Representative total house income in the dwelling unit is $5832 +in.representative_income 5834 Representative total house income in the dwelling unit is $5834 +in.representative_income 5838 Representative total house income in the dwelling unit is $5838 +in.representative_income 5840 Representative total house income in the dwelling unit is $5840 +in.representative_income 5849 Representative total house income in the dwelling unit is $5849 +in.representative_income 5853 Representative total house income in the dwelling unit is $5853 +in.representative_income 5859 Representative total house income in the dwelling unit is $5859 +in.representative_income 5871 Representative total house income in the dwelling unit is $5871 +in.representative_income 5872 Representative total house income in the dwelling unit is $5872 +in.representative_income 5879 Representative total house income in the dwelling unit is $5879 +in.representative_income 5904 Representative total house income in the dwelling unit is $5904 +in.representative_income 5905 Representative total house income in the dwelling unit is $5905 +in.representative_income 5906 Representative total house income in the dwelling unit is $5906 +in.representative_income 5908 Representative total house income in the dwelling unit is $5908 +in.representative_income 5909 Representative total house income in the dwelling unit is $5909 +in.representative_income 5919 Representative total house income in the dwelling unit is $5919 +in.representative_income 5921 Representative total house income in the dwelling unit is $5921 +in.representative_income 5931 Representative total house income in the dwelling unit is $5931 +in.representative_income 5941 Representative total house income in the dwelling unit is $5941 +in.representative_income 5943 Representative total house income in the dwelling unit is $5943 +in.representative_income 5951 Representative total house income in the dwelling unit is $5951 +in.representative_income 5952 Representative total house income in the dwelling unit is $5952 +in.representative_income 5958 Representative total house income in the dwelling unit is $5958 +in.representative_income 5959 Representative total house income in the dwelling unit is $5959 +in.representative_income 5960 Representative total house income in the dwelling unit is $5960 +in.representative_income 5968 Representative total house income in the dwelling unit is $5968 +in.representative_income 5969 Representative total house income in the dwelling unit is $5969 +in.representative_income 5979 Representative total house income in the dwelling unit is $5979 +in.representative_income 5980 Representative total house income in the dwelling unit is $5980 +in.representative_income 5982 Representative total house income in the dwelling unit is $5982 +in.representative_income 5989 Representative total house income in the dwelling unit is $5989 +in.representative_income 5997 Representative total house income in the dwelling unit is $5997 +in.representative_income 6008 Representative total house income in the dwelling unit is $6008 +in.representative_income 6010 Representative total house income in the dwelling unit is $6010 +in.representative_income 6011 Representative total house income in the dwelling unit is $6011 +in.representative_income 6012 Representative total house income in the dwelling unit is $6012 +in.representative_income 6022 Representative total house income in the dwelling unit is $6022 +in.representative_income 6032 Representative total house income in the dwelling unit is $6032 +in.representative_income 6037 Representative total house income in the dwelling unit is $6037 +in.representative_income 6040 Representative total house income in the dwelling unit is $6040 +in.representative_income 6051 Representative total house income in the dwelling unit is $6051 +in.representative_income 6055 Representative total house income in the dwelling unit is $6055 +in.representative_income 6057 Representative total house income in the dwelling unit is $6057 +in.representative_income 6061 Representative total house income in the dwelling unit is $6061 +in.representative_income 6062 Representative total house income in the dwelling unit is $6062 +in.representative_income 6063 Representative total house income in the dwelling unit is $6063 +in.representative_income 6065 Representative total house income in the dwelling unit is $6065 +in.representative_income 6071 Representative total house income in the dwelling unit is $6071 +in.representative_income 6073 Representative total house income in the dwelling unit is $6073 +in.representative_income 6081 Representative total house income in the dwelling unit is $6081 +in.representative_income 6085 Representative total house income in the dwelling unit is $6085 +in.representative_income 6086 Representative total house income in the dwelling unit is $6086 +in.representative_income 6087 Representative total house income in the dwelling unit is $6087 +in.representative_income 6091 Representative total house income in the dwelling unit is $6091 +in.representative_income 6101 Representative total house income in the dwelling unit is $6101 +in.representative_income 6103 Representative total house income in the dwelling unit is $6103 +in.representative_income 6105 Representative total house income in the dwelling unit is $6105 +in.representative_income 6106 Representative total house income in the dwelling unit is $6106 +in.representative_income 6116 Representative total house income in the dwelling unit is $6116 +in.representative_income 6117 Representative total house income in the dwelling unit is $6117 +in.representative_income 6119 Representative total house income in the dwelling unit is $6119 +in.representative_income 6121 Representative total house income in the dwelling unit is $6121 +in.representative_income 6129 Representative total house income in the dwelling unit is $6129 +in.representative_income 6137 Representative total house income in the dwelling unit is $6137 +in.representative_income 6148 Representative total house income in the dwelling unit is $6148 +in.representative_income 6151 Representative total house income in the dwelling unit is $6151 +in.representative_income 6159 Representative total house income in the dwelling unit is $6159 +in.representative_income 6160 Representative total house income in the dwelling unit is $6160 +in.representative_income 6162 Representative total house income in the dwelling unit is $6162 +in.representative_income 6167 Representative total house income in the dwelling unit is $6167 +in.representative_income 6180 Representative total house income in the dwelling unit is $6180 +in.representative_income 6182 Representative total house income in the dwelling unit is $6182 +in.representative_income 6189 Representative total house income in the dwelling unit is $6189 +in.representative_income 6202 Representative total house income in the dwelling unit is $6202 +in.representative_income 6212 Representative total house income in the dwelling unit is $6212 +in.representative_income 6213 Representative total house income in the dwelling unit is $6213 +in.representative_income 6219 Representative total house income in the dwelling unit is $6219 +in.representative_income 6222 Representative total house income in the dwelling unit is $6222 +in.representative_income 6224 Representative total house income in the dwelling unit is $6224 +in.representative_income 6226 Representative total house income in the dwelling unit is $6226 +in.representative_income 6243 Representative total house income in the dwelling unit is $6243 +in.representative_income 6245 Representative total house income in the dwelling unit is $6245 +in.representative_income 6247 Representative total house income in the dwelling unit is $6247 +in.representative_income 6261 Representative total house income in the dwelling unit is $6261 +in.representative_income 6263 Representative total house income in the dwelling unit is $6263 +in.representative_income 6267 Representative total house income in the dwelling unit is $6267 +in.representative_income 6273 Representative total house income in the dwelling unit is $6273 +in.representative_income 6278 Representative total house income in the dwelling unit is $6278 +in.representative_income 6279 Representative total house income in the dwelling unit is $6279 +in.representative_income 6286 Representative total house income in the dwelling unit is $6286 +in.representative_income 6292 Representative total house income in the dwelling unit is $6292 +in.representative_income 6293 Representative total house income in the dwelling unit is $6293 +in.representative_income 6305 Representative total house income in the dwelling unit is $6305 +in.representative_income 6313 Representative total house income in the dwelling unit is $6313 +in.representative_income 6323 Representative total house income in the dwelling unit is $6323 +in.representative_income 6328 Representative total house income in the dwelling unit is $6328 +in.representative_income 6334 Representative total house income in the dwelling unit is $6334 +in.representative_income 6336 Representative total house income in the dwelling unit is $6336 +in.representative_income 6342 Representative total house income in the dwelling unit is $6342 +in.representative_income 6348 Representative total house income in the dwelling unit is $6348 +in.representative_income 6354 Representative total house income in the dwelling unit is $6354 +in.representative_income 6355 Representative total house income in the dwelling unit is $6355 +in.representative_income 6359 Representative total house income in the dwelling unit is $6359 +in.representative_income 6364 Representative total house income in the dwelling unit is $6364 +in.representative_income 6369 Representative total house income in the dwelling unit is $6369 +in.representative_income 6375 Representative total house income in the dwelling unit is $6375 +in.representative_income 6381 Representative total house income in the dwelling unit is $6381 +in.representative_income 6394 Representative total house income in the dwelling unit is $6394 +in.representative_income 6395 Representative total house income in the dwelling unit is $6395 +in.representative_income 6398 Representative total house income in the dwelling unit is $6398 +in.representative_income 6406 Representative total house income in the dwelling unit is $6406 +in.representative_income 6407 Representative total house income in the dwelling unit is $6407 +in.representative_income 6422 Representative total house income in the dwelling unit is $6422 +in.representative_income 6425 Representative total house income in the dwelling unit is $6425 +in.representative_income 6429 Representative total house income in the dwelling unit is $6429 +in.representative_income 6433 Representative total house income in the dwelling unit is $6433 +in.representative_income 6435 Representative total house income in the dwelling unit is $6435 +in.representative_income 6441 Representative total house income in the dwelling unit is $6441 +in.representative_income 6443 Representative total house income in the dwelling unit is $6443 +in.representative_income 6447 Representative total house income in the dwelling unit is $6447 +in.representative_income 6456 Representative total house income in the dwelling unit is $6456 +in.representative_income 6459 Representative total house income in the dwelling unit is $6459 +in.representative_income 6462 Representative total house income in the dwelling unit is $6462 +in.representative_income 6465 Representative total house income in the dwelling unit is $6465 +in.representative_income 6469 Representative total house income in the dwelling unit is $6469 +in.representative_income 6475 Representative total house income in the dwelling unit is $6475 +in.representative_income 6480 Representative total house income in the dwelling unit is $6480 +in.representative_income 6483 Representative total house income in the dwelling unit is $6483 +in.representative_income 6484 Representative total house income in the dwelling unit is $6484 +in.representative_income 6486 Representative total house income in the dwelling unit is $6486 +in.representative_income 6491 Representative total house income in the dwelling unit is $6491 +in.representative_income 6494 Representative total house income in the dwelling unit is $6494 +in.representative_income 6498 Representative total house income in the dwelling unit is $6498 +in.representative_income 6507 Representative total house income in the dwelling unit is $6507 +in.representative_income 6515 Representative total house income in the dwelling unit is $6515 +in.representative_income 6517 Representative total house income in the dwelling unit is $6517 +in.representative_income 6519 Representative total house income in the dwelling unit is $6519 +in.representative_income 6526 Representative total house income in the dwelling unit is $6526 +in.representative_income 6535 Representative total house income in the dwelling unit is $6535 +in.representative_income 6536 Representative total house income in the dwelling unit is $6536 +in.representative_income 6537 Representative total house income in the dwelling unit is $6537 +in.representative_income 6538 Representative total house income in the dwelling unit is $6538 +in.representative_income 6540 Representative total house income in the dwelling unit is $6540 +in.representative_income 6546 Representative total house income in the dwelling unit is $6546 +in.representative_income 6548 Representative total house income in the dwelling unit is $6548 +in.representative_income 6549 Representative total house income in the dwelling unit is $6549 +in.representative_income 6550 Representative total house income in the dwelling unit is $6550 +in.representative_income 6556 Representative total house income in the dwelling unit is $6556 +in.representative_income 6560 Representative total house income in the dwelling unit is $6560 +in.representative_income 6561 Representative total house income in the dwelling unit is $6561 +in.representative_income 6566 Representative total house income in the dwelling unit is $6566 +in.representative_income 6569 Representative total house income in the dwelling unit is $6569 +in.representative_income 6580 Representative total house income in the dwelling unit is $6580 +in.representative_income 6586 Representative total house income in the dwelling unit is $6586 +in.representative_income 6591 Representative total house income in the dwelling unit is $6591 +in.representative_income 6601 Representative total house income in the dwelling unit is $6601 +in.representative_income 6606 Representative total house income in the dwelling unit is $6606 +in.representative_income 6611 Representative total house income in the dwelling unit is $6611 +in.representative_income 6612 Representative total house income in the dwelling unit is $6612 +in.representative_income 6616 Representative total house income in the dwelling unit is $6616 +in.representative_income 6623 Representative total house income in the dwelling unit is $6623 +in.representative_income 6624 Representative total house income in the dwelling unit is $6624 +in.representative_income 6644 Representative total house income in the dwelling unit is $6644 +in.representative_income 6645 Representative total house income in the dwelling unit is $6645 +in.representative_income 6653 Representative total house income in the dwelling unit is $6653 +in.representative_income 6655 Representative total house income in the dwelling unit is $6655 +in.representative_income 6665 Representative total house income in the dwelling unit is $6665 +in.representative_income 6667 Representative total house income in the dwelling unit is $6667 +in.representative_income 6677 Representative total house income in the dwelling unit is $6677 +in.representative_income 6686 Representative total house income in the dwelling unit is $6686 +in.representative_income 6687 Representative total house income in the dwelling unit is $6687 +in.representative_income 6688 Representative total house income in the dwelling unit is $6688 +in.representative_income 6698 Representative total house income in the dwelling unit is $6698 +in.representative_income 6699 Representative total house income in the dwelling unit is $6699 +in.representative_income 6705 Representative total house income in the dwelling unit is $6705 +in.representative_income 6707 Representative total house income in the dwelling unit is $6707 +in.representative_income 6709 Representative total house income in the dwelling unit is $6709 +in.representative_income 6710 Representative total house income in the dwelling unit is $6710 +in.representative_income 6717 Representative total house income in the dwelling unit is $6717 +in.representative_income 6719 Representative total house income in the dwelling unit is $6719 +in.representative_income 6720 Representative total house income in the dwelling unit is $6720 +in.representative_income 6737 Representative total house income in the dwelling unit is $6737 +in.representative_income 6739 Representative total house income in the dwelling unit is $6739 +in.representative_income 6741 Representative total house income in the dwelling unit is $6741 +in.representative_income 6745 Representative total house income in the dwelling unit is $6745 +in.representative_income 6748 Representative total house income in the dwelling unit is $6748 +in.representative_income 6750 Representative total house income in the dwelling unit is $6750 +in.representative_income 6756 Representative total house income in the dwelling unit is $6756 +in.representative_income 6760 Representative total house income in the dwelling unit is $6760 +in.representative_income 6763 Representative total house income in the dwelling unit is $6763 +in.representative_income 6764 Representative total house income in the dwelling unit is $6764 +in.representative_income 6768 Representative total house income in the dwelling unit is $6768 +in.representative_income 6777 Representative total house income in the dwelling unit is $6777 +in.representative_income 6784 Representative total house income in the dwelling unit is $6784 +in.representative_income 6787 Representative total house income in the dwelling unit is $6787 +in.representative_income 6795 Representative total house income in the dwelling unit is $6795 +in.representative_income 6807 Representative total house income in the dwelling unit is $6807 +in.representative_income 6808 Representative total house income in the dwelling unit is $6808 +in.representative_income 6818 Representative total house income in the dwelling unit is $6818 +in.representative_income 6824 Representative total house income in the dwelling unit is $6824 +in.representative_income 6828 Representative total house income in the dwelling unit is $6828 +in.representative_income 6829 Representative total house income in the dwelling unit is $6829 +in.representative_income 6834 Representative total house income in the dwelling unit is $6834 +in.representative_income 6838 Representative total house income in the dwelling unit is $6838 +in.representative_income 6849 Representative total house income in the dwelling unit is $6849 +in.representative_income 6855 Representative total house income in the dwelling unit is $6855 +in.representative_income 6859 Representative total house income in the dwelling unit is $6859 +in.representative_income 6861 Representative total house income in the dwelling unit is $6861 +in.representative_income 6866 Representative total house income in the dwelling unit is $6866 +in.representative_income 6869 Representative total house income in the dwelling unit is $6869 +in.representative_income 6870 Representative total house income in the dwelling unit is $6870 +in.representative_income 6886 Representative total house income in the dwelling unit is $6886 +in.representative_income 6900 Representative total house income in the dwelling unit is $6900 +in.representative_income 6910 Representative total house income in the dwelling unit is $6910 +in.representative_income 6913 Representative total house income in the dwelling unit is $6913 +in.representative_income 6915 Representative total house income in the dwelling unit is $6915 +in.representative_income 6919 Representative total house income in the dwelling unit is $6919 +in.representative_income 6937 Representative total house income in the dwelling unit is $6937 +in.representative_income 6940 Representative total house income in the dwelling unit is $6940 +in.representative_income 6952 Representative total house income in the dwelling unit is $6952 +in.representative_income 6958 Representative total house income in the dwelling unit is $6958 +in.representative_income 6959 Representative total house income in the dwelling unit is $6959 +in.representative_income 6960 Representative total house income in the dwelling unit is $6960 +in.representative_income 6962 Representative total house income in the dwelling unit is $6962 +in.representative_income 6966 Representative total house income in the dwelling unit is $6966 +in.representative_income 6970 Representative total house income in the dwelling unit is $6970 +in.representative_income 6978 Representative total house income in the dwelling unit is $6978 +in.representative_income 6982 Representative total house income in the dwelling unit is $6982 +in.representative_income 6994 Representative total house income in the dwelling unit is $6994 +in.representative_income 7002 Representative total house income in the dwelling unit is $7002 +in.representative_income 7011 Representative total house income in the dwelling unit is $7011 +in.representative_income 7012 Representative total house income in the dwelling unit is $7012 +in.representative_income 7014 Representative total house income in the dwelling unit is $7014 +in.representative_income 7018 Representative total house income in the dwelling unit is $7018 +in.representative_income 7021 Representative total house income in the dwelling unit is $7021 +in.representative_income 7023 Representative total house income in the dwelling unit is $7023 +in.representative_income 7024 Representative total house income in the dwelling unit is $7024 +in.representative_income 7028 Representative total house income in the dwelling unit is $7028 +in.representative_income 7031 Representative total house income in the dwelling unit is $7031 +in.representative_income 7035 Representative total house income in the dwelling unit is $7035 +in.representative_income 7041 Representative total house income in the dwelling unit is $7041 +in.representative_income 7045 Representative total house income in the dwelling unit is $7045 +in.representative_income 7055 Representative total house income in the dwelling unit is $7055 +in.representative_income 7063 Representative total house income in the dwelling unit is $7063 +in.representative_income 7066 Representative total house income in the dwelling unit is $7066 +in.representative_income 7071 Representative total house income in the dwelling unit is $7071 +in.representative_income 7081 Representative total house income in the dwelling unit is $7081 +in.representative_income 7084 Representative total house income in the dwelling unit is $7084 +in.representative_income 7087 Representative total house income in the dwelling unit is $7087 +in.representative_income 7094 Representative total house income in the dwelling unit is $7094 +in.representative_income 7110 Representative total house income in the dwelling unit is $7110 +in.representative_income 7117 Representative total house income in the dwelling unit is $7117 +in.representative_income 7119 Representative total house income in the dwelling unit is $7119 +in.representative_income 7128 Representative total house income in the dwelling unit is $7128 +in.representative_income 7131 Representative total house income in the dwelling unit is $7131 +in.representative_income 7132 Representative total house income in the dwelling unit is $7132 +in.representative_income 7139 Representative total house income in the dwelling unit is $7139 +in.representative_income 7142 Representative total house income in the dwelling unit is $7142 +in.representative_income 7148 Representative total house income in the dwelling unit is $7148 +in.representative_income 7149 Representative total house income in the dwelling unit is $7149 +in.representative_income 7150 Representative total house income in the dwelling unit is $7150 +in.representative_income 7160 Representative total house income in the dwelling unit is $7160 +in.representative_income 7161 Representative total house income in the dwelling unit is $7161 +in.representative_income 7169 Representative total house income in the dwelling unit is $7169 +in.representative_income 7171 Representative total house income in the dwelling unit is $7171 +in.representative_income 7172 Representative total house income in the dwelling unit is $7172 +in.representative_income 7174 Representative total house income in the dwelling unit is $7174 +in.representative_income 7175 Representative total house income in the dwelling unit is $7175 +in.representative_income 7179 Representative total house income in the dwelling unit is $7179 +in.representative_income 7181 Representative total house income in the dwelling unit is $7181 +in.representative_income 7185 Representative total house income in the dwelling unit is $7185 +in.representative_income 7192 Representative total house income in the dwelling unit is $7192 +in.representative_income 7196 Representative total house income in the dwelling unit is $7196 +in.representative_income 7199 Representative total house income in the dwelling unit is $7199 +in.representative_income 7202 Representative total house income in the dwelling unit is $7202 +in.representative_income 7203 Representative total house income in the dwelling unit is $7203 +in.representative_income 7212 Representative total house income in the dwelling unit is $7212 +in.representative_income 7214 Representative total house income in the dwelling unit is $7214 +in.representative_income 7220 Representative total house income in the dwelling unit is $7220 +in.representative_income 7223 Representative total house income in the dwelling unit is $7223 +in.representative_income 7230 Representative total house income in the dwelling unit is $7230 +in.representative_income 7233 Representative total house income in the dwelling unit is $7233 +in.representative_income 7235 Representative total house income in the dwelling unit is $7235 +in.representative_income 7239 Representative total house income in the dwelling unit is $7239 +in.representative_income 7246 Representative total house income in the dwelling unit is $7246 +in.representative_income 7255 Representative total house income in the dwelling unit is $7255 +in.representative_income 7262 Representative total house income in the dwelling unit is $7262 +in.representative_income 7268 Representative total house income in the dwelling unit is $7268 +in.representative_income 7271 Representative total house income in the dwelling unit is $7271 +in.representative_income 7273 Representative total house income in the dwelling unit is $7273 +in.representative_income 7277 Representative total house income in the dwelling unit is $7277 +in.representative_income 7299 Representative total house income in the dwelling unit is $7299 +in.representative_income 7304 Representative total house income in the dwelling unit is $7304 +in.representative_income 7310 Representative total house income in the dwelling unit is $7310 +in.representative_income 7324 Representative total house income in the dwelling unit is $7324 +in.representative_income 7331 Representative total house income in the dwelling unit is $7331 +in.representative_income 7336 Representative total house income in the dwelling unit is $7336 +in.representative_income 7347 Representative total house income in the dwelling unit is $7347 +in.representative_income 7350 Representative total house income in the dwelling unit is $7350 +in.representative_income 7351 Representative total house income in the dwelling unit is $7351 +in.representative_income 7354 Representative total house income in the dwelling unit is $7354 +in.representative_income 7369 Representative total house income in the dwelling unit is $7369 +in.representative_income 7374 Representative total house income in the dwelling unit is $7374 +in.representative_income 7379 Representative total house income in the dwelling unit is $7379 +in.representative_income 7383 Representative total house income in the dwelling unit is $7383 +in.representative_income 7394 Representative total house income in the dwelling unit is $7394 +in.representative_income 7407 Representative total house income in the dwelling unit is $7407 +in.representative_income 7408 Representative total house income in the dwelling unit is $7408 +in.representative_income 7416 Representative total house income in the dwelling unit is $7416 +in.representative_income 7426 Representative total house income in the dwelling unit is $7426 +in.representative_income 7428 Representative total house income in the dwelling unit is $7428 +in.representative_income 7433 Representative total house income in the dwelling unit is $7433 +in.representative_income 7435 Representative total house income in the dwelling unit is $7435 +in.representative_income 7444 Representative total house income in the dwelling unit is $7444 +in.representative_income 7446 Representative total house income in the dwelling unit is $7446 +in.representative_income 7450 Representative total house income in the dwelling unit is $7450 +in.representative_income 7455 Representative total house income in the dwelling unit is $7455 +in.representative_income 7459 Representative total house income in the dwelling unit is $7459 +in.representative_income 7467 Representative total house income in the dwelling unit is $7467 +in.representative_income 7471 Representative total house income in the dwelling unit is $7471 +in.representative_income 7475 Representative total house income in the dwelling unit is $7475 +in.representative_income 7477 Representative total house income in the dwelling unit is $7477 +in.representative_income 7478 Representative total house income in the dwelling unit is $7478 +in.representative_income 7488 Representative total house income in the dwelling unit is $7488 +in.representative_income 7498 Representative total house income in the dwelling unit is $7498 +in.representative_income 7500 Representative total house income in the dwelling unit is $7500 +in.representative_income 7504 Representative total house income in the dwelling unit is $7504 +in.representative_income 7507 Representative total house income in the dwelling unit is $7507 +in.representative_income 7509 Representative total house income in the dwelling unit is $7509 +in.representative_income 7515 Representative total house income in the dwelling unit is $7515 +in.representative_income 7516 Representative total house income in the dwelling unit is $7516 +in.representative_income 7519 Representative total house income in the dwelling unit is $7519 +in.representative_income 7520 Representative total house income in the dwelling unit is $7520 +in.representative_income 7529 Representative total house income in the dwelling unit is $7529 +in.representative_income 7536 Representative total house income in the dwelling unit is $7536 +in.representative_income 7539 Representative total house income in the dwelling unit is $7539 +in.representative_income 7540 Representative total house income in the dwelling unit is $7540 +in.representative_income 7542 Representative total house income in the dwelling unit is $7542 +in.representative_income 7547 Representative total house income in the dwelling unit is $7547 +in.representative_income 7551 Representative total house income in the dwelling unit is $7551 +in.representative_income 7561 Representative total house income in the dwelling unit is $7561 +in.representative_income 7562 Representative total house income in the dwelling unit is $7562 +in.representative_income 7564 Representative total house income in the dwelling unit is $7564 +in.representative_income 7572 Representative total house income in the dwelling unit is $7572 +in.representative_income 7576 Representative total house income in the dwelling unit is $7576 +in.representative_income 7578 Representative total house income in the dwelling unit is $7578 +in.representative_income 7581 Representative total house income in the dwelling unit is $7581 +in.representative_income 7585 Representative total house income in the dwelling unit is $7585 +in.representative_income 7589 Representative total house income in the dwelling unit is $7589 +in.representative_income 7593 Representative total house income in the dwelling unit is $7593 +in.representative_income 7600 Representative total house income in the dwelling unit is $7600 +in.representative_income 7621 Representative total house income in the dwelling unit is $7621 +in.representative_income 7624 Representative total house income in the dwelling unit is $7624 +in.representative_income 7632 Representative total house income in the dwelling unit is $7632 +in.representative_income 7633 Representative total house income in the dwelling unit is $7633 +in.representative_income 7657 Representative total house income in the dwelling unit is $7657 +in.representative_income 7665 Representative total house income in the dwelling unit is $7665 +in.representative_income 7668 Representative total house income in the dwelling unit is $7668 +in.representative_income 7672 Representative total house income in the dwelling unit is $7672 +in.representative_income 7675 Representative total house income in the dwelling unit is $7675 +in.representative_income 7677 Representative total house income in the dwelling unit is $7677 +in.representative_income 7688 Representative total house income in the dwelling unit is $7688 +in.representative_income 7698 Representative total house income in the dwelling unit is $7698 +in.representative_income 7705 Representative total house income in the dwelling unit is $7705 +in.representative_income 7715 Representative total house income in the dwelling unit is $7715 +in.representative_income 7729 Representative total house income in the dwelling unit is $7729 +in.representative_income 7730 Representative total house income in the dwelling unit is $7730 +in.representative_income 7731 Representative total house income in the dwelling unit is $7731 +in.representative_income 7736 Representative total house income in the dwelling unit is $7736 +in.representative_income 7741 Representative total house income in the dwelling unit is $7741 +in.representative_income 7778 Representative total house income in the dwelling unit is $7778 +in.representative_income 7780 Representative total house income in the dwelling unit is $7780 +in.representative_income 7783 Representative total house income in the dwelling unit is $7783 +in.representative_income 7788 Representative total house income in the dwelling unit is $7788 +in.representative_income 7790 Representative total house income in the dwelling unit is $7790 +in.representative_income 7804 Representative total house income in the dwelling unit is $7804 +in.representative_income 7805 Representative total house income in the dwelling unit is $7805 +in.representative_income 7836 Representative total house income in the dwelling unit is $7836 +in.representative_income 7839 Representative total house income in the dwelling unit is $7839 +in.representative_income 7849 Representative total house income in the dwelling unit is $7849 +in.representative_income 7857 Representative total house income in the dwelling unit is $7857 +in.representative_income 7868 Representative total house income in the dwelling unit is $7868 +in.representative_income 7869 Representative total house income in the dwelling unit is $7869 +in.representative_income 7879 Representative total house income in the dwelling unit is $7879 +in.representative_income 7883 Representative total house income in the dwelling unit is $7883 +in.representative_income 7887 Representative total house income in the dwelling unit is $7887 +in.representative_income 7888 Representative total house income in the dwelling unit is $7888 +in.representative_income 7889 Representative total house income in the dwelling unit is $7889 +in.representative_income 7891 Representative total house income in the dwelling unit is $7891 +in.representative_income 7910 Representative total house income in the dwelling unit is $7910 +in.representative_income 7921 Representative total house income in the dwelling unit is $7921 +in.representative_income 7931 Representative total house income in the dwelling unit is $7931 +in.representative_income 7943 Representative total house income in the dwelling unit is $7943 +in.representative_income 7944 Representative total house income in the dwelling unit is $7944 +in.representative_income 7950 Representative total house income in the dwelling unit is $7950 +in.representative_income 7952 Representative total house income in the dwelling unit is $7952 +in.representative_income 7976 Representative total house income in the dwelling unit is $7976 +in.representative_income 7980 Representative total house income in the dwelling unit is $7980 +in.representative_income 7985 Representative total house income in the dwelling unit is $7985 +in.representative_income 7990 Representative total house income in the dwelling unit is $7990 +in.representative_income 7993 Representative total house income in the dwelling unit is $7993 +in.representative_income 7995 Representative total house income in the dwelling unit is $7995 +in.representative_income 8010 Representative total house income in the dwelling unit is $8010 +in.representative_income 8015 Representative total house income in the dwelling unit is $8015 +in.representative_income 8028 Representative total house income in the dwelling unit is $8028 +in.representative_income 8029 Representative total house income in the dwelling unit is $8029 +in.representative_income 8031 Representative total house income in the dwelling unit is $8031 +in.representative_income 8039 Representative total house income in the dwelling unit is $8039 +in.representative_income 8041 Representative total house income in the dwelling unit is $8041 +in.representative_income 8045 Representative total house income in the dwelling unit is $8045 +in.representative_income 8051 Representative total house income in the dwelling unit is $8051 +in.representative_income 8055 Representative total house income in the dwelling unit is $8055 +in.representative_income 8057 Representative total house income in the dwelling unit is $8057 +in.representative_income 8062 Representative total house income in the dwelling unit is $8062 +in.representative_income 8066 Representative total house income in the dwelling unit is $8066 +in.representative_income 8076 Representative total house income in the dwelling unit is $8076 +in.representative_income 8081 Representative total house income in the dwelling unit is $8081 +in.representative_income 8091 Representative total house income in the dwelling unit is $8091 +in.representative_income 8100 Representative total house income in the dwelling unit is $8100 +in.representative_income 8101 Representative total house income in the dwelling unit is $8101 +in.representative_income 8103 Representative total house income in the dwelling unit is $8103 +in.representative_income 8105 Representative total house income in the dwelling unit is $8105 +in.representative_income 8108 Representative total house income in the dwelling unit is $8108 +in.representative_income 8110 Representative total house income in the dwelling unit is $8110 +in.representative_income 8118 Representative total house income in the dwelling unit is $8118 +in.representative_income 8121 Representative total house income in the dwelling unit is $8121 +in.representative_income 8138 Representative total house income in the dwelling unit is $8138 +in.representative_income 8148 Representative total house income in the dwelling unit is $8148 +in.representative_income 8152 Representative total house income in the dwelling unit is $8152 +in.representative_income 8158 Representative total house income in the dwelling unit is $8158 +in.representative_income 8169 Representative total house income in the dwelling unit is $8169 +in.representative_income 8180 Representative total house income in the dwelling unit is $8180 +in.representative_income 8182 Representative total house income in the dwelling unit is $8182 +in.representative_income 8204 Representative total house income in the dwelling unit is $8204 +in.representative_income 8211 Representative total house income in the dwelling unit is $8211 +in.representative_income 8212 Representative total house income in the dwelling unit is $8212 +in.representative_income 8219 Representative total house income in the dwelling unit is $8219 +in.representative_income 8223 Representative total house income in the dwelling unit is $8223 +in.representative_income 8226 Representative total house income in the dwelling unit is $8226 +in.representative_income 8244 Representative total house income in the dwelling unit is $8244 +in.representative_income 8247 Representative total house income in the dwelling unit is $8247 +in.representative_income 8252 Representative total house income in the dwelling unit is $8252 +in.representative_income 8253 Representative total house income in the dwelling unit is $8253 +in.representative_income 8263 Representative total house income in the dwelling unit is $8263 +in.representative_income 8265 Representative total house income in the dwelling unit is $8265 +in.representative_income 8279 Representative total house income in the dwelling unit is $8279 +in.representative_income 8283 Representative total house income in the dwelling unit is $8283 +in.representative_income 8287 Representative total house income in the dwelling unit is $8287 +in.representative_income 8289 Representative total house income in the dwelling unit is $8289 +in.representative_income 8297 Representative total house income in the dwelling unit is $8297 +in.representative_income 8303 Representative total house income in the dwelling unit is $8303 +in.representative_income 8310 Representative total house income in the dwelling unit is $8310 +in.representative_income 8318 Representative total house income in the dwelling unit is $8318 +in.representative_income 8320 Representative total house income in the dwelling unit is $8320 +in.representative_income 8331 Representative total house income in the dwelling unit is $8331 +in.representative_income 8341 Representative total house income in the dwelling unit is $8341 +in.representative_income 8352 Representative total house income in the dwelling unit is $8352 +in.representative_income 8355 Representative total house income in the dwelling unit is $8355 +in.representative_income 8362 Representative total house income in the dwelling unit is $8362 +in.representative_income 8373 Representative total house income in the dwelling unit is $8373 +in.representative_income 8374 Representative total house income in the dwelling unit is $8374 +in.representative_income 8375 Representative total house income in the dwelling unit is $8375 +in.representative_income 8384 Representative total house income in the dwelling unit is $8384 +in.representative_income 8385 Representative total house income in the dwelling unit is $8385 +in.representative_income 8394 Representative total house income in the dwelling unit is $8394 +in.representative_income 8399 Representative total house income in the dwelling unit is $8399 +in.representative_income 8404 Representative total house income in the dwelling unit is $8404 +in.representative_income 8406 Representative total house income in the dwelling unit is $8406 +in.representative_income 8416 Representative total house income in the dwelling unit is $8416 +in.representative_income 8426 Representative total house income in the dwelling unit is $8426 +in.representative_income 8428 Representative total house income in the dwelling unit is $8428 +in.representative_income 8432 Representative total house income in the dwelling unit is $8432 +in.representative_income 8436 Representative total house income in the dwelling unit is $8436 +in.representative_income 8451 Representative total house income in the dwelling unit is $8451 +in.representative_income 8457 Representative total house income in the dwelling unit is $8457 +in.representative_income 8458 Representative total house income in the dwelling unit is $8458 +in.representative_income 8469 Representative total house income in the dwelling unit is $8469 +in.representative_income 8479 Representative total house income in the dwelling unit is $8479 +in.representative_income 8480 Representative total house income in the dwelling unit is $8480 +in.representative_income 8481 Representative total house income in the dwelling unit is $8481 +in.representative_income 8482 Representative total house income in the dwelling unit is $8482 +in.representative_income 8485 Representative total house income in the dwelling unit is $8485 +in.representative_income 8487 Representative total house income in the dwelling unit is $8487 +in.representative_income 8489 Representative total house income in the dwelling unit is $8489 +in.representative_income 8491 Representative total house income in the dwelling unit is $8491 +in.representative_income 8497 Representative total house income in the dwelling unit is $8497 +in.representative_income 8500 Representative total house income in the dwelling unit is $8500 +in.representative_income 8502 Representative total house income in the dwelling unit is $8502 +in.representative_income 8505 Representative total house income in the dwelling unit is $8505 +in.representative_income 8514 Representative total house income in the dwelling unit is $8514 +in.representative_income 8520 Representative total house income in the dwelling unit is $8520 +in.representative_income 8521 Representative total house income in the dwelling unit is $8521 +in.representative_income 8525 Representative total house income in the dwelling unit is $8525 +in.representative_income 8531 Representative total house income in the dwelling unit is $8531 +in.representative_income 8536 Representative total house income in the dwelling unit is $8536 +in.representative_income 8543 Representative total house income in the dwelling unit is $8543 +in.representative_income 8556 Representative total house income in the dwelling unit is $8556 +in.representative_income 8558 Representative total house income in the dwelling unit is $8558 +in.representative_income 8561 Representative total house income in the dwelling unit is $8561 +in.representative_income 8564 Representative total house income in the dwelling unit is $8564 +in.representative_income 8567 Representative total house income in the dwelling unit is $8567 +in.representative_income 8586 Representative total house income in the dwelling unit is $8586 +in.representative_income 8588 Representative total house income in the dwelling unit is $8588 +in.representative_income 8590 Representative total house income in the dwelling unit is $8590 +in.representative_income 8606 Representative total house income in the dwelling unit is $8606 +in.representative_income 8609 Representative total house income in the dwelling unit is $8609 +in.representative_income 8612 Representative total house income in the dwelling unit is $8612 +in.representative_income 8616 Representative total house income in the dwelling unit is $8616 +in.representative_income 8617 Representative total house income in the dwelling unit is $8617 +in.representative_income 8626 Representative total house income in the dwelling unit is $8626 +in.representative_income 8644 Representative total house income in the dwelling unit is $8644 +in.representative_income 8645 Representative total house income in the dwelling unit is $8645 +in.representative_income 8648 Representative total house income in the dwelling unit is $8648 +in.representative_income 8654 Representative total house income in the dwelling unit is $8654 +in.representative_income 8664 Representative total house income in the dwelling unit is $8664 +in.representative_income 8673 Representative total house income in the dwelling unit is $8673 +in.representative_income 8687 Representative total house income in the dwelling unit is $8687 +in.representative_income 8694 Representative total house income in the dwelling unit is $8694 +in.representative_income 8706 Representative total house income in the dwelling unit is $8706 +in.representative_income 8711 Representative total house income in the dwelling unit is $8711 +in.representative_income 8716 Representative total house income in the dwelling unit is $8716 +in.representative_income 8728 Representative total house income in the dwelling unit is $8728 +in.representative_income 8748 Representative total house income in the dwelling unit is $8748 +in.representative_income 8751 Representative total house income in the dwelling unit is $8751 +in.representative_income 8752 Representative total house income in the dwelling unit is $8752 +in.representative_income 8753 Representative total house income in the dwelling unit is $8753 +in.representative_income 8758 Representative total house income in the dwelling unit is $8758 +in.representative_income 8767 Representative total house income in the dwelling unit is $8767 +in.representative_income 8770 Representative total house income in the dwelling unit is $8770 +in.representative_income 8779 Representative total house income in the dwelling unit is $8779 +in.representative_income 8784 Representative total house income in the dwelling unit is $8784 +in.representative_income 8788 Representative total house income in the dwelling unit is $8788 +in.representative_income 8791 Representative total house income in the dwelling unit is $8791 +in.representative_income 8795 Representative total house income in the dwelling unit is $8795 +in.representative_income 8798 Representative total house income in the dwelling unit is $8798 +in.representative_income 8802 Representative total house income in the dwelling unit is $8802 +in.representative_income 8806 Representative total house income in the dwelling unit is $8806 +in.representative_income 8808 Representative total house income in the dwelling unit is $8808 +in.representative_income 8809 Representative total house income in the dwelling unit is $8809 +in.representative_income 8819 Representative total house income in the dwelling unit is $8819 +in.representative_income 8827 Representative total house income in the dwelling unit is $8827 +in.representative_income 8829 Representative total house income in the dwelling unit is $8829 +in.representative_income 8849 Representative total house income in the dwelling unit is $8849 +in.representative_income 8856 Representative total house income in the dwelling unit is $8856 +in.representative_income 8859 Representative total house income in the dwelling unit is $8859 +in.representative_income 8860 Representative total house income in the dwelling unit is $8860 +in.representative_income 8868 Representative total house income in the dwelling unit is $8868 +in.representative_income 8869 Representative total house income in the dwelling unit is $8869 +in.representative_income 8871 Representative total house income in the dwelling unit is $8871 +in.representative_income 8880 Representative total house income in the dwelling unit is $8880 +in.representative_income 8889 Representative total house income in the dwelling unit is $8889 +in.representative_income 8890 Representative total house income in the dwelling unit is $8890 +in.representative_income 8910 Representative total house income in the dwelling unit is $8910 +in.representative_income 8912 Representative total house income in the dwelling unit is $8912 +in.representative_income 8914 Representative total house income in the dwelling unit is $8914 +in.representative_income 8915 Representative total house income in the dwelling unit is $8915 +in.representative_income 8917 Representative total house income in the dwelling unit is $8917 +in.representative_income 8922 Representative total house income in the dwelling unit is $8922 +in.representative_income 8931 Representative total house income in the dwelling unit is $8931 +in.representative_income 8932 Representative total house income in the dwelling unit is $8932 +in.representative_income 8963 Representative total house income in the dwelling unit is $8963 +in.representative_income 8964 Representative total house income in the dwelling unit is $8964 +in.representative_income 8968 Representative total house income in the dwelling unit is $8968 +in.representative_income 8974 Representative total house income in the dwelling unit is $8974 +in.representative_income 8980 Representative total house income in the dwelling unit is $8980 +in.representative_income 8990 Representative total house income in the dwelling unit is $8990 +in.representative_income 8996 Representative total house income in the dwelling unit is $8996 +in.representative_income 9017 Representative total house income in the dwelling unit is $9017 +in.representative_income 9018 Representative total house income in the dwelling unit is $9018 +in.representative_income 9030 Representative total house income in the dwelling unit is $9030 +in.representative_income 9038 Representative total house income in the dwelling unit is $9038 +in.representative_income 9051 Representative total house income in the dwelling unit is $9051 +in.representative_income 9054 Representative total house income in the dwelling unit is $9054 +in.representative_income 9056 Representative total house income in the dwelling unit is $9056 +in.representative_income 9069 Representative total house income in the dwelling unit is $9069 +in.representative_income 9071 Representative total house income in the dwelling unit is $9071 +in.representative_income 9075 Representative total house income in the dwelling unit is $9075 +in.representative_income 9076 Representative total house income in the dwelling unit is $9076 +in.representative_income 9080 Representative total house income in the dwelling unit is $9080 +in.representative_income 9086 Representative total house income in the dwelling unit is $9086 +in.representative_income 9091 Representative total house income in the dwelling unit is $9091 +in.representative_income 9108 Representative total house income in the dwelling unit is $9108 +in.representative_income 9119 Representative total house income in the dwelling unit is $9119 +in.representative_income 9125 Representative total house income in the dwelling unit is $9125 +in.representative_income 9132 Representative total house income in the dwelling unit is $9132 +in.representative_income 9142 Representative total house income in the dwelling unit is $9142 +in.representative_income 9145 Representative total house income in the dwelling unit is $9145 +in.representative_income 9154 Representative total house income in the dwelling unit is $9154 +in.representative_income 9157 Representative total house income in the dwelling unit is $9157 +in.representative_income 9163 Representative total house income in the dwelling unit is $9163 +in.representative_income 9176 Representative total house income in the dwelling unit is $9176 +in.representative_income 9180 Representative total house income in the dwelling unit is $9180 +in.representative_income 9184 Representative total house income in the dwelling unit is $9184 +in.representative_income 9185 Representative total house income in the dwelling unit is $9185 +in.representative_income 9186 Representative total house income in the dwelling unit is $9186 +in.representative_income 9189 Representative total house income in the dwelling unit is $9189 +in.representative_income 9192 Representative total house income in the dwelling unit is $9192 +in.representative_income 9196 Representative total house income in the dwelling unit is $9196 +in.representative_income 9206 Representative total house income in the dwelling unit is $9206 +in.representative_income 9213 Representative total house income in the dwelling unit is $9213 +in.representative_income 9232 Representative total house income in the dwelling unit is $9232 +in.representative_income 9238 Representative total house income in the dwelling unit is $9238 +in.representative_income 9253 Representative total house income in the dwelling unit is $9253 +in.representative_income 9256 Representative total house income in the dwelling unit is $9256 +in.representative_income 9271 Representative total house income in the dwelling unit is $9271 +in.representative_income 9275 Representative total house income in the dwelling unit is $9275 +in.representative_income 9281 Representative total house income in the dwelling unit is $9281 +in.representative_income 9283 Representative total house income in the dwelling unit is $9283 +in.representative_income 9285 Representative total house income in the dwelling unit is $9285 +in.representative_income 9292 Representative total house income in the dwelling unit is $9292 +in.representative_income 9293 Representative total house income in the dwelling unit is $9293 +in.representative_income 9314 Representative total house income in the dwelling unit is $9314 +in.representative_income 9333 Representative total house income in the dwelling unit is $9333 +in.representative_income 9334 Representative total house income in the dwelling unit is $9334 +in.representative_income 9335 Representative total house income in the dwelling unit is $9335 +in.representative_income 9339 Representative total house income in the dwelling unit is $9339 +in.representative_income 9366 Representative total house income in the dwelling unit is $9366 +in.representative_income 9376 Representative total house income in the dwelling unit is $9376 +in.representative_income 9386 Representative total house income in the dwelling unit is $9386 +in.representative_income 9394 Representative total house income in the dwelling unit is $9394 +in.representative_income 9400 Representative total house income in the dwelling unit is $9400 +in.representative_income 9415 Representative total house income in the dwelling unit is $9415 +in.representative_income 9440 Representative total house income in the dwelling unit is $9440 +in.representative_income 9446 Representative total house income in the dwelling unit is $9446 +in.representative_income 9448 Representative total house income in the dwelling unit is $9448 +in.representative_income 9450 Representative total house income in the dwelling unit is $9450 +in.representative_income 9454 Representative total house income in the dwelling unit is $9454 +in.representative_income 9457 Representative total house income in the dwelling unit is $9457 +in.representative_income 9468 Representative total house income in the dwelling unit is $9468 +in.representative_income 9481 Representative total house income in the dwelling unit is $9481 +in.representative_income 9490 Representative total house income in the dwelling unit is $9490 +in.representative_income 9491 Representative total house income in the dwelling unit is $9491 +in.representative_income 9495 Representative total house income in the dwelling unit is $9495 +in.representative_income 9508 Representative total house income in the dwelling unit is $9508 +in.representative_income 9510 Representative total house income in the dwelling unit is $9510 +in.representative_income 9512 Representative total house income in the dwelling unit is $9512 +in.representative_income 9523 Representative total house income in the dwelling unit is $9523 +in.representative_income 9532 Representative total house income in the dwelling unit is $9532 +in.representative_income 9541 Representative total house income in the dwelling unit is $9541 +in.representative_income 9545 Representative total house income in the dwelling unit is $9545 +in.representative_income 9551 Representative total house income in the dwelling unit is $9551 +in.representative_income 9554 Representative total house income in the dwelling unit is $9554 +in.representative_income 9562 Representative total house income in the dwelling unit is $9562 +in.representative_income 9592 Representative total house income in the dwelling unit is $9592 +in.representative_income 9596 Representative total house income in the dwelling unit is $9596 +in.representative_income 9597 Representative total house income in the dwelling unit is $9597 +in.representative_income 9616 Representative total house income in the dwelling unit is $9616 +in.representative_income 9617 Representative total house income in the dwelling unit is $9617 +in.representative_income 9618 Representative total house income in the dwelling unit is $9618 +in.representative_income 9629 Representative total house income in the dwelling unit is $9629 +in.representative_income 9640 Representative total house income in the dwelling unit is $9640 +in.representative_income 9647 Representative total house income in the dwelling unit is $9647 +in.representative_income 9661 Representative total house income in the dwelling unit is $9661 +in.representative_income 9672 Representative total house income in the dwelling unit is $9672 +in.representative_income 9681 Representative total house income in the dwelling unit is $9681 +in.representative_income 9695 Representative total house income in the dwelling unit is $9695 +in.representative_income 9697 Representative total house income in the dwelling unit is $9697 +in.representative_income 9702 Representative total house income in the dwelling unit is $9702 +in.representative_income 9724 Representative total house income in the dwelling unit is $9724 +in.representative_income 9737 Representative total house income in the dwelling unit is $9737 +in.representative_income 9747 Representative total house income in the dwelling unit is $9747 +in.representative_income 9755 Representative total house income in the dwelling unit is $9755 +in.representative_income 9757 Representative total house income in the dwelling unit is $9757 +in.representative_income 9766 Representative total house income in the dwelling unit is $9766 +in.representative_income 9769 Representative total house income in the dwelling unit is $9769 +in.representative_income 9771 Representative total house income in the dwelling unit is $9771 +in.representative_income 9797 Representative total house income in the dwelling unit is $9797 +in.representative_income 9798 Representative total house income in the dwelling unit is $9798 +in.representative_income 9799 Representative total house income in the dwelling unit is $9799 +in.representative_income 9808 Representative total house income in the dwelling unit is $9808 +in.representative_income 9809 Representative total house income in the dwelling unit is $9809 +in.representative_income 9810 Representative total house income in the dwelling unit is $9810 +in.representative_income 9812 Representative total house income in the dwelling unit is $9812 +in.representative_income 9819 Representative total house income in the dwelling unit is $9819 +in.representative_income 9832 Representative total house income in the dwelling unit is $9832 +in.representative_income 9849 Representative total house income in the dwelling unit is $9849 +in.representative_income 9853 Representative total house income in the dwelling unit is $9853 +in.representative_income 9875 Representative total house income in the dwelling unit is $9875 +in.representative_income 9879 Representative total house income in the dwelling unit is $9879 +in.representative_income 9886 Representative total house income in the dwelling unit is $9886 +in.representative_income 9899 Representative total house income in the dwelling unit is $9899 +in.representative_income 9902 Representative total house income in the dwelling unit is $9902 +in.representative_income 9903 Representative total house income in the dwelling unit is $9903 +in.representative_income 9914 Representative total house income in the dwelling unit is $9914 +in.representative_income 9930 Representative total house income in the dwelling unit is $9930 +in.representative_income 9934 Representative total house income in the dwelling unit is $9934 +in.representative_income 9940 Representative total house income in the dwelling unit is $9940 +in.representative_income 9941 Representative total house income in the dwelling unit is $9941 +in.representative_income 9945 Representative total house income in the dwelling unit is $9945 +in.representative_income 9950 Representative total house income in the dwelling unit is $9950 +in.representative_income 9954 Representative total house income in the dwelling unit is $9954 +in.representative_income 9960 Representative total house income in the dwelling unit is $9960 +in.representative_income 9972 Representative total house income in the dwelling unit is $9972 +in.representative_income 9983 Representative total house income in the dwelling unit is $9983 +in.representative_income 9988 Representative total house income in the dwelling unit is $9988 +in.representative_income 9998 Representative total house income in the dwelling unit is $9998 +in.representative_income 10000 Representative total house income in the dwelling unit is $10000 +in.representative_income 10004 Representative total house income in the dwelling unit is $10004 +in.representative_income 10005 Representative total house income in the dwelling unit is $10005 +in.representative_income 10019 Representative total house income in the dwelling unit is $10019 +in.representative_income 10037 Representative total house income in the dwelling unit is $10037 +in.representative_income 10038 Representative total house income in the dwelling unit is $10038 +in.representative_income 10049 Representative total house income in the dwelling unit is $10049 +in.representative_income 10080 Representative total house income in the dwelling unit is $10080 +in.representative_income 10081 Representative total house income in the dwelling unit is $10081 +in.representative_income 10090 Representative total house income in the dwelling unit is $10090 +in.representative_income 10091 Representative total house income in the dwelling unit is $10091 +in.representative_income 10101 Representative total house income in the dwelling unit is $10101 +in.representative_income 10109 Representative total house income in the dwelling unit is $10109 +in.representative_income 10112 Representative total house income in the dwelling unit is $10112 +in.representative_income 10114 Representative total house income in the dwelling unit is $10114 +in.representative_income 10119 Representative total house income in the dwelling unit is $10119 +in.representative_income 10122 Representative total house income in the dwelling unit is $10122 +in.representative_income 10124 Representative total house income in the dwelling unit is $10124 +in.representative_income 10132 Representative total house income in the dwelling unit is $10132 +in.representative_income 10135 Representative total house income in the dwelling unit is $10135 +in.representative_income 10144 Representative total house income in the dwelling unit is $10144 +in.representative_income 10146 Representative total house income in the dwelling unit is $10146 +in.representative_income 10154 Representative total house income in the dwelling unit is $10154 +in.representative_income 10157 Representative total house income in the dwelling unit is $10157 +in.representative_income 10166 Representative total house income in the dwelling unit is $10166 +in.representative_income 10170 Representative total house income in the dwelling unit is $10170 +in.representative_income 10198 Representative total house income in the dwelling unit is $10198 +in.representative_income 10202 Representative total house income in the dwelling unit is $10202 +in.representative_income 10211 Representative total house income in the dwelling unit is $10211 +in.representative_income 10221 Representative total house income in the dwelling unit is $10221 +in.representative_income 10229 Representative total house income in the dwelling unit is $10229 +in.representative_income 10230 Representative total house income in the dwelling unit is $10230 +in.representative_income 10251 Representative total house income in the dwelling unit is $10251 +in.representative_income 10265 Representative total house income in the dwelling unit is $10265 +in.representative_income 10273 Representative total house income in the dwelling unit is $10273 +in.representative_income 10283 Representative total house income in the dwelling unit is $10283 +in.representative_income 10293 Representative total house income in the dwelling unit is $10293 +in.representative_income 10301 Representative total house income in the dwelling unit is $10301 +in.representative_income 10303 Representative total house income in the dwelling unit is $10303 +in.representative_income 10306 Representative total house income in the dwelling unit is $10306 +in.representative_income 10314 Representative total house income in the dwelling unit is $10314 +in.representative_income 10324 Representative total house income in the dwelling unit is $10324 +in.representative_income 10325 Representative total house income in the dwelling unit is $10325 +in.representative_income 10334 Representative total house income in the dwelling unit is $10334 +in.representative_income 10335 Representative total house income in the dwelling unit is $10335 +in.representative_income 10336 Representative total house income in the dwelling unit is $10336 +in.representative_income 10346 Representative total house income in the dwelling unit is $10346 +in.representative_income 10351 Representative total house income in the dwelling unit is $10351 +in.representative_income 10359 Representative total house income in the dwelling unit is $10359 +in.representative_income 10366 Representative total house income in the dwelling unit is $10366 +in.representative_income 10369 Representative total house income in the dwelling unit is $10369 +in.representative_income 10372 Representative total house income in the dwelling unit is $10372 +in.representative_income 10380 Representative total house income in the dwelling unit is $10380 +in.representative_income 10392 Representative total house income in the dwelling unit is $10392 +in.representative_income 10394 Representative total house income in the dwelling unit is $10394 +in.representative_income 10404 Representative total house income in the dwelling unit is $10404 +in.representative_income 10412 Representative total house income in the dwelling unit is $10412 +in.representative_income 10418 Representative total house income in the dwelling unit is $10418 +in.representative_income 10426 Representative total house income in the dwelling unit is $10426 +in.representative_income 10437 Representative total house income in the dwelling unit is $10437 +in.representative_income 10441 Representative total house income in the dwelling unit is $10441 +in.representative_income 10448 Representative total house income in the dwelling unit is $10448 +in.representative_income 10451 Representative total house income in the dwelling unit is $10451 +in.representative_income 10456 Representative total house income in the dwelling unit is $10456 +in.representative_income 10459 Representative total house income in the dwelling unit is $10459 +in.representative_income 10466 Representative total house income in the dwelling unit is $10466 +in.representative_income 10469 Representative total house income in the dwelling unit is $10469 +in.representative_income 10479 Representative total house income in the dwelling unit is $10479 +in.representative_income 10480 Representative total house income in the dwelling unit is $10480 +in.representative_income 10481 Representative total house income in the dwelling unit is $10481 +in.representative_income 10483 Representative total house income in the dwelling unit is $10483 +in.representative_income 10485 Representative total house income in the dwelling unit is $10485 +in.representative_income 10490 Representative total house income in the dwelling unit is $10490 +in.representative_income 10491 Representative total house income in the dwelling unit is $10491 +in.representative_income 10498 Representative total house income in the dwelling unit is $10498 +in.representative_income 10502 Representative total house income in the dwelling unit is $10502 +in.representative_income 10506 Representative total house income in the dwelling unit is $10506 +in.representative_income 10509 Representative total house income in the dwelling unit is $10509 +in.representative_income 10513 Representative total house income in the dwelling unit is $10513 +in.representative_income 10520 Representative total house income in the dwelling unit is $10520 +in.representative_income 10521 Representative total house income in the dwelling unit is $10521 +in.representative_income 10534 Representative total house income in the dwelling unit is $10534 +in.representative_income 10546 Representative total house income in the dwelling unit is $10546 +in.representative_income 10555 Representative total house income in the dwelling unit is $10555 +in.representative_income 10557 Representative total house income in the dwelling unit is $10557 +in.representative_income 10563 Representative total house income in the dwelling unit is $10563 +in.representative_income 10569 Representative total house income in the dwelling unit is $10569 +in.representative_income 10584 Representative total house income in the dwelling unit is $10584 +in.representative_income 10585 Representative total house income in the dwelling unit is $10585 +in.representative_income 10586 Representative total house income in the dwelling unit is $10586 +in.representative_income 10588 Representative total house income in the dwelling unit is $10588 +in.representative_income 10590 Representative total house income in the dwelling unit is $10590 +in.representative_income 10593 Representative total house income in the dwelling unit is $10593 +in.representative_income 10595 Representative total house income in the dwelling unit is $10595 +in.representative_income 10599 Representative total house income in the dwelling unit is $10599 +in.representative_income 10603 Representative total house income in the dwelling unit is $10603 +in.representative_income 10606 Representative total house income in the dwelling unit is $10606 +in.representative_income 10607 Representative total house income in the dwelling unit is $10607 +in.representative_income 10611 Representative total house income in the dwelling unit is $10611 +in.representative_income 10621 Representative total house income in the dwelling unit is $10621 +in.representative_income 10624 Representative total house income in the dwelling unit is $10624 +in.representative_income 10627 Representative total house income in the dwelling unit is $10627 +in.representative_income 10628 Representative total house income in the dwelling unit is $10628 +in.representative_income 10631 Representative total house income in the dwelling unit is $10631 +in.representative_income 10635 Representative total house income in the dwelling unit is $10635 +in.representative_income 10636 Representative total house income in the dwelling unit is $10636 +in.representative_income 10638 Representative total house income in the dwelling unit is $10638 +in.representative_income 10640 Representative total house income in the dwelling unit is $10640 +in.representative_income 10642 Representative total house income in the dwelling unit is $10642 +in.representative_income 10645 Representative total house income in the dwelling unit is $10645 +in.representative_income 10648 Representative total house income in the dwelling unit is $10648 +in.representative_income 10652 Representative total house income in the dwelling unit is $10652 +in.representative_income 10653 Representative total house income in the dwelling unit is $10653 +in.representative_income 10659 Representative total house income in the dwelling unit is $10659 +in.representative_income 10662 Representative total house income in the dwelling unit is $10662 +in.representative_income 10665 Representative total house income in the dwelling unit is $10665 +in.representative_income 10667 Representative total house income in the dwelling unit is $10667 +in.representative_income 10673 Representative total house income in the dwelling unit is $10673 +in.representative_income 10675 Representative total house income in the dwelling unit is $10675 +in.representative_income 10676 Representative total house income in the dwelling unit is $10676 +in.representative_income 10683 Representative total house income in the dwelling unit is $10683 +in.representative_income 10686 Representative total house income in the dwelling unit is $10686 +in.representative_income 10693 Representative total house income in the dwelling unit is $10693 +in.representative_income 10695 Representative total house income in the dwelling unit is $10695 +in.representative_income 10697 Representative total house income in the dwelling unit is $10697 +in.representative_income 10698 Representative total house income in the dwelling unit is $10698 +in.representative_income 10706 Representative total house income in the dwelling unit is $10706 +in.representative_income 10708 Representative total house income in the dwelling unit is $10708 +in.representative_income 10713 Representative total house income in the dwelling unit is $10713 +in.representative_income 10717 Representative total house income in the dwelling unit is $10717 +in.representative_income 10718 Representative total house income in the dwelling unit is $10718 +in.representative_income 10719 Representative total house income in the dwelling unit is $10719 +in.representative_income 10727 Representative total house income in the dwelling unit is $10727 +in.representative_income 10728 Representative total house income in the dwelling unit is $10728 +in.representative_income 10735 Representative total house income in the dwelling unit is $10735 +in.representative_income 10736 Representative total house income in the dwelling unit is $10736 +in.representative_income 10740 Representative total house income in the dwelling unit is $10740 +in.representative_income 10756 Representative total house income in the dwelling unit is $10756 +in.representative_income 10757 Representative total house income in the dwelling unit is $10757 +in.representative_income 10762 Representative total house income in the dwelling unit is $10762 +in.representative_income 10766 Representative total house income in the dwelling unit is $10766 +in.representative_income 10767 Representative total house income in the dwelling unit is $10767 +in.representative_income 10768 Representative total house income in the dwelling unit is $10768 +in.representative_income 10770 Representative total house income in the dwelling unit is $10770 +in.representative_income 10772 Representative total house income in the dwelling unit is $10772 +in.representative_income 10773 Representative total house income in the dwelling unit is $10773 +in.representative_income 10778 Representative total house income in the dwelling unit is $10778 +in.representative_income 10782 Representative total house income in the dwelling unit is $10782 +in.representative_income 10783 Representative total house income in the dwelling unit is $10783 +in.representative_income 10788 Representative total house income in the dwelling unit is $10788 +in.representative_income 10792 Representative total house income in the dwelling unit is $10792 +in.representative_income 10794 Representative total house income in the dwelling unit is $10794 +in.representative_income 10805 Representative total house income in the dwelling unit is $10805 +in.representative_income 10809 Representative total house income in the dwelling unit is $10809 +in.representative_income 10810 Representative total house income in the dwelling unit is $10810 +in.representative_income 10816 Representative total house income in the dwelling unit is $10816 +in.representative_income 10817 Representative total house income in the dwelling unit is $10817 +in.representative_income 10819 Representative total house income in the dwelling unit is $10819 +in.representative_income 10827 Representative total house income in the dwelling unit is $10827 +in.representative_income 10830 Representative total house income in the dwelling unit is $10830 +in.representative_income 10832 Representative total house income in the dwelling unit is $10832 +in.representative_income 10837 Representative total house income in the dwelling unit is $10837 +in.representative_income 10839 Representative total house income in the dwelling unit is $10839 +in.representative_income 10842 Representative total house income in the dwelling unit is $10842 +in.representative_income 10848 Representative total house income in the dwelling unit is $10848 +in.representative_income 10851 Representative total house income in the dwelling unit is $10851 +in.representative_income 10852 Representative total house income in the dwelling unit is $10852 +in.representative_income 10859 Representative total house income in the dwelling unit is $10859 +in.representative_income 10861 Representative total house income in the dwelling unit is $10861 +in.representative_income 10862 Representative total house income in the dwelling unit is $10862 +in.representative_income 10863 Representative total house income in the dwelling unit is $10863 +in.representative_income 10870 Representative total house income in the dwelling unit is $10870 +in.representative_income 10873 Representative total house income in the dwelling unit is $10873 +in.representative_income 10874 Representative total house income in the dwelling unit is $10874 +in.representative_income 10882 Representative total house income in the dwelling unit is $10882 +in.representative_income 10885 Representative total house income in the dwelling unit is $10885 +in.representative_income 10891 Representative total house income in the dwelling unit is $10891 +in.representative_income 10892 Representative total house income in the dwelling unit is $10892 +in.representative_income 10895 Representative total house income in the dwelling unit is $10895 +in.representative_income 10896 Representative total house income in the dwelling unit is $10896 +in.representative_income 10900 Representative total house income in the dwelling unit is $10900 +in.representative_income 10903 Representative total house income in the dwelling unit is $10903 +in.representative_income 10905 Representative total house income in the dwelling unit is $10905 +in.representative_income 10910 Representative total house income in the dwelling unit is $10910 +in.representative_income 10913 Representative total house income in the dwelling unit is $10913 +in.representative_income 10915 Representative total house income in the dwelling unit is $10915 +in.representative_income 10926 Representative total house income in the dwelling unit is $10926 +in.representative_income 10933 Representative total house income in the dwelling unit is $10933 +in.representative_income 10938 Representative total house income in the dwelling unit is $10938 +in.representative_income 10940 Representative total house income in the dwelling unit is $10940 +in.representative_income 10949 Representative total house income in the dwelling unit is $10949 +in.representative_income 10950 Representative total house income in the dwelling unit is $10950 +in.representative_income 10968 Representative total house income in the dwelling unit is $10968 +in.representative_income 10970 Representative total house income in the dwelling unit is $10970 +in.representative_income 10971 Representative total house income in the dwelling unit is $10971 +in.representative_income 10978 Representative total house income in the dwelling unit is $10978 +in.representative_income 10980 Representative total house income in the dwelling unit is $10980 +in.representative_income 10984 Representative total house income in the dwelling unit is $10984 +in.representative_income 10985 Representative total house income in the dwelling unit is $10985 +in.representative_income 10989 Representative total house income in the dwelling unit is $10989 +in.representative_income 10991 Representative total house income in the dwelling unit is $10991 +in.representative_income 10993 Representative total house income in the dwelling unit is $10993 +in.representative_income 10995 Representative total house income in the dwelling unit is $10995 +in.representative_income 10999 Representative total house income in the dwelling unit is $10999 +in.representative_income 11000 Representative total house income in the dwelling unit is $11000 +in.representative_income 11001 Representative total house income in the dwelling unit is $11001 +in.representative_income 11006 Representative total house income in the dwelling unit is $11006 +in.representative_income 11010 Representative total house income in the dwelling unit is $11010 +in.representative_income 11011 Representative total house income in the dwelling unit is $11011 +in.representative_income 11021 Representative total house income in the dwelling unit is $11021 +in.representative_income 11037 Representative total house income in the dwelling unit is $11037 +in.representative_income 11051 Representative total house income in the dwelling unit is $11051 +in.representative_income 11052 Representative total house income in the dwelling unit is $11052 +in.representative_income 11056 Representative total house income in the dwelling unit is $11056 +in.representative_income 11057 Representative total house income in the dwelling unit is $11057 +in.representative_income 11061 Representative total house income in the dwelling unit is $11061 +in.representative_income 11062 Representative total house income in the dwelling unit is $11062 +in.representative_income 11063 Representative total house income in the dwelling unit is $11063 +in.representative_income 11064 Representative total house income in the dwelling unit is $11064 +in.representative_income 11067 Representative total house income in the dwelling unit is $11067 +in.representative_income 11071 Representative total house income in the dwelling unit is $11071 +in.representative_income 11074 Representative total house income in the dwelling unit is $11074 +in.representative_income 11075 Representative total house income in the dwelling unit is $11075 +in.representative_income 11081 Representative total house income in the dwelling unit is $11081 +in.representative_income 11084 Representative total house income in the dwelling unit is $11084 +in.representative_income 11090 Representative total house income in the dwelling unit is $11090 +in.representative_income 11091 Representative total house income in the dwelling unit is $11091 +in.representative_income 11098 Representative total house income in the dwelling unit is $11098 +in.representative_income 11105 Representative total house income in the dwelling unit is $11105 +in.representative_income 11107 Representative total house income in the dwelling unit is $11107 +in.representative_income 11111 Representative total house income in the dwelling unit is $11111 +in.representative_income 11112 Representative total house income in the dwelling unit is $11112 +in.representative_income 11121 Representative total house income in the dwelling unit is $11121 +in.representative_income 11122 Representative total house income in the dwelling unit is $11122 +in.representative_income 11126 Representative total house income in the dwelling unit is $11126 +in.representative_income 11129 Representative total house income in the dwelling unit is $11129 +in.representative_income 11132 Representative total house income in the dwelling unit is $11132 +in.representative_income 11140 Representative total house income in the dwelling unit is $11140 +in.representative_income 11142 Representative total house income in the dwelling unit is $11142 +in.representative_income 11150 Representative total house income in the dwelling unit is $11150 +in.representative_income 11152 Representative total house income in the dwelling unit is $11152 +in.representative_income 11153 Representative total house income in the dwelling unit is $11153 +in.representative_income 11160 Representative total house income in the dwelling unit is $11160 +in.representative_income 11162 Representative total house income in the dwelling unit is $11162 +in.representative_income 11164 Representative total house income in the dwelling unit is $11164 +in.representative_income 11165 Representative total house income in the dwelling unit is $11165 +in.representative_income 11169 Representative total house income in the dwelling unit is $11169 +in.representative_income 11172 Representative total house income in the dwelling unit is $11172 +in.representative_income 11179 Representative total house income in the dwelling unit is $11179 +in.representative_income 11183 Representative total house income in the dwelling unit is $11183 +in.representative_income 11185 Representative total house income in the dwelling unit is $11185 +in.representative_income 11192 Representative total house income in the dwelling unit is $11192 +in.representative_income 11194 Representative total house income in the dwelling unit is $11194 +in.representative_income 11196 Representative total house income in the dwelling unit is $11196 +in.representative_income 11210 Representative total house income in the dwelling unit is $11210 +in.representative_income 11212 Representative total house income in the dwelling unit is $11212 +in.representative_income 11213 Representative total house income in the dwelling unit is $11213 +in.representative_income 11221 Representative total house income in the dwelling unit is $11221 +in.representative_income 11222 Representative total house income in the dwelling unit is $11222 +in.representative_income 11226 Representative total house income in the dwelling unit is $11226 +in.representative_income 11231 Representative total house income in the dwelling unit is $11231 +in.representative_income 11233 Representative total house income in the dwelling unit is $11233 +in.representative_income 11237 Representative total house income in the dwelling unit is $11237 +in.representative_income 11242 Representative total house income in the dwelling unit is $11242 +in.representative_income 11243 Representative total house income in the dwelling unit is $11243 +in.representative_income 11250 Representative total house income in the dwelling unit is $11250 +in.representative_income 11253 Representative total house income in the dwelling unit is $11253 +in.representative_income 11263 Representative total house income in the dwelling unit is $11263 +in.representative_income 11264 Representative total house income in the dwelling unit is $11264 +in.representative_income 11271 Representative total house income in the dwelling unit is $11271 +in.representative_income 11274 Representative total house income in the dwelling unit is $11274 +in.representative_income 11283 Representative total house income in the dwelling unit is $11283 +in.representative_income 11284 Representative total house income in the dwelling unit is $11284 +in.representative_income 11291 Representative total house income in the dwelling unit is $11291 +in.representative_income 11293 Representative total house income in the dwelling unit is $11293 +in.representative_income 11304 Representative total house income in the dwelling unit is $11304 +in.representative_income 11308 Representative total house income in the dwelling unit is $11308 +in.representative_income 11314 Representative total house income in the dwelling unit is $11314 +in.representative_income 11315 Representative total house income in the dwelling unit is $11315 +in.representative_income 11316 Representative total house income in the dwelling unit is $11316 +in.representative_income 11323 Representative total house income in the dwelling unit is $11323 +in.representative_income 11330 Representative total house income in the dwelling unit is $11330 +in.representative_income 11331 Representative total house income in the dwelling unit is $11331 +in.representative_income 11334 Representative total house income in the dwelling unit is $11334 +in.representative_income 11336 Representative total house income in the dwelling unit is $11336 +in.representative_income 11344 Representative total house income in the dwelling unit is $11344 +in.representative_income 11345 Representative total house income in the dwelling unit is $11345 +in.representative_income 11346 Representative total house income in the dwelling unit is $11346 +in.representative_income 11348 Representative total house income in the dwelling unit is $11348 +in.representative_income 11354 Representative total house income in the dwelling unit is $11354 +in.representative_income 11356 Representative total house income in the dwelling unit is $11356 +in.representative_income 11358 Representative total house income in the dwelling unit is $11358 +in.representative_income 11364 Representative total house income in the dwelling unit is $11364 +in.representative_income 11365 Representative total house income in the dwelling unit is $11365 +in.representative_income 11366 Representative total house income in the dwelling unit is $11366 +in.representative_income 11368 Representative total house income in the dwelling unit is $11368 +in.representative_income 11374 Representative total house income in the dwelling unit is $11374 +in.representative_income 11379 Representative total house income in the dwelling unit is $11379 +in.representative_income 11384 Representative total house income in the dwelling unit is $11384 +in.representative_income 11387 Representative total house income in the dwelling unit is $11387 +in.representative_income 11390 Representative total house income in the dwelling unit is $11390 +in.representative_income 11394 Representative total house income in the dwelling unit is $11394 +in.representative_income 11397 Representative total house income in the dwelling unit is $11397 +in.representative_income 11400 Representative total house income in the dwelling unit is $11400 +in.representative_income 11405 Representative total house income in the dwelling unit is $11405 +in.representative_income 11407 Representative total house income in the dwelling unit is $11407 +in.representative_income 11409 Representative total house income in the dwelling unit is $11409 +in.representative_income 11415 Representative total house income in the dwelling unit is $11415 +in.representative_income 11419 Representative total house income in the dwelling unit is $11419 +in.representative_income 11420 Representative total house income in the dwelling unit is $11420 +in.representative_income 11424 Representative total house income in the dwelling unit is $11424 +in.representative_income 11425 Representative total house income in the dwelling unit is $11425 +in.representative_income 11429 Representative total house income in the dwelling unit is $11429 +in.representative_income 11431 Representative total house income in the dwelling unit is $11431 +in.representative_income 11432 Representative total house income in the dwelling unit is $11432 +in.representative_income 11443 Representative total house income in the dwelling unit is $11443 +in.representative_income 11449 Representative total house income in the dwelling unit is $11449 +in.representative_income 11451 Representative total house income in the dwelling unit is $11451 +in.representative_income 11453 Representative total house income in the dwelling unit is $11453 +in.representative_income 11457 Representative total house income in the dwelling unit is $11457 +in.representative_income 11464 Representative total house income in the dwelling unit is $11464 +in.representative_income 11465 Representative total house income in the dwelling unit is $11465 +in.representative_income 11469 Representative total house income in the dwelling unit is $11469 +in.representative_income 11474 Representative total house income in the dwelling unit is $11474 +in.representative_income 11475 Representative total house income in the dwelling unit is $11475 +in.representative_income 11485 Representative total house income in the dwelling unit is $11485 +in.representative_income 11490 Representative total house income in the dwelling unit is $11490 +in.representative_income 11491 Representative total house income in the dwelling unit is $11491 +in.representative_income 11495 Representative total house income in the dwelling unit is $11495 +in.representative_income 11503 Representative total house income in the dwelling unit is $11503 +in.representative_income 11507 Representative total house income in the dwelling unit is $11507 +in.representative_income 11511 Representative total house income in the dwelling unit is $11511 +in.representative_income 11515 Representative total house income in the dwelling unit is $11515 +in.representative_income 11516 Representative total house income in the dwelling unit is $11516 +in.representative_income 11518 Representative total house income in the dwelling unit is $11518 +in.representative_income 11519 Representative total house income in the dwelling unit is $11519 +in.representative_income 11540 Representative total house income in the dwelling unit is $11540 +in.representative_income 11548 Representative total house income in the dwelling unit is $11548 +in.representative_income 11551 Representative total house income in the dwelling unit is $11551 +in.representative_income 11552 Representative total house income in the dwelling unit is $11552 +in.representative_income 11559 Representative total house income in the dwelling unit is $11559 +in.representative_income 11561 Representative total house income in the dwelling unit is $11561 +in.representative_income 11562 Representative total house income in the dwelling unit is $11562 +in.representative_income 11563 Representative total house income in the dwelling unit is $11563 +in.representative_income 11566 Representative total house income in the dwelling unit is $11566 +in.representative_income 11571 Representative total house income in the dwelling unit is $11571 +in.representative_income 11572 Representative total house income in the dwelling unit is $11572 +in.representative_income 11573 Representative total house income in the dwelling unit is $11573 +in.representative_income 11590 Representative total house income in the dwelling unit is $11590 +in.representative_income 11593 Representative total house income in the dwelling unit is $11593 +in.representative_income 11594 Representative total house income in the dwelling unit is $11594 +in.representative_income 11596 Representative total house income in the dwelling unit is $11596 +in.representative_income 11600 Representative total house income in the dwelling unit is $11600 +in.representative_income 11604 Representative total house income in the dwelling unit is $11604 +in.representative_income 11605 Representative total house income in the dwelling unit is $11605 +in.representative_income 11608 Representative total house income in the dwelling unit is $11608 +in.representative_income 11611 Representative total house income in the dwelling unit is $11611 +in.representative_income 11615 Representative total house income in the dwelling unit is $11615 +in.representative_income 11617 Representative total house income in the dwelling unit is $11617 +in.representative_income 11618 Representative total house income in the dwelling unit is $11618 +in.representative_income 11624 Representative total house income in the dwelling unit is $11624 +in.representative_income 11626 Representative total house income in the dwelling unit is $11626 +in.representative_income 11628 Representative total house income in the dwelling unit is $11628 +in.representative_income 11633 Representative total house income in the dwelling unit is $11633 +in.representative_income 11634 Representative total house income in the dwelling unit is $11634 +in.representative_income 11656 Representative total house income in the dwelling unit is $11656 +in.representative_income 11657 Representative total house income in the dwelling unit is $11657 +in.representative_income 11664 Representative total house income in the dwelling unit is $11664 +in.representative_income 11666 Representative total house income in the dwelling unit is $11666 +in.representative_income 11667 Representative total house income in the dwelling unit is $11667 +in.representative_income 11669 Representative total house income in the dwelling unit is $11669 +in.representative_income 11685 Representative total house income in the dwelling unit is $11685 +in.representative_income 11695 Representative total house income in the dwelling unit is $11695 +in.representative_income 11700 Representative total house income in the dwelling unit is $11700 +in.representative_income 11703 Representative total house income in the dwelling unit is $11703 +in.representative_income 11705 Representative total house income in the dwelling unit is $11705 +in.representative_income 11707 Representative total house income in the dwelling unit is $11707 +in.representative_income 11713 Representative total house income in the dwelling unit is $11713 +in.representative_income 11717 Representative total house income in the dwelling unit is $11717 +in.representative_income 11718 Representative total house income in the dwelling unit is $11718 +in.representative_income 11719 Representative total house income in the dwelling unit is $11719 +in.representative_income 11722 Representative total house income in the dwelling unit is $11722 +in.representative_income 11727 Representative total house income in the dwelling unit is $11727 +in.representative_income 11728 Representative total house income in the dwelling unit is $11728 +in.representative_income 11730 Representative total house income in the dwelling unit is $11730 +in.representative_income 11734 Representative total house income in the dwelling unit is $11734 +in.representative_income 11738 Representative total house income in the dwelling unit is $11738 +in.representative_income 11744 Representative total house income in the dwelling unit is $11744 +in.representative_income 11745 Representative total house income in the dwelling unit is $11745 +in.representative_income 11748 Representative total house income in the dwelling unit is $11748 +in.representative_income 11755 Representative total house income in the dwelling unit is $11755 +in.representative_income 11756 Representative total house income in the dwelling unit is $11756 +in.representative_income 11757 Representative total house income in the dwelling unit is $11757 +in.representative_income 11758 Representative total house income in the dwelling unit is $11758 +in.representative_income 11759 Representative total house income in the dwelling unit is $11759 +in.representative_income 11760 Representative total house income in the dwelling unit is $11760 +in.representative_income 11763 Representative total house income in the dwelling unit is $11763 +in.representative_income 11765 Representative total house income in the dwelling unit is $11765 +in.representative_income 11768 Representative total house income in the dwelling unit is $11768 +in.representative_income 11769 Representative total house income in the dwelling unit is $11769 +in.representative_income 11776 Representative total house income in the dwelling unit is $11776 +in.representative_income 11777 Representative total house income in the dwelling unit is $11777 +in.representative_income 11778 Representative total house income in the dwelling unit is $11778 +in.representative_income 11781 Representative total house income in the dwelling unit is $11781 +in.representative_income 11787 Representative total house income in the dwelling unit is $11787 +in.representative_income 11788 Representative total house income in the dwelling unit is $11788 +in.representative_income 11789 Representative total house income in the dwelling unit is $11789 +in.representative_income 11790 Representative total house income in the dwelling unit is $11790 +in.representative_income 11800 Representative total house income in the dwelling unit is $11800 +in.representative_income 11808 Representative total house income in the dwelling unit is $11808 +in.representative_income 11810 Representative total house income in the dwelling unit is $11810 +in.representative_income 11812 Representative total house income in the dwelling unit is $11812 +in.representative_income 11819 Representative total house income in the dwelling unit is $11819 +in.representative_income 11833 Representative total house income in the dwelling unit is $11833 +in.representative_income 11834 Representative total house income in the dwelling unit is $11834 +in.representative_income 11835 Representative total house income in the dwelling unit is $11835 +in.representative_income 11840 Representative total house income in the dwelling unit is $11840 +in.representative_income 11842 Representative total house income in the dwelling unit is $11842 +in.representative_income 11843 Representative total house income in the dwelling unit is $11843 +in.representative_income 11846 Representative total house income in the dwelling unit is $11846 +in.representative_income 11849 Representative total house income in the dwelling unit is $11849 +in.representative_income 11851 Representative total house income in the dwelling unit is $11851 +in.representative_income 11854 Representative total house income in the dwelling unit is $11854 +in.representative_income 11861 Representative total house income in the dwelling unit is $11861 +in.representative_income 11862 Representative total house income in the dwelling unit is $11862 +in.representative_income 11869 Representative total house income in the dwelling unit is $11869 +in.representative_income 11872 Representative total house income in the dwelling unit is $11872 +in.representative_income 11874 Representative total house income in the dwelling unit is $11874 +in.representative_income 11879 Representative total house income in the dwelling unit is $11879 +in.representative_income 11882 Representative total house income in the dwelling unit is $11882 +in.representative_income 11885 Representative total house income in the dwelling unit is $11885 +in.representative_income 11894 Representative total house income in the dwelling unit is $11894 +in.representative_income 11896 Representative total house income in the dwelling unit is $11896 +in.representative_income 11903 Representative total house income in the dwelling unit is $11903 +in.representative_income 11910 Representative total house income in the dwelling unit is $11910 +in.representative_income 11913 Representative total house income in the dwelling unit is $11913 +in.representative_income 11916 Representative total house income in the dwelling unit is $11916 +in.representative_income 11917 Representative total house income in the dwelling unit is $11917 +in.representative_income 11918 Representative total house income in the dwelling unit is $11918 +in.representative_income 11920 Representative total house income in the dwelling unit is $11920 +in.representative_income 11923 Representative total house income in the dwelling unit is $11923 +in.representative_income 11926 Representative total house income in the dwelling unit is $11926 +in.representative_income 11928 Representative total house income in the dwelling unit is $11928 +in.representative_income 11930 Representative total house income in the dwelling unit is $11930 +in.representative_income 11938 Representative total house income in the dwelling unit is $11938 +in.representative_income 11939 Representative total house income in the dwelling unit is $11939 +in.representative_income 11944 Representative total house income in the dwelling unit is $11944 +in.representative_income 11948 Representative total house income in the dwelling unit is $11948 +in.representative_income 11949 Representative total house income in the dwelling unit is $11949 +in.representative_income 11958 Representative total house income in the dwelling unit is $11958 +in.representative_income 11959 Representative total house income in the dwelling unit is $11959 +in.representative_income 11960 Representative total house income in the dwelling unit is $11960 +in.representative_income 11965 Representative total house income in the dwelling unit is $11965 +in.representative_income 11973 Representative total house income in the dwelling unit is $11973 +in.representative_income 11975 Representative total house income in the dwelling unit is $11975 +in.representative_income 11981 Representative total house income in the dwelling unit is $11981 +in.representative_income 11986 Representative total house income in the dwelling unit is $11986 +in.representative_income 11989 Representative total house income in the dwelling unit is $11989 +in.representative_income 11990 Representative total house income in the dwelling unit is $11990 +in.representative_income 11991 Representative total house income in the dwelling unit is $11991 +in.representative_income 11993 Representative total house income in the dwelling unit is $11993 +in.representative_income 11996 Representative total house income in the dwelling unit is $11996 +in.representative_income 12004 Representative total house income in the dwelling unit is $12004 +in.representative_income 12006 Representative total house income in the dwelling unit is $12006 +in.representative_income 12011 Representative total house income in the dwelling unit is $12011 +in.representative_income 12015 Representative total house income in the dwelling unit is $12015 +in.representative_income 12021 Representative total house income in the dwelling unit is $12021 +in.representative_income 12022 Representative total house income in the dwelling unit is $12022 +in.representative_income 12023 Representative total house income in the dwelling unit is $12023 +in.representative_income 12033 Representative total house income in the dwelling unit is $12033 +in.representative_income 12036 Representative total house income in the dwelling unit is $12036 +in.representative_income 12048 Representative total house income in the dwelling unit is $12048 +in.representative_income 12058 Representative total house income in the dwelling unit is $12058 +in.representative_income 12061 Representative total house income in the dwelling unit is $12061 +in.representative_income 12068 Representative total house income in the dwelling unit is $12068 +in.representative_income 12069 Representative total house income in the dwelling unit is $12069 +in.representative_income 12071 Representative total house income in the dwelling unit is $12071 +in.representative_income 12076 Representative total house income in the dwelling unit is $12076 +in.representative_income 12079 Representative total house income in the dwelling unit is $12079 +in.representative_income 12081 Representative total house income in the dwelling unit is $12081 +in.representative_income 12086 Representative total house income in the dwelling unit is $12086 +in.representative_income 12088 Representative total house income in the dwelling unit is $12088 +in.representative_income 12096 Representative total house income in the dwelling unit is $12096 +in.representative_income 12099 Representative total house income in the dwelling unit is $12099 +in.representative_income 12101 Representative total house income in the dwelling unit is $12101 +in.representative_income 12102 Representative total house income in the dwelling unit is $12102 +in.representative_income 12108 Representative total house income in the dwelling unit is $12108 +in.representative_income 12110 Representative total house income in the dwelling unit is $12110 +in.representative_income 12112 Representative total house income in the dwelling unit is $12112 +in.representative_income 12120 Representative total house income in the dwelling unit is $12120 +in.representative_income 12122 Representative total house income in the dwelling unit is $12122 +in.representative_income 12123 Representative total house income in the dwelling unit is $12123 +in.representative_income 12128 Representative total house income in the dwelling unit is $12128 +in.representative_income 12130 Representative total house income in the dwelling unit is $12130 +in.representative_income 12132 Representative total house income in the dwelling unit is $12132 +in.representative_income 12133 Representative total house income in the dwelling unit is $12133 +in.representative_income 12148 Representative total house income in the dwelling unit is $12148 +in.representative_income 12152 Representative total house income in the dwelling unit is $12152 +in.representative_income 12155 Representative total house income in the dwelling unit is $12155 +in.representative_income 12160 Representative total house income in the dwelling unit is $12160 +in.representative_income 12166 Representative total house income in the dwelling unit is $12166 +in.representative_income 12171 Representative total house income in the dwelling unit is $12171 +in.representative_income 12177 Representative total house income in the dwelling unit is $12177 +in.representative_income 12181 Representative total house income in the dwelling unit is $12181 +in.representative_income 12184 Representative total house income in the dwelling unit is $12184 +in.representative_income 12187 Representative total house income in the dwelling unit is $12187 +in.representative_income 12192 Representative total house income in the dwelling unit is $12192 +in.representative_income 12195 Representative total house income in the dwelling unit is $12195 +in.representative_income 12202 Representative total house income in the dwelling unit is $12202 +in.representative_income 12203 Representative total house income in the dwelling unit is $12203 +in.representative_income 12209 Representative total house income in the dwelling unit is $12209 +in.representative_income 12210 Representative total house income in the dwelling unit is $12210 +in.representative_income 12220 Representative total house income in the dwelling unit is $12220 +in.representative_income 12223 Representative total house income in the dwelling unit is $12223 +in.representative_income 12227 Representative total house income in the dwelling unit is $12227 +in.representative_income 12230 Representative total house income in the dwelling unit is $12230 +in.representative_income 12233 Representative total house income in the dwelling unit is $12233 +in.representative_income 12237 Representative total house income in the dwelling unit is $12237 +in.representative_income 12243 Representative total house income in the dwelling unit is $12243 +in.representative_income 12246 Representative total house income in the dwelling unit is $12246 +in.representative_income 12248 Representative total house income in the dwelling unit is $12248 +in.representative_income 12253 Representative total house income in the dwelling unit is $12253 +in.representative_income 12255 Representative total house income in the dwelling unit is $12255 +in.representative_income 12258 Representative total house income in the dwelling unit is $12258 +in.representative_income 12263 Representative total house income in the dwelling unit is $12263 +in.representative_income 12264 Representative total house income in the dwelling unit is $12264 +in.representative_income 12273 Representative total house income in the dwelling unit is $12273 +in.representative_income 12274 Representative total house income in the dwelling unit is $12274 +in.representative_income 12275 Representative total house income in the dwelling unit is $12275 +in.representative_income 12283 Representative total house income in the dwelling unit is $12283 +in.representative_income 12295 Representative total house income in the dwelling unit is $12295 +in.representative_income 12314 Representative total house income in the dwelling unit is $12314 +in.representative_income 12315 Representative total house income in the dwelling unit is $12315 +in.representative_income 12318 Representative total house income in the dwelling unit is $12318 +in.representative_income 12323 Representative total house income in the dwelling unit is $12323 +in.representative_income 12324 Representative total house income in the dwelling unit is $12324 +in.representative_income 12326 Representative total house income in the dwelling unit is $12326 +in.representative_income 12328 Representative total house income in the dwelling unit is $12328 +in.representative_income 12334 Representative total house income in the dwelling unit is $12334 +in.representative_income 12339 Representative total house income in the dwelling unit is $12339 +in.representative_income 12345 Representative total house income in the dwelling unit is $12345 +in.representative_income 12347 Representative total house income in the dwelling unit is $12347 +in.representative_income 12355 Representative total house income in the dwelling unit is $12355 +in.representative_income 12366 Representative total house income in the dwelling unit is $12366 +in.representative_income 12371 Representative total house income in the dwelling unit is $12371 +in.representative_income 12372 Representative total house income in the dwelling unit is $12372 +in.representative_income 12374 Representative total house income in the dwelling unit is $12374 +in.representative_income 12377 Representative total house income in the dwelling unit is $12377 +in.representative_income 12383 Representative total house income in the dwelling unit is $12383 +in.representative_income 12387 Representative total house income in the dwelling unit is $12387 +in.representative_income 12388 Representative total house income in the dwelling unit is $12388 +in.representative_income 12392 Representative total house income in the dwelling unit is $12392 +in.representative_income 12393 Representative total house income in the dwelling unit is $12393 +in.representative_income 12394 Representative total house income in the dwelling unit is $12394 +in.representative_income 12398 Representative total house income in the dwelling unit is $12398 +in.representative_income 12404 Representative total house income in the dwelling unit is $12404 +in.representative_income 12408 Representative total house income in the dwelling unit is $12408 +in.representative_income 12419 Representative total house income in the dwelling unit is $12419 +in.representative_income 12420 Representative total house income in the dwelling unit is $12420 +in.representative_income 12423 Representative total house income in the dwelling unit is $12423 +in.representative_income 12425 Representative total house income in the dwelling unit is $12425 +in.representative_income 12426 Representative total house income in the dwelling unit is $12426 +in.representative_income 12429 Representative total house income in the dwelling unit is $12429 +in.representative_income 12434 Representative total house income in the dwelling unit is $12434 +in.representative_income 12440 Representative total house income in the dwelling unit is $12440 +in.representative_income 12445 Representative total house income in the dwelling unit is $12445 +in.representative_income 12447 Representative total house income in the dwelling unit is $12447 +in.representative_income 12452 Representative total house income in the dwelling unit is $12452 +in.representative_income 12468 Representative total house income in the dwelling unit is $12468 +in.representative_income 12469 Representative total house income in the dwelling unit is $12469 +in.representative_income 12475 Representative total house income in the dwelling unit is $12475 +in.representative_income 12480 Representative total house income in the dwelling unit is $12480 +in.representative_income 12485 Representative total house income in the dwelling unit is $12485 +in.representative_income 12490 Representative total house income in the dwelling unit is $12490 +in.representative_income 12495 Representative total house income in the dwelling unit is $12495 +in.representative_income 12497 Representative total house income in the dwelling unit is $12497 +in.representative_income 12501 Representative total house income in the dwelling unit is $12501 +in.representative_income 12512 Representative total house income in the dwelling unit is $12512 +in.representative_income 12516 Representative total house income in the dwelling unit is $12516 +in.representative_income 12523 Representative total house income in the dwelling unit is $12523 +in.representative_income 12526 Representative total house income in the dwelling unit is $12526 +in.representative_income 12527 Representative total house income in the dwelling unit is $12527 +in.representative_income 12529 Representative total house income in the dwelling unit is $12529 +in.representative_income 12534 Representative total house income in the dwelling unit is $12534 +in.representative_income 12542 Representative total house income in the dwelling unit is $12542 +in.representative_income 12550 Representative total house income in the dwelling unit is $12550 +in.representative_income 12552 Representative total house income in the dwelling unit is $12552 +in.representative_income 12560 Representative total house income in the dwelling unit is $12560 +in.representative_income 12571 Representative total house income in the dwelling unit is $12571 +in.representative_income 12577 Representative total house income in the dwelling unit is $12577 +in.representative_income 12581 Representative total house income in the dwelling unit is $12581 +in.representative_income 12584 Representative total house income in the dwelling unit is $12584 +in.representative_income 12588 Representative total house income in the dwelling unit is $12588 +in.representative_income 12590 Representative total house income in the dwelling unit is $12590 +in.representative_income 12592 Representative total house income in the dwelling unit is $12592 +in.representative_income 12593 Representative total house income in the dwelling unit is $12593 +in.representative_income 12603 Representative total house income in the dwelling unit is $12603 +in.representative_income 12604 Representative total house income in the dwelling unit is $12604 +in.representative_income 12613 Representative total house income in the dwelling unit is $12613 +in.representative_income 12618 Representative total house income in the dwelling unit is $12618 +in.representative_income 12624 Representative total house income in the dwelling unit is $12624 +in.representative_income 12627 Representative total house income in the dwelling unit is $12627 +in.representative_income 12637 Representative total house income in the dwelling unit is $12637 +in.representative_income 12640 Representative total house income in the dwelling unit is $12640 +in.representative_income 12642 Representative total house income in the dwelling unit is $12642 +in.representative_income 12643 Representative total house income in the dwelling unit is $12643 +in.representative_income 12645 Representative total house income in the dwelling unit is $12645 +in.representative_income 12652 Representative total house income in the dwelling unit is $12652 +in.representative_income 12655 Representative total house income in the dwelling unit is $12655 +in.representative_income 12657 Representative total house income in the dwelling unit is $12657 +in.representative_income 12659 Representative total house income in the dwelling unit is $12659 +in.representative_income 12663 Representative total house income in the dwelling unit is $12663 +in.representative_income 12666 Representative total house income in the dwelling unit is $12666 +in.representative_income 12675 Representative total house income in the dwelling unit is $12675 +in.representative_income 12676 Representative total house income in the dwelling unit is $12676 +in.representative_income 12687 Representative total house income in the dwelling unit is $12687 +in.representative_income 12696 Representative total house income in the dwelling unit is $12696 +in.representative_income 12706 Representative total house income in the dwelling unit is $12706 +in.representative_income 12707 Representative total house income in the dwelling unit is $12707 +in.representative_income 12708 Representative total house income in the dwelling unit is $12708 +in.representative_income 12713 Representative total house income in the dwelling unit is $12713 +in.representative_income 12717 Representative total house income in the dwelling unit is $12717 +in.representative_income 12719 Representative total house income in the dwelling unit is $12719 +in.representative_income 12728 Representative total house income in the dwelling unit is $12728 +in.representative_income 12729 Representative total house income in the dwelling unit is $12729 +in.representative_income 12739 Representative total house income in the dwelling unit is $12739 +in.representative_income 12740 Representative total house income in the dwelling unit is $12740 +in.representative_income 12749 Representative total house income in the dwelling unit is $12749 +in.representative_income 12753 Representative total house income in the dwelling unit is $12753 +in.representative_income 12756 Representative total house income in the dwelling unit is $12756 +in.representative_income 12759 Representative total house income in the dwelling unit is $12759 +in.representative_income 12761 Representative total house income in the dwelling unit is $12761 +in.representative_income 12771 Representative total house income in the dwelling unit is $12771 +in.representative_income 12774 Representative total house income in the dwelling unit is $12774 +in.representative_income 12784 Representative total house income in the dwelling unit is $12784 +in.representative_income 12790 Representative total house income in the dwelling unit is $12790 +in.representative_income 12793 Representative total house income in the dwelling unit is $12793 +in.representative_income 12795 Representative total house income in the dwelling unit is $12795 +in.representative_income 12800 Representative total house income in the dwelling unit is $12800 +in.representative_income 12803 Representative total house income in the dwelling unit is $12803 +in.representative_income 12804 Representative total house income in the dwelling unit is $12804 +in.representative_income 12810 Representative total house income in the dwelling unit is $12810 +in.representative_income 12814 Representative total house income in the dwelling unit is $12814 +in.representative_income 12819 Representative total house income in the dwelling unit is $12819 +in.representative_income 12829 Representative total house income in the dwelling unit is $12829 +in.representative_income 12833 Representative total house income in the dwelling unit is $12833 +in.representative_income 12836 Representative total house income in the dwelling unit is $12836 +in.representative_income 12842 Representative total house income in the dwelling unit is $12842 +in.representative_income 12846 Representative total house income in the dwelling unit is $12846 +in.representative_income 12855 Representative total house income in the dwelling unit is $12855 +in.representative_income 12857 Representative total house income in the dwelling unit is $12857 +in.representative_income 12860 Representative total house income in the dwelling unit is $12860 +in.representative_income 12866 Representative total house income in the dwelling unit is $12866 +in.representative_income 12881 Representative total house income in the dwelling unit is $12881 +in.representative_income 12882 Representative total house income in the dwelling unit is $12882 +in.representative_income 12890 Representative total house income in the dwelling unit is $12890 +in.representative_income 12892 Representative total house income in the dwelling unit is $12892 +in.representative_income 12893 Representative total house income in the dwelling unit is $12893 +in.representative_income 12903 Representative total house income in the dwelling unit is $12903 +in.representative_income 12911 Representative total house income in the dwelling unit is $12911 +in.representative_income 12913 Representative total house income in the dwelling unit is $12913 +in.representative_income 12914 Representative total house income in the dwelling unit is $12914 +in.representative_income 12919 Representative total house income in the dwelling unit is $12919 +in.representative_income 12923 Representative total house income in the dwelling unit is $12923 +in.representative_income 12926 Representative total house income in the dwelling unit is $12926 +in.representative_income 12929 Representative total house income in the dwelling unit is $12929 +in.representative_income 12930 Representative total house income in the dwelling unit is $12930 +in.representative_income 12934 Representative total house income in the dwelling unit is $12934 +in.representative_income 12940 Representative total house income in the dwelling unit is $12940 +in.representative_income 12944 Representative total house income in the dwelling unit is $12944 +in.representative_income 12950 Representative total house income in the dwelling unit is $12950 +in.representative_income 12954 Representative total house income in the dwelling unit is $12954 +in.representative_income 12957 Representative total house income in the dwelling unit is $12957 +in.representative_income 12961 Representative total house income in the dwelling unit is $12961 +in.representative_income 12965 Representative total house income in the dwelling unit is $12965 +in.representative_income 12966 Representative total house income in the dwelling unit is $12966 +in.representative_income 12972 Representative total house income in the dwelling unit is $12972 +in.representative_income 12976 Representative total house income in the dwelling unit is $12976 +in.representative_income 12984 Representative total house income in the dwelling unit is $12984 +in.representative_income 12987 Representative total house income in the dwelling unit is $12987 +in.representative_income 12989 Representative total house income in the dwelling unit is $12989 +in.representative_income 12990 Representative total house income in the dwelling unit is $12990 +in.representative_income 12993 Representative total house income in the dwelling unit is $12993 +in.representative_income 12996 Representative total house income in the dwelling unit is $12996 +in.representative_income 12998 Representative total house income in the dwelling unit is $12998 +in.representative_income 13000 Representative total house income in the dwelling unit is $13000 +in.representative_income 13001 Representative total house income in the dwelling unit is $13001 +in.representative_income 13006 Representative total house income in the dwelling unit is $13006 +in.representative_income 13008 Representative total house income in the dwelling unit is $13008 +in.representative_income 13010 Representative total house income in the dwelling unit is $13010 +in.representative_income 13017 Representative total house income in the dwelling unit is $13017 +in.representative_income 13019 Representative total house income in the dwelling unit is $13019 +in.representative_income 13021 Representative total house income in the dwelling unit is $13021 +in.representative_income 13025 Representative total house income in the dwelling unit is $13025 +in.representative_income 13030 Representative total house income in the dwelling unit is $13030 +in.representative_income 13031 Representative total house income in the dwelling unit is $13031 +in.representative_income 13032 Representative total house income in the dwelling unit is $13032 +in.representative_income 13042 Representative total house income in the dwelling unit is $13042 +in.representative_income 13045 Representative total house income in the dwelling unit is $13045 +in.representative_income 13048 Representative total house income in the dwelling unit is $13048 +in.representative_income 13049 Representative total house income in the dwelling unit is $13049 +in.representative_income 13054 Representative total house income in the dwelling unit is $13054 +in.representative_income 13058 Representative total house income in the dwelling unit is $13058 +in.representative_income 13067 Representative total house income in the dwelling unit is $13067 +in.representative_income 13071 Representative total house income in the dwelling unit is $13071 +in.representative_income 13074 Representative total house income in the dwelling unit is $13074 +in.representative_income 13075 Representative total house income in the dwelling unit is $13075 +in.representative_income 13077 Representative total house income in the dwelling unit is $13077 +in.representative_income 13081 Representative total house income in the dwelling unit is $13081 +in.representative_income 13084 Representative total house income in the dwelling unit is $13084 +in.representative_income 13085 Representative total house income in the dwelling unit is $13085 +in.representative_income 13091 Representative total house income in the dwelling unit is $13091 +in.representative_income 13096 Representative total house income in the dwelling unit is $13096 +in.representative_income 13098 Representative total house income in the dwelling unit is $13098 +in.representative_income 13099 Representative total house income in the dwelling unit is $13099 +in.representative_income 13107 Representative total house income in the dwelling unit is $13107 +in.representative_income 13112 Representative total house income in the dwelling unit is $13112 +in.representative_income 13117 Representative total house income in the dwelling unit is $13117 +in.representative_income 13128 Representative total house income in the dwelling unit is $13128 +in.representative_income 13132 Representative total house income in the dwelling unit is $13132 +in.representative_income 13139 Representative total house income in the dwelling unit is $13139 +in.representative_income 13141 Representative total house income in the dwelling unit is $13141 +in.representative_income 13150 Representative total house income in the dwelling unit is $13150 +in.representative_income 13151 Representative total house income in the dwelling unit is $13151 +in.representative_income 13152 Representative total house income in the dwelling unit is $13152 +in.representative_income 13161 Representative total house income in the dwelling unit is $13161 +in.representative_income 13171 Representative total house income in the dwelling unit is $13171 +in.representative_income 13172 Representative total house income in the dwelling unit is $13172 +in.representative_income 13174 Representative total house income in the dwelling unit is $13174 +in.representative_income 13182 Representative total house income in the dwelling unit is $13182 +in.representative_income 13183 Representative total house income in the dwelling unit is $13183 +in.representative_income 13190 Representative total house income in the dwelling unit is $13190 +in.representative_income 13192 Representative total house income in the dwelling unit is $13192 +in.representative_income 13203 Representative total house income in the dwelling unit is $13203 +in.representative_income 13204 Representative total house income in the dwelling unit is $13204 +in.representative_income 13205 Representative total house income in the dwelling unit is $13205 +in.representative_income 13214 Representative total house income in the dwelling unit is $13214 +in.representative_income 13215 Representative total house income in the dwelling unit is $13215 +in.representative_income 13225 Representative total house income in the dwelling unit is $13225 +in.representative_income 13233 Representative total house income in the dwelling unit is $13233 +in.representative_income 13235 Representative total house income in the dwelling unit is $13235 +in.representative_income 13236 Representative total house income in the dwelling unit is $13236 +in.representative_income 13247 Representative total house income in the dwelling unit is $13247 +in.representative_income 13257 Representative total house income in the dwelling unit is $13257 +in.representative_income 13258 Representative total house income in the dwelling unit is $13258 +in.representative_income 13263 Representative total house income in the dwelling unit is $13263 +in.representative_income 13267 Representative total house income in the dwelling unit is $13267 +in.representative_income 13268 Representative total house income in the dwelling unit is $13268 +in.representative_income 13272 Representative total house income in the dwelling unit is $13272 +in.representative_income 13275 Representative total house income in the dwelling unit is $13275 +in.representative_income 13279 Representative total house income in the dwelling unit is $13279 +in.representative_income 13283 Representative total house income in the dwelling unit is $13283 +in.representative_income 13285 Representative total house income in the dwelling unit is $13285 +in.representative_income 13288 Representative total house income in the dwelling unit is $13288 +in.representative_income 13289 Representative total house income in the dwelling unit is $13289 +in.representative_income 13290 Representative total house income in the dwelling unit is $13290 +in.representative_income 13294 Representative total house income in the dwelling unit is $13294 +in.representative_income 13296 Representative total house income in the dwelling unit is $13296 +in.representative_income 13300 Representative total house income in the dwelling unit is $13300 +in.representative_income 13301 Representative total house income in the dwelling unit is $13301 +in.representative_income 13304 Representative total house income in the dwelling unit is $13304 +in.representative_income 13305 Representative total house income in the dwelling unit is $13305 +in.representative_income 13306 Representative total house income in the dwelling unit is $13306 +in.representative_income 13309 Representative total house income in the dwelling unit is $13309 +in.representative_income 13311 Representative total house income in the dwelling unit is $13311 +in.representative_income 13312 Representative total house income in the dwelling unit is $13312 +in.representative_income 13314 Representative total house income in the dwelling unit is $13314 +in.representative_income 13319 Representative total house income in the dwelling unit is $13319 +in.representative_income 13321 Representative total house income in the dwelling unit is $13321 +in.representative_income 13331 Representative total house income in the dwelling unit is $13331 +in.representative_income 13332 Representative total house income in the dwelling unit is $13332 +in.representative_income 13333 Representative total house income in the dwelling unit is $13333 +in.representative_income 13334 Representative total house income in the dwelling unit is $13334 +in.representative_income 13336 Representative total house income in the dwelling unit is $13336 +in.representative_income 13338 Representative total house income in the dwelling unit is $13338 +in.representative_income 13344 Representative total house income in the dwelling unit is $13344 +in.representative_income 13350 Representative total house income in the dwelling unit is $13350 +in.representative_income 13354 Representative total house income in the dwelling unit is $13354 +in.representative_income 13357 Representative total house income in the dwelling unit is $13357 +in.representative_income 13358 Representative total house income in the dwelling unit is $13358 +in.representative_income 13359 Representative total house income in the dwelling unit is $13359 +in.representative_income 13361 Representative total house income in the dwelling unit is $13361 +in.representative_income 13362 Representative total house income in the dwelling unit is $13362 +in.representative_income 13364 Representative total house income in the dwelling unit is $13364 +in.representative_income 13365 Representative total house income in the dwelling unit is $13365 +in.representative_income 13366 Representative total house income in the dwelling unit is $13366 +in.representative_income 13376 Representative total house income in the dwelling unit is $13376 +in.representative_income 13384 Representative total house income in the dwelling unit is $13384 +in.representative_income 13388 Representative total house income in the dwelling unit is $13388 +in.representative_income 13393 Representative total house income in the dwelling unit is $13393 +in.representative_income 13395 Representative total house income in the dwelling unit is $13395 +in.representative_income 13397 Representative total house income in the dwelling unit is $13397 +in.representative_income 13398 Representative total house income in the dwelling unit is $13398 +in.representative_income 13404 Representative total house income in the dwelling unit is $13404 +in.representative_income 13405 Representative total house income in the dwelling unit is $13405 +in.representative_income 13407 Representative total house income in the dwelling unit is $13407 +in.representative_income 13409 Representative total house income in the dwelling unit is $13409 +in.representative_income 13411 Representative total house income in the dwelling unit is $13411 +in.representative_income 13414 Representative total house income in the dwelling unit is $13414 +in.representative_income 13415 Representative total house income in the dwelling unit is $13415 +in.representative_income 13418 Representative total house income in the dwelling unit is $13418 +in.representative_income 13419 Representative total house income in the dwelling unit is $13419 +in.representative_income 13423 Representative total house income in the dwelling unit is $13423 +in.representative_income 13426 Representative total house income in the dwelling unit is $13426 +in.representative_income 13435 Representative total house income in the dwelling unit is $13435 +in.representative_income 13436 Representative total house income in the dwelling unit is $13436 +in.representative_income 13439 Representative total house income in the dwelling unit is $13439 +in.representative_income 13445 Representative total house income in the dwelling unit is $13445 +in.representative_income 13446 Representative total house income in the dwelling unit is $13446 +in.representative_income 13450 Representative total house income in the dwelling unit is $13450 +in.representative_income 13455 Representative total house income in the dwelling unit is $13455 +in.representative_income 13460 Representative total house income in the dwelling unit is $13460 +in.representative_income 13463 Representative total house income in the dwelling unit is $13463 +in.representative_income 13465 Representative total house income in the dwelling unit is $13465 +in.representative_income 13466 Representative total house income in the dwelling unit is $13466 +in.representative_income 13471 Representative total house income in the dwelling unit is $13471 +in.representative_income 13475 Representative total house income in the dwelling unit is $13475 +in.representative_income 13478 Representative total house income in the dwelling unit is $13478 +in.representative_income 13484 Representative total house income in the dwelling unit is $13484 +in.representative_income 13485 Representative total house income in the dwelling unit is $13485 +in.representative_income 13488 Representative total house income in the dwelling unit is $13488 +in.representative_income 13494 Representative total house income in the dwelling unit is $13494 +in.representative_income 13499 Representative total house income in the dwelling unit is $13499 +in.representative_income 13504 Representative total house income in the dwelling unit is $13504 +in.representative_income 13506 Representative total house income in the dwelling unit is $13506 +in.representative_income 13507 Representative total house income in the dwelling unit is $13507 +in.representative_income 13509 Representative total house income in the dwelling unit is $13509 +in.representative_income 13512 Representative total house income in the dwelling unit is $13512 +in.representative_income 13516 Representative total house income in the dwelling unit is $13516 +in.representative_income 13517 Representative total house income in the dwelling unit is $13517 +in.representative_income 13521 Representative total house income in the dwelling unit is $13521 +in.representative_income 13523 Representative total house income in the dwelling unit is $13523 +in.representative_income 13526 Representative total house income in the dwelling unit is $13526 +in.representative_income 13531 Representative total house income in the dwelling unit is $13531 +in.representative_income 13533 Representative total house income in the dwelling unit is $13533 +in.representative_income 13536 Representative total house income in the dwelling unit is $13536 +in.representative_income 13552 Representative total house income in the dwelling unit is $13552 +in.representative_income 13560 Representative total house income in the dwelling unit is $13560 +in.representative_income 13567 Representative total house income in the dwelling unit is $13567 +in.representative_income 13568 Representative total house income in the dwelling unit is $13568 +in.representative_income 13569 Representative total house income in the dwelling unit is $13569 +in.representative_income 13570 Representative total house income in the dwelling unit is $13570 +in.representative_income 13576 Representative total house income in the dwelling unit is $13576 +in.representative_income 13579 Representative total house income in the dwelling unit is $13579 +in.representative_income 13581 Representative total house income in the dwelling unit is $13581 +in.representative_income 13588 Representative total house income in the dwelling unit is $13588 +in.representative_income 13590 Representative total house income in the dwelling unit is $13590 +in.representative_income 13592 Representative total house income in the dwelling unit is $13592 +in.representative_income 13593 Representative total house income in the dwelling unit is $13593 +in.representative_income 13595 Representative total house income in the dwelling unit is $13595 +in.representative_income 13605 Representative total house income in the dwelling unit is $13605 +in.representative_income 13607 Representative total house income in the dwelling unit is $13607 +in.representative_income 13611 Representative total house income in the dwelling unit is $13611 +in.representative_income 13612 Representative total house income in the dwelling unit is $13612 +in.representative_income 13614 Representative total house income in the dwelling unit is $13614 +in.representative_income 13615 Representative total house income in the dwelling unit is $13615 +in.representative_income 13618 Representative total house income in the dwelling unit is $13618 +in.representative_income 13623 Representative total house income in the dwelling unit is $13623 +in.representative_income 13625 Representative total house income in the dwelling unit is $13625 +in.representative_income 13626 Representative total house income in the dwelling unit is $13626 +in.representative_income 13627 Representative total house income in the dwelling unit is $13627 +in.representative_income 13633 Representative total house income in the dwelling unit is $13633 +in.representative_income 13634 Representative total house income in the dwelling unit is $13634 +in.representative_income 13635 Representative total house income in the dwelling unit is $13635 +in.representative_income 13636 Representative total house income in the dwelling unit is $13636 +in.representative_income 13637 Representative total house income in the dwelling unit is $13637 +in.representative_income 13643 Representative total house income in the dwelling unit is $13643 +in.representative_income 13644 Representative total house income in the dwelling unit is $13644 +in.representative_income 13646 Representative total house income in the dwelling unit is $13646 +in.representative_income 13654 Representative total house income in the dwelling unit is $13654 +in.representative_income 13657 Representative total house income in the dwelling unit is $13657 +in.representative_income 13665 Representative total house income in the dwelling unit is $13665 +in.representative_income 13667 Representative total house income in the dwelling unit is $13667 +in.representative_income 13668 Representative total house income in the dwelling unit is $13668 +in.representative_income 13676 Representative total house income in the dwelling unit is $13676 +in.representative_income 13687 Representative total house income in the dwelling unit is $13687 +in.representative_income 13688 Representative total house income in the dwelling unit is $13688 +in.representative_income 13697 Representative total house income in the dwelling unit is $13697 +in.representative_income 13698 Representative total house income in the dwelling unit is $13698 +in.representative_income 13700 Representative total house income in the dwelling unit is $13700 +in.representative_income 13706 Representative total house income in the dwelling unit is $13706 +in.representative_income 13708 Representative total house income in the dwelling unit is $13708 +in.representative_income 13710 Representative total house income in the dwelling unit is $13710 +in.representative_income 13714 Representative total house income in the dwelling unit is $13714 +in.representative_income 13718 Representative total house income in the dwelling unit is $13718 +in.representative_income 13722 Representative total house income in the dwelling unit is $13722 +in.representative_income 13723 Representative total house income in the dwelling unit is $13723 +in.representative_income 13724 Representative total house income in the dwelling unit is $13724 +in.representative_income 13729 Representative total house income in the dwelling unit is $13729 +in.representative_income 13731 Representative total house income in the dwelling unit is $13731 +in.representative_income 13738 Representative total house income in the dwelling unit is $13738 +in.representative_income 13740 Representative total house income in the dwelling unit is $13740 +in.representative_income 13741 Representative total house income in the dwelling unit is $13741 +in.representative_income 13750 Representative total house income in the dwelling unit is $13750 +in.representative_income 13752 Representative total house income in the dwelling unit is $13752 +in.representative_income 13754 Representative total house income in the dwelling unit is $13754 +in.representative_income 13758 Representative total house income in the dwelling unit is $13758 +in.representative_income 13765 Representative total house income in the dwelling unit is $13765 +in.representative_income 13766 Representative total house income in the dwelling unit is $13766 +in.representative_income 13773 Representative total house income in the dwelling unit is $13773 +in.representative_income 13774 Representative total house income in the dwelling unit is $13774 +in.representative_income 13776 Representative total house income in the dwelling unit is $13776 +in.representative_income 13779 Representative total house income in the dwelling unit is $13779 +in.representative_income 13781 Representative total house income in the dwelling unit is $13781 +in.representative_income 13783 Representative total house income in the dwelling unit is $13783 +in.representative_income 13784 Representative total house income in the dwelling unit is $13784 +in.representative_income 13794 Representative total house income in the dwelling unit is $13794 +in.representative_income 13795 Representative total house income in the dwelling unit is $13795 +in.representative_income 13800 Representative total house income in the dwelling unit is $13800 +in.representative_income 13805 Representative total house income in the dwelling unit is $13805 +in.representative_income 13808 Representative total house income in the dwelling unit is $13808 +in.representative_income 13815 Representative total house income in the dwelling unit is $13815 +in.representative_income 13822 Representative total house income in the dwelling unit is $13822 +in.representative_income 13826 Representative total house income in the dwelling unit is $13826 +in.representative_income 13830 Representative total house income in the dwelling unit is $13830 +in.representative_income 13839 Representative total house income in the dwelling unit is $13839 +in.representative_income 13847 Representative total house income in the dwelling unit is $13847 +in.representative_income 13848 Representative total house income in the dwelling unit is $13848 +in.representative_income 13851 Representative total house income in the dwelling unit is $13851 +in.representative_income 13863 Representative total house income in the dwelling unit is $13863 +in.representative_income 13864 Representative total house income in the dwelling unit is $13864 +in.representative_income 13868 Representative total house income in the dwelling unit is $13868 +in.representative_income 13873 Representative total house income in the dwelling unit is $13873 +in.representative_income 13874 Representative total house income in the dwelling unit is $13874 +in.representative_income 13875 Representative total house income in the dwelling unit is $13875 +in.representative_income 13876 Representative total house income in the dwelling unit is $13876 +in.representative_income 13879 Representative total house income in the dwelling unit is $13879 +in.representative_income 13883 Representative total house income in the dwelling unit is $13883 +in.representative_income 13889 Representative total house income in the dwelling unit is $13889 +in.representative_income 13891 Representative total house income in the dwelling unit is $13891 +in.representative_income 13892 Representative total house income in the dwelling unit is $13892 +in.representative_income 13894 Representative total house income in the dwelling unit is $13894 +in.representative_income 13900 Representative total house income in the dwelling unit is $13900 +in.representative_income 13901 Representative total house income in the dwelling unit is $13901 +in.representative_income 13904 Representative total house income in the dwelling unit is $13904 +in.representative_income 13910 Representative total house income in the dwelling unit is $13910 +in.representative_income 13912 Representative total house income in the dwelling unit is $13912 +in.representative_income 13915 Representative total house income in the dwelling unit is $13915 +in.representative_income 13917 Representative total house income in the dwelling unit is $13917 +in.representative_income 13921 Representative total house income in the dwelling unit is $13921 +in.representative_income 13923 Representative total house income in the dwelling unit is $13923 +in.representative_income 13925 Representative total house income in the dwelling unit is $13925 +in.representative_income 13928 Representative total house income in the dwelling unit is $13928 +in.representative_income 13930 Representative total house income in the dwelling unit is $13930 +in.representative_income 13938 Representative total house income in the dwelling unit is $13938 +in.representative_income 13940 Representative total house income in the dwelling unit is $13940 +in.representative_income 13942 Representative total house income in the dwelling unit is $13942 +in.representative_income 13945 Representative total house income in the dwelling unit is $13945 +in.representative_income 13950 Representative total house income in the dwelling unit is $13950 +in.representative_income 13952 Representative total house income in the dwelling unit is $13952 +in.representative_income 13955 Representative total house income in the dwelling unit is $13955 +in.representative_income 13959 Representative total house income in the dwelling unit is $13959 +in.representative_income 13960 Representative total house income in the dwelling unit is $13960 +in.representative_income 13962 Representative total house income in the dwelling unit is $13962 +in.representative_income 13965 Representative total house income in the dwelling unit is $13965 +in.representative_income 13966 Representative total house income in the dwelling unit is $13966 +in.representative_income 13973 Representative total house income in the dwelling unit is $13973 +in.representative_income 13974 Representative total house income in the dwelling unit is $13974 +in.representative_income 13976 Representative total house income in the dwelling unit is $13976 +in.representative_income 13983 Representative total house income in the dwelling unit is $13983 +in.representative_income 13984 Representative total house income in the dwelling unit is $13984 +in.representative_income 13992 Representative total house income in the dwelling unit is $13992 +in.representative_income 13995 Representative total house income in the dwelling unit is $13995 +in.representative_income 14000 Representative total house income in the dwelling unit is $14000 +in.representative_income 14001 Representative total house income in the dwelling unit is $14001 +in.representative_income 14007 Representative total house income in the dwelling unit is $14007 +in.representative_income 14008 Representative total house income in the dwelling unit is $14008 +in.representative_income 14011 Representative total house income in the dwelling unit is $14011 +in.representative_income 14021 Representative total house income in the dwelling unit is $14021 +in.representative_income 14026 Representative total house income in the dwelling unit is $14026 +in.representative_income 14027 Representative total house income in the dwelling unit is $14027 +in.representative_income 14041 Representative total house income in the dwelling unit is $14041 +in.representative_income 14046 Representative total house income in the dwelling unit is $14046 +in.representative_income 14051 Representative total house income in the dwelling unit is $14051 +in.representative_income 14052 Representative total house income in the dwelling unit is $14052 +in.representative_income 14057 Representative total house income in the dwelling unit is $14057 +in.representative_income 14058 Representative total house income in the dwelling unit is $14058 +in.representative_income 14061 Representative total house income in the dwelling unit is $14061 +in.representative_income 14062 Representative total house income in the dwelling unit is $14062 +in.representative_income 14071 Representative total house income in the dwelling unit is $14071 +in.representative_income 14079 Representative total house income in the dwelling unit is $14079 +in.representative_income 14086 Representative total house income in the dwelling unit is $14086 +in.representative_income 14089 Representative total house income in the dwelling unit is $14089 +in.representative_income 14090 Representative total house income in the dwelling unit is $14090 +in.representative_income 14094 Representative total house income in the dwelling unit is $14094 +in.representative_income 14095 Representative total house income in the dwelling unit is $14095 +in.representative_income 14099 Representative total house income in the dwelling unit is $14099 +in.representative_income 14100 Representative total house income in the dwelling unit is $14100 +in.representative_income 14101 Representative total house income in the dwelling unit is $14101 +in.representative_income 14102 Representative total house income in the dwelling unit is $14102 +in.representative_income 14109 Representative total house income in the dwelling unit is $14109 +in.representative_income 14110 Representative total house income in the dwelling unit is $14110 +in.representative_income 14111 Representative total house income in the dwelling unit is $14111 +in.representative_income 14121 Representative total house income in the dwelling unit is $14121 +in.representative_income 14124 Representative total house income in the dwelling unit is $14124 +in.representative_income 14126 Representative total house income in the dwelling unit is $14126 +in.representative_income 14131 Representative total house income in the dwelling unit is $14131 +in.representative_income 14132 Representative total house income in the dwelling unit is $14132 +in.representative_income 14133 Representative total house income in the dwelling unit is $14133 +in.representative_income 14137 Representative total house income in the dwelling unit is $14137 +in.representative_income 14142 Representative total house income in the dwelling unit is $14142 +in.representative_income 14143 Representative total house income in the dwelling unit is $14143 +in.representative_income 14152 Representative total house income in the dwelling unit is $14152 +in.representative_income 14154 Representative total house income in the dwelling unit is $14154 +in.representative_income 14156 Representative total house income in the dwelling unit is $14156 +in.representative_income 14162 Representative total house income in the dwelling unit is $14162 +in.representative_income 14170 Representative total house income in the dwelling unit is $14170 +in.representative_income 14182 Representative total house income in the dwelling unit is $14182 +in.representative_income 14187 Representative total house income in the dwelling unit is $14187 +in.representative_income 14191 Representative total house income in the dwelling unit is $14191 +in.representative_income 14202 Representative total house income in the dwelling unit is $14202 +in.representative_income 14212 Representative total house income in the dwelling unit is $14212 +in.representative_income 14214 Representative total house income in the dwelling unit is $14214 +in.representative_income 14219 Representative total house income in the dwelling unit is $14219 +in.representative_income 14223 Representative total house income in the dwelling unit is $14223 +in.representative_income 14225 Representative total house income in the dwelling unit is $14225 +in.representative_income 14233 Representative total house income in the dwelling unit is $14233 +in.representative_income 14234 Representative total house income in the dwelling unit is $14234 +in.representative_income 14238 Representative total house income in the dwelling unit is $14238 +in.representative_income 14241 Representative total house income in the dwelling unit is $14241 +in.representative_income 14243 Representative total house income in the dwelling unit is $14243 +in.representative_income 14254 Representative total house income in the dwelling unit is $14254 +in.representative_income 14255 Representative total house income in the dwelling unit is $14255 +in.representative_income 14262 Representative total house income in the dwelling unit is $14262 +in.representative_income 14265 Representative total house income in the dwelling unit is $14265 +in.representative_income 14269 Representative total house income in the dwelling unit is $14269 +in.representative_income 14273 Representative total house income in the dwelling unit is $14273 +in.representative_income 14277 Representative total house income in the dwelling unit is $14277 +in.representative_income 14286 Representative total house income in the dwelling unit is $14286 +in.representative_income 14291 Representative total house income in the dwelling unit is $14291 +in.representative_income 14294 Representative total house income in the dwelling unit is $14294 +in.representative_income 14295 Representative total house income in the dwelling unit is $14295 +in.representative_income 14300 Representative total house income in the dwelling unit is $14300 +in.representative_income 14306 Representative total house income in the dwelling unit is $14306 +in.representative_income 14316 Representative total house income in the dwelling unit is $14316 +in.representative_income 14324 Representative total house income in the dwelling unit is $14324 +in.representative_income 14331 Representative total house income in the dwelling unit is $14331 +in.representative_income 14334 Representative total house income in the dwelling unit is $14334 +in.representative_income 14337 Representative total house income in the dwelling unit is $14337 +in.representative_income 14341 Representative total house income in the dwelling unit is $14341 +in.representative_income 14343 Representative total house income in the dwelling unit is $14343 +in.representative_income 14344 Representative total house income in the dwelling unit is $14344 +in.representative_income 14363 Representative total house income in the dwelling unit is $14363 +in.representative_income 14364 Representative total house income in the dwelling unit is $14364 +in.representative_income 14370 Representative total house income in the dwelling unit is $14370 +in.representative_income 14371 Representative total house income in the dwelling unit is $14371 +in.representative_income 14384 Representative total house income in the dwelling unit is $14384 +in.representative_income 14388 Representative total house income in the dwelling unit is $14388 +in.representative_income 14389 Representative total house income in the dwelling unit is $14389 +in.representative_income 14392 Representative total house income in the dwelling unit is $14392 +in.representative_income 14395 Representative total house income in the dwelling unit is $14395 +in.representative_income 14399 Representative total house income in the dwelling unit is $14399 +in.representative_income 14415 Representative total house income in the dwelling unit is $14415 +in.representative_income 14418 Representative total house income in the dwelling unit is $14418 +in.representative_income 14424 Representative total house income in the dwelling unit is $14424 +in.representative_income 14428 Representative total house income in the dwelling unit is $14428 +in.representative_income 14435 Representative total house income in the dwelling unit is $14435 +in.representative_income 14438 Representative total house income in the dwelling unit is $14438 +in.representative_income 14441 Representative total house income in the dwelling unit is $14441 +in.representative_income 14444 Representative total house income in the dwelling unit is $14444 +in.representative_income 14445 Representative total house income in the dwelling unit is $14445 +in.representative_income 14448 Representative total house income in the dwelling unit is $14448 +in.representative_income 14451 Representative total house income in the dwelling unit is $14451 +in.representative_income 14459 Representative total house income in the dwelling unit is $14459 +in.representative_income 14461 Representative total house income in the dwelling unit is $14461 +in.representative_income 14478 Representative total house income in the dwelling unit is $14478 +in.representative_income 14485 Representative total house income in the dwelling unit is $14485 +in.representative_income 14491 Representative total house income in the dwelling unit is $14491 +in.representative_income 14492 Representative total house income in the dwelling unit is $14492 +in.representative_income 14500 Representative total house income in the dwelling unit is $14500 +in.representative_income 14516 Representative total house income in the dwelling unit is $14516 +in.representative_income 14543 Representative total house income in the dwelling unit is $14543 +in.representative_income 14546 Representative total house income in the dwelling unit is $14546 +in.representative_income 14554 Representative total house income in the dwelling unit is $14554 +in.representative_income 14556 Representative total house income in the dwelling unit is $14556 +in.representative_income 14572 Representative total house income in the dwelling unit is $14572 +in.representative_income 14574 Representative total house income in the dwelling unit is $14574 +in.representative_income 14575 Representative total house income in the dwelling unit is $14575 +in.representative_income 14578 Representative total house income in the dwelling unit is $14578 +in.representative_income 14585 Representative total house income in the dwelling unit is $14585 +in.representative_income 14586 Representative total house income in the dwelling unit is $14586 +in.representative_income 14588 Representative total house income in the dwelling unit is $14588 +in.representative_income 14599 Representative total house income in the dwelling unit is $14599 +in.representative_income 14607 Representative total house income in the dwelling unit is $14607 +in.representative_income 14626 Representative total house income in the dwelling unit is $14626 +in.representative_income 14636 Representative total house income in the dwelling unit is $14636 +in.representative_income 14646 Representative total house income in the dwelling unit is $14646 +in.representative_income 14647 Representative total house income in the dwelling unit is $14647 +in.representative_income 14652 Representative total house income in the dwelling unit is $14652 +in.representative_income 14657 Representative total house income in the dwelling unit is $14657 +in.representative_income 14659 Representative total house income in the dwelling unit is $14659 +in.representative_income 14662 Representative total house income in the dwelling unit is $14662 +in.representative_income 14668 Representative total house income in the dwelling unit is $14668 +in.representative_income 14676 Representative total house income in the dwelling unit is $14676 +in.representative_income 14677 Representative total house income in the dwelling unit is $14677 +in.representative_income 14688 Representative total house income in the dwelling unit is $14688 +in.representative_income 14695 Representative total house income in the dwelling unit is $14695 +in.representative_income 14707 Representative total house income in the dwelling unit is $14707 +in.representative_income 14716 Representative total house income in the dwelling unit is $14716 +in.representative_income 14728 Representative total house income in the dwelling unit is $14728 +in.representative_income 14743 Representative total house income in the dwelling unit is $14743 +in.representative_income 14748 Representative total house income in the dwelling unit is $14748 +in.representative_income 14750 Representative total house income in the dwelling unit is $14750 +in.representative_income 14760 Representative total house income in the dwelling unit is $14760 +in.representative_income 14764 Representative total house income in the dwelling unit is $14764 +in.representative_income 14792 Representative total house income in the dwelling unit is $14792 +in.representative_income 14803 Representative total house income in the dwelling unit is $14803 +in.representative_income 14807 Representative total house income in the dwelling unit is $14807 +in.representative_income 14814 Representative total house income in the dwelling unit is $14814 +in.representative_income 14833 Representative total house income in the dwelling unit is $14833 +in.representative_income 14846 Representative total house income in the dwelling unit is $14846 +in.representative_income 14849 Representative total house income in the dwelling unit is $14849 +in.representative_income 14853 Representative total house income in the dwelling unit is $14853 +in.representative_income 14861 Representative total house income in the dwelling unit is $14861 +in.representative_income 14867 Representative total house income in the dwelling unit is $14867 +in.representative_income 14870 Representative total house income in the dwelling unit is $14870 +in.representative_income 14910 Representative total house income in the dwelling unit is $14910 +in.representative_income 14911 Representative total house income in the dwelling unit is $14911 +in.representative_income 14921 Representative total house income in the dwelling unit is $14921 +in.representative_income 14925 Representative total house income in the dwelling unit is $14925 +in.representative_income 14932 Representative total house income in the dwelling unit is $14932 +in.representative_income 14950 Representative total house income in the dwelling unit is $14950 +in.representative_income 14956 Representative total house income in the dwelling unit is $14956 +in.representative_income 14965 Representative total house income in the dwelling unit is $14965 +in.representative_income 14976 Representative total house income in the dwelling unit is $14976 +in.representative_income 14997 Representative total house income in the dwelling unit is $14997 +in.representative_income 15019 Representative total house income in the dwelling unit is $15019 +in.representative_income 15028 Representative total house income in the dwelling unit is $15028 +in.representative_income 15031 Representative total house income in the dwelling unit is $15031 +in.representative_income 15039 Representative total house income in the dwelling unit is $15039 +in.representative_income 15049 Representative total house income in the dwelling unit is $15049 +in.representative_income 15051 Representative total house income in the dwelling unit is $15051 +in.representative_income 15060 Representative total house income in the dwelling unit is $15060 +in.representative_income 15081 Representative total house income in the dwelling unit is $15081 +in.representative_income 15082 Representative total house income in the dwelling unit is $15082 +in.representative_income 15083 Representative total house income in the dwelling unit is $15083 +in.representative_income 15090 Representative total house income in the dwelling unit is $15090 +in.representative_income 15112 Representative total house income in the dwelling unit is $15112 +in.representative_income 15116 Representative total house income in the dwelling unit is $15116 +in.representative_income 15125 Representative total house income in the dwelling unit is $15125 +in.representative_income 15126 Representative total house income in the dwelling unit is $15126 +in.representative_income 15131 Representative total house income in the dwelling unit is $15131 +in.representative_income 15136 Representative total house income in the dwelling unit is $15136 +in.representative_income 15137 Representative total house income in the dwelling unit is $15137 +in.representative_income 15146 Representative total house income in the dwelling unit is $15146 +in.representative_income 15148 Representative total house income in the dwelling unit is $15148 +in.representative_income 15152 Representative total house income in the dwelling unit is $15152 +in.representative_income 15162 Representative total house income in the dwelling unit is $15162 +in.representative_income 15170 Representative total house income in the dwelling unit is $15170 +in.representative_income 15178 Representative total house income in the dwelling unit is $15178 +in.representative_income 15185 Representative total house income in the dwelling unit is $15185 +in.representative_income 15186 Representative total house income in the dwelling unit is $15186 +in.representative_income 15200 Representative total house income in the dwelling unit is $15200 +in.representative_income 15203 Representative total house income in the dwelling unit is $15203 +in.representative_income 15211 Representative total house income in the dwelling unit is $15211 +in.representative_income 15213 Representative total house income in the dwelling unit is $15213 +in.representative_income 15220 Representative total house income in the dwelling unit is $15220 +in.representative_income 15223 Representative total house income in the dwelling unit is $15223 +in.representative_income 15234 Representative total house income in the dwelling unit is $15234 +in.representative_income 15238 Representative total house income in the dwelling unit is $15238 +in.representative_income 15243 Representative total house income in the dwelling unit is $15243 +in.representative_income 15253 Representative total house income in the dwelling unit is $15253 +in.representative_income 15265 Representative total house income in the dwelling unit is $15265 +in.representative_income 15269 Representative total house income in the dwelling unit is $15269 +in.representative_income 15286 Representative total house income in the dwelling unit is $15286 +in.representative_income 15287 Representative total house income in the dwelling unit is $15287 +in.representative_income 15292 Representative total house income in the dwelling unit is $15292 +in.representative_income 15296 Representative total house income in the dwelling unit is $15296 +in.representative_income 15299 Representative total house income in the dwelling unit is $15299 +in.representative_income 15302 Representative total house income in the dwelling unit is $15302 +in.representative_income 15322 Representative total house income in the dwelling unit is $15322 +in.representative_income 15327 Representative total house income in the dwelling unit is $15327 +in.representative_income 15334 Representative total house income in the dwelling unit is $15334 +in.representative_income 15342 Representative total house income in the dwelling unit is $15342 +in.representative_income 15351 Representative total house income in the dwelling unit is $15351 +in.representative_income 15354 Representative total house income in the dwelling unit is $15354 +in.representative_income 15369 Representative total house income in the dwelling unit is $15369 +in.representative_income 15395 Representative total house income in the dwelling unit is $15395 +in.representative_income 15397 Representative total house income in the dwelling unit is $15397 +in.representative_income 15415 Representative total house income in the dwelling unit is $15415 +in.representative_income 15419 Representative total house income in the dwelling unit is $15419 +in.representative_income 15425 Representative total house income in the dwelling unit is $15425 +in.representative_income 15429 Representative total house income in the dwelling unit is $15429 +in.representative_income 15430 Representative total house income in the dwelling unit is $15430 +in.representative_income 15440 Representative total house income in the dwelling unit is $15440 +in.representative_income 15451 Representative total house income in the dwelling unit is $15451 +in.representative_income 15455 Representative total house income in the dwelling unit is $15455 +in.representative_income 15457 Representative total house income in the dwelling unit is $15457 +in.representative_income 15460 Representative total house income in the dwelling unit is $15460 +in.representative_income 15472 Representative total house income in the dwelling unit is $15472 +in.representative_income 15480 Representative total house income in the dwelling unit is $15480 +in.representative_income 15492 Representative total house income in the dwelling unit is $15492 +in.representative_income 15494 Representative total house income in the dwelling unit is $15494 +in.representative_income 15503 Representative total house income in the dwelling unit is $15503 +in.representative_income 15506 Representative total house income in the dwelling unit is $15506 +in.representative_income 15508 Representative total house income in the dwelling unit is $15508 +in.representative_income 15524 Representative total house income in the dwelling unit is $15524 +in.representative_income 15543 Representative total house income in the dwelling unit is $15543 +in.representative_income 15556 Representative total house income in the dwelling unit is $15556 +in.representative_income 15559 Representative total house income in the dwelling unit is $15559 +in.representative_income 15560 Representative total house income in the dwelling unit is $15560 +in.representative_income 15564 Representative total house income in the dwelling unit is $15564 +in.representative_income 15565 Representative total house income in the dwelling unit is $15565 +in.representative_income 15572 Representative total house income in the dwelling unit is $15572 +in.representative_income 15575 Representative total house income in the dwelling unit is $15575 +in.representative_income 15576 Representative total house income in the dwelling unit is $15576 +in.representative_income 15585 Representative total house income in the dwelling unit is $15585 +in.representative_income 15586 Representative total house income in the dwelling unit is $15586 +in.representative_income 15596 Representative total house income in the dwelling unit is $15596 +in.representative_income 15602 Representative total house income in the dwelling unit is $15602 +in.representative_income 15606 Representative total house income in the dwelling unit is $15606 +in.representative_income 15608 Representative total house income in the dwelling unit is $15608 +in.representative_income 15615 Representative total house income in the dwelling unit is $15615 +in.representative_income 15616 Representative total house income in the dwelling unit is $15616 +in.representative_income 15626 Representative total house income in the dwelling unit is $15626 +in.representative_income 15635 Representative total house income in the dwelling unit is $15635 +in.representative_income 15637 Representative total house income in the dwelling unit is $15637 +in.representative_income 15647 Representative total house income in the dwelling unit is $15647 +in.representative_income 15650 Representative total house income in the dwelling unit is $15650 +in.representative_income 15653 Representative total house income in the dwelling unit is $15653 +in.representative_income 15657 Representative total house income in the dwelling unit is $15657 +in.representative_income 15661 Representative total house income in the dwelling unit is $15661 +in.representative_income 15662 Representative total house income in the dwelling unit is $15662 +in.representative_income 15667 Representative total house income in the dwelling unit is $15667 +in.representative_income 15671 Representative total house income in the dwelling unit is $15671 +in.representative_income 15672 Representative total house income in the dwelling unit is $15672 +in.representative_income 15678 Representative total house income in the dwelling unit is $15678 +in.representative_income 15689 Representative total house income in the dwelling unit is $15689 +in.representative_income 15694 Representative total house income in the dwelling unit is $15694 +in.representative_income 15699 Representative total house income in the dwelling unit is $15699 +in.representative_income 15700 Representative total house income in the dwelling unit is $15700 +in.representative_income 15703 Representative total house income in the dwelling unit is $15703 +in.representative_income 15714 Representative total house income in the dwelling unit is $15714 +in.representative_income 15715 Representative total house income in the dwelling unit is $15715 +in.representative_income 15718 Representative total house income in the dwelling unit is $15718 +in.representative_income 15719 Representative total house income in the dwelling unit is $15719 +in.representative_income 15729 Representative total house income in the dwelling unit is $15729 +in.representative_income 15730 Representative total house income in the dwelling unit is $15730 +in.representative_income 15732 Representative total house income in the dwelling unit is $15732 +in.representative_income 15733 Representative total house income in the dwelling unit is $15733 +in.representative_income 15735 Representative total house income in the dwelling unit is $15735 +in.representative_income 15739 Representative total house income in the dwelling unit is $15739 +in.representative_income 15743 Representative total house income in the dwelling unit is $15743 +in.representative_income 15744 Representative total house income in the dwelling unit is $15744 +in.representative_income 15758 Representative total house income in the dwelling unit is $15758 +in.representative_income 15759 Representative total house income in the dwelling unit is $15759 +in.representative_income 15769 Representative total house income in the dwelling unit is $15769 +in.representative_income 15775 Representative total house income in the dwelling unit is $15775 +in.representative_income 15780 Representative total house income in the dwelling unit is $15780 +in.representative_income 15781 Representative total house income in the dwelling unit is $15781 +in.representative_income 15782 Representative total house income in the dwelling unit is $15782 +in.representative_income 15799 Representative total house income in the dwelling unit is $15799 +in.representative_income 15802 Representative total house income in the dwelling unit is $15802 +in.representative_income 15819 Representative total house income in the dwelling unit is $15819 +in.representative_income 15828 Representative total house income in the dwelling unit is $15828 +in.representative_income 15829 Representative total house income in the dwelling unit is $15829 +in.representative_income 15833 Representative total house income in the dwelling unit is $15833 +in.representative_income 15834 Representative total house income in the dwelling unit is $15834 +in.representative_income 15839 Representative total house income in the dwelling unit is $15839 +in.representative_income 15840 Representative total house income in the dwelling unit is $15840 +in.representative_income 15850 Representative total house income in the dwelling unit is $15850 +in.representative_income 15851 Representative total house income in the dwelling unit is $15851 +in.representative_income 15853 Representative total house income in the dwelling unit is $15853 +in.representative_income 15859 Representative total house income in the dwelling unit is $15859 +in.representative_income 15869 Representative total house income in the dwelling unit is $15869 +in.representative_income 15872 Representative total house income in the dwelling unit is $15872 +in.representative_income 15877 Representative total house income in the dwelling unit is $15877 +in.representative_income 15883 Representative total house income in the dwelling unit is $15883 +in.representative_income 15884 Representative total house income in the dwelling unit is $15884 +in.representative_income 15887 Representative total house income in the dwelling unit is $15887 +in.representative_income 15888 Representative total house income in the dwelling unit is $15888 +in.representative_income 15890 Representative total house income in the dwelling unit is $15890 +in.representative_income 15892 Representative total house income in the dwelling unit is $15892 +in.representative_income 15900 Representative total house income in the dwelling unit is $15900 +in.representative_income 15903 Representative total house income in the dwelling unit is $15903 +in.representative_income 15910 Representative total house income in the dwelling unit is $15910 +in.representative_income 15914 Representative total house income in the dwelling unit is $15914 +in.representative_income 15920 Representative total house income in the dwelling unit is $15920 +in.representative_income 15921 Representative total house income in the dwelling unit is $15921 +in.representative_income 15924 Representative total house income in the dwelling unit is $15924 +in.representative_income 15930 Representative total house income in the dwelling unit is $15930 +in.representative_income 15936 Representative total house income in the dwelling unit is $15936 +in.representative_income 15937 Representative total house income in the dwelling unit is $15937 +in.representative_income 15939 Representative total house income in the dwelling unit is $15939 +in.representative_income 15945 Representative total house income in the dwelling unit is $15945 +in.representative_income 15948 Representative total house income in the dwelling unit is $15948 +in.representative_income 15957 Representative total house income in the dwelling unit is $15957 +in.representative_income 15960 Representative total house income in the dwelling unit is $15960 +in.representative_income 15966 Representative total house income in the dwelling unit is $15966 +in.representative_income 15967 Representative total house income in the dwelling unit is $15967 +in.representative_income 15970 Representative total house income in the dwelling unit is $15970 +in.representative_income 15977 Representative total house income in the dwelling unit is $15977 +in.representative_income 15988 Representative total house income in the dwelling unit is $15988 +in.representative_income 15991 Representative total house income in the dwelling unit is $15991 +in.representative_income 15994 Representative total house income in the dwelling unit is $15994 +in.representative_income 16002 Representative total house income in the dwelling unit is $16002 +in.representative_income 16006 Representative total house income in the dwelling unit is $16006 +in.representative_income 16008 Representative total house income in the dwelling unit is $16008 +in.representative_income 16009 Representative total house income in the dwelling unit is $16009 +in.representative_income 16011 Representative total house income in the dwelling unit is $16011 +in.representative_income 16012 Representative total house income in the dwelling unit is $16012 +in.representative_income 16021 Representative total house income in the dwelling unit is $16021 +in.representative_income 16024 Representative total house income in the dwelling unit is $16024 +in.representative_income 16027 Representative total house income in the dwelling unit is $16027 +in.representative_income 16030 Representative total house income in the dwelling unit is $16030 +in.representative_income 16031 Representative total house income in the dwelling unit is $16031 +in.representative_income 16034 Representative total house income in the dwelling unit is $16034 +in.representative_income 16038 Representative total house income in the dwelling unit is $16038 +in.representative_income 16039 Representative total house income in the dwelling unit is $16039 +in.representative_income 16040 Representative total house income in the dwelling unit is $16040 +in.representative_income 16045 Representative total house income in the dwelling unit is $16045 +in.representative_income 16048 Representative total house income in the dwelling unit is $16048 +in.representative_income 16051 Representative total house income in the dwelling unit is $16051 +in.representative_income 16056 Representative total house income in the dwelling unit is $16056 +in.representative_income 16061 Representative total house income in the dwelling unit is $16061 +in.representative_income 16066 Representative total house income in the dwelling unit is $16066 +in.representative_income 16070 Representative total house income in the dwelling unit is $16070 +in.representative_income 16072 Representative total house income in the dwelling unit is $16072 +in.representative_income 16091 Representative total house income in the dwelling unit is $16091 +in.representative_income 16093 Representative total house income in the dwelling unit is $16093 +in.representative_income 16099 Representative total house income in the dwelling unit is $16099 +in.representative_income 16101 Representative total house income in the dwelling unit is $16101 +in.representative_income 16103 Representative total house income in the dwelling unit is $16103 +in.representative_income 16106 Representative total house income in the dwelling unit is $16106 +in.representative_income 16111 Representative total house income in the dwelling unit is $16111 +in.representative_income 16112 Representative total house income in the dwelling unit is $16112 +in.representative_income 16118 Representative total house income in the dwelling unit is $16118 +in.representative_income 16119 Representative total house income in the dwelling unit is $16119 +in.representative_income 16123 Representative total house income in the dwelling unit is $16123 +in.representative_income 16131 Representative total house income in the dwelling unit is $16131 +in.representative_income 16132 Representative total house income in the dwelling unit is $16132 +in.representative_income 16133 Representative total house income in the dwelling unit is $16133 +in.representative_income 16136 Representative total house income in the dwelling unit is $16136 +in.representative_income 16143 Representative total house income in the dwelling unit is $16143 +in.representative_income 16145 Representative total house income in the dwelling unit is $16145 +in.representative_income 16149 Representative total house income in the dwelling unit is $16149 +in.representative_income 16152 Representative total house income in the dwelling unit is $16152 +in.representative_income 16153 Representative total house income in the dwelling unit is $16153 +in.representative_income 16154 Representative total house income in the dwelling unit is $16154 +in.representative_income 16162 Representative total house income in the dwelling unit is $16162 +in.representative_income 16163 Representative total house income in the dwelling unit is $16163 +in.representative_income 16172 Representative total house income in the dwelling unit is $16172 +in.representative_income 16173 Representative total house income in the dwelling unit is $16173 +in.representative_income 16178 Representative total house income in the dwelling unit is $16178 +in.representative_income 16182 Representative total house income in the dwelling unit is $16182 +in.representative_income 16183 Representative total house income in the dwelling unit is $16183 +in.representative_income 16185 Representative total house income in the dwelling unit is $16185 +in.representative_income 16188 Representative total house income in the dwelling unit is $16188 +in.representative_income 16193 Representative total house income in the dwelling unit is $16193 +in.representative_income 16197 Representative total house income in the dwelling unit is $16197 +in.representative_income 16199 Representative total house income in the dwelling unit is $16199 +in.representative_income 16200 Representative total house income in the dwelling unit is $16200 +in.representative_income 16204 Representative total house income in the dwelling unit is $16204 +in.representative_income 16207 Representative total house income in the dwelling unit is $16207 +in.representative_income 16208 Representative total house income in the dwelling unit is $16208 +in.representative_income 16209 Representative total house income in the dwelling unit is $16209 +in.representative_income 16213 Representative total house income in the dwelling unit is $16213 +in.representative_income 16215 Representative total house income in the dwelling unit is $16215 +in.representative_income 16217 Representative total house income in the dwelling unit is $16217 +in.representative_income 16219 Representative total house income in the dwelling unit is $16219 +in.representative_income 16220 Representative total house income in the dwelling unit is $16220 +in.representative_income 16222 Representative total house income in the dwelling unit is $16222 +in.representative_income 16225 Representative total house income in the dwelling unit is $16225 +in.representative_income 16228 Representative total house income in the dwelling unit is $16228 +in.representative_income 16231 Representative total house income in the dwelling unit is $16231 +in.representative_income 16233 Representative total house income in the dwelling unit is $16233 +in.representative_income 16235 Representative total house income in the dwelling unit is $16235 +in.representative_income 16240 Representative total house income in the dwelling unit is $16240 +in.representative_income 16241 Representative total house income in the dwelling unit is $16241 +in.representative_income 16251 Representative total house income in the dwelling unit is $16251 +in.representative_income 16252 Representative total house income in the dwelling unit is $16252 +in.representative_income 16261 Representative total house income in the dwelling unit is $16261 +in.representative_income 16262 Representative total house income in the dwelling unit is $16262 +in.representative_income 16263 Representative total house income in the dwelling unit is $16263 +in.representative_income 16269 Representative total house income in the dwelling unit is $16269 +in.representative_income 16272 Representative total house income in the dwelling unit is $16272 +in.representative_income 16273 Representative total house income in the dwelling unit is $16273 +in.representative_income 16274 Representative total house income in the dwelling unit is $16274 +in.representative_income 16276 Representative total house income in the dwelling unit is $16276 +in.representative_income 16282 Representative total house income in the dwelling unit is $16282 +in.representative_income 16283 Representative total house income in the dwelling unit is $16283 +in.representative_income 16284 Representative total house income in the dwelling unit is $16284 +in.representative_income 16287 Representative total house income in the dwelling unit is $16287 +in.representative_income 16293 Representative total house income in the dwelling unit is $16293 +in.representative_income 16294 Representative total house income in the dwelling unit is $16294 +in.representative_income 16297 Representative total house income in the dwelling unit is $16297 +in.representative_income 16302 Representative total house income in the dwelling unit is $16302 +in.representative_income 16305 Representative total house income in the dwelling unit is $16305 +in.representative_income 16306 Representative total house income in the dwelling unit is $16306 +in.representative_income 16307 Representative total house income in the dwelling unit is $16307 +in.representative_income 16311 Representative total house income in the dwelling unit is $16311 +in.representative_income 16315 Representative total house income in the dwelling unit is $16315 +in.representative_income 16317 Representative total house income in the dwelling unit is $16317 +in.representative_income 16318 Representative total house income in the dwelling unit is $16318 +in.representative_income 16326 Representative total house income in the dwelling unit is $16326 +in.representative_income 16330 Representative total house income in the dwelling unit is $16330 +in.representative_income 16331 Representative total house income in the dwelling unit is $16331 +in.representative_income 16332 Representative total house income in the dwelling unit is $16332 +in.representative_income 16336 Representative total house income in the dwelling unit is $16336 +in.representative_income 16337 Representative total house income in the dwelling unit is $16337 +in.representative_income 16338 Representative total house income in the dwelling unit is $16338 +in.representative_income 16344 Representative total house income in the dwelling unit is $16344 +in.representative_income 16347 Representative total house income in the dwelling unit is $16347 +in.representative_income 16349 Representative total house income in the dwelling unit is $16349 +in.representative_income 16355 Representative total house income in the dwelling unit is $16355 +in.representative_income 16357 Representative total house income in the dwelling unit is $16357 +in.representative_income 16359 Representative total house income in the dwelling unit is $16359 +in.representative_income 16364 Representative total house income in the dwelling unit is $16364 +in.representative_income 16367 Representative total house income in the dwelling unit is $16367 +in.representative_income 16370 Representative total house income in the dwelling unit is $16370 +in.representative_income 16385 Representative total house income in the dwelling unit is $16385 +in.representative_income 16388 Representative total house income in the dwelling unit is $16388 +in.representative_income 16400 Representative total house income in the dwelling unit is $16400 +in.representative_income 16401 Representative total house income in the dwelling unit is $16401 +in.representative_income 16402 Representative total house income in the dwelling unit is $16402 +in.representative_income 16410 Representative total house income in the dwelling unit is $16410 +in.representative_income 16413 Representative total house income in the dwelling unit is $16413 +in.representative_income 16415 Representative total house income in the dwelling unit is $16415 +in.representative_income 16420 Representative total house income in the dwelling unit is $16420 +in.representative_income 16423 Representative total house income in the dwelling unit is $16423 +in.representative_income 16424 Representative total house income in the dwelling unit is $16424 +in.representative_income 16425 Representative total house income in the dwelling unit is $16425 +in.representative_income 16426 Representative total house income in the dwelling unit is $16426 +in.representative_income 16427 Representative total house income in the dwelling unit is $16427 +in.representative_income 16435 Representative total house income in the dwelling unit is $16435 +in.representative_income 16441 Representative total house income in the dwelling unit is $16441 +in.representative_income 16442 Representative total house income in the dwelling unit is $16442 +in.representative_income 16445 Representative total house income in the dwelling unit is $16445 +in.representative_income 16452 Representative total house income in the dwelling unit is $16452 +in.representative_income 16455 Representative total house income in the dwelling unit is $16455 +in.representative_income 16456 Representative total house income in the dwelling unit is $16456 +in.representative_income 16462 Representative total house income in the dwelling unit is $16462 +in.representative_income 16463 Representative total house income in the dwelling unit is $16463 +in.representative_income 16465 Representative total house income in the dwelling unit is $16465 +in.representative_income 16467 Representative total house income in the dwelling unit is $16467 +in.representative_income 16472 Representative total house income in the dwelling unit is $16472 +in.representative_income 16473 Representative total house income in the dwelling unit is $16473 +in.representative_income 16477 Representative total house income in the dwelling unit is $16477 +in.representative_income 16483 Representative total house income in the dwelling unit is $16483 +in.representative_income 16485 Representative total house income in the dwelling unit is $16485 +in.representative_income 16486 Representative total house income in the dwelling unit is $16486 +in.representative_income 16487 Representative total house income in the dwelling unit is $16487 +in.representative_income 16488 Representative total house income in the dwelling unit is $16488 +in.representative_income 16493 Representative total house income in the dwelling unit is $16493 +in.representative_income 16495 Representative total house income in the dwelling unit is $16495 +in.representative_income 16496 Representative total house income in the dwelling unit is $16496 +in.representative_income 16497 Representative total house income in the dwelling unit is $16497 +in.representative_income 16503 Representative total house income in the dwelling unit is $16503 +in.representative_income 16506 Representative total house income in the dwelling unit is $16506 +in.representative_income 16509 Representative total house income in the dwelling unit is $16509 +in.representative_income 16513 Representative total house income in the dwelling unit is $16513 +in.representative_income 16520 Representative total house income in the dwelling unit is $16520 +in.representative_income 16521 Representative total house income in the dwelling unit is $16521 +in.representative_income 16526 Representative total house income in the dwelling unit is $16526 +in.representative_income 16531 Representative total house income in the dwelling unit is $16531 +in.representative_income 16532 Representative total house income in the dwelling unit is $16532 +in.representative_income 16533 Representative total house income in the dwelling unit is $16533 +in.representative_income 16536 Representative total house income in the dwelling unit is $16536 +in.representative_income 16537 Representative total house income in the dwelling unit is $16537 +in.representative_income 16542 Representative total house income in the dwelling unit is $16542 +in.representative_income 16545 Representative total house income in the dwelling unit is $16545 +in.representative_income 16547 Representative total house income in the dwelling unit is $16547 +in.representative_income 16553 Representative total house income in the dwelling unit is $16553 +in.representative_income 16557 Representative total house income in the dwelling unit is $16557 +in.representative_income 16566 Representative total house income in the dwelling unit is $16566 +in.representative_income 16568 Representative total house income in the dwelling unit is $16568 +in.representative_income 16571 Representative total house income in the dwelling unit is $16571 +in.representative_income 16584 Representative total house income in the dwelling unit is $16584 +in.representative_income 16585 Representative total house income in the dwelling unit is $16585 +in.representative_income 16589 Representative total house income in the dwelling unit is $16589 +in.representative_income 16596 Representative total house income in the dwelling unit is $16596 +in.representative_income 16597 Representative total house income in the dwelling unit is $16597 +in.representative_income 16600 Representative total house income in the dwelling unit is $16600 +in.representative_income 16601 Representative total house income in the dwelling unit is $16601 +in.representative_income 16603 Representative total house income in the dwelling unit is $16603 +in.representative_income 16605 Representative total house income in the dwelling unit is $16605 +in.representative_income 16607 Representative total house income in the dwelling unit is $16607 +in.representative_income 16610 Representative total house income in the dwelling unit is $16610 +in.representative_income 16612 Representative total house income in the dwelling unit is $16612 +in.representative_income 16617 Representative total house income in the dwelling unit is $16617 +in.representative_income 16625 Representative total house income in the dwelling unit is $16625 +in.representative_income 16627 Representative total house income in the dwelling unit is $16627 +in.representative_income 16637 Representative total house income in the dwelling unit is $16637 +in.representative_income 16638 Representative total house income in the dwelling unit is $16638 +in.representative_income 16639 Representative total house income in the dwelling unit is $16639 +in.representative_income 16640 Representative total house income in the dwelling unit is $16640 +in.representative_income 16642 Representative total house income in the dwelling unit is $16642 +in.representative_income 16644 Representative total house income in the dwelling unit is $16644 +in.representative_income 16647 Representative total house income in the dwelling unit is $16647 +in.representative_income 16650 Representative total house income in the dwelling unit is $16650 +in.representative_income 16654 Representative total house income in the dwelling unit is $16654 +in.representative_income 16656 Representative total house income in the dwelling unit is $16656 +in.representative_income 16657 Representative total house income in the dwelling unit is $16657 +in.representative_income 16662 Representative total house income in the dwelling unit is $16662 +in.representative_income 16666 Representative total house income in the dwelling unit is $16666 +in.representative_income 16667 Representative total house income in the dwelling unit is $16667 +in.representative_income 16668 Representative total house income in the dwelling unit is $16668 +in.representative_income 16670 Representative total house income in the dwelling unit is $16670 +in.representative_income 16671 Representative total house income in the dwelling unit is $16671 +in.representative_income 16672 Representative total house income in the dwelling unit is $16672 +in.representative_income 16677 Representative total house income in the dwelling unit is $16677 +in.representative_income 16682 Representative total house income in the dwelling unit is $16682 +in.representative_income 16684 Representative total house income in the dwelling unit is $16684 +in.representative_income 16685 Representative total house income in the dwelling unit is $16685 +in.representative_income 16692 Representative total house income in the dwelling unit is $16692 +in.representative_income 16693 Representative total house income in the dwelling unit is $16693 +in.representative_income 16704 Representative total house income in the dwelling unit is $16704 +in.representative_income 16705 Representative total house income in the dwelling unit is $16705 +in.representative_income 16708 Representative total house income in the dwelling unit is $16708 +in.representative_income 16710 Representative total house income in the dwelling unit is $16710 +in.representative_income 16713 Representative total house income in the dwelling unit is $16713 +in.representative_income 16716 Representative total house income in the dwelling unit is $16716 +in.representative_income 16724 Representative total house income in the dwelling unit is $16724 +in.representative_income 16726 Representative total house income in the dwelling unit is $16726 +in.representative_income 16735 Representative total house income in the dwelling unit is $16735 +in.representative_income 16736 Representative total house income in the dwelling unit is $16736 +in.representative_income 16737 Representative total house income in the dwelling unit is $16737 +in.representative_income 16738 Representative total house income in the dwelling unit is $16738 +in.representative_income 16746 Representative total house income in the dwelling unit is $16746 +in.representative_income 16747 Representative total house income in the dwelling unit is $16747 +in.representative_income 16748 Representative total house income in the dwelling unit is $16748 +in.representative_income 16751 Representative total house income in the dwelling unit is $16751 +in.representative_income 16756 Representative total house income in the dwelling unit is $16756 +in.representative_income 16757 Representative total house income in the dwelling unit is $16757 +in.representative_income 16758 Representative total house income in the dwelling unit is $16758 +in.representative_income 16767 Representative total house income in the dwelling unit is $16767 +in.representative_income 16768 Representative total house income in the dwelling unit is $16768 +in.representative_income 16769 Representative total house income in the dwelling unit is $16769 +in.representative_income 16772 Representative total house income in the dwelling unit is $16772 +in.representative_income 16778 Representative total house income in the dwelling unit is $16778 +in.representative_income 16779 Representative total house income in the dwelling unit is $16779 +in.representative_income 16780 Representative total house income in the dwelling unit is $16780 +in.representative_income 16790 Representative total house income in the dwelling unit is $16790 +in.representative_income 16792 Representative total house income in the dwelling unit is $16792 +in.representative_income 16799 Representative total house income in the dwelling unit is $16799 +in.representative_income 16800 Representative total house income in the dwelling unit is $16800 +in.representative_income 16801 Representative total house income in the dwelling unit is $16801 +in.representative_income 16810 Representative total house income in the dwelling unit is $16810 +in.representative_income 16812 Representative total house income in the dwelling unit is $16812 +in.representative_income 16819 Representative total house income in the dwelling unit is $16819 +in.representative_income 16821 Representative total house income in the dwelling unit is $16821 +in.representative_income 16823 Representative total house income in the dwelling unit is $16823 +in.representative_income 16831 Representative total house income in the dwelling unit is $16831 +in.representative_income 16839 Representative total house income in the dwelling unit is $16839 +in.representative_income 16843 Representative total house income in the dwelling unit is $16843 +in.representative_income 16844 Representative total house income in the dwelling unit is $16844 +in.representative_income 16853 Representative total house income in the dwelling unit is $16853 +in.representative_income 16854 Representative total house income in the dwelling unit is $16854 +in.representative_income 16855 Representative total house income in the dwelling unit is $16855 +in.representative_income 16859 Representative total house income in the dwelling unit is $16859 +in.representative_income 16862 Representative total house income in the dwelling unit is $16862 +in.representative_income 16864 Representative total house income in the dwelling unit is $16864 +in.representative_income 16869 Representative total house income in the dwelling unit is $16869 +in.representative_income 16872 Representative total house income in the dwelling unit is $16872 +in.representative_income 16873 Representative total house income in the dwelling unit is $16873 +in.representative_income 16874 Representative total house income in the dwelling unit is $16874 +in.representative_income 16875 Representative total house income in the dwelling unit is $16875 +in.representative_income 16877 Representative total house income in the dwelling unit is $16877 +in.representative_income 16880 Representative total house income in the dwelling unit is $16880 +in.representative_income 16884 Representative total house income in the dwelling unit is $16884 +in.representative_income 16890 Representative total house income in the dwelling unit is $16890 +in.representative_income 16895 Representative total house income in the dwelling unit is $16895 +in.representative_income 16898 Representative total house income in the dwelling unit is $16898 +in.representative_income 16905 Representative total house income in the dwelling unit is $16905 +in.representative_income 16916 Representative total house income in the dwelling unit is $16916 +in.representative_income 16919 Representative total house income in the dwelling unit is $16919 +in.representative_income 16920 Representative total house income in the dwelling unit is $16920 +in.representative_income 16936 Representative total house income in the dwelling unit is $16936 +in.representative_income 16937 Representative total house income in the dwelling unit is $16937 +in.representative_income 16941 Representative total house income in the dwelling unit is $16941 +in.representative_income 16950 Representative total house income in the dwelling unit is $16950 +in.representative_income 16952 Representative total house income in the dwelling unit is $16952 +in.representative_income 16961 Representative total house income in the dwelling unit is $16961 +in.representative_income 16962 Representative total house income in the dwelling unit is $16962 +in.representative_income 16963 Representative total house income in the dwelling unit is $16963 +in.representative_income 16967 Representative total house income in the dwelling unit is $16967 +in.representative_income 16970 Representative total house income in the dwelling unit is $16970 +in.representative_income 16971 Representative total house income in the dwelling unit is $16971 +in.representative_income 16977 Representative total house income in the dwelling unit is $16977 +in.representative_income 16978 Representative total house income in the dwelling unit is $16978 +in.representative_income 16979 Representative total house income in the dwelling unit is $16979 +in.representative_income 16985 Representative total house income in the dwelling unit is $16985 +in.representative_income 16996 Representative total house income in the dwelling unit is $16996 +in.representative_income 17010 Representative total house income in the dwelling unit is $17010 +in.representative_income 17011 Representative total house income in the dwelling unit is $17011 +in.representative_income 17014 Representative total house income in the dwelling unit is $17014 +in.representative_income 17015 Representative total house income in the dwelling unit is $17015 +in.representative_income 17017 Representative total house income in the dwelling unit is $17017 +in.representative_income 17019 Representative total house income in the dwelling unit is $17019 +in.representative_income 17021 Representative total house income in the dwelling unit is $17021 +in.representative_income 17023 Representative total house income in the dwelling unit is $17023 +in.representative_income 17024 Representative total house income in the dwelling unit is $17024 +in.representative_income 17028 Representative total house income in the dwelling unit is $17028 +in.representative_income 17031 Representative total house income in the dwelling unit is $17031 +in.representative_income 17035 Representative total house income in the dwelling unit is $17035 +in.representative_income 17039 Representative total house income in the dwelling unit is $17039 +in.representative_income 17040 Representative total house income in the dwelling unit is $17040 +in.representative_income 17041 Representative total house income in the dwelling unit is $17041 +in.representative_income 17042 Representative total house income in the dwelling unit is $17042 +in.representative_income 17046 Representative total house income in the dwelling unit is $17046 +in.representative_income 17050 Representative total house income in the dwelling unit is $17050 +in.representative_income 17051 Representative total house income in the dwelling unit is $17051 +in.representative_income 17057 Representative total house income in the dwelling unit is $17057 +in.representative_income 17064 Representative total house income in the dwelling unit is $17064 +in.representative_income 17068 Representative total house income in the dwelling unit is $17068 +in.representative_income 17071 Representative total house income in the dwelling unit is $17071 +in.representative_income 17072 Representative total house income in the dwelling unit is $17072 +in.representative_income 17074 Representative total house income in the dwelling unit is $17074 +in.representative_income 17083 Representative total house income in the dwelling unit is $17083 +in.representative_income 17085 Representative total house income in the dwelling unit is $17085 +in.representative_income 17090 Representative total house income in the dwelling unit is $17090 +in.representative_income 17091 Representative total house income in the dwelling unit is $17091 +in.representative_income 17092 Representative total house income in the dwelling unit is $17092 +in.representative_income 17093 Representative total house income in the dwelling unit is $17093 +in.representative_income 17095 Representative total house income in the dwelling unit is $17095 +in.representative_income 17102 Representative total house income in the dwelling unit is $17102 +in.representative_income 17106 Representative total house income in the dwelling unit is $17106 +in.representative_income 17112 Representative total house income in the dwelling unit is $17112 +in.representative_income 17122 Representative total house income in the dwelling unit is $17122 +in.representative_income 17126 Representative total house income in the dwelling unit is $17126 +in.representative_income 17132 Representative total house income in the dwelling unit is $17132 +in.representative_income 17137 Representative total house income in the dwelling unit is $17137 +in.representative_income 17138 Representative total house income in the dwelling unit is $17138 +in.representative_income 17143 Representative total house income in the dwelling unit is $17143 +in.representative_income 17151 Representative total house income in the dwelling unit is $17151 +in.representative_income 17152 Representative total house income in the dwelling unit is $17152 +in.representative_income 17155 Representative total house income in the dwelling unit is $17155 +in.representative_income 17158 Representative total house income in the dwelling unit is $17158 +in.representative_income 17172 Representative total house income in the dwelling unit is $17172 +in.representative_income 17174 Representative total house income in the dwelling unit is $17174 +in.representative_income 17175 Representative total house income in the dwelling unit is $17175 +in.representative_income 17180 Representative total house income in the dwelling unit is $17180 +in.representative_income 17181 Representative total house income in the dwelling unit is $17181 +in.representative_income 17184 Representative total house income in the dwelling unit is $17184 +in.representative_income 17190 Representative total house income in the dwelling unit is $17190 +in.representative_income 17194 Representative total house income in the dwelling unit is $17194 +in.representative_income 17197 Representative total house income in the dwelling unit is $17197 +in.representative_income 17200 Representative total house income in the dwelling unit is $17200 +in.representative_income 17203 Representative total house income in the dwelling unit is $17203 +in.representative_income 17207 Representative total house income in the dwelling unit is $17207 +in.representative_income 17208 Representative total house income in the dwelling unit is $17208 +in.representative_income 17213 Representative total house income in the dwelling unit is $17213 +in.representative_income 17222 Representative total house income in the dwelling unit is $17222 +in.representative_income 17223 Representative total house income in the dwelling unit is $17223 +in.representative_income 17226 Representative total house income in the dwelling unit is $17226 +in.representative_income 17227 Representative total house income in the dwelling unit is $17227 +in.representative_income 17229 Representative total house income in the dwelling unit is $17229 +in.representative_income 17234 Representative total house income in the dwelling unit is $17234 +in.representative_income 17243 Representative total house income in the dwelling unit is $17243 +in.representative_income 17245 Representative total house income in the dwelling unit is $17245 +in.representative_income 17248 Representative total house income in the dwelling unit is $17248 +in.representative_income 17250 Representative total house income in the dwelling unit is $17250 +in.representative_income 17254 Representative total house income in the dwelling unit is $17254 +in.representative_income 17256 Representative total house income in the dwelling unit is $17256 +in.representative_income 17261 Representative total house income in the dwelling unit is $17261 +in.representative_income 17263 Representative total house income in the dwelling unit is $17263 +in.representative_income 17264 Representative total house income in the dwelling unit is $17264 +in.representative_income 17266 Representative total house income in the dwelling unit is $17266 +in.representative_income 17273 Representative total house income in the dwelling unit is $17273 +in.representative_income 17276 Representative total house income in the dwelling unit is $17276 +in.representative_income 17278 Representative total house income in the dwelling unit is $17278 +in.representative_income 17281 Representative total house income in the dwelling unit is $17281 +in.representative_income 17282 Representative total house income in the dwelling unit is $17282 +in.representative_income 17285 Representative total house income in the dwelling unit is $17285 +in.representative_income 17288 Representative total house income in the dwelling unit is $17288 +in.representative_income 17289 Representative total house income in the dwelling unit is $17289 +in.representative_income 17292 Representative total house income in the dwelling unit is $17292 +in.representative_income 17295 Representative total house income in the dwelling unit is $17295 +in.representative_income 17298 Representative total house income in the dwelling unit is $17298 +in.representative_income 17307 Representative total house income in the dwelling unit is $17307 +in.representative_income 17308 Representative total house income in the dwelling unit is $17308 +in.representative_income 17309 Representative total house income in the dwelling unit is $17309 +in.representative_income 17318 Representative total house income in the dwelling unit is $17318 +in.representative_income 17328 Representative total house income in the dwelling unit is $17328 +in.representative_income 17334 Representative total house income in the dwelling unit is $17334 +in.representative_income 17342 Representative total house income in the dwelling unit is $17342 +in.representative_income 17344 Representative total house income in the dwelling unit is $17344 +in.representative_income 17347 Representative total house income in the dwelling unit is $17347 +in.representative_income 17348 Representative total house income in the dwelling unit is $17348 +in.representative_income 17354 Representative total house income in the dwelling unit is $17354 +in.representative_income 17359 Representative total house income in the dwelling unit is $17359 +in.representative_income 17364 Representative total house income in the dwelling unit is $17364 +in.representative_income 17367 Representative total house income in the dwelling unit is $17367 +in.representative_income 17369 Representative total house income in the dwelling unit is $17369 +in.representative_income 17374 Representative total house income in the dwelling unit is $17374 +in.representative_income 17379 Representative total house income in the dwelling unit is $17379 +in.representative_income 17390 Representative total house income in the dwelling unit is $17390 +in.representative_income 17394 Representative total house income in the dwelling unit is $17394 +in.representative_income 17395 Representative total house income in the dwelling unit is $17395 +in.representative_income 17396 Representative total house income in the dwelling unit is $17396 +in.representative_income 17401 Representative total house income in the dwelling unit is $17401 +in.representative_income 17410 Representative total house income in the dwelling unit is $17410 +in.representative_income 17411 Representative total house income in the dwelling unit is $17411 +in.representative_income 17412 Representative total house income in the dwelling unit is $17412 +in.representative_income 17415 Representative total house income in the dwelling unit is $17415 +in.representative_income 17417 Representative total house income in the dwelling unit is $17417 +in.representative_income 17431 Representative total house income in the dwelling unit is $17431 +in.representative_income 17435 Representative total house income in the dwelling unit is $17435 +in.representative_income 17441 Representative total house income in the dwelling unit is $17441 +in.representative_income 17443 Representative total house income in the dwelling unit is $17443 +in.representative_income 17445 Representative total house income in the dwelling unit is $17445 +in.representative_income 17446 Representative total house income in the dwelling unit is $17446 +in.representative_income 17450 Representative total house income in the dwelling unit is $17450 +in.representative_income 17453 Representative total house income in the dwelling unit is $17453 +in.representative_income 17454 Representative total house income in the dwelling unit is $17454 +in.representative_income 17455 Representative total house income in the dwelling unit is $17455 +in.representative_income 17465 Representative total house income in the dwelling unit is $17465 +in.representative_income 17474 Representative total house income in the dwelling unit is $17474 +in.representative_income 17476 Representative total house income in the dwelling unit is $17476 +in.representative_income 17487 Representative total house income in the dwelling unit is $17487 +in.representative_income 17493 Representative total house income in the dwelling unit is $17493 +in.representative_income 17496 Representative total house income in the dwelling unit is $17496 +in.representative_income 17497 Representative total house income in the dwelling unit is $17497 +in.representative_income 17500 Representative total house income in the dwelling unit is $17500 +in.representative_income 17504 Representative total house income in the dwelling unit is $17504 +in.representative_income 17507 Representative total house income in the dwelling unit is $17507 +in.representative_income 17513 Representative total house income in the dwelling unit is $17513 +in.representative_income 17517 Representative total house income in the dwelling unit is $17517 +in.representative_income 17519 Representative total house income in the dwelling unit is $17519 +in.representative_income 17525 Representative total house income in the dwelling unit is $17525 +in.representative_income 17535 Representative total house income in the dwelling unit is $17535 +in.representative_income 17540 Representative total house income in the dwelling unit is $17540 +in.representative_income 17554 Representative total house income in the dwelling unit is $17554 +in.representative_income 17561 Representative total house income in the dwelling unit is $17561 +in.representative_income 17575 Representative total house income in the dwelling unit is $17575 +in.representative_income 17577 Representative total house income in the dwelling unit is $17577 +in.representative_income 17581 Representative total house income in the dwelling unit is $17581 +in.representative_income 17583 Representative total house income in the dwelling unit is $17583 +in.representative_income 17586 Representative total house income in the dwelling unit is $17586 +in.representative_income 17587 Representative total house income in the dwelling unit is $17587 +in.representative_income 17596 Representative total house income in the dwelling unit is $17596 +in.representative_income 17597 Representative total house income in the dwelling unit is $17597 +in.representative_income 17605 Representative total house income in the dwelling unit is $17605 +in.representative_income 17606 Representative total house income in the dwelling unit is $17606 +in.representative_income 17609 Representative total house income in the dwelling unit is $17609 +in.representative_income 17611 Representative total house income in the dwelling unit is $17611 +in.representative_income 17612 Representative total house income in the dwelling unit is $17612 +in.representative_income 17627 Representative total house income in the dwelling unit is $17627 +in.representative_income 17638 Representative total house income in the dwelling unit is $17638 +in.representative_income 17644 Representative total house income in the dwelling unit is $17644 +in.representative_income 17648 Representative total house income in the dwelling unit is $17648 +in.representative_income 17657 Representative total house income in the dwelling unit is $17657 +in.representative_income 17662 Representative total house income in the dwelling unit is $17662 +in.representative_income 17664 Representative total house income in the dwelling unit is $17664 +in.representative_income 17665 Representative total house income in the dwelling unit is $17665 +in.representative_income 17669 Representative total house income in the dwelling unit is $17669 +in.representative_income 17675 Representative total house income in the dwelling unit is $17675 +in.representative_income 17678 Representative total house income in the dwelling unit is $17678 +in.representative_income 17680 Representative total house income in the dwelling unit is $17680 +in.representative_income 17686 Representative total house income in the dwelling unit is $17686 +in.representative_income 17690 Representative total house income in the dwelling unit is $17690 +in.representative_income 17698 Representative total house income in the dwelling unit is $17698 +in.representative_income 17707 Representative total house income in the dwelling unit is $17707 +in.representative_income 17712 Representative total house income in the dwelling unit is $17712 +in.representative_income 17717 Representative total house income in the dwelling unit is $17717 +in.representative_income 17719 Representative total house income in the dwelling unit is $17719 +in.representative_income 17720 Representative total house income in the dwelling unit is $17720 +in.representative_income 17730 Representative total house income in the dwelling unit is $17730 +in.representative_income 17734 Representative total house income in the dwelling unit is $17734 +in.representative_income 17741 Representative total house income in the dwelling unit is $17741 +in.representative_income 17744 Representative total house income in the dwelling unit is $17744 +in.representative_income 17758 Representative total house income in the dwelling unit is $17758 +in.representative_income 17769 Representative total house income in the dwelling unit is $17769 +in.representative_income 17770 Representative total house income in the dwelling unit is $17770 +in.representative_income 17772 Representative total house income in the dwelling unit is $17772 +in.representative_income 17778 Representative total house income in the dwelling unit is $17778 +in.representative_income 17779 Representative total house income in the dwelling unit is $17779 +in.representative_income 17782 Representative total house income in the dwelling unit is $17782 +in.representative_income 17793 Representative total house income in the dwelling unit is $17793 +in.representative_income 17799 Representative total house income in the dwelling unit is $17799 +in.representative_income 17803 Representative total house income in the dwelling unit is $17803 +in.representative_income 17812 Representative total house income in the dwelling unit is $17812 +in.representative_income 17819 Representative total house income in the dwelling unit is $17819 +in.representative_income 17823 Representative total house income in the dwelling unit is $17823 +in.representative_income 17824 Representative total house income in the dwelling unit is $17824 +in.representative_income 17828 Representative total house income in the dwelling unit is $17828 +in.representative_income 17830 Representative total house income in the dwelling unit is $17830 +in.representative_income 17836 Representative total house income in the dwelling unit is $17836 +in.representative_income 17839 Representative total house income in the dwelling unit is $17839 +in.representative_income 17844 Representative total house income in the dwelling unit is $17844 +in.representative_income 17849 Representative total house income in the dwelling unit is $17849 +in.representative_income 17863 Representative total house income in the dwelling unit is $17863 +in.representative_income 17873 Representative total house income in the dwelling unit is $17873 +in.representative_income 17876 Representative total house income in the dwelling unit is $17876 +in.representative_income 17880 Representative total house income in the dwelling unit is $17880 +in.representative_income 17882 Representative total house income in the dwelling unit is $17882 +in.representative_income 17884 Representative total house income in the dwelling unit is $17884 +in.representative_income 17886 Representative total house income in the dwelling unit is $17886 +in.representative_income 17888 Representative total house income in the dwelling unit is $17888 +in.representative_income 17895 Representative total house income in the dwelling unit is $17895 +in.representative_income 17900 Representative total house income in the dwelling unit is $17900 +in.representative_income 17905 Representative total house income in the dwelling unit is $17905 +in.representative_income 17907 Representative total house income in the dwelling unit is $17907 +in.representative_income 17910 Representative total house income in the dwelling unit is $17910 +in.representative_income 17917 Representative total house income in the dwelling unit is $17917 +in.representative_income 17920 Representative total house income in the dwelling unit is $17920 +in.representative_income 17925 Representative total house income in the dwelling unit is $17925 +in.representative_income 17927 Representative total house income in the dwelling unit is $17927 +in.representative_income 17928 Representative total house income in the dwelling unit is $17928 +in.representative_income 17930 Representative total house income in the dwelling unit is $17930 +in.representative_income 17931 Representative total house income in the dwelling unit is $17931 +in.representative_income 17936 Representative total house income in the dwelling unit is $17936 +in.representative_income 17943 Representative total house income in the dwelling unit is $17943 +in.representative_income 17947 Representative total house income in the dwelling unit is $17947 +in.representative_income 17948 Representative total house income in the dwelling unit is $17948 +in.representative_income 17960 Representative total house income in the dwelling unit is $17960 +in.representative_income 17966 Representative total house income in the dwelling unit is $17966 +in.representative_income 17968 Representative total house income in the dwelling unit is $17968 +in.representative_income 17969 Representative total house income in the dwelling unit is $17969 +in.representative_income 17971 Representative total house income in the dwelling unit is $17971 +in.representative_income 17980 Representative total house income in the dwelling unit is $17980 +in.representative_income 17981 Representative total house income in the dwelling unit is $17981 +in.representative_income 17984 Representative total house income in the dwelling unit is $17984 +in.representative_income 17991 Representative total house income in the dwelling unit is $17991 +in.representative_income 17999 Representative total house income in the dwelling unit is $17999 +in.representative_income 18001 Representative total house income in the dwelling unit is $18001 +in.representative_income 18012 Representative total house income in the dwelling unit is $18012 +in.representative_income 18013 Representative total house income in the dwelling unit is $18013 +in.representative_income 18023 Representative total house income in the dwelling unit is $18023 +in.representative_income 18033 Representative total house income in the dwelling unit is $18033 +in.representative_income 18034 Representative total house income in the dwelling unit is $18034 +in.representative_income 18035 Representative total house income in the dwelling unit is $18035 +in.representative_income 18040 Representative total house income in the dwelling unit is $18040 +in.representative_income 18041 Representative total house income in the dwelling unit is $18041 +in.representative_income 18044 Representative total house income in the dwelling unit is $18044 +in.representative_income 18050 Representative total house income in the dwelling unit is $18050 +in.representative_income 18055 Representative total house income in the dwelling unit is $18055 +in.representative_income 18067 Representative total house income in the dwelling unit is $18067 +in.representative_income 18078 Representative total house income in the dwelling unit is $18078 +in.representative_income 18082 Representative total house income in the dwelling unit is $18082 +in.representative_income 18086 Representative total house income in the dwelling unit is $18086 +in.representative_income 18090 Representative total house income in the dwelling unit is $18090 +in.representative_income 18092 Representative total house income in the dwelling unit is $18092 +in.representative_income 18102 Representative total house income in the dwelling unit is $18102 +in.representative_income 18107 Representative total house income in the dwelling unit is $18107 +in.representative_income 18112 Representative total house income in the dwelling unit is $18112 +in.representative_income 18114 Representative total house income in the dwelling unit is $18114 +in.representative_income 18122 Representative total house income in the dwelling unit is $18122 +in.representative_income 18132 Representative total house income in the dwelling unit is $18132 +in.representative_income 18140 Representative total house income in the dwelling unit is $18140 +in.representative_income 18142 Representative total house income in the dwelling unit is $18142 +in.representative_income 18146 Representative total house income in the dwelling unit is $18146 +in.representative_income 18152 Representative total house income in the dwelling unit is $18152 +in.representative_income 18154 Representative total house income in the dwelling unit is $18154 +in.representative_income 18160 Representative total house income in the dwelling unit is $18160 +in.representative_income 18167 Representative total house income in the dwelling unit is $18167 +in.representative_income 18174 Representative total house income in the dwelling unit is $18174 +in.representative_income 18183 Representative total house income in the dwelling unit is $18183 +in.representative_income 18184 Representative total house income in the dwelling unit is $18184 +in.representative_income 18185 Representative total house income in the dwelling unit is $18185 +in.representative_income 18192 Representative total house income in the dwelling unit is $18192 +in.representative_income 18193 Representative total house income in the dwelling unit is $18193 +in.representative_income 18195 Representative total house income in the dwelling unit is $18195 +in.representative_income 18206 Representative total house income in the dwelling unit is $18206 +in.representative_income 18213 Representative total house income in the dwelling unit is $18213 +in.representative_income 18216 Representative total house income in the dwelling unit is $18216 +in.representative_income 18217 Representative total house income in the dwelling unit is $18217 +in.representative_income 18220 Representative total house income in the dwelling unit is $18220 +in.representative_income 18224 Representative total house income in the dwelling unit is $18224 +in.representative_income 18245 Representative total house income in the dwelling unit is $18245 +in.representative_income 18248 Representative total house income in the dwelling unit is $18248 +in.representative_income 18255 Representative total house income in the dwelling unit is $18255 +in.representative_income 18257 Representative total house income in the dwelling unit is $18257 +in.representative_income 18260 Representative total house income in the dwelling unit is $18260 +in.representative_income 18266 Representative total house income in the dwelling unit is $18266 +in.representative_income 18267 Representative total house income in the dwelling unit is $18267 +in.representative_income 18271 Representative total house income in the dwelling unit is $18271 +in.representative_income 18275 Representative total house income in the dwelling unit is $18275 +in.representative_income 18277 Representative total house income in the dwelling unit is $18277 +in.representative_income 18281 Representative total house income in the dwelling unit is $18281 +in.representative_income 18284 Representative total house income in the dwelling unit is $18284 +in.representative_income 18292 Representative total house income in the dwelling unit is $18292 +in.representative_income 18294 Representative total house income in the dwelling unit is $18294 +in.representative_income 18303 Representative total house income in the dwelling unit is $18303 +in.representative_income 18305 Representative total house income in the dwelling unit is $18305 +in.representative_income 18324 Representative total house income in the dwelling unit is $18324 +in.representative_income 18340 Representative total house income in the dwelling unit is $18340 +in.representative_income 18350 Representative total house income in the dwelling unit is $18350 +in.representative_income 18356 Representative total house income in the dwelling unit is $18356 +in.representative_income 18357 Representative total house income in the dwelling unit is $18357 +in.representative_income 18359 Representative total house income in the dwelling unit is $18359 +in.representative_income 18361 Representative total house income in the dwelling unit is $18361 +in.representative_income 18363 Representative total house income in the dwelling unit is $18363 +in.representative_income 18364 Representative total house income in the dwelling unit is $18364 +in.representative_income 18368 Representative total house income in the dwelling unit is $18368 +in.representative_income 18369 Representative total house income in the dwelling unit is $18369 +in.representative_income 18377 Representative total house income in the dwelling unit is $18377 +in.representative_income 18379 Representative total house income in the dwelling unit is $18379 +in.representative_income 18385 Representative total house income in the dwelling unit is $18385 +in.representative_income 18388 Representative total house income in the dwelling unit is $18388 +in.representative_income 18389 Representative total house income in the dwelling unit is $18389 +in.representative_income 18396 Representative total house income in the dwelling unit is $18396 +in.representative_income 18406 Representative total house income in the dwelling unit is $18406 +in.representative_income 18407 Representative total house income in the dwelling unit is $18407 +in.representative_income 18410 Representative total house income in the dwelling unit is $18410 +in.representative_income 18419 Representative total house income in the dwelling unit is $18419 +in.representative_income 18420 Representative total house income in the dwelling unit is $18420 +in.representative_income 18422 Representative total house income in the dwelling unit is $18422 +in.representative_income 18435 Representative total house income in the dwelling unit is $18435 +in.representative_income 18445 Representative total house income in the dwelling unit is $18445 +in.representative_income 18453 Representative total house income in the dwelling unit is $18453 +in.representative_income 18454 Representative total house income in the dwelling unit is $18454 +in.representative_income 18455 Representative total house income in the dwelling unit is $18455 +in.representative_income 18458 Representative total house income in the dwelling unit is $18458 +in.representative_income 18463 Representative total house income in the dwelling unit is $18463 +in.representative_income 18464 Representative total house income in the dwelling unit is $18464 +in.representative_income 18474 Representative total house income in the dwelling unit is $18474 +in.representative_income 18475 Representative total house income in the dwelling unit is $18475 +in.representative_income 18476 Representative total house income in the dwelling unit is $18476 +in.representative_income 18486 Representative total house income in the dwelling unit is $18486 +in.representative_income 18488 Representative total house income in the dwelling unit is $18488 +in.representative_income 18494 Representative total house income in the dwelling unit is $18494 +in.representative_income 18495 Representative total house income in the dwelling unit is $18495 +in.representative_income 18498 Representative total house income in the dwelling unit is $18498 +in.representative_income 18506 Representative total house income in the dwelling unit is $18506 +in.representative_income 18508 Representative total house income in the dwelling unit is $18508 +in.representative_income 18509 Representative total house income in the dwelling unit is $18509 +in.representative_income 18536 Representative total house income in the dwelling unit is $18536 +in.representative_income 18539 Representative total house income in the dwelling unit is $18539 +in.representative_income 18546 Representative total house income in the dwelling unit is $18546 +in.representative_income 18550 Representative total house income in the dwelling unit is $18550 +in.representative_income 18560 Representative total house income in the dwelling unit is $18560 +in.representative_income 18561 Representative total house income in the dwelling unit is $18561 +in.representative_income 18563 Representative total house income in the dwelling unit is $18563 +in.representative_income 18566 Representative total house income in the dwelling unit is $18566 +in.representative_income 18571 Representative total house income in the dwelling unit is $18571 +in.representative_income 18573 Representative total house income in the dwelling unit is $18573 +in.representative_income 18584 Representative total house income in the dwelling unit is $18584 +in.representative_income 18586 Representative total house income in the dwelling unit is $18586 +in.representative_income 18587 Representative total house income in the dwelling unit is $18587 +in.representative_income 18605 Representative total house income in the dwelling unit is $18605 +in.representative_income 18613 Representative total house income in the dwelling unit is $18613 +in.representative_income 18614 Representative total house income in the dwelling unit is $18614 +in.representative_income 18617 Representative total house income in the dwelling unit is $18617 +in.representative_income 18618 Representative total house income in the dwelling unit is $18618 +in.representative_income 18624 Representative total house income in the dwelling unit is $18624 +in.representative_income 18628 Representative total house income in the dwelling unit is $18628 +in.representative_income 18638 Representative total house income in the dwelling unit is $18638 +in.representative_income 18645 Representative total house income in the dwelling unit is $18645 +in.representative_income 18649 Representative total house income in the dwelling unit is $18649 +in.representative_income 18660 Representative total house income in the dwelling unit is $18660 +in.representative_income 18667 Representative total house income in the dwelling unit is $18667 +in.representative_income 18669 Representative total house income in the dwelling unit is $18669 +in.representative_income 18671 Representative total house income in the dwelling unit is $18671 +in.representative_income 18672 Representative total house income in the dwelling unit is $18672 +in.representative_income 18677 Representative total house income in the dwelling unit is $18677 +in.representative_income 18678 Representative total house income in the dwelling unit is $18678 +in.representative_income 18683 Representative total house income in the dwelling unit is $18683 +in.representative_income 18688 Representative total house income in the dwelling unit is $18688 +in.representative_income 18693 Representative total house income in the dwelling unit is $18693 +in.representative_income 18698 Representative total house income in the dwelling unit is $18698 +in.representative_income 18700 Representative total house income in the dwelling unit is $18700 +in.representative_income 18711 Representative total house income in the dwelling unit is $18711 +in.representative_income 18720 Representative total house income in the dwelling unit is $18720 +in.representative_income 18721 Representative total house income in the dwelling unit is $18721 +in.representative_income 18729 Representative total house income in the dwelling unit is $18729 +in.representative_income 18730 Representative total house income in the dwelling unit is $18730 +in.representative_income 18731 Representative total house income in the dwelling unit is $18731 +in.representative_income 18751 Representative total house income in the dwelling unit is $18751 +in.representative_income 18758 Representative total house income in the dwelling unit is $18758 +in.representative_income 18763 Representative total house income in the dwelling unit is $18763 +in.representative_income 18764 Representative total house income in the dwelling unit is $18764 +in.representative_income 18772 Representative total house income in the dwelling unit is $18772 +in.representative_income 18773 Representative total house income in the dwelling unit is $18773 +in.representative_income 18774 Representative total house income in the dwelling unit is $18774 +in.representative_income 18779 Representative total house income in the dwelling unit is $18779 +in.representative_income 18785 Representative total house income in the dwelling unit is $18785 +in.representative_income 18786 Representative total house income in the dwelling unit is $18786 +in.representative_income 18789 Representative total house income in the dwelling unit is $18789 +in.representative_income 18791 Representative total house income in the dwelling unit is $18791 +in.representative_income 18793 Representative total house income in the dwelling unit is $18793 +in.representative_income 18794 Representative total house income in the dwelling unit is $18794 +in.representative_income 18799 Representative total house income in the dwelling unit is $18799 +in.representative_income 18800 Representative total house income in the dwelling unit is $18800 +in.representative_income 18804 Representative total house income in the dwelling unit is $18804 +in.representative_income 18822 Representative total house income in the dwelling unit is $18822 +in.representative_income 18824 Representative total house income in the dwelling unit is $18824 +in.representative_income 18829 Representative total house income in the dwelling unit is $18829 +in.representative_income 18834 Representative total house income in the dwelling unit is $18834 +in.representative_income 18835 Representative total house income in the dwelling unit is $18835 +in.representative_income 18839 Representative total house income in the dwelling unit is $18839 +in.representative_income 18855 Representative total house income in the dwelling unit is $18855 +in.representative_income 18860 Representative total house income in the dwelling unit is $18860 +in.representative_income 18865 Representative total house income in the dwelling unit is $18865 +in.representative_income 18870 Representative total house income in the dwelling unit is $18870 +in.representative_income 18876 Representative total house income in the dwelling unit is $18876 +in.representative_income 18878 Representative total house income in the dwelling unit is $18878 +in.representative_income 18882 Representative total house income in the dwelling unit is $18882 +in.representative_income 18885 Representative total house income in the dwelling unit is $18885 +in.representative_income 18886 Representative total house income in the dwelling unit is $18886 +in.representative_income 18890 Representative total house income in the dwelling unit is $18890 +in.representative_income 18892 Representative total house income in the dwelling unit is $18892 +in.representative_income 18896 Representative total house income in the dwelling unit is $18896 +in.representative_income 18898 Representative total house income in the dwelling unit is $18898 +in.representative_income 18903 Representative total house income in the dwelling unit is $18903 +in.representative_income 18908 Representative total house income in the dwelling unit is $18908 +in.representative_income 18910 Representative total house income in the dwelling unit is $18910 +in.representative_income 18914 Representative total house income in the dwelling unit is $18914 +in.representative_income 18919 Representative total house income in the dwelling unit is $18919 +in.representative_income 18941 Representative total house income in the dwelling unit is $18941 +in.representative_income 18957 Representative total house income in the dwelling unit is $18957 +in.representative_income 18960 Representative total house income in the dwelling unit is $18960 +in.representative_income 18962 Representative total house income in the dwelling unit is $18962 +in.representative_income 18971 Representative total house income in the dwelling unit is $18971 +in.representative_income 18978 Representative total house income in the dwelling unit is $18978 +in.representative_income 18983 Representative total house income in the dwelling unit is $18983 +in.representative_income 18989 Representative total house income in the dwelling unit is $18989 +in.representative_income 18991 Representative total house income in the dwelling unit is $18991 +in.representative_income 18992 Representative total house income in the dwelling unit is $18992 +in.representative_income 18995 Representative total house income in the dwelling unit is $18995 +in.representative_income 19000 Representative total house income in the dwelling unit is $19000 +in.representative_income 19001 Representative total house income in the dwelling unit is $19001 +in.representative_income 19004 Representative total house income in the dwelling unit is $19004 +in.representative_income 19007 Representative total house income in the dwelling unit is $19007 +in.representative_income 19014 Representative total house income in the dwelling unit is $19014 +in.representative_income 19016 Representative total house income in the dwelling unit is $19016 +in.representative_income 19017 Representative total house income in the dwelling unit is $19017 +in.representative_income 19021 Representative total house income in the dwelling unit is $19021 +in.representative_income 19030 Representative total house income in the dwelling unit is $19030 +in.representative_income 19032 Representative total house income in the dwelling unit is $19032 +in.representative_income 19036 Representative total house income in the dwelling unit is $19036 +in.representative_income 19038 Representative total house income in the dwelling unit is $19038 +in.representative_income 19040 Representative total house income in the dwelling unit is $19040 +in.representative_income 19041 Representative total house income in the dwelling unit is $19041 +in.representative_income 19043 Representative total house income in the dwelling unit is $19043 +in.representative_income 19046 Representative total house income in the dwelling unit is $19046 +in.representative_income 19049 Representative total house income in the dwelling unit is $19049 +in.representative_income 19053 Representative total house income in the dwelling unit is $19053 +in.representative_income 19061 Representative total house income in the dwelling unit is $19061 +in.representative_income 19067 Representative total house income in the dwelling unit is $19067 +in.representative_income 19072 Representative total house income in the dwelling unit is $19072 +in.representative_income 19076 Representative total house income in the dwelling unit is $19076 +in.representative_income 19082 Representative total house income in the dwelling unit is $19082 +in.representative_income 19088 Representative total house income in the dwelling unit is $19088 +in.representative_income 19092 Representative total house income in the dwelling unit is $19092 +in.representative_income 19096 Representative total house income in the dwelling unit is $19096 +in.representative_income 19099 Representative total house income in the dwelling unit is $19099 +in.representative_income 19107 Representative total house income in the dwelling unit is $19107 +in.representative_income 19113 Representative total house income in the dwelling unit is $19113 +in.representative_income 19120 Representative total house income in the dwelling unit is $19120 +in.representative_income 19124 Representative total house income in the dwelling unit is $19124 +in.representative_income 19133 Representative total house income in the dwelling unit is $19133 +in.representative_income 19142 Representative total house income in the dwelling unit is $19142 +in.representative_income 19146 Representative total house income in the dwelling unit is $19146 +in.representative_income 19150 Representative total house income in the dwelling unit is $19150 +in.representative_income 19152 Representative total house income in the dwelling unit is $19152 +in.representative_income 19154 Representative total house income in the dwelling unit is $19154 +in.representative_income 19167 Representative total house income in the dwelling unit is $19167 +in.representative_income 19171 Representative total house income in the dwelling unit is $19171 +in.representative_income 19173 Representative total house income in the dwelling unit is $19173 +in.representative_income 19175 Representative total house income in the dwelling unit is $19175 +in.representative_income 19178 Representative total house income in the dwelling unit is $19178 +in.representative_income 19182 Representative total house income in the dwelling unit is $19182 +in.representative_income 19183 Representative total house income in the dwelling unit is $19183 +in.representative_income 19185 Representative total house income in the dwelling unit is $19185 +in.representative_income 19193 Representative total house income in the dwelling unit is $19193 +in.representative_income 19194 Representative total house income in the dwelling unit is $19194 +in.representative_income 19195 Representative total house income in the dwelling unit is $19195 +in.representative_income 19203 Representative total house income in the dwelling unit is $19203 +in.representative_income 19204 Representative total house income in the dwelling unit is $19204 +in.representative_income 19205 Representative total house income in the dwelling unit is $19205 +in.representative_income 19211 Representative total house income in the dwelling unit is $19211 +in.representative_income 19213 Representative total house income in the dwelling unit is $19213 +in.representative_income 19215 Representative total house income in the dwelling unit is $19215 +in.representative_income 19216 Representative total house income in the dwelling unit is $19216 +in.representative_income 19218 Representative total house income in the dwelling unit is $19218 +in.representative_income 19226 Representative total house income in the dwelling unit is $19226 +in.representative_income 19227 Representative total house income in the dwelling unit is $19227 +in.representative_income 19232 Representative total house income in the dwelling unit is $19232 +in.representative_income 19233 Representative total house income in the dwelling unit is $19233 +in.representative_income 19237 Representative total house income in the dwelling unit is $19237 +in.representative_income 19241 Representative total house income in the dwelling unit is $19241 +in.representative_income 19243 Representative total house income in the dwelling unit is $19243 +in.representative_income 19244 Representative total house income in the dwelling unit is $19244 +in.representative_income 19247 Representative total house income in the dwelling unit is $19247 +in.representative_income 19254 Representative total house income in the dwelling unit is $19254 +in.representative_income 19257 Representative total house income in the dwelling unit is $19257 +in.representative_income 19258 Representative total house income in the dwelling unit is $19258 +in.representative_income 19264 Representative total house income in the dwelling unit is $19264 +in.representative_income 19265 Representative total house income in the dwelling unit is $19265 +in.representative_income 19268 Representative total house income in the dwelling unit is $19268 +in.representative_income 19284 Representative total house income in the dwelling unit is $19284 +in.representative_income 19286 Representative total house income in the dwelling unit is $19286 +in.representative_income 19288 Representative total house income in the dwelling unit is $19288 +in.representative_income 19294 Representative total house income in the dwelling unit is $19294 +in.representative_income 19300 Representative total house income in the dwelling unit is $19300 +in.representative_income 19304 Representative total house income in the dwelling unit is $19304 +in.representative_income 19305 Representative total house income in the dwelling unit is $19305 +in.representative_income 19314 Representative total house income in the dwelling unit is $19314 +in.representative_income 19318 Representative total house income in the dwelling unit is $19318 +in.representative_income 19319 Representative total house income in the dwelling unit is $19319 +in.representative_income 19321 Representative total house income in the dwelling unit is $19321 +in.representative_income 19323 Representative total house income in the dwelling unit is $19323 +in.representative_income 19327 Representative total house income in the dwelling unit is $19327 +in.representative_income 19329 Representative total house income in the dwelling unit is $19329 +in.representative_income 19330 Representative total house income in the dwelling unit is $19330 +in.representative_income 19333 Representative total house income in the dwelling unit is $19333 +in.representative_income 19334 Representative total house income in the dwelling unit is $19334 +in.representative_income 19340 Representative total house income in the dwelling unit is $19340 +in.representative_income 19344 Representative total house income in the dwelling unit is $19344 +in.representative_income 19351 Representative total house income in the dwelling unit is $19351 +in.representative_income 19355 Representative total house income in the dwelling unit is $19355 +in.representative_income 19357 Representative total house income in the dwelling unit is $19357 +in.representative_income 19359 Representative total house income in the dwelling unit is $19359 +in.representative_income 19362 Representative total house income in the dwelling unit is $19362 +in.representative_income 19372 Representative total house income in the dwelling unit is $19372 +in.representative_income 19375 Representative total house income in the dwelling unit is $19375 +in.representative_income 19376 Representative total house income in the dwelling unit is $19376 +in.representative_income 19381 Representative total house income in the dwelling unit is $19381 +in.representative_income 19386 Representative total house income in the dwelling unit is $19386 +in.representative_income 19387 Representative total house income in the dwelling unit is $19387 +in.representative_income 19392 Representative total house income in the dwelling unit is $19392 +in.representative_income 19394 Representative total house income in the dwelling unit is $19394 +in.representative_income 19395 Representative total house income in the dwelling unit is $19395 +in.representative_income 19402 Representative total house income in the dwelling unit is $19402 +in.representative_income 19405 Representative total house income in the dwelling unit is $19405 +in.representative_income 19412 Representative total house income in the dwelling unit is $19412 +in.representative_income 19415 Representative total house income in the dwelling unit is $19415 +in.representative_income 19416 Representative total house income in the dwelling unit is $19416 +in.representative_income 19418 Representative total house income in the dwelling unit is $19418 +in.representative_income 19422 Representative total house income in the dwelling unit is $19422 +in.representative_income 19427 Representative total house income in the dwelling unit is $19427 +in.representative_income 19429 Representative total house income in the dwelling unit is $19429 +in.representative_income 19440 Representative total house income in the dwelling unit is $19440 +in.representative_income 19445 Representative total house income in the dwelling unit is $19445 +in.representative_income 19447 Representative total house income in the dwelling unit is $19447 +in.representative_income 19449 Representative total house income in the dwelling unit is $19449 +in.representative_income 19450 Representative total house income in the dwelling unit is $19450 +in.representative_income 19453 Representative total house income in the dwelling unit is $19453 +in.representative_income 19455 Representative total house income in the dwelling unit is $19455 +in.representative_income 19460 Representative total house income in the dwelling unit is $19460 +in.representative_income 19462 Representative total house income in the dwelling unit is $19462 +in.representative_income 19465 Representative total house income in the dwelling unit is $19465 +in.representative_income 19470 Representative total house income in the dwelling unit is $19470 +in.representative_income 19473 Representative total house income in the dwelling unit is $19473 +in.representative_income 19474 Representative total house income in the dwelling unit is $19474 +in.representative_income 19481 Representative total house income in the dwelling unit is $19481 +in.representative_income 19482 Representative total house income in the dwelling unit is $19482 +in.representative_income 19483 Representative total house income in the dwelling unit is $19483 +in.representative_income 19484 Representative total house income in the dwelling unit is $19484 +in.representative_income 19489 Representative total house income in the dwelling unit is $19489 +in.representative_income 19492 Representative total house income in the dwelling unit is $19492 +in.representative_income 19494 Representative total house income in the dwelling unit is $19494 +in.representative_income 19496 Representative total house income in the dwelling unit is $19496 +in.representative_income 19500 Representative total house income in the dwelling unit is $19500 +in.representative_income 19505 Representative total house income in the dwelling unit is $19505 +in.representative_income 19510 Representative total house income in the dwelling unit is $19510 +in.representative_income 19514 Representative total house income in the dwelling unit is $19514 +in.representative_income 19515 Representative total house income in the dwelling unit is $19515 +in.representative_income 19516 Representative total house income in the dwelling unit is $19516 +in.representative_income 19524 Representative total house income in the dwelling unit is $19524 +in.representative_income 19526 Representative total house income in the dwelling unit is $19526 +in.representative_income 19531 Representative total house income in the dwelling unit is $19531 +in.representative_income 19535 Representative total house income in the dwelling unit is $19535 +in.representative_income 19536 Representative total house income in the dwelling unit is $19536 +in.representative_income 19537 Representative total house income in the dwelling unit is $19537 +in.representative_income 19546 Representative total house income in the dwelling unit is $19546 +in.representative_income 19557 Representative total house income in the dwelling unit is $19557 +in.representative_income 19562 Representative total house income in the dwelling unit is $19562 +in.representative_income 19563 Representative total house income in the dwelling unit is $19563 +in.representative_income 19567 Representative total house income in the dwelling unit is $19567 +in.representative_income 19576 Representative total house income in the dwelling unit is $19576 +in.representative_income 19578 Representative total house income in the dwelling unit is $19578 +in.representative_income 19579 Representative total house income in the dwelling unit is $19579 +in.representative_income 19587 Representative total house income in the dwelling unit is $19587 +in.representative_income 19589 Representative total house income in the dwelling unit is $19589 +in.representative_income 19591 Representative total house income in the dwelling unit is $19591 +in.representative_income 19597 Representative total house income in the dwelling unit is $19597 +in.representative_income 19602 Representative total house income in the dwelling unit is $19602 +in.representative_income 19616 Representative total house income in the dwelling unit is $19616 +in.representative_income 19622 Representative total house income in the dwelling unit is $19622 +in.representative_income 19626 Representative total house income in the dwelling unit is $19626 +in.representative_income 19629 Representative total house income in the dwelling unit is $19629 +in.representative_income 19632 Representative total house income in the dwelling unit is $19632 +in.representative_income 19639 Representative total house income in the dwelling unit is $19639 +in.representative_income 19644 Representative total house income in the dwelling unit is $19644 +in.representative_income 19647 Representative total house income in the dwelling unit is $19647 +in.representative_income 19649 Representative total house income in the dwelling unit is $19649 +in.representative_income 19654 Representative total house income in the dwelling unit is $19654 +in.representative_income 19655 Representative total house income in the dwelling unit is $19655 +in.representative_income 19657 Representative total house income in the dwelling unit is $19657 +in.representative_income 19658 Representative total house income in the dwelling unit is $19658 +in.representative_income 19659 Representative total house income in the dwelling unit is $19659 +in.representative_income 19665 Representative total house income in the dwelling unit is $19665 +in.representative_income 19668 Representative total house income in the dwelling unit is $19668 +in.representative_income 19678 Representative total house income in the dwelling unit is $19678 +in.representative_income 19686 Representative total house income in the dwelling unit is $19686 +in.representative_income 19688 Representative total house income in the dwelling unit is $19688 +in.representative_income 19697 Representative total house income in the dwelling unit is $19697 +in.representative_income 19698 Representative total house income in the dwelling unit is $19698 +in.representative_income 19700 Representative total house income in the dwelling unit is $19700 +in.representative_income 19701 Representative total house income in the dwelling unit is $19701 +in.representative_income 19708 Representative total house income in the dwelling unit is $19708 +in.representative_income 19721 Representative total house income in the dwelling unit is $19721 +in.representative_income 19728 Representative total house income in the dwelling unit is $19728 +in.representative_income 19741 Representative total house income in the dwelling unit is $19741 +in.representative_income 19752 Representative total house income in the dwelling unit is $19752 +in.representative_income 19754 Representative total house income in the dwelling unit is $19754 +in.representative_income 19762 Representative total house income in the dwelling unit is $19762 +in.representative_income 19773 Representative total house income in the dwelling unit is $19773 +in.representative_income 19774 Representative total house income in the dwelling unit is $19774 +in.representative_income 19782 Representative total house income in the dwelling unit is $19782 +in.representative_income 19795 Representative total house income in the dwelling unit is $19795 +in.representative_income 19799 Representative total house income in the dwelling unit is $19799 +in.representative_income 19804 Representative total house income in the dwelling unit is $19804 +in.representative_income 19812 Representative total house income in the dwelling unit is $19812 +in.representative_income 19816 Representative total house income in the dwelling unit is $19816 +in.representative_income 19826 Representative total house income in the dwelling unit is $19826 +in.representative_income 19837 Representative total house income in the dwelling unit is $19837 +in.representative_income 19856 Representative total house income in the dwelling unit is $19856 +in.representative_income 19859 Representative total house income in the dwelling unit is $19859 +in.representative_income 19870 Representative total house income in the dwelling unit is $19870 +in.representative_income 19881 Representative total house income in the dwelling unit is $19881 +in.representative_income 19886 Representative total house income in the dwelling unit is $19886 +in.representative_income 19894 Representative total house income in the dwelling unit is $19894 +in.representative_income 19900 Representative total house income in the dwelling unit is $19900 +in.representative_income 19907 Representative total house income in the dwelling unit is $19907 +in.representative_income 19923 Representative total house income in the dwelling unit is $19923 +in.representative_income 19932 Representative total house income in the dwelling unit is $19932 +in.representative_income 19935 Representative total house income in the dwelling unit is $19935 +in.representative_income 19948 Representative total house income in the dwelling unit is $19948 +in.representative_income 19966 Representative total house income in the dwelling unit is $19966 +in.representative_income 19969 Representative total house income in the dwelling unit is $19969 +in.representative_income 19979 Representative total house income in the dwelling unit is $19979 +in.representative_income 19985 Representative total house income in the dwelling unit is $19985 +in.representative_income 19988 Representative total house income in the dwelling unit is $19988 +in.representative_income 19999 Representative total house income in the dwelling unit is $19999 +in.representative_income 20000 Representative total house income in the dwelling unit is $20000 +in.representative_income 20001 Representative total house income in the dwelling unit is $20001 +in.representative_income 20010 Representative total house income in the dwelling unit is $20010 +in.representative_income 20038 Representative total house income in the dwelling unit is $20038 +in.representative_income 20041 Representative total house income in the dwelling unit is $20041 +in.representative_income 20051 Representative total house income in the dwelling unit is $20051 +in.representative_income 20070 Representative total house income in the dwelling unit is $20070 +in.representative_income 20073 Representative total house income in the dwelling unit is $20073 +in.representative_income 20096 Representative total house income in the dwelling unit is $20096 +in.representative_income 20102 Representative total house income in the dwelling unit is $20102 +in.representative_income 20113 Representative total house income in the dwelling unit is $20113 +in.representative_income 20129 Representative total house income in the dwelling unit is $20129 +in.representative_income 20133 Representative total house income in the dwelling unit is $20133 +in.representative_income 20140 Representative total house income in the dwelling unit is $20140 +in.representative_income 20142 Representative total house income in the dwelling unit is $20142 +in.representative_income 20143 Representative total house income in the dwelling unit is $20143 +in.representative_income 20150 Representative total house income in the dwelling unit is $20150 +in.representative_income 20162 Representative total house income in the dwelling unit is $20162 +in.representative_income 20181 Representative total house income in the dwelling unit is $20181 +in.representative_income 20192 Representative total house income in the dwelling unit is $20192 +in.representative_income 20195 Representative total house income in the dwelling unit is $20195 +in.representative_income 20203 Representative total house income in the dwelling unit is $20203 +in.representative_income 20205 Representative total house income in the dwelling unit is $20205 +in.representative_income 20207 Representative total house income in the dwelling unit is $20207 +in.representative_income 20213 Representative total house income in the dwelling unit is $20213 +in.representative_income 20216 Representative total house income in the dwelling unit is $20216 +in.representative_income 20238 Representative total house income in the dwelling unit is $20238 +in.representative_income 20245 Representative total house income in the dwelling unit is $20245 +in.representative_income 20248 Representative total house income in the dwelling unit is $20248 +in.representative_income 20253 Representative total house income in the dwelling unit is $20253 +in.representative_income 20258 Representative total house income in the dwelling unit is $20258 +in.representative_income 20259 Representative total house income in the dwelling unit is $20259 +in.representative_income 20264 Representative total house income in the dwelling unit is $20264 +in.representative_income 20267 Representative total house income in the dwelling unit is $20267 +in.representative_income 20269 Representative total house income in the dwelling unit is $20269 +in.representative_income 20278 Representative total house income in the dwelling unit is $20278 +in.representative_income 20284 Representative total house income in the dwelling unit is $20284 +in.representative_income 20288 Representative total house income in the dwelling unit is $20288 +in.representative_income 20292 Representative total house income in the dwelling unit is $20292 +in.representative_income 20294 Representative total house income in the dwelling unit is $20294 +in.representative_income 20302 Representative total house income in the dwelling unit is $20302 +in.representative_income 20304 Representative total house income in the dwelling unit is $20304 +in.representative_income 20310 Representative total house income in the dwelling unit is $20310 +in.representative_income 20313 Representative total house income in the dwelling unit is $20313 +in.representative_income 20320 Representative total house income in the dwelling unit is $20320 +in.representative_income 20324 Representative total house income in the dwelling unit is $20324 +in.representative_income 20340 Representative total house income in the dwelling unit is $20340 +in.representative_income 20344 Representative total house income in the dwelling unit is $20344 +in.representative_income 20354 Representative total house income in the dwelling unit is $20354 +in.representative_income 20367 Representative total house income in the dwelling unit is $20367 +in.representative_income 20375 Representative total house income in the dwelling unit is $20375 +in.representative_income 20378 Representative total house income in the dwelling unit is $20378 +in.representative_income 20396 Representative total house income in the dwelling unit is $20396 +in.representative_income 20402 Representative total house income in the dwelling unit is $20402 +in.representative_income 20405 Representative total house income in the dwelling unit is $20405 +in.representative_income 20407 Representative total house income in the dwelling unit is $20407 +in.representative_income 20421 Representative total house income in the dwelling unit is $20421 +in.representative_income 20423 Representative total house income in the dwelling unit is $20423 +in.representative_income 20443 Representative total house income in the dwelling unit is $20443 +in.representative_income 20453 Representative total house income in the dwelling unit is $20453 +in.representative_income 20459 Representative total house income in the dwelling unit is $20459 +in.representative_income 20467 Representative total house income in the dwelling unit is $20467 +in.representative_income 20496 Representative total house income in the dwelling unit is $20496 +in.representative_income 20502 Representative total house income in the dwelling unit is $20502 +in.representative_income 20506 Representative total house income in the dwelling unit is $20506 +in.representative_income 20507 Representative total house income in the dwelling unit is $20507 +in.representative_income 20515 Representative total house income in the dwelling unit is $20515 +in.representative_income 20517 Representative total house income in the dwelling unit is $20517 +in.representative_income 20526 Representative total house income in the dwelling unit is $20526 +in.representative_income 20529 Representative total house income in the dwelling unit is $20529 +in.representative_income 20551 Representative total house income in the dwelling unit is $20551 +in.representative_income 20556 Representative total house income in the dwelling unit is $20556 +in.representative_income 20557 Representative total house income in the dwelling unit is $20557 +in.representative_income 20565 Representative total house income in the dwelling unit is $20565 +in.representative_income 20567 Representative total house income in the dwelling unit is $20567 +in.representative_income 20570 Representative total house income in the dwelling unit is $20570 +in.representative_income 20572 Representative total house income in the dwelling unit is $20572 +in.representative_income 20586 Representative total house income in the dwelling unit is $20586 +in.representative_income 20597 Representative total house income in the dwelling unit is $20597 +in.representative_income 20607 Representative total house income in the dwelling unit is $20607 +in.representative_income 20610 Representative total house income in the dwelling unit is $20610 +in.representative_income 20618 Representative total house income in the dwelling unit is $20618 +in.representative_income 20619 Representative total house income in the dwelling unit is $20619 +in.representative_income 20629 Representative total house income in the dwelling unit is $20629 +in.representative_income 20633 Representative total house income in the dwelling unit is $20633 +in.representative_income 20637 Representative total house income in the dwelling unit is $20637 +in.representative_income 20640 Representative total house income in the dwelling unit is $20640 +in.representative_income 20650 Representative total house income in the dwelling unit is $20650 +in.representative_income 20654 Representative total house income in the dwelling unit is $20654 +in.representative_income 20657 Representative total house income in the dwelling unit is $20657 +in.representative_income 20668 Representative total house income in the dwelling unit is $20668 +in.representative_income 20671 Representative total house income in the dwelling unit is $20671 +in.representative_income 20675 Representative total house income in the dwelling unit is $20675 +in.representative_income 20678 Representative total house income in the dwelling unit is $20678 +in.representative_income 20680 Representative total house income in the dwelling unit is $20680 +in.representative_income 20687 Representative total house income in the dwelling unit is $20687 +in.representative_income 20691 Representative total house income in the dwelling unit is $20691 +in.representative_income 20698 Representative total house income in the dwelling unit is $20698 +in.representative_income 20708 Representative total house income in the dwelling unit is $20708 +in.representative_income 20718 Representative total house income in the dwelling unit is $20718 +in.representative_income 20732 Representative total house income in the dwelling unit is $20732 +in.representative_income 20745 Representative total house income in the dwelling unit is $20745 +in.representative_income 20748 Representative total house income in the dwelling unit is $20748 +in.representative_income 20750 Representative total house income in the dwelling unit is $20750 +in.representative_income 20766 Representative total house income in the dwelling unit is $20766 +in.representative_income 20769 Representative total house income in the dwelling unit is $20769 +in.representative_income 20776 Representative total house income in the dwelling unit is $20776 +in.representative_income 20777 Representative total house income in the dwelling unit is $20777 +in.representative_income 20784 Representative total house income in the dwelling unit is $20784 +in.representative_income 20788 Representative total house income in the dwelling unit is $20788 +in.representative_income 20799 Representative total house income in the dwelling unit is $20799 +in.representative_income 20804 Representative total house income in the dwelling unit is $20804 +in.representative_income 20805 Representative total house income in the dwelling unit is $20805 +in.representative_income 20809 Representative total house income in the dwelling unit is $20809 +in.representative_income 20810 Representative total house income in the dwelling unit is $20810 +in.representative_income 20825 Representative total house income in the dwelling unit is $20825 +in.representative_income 20835 Representative total house income in the dwelling unit is $20835 +in.representative_income 20838 Representative total house income in the dwelling unit is $20838 +in.representative_income 20853 Representative total house income in the dwelling unit is $20853 +in.representative_income 20858 Representative total house income in the dwelling unit is $20858 +in.representative_income 20881 Representative total house income in the dwelling unit is $20881 +in.representative_income 20885 Representative total house income in the dwelling unit is $20885 +in.representative_income 20890 Representative total house income in the dwelling unit is $20890 +in.representative_income 20896 Representative total house income in the dwelling unit is $20896 +in.representative_income 20900 Representative total house income in the dwelling unit is $20900 +in.representative_income 20907 Representative total house income in the dwelling unit is $20907 +in.representative_income 20910 Representative total house income in the dwelling unit is $20910 +in.representative_income 20917 Representative total house income in the dwelling unit is $20917 +in.representative_income 20919 Representative total house income in the dwelling unit is $20919 +in.representative_income 20933 Representative total house income in the dwelling unit is $20933 +in.representative_income 20937 Representative total house income in the dwelling unit is $20937 +in.representative_income 20939 Representative total house income in the dwelling unit is $20939 +in.representative_income 20943 Representative total house income in the dwelling unit is $20943 +in.representative_income 20948 Representative total house income in the dwelling unit is $20948 +in.representative_income 20949 Representative total house income in the dwelling unit is $20949 +in.representative_income 20957 Representative total house income in the dwelling unit is $20957 +in.representative_income 20961 Representative total house income in the dwelling unit is $20961 +in.representative_income 20971 Representative total house income in the dwelling unit is $20971 +in.representative_income 20975 Representative total house income in the dwelling unit is $20975 +in.representative_income 20981 Representative total house income in the dwelling unit is $20981 +in.representative_income 20986 Representative total house income in the dwelling unit is $20986 +in.representative_income 20987 Representative total house income in the dwelling unit is $20987 +in.representative_income 20991 Representative total house income in the dwelling unit is $20991 +in.representative_income 21007 Representative total house income in the dwelling unit is $21007 +in.representative_income 21011 Representative total house income in the dwelling unit is $21011 +in.representative_income 21013 Representative total house income in the dwelling unit is $21013 +in.representative_income 21031 Representative total house income in the dwelling unit is $21031 +in.representative_income 21039 Representative total house income in the dwelling unit is $21039 +in.representative_income 21042 Representative total house income in the dwelling unit is $21042 +in.representative_income 21048 Representative total house income in the dwelling unit is $21048 +in.representative_income 21050 Representative total house income in the dwelling unit is $21050 +in.representative_income 21051 Representative total house income in the dwelling unit is $21051 +in.representative_income 21060 Representative total house income in the dwelling unit is $21060 +in.representative_income 21069 Representative total house income in the dwelling unit is $21069 +in.representative_income 21070 Representative total house income in the dwelling unit is $21070 +in.representative_income 21071 Representative total house income in the dwelling unit is $21071 +in.representative_income 21092 Representative total house income in the dwelling unit is $21092 +in.representative_income 21103 Representative total house income in the dwelling unit is $21103 +in.representative_income 21104 Representative total house income in the dwelling unit is $21104 +in.representative_income 21112 Representative total house income in the dwelling unit is $21112 +in.representative_income 21114 Representative total house income in the dwelling unit is $21114 +in.representative_income 21119 Representative total house income in the dwelling unit is $21119 +in.representative_income 21130 Representative total house income in the dwelling unit is $21130 +in.representative_income 21132 Representative total house income in the dwelling unit is $21132 +in.representative_income 21142 Representative total house income in the dwelling unit is $21142 +in.representative_income 21144 Representative total house income in the dwelling unit is $21144 +in.representative_income 21147 Representative total house income in the dwelling unit is $21147 +in.representative_income 21153 Representative total house income in the dwelling unit is $21153 +in.representative_income 21155 Representative total house income in the dwelling unit is $21155 +in.representative_income 21159 Representative total house income in the dwelling unit is $21159 +in.representative_income 21167 Representative total house income in the dwelling unit is $21167 +in.representative_income 21168 Representative total house income in the dwelling unit is $21168 +in.representative_income 21176 Representative total house income in the dwelling unit is $21176 +in.representative_income 21177 Representative total house income in the dwelling unit is $21177 +in.representative_income 21181 Representative total house income in the dwelling unit is $21181 +in.representative_income 21186 Representative total house income in the dwelling unit is $21186 +in.representative_income 21190 Representative total house income in the dwelling unit is $21190 +in.representative_income 21198 Representative total house income in the dwelling unit is $21198 +in.representative_income 21207 Representative total house income in the dwelling unit is $21207 +in.representative_income 21208 Representative total house income in the dwelling unit is $21208 +in.representative_income 21210 Representative total house income in the dwelling unit is $21210 +in.representative_income 21213 Representative total house income in the dwelling unit is $21213 +in.representative_income 21219 Representative total house income in the dwelling unit is $21219 +in.representative_income 21221 Representative total house income in the dwelling unit is $21221 +in.representative_income 21222 Representative total house income in the dwelling unit is $21222 +in.representative_income 21223 Representative total house income in the dwelling unit is $21223 +in.representative_income 21229 Representative total house income in the dwelling unit is $21229 +in.representative_income 21238 Representative total house income in the dwelling unit is $21238 +in.representative_income 21248 Representative total house income in the dwelling unit is $21248 +in.representative_income 21254 Representative total house income in the dwelling unit is $21254 +in.representative_income 21255 Representative total house income in the dwelling unit is $21255 +in.representative_income 21261 Representative total house income in the dwelling unit is $21261 +in.representative_income 21265 Representative total house income in the dwelling unit is $21265 +in.representative_income 21269 Representative total house income in the dwelling unit is $21269 +in.representative_income 21273 Representative total house income in the dwelling unit is $21273 +in.representative_income 21281 Representative total house income in the dwelling unit is $21281 +in.representative_income 21285 Representative total house income in the dwelling unit is $21285 +in.representative_income 21286 Representative total house income in the dwelling unit is $21286 +in.representative_income 21296 Representative total house income in the dwelling unit is $21296 +in.representative_income 21297 Representative total house income in the dwelling unit is $21297 +in.representative_income 21303 Representative total house income in the dwelling unit is $21303 +in.representative_income 21304 Representative total house income in the dwelling unit is $21304 +in.representative_income 21314 Representative total house income in the dwelling unit is $21314 +in.representative_income 21324 Representative total house income in the dwelling unit is $21324 +in.representative_income 21329 Representative total house income in the dwelling unit is $21329 +in.representative_income 21334 Representative total house income in the dwelling unit is $21334 +in.representative_income 21341 Representative total house income in the dwelling unit is $21341 +in.representative_income 21344 Representative total house income in the dwelling unit is $21344 +in.representative_income 21350 Representative total house income in the dwelling unit is $21350 +in.representative_income 21351 Representative total house income in the dwelling unit is $21351 +in.representative_income 21355 Representative total house income in the dwelling unit is $21355 +in.representative_income 21361 Representative total house income in the dwelling unit is $21361 +in.representative_income 21362 Representative total house income in the dwelling unit is $21362 +in.representative_income 21366 Representative total house income in the dwelling unit is $21366 +in.representative_income 21375 Representative total house income in the dwelling unit is $21375 +in.representative_income 21383 Representative total house income in the dwelling unit is $21383 +in.representative_income 21385 Representative total house income in the dwelling unit is $21385 +in.representative_income 21388 Representative total house income in the dwelling unit is $21388 +in.representative_income 21393 Representative total house income in the dwelling unit is $21393 +in.representative_income 21394 Representative total house income in the dwelling unit is $21394 +in.representative_income 21405 Representative total house income in the dwelling unit is $21405 +in.representative_income 21408 Representative total house income in the dwelling unit is $21408 +in.representative_income 21409 Representative total house income in the dwelling unit is $21409 +in.representative_income 21411 Representative total house income in the dwelling unit is $21411 +in.representative_income 21415 Representative total house income in the dwelling unit is $21415 +in.representative_income 21426 Representative total house income in the dwelling unit is $21426 +in.representative_income 21436 Representative total house income in the dwelling unit is $21436 +in.representative_income 21440 Representative total house income in the dwelling unit is $21440 +in.representative_income 21444 Representative total house income in the dwelling unit is $21444 +in.representative_income 21447 Representative total house income in the dwelling unit is $21447 +in.representative_income 21448 Representative total house income in the dwelling unit is $21448 +in.representative_income 21454 Representative total house income in the dwelling unit is $21454 +in.representative_income 21461 Representative total house income in the dwelling unit is $21461 +in.representative_income 21469 Representative total house income in the dwelling unit is $21469 +in.representative_income 21470 Representative total house income in the dwelling unit is $21470 +in.representative_income 21472 Representative total house income in the dwelling unit is $21472 +in.representative_income 21474 Representative total house income in the dwelling unit is $21474 +in.representative_income 21476 Representative total house income in the dwelling unit is $21476 +in.representative_income 21480 Representative total house income in the dwelling unit is $21480 +in.representative_income 21485 Representative total house income in the dwelling unit is $21485 +in.representative_income 21486 Representative total house income in the dwelling unit is $21486 +in.representative_income 21490 Representative total house income in the dwelling unit is $21490 +in.representative_income 21491 Representative total house income in the dwelling unit is $21491 +in.representative_income 21492 Representative total house income in the dwelling unit is $21492 +in.representative_income 21496 Representative total house income in the dwelling unit is $21496 +in.representative_income 21501 Representative total house income in the dwelling unit is $21501 +in.representative_income 21506 Representative total house income in the dwelling unit is $21506 +in.representative_income 21508 Representative total house income in the dwelling unit is $21508 +in.representative_income 21509 Representative total house income in the dwelling unit is $21509 +in.representative_income 21514 Representative total house income in the dwelling unit is $21514 +in.representative_income 21516 Representative total house income in the dwelling unit is $21516 +in.representative_income 21523 Representative total house income in the dwelling unit is $21523 +in.representative_income 21526 Representative total house income in the dwelling unit is $21526 +in.representative_income 21533 Representative total house income in the dwelling unit is $21533 +in.representative_income 21539 Representative total house income in the dwelling unit is $21539 +in.representative_income 21544 Representative total house income in the dwelling unit is $21544 +in.representative_income 21545 Representative total house income in the dwelling unit is $21545 +in.representative_income 21547 Representative total house income in the dwelling unit is $21547 +in.representative_income 21555 Representative total house income in the dwelling unit is $21555 +in.representative_income 21557 Representative total house income in the dwelling unit is $21557 +in.representative_income 21558 Representative total house income in the dwelling unit is $21558 +in.representative_income 21562 Representative total house income in the dwelling unit is $21562 +in.representative_income 21565 Representative total house income in the dwelling unit is $21565 +in.representative_income 21566 Representative total house income in the dwelling unit is $21566 +in.representative_income 21567 Representative total house income in the dwelling unit is $21567 +in.representative_income 21576 Representative total house income in the dwelling unit is $21576 +in.representative_income 21577 Representative total house income in the dwelling unit is $21577 +in.representative_income 21588 Representative total house income in the dwelling unit is $21588 +in.representative_income 21593 Representative total house income in the dwelling unit is $21593 +in.representative_income 21597 Representative total house income in the dwelling unit is $21597 +in.representative_income 21598 Representative total house income in the dwelling unit is $21598 +in.representative_income 21603 Representative total house income in the dwelling unit is $21603 +in.representative_income 21607 Representative total house income in the dwelling unit is $21607 +in.representative_income 21609 Representative total house income in the dwelling unit is $21609 +in.representative_income 21610 Representative total house income in the dwelling unit is $21610 +in.representative_income 21617 Representative total house income in the dwelling unit is $21617 +in.representative_income 21619 Representative total house income in the dwelling unit is $21619 +in.representative_income 21620 Representative total house income in the dwelling unit is $21620 +in.representative_income 21630 Representative total house income in the dwelling unit is $21630 +in.representative_income 21631 Representative total house income in the dwelling unit is $21631 +in.representative_income 21635 Representative total house income in the dwelling unit is $21635 +in.representative_income 21640 Representative total house income in the dwelling unit is $21640 +in.representative_income 21641 Representative total house income in the dwelling unit is $21641 +in.representative_income 21643 Representative total house income in the dwelling unit is $21643 +in.representative_income 21646 Representative total house income in the dwelling unit is $21646 +in.representative_income 21652 Representative total house income in the dwelling unit is $21652 +in.representative_income 21654 Representative total house income in the dwelling unit is $21654 +in.representative_income 21660 Representative total house income in the dwelling unit is $21660 +in.representative_income 21662 Representative total house income in the dwelling unit is $21662 +in.representative_income 21668 Representative total house income in the dwelling unit is $21668 +in.representative_income 21672 Representative total house income in the dwelling unit is $21672 +in.representative_income 21678 Representative total house income in the dwelling unit is $21678 +in.representative_income 21681 Representative total house income in the dwelling unit is $21681 +in.representative_income 21683 Representative total house income in the dwelling unit is $21683 +in.representative_income 21688 Representative total house income in the dwelling unit is $21688 +in.representative_income 21691 Representative total house income in the dwelling unit is $21691 +in.representative_income 21692 Representative total house income in the dwelling unit is $21692 +in.representative_income 21694 Representative total house income in the dwelling unit is $21694 +in.representative_income 21695 Representative total house income in the dwelling unit is $21695 +in.representative_income 21698 Representative total house income in the dwelling unit is $21698 +in.representative_income 21702 Representative total house income in the dwelling unit is $21702 +in.representative_income 21704 Representative total house income in the dwelling unit is $21704 +in.representative_income 21706 Representative total house income in the dwelling unit is $21706 +in.representative_income 21712 Representative total house income in the dwelling unit is $21712 +in.representative_income 21714 Representative total house income in the dwelling unit is $21714 +in.representative_income 21716 Representative total house income in the dwelling unit is $21716 +in.representative_income 21717 Representative total house income in the dwelling unit is $21717 +in.representative_income 21718 Representative total house income in the dwelling unit is $21718 +in.representative_income 21719 Representative total house income in the dwelling unit is $21719 +in.representative_income 21723 Representative total house income in the dwelling unit is $21723 +in.representative_income 21724 Representative total house income in the dwelling unit is $21724 +in.representative_income 21727 Representative total house income in the dwelling unit is $21727 +in.representative_income 21728 Representative total house income in the dwelling unit is $21728 +in.representative_income 21738 Representative total house income in the dwelling unit is $21738 +in.representative_income 21739 Representative total house income in the dwelling unit is $21739 +in.representative_income 21746 Representative total house income in the dwelling unit is $21746 +in.representative_income 21748 Representative total house income in the dwelling unit is $21748 +in.representative_income 21749 Representative total house income in the dwelling unit is $21749 +in.representative_income 21754 Representative total house income in the dwelling unit is $21754 +in.representative_income 21759 Representative total house income in the dwelling unit is $21759 +in.representative_income 21760 Representative total house income in the dwelling unit is $21760 +in.representative_income 21763 Representative total house income in the dwelling unit is $21763 +in.representative_income 21767 Representative total house income in the dwelling unit is $21767 +in.representative_income 21772 Representative total house income in the dwelling unit is $21772 +in.representative_income 21779 Representative total house income in the dwelling unit is $21779 +in.representative_income 21780 Representative total house income in the dwelling unit is $21780 +in.representative_income 21782 Representative total house income in the dwelling unit is $21782 +in.representative_income 21785 Representative total house income in the dwelling unit is $21785 +in.representative_income 21788 Representative total house income in the dwelling unit is $21788 +in.representative_income 21789 Representative total house income in the dwelling unit is $21789 +in.representative_income 21791 Representative total house income in the dwelling unit is $21791 +in.representative_income 21792 Representative total house income in the dwelling unit is $21792 +in.representative_income 21795 Representative total house income in the dwelling unit is $21795 +in.representative_income 21798 Representative total house income in the dwelling unit is $21798 +in.representative_income 21804 Representative total house income in the dwelling unit is $21804 +in.representative_income 21805 Representative total house income in the dwelling unit is $21805 +in.representative_income 21808 Representative total house income in the dwelling unit is $21808 +in.representative_income 21812 Representative total house income in the dwelling unit is $21812 +in.representative_income 21815 Representative total house income in the dwelling unit is $21815 +in.representative_income 21816 Representative total house income in the dwelling unit is $21816 +in.representative_income 21819 Representative total house income in the dwelling unit is $21819 +in.representative_income 21823 Representative total house income in the dwelling unit is $21823 +in.representative_income 21824 Representative total house income in the dwelling unit is $21824 +in.representative_income 21826 Representative total house income in the dwelling unit is $21826 +in.representative_income 21831 Representative total house income in the dwelling unit is $21831 +in.representative_income 21834 Representative total house income in the dwelling unit is $21834 +in.representative_income 21836 Representative total house income in the dwelling unit is $21836 +in.representative_income 21839 Representative total house income in the dwelling unit is $21839 +in.representative_income 21845 Representative total house income in the dwelling unit is $21845 +in.representative_income 21846 Representative total house income in the dwelling unit is $21846 +in.representative_income 21852 Representative total house income in the dwelling unit is $21852 +in.representative_income 21856 Representative total house income in the dwelling unit is $21856 +in.representative_income 21866 Representative total house income in the dwelling unit is $21866 +in.representative_income 21867 Representative total house income in the dwelling unit is $21867 +in.representative_income 21874 Representative total house income in the dwelling unit is $21874 +in.representative_income 21877 Representative total house income in the dwelling unit is $21877 +in.representative_income 21880 Representative total house income in the dwelling unit is $21880 +in.representative_income 21883 Representative total house income in the dwelling unit is $21883 +in.representative_income 21887 Representative total house income in the dwelling unit is $21887 +in.representative_income 21888 Representative total house income in the dwelling unit is $21888 +in.representative_income 21898 Representative total house income in the dwelling unit is $21898 +in.representative_income 21900 Representative total house income in the dwelling unit is $21900 +in.representative_income 21901 Representative total house income in the dwelling unit is $21901 +in.representative_income 21908 Representative total house income in the dwelling unit is $21908 +in.representative_income 21909 Representative total house income in the dwelling unit is $21909 +in.representative_income 21914 Representative total house income in the dwelling unit is $21914 +in.representative_income 21916 Representative total house income in the dwelling unit is $21916 +in.representative_income 21918 Representative total house income in the dwelling unit is $21918 +in.representative_income 21920 Representative total house income in the dwelling unit is $21920 +in.representative_income 21926 Representative total house income in the dwelling unit is $21926 +in.representative_income 21928 Representative total house income in the dwelling unit is $21928 +in.representative_income 21930 Representative total house income in the dwelling unit is $21930 +in.representative_income 21934 Representative total house income in the dwelling unit is $21934 +in.representative_income 21936 Representative total house income in the dwelling unit is $21936 +in.representative_income 21941 Representative total house income in the dwelling unit is $21941 +in.representative_income 21949 Representative total house income in the dwelling unit is $21949 +in.representative_income 21950 Representative total house income in the dwelling unit is $21950 +in.representative_income 21952 Representative total house income in the dwelling unit is $21952 +in.representative_income 21961 Representative total house income in the dwelling unit is $21961 +in.representative_income 21966 Representative total house income in the dwelling unit is $21966 +in.representative_income 21970 Representative total house income in the dwelling unit is $21970 +in.representative_income 21971 Representative total house income in the dwelling unit is $21971 +in.representative_income 21973 Representative total house income in the dwelling unit is $21973 +in.representative_income 21977 Representative total house income in the dwelling unit is $21977 +in.representative_income 21988 Representative total house income in the dwelling unit is $21988 +in.representative_income 21990 Representative total house income in the dwelling unit is $21990 +in.representative_income 21991 Representative total house income in the dwelling unit is $21991 +in.representative_income 21994 Representative total house income in the dwelling unit is $21994 +in.representative_income 21996 Representative total house income in the dwelling unit is $21996 +in.representative_income 21997 Representative total house income in the dwelling unit is $21997 +in.representative_income 21999 Representative total house income in the dwelling unit is $21999 +in.representative_income 22000 Representative total house income in the dwelling unit is $22000 +in.representative_income 22001 Representative total house income in the dwelling unit is $22001 +in.representative_income 22006 Representative total house income in the dwelling unit is $22006 +in.representative_income 22017 Representative total house income in the dwelling unit is $22017 +in.representative_income 22021 Representative total house income in the dwelling unit is $22021 +in.representative_income 22027 Representative total house income in the dwelling unit is $22027 +in.representative_income 22031 Representative total house income in the dwelling unit is $22031 +in.representative_income 22032 Representative total house income in the dwelling unit is $22032 +in.representative_income 22038 Representative total house income in the dwelling unit is $22038 +in.representative_income 22041 Representative total house income in the dwelling unit is $22041 +in.representative_income 22042 Representative total house income in the dwelling unit is $22042 +in.representative_income 22043 Representative total house income in the dwelling unit is $22043 +in.representative_income 22049 Representative total house income in the dwelling unit is $22049 +in.representative_income 22051 Representative total house income in the dwelling unit is $22051 +in.representative_income 22058 Representative total house income in the dwelling unit is $22058 +in.representative_income 22059 Representative total house income in the dwelling unit is $22059 +in.representative_income 22062 Representative total house income in the dwelling unit is $22062 +in.representative_income 22063 Representative total house income in the dwelling unit is $22063 +in.representative_income 22070 Representative total house income in the dwelling unit is $22070 +in.representative_income 22072 Representative total house income in the dwelling unit is $22072 +in.representative_income 22073 Representative total house income in the dwelling unit is $22073 +in.representative_income 22077 Representative total house income in the dwelling unit is $22077 +in.representative_income 22083 Representative total house income in the dwelling unit is $22083 +in.representative_income 22085 Representative total house income in the dwelling unit is $22085 +in.representative_income 22086 Representative total house income in the dwelling unit is $22086 +in.representative_income 22090 Representative total house income in the dwelling unit is $22090 +in.representative_income 22091 Representative total house income in the dwelling unit is $22091 +in.representative_income 22093 Representative total house income in the dwelling unit is $22093 +in.representative_income 22094 Representative total house income in the dwelling unit is $22094 +in.representative_income 22096 Representative total house income in the dwelling unit is $22096 +in.representative_income 22097 Representative total house income in the dwelling unit is $22097 +in.representative_income 22102 Representative total house income in the dwelling unit is $22102 +in.representative_income 22107 Representative total house income in the dwelling unit is $22107 +in.representative_income 22109 Representative total house income in the dwelling unit is $22109 +in.representative_income 22110 Representative total house income in the dwelling unit is $22110 +in.representative_income 22114 Representative total house income in the dwelling unit is $22114 +in.representative_income 22115 Representative total house income in the dwelling unit is $22115 +in.representative_income 22122 Representative total house income in the dwelling unit is $22122 +in.representative_income 22125 Representative total house income in the dwelling unit is $22125 +in.representative_income 22128 Representative total house income in the dwelling unit is $22128 +in.representative_income 22132 Representative total house income in the dwelling unit is $22132 +in.representative_income 22133 Representative total house income in the dwelling unit is $22133 +in.representative_income 22142 Representative total house income in the dwelling unit is $22142 +in.representative_income 22145 Representative total house income in the dwelling unit is $22145 +in.representative_income 22147 Representative total house income in the dwelling unit is $22147 +in.representative_income 22148 Representative total house income in the dwelling unit is $22148 +in.representative_income 22150 Representative total house income in the dwelling unit is $22150 +in.representative_income 22154 Representative total house income in the dwelling unit is $22154 +in.representative_income 22156 Representative total house income in the dwelling unit is $22156 +in.representative_income 22157 Representative total house income in the dwelling unit is $22157 +in.representative_income 22162 Representative total house income in the dwelling unit is $22162 +in.representative_income 22163 Representative total house income in the dwelling unit is $22163 +in.representative_income 22167 Representative total house income in the dwelling unit is $22167 +in.representative_income 22168 Representative total house income in the dwelling unit is $22168 +in.representative_income 22173 Representative total house income in the dwelling unit is $22173 +in.representative_income 22177 Representative total house income in the dwelling unit is $22177 +in.representative_income 22178 Representative total house income in the dwelling unit is $22178 +in.representative_income 22182 Representative total house income in the dwelling unit is $22182 +in.representative_income 22183 Representative total house income in the dwelling unit is $22183 +in.representative_income 22187 Representative total house income in the dwelling unit is $22187 +in.representative_income 22193 Representative total house income in the dwelling unit is $22193 +in.representative_income 22199 Representative total house income in the dwelling unit is $22199 +in.representative_income 22200 Representative total house income in the dwelling unit is $22200 +in.representative_income 22203 Representative total house income in the dwelling unit is $22203 +in.representative_income 22204 Representative total house income in the dwelling unit is $22204 +in.representative_income 22205 Representative total house income in the dwelling unit is $22205 +in.representative_income 22209 Representative total house income in the dwelling unit is $22209 +in.representative_income 22213 Representative total house income in the dwelling unit is $22213 +in.representative_income 22215 Representative total house income in the dwelling unit is $22215 +in.representative_income 22217 Representative total house income in the dwelling unit is $22217 +in.representative_income 22220 Representative total house income in the dwelling unit is $22220 +in.representative_income 22221 Representative total house income in the dwelling unit is $22221 +in.representative_income 22222 Representative total house income in the dwelling unit is $22222 +in.representative_income 22223 Representative total house income in the dwelling unit is $22223 +in.representative_income 22224 Representative total house income in the dwelling unit is $22224 +in.representative_income 22228 Representative total house income in the dwelling unit is $22228 +in.representative_income 22231 Representative total house income in the dwelling unit is $22231 +in.representative_income 22233 Representative total house income in the dwelling unit is $22233 +in.representative_income 22236 Representative total house income in the dwelling unit is $22236 +in.representative_income 22237 Representative total house income in the dwelling unit is $22237 +in.representative_income 22238 Representative total house income in the dwelling unit is $22238 +in.representative_income 22239 Representative total house income in the dwelling unit is $22239 +in.representative_income 22241 Representative total house income in the dwelling unit is $22241 +in.representative_income 22242 Representative total house income in the dwelling unit is $22242 +in.representative_income 22247 Representative total house income in the dwelling unit is $22247 +in.representative_income 22249 Representative total house income in the dwelling unit is $22249 +in.representative_income 22252 Representative total house income in the dwelling unit is $22252 +in.representative_income 22253 Representative total house income in the dwelling unit is $22253 +in.representative_income 22257 Representative total house income in the dwelling unit is $22257 +in.representative_income 22258 Representative total house income in the dwelling unit is $22258 +in.representative_income 22262 Representative total house income in the dwelling unit is $22262 +in.representative_income 22264 Representative total house income in the dwelling unit is $22264 +in.representative_income 22268 Representative total house income in the dwelling unit is $22268 +in.representative_income 22273 Representative total house income in the dwelling unit is $22273 +in.representative_income 22274 Representative total house income in the dwelling unit is $22274 +in.representative_income 22279 Representative total house income in the dwelling unit is $22279 +in.representative_income 22284 Representative total house income in the dwelling unit is $22284 +in.representative_income 22286 Representative total house income in the dwelling unit is $22286 +in.representative_income 22290 Representative total house income in the dwelling unit is $22290 +in.representative_income 22292 Representative total house income in the dwelling unit is $22292 +in.representative_income 22294 Representative total house income in the dwelling unit is $22294 +in.representative_income 22295 Representative total house income in the dwelling unit is $22295 +in.representative_income 22296 Representative total house income in the dwelling unit is $22296 +in.representative_income 22300 Representative total house income in the dwelling unit is $22300 +in.representative_income 22304 Representative total house income in the dwelling unit is $22304 +in.representative_income 22306 Representative total house income in the dwelling unit is $22306 +in.representative_income 22310 Representative total house income in the dwelling unit is $22310 +in.representative_income 22312 Representative total house income in the dwelling unit is $22312 +in.representative_income 22314 Representative total house income in the dwelling unit is $22314 +in.representative_income 22316 Representative total house income in the dwelling unit is $22316 +in.representative_income 22322 Representative total house income in the dwelling unit is $22322 +in.representative_income 22324 Representative total house income in the dwelling unit is $22324 +in.representative_income 22328 Representative total house income in the dwelling unit is $22328 +in.representative_income 22332 Representative total house income in the dwelling unit is $22332 +in.representative_income 22333 Representative total house income in the dwelling unit is $22333 +in.representative_income 22336 Representative total house income in the dwelling unit is $22336 +in.representative_income 22341 Representative total house income in the dwelling unit is $22341 +in.representative_income 22344 Representative total house income in the dwelling unit is $22344 +in.representative_income 22346 Representative total house income in the dwelling unit is $22346 +in.representative_income 22347 Representative total house income in the dwelling unit is $22347 +in.representative_income 22348 Representative total house income in the dwelling unit is $22348 +in.representative_income 22349 Representative total house income in the dwelling unit is $22349 +in.representative_income 22351 Representative total house income in the dwelling unit is $22351 +in.representative_income 22352 Representative total house income in the dwelling unit is $22352 +in.representative_income 22355 Representative total house income in the dwelling unit is $22355 +in.representative_income 22357 Representative total house income in the dwelling unit is $22357 +in.representative_income 22360 Representative total house income in the dwelling unit is $22360 +in.representative_income 22365 Representative total house income in the dwelling unit is $22365 +in.representative_income 22369 Representative total house income in the dwelling unit is $22369 +in.representative_income 22372 Representative total house income in the dwelling unit is $22372 +in.representative_income 22375 Representative total house income in the dwelling unit is $22375 +in.representative_income 22377 Representative total house income in the dwelling unit is $22377 +in.representative_income 22379 Representative total house income in the dwelling unit is $22379 +in.representative_income 22382 Representative total house income in the dwelling unit is $22382 +in.representative_income 22383 Representative total house income in the dwelling unit is $22383 +in.representative_income 22385 Representative total house income in the dwelling unit is $22385 +in.representative_income 22392 Representative total house income in the dwelling unit is $22392 +in.representative_income 22393 Representative total house income in the dwelling unit is $22393 +in.representative_income 22396 Representative total house income in the dwelling unit is $22396 +in.representative_income 22400 Representative total house income in the dwelling unit is $22400 +in.representative_income 22404 Representative total house income in the dwelling unit is $22404 +in.representative_income 22405 Representative total house income in the dwelling unit is $22405 +in.representative_income 22410 Representative total house income in the dwelling unit is $22410 +in.representative_income 22414 Representative total house income in the dwelling unit is $22414 +in.representative_income 22419 Representative total house income in the dwelling unit is $22419 +in.representative_income 22420 Representative total house income in the dwelling unit is $22420 +in.representative_income 22425 Representative total house income in the dwelling unit is $22425 +in.representative_income 22428 Representative total house income in the dwelling unit is $22428 +in.representative_income 22430 Representative total house income in the dwelling unit is $22430 +in.representative_income 22434 Representative total house income in the dwelling unit is $22434 +in.representative_income 22435 Representative total house income in the dwelling unit is $22435 +in.representative_income 22436 Representative total house income in the dwelling unit is $22436 +in.representative_income 22439 Representative total house income in the dwelling unit is $22439 +in.representative_income 22440 Representative total house income in the dwelling unit is $22440 +in.representative_income 22441 Representative total house income in the dwelling unit is $22441 +in.representative_income 22445 Representative total house income in the dwelling unit is $22445 +in.representative_income 22446 Representative total house income in the dwelling unit is $22446 +in.representative_income 22452 Representative total house income in the dwelling unit is $22452 +in.representative_income 22454 Representative total house income in the dwelling unit is $22454 +in.representative_income 22456 Representative total house income in the dwelling unit is $22456 +in.representative_income 22460 Representative total house income in the dwelling unit is $22460 +in.representative_income 22461 Representative total house income in the dwelling unit is $22461 +in.representative_income 22464 Representative total house income in the dwelling unit is $22464 +in.representative_income 22465 Representative total house income in the dwelling unit is $22465 +in.representative_income 22467 Representative total house income in the dwelling unit is $22467 +in.representative_income 22469 Representative total house income in the dwelling unit is $22469 +in.representative_income 22473 Representative total house income in the dwelling unit is $22473 +in.representative_income 22476 Representative total house income in the dwelling unit is $22476 +in.representative_income 22478 Representative total house income in the dwelling unit is $22478 +in.representative_income 22484 Representative total house income in the dwelling unit is $22484 +in.representative_income 22486 Representative total house income in the dwelling unit is $22486 +in.representative_income 22488 Representative total house income in the dwelling unit is $22488 +in.representative_income 22489 Representative total house income in the dwelling unit is $22489 +in.representative_income 22495 Representative total house income in the dwelling unit is $22495 +in.representative_income 22496 Representative total house income in the dwelling unit is $22496 +in.representative_income 22499 Representative total house income in the dwelling unit is $22499 +in.representative_income 22500 Representative total house income in the dwelling unit is $22500 +in.representative_income 22501 Representative total house income in the dwelling unit is $22501 +in.representative_income 22503 Representative total house income in the dwelling unit is $22503 +in.representative_income 22505 Representative total house income in the dwelling unit is $22505 +in.representative_income 22506 Representative total house income in the dwelling unit is $22506 +in.representative_income 22507 Representative total house income in the dwelling unit is $22507 +in.representative_income 22511 Representative total house income in the dwelling unit is $22511 +in.representative_income 22512 Representative total house income in the dwelling unit is $22512 +in.representative_income 22516 Representative total house income in the dwelling unit is $22516 +in.representative_income 22517 Representative total house income in the dwelling unit is $22517 +in.representative_income 22521 Representative total house income in the dwelling unit is $22521 +in.representative_income 22523 Representative total house income in the dwelling unit is $22523 +in.representative_income 22526 Representative total house income in the dwelling unit is $22526 +in.representative_income 22527 Representative total house income in the dwelling unit is $22527 +in.representative_income 22532 Representative total house income in the dwelling unit is $22532 +in.representative_income 22537 Representative total house income in the dwelling unit is $22537 +in.representative_income 22538 Representative total house income in the dwelling unit is $22538 +in.representative_income 22542 Representative total house income in the dwelling unit is $22542 +in.representative_income 22543 Representative total house income in the dwelling unit is $22543 +in.representative_income 22546 Representative total house income in the dwelling unit is $22546 +in.representative_income 22547 Representative total house income in the dwelling unit is $22547 +in.representative_income 22558 Representative total house income in the dwelling unit is $22558 +in.representative_income 22560 Representative total house income in the dwelling unit is $22560 +in.representative_income 22562 Representative total house income in the dwelling unit is $22562 +in.representative_income 22564 Representative total house income in the dwelling unit is $22564 +in.representative_income 22568 Representative total house income in the dwelling unit is $22568 +in.representative_income 22569 Representative total house income in the dwelling unit is $22569 +in.representative_income 22571 Representative total house income in the dwelling unit is $22571 +in.representative_income 22579 Representative total house income in the dwelling unit is $22579 +in.representative_income 22582 Representative total house income in the dwelling unit is $22582 +in.representative_income 22583 Representative total house income in the dwelling unit is $22583 +in.representative_income 22585 Representative total house income in the dwelling unit is $22585 +in.representative_income 22587 Representative total house income in the dwelling unit is $22587 +in.representative_income 22588 Representative total house income in the dwelling unit is $22588 +in.representative_income 22589 Representative total house income in the dwelling unit is $22589 +in.representative_income 22590 Representative total house income in the dwelling unit is $22590 +in.representative_income 22595 Representative total house income in the dwelling unit is $22595 +in.representative_income 22597 Representative total house income in the dwelling unit is $22597 +in.representative_income 22599 Representative total house income in the dwelling unit is $22599 +in.representative_income 22604 Representative total house income in the dwelling unit is $22604 +in.representative_income 22607 Representative total house income in the dwelling unit is $22607 +in.representative_income 22608 Representative total house income in the dwelling unit is $22608 +in.representative_income 22615 Representative total house income in the dwelling unit is $22615 +in.representative_income 22616 Representative total house income in the dwelling unit is $22616 +in.representative_income 22617 Representative total house income in the dwelling unit is $22617 +in.representative_income 22618 Representative total house income in the dwelling unit is $22618 +in.representative_income 22619 Representative total house income in the dwelling unit is $22619 +in.representative_income 22620 Representative total house income in the dwelling unit is $22620 +in.representative_income 22621 Representative total house income in the dwelling unit is $22621 +in.representative_income 22623 Representative total house income in the dwelling unit is $22623 +in.representative_income 22625 Representative total house income in the dwelling unit is $22625 +in.representative_income 22626 Representative total house income in the dwelling unit is $22626 +in.representative_income 22627 Representative total house income in the dwelling unit is $22627 +in.representative_income 22631 Representative total house income in the dwelling unit is $22631 +in.representative_income 22636 Representative total house income in the dwelling unit is $22636 +in.representative_income 22637 Representative total house income in the dwelling unit is $22637 +in.representative_income 22647 Representative total house income in the dwelling unit is $22647 +in.representative_income 22650 Representative total house income in the dwelling unit is $22650 +in.representative_income 22651 Representative total house income in the dwelling unit is $22651 +in.representative_income 22653 Representative total house income in the dwelling unit is $22653 +in.representative_income 22658 Representative total house income in the dwelling unit is $22658 +in.representative_income 22663 Representative total house income in the dwelling unit is $22663 +in.representative_income 22664 Representative total house income in the dwelling unit is $22664 +in.representative_income 22668 Representative total house income in the dwelling unit is $22668 +in.representative_income 22670 Representative total house income in the dwelling unit is $22670 +in.representative_income 22671 Representative total house income in the dwelling unit is $22671 +in.representative_income 22672 Representative total house income in the dwelling unit is $22672 +in.representative_income 22674 Representative total house income in the dwelling unit is $22674 +in.representative_income 22678 Representative total house income in the dwelling unit is $22678 +in.representative_income 22679 Representative total house income in the dwelling unit is $22679 +in.representative_income 22681 Representative total house income in the dwelling unit is $22681 +in.representative_income 22683 Representative total house income in the dwelling unit is $22683 +in.representative_income 22688 Representative total house income in the dwelling unit is $22688 +in.representative_income 22690 Representative total house income in the dwelling unit is $22690 +in.representative_income 22691 Representative total house income in the dwelling unit is $22691 +in.representative_income 22692 Representative total house income in the dwelling unit is $22692 +in.representative_income 22695 Representative total house income in the dwelling unit is $22695 +in.representative_income 22701 Representative total house income in the dwelling unit is $22701 +in.representative_income 22703 Representative total house income in the dwelling unit is $22703 +in.representative_income 22708 Representative total house income in the dwelling unit is $22708 +in.representative_income 22712 Representative total house income in the dwelling unit is $22712 +in.representative_income 22713 Representative total house income in the dwelling unit is $22713 +in.representative_income 22714 Representative total house income in the dwelling unit is $22714 +in.representative_income 22716 Representative total house income in the dwelling unit is $22716 +in.representative_income 22718 Representative total house income in the dwelling unit is $22718 +in.representative_income 22723 Representative total house income in the dwelling unit is $22723 +in.representative_income 22726 Representative total house income in the dwelling unit is $22726 +in.representative_income 22728 Representative total house income in the dwelling unit is $22728 +in.representative_income 22733 Representative total house income in the dwelling unit is $22733 +in.representative_income 22736 Representative total house income in the dwelling unit is $22736 +in.representative_income 22737 Representative total house income in the dwelling unit is $22737 +in.representative_income 22738 Representative total house income in the dwelling unit is $22738 +in.representative_income 22743 Representative total house income in the dwelling unit is $22743 +in.representative_income 22744 Representative total house income in the dwelling unit is $22744 +in.representative_income 22745 Representative total house income in the dwelling unit is $22745 +in.representative_income 22746 Representative total house income in the dwelling unit is $22746 +in.representative_income 22748 Representative total house income in the dwelling unit is $22748 +in.representative_income 22754 Representative total house income in the dwelling unit is $22754 +in.representative_income 22755 Representative total house income in the dwelling unit is $22755 +in.representative_income 22757 Representative total house income in the dwelling unit is $22757 +in.representative_income 22759 Representative total house income in the dwelling unit is $22759 +in.representative_income 22763 Representative total house income in the dwelling unit is $22763 +in.representative_income 22766 Representative total house income in the dwelling unit is $22766 +in.representative_income 22767 Representative total house income in the dwelling unit is $22767 +in.representative_income 22768 Representative total house income in the dwelling unit is $22768 +in.representative_income 22777 Representative total house income in the dwelling unit is $22777 +in.representative_income 22779 Representative total house income in the dwelling unit is $22779 +in.representative_income 22783 Representative total house income in the dwelling unit is $22783 +in.representative_income 22785 Representative total house income in the dwelling unit is $22785 +in.representative_income 22789 Representative total house income in the dwelling unit is $22789 +in.representative_income 22795 Representative total house income in the dwelling unit is $22795 +in.representative_income 22798 Representative total house income in the dwelling unit is $22798 +in.representative_income 22799 Representative total house income in the dwelling unit is $22799 +in.representative_income 22800 Representative total house income in the dwelling unit is $22800 +in.representative_income 22806 Representative total house income in the dwelling unit is $22806 +in.representative_income 22809 Representative total house income in the dwelling unit is $22809 +in.representative_income 22811 Representative total house income in the dwelling unit is $22811 +in.representative_income 22816 Representative total house income in the dwelling unit is $22816 +in.representative_income 22819 Representative total house income in the dwelling unit is $22819 +in.representative_income 22820 Representative total house income in the dwelling unit is $22820 +in.representative_income 22822 Representative total house income in the dwelling unit is $22822 +in.representative_income 22826 Representative total house income in the dwelling unit is $22826 +in.representative_income 22829 Representative total house income in the dwelling unit is $22829 +in.representative_income 22835 Representative total house income in the dwelling unit is $22835 +in.representative_income 22839 Representative total house income in the dwelling unit is $22839 +in.representative_income 22841 Representative total house income in the dwelling unit is $22841 +in.representative_income 22843 Representative total house income in the dwelling unit is $22843 +in.representative_income 22846 Representative total house income in the dwelling unit is $22846 +in.representative_income 22849 Representative total house income in the dwelling unit is $22849 +in.representative_income 22852 Representative total house income in the dwelling unit is $22852 +in.representative_income 22856 Representative total house income in the dwelling unit is $22856 +in.representative_income 22864 Representative total house income in the dwelling unit is $22864 +in.representative_income 22871 Representative total house income in the dwelling unit is $22871 +in.representative_income 22872 Representative total house income in the dwelling unit is $22872 +in.representative_income 22874 Representative total house income in the dwelling unit is $22874 +in.representative_income 22875 Representative total house income in the dwelling unit is $22875 +in.representative_income 22878 Representative total house income in the dwelling unit is $22878 +in.representative_income 22880 Representative total house income in the dwelling unit is $22880 +in.representative_income 22885 Representative total house income in the dwelling unit is $22885 +in.representative_income 22888 Representative total house income in the dwelling unit is $22888 +in.representative_income 22895 Representative total house income in the dwelling unit is $22895 +in.representative_income 22898 Representative total house income in the dwelling unit is $22898 +in.representative_income 22906 Representative total house income in the dwelling unit is $22906 +in.representative_income 22908 Representative total house income in the dwelling unit is $22908 +in.representative_income 22910 Representative total house income in the dwelling unit is $22910 +in.representative_income 22917 Representative total house income in the dwelling unit is $22917 +in.representative_income 22918 Representative total house income in the dwelling unit is $22918 +in.representative_income 22919 Representative total house income in the dwelling unit is $22919 +in.representative_income 22920 Representative total house income in the dwelling unit is $22920 +in.representative_income 22928 Representative total house income in the dwelling unit is $22928 +in.representative_income 22930 Representative total house income in the dwelling unit is $22930 +in.representative_income 22933 Representative total house income in the dwelling unit is $22933 +in.representative_income 22938 Representative total house income in the dwelling unit is $22938 +in.representative_income 22940 Representative total house income in the dwelling unit is $22940 +in.representative_income 22948 Representative total house income in the dwelling unit is $22948 +in.representative_income 22949 Representative total house income in the dwelling unit is $22949 +in.representative_income 22950 Representative total house income in the dwelling unit is $22950 +in.representative_income 22960 Representative total house income in the dwelling unit is $22960 +in.representative_income 22961 Representative total house income in the dwelling unit is $22961 +in.representative_income 22963 Representative total house income in the dwelling unit is $22963 +in.representative_income 22969 Representative total house income in the dwelling unit is $22969 +in.representative_income 22971 Representative total house income in the dwelling unit is $22971 +in.representative_income 22972 Representative total house income in the dwelling unit is $22972 +in.representative_income 22980 Representative total house income in the dwelling unit is $22980 +in.representative_income 22981 Representative total house income in the dwelling unit is $22981 +in.representative_income 22982 Representative total house income in the dwelling unit is $22982 +in.representative_income 22985 Representative total house income in the dwelling unit is $22985 +in.representative_income 22990 Representative total house income in the dwelling unit is $22990 +in.representative_income 22991 Representative total house income in the dwelling unit is $22991 +in.representative_income 22993 Representative total house income in the dwelling unit is $22993 +in.representative_income 22997 Representative total house income in the dwelling unit is $22997 +in.representative_income 22998 Representative total house income in the dwelling unit is $22998 +in.representative_income 23001 Representative total house income in the dwelling unit is $23001 +in.representative_income 23002 Representative total house income in the dwelling unit is $23002 +in.representative_income 23003 Representative total house income in the dwelling unit is $23003 +in.representative_income 23007 Representative total house income in the dwelling unit is $23007 +in.representative_income 23008 Representative total house income in the dwelling unit is $23008 +in.representative_income 23012 Representative total house income in the dwelling unit is $23012 +in.representative_income 23014 Representative total house income in the dwelling unit is $23014 +in.representative_income 23016 Representative total house income in the dwelling unit is $23016 +in.representative_income 23022 Representative total house income in the dwelling unit is $23022 +in.representative_income 23025 Representative total house income in the dwelling unit is $23025 +in.representative_income 23026 Representative total house income in the dwelling unit is $23026 +in.representative_income 23031 Representative total house income in the dwelling unit is $23031 +in.representative_income 23033 Representative total house income in the dwelling unit is $23033 +in.representative_income 23036 Representative total house income in the dwelling unit is $23036 +in.representative_income 23041 Representative total house income in the dwelling unit is $23041 +in.representative_income 23043 Representative total house income in the dwelling unit is $23043 +in.representative_income 23047 Representative total house income in the dwelling unit is $23047 +in.representative_income 23052 Representative total house income in the dwelling unit is $23052 +in.representative_income 23053 Representative total house income in the dwelling unit is $23053 +in.representative_income 23057 Representative total house income in the dwelling unit is $23057 +in.representative_income 23062 Representative total house income in the dwelling unit is $23062 +in.representative_income 23063 Representative total house income in the dwelling unit is $23063 +in.representative_income 23064 Representative total house income in the dwelling unit is $23064 +in.representative_income 23067 Representative total house income in the dwelling unit is $23067 +in.representative_income 23069 Representative total house income in the dwelling unit is $23069 +in.representative_income 23072 Representative total house income in the dwelling unit is $23072 +in.representative_income 23074 Representative total house income in the dwelling unit is $23074 +in.representative_income 23079 Representative total house income in the dwelling unit is $23079 +in.representative_income 23080 Representative total house income in the dwelling unit is $23080 +in.representative_income 23082 Representative total house income in the dwelling unit is $23082 +in.representative_income 23085 Representative total house income in the dwelling unit is $23085 +in.representative_income 23087 Representative total house income in the dwelling unit is $23087 +in.representative_income 23090 Representative total house income in the dwelling unit is $23090 +in.representative_income 23096 Representative total house income in the dwelling unit is $23096 +in.representative_income 23099 Representative total house income in the dwelling unit is $23099 +in.representative_income 23104 Representative total house income in the dwelling unit is $23104 +in.representative_income 23105 Representative total house income in the dwelling unit is $23105 +in.representative_income 23107 Representative total house income in the dwelling unit is $23107 +in.representative_income 23109 Representative total house income in the dwelling unit is $23109 +in.representative_income 23111 Representative total house income in the dwelling unit is $23111 +in.representative_income 23112 Representative total house income in the dwelling unit is $23112 +in.representative_income 23122 Representative total house income in the dwelling unit is $23122 +in.representative_income 23123 Representative total house income in the dwelling unit is $23123 +in.representative_income 23132 Representative total house income in the dwelling unit is $23132 +in.representative_income 23133 Representative total house income in the dwelling unit is $23133 +in.representative_income 23135 Representative total house income in the dwelling unit is $23135 +in.representative_income 23142 Representative total house income in the dwelling unit is $23142 +in.representative_income 23143 Representative total house income in the dwelling unit is $23143 +in.representative_income 23146 Representative total house income in the dwelling unit is $23146 +in.representative_income 23154 Representative total house income in the dwelling unit is $23154 +in.representative_income 23156 Representative total house income in the dwelling unit is $23156 +in.representative_income 23160 Representative total house income in the dwelling unit is $23160 +in.representative_income 23162 Representative total house income in the dwelling unit is $23162 +in.representative_income 23165 Representative total house income in the dwelling unit is $23165 +in.representative_income 23166 Representative total house income in the dwelling unit is $23166 +in.representative_income 23170 Representative total house income in the dwelling unit is $23170 +in.representative_income 23173 Representative total house income in the dwelling unit is $23173 +in.representative_income 23180 Representative total house income in the dwelling unit is $23180 +in.representative_income 23183 Representative total house income in the dwelling unit is $23183 +in.representative_income 23186 Representative total house income in the dwelling unit is $23186 +in.representative_income 23187 Representative total house income in the dwelling unit is $23187 +in.representative_income 23191 Representative total house income in the dwelling unit is $23191 +in.representative_income 23194 Representative total house income in the dwelling unit is $23194 +in.representative_income 23197 Representative total house income in the dwelling unit is $23197 +in.representative_income 23202 Representative total house income in the dwelling unit is $23202 +in.representative_income 23205 Representative total house income in the dwelling unit is $23205 +in.representative_income 23207 Representative total house income in the dwelling unit is $23207 +in.representative_income 23208 Representative total house income in the dwelling unit is $23208 +in.representative_income 23210 Representative total house income in the dwelling unit is $23210 +in.representative_income 23212 Representative total house income in the dwelling unit is $23212 +in.representative_income 23213 Representative total house income in the dwelling unit is $23213 +in.representative_income 23218 Representative total house income in the dwelling unit is $23218 +in.representative_income 23219 Representative total house income in the dwelling unit is $23219 +in.representative_income 23223 Representative total house income in the dwelling unit is $23223 +in.representative_income 23229 Representative total house income in the dwelling unit is $23229 +in.representative_income 23230 Representative total house income in the dwelling unit is $23230 +in.representative_income 23231 Representative total house income in the dwelling unit is $23231 +in.representative_income 23232 Representative total house income in the dwelling unit is $23232 +in.representative_income 23233 Representative total house income in the dwelling unit is $23233 +in.representative_income 23238 Representative total house income in the dwelling unit is $23238 +in.representative_income 23240 Representative total house income in the dwelling unit is $23240 +in.representative_income 23243 Representative total house income in the dwelling unit is $23243 +in.representative_income 23249 Representative total house income in the dwelling unit is $23249 +in.representative_income 23254 Representative total house income in the dwelling unit is $23254 +in.representative_income 23260 Representative total house income in the dwelling unit is $23260 +in.representative_income 23263 Representative total house income in the dwelling unit is $23263 +in.representative_income 23264 Representative total house income in the dwelling unit is $23264 +in.representative_income 23268 Representative total house income in the dwelling unit is $23268 +in.representative_income 23272 Representative total house income in the dwelling unit is $23272 +in.representative_income 23273 Representative total house income in the dwelling unit is $23273 +in.representative_income 23276 Representative total house income in the dwelling unit is $23276 +in.representative_income 23280 Representative total house income in the dwelling unit is $23280 +in.representative_income 23284 Representative total house income in the dwelling unit is $23284 +in.representative_income 23293 Representative total house income in the dwelling unit is $23293 +in.representative_income 23296 Representative total house income in the dwelling unit is $23296 +in.representative_income 23298 Representative total house income in the dwelling unit is $23298 +in.representative_income 23300 Representative total house income in the dwelling unit is $23300 +in.representative_income 23304 Representative total house income in the dwelling unit is $23304 +in.representative_income 23305 Representative total house income in the dwelling unit is $23305 +in.representative_income 23307 Representative total house income in the dwelling unit is $23307 +in.representative_income 23310 Representative total house income in the dwelling unit is $23310 +in.representative_income 23316 Representative total house income in the dwelling unit is $23316 +in.representative_income 23324 Representative total house income in the dwelling unit is $23324 +in.representative_income 23328 Representative total house income in the dwelling unit is $23328 +in.representative_income 23333 Representative total house income in the dwelling unit is $23333 +in.representative_income 23334 Representative total house income in the dwelling unit is $23334 +in.representative_income 23338 Representative total house income in the dwelling unit is $23338 +in.representative_income 23344 Representative total house income in the dwelling unit is $23344 +in.representative_income 23347 Representative total house income in the dwelling unit is $23347 +in.representative_income 23348 Representative total house income in the dwelling unit is $23348 +in.representative_income 23355 Representative total house income in the dwelling unit is $23355 +in.representative_income 23359 Representative total house income in the dwelling unit is $23359 +in.representative_income 23362 Representative total house income in the dwelling unit is $23362 +in.representative_income 23382 Representative total house income in the dwelling unit is $23382 +in.representative_income 23385 Representative total house income in the dwelling unit is $23385 +in.representative_income 23391 Representative total house income in the dwelling unit is $23391 +in.representative_income 23393 Representative total house income in the dwelling unit is $23393 +in.representative_income 23401 Representative total house income in the dwelling unit is $23401 +in.representative_income 23402 Representative total house income in the dwelling unit is $23402 +in.representative_income 23405 Representative total house income in the dwelling unit is $23405 +in.representative_income 23409 Representative total house income in the dwelling unit is $23409 +in.representative_income 23412 Representative total house income in the dwelling unit is $23412 +in.representative_income 23414 Representative total house income in the dwelling unit is $23414 +in.representative_income 23420 Representative total house income in the dwelling unit is $23420 +in.representative_income 23422 Representative total house income in the dwelling unit is $23422 +in.representative_income 23424 Representative total house income in the dwelling unit is $23424 +in.representative_income 23425 Representative total house income in the dwelling unit is $23425 +in.representative_income 23433 Representative total house income in the dwelling unit is $23433 +in.representative_income 23435 Representative total house income in the dwelling unit is $23435 +in.representative_income 23438 Representative total house income in the dwelling unit is $23438 +in.representative_income 23443 Representative total house income in the dwelling unit is $23443 +in.representative_income 23445 Representative total house income in the dwelling unit is $23445 +in.representative_income 23447 Representative total house income in the dwelling unit is $23447 +in.representative_income 23452 Representative total house income in the dwelling unit is $23452 +in.representative_income 23455 Representative total house income in the dwelling unit is $23455 +in.representative_income 23456 Representative total house income in the dwelling unit is $23456 +in.representative_income 23457 Representative total house income in the dwelling unit is $23457 +in.representative_income 23465 Representative total house income in the dwelling unit is $23465 +in.representative_income 23466 Representative total house income in the dwelling unit is $23466 +in.representative_income 23477 Representative total house income in the dwelling unit is $23477 +in.representative_income 23479 Representative total house income in the dwelling unit is $23479 +in.representative_income 23482 Representative total house income in the dwelling unit is $23482 +in.representative_income 23486 Representative total house income in the dwelling unit is $23486 +in.representative_income 23487 Representative total house income in the dwelling unit is $23487 +in.representative_income 23490 Representative total house income in the dwelling unit is $23490 +in.representative_income 23491 Representative total house income in the dwelling unit is $23491 +in.representative_income 23497 Representative total house income in the dwelling unit is $23497 +in.representative_income 23498 Representative total house income in the dwelling unit is $23498 +in.representative_income 23501 Representative total house income in the dwelling unit is $23501 +in.representative_income 23506 Representative total house income in the dwelling unit is $23506 +in.representative_income 23507 Representative total house income in the dwelling unit is $23507 +in.representative_income 23508 Representative total house income in the dwelling unit is $23508 +in.representative_income 23514 Representative total house income in the dwelling unit is $23514 +in.representative_income 23517 Representative total house income in the dwelling unit is $23517 +in.representative_income 23527 Representative total house income in the dwelling unit is $23527 +in.representative_income 23528 Representative total house income in the dwelling unit is $23528 +in.representative_income 23536 Representative total house income in the dwelling unit is $23536 +in.representative_income 23538 Representative total house income in the dwelling unit is $23538 +in.representative_income 23540 Representative total house income in the dwelling unit is $23540 +in.representative_income 23542 Representative total house income in the dwelling unit is $23542 +in.representative_income 23544 Representative total house income in the dwelling unit is $23544 +in.representative_income 23551 Representative total house income in the dwelling unit is $23551 +in.representative_income 23555 Representative total house income in the dwelling unit is $23555 +in.representative_income 23559 Representative total house income in the dwelling unit is $23559 +in.representative_income 23565 Representative total house income in the dwelling unit is $23565 +in.representative_income 23568 Representative total house income in the dwelling unit is $23568 +in.representative_income 23587 Representative total house income in the dwelling unit is $23587 +in.representative_income 23608 Representative total house income in the dwelling unit is $23608 +in.representative_income 23616 Representative total house income in the dwelling unit is $23616 +in.representative_income 23620 Representative total house income in the dwelling unit is $23620 +in.representative_income 23622 Representative total house income in the dwelling unit is $23622 +in.representative_income 23623 Representative total house income in the dwelling unit is $23623 +in.representative_income 23630 Representative total house income in the dwelling unit is $23630 +in.representative_income 23637 Representative total house income in the dwelling unit is $23637 +in.representative_income 23645 Representative total house income in the dwelling unit is $23645 +in.representative_income 23648 Representative total house income in the dwelling unit is $23648 +in.representative_income 23662 Representative total house income in the dwelling unit is $23662 +in.representative_income 23669 Representative total house income in the dwelling unit is $23669 +in.representative_income 23672 Representative total house income in the dwelling unit is $23672 +in.representative_income 23673 Representative total house income in the dwelling unit is $23673 +in.representative_income 23676 Representative total house income in the dwelling unit is $23676 +in.representative_income 23678 Representative total house income in the dwelling unit is $23678 +in.representative_income 23682 Representative total house income in the dwelling unit is $23682 +in.representative_income 23684 Representative total house income in the dwelling unit is $23684 +in.representative_income 23691 Representative total house income in the dwelling unit is $23691 +in.representative_income 23692 Representative total house income in the dwelling unit is $23692 +in.representative_income 23697 Representative total house income in the dwelling unit is $23697 +in.representative_income 23716 Representative total house income in the dwelling unit is $23716 +in.representative_income 23724 Representative total house income in the dwelling unit is $23724 +in.representative_income 23729 Representative total house income in the dwelling unit is $23729 +in.representative_income 23738 Representative total house income in the dwelling unit is $23738 +in.representative_income 23739 Representative total house income in the dwelling unit is $23739 +in.representative_income 23744 Representative total house income in the dwelling unit is $23744 +in.representative_income 23754 Representative total house income in the dwelling unit is $23754 +in.representative_income 23770 Representative total house income in the dwelling unit is $23770 +in.representative_income 23771 Representative total house income in the dwelling unit is $23771 +in.representative_income 23775 Representative total house income in the dwelling unit is $23775 +in.representative_income 23781 Representative total house income in the dwelling unit is $23781 +in.representative_income 23791 Representative total house income in the dwelling unit is $23791 +in.representative_income 23802 Representative total house income in the dwelling unit is $23802 +in.representative_income 23803 Representative total house income in the dwelling unit is $23803 +in.representative_income 23809 Representative total house income in the dwelling unit is $23809 +in.representative_income 23813 Representative total house income in the dwelling unit is $23813 +in.representative_income 23814 Representative total house income in the dwelling unit is $23814 +in.representative_income 23827 Representative total house income in the dwelling unit is $23827 +in.representative_income 23830 Representative total house income in the dwelling unit is $23830 +in.representative_income 23831 Representative total house income in the dwelling unit is $23831 +in.representative_income 23834 Representative total house income in the dwelling unit is $23834 +in.representative_income 23839 Representative total house income in the dwelling unit is $23839 +in.representative_income 23852 Representative total house income in the dwelling unit is $23852 +in.representative_income 23857 Representative total house income in the dwelling unit is $23857 +in.representative_income 23876 Representative total house income in the dwelling unit is $23876 +in.representative_income 23878 Representative total house income in the dwelling unit is $23878 +in.representative_income 23890 Representative total house income in the dwelling unit is $23890 +in.representative_income 23900 Representative total house income in the dwelling unit is $23900 +in.representative_income 23908 Representative total house income in the dwelling unit is $23908 +in.representative_income 23915 Representative total house income in the dwelling unit is $23915 +in.representative_income 23929 Representative total house income in the dwelling unit is $23929 +in.representative_income 23932 Representative total house income in the dwelling unit is $23932 +in.representative_income 23938 Representative total house income in the dwelling unit is $23938 +in.representative_income 23939 Representative total house income in the dwelling unit is $23939 +in.representative_income 23940 Representative total house income in the dwelling unit is $23940 +in.representative_income 23951 Representative total house income in the dwelling unit is $23951 +in.representative_income 23954 Representative total house income in the dwelling unit is $23954 +in.representative_income 23961 Representative total house income in the dwelling unit is $23961 +in.representative_income 23971 Representative total house income in the dwelling unit is $23971 +in.representative_income 23972 Representative total house income in the dwelling unit is $23972 +in.representative_income 23978 Representative total house income in the dwelling unit is $23978 +in.representative_income 23981 Representative total house income in the dwelling unit is $23981 +in.representative_income 23986 Representative total house income in the dwelling unit is $23986 +in.representative_income 23991 Representative total house income in the dwelling unit is $23991 +in.representative_income 23992 Representative total house income in the dwelling unit is $23992 +in.representative_income 24007 Representative total house income in the dwelling unit is $24007 +in.representative_income 24013 Representative total house income in the dwelling unit is $24013 +in.representative_income 24024 Representative total house income in the dwelling unit is $24024 +in.representative_income 24033 Representative total house income in the dwelling unit is $24033 +in.representative_income 24038 Representative total house income in the dwelling unit is $24038 +in.representative_income 24040 Representative total house income in the dwelling unit is $24040 +in.representative_income 24041 Representative total house income in the dwelling unit is $24041 +in.representative_income 24043 Representative total house income in the dwelling unit is $24043 +in.representative_income 24045 Representative total house income in the dwelling unit is $24045 +in.representative_income 24051 Representative total house income in the dwelling unit is $24051 +in.representative_income 24056 Representative total house income in the dwelling unit is $24056 +in.representative_income 24057 Representative total house income in the dwelling unit is $24057 +in.representative_income 24071 Representative total house income in the dwelling unit is $24071 +in.representative_income 24078 Representative total house income in the dwelling unit is $24078 +in.representative_income 24086 Representative total house income in the dwelling unit is $24086 +in.representative_income 24094 Representative total house income in the dwelling unit is $24094 +in.representative_income 24098 Representative total house income in the dwelling unit is $24098 +in.representative_income 24116 Representative total house income in the dwelling unit is $24116 +in.representative_income 24122 Representative total house income in the dwelling unit is $24122 +in.representative_income 24131 Representative total house income in the dwelling unit is $24131 +in.representative_income 24136 Representative total house income in the dwelling unit is $24136 +in.representative_income 24142 Representative total house income in the dwelling unit is $24142 +in.representative_income 24146 Representative total house income in the dwelling unit is $24146 +in.representative_income 24150 Representative total house income in the dwelling unit is $24150 +in.representative_income 24153 Representative total house income in the dwelling unit is $24153 +in.representative_income 24163 Representative total house income in the dwelling unit is $24163 +in.representative_income 24190 Representative total house income in the dwelling unit is $24190 +in.representative_income 24200 Representative total house income in the dwelling unit is $24200 +in.representative_income 24203 Representative total house income in the dwelling unit is $24203 +in.representative_income 24204 Representative total house income in the dwelling unit is $24204 +in.representative_income 24213 Representative total house income in the dwelling unit is $24213 +in.representative_income 24223 Representative total house income in the dwelling unit is $24223 +in.representative_income 24225 Representative total house income in the dwelling unit is $24225 +in.representative_income 24239 Representative total house income in the dwelling unit is $24239 +in.representative_income 24243 Representative total house income in the dwelling unit is $24243 +in.representative_income 24254 Representative total house income in the dwelling unit is $24254 +in.representative_income 24256 Representative total house income in the dwelling unit is $24256 +in.representative_income 24260 Representative total house income in the dwelling unit is $24260 +in.representative_income 24261 Representative total house income in the dwelling unit is $24261 +in.representative_income 24264 Representative total house income in the dwelling unit is $24264 +in.representative_income 24267 Representative total house income in the dwelling unit is $24267 +in.representative_income 24274 Representative total house income in the dwelling unit is $24274 +in.representative_income 24300 Representative total house income in the dwelling unit is $24300 +in.representative_income 24310 Representative total house income in the dwelling unit is $24310 +in.representative_income 24311 Representative total house income in the dwelling unit is $24311 +in.representative_income 24314 Representative total house income in the dwelling unit is $24314 +in.representative_income 24343 Representative total house income in the dwelling unit is $24343 +in.representative_income 24344 Representative total house income in the dwelling unit is $24344 +in.representative_income 24350 Representative total house income in the dwelling unit is $24350 +in.representative_income 24351 Representative total house income in the dwelling unit is $24351 +in.representative_income 24362 Representative total house income in the dwelling unit is $24362 +in.representative_income 24368 Representative total house income in the dwelling unit is $24368 +in.representative_income 24383 Representative total house income in the dwelling unit is $24383 +in.representative_income 24393 Representative total house income in the dwelling unit is $24393 +in.representative_income 24395 Representative total house income in the dwelling unit is $24395 +in.representative_income 24404 Representative total house income in the dwelling unit is $24404 +in.representative_income 24408 Representative total house income in the dwelling unit is $24408 +in.representative_income 24419 Representative total house income in the dwelling unit is $24419 +in.representative_income 24421 Representative total house income in the dwelling unit is $24421 +in.representative_income 24432 Representative total house income in the dwelling unit is $24432 +in.representative_income 24445 Representative total house income in the dwelling unit is $24445 +in.representative_income 24446 Representative total house income in the dwelling unit is $24446 +in.representative_income 24448 Representative total house income in the dwelling unit is $24448 +in.representative_income 24467 Representative total house income in the dwelling unit is $24467 +in.representative_income 24474 Representative total house income in the dwelling unit is $24474 +in.representative_income 24476 Representative total house income in the dwelling unit is $24476 +in.representative_income 24478 Representative total house income in the dwelling unit is $24478 +in.representative_income 24479 Representative total house income in the dwelling unit is $24479 +in.representative_income 24484 Representative total house income in the dwelling unit is $24484 +in.representative_income 24505 Representative total house income in the dwelling unit is $24505 +in.representative_income 24509 Representative total house income in the dwelling unit is $24509 +in.representative_income 24527 Representative total house income in the dwelling unit is $24527 +in.representative_income 24528 Representative total house income in the dwelling unit is $24528 +in.representative_income 24529 Representative total house income in the dwelling unit is $24529 +in.representative_income 24530 Representative total house income in the dwelling unit is $24530 +in.representative_income 24541 Representative total house income in the dwelling unit is $24541 +in.representative_income 24547 Representative total house income in the dwelling unit is $24547 +in.representative_income 24548 Representative total house income in the dwelling unit is $24548 +in.representative_income 24549 Representative total house income in the dwelling unit is $24549 +in.representative_income 24557 Representative total house income in the dwelling unit is $24557 +in.representative_income 24572 Representative total house income in the dwelling unit is $24572 +in.representative_income 24581 Representative total house income in the dwelling unit is $24581 +in.representative_income 24582 Representative total house income in the dwelling unit is $24582 +in.representative_income 24601 Representative total house income in the dwelling unit is $24601 +in.representative_income 24624 Representative total house income in the dwelling unit is $24624 +in.representative_income 24625 Representative total house income in the dwelling unit is $24625 +in.representative_income 24635 Representative total house income in the dwelling unit is $24635 +in.representative_income 24636 Representative total house income in the dwelling unit is $24636 +in.representative_income 24637 Representative total house income in the dwelling unit is $24637 +in.representative_income 24645 Representative total house income in the dwelling unit is $24645 +in.representative_income 24648 Representative total house income in the dwelling unit is $24648 +in.representative_income 24652 Representative total house income in the dwelling unit is $24652 +in.representative_income 24657 Representative total house income in the dwelling unit is $24657 +in.representative_income 24672 Representative total house income in the dwelling unit is $24672 +in.representative_income 24678 Representative total house income in the dwelling unit is $24678 +in.representative_income 24689 Representative total house income in the dwelling unit is $24689 +in.representative_income 24711 Representative total house income in the dwelling unit is $24711 +in.representative_income 24713 Representative total house income in the dwelling unit is $24713 +in.representative_income 24718 Representative total house income in the dwelling unit is $24718 +in.representative_income 24732 Representative total house income in the dwelling unit is $24732 +in.representative_income 24743 Representative total house income in the dwelling unit is $24743 +in.representative_income 24749 Representative total house income in the dwelling unit is $24749 +in.representative_income 24753 Representative total house income in the dwelling unit is $24753 +in.representative_income 24755 Representative total house income in the dwelling unit is $24755 +in.representative_income 24775 Representative total house income in the dwelling unit is $24775 +in.representative_income 24779 Representative total house income in the dwelling unit is $24779 +in.representative_income 24783 Representative total house income in the dwelling unit is $24783 +in.representative_income 24797 Representative total house income in the dwelling unit is $24797 +in.representative_income 24817 Representative total house income in the dwelling unit is $24817 +in.representative_income 24850 Representative total house income in the dwelling unit is $24850 +in.representative_income 24858 Representative total house income in the dwelling unit is $24858 +in.representative_income 24861 Representative total house income in the dwelling unit is $24861 +in.representative_income 24888 Representative total house income in the dwelling unit is $24888 +in.representative_income 24893 Representative total house income in the dwelling unit is $24893 +in.representative_income 24899 Representative total house income in the dwelling unit is $24899 +in.representative_income 24904 Representative total house income in the dwelling unit is $24904 +in.representative_income 24910 Representative total house income in the dwelling unit is $24910 +in.representative_income 24951 Representative total house income in the dwelling unit is $24951 +in.representative_income 24959 Representative total house income in the dwelling unit is $24959 +in.representative_income 24961 Representative total house income in the dwelling unit is $24961 +in.representative_income 24973 Representative total house income in the dwelling unit is $24973 +in.representative_income 24982 Representative total house income in the dwelling unit is $24982 +in.representative_income 24990 Representative total house income in the dwelling unit is $24990 +in.representative_income 24993 Representative total house income in the dwelling unit is $24993 +in.representative_income 24995 Representative total house income in the dwelling unit is $24995 +in.representative_income 25001 Representative total house income in the dwelling unit is $25001 +in.representative_income 25011 Representative total house income in the dwelling unit is $25011 +in.representative_income 25036 Representative total house income in the dwelling unit is $25036 +in.representative_income 25052 Representative total house income in the dwelling unit is $25052 +in.representative_income 25057 Representative total house income in the dwelling unit is $25057 +in.representative_income 25064 Representative total house income in the dwelling unit is $25064 +in.representative_income 25067 Representative total house income in the dwelling unit is $25067 +in.representative_income 25082 Representative total house income in the dwelling unit is $25082 +in.representative_income 25089 Representative total house income in the dwelling unit is $25089 +in.representative_income 25100 Representative total house income in the dwelling unit is $25100 +in.representative_income 25102 Representative total house income in the dwelling unit is $25102 +in.representative_income 25112 Representative total house income in the dwelling unit is $25112 +in.representative_income 25116 Representative total house income in the dwelling unit is $25116 +in.representative_income 25119 Representative total house income in the dwelling unit is $25119 +in.representative_income 25132 Representative total house income in the dwelling unit is $25132 +in.representative_income 25137 Representative total house income in the dwelling unit is $25137 +in.representative_income 25140 Representative total house income in the dwelling unit is $25140 +in.representative_income 25142 Representative total house income in the dwelling unit is $25142 +in.representative_income 25153 Representative total house income in the dwelling unit is $25153 +in.representative_income 25159 Representative total house income in the dwelling unit is $25159 +in.representative_income 25167 Representative total house income in the dwelling unit is $25167 +in.representative_income 25175 Representative total house income in the dwelling unit is $25175 +in.representative_income 25181 Representative total house income in the dwelling unit is $25181 +in.representative_income 25186 Representative total house income in the dwelling unit is $25186 +in.representative_income 25205 Representative total house income in the dwelling unit is $25205 +in.representative_income 25208 Representative total house income in the dwelling unit is $25208 +in.representative_income 25215 Representative total house income in the dwelling unit is $25215 +in.representative_income 25223 Representative total house income in the dwelling unit is $25223 +in.representative_income 25226 Representative total house income in the dwelling unit is $25226 +in.representative_income 25233 Representative total house income in the dwelling unit is $25233 +in.representative_income 25247 Representative total house income in the dwelling unit is $25247 +in.representative_income 25254 Representative total house income in the dwelling unit is $25254 +in.representative_income 25264 Representative total house income in the dwelling unit is $25264 +in.representative_income 25268 Representative total house income in the dwelling unit is $25268 +in.representative_income 25269 Representative total house income in the dwelling unit is $25269 +in.representative_income 25271 Representative total house income in the dwelling unit is $25271 +in.representative_income 25279 Representative total house income in the dwelling unit is $25279 +in.representative_income 25281 Representative total house income in the dwelling unit is $25281 +in.representative_income 25282 Representative total house income in the dwelling unit is $25282 +in.representative_income 25283 Representative total house income in the dwelling unit is $25283 +in.representative_income 25284 Representative total house income in the dwelling unit is $25284 +in.representative_income 25290 Representative total house income in the dwelling unit is $25290 +in.representative_income 25294 Representative total house income in the dwelling unit is $25294 +in.representative_income 25305 Representative total house income in the dwelling unit is $25305 +in.representative_income 25306 Representative total house income in the dwelling unit is $25306 +in.representative_income 25310 Representative total house income in the dwelling unit is $25310 +in.representative_income 25322 Representative total house income in the dwelling unit is $25322 +in.representative_income 25331 Representative total house income in the dwelling unit is $25331 +in.representative_income 25334 Representative total house income in the dwelling unit is $25334 +in.representative_income 25348 Representative total house income in the dwelling unit is $25348 +in.representative_income 25355 Representative total house income in the dwelling unit is $25355 +in.representative_income 25374 Representative total house income in the dwelling unit is $25374 +in.representative_income 25391 Representative total house income in the dwelling unit is $25391 +in.representative_income 25395 Representative total house income in the dwelling unit is $25395 +in.representative_income 25398 Representative total house income in the dwelling unit is $25398 +in.representative_income 25416 Representative total house income in the dwelling unit is $25416 +in.representative_income 25437 Representative total house income in the dwelling unit is $25437 +in.representative_income 25441 Representative total house income in the dwelling unit is $25441 +in.representative_income 25445 Representative total house income in the dwelling unit is $25445 +in.representative_income 25456 Representative total house income in the dwelling unit is $25456 +in.representative_income 25458 Representative total house income in the dwelling unit is $25458 +in.representative_income 25469 Representative total house income in the dwelling unit is $25469 +in.representative_income 25476 Representative total house income in the dwelling unit is $25476 +in.representative_income 25477 Representative total house income in the dwelling unit is $25477 +in.representative_income 25494 Representative total house income in the dwelling unit is $25494 +in.representative_income 25499 Representative total house income in the dwelling unit is $25499 +in.representative_income 25516 Representative total house income in the dwelling unit is $25516 +in.representative_income 25520 Representative total house income in the dwelling unit is $25520 +in.representative_income 25521 Representative total house income in the dwelling unit is $25521 +in.representative_income 25526 Representative total house income in the dwelling unit is $25526 +in.representative_income 25534 Representative total house income in the dwelling unit is $25534 +in.representative_income 25537 Representative total house income in the dwelling unit is $25537 +in.representative_income 25548 Representative total house income in the dwelling unit is $25548 +in.representative_income 25557 Representative total house income in the dwelling unit is $25557 +in.representative_income 25558 Representative total house income in the dwelling unit is $25558 +in.representative_income 25570 Representative total house income in the dwelling unit is $25570 +in.representative_income 25577 Representative total house income in the dwelling unit is $25577 +in.representative_income 25580 Representative total house income in the dwelling unit is $25580 +in.representative_income 25585 Representative total house income in the dwelling unit is $25585 +in.representative_income 25607 Representative total house income in the dwelling unit is $25607 +in.representative_income 25621 Representative total house income in the dwelling unit is $25621 +in.representative_income 25627 Representative total house income in the dwelling unit is $25627 +in.representative_income 25628 Representative total house income in the dwelling unit is $25628 +in.representative_income 25637 Representative total house income in the dwelling unit is $25637 +in.representative_income 25650 Representative total house income in the dwelling unit is $25650 +in.representative_income 25655 Representative total house income in the dwelling unit is $25655 +in.representative_income 25658 Representative total house income in the dwelling unit is $25658 +in.representative_income 25677 Representative total house income in the dwelling unit is $25677 +in.representative_income 25679 Representative total house income in the dwelling unit is $25679 +in.representative_income 25683 Representative total house income in the dwelling unit is $25683 +in.representative_income 25699 Representative total house income in the dwelling unit is $25699 +in.representative_income 25705 Representative total house income in the dwelling unit is $25705 +in.representative_income 25708 Representative total house income in the dwelling unit is $25708 +in.representative_income 25715 Representative total house income in the dwelling unit is $25715 +in.representative_income 25720 Representative total house income in the dwelling unit is $25720 +in.representative_income 25733 Representative total house income in the dwelling unit is $25733 +in.representative_income 25749 Representative total house income in the dwelling unit is $25749 +in.representative_income 25751 Representative total house income in the dwelling unit is $25751 +in.representative_income 25753 Representative total house income in the dwelling unit is $25753 +in.representative_income 25759 Representative total house income in the dwelling unit is $25759 +in.representative_income 25763 Representative total house income in the dwelling unit is $25763 +in.representative_income 25767 Representative total house income in the dwelling unit is $25767 +in.representative_income 25785 Representative total house income in the dwelling unit is $25785 +in.representative_income 25786 Representative total house income in the dwelling unit is $25786 +in.representative_income 25795 Representative total house income in the dwelling unit is $25795 +in.representative_income 25805 Representative total house income in the dwelling unit is $25805 +in.representative_income 25817 Representative total house income in the dwelling unit is $25817 +in.representative_income 25824 Representative total house income in the dwelling unit is $25824 +in.representative_income 25828 Representative total house income in the dwelling unit is $25828 +in.representative_income 25834 Representative total house income in the dwelling unit is $25834 +in.representative_income 25838 Representative total house income in the dwelling unit is $25838 +in.representative_income 25860 Representative total house income in the dwelling unit is $25860 +in.representative_income 25870 Representative total house income in the dwelling unit is $25870 +in.representative_income 25881 Representative total house income in the dwelling unit is $25881 +in.representative_income 25890 Representative total house income in the dwelling unit is $25890 +in.representative_income 25902 Representative total house income in the dwelling unit is $25902 +in.representative_income 25913 Representative total house income in the dwelling unit is $25913 +in.representative_income 25932 Representative total house income in the dwelling unit is $25932 +in.representative_income 25933 Representative total house income in the dwelling unit is $25933 +in.representative_income 25934 Representative total house income in the dwelling unit is $25934 +in.representative_income 25942 Representative total house income in the dwelling unit is $25942 +in.representative_income 25943 Representative total house income in the dwelling unit is $25943 +in.representative_income 25945 Representative total house income in the dwelling unit is $25945 +in.representative_income 25953 Representative total house income in the dwelling unit is $25953 +in.representative_income 25961 Representative total house income in the dwelling unit is $25961 +in.representative_income 25970 Representative total house income in the dwelling unit is $25970 +in.representative_income 25972 Representative total house income in the dwelling unit is $25972 +in.representative_income 25975 Representative total house income in the dwelling unit is $25975 +in.representative_income 25978 Representative total house income in the dwelling unit is $25978 +in.representative_income 25981 Representative total house income in the dwelling unit is $25981 +in.representative_income 25989 Representative total house income in the dwelling unit is $25989 +in.representative_income 25991 Representative total house income in the dwelling unit is $25991 +in.representative_income 25993 Representative total house income in the dwelling unit is $25993 +in.representative_income 25999 Representative total house income in the dwelling unit is $25999 +in.representative_income 26003 Representative total house income in the dwelling unit is $26003 +in.representative_income 26009 Representative total house income in the dwelling unit is $26009 +in.representative_income 26017 Representative total house income in the dwelling unit is $26017 +in.representative_income 26020 Representative total house income in the dwelling unit is $26020 +in.representative_income 26025 Representative total house income in the dwelling unit is $26025 +in.representative_income 26031 Representative total house income in the dwelling unit is $26031 +in.representative_income 26035 Representative total house income in the dwelling unit is $26035 +in.representative_income 26039 Representative total house income in the dwelling unit is $26039 +in.representative_income 26042 Representative total house income in the dwelling unit is $26042 +in.representative_income 26044 Representative total house income in the dwelling unit is $26044 +in.representative_income 26049 Representative total house income in the dwelling unit is $26049 +in.representative_income 26050 Representative total house income in the dwelling unit is $26050 +in.representative_income 26055 Representative total house income in the dwelling unit is $26055 +in.representative_income 26059 Representative total house income in the dwelling unit is $26059 +in.representative_income 26061 Representative total house income in the dwelling unit is $26061 +in.representative_income 26062 Representative total house income in the dwelling unit is $26062 +in.representative_income 26072 Representative total house income in the dwelling unit is $26072 +in.representative_income 26076 Representative total house income in the dwelling unit is $26076 +in.representative_income 26084 Representative total house income in the dwelling unit is $26084 +in.representative_income 26091 Representative total house income in the dwelling unit is $26091 +in.representative_income 26092 Representative total house income in the dwelling unit is $26092 +in.representative_income 26093 Representative total house income in the dwelling unit is $26093 +in.representative_income 26095 Representative total house income in the dwelling unit is $26095 +in.representative_income 26096 Representative total house income in the dwelling unit is $26096 +in.representative_income 26101 Representative total house income in the dwelling unit is $26101 +in.representative_income 26102 Representative total house income in the dwelling unit is $26102 +in.representative_income 26117 Representative total house income in the dwelling unit is $26117 +in.representative_income 26120 Representative total house income in the dwelling unit is $26120 +in.representative_income 26137 Representative total house income in the dwelling unit is $26137 +in.representative_income 26147 Representative total house income in the dwelling unit is $26147 +in.representative_income 26154 Representative total house income in the dwelling unit is $26154 +in.representative_income 26158 Representative total house income in the dwelling unit is $26158 +in.representative_income 26163 Representative total house income in the dwelling unit is $26163 +in.representative_income 26180 Representative total house income in the dwelling unit is $26180 +in.representative_income 26186 Representative total house income in the dwelling unit is $26186 +in.representative_income 26192 Representative total house income in the dwelling unit is $26192 +in.representative_income 26193 Representative total house income in the dwelling unit is $26193 +in.representative_income 26197 Representative total house income in the dwelling unit is $26197 +in.representative_income 26199 Representative total house income in the dwelling unit is $26199 +in.representative_income 26203 Representative total house income in the dwelling unit is $26203 +in.representative_income 26220 Representative total house income in the dwelling unit is $26220 +in.representative_income 26223 Representative total house income in the dwelling unit is $26223 +in.representative_income 26233 Representative total house income in the dwelling unit is $26233 +in.representative_income 26255 Representative total house income in the dwelling unit is $26255 +in.representative_income 26256 Representative total house income in the dwelling unit is $26256 +in.representative_income 26260 Representative total house income in the dwelling unit is $26260 +in.representative_income 26264 Representative total house income in the dwelling unit is $26264 +in.representative_income 26271 Representative total house income in the dwelling unit is $26271 +in.representative_income 26277 Representative total house income in the dwelling unit is $26277 +in.representative_income 26284 Representative total house income in the dwelling unit is $26284 +in.representative_income 26299 Representative total house income in the dwelling unit is $26299 +in.representative_income 26301 Representative total house income in the dwelling unit is $26301 +in.representative_income 26302 Representative total house income in the dwelling unit is $26302 +in.representative_income 26304 Representative total house income in the dwelling unit is $26304 +in.representative_income 26309 Representative total house income in the dwelling unit is $26309 +in.representative_income 26319 Representative total house income in the dwelling unit is $26319 +in.representative_income 26322 Representative total house income in the dwelling unit is $26322 +in.representative_income 26323 Representative total house income in the dwelling unit is $26323 +in.representative_income 26344 Representative total house income in the dwelling unit is $26344 +in.representative_income 26353 Representative total house income in the dwelling unit is $26353 +in.representative_income 26363 Representative total house income in the dwelling unit is $26363 +in.representative_income 26364 Representative total house income in the dwelling unit is $26364 +in.representative_income 26365 Representative total house income in the dwelling unit is $26365 +in.representative_income 26377 Representative total house income in the dwelling unit is $26377 +in.representative_income 26385 Representative total house income in the dwelling unit is $26385 +in.representative_income 26386 Representative total house income in the dwelling unit is $26386 +in.representative_income 26388 Representative total house income in the dwelling unit is $26388 +in.representative_income 26396 Representative total house income in the dwelling unit is $26396 +in.representative_income 26397 Representative total house income in the dwelling unit is $26397 +in.representative_income 26405 Representative total house income in the dwelling unit is $26405 +in.representative_income 26407 Representative total house income in the dwelling unit is $26407 +in.representative_income 26415 Representative total house income in the dwelling unit is $26415 +in.representative_income 26416 Representative total house income in the dwelling unit is $26416 +in.representative_income 26417 Representative total house income in the dwelling unit is $26417 +in.representative_income 26418 Representative total house income in the dwelling unit is $26418 +in.representative_income 26420 Representative total house income in the dwelling unit is $26420 +in.representative_income 26428 Representative total house income in the dwelling unit is $26428 +in.representative_income 26436 Representative total house income in the dwelling unit is $26436 +in.representative_income 26439 Representative total house income in the dwelling unit is $26439 +in.representative_income 26450 Representative total house income in the dwelling unit is $26450 +in.representative_income 26453 Representative total house income in the dwelling unit is $26453 +in.representative_income 26457 Representative total house income in the dwelling unit is $26457 +in.representative_income 26466 Representative total house income in the dwelling unit is $26466 +in.representative_income 26471 Representative total house income in the dwelling unit is $26471 +in.representative_income 26472 Representative total house income in the dwelling unit is $26472 +in.representative_income 26476 Representative total house income in the dwelling unit is $26476 +in.representative_income 26482 Representative total house income in the dwelling unit is $26482 +in.representative_income 26493 Representative total house income in the dwelling unit is $26493 +in.representative_income 26496 Representative total house income in the dwelling unit is $26496 +in.representative_income 26508 Representative total house income in the dwelling unit is $26508 +in.representative_income 26509 Representative total house income in the dwelling unit is $26509 +in.representative_income 26512 Representative total house income in the dwelling unit is $26512 +in.representative_income 26515 Representative total house income in the dwelling unit is $26515 +in.representative_income 26516 Representative total house income in the dwelling unit is $26516 +in.representative_income 26523 Representative total house income in the dwelling unit is $26523 +in.representative_income 26525 Representative total house income in the dwelling unit is $26525 +in.representative_income 26526 Representative total house income in the dwelling unit is $26526 +in.representative_income 26529 Representative total house income in the dwelling unit is $26529 +in.representative_income 26537 Representative total house income in the dwelling unit is $26537 +in.representative_income 26548 Representative total house income in the dwelling unit is $26548 +in.representative_income 26550 Representative total house income in the dwelling unit is $26550 +in.representative_income 26555 Representative total house income in the dwelling unit is $26555 +in.representative_income 26566 Representative total house income in the dwelling unit is $26566 +in.representative_income 26567 Representative total house income in the dwelling unit is $26567 +in.representative_income 26568 Representative total house income in the dwelling unit is $26568 +in.representative_income 26570 Representative total house income in the dwelling unit is $26570 +in.representative_income 26576 Representative total house income in the dwelling unit is $26576 +in.representative_income 26580 Representative total house income in the dwelling unit is $26580 +in.representative_income 26581 Representative total house income in the dwelling unit is $26581 +in.representative_income 26586 Representative total house income in the dwelling unit is $26586 +in.representative_income 26597 Representative total house income in the dwelling unit is $26597 +in.representative_income 26598 Representative total house income in the dwelling unit is $26598 +in.representative_income 26600 Representative total house income in the dwelling unit is $26600 +in.representative_income 26601 Representative total house income in the dwelling unit is $26601 +in.representative_income 26607 Representative total house income in the dwelling unit is $26607 +in.representative_income 26609 Representative total house income in the dwelling unit is $26609 +in.representative_income 26610 Representative total house income in the dwelling unit is $26610 +in.representative_income 26611 Representative total house income in the dwelling unit is $26611 +in.representative_income 26612 Representative total house income in the dwelling unit is $26612 +in.representative_income 26621 Representative total house income in the dwelling unit is $26621 +in.representative_income 26622 Representative total house income in the dwelling unit is $26622 +in.representative_income 26640 Representative total house income in the dwelling unit is $26640 +in.representative_income 26642 Representative total house income in the dwelling unit is $26642 +in.representative_income 26648 Representative total house income in the dwelling unit is $26648 +in.representative_income 26649 Representative total house income in the dwelling unit is $26649 +in.representative_income 26651 Representative total house income in the dwelling unit is $26651 +in.representative_income 26653 Representative total house income in the dwelling unit is $26653 +in.representative_income 26654 Representative total house income in the dwelling unit is $26654 +in.representative_income 26656 Representative total house income in the dwelling unit is $26656 +in.representative_income 26663 Representative total house income in the dwelling unit is $26663 +in.representative_income 26666 Representative total house income in the dwelling unit is $26666 +in.representative_income 26668 Representative total house income in the dwelling unit is $26668 +in.representative_income 26671 Representative total house income in the dwelling unit is $26671 +in.representative_income 26678 Representative total house income in the dwelling unit is $26678 +in.representative_income 26681 Representative total house income in the dwelling unit is $26681 +in.representative_income 26684 Representative total house income in the dwelling unit is $26684 +in.representative_income 26687 Representative total house income in the dwelling unit is $26687 +in.representative_income 26688 Representative total house income in the dwelling unit is $26688 +in.representative_income 26689 Representative total house income in the dwelling unit is $26689 +in.representative_income 26692 Representative total house income in the dwelling unit is $26692 +in.representative_income 26701 Representative total house income in the dwelling unit is $26701 +in.representative_income 26709 Representative total house income in the dwelling unit is $26709 +in.representative_income 26714 Representative total house income in the dwelling unit is $26714 +in.representative_income 26718 Representative total house income in the dwelling unit is $26718 +in.representative_income 26724 Representative total house income in the dwelling unit is $26724 +in.representative_income 26729 Representative total house income in the dwelling unit is $26729 +in.representative_income 26733 Representative total house income in the dwelling unit is $26733 +in.representative_income 26734 Representative total house income in the dwelling unit is $26734 +in.representative_income 26736 Representative total house income in the dwelling unit is $26736 +in.representative_income 26742 Representative total house income in the dwelling unit is $26742 +in.representative_income 26746 Representative total house income in the dwelling unit is $26746 +in.representative_income 26749 Representative total house income in the dwelling unit is $26749 +in.representative_income 26750 Representative total house income in the dwelling unit is $26750 +in.representative_income 26751 Representative total house income in the dwelling unit is $26751 +in.representative_income 26752 Representative total house income in the dwelling unit is $26752 +in.representative_income 26755 Representative total house income in the dwelling unit is $26755 +in.representative_income 26759 Representative total house income in the dwelling unit is $26759 +in.representative_income 26762 Representative total house income in the dwelling unit is $26762 +in.representative_income 26763 Representative total house income in the dwelling unit is $26763 +in.representative_income 26766 Representative total house income in the dwelling unit is $26766 +in.representative_income 26767 Representative total house income in the dwelling unit is $26767 +in.representative_income 26769 Representative total house income in the dwelling unit is $26769 +in.representative_income 26772 Representative total house income in the dwelling unit is $26772 +in.representative_income 26773 Representative total house income in the dwelling unit is $26773 +in.representative_income 26779 Representative total house income in the dwelling unit is $26779 +in.representative_income 26783 Representative total house income in the dwelling unit is $26783 +in.representative_income 26785 Representative total house income in the dwelling unit is $26785 +in.representative_income 26787 Representative total house income in the dwelling unit is $26787 +in.representative_income 26794 Representative total house income in the dwelling unit is $26794 +in.representative_income 26796 Representative total house income in the dwelling unit is $26796 +in.representative_income 26799 Representative total house income in the dwelling unit is $26799 +in.representative_income 26804 Representative total house income in the dwelling unit is $26804 +in.representative_income 26808 Representative total house income in the dwelling unit is $26808 +in.representative_income 26809 Representative total house income in the dwelling unit is $26809 +in.representative_income 26818 Representative total house income in the dwelling unit is $26818 +in.representative_income 26819 Representative total house income in the dwelling unit is $26819 +in.representative_income 26822 Representative total house income in the dwelling unit is $26822 +in.representative_income 26825 Representative total house income in the dwelling unit is $26825 +in.representative_income 26827 Representative total house income in the dwelling unit is $26827 +in.representative_income 26828 Representative total house income in the dwelling unit is $26828 +in.representative_income 26836 Representative total house income in the dwelling unit is $26836 +in.representative_income 26838 Representative total house income in the dwelling unit is $26838 +in.representative_income 26839 Representative total house income in the dwelling unit is $26839 +in.representative_income 26840 Representative total house income in the dwelling unit is $26840 +in.representative_income 26847 Representative total house income in the dwelling unit is $26847 +in.representative_income 26849 Representative total house income in the dwelling unit is $26849 +in.representative_income 26850 Representative total house income in the dwelling unit is $26850 +in.representative_income 26853 Representative total house income in the dwelling unit is $26853 +in.representative_income 26855 Representative total house income in the dwelling unit is $26855 +in.representative_income 26859 Representative total house income in the dwelling unit is $26859 +in.representative_income 26861 Representative total house income in the dwelling unit is $26861 +in.representative_income 26869 Representative total house income in the dwelling unit is $26869 +in.representative_income 26870 Representative total house income in the dwelling unit is $26870 +in.representative_income 26871 Representative total house income in the dwelling unit is $26871 +in.representative_income 26882 Representative total house income in the dwelling unit is $26882 +in.representative_income 26890 Representative total house income in the dwelling unit is $26890 +in.representative_income 26892 Representative total house income in the dwelling unit is $26892 +in.representative_income 26893 Representative total house income in the dwelling unit is $26893 +in.representative_income 26900 Representative total house income in the dwelling unit is $26900 +in.representative_income 26901 Representative total house income in the dwelling unit is $26901 +in.representative_income 26904 Representative total house income in the dwelling unit is $26904 +in.representative_income 26908 Representative total house income in the dwelling unit is $26908 +in.representative_income 26914 Representative total house income in the dwelling unit is $26914 +in.representative_income 26915 Representative total house income in the dwelling unit is $26915 +in.representative_income 26917 Representative total house income in the dwelling unit is $26917 +in.representative_income 26920 Representative total house income in the dwelling unit is $26920 +in.representative_income 26921 Representative total house income in the dwelling unit is $26921 +in.representative_income 26922 Representative total house income in the dwelling unit is $26922 +in.representative_income 26924 Representative total house income in the dwelling unit is $26924 +in.representative_income 26925 Representative total house income in the dwelling unit is $26925 +in.representative_income 26930 Representative total house income in the dwelling unit is $26930 +in.representative_income 26931 Representative total house income in the dwelling unit is $26931 +in.representative_income 26933 Representative total house income in the dwelling unit is $26933 +in.representative_income 26934 Representative total house income in the dwelling unit is $26934 +in.representative_income 26935 Representative total house income in the dwelling unit is $26935 +in.representative_income 26936 Representative total house income in the dwelling unit is $26936 +in.representative_income 26941 Representative total house income in the dwelling unit is $26941 +in.representative_income 26944 Representative total house income in the dwelling unit is $26944 +in.representative_income 26945 Representative total house income in the dwelling unit is $26945 +in.representative_income 26952 Representative total house income in the dwelling unit is $26952 +in.representative_income 26958 Representative total house income in the dwelling unit is $26958 +in.representative_income 26965 Representative total house income in the dwelling unit is $26965 +in.representative_income 26966 Representative total house income in the dwelling unit is $26966 +in.representative_income 26968 Representative total house income in the dwelling unit is $26968 +in.representative_income 26971 Representative total house income in the dwelling unit is $26971 +in.representative_income 26972 Representative total house income in the dwelling unit is $26972 +in.representative_income 26973 Representative total house income in the dwelling unit is $26973 +in.representative_income 26977 Representative total house income in the dwelling unit is $26977 +in.representative_income 26978 Representative total house income in the dwelling unit is $26978 +in.representative_income 26979 Representative total house income in the dwelling unit is $26979 +in.representative_income 26981 Representative total house income in the dwelling unit is $26981 +in.representative_income 26982 Representative total house income in the dwelling unit is $26982 +in.representative_income 26983 Representative total house income in the dwelling unit is $26983 +in.representative_income 26986 Representative total house income in the dwelling unit is $26986 +in.representative_income 26988 Representative total house income in the dwelling unit is $26988 +in.representative_income 26989 Representative total house income in the dwelling unit is $26989 +in.representative_income 26991 Representative total house income in the dwelling unit is $26991 +in.representative_income 26993 Representative total house income in the dwelling unit is $26993 +in.representative_income 26997 Representative total house income in the dwelling unit is $26997 +in.representative_income 26998 Representative total house income in the dwelling unit is $26998 +in.representative_income 27001 Representative total house income in the dwelling unit is $27001 +in.representative_income 27003 Representative total house income in the dwelling unit is $27003 +in.representative_income 27011 Representative total house income in the dwelling unit is $27011 +in.representative_income 27012 Representative total house income in the dwelling unit is $27012 +in.representative_income 27013 Representative total house income in the dwelling unit is $27013 +in.representative_income 27014 Representative total house income in the dwelling unit is $27014 +in.representative_income 27018 Representative total house income in the dwelling unit is $27018 +in.representative_income 27019 Representative total house income in the dwelling unit is $27019 +in.representative_income 27020 Representative total house income in the dwelling unit is $27020 +in.representative_income 27021 Representative total house income in the dwelling unit is $27021 +in.representative_income 27023 Representative total house income in the dwelling unit is $27023 +in.representative_income 27024 Representative total house income in the dwelling unit is $27024 +in.representative_income 27030 Representative total house income in the dwelling unit is $27030 +in.representative_income 27031 Representative total house income in the dwelling unit is $27031 +in.representative_income 27033 Representative total house income in the dwelling unit is $27033 +in.representative_income 27034 Representative total house income in the dwelling unit is $27034 +in.representative_income 27041 Representative total house income in the dwelling unit is $27041 +in.representative_income 27044 Representative total house income in the dwelling unit is $27044 +in.representative_income 27051 Representative total house income in the dwelling unit is $27051 +in.representative_income 27052 Representative total house income in the dwelling unit is $27052 +in.representative_income 27055 Representative total house income in the dwelling unit is $27055 +in.representative_income 27061 Representative total house income in the dwelling unit is $27061 +in.representative_income 27062 Representative total house income in the dwelling unit is $27062 +in.representative_income 27064 Representative total house income in the dwelling unit is $27064 +in.representative_income 27065 Representative total house income in the dwelling unit is $27065 +in.representative_income 27066 Representative total house income in the dwelling unit is $27066 +in.representative_income 27072 Representative total house income in the dwelling unit is $27072 +in.representative_income 27074 Representative total house income in the dwelling unit is $27074 +in.representative_income 27076 Representative total house income in the dwelling unit is $27076 +in.representative_income 27083 Representative total house income in the dwelling unit is $27083 +in.representative_income 27086 Representative total house income in the dwelling unit is $27086 +in.representative_income 27087 Representative total house income in the dwelling unit is $27087 +in.representative_income 27089 Representative total house income in the dwelling unit is $27089 +in.representative_income 27092 Representative total house income in the dwelling unit is $27092 +in.representative_income 27093 Representative total house income in the dwelling unit is $27093 +in.representative_income 27094 Representative total house income in the dwelling unit is $27094 +in.representative_income 27096 Representative total house income in the dwelling unit is $27096 +in.representative_income 27103 Representative total house income in the dwelling unit is $27103 +in.representative_income 27104 Representative total house income in the dwelling unit is $27104 +in.representative_income 27107 Representative total house income in the dwelling unit is $27107 +in.representative_income 27116 Representative total house income in the dwelling unit is $27116 +in.representative_income 27120 Representative total house income in the dwelling unit is $27120 +in.representative_income 27121 Representative total house income in the dwelling unit is $27121 +in.representative_income 27128 Representative total house income in the dwelling unit is $27128 +in.representative_income 27130 Representative total house income in the dwelling unit is $27130 +in.representative_income 27132 Representative total house income in the dwelling unit is $27132 +in.representative_income 27136 Representative total house income in the dwelling unit is $27136 +in.representative_income 27138 Representative total house income in the dwelling unit is $27138 +in.representative_income 27139 Representative total house income in the dwelling unit is $27139 +in.representative_income 27143 Representative total house income in the dwelling unit is $27143 +in.representative_income 27145 Representative total house income in the dwelling unit is $27145 +in.representative_income 27147 Representative total house income in the dwelling unit is $27147 +in.representative_income 27148 Representative total house income in the dwelling unit is $27148 +in.representative_income 27152 Representative total house income in the dwelling unit is $27152 +in.representative_income 27153 Representative total house income in the dwelling unit is $27153 +in.representative_income 27156 Representative total house income in the dwelling unit is $27156 +in.representative_income 27159 Representative total house income in the dwelling unit is $27159 +in.representative_income 27163 Representative total house income in the dwelling unit is $27163 +in.representative_income 27167 Representative total house income in the dwelling unit is $27167 +in.representative_income 27169 Representative total house income in the dwelling unit is $27169 +in.representative_income 27173 Representative total house income in the dwelling unit is $27173 +in.representative_income 27174 Representative total house income in the dwelling unit is $27174 +in.representative_income 27180 Representative total house income in the dwelling unit is $27180 +in.representative_income 27184 Representative total house income in the dwelling unit is $27184 +in.representative_income 27188 Representative total house income in the dwelling unit is $27188 +in.representative_income 27189 Representative total house income in the dwelling unit is $27189 +in.representative_income 27191 Representative total house income in the dwelling unit is $27191 +in.representative_income 27198 Representative total house income in the dwelling unit is $27198 +in.representative_income 27200 Representative total house income in the dwelling unit is $27200 +in.representative_income 27209 Representative total house income in the dwelling unit is $27209 +in.representative_income 27212 Representative total house income in the dwelling unit is $27212 +in.representative_income 27227 Representative total house income in the dwelling unit is $27227 +in.representative_income 27229 Representative total house income in the dwelling unit is $27229 +in.representative_income 27230 Representative total house income in the dwelling unit is $27230 +in.representative_income 27231 Representative total house income in the dwelling unit is $27231 +in.representative_income 27232 Representative total house income in the dwelling unit is $27232 +in.representative_income 27238 Representative total house income in the dwelling unit is $27238 +in.representative_income 27240 Representative total house income in the dwelling unit is $27240 +in.representative_income 27251 Representative total house income in the dwelling unit is $27251 +in.representative_income 27256 Representative total house income in the dwelling unit is $27256 +in.representative_income 27260 Representative total house income in the dwelling unit is $27260 +in.representative_income 27262 Representative total house income in the dwelling unit is $27262 +in.representative_income 27265 Representative total house income in the dwelling unit is $27265 +in.representative_income 27270 Representative total house income in the dwelling unit is $27270 +in.representative_income 27271 Representative total house income in the dwelling unit is $27271 +in.representative_income 27274 Representative total house income in the dwelling unit is $27274 +in.representative_income 27281 Representative total house income in the dwelling unit is $27281 +in.representative_income 27282 Representative total house income in the dwelling unit is $27282 +in.representative_income 27287 Representative total house income in the dwelling unit is $27287 +in.representative_income 27291 Representative total house income in the dwelling unit is $27291 +in.representative_income 27292 Representative total house income in the dwelling unit is $27292 +in.representative_income 27293 Representative total house income in the dwelling unit is $27293 +in.representative_income 27294 Representative total house income in the dwelling unit is $27294 +in.representative_income 27295 Representative total house income in the dwelling unit is $27295 +in.representative_income 27303 Representative total house income in the dwelling unit is $27303 +in.representative_income 27314 Representative total house income in the dwelling unit is $27314 +in.representative_income 27318 Representative total house income in the dwelling unit is $27318 +in.representative_income 27319 Representative total house income in the dwelling unit is $27319 +in.representative_income 27320 Representative total house income in the dwelling unit is $27320 +in.representative_income 27324 Representative total house income in the dwelling unit is $27324 +in.representative_income 27325 Representative total house income in the dwelling unit is $27325 +in.representative_income 27326 Representative total house income in the dwelling unit is $27326 +in.representative_income 27333 Representative total house income in the dwelling unit is $27333 +in.representative_income 27335 Representative total house income in the dwelling unit is $27335 +in.representative_income 27336 Representative total house income in the dwelling unit is $27336 +in.representative_income 27342 Representative total house income in the dwelling unit is $27342 +in.representative_income 27347 Representative total house income in the dwelling unit is $27347 +in.representative_income 27349 Representative total house income in the dwelling unit is $27349 +in.representative_income 27352 Representative total house income in the dwelling unit is $27352 +in.representative_income 27357 Representative total house income in the dwelling unit is $27357 +in.representative_income 27358 Representative total house income in the dwelling unit is $27358 +in.representative_income 27365 Representative total house income in the dwelling unit is $27365 +in.representative_income 27369 Representative total house income in the dwelling unit is $27369 +in.representative_income 27373 Representative total house income in the dwelling unit is $27373 +in.representative_income 27375 Representative total house income in the dwelling unit is $27375 +in.representative_income 27380 Representative total house income in the dwelling unit is $27380 +in.representative_income 27385 Representative total house income in the dwelling unit is $27385 +in.representative_income 27391 Representative total house income in the dwelling unit is $27391 +in.representative_income 27394 Representative total house income in the dwelling unit is $27394 +in.representative_income 27395 Representative total house income in the dwelling unit is $27395 +in.representative_income 27398 Representative total house income in the dwelling unit is $27398 +in.representative_income 27401 Representative total house income in the dwelling unit is $27401 +in.representative_income 27405 Representative total house income in the dwelling unit is $27405 +in.representative_income 27415 Representative total house income in the dwelling unit is $27415 +in.representative_income 27416 Representative total house income in the dwelling unit is $27416 +in.representative_income 27419 Representative total house income in the dwelling unit is $27419 +in.representative_income 27423 Representative total house income in the dwelling unit is $27423 +in.representative_income 27425 Representative total house income in the dwelling unit is $27425 +in.representative_income 27427 Representative total house income in the dwelling unit is $27427 +in.representative_income 27431 Representative total house income in the dwelling unit is $27431 +in.representative_income 27436 Representative total house income in the dwelling unit is $27436 +in.representative_income 27437 Representative total house income in the dwelling unit is $27437 +in.representative_income 27441 Representative total house income in the dwelling unit is $27441 +in.representative_income 27444 Representative total house income in the dwelling unit is $27444 +in.representative_income 27445 Representative total house income in the dwelling unit is $27445 +in.representative_income 27448 Representative total house income in the dwelling unit is $27448 +in.representative_income 27452 Representative total house income in the dwelling unit is $27452 +in.representative_income 27456 Representative total house income in the dwelling unit is $27456 +in.representative_income 27457 Representative total house income in the dwelling unit is $27457 +in.representative_income 27459 Representative total house income in the dwelling unit is $27459 +in.representative_income 27466 Representative total house income in the dwelling unit is $27466 +in.representative_income 27467 Representative total house income in the dwelling unit is $27467 +in.representative_income 27470 Representative total house income in the dwelling unit is $27470 +in.representative_income 27472 Representative total house income in the dwelling unit is $27472 +in.representative_income 27476 Representative total house income in the dwelling unit is $27476 +in.representative_income 27480 Representative total house income in the dwelling unit is $27480 +in.representative_income 27483 Representative total house income in the dwelling unit is $27483 +in.representative_income 27484 Representative total house income in the dwelling unit is $27484 +in.representative_income 27488 Representative total house income in the dwelling unit is $27488 +in.representative_income 27492 Representative total house income in the dwelling unit is $27492 +in.representative_income 27493 Representative total house income in the dwelling unit is $27493 +in.representative_income 27496 Representative total house income in the dwelling unit is $27496 +in.representative_income 27498 Representative total house income in the dwelling unit is $27498 +in.representative_income 27502 Representative total house income in the dwelling unit is $27502 +in.representative_income 27504 Representative total house income in the dwelling unit is $27504 +in.representative_income 27509 Representative total house income in the dwelling unit is $27509 +in.representative_income 27510 Representative total house income in the dwelling unit is $27510 +in.representative_income 27514 Representative total house income in the dwelling unit is $27514 +in.representative_income 27519 Representative total house income in the dwelling unit is $27519 +in.representative_income 27520 Representative total house income in the dwelling unit is $27520 +in.representative_income 27523 Representative total house income in the dwelling unit is $27523 +in.representative_income 27526 Representative total house income in the dwelling unit is $27526 +in.representative_income 27531 Representative total house income in the dwelling unit is $27531 +in.representative_income 27533 Representative total house income in the dwelling unit is $27533 +in.representative_income 27534 Representative total house income in the dwelling unit is $27534 +in.representative_income 27537 Representative total house income in the dwelling unit is $27537 +in.representative_income 27540 Representative total house income in the dwelling unit is $27540 +in.representative_income 27541 Representative total house income in the dwelling unit is $27541 +in.representative_income 27542 Representative total house income in the dwelling unit is $27542 +in.representative_income 27544 Representative total house income in the dwelling unit is $27544 +in.representative_income 27546 Representative total house income in the dwelling unit is $27546 +in.representative_income 27547 Representative total house income in the dwelling unit is $27547 +in.representative_income 27550 Representative total house income in the dwelling unit is $27550 +in.representative_income 27552 Representative total house income in the dwelling unit is $27552 +in.representative_income 27557 Representative total house income in the dwelling unit is $27557 +in.representative_income 27559 Representative total house income in the dwelling unit is $27559 +in.representative_income 27560 Representative total house income in the dwelling unit is $27560 +in.representative_income 27562 Representative total house income in the dwelling unit is $27562 +in.representative_income 27563 Representative total house income in the dwelling unit is $27563 +in.representative_income 27567 Representative total house income in the dwelling unit is $27567 +in.representative_income 27570 Representative total house income in the dwelling unit is $27570 +in.representative_income 27577 Representative total house income in the dwelling unit is $27577 +in.representative_income 27578 Representative total house income in the dwelling unit is $27578 +in.representative_income 27583 Representative total house income in the dwelling unit is $27583 +in.representative_income 27586 Representative total house income in the dwelling unit is $27586 +in.representative_income 27587 Representative total house income in the dwelling unit is $27587 +in.representative_income 27588 Representative total house income in the dwelling unit is $27588 +in.representative_income 27597 Representative total house income in the dwelling unit is $27597 +in.representative_income 27599 Representative total house income in the dwelling unit is $27599 +in.representative_income 27606 Representative total house income in the dwelling unit is $27606 +in.representative_income 27609 Representative total house income in the dwelling unit is $27609 +in.representative_income 27610 Representative total house income in the dwelling unit is $27610 +in.representative_income 27611 Representative total house income in the dwelling unit is $27611 +in.representative_income 27612 Representative total house income in the dwelling unit is $27612 +in.representative_income 27617 Representative total house income in the dwelling unit is $27617 +in.representative_income 27621 Representative total house income in the dwelling unit is $27621 +in.representative_income 27627 Representative total house income in the dwelling unit is $27627 +in.representative_income 27630 Representative total house income in the dwelling unit is $27630 +in.representative_income 27631 Representative total house income in the dwelling unit is $27631 +in.representative_income 27635 Representative total house income in the dwelling unit is $27635 +in.representative_income 27638 Representative total house income in the dwelling unit is $27638 +in.representative_income 27639 Representative total house income in the dwelling unit is $27639 +in.representative_income 27641 Representative total house income in the dwelling unit is $27641 +in.representative_income 27643 Representative total house income in the dwelling unit is $27643 +in.representative_income 27646 Representative total house income in the dwelling unit is $27646 +in.representative_income 27652 Representative total house income in the dwelling unit is $27652 +in.representative_income 27653 Representative total house income in the dwelling unit is $27653 +in.representative_income 27654 Representative total house income in the dwelling unit is $27654 +in.representative_income 27660 Representative total house income in the dwelling unit is $27660 +in.representative_income 27661 Representative total house income in the dwelling unit is $27661 +in.representative_income 27664 Representative total house income in the dwelling unit is $27664 +in.representative_income 27669 Representative total house income in the dwelling unit is $27669 +in.representative_income 27671 Representative total house income in the dwelling unit is $27671 +in.representative_income 27674 Representative total house income in the dwelling unit is $27674 +in.representative_income 27678 Representative total house income in the dwelling unit is $27678 +in.representative_income 27682 Representative total house income in the dwelling unit is $27682 +in.representative_income 27683 Representative total house income in the dwelling unit is $27683 +in.representative_income 27692 Representative total house income in the dwelling unit is $27692 +in.representative_income 27695 Representative total house income in the dwelling unit is $27695 +in.representative_income 27696 Representative total house income in the dwelling unit is $27696 +in.representative_income 27698 Representative total house income in the dwelling unit is $27698 +in.representative_income 27703 Representative total house income in the dwelling unit is $27703 +in.representative_income 27705 Representative total house income in the dwelling unit is $27705 +in.representative_income 27706 Representative total house income in the dwelling unit is $27706 +in.representative_income 27717 Representative total house income in the dwelling unit is $27717 +in.representative_income 27720 Representative total house income in the dwelling unit is $27720 +in.representative_income 27726 Representative total house income in the dwelling unit is $27726 +in.representative_income 27727 Representative total house income in the dwelling unit is $27727 +in.representative_income 27734 Representative total house income in the dwelling unit is $27734 +in.representative_income 27736 Representative total house income in the dwelling unit is $27736 +in.representative_income 27738 Representative total house income in the dwelling unit is $27738 +in.representative_income 27739 Representative total house income in the dwelling unit is $27739 +in.representative_income 27746 Representative total house income in the dwelling unit is $27746 +in.representative_income 27747 Representative total house income in the dwelling unit is $27747 +in.representative_income 27749 Representative total house income in the dwelling unit is $27749 +in.representative_income 27750 Representative total house income in the dwelling unit is $27750 +in.representative_income 27754 Representative total house income in the dwelling unit is $27754 +in.representative_income 27759 Representative total house income in the dwelling unit is $27759 +in.representative_income 27768 Representative total house income in the dwelling unit is $27768 +in.representative_income 27772 Representative total house income in the dwelling unit is $27772 +in.representative_income 27775 Representative total house income in the dwelling unit is $27775 +in.representative_income 27777 Representative total house income in the dwelling unit is $27777 +in.representative_income 27779 Representative total house income in the dwelling unit is $27779 +in.representative_income 27786 Representative total house income in the dwelling unit is $27786 +in.representative_income 27787 Representative total house income in the dwelling unit is $27787 +in.representative_income 27788 Representative total house income in the dwelling unit is $27788 +in.representative_income 27790 Representative total house income in the dwelling unit is $27790 +in.representative_income 27791 Representative total house income in the dwelling unit is $27791 +in.representative_income 27794 Representative total house income in the dwelling unit is $27794 +in.representative_income 27799 Representative total house income in the dwelling unit is $27799 +in.representative_income 27800 Representative total house income in the dwelling unit is $27800 +in.representative_income 27802 Representative total house income in the dwelling unit is $27802 +in.representative_income 27803 Representative total house income in the dwelling unit is $27803 +in.representative_income 27805 Representative total house income in the dwelling unit is $27805 +in.representative_income 27808 Representative total house income in the dwelling unit is $27808 +in.representative_income 27809 Representative total house income in the dwelling unit is $27809 +in.representative_income 27819 Representative total house income in the dwelling unit is $27819 +in.representative_income 27822 Representative total house income in the dwelling unit is $27822 +in.representative_income 27824 Representative total house income in the dwelling unit is $27824 +in.representative_income 27829 Representative total house income in the dwelling unit is $27829 +in.representative_income 27835 Representative total house income in the dwelling unit is $27835 +in.representative_income 27840 Representative total house income in the dwelling unit is $27840 +in.representative_income 27842 Representative total house income in the dwelling unit is $27842 +in.representative_income 27847 Representative total house income in the dwelling unit is $27847 +in.representative_income 27849 Representative total house income in the dwelling unit is $27849 +in.representative_income 27852 Representative total house income in the dwelling unit is $27852 +in.representative_income 27856 Representative total house income in the dwelling unit is $27856 +in.representative_income 27859 Representative total house income in the dwelling unit is $27859 +in.representative_income 27860 Representative total house income in the dwelling unit is $27860 +in.representative_income 27861 Representative total house income in the dwelling unit is $27861 +in.representative_income 27867 Representative total house income in the dwelling unit is $27867 +in.representative_income 27870 Representative total house income in the dwelling unit is $27870 +in.representative_income 27876 Representative total house income in the dwelling unit is $27876 +in.representative_income 27877 Representative total house income in the dwelling unit is $27877 +in.representative_income 27879 Representative total house income in the dwelling unit is $27879 +in.representative_income 27880 Representative total house income in the dwelling unit is $27880 +in.representative_income 27887 Representative total house income in the dwelling unit is $27887 +in.representative_income 27888 Representative total house income in the dwelling unit is $27888 +in.representative_income 27890 Representative total house income in the dwelling unit is $27890 +in.representative_income 27891 Representative total house income in the dwelling unit is $27891 +in.representative_income 27894 Representative total house income in the dwelling unit is $27894 +in.representative_income 27898 Representative total house income in the dwelling unit is $27898 +in.representative_income 27900 Representative total house income in the dwelling unit is $27900 +in.representative_income 27901 Representative total house income in the dwelling unit is $27901 +in.representative_income 27909 Representative total house income in the dwelling unit is $27909 +in.representative_income 27910 Representative total house income in the dwelling unit is $27910 +in.representative_income 27911 Representative total house income in the dwelling unit is $27911 +in.representative_income 27914 Representative total house income in the dwelling unit is $27914 +in.representative_income 27919 Representative total house income in the dwelling unit is $27919 +in.representative_income 27930 Representative total house income in the dwelling unit is $27930 +in.representative_income 27931 Representative total house income in the dwelling unit is $27931 +in.representative_income 27932 Representative total house income in the dwelling unit is $27932 +in.representative_income 27941 Representative total house income in the dwelling unit is $27941 +in.representative_income 27947 Representative total house income in the dwelling unit is $27947 +in.representative_income 27952 Representative total house income in the dwelling unit is $27952 +in.representative_income 27954 Representative total house income in the dwelling unit is $27954 +in.representative_income 27957 Representative total house income in the dwelling unit is $27957 +in.representative_income 27962 Representative total house income in the dwelling unit is $27962 +in.representative_income 27964 Representative total house income in the dwelling unit is $27964 +in.representative_income 27971 Representative total house income in the dwelling unit is $27971 +in.representative_income 27974 Representative total house income in the dwelling unit is $27974 +in.representative_income 27981 Representative total house income in the dwelling unit is $27981 +in.representative_income 27984 Representative total house income in the dwelling unit is $27984 +in.representative_income 27994 Representative total house income in the dwelling unit is $27994 +in.representative_income 27995 Representative total house income in the dwelling unit is $27995 +in.representative_income 27996 Representative total house income in the dwelling unit is $27996 +in.representative_income 28006 Representative total house income in the dwelling unit is $28006 +in.representative_income 28010 Representative total house income in the dwelling unit is $28010 +in.representative_income 28016 Representative total house income in the dwelling unit is $28016 +in.representative_income 28017 Representative total house income in the dwelling unit is $28017 +in.representative_income 28024 Representative total house income in the dwelling unit is $28024 +in.representative_income 28028 Representative total house income in the dwelling unit is $28028 +in.representative_income 28038 Representative total house income in the dwelling unit is $28038 +in.representative_income 28042 Representative total house income in the dwelling unit is $28042 +in.representative_income 28049 Representative total house income in the dwelling unit is $28049 +in.representative_income 28052 Representative total house income in the dwelling unit is $28052 +in.representative_income 28056 Representative total house income in the dwelling unit is $28056 +in.representative_income 28060 Representative total house income in the dwelling unit is $28060 +in.representative_income 28062 Representative total house income in the dwelling unit is $28062 +in.representative_income 28063 Representative total house income in the dwelling unit is $28063 +in.representative_income 28067 Representative total house income in the dwelling unit is $28067 +in.representative_income 28070 Representative total house income in the dwelling unit is $28070 +in.representative_income 28072 Representative total house income in the dwelling unit is $28072 +in.representative_income 28076 Representative total house income in the dwelling unit is $28076 +in.representative_income 28081 Representative total house income in the dwelling unit is $28081 +in.representative_income 28082 Representative total house income in the dwelling unit is $28082 +in.representative_income 28084 Representative total house income in the dwelling unit is $28084 +in.representative_income 28086 Representative total house income in the dwelling unit is $28086 +in.representative_income 28092 Representative total house income in the dwelling unit is $28092 +in.representative_income 28093 Representative total house income in the dwelling unit is $28093 +in.representative_income 28095 Representative total house income in the dwelling unit is $28095 +in.representative_income 28097 Representative total house income in the dwelling unit is $28097 +in.representative_income 28103 Representative total house income in the dwelling unit is $28103 +in.representative_income 28105 Representative total house income in the dwelling unit is $28105 +in.representative_income 28107 Representative total house income in the dwelling unit is $28107 +in.representative_income 28109 Representative total house income in the dwelling unit is $28109 +in.representative_income 28111 Representative total house income in the dwelling unit is $28111 +in.representative_income 28113 Representative total house income in the dwelling unit is $28113 +in.representative_income 28114 Representative total house income in the dwelling unit is $28114 +in.representative_income 28116 Representative total house income in the dwelling unit is $28116 +in.representative_income 28125 Representative total house income in the dwelling unit is $28125 +in.representative_income 28127 Representative total house income in the dwelling unit is $28127 +in.representative_income 28133 Representative total house income in the dwelling unit is $28133 +in.representative_income 28137 Representative total house income in the dwelling unit is $28137 +in.representative_income 28146 Representative total house income in the dwelling unit is $28146 +in.representative_income 28147 Representative total house income in the dwelling unit is $28147 +in.representative_income 28148 Representative total house income in the dwelling unit is $28148 +in.representative_income 28158 Representative total house income in the dwelling unit is $28158 +in.representative_income 28159 Representative total house income in the dwelling unit is $28159 +in.representative_income 28162 Representative total house income in the dwelling unit is $28162 +in.representative_income 28163 Representative total house income in the dwelling unit is $28163 +in.representative_income 28168 Representative total house income in the dwelling unit is $28168 +in.representative_income 28169 Representative total house income in the dwelling unit is $28169 +in.representative_income 28179 Representative total house income in the dwelling unit is $28179 +in.representative_income 28182 Representative total house income in the dwelling unit is $28182 +in.representative_income 28183 Representative total house income in the dwelling unit is $28183 +in.representative_income 28186 Representative total house income in the dwelling unit is $28186 +in.representative_income 28188 Representative total house income in the dwelling unit is $28188 +in.representative_income 28190 Representative total house income in the dwelling unit is $28190 +in.representative_income 28199 Representative total house income in the dwelling unit is $28199 +in.representative_income 28200 Representative total house income in the dwelling unit is $28200 +in.representative_income 28201 Representative total house income in the dwelling unit is $28201 +in.representative_income 28203 Representative total house income in the dwelling unit is $28203 +in.representative_income 28205 Representative total house income in the dwelling unit is $28205 +in.representative_income 28211 Representative total house income in the dwelling unit is $28211 +in.representative_income 28213 Representative total house income in the dwelling unit is $28213 +in.representative_income 28216 Representative total house income in the dwelling unit is $28216 +in.representative_income 28222 Representative total house income in the dwelling unit is $28222 +in.representative_income 28223 Representative total house income in the dwelling unit is $28223 +in.representative_income 28232 Representative total house income in the dwelling unit is $28232 +in.representative_income 28233 Representative total house income in the dwelling unit is $28233 +in.representative_income 28234 Representative total house income in the dwelling unit is $28234 +in.representative_income 28236 Representative total house income in the dwelling unit is $28236 +in.representative_income 28238 Representative total house income in the dwelling unit is $28238 +in.representative_income 28243 Representative total house income in the dwelling unit is $28243 +in.representative_income 28244 Representative total house income in the dwelling unit is $28244 +in.representative_income 28253 Representative total house income in the dwelling unit is $28253 +in.representative_income 28255 Representative total house income in the dwelling unit is $28255 +in.representative_income 28261 Representative total house income in the dwelling unit is $28261 +in.representative_income 28264 Representative total house income in the dwelling unit is $28264 +in.representative_income 28276 Representative total house income in the dwelling unit is $28276 +in.representative_income 28283 Representative total house income in the dwelling unit is $28283 +in.representative_income 28284 Representative total house income in the dwelling unit is $28284 +in.representative_income 28285 Representative total house income in the dwelling unit is $28285 +in.representative_income 28296 Representative total house income in the dwelling unit is $28296 +in.representative_income 28309 Representative total house income in the dwelling unit is $28309 +in.representative_income 28310 Representative total house income in the dwelling unit is $28310 +in.representative_income 28313 Representative total house income in the dwelling unit is $28313 +in.representative_income 28314 Representative total house income in the dwelling unit is $28314 +in.representative_income 28317 Representative total house income in the dwelling unit is $28317 +in.representative_income 28328 Representative total house income in the dwelling unit is $28328 +in.representative_income 28330 Representative total house income in the dwelling unit is $28330 +in.representative_income 28334 Representative total house income in the dwelling unit is $28334 +in.representative_income 28335 Representative total house income in the dwelling unit is $28335 +in.representative_income 28339 Representative total house income in the dwelling unit is $28339 +in.representative_income 28344 Representative total house income in the dwelling unit is $28344 +in.representative_income 28345 Representative total house income in the dwelling unit is $28345 +in.representative_income 28349 Representative total house income in the dwelling unit is $28349 +in.representative_income 28350 Representative total house income in the dwelling unit is $28350 +in.representative_income 28352 Representative total house income in the dwelling unit is $28352 +in.representative_income 28355 Representative total house income in the dwelling unit is $28355 +in.representative_income 28359 Representative total house income in the dwelling unit is $28359 +in.representative_income 28363 Representative total house income in the dwelling unit is $28363 +in.representative_income 28365 Representative total house income in the dwelling unit is $28365 +in.representative_income 28369 Representative total house income in the dwelling unit is $28369 +in.representative_income 28371 Representative total house income in the dwelling unit is $28371 +in.representative_income 28372 Representative total house income in the dwelling unit is $28372 +in.representative_income 28376 Representative total house income in the dwelling unit is $28376 +in.representative_income 28379 Representative total house income in the dwelling unit is $28379 +in.representative_income 28382 Representative total house income in the dwelling unit is $28382 +in.representative_income 28384 Representative total house income in the dwelling unit is $28384 +in.representative_income 28385 Representative total house income in the dwelling unit is $28385 +in.representative_income 28393 Representative total house income in the dwelling unit is $28393 +in.representative_income 28395 Representative total house income in the dwelling unit is $28395 +in.representative_income 28404 Representative total house income in the dwelling unit is $28404 +in.representative_income 28406 Representative total house income in the dwelling unit is $28406 +in.representative_income 28416 Representative total house income in the dwelling unit is $28416 +in.representative_income 28422 Representative total house income in the dwelling unit is $28422 +in.representative_income 28425 Representative total house income in the dwelling unit is $28425 +in.representative_income 28436 Representative total house income in the dwelling unit is $28436 +in.representative_income 28446 Representative total house income in the dwelling unit is $28446 +in.representative_income 28455 Representative total house income in the dwelling unit is $28455 +in.representative_income 28457 Representative total house income in the dwelling unit is $28457 +in.representative_income 28459 Representative total house income in the dwelling unit is $28459 +in.representative_income 28467 Representative total house income in the dwelling unit is $28467 +in.representative_income 28468 Representative total house income in the dwelling unit is $28468 +in.representative_income 28471 Representative total house income in the dwelling unit is $28471 +in.representative_income 28474 Representative total house income in the dwelling unit is $28474 +in.representative_income 28481 Representative total house income in the dwelling unit is $28481 +in.representative_income 28485 Representative total house income in the dwelling unit is $28485 +in.representative_income 28486 Representative total house income in the dwelling unit is $28486 +in.representative_income 28488 Representative total house income in the dwelling unit is $28488 +in.representative_income 28492 Representative total house income in the dwelling unit is $28492 +in.representative_income 28494 Representative total house income in the dwelling unit is $28494 +in.representative_income 28495 Representative total house income in the dwelling unit is $28495 +in.representative_income 28496 Representative total house income in the dwelling unit is $28496 +in.representative_income 28500 Representative total house income in the dwelling unit is $28500 +in.representative_income 28506 Representative total house income in the dwelling unit is $28506 +in.representative_income 28511 Representative total house income in the dwelling unit is $28511 +in.representative_income 28516 Representative total house income in the dwelling unit is $28516 +in.representative_income 28524 Representative total house income in the dwelling unit is $28524 +in.representative_income 28525 Representative total house income in the dwelling unit is $28525 +in.representative_income 28554 Representative total house income in the dwelling unit is $28554 +in.representative_income 28557 Representative total house income in the dwelling unit is $28557 +in.representative_income 28571 Representative total house income in the dwelling unit is $28571 +in.representative_income 28580 Representative total house income in the dwelling unit is $28580 +in.representative_income 28582 Representative total house income in the dwelling unit is $28582 +in.representative_income 28587 Representative total house income in the dwelling unit is $28587 +in.representative_income 28589 Representative total house income in the dwelling unit is $28589 +in.representative_income 28596 Representative total house income in the dwelling unit is $28596 +in.representative_income 28600 Representative total house income in the dwelling unit is $28600 +in.representative_income 28607 Representative total house income in the dwelling unit is $28607 +in.representative_income 28611 Representative total house income in the dwelling unit is $28611 +in.representative_income 28613 Representative total house income in the dwelling unit is $28613 +in.representative_income 28617 Representative total house income in the dwelling unit is $28617 +in.representative_income 28623 Representative total house income in the dwelling unit is $28623 +in.representative_income 28626 Representative total house income in the dwelling unit is $28626 +in.representative_income 28632 Representative total house income in the dwelling unit is $28632 +in.representative_income 28633 Representative total house income in the dwelling unit is $28633 +in.representative_income 28638 Representative total house income in the dwelling unit is $28638 +in.representative_income 28654 Representative total house income in the dwelling unit is $28654 +in.representative_income 28661 Representative total house income in the dwelling unit is $28661 +in.representative_income 28665 Representative total house income in the dwelling unit is $28665 +in.representative_income 28666 Representative total house income in the dwelling unit is $28666 +in.representative_income 28668 Representative total house income in the dwelling unit is $28668 +in.representative_income 28671 Representative total house income in the dwelling unit is $28671 +in.representative_income 28674 Representative total house income in the dwelling unit is $28674 +in.representative_income 28675 Representative total house income in the dwelling unit is $28675 +in.representative_income 28685 Representative total house income in the dwelling unit is $28685 +in.representative_income 28688 Representative total house income in the dwelling unit is $28688 +in.representative_income 28695 Representative total house income in the dwelling unit is $28695 +in.representative_income 28697 Representative total house income in the dwelling unit is $28697 +in.representative_income 28707 Representative total house income in the dwelling unit is $28707 +in.representative_income 28719 Representative total house income in the dwelling unit is $28719 +in.representative_income 28726 Representative total house income in the dwelling unit is $28726 +in.representative_income 28734 Representative total house income in the dwelling unit is $28734 +in.representative_income 28739 Representative total house income in the dwelling unit is $28739 +in.representative_income 28740 Representative total house income in the dwelling unit is $28740 +in.representative_income 28746 Representative total house income in the dwelling unit is $28746 +in.representative_income 28758 Representative total house income in the dwelling unit is $28758 +in.representative_income 28769 Representative total house income in the dwelling unit is $28769 +in.representative_income 28770 Representative total house income in the dwelling unit is $28770 +in.representative_income 28771 Representative total house income in the dwelling unit is $28771 +in.representative_income 28777 Representative total house income in the dwelling unit is $28777 +in.representative_income 28789 Representative total house income in the dwelling unit is $28789 +in.representative_income 28791 Representative total house income in the dwelling unit is $28791 +in.representative_income 28794 Representative total house income in the dwelling unit is $28794 +in.representative_income 28802 Representative total house income in the dwelling unit is $28802 +in.representative_income 28808 Representative total house income in the dwelling unit is $28808 +in.representative_income 28812 Representative total house income in the dwelling unit is $28812 +in.representative_income 28822 Representative total house income in the dwelling unit is $28822 +in.representative_income 28843 Representative total house income in the dwelling unit is $28843 +in.representative_income 28848 Representative total house income in the dwelling unit is $28848 +in.representative_income 28852 Representative total house income in the dwelling unit is $28852 +in.representative_income 28860 Representative total house income in the dwelling unit is $28860 +in.representative_income 28870 Representative total house income in the dwelling unit is $28870 +in.representative_income 28872 Representative total house income in the dwelling unit is $28872 +in.representative_income 28875 Representative total house income in the dwelling unit is $28875 +in.representative_income 28880 Representative total house income in the dwelling unit is $28880 +in.representative_income 28890 Representative total house income in the dwelling unit is $28890 +in.representative_income 28896 Representative total house income in the dwelling unit is $28896 +in.representative_income 28902 Representative total house income in the dwelling unit is $28902 +in.representative_income 28912 Representative total house income in the dwelling unit is $28912 +in.representative_income 28916 Representative total house income in the dwelling unit is $28916 +in.representative_income 28920 Representative total house income in the dwelling unit is $28920 +in.representative_income 28925 Representative total house income in the dwelling unit is $28925 +in.representative_income 28931 Representative total house income in the dwelling unit is $28931 +in.representative_income 28932 Representative total house income in the dwelling unit is $28932 +in.representative_income 28957 Representative total house income in the dwelling unit is $28957 +in.representative_income 28963 Representative total house income in the dwelling unit is $28963 +in.representative_income 28979 Representative total house income in the dwelling unit is $28979 +in.representative_income 28981 Representative total house income in the dwelling unit is $28981 +in.representative_income 28983 Representative total house income in the dwelling unit is $28983 +in.representative_income 28984 Representative total house income in the dwelling unit is $28984 +in.representative_income 28991 Representative total house income in the dwelling unit is $28991 +in.representative_income 28994 Representative total house income in the dwelling unit is $28994 +in.representative_income 29000 Representative total house income in the dwelling unit is $29000 +in.representative_income 29002 Representative total house income in the dwelling unit is $29002 +in.representative_income 29011 Representative total house income in the dwelling unit is $29011 +in.representative_income 29032 Representative total house income in the dwelling unit is $29032 +in.representative_income 29037 Representative total house income in the dwelling unit is $29037 +in.representative_income 29038 Representative total house income in the dwelling unit is $29038 +in.representative_income 29045 Representative total house income in the dwelling unit is $29045 +in.representative_income 29048 Representative total house income in the dwelling unit is $29048 +in.representative_income 29065 Representative total house income in the dwelling unit is $29065 +in.representative_income 29067 Representative total house income in the dwelling unit is $29067 +in.representative_income 29069 Representative total house income in the dwelling unit is $29069 +in.representative_income 29080 Representative total house income in the dwelling unit is $29080 +in.representative_income 29087 Representative total house income in the dwelling unit is $29087 +in.representative_income 29090 Representative total house income in the dwelling unit is $29090 +in.representative_income 29092 Representative total house income in the dwelling unit is $29092 +in.representative_income 29097 Representative total house income in the dwelling unit is $29097 +in.representative_income 29107 Representative total house income in the dwelling unit is $29107 +in.representative_income 29112 Representative total house income in the dwelling unit is $29112 +in.representative_income 29117 Representative total house income in the dwelling unit is $29117 +in.representative_income 29122 Representative total house income in the dwelling unit is $29122 +in.representative_income 29128 Representative total house income in the dwelling unit is $29128 +in.representative_income 29139 Representative total house income in the dwelling unit is $29139 +in.representative_income 29143 Representative total house income in the dwelling unit is $29143 +in.representative_income 29144 Representative total house income in the dwelling unit is $29144 +in.representative_income 29151 Representative total house income in the dwelling unit is $29151 +in.representative_income 29153 Representative total house income in the dwelling unit is $29153 +in.representative_income 29173 Representative total house income in the dwelling unit is $29173 +in.representative_income 29175 Representative total house income in the dwelling unit is $29175 +in.representative_income 29177 Representative total house income in the dwelling unit is $29177 +in.representative_income 29189 Representative total house income in the dwelling unit is $29189 +in.representative_income 29190 Representative total house income in the dwelling unit is $29190 +in.representative_income 29193 Representative total house income in the dwelling unit is $29193 +in.representative_income 29198 Representative total house income in the dwelling unit is $29198 +in.representative_income 29205 Representative total house income in the dwelling unit is $29205 +in.representative_income 29212 Representative total house income in the dwelling unit is $29212 +in.representative_income 29223 Representative total house income in the dwelling unit is $29223 +in.representative_income 29252 Representative total house income in the dwelling unit is $29252 +in.representative_income 29262 Representative total house income in the dwelling unit is $29262 +in.representative_income 29281 Representative total house income in the dwelling unit is $29281 +in.representative_income 29294 Representative total house income in the dwelling unit is $29294 +in.representative_income 29299 Representative total house income in the dwelling unit is $29299 +in.representative_income 29301 Representative total house income in the dwelling unit is $29301 +in.representative_income 29305 Representative total house income in the dwelling unit is $29305 +in.representative_income 29318 Representative total house income in the dwelling unit is $29318 +in.representative_income 29324 Representative total house income in the dwelling unit is $29324 +in.representative_income 29329 Representative total house income in the dwelling unit is $29329 +in.representative_income 29335 Representative total house income in the dwelling unit is $29335 +in.representative_income 29339 Representative total house income in the dwelling unit is $29339 +in.representative_income 29345 Representative total house income in the dwelling unit is $29345 +in.representative_income 29347 Representative total house income in the dwelling unit is $29347 +in.representative_income 29365 Representative total house income in the dwelling unit is $29365 +in.representative_income 29366 Representative total house income in the dwelling unit is $29366 +in.representative_income 29371 Representative total house income in the dwelling unit is $29371 +in.representative_income 29381 Representative total house income in the dwelling unit is $29381 +in.representative_income 29389 Representative total house income in the dwelling unit is $29389 +in.representative_income 29395 Representative total house income in the dwelling unit is $29395 +in.representative_income 29396 Representative total house income in the dwelling unit is $29396 +in.representative_income 29402 Representative total house income in the dwelling unit is $29402 +in.representative_income 29405 Representative total house income in the dwelling unit is $29405 +in.representative_income 29407 Representative total house income in the dwelling unit is $29407 +in.representative_income 29413 Representative total house income in the dwelling unit is $29413 +in.representative_income 29424 Representative total house income in the dwelling unit is $29424 +in.representative_income 29426 Representative total house income in the dwelling unit is $29426 +in.representative_income 29443 Representative total house income in the dwelling unit is $29443 +in.representative_income 29488 Representative total house income in the dwelling unit is $29488 +in.representative_income 29496 Representative total house income in the dwelling unit is $29496 +in.representative_income 29497 Representative total house income in the dwelling unit is $29497 +in.representative_income 29498 Representative total house income in the dwelling unit is $29498 +in.representative_income 29499 Representative total house income in the dwelling unit is $29499 +in.representative_income 29506 Representative total house income in the dwelling unit is $29506 +in.representative_income 29508 Representative total house income in the dwelling unit is $29508 +in.representative_income 29509 Representative total house income in the dwelling unit is $29509 +in.representative_income 29520 Representative total house income in the dwelling unit is $29520 +in.representative_income 29529 Representative total house income in the dwelling unit is $29529 +in.representative_income 29561 Representative total house income in the dwelling unit is $29561 +in.representative_income 29597 Representative total house income in the dwelling unit is $29597 +in.representative_income 29603 Representative total house income in the dwelling unit is $29603 +in.representative_income 29604 Representative total house income in the dwelling unit is $29604 +in.representative_income 29615 Representative total house income in the dwelling unit is $29615 +in.representative_income 29627 Representative total house income in the dwelling unit is $29627 +in.representative_income 29635 Representative total house income in the dwelling unit is $29635 +in.representative_income 29645 Representative total house income in the dwelling unit is $29645 +in.representative_income 29658 Representative total house income in the dwelling unit is $29658 +in.representative_income 29687 Representative total house income in the dwelling unit is $29687 +in.representative_income 29696 Representative total house income in the dwelling unit is $29696 +in.representative_income 29698 Representative total house income in the dwelling unit is $29698 +in.representative_income 29706 Representative total house income in the dwelling unit is $29706 +in.representative_income 29713 Representative total house income in the dwelling unit is $29713 +in.representative_income 29735 Representative total house income in the dwelling unit is $29735 +in.representative_income 29740 Representative total house income in the dwelling unit is $29740 +in.representative_income 29746 Representative total house income in the dwelling unit is $29746 +in.representative_income 29749 Representative total house income in the dwelling unit is $29749 +in.representative_income 29778 Representative total house income in the dwelling unit is $29778 +in.representative_income 29789 Representative total house income in the dwelling unit is $29789 +in.representative_income 29799 Representative total house income in the dwelling unit is $29799 +in.representative_income 29809 Representative total house income in the dwelling unit is $29809 +in.representative_income 29811 Representative total house income in the dwelling unit is $29811 +in.representative_income 29819 Representative total house income in the dwelling unit is $29819 +in.representative_income 29821 Representative total house income in the dwelling unit is $29821 +in.representative_income 29842 Representative total house income in the dwelling unit is $29842 +in.representative_income 29845 Representative total house income in the dwelling unit is $29845 +in.representative_income 29850 Representative total house income in the dwelling unit is $29850 +in.representative_income 29864 Representative total house income in the dwelling unit is $29864 +in.representative_income 29870 Representative total house income in the dwelling unit is $29870 +in.representative_income 29897 Representative total house income in the dwelling unit is $29897 +in.representative_income 29900 Representative total house income in the dwelling unit is $29900 +in.representative_income 29912 Representative total house income in the dwelling unit is $29912 +in.representative_income 29917 Representative total house income in the dwelling unit is $29917 +in.representative_income 29927 Representative total house income in the dwelling unit is $29927 +in.representative_income 29929 Representative total house income in the dwelling unit is $29929 +in.representative_income 29943 Representative total house income in the dwelling unit is $29943 +in.representative_income 29950 Representative total house income in the dwelling unit is $29950 +in.representative_income 29951 Representative total house income in the dwelling unit is $29951 +in.representative_income 29971 Representative total house income in the dwelling unit is $29971 +in.representative_income 29985 Representative total house income in the dwelling unit is $29985 +in.representative_income 30001 Representative total house income in the dwelling unit is $30001 +in.representative_income 30003 Representative total house income in the dwelling unit is $30003 +in.representative_income 30004 Representative total house income in the dwelling unit is $30004 +in.representative_income 30015 Representative total house income in the dwelling unit is $30015 +in.representative_income 30035 Representative total house income in the dwelling unit is $30035 +in.representative_income 30037 Representative total house income in the dwelling unit is $30037 +in.representative_income 30046 Representative total house income in the dwelling unit is $30046 +in.representative_income 30056 Representative total house income in the dwelling unit is $30056 +in.representative_income 30057 Representative total house income in the dwelling unit is $30057 +in.representative_income 30102 Representative total house income in the dwelling unit is $30102 +in.representative_income 30118 Representative total house income in the dwelling unit is $30118 +in.representative_income 30128 Representative total house income in the dwelling unit is $30128 +in.representative_income 30145 Representative total house income in the dwelling unit is $30145 +in.representative_income 30152 Representative total house income in the dwelling unit is $30152 +in.representative_income 30162 Representative total house income in the dwelling unit is $30162 +in.representative_income 30164 Representative total house income in the dwelling unit is $30164 +in.representative_income 30165 Representative total house income in the dwelling unit is $30165 +in.representative_income 30170 Representative total house income in the dwelling unit is $30170 +in.representative_income 30174 Representative total house income in the dwelling unit is $30174 +in.representative_income 30180 Representative total house income in the dwelling unit is $30180 +in.representative_income 30185 Representative total house income in the dwelling unit is $30185 +in.representative_income 30191 Representative total house income in the dwelling unit is $30191 +in.representative_income 30203 Representative total house income in the dwelling unit is $30203 +in.representative_income 30218 Representative total house income in the dwelling unit is $30218 +in.representative_income 30222 Representative total house income in the dwelling unit is $30222 +in.representative_income 30250 Representative total house income in the dwelling unit is $30250 +in.representative_income 30253 Representative total house income in the dwelling unit is $30253 +in.representative_income 30267 Representative total house income in the dwelling unit is $30267 +in.representative_income 30271 Representative total house income in the dwelling unit is $30271 +in.representative_income 30272 Representative total house income in the dwelling unit is $30272 +in.representative_income 30276 Representative total house income in the dwelling unit is $30276 +in.representative_income 30296 Representative total house income in the dwelling unit is $30296 +in.representative_income 30304 Representative total house income in the dwelling unit is $30304 +in.representative_income 30307 Representative total house income in the dwelling unit is $30307 +in.representative_income 30308 Representative total house income in the dwelling unit is $30308 +in.representative_income 30314 Representative total house income in the dwelling unit is $30314 +in.representative_income 30318 Representative total house income in the dwelling unit is $30318 +in.representative_income 30325 Representative total house income in the dwelling unit is $30325 +in.representative_income 30335 Representative total house income in the dwelling unit is $30335 +in.representative_income 30341 Representative total house income in the dwelling unit is $30341 +in.representative_income 30345 Representative total house income in the dwelling unit is $30345 +in.representative_income 30355 Representative total house income in the dwelling unit is $30355 +in.representative_income 30361 Representative total house income in the dwelling unit is $30361 +in.representative_income 30368 Representative total house income in the dwelling unit is $30368 +in.representative_income 30373 Representative total house income in the dwelling unit is $30373 +in.representative_income 30379 Representative total house income in the dwelling unit is $30379 +in.representative_income 30383 Representative total house income in the dwelling unit is $30383 +in.representative_income 30389 Representative total house income in the dwelling unit is $30389 +in.representative_income 30393 Representative total house income in the dwelling unit is $30393 +in.representative_income 30395 Representative total house income in the dwelling unit is $30395 +in.representative_income 30400 Representative total house income in the dwelling unit is $30400 +in.representative_income 30404 Representative total house income in the dwelling unit is $30404 +in.representative_income 30405 Representative total house income in the dwelling unit is $30405 +in.representative_income 30411 Representative total house income in the dwelling unit is $30411 +in.representative_income 30422 Representative total house income in the dwelling unit is $30422 +in.representative_income 30426 Representative total house income in the dwelling unit is $30426 +in.representative_income 30427 Representative total house income in the dwelling unit is $30427 +in.representative_income 30429 Representative total house income in the dwelling unit is $30429 +in.representative_income 30444 Representative total house income in the dwelling unit is $30444 +in.representative_income 30446 Representative total house income in the dwelling unit is $30446 +in.representative_income 30466 Representative total house income in the dwelling unit is $30466 +in.representative_income 30467 Representative total house income in the dwelling unit is $30467 +in.representative_income 30469 Representative total house income in the dwelling unit is $30469 +in.representative_income 30476 Representative total house income in the dwelling unit is $30476 +in.representative_income 30478 Representative total house income in the dwelling unit is $30478 +in.representative_income 30486 Representative total house income in the dwelling unit is $30486 +in.representative_income 30491 Representative total house income in the dwelling unit is $30491 +in.representative_income 30499 Representative total house income in the dwelling unit is $30499 +in.representative_income 30506 Representative total house income in the dwelling unit is $30506 +in.representative_income 30513 Representative total house income in the dwelling unit is $30513 +in.representative_income 30521 Representative total house income in the dwelling unit is $30521 +in.representative_income 30531 Representative total house income in the dwelling unit is $30531 +in.representative_income 30539 Representative total house income in the dwelling unit is $30539 +in.representative_income 30552 Representative total house income in the dwelling unit is $30552 +in.representative_income 30557 Representative total house income in the dwelling unit is $30557 +in.representative_income 30566 Representative total house income in the dwelling unit is $30566 +in.representative_income 30578 Representative total house income in the dwelling unit is $30578 +in.representative_income 30583 Representative total house income in the dwelling unit is $30583 +in.representative_income 30588 Representative total house income in the dwelling unit is $30588 +in.representative_income 30593 Representative total house income in the dwelling unit is $30593 +in.representative_income 30597 Representative total house income in the dwelling unit is $30597 +in.representative_income 30604 Representative total house income in the dwelling unit is $30604 +in.representative_income 30607 Representative total house income in the dwelling unit is $30607 +in.representative_income 30617 Representative total house income in the dwelling unit is $30617 +in.representative_income 30626 Representative total house income in the dwelling unit is $30626 +in.representative_income 30632 Representative total house income in the dwelling unit is $30632 +in.representative_income 30634 Representative total house income in the dwelling unit is $30634 +in.representative_income 30636 Representative total house income in the dwelling unit is $30636 +in.representative_income 30638 Representative total house income in the dwelling unit is $30638 +in.representative_income 30642 Representative total house income in the dwelling unit is $30642 +in.representative_income 30647 Representative total house income in the dwelling unit is $30647 +in.representative_income 30648 Representative total house income in the dwelling unit is $30648 +in.representative_income 30658 Representative total house income in the dwelling unit is $30658 +in.representative_income 30668 Representative total house income in the dwelling unit is $30668 +in.representative_income 30676 Representative total house income in the dwelling unit is $30676 +in.representative_income 30686 Representative total house income in the dwelling unit is $30686 +in.representative_income 30688 Representative total house income in the dwelling unit is $30688 +in.representative_income 30689 Representative total house income in the dwelling unit is $30689 +in.representative_income 30698 Representative total house income in the dwelling unit is $30698 +in.representative_income 30700 Representative total house income in the dwelling unit is $30700 +in.representative_income 30701 Representative total house income in the dwelling unit is $30701 +in.representative_income 30705 Representative total house income in the dwelling unit is $30705 +in.representative_income 30708 Representative total house income in the dwelling unit is $30708 +in.representative_income 30710 Representative total house income in the dwelling unit is $30710 +in.representative_income 30729 Representative total house income in the dwelling unit is $30729 +in.representative_income 30732 Representative total house income in the dwelling unit is $30732 +in.representative_income 30737 Representative total house income in the dwelling unit is $30737 +in.representative_income 30755 Representative total house income in the dwelling unit is $30755 +in.representative_income 30764 Representative total house income in the dwelling unit is $30764 +in.representative_income 30765 Representative total house income in the dwelling unit is $30765 +in.representative_income 30767 Representative total house income in the dwelling unit is $30767 +in.representative_income 30769 Representative total house income in the dwelling unit is $30769 +in.representative_income 30779 Representative total house income in the dwelling unit is $30779 +in.representative_income 30789 Representative total house income in the dwelling unit is $30789 +in.representative_income 30792 Representative total house income in the dwelling unit is $30792 +in.representative_income 30794 Representative total house income in the dwelling unit is $30794 +in.representative_income 30795 Representative total house income in the dwelling unit is $30795 +in.representative_income 30808 Representative total house income in the dwelling unit is $30808 +in.representative_income 30809 Representative total house income in the dwelling unit is $30809 +in.representative_income 30812 Representative total house income in the dwelling unit is $30812 +in.representative_income 30820 Representative total house income in the dwelling unit is $30820 +in.representative_income 30826 Representative total house income in the dwelling unit is $30826 +in.representative_income 30829 Representative total house income in the dwelling unit is $30829 +in.representative_income 30840 Representative total house income in the dwelling unit is $30840 +in.representative_income 30841 Representative total house income in the dwelling unit is $30841 +in.representative_income 30847 Representative total house income in the dwelling unit is $30847 +in.representative_income 30851 Representative total house income in the dwelling unit is $30851 +in.representative_income 30858 Representative total house income in the dwelling unit is $30858 +in.representative_income 30885 Representative total house income in the dwelling unit is $30885 +in.representative_income 30900 Representative total house income in the dwelling unit is $30900 +in.representative_income 30901 Representative total house income in the dwelling unit is $30901 +in.representative_income 30910 Representative total house income in the dwelling unit is $30910 +in.representative_income 30916 Representative total house income in the dwelling unit is $30916 +in.representative_income 30917 Representative total house income in the dwelling unit is $30917 +in.representative_income 30923 Representative total house income in the dwelling unit is $30923 +in.representative_income 30933 Representative total house income in the dwelling unit is $30933 +in.representative_income 30944 Representative total house income in the dwelling unit is $30944 +in.representative_income 30945 Representative total house income in the dwelling unit is $30945 +in.representative_income 30951 Representative total house income in the dwelling unit is $30951 +in.representative_income 30952 Representative total house income in the dwelling unit is $30952 +in.representative_income 30961 Representative total house income in the dwelling unit is $30961 +in.representative_income 30962 Representative total house income in the dwelling unit is $30962 +in.representative_income 30964 Representative total house income in the dwelling unit is $30964 +in.representative_income 30969 Representative total house income in the dwelling unit is $30969 +in.representative_income 30971 Representative total house income in the dwelling unit is $30971 +in.representative_income 30978 Representative total house income in the dwelling unit is $30978 +in.representative_income 30979 Representative total house income in the dwelling unit is $30979 +in.representative_income 30984 Representative total house income in the dwelling unit is $30984 +in.representative_income 31001 Representative total house income in the dwelling unit is $31001 +in.representative_income 31005 Representative total house income in the dwelling unit is $31005 +in.representative_income 31009 Representative total house income in the dwelling unit is $31009 +in.representative_income 31011 Representative total house income in the dwelling unit is $31011 +in.representative_income 31012 Representative total house income in the dwelling unit is $31012 +in.representative_income 31016 Representative total house income in the dwelling unit is $31016 +in.representative_income 31017 Representative total house income in the dwelling unit is $31017 +in.representative_income 31023 Representative total house income in the dwelling unit is $31023 +in.representative_income 31028 Representative total house income in the dwelling unit is $31028 +in.representative_income 31031 Representative total house income in the dwelling unit is $31031 +in.representative_income 31034 Representative total house income in the dwelling unit is $31034 +in.representative_income 31036 Representative total house income in the dwelling unit is $31036 +in.representative_income 31044 Representative total house income in the dwelling unit is $31044 +in.representative_income 31046 Representative total house income in the dwelling unit is $31046 +in.representative_income 31058 Representative total house income in the dwelling unit is $31058 +in.representative_income 31068 Representative total house income in the dwelling unit is $31068 +in.representative_income 31070 Representative total house income in the dwelling unit is $31070 +in.representative_income 31072 Representative total house income in the dwelling unit is $31072 +in.representative_income 31076 Representative total house income in the dwelling unit is $31076 +in.representative_income 31078 Representative total house income in the dwelling unit is $31078 +in.representative_income 31079 Representative total house income in the dwelling unit is $31079 +in.representative_income 31087 Representative total house income in the dwelling unit is $31087 +in.representative_income 31088 Representative total house income in the dwelling unit is $31088 +in.representative_income 31111 Representative total house income in the dwelling unit is $31111 +in.representative_income 31112 Representative total house income in the dwelling unit is $31112 +in.representative_income 31117 Representative total house income in the dwelling unit is $31117 +in.representative_income 31118 Representative total house income in the dwelling unit is $31118 +in.representative_income 31121 Representative total house income in the dwelling unit is $31121 +in.representative_income 31123 Representative total house income in the dwelling unit is $31123 +in.representative_income 31128 Representative total house income in the dwelling unit is $31128 +in.representative_income 31129 Representative total house income in the dwelling unit is $31129 +in.representative_income 31130 Representative total house income in the dwelling unit is $31130 +in.representative_income 31131 Representative total house income in the dwelling unit is $31131 +in.representative_income 31140 Representative total house income in the dwelling unit is $31140 +in.representative_income 31148 Representative total house income in the dwelling unit is $31148 +in.representative_income 31150 Representative total house income in the dwelling unit is $31150 +in.representative_income 31152 Representative total house income in the dwelling unit is $31152 +in.representative_income 31160 Representative total house income in the dwelling unit is $31160 +in.representative_income 31163 Representative total house income in the dwelling unit is $31163 +in.representative_income 31164 Representative total house income in the dwelling unit is $31164 +in.representative_income 31169 Representative total house income in the dwelling unit is $31169 +in.representative_income 31171 Representative total house income in the dwelling unit is $31171 +in.representative_income 31174 Representative total house income in the dwelling unit is $31174 +in.representative_income 31183 Representative total house income in the dwelling unit is $31183 +in.representative_income 31185 Representative total house income in the dwelling unit is $31185 +in.representative_income 31193 Representative total house income in the dwelling unit is $31193 +in.representative_income 31195 Representative total house income in the dwelling unit is $31195 +in.representative_income 31205 Representative total house income in the dwelling unit is $31205 +in.representative_income 31211 Representative total house income in the dwelling unit is $31211 +in.representative_income 31213 Representative total house income in the dwelling unit is $31213 +in.representative_income 31216 Representative total house income in the dwelling unit is $31216 +in.representative_income 31225 Representative total house income in the dwelling unit is $31225 +in.representative_income 31226 Representative total house income in the dwelling unit is $31226 +in.representative_income 31227 Representative total house income in the dwelling unit is $31227 +in.representative_income 31228 Representative total house income in the dwelling unit is $31228 +in.representative_income 31234 Representative total house income in the dwelling unit is $31234 +in.representative_income 31237 Representative total house income in the dwelling unit is $31237 +in.representative_income 31239 Representative total house income in the dwelling unit is $31239 +in.representative_income 31241 Representative total house income in the dwelling unit is $31241 +in.representative_income 31247 Representative total house income in the dwelling unit is $31247 +in.representative_income 31253 Representative total house income in the dwelling unit is $31253 +in.representative_income 31264 Representative total house income in the dwelling unit is $31264 +in.representative_income 31269 Representative total house income in the dwelling unit is $31269 +in.representative_income 31273 Representative total house income in the dwelling unit is $31273 +in.representative_income 31274 Representative total house income in the dwelling unit is $31274 +in.representative_income 31275 Representative total house income in the dwelling unit is $31275 +in.representative_income 31277 Representative total house income in the dwelling unit is $31277 +in.representative_income 31281 Representative total house income in the dwelling unit is $31281 +in.representative_income 31291 Representative total house income in the dwelling unit is $31291 +in.representative_income 31299 Representative total house income in the dwelling unit is $31299 +in.representative_income 31314 Representative total house income in the dwelling unit is $31314 +in.representative_income 31315 Representative total house income in the dwelling unit is $31315 +in.representative_income 31322 Representative total house income in the dwelling unit is $31322 +in.representative_income 31323 Representative total house income in the dwelling unit is $31323 +in.representative_income 31324 Representative total house income in the dwelling unit is $31324 +in.representative_income 31325 Representative total house income in the dwelling unit is $31325 +in.representative_income 31328 Representative total house income in the dwelling unit is $31328 +in.representative_income 31330 Representative total house income in the dwelling unit is $31330 +in.representative_income 31334 Representative total house income in the dwelling unit is $31334 +in.representative_income 31343 Representative total house income in the dwelling unit is $31343 +in.representative_income 31345 Representative total house income in the dwelling unit is $31345 +in.representative_income 31353 Representative total house income in the dwelling unit is $31353 +in.representative_income 31355 Representative total house income in the dwelling unit is $31355 +in.representative_income 31356 Representative total house income in the dwelling unit is $31356 +in.representative_income 31364 Representative total house income in the dwelling unit is $31364 +in.representative_income 31365 Representative total house income in the dwelling unit is $31365 +in.representative_income 31366 Representative total house income in the dwelling unit is $31366 +in.representative_income 31369 Representative total house income in the dwelling unit is $31369 +in.representative_income 31374 Representative total house income in the dwelling unit is $31374 +in.representative_income 31377 Representative total house income in the dwelling unit is $31377 +in.representative_income 31385 Representative total house income in the dwelling unit is $31385 +in.representative_income 31395 Representative total house income in the dwelling unit is $31395 +in.representative_income 31398 Representative total house income in the dwelling unit is $31398 +in.representative_income 31405 Representative total house income in the dwelling unit is $31405 +in.representative_income 31408 Representative total house income in the dwelling unit is $31408 +in.representative_income 31416 Representative total house income in the dwelling unit is $31416 +in.representative_income 31420 Representative total house income in the dwelling unit is $31420 +in.representative_income 31428 Representative total house income in the dwelling unit is $31428 +in.representative_income 31431 Representative total house income in the dwelling unit is $31431 +in.representative_income 31433 Representative total house income in the dwelling unit is $31433 +in.representative_income 31436 Representative total house income in the dwelling unit is $31436 +in.representative_income 31438 Representative total house income in the dwelling unit is $31438 +in.representative_income 31442 Representative total house income in the dwelling unit is $31442 +in.representative_income 31443 Representative total house income in the dwelling unit is $31443 +in.representative_income 31446 Representative total house income in the dwelling unit is $31446 +in.representative_income 31451 Representative total house income in the dwelling unit is $31451 +in.representative_income 31452 Representative total house income in the dwelling unit is $31452 +in.representative_income 31456 Representative total house income in the dwelling unit is $31456 +in.representative_income 31460 Representative total house income in the dwelling unit is $31460 +in.representative_income 31463 Representative total house income in the dwelling unit is $31463 +in.representative_income 31474 Representative total house income in the dwelling unit is $31474 +in.representative_income 31476 Representative total house income in the dwelling unit is $31476 +in.representative_income 31480 Representative total house income in the dwelling unit is $31480 +in.representative_income 31484 Representative total house income in the dwelling unit is $31484 +in.representative_income 31490 Representative total house income in the dwelling unit is $31490 +in.representative_income 31495 Representative total house income in the dwelling unit is $31495 +in.representative_income 31496 Representative total house income in the dwelling unit is $31496 +in.representative_income 31500 Representative total house income in the dwelling unit is $31500 +in.representative_income 31505 Representative total house income in the dwelling unit is $31505 +in.representative_income 31507 Representative total house income in the dwelling unit is $31507 +in.representative_income 31516 Representative total house income in the dwelling unit is $31516 +in.representative_income 31517 Representative total house income in the dwelling unit is $31517 +in.representative_income 31526 Representative total house income in the dwelling unit is $31526 +in.representative_income 31527 Representative total house income in the dwelling unit is $31527 +in.representative_income 31533 Representative total house income in the dwelling unit is $31533 +in.representative_income 31538 Representative total house income in the dwelling unit is $31538 +in.representative_income 31545 Representative total house income in the dwelling unit is $31545 +in.representative_income 31550 Representative total house income in the dwelling unit is $31550 +in.representative_income 31560 Representative total house income in the dwelling unit is $31560 +in.representative_income 31561 Representative total house income in the dwelling unit is $31561 +in.representative_income 31562 Representative total house income in the dwelling unit is $31562 +in.representative_income 31567 Representative total house income in the dwelling unit is $31567 +in.representative_income 31571 Representative total house income in the dwelling unit is $31571 +in.representative_income 31573 Representative total house income in the dwelling unit is $31573 +in.representative_income 31574 Representative total house income in the dwelling unit is $31574 +in.representative_income 31583 Representative total house income in the dwelling unit is $31583 +in.representative_income 31587 Representative total house income in the dwelling unit is $31587 +in.representative_income 31593 Representative total house income in the dwelling unit is $31593 +in.representative_income 31604 Representative total house income in the dwelling unit is $31604 +in.representative_income 31612 Representative total house income in the dwelling unit is $31612 +in.representative_income 31613 Representative total house income in the dwelling unit is $31613 +in.representative_income 31614 Representative total house income in the dwelling unit is $31614 +in.representative_income 31615 Representative total house income in the dwelling unit is $31615 +in.representative_income 31617 Representative total house income in the dwelling unit is $31617 +in.representative_income 31618 Representative total house income in the dwelling unit is $31618 +in.representative_income 31624 Representative total house income in the dwelling unit is $31624 +in.representative_income 31628 Representative total house income in the dwelling unit is $31628 +in.representative_income 31636 Representative total house income in the dwelling unit is $31636 +in.representative_income 31638 Representative total house income in the dwelling unit is $31638 +in.representative_income 31645 Representative total house income in the dwelling unit is $31645 +in.representative_income 31648 Representative total house income in the dwelling unit is $31648 +in.representative_income 31649 Representative total house income in the dwelling unit is $31649 +in.representative_income 31652 Representative total house income in the dwelling unit is $31652 +in.representative_income 31654 Representative total house income in the dwelling unit is $31654 +in.representative_income 31655 Representative total house income in the dwelling unit is $31655 +in.representative_income 31658 Representative total house income in the dwelling unit is $31658 +in.representative_income 31659 Representative total house income in the dwelling unit is $31659 +in.representative_income 31662 Representative total house income in the dwelling unit is $31662 +in.representative_income 31665 Representative total house income in the dwelling unit is $31665 +in.representative_income 31666 Representative total house income in the dwelling unit is $31666 +in.representative_income 31668 Representative total house income in the dwelling unit is $31668 +in.representative_income 31669 Representative total house income in the dwelling unit is $31669 +in.representative_income 31678 Representative total house income in the dwelling unit is $31678 +in.representative_income 31679 Representative total house income in the dwelling unit is $31679 +in.representative_income 31681 Representative total house income in the dwelling unit is $31681 +in.representative_income 31689 Representative total house income in the dwelling unit is $31689 +in.representative_income 31690 Representative total house income in the dwelling unit is $31690 +in.representative_income 31691 Representative total house income in the dwelling unit is $31691 +in.representative_income 31695 Representative total house income in the dwelling unit is $31695 +in.representative_income 31698 Representative total house income in the dwelling unit is $31698 +in.representative_income 31703 Representative total house income in the dwelling unit is $31703 +in.representative_income 31705 Representative total house income in the dwelling unit is $31705 +in.representative_income 31710 Representative total house income in the dwelling unit is $31710 +in.representative_income 31713 Representative total house income in the dwelling unit is $31713 +in.representative_income 31716 Representative total house income in the dwelling unit is $31716 +in.representative_income 31717 Representative total house income in the dwelling unit is $31717 +in.representative_income 31719 Representative total house income in the dwelling unit is $31719 +in.representative_income 31720 Representative total house income in the dwelling unit is $31720 +in.representative_income 31723 Representative total house income in the dwelling unit is $31723 +in.representative_income 31727 Representative total house income in the dwelling unit is $31727 +in.representative_income 31728 Representative total house income in the dwelling unit is $31728 +in.representative_income 31731 Representative total house income in the dwelling unit is $31731 +in.representative_income 31733 Representative total house income in the dwelling unit is $31733 +in.representative_income 31742 Representative total house income in the dwelling unit is $31742 +in.representative_income 31743 Representative total house income in the dwelling unit is $31743 +in.representative_income 31744 Representative total house income in the dwelling unit is $31744 +in.representative_income 31754 Representative total house income in the dwelling unit is $31754 +in.representative_income 31755 Representative total house income in the dwelling unit is $31755 +in.representative_income 31756 Representative total house income in the dwelling unit is $31756 +in.representative_income 31759 Representative total house income in the dwelling unit is $31759 +in.representative_income 31760 Representative total house income in the dwelling unit is $31760 +in.representative_income 31764 Representative total house income in the dwelling unit is $31764 +in.representative_income 31766 Representative total house income in the dwelling unit is $31766 +in.representative_income 31767 Representative total house income in the dwelling unit is $31767 +in.representative_income 31769 Representative total house income in the dwelling unit is $31769 +in.representative_income 31770 Representative total house income in the dwelling unit is $31770 +in.representative_income 31774 Representative total house income in the dwelling unit is $31774 +in.representative_income 31776 Representative total house income in the dwelling unit is $31776 +in.representative_income 31777 Representative total house income in the dwelling unit is $31777 +in.representative_income 31779 Representative total house income in the dwelling unit is $31779 +in.representative_income 31784 Representative total house income in the dwelling unit is $31784 +in.representative_income 31786 Representative total house income in the dwelling unit is $31786 +in.representative_income 31789 Representative total house income in the dwelling unit is $31789 +in.representative_income 31794 Representative total house income in the dwelling unit is $31794 +in.representative_income 31795 Representative total house income in the dwelling unit is $31795 +in.representative_income 31797 Representative total house income in the dwelling unit is $31797 +in.representative_income 31799 Representative total house income in the dwelling unit is $31799 +in.representative_income 31802 Representative total house income in the dwelling unit is $31802 +in.representative_income 31807 Representative total house income in the dwelling unit is $31807 +in.representative_income 31809 Representative total house income in the dwelling unit is $31809 +in.representative_income 31810 Representative total house income in the dwelling unit is $31810 +in.representative_income 31813 Representative total house income in the dwelling unit is $31813 +in.representative_income 31817 Representative total house income in the dwelling unit is $31817 +in.representative_income 31820 Representative total house income in the dwelling unit is $31820 +in.representative_income 31825 Representative total house income in the dwelling unit is $31825 +in.representative_income 31828 Representative total house income in the dwelling unit is $31828 +in.representative_income 31840 Representative total house income in the dwelling unit is $31840 +in.representative_income 31841 Representative total house income in the dwelling unit is $31841 +in.representative_income 31849 Representative total house income in the dwelling unit is $31849 +in.representative_income 31850 Representative total house income in the dwelling unit is $31850 +in.representative_income 31859 Representative total house income in the dwelling unit is $31859 +in.representative_income 31860 Representative total house income in the dwelling unit is $31860 +in.representative_income 31862 Representative total house income in the dwelling unit is $31862 +in.representative_income 31863 Representative total house income in the dwelling unit is $31863 +in.representative_income 31871 Representative total house income in the dwelling unit is $31871 +in.representative_income 31872 Representative total house income in the dwelling unit is $31872 +in.representative_income 31874 Representative total house income in the dwelling unit is $31874 +in.representative_income 31875 Representative total house income in the dwelling unit is $31875 +in.representative_income 31878 Representative total house income in the dwelling unit is $31878 +in.representative_income 31880 Representative total house income in the dwelling unit is $31880 +in.representative_income 31881 Representative total house income in the dwelling unit is $31881 +in.representative_income 31882 Representative total house income in the dwelling unit is $31882 +in.representative_income 31884 Representative total house income in the dwelling unit is $31884 +in.representative_income 31891 Representative total house income in the dwelling unit is $31891 +in.representative_income 31892 Representative total house income in the dwelling unit is $31892 +in.representative_income 31897 Representative total house income in the dwelling unit is $31897 +in.representative_income 31898 Representative total house income in the dwelling unit is $31898 +in.representative_income 31903 Representative total house income in the dwelling unit is $31903 +in.representative_income 31905 Representative total house income in the dwelling unit is $31905 +in.representative_income 31906 Representative total house income in the dwelling unit is $31906 +in.representative_income 31910 Representative total house income in the dwelling unit is $31910 +in.representative_income 31912 Representative total house income in the dwelling unit is $31912 +in.representative_income 31917 Representative total house income in the dwelling unit is $31917 +in.representative_income 31921 Representative total house income in the dwelling unit is $31921 +in.representative_income 31923 Representative total house income in the dwelling unit is $31923 +in.representative_income 31924 Representative total house income in the dwelling unit is $31924 +in.representative_income 31928 Representative total house income in the dwelling unit is $31928 +in.representative_income 31931 Representative total house income in the dwelling unit is $31931 +in.representative_income 31933 Representative total house income in the dwelling unit is $31933 +in.representative_income 31934 Representative total house income in the dwelling unit is $31934 +in.representative_income 31936 Representative total house income in the dwelling unit is $31936 +in.representative_income 31938 Representative total house income in the dwelling unit is $31938 +in.representative_income 31944 Representative total house income in the dwelling unit is $31944 +in.representative_income 31951 Representative total house income in the dwelling unit is $31951 +in.representative_income 31955 Representative total house income in the dwelling unit is $31955 +in.representative_income 31965 Representative total house income in the dwelling unit is $31965 +in.representative_income 31968 Representative total house income in the dwelling unit is $31968 +in.representative_income 31971 Representative total house income in the dwelling unit is $31971 +in.representative_income 31975 Representative total house income in the dwelling unit is $31975 +in.representative_income 31981 Representative total house income in the dwelling unit is $31981 +in.representative_income 31982 Representative total house income in the dwelling unit is $31982 +in.representative_income 31983 Representative total house income in the dwelling unit is $31983 +in.representative_income 31985 Representative total house income in the dwelling unit is $31985 +in.representative_income 31986 Representative total house income in the dwelling unit is $31986 +in.representative_income 31989 Representative total house income in the dwelling unit is $31989 +in.representative_income 31990 Representative total house income in the dwelling unit is $31990 +in.representative_income 31992 Representative total house income in the dwelling unit is $31992 +in.representative_income 31993 Representative total house income in the dwelling unit is $31993 +in.representative_income 31996 Representative total house income in the dwelling unit is $31996 +in.representative_income 31997 Representative total house income in the dwelling unit is $31997 +in.representative_income 32000 Representative total house income in the dwelling unit is $32000 +in.representative_income 32001 Representative total house income in the dwelling unit is $32001 +in.representative_income 32003 Representative total house income in the dwelling unit is $32003 +in.representative_income 32007 Representative total house income in the dwelling unit is $32007 +in.representative_income 32014 Representative total house income in the dwelling unit is $32014 +in.representative_income 32016 Representative total house income in the dwelling unit is $32016 +in.representative_income 32022 Representative total house income in the dwelling unit is $32022 +in.representative_income 32025 Representative total house income in the dwelling unit is $32025 +in.representative_income 32027 Representative total house income in the dwelling unit is $32027 +in.representative_income 32031 Representative total house income in the dwelling unit is $32031 +in.representative_income 32032 Representative total house income in the dwelling unit is $32032 +in.representative_income 32035 Representative total house income in the dwelling unit is $32035 +in.representative_income 32037 Representative total house income in the dwelling unit is $32037 +in.representative_income 32039 Representative total house income in the dwelling unit is $32039 +in.representative_income 32042 Representative total house income in the dwelling unit is $32042 +in.representative_income 32050 Representative total house income in the dwelling unit is $32050 +in.representative_income 32057 Representative total house income in the dwelling unit is $32057 +in.representative_income 32060 Representative total house income in the dwelling unit is $32060 +in.representative_income 32071 Representative total house income in the dwelling unit is $32071 +in.representative_income 32072 Representative total house income in the dwelling unit is $32072 +in.representative_income 32075 Representative total house income in the dwelling unit is $32075 +in.representative_income 32078 Representative total house income in the dwelling unit is $32078 +in.representative_income 32079 Representative total house income in the dwelling unit is $32079 +in.representative_income 32082 Representative total house income in the dwelling unit is $32082 +in.representative_income 32086 Representative total house income in the dwelling unit is $32086 +in.representative_income 32090 Representative total house income in the dwelling unit is $32090 +in.representative_income 32092 Representative total house income in the dwelling unit is $32092 +in.representative_income 32095 Representative total house income in the dwelling unit is $32095 +in.representative_income 32096 Representative total house income in the dwelling unit is $32096 +in.representative_income 32099 Representative total house income in the dwelling unit is $32099 +in.representative_income 32101 Representative total house income in the dwelling unit is $32101 +in.representative_income 32102 Representative total house income in the dwelling unit is $32102 +in.representative_income 32106 Representative total house income in the dwelling unit is $32106 +in.representative_income 32109 Representative total house income in the dwelling unit is $32109 +in.representative_income 32112 Representative total house income in the dwelling unit is $32112 +in.representative_income 32113 Representative total house income in the dwelling unit is $32113 +in.representative_income 32117 Representative total house income in the dwelling unit is $32117 +in.representative_income 32119 Representative total house income in the dwelling unit is $32119 +in.representative_income 32122 Representative total house income in the dwelling unit is $32122 +in.representative_income 32123 Representative total house income in the dwelling unit is $32123 +in.representative_income 32129 Representative total house income in the dwelling unit is $32129 +in.representative_income 32133 Representative total house income in the dwelling unit is $32133 +in.representative_income 32134 Representative total house income in the dwelling unit is $32134 +in.representative_income 32141 Representative total house income in the dwelling unit is $32141 +in.representative_income 32143 Representative total house income in the dwelling unit is $32143 +in.representative_income 32147 Representative total house income in the dwelling unit is $32147 +in.representative_income 32148 Representative total house income in the dwelling unit is $32148 +in.representative_income 32150 Representative total house income in the dwelling unit is $32150 +in.representative_income 32153 Representative total house income in the dwelling unit is $32153 +in.representative_income 32155 Representative total house income in the dwelling unit is $32155 +in.representative_income 32161 Representative total house income in the dwelling unit is $32161 +in.representative_income 32163 Representative total house income in the dwelling unit is $32163 +in.representative_income 32165 Representative total house income in the dwelling unit is $32165 +in.representative_income 32166 Representative total house income in the dwelling unit is $32166 +in.representative_income 32174 Representative total house income in the dwelling unit is $32174 +in.representative_income 32180 Representative total house income in the dwelling unit is $32180 +in.representative_income 32181 Representative total house income in the dwelling unit is $32181 +in.representative_income 32185 Representative total house income in the dwelling unit is $32185 +in.representative_income 32186 Representative total house income in the dwelling unit is $32186 +in.representative_income 32191 Representative total house income in the dwelling unit is $32191 +in.representative_income 32192 Representative total house income in the dwelling unit is $32192 +in.representative_income 32195 Representative total house income in the dwelling unit is $32195 +in.representative_income 32197 Representative total house income in the dwelling unit is $32197 +in.representative_income 32198 Representative total house income in the dwelling unit is $32198 +in.representative_income 32202 Representative total house income in the dwelling unit is $32202 +in.representative_income 32204 Representative total house income in the dwelling unit is $32204 +in.representative_income 32205 Representative total house income in the dwelling unit is $32205 +in.representative_income 32207 Representative total house income in the dwelling unit is $32207 +in.representative_income 32208 Representative total house income in the dwelling unit is $32208 +in.representative_income 32214 Representative total house income in the dwelling unit is $32214 +in.representative_income 32215 Representative total house income in the dwelling unit is $32215 +in.representative_income 32219 Representative total house income in the dwelling unit is $32219 +in.representative_income 32224 Representative total house income in the dwelling unit is $32224 +in.representative_income 32225 Representative total house income in the dwelling unit is $32225 +in.representative_income 32231 Representative total house income in the dwelling unit is $32231 +in.representative_income 32233 Representative total house income in the dwelling unit is $32233 +in.representative_income 32236 Representative total house income in the dwelling unit is $32236 +in.representative_income 32237 Representative total house income in the dwelling unit is $32237 +in.representative_income 32240 Representative total house income in the dwelling unit is $32240 +in.representative_income 32242 Representative total house income in the dwelling unit is $32242 +in.representative_income 32243 Representative total house income in the dwelling unit is $32243 +in.representative_income 32246 Representative total house income in the dwelling unit is $32246 +in.representative_income 32247 Representative total house income in the dwelling unit is $32247 +in.representative_income 32250 Representative total house income in the dwelling unit is $32250 +in.representative_income 32252 Representative total house income in the dwelling unit is $32252 +in.representative_income 32253 Representative total house income in the dwelling unit is $32253 +in.representative_income 32254 Representative total house income in the dwelling unit is $32254 +in.representative_income 32255 Representative total house income in the dwelling unit is $32255 +in.representative_income 32257 Representative total house income in the dwelling unit is $32257 +in.representative_income 32260 Representative total house income in the dwelling unit is $32260 +in.representative_income 32263 Representative total house income in the dwelling unit is $32263 +in.representative_income 32264 Representative total house income in the dwelling unit is $32264 +in.representative_income 32271 Representative total house income in the dwelling unit is $32271 +in.representative_income 32274 Representative total house income in the dwelling unit is $32274 +in.representative_income 32281 Representative total house income in the dwelling unit is $32281 +in.representative_income 32284 Representative total house income in the dwelling unit is $32284 +in.representative_income 32289 Representative total house income in the dwelling unit is $32289 +in.representative_income 32294 Representative total house income in the dwelling unit is $32294 +in.representative_income 32302 Representative total house income in the dwelling unit is $32302 +in.representative_income 32304 Representative total house income in the dwelling unit is $32304 +in.representative_income 32305 Representative total house income in the dwelling unit is $32305 +in.representative_income 32306 Representative total house income in the dwelling unit is $32306 +in.representative_income 32309 Representative total house income in the dwelling unit is $32309 +in.representative_income 32310 Representative total house income in the dwelling unit is $32310 +in.representative_income 32321 Representative total house income in the dwelling unit is $32321 +in.representative_income 32324 Representative total house income in the dwelling unit is $32324 +in.representative_income 32325 Representative total house income in the dwelling unit is $32325 +in.representative_income 32326 Representative total house income in the dwelling unit is $32326 +in.representative_income 32329 Representative total house income in the dwelling unit is $32329 +in.representative_income 32334 Representative total house income in the dwelling unit is $32334 +in.representative_income 32335 Representative total house income in the dwelling unit is $32335 +in.representative_income 32342 Representative total house income in the dwelling unit is $32342 +in.representative_income 32343 Representative total house income in the dwelling unit is $32343 +in.representative_income 32345 Representative total house income in the dwelling unit is $32345 +in.representative_income 32348 Representative total house income in the dwelling unit is $32348 +in.representative_income 32355 Representative total house income in the dwelling unit is $32355 +in.representative_income 32360 Representative total house income in the dwelling unit is $32360 +in.representative_income 32365 Representative total house income in the dwelling unit is $32365 +in.representative_income 32369 Representative total house income in the dwelling unit is $32369 +in.representative_income 32371 Representative total house income in the dwelling unit is $32371 +in.representative_income 32375 Representative total house income in the dwelling unit is $32375 +in.representative_income 32376 Representative total house income in the dwelling unit is $32376 +in.representative_income 32378 Representative total house income in the dwelling unit is $32378 +in.representative_income 32382 Representative total house income in the dwelling unit is $32382 +in.representative_income 32385 Representative total house income in the dwelling unit is $32385 +in.representative_income 32388 Representative total house income in the dwelling unit is $32388 +in.representative_income 32393 Representative total house income in the dwelling unit is $32393 +in.representative_income 32397 Representative total house income in the dwelling unit is $32397 +in.representative_income 32399 Representative total house income in the dwelling unit is $32399 +in.representative_income 32408 Representative total house income in the dwelling unit is $32408 +in.representative_income 32414 Representative total house income in the dwelling unit is $32414 +in.representative_income 32415 Representative total house income in the dwelling unit is $32415 +in.representative_income 32416 Representative total house income in the dwelling unit is $32416 +in.representative_income 32418 Representative total house income in the dwelling unit is $32418 +in.representative_income 32425 Representative total house income in the dwelling unit is $32425 +in.representative_income 32426 Representative total house income in the dwelling unit is $32426 +in.representative_income 32429 Representative total house income in the dwelling unit is $32429 +in.representative_income 32435 Representative total house income in the dwelling unit is $32435 +in.representative_income 32436 Representative total house income in the dwelling unit is $32436 +in.representative_income 32440 Representative total house income in the dwelling unit is $32440 +in.representative_income 32447 Representative total house income in the dwelling unit is $32447 +in.representative_income 32450 Representative total house income in the dwelling unit is $32450 +in.representative_income 32452 Representative total house income in the dwelling unit is $32452 +in.representative_income 32456 Representative total house income in the dwelling unit is $32456 +in.representative_income 32461 Representative total house income in the dwelling unit is $32461 +in.representative_income 32466 Representative total house income in the dwelling unit is $32466 +in.representative_income 32468 Representative total house income in the dwelling unit is $32468 +in.representative_income 32472 Representative total house income in the dwelling unit is $32472 +in.representative_income 32476 Representative total house income in the dwelling unit is $32476 +in.representative_income 32479 Representative total house income in the dwelling unit is $32479 +in.representative_income 32481 Representative total house income in the dwelling unit is $32481 +in.representative_income 32483 Representative total house income in the dwelling unit is $32483 +in.representative_income 32486 Representative total house income in the dwelling unit is $32486 +in.representative_income 32490 Representative total house income in the dwelling unit is $32490 +in.representative_income 32491 Representative total house income in the dwelling unit is $32491 +in.representative_income 32493 Representative total house income in the dwelling unit is $32493 +in.representative_income 32496 Representative total house income in the dwelling unit is $32496 +in.representative_income 32501 Representative total house income in the dwelling unit is $32501 +in.representative_income 32503 Representative total house income in the dwelling unit is $32503 +in.representative_income 32504 Representative total house income in the dwelling unit is $32504 +in.representative_income 32507 Representative total house income in the dwelling unit is $32507 +in.representative_income 32515 Representative total house income in the dwelling unit is $32515 +in.representative_income 32517 Representative total house income in the dwelling unit is $32517 +in.representative_income 32522 Representative total house income in the dwelling unit is $32522 +in.representative_income 32523 Representative total house income in the dwelling unit is $32523 +in.representative_income 32524 Representative total house income in the dwelling unit is $32524 +in.representative_income 32526 Representative total house income in the dwelling unit is $32526 +in.representative_income 32527 Representative total house income in the dwelling unit is $32527 +in.representative_income 32529 Representative total house income in the dwelling unit is $32529 +in.representative_income 32530 Representative total house income in the dwelling unit is $32530 +in.representative_income 32533 Representative total house income in the dwelling unit is $32533 +in.representative_income 32535 Representative total house income in the dwelling unit is $32535 +in.representative_income 32545 Representative total house income in the dwelling unit is $32545 +in.representative_income 32553 Representative total house income in the dwelling unit is $32553 +in.representative_income 32554 Representative total house income in the dwelling unit is $32554 +in.representative_income 32557 Representative total house income in the dwelling unit is $32557 +in.representative_income 32559 Representative total house income in the dwelling unit is $32559 +in.representative_income 32561 Representative total house income in the dwelling unit is $32561 +in.representative_income 32566 Representative total house income in the dwelling unit is $32566 +in.representative_income 32568 Representative total house income in the dwelling unit is $32568 +in.representative_income 32571 Representative total house income in the dwelling unit is $32571 +in.representative_income 32576 Representative total house income in the dwelling unit is $32576 +in.representative_income 32577 Representative total house income in the dwelling unit is $32577 +in.representative_income 32579 Representative total house income in the dwelling unit is $32579 +in.representative_income 32583 Representative total house income in the dwelling unit is $32583 +in.representative_income 32586 Representative total house income in the dwelling unit is $32586 +in.representative_income 32587 Representative total house income in the dwelling unit is $32587 +in.representative_income 32588 Representative total house income in the dwelling unit is $32588 +in.representative_income 32589 Representative total house income in the dwelling unit is $32589 +in.representative_income 32594 Representative total house income in the dwelling unit is $32594 +in.representative_income 32598 Representative total house income in the dwelling unit is $32598 +in.representative_income 32607 Representative total house income in the dwelling unit is $32607 +in.representative_income 32608 Representative total house income in the dwelling unit is $32608 +in.representative_income 32612 Representative total house income in the dwelling unit is $32612 +in.representative_income 32615 Representative total house income in the dwelling unit is $32615 +in.representative_income 32618 Representative total house income in the dwelling unit is $32618 +in.representative_income 32622 Representative total house income in the dwelling unit is $32622 +in.representative_income 32625 Representative total house income in the dwelling unit is $32625 +in.representative_income 32628 Representative total house income in the dwelling unit is $32628 +in.representative_income 32630 Representative total house income in the dwelling unit is $32630 +in.representative_income 32631 Representative total house income in the dwelling unit is $32631 +in.representative_income 32633 Representative total house income in the dwelling unit is $32633 +in.representative_income 32634 Representative total house income in the dwelling unit is $32634 +in.representative_income 32638 Representative total house income in the dwelling unit is $32638 +in.representative_income 32640 Representative total house income in the dwelling unit is $32640 +in.representative_income 32643 Representative total house income in the dwelling unit is $32643 +in.representative_income 32645 Representative total house income in the dwelling unit is $32645 +in.representative_income 32650 Representative total house income in the dwelling unit is $32650 +in.representative_income 32658 Representative total house income in the dwelling unit is $32658 +in.representative_income 32659 Representative total house income in the dwelling unit is $32659 +in.representative_income 32661 Representative total house income in the dwelling unit is $32661 +in.representative_income 32676 Representative total house income in the dwelling unit is $32676 +in.representative_income 32678 Representative total house income in the dwelling unit is $32678 +in.representative_income 32683 Representative total house income in the dwelling unit is $32683 +in.representative_income 32684 Representative total house income in the dwelling unit is $32684 +in.representative_income 32686 Representative total house income in the dwelling unit is $32686 +in.representative_income 32687 Representative total house income in the dwelling unit is $32687 +in.representative_income 32693 Representative total house income in the dwelling unit is $32693 +in.representative_income 32695 Representative total house income in the dwelling unit is $32695 +in.representative_income 32697 Representative total house income in the dwelling unit is $32697 +in.representative_income 32699 Representative total house income in the dwelling unit is $32699 +in.representative_income 32703 Representative total house income in the dwelling unit is $32703 +in.representative_income 32706 Representative total house income in the dwelling unit is $32706 +in.representative_income 32708 Representative total house income in the dwelling unit is $32708 +in.representative_income 32712 Representative total house income in the dwelling unit is $32712 +in.representative_income 32714 Representative total house income in the dwelling unit is $32714 +in.representative_income 32716 Representative total house income in the dwelling unit is $32716 +in.representative_income 32718 Representative total house income in the dwelling unit is $32718 +in.representative_income 32724 Representative total house income in the dwelling unit is $32724 +in.representative_income 32727 Representative total house income in the dwelling unit is $32727 +in.representative_income 32729 Representative total house income in the dwelling unit is $32729 +in.representative_income 32735 Representative total house income in the dwelling unit is $32735 +in.representative_income 32738 Representative total house income in the dwelling unit is $32738 +in.representative_income 32739 Representative total house income in the dwelling unit is $32739 +in.representative_income 32741 Representative total house income in the dwelling unit is $32741 +in.representative_income 32748 Representative total house income in the dwelling unit is $32748 +in.representative_income 32758 Representative total house income in the dwelling unit is $32758 +in.representative_income 32761 Representative total house income in the dwelling unit is $32761 +in.representative_income 32769 Representative total house income in the dwelling unit is $32769 +in.representative_income 32770 Representative total house income in the dwelling unit is $32770 +in.representative_income 32780 Representative total house income in the dwelling unit is $32780 +in.representative_income 32788 Representative total house income in the dwelling unit is $32788 +in.representative_income 32792 Representative total house income in the dwelling unit is $32792 +in.representative_income 32794 Representative total house income in the dwelling unit is $32794 +in.representative_income 32798 Representative total house income in the dwelling unit is $32798 +in.representative_income 32800 Representative total house income in the dwelling unit is $32800 +in.representative_income 32802 Representative total house income in the dwelling unit is $32802 +in.representative_income 32803 Representative total house income in the dwelling unit is $32803 +in.representative_income 32820 Representative total house income in the dwelling unit is $32820 +in.representative_income 32824 Representative total house income in the dwelling unit is $32824 +in.representative_income 32830 Representative total house income in the dwelling unit is $32830 +in.representative_income 32831 Representative total house income in the dwelling unit is $32831 +in.representative_income 32840 Representative total house income in the dwelling unit is $32840 +in.representative_income 32842 Representative total house income in the dwelling unit is $32842 +in.representative_income 32846 Representative total house income in the dwelling unit is $32846 +in.representative_income 32847 Representative total house income in the dwelling unit is $32847 +in.representative_income 32850 Representative total house income in the dwelling unit is $32850 +in.representative_income 32852 Representative total house income in the dwelling unit is $32852 +in.representative_income 32862 Representative total house income in the dwelling unit is $32862 +in.representative_income 32870 Representative total house income in the dwelling unit is $32870 +in.representative_income 32874 Representative total house income in the dwelling unit is $32874 +in.representative_income 32876 Representative total house income in the dwelling unit is $32876 +in.representative_income 32879 Representative total house income in the dwelling unit is $32879 +in.representative_income 32880 Representative total house income in the dwelling unit is $32880 +in.representative_income 32890 Representative total house income in the dwelling unit is $32890 +in.representative_income 32901 Representative total house income in the dwelling unit is $32901 +in.representative_income 32903 Representative total house income in the dwelling unit is $32903 +in.representative_income 32904 Representative total house income in the dwelling unit is $32904 +in.representative_income 32905 Representative total house income in the dwelling unit is $32905 +in.representative_income 32909 Representative total house income in the dwelling unit is $32909 +in.representative_income 32914 Representative total house income in the dwelling unit is $32914 +in.representative_income 32921 Representative total house income in the dwelling unit is $32921 +in.representative_income 32924 Representative total house income in the dwelling unit is $32924 +in.representative_income 32931 Representative total house income in the dwelling unit is $32931 +in.representative_income 32937 Representative total house income in the dwelling unit is $32937 +in.representative_income 32941 Representative total house income in the dwelling unit is $32941 +in.representative_income 32945 Representative total house income in the dwelling unit is $32945 +in.representative_income 32946 Representative total house income in the dwelling unit is $32946 +in.representative_income 32955 Representative total house income in the dwelling unit is $32955 +in.representative_income 32957 Representative total house income in the dwelling unit is $32957 +in.representative_income 32960 Representative total house income in the dwelling unit is $32960 +in.representative_income 32961 Representative total house income in the dwelling unit is $32961 +in.representative_income 32965 Representative total house income in the dwelling unit is $32965 +in.representative_income 32966 Representative total house income in the dwelling unit is $32966 +in.representative_income 32969 Representative total house income in the dwelling unit is $32969 +in.representative_income 32976 Representative total house income in the dwelling unit is $32976 +in.representative_income 32979 Representative total house income in the dwelling unit is $32979 +in.representative_income 33007 Representative total house income in the dwelling unit is $33007 +in.representative_income 33009 Representative total house income in the dwelling unit is $33009 +in.representative_income 33017 Representative total house income in the dwelling unit is $33017 +in.representative_income 33019 Representative total house income in the dwelling unit is $33019 +in.representative_income 33020 Representative total house income in the dwelling unit is $33020 +in.representative_income 33027 Representative total house income in the dwelling unit is $33027 +in.representative_income 33032 Representative total house income in the dwelling unit is $33032 +in.representative_income 33034 Representative total house income in the dwelling unit is $33034 +in.representative_income 33041 Representative total house income in the dwelling unit is $33041 +in.representative_income 33042 Representative total house income in the dwelling unit is $33042 +in.representative_income 33052 Representative total house income in the dwelling unit is $33052 +in.representative_income 33056 Representative total house income in the dwelling unit is $33056 +in.representative_income 33058 Representative total house income in the dwelling unit is $33058 +in.representative_income 33062 Representative total house income in the dwelling unit is $33062 +in.representative_income 33063 Representative total house income in the dwelling unit is $33063 +in.representative_income 33066 Representative total house income in the dwelling unit is $33066 +in.representative_income 33073 Representative total house income in the dwelling unit is $33073 +in.representative_income 33075 Representative total house income in the dwelling unit is $33075 +in.representative_income 33082 Representative total house income in the dwelling unit is $33082 +in.representative_income 33092 Representative total house income in the dwelling unit is $33092 +in.representative_income 33095 Representative total house income in the dwelling unit is $33095 +in.representative_income 33099 Representative total house income in the dwelling unit is $33099 +in.representative_income 33105 Representative total house income in the dwelling unit is $33105 +in.representative_income 33110 Representative total house income in the dwelling unit is $33110 +in.representative_income 33114 Representative total house income in the dwelling unit is $33114 +in.representative_income 33117 Representative total house income in the dwelling unit is $33117 +in.representative_income 33120 Representative total house income in the dwelling unit is $33120 +in.representative_income 33130 Representative total house income in the dwelling unit is $33130 +in.representative_income 33133 Representative total house income in the dwelling unit is $33133 +in.representative_income 33135 Representative total house income in the dwelling unit is $33135 +in.representative_income 33138 Representative total house income in the dwelling unit is $33138 +in.representative_income 33142 Representative total house income in the dwelling unit is $33142 +in.representative_income 33143 Representative total house income in the dwelling unit is $33143 +in.representative_income 33146 Representative total house income in the dwelling unit is $33146 +in.representative_income 33160 Representative total house income in the dwelling unit is $33160 +in.representative_income 33161 Representative total house income in the dwelling unit is $33161 +in.representative_income 33163 Representative total house income in the dwelling unit is $33163 +in.representative_income 33167 Representative total house income in the dwelling unit is $33167 +in.representative_income 33170 Representative total house income in the dwelling unit is $33170 +in.representative_income 33171 Representative total house income in the dwelling unit is $33171 +in.representative_income 33180 Representative total house income in the dwelling unit is $33180 +in.representative_income 33181 Representative total house income in the dwelling unit is $33181 +in.representative_income 33183 Representative total house income in the dwelling unit is $33183 +in.representative_income 33191 Representative total house income in the dwelling unit is $33191 +in.representative_income 33192 Representative total house income in the dwelling unit is $33192 +in.representative_income 33196 Representative total house income in the dwelling unit is $33196 +in.representative_income 33199 Representative total house income in the dwelling unit is $33199 +in.representative_income 33202 Representative total house income in the dwelling unit is $33202 +in.representative_income 33203 Representative total house income in the dwelling unit is $33203 +in.representative_income 33209 Representative total house income in the dwelling unit is $33209 +in.representative_income 33212 Representative total house income in the dwelling unit is $33212 +in.representative_income 33220 Representative total house income in the dwelling unit is $33220 +in.representative_income 33223 Representative total house income in the dwelling unit is $33223 +in.representative_income 33234 Representative total house income in the dwelling unit is $33234 +in.representative_income 33235 Representative total house income in the dwelling unit is $33235 +in.representative_income 33247 Representative total house income in the dwelling unit is $33247 +in.representative_income 33252 Representative total house income in the dwelling unit is $33252 +in.representative_income 33257 Representative total house income in the dwelling unit is $33257 +in.representative_income 33262 Representative total house income in the dwelling unit is $33262 +in.representative_income 33268 Representative total house income in the dwelling unit is $33268 +in.representative_income 33274 Representative total house income in the dwelling unit is $33274 +in.representative_income 33277 Representative total house income in the dwelling unit is $33277 +in.representative_income 33278 Representative total house income in the dwelling unit is $33278 +in.representative_income 33282 Representative total house income in the dwelling unit is $33282 +in.representative_income 33285 Representative total house income in the dwelling unit is $33285 +in.representative_income 33289 Representative total house income in the dwelling unit is $33289 +in.representative_income 33294 Representative total house income in the dwelling unit is $33294 +in.representative_income 33299 Representative total house income in the dwelling unit is $33299 +in.representative_income 33300 Representative total house income in the dwelling unit is $33300 +in.representative_income 33304 Representative total house income in the dwelling unit is $33304 +in.representative_income 33305 Representative total house income in the dwelling unit is $33305 +in.representative_income 33309 Representative total house income in the dwelling unit is $33309 +in.representative_income 33316 Representative total house income in the dwelling unit is $33316 +in.representative_income 33320 Representative total house income in the dwelling unit is $33320 +in.representative_income 33326 Representative total house income in the dwelling unit is $33326 +in.representative_income 33332 Representative total house income in the dwelling unit is $33332 +in.representative_income 33335 Representative total house income in the dwelling unit is $33335 +in.representative_income 33336 Representative total house income in the dwelling unit is $33336 +in.representative_income 33337 Representative total house income in the dwelling unit is $33337 +in.representative_income 33343 Representative total house income in the dwelling unit is $33343 +in.representative_income 33345 Representative total house income in the dwelling unit is $33345 +in.representative_income 33347 Representative total house income in the dwelling unit is $33347 +in.representative_income 33354 Representative total house income in the dwelling unit is $33354 +in.representative_income 33357 Representative total house income in the dwelling unit is $33357 +in.representative_income 33363 Representative total house income in the dwelling unit is $33363 +in.representative_income 33365 Representative total house income in the dwelling unit is $33365 +in.representative_income 33367 Representative total house income in the dwelling unit is $33367 +in.representative_income 33377 Representative total house income in the dwelling unit is $33377 +in.representative_income 33378 Representative total house income in the dwelling unit is $33378 +in.representative_income 33379 Representative total house income in the dwelling unit is $33379 +in.representative_income 33384 Representative total house income in the dwelling unit is $33384 +in.representative_income 33385 Representative total house income in the dwelling unit is $33385 +in.representative_income 33386 Representative total house income in the dwelling unit is $33386 +in.representative_income 33397 Representative total house income in the dwelling unit is $33397 +in.representative_income 33407 Representative total house income in the dwelling unit is $33407 +in.representative_income 33408 Representative total house income in the dwelling unit is $33408 +in.representative_income 33416 Representative total house income in the dwelling unit is $33416 +in.representative_income 33419 Representative total house income in the dwelling unit is $33419 +in.representative_income 33430 Representative total house income in the dwelling unit is $33430 +in.representative_income 33431 Representative total house income in the dwelling unit is $33431 +in.representative_income 33436 Representative total house income in the dwelling unit is $33436 +in.representative_income 33450 Representative total house income in the dwelling unit is $33450 +in.representative_income 33451 Representative total house income in the dwelling unit is $33451 +in.representative_income 33459 Representative total house income in the dwelling unit is $33459 +in.representative_income 33467 Representative total house income in the dwelling unit is $33467 +in.representative_income 33476 Representative total house income in the dwelling unit is $33476 +in.representative_income 33483 Representative total house income in the dwelling unit is $33483 +in.representative_income 33491 Representative total house income in the dwelling unit is $33491 +in.representative_income 33494 Representative total house income in the dwelling unit is $33494 +in.representative_income 33500 Representative total house income in the dwelling unit is $33500 +in.representative_income 33516 Representative total house income in the dwelling unit is $33516 +in.representative_income 33522 Representative total house income in the dwelling unit is $33522 +in.representative_income 33526 Representative total house income in the dwelling unit is $33526 +in.representative_income 33535 Representative total house income in the dwelling unit is $33535 +in.representative_income 33536 Representative total house income in the dwelling unit is $33536 +in.representative_income 33537 Representative total house income in the dwelling unit is $33537 +in.representative_income 33541 Representative total house income in the dwelling unit is $33541 +in.representative_income 33546 Representative total house income in the dwelling unit is $33546 +in.representative_income 33547 Representative total house income in the dwelling unit is $33547 +in.representative_income 33581 Representative total house income in the dwelling unit is $33581 +in.representative_income 33588 Representative total house income in the dwelling unit is $33588 +in.representative_income 33599 Representative total house income in the dwelling unit is $33599 +in.representative_income 33600 Representative total house income in the dwelling unit is $33600 +in.representative_income 33602 Representative total house income in the dwelling unit is $33602 +in.representative_income 33604 Representative total house income in the dwelling unit is $33604 +in.representative_income 33613 Representative total house income in the dwelling unit is $33613 +in.representative_income 33615 Representative total house income in the dwelling unit is $33615 +in.representative_income 33621 Representative total house income in the dwelling unit is $33621 +in.representative_income 33624 Representative total house income in the dwelling unit is $33624 +in.representative_income 33625 Representative total house income in the dwelling unit is $33625 +in.representative_income 33626 Representative total house income in the dwelling unit is $33626 +in.representative_income 33636 Representative total house income in the dwelling unit is $33636 +in.representative_income 33638 Representative total house income in the dwelling unit is $33638 +in.representative_income 33642 Representative total house income in the dwelling unit is $33642 +in.representative_income 33645 Representative total house income in the dwelling unit is $33645 +in.representative_income 33656 Representative total house income in the dwelling unit is $33656 +in.representative_income 33663 Representative total house income in the dwelling unit is $33663 +in.representative_income 33664 Representative total house income in the dwelling unit is $33664 +in.representative_income 33684 Representative total house income in the dwelling unit is $33684 +in.representative_income 33688 Representative total house income in the dwelling unit is $33688 +in.representative_income 33706 Representative total house income in the dwelling unit is $33706 +in.representative_income 33711 Representative total house income in the dwelling unit is $33711 +in.representative_income 33718 Representative total house income in the dwelling unit is $33718 +in.representative_income 33722 Representative total house income in the dwelling unit is $33722 +in.representative_income 33726 Representative total house income in the dwelling unit is $33726 +in.representative_income 33728 Representative total house income in the dwelling unit is $33728 +in.representative_income 33733 Representative total house income in the dwelling unit is $33733 +in.representative_income 33739 Representative total house income in the dwelling unit is $33739 +in.representative_income 33747 Representative total house income in the dwelling unit is $33747 +in.representative_income 33749 Representative total house income in the dwelling unit is $33749 +in.representative_income 33760 Representative total house income in the dwelling unit is $33760 +in.representative_income 33761 Representative total house income in the dwelling unit is $33761 +in.representative_income 33765 Representative total house income in the dwelling unit is $33765 +in.representative_income 33769 Representative total house income in the dwelling unit is $33769 +in.representative_income 33775 Representative total house income in the dwelling unit is $33775 +in.representative_income 33800 Representative total house income in the dwelling unit is $33800 +in.representative_income 33814 Representative total house income in the dwelling unit is $33814 +in.representative_income 33815 Representative total house income in the dwelling unit is $33815 +in.representative_income 33819 Representative total house income in the dwelling unit is $33819 +in.representative_income 33821 Representative total house income in the dwelling unit is $33821 +in.representative_income 33831 Representative total house income in the dwelling unit is $33831 +in.representative_income 33840 Representative total house income in the dwelling unit is $33840 +in.representative_income 33841 Representative total house income in the dwelling unit is $33841 +in.representative_income 33848 Representative total house income in the dwelling unit is $33848 +in.representative_income 33851 Representative total house income in the dwelling unit is $33851 +in.representative_income 33853 Representative total house income in the dwelling unit is $33853 +in.representative_income 33862 Representative total house income in the dwelling unit is $33862 +in.representative_income 33873 Representative total house income in the dwelling unit is $33873 +in.representative_income 33880 Representative total house income in the dwelling unit is $33880 +in.representative_income 33890 Representative total house income in the dwelling unit is $33890 +in.representative_income 33910 Representative total house income in the dwelling unit is $33910 +in.representative_income 33919 Representative total house income in the dwelling unit is $33919 +in.representative_income 33920 Representative total house income in the dwelling unit is $33920 +in.representative_income 33921 Representative total house income in the dwelling unit is $33921 +in.representative_income 33927 Representative total house income in the dwelling unit is $33927 +in.representative_income 33935 Representative total house income in the dwelling unit is $33935 +in.representative_income 33937 Representative total house income in the dwelling unit is $33937 +in.representative_income 33941 Representative total house income in the dwelling unit is $33941 +in.representative_income 33943 Representative total house income in the dwelling unit is $33943 +in.representative_income 33949 Representative total house income in the dwelling unit is $33949 +in.representative_income 33953 Representative total house income in the dwelling unit is $33953 +in.representative_income 33959 Representative total house income in the dwelling unit is $33959 +in.representative_income 33970 Representative total house income in the dwelling unit is $33970 +in.representative_income 33974 Representative total house income in the dwelling unit is $33974 +in.representative_income 33975 Representative total house income in the dwelling unit is $33975 +in.representative_income 33981 Representative total house income in the dwelling unit is $33981 +in.representative_income 33986 Representative total house income in the dwelling unit is $33986 +in.representative_income 33992 Representative total house income in the dwelling unit is $33992 +in.representative_income 34012 Representative total house income in the dwelling unit is $34012 +in.representative_income 34028 Representative total house income in the dwelling unit is $34028 +in.representative_income 34029 Representative total house income in the dwelling unit is $34029 +in.representative_income 34032 Representative total house income in the dwelling unit is $34032 +in.representative_income 34035 Representative total house income in the dwelling unit is $34035 +in.representative_income 34038 Representative total house income in the dwelling unit is $34038 +in.representative_income 34039 Representative total house income in the dwelling unit is $34039 +in.representative_income 34042 Representative total house income in the dwelling unit is $34042 +in.representative_income 34051 Representative total house income in the dwelling unit is $34051 +in.representative_income 34056 Representative total house income in the dwelling unit is $34056 +in.representative_income 34061 Representative total house income in the dwelling unit is $34061 +in.representative_income 34064 Representative total house income in the dwelling unit is $34064 +in.representative_income 34072 Representative total house income in the dwelling unit is $34072 +in.representative_income 34080 Representative total house income in the dwelling unit is $34080 +in.representative_income 34082 Representative total house income in the dwelling unit is $34082 +in.representative_income 34088 Representative total house income in the dwelling unit is $34088 +in.representative_income 34092 Representative total house income in the dwelling unit is $34092 +in.representative_income 34095 Representative total house income in the dwelling unit is $34095 +in.representative_income 34100 Representative total house income in the dwelling unit is $34100 +in.representative_income 34101 Representative total house income in the dwelling unit is $34101 +in.representative_income 34102 Representative total house income in the dwelling unit is $34102 +in.representative_income 34106 Representative total house income in the dwelling unit is $34106 +in.representative_income 34110 Representative total house income in the dwelling unit is $34110 +in.representative_income 34114 Representative total house income in the dwelling unit is $34114 +in.representative_income 34117 Representative total house income in the dwelling unit is $34117 +in.representative_income 34120 Representative total house income in the dwelling unit is $34120 +in.representative_income 34127 Representative total house income in the dwelling unit is $34127 +in.representative_income 34132 Representative total house income in the dwelling unit is $34132 +in.representative_income 34136 Representative total house income in the dwelling unit is $34136 +in.representative_income 34137 Representative total house income in the dwelling unit is $34137 +in.representative_income 34140 Representative total house income in the dwelling unit is $34140 +in.representative_income 34141 Representative total house income in the dwelling unit is $34141 +in.representative_income 34143 Representative total house income in the dwelling unit is $34143 +in.representative_income 34147 Representative total house income in the dwelling unit is $34147 +in.representative_income 34153 Representative total house income in the dwelling unit is $34153 +in.representative_income 34154 Representative total house income in the dwelling unit is $34154 +in.representative_income 34157 Representative total house income in the dwelling unit is $34157 +in.representative_income 34162 Representative total house income in the dwelling unit is $34162 +in.representative_income 34164 Representative total house income in the dwelling unit is $34164 +in.representative_income 34169 Representative total house income in the dwelling unit is $34169 +in.representative_income 34189 Representative total house income in the dwelling unit is $34189 +in.representative_income 34198 Representative total house income in the dwelling unit is $34198 +in.representative_income 34200 Representative total house income in the dwelling unit is $34200 +in.representative_income 34218 Representative total house income in the dwelling unit is $34218 +in.representative_income 34222 Representative total house income in the dwelling unit is $34222 +in.representative_income 34232 Representative total house income in the dwelling unit is $34232 +in.representative_income 34243 Representative total house income in the dwelling unit is $34243 +in.representative_income 34244 Representative total house income in the dwelling unit is $34244 +in.representative_income 34245 Representative total house income in the dwelling unit is $34245 +in.representative_income 34251 Representative total house income in the dwelling unit is $34251 +in.representative_income 34255 Representative total house income in the dwelling unit is $34255 +in.representative_income 34257 Representative total house income in the dwelling unit is $34257 +in.representative_income 34265 Representative total house income in the dwelling unit is $34265 +in.representative_income 34274 Representative total house income in the dwelling unit is $34274 +in.representative_income 34284 Representative total house income in the dwelling unit is $34284 +in.representative_income 34285 Representative total house income in the dwelling unit is $34285 +in.representative_income 34294 Representative total house income in the dwelling unit is $34294 +in.representative_income 34295 Representative total house income in the dwelling unit is $34295 +in.representative_income 34296 Representative total house income in the dwelling unit is $34296 +in.representative_income 34301 Representative total house income in the dwelling unit is $34301 +in.representative_income 34305 Representative total house income in the dwelling unit is $34305 +in.representative_income 34307 Representative total house income in the dwelling unit is $34307 +in.representative_income 34314 Representative total house income in the dwelling unit is $34314 +in.representative_income 34315 Representative total house income in the dwelling unit is $34315 +in.representative_income 34325 Representative total house income in the dwelling unit is $34325 +in.representative_income 34327 Representative total house income in the dwelling unit is $34327 +in.representative_income 34328 Representative total house income in the dwelling unit is $34328 +in.representative_income 34337 Representative total house income in the dwelling unit is $34337 +in.representative_income 34345 Representative total house income in the dwelling unit is $34345 +in.representative_income 34347 Representative total house income in the dwelling unit is $34347 +in.representative_income 34348 Representative total house income in the dwelling unit is $34348 +in.representative_income 34349 Representative total house income in the dwelling unit is $34349 +in.representative_income 34351 Representative total house income in the dwelling unit is $34351 +in.representative_income 34358 Representative total house income in the dwelling unit is $34358 +in.representative_income 34359 Representative total house income in the dwelling unit is $34359 +in.representative_income 34361 Representative total house income in the dwelling unit is $34361 +in.representative_income 34365 Representative total house income in the dwelling unit is $34365 +in.representative_income 34366 Representative total house income in the dwelling unit is $34366 +in.representative_income 34369 Representative total house income in the dwelling unit is $34369 +in.representative_income 34375 Representative total house income in the dwelling unit is $34375 +in.representative_income 34380 Representative total house income in the dwelling unit is $34380 +in.representative_income 34383 Representative total house income in the dwelling unit is $34383 +in.representative_income 34391 Representative total house income in the dwelling unit is $34391 +in.representative_income 34395 Representative total house income in the dwelling unit is $34395 +in.representative_income 34399 Representative total house income in the dwelling unit is $34399 +in.representative_income 34404 Representative total house income in the dwelling unit is $34404 +in.representative_income 34406 Representative total house income in the dwelling unit is $34406 +in.representative_income 34409 Representative total house income in the dwelling unit is $34409 +in.representative_income 34420 Representative total house income in the dwelling unit is $34420 +in.representative_income 34423 Representative total house income in the dwelling unit is $34423 +in.representative_income 34425 Representative total house income in the dwelling unit is $34425 +in.representative_income 34434 Representative total house income in the dwelling unit is $34434 +in.representative_income 34436 Representative total house income in the dwelling unit is $34436 +in.representative_income 34446 Representative total house income in the dwelling unit is $34446 +in.representative_income 34450 Representative total house income in the dwelling unit is $34450 +in.representative_income 34453 Representative total house income in the dwelling unit is $34453 +in.representative_income 34456 Representative total house income in the dwelling unit is $34456 +in.representative_income 34457 Representative total house income in the dwelling unit is $34457 +in.representative_income 34463 Representative total house income in the dwelling unit is $34463 +in.representative_income 34466 Representative total house income in the dwelling unit is $34466 +in.representative_income 34467 Representative total house income in the dwelling unit is $34467 +in.representative_income 34473 Representative total house income in the dwelling unit is $34473 +in.representative_income 34480 Representative total house income in the dwelling unit is $34480 +in.representative_income 34483 Representative total house income in the dwelling unit is $34483 +in.representative_income 34486 Representative total house income in the dwelling unit is $34486 +in.representative_income 34489 Representative total house income in the dwelling unit is $34489 +in.representative_income 34496 Representative total house income in the dwelling unit is $34496 +in.representative_income 34501 Representative total house income in the dwelling unit is $34501 +in.representative_income 34507 Representative total house income in the dwelling unit is $34507 +in.representative_income 34511 Representative total house income in the dwelling unit is $34511 +in.representative_income 34512 Representative total house income in the dwelling unit is $34512 +in.representative_income 34513 Representative total house income in the dwelling unit is $34513 +in.representative_income 34547 Representative total house income in the dwelling unit is $34547 +in.representative_income 34554 Representative total house income in the dwelling unit is $34554 +in.representative_income 34565 Representative total house income in the dwelling unit is $34565 +in.representative_income 34567 Representative total house income in the dwelling unit is $34567 +in.representative_income 34571 Representative total house income in the dwelling unit is $34571 +in.representative_income 34575 Representative total house income in the dwelling unit is $34575 +in.representative_income 34576 Representative total house income in the dwelling unit is $34576 +in.representative_income 34580 Representative total house income in the dwelling unit is $34580 +in.representative_income 34581 Representative total house income in the dwelling unit is $34581 +in.representative_income 34586 Representative total house income in the dwelling unit is $34586 +in.representative_income 34591 Representative total house income in the dwelling unit is $34591 +in.representative_income 34595 Representative total house income in the dwelling unit is $34595 +in.representative_income 34597 Representative total house income in the dwelling unit is $34597 +in.representative_income 34608 Representative total house income in the dwelling unit is $34608 +in.representative_income 34611 Representative total house income in the dwelling unit is $34611 +in.representative_income 34612 Representative total house income in the dwelling unit is $34612 +in.representative_income 34618 Representative total house income in the dwelling unit is $34618 +in.representative_income 34619 Representative total house income in the dwelling unit is $34619 +in.representative_income 34633 Representative total house income in the dwelling unit is $34633 +in.representative_income 34634 Representative total house income in the dwelling unit is $34634 +in.representative_income 34640 Representative total house income in the dwelling unit is $34640 +in.representative_income 34648 Representative total house income in the dwelling unit is $34648 +in.representative_income 34657 Representative total house income in the dwelling unit is $34657 +in.representative_income 34667 Representative total house income in the dwelling unit is $34667 +in.representative_income 34668 Representative total house income in the dwelling unit is $34668 +in.representative_income 34672 Representative total house income in the dwelling unit is $34672 +in.representative_income 34678 Representative total house income in the dwelling unit is $34678 +in.representative_income 34683 Representative total house income in the dwelling unit is $34683 +in.representative_income 34686 Representative total house income in the dwelling unit is $34686 +in.representative_income 34687 Representative total house income in the dwelling unit is $34687 +in.representative_income 34688 Representative total house income in the dwelling unit is $34688 +in.representative_income 34697 Representative total house income in the dwelling unit is $34697 +in.representative_income 34698 Representative total house income in the dwelling unit is $34698 +in.representative_income 34716 Representative total house income in the dwelling unit is $34716 +in.representative_income 34719 Representative total house income in the dwelling unit is $34719 +in.representative_income 34737 Representative total house income in the dwelling unit is $34737 +in.representative_income 34749 Representative total house income in the dwelling unit is $34749 +in.representative_income 34750 Representative total house income in the dwelling unit is $34750 +in.representative_income 34760 Representative total house income in the dwelling unit is $34760 +in.representative_income 34764 Representative total house income in the dwelling unit is $34764 +in.representative_income 34769 Representative total house income in the dwelling unit is $34769 +in.representative_income 34771 Representative total house income in the dwelling unit is $34771 +in.representative_income 34780 Representative total house income in the dwelling unit is $34780 +in.representative_income 34781 Representative total house income in the dwelling unit is $34781 +in.representative_income 34791 Representative total house income in the dwelling unit is $34791 +in.representative_income 34801 Representative total house income in the dwelling unit is $34801 +in.representative_income 34802 Representative total house income in the dwelling unit is $34802 +in.representative_income 34811 Representative total house income in the dwelling unit is $34811 +in.representative_income 34823 Representative total house income in the dwelling unit is $34823 +in.representative_income 34832 Representative total house income in the dwelling unit is $34832 +in.representative_income 34834 Representative total house income in the dwelling unit is $34834 +in.representative_income 34850 Representative total house income in the dwelling unit is $34850 +in.representative_income 34863 Representative total house income in the dwelling unit is $34863 +in.representative_income 34866 Representative total house income in the dwelling unit is $34866 +in.representative_income 34878 Representative total house income in the dwelling unit is $34878 +in.representative_income 34884 Representative total house income in the dwelling unit is $34884 +in.representative_income 34887 Representative total house income in the dwelling unit is $34887 +in.representative_income 34890 Representative total house income in the dwelling unit is $34890 +in.representative_income 34898 Representative total house income in the dwelling unit is $34898 +in.representative_income 34899 Representative total house income in the dwelling unit is $34899 +in.representative_income 34907 Representative total house income in the dwelling unit is $34907 +in.representative_income 34914 Representative total house income in the dwelling unit is $34914 +in.representative_income 34921 Representative total house income in the dwelling unit is $34921 +in.representative_income 34931 Representative total house income in the dwelling unit is $34931 +in.representative_income 34950 Representative total house income in the dwelling unit is $34950 +in.representative_income 34951 Representative total house income in the dwelling unit is $34951 +in.representative_income 34953 Representative total house income in the dwelling unit is $34953 +in.representative_income 34966 Representative total house income in the dwelling unit is $34966 +in.representative_income 34995 Representative total house income in the dwelling unit is $34995 +in.representative_income 34997 Representative total house income in the dwelling unit is $34997 +in.representative_income 35007 Representative total house income in the dwelling unit is $35007 +in.representative_income 35012 Representative total house income in the dwelling unit is $35012 +in.representative_income 35016 Representative total house income in the dwelling unit is $35016 +in.representative_income 35045 Representative total house income in the dwelling unit is $35045 +in.representative_income 35052 Representative total house income in the dwelling unit is $35052 +in.representative_income 35069 Representative total house income in the dwelling unit is $35069 +in.representative_income 35092 Representative total house income in the dwelling unit is $35092 +in.representative_income 35093 Representative total house income in the dwelling unit is $35093 +in.representative_income 35101 Representative total house income in the dwelling unit is $35101 +in.representative_income 35103 Representative total house income in the dwelling unit is $35103 +in.representative_income 35115 Representative total house income in the dwelling unit is $35115 +in.representative_income 35119 Representative total house income in the dwelling unit is $35119 +in.representative_income 35127 Representative total house income in the dwelling unit is $35127 +in.representative_income 35133 Representative total house income in the dwelling unit is $35133 +in.representative_income 35147 Representative total house income in the dwelling unit is $35147 +in.representative_income 35151 Representative total house income in the dwelling unit is $35151 +in.representative_income 35153 Representative total house income in the dwelling unit is $35153 +in.representative_income 35160 Representative total house income in the dwelling unit is $35160 +in.representative_income 35163 Representative total house income in the dwelling unit is $35163 +in.representative_income 35171 Representative total house income in the dwelling unit is $35171 +in.representative_income 35173 Representative total house income in the dwelling unit is $35173 +in.representative_income 35180 Representative total house income in the dwelling unit is $35180 +in.representative_income 35193 Representative total house income in the dwelling unit is $35193 +in.representative_income 35200 Representative total house income in the dwelling unit is $35200 +in.representative_income 35209 Representative total house income in the dwelling unit is $35209 +in.representative_income 35213 Representative total house income in the dwelling unit is $35213 +in.representative_income 35214 Representative total house income in the dwelling unit is $35214 +in.representative_income 35223 Representative total house income in the dwelling unit is $35223 +in.representative_income 35224 Representative total house income in the dwelling unit is $35224 +in.representative_income 35234 Representative total house income in the dwelling unit is $35234 +in.representative_income 35254 Representative total house income in the dwelling unit is $35254 +in.representative_income 35256 Representative total house income in the dwelling unit is $35256 +in.representative_income 35265 Representative total house income in the dwelling unit is $35265 +in.representative_income 35276 Representative total house income in the dwelling unit is $35276 +in.representative_income 35294 Representative total house income in the dwelling unit is $35294 +in.representative_income 35305 Representative total house income in the dwelling unit is $35305 +in.representative_income 35316 Representative total house income in the dwelling unit is $35316 +in.representative_income 35317 Representative total house income in the dwelling unit is $35317 +in.representative_income 35329 Representative total house income in the dwelling unit is $35329 +in.representative_income 35332 Representative total house income in the dwelling unit is $35332 +in.representative_income 35343 Representative total house income in the dwelling unit is $35343 +in.representative_income 35348 Representative total house income in the dwelling unit is $35348 +in.representative_income 35355 Representative total house income in the dwelling unit is $35355 +in.representative_income 35361 Representative total house income in the dwelling unit is $35361 +in.representative_income 35365 Representative total house income in the dwelling unit is $35365 +in.representative_income 35371 Representative total house income in the dwelling unit is $35371 +in.representative_income 35375 Representative total house income in the dwelling unit is $35375 +in.representative_income 35378 Representative total house income in the dwelling unit is $35378 +in.representative_income 35406 Representative total house income in the dwelling unit is $35406 +in.representative_income 35407 Representative total house income in the dwelling unit is $35407 +in.representative_income 35416 Representative total house income in the dwelling unit is $35416 +in.representative_income 35424 Representative total house income in the dwelling unit is $35424 +in.representative_income 35426 Representative total house income in the dwelling unit is $35426 +in.representative_income 35435 Representative total house income in the dwelling unit is $35435 +in.representative_income 35440 Representative total house income in the dwelling unit is $35440 +in.representative_income 35456 Representative total house income in the dwelling unit is $35456 +in.representative_income 35461 Representative total house income in the dwelling unit is $35461 +in.representative_income 35463 Representative total house income in the dwelling unit is $35463 +in.representative_income 35466 Representative total house income in the dwelling unit is $35466 +in.representative_income 35467 Representative total house income in the dwelling unit is $35467 +in.representative_income 35476 Representative total house income in the dwelling unit is $35476 +in.representative_income 35482 Representative total house income in the dwelling unit is $35482 +in.representative_income 35483 Representative total house income in the dwelling unit is $35483 +in.representative_income 35486 Representative total house income in the dwelling unit is $35486 +in.representative_income 35492 Representative total house income in the dwelling unit is $35492 +in.representative_income 35498 Representative total house income in the dwelling unit is $35498 +in.representative_income 35499 Representative total house income in the dwelling unit is $35499 +in.representative_income 35500 Representative total house income in the dwelling unit is $35500 +in.representative_income 35504 Representative total house income in the dwelling unit is $35504 +in.representative_income 35507 Representative total house income in the dwelling unit is $35507 +in.representative_income 35509 Representative total house income in the dwelling unit is $35509 +in.representative_income 35515 Representative total house income in the dwelling unit is $35515 +in.representative_income 35522 Representative total house income in the dwelling unit is $35522 +in.representative_income 35532 Representative total house income in the dwelling unit is $35532 +in.representative_income 35540 Representative total house income in the dwelling unit is $35540 +in.representative_income 35544 Representative total house income in the dwelling unit is $35544 +in.representative_income 35547 Representative total house income in the dwelling unit is $35547 +in.representative_income 35548 Representative total house income in the dwelling unit is $35548 +in.representative_income 35557 Representative total house income in the dwelling unit is $35557 +in.representative_income 35577 Representative total house income in the dwelling unit is $35577 +in.representative_income 35585 Representative total house income in the dwelling unit is $35585 +in.representative_income 35587 Representative total house income in the dwelling unit is $35587 +in.representative_income 35593 Representative total house income in the dwelling unit is $35593 +in.representative_income 35598 Representative total house income in the dwelling unit is $35598 +in.representative_income 35605 Representative total house income in the dwelling unit is $35605 +in.representative_income 35608 Representative total house income in the dwelling unit is $35608 +in.representative_income 35616 Representative total house income in the dwelling unit is $35616 +in.representative_income 35638 Representative total house income in the dwelling unit is $35638 +in.representative_income 35642 Representative total house income in the dwelling unit is $35642 +in.representative_income 35645 Representative total house income in the dwelling unit is $35645 +in.representative_income 35646 Representative total house income in the dwelling unit is $35646 +in.representative_income 35650 Representative total house income in the dwelling unit is $35650 +in.representative_income 35655 Representative total house income in the dwelling unit is $35655 +in.representative_income 35657 Representative total house income in the dwelling unit is $35657 +in.representative_income 35658 Representative total house income in the dwelling unit is $35658 +in.representative_income 35668 Representative total house income in the dwelling unit is $35668 +in.representative_income 35677 Representative total house income in the dwelling unit is $35677 +in.representative_income 35678 Representative total house income in the dwelling unit is $35678 +in.representative_income 35688 Representative total house income in the dwelling unit is $35688 +in.representative_income 35692 Representative total house income in the dwelling unit is $35692 +in.representative_income 35693 Representative total house income in the dwelling unit is $35693 +in.representative_income 35699 Representative total house income in the dwelling unit is $35699 +in.representative_income 35702 Representative total house income in the dwelling unit is $35702 +in.representative_income 35703 Representative total house income in the dwelling unit is $35703 +in.representative_income 35717 Representative total house income in the dwelling unit is $35717 +in.representative_income 35724 Representative total house income in the dwelling unit is $35724 +in.representative_income 35729 Representative total house income in the dwelling unit is $35729 +in.representative_income 35730 Representative total house income in the dwelling unit is $35730 +in.representative_income 35735 Representative total house income in the dwelling unit is $35735 +in.representative_income 35740 Representative total house income in the dwelling unit is $35740 +in.representative_income 35742 Representative total house income in the dwelling unit is $35742 +in.representative_income 35746 Representative total house income in the dwelling unit is $35746 +in.representative_income 35752 Representative total house income in the dwelling unit is $35752 +in.representative_income 35758 Representative total house income in the dwelling unit is $35758 +in.representative_income 35759 Representative total house income in the dwelling unit is $35759 +in.representative_income 35762 Representative total house income in the dwelling unit is $35762 +in.representative_income 35763 Representative total house income in the dwelling unit is $35763 +in.representative_income 35770 Representative total house income in the dwelling unit is $35770 +in.representative_income 35775 Representative total house income in the dwelling unit is $35775 +in.representative_income 35783 Representative total house income in the dwelling unit is $35783 +in.representative_income 35789 Representative total house income in the dwelling unit is $35789 +in.representative_income 35792 Representative total house income in the dwelling unit is $35792 +in.representative_income 35800 Representative total house income in the dwelling unit is $35800 +in.representative_income 35802 Representative total house income in the dwelling unit is $35802 +in.representative_income 35807 Representative total house income in the dwelling unit is $35807 +in.representative_income 35808 Representative total house income in the dwelling unit is $35808 +in.representative_income 35810 Representative total house income in the dwelling unit is $35810 +in.representative_income 35811 Representative total house income in the dwelling unit is $35811 +in.representative_income 35825 Representative total house income in the dwelling unit is $35825 +in.representative_income 35840 Representative total house income in the dwelling unit is $35840 +in.representative_income 35853 Representative total house income in the dwelling unit is $35853 +in.representative_income 35857 Representative total house income in the dwelling unit is $35857 +in.representative_income 35860 Representative total house income in the dwelling unit is $35860 +in.representative_income 35867 Representative total house income in the dwelling unit is $35867 +in.representative_income 35871 Representative total house income in the dwelling unit is $35871 +in.representative_income 35873 Representative total house income in the dwelling unit is $35873 +in.representative_income 35874 Representative total house income in the dwelling unit is $35874 +in.representative_income 35893 Representative total house income in the dwelling unit is $35893 +in.representative_income 35895 Representative total house income in the dwelling unit is $35895 +in.representative_income 35901 Representative total house income in the dwelling unit is $35901 +in.representative_income 35911 Representative total house income in the dwelling unit is $35911 +in.representative_income 35921 Representative total house income in the dwelling unit is $35921 +in.representative_income 35925 Representative total house income in the dwelling unit is $35925 +in.representative_income 35939 Representative total house income in the dwelling unit is $35939 +in.representative_income 35941 Representative total house income in the dwelling unit is $35941 +in.representative_income 35946 Representative total house income in the dwelling unit is $35946 +in.representative_income 35947 Representative total house income in the dwelling unit is $35947 +in.representative_income 35958 Representative total house income in the dwelling unit is $35958 +in.representative_income 35961 Representative total house income in the dwelling unit is $35961 +in.representative_income 35962 Representative total house income in the dwelling unit is $35962 +in.representative_income 35965 Representative total house income in the dwelling unit is $35965 +in.representative_income 35968 Representative total house income in the dwelling unit is $35968 +in.representative_income 35971 Representative total house income in the dwelling unit is $35971 +in.representative_income 35972 Representative total house income in the dwelling unit is $35972 +in.representative_income 35973 Representative total house income in the dwelling unit is $35973 +in.representative_income 35975 Representative total house income in the dwelling unit is $35975 +in.representative_income 35977 Representative total house income in the dwelling unit is $35977 +in.representative_income 35979 Representative total house income in the dwelling unit is $35979 +in.representative_income 35981 Representative total house income in the dwelling unit is $35981 +in.representative_income 35991 Representative total house income in the dwelling unit is $35991 +in.representative_income 35993 Representative total house income in the dwelling unit is $35993 +in.representative_income 35997 Representative total house income in the dwelling unit is $35997 +in.representative_income 36014 Representative total house income in the dwelling unit is $36014 +in.representative_income 36015 Representative total house income in the dwelling unit is $36015 +in.representative_income 36025 Representative total house income in the dwelling unit is $36025 +in.representative_income 36026 Representative total house income in the dwelling unit is $36026 +in.representative_income 36029 Representative total house income in the dwelling unit is $36029 +in.representative_income 36031 Representative total house income in the dwelling unit is $36031 +in.representative_income 36033 Representative total house income in the dwelling unit is $36033 +in.representative_income 36042 Representative total house income in the dwelling unit is $36042 +in.representative_income 36045 Representative total house income in the dwelling unit is $36045 +in.representative_income 36046 Representative total house income in the dwelling unit is $36046 +in.representative_income 36047 Representative total house income in the dwelling unit is $36047 +in.representative_income 36049 Representative total house income in the dwelling unit is $36049 +in.representative_income 36052 Representative total house income in the dwelling unit is $36052 +in.representative_income 36059 Representative total house income in the dwelling unit is $36059 +in.representative_income 36062 Representative total house income in the dwelling unit is $36062 +in.representative_income 36067 Representative total house income in the dwelling unit is $36067 +in.representative_income 36068 Representative total house income in the dwelling unit is $36068 +in.representative_income 36073 Representative total house income in the dwelling unit is $36073 +in.representative_income 36078 Representative total house income in the dwelling unit is $36078 +in.representative_income 36079 Representative total house income in the dwelling unit is $36079 +in.representative_income 36082 Representative total house income in the dwelling unit is $36082 +in.representative_income 36088 Representative total house income in the dwelling unit is $36088 +in.representative_income 36090 Representative total house income in the dwelling unit is $36090 +in.representative_income 36092 Representative total house income in the dwelling unit is $36092 +in.representative_income 36094 Representative total house income in the dwelling unit is $36094 +in.representative_income 36100 Representative total house income in the dwelling unit is $36100 +in.representative_income 36101 Representative total house income in the dwelling unit is $36101 +in.representative_income 36103 Representative total house income in the dwelling unit is $36103 +in.representative_income 36109 Representative total house income in the dwelling unit is $36109 +in.representative_income 36110 Representative total house income in the dwelling unit is $36110 +in.representative_income 36111 Representative total house income in the dwelling unit is $36111 +in.representative_income 36113 Representative total house income in the dwelling unit is $36113 +in.representative_income 36121 Representative total house income in the dwelling unit is $36121 +in.representative_income 36123 Representative total house income in the dwelling unit is $36123 +in.representative_income 36126 Representative total house income in the dwelling unit is $36126 +in.representative_income 36132 Representative total house income in the dwelling unit is $36132 +in.representative_income 36141 Representative total house income in the dwelling unit is $36141 +in.representative_income 36142 Representative total house income in the dwelling unit is $36142 +in.representative_income 36148 Representative total house income in the dwelling unit is $36148 +in.representative_income 36152 Representative total house income in the dwelling unit is $36152 +in.representative_income 36153 Representative total house income in the dwelling unit is $36153 +in.representative_income 36163 Representative total house income in the dwelling unit is $36163 +in.representative_income 36165 Representative total house income in the dwelling unit is $36165 +in.representative_income 36166 Representative total house income in the dwelling unit is $36166 +in.representative_income 36173 Representative total house income in the dwelling unit is $36173 +in.representative_income 36175 Representative total house income in the dwelling unit is $36175 +in.representative_income 36177 Representative total house income in the dwelling unit is $36177 +in.representative_income 36180 Representative total house income in the dwelling unit is $36180 +in.representative_income 36182 Representative total house income in the dwelling unit is $36182 +in.representative_income 36184 Representative total house income in the dwelling unit is $36184 +in.representative_income 36185 Representative total house income in the dwelling unit is $36185 +in.representative_income 36186 Representative total house income in the dwelling unit is $36186 +in.representative_income 36193 Representative total house income in the dwelling unit is $36193 +in.representative_income 36196 Representative total house income in the dwelling unit is $36196 +in.representative_income 36202 Representative total house income in the dwelling unit is $36202 +in.representative_income 36204 Representative total house income in the dwelling unit is $36204 +in.representative_income 36207 Representative total house income in the dwelling unit is $36207 +in.representative_income 36208 Representative total house income in the dwelling unit is $36208 +in.representative_income 36214 Representative total house income in the dwelling unit is $36214 +in.representative_income 36216 Representative total house income in the dwelling unit is $36216 +in.representative_income 36224 Representative total house income in the dwelling unit is $36224 +in.representative_income 36228 Representative total house income in the dwelling unit is $36228 +in.representative_income 36230 Representative total house income in the dwelling unit is $36230 +in.representative_income 36233 Representative total house income in the dwelling unit is $36233 +in.representative_income 36236 Representative total house income in the dwelling unit is $36236 +in.representative_income 36240 Representative total house income in the dwelling unit is $36240 +in.representative_income 36244 Representative total house income in the dwelling unit is $36244 +in.representative_income 36250 Representative total house income in the dwelling unit is $36250 +in.representative_income 36256 Representative total house income in the dwelling unit is $36256 +in.representative_income 36257 Representative total house income in the dwelling unit is $36257 +in.representative_income 36259 Representative total house income in the dwelling unit is $36259 +in.representative_income 36261 Representative total house income in the dwelling unit is $36261 +in.representative_income 36264 Representative total house income in the dwelling unit is $36264 +in.representative_income 36273 Representative total house income in the dwelling unit is $36273 +in.representative_income 36278 Representative total house income in the dwelling unit is $36278 +in.representative_income 36280 Representative total house income in the dwelling unit is $36280 +in.representative_income 36282 Representative total house income in the dwelling unit is $36282 +in.representative_income 36283 Representative total house income in the dwelling unit is $36283 +in.representative_income 36286 Representative total house income in the dwelling unit is $36286 +in.representative_income 36289 Representative total house income in the dwelling unit is $36289 +in.representative_income 36293 Representative total house income in the dwelling unit is $36293 +in.representative_income 36299 Representative total house income in the dwelling unit is $36299 +in.representative_income 36304 Representative total house income in the dwelling unit is $36304 +in.representative_income 36305 Representative total house income in the dwelling unit is $36305 +in.representative_income 36307 Representative total house income in the dwelling unit is $36307 +in.representative_income 36308 Representative total house income in the dwelling unit is $36308 +in.representative_income 36310 Representative total house income in the dwelling unit is $36310 +in.representative_income 36315 Representative total house income in the dwelling unit is $36315 +in.representative_income 36318 Representative total house income in the dwelling unit is $36318 +in.representative_income 36321 Representative total house income in the dwelling unit is $36321 +in.representative_income 36322 Representative total house income in the dwelling unit is $36322 +in.representative_income 36326 Representative total house income in the dwelling unit is $36326 +in.representative_income 36331 Representative total house income in the dwelling unit is $36331 +in.representative_income 36335 Representative total house income in the dwelling unit is $36335 +in.representative_income 36336 Representative total house income in the dwelling unit is $36336 +in.representative_income 36338 Representative total house income in the dwelling unit is $36338 +in.representative_income 36347 Representative total house income in the dwelling unit is $36347 +in.representative_income 36348 Representative total house income in the dwelling unit is $36348 +in.representative_income 36350 Representative total house income in the dwelling unit is $36350 +in.representative_income 36355 Representative total house income in the dwelling unit is $36355 +in.representative_income 36358 Representative total house income in the dwelling unit is $36358 +in.representative_income 36359 Representative total house income in the dwelling unit is $36359 +in.representative_income 36365 Representative total house income in the dwelling unit is $36365 +in.representative_income 36375 Representative total house income in the dwelling unit is $36375 +in.representative_income 36379 Representative total house income in the dwelling unit is $36379 +in.representative_income 36382 Representative total house income in the dwelling unit is $36382 +in.representative_income 36384 Representative total house income in the dwelling unit is $36384 +in.representative_income 36385 Representative total house income in the dwelling unit is $36385 +in.representative_income 36388 Representative total house income in the dwelling unit is $36388 +in.representative_income 36389 Representative total house income in the dwelling unit is $36389 +in.representative_income 36390 Representative total house income in the dwelling unit is $36390 +in.representative_income 36395 Representative total house income in the dwelling unit is $36395 +in.representative_income 36396 Representative total house income in the dwelling unit is $36396 +in.representative_income 36400 Representative total house income in the dwelling unit is $36400 +in.representative_income 36401 Representative total house income in the dwelling unit is $36401 +in.representative_income 36405 Representative total house income in the dwelling unit is $36405 +in.representative_income 36411 Representative total house income in the dwelling unit is $36411 +in.representative_income 36412 Representative total house income in the dwelling unit is $36412 +in.representative_income 36413 Representative total house income in the dwelling unit is $36413 +in.representative_income 36416 Representative total house income in the dwelling unit is $36416 +in.representative_income 36423 Representative total house income in the dwelling unit is $36423 +in.representative_income 36426 Representative total house income in the dwelling unit is $36426 +in.representative_income 36431 Representative total house income in the dwelling unit is $36431 +in.representative_income 36436 Representative total house income in the dwelling unit is $36436 +in.representative_income 36443 Representative total house income in the dwelling unit is $36443 +in.representative_income 36446 Representative total house income in the dwelling unit is $36446 +in.representative_income 36448 Representative total house income in the dwelling unit is $36448 +in.representative_income 36451 Representative total house income in the dwelling unit is $36451 +in.representative_income 36455 Representative total house income in the dwelling unit is $36455 +in.representative_income 36457 Representative total house income in the dwelling unit is $36457 +in.representative_income 36460 Representative total house income in the dwelling unit is $36460 +in.representative_income 36466 Representative total house income in the dwelling unit is $36466 +in.representative_income 36482 Representative total house income in the dwelling unit is $36482 +in.representative_income 36486 Representative total house income in the dwelling unit is $36486 +in.representative_income 36487 Representative total house income in the dwelling unit is $36487 +in.representative_income 36490 Representative total house income in the dwelling unit is $36490 +in.representative_income 36491 Representative total house income in the dwelling unit is $36491 +in.representative_income 36497 Representative total house income in the dwelling unit is $36497 +in.representative_income 36498 Representative total house income in the dwelling unit is $36498 +in.representative_income 36500 Representative total house income in the dwelling unit is $36500 +in.representative_income 36502 Representative total house income in the dwelling unit is $36502 +in.representative_income 36503 Representative total house income in the dwelling unit is $36503 +in.representative_income 36507 Representative total house income in the dwelling unit is $36507 +in.representative_income 36511 Representative total house income in the dwelling unit is $36511 +in.representative_income 36513 Representative total house income in the dwelling unit is $36513 +in.representative_income 36517 Representative total house income in the dwelling unit is $36517 +in.representative_income 36519 Representative total house income in the dwelling unit is $36519 +in.representative_income 36520 Representative total house income in the dwelling unit is $36520 +in.representative_income 36524 Representative total house income in the dwelling unit is $36524 +in.representative_income 36531 Representative total house income in the dwelling unit is $36531 +in.representative_income 36537 Representative total house income in the dwelling unit is $36537 +in.representative_income 36539 Representative total house income in the dwelling unit is $36539 +in.representative_income 36540 Representative total house income in the dwelling unit is $36540 +in.representative_income 36542 Representative total house income in the dwelling unit is $36542 +in.representative_income 36547 Representative total house income in the dwelling unit is $36547 +in.representative_income 36551 Representative total house income in the dwelling unit is $36551 +in.representative_income 36552 Representative total house income in the dwelling unit is $36552 +in.representative_income 36557 Representative total house income in the dwelling unit is $36557 +in.representative_income 36561 Representative total house income in the dwelling unit is $36561 +in.representative_income 36565 Representative total house income in the dwelling unit is $36565 +in.representative_income 36567 Representative total house income in the dwelling unit is $36567 +in.representative_income 36574 Representative total house income in the dwelling unit is $36574 +in.representative_income 36584 Representative total house income in the dwelling unit is $36584 +in.representative_income 36586 Representative total house income in the dwelling unit is $36586 +in.representative_income 36587 Representative total house income in the dwelling unit is $36587 +in.representative_income 36592 Representative total house income in the dwelling unit is $36592 +in.representative_income 36594 Representative total house income in the dwelling unit is $36594 +in.representative_income 36595 Representative total house income in the dwelling unit is $36595 +in.representative_income 36596 Representative total house income in the dwelling unit is $36596 +in.representative_income 36598 Representative total house income in the dwelling unit is $36598 +in.representative_income 36600 Representative total house income in the dwelling unit is $36600 +in.representative_income 36605 Representative total house income in the dwelling unit is $36605 +in.representative_income 36616 Representative total house income in the dwelling unit is $36616 +in.representative_income 36617 Representative total house income in the dwelling unit is $36617 +in.representative_income 36618 Representative total house income in the dwelling unit is $36618 +in.representative_income 36626 Representative total house income in the dwelling unit is $36626 +in.representative_income 36627 Representative total house income in the dwelling unit is $36627 +in.representative_income 36628 Representative total house income in the dwelling unit is $36628 +in.representative_income 36637 Representative total house income in the dwelling unit is $36637 +in.representative_income 36638 Representative total house income in the dwelling unit is $36638 +in.representative_income 36643 Representative total house income in the dwelling unit is $36643 +in.representative_income 36648 Representative total house income in the dwelling unit is $36648 +in.representative_income 36649 Representative total house income in the dwelling unit is $36649 +in.representative_income 36658 Representative total house income in the dwelling unit is $36658 +in.representative_income 36660 Representative total house income in the dwelling unit is $36660 +in.representative_income 36661 Representative total house income in the dwelling unit is $36661 +in.representative_income 36668 Representative total house income in the dwelling unit is $36668 +in.representative_income 36671 Representative total house income in the dwelling unit is $36671 +in.representative_income 36678 Representative total house income in the dwelling unit is $36678 +in.representative_income 36682 Representative total house income in the dwelling unit is $36682 +in.representative_income 36687 Representative total house income in the dwelling unit is $36687 +in.representative_income 36688 Representative total house income in the dwelling unit is $36688 +in.representative_income 36697 Representative total house income in the dwelling unit is $36697 +in.representative_income 36699 Representative total house income in the dwelling unit is $36699 +in.representative_income 36700 Representative total house income in the dwelling unit is $36700 +in.representative_income 36711 Representative total house income in the dwelling unit is $36711 +in.representative_income 36719 Representative total house income in the dwelling unit is $36719 +in.representative_income 36720 Representative total house income in the dwelling unit is $36720 +in.representative_income 36725 Representative total house income in the dwelling unit is $36725 +in.representative_income 36730 Representative total house income in the dwelling unit is $36730 +in.representative_income 36731 Representative total house income in the dwelling unit is $36731 +in.representative_income 36736 Representative total house income in the dwelling unit is $36736 +in.representative_income 36737 Representative total house income in the dwelling unit is $36737 +in.representative_income 36740 Representative total house income in the dwelling unit is $36740 +in.representative_income 36743 Representative total house income in the dwelling unit is $36743 +in.representative_income 36744 Representative total house income in the dwelling unit is $36744 +in.representative_income 36749 Representative total house income in the dwelling unit is $36749 +in.representative_income 36751 Representative total house income in the dwelling unit is $36751 +in.representative_income 36755 Representative total house income in the dwelling unit is $36755 +in.representative_income 36757 Representative total house income in the dwelling unit is $36757 +in.representative_income 36766 Representative total house income in the dwelling unit is $36766 +in.representative_income 36768 Representative total house income in the dwelling unit is $36768 +in.representative_income 36769 Representative total house income in the dwelling unit is $36769 +in.representative_income 36772 Representative total house income in the dwelling unit is $36772 +in.representative_income 36777 Representative total house income in the dwelling unit is $36777 +in.representative_income 36779 Representative total house income in the dwelling unit is $36779 +in.representative_income 36782 Representative total house income in the dwelling unit is $36782 +in.representative_income 36785 Representative total house income in the dwelling unit is $36785 +in.representative_income 36790 Representative total house income in the dwelling unit is $36790 +in.representative_income 36798 Representative total house income in the dwelling unit is $36798 +in.representative_income 36800 Representative total house income in the dwelling unit is $36800 +in.representative_income 36802 Representative total house income in the dwelling unit is $36802 +in.representative_income 36803 Representative total house income in the dwelling unit is $36803 +in.representative_income 36805 Representative total house income in the dwelling unit is $36805 +in.representative_income 36806 Representative total house income in the dwelling unit is $36806 +in.representative_income 36816 Representative total house income in the dwelling unit is $36816 +in.representative_income 36819 Representative total house income in the dwelling unit is $36819 +in.representative_income 36820 Representative total house income in the dwelling unit is $36820 +in.representative_income 36821 Representative total house income in the dwelling unit is $36821 +in.representative_income 36822 Representative total house income in the dwelling unit is $36822 +in.representative_income 36823 Representative total house income in the dwelling unit is $36823 +in.representative_income 36824 Representative total house income in the dwelling unit is $36824 +in.representative_income 36826 Representative total house income in the dwelling unit is $36826 +in.representative_income 36830 Representative total house income in the dwelling unit is $36830 +in.representative_income 36836 Representative total house income in the dwelling unit is $36836 +in.representative_income 36840 Representative total house income in the dwelling unit is $36840 +in.representative_income 36845 Representative total house income in the dwelling unit is $36845 +in.representative_income 36846 Representative total house income in the dwelling unit is $36846 +in.representative_income 36848 Representative total house income in the dwelling unit is $36848 +in.representative_income 36850 Representative total house income in the dwelling unit is $36850 +in.representative_income 36855 Representative total house income in the dwelling unit is $36855 +in.representative_income 36863 Representative total house income in the dwelling unit is $36863 +in.representative_income 36870 Representative total house income in the dwelling unit is $36870 +in.representative_income 36873 Representative total house income in the dwelling unit is $36873 +in.representative_income 36875 Representative total house income in the dwelling unit is $36875 +in.representative_income 36880 Representative total house income in the dwelling unit is $36880 +in.representative_income 36884 Representative total house income in the dwelling unit is $36884 +in.representative_income 36888 Representative total house income in the dwelling unit is $36888 +in.representative_income 36890 Representative total house income in the dwelling unit is $36890 +in.representative_income 36905 Representative total house income in the dwelling unit is $36905 +in.representative_income 36911 Representative total house income in the dwelling unit is $36911 +in.representative_income 36916 Representative total house income in the dwelling unit is $36916 +in.representative_income 36919 Representative total house income in the dwelling unit is $36919 +in.representative_income 36926 Representative total house income in the dwelling unit is $36926 +in.representative_income 36927 Representative total house income in the dwelling unit is $36927 +in.representative_income 36931 Representative total house income in the dwelling unit is $36931 +in.representative_income 36933 Representative total house income in the dwelling unit is $36933 +in.representative_income 36934 Representative total house income in the dwelling unit is $36934 +in.representative_income 36937 Representative total house income in the dwelling unit is $36937 +in.representative_income 36941 Representative total house income in the dwelling unit is $36941 +in.representative_income 36952 Representative total house income in the dwelling unit is $36952 +in.representative_income 36953 Representative total house income in the dwelling unit is $36953 +in.representative_income 36957 Representative total house income in the dwelling unit is $36957 +in.representative_income 36964 Representative total house income in the dwelling unit is $36964 +in.representative_income 36971 Representative total house income in the dwelling unit is $36971 +in.representative_income 36974 Representative total house income in the dwelling unit is $36974 +in.representative_income 36978 Representative total house income in the dwelling unit is $36978 +in.representative_income 36980 Representative total house income in the dwelling unit is $36980 +in.representative_income 36985 Representative total house income in the dwelling unit is $36985 +in.representative_income 36990 Representative total house income in the dwelling unit is $36990 +in.representative_income 36991 Representative total house income in the dwelling unit is $36991 +in.representative_income 37002 Representative total house income in the dwelling unit is $37002 +in.representative_income 37006 Representative total house income in the dwelling unit is $37006 +in.representative_income 37013 Representative total house income in the dwelling unit is $37013 +in.representative_income 37017 Representative total house income in the dwelling unit is $37017 +in.representative_income 37019 Representative total house income in the dwelling unit is $37019 +in.representative_income 37022 Representative total house income in the dwelling unit is $37022 +in.representative_income 37029 Representative total house income in the dwelling unit is $37029 +in.representative_income 37030 Representative total house income in the dwelling unit is $37030 +in.representative_income 37033 Representative total house income in the dwelling unit is $37033 +in.representative_income 37034 Representative total house income in the dwelling unit is $37034 +in.representative_income 37038 Representative total house income in the dwelling unit is $37038 +in.representative_income 37042 Representative total house income in the dwelling unit is $37042 +in.representative_income 37050 Representative total house income in the dwelling unit is $37050 +in.representative_income 37060 Representative total house income in the dwelling unit is $37060 +in.representative_income 37066 Representative total house income in the dwelling unit is $37066 +in.representative_income 37069 Representative total house income in the dwelling unit is $37069 +in.representative_income 37071 Representative total house income in the dwelling unit is $37071 +in.representative_income 37072 Representative total house income in the dwelling unit is $37072 +in.representative_income 37080 Representative total house income in the dwelling unit is $37080 +in.representative_income 37085 Representative total house income in the dwelling unit is $37085 +in.representative_income 37088 Representative total house income in the dwelling unit is $37088 +in.representative_income 37091 Representative total house income in the dwelling unit is $37091 +in.representative_income 37092 Representative total house income in the dwelling unit is $37092 +in.representative_income 37093 Representative total house income in the dwelling unit is $37093 +in.representative_income 37098 Representative total house income in the dwelling unit is $37098 +in.representative_income 37101 Representative total house income in the dwelling unit is $37101 +in.representative_income 37103 Representative total house income in the dwelling unit is $37103 +in.representative_income 37112 Representative total house income in the dwelling unit is $37112 +in.representative_income 37113 Representative total house income in the dwelling unit is $37113 +in.representative_income 37117 Representative total house income in the dwelling unit is $37117 +in.representative_income 37122 Representative total house income in the dwelling unit is $37122 +in.representative_income 37123 Representative total house income in the dwelling unit is $37123 +in.representative_income 37132 Representative total house income in the dwelling unit is $37132 +in.representative_income 37133 Representative total house income in the dwelling unit is $37133 +in.representative_income 37135 Representative total house income in the dwelling unit is $37135 +in.representative_income 37136 Representative total house income in the dwelling unit is $37136 +in.representative_income 37137 Representative total house income in the dwelling unit is $37137 +in.representative_income 37142 Representative total house income in the dwelling unit is $37142 +in.representative_income 37143 Representative total house income in the dwelling unit is $37143 +in.representative_income 37146 Representative total house income in the dwelling unit is $37146 +in.representative_income 37153 Representative total house income in the dwelling unit is $37153 +in.representative_income 37154 Representative total house income in the dwelling unit is $37154 +in.representative_income 37158 Representative total house income in the dwelling unit is $37158 +in.representative_income 37163 Representative total house income in the dwelling unit is $37163 +in.representative_income 37164 Representative total house income in the dwelling unit is $37164 +in.representative_income 37168 Representative total house income in the dwelling unit is $37168 +in.representative_income 37169 Representative total house income in the dwelling unit is $37169 +in.representative_income 37173 Representative total house income in the dwelling unit is $37173 +in.representative_income 37174 Representative total house income in the dwelling unit is $37174 +in.representative_income 37177 Representative total house income in the dwelling unit is $37177 +in.representative_income 37184 Representative total house income in the dwelling unit is $37184 +in.representative_income 37190 Representative total house income in the dwelling unit is $37190 +in.representative_income 37194 Representative total house income in the dwelling unit is $37194 +in.representative_income 37195 Representative total house income in the dwelling unit is $37195 +in.representative_income 37202 Representative total house income in the dwelling unit is $37202 +in.representative_income 37204 Representative total house income in the dwelling unit is $37204 +in.representative_income 37205 Representative total house income in the dwelling unit is $37205 +in.representative_income 37206 Representative total house income in the dwelling unit is $37206 +in.representative_income 37207 Representative total house income in the dwelling unit is $37207 +in.representative_income 37210 Representative total house income in the dwelling unit is $37210 +in.representative_income 37211 Representative total house income in the dwelling unit is $37211 +in.representative_income 37214 Representative total house income in the dwelling unit is $37214 +in.representative_income 37215 Representative total house income in the dwelling unit is $37215 +in.representative_income 37222 Representative total house income in the dwelling unit is $37222 +in.representative_income 37224 Representative total house income in the dwelling unit is $37224 +in.representative_income 37227 Representative total house income in the dwelling unit is $37227 +in.representative_income 37228 Representative total house income in the dwelling unit is $37228 +in.representative_income 37233 Representative total house income in the dwelling unit is $37233 +in.representative_income 37235 Representative total house income in the dwelling unit is $37235 +in.representative_income 37241 Representative total house income in the dwelling unit is $37241 +in.representative_income 37246 Representative total house income in the dwelling unit is $37246 +in.representative_income 37249 Representative total house income in the dwelling unit is $37249 +in.representative_income 37259 Representative total house income in the dwelling unit is $37259 +in.representative_income 37267 Representative total house income in the dwelling unit is $37267 +in.representative_income 37269 Representative total house income in the dwelling unit is $37269 +in.representative_income 37270 Representative total house income in the dwelling unit is $37270 +in.representative_income 37274 Representative total house income in the dwelling unit is $37274 +in.representative_income 37276 Representative total house income in the dwelling unit is $37276 +in.representative_income 37281 Representative total house income in the dwelling unit is $37281 +in.representative_income 37287 Representative total house income in the dwelling unit is $37287 +in.representative_income 37291 Representative total house income in the dwelling unit is $37291 +in.representative_income 37292 Representative total house income in the dwelling unit is $37292 +in.representative_income 37295 Representative total house income in the dwelling unit is $37295 +in.representative_income 37297 Representative total house income in the dwelling unit is $37297 +in.representative_income 37298 Representative total house income in the dwelling unit is $37298 +in.representative_income 37325 Representative total house income in the dwelling unit is $37325 +in.representative_income 37330 Representative total house income in the dwelling unit is $37330 +in.representative_income 37333 Representative total house income in the dwelling unit is $37333 +in.representative_income 37339 Representative total house income in the dwelling unit is $37339 +in.representative_income 37345 Representative total house income in the dwelling unit is $37345 +in.representative_income 37351 Representative total house income in the dwelling unit is $37351 +in.representative_income 37354 Representative total house income in the dwelling unit is $37354 +in.representative_income 37356 Representative total house income in the dwelling unit is $37356 +in.representative_income 37359 Representative total house income in the dwelling unit is $37359 +in.representative_income 37362 Representative total house income in the dwelling unit is $37362 +in.representative_income 37364 Representative total house income in the dwelling unit is $37364 +in.representative_income 37365 Representative total house income in the dwelling unit is $37365 +in.representative_income 37366 Representative total house income in the dwelling unit is $37366 +in.representative_income 37369 Representative total house income in the dwelling unit is $37369 +in.representative_income 37375 Representative total house income in the dwelling unit is $37375 +in.representative_income 37380 Representative total house income in the dwelling unit is $37380 +in.representative_income 37384 Representative total house income in the dwelling unit is $37384 +in.representative_income 37386 Representative total house income in the dwelling unit is $37386 +in.representative_income 37388 Representative total house income in the dwelling unit is $37388 +in.representative_income 37389 Representative total house income in the dwelling unit is $37389 +in.representative_income 37390 Representative total house income in the dwelling unit is $37390 +in.representative_income 37398 Representative total house income in the dwelling unit is $37398 +in.representative_income 37401 Representative total house income in the dwelling unit is $37401 +in.representative_income 37410 Representative total house income in the dwelling unit is $37410 +in.representative_income 37411 Representative total house income in the dwelling unit is $37411 +in.representative_income 37413 Representative total house income in the dwelling unit is $37413 +in.representative_income 37416 Representative total house income in the dwelling unit is $37416 +in.representative_income 37421 Representative total house income in the dwelling unit is $37421 +in.representative_income 37424 Representative total house income in the dwelling unit is $37424 +in.representative_income 37427 Representative total house income in the dwelling unit is $37427 +in.representative_income 37428 Representative total house income in the dwelling unit is $37428 +in.representative_income 37431 Representative total house income in the dwelling unit is $37431 +in.representative_income 37436 Representative total house income in the dwelling unit is $37436 +in.representative_income 37438 Representative total house income in the dwelling unit is $37438 +in.representative_income 37442 Representative total house income in the dwelling unit is $37442 +in.representative_income 37446 Representative total house income in the dwelling unit is $37446 +in.representative_income 37451 Representative total house income in the dwelling unit is $37451 +in.representative_income 37459 Representative total house income in the dwelling unit is $37459 +in.representative_income 37463 Representative total house income in the dwelling unit is $37463 +in.representative_income 37464 Representative total house income in the dwelling unit is $37464 +in.representative_income 37472 Representative total house income in the dwelling unit is $37472 +in.representative_income 37473 Representative total house income in the dwelling unit is $37473 +in.representative_income 37474 Representative total house income in the dwelling unit is $37474 +in.representative_income 37476 Representative total house income in the dwelling unit is $37476 +in.representative_income 37481 Representative total house income in the dwelling unit is $37481 +in.representative_income 37483 Representative total house income in the dwelling unit is $37483 +in.representative_income 37484 Representative total house income in the dwelling unit is $37484 +in.representative_income 37485 Representative total house income in the dwelling unit is $37485 +in.representative_income 37491 Representative total house income in the dwelling unit is $37491 +in.representative_income 37492 Representative total house income in the dwelling unit is $37492 +in.representative_income 37497 Representative total house income in the dwelling unit is $37497 +in.representative_income 37512 Representative total house income in the dwelling unit is $37512 +in.representative_income 37514 Representative total house income in the dwelling unit is $37514 +in.representative_income 37518 Representative total house income in the dwelling unit is $37518 +in.representative_income 37524 Representative total house income in the dwelling unit is $37524 +in.representative_income 37527 Representative total house income in the dwelling unit is $37527 +in.representative_income 37544 Representative total house income in the dwelling unit is $37544 +in.representative_income 37546 Representative total house income in the dwelling unit is $37546 +in.representative_income 37554 Representative total house income in the dwelling unit is $37554 +in.representative_income 37557 Representative total house income in the dwelling unit is $37557 +in.representative_income 37558 Representative total house income in the dwelling unit is $37558 +in.representative_income 37567 Representative total house income in the dwelling unit is $37567 +in.representative_income 37571 Representative total house income in the dwelling unit is $37571 +in.representative_income 37572 Representative total house income in the dwelling unit is $37572 +in.representative_income 37573 Representative total house income in the dwelling unit is $37573 +in.representative_income 37574 Representative total house income in the dwelling unit is $37574 +in.representative_income 37575 Representative total house income in the dwelling unit is $37575 +in.representative_income 37576 Representative total house income in the dwelling unit is $37576 +in.representative_income 37577 Representative total house income in the dwelling unit is $37577 +in.representative_income 37578 Representative total house income in the dwelling unit is $37578 +in.representative_income 37581 Representative total house income in the dwelling unit is $37581 +in.representative_income 37586 Representative total house income in the dwelling unit is $37586 +in.representative_income 37587 Representative total house income in the dwelling unit is $37587 +in.representative_income 37596 Representative total house income in the dwelling unit is $37596 +in.representative_income 37598 Representative total house income in the dwelling unit is $37598 +in.representative_income 37600 Representative total house income in the dwelling unit is $37600 +in.representative_income 37607 Representative total house income in the dwelling unit is $37607 +in.representative_income 37613 Representative total house income in the dwelling unit is $37613 +in.representative_income 37618 Representative total house income in the dwelling unit is $37618 +in.representative_income 37621 Representative total house income in the dwelling unit is $37621 +in.representative_income 37625 Representative total house income in the dwelling unit is $37625 +in.representative_income 37627 Representative total house income in the dwelling unit is $37627 +in.representative_income 37633 Representative total house income in the dwelling unit is $37633 +in.representative_income 37635 Representative total house income in the dwelling unit is $37635 +in.representative_income 37638 Representative total house income in the dwelling unit is $37638 +in.representative_income 37640 Representative total house income in the dwelling unit is $37640 +in.representative_income 37646 Representative total house income in the dwelling unit is $37646 +in.representative_income 37648 Representative total house income in the dwelling unit is $37648 +in.representative_income 37650 Representative total house income in the dwelling unit is $37650 +in.representative_income 37653 Representative total house income in the dwelling unit is $37653 +in.representative_income 37658 Representative total house income in the dwelling unit is $37658 +in.representative_income 37668 Representative total house income in the dwelling unit is $37668 +in.representative_income 37669 Representative total house income in the dwelling unit is $37669 +in.representative_income 37676 Representative total house income in the dwelling unit is $37676 +in.representative_income 37678 Representative total house income in the dwelling unit is $37678 +in.representative_income 37679 Representative total house income in the dwelling unit is $37679 +in.representative_income 37685 Representative total house income in the dwelling unit is $37685 +in.representative_income 37688 Representative total house income in the dwelling unit is $37688 +in.representative_income 37689 Representative total house income in the dwelling unit is $37689 +in.representative_income 37692 Representative total house income in the dwelling unit is $37692 +in.representative_income 37694 Representative total house income in the dwelling unit is $37694 +in.representative_income 37695 Representative total house income in the dwelling unit is $37695 +in.representative_income 37698 Representative total house income in the dwelling unit is $37698 +in.representative_income 37701 Representative total house income in the dwelling unit is $37701 +in.representative_income 37709 Representative total house income in the dwelling unit is $37709 +in.representative_income 37710 Representative total house income in the dwelling unit is $37710 +in.representative_income 37712 Representative total house income in the dwelling unit is $37712 +in.representative_income 37713 Representative total house income in the dwelling unit is $37713 +in.representative_income 37721 Representative total house income in the dwelling unit is $37721 +in.representative_income 37723 Representative total house income in the dwelling unit is $37723 +in.representative_income 37729 Representative total house income in the dwelling unit is $37729 +in.representative_income 37730 Representative total house income in the dwelling unit is $37730 +in.representative_income 37732 Representative total house income in the dwelling unit is $37732 +in.representative_income 37734 Representative total house income in the dwelling unit is $37734 +in.representative_income 37742 Representative total house income in the dwelling unit is $37742 +in.representative_income 37745 Representative total house income in the dwelling unit is $37745 +in.representative_income 37747 Representative total house income in the dwelling unit is $37747 +in.representative_income 37748 Representative total house income in the dwelling unit is $37748 +in.representative_income 37751 Representative total house income in the dwelling unit is $37751 +in.representative_income 37755 Representative total house income in the dwelling unit is $37755 +in.representative_income 37759 Representative total house income in the dwelling unit is $37759 +in.representative_income 37763 Representative total house income in the dwelling unit is $37763 +in.representative_income 37764 Representative total house income in the dwelling unit is $37764 +in.representative_income 37769 Representative total house income in the dwelling unit is $37769 +in.representative_income 37771 Representative total house income in the dwelling unit is $37771 +in.representative_income 37774 Representative total house income in the dwelling unit is $37774 +in.representative_income 37779 Representative total house income in the dwelling unit is $37779 +in.representative_income 37784 Representative total house income in the dwelling unit is $37784 +in.representative_income 37786 Representative total house income in the dwelling unit is $37786 +in.representative_income 37787 Representative total house income in the dwelling unit is $37787 +in.representative_income 37793 Representative total house income in the dwelling unit is $37793 +in.representative_income 37797 Representative total house income in the dwelling unit is $37797 +in.representative_income 37800 Representative total house income in the dwelling unit is $37800 +in.representative_income 37801 Representative total house income in the dwelling unit is $37801 +in.representative_income 37803 Representative total house income in the dwelling unit is $37803 +in.representative_income 37807 Representative total house income in the dwelling unit is $37807 +in.representative_income 37813 Representative total house income in the dwelling unit is $37813 +in.representative_income 37817 Representative total house income in the dwelling unit is $37817 +in.representative_income 37818 Representative total house income in the dwelling unit is $37818 +in.representative_income 37821 Representative total house income in the dwelling unit is $37821 +in.representative_income 37828 Representative total house income in the dwelling unit is $37828 +in.representative_income 37829 Representative total house income in the dwelling unit is $37829 +in.representative_income 37834 Representative total house income in the dwelling unit is $37834 +in.representative_income 37837 Representative total house income in the dwelling unit is $37837 +in.representative_income 37838 Representative total house income in the dwelling unit is $37838 +in.representative_income 37840 Representative total house income in the dwelling unit is $37840 +in.representative_income 37849 Representative total house income in the dwelling unit is $37849 +in.representative_income 37854 Representative total house income in the dwelling unit is $37854 +in.representative_income 37860 Representative total house income in the dwelling unit is $37860 +in.representative_income 37865 Representative total house income in the dwelling unit is $37865 +in.representative_income 37867 Representative total house income in the dwelling unit is $37867 +in.representative_income 37871 Representative total house income in the dwelling unit is $37871 +in.representative_income 37873 Representative total house income in the dwelling unit is $37873 +in.representative_income 37880 Representative total house income in the dwelling unit is $37880 +in.representative_income 37881 Representative total house income in the dwelling unit is $37881 +in.representative_income 37891 Representative total house income in the dwelling unit is $37891 +in.representative_income 37892 Representative total house income in the dwelling unit is $37892 +in.representative_income 37893 Representative total house income in the dwelling unit is $37893 +in.representative_income 37898 Representative total house income in the dwelling unit is $37898 +in.representative_income 37902 Representative total house income in the dwelling unit is $37902 +in.representative_income 37903 Representative total house income in the dwelling unit is $37903 +in.representative_income 37904 Representative total house income in the dwelling unit is $37904 +in.representative_income 37906 Representative total house income in the dwelling unit is $37906 +in.representative_income 37910 Representative total house income in the dwelling unit is $37910 +in.representative_income 37914 Representative total house income in the dwelling unit is $37914 +in.representative_income 37917 Representative total house income in the dwelling unit is $37917 +in.representative_income 37922 Representative total house income in the dwelling unit is $37922 +in.representative_income 37923 Representative total house income in the dwelling unit is $37923 +in.representative_income 37925 Representative total house income in the dwelling unit is $37925 +in.representative_income 37935 Representative total house income in the dwelling unit is $37935 +in.representative_income 37941 Representative total house income in the dwelling unit is $37941 +in.representative_income 37951 Representative total house income in the dwelling unit is $37951 +in.representative_income 37957 Representative total house income in the dwelling unit is $37957 +in.representative_income 37958 Representative total house income in the dwelling unit is $37958 +in.representative_income 37962 Representative total house income in the dwelling unit is $37962 +in.representative_income 37963 Representative total house income in the dwelling unit is $37963 +in.representative_income 37966 Representative total house income in the dwelling unit is $37966 +in.representative_income 37968 Representative total house income in the dwelling unit is $37968 +in.representative_income 37970 Representative total house income in the dwelling unit is $37970 +in.representative_income 37971 Representative total house income in the dwelling unit is $37971 +in.representative_income 37976 Representative total house income in the dwelling unit is $37976 +in.representative_income 37979 Representative total house income in the dwelling unit is $37979 +in.representative_income 37981 Representative total house income in the dwelling unit is $37981 +in.representative_income 37987 Representative total house income in the dwelling unit is $37987 +in.representative_income 37990 Representative total house income in the dwelling unit is $37990 +in.representative_income 37992 Representative total house income in the dwelling unit is $37992 +in.representative_income 37997 Representative total house income in the dwelling unit is $37997 +in.representative_income 38000 Representative total house income in the dwelling unit is $38000 +in.representative_income 38002 Representative total house income in the dwelling unit is $38002 +in.representative_income 38004 Representative total house income in the dwelling unit is $38004 +in.representative_income 38008 Representative total house income in the dwelling unit is $38008 +in.representative_income 38011 Representative total house income in the dwelling unit is $38011 +in.representative_income 38012 Representative total house income in the dwelling unit is $38012 +in.representative_income 38019 Representative total house income in the dwelling unit is $38019 +in.representative_income 38020 Representative total house income in the dwelling unit is $38020 +in.representative_income 38029 Representative total house income in the dwelling unit is $38029 +in.representative_income 38033 Representative total house income in the dwelling unit is $38033 +in.representative_income 38037 Representative total house income in the dwelling unit is $38037 +in.representative_income 38043 Representative total house income in the dwelling unit is $38043 +in.representative_income 38044 Representative total house income in the dwelling unit is $38044 +in.representative_income 38050 Representative total house income in the dwelling unit is $38050 +in.representative_income 38052 Representative total house income in the dwelling unit is $38052 +in.representative_income 38054 Representative total house income in the dwelling unit is $38054 +in.representative_income 38058 Representative total house income in the dwelling unit is $38058 +in.representative_income 38061 Representative total house income in the dwelling unit is $38061 +in.representative_income 38062 Representative total house income in the dwelling unit is $38062 +in.representative_income 38063 Representative total house income in the dwelling unit is $38063 +in.representative_income 38065 Representative total house income in the dwelling unit is $38065 +in.representative_income 38071 Representative total house income in the dwelling unit is $38071 +in.representative_income 38082 Representative total house income in the dwelling unit is $38082 +in.representative_income 38084 Representative total house income in the dwelling unit is $38084 +in.representative_income 38086 Representative total house income in the dwelling unit is $38086 +in.representative_income 38088 Representative total house income in the dwelling unit is $38088 +in.representative_income 38093 Representative total house income in the dwelling unit is $38093 +in.representative_income 38103 Representative total house income in the dwelling unit is $38103 +in.representative_income 38107 Representative total house income in the dwelling unit is $38107 +in.representative_income 38108 Representative total house income in the dwelling unit is $38108 +in.representative_income 38112 Representative total house income in the dwelling unit is $38112 +in.representative_income 38113 Representative total house income in the dwelling unit is $38113 +in.representative_income 38114 Representative total house income in the dwelling unit is $38114 +in.representative_income 38123 Representative total house income in the dwelling unit is $38123 +in.representative_income 38124 Representative total house income in the dwelling unit is $38124 +in.representative_income 38130 Representative total house income in the dwelling unit is $38130 +in.representative_income 38135 Representative total house income in the dwelling unit is $38135 +in.representative_income 38140 Representative total house income in the dwelling unit is $38140 +in.representative_income 38143 Representative total house income in the dwelling unit is $38143 +in.representative_income 38153 Representative total house income in the dwelling unit is $38153 +in.representative_income 38155 Representative total house income in the dwelling unit is $38155 +in.representative_income 38162 Representative total house income in the dwelling unit is $38162 +in.representative_income 38163 Representative total house income in the dwelling unit is $38163 +in.representative_income 38175 Representative total house income in the dwelling unit is $38175 +in.representative_income 38176 Representative total house income in the dwelling unit is $38176 +in.representative_income 38177 Representative total house income in the dwelling unit is $38177 +in.representative_income 38178 Representative total house income in the dwelling unit is $38178 +in.representative_income 38180 Representative total house income in the dwelling unit is $38180 +in.representative_income 38183 Representative total house income in the dwelling unit is $38183 +in.representative_income 38185 Representative total house income in the dwelling unit is $38185 +in.representative_income 38188 Representative total house income in the dwelling unit is $38188 +in.representative_income 38192 Representative total house income in the dwelling unit is $38192 +in.representative_income 38194 Representative total house income in the dwelling unit is $38194 +in.representative_income 38196 Representative total house income in the dwelling unit is $38196 +in.representative_income 38214 Representative total house income in the dwelling unit is $38214 +in.representative_income 38215 Representative total house income in the dwelling unit is $38215 +in.representative_income 38224 Representative total house income in the dwelling unit is $38224 +in.representative_income 38229 Representative total house income in the dwelling unit is $38229 +in.representative_income 38230 Representative total house income in the dwelling unit is $38230 +in.representative_income 38234 Representative total house income in the dwelling unit is $38234 +in.representative_income 38244 Representative total house income in the dwelling unit is $38244 +in.representative_income 38246 Representative total house income in the dwelling unit is $38246 +in.representative_income 38248 Representative total house income in the dwelling unit is $38248 +in.representative_income 38250 Representative total house income in the dwelling unit is $38250 +in.representative_income 38261 Representative total house income in the dwelling unit is $38261 +in.representative_income 38267 Representative total house income in the dwelling unit is $38267 +in.representative_income 38268 Representative total house income in the dwelling unit is $38268 +in.representative_income 38274 Representative total house income in the dwelling unit is $38274 +in.representative_income 38277 Representative total house income in the dwelling unit is $38277 +in.representative_income 38283 Representative total house income in the dwelling unit is $38283 +in.representative_income 38284 Representative total house income in the dwelling unit is $38284 +in.representative_income 38287 Representative total house income in the dwelling unit is $38287 +in.representative_income 38293 Representative total house income in the dwelling unit is $38293 +in.representative_income 38302 Representative total house income in the dwelling unit is $38302 +in.representative_income 38303 Representative total house income in the dwelling unit is $38303 +in.representative_income 38313 Representative total house income in the dwelling unit is $38313 +in.representative_income 38314 Representative total house income in the dwelling unit is $38314 +in.representative_income 38315 Representative total house income in the dwelling unit is $38315 +in.representative_income 38323 Representative total house income in the dwelling unit is $38323 +in.representative_income 38324 Representative total house income in the dwelling unit is $38324 +in.representative_income 38325 Representative total house income in the dwelling unit is $38325 +in.representative_income 38329 Representative total house income in the dwelling unit is $38329 +in.representative_income 38335 Representative total house income in the dwelling unit is $38335 +in.representative_income 38350 Representative total house income in the dwelling unit is $38350 +in.representative_income 38355 Representative total house income in the dwelling unit is $38355 +in.representative_income 38356 Representative total house income in the dwelling unit is $38356 +in.representative_income 38357 Representative total house income in the dwelling unit is $38357 +in.representative_income 38360 Representative total house income in the dwelling unit is $38360 +in.representative_income 38363 Representative total house income in the dwelling unit is $38363 +in.representative_income 38365 Representative total house income in the dwelling unit is $38365 +in.representative_income 38370 Representative total house income in the dwelling unit is $38370 +in.representative_income 38376 Representative total house income in the dwelling unit is $38376 +in.representative_income 38379 Representative total house income in the dwelling unit is $38379 +in.representative_income 38380 Representative total house income in the dwelling unit is $38380 +in.representative_income 38386 Representative total house income in the dwelling unit is $38386 +in.representative_income 38388 Representative total house income in the dwelling unit is $38388 +in.representative_income 38389 Representative total house income in the dwelling unit is $38389 +in.representative_income 38390 Representative total house income in the dwelling unit is $38390 +in.representative_income 38396 Representative total house income in the dwelling unit is $38396 +in.representative_income 38404 Representative total house income in the dwelling unit is $38404 +in.representative_income 38406 Representative total house income in the dwelling unit is $38406 +in.representative_income 38410 Representative total house income in the dwelling unit is $38410 +in.representative_income 38416 Representative total house income in the dwelling unit is $38416 +in.representative_income 38419 Representative total house income in the dwelling unit is $38419 +in.representative_income 38422 Representative total house income in the dwelling unit is $38422 +in.representative_income 38423 Representative total house income in the dwelling unit is $38423 +in.representative_income 38429 Representative total house income in the dwelling unit is $38429 +in.representative_income 38430 Representative total house income in the dwelling unit is $38430 +in.representative_income 38431 Representative total house income in the dwelling unit is $38431 +in.representative_income 38432 Representative total house income in the dwelling unit is $38432 +in.representative_income 38433 Representative total house income in the dwelling unit is $38433 +in.representative_income 38436 Representative total house income in the dwelling unit is $38436 +in.representative_income 38440 Representative total house income in the dwelling unit is $38440 +in.representative_income 38444 Representative total house income in the dwelling unit is $38444 +in.representative_income 38450 Representative total house income in the dwelling unit is $38450 +in.representative_income 38451 Representative total house income in the dwelling unit is $38451 +in.representative_income 38462 Representative total house income in the dwelling unit is $38462 +in.representative_income 38465 Representative total house income in the dwelling unit is $38465 +in.representative_income 38469 Representative total house income in the dwelling unit is $38469 +in.representative_income 38473 Representative total house income in the dwelling unit is $38473 +in.representative_income 38476 Representative total house income in the dwelling unit is $38476 +in.representative_income 38482 Representative total house income in the dwelling unit is $38482 +in.representative_income 38487 Representative total house income in the dwelling unit is $38487 +in.representative_income 38493 Representative total house income in the dwelling unit is $38493 +in.representative_income 38494 Representative total house income in the dwelling unit is $38494 +in.representative_income 38498 Representative total house income in the dwelling unit is $38498 +in.representative_income 38504 Representative total house income in the dwelling unit is $38504 +in.representative_income 38507 Representative total house income in the dwelling unit is $38507 +in.representative_income 38508 Representative total house income in the dwelling unit is $38508 +in.representative_income 38514 Representative total house income in the dwelling unit is $38514 +in.representative_income 38515 Representative total house income in the dwelling unit is $38515 +in.representative_income 38522 Representative total house income in the dwelling unit is $38522 +in.representative_income 38524 Representative total house income in the dwelling unit is $38524 +in.representative_income 38525 Representative total house income in the dwelling unit is $38525 +in.representative_income 38535 Representative total house income in the dwelling unit is $38535 +in.representative_income 38537 Representative total house income in the dwelling unit is $38537 +in.representative_income 38541 Representative total house income in the dwelling unit is $38541 +in.representative_income 38545 Representative total house income in the dwelling unit is $38545 +in.representative_income 38546 Representative total house income in the dwelling unit is $38546 +in.representative_income 38547 Representative total house income in the dwelling unit is $38547 +in.representative_income 38554 Representative total house income in the dwelling unit is $38554 +in.representative_income 38555 Representative total house income in the dwelling unit is $38555 +in.representative_income 38567 Representative total house income in the dwelling unit is $38567 +in.representative_income 38573 Representative total house income in the dwelling unit is $38573 +in.representative_income 38576 Representative total house income in the dwelling unit is $38576 +in.representative_income 38577 Representative total house income in the dwelling unit is $38577 +in.representative_income 38579 Representative total house income in the dwelling unit is $38579 +in.representative_income 38584 Representative total house income in the dwelling unit is $38584 +in.representative_income 38587 Representative total house income in the dwelling unit is $38587 +in.representative_income 38588 Representative total house income in the dwelling unit is $38588 +in.representative_income 38591 Representative total house income in the dwelling unit is $38591 +in.representative_income 38597 Representative total house income in the dwelling unit is $38597 +in.representative_income 38598 Representative total house income in the dwelling unit is $38598 +in.representative_income 38603 Representative total house income in the dwelling unit is $38603 +in.representative_income 38605 Representative total house income in the dwelling unit is $38605 +in.representative_income 38607 Representative total house income in the dwelling unit is $38607 +in.representative_income 38608 Representative total house income in the dwelling unit is $38608 +in.representative_income 38616 Representative total house income in the dwelling unit is $38616 +in.representative_income 38618 Representative total house income in the dwelling unit is $38618 +in.representative_income 38619 Representative total house income in the dwelling unit is $38619 +in.representative_income 38621 Representative total house income in the dwelling unit is $38621 +in.representative_income 38627 Representative total house income in the dwelling unit is $38627 +in.representative_income 38630 Representative total house income in the dwelling unit is $38630 +in.representative_income 38633 Representative total house income in the dwelling unit is $38633 +in.representative_income 38639 Representative total house income in the dwelling unit is $38639 +in.representative_income 38641 Representative total house income in the dwelling unit is $38641 +in.representative_income 38644 Representative total house income in the dwelling unit is $38644 +in.representative_income 38648 Representative total house income in the dwelling unit is $38648 +in.representative_income 38652 Representative total house income in the dwelling unit is $38652 +in.representative_income 38655 Representative total house income in the dwelling unit is $38655 +in.representative_income 38659 Representative total house income in the dwelling unit is $38659 +in.representative_income 38665 Representative total house income in the dwelling unit is $38665 +in.representative_income 38668 Representative total house income in the dwelling unit is $38668 +in.representative_income 38679 Representative total house income in the dwelling unit is $38679 +in.representative_income 38681 Representative total house income in the dwelling unit is $38681 +in.representative_income 38683 Representative total house income in the dwelling unit is $38683 +in.representative_income 38687 Representative total house income in the dwelling unit is $38687 +in.representative_income 38689 Representative total house income in the dwelling unit is $38689 +in.representative_income 38693 Representative total house income in the dwelling unit is $38693 +in.representative_income 38697 Representative total house income in the dwelling unit is $38697 +in.representative_income 38703 Representative total house income in the dwelling unit is $38703 +in.representative_income 38704 Representative total house income in the dwelling unit is $38704 +in.representative_income 38709 Representative total house income in the dwelling unit is $38709 +in.representative_income 38713 Representative total house income in the dwelling unit is $38713 +in.representative_income 38716 Representative total house income in the dwelling unit is $38716 +in.representative_income 38717 Representative total house income in the dwelling unit is $38717 +in.representative_income 38719 Representative total house income in the dwelling unit is $38719 +in.representative_income 38720 Representative total house income in the dwelling unit is $38720 +in.representative_income 38724 Representative total house income in the dwelling unit is $38724 +in.representative_income 38731 Representative total house income in the dwelling unit is $38731 +in.representative_income 38735 Representative total house income in the dwelling unit is $38735 +in.representative_income 38736 Representative total house income in the dwelling unit is $38736 +in.representative_income 38739 Representative total house income in the dwelling unit is $38739 +in.representative_income 38742 Representative total house income in the dwelling unit is $38742 +in.representative_income 38749 Representative total house income in the dwelling unit is $38749 +in.representative_income 38752 Representative total house income in the dwelling unit is $38752 +in.representative_income 38764 Representative total house income in the dwelling unit is $38764 +in.representative_income 38767 Representative total house income in the dwelling unit is $38767 +in.representative_income 38769 Representative total house income in the dwelling unit is $38769 +in.representative_income 38771 Representative total house income in the dwelling unit is $38771 +in.representative_income 38779 Representative total house income in the dwelling unit is $38779 +in.representative_income 38782 Representative total house income in the dwelling unit is $38782 +in.representative_income 38784 Representative total house income in the dwelling unit is $38784 +in.representative_income 38787 Representative total house income in the dwelling unit is $38787 +in.representative_income 38789 Representative total house income in the dwelling unit is $38789 +in.representative_income 38790 Representative total house income in the dwelling unit is $38790 +in.representative_income 38792 Representative total house income in the dwelling unit is $38792 +in.representative_income 38800 Representative total house income in the dwelling unit is $38800 +in.representative_income 38804 Representative total house income in the dwelling unit is $38804 +in.representative_income 38809 Representative total house income in the dwelling unit is $38809 +in.representative_income 38826 Representative total house income in the dwelling unit is $38826 +in.representative_income 38837 Representative total house income in the dwelling unit is $38837 +in.representative_income 38840 Representative total house income in the dwelling unit is $38840 +in.representative_income 38843 Representative total house income in the dwelling unit is $38843 +in.representative_income 38849 Representative total house income in the dwelling unit is $38849 +in.representative_income 38851 Representative total house income in the dwelling unit is $38851 +in.representative_income 38859 Representative total house income in the dwelling unit is $38859 +in.representative_income 38864 Representative total house income in the dwelling unit is $38864 +in.representative_income 38870 Representative total house income in the dwelling unit is $38870 +in.representative_income 38873 Representative total house income in the dwelling unit is $38873 +in.representative_income 38881 Representative total house income in the dwelling unit is $38881 +in.representative_income 38883 Representative total house income in the dwelling unit is $38883 +in.representative_income 38884 Representative total house income in the dwelling unit is $38884 +in.representative_income 38886 Representative total house income in the dwelling unit is $38886 +in.representative_income 38891 Representative total house income in the dwelling unit is $38891 +in.representative_income 38897 Representative total house income in the dwelling unit is $38897 +in.representative_income 38898 Representative total house income in the dwelling unit is $38898 +in.representative_income 38901 Representative total house income in the dwelling unit is $38901 +in.representative_income 38904 Representative total house income in the dwelling unit is $38904 +in.representative_income 38906 Representative total house income in the dwelling unit is $38906 +in.representative_income 38908 Representative total house income in the dwelling unit is $38908 +in.representative_income 38911 Representative total house income in the dwelling unit is $38911 +in.representative_income 38912 Representative total house income in the dwelling unit is $38912 +in.representative_income 38915 Representative total house income in the dwelling unit is $38915 +in.representative_income 38918 Representative total house income in the dwelling unit is $38918 +in.representative_income 38929 Representative total house income in the dwelling unit is $38929 +in.representative_income 38934 Representative total house income in the dwelling unit is $38934 +in.representative_income 38948 Representative total house income in the dwelling unit is $38948 +in.representative_income 38962 Representative total house income in the dwelling unit is $38962 +in.representative_income 38966 Representative total house income in the dwelling unit is $38966 +in.representative_income 38968 Representative total house income in the dwelling unit is $38968 +in.representative_income 38972 Representative total house income in the dwelling unit is $38972 +in.representative_income 38988 Representative total house income in the dwelling unit is $38988 +in.representative_income 38989 Representative total house income in the dwelling unit is $38989 +in.representative_income 38992 Representative total house income in the dwelling unit is $38992 +in.representative_income 38999 Representative total house income in the dwelling unit is $38999 +in.representative_income 39005 Representative total house income in the dwelling unit is $39005 +in.representative_income 39006 Representative total house income in the dwelling unit is $39006 +in.representative_income 39009 Representative total house income in the dwelling unit is $39009 +in.representative_income 39010 Representative total house income in the dwelling unit is $39010 +in.representative_income 39012 Representative total house income in the dwelling unit is $39012 +in.representative_income 39014 Representative total house income in the dwelling unit is $39014 +in.representative_income 39020 Representative total house income in the dwelling unit is $39020 +in.representative_income 39021 Representative total house income in the dwelling unit is $39021 +in.representative_income 39031 Representative total house income in the dwelling unit is $39031 +in.representative_income 39042 Representative total house income in the dwelling unit is $39042 +in.representative_income 39046 Representative total house income in the dwelling unit is $39046 +in.representative_income 39049 Representative total house income in the dwelling unit is $39049 +in.representative_income 39058 Representative total house income in the dwelling unit is $39058 +in.representative_income 39059 Representative total house income in the dwelling unit is $39059 +in.representative_income 39062 Representative total house income in the dwelling unit is $39062 +in.representative_income 39071 Representative total house income in the dwelling unit is $39071 +in.representative_income 39073 Representative total house income in the dwelling unit is $39073 +in.representative_income 39083 Representative total house income in the dwelling unit is $39083 +in.representative_income 39084 Representative total house income in the dwelling unit is $39084 +in.representative_income 39092 Representative total house income in the dwelling unit is $39092 +in.representative_income 39093 Representative total house income in the dwelling unit is $39093 +in.representative_income 39095 Representative total house income in the dwelling unit is $39095 +in.representative_income 39113 Representative total house income in the dwelling unit is $39113 +in.representative_income 39121 Representative total house income in the dwelling unit is $39121 +in.representative_income 39123 Representative total house income in the dwelling unit is $39123 +in.representative_income 39126 Representative total house income in the dwelling unit is $39126 +in.representative_income 39134 Representative total house income in the dwelling unit is $39134 +in.representative_income 39144 Representative total house income in the dwelling unit is $39144 +in.representative_income 39147 Representative total house income in the dwelling unit is $39147 +in.representative_income 39148 Representative total house income in the dwelling unit is $39148 +in.representative_income 39154 Representative total house income in the dwelling unit is $39154 +in.representative_income 39157 Representative total house income in the dwelling unit is $39157 +in.representative_income 39163 Representative total house income in the dwelling unit is $39163 +in.representative_income 39170 Representative total house income in the dwelling unit is $39170 +in.representative_income 39173 Representative total house income in the dwelling unit is $39173 +in.representative_income 39181 Representative total house income in the dwelling unit is $39181 +in.representative_income 39185 Representative total house income in the dwelling unit is $39185 +in.representative_income 39188 Representative total house income in the dwelling unit is $39188 +in.representative_income 39191 Representative total house income in the dwelling unit is $39191 +in.representative_income 39194 Representative total house income in the dwelling unit is $39194 +in.representative_income 39195 Representative total house income in the dwelling unit is $39195 +in.representative_income 39202 Representative total house income in the dwelling unit is $39202 +in.representative_income 39206 Representative total house income in the dwelling unit is $39206 +in.representative_income 39208 Representative total house income in the dwelling unit is $39208 +in.representative_income 39213 Representative total house income in the dwelling unit is $39213 +in.representative_income 39214 Representative total house income in the dwelling unit is $39214 +in.representative_income 39216 Representative total house income in the dwelling unit is $39216 +in.representative_income 39222 Representative total house income in the dwelling unit is $39222 +in.representative_income 39223 Representative total house income in the dwelling unit is $39223 +in.representative_income 39231 Representative total house income in the dwelling unit is $39231 +in.representative_income 39234 Representative total house income in the dwelling unit is $39234 +in.representative_income 39237 Representative total house income in the dwelling unit is $39237 +in.representative_income 39238 Representative total house income in the dwelling unit is $39238 +in.representative_income 39243 Representative total house income in the dwelling unit is $39243 +in.representative_income 39244 Representative total house income in the dwelling unit is $39244 +in.representative_income 39246 Representative total house income in the dwelling unit is $39246 +in.representative_income 39254 Representative total house income in the dwelling unit is $39254 +in.representative_income 39274 Representative total house income in the dwelling unit is $39274 +in.representative_income 39278 Representative total house income in the dwelling unit is $39278 +in.representative_income 39284 Representative total house income in the dwelling unit is $39284 +in.representative_income 39288 Representative total house income in the dwelling unit is $39288 +in.representative_income 39295 Representative total house income in the dwelling unit is $39295 +in.representative_income 39298 Representative total house income in the dwelling unit is $39298 +in.representative_income 39315 Representative total house income in the dwelling unit is $39315 +in.representative_income 39319 Representative total house income in the dwelling unit is $39319 +in.representative_income 39329 Representative total house income in the dwelling unit is $39329 +in.representative_income 39331 Representative total house income in the dwelling unit is $39331 +in.representative_income 39337 Representative total house income in the dwelling unit is $39337 +in.representative_income 39342 Representative total house income in the dwelling unit is $39342 +in.representative_income 39345 Representative total house income in the dwelling unit is $39345 +in.representative_income 39350 Representative total house income in the dwelling unit is $39350 +in.representative_income 39351 Representative total house income in the dwelling unit is $39351 +in.representative_income 39360 Representative total house income in the dwelling unit is $39360 +in.representative_income 39362 Representative total house income in the dwelling unit is $39362 +in.representative_income 39363 Representative total house income in the dwelling unit is $39363 +in.representative_income 39369 Representative total house income in the dwelling unit is $39369 +in.representative_income 39381 Representative total house income in the dwelling unit is $39381 +in.representative_income 39383 Representative total house income in the dwelling unit is $39383 +in.representative_income 39396 Representative total house income in the dwelling unit is $39396 +in.representative_income 39401 Representative total house income in the dwelling unit is $39401 +in.representative_income 39406 Representative total house income in the dwelling unit is $39406 +in.representative_income 39413 Representative total house income in the dwelling unit is $39413 +in.representative_income 39436 Representative total house income in the dwelling unit is $39436 +in.representative_income 39437 Representative total house income in the dwelling unit is $39437 +in.representative_income 39438 Representative total house income in the dwelling unit is $39438 +in.representative_income 39442 Representative total house income in the dwelling unit is $39442 +in.representative_income 39446 Representative total house income in the dwelling unit is $39446 +in.representative_income 39463 Representative total house income in the dwelling unit is $39463 +in.representative_income 39473 Representative total house income in the dwelling unit is $39473 +in.representative_income 39486 Representative total house income in the dwelling unit is $39486 +in.representative_income 39491 Representative total house income in the dwelling unit is $39491 +in.representative_income 39497 Representative total house income in the dwelling unit is $39497 +in.representative_income 39502 Representative total house income in the dwelling unit is $39502 +in.representative_income 39505 Representative total house income in the dwelling unit is $39505 +in.representative_income 39510 Representative total house income in the dwelling unit is $39510 +in.representative_income 39515 Representative total house income in the dwelling unit is $39515 +in.representative_income 39527 Representative total house income in the dwelling unit is $39527 +in.representative_income 39535 Representative total house income in the dwelling unit is $39535 +in.representative_income 39545 Representative total house income in the dwelling unit is $39545 +in.representative_income 39547 Representative total house income in the dwelling unit is $39547 +in.representative_income 39548 Representative total house income in the dwelling unit is $39548 +in.representative_income 39556 Representative total house income in the dwelling unit is $39556 +in.representative_income 39559 Representative total house income in the dwelling unit is $39559 +in.representative_income 39567 Representative total house income in the dwelling unit is $39567 +in.representative_income 39569 Representative total house income in the dwelling unit is $39569 +in.representative_income 39587 Representative total house income in the dwelling unit is $39587 +in.representative_income 39598 Representative total house income in the dwelling unit is $39598 +in.representative_income 39599 Representative total house income in the dwelling unit is $39599 +in.representative_income 39608 Representative total house income in the dwelling unit is $39608 +in.representative_income 39610 Representative total house income in the dwelling unit is $39610 +in.representative_income 39618 Representative total house income in the dwelling unit is $39618 +in.representative_income 39628 Representative total house income in the dwelling unit is $39628 +in.representative_income 39632 Representative total house income in the dwelling unit is $39632 +in.representative_income 39653 Representative total house income in the dwelling unit is $39653 +in.representative_income 39658 Representative total house income in the dwelling unit is $39658 +in.representative_income 39664 Representative total house income in the dwelling unit is $39664 +in.representative_income 39675 Representative total house income in the dwelling unit is $39675 +in.representative_income 39690 Representative total house income in the dwelling unit is $39690 +in.representative_income 39699 Representative total house income in the dwelling unit is $39699 +in.representative_income 39711 Representative total house income in the dwelling unit is $39711 +in.representative_income 39718 Representative total house income in the dwelling unit is $39718 +in.representative_income 39719 Representative total house income in the dwelling unit is $39719 +in.representative_income 39732 Representative total house income in the dwelling unit is $39732 +in.representative_income 39738 Representative total house income in the dwelling unit is $39738 +in.representative_income 39740 Representative total house income in the dwelling unit is $39740 +in.representative_income 39759 Representative total house income in the dwelling unit is $39759 +in.representative_income 39760 Representative total house income in the dwelling unit is $39760 +in.representative_income 39761 Representative total house income in the dwelling unit is $39761 +in.representative_income 39772 Representative total house income in the dwelling unit is $39772 +in.representative_income 39780 Representative total house income in the dwelling unit is $39780 +in.representative_income 39800 Representative total house income in the dwelling unit is $39800 +in.representative_income 39814 Representative total house income in the dwelling unit is $39814 +in.representative_income 39825 Representative total house income in the dwelling unit is $39825 +in.representative_income 39840 Representative total house income in the dwelling unit is $39840 +in.representative_income 39845 Representative total house income in the dwelling unit is $39845 +in.representative_income 39864 Representative total house income in the dwelling unit is $39864 +in.representative_income 39869 Representative total house income in the dwelling unit is $39869 +in.representative_income 39880 Representative total house income in the dwelling unit is $39880 +in.representative_income 39901 Representative total house income in the dwelling unit is $39901 +in.representative_income 39917 Representative total house income in the dwelling unit is $39917 +in.representative_income 39933 Representative total house income in the dwelling unit is $39933 +in.representative_income 39965 Representative total house income in the dwelling unit is $39965 +in.representative_income 39969 Representative total house income in the dwelling unit is $39969 +in.representative_income 39977 Representative total house income in the dwelling unit is $39977 +in.representative_income 39978 Representative total house income in the dwelling unit is $39978 +in.representative_income 39981 Representative total house income in the dwelling unit is $39981 +in.representative_income 40002 Representative total house income in the dwelling unit is $40002 +in.representative_income 40020 Representative total house income in the dwelling unit is $40020 +in.representative_income 40039 Representative total house income in the dwelling unit is $40039 +in.representative_income 40040 Representative total house income in the dwelling unit is $40040 +in.representative_income 40072 Representative total house income in the dwelling unit is $40072 +in.representative_income 40075 Representative total house income in the dwelling unit is $40075 +in.representative_income 40086 Representative total house income in the dwelling unit is $40086 +in.representative_income 40096 Representative total house income in the dwelling unit is $40096 +in.representative_income 40103 Representative total house income in the dwelling unit is $40103 +in.representative_income 40114 Representative total house income in the dwelling unit is $40114 +in.representative_income 40124 Representative total house income in the dwelling unit is $40124 +in.representative_income 40147 Representative total house income in the dwelling unit is $40147 +in.representative_income 40153 Representative total house income in the dwelling unit is $40153 +in.representative_income 40181 Representative total house income in the dwelling unit is $40181 +in.representative_income 40186 Representative total house income in the dwelling unit is $40186 +in.representative_income 40194 Representative total house income in the dwelling unit is $40194 +in.representative_income 40201 Representative total house income in the dwelling unit is $40201 +in.representative_income 40204 Representative total house income in the dwelling unit is $40204 +in.representative_income 40216 Representative total house income in the dwelling unit is $40216 +in.representative_income 40227 Representative total house income in the dwelling unit is $40227 +in.representative_income 40233 Representative total house income in the dwelling unit is $40233 +in.representative_income 40241 Representative total house income in the dwelling unit is $40241 +in.representative_income 40254 Representative total house income in the dwelling unit is $40254 +in.representative_income 40256 Representative total house income in the dwelling unit is $40256 +in.representative_income 40258 Representative total house income in the dwelling unit is $40258 +in.representative_income 40275 Representative total house income in the dwelling unit is $40275 +in.representative_income 40286 Representative total house income in the dwelling unit is $40286 +in.representative_income 40302 Representative total house income in the dwelling unit is $40302 +in.representative_income 40305 Representative total house income in the dwelling unit is $40305 +in.representative_income 40317 Representative total house income in the dwelling unit is $40317 +in.representative_income 40319 Representative total house income in the dwelling unit is $40319 +in.representative_income 40329 Representative total house income in the dwelling unit is $40329 +in.representative_income 40346 Representative total house income in the dwelling unit is $40346 +in.representative_income 40357 Representative total house income in the dwelling unit is $40357 +in.representative_income 40362 Representative total house income in the dwelling unit is $40362 +in.representative_income 40391 Representative total house income in the dwelling unit is $40391 +in.representative_income 40398 Representative total house income in the dwelling unit is $40398 +in.representative_income 40406 Representative total house income in the dwelling unit is $40406 +in.representative_income 40410 Representative total house income in the dwelling unit is $40410 +in.representative_income 40412 Representative total house income in the dwelling unit is $40412 +in.representative_income 40416 Representative total house income in the dwelling unit is $40416 +in.representative_income 40424 Representative total house income in the dwelling unit is $40424 +in.representative_income 40433 Representative total house income in the dwelling unit is $40433 +in.representative_income 40436 Representative total house income in the dwelling unit is $40436 +in.representative_income 40446 Representative total house income in the dwelling unit is $40446 +in.representative_income 40454 Representative total house income in the dwelling unit is $40454 +in.representative_income 40469 Representative total house income in the dwelling unit is $40469 +in.representative_income 40484 Representative total house income in the dwelling unit is $40484 +in.representative_income 40496 Representative total house income in the dwelling unit is $40496 +in.representative_income 40497 Representative total house income in the dwelling unit is $40497 +in.representative_income 40504 Representative total house income in the dwelling unit is $40504 +in.representative_income 40507 Representative total house income in the dwelling unit is $40507 +in.representative_income 40516 Representative total house income in the dwelling unit is $40516 +in.representative_income 40517 Representative total house income in the dwelling unit is $40517 +in.representative_income 40523 Representative total house income in the dwelling unit is $40523 +in.representative_income 40526 Representative total house income in the dwelling unit is $40526 +in.representative_income 40536 Representative total house income in the dwelling unit is $40536 +in.representative_income 40537 Representative total house income in the dwelling unit is $40537 +in.representative_income 40539 Representative total house income in the dwelling unit is $40539 +in.representative_income 40561 Representative total house income in the dwelling unit is $40561 +in.representative_income 40577 Representative total house income in the dwelling unit is $40577 +in.representative_income 40588 Representative total house income in the dwelling unit is $40588 +in.representative_income 40598 Representative total house income in the dwelling unit is $40598 +in.representative_income 40602 Representative total house income in the dwelling unit is $40602 +in.representative_income 40603 Representative total house income in the dwelling unit is $40603 +in.representative_income 40604 Representative total house income in the dwelling unit is $40604 +in.representative_income 40608 Representative total house income in the dwelling unit is $40608 +in.representative_income 40624 Representative total house income in the dwelling unit is $40624 +in.representative_income 40625 Representative total house income in the dwelling unit is $40625 +in.representative_income 40631 Representative total house income in the dwelling unit is $40631 +in.representative_income 40639 Representative total house income in the dwelling unit is $40639 +in.representative_income 40641 Representative total house income in the dwelling unit is $40641 +in.representative_income 40648 Representative total house income in the dwelling unit is $40648 +in.representative_income 40658 Representative total house income in the dwelling unit is $40658 +in.representative_income 40660 Representative total house income in the dwelling unit is $40660 +in.representative_income 40679 Representative total house income in the dwelling unit is $40679 +in.representative_income 40683 Representative total house income in the dwelling unit is $40683 +in.representative_income 40684 Representative total house income in the dwelling unit is $40684 +in.representative_income 40688 Representative total house income in the dwelling unit is $40688 +in.representative_income 40707 Representative total house income in the dwelling unit is $40707 +in.representative_income 40709 Representative total house income in the dwelling unit is $40709 +in.representative_income 40719 Representative total house income in the dwelling unit is $40719 +in.representative_income 40722 Representative total house income in the dwelling unit is $40722 +in.representative_income 40726 Representative total house income in the dwelling unit is $40726 +in.representative_income 40727 Representative total house income in the dwelling unit is $40727 +in.representative_income 40732 Representative total house income in the dwelling unit is $40732 +in.representative_income 40733 Representative total house income in the dwelling unit is $40733 +in.representative_income 40742 Representative total house income in the dwelling unit is $40742 +in.representative_income 40743 Representative total house income in the dwelling unit is $40743 +in.representative_income 40760 Representative total house income in the dwelling unit is $40760 +in.representative_income 40770 Representative total house income in the dwelling unit is $40770 +in.representative_income 40791 Representative total house income in the dwelling unit is $40791 +in.representative_income 40800 Representative total house income in the dwelling unit is $40800 +in.representative_income 40802 Representative total house income in the dwelling unit is $40802 +in.representative_income 40810 Representative total house income in the dwelling unit is $40810 +in.representative_income 40812 Representative total house income in the dwelling unit is $40812 +in.representative_income 40814 Representative total house income in the dwelling unit is $40814 +in.representative_income 40821 Representative total house income in the dwelling unit is $40821 +in.representative_income 40825 Representative total house income in the dwelling unit is $40825 +in.representative_income 40830 Representative total house income in the dwelling unit is $40830 +in.representative_income 40832 Representative total house income in the dwelling unit is $40832 +in.representative_income 40834 Representative total house income in the dwelling unit is $40834 +in.representative_income 40842 Representative total house income in the dwelling unit is $40842 +in.representative_income 40845 Representative total house income in the dwelling unit is $40845 +in.representative_income 40856 Representative total house income in the dwelling unit is $40856 +in.representative_income 40864 Representative total house income in the dwelling unit is $40864 +in.representative_income 40867 Representative total house income in the dwelling unit is $40867 +in.representative_income 40877 Representative total house income in the dwelling unit is $40877 +in.representative_income 40887 Representative total house income in the dwelling unit is $40887 +in.representative_income 40897 Representative total house income in the dwelling unit is $40897 +in.representative_income 40898 Representative total house income in the dwelling unit is $40898 +in.representative_income 40901 Representative total house income in the dwelling unit is $40901 +in.representative_income 40908 Representative total house income in the dwelling unit is $40908 +in.representative_income 40911 Representative total house income in the dwelling unit is $40911 +in.representative_income 40919 Representative total house income in the dwelling unit is $40919 +in.representative_income 40920 Representative total house income in the dwelling unit is $40920 +in.representative_income 40925 Representative total house income in the dwelling unit is $40925 +in.representative_income 40948 Representative total house income in the dwelling unit is $40948 +in.representative_income 40950 Representative total house income in the dwelling unit is $40950 +in.representative_income 40953 Representative total house income in the dwelling unit is $40953 +in.representative_income 40961 Representative total house income in the dwelling unit is $40961 +in.representative_income 40970 Representative total house income in the dwelling unit is $40970 +in.representative_income 40971 Representative total house income in the dwelling unit is $40971 +in.representative_income 40980 Representative total house income in the dwelling unit is $40980 +in.representative_income 40982 Representative total house income in the dwelling unit is $40982 +in.representative_income 40985 Representative total house income in the dwelling unit is $40985 +in.representative_income 40992 Representative total house income in the dwelling unit is $40992 +in.representative_income 41004 Representative total house income in the dwelling unit is $41004 +in.representative_income 41006 Representative total house income in the dwelling unit is $41006 +in.representative_income 41010 Representative total house income in the dwelling unit is $41010 +in.representative_income 41012 Representative total house income in the dwelling unit is $41012 +in.representative_income 41014 Representative total house income in the dwelling unit is $41014 +in.representative_income 41015 Representative total house income in the dwelling unit is $41015 +in.representative_income 41024 Representative total house income in the dwelling unit is $41024 +in.representative_income 41027 Representative total house income in the dwelling unit is $41027 +in.representative_income 41031 Representative total house income in the dwelling unit is $41031 +in.representative_income 41032 Representative total house income in the dwelling unit is $41032 +in.representative_income 41037 Representative total house income in the dwelling unit is $41037 +in.representative_income 41052 Representative total house income in the dwelling unit is $41052 +in.representative_income 41058 Representative total house income in the dwelling unit is $41058 +in.representative_income 41059 Representative total house income in the dwelling unit is $41059 +in.representative_income 41062 Representative total house income in the dwelling unit is $41062 +in.representative_income 41068 Representative total house income in the dwelling unit is $41068 +in.representative_income 41069 Representative total house income in the dwelling unit is $41069 +in.representative_income 41077 Representative total house income in the dwelling unit is $41077 +in.representative_income 41087 Representative total house income in the dwelling unit is $41087 +in.representative_income 41090 Representative total house income in the dwelling unit is $41090 +in.representative_income 41093 Representative total house income in the dwelling unit is $41093 +in.representative_income 41113 Representative total house income in the dwelling unit is $41113 +in.representative_income 41122 Representative total house income in the dwelling unit is $41122 +in.representative_income 41124 Representative total house income in the dwelling unit is $41124 +in.representative_income 41130 Representative total house income in the dwelling unit is $41130 +in.representative_income 41133 Representative total house income in the dwelling unit is $41133 +in.representative_income 41135 Representative total house income in the dwelling unit is $41135 +in.representative_income 41137 Representative total house income in the dwelling unit is $41137 +in.representative_income 41143 Representative total house income in the dwelling unit is $41143 +in.representative_income 41145 Representative total house income in the dwelling unit is $41145 +in.representative_income 41150 Representative total house income in the dwelling unit is $41150 +in.representative_income 41153 Representative total house income in the dwelling unit is $41153 +in.representative_income 41155 Representative total house income in the dwelling unit is $41155 +in.representative_income 41158 Representative total house income in the dwelling unit is $41158 +in.representative_income 41166 Representative total house income in the dwelling unit is $41166 +in.representative_income 41167 Representative total house income in the dwelling unit is $41167 +in.representative_income 41172 Representative total house income in the dwelling unit is $41172 +in.representative_income 41177 Representative total house income in the dwelling unit is $41177 +in.representative_income 41183 Representative total house income in the dwelling unit is $41183 +in.representative_income 41184 Representative total house income in the dwelling unit is $41184 +in.representative_income 41185 Representative total house income in the dwelling unit is $41185 +in.representative_income 41186 Representative total house income in the dwelling unit is $41186 +in.representative_income 41193 Representative total house income in the dwelling unit is $41193 +in.representative_income 41198 Representative total house income in the dwelling unit is $41198 +in.representative_income 41207 Representative total house income in the dwelling unit is $41207 +in.representative_income 41209 Representative total house income in the dwelling unit is $41209 +in.representative_income 41214 Representative total house income in the dwelling unit is $41214 +in.representative_income 41220 Representative total house income in the dwelling unit is $41220 +in.representative_income 41221 Representative total house income in the dwelling unit is $41221 +in.representative_income 41232 Representative total house income in the dwelling unit is $41232 +in.representative_income 41234 Representative total house income in the dwelling unit is $41234 +in.representative_income 41235 Representative total house income in the dwelling unit is $41235 +in.representative_income 41240 Representative total house income in the dwelling unit is $41240 +in.representative_income 41247 Representative total house income in the dwelling unit is $41247 +in.representative_income 41258 Representative total house income in the dwelling unit is $41258 +in.representative_income 41262 Representative total house income in the dwelling unit is $41262 +in.representative_income 41266 Representative total house income in the dwelling unit is $41266 +in.representative_income 41267 Representative total house income in the dwelling unit is $41267 +in.representative_income 41269 Representative total house income in the dwelling unit is $41269 +in.representative_income 41272 Representative total house income in the dwelling unit is $41272 +in.representative_income 41273 Representative total house income in the dwelling unit is $41273 +in.representative_income 41274 Representative total house income in the dwelling unit is $41274 +in.representative_income 41278 Representative total house income in the dwelling unit is $41278 +in.representative_income 41279 Representative total house income in the dwelling unit is $41279 +in.representative_income 41287 Representative total house income in the dwelling unit is $41287 +in.representative_income 41289 Representative total house income in the dwelling unit is $41289 +in.representative_income 41295 Representative total house income in the dwelling unit is $41295 +in.representative_income 41299 Representative total house income in the dwelling unit is $41299 +in.representative_income 41305 Representative total house income in the dwelling unit is $41305 +in.representative_income 41306 Representative total house income in the dwelling unit is $41306 +in.representative_income 41310 Representative total house income in the dwelling unit is $41310 +in.representative_income 41315 Representative total house income in the dwelling unit is $41315 +in.representative_income 41320 Representative total house income in the dwelling unit is $41320 +in.representative_income 41327 Representative total house income in the dwelling unit is $41327 +in.representative_income 41328 Representative total house income in the dwelling unit is $41328 +in.representative_income 41338 Representative total house income in the dwelling unit is $41338 +in.representative_income 41340 Representative total house income in the dwelling unit is $41340 +in.representative_income 41349 Representative total house income in the dwelling unit is $41349 +in.representative_income 41356 Representative total house income in the dwelling unit is $41356 +in.representative_income 41360 Representative total house income in the dwelling unit is $41360 +in.representative_income 41362 Representative total house income in the dwelling unit is $41362 +in.representative_income 41366 Representative total house income in the dwelling unit is $41366 +in.representative_income 41371 Representative total house income in the dwelling unit is $41371 +in.representative_income 41372 Representative total house income in the dwelling unit is $41372 +in.representative_income 41376 Representative total house income in the dwelling unit is $41376 +in.representative_income 41382 Representative total house income in the dwelling unit is $41382 +in.representative_income 41383 Representative total house income in the dwelling unit is $41383 +in.representative_income 41386 Representative total house income in the dwelling unit is $41386 +in.representative_income 41393 Representative total house income in the dwelling unit is $41393 +in.representative_income 41402 Representative total house income in the dwelling unit is $41402 +in.representative_income 41403 Representative total house income in the dwelling unit is $41403 +in.representative_income 41406 Representative total house income in the dwelling unit is $41406 +in.representative_income 41412 Representative total house income in the dwelling unit is $41412 +in.representative_income 41414 Representative total house income in the dwelling unit is $41414 +in.representative_income 41416 Representative total house income in the dwelling unit is $41416 +in.representative_income 41425 Representative total house income in the dwelling unit is $41425 +in.representative_income 41426 Representative total house income in the dwelling unit is $41426 +in.representative_income 41434 Representative total house income in the dwelling unit is $41434 +in.representative_income 41435 Representative total house income in the dwelling unit is $41435 +in.representative_income 41436 Representative total house income in the dwelling unit is $41436 +in.representative_income 41439 Representative total house income in the dwelling unit is $41439 +in.representative_income 41446 Representative total house income in the dwelling unit is $41446 +in.representative_income 41451 Representative total house income in the dwelling unit is $41451 +in.representative_income 41454 Representative total house income in the dwelling unit is $41454 +in.representative_income 41458 Representative total house income in the dwelling unit is $41458 +in.representative_income 41464 Representative total house income in the dwelling unit is $41464 +in.representative_income 41468 Representative total house income in the dwelling unit is $41468 +in.representative_income 41490 Representative total house income in the dwelling unit is $41490 +in.representative_income 41500 Representative total house income in the dwelling unit is $41500 +in.representative_income 41504 Representative total house income in the dwelling unit is $41504 +in.representative_income 41506 Representative total house income in the dwelling unit is $41506 +in.representative_income 41507 Representative total house income in the dwelling unit is $41507 +in.representative_income 41508 Representative total house income in the dwelling unit is $41508 +in.representative_income 41511 Representative total house income in the dwelling unit is $41511 +in.representative_income 41516 Representative total house income in the dwelling unit is $41516 +in.representative_income 41517 Representative total house income in the dwelling unit is $41517 +in.representative_income 41531 Representative total house income in the dwelling unit is $41531 +in.representative_income 41543 Representative total house income in the dwelling unit is $41543 +in.representative_income 41544 Representative total house income in the dwelling unit is $41544 +in.representative_income 41552 Representative total house income in the dwelling unit is $41552 +in.representative_income 41553 Representative total house income in the dwelling unit is $41553 +in.representative_income 41557 Representative total house income in the dwelling unit is $41557 +in.representative_income 41558 Representative total house income in the dwelling unit is $41558 +in.representative_income 41562 Representative total house income in the dwelling unit is $41562 +in.representative_income 41563 Representative total house income in the dwelling unit is $41563 +in.representative_income 41567 Representative total house income in the dwelling unit is $41567 +in.representative_income 41576 Representative total house income in the dwelling unit is $41576 +in.representative_income 41582 Representative total house income in the dwelling unit is $41582 +in.representative_income 41583 Representative total house income in the dwelling unit is $41583 +in.representative_income 41585 Representative total house income in the dwelling unit is $41585 +in.representative_income 41588 Representative total house income in the dwelling unit is $41588 +in.representative_income 41589 Representative total house income in the dwelling unit is $41589 +in.representative_income 41596 Representative total house income in the dwelling unit is $41596 +in.representative_income 41598 Representative total house income in the dwelling unit is $41598 +in.representative_income 41599 Representative total house income in the dwelling unit is $41599 +in.representative_income 41604 Representative total house income in the dwelling unit is $41604 +in.representative_income 41609 Representative total house income in the dwelling unit is $41609 +in.representative_income 41618 Representative total house income in the dwelling unit is $41618 +in.representative_income 41619 Representative total house income in the dwelling unit is $41619 +in.representative_income 41620 Representative total house income in the dwelling unit is $41620 +in.representative_income 41628 Representative total house income in the dwelling unit is $41628 +in.representative_income 41631 Representative total house income in the dwelling unit is $41631 +in.representative_income 41640 Representative total house income in the dwelling unit is $41640 +in.representative_income 41642 Representative total house income in the dwelling unit is $41642 +in.representative_income 41647 Representative total house income in the dwelling unit is $41647 +in.representative_income 41650 Representative total house income in the dwelling unit is $41650 +in.representative_income 41654 Representative total house income in the dwelling unit is $41654 +in.representative_income 41657 Representative total house income in the dwelling unit is $41657 +in.representative_income 41660 Representative total house income in the dwelling unit is $41660 +in.representative_income 41668 Representative total house income in the dwelling unit is $41668 +in.representative_income 41669 Representative total house income in the dwelling unit is $41669 +in.representative_income 41671 Representative total house income in the dwelling unit is $41671 +in.representative_income 41672 Representative total house income in the dwelling unit is $41672 +in.representative_income 41674 Representative total house income in the dwelling unit is $41674 +in.representative_income 41679 Representative total house income in the dwelling unit is $41679 +in.representative_income 41698 Representative total house income in the dwelling unit is $41698 +in.representative_income 41699 Representative total house income in the dwelling unit is $41699 +in.representative_income 41706 Representative total house income in the dwelling unit is $41706 +in.representative_income 41710 Representative total house income in the dwelling unit is $41710 +in.representative_income 41719 Representative total house income in the dwelling unit is $41719 +in.representative_income 41721 Representative total house income in the dwelling unit is $41721 +in.representative_income 41722 Representative total house income in the dwelling unit is $41722 +in.representative_income 41729 Representative total house income in the dwelling unit is $41729 +in.representative_income 41741 Representative total house income in the dwelling unit is $41741 +in.representative_income 41752 Representative total house income in the dwelling unit is $41752 +in.representative_income 41753 Representative total house income in the dwelling unit is $41753 +in.representative_income 41757 Representative total house income in the dwelling unit is $41757 +in.representative_income 41759 Representative total house income in the dwelling unit is $41759 +in.representative_income 41762 Representative total house income in the dwelling unit is $41762 +in.representative_income 41767 Representative total house income in the dwelling unit is $41767 +in.representative_income 41769 Representative total house income in the dwelling unit is $41769 +in.representative_income 41773 Representative total house income in the dwelling unit is $41773 +in.representative_income 41774 Representative total house income in the dwelling unit is $41774 +in.representative_income 41790 Representative total house income in the dwelling unit is $41790 +in.representative_income 41791 Representative total house income in the dwelling unit is $41791 +in.representative_income 41793 Representative total house income in the dwelling unit is $41793 +in.representative_income 41801 Representative total house income in the dwelling unit is $41801 +in.representative_income 41804 Representative total house income in the dwelling unit is $41804 +in.representative_income 41811 Representative total house income in the dwelling unit is $41811 +in.representative_income 41814 Representative total house income in the dwelling unit is $41814 +in.representative_income 41815 Representative total house income in the dwelling unit is $41815 +in.representative_income 41820 Representative total house income in the dwelling unit is $41820 +in.representative_income 41825 Representative total house income in the dwelling unit is $41825 +in.representative_income 41826 Representative total house income in the dwelling unit is $41826 +in.representative_income 41840 Representative total house income in the dwelling unit is $41840 +in.representative_income 41847 Representative total house income in the dwelling unit is $41847 +in.representative_income 41850 Representative total house income in the dwelling unit is $41850 +in.representative_income 41857 Representative total house income in the dwelling unit is $41857 +in.representative_income 41858 Representative total house income in the dwelling unit is $41858 +in.representative_income 41861 Representative total house income in the dwelling unit is $41861 +in.representative_income 41864 Representative total house income in the dwelling unit is $41864 +in.representative_income 41866 Representative total house income in the dwelling unit is $41866 +in.representative_income 41868 Representative total house income in the dwelling unit is $41868 +in.representative_income 41871 Representative total house income in the dwelling unit is $41871 +in.representative_income 41875 Representative total house income in the dwelling unit is $41875 +in.representative_income 41877 Representative total house income in the dwelling unit is $41877 +in.representative_income 41886 Representative total house income in the dwelling unit is $41886 +in.representative_income 41888 Representative total house income in the dwelling unit is $41888 +in.representative_income 41889 Representative total house income in the dwelling unit is $41889 +in.representative_income 41890 Representative total house income in the dwelling unit is $41890 +in.representative_income 41893 Representative total house income in the dwelling unit is $41893 +in.representative_income 41900 Representative total house income in the dwelling unit is $41900 +in.representative_income 41901 Representative total house income in the dwelling unit is $41901 +in.representative_income 41908 Representative total house income in the dwelling unit is $41908 +in.representative_income 41915 Representative total house income in the dwelling unit is $41915 +in.representative_income 41919 Representative total house income in the dwelling unit is $41919 +in.representative_income 41920 Representative total house income in the dwelling unit is $41920 +in.representative_income 41921 Representative total house income in the dwelling unit is $41921 +in.representative_income 41922 Representative total house income in the dwelling unit is $41922 +in.representative_income 41928 Representative total house income in the dwelling unit is $41928 +in.representative_income 41929 Representative total house income in the dwelling unit is $41929 +in.representative_income 41931 Representative total house income in the dwelling unit is $41931 +in.representative_income 41939 Representative total house income in the dwelling unit is $41939 +in.representative_income 41940 Representative total house income in the dwelling unit is $41940 +in.representative_income 41941 Representative total house income in the dwelling unit is $41941 +in.representative_income 41943 Representative total house income in the dwelling unit is $41943 +in.representative_income 41944 Representative total house income in the dwelling unit is $41944 +in.representative_income 41948 Representative total house income in the dwelling unit is $41948 +in.representative_income 41949 Representative total house income in the dwelling unit is $41949 +in.representative_income 41950 Representative total house income in the dwelling unit is $41950 +in.representative_income 41958 Representative total house income in the dwelling unit is $41958 +in.representative_income 41962 Representative total house income in the dwelling unit is $41962 +in.representative_income 41965 Representative total house income in the dwelling unit is $41965 +in.representative_income 41972 Representative total house income in the dwelling unit is $41972 +in.representative_income 41973 Representative total house income in the dwelling unit is $41973 +in.representative_income 41974 Representative total house income in the dwelling unit is $41974 +in.representative_income 41976 Representative total house income in the dwelling unit is $41976 +in.representative_income 41980 Representative total house income in the dwelling unit is $41980 +in.representative_income 41982 Representative total house income in the dwelling unit is $41982 +in.representative_income 41984 Representative total house income in the dwelling unit is $41984 +in.representative_income 41987 Representative total house income in the dwelling unit is $41987 +in.representative_income 41998 Representative total house income in the dwelling unit is $41998 +in.representative_income 42001 Representative total house income in the dwelling unit is $42001 +in.representative_income 42009 Representative total house income in the dwelling unit is $42009 +in.representative_income 42012 Representative total house income in the dwelling unit is $42012 +in.representative_income 42013 Representative total house income in the dwelling unit is $42013 +in.representative_income 42014 Representative total house income in the dwelling unit is $42014 +in.representative_income 42021 Representative total house income in the dwelling unit is $42021 +in.representative_income 42022 Representative total house income in the dwelling unit is $42022 +in.representative_income 42024 Representative total house income in the dwelling unit is $42024 +in.representative_income 42025 Representative total house income in the dwelling unit is $42025 +in.representative_income 42030 Representative total house income in the dwelling unit is $42030 +in.representative_income 42031 Representative total house income in the dwelling unit is $42031 +in.representative_income 42032 Representative total house income in the dwelling unit is $42032 +in.representative_income 42036 Representative total house income in the dwelling unit is $42036 +in.representative_income 42037 Representative total house income in the dwelling unit is $42037 +in.representative_income 42042 Representative total house income in the dwelling unit is $42042 +in.representative_income 42053 Representative total house income in the dwelling unit is $42053 +in.representative_income 42056 Representative total house income in the dwelling unit is $42056 +in.representative_income 42060 Representative total house income in the dwelling unit is $42060 +in.representative_income 42063 Representative total house income in the dwelling unit is $42063 +in.representative_income 42069 Representative total house income in the dwelling unit is $42069 +in.representative_income 42078 Representative total house income in the dwelling unit is $42078 +in.representative_income 42079 Representative total house income in the dwelling unit is $42079 +in.representative_income 42081 Representative total house income in the dwelling unit is $42081 +in.representative_income 42083 Representative total house income in the dwelling unit is $42083 +in.representative_income 42084 Representative total house income in the dwelling unit is $42084 +in.representative_income 42088 Representative total house income in the dwelling unit is $42088 +in.representative_income 42090 Representative total house income in the dwelling unit is $42090 +in.representative_income 42093 Representative total house income in the dwelling unit is $42093 +in.representative_income 42095 Representative total house income in the dwelling unit is $42095 +in.representative_income 42098 Representative total house income in the dwelling unit is $42098 +in.representative_income 42099 Representative total house income in the dwelling unit is $42099 +in.representative_income 42101 Representative total house income in the dwelling unit is $42101 +in.representative_income 42104 Representative total house income in the dwelling unit is $42104 +in.representative_income 42109 Representative total house income in the dwelling unit is $42109 +in.representative_income 42111 Representative total house income in the dwelling unit is $42111 +in.representative_income 42114 Representative total house income in the dwelling unit is $42114 +in.representative_income 42117 Representative total house income in the dwelling unit is $42117 +in.representative_income 42123 Representative total house income in the dwelling unit is $42123 +in.representative_income 42125 Representative total house income in the dwelling unit is $42125 +in.representative_income 42131 Representative total house income in the dwelling unit is $42131 +in.representative_income 42133 Representative total house income in the dwelling unit is $42133 +in.representative_income 42135 Representative total house income in the dwelling unit is $42135 +in.representative_income 42138 Representative total house income in the dwelling unit is $42138 +in.representative_income 42142 Representative total house income in the dwelling unit is $42142 +in.representative_income 42145 Representative total house income in the dwelling unit is $42145 +in.representative_income 42153 Representative total house income in the dwelling unit is $42153 +in.representative_income 42154 Representative total house income in the dwelling unit is $42154 +in.representative_income 42160 Representative total house income in the dwelling unit is $42160 +in.representative_income 42161 Representative total house income in the dwelling unit is $42161 +in.representative_income 42163 Representative total house income in the dwelling unit is $42163 +in.representative_income 42164 Representative total house income in the dwelling unit is $42164 +in.representative_income 42166 Representative total house income in the dwelling unit is $42166 +in.representative_income 42170 Representative total house income in the dwelling unit is $42170 +in.representative_income 42172 Representative total house income in the dwelling unit is $42172 +in.representative_income 42174 Representative total house income in the dwelling unit is $42174 +in.representative_income 42176 Representative total house income in the dwelling unit is $42176 +in.representative_income 42181 Representative total house income in the dwelling unit is $42181 +in.representative_income 42184 Representative total house income in the dwelling unit is $42184 +in.representative_income 42185 Representative total house income in the dwelling unit is $42185 +in.representative_income 42186 Representative total house income in the dwelling unit is $42186 +in.representative_income 42187 Representative total house income in the dwelling unit is $42187 +in.representative_income 42188 Representative total house income in the dwelling unit is $42188 +in.representative_income 42191 Representative total house income in the dwelling unit is $42191 +in.representative_income 42195 Representative total house income in the dwelling unit is $42195 +in.representative_income 42197 Representative total house income in the dwelling unit is $42197 +in.representative_income 42203 Representative total house income in the dwelling unit is $42203 +in.representative_income 42204 Representative total house income in the dwelling unit is $42204 +in.representative_income 42205 Representative total house income in the dwelling unit is $42205 +in.representative_income 42214 Representative total house income in the dwelling unit is $42214 +in.representative_income 42216 Representative total house income in the dwelling unit is $42216 +in.representative_income 42221 Representative total house income in the dwelling unit is $42221 +in.representative_income 42224 Representative total house income in the dwelling unit is $42224 +in.representative_income 42229 Representative total house income in the dwelling unit is $42229 +in.representative_income 42234 Representative total house income in the dwelling unit is $42234 +in.representative_income 42237 Representative total house income in the dwelling unit is $42237 +in.representative_income 42238 Representative total house income in the dwelling unit is $42238 +in.representative_income 42239 Representative total house income in the dwelling unit is $42239 +in.representative_income 42240 Representative total house income in the dwelling unit is $42240 +in.representative_income 42244 Representative total house income in the dwelling unit is $42244 +in.representative_income 42246 Representative total house income in the dwelling unit is $42246 +in.representative_income 42250 Representative total house income in the dwelling unit is $42250 +in.representative_income 42254 Representative total house income in the dwelling unit is $42254 +in.representative_income 42258 Representative total house income in the dwelling unit is $42258 +in.representative_income 42268 Representative total house income in the dwelling unit is $42268 +in.representative_income 42275 Representative total house income in the dwelling unit is $42275 +in.representative_income 42277 Representative total house income in the dwelling unit is $42277 +in.representative_income 42279 Representative total house income in the dwelling unit is $42279 +in.representative_income 42280 Representative total house income in the dwelling unit is $42280 +in.representative_income 42283 Representative total house income in the dwelling unit is $42283 +in.representative_income 42288 Representative total house income in the dwelling unit is $42288 +in.representative_income 42289 Representative total house income in the dwelling unit is $42289 +in.representative_income 42290 Representative total house income in the dwelling unit is $42290 +in.representative_income 42293 Representative total house income in the dwelling unit is $42293 +in.representative_income 42294 Representative total house income in the dwelling unit is $42294 +in.representative_income 42300 Representative total house income in the dwelling unit is $42300 +in.representative_income 42305 Representative total house income in the dwelling unit is $42305 +in.representative_income 42310 Representative total house income in the dwelling unit is $42310 +in.representative_income 42311 Representative total house income in the dwelling unit is $42311 +in.representative_income 42316 Representative total house income in the dwelling unit is $42316 +in.representative_income 42320 Representative total house income in the dwelling unit is $42320 +in.representative_income 42322 Representative total house income in the dwelling unit is $42322 +in.representative_income 42323 Representative total house income in the dwelling unit is $42323 +in.representative_income 42325 Representative total house income in the dwelling unit is $42325 +in.representative_income 42331 Representative total house income in the dwelling unit is $42331 +in.representative_income 42332 Representative total house income in the dwelling unit is $42332 +in.representative_income 42334 Representative total house income in the dwelling unit is $42334 +in.representative_income 42339 Representative total house income in the dwelling unit is $42339 +in.representative_income 42341 Representative total house income in the dwelling unit is $42341 +in.representative_income 42342 Representative total house income in the dwelling unit is $42342 +in.representative_income 42344 Representative total house income in the dwelling unit is $42344 +in.representative_income 42346 Representative total house income in the dwelling unit is $42346 +in.representative_income 42347 Representative total house income in the dwelling unit is $42347 +in.representative_income 42348 Representative total house income in the dwelling unit is $42348 +in.representative_income 42349 Representative total house income in the dwelling unit is $42349 +in.representative_income 42352 Representative total house income in the dwelling unit is $42352 +in.representative_income 42353 Representative total house income in the dwelling unit is $42353 +in.representative_income 42354 Representative total house income in the dwelling unit is $42354 +in.representative_income 42355 Representative total house income in the dwelling unit is $42355 +in.representative_income 42358 Representative total house income in the dwelling unit is $42358 +in.representative_income 42365 Representative total house income in the dwelling unit is $42365 +in.representative_income 42370 Representative total house income in the dwelling unit is $42370 +in.representative_income 42374 Representative total house income in the dwelling unit is $42374 +in.representative_income 42376 Representative total house income in the dwelling unit is $42376 +in.representative_income 42379 Representative total house income in the dwelling unit is $42379 +in.representative_income 42380 Representative total house income in the dwelling unit is $42380 +in.representative_income 42385 Representative total house income in the dwelling unit is $42385 +in.representative_income 42387 Representative total house income in the dwelling unit is $42387 +in.representative_income 42390 Representative total house income in the dwelling unit is $42390 +in.representative_income 42393 Representative total house income in the dwelling unit is $42393 +in.representative_income 42395 Representative total house income in the dwelling unit is $42395 +in.representative_income 42401 Representative total house income in the dwelling unit is $42401 +in.representative_income 42403 Representative total house income in the dwelling unit is $42403 +in.representative_income 42405 Representative total house income in the dwelling unit is $42405 +in.representative_income 42406 Representative total house income in the dwelling unit is $42406 +in.representative_income 42409 Representative total house income in the dwelling unit is $42409 +in.representative_income 42411 Representative total house income in the dwelling unit is $42411 +in.representative_income 42412 Representative total house income in the dwelling unit is $42412 +in.representative_income 42413 Representative total house income in the dwelling unit is $42413 +in.representative_income 42414 Representative total house income in the dwelling unit is $42414 +in.representative_income 42416 Representative total house income in the dwelling unit is $42416 +in.representative_income 42420 Representative total house income in the dwelling unit is $42420 +in.representative_income 42422 Representative total house income in the dwelling unit is $42422 +in.representative_income 42426 Representative total house income in the dwelling unit is $42426 +in.representative_income 42430 Representative total house income in the dwelling unit is $42430 +in.representative_income 42434 Representative total house income in the dwelling unit is $42434 +in.representative_income 42436 Representative total house income in the dwelling unit is $42436 +in.representative_income 42438 Representative total house income in the dwelling unit is $42438 +in.representative_income 42441 Representative total house income in the dwelling unit is $42441 +in.representative_income 42442 Representative total house income in the dwelling unit is $42442 +in.representative_income 42445 Representative total house income in the dwelling unit is $42445 +in.representative_income 42446 Representative total house income in the dwelling unit is $42446 +in.representative_income 42448 Representative total house income in the dwelling unit is $42448 +in.representative_income 42455 Representative total house income in the dwelling unit is $42455 +in.representative_income 42456 Representative total house income in the dwelling unit is $42456 +in.representative_income 42463 Representative total house income in the dwelling unit is $42463 +in.representative_income 42464 Representative total house income in the dwelling unit is $42464 +in.representative_income 42465 Representative total house income in the dwelling unit is $42465 +in.representative_income 42466 Representative total house income in the dwelling unit is $42466 +in.representative_income 42469 Representative total house income in the dwelling unit is $42469 +in.representative_income 42474 Representative total house income in the dwelling unit is $42474 +in.representative_income 42475 Representative total house income in the dwelling unit is $42475 +in.representative_income 42479 Representative total house income in the dwelling unit is $42479 +in.representative_income 42485 Representative total house income in the dwelling unit is $42485 +in.representative_income 42487 Representative total house income in the dwelling unit is $42487 +in.representative_income 42489 Representative total house income in the dwelling unit is $42489 +in.representative_income 42495 Representative total house income in the dwelling unit is $42495 +in.representative_income 42500 Representative total house income in the dwelling unit is $42500 +in.representative_income 42503 Representative total house income in the dwelling unit is $42503 +in.representative_income 42506 Representative total house income in the dwelling unit is $42506 +in.representative_income 42507 Representative total house income in the dwelling unit is $42507 +in.representative_income 42508 Representative total house income in the dwelling unit is $42508 +in.representative_income 42513 Representative total house income in the dwelling unit is $42513 +in.representative_income 42517 Representative total house income in the dwelling unit is $42517 +in.representative_income 42519 Representative total house income in the dwelling unit is $42519 +in.representative_income 42521 Representative total house income in the dwelling unit is $42521 +in.representative_income 42527 Representative total house income in the dwelling unit is $42527 +in.representative_income 42531 Representative total house income in the dwelling unit is $42531 +in.representative_income 42533 Representative total house income in the dwelling unit is $42533 +in.representative_income 42537 Representative total house income in the dwelling unit is $42537 +in.representative_income 42541 Representative total house income in the dwelling unit is $42541 +in.representative_income 42547 Representative total house income in the dwelling unit is $42547 +in.representative_income 42551 Representative total house income in the dwelling unit is $42551 +in.representative_income 42553 Representative total house income in the dwelling unit is $42553 +in.representative_income 42558 Representative total house income in the dwelling unit is $42558 +in.representative_income 42561 Representative total house income in the dwelling unit is $42561 +in.representative_income 42562 Representative total house income in the dwelling unit is $42562 +in.representative_income 42563 Representative total house income in the dwelling unit is $42563 +in.representative_income 42571 Representative total house income in the dwelling unit is $42571 +in.representative_income 42572 Representative total house income in the dwelling unit is $42572 +in.representative_income 42573 Representative total house income in the dwelling unit is $42573 +in.representative_income 42577 Representative total house income in the dwelling unit is $42577 +in.representative_income 42578 Representative total house income in the dwelling unit is $42578 +in.representative_income 42582 Representative total house income in the dwelling unit is $42582 +in.representative_income 42592 Representative total house income in the dwelling unit is $42592 +in.representative_income 42595 Representative total house income in the dwelling unit is $42595 +in.representative_income 42599 Representative total house income in the dwelling unit is $42599 +in.representative_income 42603 Representative total house income in the dwelling unit is $42603 +in.representative_income 42606 Representative total house income in the dwelling unit is $42606 +in.representative_income 42607 Representative total house income in the dwelling unit is $42607 +in.representative_income 42616 Representative total house income in the dwelling unit is $42616 +in.representative_income 42617 Representative total house income in the dwelling unit is $42617 +in.representative_income 42620 Representative total house income in the dwelling unit is $42620 +in.representative_income 42622 Representative total house income in the dwelling unit is $42622 +in.representative_income 42625 Representative total house income in the dwelling unit is $42625 +in.representative_income 42628 Representative total house income in the dwelling unit is $42628 +in.representative_income 42636 Representative total house income in the dwelling unit is $42636 +in.representative_income 42638 Representative total house income in the dwelling unit is $42638 +in.representative_income 42643 Representative total house income in the dwelling unit is $42643 +in.representative_income 42646 Representative total house income in the dwelling unit is $42646 +in.representative_income 42648 Representative total house income in the dwelling unit is $42648 +in.representative_income 42654 Representative total house income in the dwelling unit is $42654 +in.representative_income 42658 Representative total house income in the dwelling unit is $42658 +in.representative_income 42659 Representative total house income in the dwelling unit is $42659 +in.representative_income 42661 Representative total house income in the dwelling unit is $42661 +in.representative_income 42668 Representative total house income in the dwelling unit is $42668 +in.representative_income 42674 Representative total house income in the dwelling unit is $42674 +in.representative_income 42679 Representative total house income in the dwelling unit is $42679 +in.representative_income 42680 Representative total house income in the dwelling unit is $42680 +in.representative_income 42682 Representative total house income in the dwelling unit is $42682 +in.representative_income 42690 Representative total house income in the dwelling unit is $42690 +in.representative_income 42700 Representative total house income in the dwelling unit is $42700 +in.representative_income 42701 Representative total house income in the dwelling unit is $42701 +in.representative_income 42702 Representative total house income in the dwelling unit is $42702 +in.representative_income 42705 Representative total house income in the dwelling unit is $42705 +in.representative_income 42711 Representative total house income in the dwelling unit is $42711 +in.representative_income 42712 Representative total house income in the dwelling unit is $42712 +in.representative_income 42716 Representative total house income in the dwelling unit is $42716 +in.representative_income 42717 Representative total house income in the dwelling unit is $42717 +in.representative_income 42723 Representative total house income in the dwelling unit is $42723 +in.representative_income 42724 Representative total house income in the dwelling unit is $42724 +in.representative_income 42729 Representative total house income in the dwelling unit is $42729 +in.representative_income 42733 Representative total house income in the dwelling unit is $42733 +in.representative_income 42739 Representative total house income in the dwelling unit is $42739 +in.representative_income 42743 Representative total house income in the dwelling unit is $42743 +in.representative_income 42744 Representative total house income in the dwelling unit is $42744 +in.representative_income 42745 Representative total house income in the dwelling unit is $42745 +in.representative_income 42754 Representative total house income in the dwelling unit is $42754 +in.representative_income 42764 Representative total house income in the dwelling unit is $42764 +in.representative_income 42766 Representative total house income in the dwelling unit is $42766 +in.representative_income 42770 Representative total house income in the dwelling unit is $42770 +in.representative_income 42776 Representative total house income in the dwelling unit is $42776 +in.representative_income 42777 Representative total house income in the dwelling unit is $42777 +in.representative_income 42780 Representative total house income in the dwelling unit is $42780 +in.representative_income 42787 Representative total house income in the dwelling unit is $42787 +in.representative_income 42790 Representative total house income in the dwelling unit is $42790 +in.representative_income 42791 Representative total house income in the dwelling unit is $42791 +in.representative_income 42797 Representative total house income in the dwelling unit is $42797 +in.representative_income 42800 Representative total house income in the dwelling unit is $42800 +in.representative_income 42805 Representative total house income in the dwelling unit is $42805 +in.representative_income 42807 Representative total house income in the dwelling unit is $42807 +in.representative_income 42808 Representative total house income in the dwelling unit is $42808 +in.representative_income 42810 Representative total house income in the dwelling unit is $42810 +in.representative_income 42815 Representative total house income in the dwelling unit is $42815 +in.representative_income 42816 Representative total house income in the dwelling unit is $42816 +in.representative_income 42817 Representative total house income in the dwelling unit is $42817 +in.representative_income 42819 Representative total house income in the dwelling unit is $42819 +in.representative_income 42824 Representative total house income in the dwelling unit is $42824 +in.representative_income 42826 Representative total house income in the dwelling unit is $42826 +in.representative_income 42828 Representative total house income in the dwelling unit is $42828 +in.representative_income 42830 Representative total house income in the dwelling unit is $42830 +in.representative_income 42831 Representative total house income in the dwelling unit is $42831 +in.representative_income 42838 Representative total house income in the dwelling unit is $42838 +in.representative_income 42840 Representative total house income in the dwelling unit is $42840 +in.representative_income 42841 Representative total house income in the dwelling unit is $42841 +in.representative_income 42849 Representative total house income in the dwelling unit is $42849 +in.representative_income 42852 Representative total house income in the dwelling unit is $42852 +in.representative_income 42859 Representative total house income in the dwelling unit is $42859 +in.representative_income 42862 Representative total house income in the dwelling unit is $42862 +in.representative_income 42867 Representative total house income in the dwelling unit is $42867 +in.representative_income 42869 Representative total house income in the dwelling unit is $42869 +in.representative_income 42871 Representative total house income in the dwelling unit is $42871 +in.representative_income 42872 Representative total house income in the dwelling unit is $42872 +in.representative_income 42873 Representative total house income in the dwelling unit is $42873 +in.representative_income 42874 Representative total house income in the dwelling unit is $42874 +in.representative_income 42880 Representative total house income in the dwelling unit is $42880 +in.representative_income 42887 Representative total house income in the dwelling unit is $42887 +in.representative_income 42891 Representative total house income in the dwelling unit is $42891 +in.representative_income 42894 Representative total house income in the dwelling unit is $42894 +in.representative_income 42902 Representative total house income in the dwelling unit is $42902 +in.representative_income 42909 Representative total house income in the dwelling unit is $42909 +in.representative_income 42912 Representative total house income in the dwelling unit is $42912 +in.representative_income 42916 Representative total house income in the dwelling unit is $42916 +in.representative_income 42917 Representative total house income in the dwelling unit is $42917 +in.representative_income 42918 Representative total house income in the dwelling unit is $42918 +in.representative_income 42923 Representative total house income in the dwelling unit is $42923 +in.representative_income 42924 Representative total house income in the dwelling unit is $42924 +in.representative_income 42927 Representative total house income in the dwelling unit is $42927 +in.representative_income 42929 Representative total house income in the dwelling unit is $42929 +in.representative_income 42931 Representative total house income in the dwelling unit is $42931 +in.representative_income 42933 Representative total house income in the dwelling unit is $42933 +in.representative_income 42938 Representative total house income in the dwelling unit is $42938 +in.representative_income 42939 Representative total house income in the dwelling unit is $42939 +in.representative_income 42942 Representative total house income in the dwelling unit is $42942 +in.representative_income 42948 Representative total house income in the dwelling unit is $42948 +in.representative_income 42949 Representative total house income in the dwelling unit is $42949 +in.representative_income 42951 Representative total house income in the dwelling unit is $42951 +in.representative_income 42954 Representative total house income in the dwelling unit is $42954 +in.representative_income 42960 Representative total house income in the dwelling unit is $42960 +in.representative_income 42961 Representative total house income in the dwelling unit is $42961 +in.representative_income 42964 Representative total house income in the dwelling unit is $42964 +in.representative_income 42970 Representative total house income in the dwelling unit is $42970 +in.representative_income 42971 Representative total house income in the dwelling unit is $42971 +in.representative_income 42972 Representative total house income in the dwelling unit is $42972 +in.representative_income 42976 Representative total house income in the dwelling unit is $42976 +in.representative_income 42978 Representative total house income in the dwelling unit is $42978 +in.representative_income 42981 Representative total house income in the dwelling unit is $42981 +in.representative_income 42983 Representative total house income in the dwelling unit is $42983 +in.representative_income 42986 Representative total house income in the dwelling unit is $42986 +in.representative_income 42992 Representative total house income in the dwelling unit is $42992 +in.representative_income 43002 Representative total house income in the dwelling unit is $43002 +in.representative_income 43009 Representative total house income in the dwelling unit is $43009 +in.representative_income 43012 Representative total house income in the dwelling unit is $43012 +in.representative_income 43017 Representative total house income in the dwelling unit is $43017 +in.representative_income 43022 Representative total house income in the dwelling unit is $43022 +in.representative_income 43024 Representative total house income in the dwelling unit is $43024 +in.representative_income 43026 Representative total house income in the dwelling unit is $43026 +in.representative_income 43028 Representative total house income in the dwelling unit is $43028 +in.representative_income 43030 Representative total house income in the dwelling unit is $43030 +in.representative_income 43032 Representative total house income in the dwelling unit is $43032 +in.representative_income 43034 Representative total house income in the dwelling unit is $43034 +in.representative_income 43042 Representative total house income in the dwelling unit is $43042 +in.representative_income 43045 Representative total house income in the dwelling unit is $43045 +in.representative_income 43049 Representative total house income in the dwelling unit is $43049 +in.representative_income 43053 Representative total house income in the dwelling unit is $43053 +in.representative_income 43062 Representative total house income in the dwelling unit is $43062 +in.representative_income 43066 Representative total house income in the dwelling unit is $43066 +in.representative_income 43067 Representative total house income in the dwelling unit is $43067 +in.representative_income 43071 Representative total house income in the dwelling unit is $43071 +in.representative_income 43073 Representative total house income in the dwelling unit is $43073 +in.representative_income 43077 Representative total house income in the dwelling unit is $43077 +in.representative_income 43078 Representative total house income in the dwelling unit is $43078 +in.representative_income 43081 Representative total house income in the dwelling unit is $43081 +in.representative_income 43089 Representative total house income in the dwelling unit is $43089 +in.representative_income 43098 Representative total house income in the dwelling unit is $43098 +in.representative_income 43099 Representative total house income in the dwelling unit is $43099 +in.representative_income 43103 Representative total house income in the dwelling unit is $43103 +in.representative_income 43110 Representative total house income in the dwelling unit is $43110 +in.representative_income 43114 Representative total house income in the dwelling unit is $43114 +in.representative_income 43121 Representative total house income in the dwelling unit is $43121 +in.representative_income 43126 Representative total house income in the dwelling unit is $43126 +in.representative_income 43128 Representative total house income in the dwelling unit is $43128 +in.representative_income 43130 Representative total house income in the dwelling unit is $43130 +in.representative_income 43131 Representative total house income in the dwelling unit is $43131 +in.representative_income 43132 Representative total house income in the dwelling unit is $43132 +in.representative_income 43133 Representative total house income in the dwelling unit is $43133 +in.representative_income 43141 Representative total house income in the dwelling unit is $43141 +in.representative_income 43143 Representative total house income in the dwelling unit is $43143 +in.representative_income 43152 Representative total house income in the dwelling unit is $43152 +in.representative_income 43153 Representative total house income in the dwelling unit is $43153 +in.representative_income 43157 Representative total house income in the dwelling unit is $43157 +in.representative_income 43163 Representative total house income in the dwelling unit is $43163 +in.representative_income 43166 Representative total house income in the dwelling unit is $43166 +in.representative_income 43174 Representative total house income in the dwelling unit is $43174 +in.representative_income 43185 Representative total house income in the dwelling unit is $43185 +in.representative_income 43197 Representative total house income in the dwelling unit is $43197 +in.representative_income 43198 Representative total house income in the dwelling unit is $43198 +in.representative_income 43206 Representative total house income in the dwelling unit is $43206 +in.representative_income 43208 Representative total house income in the dwelling unit is $43208 +in.representative_income 43218 Representative total house income in the dwelling unit is $43218 +in.representative_income 43219 Representative total house income in the dwelling unit is $43219 +in.representative_income 43220 Representative total house income in the dwelling unit is $43220 +in.representative_income 43224 Representative total house income in the dwelling unit is $43224 +in.representative_income 43228 Representative total house income in the dwelling unit is $43228 +in.representative_income 43234 Representative total house income in the dwelling unit is $43234 +in.representative_income 43238 Representative total house income in the dwelling unit is $43238 +in.representative_income 43239 Representative total house income in the dwelling unit is $43239 +in.representative_income 43250 Representative total house income in the dwelling unit is $43250 +in.representative_income 43252 Representative total house income in the dwelling unit is $43252 +in.representative_income 43260 Representative total house income in the dwelling unit is $43260 +in.representative_income 43269 Representative total house income in the dwelling unit is $43269 +in.representative_income 43270 Representative total house income in the dwelling unit is $43270 +in.representative_income 43271 Representative total house income in the dwelling unit is $43271 +in.representative_income 43273 Representative total house income in the dwelling unit is $43273 +in.representative_income 43280 Representative total house income in the dwelling unit is $43280 +in.representative_income 43284 Representative total house income in the dwelling unit is $43284 +in.representative_income 43292 Representative total house income in the dwelling unit is $43292 +in.representative_income 43293 Representative total house income in the dwelling unit is $43293 +in.representative_income 43301 Representative total house income in the dwelling unit is $43301 +in.representative_income 43306 Representative total house income in the dwelling unit is $43306 +in.representative_income 43313 Representative total house income in the dwelling unit is $43313 +in.representative_income 43315 Representative total house income in the dwelling unit is $43315 +in.representative_income 43321 Representative total house income in the dwelling unit is $43321 +in.representative_income 43324 Representative total house income in the dwelling unit is $43324 +in.representative_income 43327 Representative total house income in the dwelling unit is $43327 +in.representative_income 43331 Representative total house income in the dwelling unit is $43331 +in.representative_income 43335 Representative total house income in the dwelling unit is $43335 +in.representative_income 43337 Representative total house income in the dwelling unit is $43337 +in.representative_income 43344 Representative total house income in the dwelling unit is $43344 +in.representative_income 43345 Representative total house income in the dwelling unit is $43345 +in.representative_income 43351 Representative total house income in the dwelling unit is $43351 +in.representative_income 43368 Representative total house income in the dwelling unit is $43368 +in.representative_income 43373 Representative total house income in the dwelling unit is $43373 +in.representative_income 43376 Representative total house income in the dwelling unit is $43376 +in.representative_income 43381 Representative total house income in the dwelling unit is $43381 +in.representative_income 43383 Representative total house income in the dwelling unit is $43383 +in.representative_income 43386 Representative total house income in the dwelling unit is $43386 +in.representative_income 43389 Representative total house income in the dwelling unit is $43389 +in.representative_income 43407 Representative total house income in the dwelling unit is $43407 +in.representative_income 43416 Representative total house income in the dwelling unit is $43416 +in.representative_income 43424 Representative total house income in the dwelling unit is $43424 +in.representative_income 43435 Representative total house income in the dwelling unit is $43435 +in.representative_income 43436 Representative total house income in the dwelling unit is $43436 +in.representative_income 43439 Representative total house income in the dwelling unit is $43439 +in.representative_income 43442 Representative total house income in the dwelling unit is $43442 +in.representative_income 43445 Representative total house income in the dwelling unit is $43445 +in.representative_income 43446 Representative total house income in the dwelling unit is $43446 +in.representative_income 43450 Representative total house income in the dwelling unit is $43450 +in.representative_income 43455 Representative total house income in the dwelling unit is $43455 +in.representative_income 43456 Representative total house income in the dwelling unit is $43456 +in.representative_income 43457 Representative total house income in the dwelling unit is $43457 +in.representative_income 43460 Representative total house income in the dwelling unit is $43460 +in.representative_income 43463 Representative total house income in the dwelling unit is $43463 +in.representative_income 43465 Representative total house income in the dwelling unit is $43465 +in.representative_income 43467 Representative total house income in the dwelling unit is $43467 +in.representative_income 43474 Representative total house income in the dwelling unit is $43474 +in.representative_income 43475 Representative total house income in the dwelling unit is $43475 +in.representative_income 43476 Representative total house income in the dwelling unit is $43476 +in.representative_income 43477 Representative total house income in the dwelling unit is $43477 +in.representative_income 43480 Representative total house income in the dwelling unit is $43480 +in.representative_income 43487 Representative total house income in the dwelling unit is $43487 +in.representative_income 43489 Representative total house income in the dwelling unit is $43489 +in.representative_income 43498 Representative total house income in the dwelling unit is $43498 +in.representative_income 43500 Representative total house income in the dwelling unit is $43500 +in.representative_income 43506 Representative total house income in the dwelling unit is $43506 +in.representative_income 43507 Representative total house income in the dwelling unit is $43507 +in.representative_income 43528 Representative total house income in the dwelling unit is $43528 +in.representative_income 43529 Representative total house income in the dwelling unit is $43529 +in.representative_income 43532 Representative total house income in the dwelling unit is $43532 +in.representative_income 43537 Representative total house income in the dwelling unit is $43537 +in.representative_income 43543 Representative total house income in the dwelling unit is $43543 +in.representative_income 43545 Representative total house income in the dwelling unit is $43545 +in.representative_income 43548 Representative total house income in the dwelling unit is $43548 +in.representative_income 43549 Representative total house income in the dwelling unit is $43549 +in.representative_income 43555 Representative total house income in the dwelling unit is $43555 +in.representative_income 43568 Representative total house income in the dwelling unit is $43568 +in.representative_income 43571 Representative total house income in the dwelling unit is $43571 +in.representative_income 43579 Representative total house income in the dwelling unit is $43579 +in.representative_income 43582 Representative total house income in the dwelling unit is $43582 +in.representative_income 43583 Representative total house income in the dwelling unit is $43583 +in.representative_income 43586 Representative total house income in the dwelling unit is $43586 +in.representative_income 43587 Representative total house income in the dwelling unit is $43587 +in.representative_income 43588 Representative total house income in the dwelling unit is $43588 +in.representative_income 43597 Representative total house income in the dwelling unit is $43597 +in.representative_income 43600 Representative total house income in the dwelling unit is $43600 +in.representative_income 43603 Representative total house income in the dwelling unit is $43603 +in.representative_income 43610 Representative total house income in the dwelling unit is $43610 +in.representative_income 43614 Representative total house income in the dwelling unit is $43614 +in.representative_income 43616 Representative total house income in the dwelling unit is $43616 +in.representative_income 43630 Representative total house income in the dwelling unit is $43630 +in.representative_income 43638 Representative total house income in the dwelling unit is $43638 +in.representative_income 43640 Representative total house income in the dwelling unit is $43640 +in.representative_income 43648 Representative total house income in the dwelling unit is $43648 +in.representative_income 43651 Representative total house income in the dwelling unit is $43651 +in.representative_income 43657 Representative total house income in the dwelling unit is $43657 +in.representative_income 43661 Representative total house income in the dwelling unit is $43661 +in.representative_income 43671 Representative total house income in the dwelling unit is $43671 +in.representative_income 43689 Representative total house income in the dwelling unit is $43689 +in.representative_income 43694 Representative total house income in the dwelling unit is $43694 +in.representative_income 43703 Representative total house income in the dwelling unit is $43703 +in.representative_income 43711 Representative total house income in the dwelling unit is $43711 +in.representative_income 43713 Representative total house income in the dwelling unit is $43713 +in.representative_income 43732 Representative total house income in the dwelling unit is $43732 +in.representative_income 43733 Representative total house income in the dwelling unit is $43733 +in.representative_income 43739 Representative total house income in the dwelling unit is $43739 +in.representative_income 43755 Representative total house income in the dwelling unit is $43755 +in.representative_income 43759 Representative total house income in the dwelling unit is $43759 +in.representative_income 43766 Representative total house income in the dwelling unit is $43766 +in.representative_income 43770 Representative total house income in the dwelling unit is $43770 +in.representative_income 43775 Representative total house income in the dwelling unit is $43775 +in.representative_income 43776 Representative total house income in the dwelling unit is $43776 +in.representative_income 43782 Representative total house income in the dwelling unit is $43782 +in.representative_income 43795 Representative total house income in the dwelling unit is $43795 +in.representative_income 43797 Representative total house income in the dwelling unit is $43797 +in.representative_income 43798 Representative total house income in the dwelling unit is $43798 +in.representative_income 43810 Representative total house income in the dwelling unit is $43810 +in.representative_income 43818 Representative total house income in the dwelling unit is $43818 +in.representative_income 43820 Representative total house income in the dwelling unit is $43820 +in.representative_income 43824 Representative total house income in the dwelling unit is $43824 +in.representative_income 43827 Representative total house income in the dwelling unit is $43827 +in.representative_income 43834 Representative total house income in the dwelling unit is $43834 +in.representative_income 43837 Representative total house income in the dwelling unit is $43837 +in.representative_income 43840 Representative total house income in the dwelling unit is $43840 +in.representative_income 43845 Representative total house income in the dwelling unit is $43845 +in.representative_income 43852 Representative total house income in the dwelling unit is $43852 +in.representative_income 43865 Representative total house income in the dwelling unit is $43865 +in.representative_income 43867 Representative total house income in the dwelling unit is $43867 +in.representative_income 43871 Representative total house income in the dwelling unit is $43871 +in.representative_income 43877 Representative total house income in the dwelling unit is $43877 +in.representative_income 43889 Representative total house income in the dwelling unit is $43889 +in.representative_income 43904 Representative total house income in the dwelling unit is $43904 +in.representative_income 43914 Representative total house income in the dwelling unit is $43914 +in.representative_income 43921 Representative total house income in the dwelling unit is $43921 +in.representative_income 43931 Representative total house income in the dwelling unit is $43931 +in.representative_income 43940 Representative total house income in the dwelling unit is $43940 +in.representative_income 43941 Representative total house income in the dwelling unit is $43941 +in.representative_income 43947 Representative total house income in the dwelling unit is $43947 +in.representative_income 43958 Representative total house income in the dwelling unit is $43958 +in.representative_income 43976 Representative total house income in the dwelling unit is $43976 +in.representative_income 43977 Representative total house income in the dwelling unit is $43977 +in.representative_income 43994 Representative total house income in the dwelling unit is $43994 +in.representative_income 44005 Representative total house income in the dwelling unit is $44005 +in.representative_income 44011 Representative total house income in the dwelling unit is $44011 +in.representative_income 44019 Representative total house income in the dwelling unit is $44019 +in.representative_income 44022 Representative total house income in the dwelling unit is $44022 +in.representative_income 44030 Representative total house income in the dwelling unit is $44030 +in.representative_income 44033 Representative total house income in the dwelling unit is $44033 +in.representative_income 44042 Representative total house income in the dwelling unit is $44042 +in.representative_income 44043 Representative total house income in the dwelling unit is $44043 +in.representative_income 44065 Representative total house income in the dwelling unit is $44065 +in.representative_income 44074 Representative total house income in the dwelling unit is $44074 +in.representative_income 44080 Representative total house income in the dwelling unit is $44080 +in.representative_income 44083 Representative total house income in the dwelling unit is $44083 +in.representative_income 44084 Representative total house income in the dwelling unit is $44084 +in.representative_income 44088 Representative total house income in the dwelling unit is $44088 +in.representative_income 44093 Representative total house income in the dwelling unit is $44093 +in.representative_income 44112 Representative total house income in the dwelling unit is $44112 +in.representative_income 44116 Representative total house income in the dwelling unit is $44116 +in.representative_income 44119 Representative total house income in the dwelling unit is $44119 +in.representative_income 44129 Representative total house income in the dwelling unit is $44129 +in.representative_income 44135 Representative total house income in the dwelling unit is $44135 +in.representative_income 44143 Representative total house income in the dwelling unit is $44143 +in.representative_income 44145 Representative total house income in the dwelling unit is $44145 +in.representative_income 44146 Representative total house income in the dwelling unit is $44146 +in.representative_income 44154 Representative total house income in the dwelling unit is $44154 +in.representative_income 44167 Representative total house income in the dwelling unit is $44167 +in.representative_income 44179 Representative total house income in the dwelling unit is $44179 +in.representative_income 44187 Representative total house income in the dwelling unit is $44187 +in.representative_income 44188 Representative total house income in the dwelling unit is $44188 +in.representative_income 44191 Representative total house income in the dwelling unit is $44191 +in.representative_income 44194 Representative total house income in the dwelling unit is $44194 +in.representative_income 44198 Representative total house income in the dwelling unit is $44198 +in.representative_income 44209 Representative total house income in the dwelling unit is $44209 +in.representative_income 44226 Representative total house income in the dwelling unit is $44226 +in.representative_income 44237 Representative total house income in the dwelling unit is $44237 +in.representative_income 44244 Representative total house income in the dwelling unit is $44244 +in.representative_income 44249 Representative total house income in the dwelling unit is $44249 +in.representative_income 44258 Representative total house income in the dwelling unit is $44258 +in.representative_income 44262 Representative total house income in the dwelling unit is $44262 +in.representative_income 44270 Representative total house income in the dwelling unit is $44270 +in.representative_income 44279 Representative total house income in the dwelling unit is $44279 +in.representative_income 44280 Representative total house income in the dwelling unit is $44280 +in.representative_income 44293 Representative total house income in the dwelling unit is $44293 +in.representative_income 44296 Representative total house income in the dwelling unit is $44296 +in.representative_income 44297 Representative total house income in the dwelling unit is $44297 +in.representative_income 44299 Representative total house income in the dwelling unit is $44299 +in.representative_income 44314 Representative total house income in the dwelling unit is $44314 +in.representative_income 44316 Representative total house income in the dwelling unit is $44316 +in.representative_income 44334 Representative total house income in the dwelling unit is $44334 +in.representative_income 44335 Representative total house income in the dwelling unit is $44335 +in.representative_income 44342 Representative total house income in the dwelling unit is $44342 +in.representative_income 44343 Representative total house income in the dwelling unit is $44343 +in.representative_income 44344 Representative total house income in the dwelling unit is $44344 +in.representative_income 44345 Representative total house income in the dwelling unit is $44345 +in.representative_income 44348 Representative total house income in the dwelling unit is $44348 +in.representative_income 44352 Representative total house income in the dwelling unit is $44352 +in.representative_income 44355 Representative total house income in the dwelling unit is $44355 +in.representative_income 44357 Representative total house income in the dwelling unit is $44357 +in.representative_income 44376 Representative total house income in the dwelling unit is $44376 +in.representative_income 44378 Representative total house income in the dwelling unit is $44378 +in.representative_income 44388 Representative total house income in the dwelling unit is $44388 +in.representative_income 44394 Representative total house income in the dwelling unit is $44394 +in.representative_income 44396 Representative total house income in the dwelling unit is $44396 +in.representative_income 44399 Representative total house income in the dwelling unit is $44399 +in.representative_income 44404 Representative total house income in the dwelling unit is $44404 +in.representative_income 44407 Representative total house income in the dwelling unit is $44407 +in.representative_income 44420 Representative total house income in the dwelling unit is $44420 +in.representative_income 44441 Representative total house income in the dwelling unit is $44441 +in.representative_income 44446 Representative total house income in the dwelling unit is $44446 +in.representative_income 44452 Representative total house income in the dwelling unit is $44452 +in.representative_income 44456 Representative total house income in the dwelling unit is $44456 +in.representative_income 44461 Representative total house income in the dwelling unit is $44461 +in.representative_income 44473 Representative total house income in the dwelling unit is $44473 +in.representative_income 44474 Representative total house income in the dwelling unit is $44474 +in.representative_income 44486 Representative total house income in the dwelling unit is $44486 +in.representative_income 44487 Representative total house income in the dwelling unit is $44487 +in.representative_income 44494 Representative total house income in the dwelling unit is $44494 +in.representative_income 44495 Representative total house income in the dwelling unit is $44495 +in.representative_income 44504 Representative total house income in the dwelling unit is $44504 +in.representative_income 44507 Representative total house income in the dwelling unit is $44507 +in.representative_income 44515 Representative total house income in the dwelling unit is $44515 +in.representative_income 44520 Representative total house income in the dwelling unit is $44520 +in.representative_income 44537 Representative total house income in the dwelling unit is $44537 +in.representative_income 44547 Representative total house income in the dwelling unit is $44547 +in.representative_income 44548 Representative total house income in the dwelling unit is $44548 +in.representative_income 44556 Representative total house income in the dwelling unit is $44556 +in.representative_income 44557 Representative total house income in the dwelling unit is $44557 +in.representative_income 44559 Representative total house income in the dwelling unit is $44559 +in.representative_income 44569 Representative total house income in the dwelling unit is $44569 +in.representative_income 44578 Representative total house income in the dwelling unit is $44578 +in.representative_income 44580 Representative total house income in the dwelling unit is $44580 +in.representative_income 44608 Representative total house income in the dwelling unit is $44608 +in.representative_income 44610 Representative total house income in the dwelling unit is $44610 +in.representative_income 44612 Representative total house income in the dwelling unit is $44612 +in.representative_income 44623 Representative total house income in the dwelling unit is $44623 +in.representative_income 44648 Representative total house income in the dwelling unit is $44648 +in.representative_income 44655 Representative total house income in the dwelling unit is $44655 +in.representative_income 44662 Representative total house income in the dwelling unit is $44662 +in.representative_income 44666 Representative total house income in the dwelling unit is $44666 +in.representative_income 44699 Representative total house income in the dwelling unit is $44699 +in.representative_income 44715 Representative total house income in the dwelling unit is $44715 +in.representative_income 44731 Representative total house income in the dwelling unit is $44731 +in.representative_income 44749 Representative total house income in the dwelling unit is $44749 +in.representative_income 44763 Representative total house income in the dwelling unit is $44763 +in.representative_income 44764 Representative total house income in the dwelling unit is $44764 +in.representative_income 44765 Representative total house income in the dwelling unit is $44765 +in.representative_income 44768 Representative total house income in the dwelling unit is $44768 +in.representative_income 44797 Representative total house income in the dwelling unit is $44797 +in.representative_income 44800 Representative total house income in the dwelling unit is $44800 +in.representative_income 44821 Representative total house income in the dwelling unit is $44821 +in.representative_income 44840 Representative total house income in the dwelling unit is $44840 +in.representative_income 44850 Representative total house income in the dwelling unit is $44850 +in.representative_income 44868 Representative total house income in the dwelling unit is $44868 +in.representative_income 44870 Representative total house income in the dwelling unit is $44870 +in.representative_income 44872 Representative total house income in the dwelling unit is $44872 +in.representative_income 44909 Representative total house income in the dwelling unit is $44909 +in.representative_income 44926 Representative total house income in the dwelling unit is $44926 +in.representative_income 44931 Representative total house income in the dwelling unit is $44931 +in.representative_income 44948 Representative total house income in the dwelling unit is $44948 +in.representative_income 44951 Representative total house income in the dwelling unit is $44951 +in.representative_income 44969 Representative total house income in the dwelling unit is $44969 +in.representative_income 44971 Representative total house income in the dwelling unit is $44971 +in.representative_income 44978 Representative total house income in the dwelling unit is $44978 +in.representative_income 44990 Representative total house income in the dwelling unit is $44990 +in.representative_income 44991 Representative total house income in the dwelling unit is $44991 +in.representative_income 45002 Representative total house income in the dwelling unit is $45002 +in.representative_income 45031 Representative total house income in the dwelling unit is $45031 +in.representative_income 45052 Representative total house income in the dwelling unit is $45052 +in.representative_income 45056 Representative total house income in the dwelling unit is $45056 +in.representative_income 45075 Representative total house income in the dwelling unit is $45075 +in.representative_income 45085 Representative total house income in the dwelling unit is $45085 +in.representative_income 45119 Representative total house income in the dwelling unit is $45119 +in.representative_income 45137 Representative total house income in the dwelling unit is $45137 +in.representative_income 45153 Representative total house income in the dwelling unit is $45153 +in.representative_income 45164 Representative total house income in the dwelling unit is $45164 +in.representative_income 45171 Representative total house income in the dwelling unit is $45171 +in.representative_income 45174 Representative total house income in the dwelling unit is $45174 +in.representative_income 45178 Representative total house income in the dwelling unit is $45178 +in.representative_income 45192 Representative total house income in the dwelling unit is $45192 +in.representative_income 45196 Representative total house income in the dwelling unit is $45196 +in.representative_income 45235 Representative total house income in the dwelling unit is $45235 +in.representative_income 45239 Representative total house income in the dwelling unit is $45239 +in.representative_income 45243 Representative total house income in the dwelling unit is $45243 +in.representative_income 45250 Representative total house income in the dwelling unit is $45250 +in.representative_income 45253 Representative total house income in the dwelling unit is $45253 +in.representative_income 45254 Representative total house income in the dwelling unit is $45254 +in.representative_income 45272 Representative total house income in the dwelling unit is $45272 +in.representative_income 45278 Representative total house income in the dwelling unit is $45278 +in.representative_income 45280 Representative total house income in the dwelling unit is $45280 +in.representative_income 45292 Representative total house income in the dwelling unit is $45292 +in.representative_income 45299 Representative total house income in the dwelling unit is $45299 +in.representative_income 45325 Representative total house income in the dwelling unit is $45325 +in.representative_income 45340 Representative total house income in the dwelling unit is $45340 +in.representative_income 45348 Representative total house income in the dwelling unit is $45348 +in.representative_income 45356 Representative total house income in the dwelling unit is $45356 +in.representative_income 45369 Representative total house income in the dwelling unit is $45369 +in.representative_income 45376 Representative total house income in the dwelling unit is $45376 +in.representative_income 45379 Representative total house income in the dwelling unit is $45379 +in.representative_income 45384 Representative total house income in the dwelling unit is $45384 +in.representative_income 45390 Representative total house income in the dwelling unit is $45390 +in.representative_income 45400 Representative total house income in the dwelling unit is $45400 +in.representative_income 45401 Representative total house income in the dwelling unit is $45401 +in.representative_income 45407 Representative total house income in the dwelling unit is $45407 +in.representative_income 45415 Representative total house income in the dwelling unit is $45415 +in.representative_income 45418 Representative total house income in the dwelling unit is $45418 +in.representative_income 45420 Representative total house income in the dwelling unit is $45420 +in.representative_income 45423 Representative total house income in the dwelling unit is $45423 +in.representative_income 45454 Representative total house income in the dwelling unit is $45454 +in.representative_income 45455 Representative total house income in the dwelling unit is $45455 +in.representative_income 45457 Representative total house income in the dwelling unit is $45457 +in.representative_income 45466 Representative total house income in the dwelling unit is $45466 +in.representative_income 45467 Representative total house income in the dwelling unit is $45467 +in.representative_income 45477 Representative total house income in the dwelling unit is $45477 +in.representative_income 45485 Representative total house income in the dwelling unit is $45485 +in.representative_income 45487 Representative total house income in the dwelling unit is $45487 +in.representative_income 45493 Representative total house income in the dwelling unit is $45493 +in.representative_income 45514 Representative total house income in the dwelling unit is $45514 +in.representative_income 45525 Representative total house income in the dwelling unit is $45525 +in.representative_income 45557 Representative total house income in the dwelling unit is $45557 +in.representative_income 45558 Representative total house income in the dwelling unit is $45558 +in.representative_income 45559 Representative total house income in the dwelling unit is $45559 +in.representative_income 45568 Representative total house income in the dwelling unit is $45568 +in.representative_income 45580 Representative total house income in the dwelling unit is $45580 +in.representative_income 45589 Representative total house income in the dwelling unit is $45589 +in.representative_income 45590 Representative total house income in the dwelling unit is $45590 +in.representative_income 45596 Representative total house income in the dwelling unit is $45596 +in.representative_income 45598 Representative total house income in the dwelling unit is $45598 +in.representative_income 45601 Representative total house income in the dwelling unit is $45601 +in.representative_income 45608 Representative total house income in the dwelling unit is $45608 +in.representative_income 45610 Representative total house income in the dwelling unit is $45610 +in.representative_income 45622 Representative total house income in the dwelling unit is $45622 +in.representative_income 45638 Representative total house income in the dwelling unit is $45638 +in.representative_income 45639 Representative total house income in the dwelling unit is $45639 +in.representative_income 45640 Representative total house income in the dwelling unit is $45640 +in.representative_income 45643 Representative total house income in the dwelling unit is $45643 +in.representative_income 45648 Representative total house income in the dwelling unit is $45648 +in.representative_income 45650 Representative total house income in the dwelling unit is $45650 +in.representative_income 45653 Representative total house income in the dwelling unit is $45653 +in.representative_income 45659 Representative total house income in the dwelling unit is $45659 +in.representative_income 45664 Representative total house income in the dwelling unit is $45664 +in.representative_income 45694 Representative total house income in the dwelling unit is $45694 +in.representative_income 45704 Representative total house income in the dwelling unit is $45704 +in.representative_income 45709 Representative total house income in the dwelling unit is $45709 +in.representative_income 45729 Representative total house income in the dwelling unit is $45729 +in.representative_income 45746 Representative total house income in the dwelling unit is $45746 +in.representative_income 45749 Representative total house income in the dwelling unit is $45749 +in.representative_income 45760 Representative total house income in the dwelling unit is $45760 +in.representative_income 45762 Representative total house income in the dwelling unit is $45762 +in.representative_income 45769 Representative total house income in the dwelling unit is $45769 +in.representative_income 45770 Representative total house income in the dwelling unit is $45770 +in.representative_income 45796 Representative total house income in the dwelling unit is $45796 +in.representative_income 45797 Representative total house income in the dwelling unit is $45797 +in.representative_income 45810 Representative total house income in the dwelling unit is $45810 +in.representative_income 45812 Representative total house income in the dwelling unit is $45812 +in.representative_income 45836 Representative total house income in the dwelling unit is $45836 +in.representative_income 45843 Representative total house income in the dwelling unit is $45843 +in.representative_income 45848 Representative total house income in the dwelling unit is $45848 +in.representative_income 45861 Representative total house income in the dwelling unit is $45861 +in.representative_income 45865 Representative total house income in the dwelling unit is $45865 +in.representative_income 45866 Representative total house income in the dwelling unit is $45866 +in.representative_income 45876 Representative total house income in the dwelling unit is $45876 +in.representative_income 45880 Representative total house income in the dwelling unit is $45880 +in.representative_income 45898 Representative total house income in the dwelling unit is $45898 +in.representative_income 45899 Representative total house income in the dwelling unit is $45899 +in.representative_income 45901 Representative total house income in the dwelling unit is $45901 +in.representative_income 45917 Representative total house income in the dwelling unit is $45917 +in.representative_income 45920 Representative total house income in the dwelling unit is $45920 +in.representative_income 45921 Representative total house income in the dwelling unit is $45921 +in.representative_income 45931 Representative total house income in the dwelling unit is $45931 +in.representative_income 45944 Representative total house income in the dwelling unit is $45944 +in.representative_income 45951 Representative total house income in the dwelling unit is $45951 +in.representative_income 45952 Representative total house income in the dwelling unit is $45952 +in.representative_income 45954 Representative total house income in the dwelling unit is $45954 +in.representative_income 45962 Representative total house income in the dwelling unit is $45962 +in.representative_income 45965 Representative total house income in the dwelling unit is $45965 +in.representative_income 45981 Representative total house income in the dwelling unit is $45981 +in.representative_income 45985 Representative total house income in the dwelling unit is $45985 +in.representative_income 45990 Representative total house income in the dwelling unit is $45990 +in.representative_income 45992 Representative total house income in the dwelling unit is $45992 +in.representative_income 45997 Representative total house income in the dwelling unit is $45997 +in.representative_income 46002 Representative total house income in the dwelling unit is $46002 +in.representative_income 46003 Representative total house income in the dwelling unit is $46003 +in.representative_income 46017 Representative total house income in the dwelling unit is $46017 +in.representative_income 46022 Representative total house income in the dwelling unit is $46022 +in.representative_income 46023 Representative total house income in the dwelling unit is $46023 +in.representative_income 46028 Representative total house income in the dwelling unit is $46028 +in.representative_income 46039 Representative total house income in the dwelling unit is $46039 +in.representative_income 46044 Representative total house income in the dwelling unit is $46044 +in.representative_income 46047 Representative total house income in the dwelling unit is $46047 +in.representative_income 46051 Representative total house income in the dwelling unit is $46051 +in.representative_income 46053 Representative total house income in the dwelling unit is $46053 +in.representative_income 46060 Representative total house income in the dwelling unit is $46060 +in.representative_income 46063 Representative total house income in the dwelling unit is $46063 +in.representative_income 46065 Representative total house income in the dwelling unit is $46065 +in.representative_income 46075 Representative total house income in the dwelling unit is $46075 +in.representative_income 46083 Representative total house income in the dwelling unit is $46083 +in.representative_income 46086 Representative total house income in the dwelling unit is $46086 +in.representative_income 46097 Representative total house income in the dwelling unit is $46097 +in.representative_income 46106 Representative total house income in the dwelling unit is $46106 +in.representative_income 46113 Representative total house income in the dwelling unit is $46113 +in.representative_income 46116 Representative total house income in the dwelling unit is $46116 +in.representative_income 46126 Representative total house income in the dwelling unit is $46126 +in.representative_income 46136 Representative total house income in the dwelling unit is $46136 +in.representative_income 46139 Representative total house income in the dwelling unit is $46139 +in.representative_income 46143 Representative total house income in the dwelling unit is $46143 +in.representative_income 46147 Representative total house income in the dwelling unit is $46147 +in.representative_income 46157 Representative total house income in the dwelling unit is $46157 +in.representative_income 46158 Representative total house income in the dwelling unit is $46158 +in.representative_income 46159 Representative total house income in the dwelling unit is $46159 +in.representative_income 46164 Representative total house income in the dwelling unit is $46164 +in.representative_income 46168 Representative total house income in the dwelling unit is $46168 +in.representative_income 46169 Representative total house income in the dwelling unit is $46169 +in.representative_income 46184 Representative total house income in the dwelling unit is $46184 +in.representative_income 46190 Representative total house income in the dwelling unit is $46190 +in.representative_income 46191 Representative total house income in the dwelling unit is $46191 +in.representative_income 46192 Representative total house income in the dwelling unit is $46192 +in.representative_income 46199 Representative total house income in the dwelling unit is $46199 +in.representative_income 46209 Representative total house income in the dwelling unit is $46209 +in.representative_income 46214 Representative total house income in the dwelling unit is $46214 +in.representative_income 46220 Representative total house income in the dwelling unit is $46220 +in.representative_income 46222 Representative total house income in the dwelling unit is $46222 +in.representative_income 46223 Representative total house income in the dwelling unit is $46223 +in.representative_income 46229 Representative total house income in the dwelling unit is $46229 +in.representative_income 46233 Representative total house income in the dwelling unit is $46233 +in.representative_income 46240 Representative total house income in the dwelling unit is $46240 +in.representative_income 46244 Representative total house income in the dwelling unit is $46244 +in.representative_income 46245 Representative total house income in the dwelling unit is $46245 +in.representative_income 46248 Representative total house income in the dwelling unit is $46248 +in.representative_income 46255 Representative total house income in the dwelling unit is $46255 +in.representative_income 46265 Representative total house income in the dwelling unit is $46265 +in.representative_income 46266 Representative total house income in the dwelling unit is $46266 +in.representative_income 46279 Representative total house income in the dwelling unit is $46279 +in.representative_income 46281 Representative total house income in the dwelling unit is $46281 +in.representative_income 46288 Representative total house income in the dwelling unit is $46288 +in.representative_income 46297 Representative total house income in the dwelling unit is $46297 +in.representative_income 46298 Representative total house income in the dwelling unit is $46298 +in.representative_income 46302 Representative total house income in the dwelling unit is $46302 +in.representative_income 46306 Representative total house income in the dwelling unit is $46306 +in.representative_income 46308 Representative total house income in the dwelling unit is $46308 +in.representative_income 46312 Representative total house income in the dwelling unit is $46312 +in.representative_income 46319 Representative total house income in the dwelling unit is $46319 +in.representative_income 46335 Representative total house income in the dwelling unit is $46335 +in.representative_income 46340 Representative total house income in the dwelling unit is $46340 +in.representative_income 46352 Representative total house income in the dwelling unit is $46352 +in.representative_income 46353 Representative total house income in the dwelling unit is $46353 +in.representative_income 46357 Representative total house income in the dwelling unit is $46357 +in.representative_income 46363 Representative total house income in the dwelling unit is $46363 +in.representative_income 46366 Representative total house income in the dwelling unit is $46366 +in.representative_income 46373 Representative total house income in the dwelling unit is $46373 +in.representative_income 46375 Representative total house income in the dwelling unit is $46375 +in.representative_income 46377 Representative total house income in the dwelling unit is $46377 +in.representative_income 46381 Representative total house income in the dwelling unit is $46381 +in.representative_income 46383 Representative total house income in the dwelling unit is $46383 +in.representative_income 46385 Representative total house income in the dwelling unit is $46385 +in.representative_income 46394 Representative total house income in the dwelling unit is $46394 +in.representative_income 46402 Representative total house income in the dwelling unit is $46402 +in.representative_income 46415 Representative total house income in the dwelling unit is $46415 +in.representative_income 46418 Representative total house income in the dwelling unit is $46418 +in.representative_income 46425 Representative total house income in the dwelling unit is $46425 +in.representative_income 46432 Representative total house income in the dwelling unit is $46432 +in.representative_income 46434 Representative total house income in the dwelling unit is $46434 +in.representative_income 46439 Representative total house income in the dwelling unit is $46439 +in.representative_income 46444 Representative total house income in the dwelling unit is $46444 +in.representative_income 46445 Representative total house income in the dwelling unit is $46445 +in.representative_income 46455 Representative total house income in the dwelling unit is $46455 +in.representative_income 46457 Representative total house income in the dwelling unit is $46457 +in.representative_income 46461 Representative total house income in the dwelling unit is $46461 +in.representative_income 46462 Representative total house income in the dwelling unit is $46462 +in.representative_income 46467 Representative total house income in the dwelling unit is $46467 +in.representative_income 46480 Representative total house income in the dwelling unit is $46480 +in.representative_income 46482 Representative total house income in the dwelling unit is $46482 +in.representative_income 46485 Representative total house income in the dwelling unit is $46485 +in.representative_income 46498 Representative total house income in the dwelling unit is $46498 +in.representative_income 46499 Representative total house income in the dwelling unit is $46499 +in.representative_income 46501 Representative total house income in the dwelling unit is $46501 +in.representative_income 46502 Representative total house income in the dwelling unit is $46502 +in.representative_income 46507 Representative total house income in the dwelling unit is $46507 +in.representative_income 46508 Representative total house income in the dwelling unit is $46508 +in.representative_income 46514 Representative total house income in the dwelling unit is $46514 +in.representative_income 46517 Representative total house income in the dwelling unit is $46517 +in.representative_income 46518 Representative total house income in the dwelling unit is $46518 +in.representative_income 46519 Representative total house income in the dwelling unit is $46519 +in.representative_income 46534 Representative total house income in the dwelling unit is $46534 +in.representative_income 46536 Representative total house income in the dwelling unit is $46536 +in.representative_income 46539 Representative total house income in the dwelling unit is $46539 +in.representative_income 46540 Representative total house income in the dwelling unit is $46540 +in.representative_income 46544 Representative total house income in the dwelling unit is $46544 +in.representative_income 46545 Representative total house income in the dwelling unit is $46545 +in.representative_income 46550 Representative total house income in the dwelling unit is $46550 +in.representative_income 46553 Representative total house income in the dwelling unit is $46553 +in.representative_income 46556 Representative total house income in the dwelling unit is $46556 +in.representative_income 46567 Representative total house income in the dwelling unit is $46567 +in.representative_income 46568 Representative total house income in the dwelling unit is $46568 +in.representative_income 46570 Representative total house income in the dwelling unit is $46570 +in.representative_income 46571 Representative total house income in the dwelling unit is $46571 +in.representative_income 46578 Representative total house income in the dwelling unit is $46578 +in.representative_income 46588 Representative total house income in the dwelling unit is $46588 +in.representative_income 46590 Representative total house income in the dwelling unit is $46590 +in.representative_income 46601 Representative total house income in the dwelling unit is $46601 +in.representative_income 46603 Representative total house income in the dwelling unit is $46603 +in.representative_income 46614 Representative total house income in the dwelling unit is $46614 +in.representative_income 46616 Representative total house income in the dwelling unit is $46616 +in.representative_income 46618 Representative total house income in the dwelling unit is $46618 +in.representative_income 46620 Representative total house income in the dwelling unit is $46620 +in.representative_income 46622 Representative total house income in the dwelling unit is $46622 +in.representative_income 46628 Representative total house income in the dwelling unit is $46628 +in.representative_income 46630 Representative total house income in the dwelling unit is $46630 +in.representative_income 46633 Representative total house income in the dwelling unit is $46633 +in.representative_income 46639 Representative total house income in the dwelling unit is $46639 +in.representative_income 46656 Representative total house income in the dwelling unit is $46656 +in.representative_income 46666 Representative total house income in the dwelling unit is $46666 +in.representative_income 46669 Representative total house income in the dwelling unit is $46669 +in.representative_income 46676 Representative total house income in the dwelling unit is $46676 +in.representative_income 46677 Representative total house income in the dwelling unit is $46677 +in.representative_income 46678 Representative total house income in the dwelling unit is $46678 +in.representative_income 46685 Representative total house income in the dwelling unit is $46685 +in.representative_income 46694 Representative total house income in the dwelling unit is $46694 +in.representative_income 46695 Representative total house income in the dwelling unit is $46695 +in.representative_income 46699 Representative total house income in the dwelling unit is $46699 +in.representative_income 46715 Representative total house income in the dwelling unit is $46715 +in.representative_income 46718 Representative total house income in the dwelling unit is $46718 +in.representative_income 46719 Representative total house income in the dwelling unit is $46719 +in.representative_income 46720 Representative total house income in the dwelling unit is $46720 +in.representative_income 46723 Representative total house income in the dwelling unit is $46723 +in.representative_income 46725 Representative total house income in the dwelling unit is $46725 +in.representative_income 46729 Representative total house income in the dwelling unit is $46729 +in.representative_income 46730 Representative total house income in the dwelling unit is $46730 +in.representative_income 46734 Representative total house income in the dwelling unit is $46734 +in.representative_income 46735 Representative total house income in the dwelling unit is $46735 +in.representative_income 46741 Representative total house income in the dwelling unit is $46741 +in.representative_income 46743 Representative total house income in the dwelling unit is $46743 +in.representative_income 46744 Representative total house income in the dwelling unit is $46744 +in.representative_income 46745 Representative total house income in the dwelling unit is $46745 +in.representative_income 46747 Representative total house income in the dwelling unit is $46747 +in.representative_income 46750 Representative total house income in the dwelling unit is $46750 +in.representative_income 46755 Representative total house income in the dwelling unit is $46755 +in.representative_income 46759 Representative total house income in the dwelling unit is $46759 +in.representative_income 46763 Representative total house income in the dwelling unit is $46763 +in.representative_income 46766 Representative total house income in the dwelling unit is $46766 +in.representative_income 46770 Representative total house income in the dwelling unit is $46770 +in.representative_income 46777 Representative total house income in the dwelling unit is $46777 +in.representative_income 46781 Representative total house income in the dwelling unit is $46781 +in.representative_income 46783 Representative total house income in the dwelling unit is $46783 +in.representative_income 46784 Representative total house income in the dwelling unit is $46784 +in.representative_income 46785 Representative total house income in the dwelling unit is $46785 +in.representative_income 46797 Representative total house income in the dwelling unit is $46797 +in.representative_income 46802 Representative total house income in the dwelling unit is $46802 +in.representative_income 46804 Representative total house income in the dwelling unit is $46804 +in.representative_income 46806 Representative total house income in the dwelling unit is $46806 +in.representative_income 46808 Representative total house income in the dwelling unit is $46808 +in.representative_income 46814 Representative total house income in the dwelling unit is $46814 +in.representative_income 46817 Representative total house income in the dwelling unit is $46817 +in.representative_income 46823 Representative total house income in the dwelling unit is $46823 +in.representative_income 46824 Representative total house income in the dwelling unit is $46824 +in.representative_income 46828 Representative total house income in the dwelling unit is $46828 +in.representative_income 46830 Representative total house income in the dwelling unit is $46830 +in.representative_income 46839 Representative total house income in the dwelling unit is $46839 +in.representative_income 46840 Representative total house income in the dwelling unit is $46840 +in.representative_income 46845 Representative total house income in the dwelling unit is $46845 +in.representative_income 46849 Representative total house income in the dwelling unit is $46849 +in.representative_income 46851 Representative total house income in the dwelling unit is $46851 +in.representative_income 46856 Representative total house income in the dwelling unit is $46856 +in.representative_income 46859 Representative total house income in the dwelling unit is $46859 +in.representative_income 46860 Representative total house income in the dwelling unit is $46860 +in.representative_income 46869 Representative total house income in the dwelling unit is $46869 +in.representative_income 46871 Representative total house income in the dwelling unit is $46871 +in.representative_income 46879 Representative total house income in the dwelling unit is $46879 +in.representative_income 46881 Representative total house income in the dwelling unit is $46881 +in.representative_income 46890 Representative total house income in the dwelling unit is $46890 +in.representative_income 46892 Representative total house income in the dwelling unit is $46892 +in.representative_income 46900 Representative total house income in the dwelling unit is $46900 +in.representative_income 46901 Representative total house income in the dwelling unit is $46901 +in.representative_income 46903 Representative total house income in the dwelling unit is $46903 +in.representative_income 46909 Representative total house income in the dwelling unit is $46909 +in.representative_income 46911 Representative total house income in the dwelling unit is $46911 +in.representative_income 46914 Representative total house income in the dwelling unit is $46914 +in.representative_income 46920 Representative total house income in the dwelling unit is $46920 +in.representative_income 46921 Representative total house income in the dwelling unit is $46921 +in.representative_income 46925 Representative total house income in the dwelling unit is $46925 +in.representative_income 46930 Representative total house income in the dwelling unit is $46930 +in.representative_income 46931 Representative total house income in the dwelling unit is $46931 +in.representative_income 46941 Representative total house income in the dwelling unit is $46941 +in.representative_income 46942 Representative total house income in the dwelling unit is $46942 +in.representative_income 46952 Representative total house income in the dwelling unit is $46952 +in.representative_income 46957 Representative total house income in the dwelling unit is $46957 +in.representative_income 46959 Representative total house income in the dwelling unit is $46959 +in.representative_income 46962 Representative total house income in the dwelling unit is $46962 +in.representative_income 46972 Representative total house income in the dwelling unit is $46972 +in.representative_income 46982 Representative total house income in the dwelling unit is $46982 +in.representative_income 46983 Representative total house income in the dwelling unit is $46983 +in.representative_income 46985 Representative total house income in the dwelling unit is $46985 +in.representative_income 46993 Representative total house income in the dwelling unit is $46993 +in.representative_income 47000 Representative total house income in the dwelling unit is $47000 +in.representative_income 47001 Representative total house income in the dwelling unit is $47001 +in.representative_income 47004 Representative total house income in the dwelling unit is $47004 +in.representative_income 47011 Representative total house income in the dwelling unit is $47011 +in.representative_income 47012 Representative total house income in the dwelling unit is $47012 +in.representative_income 47014 Representative total house income in the dwelling unit is $47014 +in.representative_income 47017 Representative total house income in the dwelling unit is $47017 +in.representative_income 47024 Representative total house income in the dwelling unit is $47024 +in.representative_income 47028 Representative total house income in the dwelling unit is $47028 +in.representative_income 47034 Representative total house income in the dwelling unit is $47034 +in.representative_income 47035 Representative total house income in the dwelling unit is $47035 +in.representative_income 47043 Representative total house income in the dwelling unit is $47043 +in.representative_income 47044 Representative total house income in the dwelling unit is $47044 +in.representative_income 47046 Representative total house income in the dwelling unit is $47046 +in.representative_income 47055 Representative total house income in the dwelling unit is $47055 +in.representative_income 47058 Representative total house income in the dwelling unit is $47058 +in.representative_income 47060 Representative total house income in the dwelling unit is $47060 +in.representative_income 47065 Representative total house income in the dwelling unit is $47065 +in.representative_income 47071 Representative total house income in the dwelling unit is $47071 +in.representative_income 47073 Representative total house income in the dwelling unit is $47073 +in.representative_income 47076 Representative total house income in the dwelling unit is $47076 +in.representative_income 47086 Representative total house income in the dwelling unit is $47086 +in.representative_income 47088 Representative total house income in the dwelling unit is $47088 +in.representative_income 47091 Representative total house income in the dwelling unit is $47091 +in.representative_income 47093 Representative total house income in the dwelling unit is $47093 +in.representative_income 47097 Representative total house income in the dwelling unit is $47097 +in.representative_income 47103 Representative total house income in the dwelling unit is $47103 +in.representative_income 47105 Representative total house income in the dwelling unit is $47105 +in.representative_income 47108 Representative total house income in the dwelling unit is $47108 +in.representative_income 47109 Representative total house income in the dwelling unit is $47109 +in.representative_income 47117 Representative total house income in the dwelling unit is $47117 +in.representative_income 47119 Representative total house income in the dwelling unit is $47119 +in.representative_income 47123 Representative total house income in the dwelling unit is $47123 +in.representative_income 47125 Representative total house income in the dwelling unit is $47125 +in.representative_income 47130 Representative total house income in the dwelling unit is $47130 +in.representative_income 47137 Representative total house income in the dwelling unit is $47137 +in.representative_income 47141 Representative total house income in the dwelling unit is $47141 +in.representative_income 47146 Representative total house income in the dwelling unit is $47146 +in.representative_income 47152 Representative total house income in the dwelling unit is $47152 +in.representative_income 47156 Representative total house income in the dwelling unit is $47156 +in.representative_income 47157 Representative total house income in the dwelling unit is $47157 +in.representative_income 47162 Representative total house income in the dwelling unit is $47162 +in.representative_income 47163 Representative total house income in the dwelling unit is $47163 +in.representative_income 47164 Representative total house income in the dwelling unit is $47164 +in.representative_income 47167 Representative total house income in the dwelling unit is $47167 +in.representative_income 47169 Representative total house income in the dwelling unit is $47169 +in.representative_income 47170 Representative total house income in the dwelling unit is $47170 +in.representative_income 47171 Representative total house income in the dwelling unit is $47171 +in.representative_income 47173 Representative total house income in the dwelling unit is $47173 +in.representative_income 47174 Representative total house income in the dwelling unit is $47174 +in.representative_income 47178 Representative total house income in the dwelling unit is $47178 +in.representative_income 47179 Representative total house income in the dwelling unit is $47179 +in.representative_income 47183 Representative total house income in the dwelling unit is $47183 +in.representative_income 47185 Representative total house income in the dwelling unit is $47185 +in.representative_income 47189 Representative total house income in the dwelling unit is $47189 +in.representative_income 47193 Representative total house income in the dwelling unit is $47193 +in.representative_income 47194 Representative total house income in the dwelling unit is $47194 +in.representative_income 47195 Representative total house income in the dwelling unit is $47195 +in.representative_income 47206 Representative total house income in the dwelling unit is $47206 +in.representative_income 47209 Representative total house income in the dwelling unit is $47209 +in.representative_income 47211 Representative total house income in the dwelling unit is $47211 +in.representative_income 47214 Representative total house income in the dwelling unit is $47214 +in.representative_income 47217 Representative total house income in the dwelling unit is $47217 +in.representative_income 47219 Representative total house income in the dwelling unit is $47219 +in.representative_income 47224 Representative total house income in the dwelling unit is $47224 +in.representative_income 47226 Representative total house income in the dwelling unit is $47226 +in.representative_income 47228 Representative total house income in the dwelling unit is $47228 +in.representative_income 47232 Representative total house income in the dwelling unit is $47232 +in.representative_income 47234 Representative total house income in the dwelling unit is $47234 +in.representative_income 47236 Representative total house income in the dwelling unit is $47236 +in.representative_income 47241 Representative total house income in the dwelling unit is $47241 +in.representative_income 47242 Representative total house income in the dwelling unit is $47242 +in.representative_income 47243 Representative total house income in the dwelling unit is $47243 +in.representative_income 47247 Representative total house income in the dwelling unit is $47247 +in.representative_income 47251 Representative total house income in the dwelling unit is $47251 +in.representative_income 47253 Representative total house income in the dwelling unit is $47253 +in.representative_income 47255 Representative total house income in the dwelling unit is $47255 +in.representative_income 47260 Representative total house income in the dwelling unit is $47260 +in.representative_income 47264 Representative total house income in the dwelling unit is $47264 +in.representative_income 47271 Representative total house income in the dwelling unit is $47271 +in.representative_income 47272 Representative total house income in the dwelling unit is $47272 +in.representative_income 47275 Representative total house income in the dwelling unit is $47275 +in.representative_income 47280 Representative total house income in the dwelling unit is $47280 +in.representative_income 47285 Representative total house income in the dwelling unit is $47285 +in.representative_income 47286 Representative total house income in the dwelling unit is $47286 +in.representative_income 47288 Representative total house income in the dwelling unit is $47288 +in.representative_income 47292 Representative total house income in the dwelling unit is $47292 +in.representative_income 47295 Representative total house income in the dwelling unit is $47295 +in.representative_income 47296 Representative total house income in the dwelling unit is $47296 +in.representative_income 47299 Representative total house income in the dwelling unit is $47299 +in.representative_income 47303 Representative total house income in the dwelling unit is $47303 +in.representative_income 47305 Representative total house income in the dwelling unit is $47305 +in.representative_income 47307 Representative total house income in the dwelling unit is $47307 +in.representative_income 47314 Representative total house income in the dwelling unit is $47314 +in.representative_income 47317 Representative total house income in the dwelling unit is $47317 +in.representative_income 47323 Representative total house income in the dwelling unit is $47323 +in.representative_income 47325 Representative total house income in the dwelling unit is $47325 +in.representative_income 47327 Representative total house income in the dwelling unit is $47327 +in.representative_income 47328 Representative total house income in the dwelling unit is $47328 +in.representative_income 47331 Representative total house income in the dwelling unit is $47331 +in.representative_income 47334 Representative total house income in the dwelling unit is $47334 +in.representative_income 47336 Representative total house income in the dwelling unit is $47336 +in.representative_income 47340 Representative total house income in the dwelling unit is $47340 +in.representative_income 47344 Representative total house income in the dwelling unit is $47344 +in.representative_income 47346 Representative total house income in the dwelling unit is $47346 +in.representative_income 47350 Representative total house income in the dwelling unit is $47350 +in.representative_income 47352 Representative total house income in the dwelling unit is $47352 +in.representative_income 47356 Representative total house income in the dwelling unit is $47356 +in.representative_income 47361 Representative total house income in the dwelling unit is $47361 +in.representative_income 47364 Representative total house income in the dwelling unit is $47364 +in.representative_income 47366 Representative total house income in the dwelling unit is $47366 +in.representative_income 47368 Representative total house income in the dwelling unit is $47368 +in.representative_income 47373 Representative total house income in the dwelling unit is $47373 +in.representative_income 47376 Representative total house income in the dwelling unit is $47376 +in.representative_income 47379 Representative total house income in the dwelling unit is $47379 +in.representative_income 47380 Representative total house income in the dwelling unit is $47380 +in.representative_income 47385 Representative total house income in the dwelling unit is $47385 +in.representative_income 47386 Representative total house income in the dwelling unit is $47386 +in.representative_income 47388 Representative total house income in the dwelling unit is $47388 +in.representative_income 47396 Representative total house income in the dwelling unit is $47396 +in.representative_income 47399 Representative total house income in the dwelling unit is $47399 +in.representative_income 47400 Representative total house income in the dwelling unit is $47400 +in.representative_income 47405 Representative total house income in the dwelling unit is $47405 +in.representative_income 47406 Representative total house income in the dwelling unit is $47406 +in.representative_income 47414 Representative total house income in the dwelling unit is $47414 +in.representative_income 47415 Representative total house income in the dwelling unit is $47415 +in.representative_income 47416 Representative total house income in the dwelling unit is $47416 +in.representative_income 47426 Representative total house income in the dwelling unit is $47426 +in.representative_income 47433 Representative total house income in the dwelling unit is $47433 +in.representative_income 47436 Representative total house income in the dwelling unit is $47436 +in.representative_income 47444 Representative total house income in the dwelling unit is $47444 +in.representative_income 47446 Representative total house income in the dwelling unit is $47446 +in.representative_income 47447 Representative total house income in the dwelling unit is $47447 +in.representative_income 47450 Representative total house income in the dwelling unit is $47450 +in.representative_income 47452 Representative total house income in the dwelling unit is $47452 +in.representative_income 47454 Representative total house income in the dwelling unit is $47454 +in.representative_income 47457 Representative total house income in the dwelling unit is $47457 +in.representative_income 47458 Representative total house income in the dwelling unit is $47458 +in.representative_income 47462 Representative total house income in the dwelling unit is $47462 +in.representative_income 47465 Representative total house income in the dwelling unit is $47465 +in.representative_income 47467 Representative total house income in the dwelling unit is $47467 +in.representative_income 47468 Representative total house income in the dwelling unit is $47468 +in.representative_income 47471 Representative total house income in the dwelling unit is $47471 +in.representative_income 47476 Representative total house income in the dwelling unit is $47476 +in.representative_income 47477 Representative total house income in the dwelling unit is $47477 +in.representative_income 47478 Representative total house income in the dwelling unit is $47478 +in.representative_income 47479 Representative total house income in the dwelling unit is $47479 +in.representative_income 47480 Representative total house income in the dwelling unit is $47480 +in.representative_income 47487 Representative total house income in the dwelling unit is $47487 +in.representative_income 47488 Representative total house income in the dwelling unit is $47488 +in.representative_income 47494 Representative total house income in the dwelling unit is $47494 +in.representative_income 47497 Representative total house income in the dwelling unit is $47497 +in.representative_income 47499 Representative total house income in the dwelling unit is $47499 +in.representative_income 47500 Representative total house income in the dwelling unit is $47500 +in.representative_income 47503 Representative total house income in the dwelling unit is $47503 +in.representative_income 47506 Representative total house income in the dwelling unit is $47506 +in.representative_income 47507 Representative total house income in the dwelling unit is $47507 +in.representative_income 47510 Representative total house income in the dwelling unit is $47510 +in.representative_income 47515 Representative total house income in the dwelling unit is $47515 +in.representative_income 47517 Representative total house income in the dwelling unit is $47517 +in.representative_income 47519 Representative total house income in the dwelling unit is $47519 +in.representative_income 47521 Representative total house income in the dwelling unit is $47521 +in.representative_income 47522 Representative total house income in the dwelling unit is $47522 +in.representative_income 47524 Representative total house income in the dwelling unit is $47524 +in.representative_income 47527 Representative total house income in the dwelling unit is $47527 +in.representative_income 47531 Representative total house income in the dwelling unit is $47531 +in.representative_income 47532 Representative total house income in the dwelling unit is $47532 +in.representative_income 47541 Representative total house income in the dwelling unit is $47541 +in.representative_income 47542 Representative total house income in the dwelling unit is $47542 +in.representative_income 47545 Representative total house income in the dwelling unit is $47545 +in.representative_income 47548 Representative total house income in the dwelling unit is $47548 +in.representative_income 47550 Representative total house income in the dwelling unit is $47550 +in.representative_income 47551 Representative total house income in the dwelling unit is $47551 +in.representative_income 47554 Representative total house income in the dwelling unit is $47554 +in.representative_income 47560 Representative total house income in the dwelling unit is $47560 +in.representative_income 47562 Representative total house income in the dwelling unit is $47562 +in.representative_income 47563 Representative total house income in the dwelling unit is $47563 +in.representative_income 47570 Representative total house income in the dwelling unit is $47570 +in.representative_income 47571 Representative total house income in the dwelling unit is $47571 +in.representative_income 47573 Representative total house income in the dwelling unit is $47573 +in.representative_income 47574 Representative total house income in the dwelling unit is $47574 +in.representative_income 47575 Representative total house income in the dwelling unit is $47575 +in.representative_income 47578 Representative total house income in the dwelling unit is $47578 +in.representative_income 47584 Representative total house income in the dwelling unit is $47584 +in.representative_income 47591 Representative total house income in the dwelling unit is $47591 +in.representative_income 47595 Representative total house income in the dwelling unit is $47595 +in.representative_income 47599 Representative total house income in the dwelling unit is $47599 +in.representative_income 47601 Representative total house income in the dwelling unit is $47601 +in.representative_income 47605 Representative total house income in the dwelling unit is $47605 +in.representative_income 47608 Representative total house income in the dwelling unit is $47608 +in.representative_income 47616 Representative total house income in the dwelling unit is $47616 +in.representative_income 47618 Representative total house income in the dwelling unit is $47618 +in.representative_income 47626 Representative total house income in the dwelling unit is $47626 +in.representative_income 47627 Representative total house income in the dwelling unit is $47627 +in.representative_income 47631 Representative total house income in the dwelling unit is $47631 +in.representative_income 47633 Representative total house income in the dwelling unit is $47633 +in.representative_income 47638 Representative total house income in the dwelling unit is $47638 +in.representative_income 47640 Representative total house income in the dwelling unit is $47640 +in.representative_income 47643 Representative total house income in the dwelling unit is $47643 +in.representative_income 47649 Representative total house income in the dwelling unit is $47649 +in.representative_income 47653 Representative total house income in the dwelling unit is $47653 +in.representative_income 47657 Representative total house income in the dwelling unit is $47657 +in.representative_income 47659 Representative total house income in the dwelling unit is $47659 +in.representative_income 47661 Representative total house income in the dwelling unit is $47661 +in.representative_income 47662 Representative total house income in the dwelling unit is $47662 +in.representative_income 47663 Representative total house income in the dwelling unit is $47663 +in.representative_income 47665 Representative total house income in the dwelling unit is $47665 +in.representative_income 47666 Representative total house income in the dwelling unit is $47666 +in.representative_income 47668 Representative total house income in the dwelling unit is $47668 +in.representative_income 47670 Representative total house income in the dwelling unit is $47670 +in.representative_income 47672 Representative total house income in the dwelling unit is $47672 +in.representative_income 47673 Representative total house income in the dwelling unit is $47673 +in.representative_income 47678 Representative total house income in the dwelling unit is $47678 +in.representative_income 47679 Representative total house income in the dwelling unit is $47679 +in.representative_income 47681 Representative total house income in the dwelling unit is $47681 +in.representative_income 47683 Representative total house income in the dwelling unit is $47683 +in.representative_income 47689 Representative total house income in the dwelling unit is $47689 +in.representative_income 47693 Representative total house income in the dwelling unit is $47693 +in.representative_income 47695 Representative total house income in the dwelling unit is $47695 +in.representative_income 47699 Representative total house income in the dwelling unit is $47699 +in.representative_income 47703 Representative total house income in the dwelling unit is $47703 +in.representative_income 47704 Representative total house income in the dwelling unit is $47704 +in.representative_income 47705 Representative total house income in the dwelling unit is $47705 +in.representative_income 47709 Representative total house income in the dwelling unit is $47709 +in.representative_income 47710 Representative total house income in the dwelling unit is $47710 +in.representative_income 47712 Representative total house income in the dwelling unit is $47712 +in.representative_income 47713 Representative total house income in the dwelling unit is $47713 +in.representative_income 47714 Representative total house income in the dwelling unit is $47714 +in.representative_income 47721 Representative total house income in the dwelling unit is $47721 +in.representative_income 47725 Representative total house income in the dwelling unit is $47725 +in.representative_income 47729 Representative total house income in the dwelling unit is $47729 +in.representative_income 47731 Representative total house income in the dwelling unit is $47731 +in.representative_income 47735 Representative total house income in the dwelling unit is $47735 +in.representative_income 47742 Representative total house income in the dwelling unit is $47742 +in.representative_income 47756 Representative total house income in the dwelling unit is $47756 +in.representative_income 47758 Representative total house income in the dwelling unit is $47758 +in.representative_income 47760 Representative total house income in the dwelling unit is $47760 +in.representative_income 47761 Representative total house income in the dwelling unit is $47761 +in.representative_income 47764 Representative total house income in the dwelling unit is $47764 +in.representative_income 47765 Representative total house income in the dwelling unit is $47765 +in.representative_income 47767 Representative total house income in the dwelling unit is $47767 +in.representative_income 47769 Representative total house income in the dwelling unit is $47769 +in.representative_income 47770 Representative total house income in the dwelling unit is $47770 +in.representative_income 47774 Representative total house income in the dwelling unit is $47774 +in.representative_income 47777 Representative total house income in the dwelling unit is $47777 +in.representative_income 47778 Representative total house income in the dwelling unit is $47778 +in.representative_income 47780 Representative total house income in the dwelling unit is $47780 +in.representative_income 47784 Representative total house income in the dwelling unit is $47784 +in.representative_income 47787 Representative total house income in the dwelling unit is $47787 +in.representative_income 47789 Representative total house income in the dwelling unit is $47789 +in.representative_income 47790 Representative total house income in the dwelling unit is $47790 +in.representative_income 47798 Representative total house income in the dwelling unit is $47798 +in.representative_income 47808 Representative total house income in the dwelling unit is $47808 +in.representative_income 47816 Representative total house income in the dwelling unit is $47816 +in.representative_income 47818 Representative total house income in the dwelling unit is $47818 +in.representative_income 47821 Representative total house income in the dwelling unit is $47821 +in.representative_income 47822 Representative total house income in the dwelling unit is $47822 +in.representative_income 47825 Representative total house income in the dwelling unit is $47825 +in.representative_income 47826 Representative total house income in the dwelling unit is $47826 +in.representative_income 47829 Representative total house income in the dwelling unit is $47829 +in.representative_income 47833 Representative total house income in the dwelling unit is $47833 +in.representative_income 47838 Representative total house income in the dwelling unit is $47838 +in.representative_income 47840 Representative total house income in the dwelling unit is $47840 +in.representative_income 47852 Representative total house income in the dwelling unit is $47852 +in.representative_income 47854 Representative total house income in the dwelling unit is $47854 +in.representative_income 47858 Representative total house income in the dwelling unit is $47858 +in.representative_income 47860 Representative total house income in the dwelling unit is $47860 +in.representative_income 47862 Representative total house income in the dwelling unit is $47862 +in.representative_income 47864 Representative total house income in the dwelling unit is $47864 +in.representative_income 47869 Representative total house income in the dwelling unit is $47869 +in.representative_income 47870 Representative total house income in the dwelling unit is $47870 +in.representative_income 47872 Representative total house income in the dwelling unit is $47872 +in.representative_income 47876 Representative total house income in the dwelling unit is $47876 +in.representative_income 47879 Representative total house income in the dwelling unit is $47879 +in.representative_income 47880 Representative total house income in the dwelling unit is $47880 +in.representative_income 47881 Representative total house income in the dwelling unit is $47881 +in.representative_income 47890 Representative total house income in the dwelling unit is $47890 +in.representative_income 47891 Representative total house income in the dwelling unit is $47891 +in.representative_income 47897 Representative total house income in the dwelling unit is $47897 +in.representative_income 47899 Representative total house income in the dwelling unit is $47899 +in.representative_income 47900 Representative total house income in the dwelling unit is $47900 +in.representative_income 47901 Representative total house income in the dwelling unit is $47901 +in.representative_income 47911 Representative total house income in the dwelling unit is $47911 +in.representative_income 47918 Representative total house income in the dwelling unit is $47918 +in.representative_income 47919 Representative total house income in the dwelling unit is $47919 +in.representative_income 47920 Representative total house income in the dwelling unit is $47920 +in.representative_income 47930 Representative total house income in the dwelling unit is $47930 +in.representative_income 47931 Representative total house income in the dwelling unit is $47931 +in.representative_income 47941 Representative total house income in the dwelling unit is $47941 +in.representative_income 47942 Representative total house income in the dwelling unit is $47942 +in.representative_income 47944 Representative total house income in the dwelling unit is $47944 +in.representative_income 47951 Representative total house income in the dwelling unit is $47951 +in.representative_income 47953 Representative total house income in the dwelling unit is $47953 +in.representative_income 47962 Representative total house income in the dwelling unit is $47962 +in.representative_income 47967 Representative total house income in the dwelling unit is $47967 +in.representative_income 47973 Representative total house income in the dwelling unit is $47973 +in.representative_income 47974 Representative total house income in the dwelling unit is $47974 +in.representative_income 47977 Representative total house income in the dwelling unit is $47977 +in.representative_income 47979 Representative total house income in the dwelling unit is $47979 +in.representative_income 47982 Representative total house income in the dwelling unit is $47982 +in.representative_income 47983 Representative total house income in the dwelling unit is $47983 +in.representative_income 47984 Representative total house income in the dwelling unit is $47984 +in.representative_income 47985 Representative total house income in the dwelling unit is $47985 +in.representative_income 47992 Representative total house income in the dwelling unit is $47992 +in.representative_income 47993 Representative total house income in the dwelling unit is $47993 +in.representative_income 48014 Representative total house income in the dwelling unit is $48014 +in.representative_income 48016 Representative total house income in the dwelling unit is $48016 +in.representative_income 48019 Representative total house income in the dwelling unit is $48019 +in.representative_income 48026 Representative total house income in the dwelling unit is $48026 +in.representative_income 48027 Representative total house income in the dwelling unit is $48027 +in.representative_income 48030 Representative total house income in the dwelling unit is $48030 +in.representative_income 48032 Representative total house income in the dwelling unit is $48032 +in.representative_income 48033 Representative total house income in the dwelling unit is $48033 +in.representative_income 48034 Representative total house income in the dwelling unit is $48034 +in.representative_income 48037 Representative total house income in the dwelling unit is $48037 +in.representative_income 48038 Representative total house income in the dwelling unit is $48038 +in.representative_income 48039 Representative total house income in the dwelling unit is $48039 +in.representative_income 48042 Representative total house income in the dwelling unit is $48042 +in.representative_income 48048 Representative total house income in the dwelling unit is $48048 +in.representative_income 48049 Representative total house income in the dwelling unit is $48049 +in.representative_income 48058 Representative total house income in the dwelling unit is $48058 +in.representative_income 48060 Representative total house income in the dwelling unit is $48060 +in.representative_income 48065 Representative total house income in the dwelling unit is $48065 +in.representative_income 48069 Representative total house income in the dwelling unit is $48069 +in.representative_income 48081 Representative total house income in the dwelling unit is $48081 +in.representative_income 48083 Representative total house income in the dwelling unit is $48083 +in.representative_income 48085 Representative total house income in the dwelling unit is $48085 +in.representative_income 48090 Representative total house income in the dwelling unit is $48090 +in.representative_income 48097 Representative total house income in the dwelling unit is $48097 +in.representative_income 48101 Representative total house income in the dwelling unit is $48101 +in.representative_income 48133 Representative total house income in the dwelling unit is $48133 +in.representative_income 48139 Representative total house income in the dwelling unit is $48139 +in.representative_income 48143 Representative total house income in the dwelling unit is $48143 +in.representative_income 48153 Representative total house income in the dwelling unit is $48153 +in.representative_income 48155 Representative total house income in the dwelling unit is $48155 +in.representative_income 48157 Representative total house income in the dwelling unit is $48157 +in.representative_income 48164 Representative total house income in the dwelling unit is $48164 +in.representative_income 48168 Representative total house income in the dwelling unit is $48168 +in.representative_income 48169 Representative total house income in the dwelling unit is $48169 +in.representative_income 48184 Representative total house income in the dwelling unit is $48184 +in.representative_income 48189 Representative total house income in the dwelling unit is $48189 +in.representative_income 48195 Representative total house income in the dwelling unit is $48195 +in.representative_income 48197 Representative total house income in the dwelling unit is $48197 +in.representative_income 48198 Representative total house income in the dwelling unit is $48198 +in.representative_income 48206 Representative total house income in the dwelling unit is $48206 +in.representative_income 48209 Representative total house income in the dwelling unit is $48209 +in.representative_income 48217 Representative total house income in the dwelling unit is $48217 +in.representative_income 48220 Representative total house income in the dwelling unit is $48220 +in.representative_income 48227 Representative total house income in the dwelling unit is $48227 +in.representative_income 48232 Representative total house income in the dwelling unit is $48232 +in.representative_income 48234 Representative total house income in the dwelling unit is $48234 +in.representative_income 48237 Representative total house income in the dwelling unit is $48237 +in.representative_income 48238 Representative total house income in the dwelling unit is $48238 +in.representative_income 48243 Representative total house income in the dwelling unit is $48243 +in.representative_income 48245 Representative total house income in the dwelling unit is $48245 +in.representative_income 48248 Representative total house income in the dwelling unit is $48248 +in.representative_income 48251 Representative total house income in the dwelling unit is $48251 +in.representative_income 48254 Representative total house income in the dwelling unit is $48254 +in.representative_income 48259 Representative total house income in the dwelling unit is $48259 +in.representative_income 48262 Representative total house income in the dwelling unit is $48262 +in.representative_income 48264 Representative total house income in the dwelling unit is $48264 +in.representative_income 48265 Representative total house income in the dwelling unit is $48265 +in.representative_income 48272 Representative total house income in the dwelling unit is $48272 +in.representative_income 48285 Representative total house income in the dwelling unit is $48285 +in.representative_income 48292 Representative total house income in the dwelling unit is $48292 +in.representative_income 48295 Representative total house income in the dwelling unit is $48295 +in.representative_income 48297 Representative total house income in the dwelling unit is $48297 +in.representative_income 48300 Representative total house income in the dwelling unit is $48300 +in.representative_income 48301 Representative total house income in the dwelling unit is $48301 +in.representative_income 48305 Representative total house income in the dwelling unit is $48305 +in.representative_income 48308 Representative total house income in the dwelling unit is $48308 +in.representative_income 48310 Representative total house income in the dwelling unit is $48310 +in.representative_income 48315 Representative total house income in the dwelling unit is $48315 +in.representative_income 48316 Representative total house income in the dwelling unit is $48316 +in.representative_income 48322 Representative total house income in the dwelling unit is $48322 +in.representative_income 48324 Representative total house income in the dwelling unit is $48324 +in.representative_income 48327 Representative total house income in the dwelling unit is $48327 +in.representative_income 48337 Representative total house income in the dwelling unit is $48337 +in.representative_income 48344 Representative total house income in the dwelling unit is $48344 +in.representative_income 48348 Representative total house income in the dwelling unit is $48348 +in.representative_income 48354 Representative total house income in the dwelling unit is $48354 +in.representative_income 48359 Representative total house income in the dwelling unit is $48359 +in.representative_income 48362 Representative total house income in the dwelling unit is $48362 +in.representative_income 48364 Representative total house income in the dwelling unit is $48364 +in.representative_income 48369 Representative total house income in the dwelling unit is $48369 +in.representative_income 48374 Representative total house income in the dwelling unit is $48374 +in.representative_income 48375 Representative total house income in the dwelling unit is $48375 +in.representative_income 48380 Representative total house income in the dwelling unit is $48380 +in.representative_income 48383 Representative total house income in the dwelling unit is $48383 +in.representative_income 48385 Representative total house income in the dwelling unit is $48385 +in.representative_income 48386 Representative total house income in the dwelling unit is $48386 +in.representative_income 48392 Representative total house income in the dwelling unit is $48392 +in.representative_income 48396 Representative total house income in the dwelling unit is $48396 +in.representative_income 48405 Representative total house income in the dwelling unit is $48405 +in.representative_income 48406 Representative total house income in the dwelling unit is $48406 +in.representative_income 48407 Representative total house income in the dwelling unit is $48407 +in.representative_income 48413 Representative total house income in the dwelling unit is $48413 +in.representative_income 48427 Representative total house income in the dwelling unit is $48427 +in.representative_income 48434 Representative total house income in the dwelling unit is $48434 +in.representative_income 48456 Representative total house income in the dwelling unit is $48456 +in.representative_income 48457 Representative total house income in the dwelling unit is $48457 +in.representative_income 48463 Representative total house income in the dwelling unit is $48463 +in.representative_income 48466 Representative total house income in the dwelling unit is $48466 +in.representative_income 48467 Representative total house income in the dwelling unit is $48467 +in.representative_income 48468 Representative total house income in the dwelling unit is $48468 +in.representative_income 48469 Representative total house income in the dwelling unit is $48469 +in.representative_income 48479 Representative total house income in the dwelling unit is $48479 +in.representative_income 48480 Representative total house income in the dwelling unit is $48480 +in.representative_income 48487 Representative total house income in the dwelling unit is $48487 +in.representative_income 48489 Representative total house income in the dwelling unit is $48489 +in.representative_income 48491 Representative total house income in the dwelling unit is $48491 +in.representative_income 48495 Representative total house income in the dwelling unit is $48495 +in.representative_income 48496 Representative total house income in the dwelling unit is $48496 +in.representative_income 48497 Representative total house income in the dwelling unit is $48497 +in.representative_income 48498 Representative total house income in the dwelling unit is $48498 +in.representative_income 48499 Representative total house income in the dwelling unit is $48499 +in.representative_income 48507 Representative total house income in the dwelling unit is $48507 +in.representative_income 48509 Representative total house income in the dwelling unit is $48509 +in.representative_income 48512 Representative total house income in the dwelling unit is $48512 +in.representative_income 48513 Representative total house income in the dwelling unit is $48513 +in.representative_income 48517 Representative total house income in the dwelling unit is $48517 +in.representative_income 48519 Representative total house income in the dwelling unit is $48519 +in.representative_income 48522 Representative total house income in the dwelling unit is $48522 +in.representative_income 48524 Representative total house income in the dwelling unit is $48524 +in.representative_income 48529 Representative total house income in the dwelling unit is $48529 +in.representative_income 48543 Representative total house income in the dwelling unit is $48543 +in.representative_income 48546 Representative total house income in the dwelling unit is $48546 +in.representative_income 48548 Representative total house income in the dwelling unit is $48548 +in.representative_income 48552 Representative total house income in the dwelling unit is $48552 +in.representative_income 48554 Representative total house income in the dwelling unit is $48554 +in.representative_income 48558 Representative total house income in the dwelling unit is $48558 +in.representative_income 48563 Representative total house income in the dwelling unit is $48563 +in.representative_income 48564 Representative total house income in the dwelling unit is $48564 +in.representative_income 48567 Representative total house income in the dwelling unit is $48567 +in.representative_income 48574 Representative total house income in the dwelling unit is $48574 +in.representative_income 48581 Representative total house income in the dwelling unit is $48581 +in.representative_income 48586 Representative total house income in the dwelling unit is $48586 +in.representative_income 48588 Representative total house income in the dwelling unit is $48588 +in.representative_income 48589 Representative total house income in the dwelling unit is $48589 +in.representative_income 48607 Representative total house income in the dwelling unit is $48607 +in.representative_income 48617 Representative total house income in the dwelling unit is $48617 +in.representative_income 48618 Representative total house income in the dwelling unit is $48618 +in.representative_income 48621 Representative total house income in the dwelling unit is $48621 +in.representative_income 48623 Representative total house income in the dwelling unit is $48623 +in.representative_income 48625 Representative total house income in the dwelling unit is $48625 +in.representative_income 48627 Representative total house income in the dwelling unit is $48627 +in.representative_income 48628 Representative total house income in the dwelling unit is $48628 +in.representative_income 48633 Representative total house income in the dwelling unit is $48633 +in.representative_income 48638 Representative total house income in the dwelling unit is $48638 +in.representative_income 48642 Representative total house income in the dwelling unit is $48642 +in.representative_income 48644 Representative total house income in the dwelling unit is $48644 +in.representative_income 48653 Representative total house income in the dwelling unit is $48653 +in.representative_income 48655 Representative total house income in the dwelling unit is $48655 +in.representative_income 48659 Representative total house income in the dwelling unit is $48659 +in.representative_income 48668 Representative total house income in the dwelling unit is $48668 +in.representative_income 48684 Representative total house income in the dwelling unit is $48684 +in.representative_income 48686 Representative total house income in the dwelling unit is $48686 +in.representative_income 48689 Representative total house income in the dwelling unit is $48689 +in.representative_income 48692 Representative total house income in the dwelling unit is $48692 +in.representative_income 48696 Representative total house income in the dwelling unit is $48696 +in.representative_income 48699 Representative total house income in the dwelling unit is $48699 +in.representative_income 48706 Representative total house income in the dwelling unit is $48706 +in.representative_income 48709 Representative total house income in the dwelling unit is $48709 +in.representative_income 48713 Representative total house income in the dwelling unit is $48713 +in.representative_income 48719 Representative total house income in the dwelling unit is $48719 +in.representative_income 48723 Representative total house income in the dwelling unit is $48723 +in.representative_income 48730 Representative total house income in the dwelling unit is $48730 +in.representative_income 48732 Representative total house income in the dwelling unit is $48732 +in.representative_income 48735 Representative total house income in the dwelling unit is $48735 +in.representative_income 48746 Representative total house income in the dwelling unit is $48746 +in.representative_income 48751 Representative total house income in the dwelling unit is $48751 +in.representative_income 48759 Representative total house income in the dwelling unit is $48759 +in.representative_income 48770 Representative total house income in the dwelling unit is $48770 +in.representative_income 48777 Representative total house income in the dwelling unit is $48777 +in.representative_income 48788 Representative total house income in the dwelling unit is $48788 +in.representative_income 48790 Representative total house income in the dwelling unit is $48790 +in.representative_income 48805 Representative total house income in the dwelling unit is $48805 +in.representative_income 48807 Representative total house income in the dwelling unit is $48807 +in.representative_income 48828 Representative total house income in the dwelling unit is $48828 +in.representative_income 48829 Representative total house income in the dwelling unit is $48829 +in.representative_income 48838 Representative total house income in the dwelling unit is $48838 +in.representative_income 48842 Representative total house income in the dwelling unit is $48842 +in.representative_income 48850 Representative total house income in the dwelling unit is $48850 +in.representative_income 48861 Representative total house income in the dwelling unit is $48861 +in.representative_income 48881 Representative total house income in the dwelling unit is $48881 +in.representative_income 48889 Representative total house income in the dwelling unit is $48889 +in.representative_income 48891 Representative total house income in the dwelling unit is $48891 +in.representative_income 48892 Representative total house income in the dwelling unit is $48892 +in.representative_income 48895 Representative total house income in the dwelling unit is $48895 +in.representative_income 48907 Representative total house income in the dwelling unit is $48907 +in.representative_income 48933 Representative total house income in the dwelling unit is $48933 +in.representative_income 48942 Representative total house income in the dwelling unit is $48942 +in.representative_income 48945 Representative total house income in the dwelling unit is $48945 +in.representative_income 48950 Representative total house income in the dwelling unit is $48950 +in.representative_income 48973 Representative total house income in the dwelling unit is $48973 +in.representative_income 48978 Representative total house income in the dwelling unit is $48978 +in.representative_income 48992 Representative total house income in the dwelling unit is $48992 +in.representative_income 48994 Representative total house income in the dwelling unit is $48994 +in.representative_income 49000 Representative total house income in the dwelling unit is $49000 +in.representative_income 49007 Representative total house income in the dwelling unit is $49007 +in.representative_income 49010 Representative total house income in the dwelling unit is $49010 +in.representative_income 49018 Representative total house income in the dwelling unit is $49018 +in.representative_income 49024 Representative total house income in the dwelling unit is $49024 +in.representative_income 49035 Representative total house income in the dwelling unit is $49035 +in.representative_income 49040 Representative total house income in the dwelling unit is $49040 +in.representative_income 49053 Representative total house income in the dwelling unit is $49053 +in.representative_income 49056 Representative total house income in the dwelling unit is $49056 +in.representative_income 49060 Representative total house income in the dwelling unit is $49060 +in.representative_income 49068 Representative total house income in the dwelling unit is $49068 +in.representative_income 49076 Representative total house income in the dwelling unit is $49076 +in.representative_income 49078 Representative total house income in the dwelling unit is $49078 +in.representative_income 49086 Representative total house income in the dwelling unit is $49086 +in.representative_income 49093 Representative total house income in the dwelling unit is $49093 +in.representative_income 49097 Representative total house income in the dwelling unit is $49097 +in.representative_income 49100 Representative total house income in the dwelling unit is $49100 +in.representative_income 49107 Representative total house income in the dwelling unit is $49107 +in.representative_income 49113 Representative total house income in the dwelling unit is $49113 +in.representative_income 49144 Representative total house income in the dwelling unit is $49144 +in.representative_income 49145 Representative total house income in the dwelling unit is $49145 +in.representative_income 49152 Representative total house income in the dwelling unit is $49152 +in.representative_income 49161 Representative total house income in the dwelling unit is $49161 +in.representative_income 49164 Representative total house income in the dwelling unit is $49164 +in.representative_income 49168 Representative total house income in the dwelling unit is $49168 +in.representative_income 49183 Representative total house income in the dwelling unit is $49183 +in.representative_income 49190 Representative total house income in the dwelling unit is $49190 +in.representative_income 49194 Representative total house income in the dwelling unit is $49194 +in.representative_income 49200 Representative total house income in the dwelling unit is $49200 +in.representative_income 49201 Representative total house income in the dwelling unit is $49201 +in.representative_income 49215 Representative total house income in the dwelling unit is $49215 +in.representative_income 49218 Representative total house income in the dwelling unit is $49218 +in.representative_income 49234 Representative total house income in the dwelling unit is $49234 +in.representative_income 49250 Representative total house income in the dwelling unit is $49250 +in.representative_income 49268 Representative total house income in the dwelling unit is $49268 +in.representative_income 49269 Representative total house income in the dwelling unit is $49269 +in.representative_income 49271 Representative total house income in the dwelling unit is $49271 +in.representative_income 49280 Representative total house income in the dwelling unit is $49280 +in.representative_income 49283 Representative total house income in the dwelling unit is $49283 +in.representative_income 49295 Representative total house income in the dwelling unit is $49295 +in.representative_income 49303 Representative total house income in the dwelling unit is $49303 +in.representative_income 49314 Representative total house income in the dwelling unit is $49314 +in.representative_income 49323 Representative total house income in the dwelling unit is $49323 +in.representative_income 49335 Representative total house income in the dwelling unit is $49335 +in.representative_income 49355 Representative total house income in the dwelling unit is $49355 +in.representative_income 49356 Representative total house income in the dwelling unit is $49356 +in.representative_income 49375 Representative total house income in the dwelling unit is $49375 +in.representative_income 49377 Representative total house income in the dwelling unit is $49377 +in.representative_income 49378 Representative total house income in the dwelling unit is $49378 +in.representative_income 49379 Representative total house income in the dwelling unit is $49379 +in.representative_income 49396 Representative total house income in the dwelling unit is $49396 +in.representative_income 49407 Representative total house income in the dwelling unit is $49407 +in.representative_income 49413 Representative total house income in the dwelling unit is $49413 +in.representative_income 49427 Representative total house income in the dwelling unit is $49427 +in.representative_income 49453 Representative total house income in the dwelling unit is $49453 +in.representative_income 49461 Representative total house income in the dwelling unit is $49461 +in.representative_income 49477 Representative total house income in the dwelling unit is $49477 +in.representative_income 49485 Representative total house income in the dwelling unit is $49485 +in.representative_income 49486 Representative total house income in the dwelling unit is $49486 +in.representative_income 49493 Representative total house income in the dwelling unit is $49493 +in.representative_income 49497 Representative total house income in the dwelling unit is $49497 +in.representative_income 49508 Representative total house income in the dwelling unit is $49508 +in.representative_income 49510 Representative total house income in the dwelling unit is $49510 +in.representative_income 49514 Representative total house income in the dwelling unit is $49514 +in.representative_income 49538 Representative total house income in the dwelling unit is $49538 +in.representative_income 49540 Representative total house income in the dwelling unit is $49540 +in.representative_income 49566 Representative total house income in the dwelling unit is $49566 +in.representative_income 49593 Representative total house income in the dwelling unit is $49593 +in.representative_income 49594 Representative total house income in the dwelling unit is $49594 +in.representative_income 49598 Representative total house income in the dwelling unit is $49598 +in.representative_income 49608 Representative total house income in the dwelling unit is $49608 +in.representative_income 49612 Representative total house income in the dwelling unit is $49612 +in.representative_income 49637 Representative total house income in the dwelling unit is $49637 +in.representative_income 49644 Representative total house income in the dwelling unit is $49644 +in.representative_income 49647 Representative total house income in the dwelling unit is $49647 +in.representative_income 49650 Representative total house income in the dwelling unit is $49650 +in.representative_income 49659 Representative total house income in the dwelling unit is $49659 +in.representative_income 49672 Representative total house income in the dwelling unit is $49672 +in.representative_income 49689 Representative total house income in the dwelling unit is $49689 +in.representative_income 49695 Representative total house income in the dwelling unit is $49695 +in.representative_income 49699 Representative total house income in the dwelling unit is $49699 +in.representative_income 49700 Representative total house income in the dwelling unit is $49700 +in.representative_income 49702 Representative total house income in the dwelling unit is $49702 +in.representative_income 49703 Representative total house income in the dwelling unit is $49703 +in.representative_income 49712 Representative total house income in the dwelling unit is $49712 +in.representative_income 49716 Representative total house income in the dwelling unit is $49716 +in.representative_income 49729 Representative total house income in the dwelling unit is $49729 +in.representative_income 49755 Representative total house income in the dwelling unit is $49755 +in.representative_income 49767 Representative total house income in the dwelling unit is $49767 +in.representative_income 49777 Representative total house income in the dwelling unit is $49777 +in.representative_income 49778 Representative total house income in the dwelling unit is $49778 +in.representative_income 49800 Representative total house income in the dwelling unit is $49800 +in.representative_income 49808 Representative total house income in the dwelling unit is $49808 +in.representative_income 49810 Representative total house income in the dwelling unit is $49810 +in.representative_income 49811 Representative total house income in the dwelling unit is $49811 +in.representative_income 49819 Representative total house income in the dwelling unit is $49819 +in.representative_income 49830 Representative total house income in the dwelling unit is $49830 +in.representative_income 49831 Representative total house income in the dwelling unit is $49831 +in.representative_income 49840 Representative total house income in the dwelling unit is $49840 +in.representative_income 49841 Representative total house income in the dwelling unit is $49841 +in.representative_income 49862 Representative total house income in the dwelling unit is $49862 +in.representative_income 49871 Representative total house income in the dwelling unit is $49871 +in.representative_income 49881 Representative total house income in the dwelling unit is $49881 +in.representative_income 49883 Representative total house income in the dwelling unit is $49883 +in.representative_income 49901 Representative total house income in the dwelling unit is $49901 +in.representative_income 49914 Representative total house income in the dwelling unit is $49914 +in.representative_income 49915 Representative total house income in the dwelling unit is $49915 +in.representative_income 49918 Representative total house income in the dwelling unit is $49918 +in.representative_income 49922 Representative total house income in the dwelling unit is $49922 +in.representative_income 49947 Representative total house income in the dwelling unit is $49947 +in.representative_income 49969 Representative total house income in the dwelling unit is $49969 +in.representative_income 49982 Representative total house income in the dwelling unit is $49982 +in.representative_income 49985 Representative total house income in the dwelling unit is $49985 +in.representative_income 49988 Representative total house income in the dwelling unit is $49988 +in.representative_income 49999 Representative total house income in the dwelling unit is $49999 +in.representative_income 50002 Representative total house income in the dwelling unit is $50002 +in.representative_income 50012 Representative total house income in the dwelling unit is $50012 +in.representative_income 50023 Representative total house income in the dwelling unit is $50023 +in.representative_income 50026 Representative total house income in the dwelling unit is $50026 +in.representative_income 50036 Representative total house income in the dwelling unit is $50036 +in.representative_income 50041 Representative total house income in the dwelling unit is $50041 +in.representative_income 50047 Representative total house income in the dwelling unit is $50047 +in.representative_income 50073 Representative total house income in the dwelling unit is $50073 +in.representative_income 50093 Representative total house income in the dwelling unit is $50093 +in.representative_income 50103 Representative total house income in the dwelling unit is $50103 +in.representative_income 50104 Representative total house income in the dwelling unit is $50104 +in.representative_income 50108 Representative total house income in the dwelling unit is $50108 +in.representative_income 50129 Representative total house income in the dwelling unit is $50129 +in.representative_income 50131 Representative total house income in the dwelling unit is $50131 +in.representative_income 50134 Representative total house income in the dwelling unit is $50134 +in.representative_income 50141 Representative total house income in the dwelling unit is $50141 +in.representative_income 50147 Representative total house income in the dwelling unit is $50147 +in.representative_income 50180 Representative total house income in the dwelling unit is $50180 +in.representative_income 50184 Representative total house income in the dwelling unit is $50184 +in.representative_income 50199 Representative total house income in the dwelling unit is $50199 +in.representative_income 50204 Representative total house income in the dwelling unit is $50204 +in.representative_income 50220 Representative total house income in the dwelling unit is $50220 +in.representative_income 50221 Representative total house income in the dwelling unit is $50221 +in.representative_income 50231 Representative total house income in the dwelling unit is $50231 +in.representative_income 50237 Representative total house income in the dwelling unit is $50237 +in.representative_income 50241 Representative total house income in the dwelling unit is $50241 +in.representative_income 50242 Representative total house income in the dwelling unit is $50242 +in.representative_income 50253 Representative total house income in the dwelling unit is $50253 +in.representative_income 50258 Representative total house income in the dwelling unit is $50258 +in.representative_income 50263 Representative total house income in the dwelling unit is $50263 +in.representative_income 50266 Representative total house income in the dwelling unit is $50266 +in.representative_income 50271 Representative total house income in the dwelling unit is $50271 +in.representative_income 50275 Representative total house income in the dwelling unit is $50275 +in.representative_income 50281 Representative total house income in the dwelling unit is $50281 +in.representative_income 50302 Representative total house income in the dwelling unit is $50302 +in.representative_income 50304 Representative total house income in the dwelling unit is $50304 +in.representative_income 50305 Representative total house income in the dwelling unit is $50305 +in.representative_income 50315 Representative total house income in the dwelling unit is $50315 +in.representative_income 50323 Representative total house income in the dwelling unit is $50323 +in.representative_income 50335 Representative total house income in the dwelling unit is $50335 +in.representative_income 50345 Representative total house income in the dwelling unit is $50345 +in.representative_income 50346 Representative total house income in the dwelling unit is $50346 +in.representative_income 50350 Representative total house income in the dwelling unit is $50350 +in.representative_income 50355 Representative total house income in the dwelling unit is $50355 +in.representative_income 50356 Representative total house income in the dwelling unit is $50356 +in.representative_income 50357 Representative total house income in the dwelling unit is $50357 +in.representative_income 50366 Representative total house income in the dwelling unit is $50366 +in.representative_income 50374 Representative total house income in the dwelling unit is $50374 +in.representative_income 50376 Representative total house income in the dwelling unit is $50376 +in.representative_income 50378 Representative total house income in the dwelling unit is $50378 +in.representative_income 50393 Representative total house income in the dwelling unit is $50393 +in.representative_income 50396 Representative total house income in the dwelling unit is $50396 +in.representative_income 50399 Representative total house income in the dwelling unit is $50399 +in.representative_income 50401 Representative total house income in the dwelling unit is $50401 +in.representative_income 50404 Representative total house income in the dwelling unit is $50404 +in.representative_income 50406 Representative total house income in the dwelling unit is $50406 +in.representative_income 50408 Representative total house income in the dwelling unit is $50408 +in.representative_income 50410 Representative total house income in the dwelling unit is $50410 +in.representative_income 50421 Representative total house income in the dwelling unit is $50421 +in.representative_income 50423 Representative total house income in the dwelling unit is $50423 +in.representative_income 50426 Representative total house income in the dwelling unit is $50426 +in.representative_income 50431 Representative total house income in the dwelling unit is $50431 +in.representative_income 50438 Representative total house income in the dwelling unit is $50438 +in.representative_income 50442 Representative total house income in the dwelling unit is $50442 +in.representative_income 50447 Representative total house income in the dwelling unit is $50447 +in.representative_income 50452 Representative total house income in the dwelling unit is $50452 +in.representative_income 50455 Representative total house income in the dwelling unit is $50455 +in.representative_income 50456 Representative total house income in the dwelling unit is $50456 +in.representative_income 50458 Representative total house income in the dwelling unit is $50458 +in.representative_income 50463 Representative total house income in the dwelling unit is $50463 +in.representative_income 50473 Representative total house income in the dwelling unit is $50473 +in.representative_income 50474 Representative total house income in the dwelling unit is $50474 +in.representative_income 50480 Representative total house income in the dwelling unit is $50480 +in.representative_income 50484 Representative total house income in the dwelling unit is $50484 +in.representative_income 50486 Representative total house income in the dwelling unit is $50486 +in.representative_income 50490 Representative total house income in the dwelling unit is $50490 +in.representative_income 50491 Representative total house income in the dwelling unit is $50491 +in.representative_income 50495 Representative total house income in the dwelling unit is $50495 +in.representative_income 50501 Representative total house income in the dwelling unit is $50501 +in.representative_income 50507 Representative total house income in the dwelling unit is $50507 +in.representative_income 50516 Representative total house income in the dwelling unit is $50516 +in.representative_income 50517 Representative total house income in the dwelling unit is $50517 +in.representative_income 50524 Representative total house income in the dwelling unit is $50524 +in.representative_income 50531 Representative total house income in the dwelling unit is $50531 +in.representative_income 50537 Representative total house income in the dwelling unit is $50537 +in.representative_income 50541 Representative total house income in the dwelling unit is $50541 +in.representative_income 50546 Representative total house income in the dwelling unit is $50546 +in.representative_income 50549 Representative total house income in the dwelling unit is $50549 +in.representative_income 50552 Representative total house income in the dwelling unit is $50552 +in.representative_income 50554 Representative total house income in the dwelling unit is $50554 +in.representative_income 50558 Representative total house income in the dwelling unit is $50558 +in.representative_income 50560 Representative total house income in the dwelling unit is $50560 +in.representative_income 50566 Representative total house income in the dwelling unit is $50566 +in.representative_income 50568 Representative total house income in the dwelling unit is $50568 +in.representative_income 50569 Representative total house income in the dwelling unit is $50569 +in.representative_income 50572 Representative total house income in the dwelling unit is $50572 +in.representative_income 50578 Representative total house income in the dwelling unit is $50578 +in.representative_income 50581 Representative total house income in the dwelling unit is $50581 +in.representative_income 50588 Representative total house income in the dwelling unit is $50588 +in.representative_income 50593 Representative total house income in the dwelling unit is $50593 +in.representative_income 50599 Representative total house income in the dwelling unit is $50599 +in.representative_income 50604 Representative total house income in the dwelling unit is $50604 +in.representative_income 50608 Representative total house income in the dwelling unit is $50608 +in.representative_income 50609 Representative total house income in the dwelling unit is $50609 +in.representative_income 50615 Representative total house income in the dwelling unit is $50615 +in.representative_income 50621 Representative total house income in the dwelling unit is $50621 +in.representative_income 50631 Representative total house income in the dwelling unit is $50631 +in.representative_income 50634 Representative total house income in the dwelling unit is $50634 +in.representative_income 50639 Representative total house income in the dwelling unit is $50639 +in.representative_income 50642 Representative total house income in the dwelling unit is $50642 +in.representative_income 50645 Representative total house income in the dwelling unit is $50645 +in.representative_income 50648 Representative total house income in the dwelling unit is $50648 +in.representative_income 50652 Representative total house income in the dwelling unit is $50652 +in.representative_income 50656 Representative total house income in the dwelling unit is $50656 +in.representative_income 50659 Representative total house income in the dwelling unit is $50659 +in.representative_income 50663 Representative total house income in the dwelling unit is $50663 +in.representative_income 50667 Representative total house income in the dwelling unit is $50667 +in.representative_income 50674 Representative total house income in the dwelling unit is $50674 +in.representative_income 50675 Representative total house income in the dwelling unit is $50675 +in.representative_income 50695 Representative total house income in the dwelling unit is $50695 +in.representative_income 50709 Representative total house income in the dwelling unit is $50709 +in.representative_income 50726 Representative total house income in the dwelling unit is $50726 +in.representative_income 50727 Representative total house income in the dwelling unit is $50727 +in.representative_income 50728 Representative total house income in the dwelling unit is $50728 +in.representative_income 50729 Representative total house income in the dwelling unit is $50729 +in.representative_income 50747 Representative total house income in the dwelling unit is $50747 +in.representative_income 50760 Representative total house income in the dwelling unit is $50760 +in.representative_income 50769 Representative total house income in the dwelling unit is $50769 +in.representative_income 50774 Representative total house income in the dwelling unit is $50774 +in.representative_income 50775 Representative total house income in the dwelling unit is $50775 +in.representative_income 50782 Representative total house income in the dwelling unit is $50782 +in.representative_income 50784 Representative total house income in the dwelling unit is $50784 +in.representative_income 50789 Representative total house income in the dwelling unit is $50789 +in.representative_income 50796 Representative total house income in the dwelling unit is $50796 +in.representative_income 50799 Representative total house income in the dwelling unit is $50799 +in.representative_income 50807 Representative total house income in the dwelling unit is $50807 +in.representative_income 50810 Representative total house income in the dwelling unit is $50810 +in.representative_income 50832 Representative total house income in the dwelling unit is $50832 +in.representative_income 50841 Representative total house income in the dwelling unit is $50841 +in.representative_income 50850 Representative total house income in the dwelling unit is $50850 +in.representative_income 50853 Representative total house income in the dwelling unit is $50853 +in.representative_income 50868 Representative total house income in the dwelling unit is $50868 +in.representative_income 50881 Representative total house income in the dwelling unit is $50881 +in.representative_income 50882 Representative total house income in the dwelling unit is $50882 +in.representative_income 50885 Representative total house income in the dwelling unit is $50885 +in.representative_income 50890 Representative total house income in the dwelling unit is $50890 +in.representative_income 50891 Representative total house income in the dwelling unit is $50891 +in.representative_income 50911 Representative total house income in the dwelling unit is $50911 +in.representative_income 50922 Representative total house income in the dwelling unit is $50922 +in.representative_income 50938 Representative total house income in the dwelling unit is $50938 +in.representative_income 50954 Representative total house income in the dwelling unit is $50954 +in.representative_income 50955 Representative total house income in the dwelling unit is $50955 +in.representative_income 50980 Representative total house income in the dwelling unit is $50980 +in.representative_income 50989 Representative total house income in the dwelling unit is $50989 +in.representative_income 50992 Representative total house income in the dwelling unit is $50992 +in.representative_income 50998 Representative total house income in the dwelling unit is $50998 +in.representative_income 51012 Representative total house income in the dwelling unit is $51012 +in.representative_income 51033 Representative total house income in the dwelling unit is $51033 +in.representative_income 51040 Representative total house income in the dwelling unit is $51040 +in.representative_income 51043 Representative total house income in the dwelling unit is $51043 +in.representative_income 51046 Representative total house income in the dwelling unit is $51046 +in.representative_income 51057 Representative total house income in the dwelling unit is $51057 +in.representative_income 51077 Representative total house income in the dwelling unit is $51077 +in.representative_income 51083 Representative total house income in the dwelling unit is $51083 +in.representative_income 51095 Representative total house income in the dwelling unit is $51095 +in.representative_income 51096 Representative total house income in the dwelling unit is $51096 +in.representative_income 51099 Representative total house income in the dwelling unit is $51099 +in.representative_income 51107 Representative total house income in the dwelling unit is $51107 +in.representative_income 51109 Representative total house income in the dwelling unit is $51109 +in.representative_income 51113 Representative total house income in the dwelling unit is $51113 +in.representative_income 51117 Representative total house income in the dwelling unit is $51117 +in.representative_income 51128 Representative total house income in the dwelling unit is $51128 +in.representative_income 51148 Representative total house income in the dwelling unit is $51148 +in.representative_income 51159 Representative total house income in the dwelling unit is $51159 +in.representative_income 51160 Representative total house income in the dwelling unit is $51160 +in.representative_income 51163 Representative total house income in the dwelling unit is $51163 +in.representative_income 51187 Representative total house income in the dwelling unit is $51187 +in.representative_income 51192 Representative total house income in the dwelling unit is $51192 +in.representative_income 51202 Representative total house income in the dwelling unit is $51202 +in.representative_income 51204 Representative total house income in the dwelling unit is $51204 +in.representative_income 51212 Representative total house income in the dwelling unit is $51212 +in.representative_income 51214 Representative total house income in the dwelling unit is $51214 +in.representative_income 51215 Representative total house income in the dwelling unit is $51215 +in.representative_income 51222 Representative total house income in the dwelling unit is $51222 +in.representative_income 51231 Representative total house income in the dwelling unit is $51231 +in.representative_income 51245 Representative total house income in the dwelling unit is $51245 +in.representative_income 51247 Representative total house income in the dwelling unit is $51247 +in.representative_income 51254 Representative total house income in the dwelling unit is $51254 +in.representative_income 51255 Representative total house income in the dwelling unit is $51255 +in.representative_income 51258 Representative total house income in the dwelling unit is $51258 +in.representative_income 51263 Representative total house income in the dwelling unit is $51263 +in.representative_income 51265 Representative total house income in the dwelling unit is $51265 +in.representative_income 51285 Representative total house income in the dwelling unit is $51285 +in.representative_income 51310 Representative total house income in the dwelling unit is $51310 +in.representative_income 51315 Representative total house income in the dwelling unit is $51315 +in.representative_income 51322 Representative total house income in the dwelling unit is $51322 +in.representative_income 51323 Representative total house income in the dwelling unit is $51323 +in.representative_income 51333 Representative total house income in the dwelling unit is $51333 +in.representative_income 51343 Representative total house income in the dwelling unit is $51343 +in.representative_income 51354 Representative total house income in the dwelling unit is $51354 +in.representative_income 51355 Representative total house income in the dwelling unit is $51355 +in.representative_income 51359 Representative total house income in the dwelling unit is $51359 +in.representative_income 51366 Representative total house income in the dwelling unit is $51366 +in.representative_income 51376 Representative total house income in the dwelling unit is $51376 +in.representative_income 51397 Representative total house income in the dwelling unit is $51397 +in.representative_income 51412 Representative total house income in the dwelling unit is $51412 +in.representative_income 51416 Representative total house income in the dwelling unit is $51416 +in.representative_income 51418 Representative total house income in the dwelling unit is $51418 +in.representative_income 51430 Representative total house income in the dwelling unit is $51430 +in.representative_income 51439 Representative total house income in the dwelling unit is $51439 +in.representative_income 51450 Representative total house income in the dwelling unit is $51450 +in.representative_income 51464 Representative total house income in the dwelling unit is $51464 +in.representative_income 51467 Representative total house income in the dwelling unit is $51467 +in.representative_income 51469 Representative total house income in the dwelling unit is $51469 +in.representative_income 51472 Representative total house income in the dwelling unit is $51472 +in.representative_income 51474 Representative total house income in the dwelling unit is $51474 +in.representative_income 51493 Representative total house income in the dwelling unit is $51493 +in.representative_income 51501 Representative total house income in the dwelling unit is $51501 +in.representative_income 51517 Representative total house income in the dwelling unit is $51517 +in.representative_income 51526 Representative total house income in the dwelling unit is $51526 +in.representative_income 51527 Representative total house income in the dwelling unit is $51527 +in.representative_income 51528 Representative total house income in the dwelling unit is $51528 +in.representative_income 51530 Representative total house income in the dwelling unit is $51530 +in.representative_income 51532 Representative total house income in the dwelling unit is $51532 +in.representative_income 51534 Representative total house income in the dwelling unit is $51534 +in.representative_income 51538 Representative total house income in the dwelling unit is $51538 +in.representative_income 51568 Representative total house income in the dwelling unit is $51568 +in.representative_income 51571 Representative total house income in the dwelling unit is $51571 +in.representative_income 51573 Representative total house income in the dwelling unit is $51573 +in.representative_income 51581 Representative total house income in the dwelling unit is $51581 +in.representative_income 51582 Representative total house income in the dwelling unit is $51582 +in.representative_income 51593 Representative total house income in the dwelling unit is $51593 +in.representative_income 51601 Representative total house income in the dwelling unit is $51601 +in.representative_income 51614 Representative total house income in the dwelling unit is $51614 +in.representative_income 51618 Representative total house income in the dwelling unit is $51618 +in.representative_income 51619 Representative total house income in the dwelling unit is $51619 +in.representative_income 51633 Representative total house income in the dwelling unit is $51633 +in.representative_income 51639 Representative total house income in the dwelling unit is $51639 +in.representative_income 51646 Representative total house income in the dwelling unit is $51646 +in.representative_income 51649 Representative total house income in the dwelling unit is $51649 +in.representative_income 51651 Representative total house income in the dwelling unit is $51651 +in.representative_income 51655 Representative total house income in the dwelling unit is $51655 +in.representative_income 51665 Representative total house income in the dwelling unit is $51665 +in.representative_income 51666 Representative total house income in the dwelling unit is $51666 +in.representative_income 51676 Representative total house income in the dwelling unit is $51676 +in.representative_income 51686 Representative total house income in the dwelling unit is $51686 +in.representative_income 51696 Representative total house income in the dwelling unit is $51696 +in.representative_income 51700 Representative total house income in the dwelling unit is $51700 +in.representative_income 51718 Representative total house income in the dwelling unit is $51718 +in.representative_income 51719 Representative total house income in the dwelling unit is $51719 +in.representative_income 51728 Representative total house income in the dwelling unit is $51728 +in.representative_income 51741 Representative total house income in the dwelling unit is $51741 +in.representative_income 51750 Representative total house income in the dwelling unit is $51750 +in.representative_income 51754 Representative total house income in the dwelling unit is $51754 +in.representative_income 51770 Representative total house income in the dwelling unit is $51770 +in.representative_income 51776 Representative total house income in the dwelling unit is $51776 +in.representative_income 51779 Representative total house income in the dwelling unit is $51779 +in.representative_income 51781 Representative total house income in the dwelling unit is $51781 +in.representative_income 51794 Representative total house income in the dwelling unit is $51794 +in.representative_income 51800 Representative total house income in the dwelling unit is $51800 +in.representative_income 51802 Representative total house income in the dwelling unit is $51802 +in.representative_income 51810 Representative total house income in the dwelling unit is $51810 +in.representative_income 51820 Representative total house income in the dwelling unit is $51820 +in.representative_income 51830 Representative total house income in the dwelling unit is $51830 +in.representative_income 51834 Representative total house income in the dwelling unit is $51834 +in.representative_income 51836 Representative total house income in the dwelling unit is $51836 +in.representative_income 51841 Representative total house income in the dwelling unit is $51841 +in.representative_income 51847 Representative total house income in the dwelling unit is $51847 +in.representative_income 51851 Representative total house income in the dwelling unit is $51851 +in.representative_income 51855 Representative total house income in the dwelling unit is $51855 +in.representative_income 51862 Representative total house income in the dwelling unit is $51862 +in.representative_income 51863 Representative total house income in the dwelling unit is $51863 +in.representative_income 51873 Representative total house income in the dwelling unit is $51873 +in.representative_income 51882 Representative total house income in the dwelling unit is $51882 +in.representative_income 51885 Representative total house income in the dwelling unit is $51885 +in.representative_income 51886 Representative total house income in the dwelling unit is $51886 +in.representative_income 51895 Representative total house income in the dwelling unit is $51895 +in.representative_income 51900 Representative total house income in the dwelling unit is $51900 +in.representative_income 51913 Representative total house income in the dwelling unit is $51913 +in.representative_income 51917 Representative total house income in the dwelling unit is $51917 +in.representative_income 51921 Representative total house income in the dwelling unit is $51921 +in.representative_income 51929 Representative total house income in the dwelling unit is $51929 +in.representative_income 51939 Representative total house income in the dwelling unit is $51939 +in.representative_income 51941 Representative total house income in the dwelling unit is $51941 +in.representative_income 51942 Representative total house income in the dwelling unit is $51942 +in.representative_income 51944 Representative total house income in the dwelling unit is $51944 +in.representative_income 51949 Representative total house income in the dwelling unit is $51949 +in.representative_income 51955 Representative total house income in the dwelling unit is $51955 +in.representative_income 51965 Representative total house income in the dwelling unit is $51965 +in.representative_income 51971 Representative total house income in the dwelling unit is $51971 +in.representative_income 51975 Representative total house income in the dwelling unit is $51975 +in.representative_income 51985 Representative total house income in the dwelling unit is $51985 +in.representative_income 51992 Representative total house income in the dwelling unit is $51992 +in.representative_income 51993 Representative total house income in the dwelling unit is $51993 +in.representative_income 51995 Representative total house income in the dwelling unit is $51995 +in.representative_income 52002 Representative total house income in the dwelling unit is $52002 +in.representative_income 52011 Representative total house income in the dwelling unit is $52011 +in.representative_income 52016 Representative total house income in the dwelling unit is $52016 +in.representative_income 52022 Representative total house income in the dwelling unit is $52022 +in.representative_income 52027 Representative total house income in the dwelling unit is $52027 +in.representative_income 52036 Representative total house income in the dwelling unit is $52036 +in.representative_income 52037 Representative total house income in the dwelling unit is $52037 +in.representative_income 52044 Representative total house income in the dwelling unit is $52044 +in.representative_income 52045 Representative total house income in the dwelling unit is $52045 +in.representative_income 52052 Representative total house income in the dwelling unit is $52052 +in.representative_income 52062 Representative total house income in the dwelling unit is $52062 +in.representative_income 52068 Representative total house income in the dwelling unit is $52068 +in.representative_income 52079 Representative total house income in the dwelling unit is $52079 +in.representative_income 52083 Representative total house income in the dwelling unit is $52083 +in.representative_income 52088 Representative total house income in the dwelling unit is $52088 +in.representative_income 52093 Representative total house income in the dwelling unit is $52093 +in.representative_income 52097 Representative total house income in the dwelling unit is $52097 +in.representative_income 52103 Representative total house income in the dwelling unit is $52103 +in.representative_income 52108 Representative total house income in the dwelling unit is $52108 +in.representative_income 52111 Representative total house income in the dwelling unit is $52111 +in.representative_income 52123 Representative total house income in the dwelling unit is $52123 +in.representative_income 52128 Representative total house income in the dwelling unit is $52128 +in.representative_income 52129 Representative total house income in the dwelling unit is $52129 +in.representative_income 52138 Representative total house income in the dwelling unit is $52138 +in.representative_income 52159 Representative total house income in the dwelling unit is $52159 +in.representative_income 52170 Representative total house income in the dwelling unit is $52170 +in.representative_income 52187 Representative total house income in the dwelling unit is $52187 +in.representative_income 52192 Representative total house income in the dwelling unit is $52192 +in.representative_income 52195 Representative total house income in the dwelling unit is $52195 +in.representative_income 52203 Representative total house income in the dwelling unit is $52203 +in.representative_income 52224 Representative total house income in the dwelling unit is $52224 +in.representative_income 52241 Representative total house income in the dwelling unit is $52241 +in.representative_income 52243 Representative total house income in the dwelling unit is $52243 +in.representative_income 52254 Representative total house income in the dwelling unit is $52254 +in.representative_income 52274 Representative total house income in the dwelling unit is $52274 +in.representative_income 52277 Representative total house income in the dwelling unit is $52277 +in.representative_income 52295 Representative total house income in the dwelling unit is $52295 +in.representative_income 52296 Representative total house income in the dwelling unit is $52296 +in.representative_income 52298 Representative total house income in the dwelling unit is $52298 +in.representative_income 52299 Representative total house income in the dwelling unit is $52299 +in.representative_income 52306 Representative total house income in the dwelling unit is $52306 +in.representative_income 52309 Representative total house income in the dwelling unit is $52309 +in.representative_income 52315 Representative total house income in the dwelling unit is $52315 +in.representative_income 52319 Representative total house income in the dwelling unit is $52319 +in.representative_income 52326 Representative total house income in the dwelling unit is $52326 +in.representative_income 52331 Representative total house income in the dwelling unit is $52331 +in.representative_income 52338 Representative total house income in the dwelling unit is $52338 +in.representative_income 52346 Representative total house income in the dwelling unit is $52346 +in.representative_income 52349 Representative total house income in the dwelling unit is $52349 +in.representative_income 52350 Representative total house income in the dwelling unit is $52350 +in.representative_income 52358 Representative total house income in the dwelling unit is $52358 +in.representative_income 52363 Representative total house income in the dwelling unit is $52363 +in.representative_income 52367 Representative total house income in the dwelling unit is $52367 +in.representative_income 52381 Representative total house income in the dwelling unit is $52381 +in.representative_income 52385 Representative total house income in the dwelling unit is $52385 +in.representative_income 52386 Representative total house income in the dwelling unit is $52386 +in.representative_income 52392 Representative total house income in the dwelling unit is $52392 +in.representative_income 52393 Representative total house income in the dwelling unit is $52393 +in.representative_income 52396 Representative total house income in the dwelling unit is $52396 +in.representative_income 52397 Representative total house income in the dwelling unit is $52397 +in.representative_income 52403 Representative total house income in the dwelling unit is $52403 +in.representative_income 52406 Representative total house income in the dwelling unit is $52406 +in.representative_income 52414 Representative total house income in the dwelling unit is $52414 +in.representative_income 52417 Representative total house income in the dwelling unit is $52417 +in.representative_income 52419 Representative total house income in the dwelling unit is $52419 +in.representative_income 52427 Representative total house income in the dwelling unit is $52427 +in.representative_income 52430 Representative total house income in the dwelling unit is $52430 +in.representative_income 52438 Representative total house income in the dwelling unit is $52438 +in.representative_income 52449 Representative total house income in the dwelling unit is $52449 +in.representative_income 52457 Representative total house income in the dwelling unit is $52457 +in.representative_income 52467 Representative total house income in the dwelling unit is $52467 +in.representative_income 52472 Representative total house income in the dwelling unit is $52472 +in.representative_income 52491 Representative total house income in the dwelling unit is $52491 +in.representative_income 52498 Representative total house income in the dwelling unit is $52498 +in.representative_income 52501 Representative total house income in the dwelling unit is $52501 +in.representative_income 52511 Representative total house income in the dwelling unit is $52511 +in.representative_income 52514 Representative total house income in the dwelling unit is $52514 +in.representative_income 52519 Representative total house income in the dwelling unit is $52519 +in.representative_income 52528 Representative total house income in the dwelling unit is $52528 +in.representative_income 52538 Representative total house income in the dwelling unit is $52538 +in.representative_income 52542 Representative total house income in the dwelling unit is $52542 +in.representative_income 52548 Representative total house income in the dwelling unit is $52548 +in.representative_income 52551 Representative total house income in the dwelling unit is $52551 +in.representative_income 52566 Representative total house income in the dwelling unit is $52566 +in.representative_income 52578 Representative total house income in the dwelling unit is $52578 +in.representative_income 52584 Representative total house income in the dwelling unit is $52584 +in.representative_income 52592 Representative total house income in the dwelling unit is $52592 +in.representative_income 52599 Representative total house income in the dwelling unit is $52599 +in.representative_income 52600 Representative total house income in the dwelling unit is $52600 +in.representative_income 52604 Representative total house income in the dwelling unit is $52604 +in.representative_income 52614 Representative total house income in the dwelling unit is $52614 +in.representative_income 52618 Representative total house income in the dwelling unit is $52618 +in.representative_income 52620 Representative total house income in the dwelling unit is $52620 +in.representative_income 52624 Representative total house income in the dwelling unit is $52624 +in.representative_income 52625 Representative total house income in the dwelling unit is $52625 +in.representative_income 52629 Representative total house income in the dwelling unit is $52629 +in.representative_income 52635 Representative total house income in the dwelling unit is $52635 +in.representative_income 52642 Representative total house income in the dwelling unit is $52642 +in.representative_income 52646 Representative total house income in the dwelling unit is $52646 +in.representative_income 52667 Representative total house income in the dwelling unit is $52667 +in.representative_income 52678 Representative total house income in the dwelling unit is $52678 +in.representative_income 52679 Representative total house income in the dwelling unit is $52679 +in.representative_income 52688 Representative total house income in the dwelling unit is $52688 +in.representative_income 52696 Representative total house income in the dwelling unit is $52696 +in.representative_income 52705 Representative total house income in the dwelling unit is $52705 +in.representative_income 52706 Representative total house income in the dwelling unit is $52706 +in.representative_income 52707 Representative total house income in the dwelling unit is $52707 +in.representative_income 52719 Representative total house income in the dwelling unit is $52719 +in.representative_income 52720 Representative total house income in the dwelling unit is $52720 +in.representative_income 52727 Representative total house income in the dwelling unit is $52727 +in.representative_income 52730 Representative total house income in the dwelling unit is $52730 +in.representative_income 52740 Representative total house income in the dwelling unit is $52740 +in.representative_income 52741 Representative total house income in the dwelling unit is $52741 +in.representative_income 52749 Representative total house income in the dwelling unit is $52749 +in.representative_income 52752 Representative total house income in the dwelling unit is $52752 +in.representative_income 52760 Representative total house income in the dwelling unit is $52760 +in.representative_income 52762 Representative total house income in the dwelling unit is $52762 +in.representative_income 52770 Representative total house income in the dwelling unit is $52770 +in.representative_income 52773 Representative total house income in the dwelling unit is $52773 +in.representative_income 52779 Representative total house income in the dwelling unit is $52779 +in.representative_income 52780 Representative total house income in the dwelling unit is $52780 +in.representative_income 52781 Representative total house income in the dwelling unit is $52781 +in.representative_income 52783 Representative total house income in the dwelling unit is $52783 +in.representative_income 52789 Representative total house income in the dwelling unit is $52789 +in.representative_income 52792 Representative total house income in the dwelling unit is $52792 +in.representative_income 52804 Representative total house income in the dwelling unit is $52804 +in.representative_income 52811 Representative total house income in the dwelling unit is $52811 +in.representative_income 52814 Representative total house income in the dwelling unit is $52814 +in.representative_income 52820 Representative total house income in the dwelling unit is $52820 +in.representative_income 52825 Representative total house income in the dwelling unit is $52825 +in.representative_income 52831 Representative total house income in the dwelling unit is $52831 +in.representative_income 52835 Representative total house income in the dwelling unit is $52835 +in.representative_income 52836 Representative total house income in the dwelling unit is $52836 +in.representative_income 52841 Representative total house income in the dwelling unit is $52841 +in.representative_income 52847 Representative total house income in the dwelling unit is $52847 +in.representative_income 52857 Representative total house income in the dwelling unit is $52857 +in.representative_income 52867 Representative total house income in the dwelling unit is $52867 +in.representative_income 52871 Representative total house income in the dwelling unit is $52871 +in.representative_income 52881 Representative total house income in the dwelling unit is $52881 +in.representative_income 52888 Representative total house income in the dwelling unit is $52888 +in.representative_income 52889 Representative total house income in the dwelling unit is $52889 +in.representative_income 52913 Representative total house income in the dwelling unit is $52913 +in.representative_income 52921 Representative total house income in the dwelling unit is $52921 +in.representative_income 52922 Representative total house income in the dwelling unit is $52922 +in.representative_income 52932 Representative total house income in the dwelling unit is $52932 +in.representative_income 52941 Representative total house income in the dwelling unit is $52941 +in.representative_income 52943 Representative total house income in the dwelling unit is $52943 +in.representative_income 52945 Representative total house income in the dwelling unit is $52945 +in.representative_income 52953 Representative total house income in the dwelling unit is $52953 +in.representative_income 52954 Representative total house income in the dwelling unit is $52954 +in.representative_income 52964 Representative total house income in the dwelling unit is $52964 +in.representative_income 52965 Representative total house income in the dwelling unit is $52965 +in.representative_income 52975 Representative total house income in the dwelling unit is $52975 +in.representative_income 52976 Representative total house income in the dwelling unit is $52976 +in.representative_income 52982 Representative total house income in the dwelling unit is $52982 +in.representative_income 52983 Representative total house income in the dwelling unit is $52983 +in.representative_income 52994 Representative total house income in the dwelling unit is $52994 +in.representative_income 52997 Representative total house income in the dwelling unit is $52997 +in.representative_income 53007 Representative total house income in the dwelling unit is $53007 +in.representative_income 53008 Representative total house income in the dwelling unit is $53008 +in.representative_income 53016 Representative total house income in the dwelling unit is $53016 +in.representative_income 53026 Representative total house income in the dwelling unit is $53026 +in.representative_income 53028 Representative total house income in the dwelling unit is $53028 +in.representative_income 53030 Representative total house income in the dwelling unit is $53030 +in.representative_income 53033 Representative total house income in the dwelling unit is $53033 +in.representative_income 53047 Representative total house income in the dwelling unit is $53047 +in.representative_income 53051 Representative total house income in the dwelling unit is $53051 +in.representative_income 53061 Representative total house income in the dwelling unit is $53061 +in.representative_income 53063 Representative total house income in the dwelling unit is $53063 +in.representative_income 53078 Representative total house income in the dwelling unit is $53078 +in.representative_income 53083 Representative total house income in the dwelling unit is $53083 +in.representative_income 53084 Representative total house income in the dwelling unit is $53084 +in.representative_income 53093 Representative total house income in the dwelling unit is $53093 +in.representative_income 53094 Representative total house income in the dwelling unit is $53094 +in.representative_income 53110 Representative total house income in the dwelling unit is $53110 +in.representative_income 53120 Representative total house income in the dwelling unit is $53120 +in.representative_income 53121 Representative total house income in the dwelling unit is $53121 +in.representative_income 53134 Representative total house income in the dwelling unit is $53134 +in.representative_income 53136 Representative total house income in the dwelling unit is $53136 +in.representative_income 53137 Representative total house income in the dwelling unit is $53137 +in.representative_income 53151 Representative total house income in the dwelling unit is $53151 +in.representative_income 53152 Representative total house income in the dwelling unit is $53152 +in.representative_income 53156 Representative total house income in the dwelling unit is $53156 +in.representative_income 53157 Representative total house income in the dwelling unit is $53157 +in.representative_income 53159 Representative total house income in the dwelling unit is $53159 +in.representative_income 53162 Representative total house income in the dwelling unit is $53162 +in.representative_income 53170 Representative total house income in the dwelling unit is $53170 +in.representative_income 53174 Representative total house income in the dwelling unit is $53174 +in.representative_income 53176 Representative total house income in the dwelling unit is $53176 +in.representative_income 53183 Representative total house income in the dwelling unit is $53183 +in.representative_income 53194 Representative total house income in the dwelling unit is $53194 +in.representative_income 53195 Representative total house income in the dwelling unit is $53195 +in.representative_income 53201 Representative total house income in the dwelling unit is $53201 +in.representative_income 53205 Representative total house income in the dwelling unit is $53205 +in.representative_income 53207 Representative total house income in the dwelling unit is $53207 +in.representative_income 53211 Representative total house income in the dwelling unit is $53211 +in.representative_income 53223 Representative total house income in the dwelling unit is $53223 +in.representative_income 53235 Representative total house income in the dwelling unit is $53235 +in.representative_income 53238 Representative total house income in the dwelling unit is $53238 +in.representative_income 53240 Representative total house income in the dwelling unit is $53240 +in.representative_income 53243 Representative total house income in the dwelling unit is $53243 +in.representative_income 53247 Representative total house income in the dwelling unit is $53247 +in.representative_income 53257 Representative total house income in the dwelling unit is $53257 +in.representative_income 53258 Representative total house income in the dwelling unit is $53258 +in.representative_income 53262 Representative total house income in the dwelling unit is $53262 +in.representative_income 53267 Representative total house income in the dwelling unit is $53267 +in.representative_income 53269 Representative total house income in the dwelling unit is $53269 +in.representative_income 53270 Representative total house income in the dwelling unit is $53270 +in.representative_income 53285 Representative total house income in the dwelling unit is $53285 +in.representative_income 53286 Representative total house income in the dwelling unit is $53286 +in.representative_income 53288 Representative total house income in the dwelling unit is $53288 +in.representative_income 53295 Representative total house income in the dwelling unit is $53295 +in.representative_income 53296 Representative total house income in the dwelling unit is $53296 +in.representative_income 53297 Representative total house income in the dwelling unit is $53297 +in.representative_income 53299 Representative total house income in the dwelling unit is $53299 +in.representative_income 53319 Representative total house income in the dwelling unit is $53319 +in.representative_income 53321 Representative total house income in the dwelling unit is $53321 +in.representative_income 53326 Representative total house income in the dwelling unit is $53326 +in.representative_income 53329 Representative total house income in the dwelling unit is $53329 +in.representative_income 53336 Representative total house income in the dwelling unit is $53336 +in.representative_income 53337 Representative total house income in the dwelling unit is $53337 +in.representative_income 53340 Representative total house income in the dwelling unit is $53340 +in.representative_income 53342 Representative total house income in the dwelling unit is $53342 +in.representative_income 53351 Representative total house income in the dwelling unit is $53351 +in.representative_income 53353 Representative total house income in the dwelling unit is $53353 +in.representative_income 53356 Representative total house income in the dwelling unit is $53356 +in.representative_income 53359 Representative total house income in the dwelling unit is $53359 +in.representative_income 53363 Representative total house income in the dwelling unit is $53363 +in.representative_income 53364 Representative total house income in the dwelling unit is $53364 +in.representative_income 53366 Representative total house income in the dwelling unit is $53366 +in.representative_income 53372 Representative total house income in the dwelling unit is $53372 +in.representative_income 53374 Representative total house income in the dwelling unit is $53374 +in.representative_income 53375 Representative total house income in the dwelling unit is $53375 +in.representative_income 53376 Representative total house income in the dwelling unit is $53376 +in.representative_income 53377 Representative total house income in the dwelling unit is $53377 +in.representative_income 53393 Representative total house income in the dwelling unit is $53393 +in.representative_income 53396 Representative total house income in the dwelling unit is $53396 +in.representative_income 53398 Representative total house income in the dwelling unit is $53398 +in.representative_income 53404 Representative total house income in the dwelling unit is $53404 +in.representative_income 53406 Representative total house income in the dwelling unit is $53406 +in.representative_income 53411 Representative total house income in the dwelling unit is $53411 +in.representative_income 53415 Representative total house income in the dwelling unit is $53415 +in.representative_income 53416 Representative total house income in the dwelling unit is $53416 +in.representative_income 53422 Representative total house income in the dwelling unit is $53422 +in.representative_income 53429 Representative total house income in the dwelling unit is $53429 +in.representative_income 53430 Representative total house income in the dwelling unit is $53430 +in.representative_income 53437 Representative total house income in the dwelling unit is $53437 +in.representative_income 53447 Representative total house income in the dwelling unit is $53447 +in.representative_income 53458 Representative total house income in the dwelling unit is $53458 +in.representative_income 53461 Representative total house income in the dwelling unit is $53461 +in.representative_income 53469 Representative total house income in the dwelling unit is $53469 +in.representative_income 53470 Representative total house income in the dwelling unit is $53470 +in.representative_income 53479 Representative total house income in the dwelling unit is $53479 +in.representative_income 53484 Representative total house income in the dwelling unit is $53484 +in.representative_income 53487 Representative total house income in the dwelling unit is $53487 +in.representative_income 53490 Representative total house income in the dwelling unit is $53490 +in.representative_income 53495 Representative total house income in the dwelling unit is $53495 +in.representative_income 53511 Representative total house income in the dwelling unit is $53511 +in.representative_income 53521 Representative total house income in the dwelling unit is $53521 +in.representative_income 53522 Representative total house income in the dwelling unit is $53522 +in.representative_income 53532 Representative total house income in the dwelling unit is $53532 +in.representative_income 53538 Representative total house income in the dwelling unit is $53538 +in.representative_income 53548 Representative total house income in the dwelling unit is $53548 +in.representative_income 53553 Representative total house income in the dwelling unit is $53553 +in.representative_income 53554 Representative total house income in the dwelling unit is $53554 +in.representative_income 53558 Representative total house income in the dwelling unit is $53558 +in.representative_income 53562 Representative total house income in the dwelling unit is $53562 +in.representative_income 53563 Representative total house income in the dwelling unit is $53563 +in.representative_income 53565 Representative total house income in the dwelling unit is $53565 +in.representative_income 53566 Representative total house income in the dwelling unit is $53566 +in.representative_income 53574 Representative total house income in the dwelling unit is $53574 +in.representative_income 53575 Representative total house income in the dwelling unit is $53575 +in.representative_income 53587 Representative total house income in the dwelling unit is $53587 +in.representative_income 53592 Representative total house income in the dwelling unit is $53592 +in.representative_income 53597 Representative total house income in the dwelling unit is $53597 +in.representative_income 53602 Representative total house income in the dwelling unit is $53602 +in.representative_income 53605 Representative total house income in the dwelling unit is $53605 +in.representative_income 53614 Representative total house income in the dwelling unit is $53614 +in.representative_income 53616 Representative total house income in the dwelling unit is $53616 +in.representative_income 53619 Representative total house income in the dwelling unit is $53619 +in.representative_income 53621 Representative total house income in the dwelling unit is $53621 +in.representative_income 53623 Representative total house income in the dwelling unit is $53623 +in.representative_income 53626 Representative total house income in the dwelling unit is $53626 +in.representative_income 53629 Representative total house income in the dwelling unit is $53629 +in.representative_income 53635 Representative total house income in the dwelling unit is $53635 +in.representative_income 53637 Representative total house income in the dwelling unit is $53637 +in.representative_income 53639 Representative total house income in the dwelling unit is $53639 +in.representative_income 53646 Representative total house income in the dwelling unit is $53646 +in.representative_income 53651 Representative total house income in the dwelling unit is $53651 +in.representative_income 53654 Representative total house income in the dwelling unit is $53654 +in.representative_income 53655 Representative total house income in the dwelling unit is $53655 +in.representative_income 53656 Representative total house income in the dwelling unit is $53656 +in.representative_income 53659 Representative total house income in the dwelling unit is $53659 +in.representative_income 53667 Representative total house income in the dwelling unit is $53667 +in.representative_income 53669 Representative total house income in the dwelling unit is $53669 +in.representative_income 53672 Representative total house income in the dwelling unit is $53672 +in.representative_income 53673 Representative total house income in the dwelling unit is $53673 +in.representative_income 53677 Representative total house income in the dwelling unit is $53677 +in.representative_income 53679 Representative total house income in the dwelling unit is $53679 +in.representative_income 53683 Representative total house income in the dwelling unit is $53683 +in.representative_income 53684 Representative total house income in the dwelling unit is $53684 +in.representative_income 53687 Representative total house income in the dwelling unit is $53687 +in.representative_income 53690 Representative total house income in the dwelling unit is $53690 +in.representative_income 53693 Representative total house income in the dwelling unit is $53693 +in.representative_income 53694 Representative total house income in the dwelling unit is $53694 +in.representative_income 53697 Representative total house income in the dwelling unit is $53697 +in.representative_income 53698 Representative total house income in the dwelling unit is $53698 +in.representative_income 53700 Representative total house income in the dwelling unit is $53700 +in.representative_income 53701 Representative total house income in the dwelling unit is $53701 +in.representative_income 53704 Representative total house income in the dwelling unit is $53704 +in.representative_income 53708 Representative total house income in the dwelling unit is $53708 +in.representative_income 53710 Representative total house income in the dwelling unit is $53710 +in.representative_income 53716 Representative total house income in the dwelling unit is $53716 +in.representative_income 53718 Representative total house income in the dwelling unit is $53718 +in.representative_income 53722 Representative total house income in the dwelling unit is $53722 +in.representative_income 53727 Representative total house income in the dwelling unit is $53727 +in.representative_income 53729 Representative total house income in the dwelling unit is $53729 +in.representative_income 53737 Representative total house income in the dwelling unit is $53737 +in.representative_income 53739 Representative total house income in the dwelling unit is $53739 +in.representative_income 53740 Representative total house income in the dwelling unit is $53740 +in.representative_income 53744 Representative total house income in the dwelling unit is $53744 +in.representative_income 53745 Representative total house income in the dwelling unit is $53745 +in.representative_income 53748 Representative total house income in the dwelling unit is $53748 +in.representative_income 53758 Representative total house income in the dwelling unit is $53758 +in.representative_income 53759 Representative total house income in the dwelling unit is $53759 +in.representative_income 53760 Representative total house income in the dwelling unit is $53760 +in.representative_income 53769 Representative total house income in the dwelling unit is $53769 +in.representative_income 53775 Representative total house income in the dwelling unit is $53775 +in.representative_income 53780 Representative total house income in the dwelling unit is $53780 +in.representative_income 53781 Representative total house income in the dwelling unit is $53781 +in.representative_income 53785 Representative total house income in the dwelling unit is $53785 +in.representative_income 53790 Representative total house income in the dwelling unit is $53790 +in.representative_income 53795 Representative total house income in the dwelling unit is $53795 +in.representative_income 53800 Representative total house income in the dwelling unit is $53800 +in.representative_income 53801 Representative total house income in the dwelling unit is $53801 +in.representative_income 53806 Representative total house income in the dwelling unit is $53806 +in.representative_income 53807 Representative total house income in the dwelling unit is $53807 +in.representative_income 53810 Representative total house income in the dwelling unit is $53810 +in.representative_income 53812 Representative total house income in the dwelling unit is $53812 +in.representative_income 53816 Representative total house income in the dwelling unit is $53816 +in.representative_income 53829 Representative total house income in the dwelling unit is $53829 +in.representative_income 53833 Representative total house income in the dwelling unit is $53833 +in.representative_income 53838 Representative total house income in the dwelling unit is $53838 +in.representative_income 53840 Representative total house income in the dwelling unit is $53840 +in.representative_income 53841 Representative total house income in the dwelling unit is $53841 +in.representative_income 53842 Representative total house income in the dwelling unit is $53842 +in.representative_income 53844 Representative total house income in the dwelling unit is $53844 +in.representative_income 53848 Representative total house income in the dwelling unit is $53848 +in.representative_income 53851 Representative total house income in the dwelling unit is $53851 +in.representative_income 53854 Representative total house income in the dwelling unit is $53854 +in.representative_income 53855 Representative total house income in the dwelling unit is $53855 +in.representative_income 53866 Representative total house income in the dwelling unit is $53866 +in.representative_income 53869 Representative total house income in the dwelling unit is $53869 +in.representative_income 53877 Representative total house income in the dwelling unit is $53877 +in.representative_income 53878 Representative total house income in the dwelling unit is $53878 +in.representative_income 53887 Representative total house income in the dwelling unit is $53887 +in.representative_income 53890 Representative total house income in the dwelling unit is $53890 +in.representative_income 53898 Representative total house income in the dwelling unit is $53898 +in.representative_income 53901 Representative total house income in the dwelling unit is $53901 +in.representative_income 53908 Representative total house income in the dwelling unit is $53908 +in.representative_income 53909 Representative total house income in the dwelling unit is $53909 +in.representative_income 53912 Representative total house income in the dwelling unit is $53912 +in.representative_income 53915 Representative total house income in the dwelling unit is $53915 +in.representative_income 53919 Representative total house income in the dwelling unit is $53919 +in.representative_income 53920 Representative total house income in the dwelling unit is $53920 +in.representative_income 53922 Representative total house income in the dwelling unit is $53922 +in.representative_income 53924 Representative total house income in the dwelling unit is $53924 +in.representative_income 53925 Representative total house income in the dwelling unit is $53925 +in.representative_income 53930 Representative total house income in the dwelling unit is $53930 +in.representative_income 53933 Representative total house income in the dwelling unit is $53933 +in.representative_income 53941 Representative total house income in the dwelling unit is $53941 +in.representative_income 53942 Representative total house income in the dwelling unit is $53942 +in.representative_income 53943 Representative total house income in the dwelling unit is $53943 +in.representative_income 53945 Representative total house income in the dwelling unit is $53945 +in.representative_income 53951 Representative total house income in the dwelling unit is $53951 +in.representative_income 53955 Representative total house income in the dwelling unit is $53955 +in.representative_income 53959 Representative total house income in the dwelling unit is $53959 +in.representative_income 53963 Representative total house income in the dwelling unit is $53963 +in.representative_income 53964 Representative total house income in the dwelling unit is $53964 +in.representative_income 53969 Representative total house income in the dwelling unit is $53969 +in.representative_income 53970 Representative total house income in the dwelling unit is $53970 +in.representative_income 53976 Representative total house income in the dwelling unit is $53976 +in.representative_income 53992 Representative total house income in the dwelling unit is $53992 +in.representative_income 53995 Representative total house income in the dwelling unit is $53995 +in.representative_income 54002 Representative total house income in the dwelling unit is $54002 +in.representative_income 54006 Representative total house income in the dwelling unit is $54006 +in.representative_income 54012 Representative total house income in the dwelling unit is $54012 +in.representative_income 54016 Representative total house income in the dwelling unit is $54016 +in.representative_income 54017 Representative total house income in the dwelling unit is $54017 +in.representative_income 54023 Representative total house income in the dwelling unit is $54023 +in.representative_income 54024 Representative total house income in the dwelling unit is $54024 +in.representative_income 54028 Representative total house income in the dwelling unit is $54028 +in.representative_income 54034 Representative total house income in the dwelling unit is $54034 +in.representative_income 54038 Representative total house income in the dwelling unit is $54038 +in.representative_income 54041 Representative total house income in the dwelling unit is $54041 +in.representative_income 54043 Representative total house income in the dwelling unit is $54043 +in.representative_income 54045 Representative total house income in the dwelling unit is $54045 +in.representative_income 54048 Representative total house income in the dwelling unit is $54048 +in.representative_income 54051 Representative total house income in the dwelling unit is $54051 +in.representative_income 54053 Representative total house income in the dwelling unit is $54053 +in.representative_income 54056 Representative total house income in the dwelling unit is $54056 +in.representative_income 54059 Representative total house income in the dwelling unit is $54059 +in.representative_income 54062 Representative total house income in the dwelling unit is $54062 +in.representative_income 54063 Representative total house income in the dwelling unit is $54063 +in.representative_income 54066 Representative total house income in the dwelling unit is $54066 +in.representative_income 54067 Representative total house income in the dwelling unit is $54067 +in.representative_income 54069 Representative total house income in the dwelling unit is $54069 +in.representative_income 54073 Representative total house income in the dwelling unit is $54073 +in.representative_income 54077 Representative total house income in the dwelling unit is $54077 +in.representative_income 54079 Representative total house income in the dwelling unit is $54079 +in.representative_income 54089 Representative total house income in the dwelling unit is $54089 +in.representative_income 54096 Representative total house income in the dwelling unit is $54096 +in.representative_income 54099 Representative total house income in the dwelling unit is $54099 +in.representative_income 54101 Representative total house income in the dwelling unit is $54101 +in.representative_income 54102 Representative total house income in the dwelling unit is $54102 +in.representative_income 54110 Representative total house income in the dwelling unit is $54110 +in.representative_income 54113 Representative total house income in the dwelling unit is $54113 +in.representative_income 54118 Representative total house income in the dwelling unit is $54118 +in.representative_income 54120 Representative total house income in the dwelling unit is $54120 +in.representative_income 54122 Representative total house income in the dwelling unit is $54122 +in.representative_income 54124 Representative total house income in the dwelling unit is $54124 +in.representative_income 54126 Representative total house income in the dwelling unit is $54126 +in.representative_income 54131 Representative total house income in the dwelling unit is $54131 +in.representative_income 54133 Representative total house income in the dwelling unit is $54133 +in.representative_income 54134 Representative total house income in the dwelling unit is $54134 +in.representative_income 54144 Representative total house income in the dwelling unit is $54144 +in.representative_income 54146 Representative total house income in the dwelling unit is $54146 +in.representative_income 54151 Representative total house income in the dwelling unit is $54151 +in.representative_income 54153 Representative total house income in the dwelling unit is $54153 +in.representative_income 54154 Representative total house income in the dwelling unit is $54154 +in.representative_income 54155 Representative total house income in the dwelling unit is $54155 +in.representative_income 54158 Representative total house income in the dwelling unit is $54158 +in.representative_income 54164 Representative total house income in the dwelling unit is $54164 +in.representative_income 54168 Representative total house income in the dwelling unit is $54168 +in.representative_income 54174 Representative total house income in the dwelling unit is $54174 +in.representative_income 54175 Representative total house income in the dwelling unit is $54175 +in.representative_income 54182 Representative total house income in the dwelling unit is $54182 +in.representative_income 54185 Representative total house income in the dwelling unit is $54185 +in.representative_income 54194 Representative total house income in the dwelling unit is $54194 +in.representative_income 54203 Representative total house income in the dwelling unit is $54203 +in.representative_income 54204 Representative total house income in the dwelling unit is $54204 +in.representative_income 54207 Representative total house income in the dwelling unit is $54207 +in.representative_income 54209 Representative total house income in the dwelling unit is $54209 +in.representative_income 54211 Representative total house income in the dwelling unit is $54211 +in.representative_income 54220 Representative total house income in the dwelling unit is $54220 +in.representative_income 54228 Representative total house income in the dwelling unit is $54228 +in.representative_income 54230 Representative total house income in the dwelling unit is $54230 +in.representative_income 54235 Representative total house income in the dwelling unit is $54235 +in.representative_income 54236 Representative total house income in the dwelling unit is $54236 +in.representative_income 54238 Representative total house income in the dwelling unit is $54238 +in.representative_income 54239 Representative total house income in the dwelling unit is $54239 +in.representative_income 54241 Representative total house income in the dwelling unit is $54241 +in.representative_income 54245 Representative total house income in the dwelling unit is $54245 +in.representative_income 54247 Representative total house income in the dwelling unit is $54247 +in.representative_income 54249 Representative total house income in the dwelling unit is $54249 +in.representative_income 54250 Representative total house income in the dwelling unit is $54250 +in.representative_income 54254 Representative total house income in the dwelling unit is $54254 +in.representative_income 54259 Representative total house income in the dwelling unit is $54259 +in.representative_income 54265 Representative total house income in the dwelling unit is $54265 +in.representative_income 54266 Representative total house income in the dwelling unit is $54266 +in.representative_income 54271 Representative total house income in the dwelling unit is $54271 +in.representative_income 54272 Representative total house income in the dwelling unit is $54272 +in.representative_income 54274 Representative total house income in the dwelling unit is $54274 +in.representative_income 54275 Representative total house income in the dwelling unit is $54275 +in.representative_income 54277 Representative total house income in the dwelling unit is $54277 +in.representative_income 54278 Representative total house income in the dwelling unit is $54278 +in.representative_income 54286 Representative total house income in the dwelling unit is $54286 +in.representative_income 54294 Representative total house income in the dwelling unit is $54294 +in.representative_income 54295 Representative total house income in the dwelling unit is $54295 +in.representative_income 54302 Representative total house income in the dwelling unit is $54302 +in.representative_income 54307 Representative total house income in the dwelling unit is $54307 +in.representative_income 54308 Representative total house income in the dwelling unit is $54308 +in.representative_income 54309 Representative total house income in the dwelling unit is $54309 +in.representative_income 54312 Representative total house income in the dwelling unit is $54312 +in.representative_income 54316 Representative total house income in the dwelling unit is $54316 +in.representative_income 54323 Representative total house income in the dwelling unit is $54323 +in.representative_income 54326 Representative total house income in the dwelling unit is $54326 +in.representative_income 54327 Representative total house income in the dwelling unit is $54327 +in.representative_income 54333 Representative total house income in the dwelling unit is $54333 +in.representative_income 54336 Representative total house income in the dwelling unit is $54336 +in.representative_income 54338 Representative total house income in the dwelling unit is $54338 +in.representative_income 54346 Representative total house income in the dwelling unit is $54346 +in.representative_income 54348 Representative total house income in the dwelling unit is $54348 +in.representative_income 54354 Representative total house income in the dwelling unit is $54354 +in.representative_income 54358 Representative total house income in the dwelling unit is $54358 +in.representative_income 54359 Representative total house income in the dwelling unit is $54359 +in.representative_income 54360 Representative total house income in the dwelling unit is $54360 +in.representative_income 54365 Representative total house income in the dwelling unit is $54365 +in.representative_income 54370 Representative total house income in the dwelling unit is $54370 +in.representative_income 54376 Representative total house income in the dwelling unit is $54376 +in.representative_income 54378 Representative total house income in the dwelling unit is $54378 +in.representative_income 54381 Representative total house income in the dwelling unit is $54381 +in.representative_income 54385 Representative total house income in the dwelling unit is $54385 +in.representative_income 54388 Representative total house income in the dwelling unit is $54388 +in.representative_income 54396 Representative total house income in the dwelling unit is $54396 +in.representative_income 54397 Representative total house income in the dwelling unit is $54397 +in.representative_income 54399 Representative total house income in the dwelling unit is $54399 +in.representative_income 54402 Representative total house income in the dwelling unit is $54402 +in.representative_income 54409 Representative total house income in the dwelling unit is $54409 +in.representative_income 54413 Representative total house income in the dwelling unit is $54413 +in.representative_income 54417 Representative total house income in the dwelling unit is $54417 +in.representative_income 54418 Representative total house income in the dwelling unit is $54418 +in.representative_income 54420 Representative total house income in the dwelling unit is $54420 +in.representative_income 54421 Representative total house income in the dwelling unit is $54421 +in.representative_income 54424 Representative total house income in the dwelling unit is $54424 +in.representative_income 54430 Representative total house income in the dwelling unit is $54430 +in.representative_income 54432 Representative total house income in the dwelling unit is $54432 +in.representative_income 54434 Representative total house income in the dwelling unit is $54434 +in.representative_income 54435 Representative total house income in the dwelling unit is $54435 +in.representative_income 54437 Representative total house income in the dwelling unit is $54437 +in.representative_income 54438 Representative total house income in the dwelling unit is $54438 +in.representative_income 54445 Representative total house income in the dwelling unit is $54445 +in.representative_income 54447 Representative total house income in the dwelling unit is $54447 +in.representative_income 54450 Representative total house income in the dwelling unit is $54450 +in.representative_income 54456 Representative total house income in the dwelling unit is $54456 +in.representative_income 54461 Representative total house income in the dwelling unit is $54461 +in.representative_income 54467 Representative total house income in the dwelling unit is $54467 +in.representative_income 54471 Representative total house income in the dwelling unit is $54471 +in.representative_income 54477 Representative total house income in the dwelling unit is $54477 +in.representative_income 54478 Representative total house income in the dwelling unit is $54478 +in.representative_income 54480 Representative total house income in the dwelling unit is $54480 +in.representative_income 54481 Representative total house income in the dwelling unit is $54481 +in.representative_income 54487 Representative total house income in the dwelling unit is $54487 +in.representative_income 54488 Representative total house income in the dwelling unit is $54488 +in.representative_income 54499 Representative total house income in the dwelling unit is $54499 +in.representative_income 54507 Representative total house income in the dwelling unit is $54507 +in.representative_income 54508 Representative total house income in the dwelling unit is $54508 +in.representative_income 54510 Representative total house income in the dwelling unit is $54510 +in.representative_income 54521 Representative total house income in the dwelling unit is $54521 +in.representative_income 54523 Representative total house income in the dwelling unit is $54523 +in.representative_income 54532 Representative total house income in the dwelling unit is $54532 +in.representative_income 54533 Representative total house income in the dwelling unit is $54533 +in.representative_income 54534 Representative total house income in the dwelling unit is $54534 +in.representative_income 54536 Representative total house income in the dwelling unit is $54536 +in.representative_income 54540 Representative total house income in the dwelling unit is $54540 +in.representative_income 54542 Representative total house income in the dwelling unit is $54542 +in.representative_income 54548 Representative total house income in the dwelling unit is $54548 +in.representative_income 54558 Representative total house income in the dwelling unit is $54558 +in.representative_income 54563 Representative total house income in the dwelling unit is $54563 +in.representative_income 54564 Representative total house income in the dwelling unit is $54564 +in.representative_income 54566 Representative total house income in the dwelling unit is $54566 +in.representative_income 54568 Representative total house income in the dwelling unit is $54568 +in.representative_income 54576 Representative total house income in the dwelling unit is $54576 +in.representative_income 54578 Representative total house income in the dwelling unit is $54578 +in.representative_income 54585 Representative total house income in the dwelling unit is $54585 +in.representative_income 54586 Representative total house income in the dwelling unit is $54586 +in.representative_income 54588 Representative total house income in the dwelling unit is $54588 +in.representative_income 54595 Representative total house income in the dwelling unit is $54595 +in.representative_income 54596 Representative total house income in the dwelling unit is $54596 +in.representative_income 54598 Representative total house income in the dwelling unit is $54598 +in.representative_income 54599 Representative total house income in the dwelling unit is $54599 +in.representative_income 54607 Representative total house income in the dwelling unit is $54607 +in.representative_income 54608 Representative total house income in the dwelling unit is $54608 +in.representative_income 54615 Representative total house income in the dwelling unit is $54615 +in.representative_income 54617 Representative total house income in the dwelling unit is $54617 +in.representative_income 54618 Representative total house income in the dwelling unit is $54618 +in.representative_income 54619 Representative total house income in the dwelling unit is $54619 +in.representative_income 54623 Representative total house income in the dwelling unit is $54623 +in.representative_income 54626 Representative total house income in the dwelling unit is $54626 +in.representative_income 54627 Representative total house income in the dwelling unit is $54627 +in.representative_income 54628 Representative total house income in the dwelling unit is $54628 +in.representative_income 54629 Representative total house income in the dwelling unit is $54629 +in.representative_income 54638 Representative total house income in the dwelling unit is $54638 +in.representative_income 54639 Representative total house income in the dwelling unit is $54639 +in.representative_income 54645 Representative total house income in the dwelling unit is $54645 +in.representative_income 54649 Representative total house income in the dwelling unit is $54649 +in.representative_income 54650 Representative total house income in the dwelling unit is $54650 +in.representative_income 54657 Representative total house income in the dwelling unit is $54657 +in.representative_income 54659 Representative total house income in the dwelling unit is $54659 +in.representative_income 54667 Representative total house income in the dwelling unit is $54667 +in.representative_income 54669 Representative total house income in the dwelling unit is $54669 +in.representative_income 54671 Representative total house income in the dwelling unit is $54671 +in.representative_income 54672 Representative total house income in the dwelling unit is $54672 +in.representative_income 54673 Representative total house income in the dwelling unit is $54673 +in.representative_income 54679 Representative total house income in the dwelling unit is $54679 +in.representative_income 54681 Representative total house income in the dwelling unit is $54681 +in.representative_income 54688 Representative total house income in the dwelling unit is $54688 +in.representative_income 54689 Representative total house income in the dwelling unit is $54689 +in.representative_income 54692 Representative total house income in the dwelling unit is $54692 +in.representative_income 54698 Representative total house income in the dwelling unit is $54698 +in.representative_income 54700 Representative total house income in the dwelling unit is $54700 +in.representative_income 54702 Representative total house income in the dwelling unit is $54702 +in.representative_income 54704 Representative total house income in the dwelling unit is $54704 +in.representative_income 54705 Representative total house income in the dwelling unit is $54705 +in.representative_income 54707 Representative total house income in the dwelling unit is $54707 +in.representative_income 54708 Representative total house income in the dwelling unit is $54708 +in.representative_income 54709 Representative total house income in the dwelling unit is $54709 +in.representative_income 54718 Representative total house income in the dwelling unit is $54718 +in.representative_income 54720 Representative total house income in the dwelling unit is $54720 +in.representative_income 54726 Representative total house income in the dwelling unit is $54726 +in.representative_income 54730 Representative total house income in the dwelling unit is $54730 +in.representative_income 54733 Representative total house income in the dwelling unit is $54733 +in.representative_income 54734 Representative total house income in the dwelling unit is $54734 +in.representative_income 54736 Representative total house income in the dwelling unit is $54736 +in.representative_income 54740 Representative total house income in the dwelling unit is $54740 +in.representative_income 54746 Representative total house income in the dwelling unit is $54746 +in.representative_income 54747 Representative total house income in the dwelling unit is $54747 +in.representative_income 54748 Representative total house income in the dwelling unit is $54748 +in.representative_income 54750 Representative total house income in the dwelling unit is $54750 +in.representative_income 54753 Representative total house income in the dwelling unit is $54753 +in.representative_income 54754 Representative total house income in the dwelling unit is $54754 +in.representative_income 54756 Representative total house income in the dwelling unit is $54756 +in.representative_income 54760 Representative total house income in the dwelling unit is $54760 +in.representative_income 54761 Representative total house income in the dwelling unit is $54761 +in.representative_income 54762 Representative total house income in the dwelling unit is $54762 +in.representative_income 54767 Representative total house income in the dwelling unit is $54767 +in.representative_income 54769 Representative total house income in the dwelling unit is $54769 +in.representative_income 54770 Representative total house income in the dwelling unit is $54770 +in.representative_income 54774 Representative total house income in the dwelling unit is $54774 +in.representative_income 54779 Representative total house income in the dwelling unit is $54779 +in.representative_income 54780 Representative total house income in the dwelling unit is $54780 +in.representative_income 54784 Representative total house income in the dwelling unit is $54784 +in.representative_income 54787 Representative total house income in the dwelling unit is $54787 +in.representative_income 54790 Representative total house income in the dwelling unit is $54790 +in.representative_income 54793 Representative total house income in the dwelling unit is $54793 +in.representative_income 54797 Representative total house income in the dwelling unit is $54797 +in.representative_income 54800 Representative total house income in the dwelling unit is $54800 +in.representative_income 54811 Representative total house income in the dwelling unit is $54811 +in.representative_income 54812 Representative total house income in the dwelling unit is $54812 +in.representative_income 54815 Representative total house income in the dwelling unit is $54815 +in.representative_income 54816 Representative total house income in the dwelling unit is $54816 +in.representative_income 54819 Representative total house income in the dwelling unit is $54819 +in.representative_income 54821 Representative total house income in the dwelling unit is $54821 +in.representative_income 54822 Representative total house income in the dwelling unit is $54822 +in.representative_income 54823 Representative total house income in the dwelling unit is $54823 +in.representative_income 54829 Representative total house income in the dwelling unit is $54829 +in.representative_income 54831 Representative total house income in the dwelling unit is $54831 +in.representative_income 54832 Representative total house income in the dwelling unit is $54832 +in.representative_income 54834 Representative total house income in the dwelling unit is $54834 +in.representative_income 54840 Representative total house income in the dwelling unit is $54840 +in.representative_income 54842 Representative total house income in the dwelling unit is $54842 +in.representative_income 54843 Representative total house income in the dwelling unit is $54843 +in.representative_income 54844 Representative total house income in the dwelling unit is $54844 +in.representative_income 54850 Representative total house income in the dwelling unit is $54850 +in.representative_income 54851 Representative total house income in the dwelling unit is $54851 +in.representative_income 54853 Representative total house income in the dwelling unit is $54853 +in.representative_income 54861 Representative total house income in the dwelling unit is $54861 +in.representative_income 54866 Representative total house income in the dwelling unit is $54866 +in.representative_income 54871 Representative total house income in the dwelling unit is $54871 +in.representative_income 54873 Representative total house income in the dwelling unit is $54873 +in.representative_income 54874 Representative total house income in the dwelling unit is $54874 +in.representative_income 54881 Representative total house income in the dwelling unit is $54881 +in.representative_income 54884 Representative total house income in the dwelling unit is $54884 +in.representative_income 54885 Representative total house income in the dwelling unit is $54885 +in.representative_income 54888 Representative total house income in the dwelling unit is $54888 +in.representative_income 54891 Representative total house income in the dwelling unit is $54891 +in.representative_income 54896 Representative total house income in the dwelling unit is $54896 +in.representative_income 54903 Representative total house income in the dwelling unit is $54903 +in.representative_income 54904 Representative total house income in the dwelling unit is $54904 +in.representative_income 54906 Representative total house income in the dwelling unit is $54906 +in.representative_income 54908 Representative total house income in the dwelling unit is $54908 +in.representative_income 54911 Representative total house income in the dwelling unit is $54911 +in.representative_income 54913 Representative total house income in the dwelling unit is $54913 +in.representative_income 54914 Representative total house income in the dwelling unit is $54914 +in.representative_income 54918 Representative total house income in the dwelling unit is $54918 +in.representative_income 54920 Representative total house income in the dwelling unit is $54920 +in.representative_income 54925 Representative total house income in the dwelling unit is $54925 +in.representative_income 54931 Representative total house income in the dwelling unit is $54931 +in.representative_income 54942 Representative total house income in the dwelling unit is $54942 +in.representative_income 54944 Representative total house income in the dwelling unit is $54944 +in.representative_income 54945 Representative total house income in the dwelling unit is $54945 +in.representative_income 54952 Representative total house income in the dwelling unit is $54952 +in.representative_income 54955 Representative total house income in the dwelling unit is $54955 +in.representative_income 54957 Representative total house income in the dwelling unit is $54957 +in.representative_income 54960 Representative total house income in the dwelling unit is $54960 +in.representative_income 54961 Representative total house income in the dwelling unit is $54961 +in.representative_income 54963 Representative total house income in the dwelling unit is $54963 +in.representative_income 54968 Representative total house income in the dwelling unit is $54968 +in.representative_income 54972 Representative total house income in the dwelling unit is $54972 +in.representative_income 54974 Representative total house income in the dwelling unit is $54974 +in.representative_income 54976 Representative total house income in the dwelling unit is $54976 +in.representative_income 54977 Representative total house income in the dwelling unit is $54977 +in.representative_income 54993 Representative total house income in the dwelling unit is $54993 +in.representative_income 54995 Representative total house income in the dwelling unit is $54995 +in.representative_income 54997 Representative total house income in the dwelling unit is $54997 +in.representative_income 54998 Representative total house income in the dwelling unit is $54998 +in.representative_income 55002 Representative total house income in the dwelling unit is $55002 +in.representative_income 55012 Representative total house income in the dwelling unit is $55012 +in.representative_income 55017 Representative total house income in the dwelling unit is $55017 +in.representative_income 55019 Representative total house income in the dwelling unit is $55019 +in.representative_income 55028 Representative total house income in the dwelling unit is $55028 +in.representative_income 55039 Representative total house income in the dwelling unit is $55039 +in.representative_income 55040 Representative total house income in the dwelling unit is $55040 +in.representative_income 55043 Representative total house income in the dwelling unit is $55043 +in.representative_income 55044 Representative total house income in the dwelling unit is $55044 +in.representative_income 55049 Representative total house income in the dwelling unit is $55049 +in.representative_income 55050 Representative total house income in the dwelling unit is $55050 +in.representative_income 55053 Representative total house income in the dwelling unit is $55053 +in.representative_income 55059 Representative total house income in the dwelling unit is $55059 +in.representative_income 55061 Representative total house income in the dwelling unit is $55061 +in.representative_income 55063 Representative total house income in the dwelling unit is $55063 +in.representative_income 55068 Representative total house income in the dwelling unit is $55068 +in.representative_income 55073 Representative total house income in the dwelling unit is $55073 +in.representative_income 55079 Representative total house income in the dwelling unit is $55079 +in.representative_income 55083 Representative total house income in the dwelling unit is $55083 +in.representative_income 55093 Representative total house income in the dwelling unit is $55093 +in.representative_income 55094 Representative total house income in the dwelling unit is $55094 +in.representative_income 55095 Representative total house income in the dwelling unit is $55095 +in.representative_income 55097 Representative total house income in the dwelling unit is $55097 +in.representative_income 55100 Representative total house income in the dwelling unit is $55100 +in.representative_income 55101 Representative total house income in the dwelling unit is $55101 +in.representative_income 55103 Representative total house income in the dwelling unit is $55103 +in.representative_income 55104 Representative total house income in the dwelling unit is $55104 +in.representative_income 55105 Representative total house income in the dwelling unit is $55105 +in.representative_income 55109 Representative total house income in the dwelling unit is $55109 +in.representative_income 55114 Representative total house income in the dwelling unit is $55114 +in.representative_income 55115 Representative total house income in the dwelling unit is $55115 +in.representative_income 55121 Representative total house income in the dwelling unit is $55121 +in.representative_income 55124 Representative total house income in the dwelling unit is $55124 +in.representative_income 55126 Representative total house income in the dwelling unit is $55126 +in.representative_income 55132 Representative total house income in the dwelling unit is $55132 +in.representative_income 55134 Representative total house income in the dwelling unit is $55134 +in.representative_income 55135 Representative total house income in the dwelling unit is $55135 +in.representative_income 55148 Representative total house income in the dwelling unit is $55148 +in.representative_income 55153 Representative total house income in the dwelling unit is $55153 +in.representative_income 55154 Representative total house income in the dwelling unit is $55154 +in.representative_income 55156 Representative total house income in the dwelling unit is $55156 +in.representative_income 55158 Representative total house income in the dwelling unit is $55158 +in.representative_income 55159 Representative total house income in the dwelling unit is $55159 +in.representative_income 55162 Representative total house income in the dwelling unit is $55162 +in.representative_income 55164 Representative total house income in the dwelling unit is $55164 +in.representative_income 55169 Representative total house income in the dwelling unit is $55169 +in.representative_income 55174 Representative total house income in the dwelling unit is $55174 +in.representative_income 55175 Representative total house income in the dwelling unit is $55175 +in.representative_income 55176 Representative total house income in the dwelling unit is $55176 +in.representative_income 55177 Representative total house income in the dwelling unit is $55177 +in.representative_income 55179 Representative total house income in the dwelling unit is $55179 +in.representative_income 55180 Representative total house income in the dwelling unit is $55180 +in.representative_income 55182 Representative total house income in the dwelling unit is $55182 +in.representative_income 55183 Representative total house income in the dwelling unit is $55183 +in.representative_income 55184 Representative total house income in the dwelling unit is $55184 +in.representative_income 55186 Representative total house income in the dwelling unit is $55186 +in.representative_income 55191 Representative total house income in the dwelling unit is $55191 +in.representative_income 55193 Representative total house income in the dwelling unit is $55193 +in.representative_income 55197 Representative total house income in the dwelling unit is $55197 +in.representative_income 55202 Representative total house income in the dwelling unit is $55202 +in.representative_income 55204 Representative total house income in the dwelling unit is $55204 +in.representative_income 55208 Representative total house income in the dwelling unit is $55208 +in.representative_income 55209 Representative total house income in the dwelling unit is $55209 +in.representative_income 55212 Representative total house income in the dwelling unit is $55212 +in.representative_income 55215 Representative total house income in the dwelling unit is $55215 +in.representative_income 55224 Representative total house income in the dwelling unit is $55224 +in.representative_income 55229 Representative total house income in the dwelling unit is $55229 +in.representative_income 55230 Representative total house income in the dwelling unit is $55230 +in.representative_income 55232 Representative total house income in the dwelling unit is $55232 +in.representative_income 55234 Representative total house income in the dwelling unit is $55234 +in.representative_income 55235 Representative total house income in the dwelling unit is $55235 +in.representative_income 55237 Representative total house income in the dwelling unit is $55237 +in.representative_income 55239 Representative total house income in the dwelling unit is $55239 +in.representative_income 55240 Representative total house income in the dwelling unit is $55240 +in.representative_income 55243 Representative total house income in the dwelling unit is $55243 +in.representative_income 55245 Representative total house income in the dwelling unit is $55245 +in.representative_income 55255 Representative total house income in the dwelling unit is $55255 +in.representative_income 55261 Representative total house income in the dwelling unit is $55261 +in.representative_income 55265 Representative total house income in the dwelling unit is $55265 +in.representative_income 55266 Representative total house income in the dwelling unit is $55266 +in.representative_income 55267 Representative total house income in the dwelling unit is $55267 +in.representative_income 55272 Representative total house income in the dwelling unit is $55272 +in.representative_income 55274 Representative total house income in the dwelling unit is $55274 +in.representative_income 55276 Representative total house income in the dwelling unit is $55276 +in.representative_income 55277 Representative total house income in the dwelling unit is $55277 +in.representative_income 55281 Representative total house income in the dwelling unit is $55281 +in.representative_income 55282 Representative total house income in the dwelling unit is $55282 +in.representative_income 55286 Representative total house income in the dwelling unit is $55286 +in.representative_income 55293 Representative total house income in the dwelling unit is $55293 +in.representative_income 55295 Representative total house income in the dwelling unit is $55295 +in.representative_income 55299 Representative total house income in the dwelling unit is $55299 +in.representative_income 55304 Representative total house income in the dwelling unit is $55304 +in.representative_income 55305 Representative total house income in the dwelling unit is $55305 +in.representative_income 55306 Representative total house income in the dwelling unit is $55306 +in.representative_income 55309 Representative total house income in the dwelling unit is $55309 +in.representative_income 55313 Representative total house income in the dwelling unit is $55313 +in.representative_income 55316 Representative total house income in the dwelling unit is $55316 +in.representative_income 55320 Representative total house income in the dwelling unit is $55320 +in.representative_income 55321 Representative total house income in the dwelling unit is $55321 +in.representative_income 55326 Representative total house income in the dwelling unit is $55326 +in.representative_income 55331 Representative total house income in the dwelling unit is $55331 +in.representative_income 55336 Representative total house income in the dwelling unit is $55336 +in.representative_income 55337 Representative total house income in the dwelling unit is $55337 +in.representative_income 55347 Representative total house income in the dwelling unit is $55347 +in.representative_income 55348 Representative total house income in the dwelling unit is $55348 +in.representative_income 55355 Representative total house income in the dwelling unit is $55355 +in.representative_income 55356 Representative total house income in the dwelling unit is $55356 +in.representative_income 55358 Representative total house income in the dwelling unit is $55358 +in.representative_income 55361 Representative total house income in the dwelling unit is $55361 +in.representative_income 55366 Representative total house income in the dwelling unit is $55366 +in.representative_income 55367 Representative total house income in the dwelling unit is $55367 +in.representative_income 55369 Representative total house income in the dwelling unit is $55369 +in.representative_income 55374 Representative total house income in the dwelling unit is $55374 +in.representative_income 55376 Representative total house income in the dwelling unit is $55376 +in.representative_income 55377 Representative total house income in the dwelling unit is $55377 +in.representative_income 55378 Representative total house income in the dwelling unit is $55378 +in.representative_income 55379 Representative total house income in the dwelling unit is $55379 +in.representative_income 55385 Representative total house income in the dwelling unit is $55385 +in.representative_income 55387 Representative total house income in the dwelling unit is $55387 +in.representative_income 55389 Representative total house income in the dwelling unit is $55389 +in.representative_income 55390 Representative total house income in the dwelling unit is $55390 +in.representative_income 55396 Representative total house income in the dwelling unit is $55396 +in.representative_income 55400 Representative total house income in the dwelling unit is $55400 +in.representative_income 55401 Representative total house income in the dwelling unit is $55401 +in.representative_income 55406 Representative total house income in the dwelling unit is $55406 +in.representative_income 55411 Representative total house income in the dwelling unit is $55411 +in.representative_income 55412 Representative total house income in the dwelling unit is $55412 +in.representative_income 55414 Representative total house income in the dwelling unit is $55414 +in.representative_income 55417 Representative total house income in the dwelling unit is $55417 +in.representative_income 55419 Representative total house income in the dwelling unit is $55419 +in.representative_income 55420 Representative total house income in the dwelling unit is $55420 +in.representative_income 55424 Representative total house income in the dwelling unit is $55424 +in.representative_income 55428 Representative total house income in the dwelling unit is $55428 +in.representative_income 55431 Representative total house income in the dwelling unit is $55431 +in.representative_income 55432 Representative total house income in the dwelling unit is $55432 +in.representative_income 55440 Representative total house income in the dwelling unit is $55440 +in.representative_income 55441 Representative total house income in the dwelling unit is $55441 +in.representative_income 55452 Representative total house income in the dwelling unit is $55452 +in.representative_income 55456 Representative total house income in the dwelling unit is $55456 +in.representative_income 55457 Representative total house income in the dwelling unit is $55457 +in.representative_income 55460 Representative total house income in the dwelling unit is $55460 +in.representative_income 55465 Representative total house income in the dwelling unit is $55465 +in.representative_income 55472 Representative total house income in the dwelling unit is $55472 +in.representative_income 55474 Representative total house income in the dwelling unit is $55474 +in.representative_income 55475 Representative total house income in the dwelling unit is $55475 +in.representative_income 55476 Representative total house income in the dwelling unit is $55476 +in.representative_income 55482 Representative total house income in the dwelling unit is $55482 +in.representative_income 55487 Representative total house income in the dwelling unit is $55487 +in.representative_income 55488 Representative total house income in the dwelling unit is $55488 +in.representative_income 55492 Representative total house income in the dwelling unit is $55492 +in.representative_income 55493 Representative total house income in the dwelling unit is $55493 +in.representative_income 55496 Representative total house income in the dwelling unit is $55496 +in.representative_income 55497 Representative total house income in the dwelling unit is $55497 +in.representative_income 55504 Representative total house income in the dwelling unit is $55504 +in.representative_income 55507 Representative total house income in the dwelling unit is $55507 +in.representative_income 55509 Representative total house income in the dwelling unit is $55509 +in.representative_income 55514 Representative total house income in the dwelling unit is $55514 +in.representative_income 55518 Representative total house income in the dwelling unit is $55518 +in.representative_income 55519 Representative total house income in the dwelling unit is $55519 +in.representative_income 55523 Representative total house income in the dwelling unit is $55523 +in.representative_income 55528 Representative total house income in the dwelling unit is $55528 +in.representative_income 55533 Representative total house income in the dwelling unit is $55533 +in.representative_income 55536 Representative total house income in the dwelling unit is $55536 +in.representative_income 55537 Representative total house income in the dwelling unit is $55537 +in.representative_income 55538 Representative total house income in the dwelling unit is $55538 +in.representative_income 55540 Representative total house income in the dwelling unit is $55540 +in.representative_income 55541 Representative total house income in the dwelling unit is $55541 +in.representative_income 55546 Representative total house income in the dwelling unit is $55546 +in.representative_income 55548 Representative total house income in the dwelling unit is $55548 +in.representative_income 55551 Representative total house income in the dwelling unit is $55551 +in.representative_income 55554 Representative total house income in the dwelling unit is $55554 +in.representative_income 55558 Representative total house income in the dwelling unit is $55558 +in.representative_income 55568 Representative total house income in the dwelling unit is $55568 +in.representative_income 55574 Representative total house income in the dwelling unit is $55574 +in.representative_income 55578 Representative total house income in the dwelling unit is $55578 +in.representative_income 55588 Representative total house income in the dwelling unit is $55588 +in.representative_income 55590 Representative total house income in the dwelling unit is $55590 +in.representative_income 55594 Representative total house income in the dwelling unit is $55594 +in.representative_income 55596 Representative total house income in the dwelling unit is $55596 +in.representative_income 55598 Representative total house income in the dwelling unit is $55598 +in.representative_income 55601 Representative total house income in the dwelling unit is $55601 +in.representative_income 55605 Representative total house income in the dwelling unit is $55605 +in.representative_income 55606 Representative total house income in the dwelling unit is $55606 +in.representative_income 55608 Representative total house income in the dwelling unit is $55608 +in.representative_income 55609 Representative total house income in the dwelling unit is $55609 +in.representative_income 55613 Representative total house income in the dwelling unit is $55613 +in.representative_income 55616 Representative total house income in the dwelling unit is $55616 +in.representative_income 55617 Representative total house income in the dwelling unit is $55617 +in.representative_income 55619 Representative total house income in the dwelling unit is $55619 +in.representative_income 55622 Representative total house income in the dwelling unit is $55622 +in.representative_income 55626 Representative total house income in the dwelling unit is $55626 +in.representative_income 55629 Representative total house income in the dwelling unit is $55629 +in.representative_income 55631 Representative total house income in the dwelling unit is $55631 +in.representative_income 55633 Representative total house income in the dwelling unit is $55633 +in.representative_income 55637 Representative total house income in the dwelling unit is $55637 +in.representative_income 55638 Representative total house income in the dwelling unit is $55638 +in.representative_income 55639 Representative total house income in the dwelling unit is $55639 +in.representative_income 55642 Representative total house income in the dwelling unit is $55642 +in.representative_income 55644 Representative total house income in the dwelling unit is $55644 +in.representative_income 55647 Representative total house income in the dwelling unit is $55647 +in.representative_income 55648 Representative total house income in the dwelling unit is $55648 +in.representative_income 55649 Representative total house income in the dwelling unit is $55649 +in.representative_income 55659 Representative total house income in the dwelling unit is $55659 +in.representative_income 55662 Representative total house income in the dwelling unit is $55662 +in.representative_income 55664 Representative total house income in the dwelling unit is $55664 +in.representative_income 55666 Representative total house income in the dwelling unit is $55666 +in.representative_income 55669 Representative total house income in the dwelling unit is $55669 +in.representative_income 55671 Representative total house income in the dwelling unit is $55671 +in.representative_income 55679 Representative total house income in the dwelling unit is $55679 +in.representative_income 55683 Representative total house income in the dwelling unit is $55683 +in.representative_income 55687 Representative total house income in the dwelling unit is $55687 +in.representative_income 55688 Representative total house income in the dwelling unit is $55688 +in.representative_income 55689 Representative total house income in the dwelling unit is $55689 +in.representative_income 55690 Representative total house income in the dwelling unit is $55690 +in.representative_income 55698 Representative total house income in the dwelling unit is $55698 +in.representative_income 55699 Representative total house income in the dwelling unit is $55699 +in.representative_income 55704 Representative total house income in the dwelling unit is $55704 +in.representative_income 55709 Representative total house income in the dwelling unit is $55709 +in.representative_income 55712 Representative total house income in the dwelling unit is $55712 +in.representative_income 55726 Representative total house income in the dwelling unit is $55726 +in.representative_income 55727 Representative total house income in the dwelling unit is $55727 +in.representative_income 55729 Representative total house income in the dwelling unit is $55729 +in.representative_income 55730 Representative total house income in the dwelling unit is $55730 +in.representative_income 55733 Representative total house income in the dwelling unit is $55733 +in.representative_income 55736 Representative total house income in the dwelling unit is $55736 +in.representative_income 55740 Representative total house income in the dwelling unit is $55740 +in.representative_income 55746 Representative total house income in the dwelling unit is $55746 +in.representative_income 55750 Representative total house income in the dwelling unit is $55750 +in.representative_income 55752 Representative total house income in the dwelling unit is $55752 +in.representative_income 55756 Representative total house income in the dwelling unit is $55756 +in.representative_income 55760 Representative total house income in the dwelling unit is $55760 +in.representative_income 55765 Representative total house income in the dwelling unit is $55765 +in.representative_income 55766 Representative total house income in the dwelling unit is $55766 +in.representative_income 55767 Representative total house income in the dwelling unit is $55767 +in.representative_income 55769 Representative total house income in the dwelling unit is $55769 +in.representative_income 55780 Representative total house income in the dwelling unit is $55780 +in.representative_income 55781 Representative total house income in the dwelling unit is $55781 +in.representative_income 55787 Representative total house income in the dwelling unit is $55787 +in.representative_income 55788 Representative total house income in the dwelling unit is $55788 +in.representative_income 55795 Representative total house income in the dwelling unit is $55795 +in.representative_income 55799 Representative total house income in the dwelling unit is $55799 +in.representative_income 55800 Representative total house income in the dwelling unit is $55800 +in.representative_income 55801 Representative total house income in the dwelling unit is $55801 +in.representative_income 55806 Representative total house income in the dwelling unit is $55806 +in.representative_income 55808 Representative total house income in the dwelling unit is $55808 +in.representative_income 55811 Representative total house income in the dwelling unit is $55811 +in.representative_income 55819 Representative total house income in the dwelling unit is $55819 +in.representative_income 55820 Representative total house income in the dwelling unit is $55820 +in.representative_income 55830 Representative total house income in the dwelling unit is $55830 +in.representative_income 55831 Representative total house income in the dwelling unit is $55831 +in.representative_income 55841 Representative total house income in the dwelling unit is $55841 +in.representative_income 55843 Representative total house income in the dwelling unit is $55843 +in.representative_income 55847 Representative total house income in the dwelling unit is $55847 +in.representative_income 55850 Representative total house income in the dwelling unit is $55850 +in.representative_income 55852 Representative total house income in the dwelling unit is $55852 +in.representative_income 55858 Representative total house income in the dwelling unit is $55858 +in.representative_income 55861 Representative total house income in the dwelling unit is $55861 +in.representative_income 55863 Representative total house income in the dwelling unit is $55863 +in.representative_income 55866 Representative total house income in the dwelling unit is $55866 +in.representative_income 55871 Representative total house income in the dwelling unit is $55871 +in.representative_income 55873 Representative total house income in the dwelling unit is $55873 +in.representative_income 55881 Representative total house income in the dwelling unit is $55881 +in.representative_income 55883 Representative total house income in the dwelling unit is $55883 +in.representative_income 55884 Representative total house income in the dwelling unit is $55884 +in.representative_income 55890 Representative total house income in the dwelling unit is $55890 +in.representative_income 55894 Representative total house income in the dwelling unit is $55894 +in.representative_income 55895 Representative total house income in the dwelling unit is $55895 +in.representative_income 55904 Representative total house income in the dwelling unit is $55904 +in.representative_income 55905 Representative total house income in the dwelling unit is $55905 +in.representative_income 55912 Representative total house income in the dwelling unit is $55912 +in.representative_income 55915 Representative total house income in the dwelling unit is $55915 +in.representative_income 55916 Representative total house income in the dwelling unit is $55916 +in.representative_income 55917 Representative total house income in the dwelling unit is $55917 +in.representative_income 55925 Representative total house income in the dwelling unit is $55925 +in.representative_income 55926 Representative total house income in the dwelling unit is $55926 +in.representative_income 55927 Representative total house income in the dwelling unit is $55927 +in.representative_income 55932 Representative total house income in the dwelling unit is $55932 +in.representative_income 55936 Representative total house income in the dwelling unit is $55936 +in.representative_income 55937 Representative total house income in the dwelling unit is $55937 +in.representative_income 55941 Representative total house income in the dwelling unit is $55941 +in.representative_income 55945 Representative total house income in the dwelling unit is $55945 +in.representative_income 55947 Representative total house income in the dwelling unit is $55947 +in.representative_income 55948 Representative total house income in the dwelling unit is $55948 +in.representative_income 55957 Representative total house income in the dwelling unit is $55957 +in.representative_income 55962 Representative total house income in the dwelling unit is $55962 +in.representative_income 55964 Representative total house income in the dwelling unit is $55964 +in.representative_income 55967 Representative total house income in the dwelling unit is $55967 +in.representative_income 55969 Representative total house income in the dwelling unit is $55969 +in.representative_income 55972 Representative total house income in the dwelling unit is $55972 +in.representative_income 55977 Representative total house income in the dwelling unit is $55977 +in.representative_income 55980 Representative total house income in the dwelling unit is $55980 +in.representative_income 55981 Representative total house income in the dwelling unit is $55981 +in.representative_income 55986 Representative total house income in the dwelling unit is $55986 +in.representative_income 55990 Representative total house income in the dwelling unit is $55990 +in.representative_income 55998 Representative total house income in the dwelling unit is $55998 +in.representative_income 56000 Representative total house income in the dwelling unit is $56000 +in.representative_income 56001 Representative total house income in the dwelling unit is $56001 +in.representative_income 56003 Representative total house income in the dwelling unit is $56003 +in.representative_income 56008 Representative total house income in the dwelling unit is $56008 +in.representative_income 56010 Representative total house income in the dwelling unit is $56010 +in.representative_income 56013 Representative total house income in the dwelling unit is $56013 +in.representative_income 56018 Representative total house income in the dwelling unit is $56018 +in.representative_income 56021 Representative total house income in the dwelling unit is $56021 +in.representative_income 56023 Representative total house income in the dwelling unit is $56023 +in.representative_income 56028 Representative total house income in the dwelling unit is $56028 +in.representative_income 56033 Representative total house income in the dwelling unit is $56033 +in.representative_income 56034 Representative total house income in the dwelling unit is $56034 +in.representative_income 56038 Representative total house income in the dwelling unit is $56038 +in.representative_income 56042 Representative total house income in the dwelling unit is $56042 +in.representative_income 56054 Representative total house income in the dwelling unit is $56054 +in.representative_income 56055 Representative total house income in the dwelling unit is $56055 +in.representative_income 56063 Representative total house income in the dwelling unit is $56063 +in.representative_income 56073 Representative total house income in the dwelling unit is $56073 +in.representative_income 56077 Representative total house income in the dwelling unit is $56077 +in.representative_income 56083 Representative total house income in the dwelling unit is $56083 +in.representative_income 56087 Representative total house income in the dwelling unit is $56087 +in.representative_income 56089 Representative total house income in the dwelling unit is $56089 +in.representative_income 56097 Representative total house income in the dwelling unit is $56097 +in.representative_income 56102 Representative total house income in the dwelling unit is $56102 +in.representative_income 56105 Representative total house income in the dwelling unit is $56105 +in.representative_income 56111 Representative total house income in the dwelling unit is $56111 +in.representative_income 56114 Representative total house income in the dwelling unit is $56114 +in.representative_income 56122 Representative total house income in the dwelling unit is $56122 +in.representative_income 56131 Representative total house income in the dwelling unit is $56131 +in.representative_income 56132 Representative total house income in the dwelling unit is $56132 +in.representative_income 56136 Representative total house income in the dwelling unit is $56136 +in.representative_income 56141 Representative total house income in the dwelling unit is $56141 +in.representative_income 56142 Representative total house income in the dwelling unit is $56142 +in.representative_income 56144 Representative total house income in the dwelling unit is $56144 +in.representative_income 56152 Representative total house income in the dwelling unit is $56152 +in.representative_income 56154 Representative total house income in the dwelling unit is $56154 +in.representative_income 56157 Representative total house income in the dwelling unit is $56157 +in.representative_income 56159 Representative total house income in the dwelling unit is $56159 +in.representative_income 56163 Representative total house income in the dwelling unit is $56163 +in.representative_income 56164 Representative total house income in the dwelling unit is $56164 +in.representative_income 56174 Representative total house income in the dwelling unit is $56174 +in.representative_income 56176 Representative total house income in the dwelling unit is $56176 +in.representative_income 56181 Representative total house income in the dwelling unit is $56181 +in.representative_income 56183 Representative total house income in the dwelling unit is $56183 +in.representative_income 56184 Representative total house income in the dwelling unit is $56184 +in.representative_income 56189 Representative total house income in the dwelling unit is $56189 +in.representative_income 56190 Representative total house income in the dwelling unit is $56190 +in.representative_income 56194 Representative total house income in the dwelling unit is $56194 +in.representative_income 56195 Representative total house income in the dwelling unit is $56195 +in.representative_income 56200 Representative total house income in the dwelling unit is $56200 +in.representative_income 56204 Representative total house income in the dwelling unit is $56204 +in.representative_income 56206 Representative total house income in the dwelling unit is $56206 +in.representative_income 56211 Representative total house income in the dwelling unit is $56211 +in.representative_income 56214 Representative total house income in the dwelling unit is $56214 +in.representative_income 56216 Representative total house income in the dwelling unit is $56216 +in.representative_income 56221 Representative total house income in the dwelling unit is $56221 +in.representative_income 56228 Representative total house income in the dwelling unit is $56228 +in.representative_income 56230 Representative total house income in the dwelling unit is $56230 +in.representative_income 56231 Representative total house income in the dwelling unit is $56231 +in.representative_income 56238 Representative total house income in the dwelling unit is $56238 +in.representative_income 56245 Representative total house income in the dwelling unit is $56245 +in.representative_income 56249 Representative total house income in the dwelling unit is $56249 +in.representative_income 56253 Representative total house income in the dwelling unit is $56253 +in.representative_income 56255 Representative total house income in the dwelling unit is $56255 +in.representative_income 56265 Representative total house income in the dwelling unit is $56265 +in.representative_income 56271 Representative total house income in the dwelling unit is $56271 +in.representative_income 56274 Representative total house income in the dwelling unit is $56274 +in.representative_income 56277 Representative total house income in the dwelling unit is $56277 +in.representative_income 56282 Representative total house income in the dwelling unit is $56282 +in.representative_income 56285 Representative total house income in the dwelling unit is $56285 +in.representative_income 56292 Representative total house income in the dwelling unit is $56292 +in.representative_income 56293 Representative total house income in the dwelling unit is $56293 +in.representative_income 56302 Representative total house income in the dwelling unit is $56302 +in.representative_income 56305 Representative total house income in the dwelling unit is $56305 +in.representative_income 56314 Representative total house income in the dwelling unit is $56314 +in.representative_income 56316 Representative total house income in the dwelling unit is $56316 +in.representative_income 56317 Representative total house income in the dwelling unit is $56317 +in.representative_income 56326 Representative total house income in the dwelling unit is $56326 +in.representative_income 56336 Representative total house income in the dwelling unit is $56336 +in.representative_income 56338 Representative total house income in the dwelling unit is $56338 +in.representative_income 56346 Representative total house income in the dwelling unit is $56346 +in.representative_income 56356 Representative total house income in the dwelling unit is $56356 +in.representative_income 56359 Representative total house income in the dwelling unit is $56359 +in.representative_income 56365 Representative total house income in the dwelling unit is $56365 +in.representative_income 56366 Representative total house income in the dwelling unit is $56366 +in.representative_income 56376 Representative total house income in the dwelling unit is $56376 +in.representative_income 56384 Representative total house income in the dwelling unit is $56384 +in.representative_income 56396 Representative total house income in the dwelling unit is $56396 +in.representative_income 56400 Representative total house income in the dwelling unit is $56400 +in.representative_income 56405 Representative total house income in the dwelling unit is $56405 +in.representative_income 56406 Representative total house income in the dwelling unit is $56406 +in.representative_income 56410 Representative total house income in the dwelling unit is $56410 +in.representative_income 56414 Representative total house income in the dwelling unit is $56414 +in.representative_income 56420 Representative total house income in the dwelling unit is $56420 +in.representative_income 56421 Representative total house income in the dwelling unit is $56421 +in.representative_income 56422 Representative total house income in the dwelling unit is $56422 +in.representative_income 56424 Representative total house income in the dwelling unit is $56424 +in.representative_income 56438 Representative total house income in the dwelling unit is $56438 +in.representative_income 56439 Representative total house income in the dwelling unit is $56439 +in.representative_income 56442 Representative total house income in the dwelling unit is $56442 +in.representative_income 56447 Representative total house income in the dwelling unit is $56447 +in.representative_income 56454 Representative total house income in the dwelling unit is $56454 +in.representative_income 56462 Representative total house income in the dwelling unit is $56462 +in.representative_income 56463 Representative total house income in the dwelling unit is $56463 +in.representative_income 56465 Representative total house income in the dwelling unit is $56465 +in.representative_income 56467 Representative total house income in the dwelling unit is $56467 +in.representative_income 56472 Representative total house income in the dwelling unit is $56472 +in.representative_income 56476 Representative total house income in the dwelling unit is $56476 +in.representative_income 56481 Representative total house income in the dwelling unit is $56481 +in.representative_income 56485 Representative total house income in the dwelling unit is $56485 +in.representative_income 56486 Representative total house income in the dwelling unit is $56486 +in.representative_income 56495 Representative total house income in the dwelling unit is $56495 +in.representative_income 56506 Representative total house income in the dwelling unit is $56506 +in.representative_income 56507 Representative total house income in the dwelling unit is $56507 +in.representative_income 56508 Representative total house income in the dwelling unit is $56508 +in.representative_income 56511 Representative total house income in the dwelling unit is $56511 +in.representative_income 56512 Representative total house income in the dwelling unit is $56512 +in.representative_income 56513 Representative total house income in the dwelling unit is $56513 +in.representative_income 56514 Representative total house income in the dwelling unit is $56514 +in.representative_income 56516 Representative total house income in the dwelling unit is $56516 +in.representative_income 56517 Representative total house income in the dwelling unit is $56517 +in.representative_income 56518 Representative total house income in the dwelling unit is $56518 +in.representative_income 56524 Representative total house income in the dwelling unit is $56524 +in.representative_income 56526 Representative total house income in the dwelling unit is $56526 +in.representative_income 56528 Representative total house income in the dwelling unit is $56528 +in.representative_income 56538 Representative total house income in the dwelling unit is $56538 +in.representative_income 56544 Representative total house income in the dwelling unit is $56544 +in.representative_income 56546 Representative total house income in the dwelling unit is $56546 +in.representative_income 56548 Representative total house income in the dwelling unit is $56548 +in.representative_income 56554 Representative total house income in the dwelling unit is $56554 +in.representative_income 56562 Representative total house income in the dwelling unit is $56562 +in.representative_income 56568 Representative total house income in the dwelling unit is $56568 +in.representative_income 56571 Representative total house income in the dwelling unit is $56571 +in.representative_income 56575 Representative total house income in the dwelling unit is $56575 +in.representative_income 56578 Representative total house income in the dwelling unit is $56578 +in.representative_income 56580 Representative total house income in the dwelling unit is $56580 +in.representative_income 56586 Representative total house income in the dwelling unit is $56586 +in.representative_income 56588 Representative total house income in the dwelling unit is $56588 +in.representative_income 56592 Representative total house income in the dwelling unit is $56592 +in.representative_income 56596 Representative total house income in the dwelling unit is $56596 +in.representative_income 56598 Representative total house income in the dwelling unit is $56598 +in.representative_income 56603 Representative total house income in the dwelling unit is $56603 +in.representative_income 56605 Representative total house income in the dwelling unit is $56605 +in.representative_income 56616 Representative total house income in the dwelling unit is $56616 +in.representative_income 56619 Representative total house income in the dwelling unit is $56619 +in.representative_income 56627 Representative total house income in the dwelling unit is $56627 +in.representative_income 56628 Representative total house income in the dwelling unit is $56628 +in.representative_income 56629 Representative total house income in the dwelling unit is $56629 +in.representative_income 56633 Representative total house income in the dwelling unit is $56633 +in.representative_income 56636 Representative total house income in the dwelling unit is $56636 +in.representative_income 56646 Representative total house income in the dwelling unit is $56646 +in.representative_income 56650 Representative total house income in the dwelling unit is $56650 +in.representative_income 56654 Representative total house income in the dwelling unit is $56654 +in.representative_income 56664 Representative total house income in the dwelling unit is $56664 +in.representative_income 56666 Representative total house income in the dwelling unit is $56666 +in.representative_income 56668 Representative total house income in the dwelling unit is $56668 +in.representative_income 56669 Representative total house income in the dwelling unit is $56669 +in.representative_income 56671 Representative total house income in the dwelling unit is $56671 +in.representative_income 56674 Representative total house income in the dwelling unit is $56674 +in.representative_income 56678 Representative total house income in the dwelling unit is $56678 +in.representative_income 56679 Representative total house income in the dwelling unit is $56679 +in.representative_income 56682 Representative total house income in the dwelling unit is $56682 +in.representative_income 56685 Representative total house income in the dwelling unit is $56685 +in.representative_income 56699 Representative total house income in the dwelling unit is $56699 +in.representative_income 56710 Representative total house income in the dwelling unit is $56710 +in.representative_income 56717 Representative total house income in the dwelling unit is $56717 +in.representative_income 56720 Representative total house income in the dwelling unit is $56720 +in.representative_income 56725 Representative total house income in the dwelling unit is $56725 +in.representative_income 56726 Representative total house income in the dwelling unit is $56726 +in.representative_income 56728 Representative total house income in the dwelling unit is $56728 +in.representative_income 56729 Representative total house income in the dwelling unit is $56729 +in.representative_income 56736 Representative total house income in the dwelling unit is $56736 +in.representative_income 56738 Representative total house income in the dwelling unit is $56738 +in.representative_income 56750 Representative total house income in the dwelling unit is $56750 +in.representative_income 56751 Representative total house income in the dwelling unit is $56751 +in.representative_income 56757 Representative total house income in the dwelling unit is $56757 +in.representative_income 56759 Representative total house income in the dwelling unit is $56759 +in.representative_income 56761 Representative total house income in the dwelling unit is $56761 +in.representative_income 56770 Representative total house income in the dwelling unit is $56770 +in.representative_income 56771 Representative total house income in the dwelling unit is $56771 +in.representative_income 56780 Representative total house income in the dwelling unit is $56780 +in.representative_income 56781 Representative total house income in the dwelling unit is $56781 +in.representative_income 56785 Representative total house income in the dwelling unit is $56785 +in.representative_income 56786 Representative total house income in the dwelling unit is $56786 +in.representative_income 56792 Representative total house income in the dwelling unit is $56792 +in.representative_income 56802 Representative total house income in the dwelling unit is $56802 +in.representative_income 56811 Representative total house income in the dwelling unit is $56811 +in.representative_income 56818 Representative total house income in the dwelling unit is $56818 +in.representative_income 56833 Representative total house income in the dwelling unit is $56833 +in.representative_income 56843 Representative total house income in the dwelling unit is $56843 +in.representative_income 56851 Representative total house income in the dwelling unit is $56851 +in.representative_income 56854 Representative total house income in the dwelling unit is $56854 +in.representative_income 56864 Representative total house income in the dwelling unit is $56864 +in.representative_income 56871 Representative total house income in the dwelling unit is $56871 +in.representative_income 56876 Representative total house income in the dwelling unit is $56876 +in.representative_income 56881 Representative total house income in the dwelling unit is $56881 +in.representative_income 56885 Representative total house income in the dwelling unit is $56885 +in.representative_income 56887 Representative total house income in the dwelling unit is $56887 +in.representative_income 56890 Representative total house income in the dwelling unit is $56890 +in.representative_income 56892 Representative total house income in the dwelling unit is $56892 +in.representative_income 56897 Representative total house income in the dwelling unit is $56897 +in.representative_income 56898 Representative total house income in the dwelling unit is $56898 +in.representative_income 56901 Representative total house income in the dwelling unit is $56901 +in.representative_income 56909 Representative total house income in the dwelling unit is $56909 +in.representative_income 56915 Representative total house income in the dwelling unit is $56915 +in.representative_income 56916 Representative total house income in the dwelling unit is $56916 +in.representative_income 56917 Representative total house income in the dwelling unit is $56917 +in.representative_income 56919 Representative total house income in the dwelling unit is $56919 +in.representative_income 56920 Representative total house income in the dwelling unit is $56920 +in.representative_income 56922 Representative total house income in the dwelling unit is $56922 +in.representative_income 56925 Representative total house income in the dwelling unit is $56925 +in.representative_income 56936 Representative total house income in the dwelling unit is $56936 +in.representative_income 56941 Representative total house income in the dwelling unit is $56941 +in.representative_income 56947 Representative total house income in the dwelling unit is $56947 +in.representative_income 56949 Representative total house income in the dwelling unit is $56949 +in.representative_income 56952 Representative total house income in the dwelling unit is $56952 +in.representative_income 56959 Representative total house income in the dwelling unit is $56959 +in.representative_income 56967 Representative total house income in the dwelling unit is $56967 +in.representative_income 56968 Representative total house income in the dwelling unit is $56968 +in.representative_income 56969 Representative total house income in the dwelling unit is $56969 +in.representative_income 56972 Representative total house income in the dwelling unit is $56972 +in.representative_income 56981 Representative total house income in the dwelling unit is $56981 +in.representative_income 56986 Representative total house income in the dwelling unit is $56986 +in.representative_income 56998 Representative total house income in the dwelling unit is $56998 +in.representative_income 56999 Representative total house income in the dwelling unit is $56999 +in.representative_income 57000 Representative total house income in the dwelling unit is $57000 +in.representative_income 57002 Representative total house income in the dwelling unit is $57002 +in.representative_income 57022 Representative total house income in the dwelling unit is $57022 +in.representative_income 57023 Representative total house income in the dwelling unit is $57023 +in.representative_income 57027 Representative total house income in the dwelling unit is $57027 +in.representative_income 57039 Representative total house income in the dwelling unit is $57039 +in.representative_income 57040 Representative total house income in the dwelling unit is $57040 +in.representative_income 57043 Representative total house income in the dwelling unit is $57043 +in.representative_income 57049 Representative total house income in the dwelling unit is $57049 +in.representative_income 57054 Representative total house income in the dwelling unit is $57054 +in.representative_income 57057 Representative total house income in the dwelling unit is $57057 +in.representative_income 57062 Representative total house income in the dwelling unit is $57062 +in.representative_income 57065 Representative total house income in the dwelling unit is $57065 +in.representative_income 57073 Representative total house income in the dwelling unit is $57073 +in.representative_income 57079 Representative total house income in the dwelling unit is $57079 +in.representative_income 57086 Representative total house income in the dwelling unit is $57086 +in.representative_income 57093 Representative total house income in the dwelling unit is $57093 +in.representative_income 57101 Representative total house income in the dwelling unit is $57101 +in.representative_income 57107 Representative total house income in the dwelling unit is $57107 +in.representative_income 57110 Representative total house income in the dwelling unit is $57110 +in.representative_income 57118 Representative total house income in the dwelling unit is $57118 +in.representative_income 57124 Representative total house income in the dwelling unit is $57124 +in.representative_income 57128 Representative total house income in the dwelling unit is $57128 +in.representative_income 57139 Representative total house income in the dwelling unit is $57139 +in.representative_income 57143 Representative total house income in the dwelling unit is $57143 +in.representative_income 57146 Representative total house income in the dwelling unit is $57146 +in.representative_income 57149 Representative total house income in the dwelling unit is $57149 +in.representative_income 57157 Representative total house income in the dwelling unit is $57157 +in.representative_income 57159 Representative total house income in the dwelling unit is $57159 +in.representative_income 57161 Representative total house income in the dwelling unit is $57161 +in.representative_income 57174 Representative total house income in the dwelling unit is $57174 +in.representative_income 57194 Representative total house income in the dwelling unit is $57194 +in.representative_income 57202 Representative total house income in the dwelling unit is $57202 +in.representative_income 57205 Representative total house income in the dwelling unit is $57205 +in.representative_income 57215 Representative total house income in the dwelling unit is $57215 +in.representative_income 57225 Representative total house income in the dwelling unit is $57225 +in.representative_income 57246 Representative total house income in the dwelling unit is $57246 +in.representative_income 57254 Representative total house income in the dwelling unit is $57254 +in.representative_income 57265 Representative total house income in the dwelling unit is $57265 +in.representative_income 57266 Representative total house income in the dwelling unit is $57266 +in.representative_income 57268 Representative total house income in the dwelling unit is $57268 +in.representative_income 57269 Representative total house income in the dwelling unit is $57269 +in.representative_income 57270 Representative total house income in the dwelling unit is $57270 +in.representative_income 57275 Representative total house income in the dwelling unit is $57275 +in.representative_income 57276 Representative total house income in the dwelling unit is $57276 +in.representative_income 57285 Representative total house income in the dwelling unit is $57285 +in.representative_income 57287 Representative total house income in the dwelling unit is $57287 +in.representative_income 57297 Representative total house income in the dwelling unit is $57297 +in.representative_income 57299 Representative total house income in the dwelling unit is $57299 +in.representative_income 57301 Representative total house income in the dwelling unit is $57301 +in.representative_income 57306 Representative total house income in the dwelling unit is $57306 +in.representative_income 57308 Representative total house income in the dwelling unit is $57308 +in.representative_income 57312 Representative total house income in the dwelling unit is $57312 +in.representative_income 57316 Representative total house income in the dwelling unit is $57316 +in.representative_income 57319 Representative total house income in the dwelling unit is $57319 +in.representative_income 57321 Representative total house income in the dwelling unit is $57321 +in.representative_income 57322 Representative total house income in the dwelling unit is $57322 +in.representative_income 57328 Representative total house income in the dwelling unit is $57328 +in.representative_income 57340 Representative total house income in the dwelling unit is $57340 +in.representative_income 57344 Representative total house income in the dwelling unit is $57344 +in.representative_income 57346 Representative total house income in the dwelling unit is $57346 +in.representative_income 57348 Representative total house income in the dwelling unit is $57348 +in.representative_income 57356 Representative total house income in the dwelling unit is $57356 +in.representative_income 57360 Representative total house income in the dwelling unit is $57360 +in.representative_income 57362 Representative total house income in the dwelling unit is $57362 +in.representative_income 57366 Representative total house income in the dwelling unit is $57366 +in.representative_income 57371 Representative total house income in the dwelling unit is $57371 +in.representative_income 57373 Representative total house income in the dwelling unit is $57373 +in.representative_income 57376 Representative total house income in the dwelling unit is $57376 +in.representative_income 57378 Representative total house income in the dwelling unit is $57378 +in.representative_income 57383 Representative total house income in the dwelling unit is $57383 +in.representative_income 57418 Representative total house income in the dwelling unit is $57418 +in.representative_income 57422 Representative total house income in the dwelling unit is $57422 +in.representative_income 57429 Representative total house income in the dwelling unit is $57429 +in.representative_income 57434 Representative total house income in the dwelling unit is $57434 +in.representative_income 57452 Representative total house income in the dwelling unit is $57452 +in.representative_income 57455 Representative total house income in the dwelling unit is $57455 +in.representative_income 57461 Representative total house income in the dwelling unit is $57461 +in.representative_income 57463 Representative total house income in the dwelling unit is $57463 +in.representative_income 57476 Representative total house income in the dwelling unit is $57476 +in.representative_income 57477 Representative total house income in the dwelling unit is $57477 +in.representative_income 57481 Representative total house income in the dwelling unit is $57481 +in.representative_income 57483 Representative total house income in the dwelling unit is $57483 +in.representative_income 57486 Representative total house income in the dwelling unit is $57486 +in.representative_income 57488 Representative total house income in the dwelling unit is $57488 +in.representative_income 57497 Representative total house income in the dwelling unit is $57497 +in.representative_income 57503 Representative total house income in the dwelling unit is $57503 +in.representative_income 57505 Representative total house income in the dwelling unit is $57505 +in.representative_income 57508 Representative total house income in the dwelling unit is $57508 +in.representative_income 57513 Representative total house income in the dwelling unit is $57513 +in.representative_income 57514 Representative total house income in the dwelling unit is $57514 +in.representative_income 57518 Representative total house income in the dwelling unit is $57518 +in.representative_income 57537 Representative total house income in the dwelling unit is $57537 +in.representative_income 57538 Representative total house income in the dwelling unit is $57538 +in.representative_income 57545 Representative total house income in the dwelling unit is $57545 +in.representative_income 57555 Representative total house income in the dwelling unit is $57555 +in.representative_income 57578 Representative total house income in the dwelling unit is $57578 +in.representative_income 57581 Representative total house income in the dwelling unit is $57581 +in.representative_income 57589 Representative total house income in the dwelling unit is $57589 +in.representative_income 57591 Representative total house income in the dwelling unit is $57591 +in.representative_income 57602 Representative total house income in the dwelling unit is $57602 +in.representative_income 57619 Representative total house income in the dwelling unit is $57619 +in.representative_income 57622 Representative total house income in the dwelling unit is $57622 +in.representative_income 57624 Representative total house income in the dwelling unit is $57624 +in.representative_income 57634 Representative total house income in the dwelling unit is $57634 +in.representative_income 57639 Representative total house income in the dwelling unit is $57639 +in.representative_income 57644 Representative total house income in the dwelling unit is $57644 +in.representative_income 57645 Representative total house income in the dwelling unit is $57645 +in.representative_income 57655 Representative total house income in the dwelling unit is $57655 +in.representative_income 57658 Representative total house income in the dwelling unit is $57658 +in.representative_income 57666 Representative total house income in the dwelling unit is $57666 +in.representative_income 57679 Representative total house income in the dwelling unit is $57679 +in.representative_income 57687 Representative total house income in the dwelling unit is $57687 +in.representative_income 57697 Representative total house income in the dwelling unit is $57697 +in.representative_income 57699 Representative total house income in the dwelling unit is $57699 +in.representative_income 57719 Representative total house income in the dwelling unit is $57719 +in.representative_income 57730 Representative total house income in the dwelling unit is $57730 +in.representative_income 57751 Representative total house income in the dwelling unit is $57751 +in.representative_income 57752 Representative total house income in the dwelling unit is $57752 +in.representative_income 57761 Representative total house income in the dwelling unit is $57761 +in.representative_income 57762 Representative total house income in the dwelling unit is $57762 +in.representative_income 57780 Representative total house income in the dwelling unit is $57780 +in.representative_income 57782 Representative total house income in the dwelling unit is $57782 +in.representative_income 57786 Representative total house income in the dwelling unit is $57786 +in.representative_income 57792 Representative total house income in the dwelling unit is $57792 +in.representative_income 57794 Representative total house income in the dwelling unit is $57794 +in.representative_income 57802 Representative total house income in the dwelling unit is $57802 +in.representative_income 57805 Representative total house income in the dwelling unit is $57805 +in.representative_income 57824 Representative total house income in the dwelling unit is $57824 +in.representative_income 57838 Representative total house income in the dwelling unit is $57838 +in.representative_income 57859 Representative total house income in the dwelling unit is $57859 +in.representative_income 57863 Representative total house income in the dwelling unit is $57863 +in.representative_income 57864 Representative total house income in the dwelling unit is $57864 +in.representative_income 57866 Representative total house income in the dwelling unit is $57866 +in.representative_income 57871 Representative total house income in the dwelling unit is $57871 +in.representative_income 57881 Representative total house income in the dwelling unit is $57881 +in.representative_income 57882 Representative total house income in the dwelling unit is $57882 +in.representative_income 57885 Representative total house income in the dwelling unit is $57885 +in.representative_income 57897 Representative total house income in the dwelling unit is $57897 +in.representative_income 57898 Representative total house income in the dwelling unit is $57898 +in.representative_income 57901 Representative total house income in the dwelling unit is $57901 +in.representative_income 57902 Representative total house income in the dwelling unit is $57902 +in.representative_income 57912 Representative total house income in the dwelling unit is $57912 +in.representative_income 57913 Representative total house income in the dwelling unit is $57913 +in.representative_income 57922 Representative total house income in the dwelling unit is $57922 +in.representative_income 57932 Representative total house income in the dwelling unit is $57932 +in.representative_income 57937 Representative total house income in the dwelling unit is $57937 +in.representative_income 57956 Representative total house income in the dwelling unit is $57956 +in.representative_income 57962 Representative total house income in the dwelling unit is $57962 +in.representative_income 57967 Representative total house income in the dwelling unit is $57967 +in.representative_income 57971 Representative total house income in the dwelling unit is $57971 +in.representative_income 57977 Representative total house income in the dwelling unit is $57977 +in.representative_income 57982 Representative total house income in the dwelling unit is $57982 +in.representative_income 57988 Representative total house income in the dwelling unit is $57988 +in.representative_income 57999 Representative total house income in the dwelling unit is $57999 +in.representative_income 58003 Representative total house income in the dwelling unit is $58003 +in.representative_income 58004 Representative total house income in the dwelling unit is $58004 +in.representative_income 58014 Representative total house income in the dwelling unit is $58014 +in.representative_income 58021 Representative total house income in the dwelling unit is $58021 +in.representative_income 58024 Representative total house income in the dwelling unit is $58024 +in.representative_income 58032 Representative total house income in the dwelling unit is $58032 +in.representative_income 58035 Representative total house income in the dwelling unit is $58035 +in.representative_income 58056 Representative total house income in the dwelling unit is $58056 +in.representative_income 58071 Representative total house income in the dwelling unit is $58071 +in.representative_income 58073 Representative total house income in the dwelling unit is $58073 +in.representative_income 58083 Representative total house income in the dwelling unit is $58083 +in.representative_income 58093 Representative total house income in the dwelling unit is $58093 +in.representative_income 58098 Representative total house income in the dwelling unit is $58098 +in.representative_income 58107 Representative total house income in the dwelling unit is $58107 +in.representative_income 58109 Representative total house income in the dwelling unit is $58109 +in.representative_income 58117 Representative total house income in the dwelling unit is $58117 +in.representative_income 58120 Representative total house income in the dwelling unit is $58120 +in.representative_income 58122 Representative total house income in the dwelling unit is $58122 +in.representative_income 58129 Representative total house income in the dwelling unit is $58129 +in.representative_income 58130 Representative total house income in the dwelling unit is $58130 +in.representative_income 58152 Representative total house income in the dwelling unit is $58152 +in.representative_income 58164 Representative total house income in the dwelling unit is $58164 +in.representative_income 58170 Representative total house income in the dwelling unit is $58170 +in.representative_income 58172 Representative total house income in the dwelling unit is $58172 +in.representative_income 58173 Representative total house income in the dwelling unit is $58173 +in.representative_income 58174 Representative total house income in the dwelling unit is $58174 +in.representative_income 58181 Representative total house income in the dwelling unit is $58181 +in.representative_income 58182 Representative total house income in the dwelling unit is $58182 +in.representative_income 58184 Representative total house income in the dwelling unit is $58184 +in.representative_income 58191 Representative total house income in the dwelling unit is $58191 +in.representative_income 58202 Representative total house income in the dwelling unit is $58202 +in.representative_income 58204 Representative total house income in the dwelling unit is $58204 +in.representative_income 58205 Representative total house income in the dwelling unit is $58205 +in.representative_income 58214 Representative total house income in the dwelling unit is $58214 +in.representative_income 58225 Representative total house income in the dwelling unit is $58225 +in.representative_income 58235 Representative total house income in the dwelling unit is $58235 +in.representative_income 58236 Representative total house income in the dwelling unit is $58236 +in.representative_income 58238 Representative total house income in the dwelling unit is $58238 +in.representative_income 58246 Representative total house income in the dwelling unit is $58246 +in.representative_income 58256 Representative total house income in the dwelling unit is $58256 +in.representative_income 58277 Representative total house income in the dwelling unit is $58277 +in.representative_income 58278 Representative total house income in the dwelling unit is $58278 +in.representative_income 58285 Representative total house income in the dwelling unit is $58285 +in.representative_income 58288 Representative total house income in the dwelling unit is $58288 +in.representative_income 58299 Representative total house income in the dwelling unit is $58299 +in.representative_income 58310 Representative total house income in the dwelling unit is $58310 +in.representative_income 58316 Representative total house income in the dwelling unit is $58316 +in.representative_income 58318 Representative total house income in the dwelling unit is $58318 +in.representative_income 58319 Representative total house income in the dwelling unit is $58319 +in.representative_income 58320 Representative total house income in the dwelling unit is $58320 +in.representative_income 58329 Representative total house income in the dwelling unit is $58329 +in.representative_income 58331 Representative total house income in the dwelling unit is $58331 +in.representative_income 58337 Representative total house income in the dwelling unit is $58337 +in.representative_income 58346 Representative total house income in the dwelling unit is $58346 +in.representative_income 58350 Representative total house income in the dwelling unit is $58350 +in.representative_income 58357 Representative total house income in the dwelling unit is $58357 +in.representative_income 58367 Representative total house income in the dwelling unit is $58367 +in.representative_income 58380 Representative total house income in the dwelling unit is $58380 +in.representative_income 58386 Representative total house income in the dwelling unit is $58386 +in.representative_income 58396 Representative total house income in the dwelling unit is $58396 +in.representative_income 58400 Representative total house income in the dwelling unit is $58400 +in.representative_income 58410 Representative total house income in the dwelling unit is $58410 +in.representative_income 58411 Representative total house income in the dwelling unit is $58411 +in.representative_income 58421 Representative total house income in the dwelling unit is $58421 +in.representative_income 58425 Representative total house income in the dwelling unit is $58425 +in.representative_income 58454 Representative total house income in the dwelling unit is $58454 +in.representative_income 58478 Representative total house income in the dwelling unit is $58478 +in.representative_income 58483 Representative total house income in the dwelling unit is $58483 +in.representative_income 58487 Representative total house income in the dwelling unit is $58487 +in.representative_income 58503 Representative total house income in the dwelling unit is $58503 +in.representative_income 58531 Representative total house income in the dwelling unit is $58531 +in.representative_income 58538 Representative total house income in the dwelling unit is $58538 +in.representative_income 58540 Representative total house income in the dwelling unit is $58540 +in.representative_income 58545 Representative total house income in the dwelling unit is $58545 +in.representative_income 58557 Representative total house income in the dwelling unit is $58557 +in.representative_income 58562 Representative total house income in the dwelling unit is $58562 +in.representative_income 58563 Representative total house income in the dwelling unit is $58563 +in.representative_income 58566 Representative total house income in the dwelling unit is $58566 +in.representative_income 58578 Representative total house income in the dwelling unit is $58578 +in.representative_income 58583 Representative total house income in the dwelling unit is $58583 +in.representative_income 58586 Representative total house income in the dwelling unit is $58586 +in.representative_income 58588 Representative total house income in the dwelling unit is $58588 +in.representative_income 58610 Representative total house income in the dwelling unit is $58610 +in.representative_income 58632 Representative total house income in the dwelling unit is $58632 +in.representative_income 58636 Representative total house income in the dwelling unit is $58636 +in.representative_income 58657 Representative total house income in the dwelling unit is $58657 +in.representative_income 58662 Representative total house income in the dwelling unit is $58662 +in.representative_income 58664 Representative total house income in the dwelling unit is $58664 +in.representative_income 58669 Representative total house income in the dwelling unit is $58669 +in.representative_income 58679 Representative total house income in the dwelling unit is $58679 +in.representative_income 58689 Representative total house income in the dwelling unit is $58689 +in.representative_income 58690 Representative total house income in the dwelling unit is $58690 +in.representative_income 58696 Representative total house income in the dwelling unit is $58696 +in.representative_income 58717 Representative total house income in the dwelling unit is $58717 +in.representative_income 58720 Representative total house income in the dwelling unit is $58720 +in.representative_income 58742 Representative total house income in the dwelling unit is $58742 +in.representative_income 58752 Representative total house income in the dwelling unit is $58752 +in.representative_income 58770 Representative total house income in the dwelling unit is $58770 +in.representative_income 58773 Representative total house income in the dwelling unit is $58773 +in.representative_income 58777 Representative total house income in the dwelling unit is $58777 +in.representative_income 58790 Representative total house income in the dwelling unit is $58790 +in.representative_income 58793 Representative total house income in the dwelling unit is $58793 +in.representative_income 58801 Representative total house income in the dwelling unit is $58801 +in.representative_income 58825 Representative total house income in the dwelling unit is $58825 +in.representative_income 58845 Representative total house income in the dwelling unit is $58845 +in.representative_income 58847 Representative total house income in the dwelling unit is $58847 +in.representative_income 58881 Representative total house income in the dwelling unit is $58881 +in.representative_income 58885 Representative total house income in the dwelling unit is $58885 +in.representative_income 58891 Representative total house income in the dwelling unit is $58891 +in.representative_income 58896 Representative total house income in the dwelling unit is $58896 +in.representative_income 58900 Representative total house income in the dwelling unit is $58900 +in.representative_income 58921 Representative total house income in the dwelling unit is $58921 +in.representative_income 58922 Representative total house income in the dwelling unit is $58922 +in.representative_income 58933 Representative total house income in the dwelling unit is $58933 +in.representative_income 58952 Representative total house income in the dwelling unit is $58952 +in.representative_income 58968 Representative total house income in the dwelling unit is $58968 +in.representative_income 58992 Representative total house income in the dwelling unit is $58992 +in.representative_income 58993 Representative total house income in the dwelling unit is $58993 +in.representative_income 58999 Representative total house income in the dwelling unit is $58999 +in.representative_income 59026 Representative total house income in the dwelling unit is $59026 +in.representative_income 59040 Representative total house income in the dwelling unit is $59040 +in.representative_income 59044 Representative total house income in the dwelling unit is $59044 +in.representative_income 59048 Representative total house income in the dwelling unit is $59048 +in.representative_income 59050 Representative total house income in the dwelling unit is $59050 +in.representative_income 59057 Representative total house income in the dwelling unit is $59057 +in.representative_income 59070 Representative total house income in the dwelling unit is $59070 +in.representative_income 59072 Representative total house income in the dwelling unit is $59072 +in.representative_income 59073 Representative total house income in the dwelling unit is $59073 +in.representative_income 59079 Representative total house income in the dwelling unit is $59079 +in.representative_income 59093 Representative total house income in the dwelling unit is $59093 +in.representative_income 59102 Representative total house income in the dwelling unit is $59102 +in.representative_income 59113 Representative total house income in the dwelling unit is $59113 +in.representative_income 59124 Representative total house income in the dwelling unit is $59124 +in.representative_income 59147 Representative total house income in the dwelling unit is $59147 +in.representative_income 59154 Representative total house income in the dwelling unit is $59154 +in.representative_income 59164 Representative total house income in the dwelling unit is $59164 +in.representative_income 59178 Representative total house income in the dwelling unit is $59178 +in.representative_income 59184 Representative total house income in the dwelling unit is $59184 +in.representative_income 59194 Representative total house income in the dwelling unit is $59194 +in.representative_income 59201 Representative total house income in the dwelling unit is $59201 +in.representative_income 59205 Representative total house income in the dwelling unit is $59205 +in.representative_income 59210 Representative total house income in the dwelling unit is $59210 +in.representative_income 59221 Representative total house income in the dwelling unit is $59221 +in.representative_income 59233 Representative total house income in the dwelling unit is $59233 +in.representative_income 59237 Representative total house income in the dwelling unit is $59237 +in.representative_income 59242 Representative total house income in the dwelling unit is $59242 +in.representative_income 59243 Representative total house income in the dwelling unit is $59243 +in.representative_income 59248 Representative total house income in the dwelling unit is $59248 +in.representative_income 59254 Representative total house income in the dwelling unit is $59254 +in.representative_income 59269 Representative total house income in the dwelling unit is $59269 +in.representative_income 59296 Representative total house income in the dwelling unit is $59296 +in.representative_income 59309 Representative total house income in the dwelling unit is $59309 +in.representative_income 59318 Representative total house income in the dwelling unit is $59318 +in.representative_income 59319 Representative total house income in the dwelling unit is $59319 +in.representative_income 59320 Representative total house income in the dwelling unit is $59320 +in.representative_income 59340 Representative total house income in the dwelling unit is $59340 +in.representative_income 59353 Representative total house income in the dwelling unit is $59353 +in.representative_income 59362 Representative total house income in the dwelling unit is $59362 +in.representative_income 59364 Representative total house income in the dwelling unit is $59364 +in.representative_income 59366 Representative total house income in the dwelling unit is $59366 +in.representative_income 59372 Representative total house income in the dwelling unit is $59372 +in.representative_income 59374 Representative total house income in the dwelling unit is $59374 +in.representative_income 59385 Representative total house income in the dwelling unit is $59385 +in.representative_income 59397 Representative total house income in the dwelling unit is $59397 +in.representative_income 59412 Representative total house income in the dwelling unit is $59412 +in.representative_income 59415 Representative total house income in the dwelling unit is $59415 +in.representative_income 59426 Representative total house income in the dwelling unit is $59426 +in.representative_income 59430 Representative total house income in the dwelling unit is $59430 +in.representative_income 59437 Representative total house income in the dwelling unit is $59437 +in.representative_income 59447 Representative total house income in the dwelling unit is $59447 +in.representative_income 59459 Representative total house income in the dwelling unit is $59459 +in.representative_income 59469 Representative total house income in the dwelling unit is $59469 +in.representative_income 59480 Representative total house income in the dwelling unit is $59480 +in.representative_income 59484 Representative total house income in the dwelling unit is $59484 +in.representative_income 59498 Representative total house income in the dwelling unit is $59498 +in.representative_income 59514 Representative total house income in the dwelling unit is $59514 +in.representative_income 59533 Representative total house income in the dwelling unit is $59533 +in.representative_income 59534 Representative total house income in the dwelling unit is $59534 +in.representative_income 59568 Representative total house income in the dwelling unit is $59568 +in.representative_income 59577 Representative total house income in the dwelling unit is $59577 +in.representative_income 59585 Representative total house income in the dwelling unit is $59585 +in.representative_income 59599 Representative total house income in the dwelling unit is $59599 +in.representative_income 59618 Representative total house income in the dwelling unit is $59618 +in.representative_income 59625 Representative total house income in the dwelling unit is $59625 +in.representative_income 59642 Representative total house income in the dwelling unit is $59642 +in.representative_income 59659 Representative total house income in the dwelling unit is $59659 +in.representative_income 59662 Representative total house income in the dwelling unit is $59662 +in.representative_income 59679 Representative total house income in the dwelling unit is $59679 +in.representative_income 59680 Representative total house income in the dwelling unit is $59680 +in.representative_income 59683 Representative total house income in the dwelling unit is $59683 +in.representative_income 59690 Representative total house income in the dwelling unit is $59690 +in.representative_income 59700 Representative total house income in the dwelling unit is $59700 +in.representative_income 59720 Representative total house income in the dwelling unit is $59720 +in.representative_income 59721 Representative total house income in the dwelling unit is $59721 +in.representative_income 59740 Representative total house income in the dwelling unit is $59740 +in.representative_income 59743 Representative total house income in the dwelling unit is $59743 +in.representative_income 59750 Representative total house income in the dwelling unit is $59750 +in.representative_income 59791 Representative total house income in the dwelling unit is $59791 +in.representative_income 59796 Representative total house income in the dwelling unit is $59796 +in.representative_income 59801 Representative total house income in the dwelling unit is $59801 +in.representative_income 59824 Representative total house income in the dwelling unit is $59824 +in.representative_income 59837 Representative total house income in the dwelling unit is $59837 +in.representative_income 59845 Representative total house income in the dwelling unit is $59845 +in.representative_income 59858 Representative total house income in the dwelling unit is $59858 +in.representative_income 59888 Representative total house income in the dwelling unit is $59888 +in.representative_income 59898 Representative total house income in the dwelling unit is $59898 +in.representative_income 59902 Representative total house income in the dwelling unit is $59902 +in.representative_income 59928 Representative total house income in the dwelling unit is $59928 +in.representative_income 59934 Representative total house income in the dwelling unit is $59934 +in.representative_income 59966 Representative total house income in the dwelling unit is $59966 +in.representative_income 60003 Representative total house income in the dwelling unit is $60003 +in.representative_income 60006 Representative total house income in the dwelling unit is $60006 +in.representative_income 60007 Representative total house income in the dwelling unit is $60007 +in.representative_income 60017 Representative total house income in the dwelling unit is $60017 +in.representative_income 60023 Representative total house income in the dwelling unit is $60023 +in.representative_income 60030 Representative total house income in the dwelling unit is $60030 +in.representative_income 60058 Representative total house income in the dwelling unit is $60058 +in.representative_income 60074 Representative total house income in the dwelling unit is $60074 +in.representative_income 60085 Representative total house income in the dwelling unit is $60085 +in.representative_income 60093 Representative total house income in the dwelling unit is $60093 +in.representative_income 60104 Representative total house income in the dwelling unit is $60104 +in.representative_income 60112 Representative total house income in the dwelling unit is $60112 +in.representative_income 60113 Representative total house income in the dwelling unit is $60113 +in.representative_income 60133 Representative total house income in the dwelling unit is $60133 +in.representative_income 60159 Representative total house income in the dwelling unit is $60159 +in.representative_income 60177 Representative total house income in the dwelling unit is $60177 +in.representative_income 60182 Representative total house income in the dwelling unit is $60182 +in.representative_income 60184 Representative total house income in the dwelling unit is $60184 +in.representative_income 60197 Representative total house income in the dwelling unit is $60197 +in.representative_income 60205 Representative total house income in the dwelling unit is $60205 +in.representative_income 60218 Representative total house income in the dwelling unit is $60218 +in.representative_income 60221 Representative total house income in the dwelling unit is $60221 +in.representative_income 60225 Representative total house income in the dwelling unit is $60225 +in.representative_income 60237 Representative total house income in the dwelling unit is $60237 +in.representative_income 60290 Representative total house income in the dwelling unit is $60290 +in.representative_income 60306 Representative total house income in the dwelling unit is $60306 +in.representative_income 60312 Representative total house income in the dwelling unit is $60312 +in.representative_income 60323 Representative total house income in the dwelling unit is $60323 +in.representative_income 60326 Representative total house income in the dwelling unit is $60326 +in.representative_income 60328 Representative total house income in the dwelling unit is $60328 +in.representative_income 60340 Representative total house income in the dwelling unit is $60340 +in.representative_income 60345 Representative total house income in the dwelling unit is $60345 +in.representative_income 60350 Representative total house income in the dwelling unit is $60350 +in.representative_income 60366 Representative total house income in the dwelling unit is $60366 +in.representative_income 60387 Representative total house income in the dwelling unit is $60387 +in.representative_income 60392 Representative total house income in the dwelling unit is $60392 +in.representative_income 60398 Representative total house income in the dwelling unit is $60398 +in.representative_income 60407 Representative total house income in the dwelling unit is $60407 +in.representative_income 60429 Representative total house income in the dwelling unit is $60429 +in.representative_income 60435 Representative total house income in the dwelling unit is $60435 +in.representative_income 60443 Representative total house income in the dwelling unit is $60443 +in.representative_income 60465 Representative total house income in the dwelling unit is $60465 +in.representative_income 60477 Representative total house income in the dwelling unit is $60477 +in.representative_income 60482 Representative total house income in the dwelling unit is $60482 +in.representative_income 60484 Representative total house income in the dwelling unit is $60484 +in.representative_income 60506 Representative total house income in the dwelling unit is $60506 +in.representative_income 60508 Representative total house income in the dwelling unit is $60508 +in.representative_income 60535 Representative total house income in the dwelling unit is $60535 +in.representative_income 60543 Representative total house income in the dwelling unit is $60543 +in.representative_income 60547 Representative total house income in the dwelling unit is $60547 +in.representative_income 60581 Representative total house income in the dwelling unit is $60581 +in.representative_income 60609 Representative total house income in the dwelling unit is $60609 +in.representative_income 60615 Representative total house income in the dwelling unit is $60615 +in.representative_income 60616 Representative total house income in the dwelling unit is $60616 +in.representative_income 60619 Representative total house income in the dwelling unit is $60619 +in.representative_income 60640 Representative total house income in the dwelling unit is $60640 +in.representative_income 60649 Representative total house income in the dwelling unit is $60649 +in.representative_income 60650 Representative total house income in the dwelling unit is $60650 +in.representative_income 60669 Representative total house income in the dwelling unit is $60669 +in.representative_income 60679 Representative total house income in the dwelling unit is $60679 +in.representative_income 60680 Representative total house income in the dwelling unit is $60680 +in.representative_income 60682 Representative total house income in the dwelling unit is $60682 +in.representative_income 60687 Representative total house income in the dwelling unit is $60687 +in.representative_income 60701 Representative total house income in the dwelling unit is $60701 +in.representative_income 60710 Representative total house income in the dwelling unit is $60710 +in.representative_income 60723 Representative total house income in the dwelling unit is $60723 +in.representative_income 60740 Representative total house income in the dwelling unit is $60740 +in.representative_income 60745 Representative total house income in the dwelling unit is $60745 +in.representative_income 60751 Representative total house income in the dwelling unit is $60751 +in.representative_income 60752 Representative total house income in the dwelling unit is $60752 +in.representative_income 60758 Representative total house income in the dwelling unit is $60758 +in.representative_income 60760 Representative total house income in the dwelling unit is $60760 +in.representative_income 60779 Representative total house income in the dwelling unit is $60779 +in.representative_income 60786 Representative total house income in the dwelling unit is $60786 +in.representative_income 60789 Representative total house income in the dwelling unit is $60789 +in.representative_income 60791 Representative total house income in the dwelling unit is $60791 +in.representative_income 60811 Representative total house income in the dwelling unit is $60811 +in.representative_income 60830 Representative total house income in the dwelling unit is $60830 +in.representative_income 60831 Representative total house income in the dwelling unit is $60831 +in.representative_income 60841 Representative total house income in the dwelling unit is $60841 +in.representative_income 60843 Representative total house income in the dwelling unit is $60843 +in.representative_income 60845 Representative total house income in the dwelling unit is $60845 +in.representative_income 60850 Representative total house income in the dwelling unit is $60850 +in.representative_income 60852 Representative total house income in the dwelling unit is $60852 +in.representative_income 60856 Representative total house income in the dwelling unit is $60856 +in.representative_income 60861 Representative total house income in the dwelling unit is $60861 +in.representative_income 60864 Representative total house income in the dwelling unit is $60864 +in.representative_income 60876 Representative total house income in the dwelling unit is $60876 +in.representative_income 60885 Representative total house income in the dwelling unit is $60885 +in.representative_income 60888 Representative total house income in the dwelling unit is $60888 +in.representative_income 60892 Representative total house income in the dwelling unit is $60892 +in.representative_income 60908 Representative total house income in the dwelling unit is $60908 +in.representative_income 60912 Representative total house income in the dwelling unit is $60912 +in.representative_income 60917 Representative total house income in the dwelling unit is $60917 +in.representative_income 60918 Representative total house income in the dwelling unit is $60918 +in.representative_income 60928 Representative total house income in the dwelling unit is $60928 +in.representative_income 60939 Representative total house income in the dwelling unit is $60939 +in.representative_income 60956 Representative total house income in the dwelling unit is $60956 +in.representative_income 60959 Representative total house income in the dwelling unit is $60959 +in.representative_income 60972 Representative total house income in the dwelling unit is $60972 +in.representative_income 60979 Representative total house income in the dwelling unit is $60979 +in.representative_income 61013 Representative total house income in the dwelling unit is $61013 +in.representative_income 61014 Representative total house income in the dwelling unit is $61014 +in.representative_income 61046 Representative total house income in the dwelling unit is $61046 +in.representative_income 61062 Representative total house income in the dwelling unit is $61062 +in.representative_income 61063 Representative total house income in the dwelling unit is $61063 +in.representative_income 61068 Representative total house income in the dwelling unit is $61068 +in.representative_income 61079 Representative total house income in the dwelling unit is $61079 +in.representative_income 61083 Representative total house income in the dwelling unit is $61083 +in.representative_income 61100 Representative total house income in the dwelling unit is $61100 +in.representative_income 61114 Representative total house income in the dwelling unit is $61114 +in.representative_income 61122 Representative total house income in the dwelling unit is $61122 +in.representative_income 61154 Representative total house income in the dwelling unit is $61154 +in.representative_income 61165 Representative total house income in the dwelling unit is $61165 +in.representative_income 61167 Representative total house income in the dwelling unit is $61167 +in.representative_income 61168 Representative total house income in the dwelling unit is $61168 +in.representative_income 61187 Representative total house income in the dwelling unit is $61187 +in.representative_income 61188 Representative total house income in the dwelling unit is $61188 +in.representative_income 61196 Representative total house income in the dwelling unit is $61196 +in.representative_income 61199 Representative total house income in the dwelling unit is $61199 +in.representative_income 61208 Representative total house income in the dwelling unit is $61208 +in.representative_income 61215 Representative total house income in the dwelling unit is $61215 +in.representative_income 61225 Representative total house income in the dwelling unit is $61225 +in.representative_income 61230 Representative total house income in the dwelling unit is $61230 +in.representative_income 61235 Representative total house income in the dwelling unit is $61235 +in.representative_income 61248 Representative total house income in the dwelling unit is $61248 +in.representative_income 61251 Representative total house income in the dwelling unit is $61251 +in.representative_income 61255 Representative total house income in the dwelling unit is $61255 +in.representative_income 61262 Representative total house income in the dwelling unit is $61262 +in.representative_income 61265 Representative total house income in the dwelling unit is $61265 +in.representative_income 61268 Representative total house income in the dwelling unit is $61268 +in.representative_income 61273 Representative total house income in the dwelling unit is $61273 +in.representative_income 61283 Representative total house income in the dwelling unit is $61283 +in.representative_income 61294 Representative total house income in the dwelling unit is $61294 +in.representative_income 61299 Representative total house income in the dwelling unit is $61299 +in.representative_income 61305 Representative total house income in the dwelling unit is $61305 +in.representative_income 61316 Representative total house income in the dwelling unit is $61316 +in.representative_income 61326 Representative total house income in the dwelling unit is $61326 +in.representative_income 61336 Representative total house income in the dwelling unit is $61336 +in.representative_income 61340 Representative total house income in the dwelling unit is $61340 +in.representative_income 61342 Representative total house income in the dwelling unit is $61342 +in.representative_income 61348 Representative total house income in the dwelling unit is $61348 +in.representative_income 61349 Representative total house income in the dwelling unit is $61349 +in.representative_income 61351 Representative total house income in the dwelling unit is $61351 +in.representative_income 61370 Representative total house income in the dwelling unit is $61370 +in.representative_income 61371 Representative total house income in the dwelling unit is $61371 +in.representative_income 61376 Representative total house income in the dwelling unit is $61376 +in.representative_income 61378 Representative total house income in the dwelling unit is $61378 +in.representative_income 61382 Representative total house income in the dwelling unit is $61382 +in.representative_income 61390 Representative total house income in the dwelling unit is $61390 +in.representative_income 61401 Representative total house income in the dwelling unit is $61401 +in.representative_income 61410 Representative total house income in the dwelling unit is $61410 +in.representative_income 61414 Representative total house income in the dwelling unit is $61414 +in.representative_income 61415 Representative total house income in the dwelling unit is $61415 +in.representative_income 61417 Representative total house income in the dwelling unit is $61417 +in.representative_income 61427 Representative total house income in the dwelling unit is $61427 +in.representative_income 61436 Representative total house income in the dwelling unit is $61436 +in.representative_income 61445 Representative total house income in the dwelling unit is $61445 +in.representative_income 61453 Representative total house income in the dwelling unit is $61453 +in.representative_income 61455 Representative total house income in the dwelling unit is $61455 +in.representative_income 61458 Representative total house income in the dwelling unit is $61458 +in.representative_income 61466 Representative total house income in the dwelling unit is $61466 +in.representative_income 61468 Representative total house income in the dwelling unit is $61468 +in.representative_income 61475 Representative total house income in the dwelling unit is $61475 +in.representative_income 61479 Representative total house income in the dwelling unit is $61479 +in.representative_income 61483 Representative total house income in the dwelling unit is $61483 +in.representative_income 61494 Representative total house income in the dwelling unit is $61494 +in.representative_income 61508 Representative total house income in the dwelling unit is $61508 +in.representative_income 61518 Representative total house income in the dwelling unit is $61518 +in.representative_income 61527 Representative total house income in the dwelling unit is $61527 +in.representative_income 61530 Representative total house income in the dwelling unit is $61530 +in.representative_income 61536 Representative total house income in the dwelling unit is $61536 +in.representative_income 61557 Representative total house income in the dwelling unit is $61557 +in.representative_income 61563 Representative total house income in the dwelling unit is $61563 +in.representative_income 61578 Representative total house income in the dwelling unit is $61578 +in.representative_income 61587 Representative total house income in the dwelling unit is $61587 +in.representative_income 61588 Representative total house income in the dwelling unit is $61588 +in.representative_income 61589 Representative total house income in the dwelling unit is $61589 +in.representative_income 61590 Representative total house income in the dwelling unit is $61590 +in.representative_income 61616 Representative total house income in the dwelling unit is $61616 +in.representative_income 61619 Representative total house income in the dwelling unit is $61619 +in.representative_income 61630 Representative total house income in the dwelling unit is $61630 +in.representative_income 61639 Representative total house income in the dwelling unit is $61639 +in.representative_income 61641 Representative total house income in the dwelling unit is $61641 +in.representative_income 61659 Representative total house income in the dwelling unit is $61659 +in.representative_income 61669 Representative total house income in the dwelling unit is $61669 +in.representative_income 61680 Representative total house income in the dwelling unit is $61680 +in.representative_income 61681 Representative total house income in the dwelling unit is $61681 +in.representative_income 61695 Representative total house income in the dwelling unit is $61695 +in.representative_income 61707 Representative total house income in the dwelling unit is $61707 +in.representative_income 61710 Representative total house income in the dwelling unit is $61710 +in.representative_income 61716 Representative total house income in the dwelling unit is $61716 +in.representative_income 61720 Representative total house income in the dwelling unit is $61720 +in.representative_income 61723 Representative total house income in the dwelling unit is $61723 +in.representative_income 61726 Representative total house income in the dwelling unit is $61726 +in.representative_income 61729 Representative total house income in the dwelling unit is $61729 +in.representative_income 61732 Representative total house income in the dwelling unit is $61732 +in.representative_income 61747 Representative total house income in the dwelling unit is $61747 +in.representative_income 61749 Representative total house income in the dwelling unit is $61749 +in.representative_income 61756 Representative total house income in the dwelling unit is $61756 +in.representative_income 61781 Representative total house income in the dwelling unit is $61781 +in.representative_income 61784 Representative total house income in the dwelling unit is $61784 +in.representative_income 61796 Representative total house income in the dwelling unit is $61796 +in.representative_income 61800 Representative total house income in the dwelling unit is $61800 +in.representative_income 61803 Representative total house income in the dwelling unit is $61803 +in.representative_income 61805 Representative total house income in the dwelling unit is $61805 +in.representative_income 61809 Representative total house income in the dwelling unit is $61809 +in.representative_income 61811 Representative total house income in the dwelling unit is $61811 +in.representative_income 61814 Representative total house income in the dwelling unit is $61814 +in.representative_income 61815 Representative total house income in the dwelling unit is $61815 +in.representative_income 61821 Representative total house income in the dwelling unit is $61821 +in.representative_income 61831 Representative total house income in the dwelling unit is $61831 +in.representative_income 61841 Representative total house income in the dwelling unit is $61841 +in.representative_income 61852 Representative total house income in the dwelling unit is $61852 +in.representative_income 61861 Representative total house income in the dwelling unit is $61861 +in.representative_income 61864 Representative total house income in the dwelling unit is $61864 +in.representative_income 61876 Representative total house income in the dwelling unit is $61876 +in.representative_income 61881 Representative total house income in the dwelling unit is $61881 +in.representative_income 61883 Representative total house income in the dwelling unit is $61883 +in.representative_income 61884 Representative total house income in the dwelling unit is $61884 +in.representative_income 61887 Representative total house income in the dwelling unit is $61887 +in.representative_income 61889 Representative total house income in the dwelling unit is $61889 +in.representative_income 61895 Representative total house income in the dwelling unit is $61895 +in.representative_income 61905 Representative total house income in the dwelling unit is $61905 +in.representative_income 61907 Representative total house income in the dwelling unit is $61907 +in.representative_income 61911 Representative total house income in the dwelling unit is $61911 +in.representative_income 61918 Representative total house income in the dwelling unit is $61918 +in.representative_income 61922 Representative total house income in the dwelling unit is $61922 +in.representative_income 61923 Representative total house income in the dwelling unit is $61923 +in.representative_income 61927 Representative total house income in the dwelling unit is $61927 +in.representative_income 61929 Representative total house income in the dwelling unit is $61929 +in.representative_income 61935 Representative total house income in the dwelling unit is $61935 +in.representative_income 61937 Representative total house income in the dwelling unit is $61937 +in.representative_income 61938 Representative total house income in the dwelling unit is $61938 +in.representative_income 61939 Representative total house income in the dwelling unit is $61939 +in.representative_income 61942 Representative total house income in the dwelling unit is $61942 +in.representative_income 61953 Representative total house income in the dwelling unit is $61953 +in.representative_income 61959 Representative total house income in the dwelling unit is $61959 +in.representative_income 61960 Representative total house income in the dwelling unit is $61960 +in.representative_income 61962 Representative total house income in the dwelling unit is $61962 +in.representative_income 61971 Representative total house income in the dwelling unit is $61971 +in.representative_income 61990 Representative total house income in the dwelling unit is $61990 +in.representative_income 61993 Representative total house income in the dwelling unit is $61993 +in.representative_income 62011 Representative total house income in the dwelling unit is $62011 +in.representative_income 62019 Representative total house income in the dwelling unit is $62019 +in.representative_income 62023 Representative total house income in the dwelling unit is $62023 +in.representative_income 62024 Representative total house income in the dwelling unit is $62024 +in.representative_income 62033 Representative total house income in the dwelling unit is $62033 +in.representative_income 62040 Representative total house income in the dwelling unit is $62040 +in.representative_income 62042 Representative total house income in the dwelling unit is $62042 +in.representative_income 62043 Representative total house income in the dwelling unit is $62043 +in.representative_income 62045 Representative total house income in the dwelling unit is $62045 +in.representative_income 62052 Representative total house income in the dwelling unit is $62052 +in.representative_income 62056 Representative total house income in the dwelling unit is $62056 +in.representative_income 62062 Representative total house income in the dwelling unit is $62062 +in.representative_income 62063 Representative total house income in the dwelling unit is $62063 +in.representative_income 62064 Representative total house income in the dwelling unit is $62064 +in.representative_income 62066 Representative total house income in the dwelling unit is $62066 +in.representative_income 62073 Representative total house income in the dwelling unit is $62073 +in.representative_income 62082 Representative total house income in the dwelling unit is $62082 +in.representative_income 62084 Representative total house income in the dwelling unit is $62084 +in.representative_income 62094 Representative total house income in the dwelling unit is $62094 +in.representative_income 62095 Representative total house income in the dwelling unit is $62095 +in.representative_income 62099 Representative total house income in the dwelling unit is $62099 +in.representative_income 62104 Representative total house income in the dwelling unit is $62104 +in.representative_income 62109 Representative total house income in the dwelling unit is $62109 +in.representative_income 62116 Representative total house income in the dwelling unit is $62116 +in.representative_income 62123 Representative total house income in the dwelling unit is $62123 +in.representative_income 62124 Representative total house income in the dwelling unit is $62124 +in.representative_income 62127 Representative total house income in the dwelling unit is $62127 +in.representative_income 62134 Representative total house income in the dwelling unit is $62134 +in.representative_income 62145 Representative total house income in the dwelling unit is $62145 +in.representative_income 62148 Representative total house income in the dwelling unit is $62148 +in.representative_income 62153 Representative total house income in the dwelling unit is $62153 +in.representative_income 62156 Representative total house income in the dwelling unit is $62156 +in.representative_income 62160 Representative total house income in the dwelling unit is $62160 +in.representative_income 62169 Representative total house income in the dwelling unit is $62169 +in.representative_income 62171 Representative total house income in the dwelling unit is $62171 +in.representative_income 62186 Representative total house income in the dwelling unit is $62186 +in.representative_income 62188 Representative total house income in the dwelling unit is $62188 +in.representative_income 62195 Representative total house income in the dwelling unit is $62195 +in.representative_income 62197 Representative total house income in the dwelling unit is $62197 +in.representative_income 62200 Representative total house income in the dwelling unit is $62200 +in.representative_income 62214 Representative total house income in the dwelling unit is $62214 +in.representative_income 62215 Representative total house income in the dwelling unit is $62215 +in.representative_income 62221 Representative total house income in the dwelling unit is $62221 +in.representative_income 62225 Representative total house income in the dwelling unit is $62225 +in.representative_income 62227 Representative total house income in the dwelling unit is $62227 +in.representative_income 62233 Representative total house income in the dwelling unit is $62233 +in.representative_income 62235 Representative total house income in the dwelling unit is $62235 +in.representative_income 62245 Representative total house income in the dwelling unit is $62245 +in.representative_income 62246 Representative total house income in the dwelling unit is $62246 +in.representative_income 62248 Representative total house income in the dwelling unit is $62248 +in.representative_income 62254 Representative total house income in the dwelling unit is $62254 +in.representative_income 62257 Representative total house income in the dwelling unit is $62257 +in.representative_income 62260 Representative total house income in the dwelling unit is $62260 +in.representative_income 62264 Representative total house income in the dwelling unit is $62264 +in.representative_income 62269 Representative total house income in the dwelling unit is $62269 +in.representative_income 62270 Representative total house income in the dwelling unit is $62270 +in.representative_income 62275 Representative total house income in the dwelling unit is $62275 +in.representative_income 62285 Representative total house income in the dwelling unit is $62285 +in.representative_income 62292 Representative total house income in the dwelling unit is $62292 +in.representative_income 62296 Representative total house income in the dwelling unit is $62296 +in.representative_income 62299 Representative total house income in the dwelling unit is $62299 +in.representative_income 62300 Representative total house income in the dwelling unit is $62300 +in.representative_income 62303 Representative total house income in the dwelling unit is $62303 +in.representative_income 62305 Representative total house income in the dwelling unit is $62305 +in.representative_income 62311 Representative total house income in the dwelling unit is $62311 +in.representative_income 62312 Representative total house income in the dwelling unit is $62312 +in.representative_income 62313 Representative total house income in the dwelling unit is $62313 +in.representative_income 62318 Representative total house income in the dwelling unit is $62318 +in.representative_income 62321 Representative total house income in the dwelling unit is $62321 +in.representative_income 62322 Representative total house income in the dwelling unit is $62322 +in.representative_income 62326 Representative total house income in the dwelling unit is $62326 +in.representative_income 62328 Representative total house income in the dwelling unit is $62328 +in.representative_income 62336 Representative total house income in the dwelling unit is $62336 +in.representative_income 62338 Representative total house income in the dwelling unit is $62338 +in.representative_income 62343 Representative total house income in the dwelling unit is $62343 +in.representative_income 62344 Representative total house income in the dwelling unit is $62344 +in.representative_income 62368 Representative total house income in the dwelling unit is $62368 +in.representative_income 62375 Representative total house income in the dwelling unit is $62375 +in.representative_income 62376 Representative total house income in the dwelling unit is $62376 +in.representative_income 62380 Representative total house income in the dwelling unit is $62380 +in.representative_income 62382 Representative total house income in the dwelling unit is $62382 +in.representative_income 62397 Representative total house income in the dwelling unit is $62397 +in.representative_income 62403 Representative total house income in the dwelling unit is $62403 +in.representative_income 62407 Representative total house income in the dwelling unit is $62407 +in.representative_income 62417 Representative total house income in the dwelling unit is $62417 +in.representative_income 62427 Representative total house income in the dwelling unit is $62427 +in.representative_income 62433 Representative total house income in the dwelling unit is $62433 +in.representative_income 62434 Representative total house income in the dwelling unit is $62434 +in.representative_income 62437 Representative total house income in the dwelling unit is $62437 +in.representative_income 62443 Representative total house income in the dwelling unit is $62443 +in.representative_income 62451 Representative total house income in the dwelling unit is $62451 +in.representative_income 62454 Representative total house income in the dwelling unit is $62454 +in.representative_income 62463 Representative total house income in the dwelling unit is $62463 +in.representative_income 62464 Representative total house income in the dwelling unit is $62464 +in.representative_income 62474 Representative total house income in the dwelling unit is $62474 +in.representative_income 62486 Representative total house income in the dwelling unit is $62486 +in.representative_income 62488 Representative total house income in the dwelling unit is $62488 +in.representative_income 62494 Representative total house income in the dwelling unit is $62494 +in.representative_income 62498 Representative total house income in the dwelling unit is $62498 +in.representative_income 62505 Representative total house income in the dwelling unit is $62505 +in.representative_income 62506 Representative total house income in the dwelling unit is $62506 +in.representative_income 62516 Representative total house income in the dwelling unit is $62516 +in.representative_income 62520 Representative total house income in the dwelling unit is $62520 +in.representative_income 62528 Representative total house income in the dwelling unit is $62528 +in.representative_income 62529 Representative total house income in the dwelling unit is $62529 +in.representative_income 62538 Representative total house income in the dwelling unit is $62538 +in.representative_income 62558 Representative total house income in the dwelling unit is $62558 +in.representative_income 62559 Representative total house income in the dwelling unit is $62559 +in.representative_income 62569 Representative total house income in the dwelling unit is $62569 +in.representative_income 62573 Representative total house income in the dwelling unit is $62573 +in.representative_income 62578 Representative total house income in the dwelling unit is $62578 +in.representative_income 62582 Representative total house income in the dwelling unit is $62582 +in.representative_income 62591 Representative total house income in the dwelling unit is $62591 +in.representative_income 62598 Representative total house income in the dwelling unit is $62598 +in.representative_income 62602 Representative total house income in the dwelling unit is $62602 +in.representative_income 62603 Representative total house income in the dwelling unit is $62603 +in.representative_income 62609 Representative total house income in the dwelling unit is $62609 +in.representative_income 62613 Representative total house income in the dwelling unit is $62613 +in.representative_income 62623 Representative total house income in the dwelling unit is $62623 +in.representative_income 62629 Representative total house income in the dwelling unit is $62629 +in.representative_income 62635 Representative total house income in the dwelling unit is $62635 +in.representative_income 62640 Representative total house income in the dwelling unit is $62640 +in.representative_income 62643 Representative total house income in the dwelling unit is $62643 +in.representative_income 62647 Representative total house income in the dwelling unit is $62647 +in.representative_income 62648 Representative total house income in the dwelling unit is $62648 +in.representative_income 62654 Representative total house income in the dwelling unit is $62654 +in.representative_income 62657 Representative total house income in the dwelling unit is $62657 +in.representative_income 62661 Representative total house income in the dwelling unit is $62661 +in.representative_income 62667 Representative total house income in the dwelling unit is $62667 +in.representative_income 62668 Representative total house income in the dwelling unit is $62668 +in.representative_income 62669 Representative total house income in the dwelling unit is $62669 +in.representative_income 62678 Representative total house income in the dwelling unit is $62678 +in.representative_income 62679 Representative total house income in the dwelling unit is $62679 +in.representative_income 62689 Representative total house income in the dwelling unit is $62689 +in.representative_income 62691 Representative total house income in the dwelling unit is $62691 +in.representative_income 62695 Representative total house income in the dwelling unit is $62695 +in.representative_income 62700 Representative total house income in the dwelling unit is $62700 +in.representative_income 62707 Representative total house income in the dwelling unit is $62707 +in.representative_income 62713 Representative total house income in the dwelling unit is $62713 +in.representative_income 62721 Representative total house income in the dwelling unit is $62721 +in.representative_income 62723 Representative total house income in the dwelling unit is $62723 +in.representative_income 62730 Representative total house income in the dwelling unit is $62730 +in.representative_income 62732 Representative total house income in the dwelling unit is $62732 +in.representative_income 62733 Representative total house income in the dwelling unit is $62733 +in.representative_income 62743 Representative total house income in the dwelling unit is $62743 +in.representative_income 62744 Representative total house income in the dwelling unit is $62744 +in.representative_income 62749 Representative total house income in the dwelling unit is $62749 +in.representative_income 62750 Representative total house income in the dwelling unit is $62750 +in.representative_income 62753 Representative total house income in the dwelling unit is $62753 +in.representative_income 62754 Representative total house income in the dwelling unit is $62754 +in.representative_income 62760 Representative total house income in the dwelling unit is $62760 +in.representative_income 62762 Representative total house income in the dwelling unit is $62762 +in.representative_income 62765 Representative total house income in the dwelling unit is $62765 +in.representative_income 62774 Representative total house income in the dwelling unit is $62774 +in.representative_income 62775 Representative total house income in the dwelling unit is $62775 +in.representative_income 62781 Representative total house income in the dwelling unit is $62781 +in.representative_income 62791 Representative total house income in the dwelling unit is $62791 +in.representative_income 62797 Representative total house income in the dwelling unit is $62797 +in.representative_income 62807 Representative total house income in the dwelling unit is $62807 +in.representative_income 62815 Representative total house income in the dwelling unit is $62815 +in.representative_income 62818 Representative total house income in the dwelling unit is $62818 +in.representative_income 62829 Representative total house income in the dwelling unit is $62829 +in.representative_income 62831 Representative total house income in the dwelling unit is $62831 +in.representative_income 62839 Representative total house income in the dwelling unit is $62839 +in.representative_income 62844 Representative total house income in the dwelling unit is $62844 +in.representative_income 62850 Representative total house income in the dwelling unit is $62850 +in.representative_income 62851 Representative total house income in the dwelling unit is $62851 +in.representative_income 62854 Representative total house income in the dwelling unit is $62854 +in.representative_income 62857 Representative total house income in the dwelling unit is $62857 +in.representative_income 62861 Representative total house income in the dwelling unit is $62861 +in.representative_income 62867 Representative total house income in the dwelling unit is $62867 +in.representative_income 62871 Representative total house income in the dwelling unit is $62871 +in.representative_income 62882 Representative total house income in the dwelling unit is $62882 +in.representative_income 62883 Representative total house income in the dwelling unit is $62883 +in.representative_income 62887 Representative total house income in the dwelling unit is $62887 +in.representative_income 62893 Representative total house income in the dwelling unit is $62893 +in.representative_income 62902 Representative total house income in the dwelling unit is $62902 +in.representative_income 62904 Representative total house income in the dwelling unit is $62904 +in.representative_income 62915 Representative total house income in the dwelling unit is $62915 +in.representative_income 62918 Representative total house income in the dwelling unit is $62918 +in.representative_income 62926 Representative total house income in the dwelling unit is $62926 +in.representative_income 62929 Representative total house income in the dwelling unit is $62929 +in.representative_income 62932 Representative total house income in the dwelling unit is $62932 +in.representative_income 62937 Representative total house income in the dwelling unit is $62937 +in.representative_income 62940 Representative total house income in the dwelling unit is $62940 +in.representative_income 62942 Representative total house income in the dwelling unit is $62942 +in.representative_income 62948 Representative total house income in the dwelling unit is $62948 +in.representative_income 62950 Representative total house income in the dwelling unit is $62950 +in.representative_income 62958 Representative total house income in the dwelling unit is $62958 +in.representative_income 62960 Representative total house income in the dwelling unit is $62960 +in.representative_income 62962 Representative total house income in the dwelling unit is $62962 +in.representative_income 62969 Representative total house income in the dwelling unit is $62969 +in.representative_income 62977 Representative total house income in the dwelling unit is $62977 +in.representative_income 62981 Representative total house income in the dwelling unit is $62981 +in.representative_income 62983 Representative total house income in the dwelling unit is $62983 +in.representative_income 62988 Representative total house income in the dwelling unit is $62988 +in.representative_income 62990 Representative total house income in the dwelling unit is $62990 +in.representative_income 62992 Representative total house income in the dwelling unit is $62992 +in.representative_income 62996 Representative total house income in the dwelling unit is $62996 +in.representative_income 63012 Representative total house income in the dwelling unit is $63012 +in.representative_income 63022 Representative total house income in the dwelling unit is $63022 +in.representative_income 63029 Representative total house income in the dwelling unit is $63029 +in.representative_income 63032 Representative total house income in the dwelling unit is $63032 +in.representative_income 63033 Representative total house income in the dwelling unit is $63033 +in.representative_income 63035 Representative total house income in the dwelling unit is $63035 +in.representative_income 63053 Representative total house income in the dwelling unit is $63053 +in.representative_income 63055 Representative total house income in the dwelling unit is $63055 +in.representative_income 63066 Representative total house income in the dwelling unit is $63066 +in.representative_income 63067 Representative total house income in the dwelling unit is $63067 +in.representative_income 63073 Representative total house income in the dwelling unit is $63073 +in.representative_income 63084 Representative total house income in the dwelling unit is $63084 +in.representative_income 63086 Representative total house income in the dwelling unit is $63086 +in.representative_income 63089 Representative total house income in the dwelling unit is $63089 +in.representative_income 63090 Representative total house income in the dwelling unit is $63090 +in.representative_income 63093 Representative total house income in the dwelling unit is $63093 +in.representative_income 63094 Representative total house income in the dwelling unit is $63094 +in.representative_income 63097 Representative total house income in the dwelling unit is $63097 +in.representative_income 63099 Representative total house income in the dwelling unit is $63099 +in.representative_income 63100 Representative total house income in the dwelling unit is $63100 +in.representative_income 63101 Representative total house income in the dwelling unit is $63101 +in.representative_income 63102 Representative total house income in the dwelling unit is $63102 +in.representative_income 63111 Representative total house income in the dwelling unit is $63111 +in.representative_income 63112 Representative total house income in the dwelling unit is $63112 +in.representative_income 63115 Representative total house income in the dwelling unit is $63115 +in.representative_income 63118 Representative total house income in the dwelling unit is $63118 +in.representative_income 63122 Representative total house income in the dwelling unit is $63122 +in.representative_income 63125 Representative total house income in the dwelling unit is $63125 +in.representative_income 63134 Representative total house income in the dwelling unit is $63134 +in.representative_income 63141 Representative total house income in the dwelling unit is $63141 +in.representative_income 63143 Representative total house income in the dwelling unit is $63143 +in.representative_income 63144 Representative total house income in the dwelling unit is $63144 +in.representative_income 63150 Representative total house income in the dwelling unit is $63150 +in.representative_income 63151 Representative total house income in the dwelling unit is $63151 +in.representative_income 63171 Representative total house income in the dwelling unit is $63171 +in.representative_income 63173 Representative total house income in the dwelling unit is $63173 +in.representative_income 63177 Representative total house income in the dwelling unit is $63177 +in.representative_income 63178 Representative total house income in the dwelling unit is $63178 +in.representative_income 63181 Representative total house income in the dwelling unit is $63181 +in.representative_income 63183 Representative total house income in the dwelling unit is $63183 +in.representative_income 63185 Representative total house income in the dwelling unit is $63185 +in.representative_income 63186 Representative total house income in the dwelling unit is $63186 +in.representative_income 63192 Representative total house income in the dwelling unit is $63192 +in.representative_income 63197 Representative total house income in the dwelling unit is $63197 +in.representative_income 63201 Representative total house income in the dwelling unit is $63201 +in.representative_income 63208 Representative total house income in the dwelling unit is $63208 +in.representative_income 63217 Representative total house income in the dwelling unit is $63217 +in.representative_income 63224 Representative total house income in the dwelling unit is $63224 +in.representative_income 63226 Representative total house income in the dwelling unit is $63226 +in.representative_income 63227 Representative total house income in the dwelling unit is $63227 +in.representative_income 63228 Representative total house income in the dwelling unit is $63228 +in.representative_income 63229 Representative total house income in the dwelling unit is $63229 +in.representative_income 63234 Representative total house income in the dwelling unit is $63234 +in.representative_income 63235 Representative total house income in the dwelling unit is $63235 +in.representative_income 63240 Representative total house income in the dwelling unit is $63240 +in.representative_income 63255 Representative total house income in the dwelling unit is $63255 +in.representative_income 63258 Representative total house income in the dwelling unit is $63258 +in.representative_income 63265 Representative total house income in the dwelling unit is $63265 +in.representative_income 63269 Representative total house income in the dwelling unit is $63269 +in.representative_income 63275 Representative total house income in the dwelling unit is $63275 +in.representative_income 63276 Representative total house income in the dwelling unit is $63276 +in.representative_income 63280 Representative total house income in the dwelling unit is $63280 +in.representative_income 63287 Representative total house income in the dwelling unit is $63287 +in.representative_income 63294 Representative total house income in the dwelling unit is $63294 +in.representative_income 63296 Representative total house income in the dwelling unit is $63296 +in.representative_income 63297 Representative total house income in the dwelling unit is $63297 +in.representative_income 63302 Representative total house income in the dwelling unit is $63302 +in.representative_income 63303 Representative total house income in the dwelling unit is $63303 +in.representative_income 63305 Representative total house income in the dwelling unit is $63305 +in.representative_income 63308 Representative total house income in the dwelling unit is $63308 +in.representative_income 63310 Representative total house income in the dwelling unit is $63310 +in.representative_income 63316 Representative total house income in the dwelling unit is $63316 +in.representative_income 63319 Representative total house income in the dwelling unit is $63319 +in.representative_income 63321 Representative total house income in the dwelling unit is $63321 +in.representative_income 63323 Representative total house income in the dwelling unit is $63323 +in.representative_income 63329 Representative total house income in the dwelling unit is $63329 +in.representative_income 63331 Representative total house income in the dwelling unit is $63331 +in.representative_income 63334 Representative total house income in the dwelling unit is $63334 +in.representative_income 63336 Representative total house income in the dwelling unit is $63336 +in.representative_income 63337 Representative total house income in the dwelling unit is $63337 +in.representative_income 63338 Representative total house income in the dwelling unit is $63338 +in.representative_income 63340 Representative total house income in the dwelling unit is $63340 +in.representative_income 63341 Representative total house income in the dwelling unit is $63341 +in.representative_income 63344 Representative total house income in the dwelling unit is $63344 +in.representative_income 63346 Representative total house income in the dwelling unit is $63346 +in.representative_income 63348 Representative total house income in the dwelling unit is $63348 +in.representative_income 63350 Representative total house income in the dwelling unit is $63350 +in.representative_income 63355 Representative total house income in the dwelling unit is $63355 +in.representative_income 63357 Representative total house income in the dwelling unit is $63357 +in.representative_income 63361 Representative total house income in the dwelling unit is $63361 +in.representative_income 63362 Representative total house income in the dwelling unit is $63362 +in.representative_income 63365 Representative total house income in the dwelling unit is $63365 +in.representative_income 63370 Representative total house income in the dwelling unit is $63370 +in.representative_income 63372 Representative total house income in the dwelling unit is $63372 +in.representative_income 63376 Representative total house income in the dwelling unit is $63376 +in.representative_income 63378 Representative total house income in the dwelling unit is $63378 +in.representative_income 63381 Representative total house income in the dwelling unit is $63381 +in.representative_income 63382 Representative total house income in the dwelling unit is $63382 +in.representative_income 63387 Representative total house income in the dwelling unit is $63387 +in.representative_income 63395 Representative total house income in the dwelling unit is $63395 +in.representative_income 63403 Representative total house income in the dwelling unit is $63403 +in.representative_income 63407 Representative total house income in the dwelling unit is $63407 +in.representative_income 63409 Representative total house income in the dwelling unit is $63409 +in.representative_income 63413 Representative total house income in the dwelling unit is $63413 +in.representative_income 63414 Representative total house income in the dwelling unit is $63414 +in.representative_income 63417 Representative total house income in the dwelling unit is $63417 +in.representative_income 63420 Representative total house income in the dwelling unit is $63420 +in.representative_income 63424 Representative total house income in the dwelling unit is $63424 +in.representative_income 63433 Representative total house income in the dwelling unit is $63433 +in.representative_income 63434 Representative total house income in the dwelling unit is $63434 +in.representative_income 63435 Representative total house income in the dwelling unit is $63435 +in.representative_income 63437 Representative total house income in the dwelling unit is $63437 +in.representative_income 63439 Representative total house income in the dwelling unit is $63439 +in.representative_income 63441 Representative total house income in the dwelling unit is $63441 +in.representative_income 63445 Representative total house income in the dwelling unit is $63445 +in.representative_income 63462 Representative total house income in the dwelling unit is $63462 +in.representative_income 63468 Representative total house income in the dwelling unit is $63468 +in.representative_income 63471 Representative total house income in the dwelling unit is $63471 +in.representative_income 63473 Representative total house income in the dwelling unit is $63473 +in.representative_income 63476 Representative total house income in the dwelling unit is $63476 +in.representative_income 63477 Representative total house income in the dwelling unit is $63477 +in.representative_income 63478 Representative total house income in the dwelling unit is $63478 +in.representative_income 63480 Representative total house income in the dwelling unit is $63480 +in.representative_income 63484 Representative total house income in the dwelling unit is $63484 +in.representative_income 63488 Representative total house income in the dwelling unit is $63488 +in.representative_income 63491 Representative total house income in the dwelling unit is $63491 +in.representative_income 63498 Representative total house income in the dwelling unit is $63498 +in.representative_income 63505 Representative total house income in the dwelling unit is $63505 +in.representative_income 63507 Representative total house income in the dwelling unit is $63507 +in.representative_income 63510 Representative total house income in the dwelling unit is $63510 +in.representative_income 63512 Representative total house income in the dwelling unit is $63512 +in.representative_income 63516 Representative total house income in the dwelling unit is $63516 +in.representative_income 63518 Representative total house income in the dwelling unit is $63518 +in.representative_income 63519 Representative total house income in the dwelling unit is $63519 +in.representative_income 63526 Representative total house income in the dwelling unit is $63526 +in.representative_income 63531 Representative total house income in the dwelling unit is $63531 +in.representative_income 63532 Representative total house income in the dwelling unit is $63532 +in.representative_income 63537 Representative total house income in the dwelling unit is $63537 +in.representative_income 63538 Representative total house income in the dwelling unit is $63538 +in.representative_income 63540 Representative total house income in the dwelling unit is $63540 +in.representative_income 63548 Representative total house income in the dwelling unit is $63548 +in.representative_income 63549 Representative total house income in the dwelling unit is $63549 +in.representative_income 63550 Representative total house income in the dwelling unit is $63550 +in.representative_income 63553 Representative total house income in the dwelling unit is $63553 +in.representative_income 63558 Representative total house income in the dwelling unit is $63558 +in.representative_income 63561 Representative total house income in the dwelling unit is $63561 +in.representative_income 63562 Representative total house income in the dwelling unit is $63562 +in.representative_income 63568 Representative total house income in the dwelling unit is $63568 +in.representative_income 63571 Representative total house income in the dwelling unit is $63571 +in.representative_income 63575 Representative total house income in the dwelling unit is $63575 +in.representative_income 63579 Representative total house income in the dwelling unit is $63579 +in.representative_income 63583 Representative total house income in the dwelling unit is $63583 +in.representative_income 63588 Representative total house income in the dwelling unit is $63588 +in.representative_income 63589 Representative total house income in the dwelling unit is $63589 +in.representative_income 63592 Representative total house income in the dwelling unit is $63592 +in.representative_income 63593 Representative total house income in the dwelling unit is $63593 +in.representative_income 63602 Representative total house income in the dwelling unit is $63602 +in.representative_income 63603 Representative total house income in the dwelling unit is $63603 +in.representative_income 63613 Representative total house income in the dwelling unit is $63613 +in.representative_income 63614 Representative total house income in the dwelling unit is $63614 +in.representative_income 63616 Representative total house income in the dwelling unit is $63616 +in.representative_income 63619 Representative total house income in the dwelling unit is $63619 +in.representative_income 63622 Representative total house income in the dwelling unit is $63622 +in.representative_income 63624 Representative total house income in the dwelling unit is $63624 +in.representative_income 63634 Representative total house income in the dwelling unit is $63634 +in.representative_income 63635 Representative total house income in the dwelling unit is $63635 +in.representative_income 63639 Representative total house income in the dwelling unit is $63639 +in.representative_income 63641 Representative total house income in the dwelling unit is $63641 +in.representative_income 63643 Representative total house income in the dwelling unit is $63643 +in.representative_income 63645 Representative total house income in the dwelling unit is $63645 +in.representative_income 63649 Representative total house income in the dwelling unit is $63649 +in.representative_income 63650 Representative total house income in the dwelling unit is $63650 +in.representative_income 63651 Representative total house income in the dwelling unit is $63651 +in.representative_income 63655 Representative total house income in the dwelling unit is $63655 +in.representative_income 63659 Representative total house income in the dwelling unit is $63659 +in.representative_income 63661 Representative total house income in the dwelling unit is $63661 +in.representative_income 63668 Representative total house income in the dwelling unit is $63668 +in.representative_income 63669 Representative total house income in the dwelling unit is $63669 +in.representative_income 63670 Representative total house income in the dwelling unit is $63670 +in.representative_income 63671 Representative total house income in the dwelling unit is $63671 +in.representative_income 63677 Representative total house income in the dwelling unit is $63677 +in.representative_income 63680 Representative total house income in the dwelling unit is $63680 +in.representative_income 63690 Representative total house income in the dwelling unit is $63690 +in.representative_income 63692 Representative total house income in the dwelling unit is $63692 +in.representative_income 63693 Representative total house income in the dwelling unit is $63693 +in.representative_income 63698 Representative total house income in the dwelling unit is $63698 +in.representative_income 63704 Representative total house income in the dwelling unit is $63704 +in.representative_income 63715 Representative total house income in the dwelling unit is $63715 +in.representative_income 63717 Representative total house income in the dwelling unit is $63717 +in.representative_income 63719 Representative total house income in the dwelling unit is $63719 +in.representative_income 63726 Representative total house income in the dwelling unit is $63726 +in.representative_income 63727 Representative total house income in the dwelling unit is $63727 +in.representative_income 63728 Representative total house income in the dwelling unit is $63728 +in.representative_income 63731 Representative total house income in the dwelling unit is $63731 +in.representative_income 63736 Representative total house income in the dwelling unit is $63736 +in.representative_income 63740 Representative total house income in the dwelling unit is $63740 +in.representative_income 63744 Representative total house income in the dwelling unit is $63744 +in.representative_income 63747 Representative total house income in the dwelling unit is $63747 +in.representative_income 63748 Representative total house income in the dwelling unit is $63748 +in.representative_income 63749 Representative total house income in the dwelling unit is $63749 +in.representative_income 63751 Representative total house income in the dwelling unit is $63751 +in.representative_income 63752 Representative total house income in the dwelling unit is $63752 +in.representative_income 63754 Representative total house income in the dwelling unit is $63754 +in.representative_income 63761 Representative total house income in the dwelling unit is $63761 +in.representative_income 63763 Representative total house income in the dwelling unit is $63763 +in.representative_income 63764 Representative total house income in the dwelling unit is $63764 +in.representative_income 63769 Representative total house income in the dwelling unit is $63769 +in.representative_income 63776 Representative total house income in the dwelling unit is $63776 +in.representative_income 63781 Representative total house income in the dwelling unit is $63781 +in.representative_income 63782 Representative total house income in the dwelling unit is $63782 +in.representative_income 63784 Representative total house income in the dwelling unit is $63784 +in.representative_income 63791 Representative total house income in the dwelling unit is $63791 +in.representative_income 63800 Representative total house income in the dwelling unit is $63800 +in.representative_income 63802 Representative total house income in the dwelling unit is $63802 +in.representative_income 63803 Representative total house income in the dwelling unit is $63803 +in.representative_income 63804 Representative total house income in the dwelling unit is $63804 +in.representative_income 63806 Representative total house income in the dwelling unit is $63806 +in.representative_income 63809 Representative total house income in the dwelling unit is $63809 +in.representative_income 63823 Representative total house income in the dwelling unit is $63823 +in.representative_income 63824 Representative total house income in the dwelling unit is $63824 +in.representative_income 63825 Representative total house income in the dwelling unit is $63825 +in.representative_income 63828 Representative total house income in the dwelling unit is $63828 +in.representative_income 63831 Representative total house income in the dwelling unit is $63831 +in.representative_income 63835 Representative total house income in the dwelling unit is $63835 +in.representative_income 63838 Representative total house income in the dwelling unit is $63838 +in.representative_income 63841 Representative total house income in the dwelling unit is $63841 +in.representative_income 63842 Representative total house income in the dwelling unit is $63842 +in.representative_income 63846 Representative total house income in the dwelling unit is $63846 +in.representative_income 63856 Representative total house income in the dwelling unit is $63856 +in.representative_income 63857 Representative total house income in the dwelling unit is $63857 +in.representative_income 63858 Representative total house income in the dwelling unit is $63858 +in.representative_income 63859 Representative total house income in the dwelling unit is $63859 +in.representative_income 63865 Representative total house income in the dwelling unit is $63865 +in.representative_income 63866 Representative total house income in the dwelling unit is $63866 +in.representative_income 63867 Representative total house income in the dwelling unit is $63867 +in.representative_income 63870 Representative total house income in the dwelling unit is $63870 +in.representative_income 63871 Representative total house income in the dwelling unit is $63871 +in.representative_income 63882 Representative total house income in the dwelling unit is $63882 +in.representative_income 63888 Representative total house income in the dwelling unit is $63888 +in.representative_income 63891 Representative total house income in the dwelling unit is $63891 +in.representative_income 63892 Representative total house income in the dwelling unit is $63892 +in.representative_income 63895 Representative total house income in the dwelling unit is $63895 +in.representative_income 63898 Representative total house income in the dwelling unit is $63898 +in.representative_income 63899 Representative total house income in the dwelling unit is $63899 +in.representative_income 63902 Representative total house income in the dwelling unit is $63902 +in.representative_income 63909 Representative total house income in the dwelling unit is $63909 +in.representative_income 63910 Representative total house income in the dwelling unit is $63910 +in.representative_income 63912 Representative total house income in the dwelling unit is $63912 +in.representative_income 63919 Representative total house income in the dwelling unit is $63919 +in.representative_income 63921 Representative total house income in the dwelling unit is $63921 +in.representative_income 63922 Representative total house income in the dwelling unit is $63922 +in.representative_income 63923 Representative total house income in the dwelling unit is $63923 +in.representative_income 63930 Representative total house income in the dwelling unit is $63930 +in.representative_income 63941 Representative total house income in the dwelling unit is $63941 +in.representative_income 63942 Representative total house income in the dwelling unit is $63942 +in.representative_income 63950 Representative total house income in the dwelling unit is $63950 +in.representative_income 63952 Representative total house income in the dwelling unit is $63952 +in.representative_income 63953 Representative total house income in the dwelling unit is $63953 +in.representative_income 63963 Representative total house income in the dwelling unit is $63963 +in.representative_income 63964 Representative total house income in the dwelling unit is $63964 +in.representative_income 63965 Representative total house income in the dwelling unit is $63965 +in.representative_income 63966 Representative total house income in the dwelling unit is $63966 +in.representative_income 63971 Representative total house income in the dwelling unit is $63971 +in.representative_income 63973 Representative total house income in the dwelling unit is $63973 +in.representative_income 63978 Representative total house income in the dwelling unit is $63978 +in.representative_income 63979 Representative total house income in the dwelling unit is $63979 +in.representative_income 63983 Representative total house income in the dwelling unit is $63983 +in.representative_income 63988 Representative total house income in the dwelling unit is $63988 +in.representative_income 63992 Representative total house income in the dwelling unit is $63992 +in.representative_income 63999 Representative total house income in the dwelling unit is $63999 +in.representative_income 64001 Representative total house income in the dwelling unit is $64001 +in.representative_income 64003 Representative total house income in the dwelling unit is $64003 +in.representative_income 64011 Representative total house income in the dwelling unit is $64011 +in.representative_income 64012 Representative total house income in the dwelling unit is $64012 +in.representative_income 64014 Representative total house income in the dwelling unit is $64014 +in.representative_income 64018 Representative total house income in the dwelling unit is $64018 +in.representative_income 64019 Representative total house income in the dwelling unit is $64019 +in.representative_income 64023 Representative total house income in the dwelling unit is $64023 +in.representative_income 64025 Representative total house income in the dwelling unit is $64025 +in.representative_income 64029 Representative total house income in the dwelling unit is $64029 +in.representative_income 64031 Representative total house income in the dwelling unit is $64031 +in.representative_income 64033 Representative total house income in the dwelling unit is $64033 +in.representative_income 64036 Representative total house income in the dwelling unit is $64036 +in.representative_income 64043 Representative total house income in the dwelling unit is $64043 +in.representative_income 64053 Representative total house income in the dwelling unit is $64053 +in.representative_income 64063 Representative total house income in the dwelling unit is $64063 +in.representative_income 64065 Representative total house income in the dwelling unit is $64065 +in.representative_income 64072 Representative total house income in the dwelling unit is $64072 +in.representative_income 64075 Representative total house income in the dwelling unit is $64075 +in.representative_income 64076 Representative total house income in the dwelling unit is $64076 +in.representative_income 64077 Representative total house income in the dwelling unit is $64077 +in.representative_income 64078 Representative total house income in the dwelling unit is $64078 +in.representative_income 64080 Representative total house income in the dwelling unit is $64080 +in.representative_income 64084 Representative total house income in the dwelling unit is $64084 +in.representative_income 64085 Representative total house income in the dwelling unit is $64085 +in.representative_income 64086 Representative total house income in the dwelling unit is $64086 +in.representative_income 64088 Representative total house income in the dwelling unit is $64088 +in.representative_income 64090 Representative total house income in the dwelling unit is $64090 +in.representative_income 64094 Representative total house income in the dwelling unit is $64094 +in.representative_income 64096 Representative total house income in the dwelling unit is $64096 +in.representative_income 64101 Representative total house income in the dwelling unit is $64101 +in.representative_income 64104 Representative total house income in the dwelling unit is $64104 +in.representative_income 64106 Representative total house income in the dwelling unit is $64106 +in.representative_income 64109 Representative total house income in the dwelling unit is $64109 +in.representative_income 64113 Representative total house income in the dwelling unit is $64113 +in.representative_income 64115 Representative total house income in the dwelling unit is $64115 +in.representative_income 64121 Representative total house income in the dwelling unit is $64121 +in.representative_income 64126 Representative total house income in the dwelling unit is $64126 +in.representative_income 64128 Representative total house income in the dwelling unit is $64128 +in.representative_income 64129 Representative total house income in the dwelling unit is $64129 +in.representative_income 64131 Representative total house income in the dwelling unit is $64131 +in.representative_income 64136 Representative total house income in the dwelling unit is $64136 +in.representative_income 64139 Representative total house income in the dwelling unit is $64139 +in.representative_income 64144 Representative total house income in the dwelling unit is $64144 +in.representative_income 64146 Representative total house income in the dwelling unit is $64146 +in.representative_income 64154 Representative total house income in the dwelling unit is $64154 +in.representative_income 64156 Representative total house income in the dwelling unit is $64156 +in.representative_income 64160 Representative total house income in the dwelling unit is $64160 +in.representative_income 64162 Representative total house income in the dwelling unit is $64162 +in.representative_income 64164 Representative total house income in the dwelling unit is $64164 +in.representative_income 64167 Representative total house income in the dwelling unit is $64167 +in.representative_income 64178 Representative total house income in the dwelling unit is $64178 +in.representative_income 64180 Representative total house income in the dwelling unit is $64180 +in.representative_income 64183 Representative total house income in the dwelling unit is $64183 +in.representative_income 64187 Representative total house income in the dwelling unit is $64187 +in.representative_income 64189 Representative total house income in the dwelling unit is $64189 +in.representative_income 64191 Representative total house income in the dwelling unit is $64191 +in.representative_income 64192 Representative total house income in the dwelling unit is $64192 +in.representative_income 64195 Representative total house income in the dwelling unit is $64195 +in.representative_income 64198 Representative total house income in the dwelling unit is $64198 +in.representative_income 64200 Representative total house income in the dwelling unit is $64200 +in.representative_income 64201 Representative total house income in the dwelling unit is $64201 +in.representative_income 64208 Representative total house income in the dwelling unit is $64208 +in.representative_income 64215 Representative total house income in the dwelling unit is $64215 +in.representative_income 64216 Representative total house income in the dwelling unit is $64216 +in.representative_income 64225 Representative total house income in the dwelling unit is $64225 +in.representative_income 64226 Representative total house income in the dwelling unit is $64226 +in.representative_income 64230 Representative total house income in the dwelling unit is $64230 +in.representative_income 64234 Representative total house income in the dwelling unit is $64234 +in.representative_income 64235 Representative total house income in the dwelling unit is $64235 +in.representative_income 64236 Representative total house income in the dwelling unit is $64236 +in.representative_income 64245 Representative total house income in the dwelling unit is $64245 +in.representative_income 64246 Representative total house income in the dwelling unit is $64246 +in.representative_income 64260 Representative total house income in the dwelling unit is $64260 +in.representative_income 64266 Representative total house income in the dwelling unit is $64266 +in.representative_income 64268 Representative total house income in the dwelling unit is $64268 +in.representative_income 64276 Representative total house income in the dwelling unit is $64276 +in.representative_income 64277 Representative total house income in the dwelling unit is $64277 +in.representative_income 64288 Representative total house income in the dwelling unit is $64288 +in.representative_income 64299 Representative total house income in the dwelling unit is $64299 +in.representative_income 64310 Representative total house income in the dwelling unit is $64310 +in.representative_income 64311 Representative total house income in the dwelling unit is $64311 +in.representative_income 64315 Representative total house income in the dwelling unit is $64315 +in.representative_income 64326 Representative total house income in the dwelling unit is $64326 +in.representative_income 64331 Representative total house income in the dwelling unit is $64331 +in.representative_income 64337 Representative total house income in the dwelling unit is $64337 +in.representative_income 64340 Representative total house income in the dwelling unit is $64340 +in.representative_income 64342 Representative total house income in the dwelling unit is $64342 +in.representative_income 64346 Representative total house income in the dwelling unit is $64346 +in.representative_income 64352 Representative total house income in the dwelling unit is $64352 +in.representative_income 64353 Representative total house income in the dwelling unit is $64353 +in.representative_income 64354 Representative total house income in the dwelling unit is $64354 +in.representative_income 64357 Representative total house income in the dwelling unit is $64357 +in.representative_income 64362 Representative total house income in the dwelling unit is $64362 +in.representative_income 64363 Representative total house income in the dwelling unit is $64363 +in.representative_income 64366 Representative total house income in the dwelling unit is $64366 +in.representative_income 64374 Representative total house income in the dwelling unit is $64374 +in.representative_income 64375 Representative total house income in the dwelling unit is $64375 +in.representative_income 64377 Representative total house income in the dwelling unit is $64377 +in.representative_income 64393 Representative total house income in the dwelling unit is $64393 +in.representative_income 64396 Representative total house income in the dwelling unit is $64396 +in.representative_income 64397 Representative total house income in the dwelling unit is $64397 +in.representative_income 64402 Representative total house income in the dwelling unit is $64402 +in.representative_income 64404 Representative total house income in the dwelling unit is $64404 +in.representative_income 64406 Representative total house income in the dwelling unit is $64406 +in.representative_income 64407 Representative total house income in the dwelling unit is $64407 +in.representative_income 64408 Representative total house income in the dwelling unit is $64408 +in.representative_income 64411 Representative total house income in the dwelling unit is $64411 +in.representative_income 64414 Representative total house income in the dwelling unit is $64414 +in.representative_income 64416 Representative total house income in the dwelling unit is $64416 +in.representative_income 64417 Representative total house income in the dwelling unit is $64417 +in.representative_income 64418 Representative total house income in the dwelling unit is $64418 +in.representative_income 64428 Representative total house income in the dwelling unit is $64428 +in.representative_income 64436 Representative total house income in the dwelling unit is $64436 +in.representative_income 64437 Representative total house income in the dwelling unit is $64437 +in.representative_income 64438 Representative total house income in the dwelling unit is $64438 +in.representative_income 64439 Representative total house income in the dwelling unit is $64439 +in.representative_income 64445 Representative total house income in the dwelling unit is $64445 +in.representative_income 64447 Representative total house income in the dwelling unit is $64447 +in.representative_income 64448 Representative total house income in the dwelling unit is $64448 +in.representative_income 64450 Representative total house income in the dwelling unit is $64450 +in.representative_income 64456 Representative total house income in the dwelling unit is $64456 +in.representative_income 64457 Representative total house income in the dwelling unit is $64457 +in.representative_income 64460 Representative total house income in the dwelling unit is $64460 +in.representative_income 64465 Representative total house income in the dwelling unit is $64465 +in.representative_income 64468 Representative total house income in the dwelling unit is $64468 +in.representative_income 64474 Representative total house income in the dwelling unit is $64474 +in.representative_income 64478 Representative total house income in the dwelling unit is $64478 +in.representative_income 64482 Representative total house income in the dwelling unit is $64482 +in.representative_income 64487 Representative total house income in the dwelling unit is $64487 +in.representative_income 64489 Representative total house income in the dwelling unit is $64489 +in.representative_income 64490 Representative total house income in the dwelling unit is $64490 +in.representative_income 64493 Representative total house income in the dwelling unit is $64493 +in.representative_income 64498 Representative total house income in the dwelling unit is $64498 +in.representative_income 64504 Representative total house income in the dwelling unit is $64504 +in.representative_income 64514 Representative total house income in the dwelling unit is $64514 +in.representative_income 64517 Representative total house income in the dwelling unit is $64517 +in.representative_income 64525 Representative total house income in the dwelling unit is $64525 +in.representative_income 64526 Representative total house income in the dwelling unit is $64526 +in.representative_income 64527 Representative total house income in the dwelling unit is $64527 +in.representative_income 64531 Representative total house income in the dwelling unit is $64531 +in.representative_income 64536 Representative total house income in the dwelling unit is $64536 +in.representative_income 64538 Representative total house income in the dwelling unit is $64538 +in.representative_income 64542 Representative total house income in the dwelling unit is $64542 +in.representative_income 64546 Representative total house income in the dwelling unit is $64546 +in.representative_income 64547 Representative total house income in the dwelling unit is $64547 +in.representative_income 64548 Representative total house income in the dwelling unit is $64548 +in.representative_income 64552 Representative total house income in the dwelling unit is $64552 +in.representative_income 64559 Representative total house income in the dwelling unit is $64559 +in.representative_income 64568 Representative total house income in the dwelling unit is $64568 +in.representative_income 64569 Representative total house income in the dwelling unit is $64569 +in.representative_income 64574 Representative total house income in the dwelling unit is $64574 +in.representative_income 64584 Representative total house income in the dwelling unit is $64584 +in.representative_income 64590 Representative total house income in the dwelling unit is $64590 +in.representative_income 64591 Representative total house income in the dwelling unit is $64591 +in.representative_income 64595 Representative total house income in the dwelling unit is $64595 +in.representative_income 64599 Representative total house income in the dwelling unit is $64599 +in.representative_income 64600 Representative total house income in the dwelling unit is $64600 +in.representative_income 64602 Representative total house income in the dwelling unit is $64602 +in.representative_income 64605 Representative total house income in the dwelling unit is $64605 +in.representative_income 64610 Representative total house income in the dwelling unit is $64610 +in.representative_income 64612 Representative total house income in the dwelling unit is $64612 +in.representative_income 64613 Representative total house income in the dwelling unit is $64613 +in.representative_income 64616 Representative total house income in the dwelling unit is $64616 +in.representative_income 64617 Representative total house income in the dwelling unit is $64617 +in.representative_income 64620 Representative total house income in the dwelling unit is $64620 +in.representative_income 64622 Representative total house income in the dwelling unit is $64622 +in.representative_income 64623 Representative total house income in the dwelling unit is $64623 +in.representative_income 64629 Representative total house income in the dwelling unit is $64629 +in.representative_income 64641 Representative total house income in the dwelling unit is $64641 +in.representative_income 64643 Representative total house income in the dwelling unit is $64643 +in.representative_income 64645 Representative total house income in the dwelling unit is $64645 +in.representative_income 64647 Representative total house income in the dwelling unit is $64647 +in.representative_income 64649 Representative total house income in the dwelling unit is $64649 +in.representative_income 64654 Representative total house income in the dwelling unit is $64654 +in.representative_income 64659 Representative total house income in the dwelling unit is $64659 +in.representative_income 64662 Representative total house income in the dwelling unit is $64662 +in.representative_income 64665 Representative total house income in the dwelling unit is $64665 +in.representative_income 64666 Representative total house income in the dwelling unit is $64666 +in.representative_income 64669 Representative total house income in the dwelling unit is $64669 +in.representative_income 64670 Representative total house income in the dwelling unit is $64670 +in.representative_income 64671 Representative total house income in the dwelling unit is $64671 +in.representative_income 64672 Representative total house income in the dwelling unit is $64672 +in.representative_income 64675 Representative total house income in the dwelling unit is $64675 +in.representative_income 64680 Representative total house income in the dwelling unit is $64680 +in.representative_income 64681 Representative total house income in the dwelling unit is $64681 +in.representative_income 64686 Representative total house income in the dwelling unit is $64686 +in.representative_income 64688 Representative total house income in the dwelling unit is $64688 +in.representative_income 64690 Representative total house income in the dwelling unit is $64690 +in.representative_income 64694 Representative total house income in the dwelling unit is $64694 +in.representative_income 64699 Representative total house income in the dwelling unit is $64699 +in.representative_income 64700 Representative total house income in the dwelling unit is $64700 +in.representative_income 64707 Representative total house income in the dwelling unit is $64707 +in.representative_income 64708 Representative total house income in the dwelling unit is $64708 +in.representative_income 64714 Representative total house income in the dwelling unit is $64714 +in.representative_income 64718 Representative total house income in the dwelling unit is $64718 +in.representative_income 64720 Representative total house income in the dwelling unit is $64720 +in.representative_income 64729 Representative total house income in the dwelling unit is $64729 +in.representative_income 64731 Representative total house income in the dwelling unit is $64731 +in.representative_income 64739 Representative total house income in the dwelling unit is $64739 +in.representative_income 64750 Representative total house income in the dwelling unit is $64750 +in.representative_income 64753 Representative total house income in the dwelling unit is $64753 +in.representative_income 64754 Representative total house income in the dwelling unit is $64754 +in.representative_income 64764 Representative total house income in the dwelling unit is $64764 +in.representative_income 64770 Representative total house income in the dwelling unit is $64770 +in.representative_income 64775 Representative total house income in the dwelling unit is $64775 +in.representative_income 64780 Representative total house income in the dwelling unit is $64780 +in.representative_income 64783 Representative total house income in the dwelling unit is $64783 +in.representative_income 64785 Representative total house income in the dwelling unit is $64785 +in.representative_income 64791 Representative total house income in the dwelling unit is $64791 +in.representative_income 64802 Representative total house income in the dwelling unit is $64802 +in.representative_income 64807 Representative total house income in the dwelling unit is $64807 +in.representative_income 64809 Representative total house income in the dwelling unit is $64809 +in.representative_income 64811 Representative total house income in the dwelling unit is $64811 +in.representative_income 64815 Representative total house income in the dwelling unit is $64815 +in.representative_income 64828 Representative total house income in the dwelling unit is $64828 +in.representative_income 64829 Representative total house income in the dwelling unit is $64829 +in.representative_income 64831 Representative total house income in the dwelling unit is $64831 +in.representative_income 64833 Representative total house income in the dwelling unit is $64833 +in.representative_income 64836 Representative total house income in the dwelling unit is $64836 +in.representative_income 64837 Representative total house income in the dwelling unit is $64837 +in.representative_income 64839 Representative total house income in the dwelling unit is $64839 +in.representative_income 64841 Representative total house income in the dwelling unit is $64841 +in.representative_income 64843 Representative total house income in the dwelling unit is $64843 +in.representative_income 64850 Representative total house income in the dwelling unit is $64850 +in.representative_income 64851 Representative total house income in the dwelling unit is $64851 +in.representative_income 64857 Representative total house income in the dwelling unit is $64857 +in.representative_income 64859 Representative total house income in the dwelling unit is $64859 +in.representative_income 64861 Representative total house income in the dwelling unit is $64861 +in.representative_income 64869 Representative total house income in the dwelling unit is $64869 +in.representative_income 64879 Representative total house income in the dwelling unit is $64879 +in.representative_income 64882 Representative total house income in the dwelling unit is $64882 +in.representative_income 64886 Representative total house income in the dwelling unit is $64886 +in.representative_income 64890 Representative total house income in the dwelling unit is $64890 +in.representative_income 64893 Representative total house income in the dwelling unit is $64893 +in.representative_income 64896 Representative total house income in the dwelling unit is $64896 +in.representative_income 64898 Representative total house income in the dwelling unit is $64898 +in.representative_income 64899 Representative total house income in the dwelling unit is $64899 +in.representative_income 64901 Representative total house income in the dwelling unit is $64901 +in.representative_income 64902 Representative total house income in the dwelling unit is $64902 +in.representative_income 64906 Representative total house income in the dwelling unit is $64906 +in.representative_income 64911 Representative total house income in the dwelling unit is $64911 +in.representative_income 64915 Representative total house income in the dwelling unit is $64915 +in.representative_income 64921 Representative total house income in the dwelling unit is $64921 +in.representative_income 64925 Representative total house income in the dwelling unit is $64925 +in.representative_income 64932 Representative total house income in the dwelling unit is $64932 +in.representative_income 64936 Representative total house income in the dwelling unit is $64936 +in.representative_income 64941 Representative total house income in the dwelling unit is $64941 +in.representative_income 64944 Representative total house income in the dwelling unit is $64944 +in.representative_income 64947 Representative total house income in the dwelling unit is $64947 +in.representative_income 64952 Representative total house income in the dwelling unit is $64952 +in.representative_income 64953 Representative total house income in the dwelling unit is $64953 +in.representative_income 64956 Representative total house income in the dwelling unit is $64956 +in.representative_income 64958 Representative total house income in the dwelling unit is $64958 +in.representative_income 64964 Representative total house income in the dwelling unit is $64964 +in.representative_income 64967 Representative total house income in the dwelling unit is $64967 +in.representative_income 64969 Representative total house income in the dwelling unit is $64969 +in.representative_income 64973 Representative total house income in the dwelling unit is $64973 +in.representative_income 64980 Representative total house income in the dwelling unit is $64980 +in.representative_income 64981 Representative total house income in the dwelling unit is $64981 +in.representative_income 64990 Representative total house income in the dwelling unit is $64990 +in.representative_income 64991 Representative total house income in the dwelling unit is $64991 +in.representative_income 64992 Representative total house income in the dwelling unit is $64992 +in.representative_income 65003 Representative total house income in the dwelling unit is $65003 +in.representative_income 65006 Representative total house income in the dwelling unit is $65006 +in.representative_income 65009 Representative total house income in the dwelling unit is $65009 +in.representative_income 65012 Representative total house income in the dwelling unit is $65012 +in.representative_income 65015 Representative total house income in the dwelling unit is $65015 +in.representative_income 65016 Representative total house income in the dwelling unit is $65016 +in.representative_income 65023 Representative total house income in the dwelling unit is $65023 +in.representative_income 65025 Representative total house income in the dwelling unit is $65025 +in.representative_income 65028 Representative total house income in the dwelling unit is $65028 +in.representative_income 65033 Representative total house income in the dwelling unit is $65033 +in.representative_income 65044 Representative total house income in the dwelling unit is $65044 +in.representative_income 65048 Representative total house income in the dwelling unit is $65048 +in.representative_income 65051 Representative total house income in the dwelling unit is $65051 +in.representative_income 65053 Representative total house income in the dwelling unit is $65053 +in.representative_income 65055 Representative total house income in the dwelling unit is $65055 +in.representative_income 65057 Representative total house income in the dwelling unit is $65057 +in.representative_income 65062 Representative total house income in the dwelling unit is $65062 +in.representative_income 65063 Representative total house income in the dwelling unit is $65063 +in.representative_income 65069 Representative total house income in the dwelling unit is $65069 +in.representative_income 65073 Representative total house income in the dwelling unit is $65073 +in.representative_income 65074 Representative total house income in the dwelling unit is $65074 +in.representative_income 65083 Representative total house income in the dwelling unit is $65083 +in.representative_income 65084 Representative total house income in the dwelling unit is $65084 +in.representative_income 65094 Representative total house income in the dwelling unit is $65094 +in.representative_income 65098 Representative total house income in the dwelling unit is $65098 +in.representative_income 65101 Representative total house income in the dwelling unit is $65101 +in.representative_income 65107 Representative total house income in the dwelling unit is $65107 +in.representative_income 65109 Representative total house income in the dwelling unit is $65109 +in.representative_income 65111 Representative total house income in the dwelling unit is $65111 +in.representative_income 65115 Representative total house income in the dwelling unit is $65115 +in.representative_income 65122 Representative total house income in the dwelling unit is $65122 +in.representative_income 65144 Representative total house income in the dwelling unit is $65144 +in.representative_income 65152 Representative total house income in the dwelling unit is $65152 +in.representative_income 65154 Representative total house income in the dwelling unit is $65154 +in.representative_income 65159 Representative total house income in the dwelling unit is $65159 +in.representative_income 65160 Representative total house income in the dwelling unit is $65160 +in.representative_income 65169 Representative total house income in the dwelling unit is $65169 +in.representative_income 65174 Representative total house income in the dwelling unit is $65174 +in.representative_income 65183 Representative total house income in the dwelling unit is $65183 +in.representative_income 65184 Representative total house income in the dwelling unit is $65184 +in.representative_income 65188 Representative total house income in the dwelling unit is $65188 +in.representative_income 65203 Representative total house income in the dwelling unit is $65203 +in.representative_income 65206 Representative total house income in the dwelling unit is $65206 +in.representative_income 65212 Representative total house income in the dwelling unit is $65212 +in.representative_income 65213 Representative total house income in the dwelling unit is $65213 +in.representative_income 65219 Representative total house income in the dwelling unit is $65219 +in.representative_income 65228 Representative total house income in the dwelling unit is $65228 +in.representative_income 65233 Representative total house income in the dwelling unit is $65233 +in.representative_income 65255 Representative total house income in the dwelling unit is $65255 +in.representative_income 65260 Representative total house income in the dwelling unit is $65260 +in.representative_income 65265 Representative total house income in the dwelling unit is $65265 +in.representative_income 65266 Representative total house income in the dwelling unit is $65266 +in.representative_income 65267 Representative total house income in the dwelling unit is $65267 +in.representative_income 65269 Representative total house income in the dwelling unit is $65269 +in.representative_income 65276 Representative total house income in the dwelling unit is $65276 +in.representative_income 65278 Representative total house income in the dwelling unit is $65278 +in.representative_income 65280 Representative total house income in the dwelling unit is $65280 +in.representative_income 65291 Representative total house income in the dwelling unit is $65291 +in.representative_income 65309 Representative total house income in the dwelling unit is $65309 +in.representative_income 65319 Representative total house income in the dwelling unit is $65319 +in.representative_income 65321 Representative total house income in the dwelling unit is $65321 +in.representative_income 65322 Representative total house income in the dwelling unit is $65322 +in.representative_income 65330 Representative total house income in the dwelling unit is $65330 +in.representative_income 65333 Representative total house income in the dwelling unit is $65333 +in.representative_income 65342 Representative total house income in the dwelling unit is $65342 +in.representative_income 65343 Representative total house income in the dwelling unit is $65343 +in.representative_income 65351 Representative total house income in the dwelling unit is $65351 +in.representative_income 65356 Representative total house income in the dwelling unit is $65356 +in.representative_income 65369 Representative total house income in the dwelling unit is $65369 +in.representative_income 65370 Representative total house income in the dwelling unit is $65370 +in.representative_income 65371 Representative total house income in the dwelling unit is $65371 +in.representative_income 65373 Representative total house income in the dwelling unit is $65373 +in.representative_income 65383 Representative total house income in the dwelling unit is $65383 +in.representative_income 65386 Representative total house income in the dwelling unit is $65386 +in.representative_income 65394 Representative total house income in the dwelling unit is $65394 +in.representative_income 65396 Representative total house income in the dwelling unit is $65396 +in.representative_income 65407 Representative total house income in the dwelling unit is $65407 +in.representative_income 65421 Representative total house income in the dwelling unit is $65421 +in.representative_income 65425 Representative total house income in the dwelling unit is $65425 +in.representative_income 65427 Representative total house income in the dwelling unit is $65427 +in.representative_income 65433 Representative total house income in the dwelling unit is $65433 +in.representative_income 65436 Representative total house income in the dwelling unit is $65436 +in.representative_income 65456 Representative total house income in the dwelling unit is $65456 +in.representative_income 65457 Representative total house income in the dwelling unit is $65457 +in.representative_income 65470 Representative total house income in the dwelling unit is $65470 +in.representative_income 65476 Representative total house income in the dwelling unit is $65476 +in.representative_income 65477 Representative total house income in the dwelling unit is $65477 +in.representative_income 65478 Representative total house income in the dwelling unit is $65478 +in.representative_income 65480 Representative total house income in the dwelling unit is $65480 +in.representative_income 65481 Representative total house income in the dwelling unit is $65481 +in.representative_income 65485 Representative total house income in the dwelling unit is $65485 +in.representative_income 65491 Representative total house income in the dwelling unit is $65491 +in.representative_income 65497 Representative total house income in the dwelling unit is $65497 +in.representative_income 65502 Representative total house income in the dwelling unit is $65502 +in.representative_income 65508 Representative total house income in the dwelling unit is $65508 +in.representative_income 65509 Representative total house income in the dwelling unit is $65509 +in.representative_income 65510 Representative total house income in the dwelling unit is $65510 +in.representative_income 65518 Representative total house income in the dwelling unit is $65518 +in.representative_income 65523 Representative total house income in the dwelling unit is $65523 +in.representative_income 65528 Representative total house income in the dwelling unit is $65528 +in.representative_income 65542 Representative total house income in the dwelling unit is $65542 +in.representative_income 65553 Representative total house income in the dwelling unit is $65553 +in.representative_income 65558 Representative total house income in the dwelling unit is $65558 +in.representative_income 65563 Representative total house income in the dwelling unit is $65563 +in.representative_income 65570 Representative total house income in the dwelling unit is $65570 +in.representative_income 65577 Representative total house income in the dwelling unit is $65577 +in.representative_income 65579 Representative total house income in the dwelling unit is $65579 +in.representative_income 65585 Representative total house income in the dwelling unit is $65585 +in.representative_income 65586 Representative total house income in the dwelling unit is $65586 +in.representative_income 65588 Representative total house income in the dwelling unit is $65588 +in.representative_income 65597 Representative total house income in the dwelling unit is $65597 +in.representative_income 65598 Representative total house income in the dwelling unit is $65598 +in.representative_income 65599 Representative total house income in the dwelling unit is $65599 +in.representative_income 65600 Representative total house income in the dwelling unit is $65600 +in.representative_income 65607 Representative total house income in the dwelling unit is $65607 +in.representative_income 65617 Representative total house income in the dwelling unit is $65617 +in.representative_income 65619 Representative total house income in the dwelling unit is $65619 +in.representative_income 65620 Representative total house income in the dwelling unit is $65620 +in.representative_income 65623 Representative total house income in the dwelling unit is $65623 +in.representative_income 65631 Representative total house income in the dwelling unit is $65631 +in.representative_income 65639 Representative total house income in the dwelling unit is $65639 +in.representative_income 65649 Representative total house income in the dwelling unit is $65649 +in.representative_income 65653 Representative total house income in the dwelling unit is $65653 +in.representative_income 65659 Representative total house income in the dwelling unit is $65659 +in.representative_income 65660 Representative total house income in the dwelling unit is $65660 +in.representative_income 65662 Representative total house income in the dwelling unit is $65662 +in.representative_income 65666 Representative total house income in the dwelling unit is $65666 +in.representative_income 65671 Representative total house income in the dwelling unit is $65671 +in.representative_income 65674 Representative total house income in the dwelling unit is $65674 +in.representative_income 65676 Representative total house income in the dwelling unit is $65676 +in.representative_income 65680 Representative total house income in the dwelling unit is $65680 +in.representative_income 65683 Representative total house income in the dwelling unit is $65683 +in.representative_income 65690 Representative total house income in the dwelling unit is $65690 +in.representative_income 65693 Representative total house income in the dwelling unit is $65693 +in.representative_income 65695 Representative total house income in the dwelling unit is $65695 +in.representative_income 65700 Representative total house income in the dwelling unit is $65700 +in.representative_income 65702 Representative total house income in the dwelling unit is $65702 +in.representative_income 65703 Representative total house income in the dwelling unit is $65703 +in.representative_income 65710 Representative total house income in the dwelling unit is $65710 +in.representative_income 65714 Representative total house income in the dwelling unit is $65714 +in.representative_income 65720 Representative total house income in the dwelling unit is $65720 +in.representative_income 65730 Representative total house income in the dwelling unit is $65730 +in.representative_income 65738 Representative total house income in the dwelling unit is $65738 +in.representative_income 65740 Representative total house income in the dwelling unit is $65740 +in.representative_income 65747 Representative total house income in the dwelling unit is $65747 +in.representative_income 65749 Representative total house income in the dwelling unit is $65749 +in.representative_income 65755 Representative total house income in the dwelling unit is $65755 +in.representative_income 65757 Representative total house income in the dwelling unit is $65757 +in.representative_income 65759 Representative total house income in the dwelling unit is $65759 +in.representative_income 65760 Representative total house income in the dwelling unit is $65760 +in.representative_income 65801 Representative total house income in the dwelling unit is $65801 +in.representative_income 65803 Representative total house income in the dwelling unit is $65803 +in.representative_income 65805 Representative total house income in the dwelling unit is $65805 +in.representative_income 65807 Representative total house income in the dwelling unit is $65807 +in.representative_income 65822 Representative total house income in the dwelling unit is $65822 +in.representative_income 65827 Representative total house income in the dwelling unit is $65827 +in.representative_income 65836 Representative total house income in the dwelling unit is $65836 +in.representative_income 65837 Representative total house income in the dwelling unit is $65837 +in.representative_income 65841 Representative total house income in the dwelling unit is $65841 +in.representative_income 65845 Representative total house income in the dwelling unit is $65845 +in.representative_income 65851 Representative total house income in the dwelling unit is $65851 +in.representative_income 65854 Representative total house income in the dwelling unit is $65854 +in.representative_income 65858 Representative total house income in the dwelling unit is $65858 +in.representative_income 65860 Representative total house income in the dwelling unit is $65860 +in.representative_income 65861 Representative total house income in the dwelling unit is $65861 +in.representative_income 65865 Representative total house income in the dwelling unit is $65865 +in.representative_income 65871 Representative total house income in the dwelling unit is $65871 +in.representative_income 65872 Representative total house income in the dwelling unit is $65872 +in.representative_income 65875 Representative total house income in the dwelling unit is $65875 +in.representative_income 65876 Representative total house income in the dwelling unit is $65876 +in.representative_income 65887 Representative total house income in the dwelling unit is $65887 +in.representative_income 65892 Representative total house income in the dwelling unit is $65892 +in.representative_income 65902 Representative total house income in the dwelling unit is $65902 +in.representative_income 65908 Representative total house income in the dwelling unit is $65908 +in.representative_income 65909 Representative total house income in the dwelling unit is $65909 +in.representative_income 65910 Representative total house income in the dwelling unit is $65910 +in.representative_income 65912 Representative total house income in the dwelling unit is $65912 +in.representative_income 65913 Representative total house income in the dwelling unit is $65913 +in.representative_income 65919 Representative total house income in the dwelling unit is $65919 +in.representative_income 65942 Representative total house income in the dwelling unit is $65942 +in.representative_income 65945 Representative total house income in the dwelling unit is $65945 +in.representative_income 65946 Representative total house income in the dwelling unit is $65946 +in.representative_income 65952 Representative total house income in the dwelling unit is $65952 +in.representative_income 65962 Representative total house income in the dwelling unit is $65962 +in.representative_income 65972 Representative total house income in the dwelling unit is $65972 +in.representative_income 65974 Representative total house income in the dwelling unit is $65974 +in.representative_income 65983 Representative total house income in the dwelling unit is $65983 +in.representative_income 65988 Representative total house income in the dwelling unit is $65988 +in.representative_income 65993 Representative total house income in the dwelling unit is $65993 +in.representative_income 65996 Representative total house income in the dwelling unit is $65996 +in.representative_income 66013 Representative total house income in the dwelling unit is $66013 +in.representative_income 66016 Representative total house income in the dwelling unit is $66016 +in.representative_income 66017 Representative total house income in the dwelling unit is $66017 +in.representative_income 66019 Representative total house income in the dwelling unit is $66019 +in.representative_income 66050 Representative total house income in the dwelling unit is $66050 +in.representative_income 66054 Representative total house income in the dwelling unit is $66054 +in.representative_income 66055 Representative total house income in the dwelling unit is $66055 +in.representative_income 66063 Representative total house income in the dwelling unit is $66063 +in.representative_income 66064 Representative total house income in the dwelling unit is $66064 +in.representative_income 66081 Representative total house income in the dwelling unit is $66081 +in.representative_income 66084 Representative total house income in the dwelling unit is $66084 +in.representative_income 66106 Representative total house income in the dwelling unit is $66106 +in.representative_income 66116 Representative total house income in the dwelling unit is $66116 +in.representative_income 66120 Representative total house income in the dwelling unit is $66120 +in.representative_income 66124 Representative total house income in the dwelling unit is $66124 +in.representative_income 66150 Representative total house income in the dwelling unit is $66150 +in.representative_income 66158 Representative total house income in the dwelling unit is $66158 +in.representative_income 66165 Representative total house income in the dwelling unit is $66165 +in.representative_income 66167 Representative total house income in the dwelling unit is $66167 +in.representative_income 66177 Representative total house income in the dwelling unit is $66177 +in.representative_income 66178 Representative total house income in the dwelling unit is $66178 +in.representative_income 66219 Representative total house income in the dwelling unit is $66219 +in.representative_income 66223 Representative total house income in the dwelling unit is $66223 +in.representative_income 66229 Representative total house income in the dwelling unit is $66229 +in.representative_income 66232 Representative total house income in the dwelling unit is $66232 +in.representative_income 66233 Representative total house income in the dwelling unit is $66233 +in.representative_income 66240 Representative total house income in the dwelling unit is $66240 +in.representative_income 66245 Representative total house income in the dwelling unit is $66245 +in.representative_income 66253 Representative total house income in the dwelling unit is $66253 +in.representative_income 66262 Representative total house income in the dwelling unit is $66262 +in.representative_income 66266 Representative total house income in the dwelling unit is $66266 +in.representative_income 66271 Representative total house income in the dwelling unit is $66271 +in.representative_income 66286 Representative total house income in the dwelling unit is $66286 +in.representative_income 66287 Representative total house income in the dwelling unit is $66287 +in.representative_income 66308 Representative total house income in the dwelling unit is $66308 +in.representative_income 66317 Representative total house income in the dwelling unit is $66317 +in.representative_income 66322 Representative total house income in the dwelling unit is $66322 +in.representative_income 66335 Representative total house income in the dwelling unit is $66335 +in.representative_income 66336 Representative total house income in the dwelling unit is $66336 +in.representative_income 66340 Representative total house income in the dwelling unit is $66340 +in.representative_income 66341 Representative total house income in the dwelling unit is $66341 +in.representative_income 66352 Representative total house income in the dwelling unit is $66352 +in.representative_income 66356 Representative total house income in the dwelling unit is $66356 +in.representative_income 66361 Representative total house income in the dwelling unit is $66361 +in.representative_income 66367 Representative total house income in the dwelling unit is $66367 +in.representative_income 66384 Representative total house income in the dwelling unit is $66384 +in.representative_income 66397 Representative total house income in the dwelling unit is $66397 +in.representative_income 66426 Representative total house income in the dwelling unit is $66426 +in.representative_income 66427 Representative total house income in the dwelling unit is $66427 +in.representative_income 66437 Representative total house income in the dwelling unit is $66437 +in.representative_income 66440 Representative total house income in the dwelling unit is $66440 +in.representative_income 66446 Representative total house income in the dwelling unit is $66446 +in.representative_income 66449 Representative total house income in the dwelling unit is $66449 +in.representative_income 66461 Representative total house income in the dwelling unit is $66461 +in.representative_income 66467 Representative total house income in the dwelling unit is $66467 +in.representative_income 66468 Representative total house income in the dwelling unit is $66468 +in.representative_income 66474 Representative total house income in the dwelling unit is $66474 +in.representative_income 66481 Representative total house income in the dwelling unit is $66481 +in.representative_income 66502 Representative total house income in the dwelling unit is $66502 +in.representative_income 66504 Representative total house income in the dwelling unit is $66504 +in.representative_income 66506 Representative total house income in the dwelling unit is $66506 +in.representative_income 66527 Representative total house income in the dwelling unit is $66527 +in.representative_income 66528 Representative total house income in the dwelling unit is $66528 +in.representative_income 66529 Representative total house income in the dwelling unit is $66529 +in.representative_income 66531 Representative total house income in the dwelling unit is $66531 +in.representative_income 66545 Representative total house income in the dwelling unit is $66545 +in.representative_income 66554 Representative total house income in the dwelling unit is $66554 +in.representative_income 66556 Representative total house income in the dwelling unit is $66556 +in.representative_income 66557 Representative total house income in the dwelling unit is $66557 +in.representative_income 66567 Representative total house income in the dwelling unit is $66567 +in.representative_income 66569 Representative total house income in the dwelling unit is $66569 +in.representative_income 66575 Representative total house income in the dwelling unit is $66575 +in.representative_income 66580 Representative total house income in the dwelling unit is $66580 +in.representative_income 66597 Representative total house income in the dwelling unit is $66597 +in.representative_income 66599 Representative total house income in the dwelling unit is $66599 +in.representative_income 66604 Representative total house income in the dwelling unit is $66604 +in.representative_income 66605 Representative total house income in the dwelling unit is $66605 +in.representative_income 66608 Representative total house income in the dwelling unit is $66608 +in.representative_income 66611 Representative total house income in the dwelling unit is $66611 +in.representative_income 66612 Representative total house income in the dwelling unit is $66612 +in.representative_income 66619 Representative total house income in the dwelling unit is $66619 +in.representative_income 66629 Representative total house income in the dwelling unit is $66629 +in.representative_income 66631 Representative total house income in the dwelling unit is $66631 +in.representative_income 66639 Representative total house income in the dwelling unit is $66639 +in.representative_income 66643 Representative total house income in the dwelling unit is $66643 +in.representative_income 66652 Representative total house income in the dwelling unit is $66652 +in.representative_income 66659 Representative total house income in the dwelling unit is $66659 +in.representative_income 66661 Representative total house income in the dwelling unit is $66661 +in.representative_income 66665 Representative total house income in the dwelling unit is $66665 +in.representative_income 66670 Representative total house income in the dwelling unit is $66670 +in.representative_income 66672 Representative total house income in the dwelling unit is $66672 +in.representative_income 66683 Representative total house income in the dwelling unit is $66683 +in.representative_income 66693 Representative total house income in the dwelling unit is $66693 +in.representative_income 66714 Representative total house income in the dwelling unit is $66714 +in.representative_income 66719 Representative total house income in the dwelling unit is $66719 +in.representative_income 66720 Representative total house income in the dwelling unit is $66720 +in.representative_income 66730 Representative total house income in the dwelling unit is $66730 +in.representative_income 66735 Representative total house income in the dwelling unit is $66735 +in.representative_income 66745 Representative total house income in the dwelling unit is $66745 +in.representative_income 66757 Representative total house income in the dwelling unit is $66757 +in.representative_income 66758 Representative total house income in the dwelling unit is $66758 +in.representative_income 66769 Representative total house income in the dwelling unit is $66769 +in.representative_income 66771 Representative total house income in the dwelling unit is $66771 +in.representative_income 66773 Representative total house income in the dwelling unit is $66773 +in.representative_income 66774 Representative total house income in the dwelling unit is $66774 +in.representative_income 66775 Representative total house income in the dwelling unit is $66775 +in.representative_income 66776 Representative total house income in the dwelling unit is $66776 +in.representative_income 66799 Representative total house income in the dwelling unit is $66799 +in.representative_income 66801 Representative total house income in the dwelling unit is $66801 +in.representative_income 66809 Representative total house income in the dwelling unit is $66809 +in.representative_income 66811 Representative total house income in the dwelling unit is $66811 +in.representative_income 66830 Representative total house income in the dwelling unit is $66830 +in.representative_income 66833 Representative total house income in the dwelling unit is $66833 +in.representative_income 66836 Representative total house income in the dwelling unit is $66836 +in.representative_income 66838 Representative total house income in the dwelling unit is $66838 +in.representative_income 66841 Representative total house income in the dwelling unit is $66841 +in.representative_income 66848 Representative total house income in the dwelling unit is $66848 +in.representative_income 66852 Representative total house income in the dwelling unit is $66852 +in.representative_income 66854 Representative total house income in the dwelling unit is $66854 +in.representative_income 66862 Representative total house income in the dwelling unit is $66862 +in.representative_income 66872 Representative total house income in the dwelling unit is $66872 +in.representative_income 66876 Representative total house income in the dwelling unit is $66876 +in.representative_income 66880 Representative total house income in the dwelling unit is $66880 +in.representative_income 66881 Representative total house income in the dwelling unit is $66881 +in.representative_income 66890 Representative total house income in the dwelling unit is $66890 +in.representative_income 66898 Representative total house income in the dwelling unit is $66898 +in.representative_income 66909 Representative total house income in the dwelling unit is $66909 +in.representative_income 66913 Representative total house income in the dwelling unit is $66913 +in.representative_income 66920 Representative total house income in the dwelling unit is $66920 +in.representative_income 66922 Representative total house income in the dwelling unit is $66922 +in.representative_income 66930 Representative total house income in the dwelling unit is $66930 +in.representative_income 66936 Representative total house income in the dwelling unit is $66936 +in.representative_income 66941 Representative total house income in the dwelling unit is $66941 +in.representative_income 66957 Representative total house income in the dwelling unit is $66957 +in.representative_income 66967 Representative total house income in the dwelling unit is $66967 +in.representative_income 66968 Representative total house income in the dwelling unit is $66968 +in.representative_income 66973 Representative total house income in the dwelling unit is $66973 +in.representative_income 66983 Representative total house income in the dwelling unit is $66983 +in.representative_income 66987 Representative total house income in the dwelling unit is $66987 +in.representative_income 66990 Representative total house income in the dwelling unit is $66990 +in.representative_income 66993 Representative total house income in the dwelling unit is $66993 +in.representative_income 66994 Representative total house income in the dwelling unit is $66994 +in.representative_income 67000 Representative total house income in the dwelling unit is $67000 +in.representative_income 67006 Representative total house income in the dwelling unit is $67006 +in.representative_income 67009 Representative total house income in the dwelling unit is $67009 +in.representative_income 67011 Representative total house income in the dwelling unit is $67011 +in.representative_income 67013 Representative total house income in the dwelling unit is $67013 +in.representative_income 67017 Representative total house income in the dwelling unit is $67017 +in.representative_income 67026 Representative total house income in the dwelling unit is $67026 +in.representative_income 67031 Representative total house income in the dwelling unit is $67031 +in.representative_income 67044 Representative total house income in the dwelling unit is $67044 +in.representative_income 67045 Representative total house income in the dwelling unit is $67045 +in.representative_income 67054 Representative total house income in the dwelling unit is $67054 +in.representative_income 67055 Representative total house income in the dwelling unit is $67055 +in.representative_income 67065 Representative total house income in the dwelling unit is $67065 +in.representative_income 67073 Representative total house income in the dwelling unit is $67073 +in.representative_income 67074 Representative total house income in the dwelling unit is $67074 +in.representative_income 67076 Representative total house income in the dwelling unit is $67076 +in.representative_income 67080 Representative total house income in the dwelling unit is $67080 +in.representative_income 67090 Representative total house income in the dwelling unit is $67090 +in.representative_income 67096 Representative total house income in the dwelling unit is $67096 +in.representative_income 67097 Representative total house income in the dwelling unit is $67097 +in.representative_income 67107 Representative total house income in the dwelling unit is $67107 +in.representative_income 67110 Representative total house income in the dwelling unit is $67110 +in.representative_income 67112 Representative total house income in the dwelling unit is $67112 +in.representative_income 67117 Representative total house income in the dwelling unit is $67117 +in.representative_income 67126 Representative total house income in the dwelling unit is $67126 +in.representative_income 67136 Representative total house income in the dwelling unit is $67136 +in.representative_income 67145 Representative total house income in the dwelling unit is $67145 +in.representative_income 67147 Representative total house income in the dwelling unit is $67147 +in.representative_income 67151 Representative total house income in the dwelling unit is $67151 +in.representative_income 67165 Representative total house income in the dwelling unit is $67165 +in.representative_income 67175 Representative total house income in the dwelling unit is $67175 +in.representative_income 67178 Representative total house income in the dwelling unit is $67178 +in.representative_income 67195 Representative total house income in the dwelling unit is $67195 +in.representative_income 67198 Representative total house income in the dwelling unit is $67198 +in.representative_income 67205 Representative total house income in the dwelling unit is $67205 +in.representative_income 67215 Representative total house income in the dwelling unit is $67215 +in.representative_income 67216 Representative total house income in the dwelling unit is $67216 +in.representative_income 67219 Representative total house income in the dwelling unit is $67219 +in.representative_income 67230 Representative total house income in the dwelling unit is $67230 +in.representative_income 67238 Representative total house income in the dwelling unit is $67238 +in.representative_income 67240 Representative total house income in the dwelling unit is $67240 +in.representative_income 67250 Representative total house income in the dwelling unit is $67250 +in.representative_income 67251 Representative total house income in the dwelling unit is $67251 +in.representative_income 67259 Representative total house income in the dwelling unit is $67259 +in.representative_income 67266 Representative total house income in the dwelling unit is $67266 +in.representative_income 67267 Representative total house income in the dwelling unit is $67267 +in.representative_income 67270 Representative total house income in the dwelling unit is $67270 +in.representative_income 67273 Representative total house income in the dwelling unit is $67273 +in.representative_income 67276 Representative total house income in the dwelling unit is $67276 +in.representative_income 67280 Representative total house income in the dwelling unit is $67280 +in.representative_income 67284 Representative total house income in the dwelling unit is $67284 +in.representative_income 67287 Representative total house income in the dwelling unit is $67287 +in.representative_income 67295 Representative total house income in the dwelling unit is $67295 +in.representative_income 67302 Representative total house income in the dwelling unit is $67302 +in.representative_income 67305 Representative total house income in the dwelling unit is $67305 +in.representative_income 67313 Representative total house income in the dwelling unit is $67313 +in.representative_income 67316 Representative total house income in the dwelling unit is $67316 +in.representative_income 67326 Representative total house income in the dwelling unit is $67326 +in.representative_income 67327 Representative total house income in the dwelling unit is $67327 +in.representative_income 67336 Representative total house income in the dwelling unit is $67336 +in.representative_income 67341 Representative total house income in the dwelling unit is $67341 +in.representative_income 67354 Representative total house income in the dwelling unit is $67354 +in.representative_income 67356 Representative total house income in the dwelling unit is $67356 +in.representative_income 67374 Representative total house income in the dwelling unit is $67374 +in.representative_income 67377 Representative total house income in the dwelling unit is $67377 +in.representative_income 67379 Representative total house income in the dwelling unit is $67379 +in.representative_income 67390 Representative total house income in the dwelling unit is $67390 +in.representative_income 67397 Representative total house income in the dwelling unit is $67397 +in.representative_income 67400 Representative total house income in the dwelling unit is $67400 +in.representative_income 67402 Representative total house income in the dwelling unit is $67402 +in.representative_income 67407 Representative total house income in the dwelling unit is $67407 +in.representative_income 67411 Representative total house income in the dwelling unit is $67411 +in.representative_income 67413 Representative total house income in the dwelling unit is $67413 +in.representative_income 67421 Representative total house income in the dwelling unit is $67421 +in.representative_income 67424 Representative total house income in the dwelling unit is $67424 +in.representative_income 67431 Representative total house income in the dwelling unit is $67431 +in.representative_income 67443 Representative total house income in the dwelling unit is $67443 +in.representative_income 67457 Representative total house income in the dwelling unit is $67457 +in.representative_income 67464 Representative total house income in the dwelling unit is $67464 +in.representative_income 67466 Representative total house income in the dwelling unit is $67466 +in.representative_income 67477 Representative total house income in the dwelling unit is $67477 +in.representative_income 67478 Representative total house income in the dwelling unit is $67478 +in.representative_income 67488 Representative total house income in the dwelling unit is $67488 +in.representative_income 67495 Representative total house income in the dwelling unit is $67495 +in.representative_income 67498 Representative total house income in the dwelling unit is $67498 +in.representative_income 67518 Representative total house income in the dwelling unit is $67518 +in.representative_income 67519 Representative total house income in the dwelling unit is $67519 +in.representative_income 67529 Representative total house income in the dwelling unit is $67529 +in.representative_income 67539 Representative total house income in the dwelling unit is $67539 +in.representative_income 67540 Representative total house income in the dwelling unit is $67540 +in.representative_income 67548 Representative total house income in the dwelling unit is $67548 +in.representative_income 67550 Representative total house income in the dwelling unit is $67550 +in.representative_income 67551 Representative total house income in the dwelling unit is $67551 +in.representative_income 67552 Representative total house income in the dwelling unit is $67552 +in.representative_income 67558 Representative total house income in the dwelling unit is $67558 +in.representative_income 67560 Representative total house income in the dwelling unit is $67560 +in.representative_income 67573 Representative total house income in the dwelling unit is $67573 +in.representative_income 67579 Representative total house income in the dwelling unit is $67579 +in.representative_income 67581 Representative total house income in the dwelling unit is $67581 +in.representative_income 67587 Representative total house income in the dwelling unit is $67587 +in.representative_income 67591 Representative total house income in the dwelling unit is $67591 +in.representative_income 67600 Representative total house income in the dwelling unit is $67600 +in.representative_income 67619 Representative total house income in the dwelling unit is $67619 +in.representative_income 67620 Representative total house income in the dwelling unit is $67620 +in.representative_income 67621 Representative total house income in the dwelling unit is $67621 +in.representative_income 67627 Representative total house income in the dwelling unit is $67627 +in.representative_income 67629 Representative total house income in the dwelling unit is $67629 +in.representative_income 67634 Representative total house income in the dwelling unit is $67634 +in.representative_income 67637 Representative total house income in the dwelling unit is $67637 +in.representative_income 67653 Representative total house income in the dwelling unit is $67653 +in.representative_income 67659 Representative total house income in the dwelling unit is $67659 +in.representative_income 67660 Representative total house income in the dwelling unit is $67660 +in.representative_income 67664 Representative total house income in the dwelling unit is $67664 +in.representative_income 67680 Representative total house income in the dwelling unit is $67680 +in.representative_income 67690 Representative total house income in the dwelling unit is $67690 +in.representative_income 67694 Representative total house income in the dwelling unit is $67694 +in.representative_income 67700 Representative total house income in the dwelling unit is $67700 +in.representative_income 67706 Representative total house income in the dwelling unit is $67706 +in.representative_income 67724 Representative total house income in the dwelling unit is $67724 +in.representative_income 67730 Representative total house income in the dwelling unit is $67730 +in.representative_income 67735 Representative total house income in the dwelling unit is $67735 +in.representative_income 67740 Representative total house income in the dwelling unit is $67740 +in.representative_income 67746 Representative total house income in the dwelling unit is $67746 +in.representative_income 67759 Representative total house income in the dwelling unit is $67759 +in.representative_income 67761 Representative total house income in the dwelling unit is $67761 +in.representative_income 67766 Representative total house income in the dwelling unit is $67766 +in.representative_income 67773 Representative total house income in the dwelling unit is $67773 +in.representative_income 67781 Representative total house income in the dwelling unit is $67781 +in.representative_income 67789 Representative total house income in the dwelling unit is $67789 +in.representative_income 67797 Representative total house income in the dwelling unit is $67797 +in.representative_income 67811 Representative total house income in the dwelling unit is $67811 +in.representative_income 67815 Representative total house income in the dwelling unit is $67815 +in.representative_income 67818 Representative total house income in the dwelling unit is $67818 +in.representative_income 67821 Representative total house income in the dwelling unit is $67821 +in.representative_income 67824 Representative total house income in the dwelling unit is $67824 +in.representative_income 67831 Representative total house income in the dwelling unit is $67831 +in.representative_income 67838 Representative total house income in the dwelling unit is $67838 +in.representative_income 67841 Representative total house income in the dwelling unit is $67841 +in.representative_income 67842 Representative total house income in the dwelling unit is $67842 +in.representative_income 67853 Representative total house income in the dwelling unit is $67853 +in.representative_income 67854 Representative total house income in the dwelling unit is $67854 +in.representative_income 67863 Representative total house income in the dwelling unit is $67863 +in.representative_income 67864 Representative total house income in the dwelling unit is $67864 +in.representative_income 67869 Representative total house income in the dwelling unit is $67869 +in.representative_income 67874 Representative total house income in the dwelling unit is $67874 +in.representative_income 67882 Representative total house income in the dwelling unit is $67882 +in.representative_income 67884 Representative total house income in the dwelling unit is $67884 +in.representative_income 67895 Representative total house income in the dwelling unit is $67895 +in.representative_income 67912 Representative total house income in the dwelling unit is $67912 +in.representative_income 67917 Representative total house income in the dwelling unit is $67917 +in.representative_income 67921 Representative total house income in the dwelling unit is $67921 +in.representative_income 67922 Representative total house income in the dwelling unit is $67922 +in.representative_income 67929 Representative total house income in the dwelling unit is $67929 +in.representative_income 67930 Representative total house income in the dwelling unit is $67930 +in.representative_income 67941 Representative total house income in the dwelling unit is $67941 +in.representative_income 67948 Representative total house income in the dwelling unit is $67948 +in.representative_income 67950 Representative total house income in the dwelling unit is $67950 +in.representative_income 67959 Representative total house income in the dwelling unit is $67959 +in.representative_income 67962 Representative total house income in the dwelling unit is $67962 +in.representative_income 67963 Representative total house income in the dwelling unit is $67963 +in.representative_income 67970 Representative total house income in the dwelling unit is $67970 +in.representative_income 67973 Representative total house income in the dwelling unit is $67973 +in.representative_income 67983 Representative total house income in the dwelling unit is $67983 +in.representative_income 67986 Representative total house income in the dwelling unit is $67986 +in.representative_income 67990 Representative total house income in the dwelling unit is $67990 +in.representative_income 68003 Representative total house income in the dwelling unit is $68003 +in.representative_income 68016 Representative total house income in the dwelling unit is $68016 +in.representative_income 68022 Representative total house income in the dwelling unit is $68022 +in.representative_income 68026 Representative total house income in the dwelling unit is $68026 +in.representative_income 68043 Representative total house income in the dwelling unit is $68043 +in.representative_income 68045 Representative total house income in the dwelling unit is $68045 +in.representative_income 68057 Representative total house income in the dwelling unit is $68057 +in.representative_income 68064 Representative total house income in the dwelling unit is $68064 +in.representative_income 68068 Representative total house income in the dwelling unit is $68068 +in.representative_income 68070 Representative total house income in the dwelling unit is $68070 +in.representative_income 68073 Representative total house income in the dwelling unit is $68073 +in.representative_income 68075 Representative total house income in the dwelling unit is $68075 +in.representative_income 68076 Representative total house income in the dwelling unit is $68076 +in.representative_income 68080 Representative total house income in the dwelling unit is $68080 +in.representative_income 68084 Representative total house income in the dwelling unit is $68084 +in.representative_income 68085 Representative total house income in the dwelling unit is $68085 +in.representative_income 68089 Representative total house income in the dwelling unit is $68089 +in.representative_income 68091 Representative total house income in the dwelling unit is $68091 +in.representative_income 68110 Representative total house income in the dwelling unit is $68110 +in.representative_income 68113 Representative total house income in the dwelling unit is $68113 +in.representative_income 68118 Representative total house income in the dwelling unit is $68118 +in.representative_income 68128 Representative total house income in the dwelling unit is $68128 +in.representative_income 68134 Representative total house income in the dwelling unit is $68134 +in.representative_income 68144 Representative total house income in the dwelling unit is $68144 +in.representative_income 68145 Representative total house income in the dwelling unit is $68145 +in.representative_income 68164 Representative total house income in the dwelling unit is $68164 +in.representative_income 68178 Representative total house income in the dwelling unit is $68178 +in.representative_income 68179 Representative total house income in the dwelling unit is $68179 +in.representative_income 68180 Representative total house income in the dwelling unit is $68180 +in.representative_income 68185 Representative total house income in the dwelling unit is $68185 +in.representative_income 68189 Representative total house income in the dwelling unit is $68189 +in.representative_income 68207 Representative total house income in the dwelling unit is $68207 +in.representative_income 68215 Representative total house income in the dwelling unit is $68215 +in.representative_income 68222 Representative total house income in the dwelling unit is $68222 +in.representative_income 68225 Representative total house income in the dwelling unit is $68225 +in.representative_income 68232 Representative total house income in the dwelling unit is $68232 +in.representative_income 68233 Representative total house income in the dwelling unit is $68233 +in.representative_income 68235 Representative total house income in the dwelling unit is $68235 +in.representative_income 68237 Representative total house income in the dwelling unit is $68237 +in.representative_income 68239 Representative total house income in the dwelling unit is $68239 +in.representative_income 68241 Representative total house income in the dwelling unit is $68241 +in.representative_income 68242 Representative total house income in the dwelling unit is $68242 +in.representative_income 68250 Representative total house income in the dwelling unit is $68250 +in.representative_income 68251 Representative total house income in the dwelling unit is $68251 +in.representative_income 68262 Representative total house income in the dwelling unit is $68262 +in.representative_income 68264 Representative total house income in the dwelling unit is $68264 +in.representative_income 68271 Representative total house income in the dwelling unit is $68271 +in.representative_income 68275 Representative total house income in the dwelling unit is $68275 +in.representative_income 68282 Representative total house income in the dwelling unit is $68282 +in.representative_income 68285 Representative total house income in the dwelling unit is $68285 +in.representative_income 68286 Representative total house income in the dwelling unit is $68286 +in.representative_income 68310 Representative total house income in the dwelling unit is $68310 +in.representative_income 68323 Representative total house income in the dwelling unit is $68323 +in.representative_income 68338 Representative total house income in the dwelling unit is $68338 +in.representative_income 68349 Representative total house income in the dwelling unit is $68349 +in.representative_income 68350 Representative total house income in the dwelling unit is $68350 +in.representative_income 68364 Representative total house income in the dwelling unit is $68364 +in.representative_income 68377 Representative total house income in the dwelling unit is $68377 +in.representative_income 68379 Representative total house income in the dwelling unit is $68379 +in.representative_income 68380 Representative total house income in the dwelling unit is $68380 +in.representative_income 68385 Representative total house income in the dwelling unit is $68385 +in.representative_income 68387 Representative total house income in the dwelling unit is $68387 +in.representative_income 68391 Representative total house income in the dwelling unit is $68391 +in.representative_income 68393 Representative total house income in the dwelling unit is $68393 +in.representative_income 68398 Representative total house income in the dwelling unit is $68398 +in.representative_income 68402 Representative total house income in the dwelling unit is $68402 +in.representative_income 68404 Representative total house income in the dwelling unit is $68404 +in.representative_income 68406 Representative total house income in the dwelling unit is $68406 +in.representative_income 68412 Representative total house income in the dwelling unit is $68412 +in.representative_income 68414 Representative total house income in the dwelling unit is $68414 +in.representative_income 68417 Representative total house income in the dwelling unit is $68417 +in.representative_income 68437 Representative total house income in the dwelling unit is $68437 +in.representative_income 68444 Representative total house income in the dwelling unit is $68444 +in.representative_income 68447 Representative total house income in the dwelling unit is $68447 +in.representative_income 68465 Representative total house income in the dwelling unit is $68465 +in.representative_income 68468 Representative total house income in the dwelling unit is $68468 +in.representative_income 68478 Representative total house income in the dwelling unit is $68478 +in.representative_income 68486 Representative total house income in the dwelling unit is $68486 +in.representative_income 68488 Representative total house income in the dwelling unit is $68488 +in.representative_income 68491 Representative total house income in the dwelling unit is $68491 +in.representative_income 68497 Representative total house income in the dwelling unit is $68497 +in.representative_income 68499 Representative total house income in the dwelling unit is $68499 +in.representative_income 68501 Representative total house income in the dwelling unit is $68501 +in.representative_income 68509 Representative total house income in the dwelling unit is $68509 +in.representative_income 68512 Representative total house income in the dwelling unit is $68512 +in.representative_income 68515 Representative total house income in the dwelling unit is $68515 +in.representative_income 68518 Representative total house income in the dwelling unit is $68518 +in.representative_income 68520 Representative total house income in the dwelling unit is $68520 +in.representative_income 68529 Representative total house income in the dwelling unit is $68529 +in.representative_income 68547 Representative total house income in the dwelling unit is $68547 +in.representative_income 68550 Representative total house income in the dwelling unit is $68550 +in.representative_income 68559 Representative total house income in the dwelling unit is $68559 +in.representative_income 68560 Representative total house income in the dwelling unit is $68560 +in.representative_income 68567 Representative total house income in the dwelling unit is $68567 +in.representative_income 68570 Representative total house income in the dwelling unit is $68570 +in.representative_income 68571 Representative total house income in the dwelling unit is $68571 +in.representative_income 68572 Representative total house income in the dwelling unit is $68572 +in.representative_income 68581 Representative total house income in the dwelling unit is $68581 +in.representative_income 68589 Representative total house income in the dwelling unit is $68589 +in.representative_income 68592 Representative total house income in the dwelling unit is $68592 +in.representative_income 68594 Representative total house income in the dwelling unit is $68594 +in.representative_income 68602 Representative total house income in the dwelling unit is $68602 +in.representative_income 68610 Representative total house income in the dwelling unit is $68610 +in.representative_income 68612 Representative total house income in the dwelling unit is $68612 +in.representative_income 68615 Representative total house income in the dwelling unit is $68615 +in.representative_income 68619 Representative total house income in the dwelling unit is $68619 +in.representative_income 68623 Representative total house income in the dwelling unit is $68623 +in.representative_income 68625 Representative total house income in the dwelling unit is $68625 +in.representative_income 68626 Representative total house income in the dwelling unit is $68626 +in.representative_income 68639 Representative total house income in the dwelling unit is $68639 +in.representative_income 68641 Representative total house income in the dwelling unit is $68641 +in.representative_income 68643 Representative total house income in the dwelling unit is $68643 +in.representative_income 68649 Representative total house income in the dwelling unit is $68649 +in.representative_income 68654 Representative total house income in the dwelling unit is $68654 +in.representative_income 68655 Representative total house income in the dwelling unit is $68655 +in.representative_income 68668 Representative total house income in the dwelling unit is $68668 +in.representative_income 68679 Representative total house income in the dwelling unit is $68679 +in.representative_income 68686 Representative total house income in the dwelling unit is $68686 +in.representative_income 68690 Representative total house income in the dwelling unit is $68690 +in.representative_income 68695 Representative total house income in the dwelling unit is $68695 +in.representative_income 68697 Representative total house income in the dwelling unit is $68697 +in.representative_income 68700 Representative total house income in the dwelling unit is $68700 +in.representative_income 68705 Representative total house income in the dwelling unit is $68705 +in.representative_income 68710 Representative total house income in the dwelling unit is $68710 +in.representative_income 68715 Representative total house income in the dwelling unit is $68715 +in.representative_income 68718 Representative total house income in the dwelling unit is $68718 +in.representative_income 68728 Representative total house income in the dwelling unit is $68728 +in.representative_income 68729 Representative total house income in the dwelling unit is $68729 +in.representative_income 68733 Representative total house income in the dwelling unit is $68733 +in.representative_income 68736 Representative total house income in the dwelling unit is $68736 +in.representative_income 68740 Representative total house income in the dwelling unit is $68740 +in.representative_income 68742 Representative total house income in the dwelling unit is $68742 +in.representative_income 68750 Representative total house income in the dwelling unit is $68750 +in.representative_income 68755 Representative total house income in the dwelling unit is $68755 +in.representative_income 68760 Representative total house income in the dwelling unit is $68760 +in.representative_income 68761 Representative total house income in the dwelling unit is $68761 +in.representative_income 68765 Representative total house income in the dwelling unit is $68765 +in.representative_income 68776 Representative total house income in the dwelling unit is $68776 +in.representative_income 68781 Representative total house income in the dwelling unit is $68781 +in.representative_income 68783 Representative total house income in the dwelling unit is $68783 +in.representative_income 68787 Representative total house income in the dwelling unit is $68787 +in.representative_income 68791 Representative total house income in the dwelling unit is $68791 +in.representative_income 68797 Representative total house income in the dwelling unit is $68797 +in.representative_income 68802 Representative total house income in the dwelling unit is $68802 +in.representative_income 68804 Representative total house income in the dwelling unit is $68804 +in.representative_income 68808 Representative total house income in the dwelling unit is $68808 +in.representative_income 68809 Representative total house income in the dwelling unit is $68809 +in.representative_income 68811 Representative total house income in the dwelling unit is $68811 +in.representative_income 68813 Representative total house income in the dwelling unit is $68813 +in.representative_income 68820 Representative total house income in the dwelling unit is $68820 +in.representative_income 68826 Representative total house income in the dwelling unit is $68826 +in.representative_income 68828 Representative total house income in the dwelling unit is $68828 +in.representative_income 68829 Representative total house income in the dwelling unit is $68829 +in.representative_income 68830 Representative total house income in the dwelling unit is $68830 +in.representative_income 68839 Representative total house income in the dwelling unit is $68839 +in.representative_income 68849 Representative total house income in the dwelling unit is $68849 +in.representative_income 68850 Representative total house income in the dwelling unit is $68850 +in.representative_income 68856 Representative total house income in the dwelling unit is $68856 +in.representative_income 68858 Representative total house income in the dwelling unit is $68858 +in.representative_income 68866 Representative total house income in the dwelling unit is $68866 +in.representative_income 68874 Representative total house income in the dwelling unit is $68874 +in.representative_income 68880 Representative total house income in the dwelling unit is $68880 +in.representative_income 68892 Representative total house income in the dwelling unit is $68892 +in.representative_income 68901 Representative total house income in the dwelling unit is $68901 +in.representative_income 68905 Representative total house income in the dwelling unit is $68905 +in.representative_income 68908 Representative total house income in the dwelling unit is $68908 +in.representative_income 68911 Representative total house income in the dwelling unit is $68911 +in.representative_income 68912 Representative total house income in the dwelling unit is $68912 +in.representative_income 68915 Representative total house income in the dwelling unit is $68915 +in.representative_income 68919 Representative total house income in the dwelling unit is $68919 +in.representative_income 68923 Representative total house income in the dwelling unit is $68923 +in.representative_income 68929 Representative total house income in the dwelling unit is $68929 +in.representative_income 68934 Representative total house income in the dwelling unit is $68934 +in.representative_income 68937 Representative total house income in the dwelling unit is $68937 +in.representative_income 68942 Representative total house income in the dwelling unit is $68942 +in.representative_income 68950 Representative total house income in the dwelling unit is $68950 +in.representative_income 68963 Representative total house income in the dwelling unit is $68963 +in.representative_income 68966 Representative total house income in the dwelling unit is $68966 +in.representative_income 68971 Representative total house income in the dwelling unit is $68971 +in.representative_income 68972 Representative total house income in the dwelling unit is $68972 +in.representative_income 68977 Representative total house income in the dwelling unit is $68977 +in.representative_income 68979 Representative total house income in the dwelling unit is $68979 +in.representative_income 68983 Representative total house income in the dwelling unit is $68983 +in.representative_income 68988 Representative total house income in the dwelling unit is $68988 +in.representative_income 68991 Representative total house income in the dwelling unit is $68991 +in.representative_income 68992 Representative total house income in the dwelling unit is $68992 +in.representative_income 68993 Representative total house income in the dwelling unit is $68993 +in.representative_income 68997 Representative total house income in the dwelling unit is $68997 +in.representative_income 69002 Representative total house income in the dwelling unit is $69002 +in.representative_income 69003 Representative total house income in the dwelling unit is $69003 +in.representative_income 69004 Representative total house income in the dwelling unit is $69004 +in.representative_income 69007 Representative total house income in the dwelling unit is $69007 +in.representative_income 69014 Representative total house income in the dwelling unit is $69014 +in.representative_income 69023 Representative total house income in the dwelling unit is $69023 +in.representative_income 69024 Representative total house income in the dwelling unit is $69024 +in.representative_income 69028 Representative total house income in the dwelling unit is $69028 +in.representative_income 69033 Representative total house income in the dwelling unit is $69033 +in.representative_income 69035 Representative total house income in the dwelling unit is $69035 +in.representative_income 69042 Representative total house income in the dwelling unit is $69042 +in.representative_income 69046 Representative total house income in the dwelling unit is $69046 +in.representative_income 69050 Representative total house income in the dwelling unit is $69050 +in.representative_income 69053 Representative total house income in the dwelling unit is $69053 +in.representative_income 69056 Representative total house income in the dwelling unit is $69056 +in.representative_income 69063 Representative total house income in the dwelling unit is $69063 +in.representative_income 69065 Representative total house income in the dwelling unit is $69065 +in.representative_income 69076 Representative total house income in the dwelling unit is $69076 +in.representative_income 69077 Representative total house income in the dwelling unit is $69077 +in.representative_income 69084 Representative total house income in the dwelling unit is $69084 +in.representative_income 69085 Representative total house income in the dwelling unit is $69085 +in.representative_income 69087 Representative total house income in the dwelling unit is $69087 +in.representative_income 69094 Representative total house income in the dwelling unit is $69094 +in.representative_income 69096 Representative total house income in the dwelling unit is $69096 +in.representative_income 69097 Representative total house income in the dwelling unit is $69097 +in.representative_income 69099 Representative total house income in the dwelling unit is $69099 +in.representative_income 69103 Representative total house income in the dwelling unit is $69103 +in.representative_income 69104 Representative total house income in the dwelling unit is $69104 +in.representative_income 69107 Representative total house income in the dwelling unit is $69107 +in.representative_income 69118 Representative total house income in the dwelling unit is $69118 +in.representative_income 69119 Representative total house income in the dwelling unit is $69119 +in.representative_income 69125 Representative total house income in the dwelling unit is $69125 +in.representative_income 69128 Representative total house income in the dwelling unit is $69128 +in.representative_income 69129 Representative total house income in the dwelling unit is $69129 +in.representative_income 69131 Representative total house income in the dwelling unit is $69131 +in.representative_income 69138 Representative total house income in the dwelling unit is $69138 +in.representative_income 69141 Representative total house income in the dwelling unit is $69141 +in.representative_income 69149 Representative total house income in the dwelling unit is $69149 +in.representative_income 69150 Representative total house income in the dwelling unit is $69150 +in.representative_income 69159 Representative total house income in the dwelling unit is $69159 +in.representative_income 69161 Representative total house income in the dwelling unit is $69161 +in.representative_income 69162 Representative total house income in the dwelling unit is $69162 +in.representative_income 69164 Representative total house income in the dwelling unit is $69164 +in.representative_income 69173 Representative total house income in the dwelling unit is $69173 +in.representative_income 69182 Representative total house income in the dwelling unit is $69182 +in.representative_income 69183 Representative total house income in the dwelling unit is $69183 +in.representative_income 69195 Representative total house income in the dwelling unit is $69195 +in.representative_income 69203 Representative total house income in the dwelling unit is $69203 +in.representative_income 69211 Representative total house income in the dwelling unit is $69211 +in.representative_income 69221 Representative total house income in the dwelling unit is $69221 +in.representative_income 69225 Representative total house income in the dwelling unit is $69225 +in.representative_income 69226 Representative total house income in the dwelling unit is $69226 +in.representative_income 69231 Representative total house income in the dwelling unit is $69231 +in.representative_income 69235 Representative total house income in the dwelling unit is $69235 +in.representative_income 69237 Representative total house income in the dwelling unit is $69237 +in.representative_income 69239 Representative total house income in the dwelling unit is $69239 +in.representative_income 69247 Representative total house income in the dwelling unit is $69247 +in.representative_income 69258 Representative total house income in the dwelling unit is $69258 +in.representative_income 69262 Representative total house income in the dwelling unit is $69262 +in.representative_income 69276 Representative total house income in the dwelling unit is $69276 +in.representative_income 69286 Representative total house income in the dwelling unit is $69286 +in.representative_income 69288 Representative total house income in the dwelling unit is $69288 +in.representative_income 69290 Representative total house income in the dwelling unit is $69290 +in.representative_income 69296 Representative total house income in the dwelling unit is $69296 +in.representative_income 69313 Representative total house income in the dwelling unit is $69313 +in.representative_income 69314 Representative total house income in the dwelling unit is $69314 +in.representative_income 69316 Representative total house income in the dwelling unit is $69316 +in.representative_income 69330 Representative total house income in the dwelling unit is $69330 +in.representative_income 69340 Representative total house income in the dwelling unit is $69340 +in.representative_income 69345 Representative total house income in the dwelling unit is $69345 +in.representative_income 69346 Representative total house income in the dwelling unit is $69346 +in.representative_income 69365 Representative total house income in the dwelling unit is $69365 +in.representative_income 69367 Representative total house income in the dwelling unit is $69367 +in.representative_income 69386 Representative total house income in the dwelling unit is $69386 +in.representative_income 69393 Representative total house income in the dwelling unit is $69393 +in.representative_income 69397 Representative total house income in the dwelling unit is $69397 +in.representative_income 69416 Representative total house income in the dwelling unit is $69416 +in.representative_income 69417 Representative total house income in the dwelling unit is $69417 +in.representative_income 69441 Representative total house income in the dwelling unit is $69441 +in.representative_income 69442 Representative total house income in the dwelling unit is $69442 +in.representative_income 69452 Representative total house income in the dwelling unit is $69452 +in.representative_income 69464 Representative total house income in the dwelling unit is $69464 +in.representative_income 69475 Representative total house income in the dwelling unit is $69475 +in.representative_income 69478 Representative total house income in the dwelling unit is $69478 +in.representative_income 69485 Representative total house income in the dwelling unit is $69485 +in.representative_income 69498 Representative total house income in the dwelling unit is $69498 +in.representative_income 69499 Representative total house income in the dwelling unit is $69499 +in.representative_income 69517 Representative total house income in the dwelling unit is $69517 +in.representative_income 69518 Representative total house income in the dwelling unit is $69518 +in.representative_income 69520 Representative total house income in the dwelling unit is $69520 +in.representative_income 69528 Representative total house income in the dwelling unit is $69528 +in.representative_income 69535 Representative total house income in the dwelling unit is $69535 +in.representative_income 69541 Representative total house income in the dwelling unit is $69541 +in.representative_income 69548 Representative total house income in the dwelling unit is $69548 +in.representative_income 69552 Representative total house income in the dwelling unit is $69552 +in.representative_income 69560 Representative total house income in the dwelling unit is $69560 +in.representative_income 69561 Representative total house income in the dwelling unit is $69561 +in.representative_income 69571 Representative total house income in the dwelling unit is $69571 +in.representative_income 69582 Representative total house income in the dwelling unit is $69582 +in.representative_income 69599 Representative total house income in the dwelling unit is $69599 +in.representative_income 69604 Representative total house income in the dwelling unit is $69604 +in.representative_income 69614 Representative total house income in the dwelling unit is $69614 +in.representative_income 69623 Representative total house income in the dwelling unit is $69623 +in.representative_income 69643 Representative total house income in the dwelling unit is $69643 +in.representative_income 69667 Representative total house income in the dwelling unit is $69667 +in.representative_income 69675 Representative total house income in the dwelling unit is $69675 +in.representative_income 69678 Representative total house income in the dwelling unit is $69678 +in.representative_income 69687 Representative total house income in the dwelling unit is $69687 +in.representative_income 69690 Representative total house income in the dwelling unit is $69690 +in.representative_income 69700 Representative total house income in the dwelling unit is $69700 +in.representative_income 69705 Representative total house income in the dwelling unit is $69705 +in.representative_income 69709 Representative total house income in the dwelling unit is $69709 +in.representative_income 69710 Representative total house income in the dwelling unit is $69710 +in.representative_income 69721 Representative total house income in the dwelling unit is $69721 +in.representative_income 69726 Representative total house income in the dwelling unit is $69726 +in.representative_income 69730 Representative total house income in the dwelling unit is $69730 +in.representative_income 69733 Representative total house income in the dwelling unit is $69733 +in.representative_income 69747 Representative total house income in the dwelling unit is $69747 +in.representative_income 69774 Representative total house income in the dwelling unit is $69774 +in.representative_income 69778 Representative total house income in the dwelling unit is $69778 +in.representative_income 69788 Representative total house income in the dwelling unit is $69788 +in.representative_income 69798 Representative total house income in the dwelling unit is $69798 +in.representative_income 69799 Representative total house income in the dwelling unit is $69799 +in.representative_income 69802 Representative total house income in the dwelling unit is $69802 +in.representative_income 69815 Representative total house income in the dwelling unit is $69815 +in.representative_income 69830 Representative total house income in the dwelling unit is $69830 +in.representative_income 69836 Representative total house income in the dwelling unit is $69836 +in.representative_income 69850 Representative total house income in the dwelling unit is $69850 +in.representative_income 69877 Representative total house income in the dwelling unit is $69877 +in.representative_income 69880 Representative total house income in the dwelling unit is $69880 +in.representative_income 69881 Representative total house income in the dwelling unit is $69881 +in.representative_income 69892 Representative total house income in the dwelling unit is $69892 +in.representative_income 69902 Representative total house income in the dwelling unit is $69902 +in.representative_income 69903 Representative total house income in the dwelling unit is $69903 +in.representative_income 69906 Representative total house income in the dwelling unit is $69906 +in.representative_income 69912 Representative total house income in the dwelling unit is $69912 +in.representative_income 69921 Representative total house income in the dwelling unit is $69921 +in.representative_income 69922 Representative total house income in the dwelling unit is $69922 +in.representative_income 69932 Representative total house income in the dwelling unit is $69932 +in.representative_income 69936 Representative total house income in the dwelling unit is $69936 +in.representative_income 69942 Representative total house income in the dwelling unit is $69942 +in.representative_income 69989 Representative total house income in the dwelling unit is $69989 +in.representative_income 70003 Representative total house income in the dwelling unit is $70003 +in.representative_income 70014 Representative total house income in the dwelling unit is $70014 +in.representative_income 70026 Representative total house income in the dwelling unit is $70026 +in.representative_income 70031 Representative total house income in the dwelling unit is $70031 +in.representative_income 70035 Representative total house income in the dwelling unit is $70035 +in.representative_income 70054 Representative total house income in the dwelling unit is $70054 +in.representative_income 70096 Representative total house income in the dwelling unit is $70096 +in.representative_income 70104 Representative total house income in the dwelling unit is $70104 +in.representative_income 70121 Representative total house income in the dwelling unit is $70121 +in.representative_income 70123 Representative total house income in the dwelling unit is $70123 +in.representative_income 70128 Representative total house income in the dwelling unit is $70128 +in.representative_income 70131 Representative total house income in the dwelling unit is $70131 +in.representative_income 70139 Representative total house income in the dwelling unit is $70139 +in.representative_income 70145 Representative total house income in the dwelling unit is $70145 +in.representative_income 70204 Representative total house income in the dwelling unit is $70204 +in.representative_income 70205 Representative total house income in the dwelling unit is $70205 +in.representative_income 70231 Representative total house income in the dwelling unit is $70231 +in.representative_income 70236 Representative total house income in the dwelling unit is $70236 +in.representative_income 70237 Representative total house income in the dwelling unit is $70237 +in.representative_income 70242 Representative total house income in the dwelling unit is $70242 +in.representative_income 70252 Representative total house income in the dwelling unit is $70252 +in.representative_income 70262 Representative total house income in the dwelling unit is $70262 +in.representative_income 70272 Representative total house income in the dwelling unit is $70272 +in.representative_income 70285 Representative total house income in the dwelling unit is $70285 +in.representative_income 70306 Representative total house income in the dwelling unit is $70306 +in.representative_income 70311 Representative total house income in the dwelling unit is $70311 +in.representative_income 70339 Representative total house income in the dwelling unit is $70339 +in.representative_income 70345 Representative total house income in the dwelling unit is $70345 +in.representative_income 70386 Representative total house income in the dwelling unit is $70386 +in.representative_income 70397 Representative total house income in the dwelling unit is $70397 +in.representative_income 70407 Representative total house income in the dwelling unit is $70407 +in.representative_income 70417 Representative total house income in the dwelling unit is $70417 +in.representative_income 70418 Representative total house income in the dwelling unit is $70418 +in.representative_income 70447 Representative total house income in the dwelling unit is $70447 +in.representative_income 70448 Representative total house income in the dwelling unit is $70448 +in.representative_income 70490 Representative total house income in the dwelling unit is $70490 +in.representative_income 70508 Representative total house income in the dwelling unit is $70508 +in.representative_income 70518 Representative total house income in the dwelling unit is $70518 +in.representative_income 70525 Representative total house income in the dwelling unit is $70525 +in.representative_income 70551 Representative total house income in the dwelling unit is $70551 +in.representative_income 70553 Representative total house income in the dwelling unit is $70553 +in.representative_income 70555 Representative total house income in the dwelling unit is $70555 +in.representative_income 70559 Representative total house income in the dwelling unit is $70559 +in.representative_income 70564 Representative total house income in the dwelling unit is $70564 +in.representative_income 70595 Representative total house income in the dwelling unit is $70595 +in.representative_income 70609 Representative total house income in the dwelling unit is $70609 +in.representative_income 70626 Representative total house income in the dwelling unit is $70626 +in.representative_income 70633 Representative total house income in the dwelling unit is $70633 +in.representative_income 70654 Representative total house income in the dwelling unit is $70654 +in.representative_income 70659 Representative total house income in the dwelling unit is $70659 +in.representative_income 70663 Representative total house income in the dwelling unit is $70663 +in.representative_income 70680 Representative total house income in the dwelling unit is $70680 +in.representative_income 70699 Representative total house income in the dwelling unit is $70699 +in.representative_income 70710 Representative total house income in the dwelling unit is $70710 +in.representative_income 70716 Representative total house income in the dwelling unit is $70716 +in.representative_income 70725 Representative total house income in the dwelling unit is $70725 +in.representative_income 70740 Representative total house income in the dwelling unit is $70740 +in.representative_income 70741 Representative total house income in the dwelling unit is $70741 +in.representative_income 70751 Representative total house income in the dwelling unit is $70751 +in.representative_income 70758 Representative total house income in the dwelling unit is $70758 +in.representative_income 70764 Representative total house income in the dwelling unit is $70764 +in.representative_income 70770 Representative total house income in the dwelling unit is $70770 +in.representative_income 70785 Representative total house income in the dwelling unit is $70785 +in.representative_income 70791 Representative total house income in the dwelling unit is $70791 +in.representative_income 70799 Representative total house income in the dwelling unit is $70799 +in.representative_income 70804 Representative total house income in the dwelling unit is $70804 +in.representative_income 70811 Representative total house income in the dwelling unit is $70811 +in.representative_income 70817 Representative total house income in the dwelling unit is $70817 +in.representative_income 70826 Representative total house income in the dwelling unit is $70826 +in.representative_income 70848 Representative total house income in the dwelling unit is $70848 +in.representative_income 70861 Representative total house income in the dwelling unit is $70861 +in.representative_income 70862 Representative total house income in the dwelling unit is $70862 +in.representative_income 70869 Representative total house income in the dwelling unit is $70869 +in.representative_income 70878 Representative total house income in the dwelling unit is $70878 +in.representative_income 70912 Representative total house income in the dwelling unit is $70912 +in.representative_income 70913 Representative total house income in the dwelling unit is $70913 +in.representative_income 70943 Representative total house income in the dwelling unit is $70943 +in.representative_income 70944 Representative total house income in the dwelling unit is $70944 +in.representative_income 70955 Representative total house income in the dwelling unit is $70955 +in.representative_income 70963 Representative total house income in the dwelling unit is $70963 +in.representative_income 70964 Representative total house income in the dwelling unit is $70964 +in.representative_income 70966 Representative total house income in the dwelling unit is $70966 +in.representative_income 70975 Representative total house income in the dwelling unit is $70975 +in.representative_income 70987 Representative total house income in the dwelling unit is $70987 +in.representative_income 70993 Representative total house income in the dwelling unit is $70993 +in.representative_income 70995 Representative total house income in the dwelling unit is $70995 +in.representative_income 71013 Representative total house income in the dwelling unit is $71013 +in.representative_income 71028 Representative total house income in the dwelling unit is $71028 +in.representative_income 71041 Representative total house income in the dwelling unit is $71041 +in.representative_income 71062 Representative total house income in the dwelling unit is $71062 +in.representative_income 71064 Representative total house income in the dwelling unit is $71064 +in.representative_income 71067 Representative total house income in the dwelling unit is $71067 +in.representative_income 71081 Representative total house income in the dwelling unit is $71081 +in.representative_income 71095 Representative total house income in the dwelling unit is $71095 +in.representative_income 71108 Representative total house income in the dwelling unit is $71108 +in.representative_income 71114 Representative total house income in the dwelling unit is $71114 +in.representative_income 71116 Representative total house income in the dwelling unit is $71116 +in.representative_income 71117 Representative total house income in the dwelling unit is $71117 +in.representative_income 71123 Representative total house income in the dwelling unit is $71123 +in.representative_income 71148 Representative total house income in the dwelling unit is $71148 +in.representative_income 71155 Representative total house income in the dwelling unit is $71155 +in.representative_income 71170 Representative total house income in the dwelling unit is $71170 +in.representative_income 71186 Representative total house income in the dwelling unit is $71186 +in.representative_income 71190 Representative total house income in the dwelling unit is $71190 +in.representative_income 71201 Representative total house income in the dwelling unit is $71201 +in.representative_income 71203 Representative total house income in the dwelling unit is $71203 +in.representative_income 71215 Representative total house income in the dwelling unit is $71215 +in.representative_income 71273 Representative total house income in the dwelling unit is $71273 +in.representative_income 71277 Representative total house income in the dwelling unit is $71277 +in.representative_income 71291 Representative total house income in the dwelling unit is $71291 +in.representative_income 71299 Representative total house income in the dwelling unit is $71299 +in.representative_income 71311 Representative total house income in the dwelling unit is $71311 +in.representative_income 71315 Representative total house income in the dwelling unit is $71315 +in.representative_income 71316 Representative total house income in the dwelling unit is $71316 +in.representative_income 71322 Representative total house income in the dwelling unit is $71322 +in.representative_income 71331 Representative total house income in the dwelling unit is $71331 +in.representative_income 71336 Representative total house income in the dwelling unit is $71336 +in.representative_income 71342 Representative total house income in the dwelling unit is $71342 +in.representative_income 71354 Representative total house income in the dwelling unit is $71354 +in.representative_income 71365 Representative total house income in the dwelling unit is $71365 +in.representative_income 71377 Representative total house income in the dwelling unit is $71377 +in.representative_income 71384 Representative total house income in the dwelling unit is $71384 +in.representative_income 71385 Representative total house income in the dwelling unit is $71385 +in.representative_income 71397 Representative total house income in the dwelling unit is $71397 +in.representative_income 71417 Representative total house income in the dwelling unit is $71417 +in.representative_income 71419 Representative total house income in the dwelling unit is $71419 +in.representative_income 71427 Representative total house income in the dwelling unit is $71427 +in.representative_income 71451 Representative total house income in the dwelling unit is $71451 +in.representative_income 71462 Representative total house income in the dwelling unit is $71462 +in.representative_income 71480 Representative total house income in the dwelling unit is $71480 +in.representative_income 71491 Representative total house income in the dwelling unit is $71491 +in.representative_income 71496 Representative total house income in the dwelling unit is $71496 +in.representative_income 71502 Representative total house income in the dwelling unit is $71502 +in.representative_income 71508 Representative total house income in the dwelling unit is $71508 +in.representative_income 71518 Representative total house income in the dwelling unit is $71518 +in.representative_income 71527 Representative total house income in the dwelling unit is $71527 +in.representative_income 71535 Representative total house income in the dwelling unit is $71535 +in.representative_income 71569 Representative total house income in the dwelling unit is $71569 +in.representative_income 71578 Representative total house income in the dwelling unit is $71578 +in.representative_income 71582 Representative total house income in the dwelling unit is $71582 +in.representative_income 71583 Representative total house income in the dwelling unit is $71583 +in.representative_income 71599 Representative total house income in the dwelling unit is $71599 +in.representative_income 71602 Representative total house income in the dwelling unit is $71602 +in.representative_income 71607 Representative total house income in the dwelling unit is $71607 +in.representative_income 71608 Representative total house income in the dwelling unit is $71608 +in.representative_income 71609 Representative total house income in the dwelling unit is $71609 +in.representative_income 71613 Representative total house income in the dwelling unit is $71613 +in.representative_income 71619 Representative total house income in the dwelling unit is $71619 +in.representative_income 71635 Representative total house income in the dwelling unit is $71635 +in.representative_income 71644 Representative total house income in the dwelling unit is $71644 +in.representative_income 71650 Representative total house income in the dwelling unit is $71650 +in.representative_income 71681 Representative total house income in the dwelling unit is $71681 +in.representative_income 71686 Representative total house income in the dwelling unit is $71686 +in.representative_income 71690 Representative total house income in the dwelling unit is $71690 +in.representative_income 71700 Representative total house income in the dwelling unit is $71700 +in.representative_income 71706 Representative total house income in the dwelling unit is $71706 +in.representative_income 71711 Representative total house income in the dwelling unit is $71711 +in.representative_income 71714 Representative total house income in the dwelling unit is $71714 +in.representative_income 71720 Representative total house income in the dwelling unit is $71720 +in.representative_income 71724 Representative total house income in the dwelling unit is $71724 +in.representative_income 71737 Representative total house income in the dwelling unit is $71737 +in.representative_income 71738 Representative total house income in the dwelling unit is $71738 +in.representative_income 71744 Representative total house income in the dwelling unit is $71744 +in.representative_income 71751 Representative total house income in the dwelling unit is $71751 +in.representative_income 71755 Representative total house income in the dwelling unit is $71755 +in.representative_income 71758 Representative total house income in the dwelling unit is $71758 +in.representative_income 71771 Representative total house income in the dwelling unit is $71771 +in.representative_income 71776 Representative total house income in the dwelling unit is $71776 +in.representative_income 71789 Representative total house income in the dwelling unit is $71789 +in.representative_income 71814 Representative total house income in the dwelling unit is $71814 +in.representative_income 71819 Representative total house income in the dwelling unit is $71819 +in.representative_income 71821 Representative total house income in the dwelling unit is $71821 +in.representative_income 71842 Representative total house income in the dwelling unit is $71842 +in.representative_income 71852 Representative total house income in the dwelling unit is $71852 +in.representative_income 71871 Representative total house income in the dwelling unit is $71871 +in.representative_income 71878 Representative total house income in the dwelling unit is $71878 +in.representative_income 71882 Representative total house income in the dwelling unit is $71882 +in.representative_income 71892 Representative total house income in the dwelling unit is $71892 +in.representative_income 71899 Representative total house income in the dwelling unit is $71899 +in.representative_income 71900 Representative total house income in the dwelling unit is $71900 +in.representative_income 71905 Representative total house income in the dwelling unit is $71905 +in.representative_income 71912 Representative total house income in the dwelling unit is $71912 +in.representative_income 71921 Representative total house income in the dwelling unit is $71921 +in.representative_income 71922 Representative total house income in the dwelling unit is $71922 +in.representative_income 71924 Representative total house income in the dwelling unit is $71924 +in.representative_income 71943 Representative total house income in the dwelling unit is $71943 +in.representative_income 71959 Representative total house income in the dwelling unit is $71959 +in.representative_income 71973 Representative total house income in the dwelling unit is $71973 +in.representative_income 71975 Representative total house income in the dwelling unit is $71975 +in.representative_income 71983 Representative total house income in the dwelling unit is $71983 +in.representative_income 71984 Representative total house income in the dwelling unit is $71984 +in.representative_income 71996 Representative total house income in the dwelling unit is $71996 +in.representative_income 72006 Representative total house income in the dwelling unit is $72006 +in.representative_income 72013 Representative total house income in the dwelling unit is $72013 +in.representative_income 72023 Representative total house income in the dwelling unit is $72023 +in.representative_income 72028 Representative total house income in the dwelling unit is $72028 +in.representative_income 72030 Representative total house income in the dwelling unit is $72030 +in.representative_income 72040 Representative total house income in the dwelling unit is $72040 +in.representative_income 72061 Representative total house income in the dwelling unit is $72061 +in.representative_income 72067 Representative total house income in the dwelling unit is $72067 +in.representative_income 72068 Representative total house income in the dwelling unit is $72068 +in.representative_income 72082 Representative total house income in the dwelling unit is $72082 +in.representative_income 72091 Representative total house income in the dwelling unit is $72091 +in.representative_income 72094 Representative total house income in the dwelling unit is $72094 +in.representative_income 72098 Representative total house income in the dwelling unit is $72098 +in.representative_income 72100 Representative total house income in the dwelling unit is $72100 +in.representative_income 72121 Representative total house income in the dwelling unit is $72121 +in.representative_income 72124 Representative total house income in the dwelling unit is $72124 +in.representative_income 72135 Representative total house income in the dwelling unit is $72135 +in.representative_income 72136 Representative total house income in the dwelling unit is $72136 +in.representative_income 72139 Representative total house income in the dwelling unit is $72139 +in.representative_income 72143 Representative total house income in the dwelling unit is $72143 +in.representative_income 72145 Representative total house income in the dwelling unit is $72145 +in.representative_income 72175 Representative total house income in the dwelling unit is $72175 +in.representative_income 72182 Representative total house income in the dwelling unit is $72182 +in.representative_income 72201 Representative total house income in the dwelling unit is $72201 +in.representative_income 72205 Representative total house income in the dwelling unit is $72205 +in.representative_income 72212 Representative total house income in the dwelling unit is $72212 +in.representative_income 72219 Representative total house income in the dwelling unit is $72219 +in.representative_income 72223 Representative total house income in the dwelling unit is $72223 +in.representative_income 72225 Representative total house income in the dwelling unit is $72225 +in.representative_income 72229 Representative total house income in the dwelling unit is $72229 +in.representative_income 72233 Representative total house income in the dwelling unit is $72233 +in.representative_income 72240 Representative total house income in the dwelling unit is $72240 +in.representative_income 72241 Representative total house income in the dwelling unit is $72241 +in.representative_income 72243 Representative total house income in the dwelling unit is $72243 +in.representative_income 72256 Representative total house income in the dwelling unit is $72256 +in.representative_income 72263 Representative total house income in the dwelling unit is $72263 +in.representative_income 72267 Representative total house income in the dwelling unit is $72267 +in.representative_income 72283 Representative total house income in the dwelling unit is $72283 +in.representative_income 72286 Representative total house income in the dwelling unit is $72286 +in.representative_income 72293 Representative total house income in the dwelling unit is $72293 +in.representative_income 72294 Representative total house income in the dwelling unit is $72294 +in.representative_income 72296 Representative total house income in the dwelling unit is $72296 +in.representative_income 72305 Representative total house income in the dwelling unit is $72305 +in.representative_income 72325 Representative total house income in the dwelling unit is $72325 +in.representative_income 72326 Representative total house income in the dwelling unit is $72326 +in.representative_income 72337 Representative total house income in the dwelling unit is $72337 +in.representative_income 72346 Representative total house income in the dwelling unit is $72346 +in.representative_income 72351 Representative total house income in the dwelling unit is $72351 +in.representative_income 72378 Representative total house income in the dwelling unit is $72378 +in.representative_income 72382 Representative total house income in the dwelling unit is $72382 +in.representative_income 72391 Representative total house income in the dwelling unit is $72391 +in.representative_income 72399 Representative total house income in the dwelling unit is $72399 +in.representative_income 72402 Representative total house income in the dwelling unit is $72402 +in.representative_income 72408 Representative total house income in the dwelling unit is $72408 +in.representative_income 72413 Representative total house income in the dwelling unit is $72413 +in.representative_income 72415 Representative total house income in the dwelling unit is $72415 +in.representative_income 72418 Representative total house income in the dwelling unit is $72418 +in.representative_income 72423 Representative total house income in the dwelling unit is $72423 +in.representative_income 72427 Representative total house income in the dwelling unit is $72427 +in.representative_income 72434 Representative total house income in the dwelling unit is $72434 +in.representative_income 72437 Representative total house income in the dwelling unit is $72437 +in.representative_income 72445 Representative total house income in the dwelling unit is $72445 +in.representative_income 72448 Representative total house income in the dwelling unit is $72448 +in.representative_income 72452 Representative total house income in the dwelling unit is $72452 +in.representative_income 72458 Representative total house income in the dwelling unit is $72458 +in.representative_income 72460 Representative total house income in the dwelling unit is $72460 +in.representative_income 72462 Representative total house income in the dwelling unit is $72462 +in.representative_income 72478 Representative total house income in the dwelling unit is $72478 +in.representative_income 72479 Representative total house income in the dwelling unit is $72479 +in.representative_income 72490 Representative total house income in the dwelling unit is $72490 +in.representative_income 72497 Representative total house income in the dwelling unit is $72497 +in.representative_income 72500 Representative total house income in the dwelling unit is $72500 +in.representative_income 72501 Representative total house income in the dwelling unit is $72501 +in.representative_income 72503 Representative total house income in the dwelling unit is $72503 +in.representative_income 72504 Representative total house income in the dwelling unit is $72504 +in.representative_income 72511 Representative total house income in the dwelling unit is $72511 +in.representative_income 72522 Representative total house income in the dwelling unit is $72522 +in.representative_income 72528 Representative total house income in the dwelling unit is $72528 +in.representative_income 72543 Representative total house income in the dwelling unit is $72543 +in.representative_income 72557 Representative total house income in the dwelling unit is $72557 +in.representative_income 72559 Representative total house income in the dwelling unit is $72559 +in.representative_income 72565 Representative total house income in the dwelling unit is $72565 +in.representative_income 72608 Representative total house income in the dwelling unit is $72608 +in.representative_income 72611 Representative total house income in the dwelling unit is $72611 +in.representative_income 72615 Representative total house income in the dwelling unit is $72615 +in.representative_income 72629 Representative total house income in the dwelling unit is $72629 +in.representative_income 72635 Representative total house income in the dwelling unit is $72635 +in.representative_income 72640 Representative total house income in the dwelling unit is $72640 +in.representative_income 72651 Representative total house income in the dwelling unit is $72651 +in.representative_income 72652 Representative total house income in the dwelling unit is $72652 +in.representative_income 72655 Representative total house income in the dwelling unit is $72655 +in.representative_income 72662 Representative total house income in the dwelling unit is $72662 +in.representative_income 72663 Representative total house income in the dwelling unit is $72663 +in.representative_income 72672 Representative total house income in the dwelling unit is $72672 +in.representative_income 72683 Representative total house income in the dwelling unit is $72683 +in.representative_income 72708 Representative total house income in the dwelling unit is $72708 +in.representative_income 72716 Representative total house income in the dwelling unit is $72716 +in.representative_income 72717 Representative total house income in the dwelling unit is $72717 +in.representative_income 72726 Representative total house income in the dwelling unit is $72726 +in.representative_income 72727 Representative total house income in the dwelling unit is $72727 +in.representative_income 72730 Representative total house income in the dwelling unit is $72730 +in.representative_income 72741 Representative total house income in the dwelling unit is $72741 +in.representative_income 72742 Representative total house income in the dwelling unit is $72742 +in.representative_income 72757 Representative total house income in the dwelling unit is $72757 +in.representative_income 72768 Representative total house income in the dwelling unit is $72768 +in.representative_income 72769 Representative total house income in the dwelling unit is $72769 +in.representative_income 72770 Representative total house income in the dwelling unit is $72770 +in.representative_income 72780 Representative total house income in the dwelling unit is $72780 +in.representative_income 72781 Representative total house income in the dwelling unit is $72781 +in.representative_income 72800 Representative total house income in the dwelling unit is $72800 +in.representative_income 72801 Representative total house income in the dwelling unit is $72801 +in.representative_income 72802 Representative total house income in the dwelling unit is $72802 +in.representative_income 72810 Representative total house income in the dwelling unit is $72810 +in.representative_income 72811 Representative total house income in the dwelling unit is $72811 +in.representative_income 72820 Representative total house income in the dwelling unit is $72820 +in.representative_income 72824 Representative total house income in the dwelling unit is $72824 +in.representative_income 72825 Representative total house income in the dwelling unit is $72825 +in.representative_income 72831 Representative total house income in the dwelling unit is $72831 +in.representative_income 72835 Representative total house income in the dwelling unit is $72835 +in.representative_income 72845 Representative total house income in the dwelling unit is $72845 +in.representative_income 72849 Representative total house income in the dwelling unit is $72849 +in.representative_income 72852 Representative total house income in the dwelling unit is $72852 +in.representative_income 72856 Representative total house income in the dwelling unit is $72856 +in.representative_income 72872 Representative total house income in the dwelling unit is $72872 +in.representative_income 72873 Representative total house income in the dwelling unit is $72873 +in.representative_income 72878 Representative total house income in the dwelling unit is $72878 +in.representative_income 72887 Representative total house income in the dwelling unit is $72887 +in.representative_income 72888 Representative total house income in the dwelling unit is $72888 +in.representative_income 72895 Representative total house income in the dwelling unit is $72895 +in.representative_income 72898 Representative total house income in the dwelling unit is $72898 +in.representative_income 72909 Representative total house income in the dwelling unit is $72909 +in.representative_income 72916 Representative total house income in the dwelling unit is $72916 +in.representative_income 72919 Representative total house income in the dwelling unit is $72919 +in.representative_income 72924 Representative total house income in the dwelling unit is $72924 +in.representative_income 72926 Representative total house income in the dwelling unit is $72926 +in.representative_income 72932 Representative total house income in the dwelling unit is $72932 +in.representative_income 72936 Representative total house income in the dwelling unit is $72936 +in.representative_income 72947 Representative total house income in the dwelling unit is $72947 +in.representative_income 72962 Representative total house income in the dwelling unit is $72962 +in.representative_income 72965 Representative total house income in the dwelling unit is $72965 +in.representative_income 72975 Representative total house income in the dwelling unit is $72975 +in.representative_income 72979 Representative total house income in the dwelling unit is $72979 +in.representative_income 72983 Representative total house income in the dwelling unit is $72983 +in.representative_income 72984 Representative total house income in the dwelling unit is $72984 +in.representative_income 72986 Representative total house income in the dwelling unit is $72986 +in.representative_income 72995 Representative total house income in the dwelling unit is $72995 +in.representative_income 72996 Representative total house income in the dwelling unit is $72996 +in.representative_income 72999 Representative total house income in the dwelling unit is $72999 +in.representative_income 73005 Representative total house income in the dwelling unit is $73005 +in.representative_income 73012 Representative total house income in the dwelling unit is $73012 +in.representative_income 73015 Representative total house income in the dwelling unit is $73015 +in.representative_income 73016 Representative total house income in the dwelling unit is $73016 +in.representative_income 73027 Representative total house income in the dwelling unit is $73027 +in.representative_income 73029 Representative total house income in the dwelling unit is $73029 +in.representative_income 73031 Representative total house income in the dwelling unit is $73031 +in.representative_income 73033 Representative total house income in the dwelling unit is $73033 +in.representative_income 73039 Representative total house income in the dwelling unit is $73039 +in.representative_income 73040 Representative total house income in the dwelling unit is $73040 +in.representative_income 73042 Representative total house income in the dwelling unit is $73042 +in.representative_income 73043 Representative total house income in the dwelling unit is $73043 +in.representative_income 73048 Representative total house income in the dwelling unit is $73048 +in.representative_income 73052 Representative total house income in the dwelling unit is $73052 +in.representative_income 73074 Representative total house income in the dwelling unit is $73074 +in.representative_income 73078 Representative total house income in the dwelling unit is $73078 +in.representative_income 73079 Representative total house income in the dwelling unit is $73079 +in.representative_income 73080 Representative total house income in the dwelling unit is $73080 +in.representative_income 73084 Representative total house income in the dwelling unit is $73084 +in.representative_income 73094 Representative total house income in the dwelling unit is $73094 +in.representative_income 73095 Representative total house income in the dwelling unit is $73095 +in.representative_income 73099 Representative total house income in the dwelling unit is $73099 +in.representative_income 73102 Representative total house income in the dwelling unit is $73102 +in.representative_income 73109 Representative total house income in the dwelling unit is $73109 +in.representative_income 73113 Representative total house income in the dwelling unit is $73113 +in.representative_income 73119 Representative total house income in the dwelling unit is $73119 +in.representative_income 73124 Representative total house income in the dwelling unit is $73124 +in.representative_income 73125 Representative total house income in the dwelling unit is $73125 +in.representative_income 73130 Representative total house income in the dwelling unit is $73130 +in.representative_income 73135 Representative total house income in the dwelling unit is $73135 +in.representative_income 73145 Representative total house income in the dwelling unit is $73145 +in.representative_income 73147 Representative total house income in the dwelling unit is $73147 +in.representative_income 73156 Representative total house income in the dwelling unit is $73156 +in.representative_income 73160 Representative total house income in the dwelling unit is $73160 +in.representative_income 73185 Representative total house income in the dwelling unit is $73185 +in.representative_income 73190 Representative total house income in the dwelling unit is $73190 +in.representative_income 73205 Representative total house income in the dwelling unit is $73205 +in.representative_income 73206 Representative total house income in the dwelling unit is $73206 +in.representative_income 73209 Representative total house income in the dwelling unit is $73209 +in.representative_income 73211 Representative total house income in the dwelling unit is $73211 +in.representative_income 73212 Representative total house income in the dwelling unit is $73212 +in.representative_income 73220 Representative total house income in the dwelling unit is $73220 +in.representative_income 73233 Representative total house income in the dwelling unit is $73233 +in.representative_income 73236 Representative total house income in the dwelling unit is $73236 +in.representative_income 73242 Representative total house income in the dwelling unit is $73242 +in.representative_income 73244 Representative total house income in the dwelling unit is $73244 +in.representative_income 73254 Representative total house income in the dwelling unit is $73254 +in.representative_income 73255 Representative total house income in the dwelling unit is $73255 +in.representative_income 73264 Representative total house income in the dwelling unit is $73264 +in.representative_income 73269 Representative total house income in the dwelling unit is $73269 +in.representative_income 73271 Representative total house income in the dwelling unit is $73271 +in.representative_income 73274 Representative total house income in the dwelling unit is $73274 +in.representative_income 73276 Representative total house income in the dwelling unit is $73276 +in.representative_income 73278 Representative total house income in the dwelling unit is $73278 +in.representative_income 73285 Representative total house income in the dwelling unit is $73285 +in.representative_income 73295 Representative total house income in the dwelling unit is $73295 +in.representative_income 73298 Representative total house income in the dwelling unit is $73298 +in.representative_income 73301 Representative total house income in the dwelling unit is $73301 +in.representative_income 73302 Representative total house income in the dwelling unit is $73302 +in.representative_income 73316 Representative total house income in the dwelling unit is $73316 +in.representative_income 73326 Representative total house income in the dwelling unit is $73326 +in.representative_income 73336 Representative total house income in the dwelling unit is $73336 +in.representative_income 73337 Representative total house income in the dwelling unit is $73337 +in.representative_income 73346 Representative total house income in the dwelling unit is $73346 +in.representative_income 73348 Representative total house income in the dwelling unit is $73348 +in.representative_income 73364 Representative total house income in the dwelling unit is $73364 +in.representative_income 73367 Representative total house income in the dwelling unit is $73367 +in.representative_income 73377 Representative total house income in the dwelling unit is $73377 +in.representative_income 73380 Representative total house income in the dwelling unit is $73380 +in.representative_income 73387 Representative total house income in the dwelling unit is $73387 +in.representative_income 73388 Representative total house income in the dwelling unit is $73388 +in.representative_income 73400 Representative total house income in the dwelling unit is $73400 +in.representative_income 73407 Representative total house income in the dwelling unit is $73407 +in.representative_income 73409 Representative total house income in the dwelling unit is $73409 +in.representative_income 73418 Representative total house income in the dwelling unit is $73418 +in.representative_income 73421 Representative total house income in the dwelling unit is $73421 +in.representative_income 73424 Representative total house income in the dwelling unit is $73424 +in.representative_income 73428 Representative total house income in the dwelling unit is $73428 +in.representative_income 73438 Representative total house income in the dwelling unit is $73438 +in.representative_income 73439 Representative total house income in the dwelling unit is $73439 +in.representative_income 73443 Representative total house income in the dwelling unit is $73443 +in.representative_income 73445 Representative total house income in the dwelling unit is $73445 +in.representative_income 73460 Representative total house income in the dwelling unit is $73460 +in.representative_income 73472 Representative total house income in the dwelling unit is $73472 +in.representative_income 73481 Representative total house income in the dwelling unit is $73481 +in.representative_income 73483 Representative total house income in the dwelling unit is $73483 +in.representative_income 73488 Representative total house income in the dwelling unit is $73488 +in.representative_income 73494 Representative total house income in the dwelling unit is $73494 +in.representative_income 73505 Representative total house income in the dwelling unit is $73505 +in.representative_income 73506 Representative total house income in the dwelling unit is $73506 +in.representative_income 73515 Representative total house income in the dwelling unit is $73515 +in.representative_income 73516 Representative total house income in the dwelling unit is $73516 +in.representative_income 73519 Representative total house income in the dwelling unit is $73519 +in.representative_income 73526 Representative total house income in the dwelling unit is $73526 +in.representative_income 73528 Representative total house income in the dwelling unit is $73528 +in.representative_income 73532 Representative total house income in the dwelling unit is $73532 +in.representative_income 73533 Representative total house income in the dwelling unit is $73533 +in.representative_income 73539 Representative total house income in the dwelling unit is $73539 +in.representative_income 73543 Representative total house income in the dwelling unit is $73543 +in.representative_income 73548 Representative total house income in the dwelling unit is $73548 +in.representative_income 73553 Representative total house income in the dwelling unit is $73553 +in.representative_income 73559 Representative total house income in the dwelling unit is $73559 +in.representative_income 73563 Representative total house income in the dwelling unit is $73563 +in.representative_income 73569 Representative total house income in the dwelling unit is $73569 +in.representative_income 73580 Representative total house income in the dwelling unit is $73580 +in.representative_income 73591 Representative total house income in the dwelling unit is $73591 +in.representative_income 73594 Representative total house income in the dwelling unit is $73594 +in.representative_income 73606 Representative total house income in the dwelling unit is $73606 +in.representative_income 73612 Representative total house income in the dwelling unit is $73612 +in.representative_income 73619 Representative total house income in the dwelling unit is $73619 +in.representative_income 73620 Representative total house income in the dwelling unit is $73620 +in.representative_income 73623 Representative total house income in the dwelling unit is $73623 +in.representative_income 73625 Representative total house income in the dwelling unit is $73625 +in.representative_income 73629 Representative total house income in the dwelling unit is $73629 +in.representative_income 73639 Representative total house income in the dwelling unit is $73639 +in.representative_income 73640 Representative total house income in the dwelling unit is $73640 +in.representative_income 73646 Representative total house income in the dwelling unit is $73646 +in.representative_income 73650 Representative total house income in the dwelling unit is $73650 +in.representative_income 73660 Representative total house income in the dwelling unit is $73660 +in.representative_income 73670 Representative total house income in the dwelling unit is $73670 +in.representative_income 73673 Representative total house income in the dwelling unit is $73673 +in.representative_income 73687 Representative total house income in the dwelling unit is $73687 +in.representative_income 73688 Representative total house income in the dwelling unit is $73688 +in.representative_income 73695 Representative total house income in the dwelling unit is $73695 +in.representative_income 73698 Representative total house income in the dwelling unit is $73698 +in.representative_income 73703 Representative total house income in the dwelling unit is $73703 +in.representative_income 73710 Representative total house income in the dwelling unit is $73710 +in.representative_income 73714 Representative total house income in the dwelling unit is $73714 +in.representative_income 73717 Representative total house income in the dwelling unit is $73717 +in.representative_income 73720 Representative total house income in the dwelling unit is $73720 +in.representative_income 73724 Representative total house income in the dwelling unit is $73724 +in.representative_income 73729 Representative total house income in the dwelling unit is $73729 +in.representative_income 73738 Representative total house income in the dwelling unit is $73738 +in.representative_income 73741 Representative total house income in the dwelling unit is $73741 +in.representative_income 73744 Representative total house income in the dwelling unit is $73744 +in.representative_income 73746 Representative total house income in the dwelling unit is $73746 +in.representative_income 73748 Representative total house income in the dwelling unit is $73748 +in.representative_income 73751 Representative total house income in the dwelling unit is $73751 +in.representative_income 73759 Representative total house income in the dwelling unit is $73759 +in.representative_income 73761 Representative total house income in the dwelling unit is $73761 +in.representative_income 73764 Representative total house income in the dwelling unit is $73764 +in.representative_income 73769 Representative total house income in the dwelling unit is $73769 +in.representative_income 73770 Representative total house income in the dwelling unit is $73770 +in.representative_income 73775 Representative total house income in the dwelling unit is $73775 +in.representative_income 73780 Representative total house income in the dwelling unit is $73780 +in.representative_income 73781 Representative total house income in the dwelling unit is $73781 +in.representative_income 73782 Representative total house income in the dwelling unit is $73782 +in.representative_income 73789 Representative total house income in the dwelling unit is $73789 +in.representative_income 73791 Representative total house income in the dwelling unit is $73791 +in.representative_income 73796 Representative total house income in the dwelling unit is $73796 +in.representative_income 73800 Representative total house income in the dwelling unit is $73800 +in.representative_income 73811 Representative total house income in the dwelling unit is $73811 +in.representative_income 73818 Representative total house income in the dwelling unit is $73818 +in.representative_income 73821 Representative total house income in the dwelling unit is $73821 +in.representative_income 73823 Representative total house income in the dwelling unit is $73823 +in.representative_income 73832 Representative total house income in the dwelling unit is $73832 +in.representative_income 73833 Representative total house income in the dwelling unit is $73833 +in.representative_income 73836 Representative total house income in the dwelling unit is $73836 +in.representative_income 73839 Representative total house income in the dwelling unit is $73839 +in.representative_income 73841 Representative total house income in the dwelling unit is $73841 +in.representative_income 73842 Representative total house income in the dwelling unit is $73842 +in.representative_income 73843 Representative total house income in the dwelling unit is $73843 +in.representative_income 73850 Representative total house income in the dwelling unit is $73850 +in.representative_income 73852 Representative total house income in the dwelling unit is $73852 +in.representative_income 73853 Representative total house income in the dwelling unit is $73853 +in.representative_income 73854 Representative total house income in the dwelling unit is $73854 +in.representative_income 73864 Representative total house income in the dwelling unit is $73864 +in.representative_income 73872 Representative total house income in the dwelling unit is $73872 +in.representative_income 73873 Representative total house income in the dwelling unit is $73873 +in.representative_income 73875 Representative total house income in the dwelling unit is $73875 +in.representative_income 73883 Representative total house income in the dwelling unit is $73883 +in.representative_income 73884 Representative total house income in the dwelling unit is $73884 +in.representative_income 73892 Representative total house income in the dwelling unit is $73892 +in.representative_income 73893 Representative total house income in the dwelling unit is $73893 +in.representative_income 73897 Representative total house income in the dwelling unit is $73897 +in.representative_income 73898 Representative total house income in the dwelling unit is $73898 +in.representative_income 73902 Representative total house income in the dwelling unit is $73902 +in.representative_income 73904 Representative total house income in the dwelling unit is $73904 +in.representative_income 73914 Representative total house income in the dwelling unit is $73914 +in.representative_income 73915 Representative total house income in the dwelling unit is $73915 +in.representative_income 73917 Representative total house income in the dwelling unit is $73917 +in.representative_income 73922 Representative total house income in the dwelling unit is $73922 +in.representative_income 73925 Representative total house income in the dwelling unit is $73925 +in.representative_income 73928 Representative total house income in the dwelling unit is $73928 +in.representative_income 73929 Representative total house income in the dwelling unit is $73929 +in.representative_income 73936 Representative total house income in the dwelling unit is $73936 +in.representative_income 73939 Representative total house income in the dwelling unit is $73939 +in.representative_income 73943 Representative total house income in the dwelling unit is $73943 +in.representative_income 73948 Representative total house income in the dwelling unit is $73948 +in.representative_income 73949 Representative total house income in the dwelling unit is $73949 +in.representative_income 73955 Representative total house income in the dwelling unit is $73955 +in.representative_income 73958 Representative total house income in the dwelling unit is $73958 +in.representative_income 73959 Representative total house income in the dwelling unit is $73959 +in.representative_income 73960 Representative total house income in the dwelling unit is $73960 +in.representative_income 73961 Representative total house income in the dwelling unit is $73961 +in.representative_income 73971 Representative total house income in the dwelling unit is $73971 +in.representative_income 73981 Representative total house income in the dwelling unit is $73981 +in.representative_income 73991 Representative total house income in the dwelling unit is $73991 +in.representative_income 73993 Representative total house income in the dwelling unit is $73993 +in.representative_income 74002 Representative total house income in the dwelling unit is $74002 +in.representative_income 74003 Representative total house income in the dwelling unit is $74003 +in.representative_income 74007 Representative total house income in the dwelling unit is $74007 +in.representative_income 74011 Representative total house income in the dwelling unit is $74011 +in.representative_income 74012 Representative total house income in the dwelling unit is $74012 +in.representative_income 74014 Representative total house income in the dwelling unit is $74014 +in.representative_income 74017 Representative total house income in the dwelling unit is $74017 +in.representative_income 74018 Representative total house income in the dwelling unit is $74018 +in.representative_income 74022 Representative total house income in the dwelling unit is $74022 +in.representative_income 74025 Representative total house income in the dwelling unit is $74025 +in.representative_income 74027 Representative total house income in the dwelling unit is $74027 +in.representative_income 74033 Representative total house income in the dwelling unit is $74033 +in.representative_income 74042 Representative total house income in the dwelling unit is $74042 +in.representative_income 74043 Representative total house income in the dwelling unit is $74043 +in.representative_income 74044 Representative total house income in the dwelling unit is $74044 +in.representative_income 74049 Representative total house income in the dwelling unit is $74049 +in.representative_income 74054 Representative total house income in the dwelling unit is $74054 +in.representative_income 74055 Representative total house income in the dwelling unit is $74055 +in.representative_income 74056 Representative total house income in the dwelling unit is $74056 +in.representative_income 74058 Representative total house income in the dwelling unit is $74058 +in.representative_income 74061 Representative total house income in the dwelling unit is $74061 +in.representative_income 74065 Representative total house income in the dwelling unit is $74065 +in.representative_income 74066 Representative total house income in the dwelling unit is $74066 +in.representative_income 74068 Representative total house income in the dwelling unit is $74068 +in.representative_income 74069 Representative total house income in the dwelling unit is $74069 +in.representative_income 74074 Representative total house income in the dwelling unit is $74074 +in.representative_income 74076 Representative total house income in the dwelling unit is $74076 +in.representative_income 74077 Representative total house income in the dwelling unit is $74077 +in.representative_income 74086 Representative total house income in the dwelling unit is $74086 +in.representative_income 74089 Representative total house income in the dwelling unit is $74089 +in.representative_income 74094 Representative total house income in the dwelling unit is $74094 +in.representative_income 74104 Representative total house income in the dwelling unit is $74104 +in.representative_income 74106 Representative total house income in the dwelling unit is $74106 +in.representative_income 74110 Representative total house income in the dwelling unit is $74110 +in.representative_income 74114 Representative total house income in the dwelling unit is $74114 +in.representative_income 74117 Representative total house income in the dwelling unit is $74117 +in.representative_income 74121 Representative total house income in the dwelling unit is $74121 +in.representative_income 74128 Representative total house income in the dwelling unit is $74128 +in.representative_income 74130 Representative total house income in the dwelling unit is $74130 +in.representative_income 74131 Representative total house income in the dwelling unit is $74131 +in.representative_income 74138 Representative total house income in the dwelling unit is $74138 +in.representative_income 74143 Representative total house income in the dwelling unit is $74143 +in.representative_income 74144 Representative total house income in the dwelling unit is $74144 +in.representative_income 74145 Representative total house income in the dwelling unit is $74145 +in.representative_income 74147 Representative total house income in the dwelling unit is $74147 +in.representative_income 74151 Representative total house income in the dwelling unit is $74151 +in.representative_income 74153 Representative total house income in the dwelling unit is $74153 +in.representative_income 74157 Representative total house income in the dwelling unit is $74157 +in.representative_income 74160 Representative total house income in the dwelling unit is $74160 +in.representative_income 74162 Representative total house income in the dwelling unit is $74162 +in.representative_income 74165 Representative total house income in the dwelling unit is $74165 +in.representative_income 74166 Representative total house income in the dwelling unit is $74166 +in.representative_income 74170 Representative total house income in the dwelling unit is $74170 +in.representative_income 74171 Representative total house income in the dwelling unit is $74171 +in.representative_income 74173 Representative total house income in the dwelling unit is $74173 +in.representative_income 74175 Representative total house income in the dwelling unit is $74175 +in.representative_income 74176 Representative total house income in the dwelling unit is $74176 +in.representative_income 74182 Representative total house income in the dwelling unit is $74182 +in.representative_income 74185 Representative total house income in the dwelling unit is $74185 +in.representative_income 74192 Representative total house income in the dwelling unit is $74192 +in.representative_income 74195 Representative total house income in the dwelling unit is $74195 +in.representative_income 74196 Representative total house income in the dwelling unit is $74196 +in.representative_income 74197 Representative total house income in the dwelling unit is $74197 +in.representative_income 74200 Representative total house income in the dwelling unit is $74200 +in.representative_income 74202 Representative total house income in the dwelling unit is $74202 +in.representative_income 74216 Representative total house income in the dwelling unit is $74216 +in.representative_income 74218 Representative total house income in the dwelling unit is $74218 +in.representative_income 74224 Representative total house income in the dwelling unit is $74224 +in.representative_income 74229 Representative total house income in the dwelling unit is $74229 +in.representative_income 74230 Representative total house income in the dwelling unit is $74230 +in.representative_income 74234 Representative total house income in the dwelling unit is $74234 +in.representative_income 74239 Representative total house income in the dwelling unit is $74239 +in.representative_income 74245 Representative total house income in the dwelling unit is $74245 +in.representative_income 74246 Representative total house income in the dwelling unit is $74246 +in.representative_income 74250 Representative total house income in the dwelling unit is $74250 +in.representative_income 74254 Representative total house income in the dwelling unit is $74254 +in.representative_income 74255 Representative total house income in the dwelling unit is $74255 +in.representative_income 74261 Representative total house income in the dwelling unit is $74261 +in.representative_income 74264 Representative total house income in the dwelling unit is $74264 +in.representative_income 74266 Representative total house income in the dwelling unit is $74266 +in.representative_income 74270 Representative total house income in the dwelling unit is $74270 +in.representative_income 74275 Representative total house income in the dwelling unit is $74275 +in.representative_income 74276 Representative total house income in the dwelling unit is $74276 +in.representative_income 74280 Representative total house income in the dwelling unit is $74280 +in.representative_income 74282 Representative total house income in the dwelling unit is $74282 +in.representative_income 74285 Representative total house income in the dwelling unit is $74285 +in.representative_income 74295 Representative total house income in the dwelling unit is $74295 +in.representative_income 74297 Representative total house income in the dwelling unit is $74297 +in.representative_income 74305 Representative total house income in the dwelling unit is $74305 +in.representative_income 74306 Representative total house income in the dwelling unit is $74306 +in.representative_income 74307 Representative total house income in the dwelling unit is $74307 +in.representative_income 74310 Representative total house income in the dwelling unit is $74310 +in.representative_income 74312 Representative total house income in the dwelling unit is $74312 +in.representative_income 74315 Representative total house income in the dwelling unit is $74315 +in.representative_income 74316 Representative total house income in the dwelling unit is $74316 +in.representative_income 74326 Representative total house income in the dwelling unit is $74326 +in.representative_income 74327 Representative total house income in the dwelling unit is $74327 +in.representative_income 74328 Representative total house income in the dwelling unit is $74328 +in.representative_income 74331 Representative total house income in the dwelling unit is $74331 +in.representative_income 74332 Representative total house income in the dwelling unit is $74332 +in.representative_income 74336 Representative total house income in the dwelling unit is $74336 +in.representative_income 74337 Representative total house income in the dwelling unit is $74337 +in.representative_income 74347 Representative total house income in the dwelling unit is $74347 +in.representative_income 74348 Representative total house income in the dwelling unit is $74348 +in.representative_income 74350 Representative total house income in the dwelling unit is $74350 +in.representative_income 74357 Representative total house income in the dwelling unit is $74357 +in.representative_income 74360 Representative total house income in the dwelling unit is $74360 +in.representative_income 74367 Representative total house income in the dwelling unit is $74367 +in.representative_income 74371 Representative total house income in the dwelling unit is $74371 +in.representative_income 74372 Representative total house income in the dwelling unit is $74372 +in.representative_income 74375 Representative total house income in the dwelling unit is $74375 +in.representative_income 74376 Representative total house income in the dwelling unit is $74376 +in.representative_income 74381 Representative total house income in the dwelling unit is $74381 +in.representative_income 74390 Representative total house income in the dwelling unit is $74390 +in.representative_income 74397 Representative total house income in the dwelling unit is $74397 +in.representative_income 74399 Representative total house income in the dwelling unit is $74399 +in.representative_income 74402 Representative total house income in the dwelling unit is $74402 +in.representative_income 74408 Representative total house income in the dwelling unit is $74408 +in.representative_income 74413 Representative total house income in the dwelling unit is $74413 +in.representative_income 74417 Representative total house income in the dwelling unit is $74417 +in.representative_income 74419 Representative total house income in the dwelling unit is $74419 +in.representative_income 74420 Representative total house income in the dwelling unit is $74420 +in.representative_income 74422 Representative total house income in the dwelling unit is $74422 +in.representative_income 74429 Representative total house income in the dwelling unit is $74429 +in.representative_income 74433 Representative total house income in the dwelling unit is $74433 +in.representative_income 74438 Representative total house income in the dwelling unit is $74438 +in.representative_income 74439 Representative total house income in the dwelling unit is $74439 +in.representative_income 74444 Representative total house income in the dwelling unit is $74444 +in.representative_income 74448 Representative total house income in the dwelling unit is $74448 +in.representative_income 74451 Representative total house income in the dwelling unit is $74451 +in.representative_income 74453 Representative total house income in the dwelling unit is $74453 +in.representative_income 74455 Representative total house income in the dwelling unit is $74455 +in.representative_income 74466 Representative total house income in the dwelling unit is $74466 +in.representative_income 74470 Representative total house income in the dwelling unit is $74470 +in.representative_income 74471 Representative total house income in the dwelling unit is $74471 +in.representative_income 74476 Representative total house income in the dwelling unit is $74476 +in.representative_income 74481 Representative total house income in the dwelling unit is $74481 +in.representative_income 74487 Representative total house income in the dwelling unit is $74487 +in.representative_income 74488 Representative total house income in the dwelling unit is $74488 +in.representative_income 74491 Representative total house income in the dwelling unit is $74491 +in.representative_income 74497 Representative total house income in the dwelling unit is $74497 +in.representative_income 74500 Representative total house income in the dwelling unit is $74500 +in.representative_income 74508 Representative total house income in the dwelling unit is $74508 +in.representative_income 74509 Representative total house income in the dwelling unit is $74509 +in.representative_income 74511 Representative total house income in the dwelling unit is $74511 +in.representative_income 74514 Representative total house income in the dwelling unit is $74514 +in.representative_income 74516 Representative total house income in the dwelling unit is $74516 +in.representative_income 74522 Representative total house income in the dwelling unit is $74522 +in.representative_income 74529 Representative total house income in the dwelling unit is $74529 +in.representative_income 74531 Representative total house income in the dwelling unit is $74531 +in.representative_income 74539 Representative total house income in the dwelling unit is $74539 +in.representative_income 74540 Representative total house income in the dwelling unit is $74540 +in.representative_income 74549 Representative total house income in the dwelling unit is $74549 +in.representative_income 74551 Representative total house income in the dwelling unit is $74551 +in.representative_income 74552 Representative total house income in the dwelling unit is $74552 +in.representative_income 74557 Representative total house income in the dwelling unit is $74557 +in.representative_income 74561 Representative total house income in the dwelling unit is $74561 +in.representative_income 74562 Representative total house income in the dwelling unit is $74562 +in.representative_income 74563 Representative total house income in the dwelling unit is $74563 +in.representative_income 74574 Representative total house income in the dwelling unit is $74574 +in.representative_income 74581 Representative total house income in the dwelling unit is $74581 +in.representative_income 74582 Representative total house income in the dwelling unit is $74582 +in.representative_income 74594 Representative total house income in the dwelling unit is $74594 +in.representative_income 74602 Representative total house income in the dwelling unit is $74602 +in.representative_income 74604 Representative total house income in the dwelling unit is $74604 +in.representative_income 74605 Representative total house income in the dwelling unit is $74605 +in.representative_income 74606 Representative total house income in the dwelling unit is $74606 +in.representative_income 74609 Representative total house income in the dwelling unit is $74609 +in.representative_income 74614 Representative total house income in the dwelling unit is $74614 +in.representative_income 74616 Representative total house income in the dwelling unit is $74616 +in.representative_income 74617 Representative total house income in the dwelling unit is $74617 +in.representative_income 74619 Representative total house income in the dwelling unit is $74619 +in.representative_income 74637 Representative total house income in the dwelling unit is $74637 +in.representative_income 74639 Representative total house income in the dwelling unit is $74639 +in.representative_income 74646 Representative total house income in the dwelling unit is $74646 +in.representative_income 74649 Representative total house income in the dwelling unit is $74649 +in.representative_income 74650 Representative total house income in the dwelling unit is $74650 +in.representative_income 74651 Representative total house income in the dwelling unit is $74651 +in.representative_income 74655 Representative total house income in the dwelling unit is $74655 +in.representative_income 74660 Representative total house income in the dwelling unit is $74660 +in.representative_income 74666 Representative total house income in the dwelling unit is $74666 +in.representative_income 74674 Representative total house income in the dwelling unit is $74674 +in.representative_income 74677 Representative total house income in the dwelling unit is $74677 +in.representative_income 74679 Representative total house income in the dwelling unit is $74679 +in.representative_income 74680 Representative total house income in the dwelling unit is $74680 +in.representative_income 74682 Representative total house income in the dwelling unit is $74682 +in.representative_income 74687 Representative total house income in the dwelling unit is $74687 +in.representative_income 74690 Representative total house income in the dwelling unit is $74690 +in.representative_income 74698 Representative total house income in the dwelling unit is $74698 +in.representative_income 74700 Representative total house income in the dwelling unit is $74700 +in.representative_income 74702 Representative total house income in the dwelling unit is $74702 +in.representative_income 74703 Representative total house income in the dwelling unit is $74703 +in.representative_income 74708 Representative total house income in the dwelling unit is $74708 +in.representative_income 74710 Representative total house income in the dwelling unit is $74710 +in.representative_income 74712 Representative total house income in the dwelling unit is $74712 +in.representative_income 74714 Representative total house income in the dwelling unit is $74714 +in.representative_income 74717 Representative total house income in the dwelling unit is $74717 +in.representative_income 74718 Representative total house income in the dwelling unit is $74718 +in.representative_income 74719 Representative total house income in the dwelling unit is $74719 +in.representative_income 74725 Representative total house income in the dwelling unit is $74725 +in.representative_income 74736 Representative total house income in the dwelling unit is $74736 +in.representative_income 74739 Representative total house income in the dwelling unit is $74739 +in.representative_income 74740 Representative total house income in the dwelling unit is $74740 +in.representative_income 74744 Representative total house income in the dwelling unit is $74744 +in.representative_income 74750 Representative total house income in the dwelling unit is $74750 +in.representative_income 74751 Representative total house income in the dwelling unit is $74751 +in.representative_income 74755 Representative total house income in the dwelling unit is $74755 +in.representative_income 74757 Representative total house income in the dwelling unit is $74757 +in.representative_income 74759 Representative total house income in the dwelling unit is $74759 +in.representative_income 74760 Representative total house income in the dwelling unit is $74760 +in.representative_income 74761 Representative total house income in the dwelling unit is $74761 +in.representative_income 74768 Representative total house income in the dwelling unit is $74768 +in.representative_income 74771 Representative total house income in the dwelling unit is $74771 +in.representative_income 74779 Representative total house income in the dwelling unit is $74779 +in.representative_income 74780 Representative total house income in the dwelling unit is $74780 +in.representative_income 74781 Representative total house income in the dwelling unit is $74781 +in.representative_income 74782 Representative total house income in the dwelling unit is $74782 +in.representative_income 74787 Representative total house income in the dwelling unit is $74787 +in.representative_income 74790 Representative total house income in the dwelling unit is $74790 +in.representative_income 74792 Representative total house income in the dwelling unit is $74792 +in.representative_income 74798 Representative total house income in the dwelling unit is $74798 +in.representative_income 74800 Representative total house income in the dwelling unit is $74800 +in.representative_income 74801 Representative total house income in the dwelling unit is $74801 +in.representative_income 74802 Representative total house income in the dwelling unit is $74802 +in.representative_income 74803 Representative total house income in the dwelling unit is $74803 +in.representative_income 74811 Representative total house income in the dwelling unit is $74811 +in.representative_income 74814 Representative total house income in the dwelling unit is $74814 +in.representative_income 74819 Representative total house income in the dwelling unit is $74819 +in.representative_income 74821 Representative total house income in the dwelling unit is $74821 +in.representative_income 74824 Representative total house income in the dwelling unit is $74824 +in.representative_income 74831 Representative total house income in the dwelling unit is $74831 +in.representative_income 74832 Representative total house income in the dwelling unit is $74832 +in.representative_income 74843 Representative total house income in the dwelling unit is $74843 +in.representative_income 74847 Representative total house income in the dwelling unit is $74847 +in.representative_income 74848 Representative total house income in the dwelling unit is $74848 +in.representative_income 74852 Representative total house income in the dwelling unit is $74852 +in.representative_income 74862 Representative total house income in the dwelling unit is $74862 +in.representative_income 74863 Representative total house income in the dwelling unit is $74863 +in.representative_income 74865 Representative total house income in the dwelling unit is $74865 +in.representative_income 74873 Representative total house income in the dwelling unit is $74873 +in.representative_income 74877 Representative total house income in the dwelling unit is $74877 +in.representative_income 74883 Representative total house income in the dwelling unit is $74883 +in.representative_income 74888 Representative total house income in the dwelling unit is $74888 +in.representative_income 74892 Representative total house income in the dwelling unit is $74892 +in.representative_income 74895 Representative total house income in the dwelling unit is $74895 +in.representative_income 74898 Representative total house income in the dwelling unit is $74898 +in.representative_income 74899 Representative total house income in the dwelling unit is $74899 +in.representative_income 74909 Representative total house income in the dwelling unit is $74909 +in.representative_income 74914 Representative total house income in the dwelling unit is $74914 +in.representative_income 74920 Representative total house income in the dwelling unit is $74920 +in.representative_income 74926 Representative total house income in the dwelling unit is $74926 +in.representative_income 74927 Representative total house income in the dwelling unit is $74927 +in.representative_income 74930 Representative total house income in the dwelling unit is $74930 +in.representative_income 74931 Representative total house income in the dwelling unit is $74931 +in.representative_income 74934 Representative total house income in the dwelling unit is $74934 +in.representative_income 74935 Representative total house income in the dwelling unit is $74935 +in.representative_income 74940 Representative total house income in the dwelling unit is $74940 +in.representative_income 74946 Representative total house income in the dwelling unit is $74946 +in.representative_income 74948 Representative total house income in the dwelling unit is $74948 +in.representative_income 74950 Representative total house income in the dwelling unit is $74950 +in.representative_income 74952 Representative total house income in the dwelling unit is $74952 +in.representative_income 74953 Representative total house income in the dwelling unit is $74953 +in.representative_income 74956 Representative total house income in the dwelling unit is $74956 +in.representative_income 74961 Representative total house income in the dwelling unit is $74961 +in.representative_income 74963 Representative total house income in the dwelling unit is $74963 +in.representative_income 74968 Representative total house income in the dwelling unit is $74968 +in.representative_income 74969 Representative total house income in the dwelling unit is $74969 +in.representative_income 74972 Representative total house income in the dwelling unit is $74972 +in.representative_income 74973 Representative total house income in the dwelling unit is $74973 +in.representative_income 74981 Representative total house income in the dwelling unit is $74981 +in.representative_income 74982 Representative total house income in the dwelling unit is $74982 +in.representative_income 74983 Representative total house income in the dwelling unit is $74983 +in.representative_income 74985 Representative total house income in the dwelling unit is $74985 +in.representative_income 74986 Representative total house income in the dwelling unit is $74986 +in.representative_income 74993 Representative total house income in the dwelling unit is $74993 +in.representative_income 75004 Representative total house income in the dwelling unit is $75004 +in.representative_income 75012 Representative total house income in the dwelling unit is $75012 +in.representative_income 75013 Representative total house income in the dwelling unit is $75013 +in.representative_income 75014 Representative total house income in the dwelling unit is $75014 +in.representative_income 75017 Representative total house income in the dwelling unit is $75017 +in.representative_income 75023 Representative total house income in the dwelling unit is $75023 +in.representative_income 75028 Representative total house income in the dwelling unit is $75028 +in.representative_income 75034 Representative total house income in the dwelling unit is $75034 +in.representative_income 75035 Representative total house income in the dwelling unit is $75035 +in.representative_income 75038 Representative total house income in the dwelling unit is $75038 +in.representative_income 75049 Representative total house income in the dwelling unit is $75049 +in.representative_income 75054 Representative total house income in the dwelling unit is $75054 +in.representative_income 75057 Representative total house income in the dwelling unit is $75057 +in.representative_income 75058 Representative total house income in the dwelling unit is $75058 +in.representative_income 75062 Representative total house income in the dwelling unit is $75062 +in.representative_income 75064 Representative total house income in the dwelling unit is $75064 +in.representative_income 75088 Representative total house income in the dwelling unit is $75088 +in.representative_income 75089 Representative total house income in the dwelling unit is $75089 +in.representative_income 75090 Representative total house income in the dwelling unit is $75090 +in.representative_income 75093 Representative total house income in the dwelling unit is $75093 +in.representative_income 75097 Representative total house income in the dwelling unit is $75097 +in.representative_income 75098 Representative total house income in the dwelling unit is $75098 +in.representative_income 75099 Representative total house income in the dwelling unit is $75099 +in.representative_income 75104 Representative total house income in the dwelling unit is $75104 +in.representative_income 75109 Representative total house income in the dwelling unit is $75109 +in.representative_income 75114 Representative total house income in the dwelling unit is $75114 +in.representative_income 75117 Representative total house income in the dwelling unit is $75117 +in.representative_income 75119 Representative total house income in the dwelling unit is $75119 +in.representative_income 75124 Representative total house income in the dwelling unit is $75124 +in.representative_income 75131 Representative total house income in the dwelling unit is $75131 +in.representative_income 75136 Representative total house income in the dwelling unit is $75136 +in.representative_income 75142 Representative total house income in the dwelling unit is $75142 +in.representative_income 75143 Representative total house income in the dwelling unit is $75143 +in.representative_income 75146 Representative total house income in the dwelling unit is $75146 +in.representative_income 75152 Representative total house income in the dwelling unit is $75152 +in.representative_income 75155 Representative total house income in the dwelling unit is $75155 +in.representative_income 75156 Representative total house income in the dwelling unit is $75156 +in.representative_income 75158 Representative total house income in the dwelling unit is $75158 +in.representative_income 75162 Representative total house income in the dwelling unit is $75162 +in.representative_income 75163 Representative total house income in the dwelling unit is $75163 +in.representative_income 75165 Representative total house income in the dwelling unit is $75165 +in.representative_income 75167 Representative total house income in the dwelling unit is $75167 +in.representative_income 75171 Representative total house income in the dwelling unit is $75171 +in.representative_income 75172 Representative total house income in the dwelling unit is $75172 +in.representative_income 75174 Representative total house income in the dwelling unit is $75174 +in.representative_income 75175 Representative total house income in the dwelling unit is $75175 +in.representative_income 75184 Representative total house income in the dwelling unit is $75184 +in.representative_income 75190 Representative total house income in the dwelling unit is $75190 +in.representative_income 75193 Representative total house income in the dwelling unit is $75193 +in.representative_income 75195 Representative total house income in the dwelling unit is $75195 +in.representative_income 75201 Representative total house income in the dwelling unit is $75201 +in.representative_income 75203 Representative total house income in the dwelling unit is $75203 +in.representative_income 75205 Representative total house income in the dwelling unit is $75205 +in.representative_income 75213 Representative total house income in the dwelling unit is $75213 +in.representative_income 75214 Representative total house income in the dwelling unit is $75214 +in.representative_income 75215 Representative total house income in the dwelling unit is $75215 +in.representative_income 75216 Representative total house income in the dwelling unit is $75216 +in.representative_income 75219 Representative total house income in the dwelling unit is $75219 +in.representative_income 75224 Representative total house income in the dwelling unit is $75224 +in.representative_income 75225 Representative total house income in the dwelling unit is $75225 +in.representative_income 75235 Representative total house income in the dwelling unit is $75235 +in.representative_income 75238 Representative total house income in the dwelling unit is $75238 +in.representative_income 75244 Representative total house income in the dwelling unit is $75244 +in.representative_income 75245 Representative total house income in the dwelling unit is $75245 +in.representative_income 75247 Representative total house income in the dwelling unit is $75247 +in.representative_income 75249 Representative total house income in the dwelling unit is $75249 +in.representative_income 75255 Representative total house income in the dwelling unit is $75255 +in.representative_income 75256 Representative total house income in the dwelling unit is $75256 +in.representative_income 75275 Representative total house income in the dwelling unit is $75275 +in.representative_income 75279 Representative total house income in the dwelling unit is $75279 +in.representative_income 75286 Representative total house income in the dwelling unit is $75286 +in.representative_income 75288 Representative total house income in the dwelling unit is $75288 +in.representative_income 75292 Representative total house income in the dwelling unit is $75292 +in.representative_income 75296 Representative total house income in the dwelling unit is $75296 +in.representative_income 75298 Representative total house income in the dwelling unit is $75298 +in.representative_income 75299 Representative total house income in the dwelling unit is $75299 +in.representative_income 75302 Representative total house income in the dwelling unit is $75302 +in.representative_income 75303 Representative total house income in the dwelling unit is $75303 +in.representative_income 75309 Representative total house income in the dwelling unit is $75309 +in.representative_income 75310 Representative total house income in the dwelling unit is $75310 +in.representative_income 75313 Representative total house income in the dwelling unit is $75313 +in.representative_income 75317 Representative total house income in the dwelling unit is $75317 +in.representative_income 75324 Representative total house income in the dwelling unit is $75324 +in.representative_income 75327 Representative total house income in the dwelling unit is $75327 +in.representative_income 75333 Representative total house income in the dwelling unit is $75333 +in.representative_income 75337 Representative total house income in the dwelling unit is $75337 +in.representative_income 75341 Representative total house income in the dwelling unit is $75341 +in.representative_income 75357 Representative total house income in the dwelling unit is $75357 +in.representative_income 75363 Representative total house income in the dwelling unit is $75363 +in.representative_income 75367 Representative total house income in the dwelling unit is $75367 +in.representative_income 75368 Representative total house income in the dwelling unit is $75368 +in.representative_income 75373 Representative total house income in the dwelling unit is $75373 +in.representative_income 75378 Representative total house income in the dwelling unit is $75378 +in.representative_income 75381 Representative total house income in the dwelling unit is $75381 +in.representative_income 75387 Representative total house income in the dwelling unit is $75387 +in.representative_income 75390 Representative total house income in the dwelling unit is $75390 +in.representative_income 75395 Representative total house income in the dwelling unit is $75395 +in.representative_income 75399 Representative total house income in the dwelling unit is $75399 +in.representative_income 75404 Representative total house income in the dwelling unit is $75404 +in.representative_income 75410 Representative total house income in the dwelling unit is $75410 +in.representative_income 75417 Representative total house income in the dwelling unit is $75417 +in.representative_income 75419 Representative total house income in the dwelling unit is $75419 +in.representative_income 75421 Representative total house income in the dwelling unit is $75421 +in.representative_income 75426 Representative total house income in the dwelling unit is $75426 +in.representative_income 75427 Representative total house income in the dwelling unit is $75427 +in.representative_income 75430 Representative total house income in the dwelling unit is $75430 +in.representative_income 75435 Representative total house income in the dwelling unit is $75435 +in.representative_income 75437 Representative total house income in the dwelling unit is $75437 +in.representative_income 75440 Representative total house income in the dwelling unit is $75440 +in.representative_income 75449 Representative total house income in the dwelling unit is $75449 +in.representative_income 75450 Representative total house income in the dwelling unit is $75450 +in.representative_income 75451 Representative total house income in the dwelling unit is $75451 +in.representative_income 75458 Representative total house income in the dwelling unit is $75458 +in.representative_income 75462 Representative total house income in the dwelling unit is $75462 +in.representative_income 75463 Representative total house income in the dwelling unit is $75463 +in.representative_income 75464 Representative total house income in the dwelling unit is $75464 +in.representative_income 75468 Representative total house income in the dwelling unit is $75468 +in.representative_income 75474 Representative total house income in the dwelling unit is $75474 +in.representative_income 75481 Representative total house income in the dwelling unit is $75481 +in.representative_income 75484 Representative total house income in the dwelling unit is $75484 +in.representative_income 75502 Representative total house income in the dwelling unit is $75502 +in.representative_income 75505 Representative total house income in the dwelling unit is $75505 +in.representative_income 75510 Representative total house income in the dwelling unit is $75510 +in.representative_income 75512 Representative total house income in the dwelling unit is $75512 +in.representative_income 75517 Representative total house income in the dwelling unit is $75517 +in.representative_income 75518 Representative total house income in the dwelling unit is $75518 +in.representative_income 75521 Representative total house income in the dwelling unit is $75521 +in.representative_income 75523 Representative total house income in the dwelling unit is $75523 +in.representative_income 75524 Representative total house income in the dwelling unit is $75524 +in.representative_income 75526 Representative total house income in the dwelling unit is $75526 +in.representative_income 75544 Representative total house income in the dwelling unit is $75544 +in.representative_income 75545 Representative total house income in the dwelling unit is $75545 +in.representative_income 75549 Representative total house income in the dwelling unit is $75549 +in.representative_income 75559 Representative total house income in the dwelling unit is $75559 +in.representative_income 75560 Representative total house income in the dwelling unit is $75560 +in.representative_income 75567 Representative total house income in the dwelling unit is $75567 +in.representative_income 75571 Representative total house income in the dwelling unit is $75571 +in.representative_income 75573 Representative total house income in the dwelling unit is $75573 +in.representative_income 75574 Representative total house income in the dwelling unit is $75574 +in.representative_income 75575 Representative total house income in the dwelling unit is $75575 +in.representative_income 75579 Representative total house income in the dwelling unit is $75579 +in.representative_income 75585 Representative total house income in the dwelling unit is $75585 +in.representative_income 75594 Representative total house income in the dwelling unit is $75594 +in.representative_income 75596 Representative total house income in the dwelling unit is $75596 +in.representative_income 75603 Representative total house income in the dwelling unit is $75603 +in.representative_income 75605 Representative total house income in the dwelling unit is $75605 +in.representative_income 75609 Representative total house income in the dwelling unit is $75609 +in.representative_income 75611 Representative total house income in the dwelling unit is $75611 +in.representative_income 75616 Representative total house income in the dwelling unit is $75616 +in.representative_income 75625 Representative total house income in the dwelling unit is $75625 +in.representative_income 75626 Representative total house income in the dwelling unit is $75626 +in.representative_income 75631 Representative total house income in the dwelling unit is $75631 +in.representative_income 75632 Representative total house income in the dwelling unit is $75632 +in.representative_income 75633 Representative total house income in the dwelling unit is $75633 +in.representative_income 75640 Representative total house income in the dwelling unit is $75640 +in.representative_income 75643 Representative total house income in the dwelling unit is $75643 +in.representative_income 75646 Representative total house income in the dwelling unit is $75646 +in.representative_income 75647 Representative total house income in the dwelling unit is $75647 +in.representative_income 75655 Representative total house income in the dwelling unit is $75655 +in.representative_income 75660 Representative total house income in the dwelling unit is $75660 +in.representative_income 75666 Representative total house income in the dwelling unit is $75666 +in.representative_income 75668 Representative total house income in the dwelling unit is $75668 +in.representative_income 75670 Representative total house income in the dwelling unit is $75670 +in.representative_income 75671 Representative total house income in the dwelling unit is $75671 +in.representative_income 75677 Representative total house income in the dwelling unit is $75677 +in.representative_income 75678 Representative total house income in the dwelling unit is $75678 +in.representative_income 75687 Representative total house income in the dwelling unit is $75687 +in.representative_income 75695 Representative total house income in the dwelling unit is $75695 +in.representative_income 75697 Representative total house income in the dwelling unit is $75697 +in.representative_income 75698 Representative total house income in the dwelling unit is $75698 +in.representative_income 75700 Representative total house income in the dwelling unit is $75700 +in.representative_income 75705 Representative total house income in the dwelling unit is $75705 +in.representative_income 75709 Representative total house income in the dwelling unit is $75709 +in.representative_income 75713 Representative total house income in the dwelling unit is $75713 +in.representative_income 75719 Representative total house income in the dwelling unit is $75719 +in.representative_income 75720 Representative total house income in the dwelling unit is $75720 +in.representative_income 75721 Representative total house income in the dwelling unit is $75721 +in.representative_income 75732 Representative total house income in the dwelling unit is $75732 +in.representative_income 75741 Representative total house income in the dwelling unit is $75741 +in.representative_income 75745 Representative total house income in the dwelling unit is $75745 +in.representative_income 75761 Representative total house income in the dwelling unit is $75761 +in.representative_income 75763 Representative total house income in the dwelling unit is $75763 +in.representative_income 75774 Representative total house income in the dwelling unit is $75774 +in.representative_income 75781 Representative total house income in the dwelling unit is $75781 +in.representative_income 75784 Representative total house income in the dwelling unit is $75784 +in.representative_income 75786 Representative total house income in the dwelling unit is $75786 +in.representative_income 75791 Representative total house income in the dwelling unit is $75791 +in.representative_income 75795 Representative total house income in the dwelling unit is $75795 +in.representative_income 75796 Representative total house income in the dwelling unit is $75796 +in.representative_income 75801 Representative total house income in the dwelling unit is $75801 +in.representative_income 75806 Representative total house income in the dwelling unit is $75806 +in.representative_income 75807 Representative total house income in the dwelling unit is $75807 +in.representative_income 75811 Representative total house income in the dwelling unit is $75811 +in.representative_income 75812 Representative total house income in the dwelling unit is $75812 +in.representative_income 75813 Representative total house income in the dwelling unit is $75813 +in.representative_income 75818 Representative total house income in the dwelling unit is $75818 +in.representative_income 75821 Representative total house income in the dwelling unit is $75821 +in.representative_income 75822 Representative total house income in the dwelling unit is $75822 +in.representative_income 75824 Representative total house income in the dwelling unit is $75824 +in.representative_income 75826 Representative total house income in the dwelling unit is $75826 +in.representative_income 75828 Representative total house income in the dwelling unit is $75828 +in.representative_income 75832 Representative total house income in the dwelling unit is $75832 +in.representative_income 75839 Representative total house income in the dwelling unit is $75839 +in.representative_income 75846 Representative total house income in the dwelling unit is $75846 +in.representative_income 75849 Representative total house income in the dwelling unit is $75849 +in.representative_income 75852 Representative total house income in the dwelling unit is $75852 +in.representative_income 75854 Representative total house income in the dwelling unit is $75854 +in.representative_income 75856 Representative total house income in the dwelling unit is $75856 +in.representative_income 75860 Representative total house income in the dwelling unit is $75860 +in.representative_income 75862 Representative total house income in the dwelling unit is $75862 +in.representative_income 75864 Representative total house income in the dwelling unit is $75864 +in.representative_income 75870 Representative total house income in the dwelling unit is $75870 +in.representative_income 75871 Representative total house income in the dwelling unit is $75871 +in.representative_income 75872 Representative total house income in the dwelling unit is $75872 +in.representative_income 75881 Representative total house income in the dwelling unit is $75881 +in.representative_income 75882 Representative total house income in the dwelling unit is $75882 +in.representative_income 75892 Representative total house income in the dwelling unit is $75892 +in.representative_income 75893 Representative total house income in the dwelling unit is $75893 +in.representative_income 75894 Representative total house income in the dwelling unit is $75894 +in.representative_income 75902 Representative total house income in the dwelling unit is $75902 +in.representative_income 75903 Representative total house income in the dwelling unit is $75903 +in.representative_income 75912 Representative total house income in the dwelling unit is $75912 +in.representative_income 75914 Representative total house income in the dwelling unit is $75914 +in.representative_income 75915 Representative total house income in the dwelling unit is $75915 +in.representative_income 75923 Representative total house income in the dwelling unit is $75923 +in.representative_income 75924 Representative total house income in the dwelling unit is $75924 +in.representative_income 75925 Representative total house income in the dwelling unit is $75925 +in.representative_income 75931 Representative total house income in the dwelling unit is $75931 +in.representative_income 75933 Representative total house income in the dwelling unit is $75933 +in.representative_income 75936 Representative total house income in the dwelling unit is $75936 +in.representative_income 75942 Representative total house income in the dwelling unit is $75942 +in.representative_income 75946 Representative total house income in the dwelling unit is $75946 +in.representative_income 75947 Representative total house income in the dwelling unit is $75947 +in.representative_income 75952 Representative total house income in the dwelling unit is $75952 +in.representative_income 75956 Representative total house income in the dwelling unit is $75956 +in.representative_income 75957 Representative total house income in the dwelling unit is $75957 +in.representative_income 75963 Representative total house income in the dwelling unit is $75963 +in.representative_income 75964 Representative total house income in the dwelling unit is $75964 +in.representative_income 75968 Representative total house income in the dwelling unit is $75968 +in.representative_income 75973 Representative total house income in the dwelling unit is $75973 +in.representative_income 75979 Representative total house income in the dwelling unit is $75979 +in.representative_income 75980 Representative total house income in the dwelling unit is $75980 +in.representative_income 75985 Representative total house income in the dwelling unit is $75985 +in.representative_income 75987 Representative total house income in the dwelling unit is $75987 +in.representative_income 75988 Representative total house income in the dwelling unit is $75988 +in.representative_income 75993 Representative total house income in the dwelling unit is $75993 +in.representative_income 76000 Representative total house income in the dwelling unit is $76000 +in.representative_income 76004 Representative total house income in the dwelling unit is $76004 +in.representative_income 76005 Representative total house income in the dwelling unit is $76005 +in.representative_income 76013 Representative total house income in the dwelling unit is $76013 +in.representative_income 76018 Representative total house income in the dwelling unit is $76018 +in.representative_income 76026 Representative total house income in the dwelling unit is $76026 +in.representative_income 76037 Representative total house income in the dwelling unit is $76037 +in.representative_income 76044 Representative total house income in the dwelling unit is $76044 +in.representative_income 76047 Representative total house income in the dwelling unit is $76047 +in.representative_income 76054 Representative total house income in the dwelling unit is $76054 +in.representative_income 76057 Representative total house income in the dwelling unit is $76057 +in.representative_income 76064 Representative total house income in the dwelling unit is $76064 +in.representative_income 76065 Representative total house income in the dwelling unit is $76065 +in.representative_income 76066 Representative total house income in the dwelling unit is $76066 +in.representative_income 76083 Representative total house income in the dwelling unit is $76083 +in.representative_income 76086 Representative total house income in the dwelling unit is $76086 +in.representative_income 76087 Representative total house income in the dwelling unit is $76087 +in.representative_income 76090 Representative total house income in the dwelling unit is $76090 +in.representative_income 76094 Representative total house income in the dwelling unit is $76094 +in.representative_income 76107 Representative total house income in the dwelling unit is $76107 +in.representative_income 76114 Representative total house income in the dwelling unit is $76114 +in.representative_income 76121 Representative total house income in the dwelling unit is $76121 +in.representative_income 76129 Representative total house income in the dwelling unit is $76129 +in.representative_income 76143 Representative total house income in the dwelling unit is $76143 +in.representative_income 76149 Representative total house income in the dwelling unit is $76149 +in.representative_income 76151 Representative total house income in the dwelling unit is $76151 +in.representative_income 76162 Representative total house income in the dwelling unit is $76162 +in.representative_income 76163 Representative total house income in the dwelling unit is $76163 +in.representative_income 76164 Representative total house income in the dwelling unit is $76164 +in.representative_income 76165 Representative total house income in the dwelling unit is $76165 +in.representative_income 76166 Representative total house income in the dwelling unit is $76166 +in.representative_income 76172 Representative total house income in the dwelling unit is $76172 +in.representative_income 76173 Representative total house income in the dwelling unit is $76173 +in.representative_income 76174 Representative total house income in the dwelling unit is $76174 +in.representative_income 76183 Representative total house income in the dwelling unit is $76183 +in.representative_income 76184 Representative total house income in the dwelling unit is $76184 +in.representative_income 76193 Representative total house income in the dwelling unit is $76193 +in.representative_income 76194 Representative total house income in the dwelling unit is $76194 +in.representative_income 76195 Representative total house income in the dwelling unit is $76195 +in.representative_income 76215 Representative total house income in the dwelling unit is $76215 +in.representative_income 76224 Representative total house income in the dwelling unit is $76224 +in.representative_income 76227 Representative total house income in the dwelling unit is $76227 +in.representative_income 76248 Representative total house income in the dwelling unit is $76248 +in.representative_income 76250 Representative total house income in the dwelling unit is $76250 +in.representative_income 76266 Representative total house income in the dwelling unit is $76266 +in.representative_income 76271 Representative total house income in the dwelling unit is $76271 +in.representative_income 76281 Representative total house income in the dwelling unit is $76281 +in.representative_income 76283 Representative total house income in the dwelling unit is $76283 +in.representative_income 76306 Representative total house income in the dwelling unit is $76306 +in.representative_income 76309 Representative total house income in the dwelling unit is $76309 +in.representative_income 76322 Representative total house income in the dwelling unit is $76322 +in.representative_income 76324 Representative total house income in the dwelling unit is $76324 +in.representative_income 76328 Representative total house income in the dwelling unit is $76328 +in.representative_income 76333 Representative total house income in the dwelling unit is $76333 +in.representative_income 76335 Representative total house income in the dwelling unit is $76335 +in.representative_income 76337 Representative total house income in the dwelling unit is $76337 +in.representative_income 76338 Representative total house income in the dwelling unit is $76338 +in.representative_income 76343 Representative total house income in the dwelling unit is $76343 +in.representative_income 76347 Representative total house income in the dwelling unit is $76347 +in.representative_income 76354 Representative total house income in the dwelling unit is $76354 +in.representative_income 76356 Representative total house income in the dwelling unit is $76356 +in.representative_income 76367 Representative total house income in the dwelling unit is $76367 +in.representative_income 76376 Representative total house income in the dwelling unit is $76376 +in.representative_income 76379 Representative total house income in the dwelling unit is $76379 +in.representative_income 76389 Representative total house income in the dwelling unit is $76389 +in.representative_income 76390 Representative total house income in the dwelling unit is $76390 +in.representative_income 76398 Representative total house income in the dwelling unit is $76398 +in.representative_income 76407 Representative total house income in the dwelling unit is $76407 +in.representative_income 76430 Representative total house income in the dwelling unit is $76430 +in.representative_income 76431 Representative total house income in the dwelling unit is $76431 +in.representative_income 76459 Representative total house income in the dwelling unit is $76459 +in.representative_income 76465 Representative total house income in the dwelling unit is $76465 +in.representative_income 76468 Representative total house income in the dwelling unit is $76468 +in.representative_income 76483 Representative total house income in the dwelling unit is $76483 +in.representative_income 76493 Representative total house income in the dwelling unit is $76493 +in.representative_income 76498 Representative total house income in the dwelling unit is $76498 +in.representative_income 76502 Representative total house income in the dwelling unit is $76502 +in.representative_income 76512 Representative total house income in the dwelling unit is $76512 +in.representative_income 76514 Representative total house income in the dwelling unit is $76514 +in.representative_income 76518 Representative total house income in the dwelling unit is $76518 +in.representative_income 76526 Representative total house income in the dwelling unit is $76526 +in.representative_income 76533 Representative total house income in the dwelling unit is $76533 +in.representative_income 76537 Representative total house income in the dwelling unit is $76537 +in.representative_income 76543 Representative total house income in the dwelling unit is $76543 +in.representative_income 76555 Representative total house income in the dwelling unit is $76555 +in.representative_income 76559 Representative total house income in the dwelling unit is $76559 +in.representative_income 76564 Representative total house income in the dwelling unit is $76564 +in.representative_income 76569 Representative total house income in the dwelling unit is $76569 +in.representative_income 76579 Representative total house income in the dwelling unit is $76579 +in.representative_income 76584 Representative total house income in the dwelling unit is $76584 +in.representative_income 76585 Representative total house income in the dwelling unit is $76585 +in.representative_income 76589 Representative total house income in the dwelling unit is $76589 +in.representative_income 76598 Representative total house income in the dwelling unit is $76598 +in.representative_income 76601 Representative total house income in the dwelling unit is $76601 +in.representative_income 76606 Representative total house income in the dwelling unit is $76606 +in.representative_income 76612 Representative total house income in the dwelling unit is $76612 +in.representative_income 76620 Representative total house income in the dwelling unit is $76620 +in.representative_income 76626 Representative total house income in the dwelling unit is $76626 +in.representative_income 76630 Representative total house income in the dwelling unit is $76630 +in.representative_income 76637 Representative total house income in the dwelling unit is $76637 +in.representative_income 76644 Representative total house income in the dwelling unit is $76644 +in.representative_income 76655 Representative total house income in the dwelling unit is $76655 +in.representative_income 76669 Representative total house income in the dwelling unit is $76669 +in.representative_income 76670 Representative total house income in the dwelling unit is $76670 +in.representative_income 76676 Representative total house income in the dwelling unit is $76676 +in.representative_income 76688 Representative total house income in the dwelling unit is $76688 +in.representative_income 76691 Representative total house income in the dwelling unit is $76691 +in.representative_income 76714 Representative total house income in the dwelling unit is $76714 +in.representative_income 76724 Representative total house income in the dwelling unit is $76724 +in.representative_income 76735 Representative total house income in the dwelling unit is $76735 +in.representative_income 76740 Representative total house income in the dwelling unit is $76740 +in.representative_income 76746 Representative total house income in the dwelling unit is $76746 +in.representative_income 76752 Representative total house income in the dwelling unit is $76752 +in.representative_income 76753 Representative total house income in the dwelling unit is $76753 +in.representative_income 76757 Representative total house income in the dwelling unit is $76757 +in.representative_income 76760 Representative total house income in the dwelling unit is $76760 +in.representative_income 76761 Representative total house income in the dwelling unit is $76761 +in.representative_income 76767 Representative total house income in the dwelling unit is $76767 +in.representative_income 76771 Representative total house income in the dwelling unit is $76771 +in.representative_income 76776 Representative total house income in the dwelling unit is $76776 +in.representative_income 76781 Representative total house income in the dwelling unit is $76781 +in.representative_income 76797 Representative total house income in the dwelling unit is $76797 +in.representative_income 76805 Representative total house income in the dwelling unit is $76805 +in.representative_income 76811 Representative total house income in the dwelling unit is $76811 +in.representative_income 76813 Representative total house income in the dwelling unit is $76813 +in.representative_income 76817 Representative total house income in the dwelling unit is $76817 +in.representative_income 76821 Representative total house income in the dwelling unit is $76821 +in.representative_income 76831 Representative total house income in the dwelling unit is $76831 +in.representative_income 76832 Representative total house income in the dwelling unit is $76832 +in.representative_income 76834 Representative total house income in the dwelling unit is $76834 +in.representative_income 76838 Representative total house income in the dwelling unit is $76838 +in.representative_income 76843 Representative total house income in the dwelling unit is $76843 +in.representative_income 76852 Representative total house income in the dwelling unit is $76852 +in.representative_income 76859 Representative total house income in the dwelling unit is $76859 +in.representative_income 76864 Representative total house income in the dwelling unit is $76864 +in.representative_income 76872 Representative total house income in the dwelling unit is $76872 +in.representative_income 76874 Representative total house income in the dwelling unit is $76874 +in.representative_income 76881 Representative total house income in the dwelling unit is $76881 +in.representative_income 76902 Representative total house income in the dwelling unit is $76902 +in.representative_income 76912 Representative total house income in the dwelling unit is $76912 +in.representative_income 76915 Representative total house income in the dwelling unit is $76915 +in.representative_income 76916 Representative total house income in the dwelling unit is $76916 +in.representative_income 76923 Representative total house income in the dwelling unit is $76923 +in.representative_income 76929 Representative total house income in the dwelling unit is $76929 +in.representative_income 76933 Representative total house income in the dwelling unit is $76933 +in.representative_income 76947 Representative total house income in the dwelling unit is $76947 +in.representative_income 76957 Representative total house income in the dwelling unit is $76957 +in.representative_income 76967 Representative total house income in the dwelling unit is $76967 +in.representative_income 76973 Representative total house income in the dwelling unit is $76973 +in.representative_income 76986 Representative total house income in the dwelling unit is $76986 +in.representative_income 76996 Representative total house income in the dwelling unit is $76996 +in.representative_income 76997 Representative total house income in the dwelling unit is $76997 +in.representative_income 76999 Representative total house income in the dwelling unit is $76999 +in.representative_income 77003 Representative total house income in the dwelling unit is $77003 +in.representative_income 77031 Representative total house income in the dwelling unit is $77031 +in.representative_income 77036 Representative total house income in the dwelling unit is $77036 +in.representative_income 77037 Representative total house income in the dwelling unit is $77037 +in.representative_income 77048 Representative total house income in the dwelling unit is $77048 +in.representative_income 77049 Representative total house income in the dwelling unit is $77049 +in.representative_income 77059 Representative total house income in the dwelling unit is $77059 +in.representative_income 77070 Representative total house income in the dwelling unit is $77070 +in.representative_income 77073 Representative total house income in the dwelling unit is $77073 +in.representative_income 77074 Representative total house income in the dwelling unit is $77074 +in.representative_income 77077 Representative total house income in the dwelling unit is $77077 +in.representative_income 77092 Representative total house income in the dwelling unit is $77092 +in.representative_income 77102 Representative total house income in the dwelling unit is $77102 +in.representative_income 77106 Representative total house income in the dwelling unit is $77106 +in.representative_income 77111 Representative total house income in the dwelling unit is $77111 +in.representative_income 77114 Representative total house income in the dwelling unit is $77114 +in.representative_income 77127 Representative total house income in the dwelling unit is $77127 +in.representative_income 77142 Representative total house income in the dwelling unit is $77142 +in.representative_income 77145 Representative total house income in the dwelling unit is $77145 +in.representative_income 77152 Representative total house income in the dwelling unit is $77152 +in.representative_income 77159 Representative total house income in the dwelling unit is $77159 +in.representative_income 77170 Representative total house income in the dwelling unit is $77170 +in.representative_income 77172 Representative total house income in the dwelling unit is $77172 +in.representative_income 77175 Representative total house income in the dwelling unit is $77175 +in.representative_income 77181 Representative total house income in the dwelling unit is $77181 +in.representative_income 77197 Representative total house income in the dwelling unit is $77197 +in.representative_income 77204 Representative total house income in the dwelling unit is $77204 +in.representative_income 77240 Representative total house income in the dwelling unit is $77240 +in.representative_income 77250 Representative total house income in the dwelling unit is $77250 +in.representative_income 77254 Representative total house income in the dwelling unit is $77254 +in.representative_income 77256 Representative total house income in the dwelling unit is $77256 +in.representative_income 77259 Representative total house income in the dwelling unit is $77259 +in.representative_income 77265 Representative total house income in the dwelling unit is $77265 +in.representative_income 77267 Representative total house income in the dwelling unit is $77267 +in.representative_income 77269 Representative total house income in the dwelling unit is $77269 +in.representative_income 77276 Representative total house income in the dwelling unit is $77276 +in.representative_income 77282 Representative total house income in the dwelling unit is $77282 +in.representative_income 77288 Representative total house income in the dwelling unit is $77288 +in.representative_income 77289 Representative total house income in the dwelling unit is $77289 +in.representative_income 77297 Representative total house income in the dwelling unit is $77297 +in.representative_income 77302 Representative total house income in the dwelling unit is $77302 +in.representative_income 77308 Representative total house income in the dwelling unit is $77308 +in.representative_income 77310 Representative total house income in the dwelling unit is $77310 +in.representative_income 77320 Representative total house income in the dwelling unit is $77320 +in.representative_income 77323 Representative total house income in the dwelling unit is $77323 +in.representative_income 77346 Representative total house income in the dwelling unit is $77346 +in.representative_income 77353 Representative total house income in the dwelling unit is $77353 +in.representative_income 77359 Representative total house income in the dwelling unit is $77359 +in.representative_income 77362 Representative total house income in the dwelling unit is $77362 +in.representative_income 77364 Representative total house income in the dwelling unit is $77364 +in.representative_income 77368 Representative total house income in the dwelling unit is $77368 +in.representative_income 77377 Representative total house income in the dwelling unit is $77377 +in.representative_income 77379 Representative total house income in the dwelling unit is $77379 +in.representative_income 77396 Representative total house income in the dwelling unit is $77396 +in.representative_income 77405 Representative total house income in the dwelling unit is $77405 +in.representative_income 77409 Representative total house income in the dwelling unit is $77409 +in.representative_income 77411 Representative total house income in the dwelling unit is $77411 +in.representative_income 77421 Representative total house income in the dwelling unit is $77421 +in.representative_income 77428 Representative total house income in the dwelling unit is $77428 +in.representative_income 77440 Representative total house income in the dwelling unit is $77440 +in.representative_income 77449 Representative total house income in the dwelling unit is $77449 +in.representative_income 77462 Representative total house income in the dwelling unit is $77462 +in.representative_income 77470 Representative total house income in the dwelling unit is $77470 +in.representative_income 77472 Representative total house income in the dwelling unit is $77472 +in.representative_income 77473 Representative total house income in the dwelling unit is $77473 +in.representative_income 77478 Representative total house income in the dwelling unit is $77478 +in.representative_income 77483 Representative total house income in the dwelling unit is $77483 +in.representative_income 77489 Representative total house income in the dwelling unit is $77489 +in.representative_income 77497 Representative total house income in the dwelling unit is $77497 +in.representative_income 77503 Representative total house income in the dwelling unit is $77503 +in.representative_income 77514 Representative total house income in the dwelling unit is $77514 +in.representative_income 77524 Representative total house income in the dwelling unit is $77524 +in.representative_income 77525 Representative total house income in the dwelling unit is $77525 +in.representative_income 77565 Representative total house income in the dwelling unit is $77565 +in.representative_income 77577 Representative total house income in the dwelling unit is $77577 +in.representative_income 77578 Representative total house income in the dwelling unit is $77578 +in.representative_income 77579 Representative total house income in the dwelling unit is $77579 +in.representative_income 77586 Representative total house income in the dwelling unit is $77586 +in.representative_income 77589 Representative total house income in the dwelling unit is $77589 +in.representative_income 77598 Representative total house income in the dwelling unit is $77598 +in.representative_income 77599 Representative total house income in the dwelling unit is $77599 +in.representative_income 77610 Representative total house income in the dwelling unit is $77610 +in.representative_income 77616 Representative total house income in the dwelling unit is $77616 +in.representative_income 77619 Representative total house income in the dwelling unit is $77619 +in.representative_income 77621 Representative total house income in the dwelling unit is $77621 +in.representative_income 77664 Representative total house income in the dwelling unit is $77664 +in.representative_income 77668 Representative total house income in the dwelling unit is $77668 +in.representative_income 77678 Representative total house income in the dwelling unit is $77678 +in.representative_income 77680 Representative total house income in the dwelling unit is $77680 +in.representative_income 77686 Representative total house income in the dwelling unit is $77686 +in.representative_income 77700 Representative total house income in the dwelling unit is $77700 +in.representative_income 77717 Representative total house income in the dwelling unit is $77717 +in.representative_income 77724 Representative total house income in the dwelling unit is $77724 +in.representative_income 77728 Representative total house income in the dwelling unit is $77728 +in.representative_income 77730 Representative total house income in the dwelling unit is $77730 +in.representative_income 77740 Representative total house income in the dwelling unit is $77740 +in.representative_income 77753 Representative total house income in the dwelling unit is $77753 +in.representative_income 77756 Representative total house income in the dwelling unit is $77756 +in.representative_income 77761 Representative total house income in the dwelling unit is $77761 +in.representative_income 77767 Representative total house income in the dwelling unit is $77767 +in.representative_income 77771 Representative total house income in the dwelling unit is $77771 +in.representative_income 77781 Representative total house income in the dwelling unit is $77781 +in.representative_income 77791 Representative total house income in the dwelling unit is $77791 +in.representative_income 77794 Representative total house income in the dwelling unit is $77794 +in.representative_income 77804 Representative total house income in the dwelling unit is $77804 +in.representative_income 77825 Representative total house income in the dwelling unit is $77825 +in.representative_income 77830 Representative total house income in the dwelling unit is $77830 +in.representative_income 77832 Representative total house income in the dwelling unit is $77832 +in.representative_income 77858 Representative total house income in the dwelling unit is $77858 +in.representative_income 77865 Representative total house income in the dwelling unit is $77865 +in.representative_income 77872 Representative total house income in the dwelling unit is $77872 +in.representative_income 77875 Representative total house income in the dwelling unit is $77875 +in.representative_income 77878 Representative total house income in the dwelling unit is $77878 +in.representative_income 77880 Representative total house income in the dwelling unit is $77880 +in.representative_income 77882 Representative total house income in the dwelling unit is $77882 +in.representative_income 77885 Representative total house income in the dwelling unit is $77885 +in.representative_income 77902 Representative total house income in the dwelling unit is $77902 +in.representative_income 77917 Representative total house income in the dwelling unit is $77917 +in.representative_income 77933 Representative total house income in the dwelling unit is $77933 +in.representative_income 77935 Representative total house income in the dwelling unit is $77935 +in.representative_income 77947 Representative total house income in the dwelling unit is $77947 +in.representative_income 77956 Representative total house income in the dwelling unit is $77956 +in.representative_income 77964 Representative total house income in the dwelling unit is $77964 +in.representative_income 77978 Representative total house income in the dwelling unit is $77978 +in.representative_income 77983 Representative total house income in the dwelling unit is $77983 +in.representative_income 77993 Representative total house income in the dwelling unit is $77993 +in.representative_income 77998 Representative total house income in the dwelling unit is $77998 +in.representative_income 78007 Representative total house income in the dwelling unit is $78007 +in.representative_income 78009 Representative total house income in the dwelling unit is $78009 +in.representative_income 78034 Representative total house income in the dwelling unit is $78034 +in.representative_income 78040 Representative total house income in the dwelling unit is $78040 +in.representative_income 78041 Representative total house income in the dwelling unit is $78041 +in.representative_income 78043 Representative total house income in the dwelling unit is $78043 +in.representative_income 78052 Representative total house income in the dwelling unit is $78052 +in.representative_income 78060 Representative total house income in the dwelling unit is $78060 +in.representative_income 78081 Representative total house income in the dwelling unit is $78081 +in.representative_income 78083 Representative total house income in the dwelling unit is $78083 +in.representative_income 78084 Representative total house income in the dwelling unit is $78084 +in.representative_income 78104 Representative total house income in the dwelling unit is $78104 +in.representative_income 78118 Representative total house income in the dwelling unit is $78118 +in.representative_income 78125 Representative total house income in the dwelling unit is $78125 +in.representative_income 78132 Representative total house income in the dwelling unit is $78132 +in.representative_income 78136 Representative total house income in the dwelling unit is $78136 +in.representative_income 78143 Representative total house income in the dwelling unit is $78143 +in.representative_income 78145 Representative total house income in the dwelling unit is $78145 +in.representative_income 78147 Representative total house income in the dwelling unit is $78147 +in.representative_income 78148 Representative total house income in the dwelling unit is $78148 +in.representative_income 78157 Representative total house income in the dwelling unit is $78157 +in.representative_income 78171 Representative total house income in the dwelling unit is $78171 +in.representative_income 78184 Representative total house income in the dwelling unit is $78184 +in.representative_income 78185 Representative total house income in the dwelling unit is $78185 +in.representative_income 78199 Representative total house income in the dwelling unit is $78199 +in.representative_income 78226 Representative total house income in the dwelling unit is $78226 +in.representative_income 78231 Representative total house income in the dwelling unit is $78231 +in.representative_income 78252 Representative total house income in the dwelling unit is $78252 +in.representative_income 78254 Representative total house income in the dwelling unit is $78254 +in.representative_income 78266 Representative total house income in the dwelling unit is $78266 +in.representative_income 78280 Representative total house income in the dwelling unit is $78280 +in.representative_income 78286 Representative total house income in the dwelling unit is $78286 +in.representative_income 78287 Representative total house income in the dwelling unit is $78287 +in.representative_income 78311 Representative total house income in the dwelling unit is $78311 +in.representative_income 78313 Representative total house income in the dwelling unit is $78313 +in.representative_income 78334 Representative total house income in the dwelling unit is $78334 +in.representative_income 78357 Representative total house income in the dwelling unit is $78357 +in.representative_income 78362 Representative total house income in the dwelling unit is $78362 +in.representative_income 78372 Representative total house income in the dwelling unit is $78372 +in.representative_income 78378 Representative total house income in the dwelling unit is $78378 +in.representative_income 78385 Representative total house income in the dwelling unit is $78385 +in.representative_income 78387 Representative total house income in the dwelling unit is $78387 +in.representative_income 78390 Representative total house income in the dwelling unit is $78390 +in.representative_income 78411 Representative total house income in the dwelling unit is $78411 +in.representative_income 78422 Representative total house income in the dwelling unit is $78422 +in.representative_income 78437 Representative total house income in the dwelling unit is $78437 +in.representative_income 78438 Representative total house income in the dwelling unit is $78438 +in.representative_income 78442 Representative total house income in the dwelling unit is $78442 +in.representative_income 78443 Representative total house income in the dwelling unit is $78443 +in.representative_income 78462 Representative total house income in the dwelling unit is $78462 +in.representative_income 78469 Representative total house income in the dwelling unit is $78469 +in.representative_income 78476 Representative total house income in the dwelling unit is $78476 +in.representative_income 78488 Representative total house income in the dwelling unit is $78488 +in.representative_income 78494 Representative total house income in the dwelling unit is $78494 +in.representative_income 78545 Representative total house income in the dwelling unit is $78545 +in.representative_income 78550 Representative total house income in the dwelling unit is $78550 +in.representative_income 78568 Representative total house income in the dwelling unit is $78568 +in.representative_income 78574 Representative total house income in the dwelling unit is $78574 +in.representative_income 78577 Representative total house income in the dwelling unit is $78577 +in.representative_income 78589 Representative total house income in the dwelling unit is $78589 +in.representative_income 78597 Representative total house income in the dwelling unit is $78597 +in.representative_income 78604 Representative total house income in the dwelling unit is $78604 +in.representative_income 78609 Representative total house income in the dwelling unit is $78609 +in.representative_income 78615 Representative total house income in the dwelling unit is $78615 +in.representative_income 78626 Representative total house income in the dwelling unit is $78626 +in.representative_income 78638 Representative total house income in the dwelling unit is $78638 +in.representative_income 78648 Representative total house income in the dwelling unit is $78648 +in.representative_income 78658 Representative total house income in the dwelling unit is $78658 +in.representative_income 78659 Representative total house income in the dwelling unit is $78659 +in.representative_income 78666 Representative total house income in the dwelling unit is $78666 +in.representative_income 78669 Representative total house income in the dwelling unit is $78669 +in.representative_income 78670 Representative total house income in the dwelling unit is $78670 +in.representative_income 78674 Representative total house income in the dwelling unit is $78674 +in.representative_income 78684 Representative total house income in the dwelling unit is $78684 +in.representative_income 78689 Representative total house income in the dwelling unit is $78689 +in.representative_income 78690 Representative total house income in the dwelling unit is $78690 +in.representative_income 78699 Representative total house income in the dwelling unit is $78699 +in.representative_income 78701 Representative total house income in the dwelling unit is $78701 +in.representative_income 78737 Representative total house income in the dwelling unit is $78737 +in.representative_income 78741 Representative total house income in the dwelling unit is $78741 +in.representative_income 78766 Representative total house income in the dwelling unit is $78766 +in.representative_income 78779 Representative total house income in the dwelling unit is $78779 +in.representative_income 78791 Representative total house income in the dwelling unit is $78791 +in.representative_income 78797 Representative total house income in the dwelling unit is $78797 +in.representative_income 78801 Representative total house income in the dwelling unit is $78801 +in.representative_income 78803 Representative total house income in the dwelling unit is $78803 +in.representative_income 78812 Representative total house income in the dwelling unit is $78812 +in.representative_income 78822 Representative total house income in the dwelling unit is $78822 +in.representative_income 78842 Representative total house income in the dwelling unit is $78842 +in.representative_income 78875 Representative total house income in the dwelling unit is $78875 +in.representative_income 78885 Representative total house income in the dwelling unit is $78885 +in.representative_income 78892 Representative total house income in the dwelling unit is $78892 +in.representative_income 78898 Representative total house income in the dwelling unit is $78898 +in.representative_income 78901 Representative total house income in the dwelling unit is $78901 +in.representative_income 78906 Representative total house income in the dwelling unit is $78906 +in.representative_income 78913 Representative total house income in the dwelling unit is $78913 +in.representative_income 78929 Representative total house income in the dwelling unit is $78929 +in.representative_income 78937 Representative total house income in the dwelling unit is $78937 +in.representative_income 78943 Representative total house income in the dwelling unit is $78943 +in.representative_income 78963 Representative total house income in the dwelling unit is $78963 +in.representative_income 78974 Representative total house income in the dwelling unit is $78974 +in.representative_income 78978 Representative total house income in the dwelling unit is $78978 +in.representative_income 78983 Representative total house income in the dwelling unit is $78983 +in.representative_income 78985 Representative total house income in the dwelling unit is $78985 +in.representative_income 78988 Representative total house income in the dwelling unit is $78988 +in.representative_income 78990 Representative total house income in the dwelling unit is $78990 +in.representative_income 78993 Representative total house income in the dwelling unit is $78993 +in.representative_income 79006 Representative total house income in the dwelling unit is $79006 +in.representative_income 79007 Representative total house income in the dwelling unit is $79007 +in.representative_income 79009 Representative total house income in the dwelling unit is $79009 +in.representative_income 79037 Representative total house income in the dwelling unit is $79037 +in.representative_income 79048 Representative total house income in the dwelling unit is $79048 +in.representative_income 79071 Representative total house income in the dwelling unit is $79071 +in.representative_income 79091 Representative total house income in the dwelling unit is $79091 +in.representative_income 79094 Representative total house income in the dwelling unit is $79094 +in.representative_income 79095 Representative total house income in the dwelling unit is $79095 +in.representative_income 79106 Representative total house income in the dwelling unit is $79106 +in.representative_income 79113 Representative total house income in the dwelling unit is $79113 +in.representative_income 79125 Representative total house income in the dwelling unit is $79125 +in.representative_income 79138 Representative total house income in the dwelling unit is $79138 +in.representative_income 79144 Representative total house income in the dwelling unit is $79144 +in.representative_income 79164 Representative total house income in the dwelling unit is $79164 +in.representative_income 79190 Representative total house income in the dwelling unit is $79190 +in.representative_income 79195 Representative total house income in the dwelling unit is $79195 +in.representative_income 79198 Representative total house income in the dwelling unit is $79198 +in.representative_income 79201 Representative total house income in the dwelling unit is $79201 +in.representative_income 79215 Representative total house income in the dwelling unit is $79215 +in.representative_income 79220 Representative total house income in the dwelling unit is $79220 +in.representative_income 79221 Representative total house income in the dwelling unit is $79221 +in.representative_income 79222 Representative total house income in the dwelling unit is $79222 +in.representative_income 79242 Representative total house income in the dwelling unit is $79242 +in.representative_income 79251 Representative total house income in the dwelling unit is $79251 +in.representative_income 79253 Representative total house income in the dwelling unit is $79253 +in.representative_income 79257 Representative total house income in the dwelling unit is $79257 +in.representative_income 79267 Representative total house income in the dwelling unit is $79267 +in.representative_income 79296 Representative total house income in the dwelling unit is $79296 +in.representative_income 79306 Representative total house income in the dwelling unit is $79306 +in.representative_income 79307 Representative total house income in the dwelling unit is $79307 +in.representative_income 79317 Representative total house income in the dwelling unit is $79317 +in.representative_income 79318 Representative total house income in the dwelling unit is $79318 +in.representative_income 79327 Representative total house income in the dwelling unit is $79327 +in.representative_income 79339 Representative total house income in the dwelling unit is $79339 +in.representative_income 79340 Representative total house income in the dwelling unit is $79340 +in.representative_income 79370 Representative total house income in the dwelling unit is $79370 +in.representative_income 79397 Representative total house income in the dwelling unit is $79397 +in.representative_income 79412 Representative total house income in the dwelling unit is $79412 +in.representative_income 79414 Representative total house income in the dwelling unit is $79414 +in.representative_income 79422 Representative total house income in the dwelling unit is $79422 +in.representative_income 79423 Representative total house income in the dwelling unit is $79423 +in.representative_income 79433 Representative total house income in the dwelling unit is $79433 +in.representative_income 79435 Representative total house income in the dwelling unit is $79435 +in.representative_income 79463 Representative total house income in the dwelling unit is $79463 +in.representative_income 79464 Representative total house income in the dwelling unit is $79464 +in.representative_income 79498 Representative total house income in the dwelling unit is $79498 +in.representative_income 79517 Representative total house income in the dwelling unit is $79517 +in.representative_income 79522 Representative total house income in the dwelling unit is $79522 +in.representative_income 79525 Representative total house income in the dwelling unit is $79525 +in.representative_income 79543 Representative total house income in the dwelling unit is $79543 +in.representative_income 79545 Representative total house income in the dwelling unit is $79545 +in.representative_income 79577 Representative total house income in the dwelling unit is $79577 +in.representative_income 79599 Representative total house income in the dwelling unit is $79599 +in.representative_income 79623 Representative total house income in the dwelling unit is $79623 +in.representative_income 79628 Representative total house income in the dwelling unit is $79628 +in.representative_income 79631 Representative total house income in the dwelling unit is $79631 +in.representative_income 79639 Representative total house income in the dwelling unit is $79639 +in.representative_income 79650 Representative total house income in the dwelling unit is $79650 +in.representative_income 79669 Representative total house income in the dwelling unit is $79669 +in.representative_income 79700 Representative total house income in the dwelling unit is $79700 +in.representative_income 79703 Representative total house income in the dwelling unit is $79703 +in.representative_income 79728 Representative total house income in the dwelling unit is $79728 +in.representative_income 79732 Representative total house income in the dwelling unit is $79732 +in.representative_income 79739 Representative total house income in the dwelling unit is $79739 +in.representative_income 79758 Representative total house income in the dwelling unit is $79758 +in.representative_income 79779 Representative total house income in the dwelling unit is $79779 +in.representative_income 79793 Representative total house income in the dwelling unit is $79793 +in.representative_income 79800 Representative total house income in the dwelling unit is $79800 +in.representative_income 79801 Representative total house income in the dwelling unit is $79801 +in.representative_income 79833 Representative total house income in the dwelling unit is $79833 +in.representative_income 79834 Representative total house income in the dwelling unit is $79834 +in.representative_income 79843 Representative total house income in the dwelling unit is $79843 +in.representative_income 79847 Representative total house income in the dwelling unit is $79847 +in.representative_income 79864 Representative total house income in the dwelling unit is $79864 +in.representative_income 79876 Representative total house income in the dwelling unit is $79876 +in.representative_income 79897 Representative total house income in the dwelling unit is $79897 +in.representative_income 79902 Representative total house income in the dwelling unit is $79902 +in.representative_income 79908 Representative total house income in the dwelling unit is $79908 +in.representative_income 79918 Representative total house income in the dwelling unit is $79918 +in.representative_income 79937 Representative total house income in the dwelling unit is $79937 +in.representative_income 79940 Representative total house income in the dwelling unit is $79940 +in.representative_income 79955 Representative total house income in the dwelling unit is $79955 +in.representative_income 79972 Representative total house income in the dwelling unit is $79972 +in.representative_income 80003 Representative total house income in the dwelling unit is $80003 +in.representative_income 80041 Representative total house income in the dwelling unit is $80041 +in.representative_income 80045 Representative total house income in the dwelling unit is $80045 +in.representative_income 80079 Representative total house income in the dwelling unit is $80079 +in.representative_income 80084 Representative total house income in the dwelling unit is $80084 +in.representative_income 80105 Representative total house income in the dwelling unit is $80105 +in.representative_income 80144 Representative total house income in the dwelling unit is $80144 +in.representative_income 80150 Representative total house income in the dwelling unit is $80150 +in.representative_income 80171 Representative total house income in the dwelling unit is $80171 +in.representative_income 80187 Representative total house income in the dwelling unit is $80187 +in.representative_income 80196 Representative total house income in the dwelling unit is $80196 +in.representative_income 80203 Representative total house income in the dwelling unit is $80203 +in.representative_income 80206 Representative total house income in the dwelling unit is $80206 +in.representative_income 80240 Representative total house income in the dwelling unit is $80240 +in.representative_income 80247 Representative total house income in the dwelling unit is $80247 +in.representative_income 80255 Representative total house income in the dwelling unit is $80255 +in.representative_income 80274 Representative total house income in the dwelling unit is $80274 +in.representative_income 80279 Representative total house income in the dwelling unit is $80279 +in.representative_income 80294 Representative total house income in the dwelling unit is $80294 +in.representative_income 80307 Representative total house income in the dwelling unit is $80307 +in.representative_income 80309 Representative total house income in the dwelling unit is $80309 +in.representative_income 80350 Representative total house income in the dwelling unit is $80350 +in.representative_income 80361 Representative total house income in the dwelling unit is $80361 +in.representative_income 80386 Representative total house income in the dwelling unit is $80386 +in.representative_income 80401 Representative total house income in the dwelling unit is $80401 +in.representative_income 80408 Representative total house income in the dwelling unit is $80408 +in.representative_income 80409 Representative total house income in the dwelling unit is $80409 +in.representative_income 80453 Representative total house income in the dwelling unit is $80453 +in.representative_income 80466 Representative total house income in the dwelling unit is $80466 +in.representative_income 80468 Representative total house income in the dwelling unit is $80468 +in.representative_income 80474 Representative total house income in the dwelling unit is $80474 +in.representative_income 80488 Representative total house income in the dwelling unit is $80488 +in.representative_income 80495 Representative total house income in the dwelling unit is $80495 +in.representative_income 80498 Representative total house income in the dwelling unit is $80498 +in.representative_income 80508 Representative total house income in the dwelling unit is $80508 +in.representative_income 80509 Representative total house income in the dwelling unit is $80509 +in.representative_income 80513 Representative total house income in the dwelling unit is $80513 +in.representative_income 80556 Representative total house income in the dwelling unit is $80556 +in.representative_income 80559 Representative total house income in the dwelling unit is $80559 +in.representative_income 80572 Representative total house income in the dwelling unit is $80572 +in.representative_income 80584 Representative total house income in the dwelling unit is $80584 +in.representative_income 80593 Representative total house income in the dwelling unit is $80593 +in.representative_income 80598 Representative total house income in the dwelling unit is $80598 +in.representative_income 80603 Representative total house income in the dwelling unit is $80603 +in.representative_income 80608 Representative total house income in the dwelling unit is $80608 +in.representative_income 80610 Representative total house income in the dwelling unit is $80610 +in.representative_income 80614 Representative total house income in the dwelling unit is $80614 +in.representative_income 80616 Representative total house income in the dwelling unit is $80616 +in.representative_income 80624 Representative total house income in the dwelling unit is $80624 +in.representative_income 80630 Representative total house income in the dwelling unit is $80630 +in.representative_income 80637 Representative total house income in the dwelling unit is $80637 +in.representative_income 80648 Representative total house income in the dwelling unit is $80648 +in.representative_income 80660 Representative total house income in the dwelling unit is $80660 +in.representative_income 80670 Representative total house income in the dwelling unit is $80670 +in.representative_income 80678 Representative total house income in the dwelling unit is $80678 +in.representative_income 80681 Representative total house income in the dwelling unit is $80681 +in.representative_income 80711 Representative total house income in the dwelling unit is $80711 +in.representative_income 80723 Representative total house income in the dwelling unit is $80723 +in.representative_income 80741 Representative total house income in the dwelling unit is $80741 +in.representative_income 80763 Representative total house income in the dwelling unit is $80763 +in.representative_income 80783 Representative total house income in the dwelling unit is $80783 +in.representative_income 80798 Representative total house income in the dwelling unit is $80798 +in.representative_income 80812 Representative total house income in the dwelling unit is $80812 +in.representative_income 80819 Representative total house income in the dwelling unit is $80819 +in.representative_income 80831 Representative total house income in the dwelling unit is $80831 +in.representative_income 80851 Representative total house income in the dwelling unit is $80851 +in.representative_income 80862 Representative total house income in the dwelling unit is $80862 +in.representative_income 80863 Representative total house income in the dwelling unit is $80863 +in.representative_income 80865 Representative total house income in the dwelling unit is $80865 +in.representative_income 80872 Representative total house income in the dwelling unit is $80872 +in.representative_income 80877 Representative total house income in the dwelling unit is $80877 +in.representative_income 80888 Representative total house income in the dwelling unit is $80888 +in.representative_income 80903 Representative total house income in the dwelling unit is $80903 +in.representative_income 80913 Representative total house income in the dwelling unit is $80913 +in.representative_income 80921 Representative total house income in the dwelling unit is $80921 +in.representative_income 80923 Representative total house income in the dwelling unit is $80923 +in.representative_income 80927 Representative total house income in the dwelling unit is $80927 +in.representative_income 80933 Representative total house income in the dwelling unit is $80933 +in.representative_income 80938 Representative total house income in the dwelling unit is $80938 +in.representative_income 80939 Representative total house income in the dwelling unit is $80939 +in.representative_income 80941 Representative total house income in the dwelling unit is $80941 +in.representative_income 80943 Representative total house income in the dwelling unit is $80943 +in.representative_income 80969 Representative total house income in the dwelling unit is $80969 +in.representative_income 80992 Representative total house income in the dwelling unit is $80992 +in.representative_income 80994 Representative total house income in the dwelling unit is $80994 +in.representative_income 80996 Representative total house income in the dwelling unit is $80996 +in.representative_income 81014 Representative total house income in the dwelling unit is $81014 +in.representative_income 81035 Representative total house income in the dwelling unit is $81035 +in.representative_income 81036 Representative total house income in the dwelling unit is $81036 +in.representative_income 81045 Representative total house income in the dwelling unit is $81045 +in.representative_income 81046 Representative total house income in the dwelling unit is $81046 +in.representative_income 81064 Representative total house income in the dwelling unit is $81064 +in.representative_income 81067 Representative total house income in the dwelling unit is $81067 +in.representative_income 81068 Representative total house income in the dwelling unit is $81068 +in.representative_income 81072 Representative total house income in the dwelling unit is $81072 +in.representative_income 81074 Representative total house income in the dwelling unit is $81074 +in.representative_income 81078 Representative total house income in the dwelling unit is $81078 +in.representative_income 81092 Representative total house income in the dwelling unit is $81092 +in.representative_income 81099 Representative total house income in the dwelling unit is $81099 +in.representative_income 81115 Representative total house income in the dwelling unit is $81115 +in.representative_income 81121 Representative total house income in the dwelling unit is $81121 +in.representative_income 81131 Representative total house income in the dwelling unit is $81131 +in.representative_income 81135 Representative total house income in the dwelling unit is $81135 +in.representative_income 81143 Representative total house income in the dwelling unit is $81143 +in.representative_income 81152 Representative total house income in the dwelling unit is $81152 +in.representative_income 81153 Representative total house income in the dwelling unit is $81153 +in.representative_income 81165 Representative total house income in the dwelling unit is $81165 +in.representative_income 81175 Representative total house income in the dwelling unit is $81175 +in.representative_income 81183 Representative total house income in the dwelling unit is $81183 +in.representative_income 81185 Representative total house income in the dwelling unit is $81185 +in.representative_income 81198 Representative total house income in the dwelling unit is $81198 +in.representative_income 81205 Representative total house income in the dwelling unit is $81205 +in.representative_income 81216 Representative total house income in the dwelling unit is $81216 +in.representative_income 81239 Representative total house income in the dwelling unit is $81239 +in.representative_income 81249 Representative total house income in the dwelling unit is $81249 +in.representative_income 81252 Representative total house income in the dwelling unit is $81252 +in.representative_income 81260 Representative total house income in the dwelling unit is $81260 +in.representative_income 81274 Representative total house income in the dwelling unit is $81274 +in.representative_income 81278 Representative total house income in the dwelling unit is $81278 +in.representative_income 81279 Representative total house income in the dwelling unit is $81279 +in.representative_income 81295 Representative total house income in the dwelling unit is $81295 +in.representative_income 81300 Representative total house income in the dwelling unit is $81300 +in.representative_income 81310 Representative total house income in the dwelling unit is $81310 +in.representative_income 81313 Representative total house income in the dwelling unit is $81313 +in.representative_income 81317 Representative total house income in the dwelling unit is $81317 +in.representative_income 81332 Representative total house income in the dwelling unit is $81332 +in.representative_income 81337 Representative total house income in the dwelling unit is $81337 +in.representative_income 81341 Representative total house income in the dwelling unit is $81341 +in.representative_income 81360 Representative total house income in the dwelling unit is $81360 +in.representative_income 81368 Representative total house income in the dwelling unit is $81368 +in.representative_income 81382 Representative total house income in the dwelling unit is $81382 +in.representative_income 81400 Representative total house income in the dwelling unit is $81400 +in.representative_income 81410 Representative total house income in the dwelling unit is $81410 +in.representative_income 81416 Representative total house income in the dwelling unit is $81416 +in.representative_income 81418 Representative total house income in the dwelling unit is $81418 +in.representative_income 81424 Representative total house income in the dwelling unit is $81424 +in.representative_income 81457 Representative total house income in the dwelling unit is $81457 +in.representative_income 81464 Representative total house income in the dwelling unit is $81464 +in.representative_income 81468 Representative total house income in the dwelling unit is $81468 +in.representative_income 81475 Representative total house income in the dwelling unit is $81475 +in.representative_income 81484 Representative total house income in the dwelling unit is $81484 +in.representative_income 81489 Representative total house income in the dwelling unit is $81489 +in.representative_income 81511 Representative total house income in the dwelling unit is $81511 +in.representative_income 81516 Representative total house income in the dwelling unit is $81516 +in.representative_income 81519 Representative total house income in the dwelling unit is $81519 +in.representative_income 81521 Representative total house income in the dwelling unit is $81521 +in.representative_income 81522 Representative total house income in the dwelling unit is $81522 +in.representative_income 81526 Representative total house income in the dwelling unit is $81526 +in.representative_income 81552 Representative total house income in the dwelling unit is $81552 +in.representative_income 81567 Representative total house income in the dwelling unit is $81567 +in.representative_income 81574 Representative total house income in the dwelling unit is $81574 +in.representative_income 81575 Representative total house income in the dwelling unit is $81575 +in.representative_income 81582 Representative total house income in the dwelling unit is $81582 +in.representative_income 81588 Representative total house income in the dwelling unit is $81588 +in.representative_income 81597 Representative total house income in the dwelling unit is $81597 +in.representative_income 81608 Representative total house income in the dwelling unit is $81608 +in.representative_income 81620 Representative total house income in the dwelling unit is $81620 +in.representative_income 81626 Representative total house income in the dwelling unit is $81626 +in.representative_income 81639 Representative total house income in the dwelling unit is $81639 +in.representative_income 81653 Representative total house income in the dwelling unit is $81653 +in.representative_income 81657 Representative total house income in the dwelling unit is $81657 +in.representative_income 81668 Representative total house income in the dwelling unit is $81668 +in.representative_income 81683 Representative total house income in the dwelling unit is $81683 +in.representative_income 81689 Representative total house income in the dwelling unit is $81689 +in.representative_income 81691 Representative total house income in the dwelling unit is $81691 +in.representative_income 81705 Representative total house income in the dwelling unit is $81705 +in.representative_income 81721 Representative total house income in the dwelling unit is $81721 +in.representative_income 81732 Representative total house income in the dwelling unit is $81732 +in.representative_income 81733 Representative total house income in the dwelling unit is $81733 +in.representative_income 81744 Representative total house income in the dwelling unit is $81744 +in.representative_income 81748 Representative total house income in the dwelling unit is $81748 +in.representative_income 81753 Representative total house income in the dwelling unit is $81753 +in.representative_income 81754 Representative total house income in the dwelling unit is $81754 +in.representative_income 81785 Representative total house income in the dwelling unit is $81785 +in.representative_income 81791 Representative total house income in the dwelling unit is $81791 +in.representative_income 81794 Representative total house income in the dwelling unit is $81794 +in.representative_income 81795 Representative total house income in the dwelling unit is $81795 +in.representative_income 81797 Representative total house income in the dwelling unit is $81797 +in.representative_income 81801 Representative total house income in the dwelling unit is $81801 +in.representative_income 81806 Representative total house income in the dwelling unit is $81806 +in.representative_income 81816 Representative total house income in the dwelling unit is $81816 +in.representative_income 81822 Representative total house income in the dwelling unit is $81822 +in.representative_income 81825 Representative total house income in the dwelling unit is $81825 +in.representative_income 81838 Representative total house income in the dwelling unit is $81838 +in.representative_income 81839 Representative total house income in the dwelling unit is $81839 +in.representative_income 81845 Representative total house income in the dwelling unit is $81845 +in.representative_income 81860 Representative total house income in the dwelling unit is $81860 +in.representative_income 81861 Representative total house income in the dwelling unit is $81861 +in.representative_income 81862 Representative total house income in the dwelling unit is $81862 +in.representative_income 81872 Representative total house income in the dwelling unit is $81872 +in.representative_income 81878 Representative total house income in the dwelling unit is $81878 +in.representative_income 81898 Representative total house income in the dwelling unit is $81898 +in.representative_income 81899 Representative total house income in the dwelling unit is $81899 +in.representative_income 81903 Representative total house income in the dwelling unit is $81903 +in.representative_income 81904 Representative total house income in the dwelling unit is $81904 +in.representative_income 81923 Representative total house income in the dwelling unit is $81923 +in.representative_income 81926 Representative total house income in the dwelling unit is $81926 +in.representative_income 81943 Representative total house income in the dwelling unit is $81943 +in.representative_income 81956 Representative total house income in the dwelling unit is $81956 +in.representative_income 81968 Representative total house income in the dwelling unit is $81968 +in.representative_income 81977 Representative total house income in the dwelling unit is $81977 +in.representative_income 81980 Representative total house income in the dwelling unit is $81980 +in.representative_income 81993 Representative total house income in the dwelling unit is $81993 +in.representative_income 81995 Representative total house income in the dwelling unit is $81995 +in.representative_income 82000 Representative total house income in the dwelling unit is $82000 +in.representative_income 82004 Representative total house income in the dwelling unit is $82004 +in.representative_income 82008 Representative total house income in the dwelling unit is $82008 +in.representative_income 82012 Representative total house income in the dwelling unit is $82012 +in.representative_income 82024 Representative total house income in the dwelling unit is $82024 +in.representative_income 82048 Representative total house income in the dwelling unit is $82048 +in.representative_income 82059 Representative total house income in the dwelling unit is $82059 +in.representative_income 82064 Representative total house income in the dwelling unit is $82064 +in.representative_income 82103 Representative total house income in the dwelling unit is $82103 +in.representative_income 82116 Representative total house income in the dwelling unit is $82116 +in.representative_income 82118 Representative total house income in the dwelling unit is $82118 +in.representative_income 82120 Representative total house income in the dwelling unit is $82120 +in.representative_income 82125 Representative total house income in the dwelling unit is $82125 +in.representative_income 82127 Representative total house income in the dwelling unit is $82127 +in.representative_income 82133 Representative total house income in the dwelling unit is $82133 +in.representative_income 82135 Representative total house income in the dwelling unit is $82135 +in.representative_income 82145 Representative total house income in the dwelling unit is $82145 +in.representative_income 82148 Representative total house income in the dwelling unit is $82148 +in.representative_income 82154 Representative total house income in the dwelling unit is $82154 +in.representative_income 82155 Representative total house income in the dwelling unit is $82155 +in.representative_income 82169 Representative total house income in the dwelling unit is $82169 +in.representative_income 82170 Representative total house income in the dwelling unit is $82170 +in.representative_income 82175 Representative total house income in the dwelling unit is $82175 +in.representative_income 82206 Representative total house income in the dwelling unit is $82206 +in.representative_income 82207 Representative total house income in the dwelling unit is $82207 +in.representative_income 82210 Representative total house income in the dwelling unit is $82210 +in.representative_income 82224 Representative total house income in the dwelling unit is $82224 +in.representative_income 82226 Representative total house income in the dwelling unit is $82226 +in.representative_income 82228 Representative total house income in the dwelling unit is $82228 +in.representative_income 82247 Representative total house income in the dwelling unit is $82247 +in.representative_income 82259 Representative total house income in the dwelling unit is $82259 +in.representative_income 82270 Representative total house income in the dwelling unit is $82270 +in.representative_income 82276 Representative total house income in the dwelling unit is $82276 +in.representative_income 82280 Representative total house income in the dwelling unit is $82280 +in.representative_income 82310 Representative total house income in the dwelling unit is $82310 +in.representative_income 82312 Representative total house income in the dwelling unit is $82312 +in.representative_income 82316 Representative total house income in the dwelling unit is $82316 +in.representative_income 82327 Representative total house income in the dwelling unit is $82327 +in.representative_income 82332 Representative total house income in the dwelling unit is $82332 +in.representative_income 82333 Representative total house income in the dwelling unit is $82333 +in.representative_income 82338 Representative total house income in the dwelling unit is $82338 +in.representative_income 82351 Representative total house income in the dwelling unit is $82351 +in.representative_income 82353 Representative total house income in the dwelling unit is $82353 +in.representative_income 82357 Representative total house income in the dwelling unit is $82357 +in.representative_income 82364 Representative total house income in the dwelling unit is $82364 +in.representative_income 82372 Representative total house income in the dwelling unit is $82372 +in.representative_income 82375 Representative total house income in the dwelling unit is $82375 +in.representative_income 82376 Representative total house income in the dwelling unit is $82376 +in.representative_income 82377 Representative total house income in the dwelling unit is $82377 +in.representative_income 82386 Representative total house income in the dwelling unit is $82386 +in.representative_income 82387 Representative total house income in the dwelling unit is $82387 +in.representative_income 82397 Representative total house income in the dwelling unit is $82397 +in.representative_income 82398 Representative total house income in the dwelling unit is $82398 +in.representative_income 82399 Representative total house income in the dwelling unit is $82399 +in.representative_income 82407 Representative total house income in the dwelling unit is $82407 +in.representative_income 82408 Representative total house income in the dwelling unit is $82408 +in.representative_income 82413 Representative total house income in the dwelling unit is $82413 +in.representative_income 82416 Representative total house income in the dwelling unit is $82416 +in.representative_income 82418 Representative total house income in the dwelling unit is $82418 +in.representative_income 82421 Representative total house income in the dwelling unit is $82421 +in.representative_income 82428 Representative total house income in the dwelling unit is $82428 +in.representative_income 82430 Representative total house income in the dwelling unit is $82430 +in.representative_income 82440 Representative total house income in the dwelling unit is $82440 +in.representative_income 82441 Representative total house income in the dwelling unit is $82441 +in.representative_income 82442 Representative total house income in the dwelling unit is $82442 +in.representative_income 82444 Representative total house income in the dwelling unit is $82444 +in.representative_income 82451 Representative total house income in the dwelling unit is $82451 +in.representative_income 82462 Representative total house income in the dwelling unit is $82462 +in.representative_income 82468 Representative total house income in the dwelling unit is $82468 +in.representative_income 82471 Representative total house income in the dwelling unit is $82471 +in.representative_income 82478 Representative total house income in the dwelling unit is $82478 +in.representative_income 82494 Representative total house income in the dwelling unit is $82494 +in.representative_income 82506 Representative total house income in the dwelling unit is $82506 +in.representative_income 82516 Representative total house income in the dwelling unit is $82516 +in.representative_income 82521 Representative total house income in the dwelling unit is $82521 +in.representative_income 82523 Representative total house income in the dwelling unit is $82523 +in.representative_income 82526 Representative total house income in the dwelling unit is $82526 +in.representative_income 82527 Representative total house income in the dwelling unit is $82527 +in.representative_income 82528 Representative total house income in the dwelling unit is $82528 +in.representative_income 82529 Representative total house income in the dwelling unit is $82529 +in.representative_income 82534 Representative total house income in the dwelling unit is $82534 +in.representative_income 82537 Representative total house income in the dwelling unit is $82537 +in.representative_income 82548 Representative total house income in the dwelling unit is $82548 +in.representative_income 82549 Representative total house income in the dwelling unit is $82549 +in.representative_income 82556 Representative total house income in the dwelling unit is $82556 +in.representative_income 82567 Representative total house income in the dwelling unit is $82567 +in.representative_income 82569 Representative total house income in the dwelling unit is $82569 +in.representative_income 82571 Representative total house income in the dwelling unit is $82571 +in.representative_income 82573 Representative total house income in the dwelling unit is $82573 +in.representative_income 82576 Representative total house income in the dwelling unit is $82576 +in.representative_income 82589 Representative total house income in the dwelling unit is $82589 +in.representative_income 82609 Representative total house income in the dwelling unit is $82609 +in.representative_income 82610 Representative total house income in the dwelling unit is $82610 +in.representative_income 82612 Representative total house income in the dwelling unit is $82612 +in.representative_income 82619 Representative total house income in the dwelling unit is $82619 +in.representative_income 82623 Representative total house income in the dwelling unit is $82623 +in.representative_income 82628 Representative total house income in the dwelling unit is $82628 +in.representative_income 82630 Representative total house income in the dwelling unit is $82630 +in.representative_income 82650 Representative total house income in the dwelling unit is $82650 +in.representative_income 82655 Representative total house income in the dwelling unit is $82655 +in.representative_income 82656 Representative total house income in the dwelling unit is $82656 +in.representative_income 82660 Representative total house income in the dwelling unit is $82660 +in.representative_income 82666 Representative total house income in the dwelling unit is $82666 +in.representative_income 82671 Representative total house income in the dwelling unit is $82671 +in.representative_income 82677 Representative total house income in the dwelling unit is $82677 +in.representative_income 82681 Representative total house income in the dwelling unit is $82681 +in.representative_income 82710 Representative total house income in the dwelling unit is $82710 +in.representative_income 82712 Representative total house income in the dwelling unit is $82712 +in.representative_income 82722 Representative total house income in the dwelling unit is $82722 +in.representative_income 82731 Representative total house income in the dwelling unit is $82731 +in.representative_income 82743 Representative total house income in the dwelling unit is $82743 +in.representative_income 82761 Representative total house income in the dwelling unit is $82761 +in.representative_income 82763 Representative total house income in the dwelling unit is $82763 +in.representative_income 82764 Representative total house income in the dwelling unit is $82764 +in.representative_income 82766 Representative total house income in the dwelling unit is $82766 +in.representative_income 82768 Representative total house income in the dwelling unit is $82768 +in.representative_income 82786 Representative total house income in the dwelling unit is $82786 +in.representative_income 82792 Representative total house income in the dwelling unit is $82792 +in.representative_income 82796 Representative total house income in the dwelling unit is $82796 +in.representative_income 82807 Representative total house income in the dwelling unit is $82807 +in.representative_income 82809 Representative total house income in the dwelling unit is $82809 +in.representative_income 82826 Representative total house income in the dwelling unit is $82826 +in.representative_income 82828 Representative total house income in the dwelling unit is $82828 +in.representative_income 82832 Representative total house income in the dwelling unit is $82832 +in.representative_income 82840 Representative total house income in the dwelling unit is $82840 +in.representative_income 82842 Representative total house income in the dwelling unit is $82842 +in.representative_income 82865 Representative total house income in the dwelling unit is $82865 +in.representative_income 82870 Representative total house income in the dwelling unit is $82870 +in.representative_income 82872 Representative total house income in the dwelling unit is $82872 +in.representative_income 82881 Representative total house income in the dwelling unit is $82881 +in.representative_income 82892 Representative total house income in the dwelling unit is $82892 +in.representative_income 82894 Representative total house income in the dwelling unit is $82894 +in.representative_income 82908 Representative total house income in the dwelling unit is $82908 +in.representative_income 82923 Representative total house income in the dwelling unit is $82923 +in.representative_income 82926 Representative total house income in the dwelling unit is $82926 +in.representative_income 82929 Representative total house income in the dwelling unit is $82929 +in.representative_income 82933 Representative total house income in the dwelling unit is $82933 +in.representative_income 82935 Representative total house income in the dwelling unit is $82935 +in.representative_income 82952 Representative total house income in the dwelling unit is $82952 +in.representative_income 82956 Representative total house income in the dwelling unit is $82956 +in.representative_income 82978 Representative total house income in the dwelling unit is $82978 +in.representative_income 82979 Representative total house income in the dwelling unit is $82979 +in.representative_income 82980 Representative total house income in the dwelling unit is $82980 +in.representative_income 82981 Representative total house income in the dwelling unit is $82981 +in.representative_income 82988 Representative total house income in the dwelling unit is $82988 +in.representative_income 82991 Representative total house income in the dwelling unit is $82991 +in.representative_income 82997 Representative total house income in the dwelling unit is $82997 +in.representative_income 83001 Representative total house income in the dwelling unit is $83001 +in.representative_income 83003 Representative total house income in the dwelling unit is $83003 +in.representative_income 83009 Representative total house income in the dwelling unit is $83009 +in.representative_income 83013 Representative total house income in the dwelling unit is $83013 +in.representative_income 83019 Representative total house income in the dwelling unit is $83019 +in.representative_income 83024 Representative total house income in the dwelling unit is $83024 +in.representative_income 83029 Representative total house income in the dwelling unit is $83029 +in.representative_income 83031 Representative total house income in the dwelling unit is $83031 +in.representative_income 83034 Representative total house income in the dwelling unit is $83034 +in.representative_income 83043 Representative total house income in the dwelling unit is $83043 +in.representative_income 83063 Representative total house income in the dwelling unit is $83063 +in.representative_income 83064 Representative total house income in the dwelling unit is $83064 +in.representative_income 83067 Representative total house income in the dwelling unit is $83067 +in.representative_income 83084 Representative total house income in the dwelling unit is $83084 +in.representative_income 83085 Representative total house income in the dwelling unit is $83085 +in.representative_income 83088 Representative total house income in the dwelling unit is $83088 +in.representative_income 83095 Representative total house income in the dwelling unit is $83095 +in.representative_income 83099 Representative total house income in the dwelling unit is $83099 +in.representative_income 83102 Representative total house income in the dwelling unit is $83102 +in.representative_income 83103 Representative total house income in the dwelling unit is $83103 +in.representative_income 83121 Representative total house income in the dwelling unit is $83121 +in.representative_income 83122 Representative total house income in the dwelling unit is $83122 +in.representative_income 83135 Representative total house income in the dwelling unit is $83135 +in.representative_income 83139 Representative total house income in the dwelling unit is $83139 +in.representative_income 83142 Representative total house income in the dwelling unit is $83142 +in.representative_income 83145 Representative total house income in the dwelling unit is $83145 +in.representative_income 83156 Representative total house income in the dwelling unit is $83156 +in.representative_income 83165 Representative total house income in the dwelling unit is $83165 +in.representative_income 83186 Representative total house income in the dwelling unit is $83186 +in.representative_income 83193 Representative total house income in the dwelling unit is $83193 +in.representative_income 83194 Representative total house income in the dwelling unit is $83194 +in.representative_income 83196 Representative total house income in the dwelling unit is $83196 +in.representative_income 83197 Representative total house income in the dwelling unit is $83197 +in.representative_income 83200 Representative total house income in the dwelling unit is $83200 +in.representative_income 83208 Representative total house income in the dwelling unit is $83208 +in.representative_income 83209 Representative total house income in the dwelling unit is $83209 +in.representative_income 83211 Representative total house income in the dwelling unit is $83211 +in.representative_income 83214 Representative total house income in the dwelling unit is $83214 +in.representative_income 83229 Representative total house income in the dwelling unit is $83229 +in.representative_income 83236 Representative total house income in the dwelling unit is $83236 +in.representative_income 83238 Representative total house income in the dwelling unit is $83238 +in.representative_income 83246 Representative total house income in the dwelling unit is $83246 +in.representative_income 83255 Representative total house income in the dwelling unit is $83255 +in.representative_income 83257 Representative total house income in the dwelling unit is $83257 +in.representative_income 83261 Representative total house income in the dwelling unit is $83261 +in.representative_income 83271 Representative total house income in the dwelling unit is $83271 +in.representative_income 83282 Representative total house income in the dwelling unit is $83282 +in.representative_income 83299 Representative total house income in the dwelling unit is $83299 +in.representative_income 83304 Representative total house income in the dwelling unit is $83304 +in.representative_income 83307 Representative total house income in the dwelling unit is $83307 +in.representative_income 83310 Representative total house income in the dwelling unit is $83310 +in.representative_income 83314 Representative total house income in the dwelling unit is $83314 +in.representative_income 83324 Representative total house income in the dwelling unit is $83324 +in.representative_income 83326 Representative total house income in the dwelling unit is $83326 +in.representative_income 83329 Representative total house income in the dwelling unit is $83329 +in.representative_income 83332 Representative total house income in the dwelling unit is $83332 +in.representative_income 83337 Representative total house income in the dwelling unit is $83337 +in.representative_income 83341 Representative total house income in the dwelling unit is $83341 +in.representative_income 83357 Representative total house income in the dwelling unit is $83357 +in.representative_income 83366 Representative total house income in the dwelling unit is $83366 +in.representative_income 83367 Representative total house income in the dwelling unit is $83367 +in.representative_income 83369 Representative total house income in the dwelling unit is $83369 +in.representative_income 83388 Representative total house income in the dwelling unit is $83388 +in.representative_income 83407 Representative total house income in the dwelling unit is $83407 +in.representative_income 83409 Representative total house income in the dwelling unit is $83409 +in.representative_income 83412 Representative total house income in the dwelling unit is $83412 +in.representative_income 83419 Representative total house income in the dwelling unit is $83419 +in.representative_income 83428 Representative total house income in the dwelling unit is $83428 +in.representative_income 83438 Representative total house income in the dwelling unit is $83438 +in.representative_income 83445 Representative total house income in the dwelling unit is $83445 +in.representative_income 83458 Representative total house income in the dwelling unit is $83458 +in.representative_income 83464 Representative total house income in the dwelling unit is $83464 +in.representative_income 83465 Representative total house income in the dwelling unit is $83465 +in.representative_income 83478 Representative total house income in the dwelling unit is $83478 +in.representative_income 83482 Representative total house income in the dwelling unit is $83482 +in.representative_income 83493 Representative total house income in the dwelling unit is $83493 +in.representative_income 83495 Representative total house income in the dwelling unit is $83495 +in.representative_income 83499 Representative total house income in the dwelling unit is $83499 +in.representative_income 83506 Representative total house income in the dwelling unit is $83506 +in.representative_income 83514 Representative total house income in the dwelling unit is $83514 +in.representative_income 83520 Representative total house income in the dwelling unit is $83520 +in.representative_income 83525 Representative total house income in the dwelling unit is $83525 +in.representative_income 83527 Representative total house income in the dwelling unit is $83527 +in.representative_income 83531 Representative total house income in the dwelling unit is $83531 +in.representative_income 83532 Representative total house income in the dwelling unit is $83532 +in.representative_income 83537 Representative total house income in the dwelling unit is $83537 +in.representative_income 83539 Representative total house income in the dwelling unit is $83539 +in.representative_income 83546 Representative total house income in the dwelling unit is $83546 +in.representative_income 83548 Representative total house income in the dwelling unit is $83548 +in.representative_income 83569 Representative total house income in the dwelling unit is $83569 +in.representative_income 83589 Representative total house income in the dwelling unit is $83589 +in.representative_income 83600 Representative total house income in the dwelling unit is $83600 +in.representative_income 83610 Representative total house income in the dwelling unit is $83610 +in.representative_income 83615 Representative total house income in the dwelling unit is $83615 +in.representative_income 83622 Representative total house income in the dwelling unit is $83622 +in.representative_income 83629 Representative total house income in the dwelling unit is $83629 +in.representative_income 83630 Representative total house income in the dwelling unit is $83630 +in.representative_income 83640 Representative total house income in the dwelling unit is $83640 +in.representative_income 83643 Representative total house income in the dwelling unit is $83643 +in.representative_income 83647 Representative total house income in the dwelling unit is $83647 +in.representative_income 83650 Representative total house income in the dwelling unit is $83650 +in.representative_income 83659 Representative total house income in the dwelling unit is $83659 +in.representative_income 83665 Representative total house income in the dwelling unit is $83665 +in.representative_income 83666 Representative total house income in the dwelling unit is $83666 +in.representative_income 83672 Representative total house income in the dwelling unit is $83672 +in.representative_income 83680 Representative total house income in the dwelling unit is $83680 +in.representative_income 83714 Representative total house income in the dwelling unit is $83714 +in.representative_income 83718 Representative total house income in the dwelling unit is $83718 +in.representative_income 83722 Representative total house income in the dwelling unit is $83722 +in.representative_income 83729 Representative total house income in the dwelling unit is $83729 +in.representative_income 83731 Representative total house income in the dwelling unit is $83731 +in.representative_income 83734 Representative total house income in the dwelling unit is $83734 +in.representative_income 83736 Representative total house income in the dwelling unit is $83736 +in.representative_income 83737 Representative total house income in the dwelling unit is $83737 +in.representative_income 83740 Representative total house income in the dwelling unit is $83740 +in.representative_income 83741 Representative total house income in the dwelling unit is $83741 +in.representative_income 83746 Representative total house income in the dwelling unit is $83746 +in.representative_income 83751 Representative total house income in the dwelling unit is $83751 +in.representative_income 83754 Representative total house income in the dwelling unit is $83754 +in.representative_income 83764 Representative total house income in the dwelling unit is $83764 +in.representative_income 83792 Representative total house income in the dwelling unit is $83792 +in.representative_income 83809 Representative total house income in the dwelling unit is $83809 +in.representative_income 83822 Representative total house income in the dwelling unit is $83822 +in.representative_income 83836 Representative total house income in the dwelling unit is $83836 +in.representative_income 83839 Representative total house income in the dwelling unit is $83839 +in.representative_income 83841 Representative total house income in the dwelling unit is $83841 +in.representative_income 83842 Representative total house income in the dwelling unit is $83842 +in.representative_income 83844 Representative total house income in the dwelling unit is $83844 +in.representative_income 83845 Representative total house income in the dwelling unit is $83845 +in.representative_income 83857 Representative total house income in the dwelling unit is $83857 +in.representative_income 83869 Representative total house income in the dwelling unit is $83869 +in.representative_income 83873 Representative total house income in the dwelling unit is $83873 +in.representative_income 83888 Representative total house income in the dwelling unit is $83888 +in.representative_income 83894 Representative total house income in the dwelling unit is $83894 +in.representative_income 83943 Representative total house income in the dwelling unit is $83943 +in.representative_income 83944 Representative total house income in the dwelling unit is $83944 +in.representative_income 83947 Representative total house income in the dwelling unit is $83947 +in.representative_income 83953 Representative total house income in the dwelling unit is $83953 +in.representative_income 83960 Representative total house income in the dwelling unit is $83960 +in.representative_income 83968 Representative total house income in the dwelling unit is $83968 +in.representative_income 83973 Representative total house income in the dwelling unit is $83973 +in.representative_income 83993 Representative total house income in the dwelling unit is $83993 +in.representative_income 84044 Representative total house income in the dwelling unit is $84044 +in.representative_income 84046 Representative total house income in the dwelling unit is $84046 +in.representative_income 84050 Representative total house income in the dwelling unit is $84050 +in.representative_income 84051 Representative total house income in the dwelling unit is $84051 +in.representative_income 84052 Representative total house income in the dwelling unit is $84052 +in.representative_income 84060 Representative total house income in the dwelling unit is $84060 +in.representative_income 84064 Representative total house income in the dwelling unit is $84064 +in.representative_income 84069 Representative total house income in the dwelling unit is $84069 +in.representative_income 84074 Representative total house income in the dwelling unit is $84074 +in.representative_income 84080 Representative total house income in the dwelling unit is $84080 +in.representative_income 84095 Representative total house income in the dwelling unit is $84095 +in.representative_income 84136 Representative total house income in the dwelling unit is $84136 +in.representative_income 84145 Representative total house income in the dwelling unit is $84145 +in.representative_income 84156 Representative total house income in the dwelling unit is $84156 +in.representative_income 84157 Representative total house income in the dwelling unit is $84157 +in.representative_income 84159 Representative total house income in the dwelling unit is $84159 +in.representative_income 84166 Representative total house income in the dwelling unit is $84166 +in.representative_income 84168 Representative total house income in the dwelling unit is $84168 +in.representative_income 84178 Representative total house income in the dwelling unit is $84178 +in.representative_income 84206 Representative total house income in the dwelling unit is $84206 +in.representative_income 84212 Representative total house income in the dwelling unit is $84212 +in.representative_income 84216 Representative total house income in the dwelling unit is $84216 +in.representative_income 84226 Representative total house income in the dwelling unit is $84226 +in.representative_income 84246 Representative total house income in the dwelling unit is $84246 +in.representative_income 84252 Representative total house income in the dwelling unit is $84252 +in.representative_income 84263 Representative total house income in the dwelling unit is $84263 +in.representative_income 84266 Representative total house income in the dwelling unit is $84266 +in.representative_income 84269 Representative total house income in the dwelling unit is $84269 +in.representative_income 84276 Representative total house income in the dwelling unit is $84276 +in.representative_income 84281 Representative total house income in the dwelling unit is $84281 +in.representative_income 84287 Representative total house income in the dwelling unit is $84287 +in.representative_income 84298 Representative total house income in the dwelling unit is $84298 +in.representative_income 84308 Representative total house income in the dwelling unit is $84308 +in.representative_income 84309 Representative total house income in the dwelling unit is $84309 +in.representative_income 84311 Representative total house income in the dwelling unit is $84311 +in.representative_income 84319 Representative total house income in the dwelling unit is $84319 +in.representative_income 84347 Representative total house income in the dwelling unit is $84347 +in.representative_income 84348 Representative total house income in the dwelling unit is $84348 +in.representative_income 84369 Representative total house income in the dwelling unit is $84369 +in.representative_income 84373 Representative total house income in the dwelling unit is $84373 +in.representative_income 84379 Representative total house income in the dwelling unit is $84379 +in.representative_income 84381 Representative total house income in the dwelling unit is $84381 +in.representative_income 84384 Representative total house income in the dwelling unit is $84384 +in.representative_income 84385 Representative total house income in the dwelling unit is $84385 +in.representative_income 84390 Representative total house income in the dwelling unit is $84390 +in.representative_income 84396 Representative total house income in the dwelling unit is $84396 +in.representative_income 84398 Representative total house income in the dwelling unit is $84398 +in.representative_income 84400 Representative total house income in the dwelling unit is $84400 +in.representative_income 84411 Representative total house income in the dwelling unit is $84411 +in.representative_income 84418 Representative total house income in the dwelling unit is $84418 +in.representative_income 84421 Representative total house income in the dwelling unit is $84421 +in.representative_income 84438 Representative total house income in the dwelling unit is $84438 +in.representative_income 84446 Representative total house income in the dwelling unit is $84446 +in.representative_income 84448 Representative total house income in the dwelling unit is $84448 +in.representative_income 84452 Representative total house income in the dwelling unit is $84452 +in.representative_income 84474 Representative total house income in the dwelling unit is $84474 +in.representative_income 84476 Representative total house income in the dwelling unit is $84476 +in.representative_income 84480 Representative total house income in the dwelling unit is $84480 +in.representative_income 84482 Representative total house income in the dwelling unit is $84482 +in.representative_income 84493 Representative total house income in the dwelling unit is $84493 +in.representative_income 84497 Representative total house income in the dwelling unit is $84497 +in.representative_income 84504 Representative total house income in the dwelling unit is $84504 +in.representative_income 84512 Representative total house income in the dwelling unit is $84512 +in.representative_income 84526 Representative total house income in the dwelling unit is $84526 +in.representative_income 84529 Representative total house income in the dwelling unit is $84529 +in.representative_income 84532 Representative total house income in the dwelling unit is $84532 +in.representative_income 84538 Representative total house income in the dwelling unit is $84538 +in.representative_income 84549 Representative total house income in the dwelling unit is $84549 +in.representative_income 84553 Representative total house income in the dwelling unit is $84553 +in.representative_income 84576 Representative total house income in the dwelling unit is $84576 +in.representative_income 84579 Representative total house income in the dwelling unit is $84579 +in.representative_income 84586 Representative total house income in the dwelling unit is $84586 +in.representative_income 84588 Representative total house income in the dwelling unit is $84588 +in.representative_income 84596 Representative total house income in the dwelling unit is $84596 +in.representative_income 84598 Representative total house income in the dwelling unit is $84598 +in.representative_income 84601 Representative total house income in the dwelling unit is $84601 +in.representative_income 84621 Representative total house income in the dwelling unit is $84621 +in.representative_income 84623 Representative total house income in the dwelling unit is $84623 +in.representative_income 84632 Representative total house income in the dwelling unit is $84632 +in.representative_income 84635 Representative total house income in the dwelling unit is $84635 +in.representative_income 84643 Representative total house income in the dwelling unit is $84643 +in.representative_income 84650 Representative total house income in the dwelling unit is $84650 +in.representative_income 84655 Representative total house income in the dwelling unit is $84655 +in.representative_income 84674 Representative total house income in the dwelling unit is $84674 +in.representative_income 84682 Representative total house income in the dwelling unit is $84682 +in.representative_income 84685 Representative total house income in the dwelling unit is $84685 +in.representative_income 84695 Representative total house income in the dwelling unit is $84695 +in.representative_income 84706 Representative total house income in the dwelling unit is $84706 +in.representative_income 84709 Representative total house income in the dwelling unit is $84709 +in.representative_income 84726 Representative total house income in the dwelling unit is $84726 +in.representative_income 84751 Representative total house income in the dwelling unit is $84751 +in.representative_income 84771 Representative total house income in the dwelling unit is $84771 +in.representative_income 84785 Representative total house income in the dwelling unit is $84785 +in.representative_income 84790 Representative total house income in the dwelling unit is $84790 +in.representative_income 84799 Representative total house income in the dwelling unit is $84799 +in.representative_income 84802 Representative total house income in the dwelling unit is $84802 +in.representative_income 84803 Representative total house income in the dwelling unit is $84803 +in.representative_income 84816 Representative total house income in the dwelling unit is $84816 +in.representative_income 84817 Representative total house income in the dwelling unit is $84817 +in.representative_income 84824 Representative total house income in the dwelling unit is $84824 +in.representative_income 84837 Representative total house income in the dwelling unit is $84837 +in.representative_income 84842 Representative total house income in the dwelling unit is $84842 +in.representative_income 84852 Representative total house income in the dwelling unit is $84852 +in.representative_income 84888 Representative total house income in the dwelling unit is $84888 +in.representative_income 84891 Representative total house income in the dwelling unit is $84891 +in.representative_income 84895 Representative total house income in the dwelling unit is $84895 +in.representative_income 84907 Representative total house income in the dwelling unit is $84907 +in.representative_income 84909 Representative total house income in the dwelling unit is $84909 +in.representative_income 84925 Representative total house income in the dwelling unit is $84925 +in.representative_income 84928 Representative total house income in the dwelling unit is $84928 +in.representative_income 84938 Representative total house income in the dwelling unit is $84938 +in.representative_income 84953 Representative total house income in the dwelling unit is $84953 +in.representative_income 84954 Representative total house income in the dwelling unit is $84954 +in.representative_income 84959 Representative total house income in the dwelling unit is $84959 +in.representative_income 84974 Representative total house income in the dwelling unit is $84974 +in.representative_income 84992 Representative total house income in the dwelling unit is $84992 +in.representative_income 85002 Representative total house income in the dwelling unit is $85002 +in.representative_income 85012 Representative total house income in the dwelling unit is $85012 +in.representative_income 85014 Representative total house income in the dwelling unit is $85014 +in.representative_income 85017 Representative total house income in the dwelling unit is $85017 +in.representative_income 85028 Representative total house income in the dwelling unit is $85028 +in.representative_income 85033 Representative total house income in the dwelling unit is $85033 +in.representative_income 85044 Representative total house income in the dwelling unit is $85044 +in.representative_income 85054 Representative total house income in the dwelling unit is $85054 +in.representative_income 85059 Representative total house income in the dwelling unit is $85059 +in.representative_income 85069 Representative total house income in the dwelling unit is $85069 +in.representative_income 85075 Representative total house income in the dwelling unit is $85075 +in.representative_income 85076 Representative total house income in the dwelling unit is $85076 +in.representative_income 85082 Representative total house income in the dwelling unit is $85082 +in.representative_income 85095 Representative total house income in the dwelling unit is $85095 +in.representative_income 85107 Representative total house income in the dwelling unit is $85107 +in.representative_income 85115 Representative total house income in the dwelling unit is $85115 +in.representative_income 85124 Representative total house income in the dwelling unit is $85124 +in.representative_income 85125 Representative total house income in the dwelling unit is $85125 +in.representative_income 85128 Representative total house income in the dwelling unit is $85128 +in.representative_income 85140 Representative total house income in the dwelling unit is $85140 +in.representative_income 85141 Representative total house income in the dwelling unit is $85141 +in.representative_income 85155 Representative total house income in the dwelling unit is $85155 +in.representative_income 85160 Representative total house income in the dwelling unit is $85160 +in.representative_income 85163 Representative total house income in the dwelling unit is $85163 +in.representative_income 85170 Representative total house income in the dwelling unit is $85170 +in.representative_income 85175 Representative total house income in the dwelling unit is $85175 +in.representative_income 85178 Representative total house income in the dwelling unit is $85178 +in.representative_income 85185 Representative total house income in the dwelling unit is $85185 +in.representative_income 85191 Representative total house income in the dwelling unit is $85191 +in.representative_income 85198 Representative total house income in the dwelling unit is $85198 +in.representative_income 85212 Representative total house income in the dwelling unit is $85212 +in.representative_income 85228 Representative total house income in the dwelling unit is $85228 +in.representative_income 85232 Representative total house income in the dwelling unit is $85232 +in.representative_income 85241 Representative total house income in the dwelling unit is $85241 +in.representative_income 85249 Representative total house income in the dwelling unit is $85249 +in.representative_income 85256 Representative total house income in the dwelling unit is $85256 +in.representative_income 85260 Representative total house income in the dwelling unit is $85260 +in.representative_income 85264 Representative total house income in the dwelling unit is $85264 +in.representative_income 85269 Representative total house income in the dwelling unit is $85269 +in.representative_income 85279 Representative total house income in the dwelling unit is $85279 +in.representative_income 85285 Representative total house income in the dwelling unit is $85285 +in.representative_income 85287 Representative total house income in the dwelling unit is $85287 +in.representative_income 85296 Representative total house income in the dwelling unit is $85296 +in.representative_income 85301 Representative total house income in the dwelling unit is $85301 +in.representative_income 85312 Representative total house income in the dwelling unit is $85312 +in.representative_income 85314 Representative total house income in the dwelling unit is $85314 +in.representative_income 85318 Representative total house income in the dwelling unit is $85318 +in.representative_income 85322 Representative total house income in the dwelling unit is $85322 +in.representative_income 85336 Representative total house income in the dwelling unit is $85336 +in.representative_income 85340 Representative total house income in the dwelling unit is $85340 +in.representative_income 85356 Representative total house income in the dwelling unit is $85356 +in.representative_income 85357 Representative total house income in the dwelling unit is $85357 +in.representative_income 85358 Representative total house income in the dwelling unit is $85358 +in.representative_income 85368 Representative total house income in the dwelling unit is $85368 +in.representative_income 85377 Representative total house income in the dwelling unit is $85377 +in.representative_income 85398 Representative total house income in the dwelling unit is $85398 +in.representative_income 85404 Representative total house income in the dwelling unit is $85404 +in.representative_income 85411 Representative total house income in the dwelling unit is $85411 +in.representative_income 85423 Representative total house income in the dwelling unit is $85423 +in.representative_income 85427 Representative total house income in the dwelling unit is $85427 +in.representative_income 85430 Representative total house income in the dwelling unit is $85430 +in.representative_income 85433 Representative total house income in the dwelling unit is $85433 +in.representative_income 85446 Representative total house income in the dwelling unit is $85446 +in.representative_income 85448 Representative total house income in the dwelling unit is $85448 +in.representative_income 85454 Representative total house income in the dwelling unit is $85454 +in.representative_income 85458 Representative total house income in the dwelling unit is $85458 +in.representative_income 85465 Representative total house income in the dwelling unit is $85465 +in.representative_income 85466 Representative total house income in the dwelling unit is $85466 +in.representative_income 85476 Representative total house income in the dwelling unit is $85476 +in.representative_income 85477 Representative total house income in the dwelling unit is $85477 +in.representative_income 85486 Representative total house income in the dwelling unit is $85486 +in.representative_income 85497 Representative total house income in the dwelling unit is $85497 +in.representative_income 85507 Representative total house income in the dwelling unit is $85507 +in.representative_income 85519 Representative total house income in the dwelling unit is $85519 +in.representative_income 85525 Representative total house income in the dwelling unit is $85525 +in.representative_income 85528 Representative total house income in the dwelling unit is $85528 +in.representative_income 85539 Representative total house income in the dwelling unit is $85539 +in.representative_income 85541 Representative total house income in the dwelling unit is $85541 +in.representative_income 85544 Representative total house income in the dwelling unit is $85544 +in.representative_income 85554 Representative total house income in the dwelling unit is $85554 +in.representative_income 85559 Representative total house income in the dwelling unit is $85559 +in.representative_income 85569 Representative total house income in the dwelling unit is $85569 +in.representative_income 85571 Representative total house income in the dwelling unit is $85571 +in.representative_income 85573 Representative total house income in the dwelling unit is $85573 +in.representative_income 85575 Representative total house income in the dwelling unit is $85575 +in.representative_income 85590 Representative total house income in the dwelling unit is $85590 +in.representative_income 85597 Representative total house income in the dwelling unit is $85597 +in.representative_income 85608 Representative total house income in the dwelling unit is $85608 +in.representative_income 85611 Representative total house income in the dwelling unit is $85611 +in.representative_income 85612 Representative total house income in the dwelling unit is $85612 +in.representative_income 85616 Representative total house income in the dwelling unit is $85616 +in.representative_income 85621 Representative total house income in the dwelling unit is $85621 +in.representative_income 85623 Representative total house income in the dwelling unit is $85623 +in.representative_income 85634 Representative total house income in the dwelling unit is $85634 +in.representative_income 85640 Representative total house income in the dwelling unit is $85640 +in.representative_income 85641 Representative total house income in the dwelling unit is $85641 +in.representative_income 85643 Representative total house income in the dwelling unit is $85643 +in.representative_income 85650 Representative total house income in the dwelling unit is $85650 +in.representative_income 85660 Representative total house income in the dwelling unit is $85660 +in.representative_income 85661 Representative total house income in the dwelling unit is $85661 +in.representative_income 85662 Representative total house income in the dwelling unit is $85662 +in.representative_income 85665 Representative total house income in the dwelling unit is $85665 +in.representative_income 85670 Representative total house income in the dwelling unit is $85670 +in.representative_income 85681 Representative total house income in the dwelling unit is $85681 +in.representative_income 85714 Representative total house income in the dwelling unit is $85714 +in.representative_income 85715 Representative total house income in the dwelling unit is $85715 +in.representative_income 85722 Representative total house income in the dwelling unit is $85722 +in.representative_income 85740 Representative total house income in the dwelling unit is $85740 +in.representative_income 85743 Representative total house income in the dwelling unit is $85743 +in.representative_income 85750 Representative total house income in the dwelling unit is $85750 +in.representative_income 85753 Representative total house income in the dwelling unit is $85753 +in.representative_income 85761 Representative total house income in the dwelling unit is $85761 +in.representative_income 85767 Representative total house income in the dwelling unit is $85767 +in.representative_income 85769 Representative total house income in the dwelling unit is $85769 +in.representative_income 85786 Representative total house income in the dwelling unit is $85786 +in.representative_income 85789 Representative total house income in the dwelling unit is $85789 +in.representative_income 85816 Representative total house income in the dwelling unit is $85816 +in.representative_income 85833 Representative total house income in the dwelling unit is $85833 +in.representative_income 85842 Representative total house income in the dwelling unit is $85842 +in.representative_income 85843 Representative total house income in the dwelling unit is $85843 +in.representative_income 85845 Representative total house income in the dwelling unit is $85845 +in.representative_income 85855 Representative total house income in the dwelling unit is $85855 +in.representative_income 85862 Representative total house income in the dwelling unit is $85862 +in.representative_income 85868 Representative total house income in the dwelling unit is $85868 +in.representative_income 85872 Representative total house income in the dwelling unit is $85872 +in.representative_income 85876 Representative total house income in the dwelling unit is $85876 +in.representative_income 85877 Representative total house income in the dwelling unit is $85877 +in.representative_income 85878 Representative total house income in the dwelling unit is $85878 +in.representative_income 85880 Representative total house income in the dwelling unit is $85880 +in.representative_income 85883 Representative total house income in the dwelling unit is $85883 +in.representative_income 85887 Representative total house income in the dwelling unit is $85887 +in.representative_income 85893 Representative total house income in the dwelling unit is $85893 +in.representative_income 85897 Representative total house income in the dwelling unit is $85897 +in.representative_income 85898 Representative total house income in the dwelling unit is $85898 +in.representative_income 85901 Representative total house income in the dwelling unit is $85901 +in.representative_income 85903 Representative total house income in the dwelling unit is $85903 +in.representative_income 85908 Representative total house income in the dwelling unit is $85908 +in.representative_income 85913 Representative total house income in the dwelling unit is $85913 +in.representative_income 85917 Representative total house income in the dwelling unit is $85917 +in.representative_income 85919 Representative total house income in the dwelling unit is $85919 +in.representative_income 85920 Representative total house income in the dwelling unit is $85920 +in.representative_income 85929 Representative total house income in the dwelling unit is $85929 +in.representative_income 85933 Representative total house income in the dwelling unit is $85933 +in.representative_income 85950 Representative total house income in the dwelling unit is $85950 +in.representative_income 85961 Representative total house income in the dwelling unit is $85961 +in.representative_income 85963 Representative total house income in the dwelling unit is $85963 +in.representative_income 85967 Representative total house income in the dwelling unit is $85967 +in.representative_income 85982 Representative total house income in the dwelling unit is $85982 +in.representative_income 85984 Representative total house income in the dwelling unit is $85984 +in.representative_income 86003 Representative total house income in the dwelling unit is $86003 +in.representative_income 86005 Representative total house income in the dwelling unit is $86005 +in.representative_income 86006 Representative total house income in the dwelling unit is $86006 +in.representative_income 86013 Representative total house income in the dwelling unit is $86013 +in.representative_income 86019 Representative total house income in the dwelling unit is $86019 +in.representative_income 86023 Representative total house income in the dwelling unit is $86023 +in.representative_income 86033 Representative total house income in the dwelling unit is $86033 +in.representative_income 86035 Representative total house income in the dwelling unit is $86035 +in.representative_income 86036 Representative total house income in the dwelling unit is $86036 +in.representative_income 86037 Representative total house income in the dwelling unit is $86037 +in.representative_income 86044 Representative total house income in the dwelling unit is $86044 +in.representative_income 86048 Representative total house income in the dwelling unit is $86048 +in.representative_income 86056 Representative total house income in the dwelling unit is $86056 +in.representative_income 86060 Representative total house income in the dwelling unit is $86060 +in.representative_income 86064 Representative total house income in the dwelling unit is $86064 +in.representative_income 86085 Representative total house income in the dwelling unit is $86085 +in.representative_income 86090 Representative total house income in the dwelling unit is $86090 +in.representative_income 86114 Representative total house income in the dwelling unit is $86114 +in.representative_income 86115 Representative total house income in the dwelling unit is $86115 +in.representative_income 86126 Representative total house income in the dwelling unit is $86126 +in.representative_income 86135 Representative total house income in the dwelling unit is $86135 +in.representative_income 86137 Representative total house income in the dwelling unit is $86137 +in.representative_income 86149 Representative total house income in the dwelling unit is $86149 +in.representative_income 86150 Representative total house income in the dwelling unit is $86150 +in.representative_income 86156 Representative total house income in the dwelling unit is $86156 +in.representative_income 86161 Representative total house income in the dwelling unit is $86161 +in.representative_income 86165 Representative total house income in the dwelling unit is $86165 +in.representative_income 86177 Representative total house income in the dwelling unit is $86177 +in.representative_income 86183 Representative total house income in the dwelling unit is $86183 +in.representative_income 86188 Representative total house income in the dwelling unit is $86188 +in.representative_income 86198 Representative total house income in the dwelling unit is $86198 +in.representative_income 86211 Representative total house income in the dwelling unit is $86211 +in.representative_income 86214 Representative total house income in the dwelling unit is $86214 +in.representative_income 86218 Representative total house income in the dwelling unit is $86218 +in.representative_income 86222 Representative total house income in the dwelling unit is $86222 +in.representative_income 86224 Representative total house income in the dwelling unit is $86224 +in.representative_income 86226 Representative total house income in the dwelling unit is $86226 +in.representative_income 86230 Representative total house income in the dwelling unit is $86230 +in.representative_income 86246 Representative total house income in the dwelling unit is $86246 +in.representative_income 86263 Representative total house income in the dwelling unit is $86263 +in.representative_income 86266 Representative total house income in the dwelling unit is $86266 +in.representative_income 86267 Representative total house income in the dwelling unit is $86267 +in.representative_income 86276 Representative total house income in the dwelling unit is $86276 +in.representative_income 86298 Representative total house income in the dwelling unit is $86298 +in.representative_income 86302 Representative total house income in the dwelling unit is $86302 +in.representative_income 86305 Representative total house income in the dwelling unit is $86305 +in.representative_income 86330 Representative total house income in the dwelling unit is $86330 +in.representative_income 86332 Representative total house income in the dwelling unit is $86332 +in.representative_income 86337 Representative total house income in the dwelling unit is $86337 +in.representative_income 86340 Representative total house income in the dwelling unit is $86340 +in.representative_income 86362 Representative total house income in the dwelling unit is $86362 +in.representative_income 86367 Representative total house income in the dwelling unit is $86367 +in.representative_income 86372 Representative total house income in the dwelling unit is $86372 +in.representative_income 86398 Representative total house income in the dwelling unit is $86398 +in.representative_income 86413 Representative total house income in the dwelling unit is $86413 +in.representative_income 86415 Representative total house income in the dwelling unit is $86415 +in.representative_income 86424 Representative total house income in the dwelling unit is $86424 +in.representative_income 86425 Representative total house income in the dwelling unit is $86425 +in.representative_income 86435 Representative total house income in the dwelling unit is $86435 +in.representative_income 86437 Representative total house income in the dwelling unit is $86437 +in.representative_income 86439 Representative total house income in the dwelling unit is $86439 +in.representative_income 86440 Representative total house income in the dwelling unit is $86440 +in.representative_income 86442 Representative total house income in the dwelling unit is $86442 +in.representative_income 86448 Representative total house income in the dwelling unit is $86448 +in.representative_income 86458 Representative total house income in the dwelling unit is $86458 +in.representative_income 86459 Representative total house income in the dwelling unit is $86459 +in.representative_income 86466 Representative total house income in the dwelling unit is $86466 +in.representative_income 86468 Representative total house income in the dwelling unit is $86468 +in.representative_income 86470 Representative total house income in the dwelling unit is $86470 +in.representative_income 86477 Representative total house income in the dwelling unit is $86477 +in.representative_income 86478 Representative total house income in the dwelling unit is $86478 +in.representative_income 86491 Representative total house income in the dwelling unit is $86491 +in.representative_income 86498 Representative total house income in the dwelling unit is $86498 +in.representative_income 86499 Representative total house income in the dwelling unit is $86499 +in.representative_income 86502 Representative total house income in the dwelling unit is $86502 +in.representative_income 86508 Representative total house income in the dwelling unit is $86508 +in.representative_income 86515 Representative total house income in the dwelling unit is $86515 +in.representative_income 86519 Representative total house income in the dwelling unit is $86519 +in.representative_income 86520 Representative total house income in the dwelling unit is $86520 +in.representative_income 86527 Representative total house income in the dwelling unit is $86527 +in.representative_income 86530 Representative total house income in the dwelling unit is $86530 +in.representative_income 86539 Representative total house income in the dwelling unit is $86539 +in.representative_income 86542 Representative total house income in the dwelling unit is $86542 +in.representative_income 86545 Representative total house income in the dwelling unit is $86545 +in.representative_income 86548 Representative total house income in the dwelling unit is $86548 +in.representative_income 86552 Representative total house income in the dwelling unit is $86552 +in.representative_income 86553 Representative total house income in the dwelling unit is $86553 +in.representative_income 86559 Representative total house income in the dwelling unit is $86559 +in.representative_income 86562 Representative total house income in the dwelling unit is $86562 +in.representative_income 86563 Representative total house income in the dwelling unit is $86563 +in.representative_income 86567 Representative total house income in the dwelling unit is $86567 +in.representative_income 86569 Representative total house income in the dwelling unit is $86569 +in.representative_income 86580 Representative total house income in the dwelling unit is $86580 +in.representative_income 86583 Representative total house income in the dwelling unit is $86583 +in.representative_income 86590 Representative total house income in the dwelling unit is $86590 +in.representative_income 86599 Representative total house income in the dwelling unit is $86599 +in.representative_income 86600 Representative total house income in the dwelling unit is $86600 +in.representative_income 86604 Representative total house income in the dwelling unit is $86604 +in.representative_income 86614 Representative total house income in the dwelling unit is $86614 +in.representative_income 86620 Representative total house income in the dwelling unit is $86620 +in.representative_income 86627 Representative total house income in the dwelling unit is $86627 +in.representative_income 86636 Representative total house income in the dwelling unit is $86636 +in.representative_income 86638 Representative total house income in the dwelling unit is $86638 +in.representative_income 86642 Representative total house income in the dwelling unit is $86642 +in.representative_income 86647 Representative total house income in the dwelling unit is $86647 +in.representative_income 86652 Representative total house income in the dwelling unit is $86652 +in.representative_income 86653 Representative total house income in the dwelling unit is $86653 +in.representative_income 86657 Representative total house income in the dwelling unit is $86657 +in.representative_income 86660 Representative total house income in the dwelling unit is $86660 +in.representative_income 86670 Representative total house income in the dwelling unit is $86670 +in.representative_income 86671 Representative total house income in the dwelling unit is $86671 +in.representative_income 86681 Representative total house income in the dwelling unit is $86681 +in.representative_income 86688 Representative total house income in the dwelling unit is $86688 +in.representative_income 86690 Representative total house income in the dwelling unit is $86690 +in.representative_income 86692 Representative total house income in the dwelling unit is $86692 +in.representative_income 86694 Representative total house income in the dwelling unit is $86694 +in.representative_income 86696 Representative total house income in the dwelling unit is $86696 +in.representative_income 86697 Representative total house income in the dwelling unit is $86697 +in.representative_income 86704 Representative total house income in the dwelling unit is $86704 +in.representative_income 86707 Representative total house income in the dwelling unit is $86707 +in.representative_income 86714 Representative total house income in the dwelling unit is $86714 +in.representative_income 86718 Representative total house income in the dwelling unit is $86718 +in.representative_income 86724 Representative total house income in the dwelling unit is $86724 +in.representative_income 86729 Representative total house income in the dwelling unit is $86729 +in.representative_income 86730 Representative total house income in the dwelling unit is $86730 +in.representative_income 86734 Representative total house income in the dwelling unit is $86734 +in.representative_income 86742 Representative total house income in the dwelling unit is $86742 +in.representative_income 86745 Representative total house income in the dwelling unit is $86745 +in.representative_income 86762 Representative total house income in the dwelling unit is $86762 +in.representative_income 86771 Representative total house income in the dwelling unit is $86771 +in.representative_income 86773 Representative total house income in the dwelling unit is $86773 +in.representative_income 86776 Representative total house income in the dwelling unit is $86776 +in.representative_income 86786 Representative total house income in the dwelling unit is $86786 +in.representative_income 86789 Representative total house income in the dwelling unit is $86789 +in.representative_income 86793 Representative total house income in the dwelling unit is $86793 +in.representative_income 86794 Representative total house income in the dwelling unit is $86794 +in.representative_income 86795 Representative total house income in the dwelling unit is $86795 +in.representative_income 86799 Representative total house income in the dwelling unit is $86799 +in.representative_income 86802 Representative total house income in the dwelling unit is $86802 +in.representative_income 86807 Representative total house income in the dwelling unit is $86807 +in.representative_income 86816 Representative total house income in the dwelling unit is $86816 +in.representative_income 86822 Representative total house income in the dwelling unit is $86822 +in.representative_income 86839 Representative total house income in the dwelling unit is $86839 +in.representative_income 86842 Representative total house income in the dwelling unit is $86842 +in.representative_income 86847 Representative total house income in the dwelling unit is $86847 +in.representative_income 86849 Representative total house income in the dwelling unit is $86849 +in.representative_income 86852 Representative total house income in the dwelling unit is $86852 +in.representative_income 86859 Representative total house income in the dwelling unit is $86859 +in.representative_income 86870 Representative total house income in the dwelling unit is $86870 +in.representative_income 86872 Representative total house income in the dwelling unit is $86872 +in.representative_income 86874 Representative total house income in the dwelling unit is $86874 +in.representative_income 86879 Representative total house income in the dwelling unit is $86879 +in.representative_income 86889 Representative total house income in the dwelling unit is $86889 +in.representative_income 86893 Representative total house income in the dwelling unit is $86893 +in.representative_income 86900 Representative total house income in the dwelling unit is $86900 +in.representative_income 86911 Representative total house income in the dwelling unit is $86911 +in.representative_income 86913 Representative total house income in the dwelling unit is $86913 +in.representative_income 86924 Representative total house income in the dwelling unit is $86924 +in.representative_income 86928 Representative total house income in the dwelling unit is $86928 +in.representative_income 86933 Representative total house income in the dwelling unit is $86933 +in.representative_income 86935 Representative total house income in the dwelling unit is $86935 +in.representative_income 86949 Representative total house income in the dwelling unit is $86949 +in.representative_income 86950 Representative total house income in the dwelling unit is $86950 +in.representative_income 86951 Representative total house income in the dwelling unit is $86951 +in.representative_income 86952 Representative total house income in the dwelling unit is $86952 +in.representative_income 86953 Representative total house income in the dwelling unit is $86953 +in.representative_income 86960 Representative total house income in the dwelling unit is $86960 +in.representative_income 86971 Representative total house income in the dwelling unit is $86971 +in.representative_income 86973 Representative total house income in the dwelling unit is $86973 +in.representative_income 86975 Representative total house income in the dwelling unit is $86975 +in.representative_income 86978 Representative total house income in the dwelling unit is $86978 +in.representative_income 86982 Representative total house income in the dwelling unit is $86982 +in.representative_income 86989 Representative total house income in the dwelling unit is $86989 +in.representative_income 86995 Representative total house income in the dwelling unit is $86995 +in.representative_income 87001 Representative total house income in the dwelling unit is $87001 +in.representative_income 87003 Representative total house income in the dwelling unit is $87003 +in.representative_income 87005 Representative total house income in the dwelling unit is $87005 +in.representative_income 87013 Representative total house income in the dwelling unit is $87013 +in.representative_income 87016 Representative total house income in the dwelling unit is $87016 +in.representative_income 87024 Representative total house income in the dwelling unit is $87024 +in.representative_income 87025 Representative total house income in the dwelling unit is $87025 +in.representative_income 87026 Representative total house income in the dwelling unit is $87026 +in.representative_income 87032 Representative total house income in the dwelling unit is $87032 +in.representative_income 87034 Representative total house income in the dwelling unit is $87034 +in.representative_income 87043 Representative total house income in the dwelling unit is $87043 +in.representative_income 87054 Representative total house income in the dwelling unit is $87054 +in.representative_income 87057 Representative total house income in the dwelling unit is $87057 +in.representative_income 87075 Representative total house income in the dwelling unit is $87075 +in.representative_income 87078 Representative total house income in the dwelling unit is $87078 +in.representative_income 87080 Representative total house income in the dwelling unit is $87080 +in.representative_income 87086 Representative total house income in the dwelling unit is $87086 +in.representative_income 87095 Representative total house income in the dwelling unit is $87095 +in.representative_income 87097 Representative total house income in the dwelling unit is $87097 +in.representative_income 87106 Representative total house income in the dwelling unit is $87106 +in.representative_income 87111 Representative total house income in the dwelling unit is $87111 +in.representative_income 87112 Representative total house income in the dwelling unit is $87112 +in.representative_income 87118 Representative total house income in the dwelling unit is $87118 +in.representative_income 87119 Representative total house income in the dwelling unit is $87119 +in.representative_income 87121 Representative total house income in the dwelling unit is $87121 +in.representative_income 87125 Representative total house income in the dwelling unit is $87125 +in.representative_income 87128 Representative total house income in the dwelling unit is $87128 +in.representative_income 87133 Representative total house income in the dwelling unit is $87133 +in.representative_income 87155 Representative total house income in the dwelling unit is $87155 +in.representative_income 87158 Representative total house income in the dwelling unit is $87158 +in.representative_income 87164 Representative total house income in the dwelling unit is $87164 +in.representative_income 87174 Representative total house income in the dwelling unit is $87174 +in.representative_income 87176 Representative total house income in the dwelling unit is $87176 +in.representative_income 87183 Representative total house income in the dwelling unit is $87183 +in.representative_income 87194 Representative total house income in the dwelling unit is $87194 +in.representative_income 87195 Representative total house income in the dwelling unit is $87195 +in.representative_income 87196 Representative total house income in the dwelling unit is $87196 +in.representative_income 87197 Representative total house income in the dwelling unit is $87197 +in.representative_income 87209 Representative total house income in the dwelling unit is $87209 +in.representative_income 87216 Representative total house income in the dwelling unit is $87216 +in.representative_income 87226 Representative total house income in the dwelling unit is $87226 +in.representative_income 87236 Representative total house income in the dwelling unit is $87236 +in.representative_income 87237 Representative total house income in the dwelling unit is $87237 +in.representative_income 87239 Representative total house income in the dwelling unit is $87239 +in.representative_income 87244 Representative total house income in the dwelling unit is $87244 +in.representative_income 87247 Representative total house income in the dwelling unit is $87247 +in.representative_income 87248 Representative total house income in the dwelling unit is $87248 +in.representative_income 87259 Representative total house income in the dwelling unit is $87259 +in.representative_income 87261 Representative total house income in the dwelling unit is $87261 +in.representative_income 87271 Representative total house income in the dwelling unit is $87271 +in.representative_income 87273 Representative total house income in the dwelling unit is $87273 +in.representative_income 87277 Representative total house income in the dwelling unit is $87277 +in.representative_income 87290 Representative total house income in the dwelling unit is $87290 +in.representative_income 87297 Representative total house income in the dwelling unit is $87297 +in.representative_income 87302 Representative total house income in the dwelling unit is $87302 +in.representative_income 87321 Representative total house income in the dwelling unit is $87321 +in.representative_income 87323 Representative total house income in the dwelling unit is $87323 +in.representative_income 87327 Representative total house income in the dwelling unit is $87327 +in.representative_income 87332 Representative total house income in the dwelling unit is $87332 +in.representative_income 87343 Representative total house income in the dwelling unit is $87343 +in.representative_income 87353 Representative total house income in the dwelling unit is $87353 +in.representative_income 87356 Representative total house income in the dwelling unit is $87356 +in.representative_income 87357 Representative total house income in the dwelling unit is $87357 +in.representative_income 87364 Representative total house income in the dwelling unit is $87364 +in.representative_income 87366 Representative total house income in the dwelling unit is $87366 +in.representative_income 87374 Representative total house income in the dwelling unit is $87374 +in.representative_income 87377 Representative total house income in the dwelling unit is $87377 +in.representative_income 87378 Representative total house income in the dwelling unit is $87378 +in.representative_income 87379 Representative total house income in the dwelling unit is $87379 +in.representative_income 87383 Representative total house income in the dwelling unit is $87383 +in.representative_income 87388 Representative total house income in the dwelling unit is $87388 +in.representative_income 87398 Representative total house income in the dwelling unit is $87398 +in.representative_income 87405 Representative total house income in the dwelling unit is $87405 +in.representative_income 87406 Representative total house income in the dwelling unit is $87406 +in.representative_income 87410 Representative total house income in the dwelling unit is $87410 +in.representative_income 87414 Representative total house income in the dwelling unit is $87414 +in.representative_income 87415 Representative total house income in the dwelling unit is $87415 +in.representative_income 87416 Representative total house income in the dwelling unit is $87416 +in.representative_income 87419 Representative total house income in the dwelling unit is $87419 +in.representative_income 87420 Representative total house income in the dwelling unit is $87420 +in.representative_income 87422 Representative total house income in the dwelling unit is $87422 +in.representative_income 87426 Representative total house income in the dwelling unit is $87426 +in.representative_income 87432 Representative total house income in the dwelling unit is $87432 +in.representative_income 87446 Representative total house income in the dwelling unit is $87446 +in.representative_income 87453 Representative total house income in the dwelling unit is $87453 +in.representative_income 87465 Representative total house income in the dwelling unit is $87465 +in.representative_income 87467 Representative total house income in the dwelling unit is $87467 +in.representative_income 87475 Representative total house income in the dwelling unit is $87475 +in.representative_income 87479 Representative total house income in the dwelling unit is $87479 +in.representative_income 87486 Representative total house income in the dwelling unit is $87486 +in.representative_income 87493 Representative total house income in the dwelling unit is $87493 +in.representative_income 87508 Representative total house income in the dwelling unit is $87508 +in.representative_income 87518 Representative total house income in the dwelling unit is $87518 +in.representative_income 87523 Representative total house income in the dwelling unit is $87523 +in.representative_income 87526 Representative total house income in the dwelling unit is $87526 +in.representative_income 87529 Representative total house income in the dwelling unit is $87529 +in.representative_income 87533 Representative total house income in the dwelling unit is $87533 +in.representative_income 87537 Representative total house income in the dwelling unit is $87537 +in.representative_income 87540 Representative total house income in the dwelling unit is $87540 +in.representative_income 87543 Representative total house income in the dwelling unit is $87543 +in.representative_income 87551 Representative total house income in the dwelling unit is $87551 +in.representative_income 87554 Representative total house income in the dwelling unit is $87554 +in.representative_income 87557 Representative total house income in the dwelling unit is $87557 +in.representative_income 87570 Representative total house income in the dwelling unit is $87570 +in.representative_income 87571 Representative total house income in the dwelling unit is $87571 +in.representative_income 87573 Representative total house income in the dwelling unit is $87573 +in.representative_income 87580 Representative total house income in the dwelling unit is $87580 +in.representative_income 87583 Representative total house income in the dwelling unit is $87583 +in.representative_income 87585 Representative total house income in the dwelling unit is $87585 +in.representative_income 87591 Representative total house income in the dwelling unit is $87591 +in.representative_income 87594 Representative total house income in the dwelling unit is $87594 +in.representative_income 87595 Representative total house income in the dwelling unit is $87595 +in.representative_income 87610 Representative total house income in the dwelling unit is $87610 +in.representative_income 87616 Representative total house income in the dwelling unit is $87616 +in.representative_income 87626 Representative total house income in the dwelling unit is $87626 +in.representative_income 87630 Representative total house income in the dwelling unit is $87630 +in.representative_income 87634 Representative total house income in the dwelling unit is $87634 +in.representative_income 87636 Representative total house income in the dwelling unit is $87636 +in.representative_income 87637 Representative total house income in the dwelling unit is $87637 +in.representative_income 87638 Representative total house income in the dwelling unit is $87638 +in.representative_income 87640 Representative total house income in the dwelling unit is $87640 +in.representative_income 87641 Representative total house income in the dwelling unit is $87641 +in.representative_income 87648 Representative total house income in the dwelling unit is $87648 +in.representative_income 87650 Representative total house income in the dwelling unit is $87650 +in.representative_income 87659 Representative total house income in the dwelling unit is $87659 +in.representative_income 87661 Representative total house income in the dwelling unit is $87661 +in.representative_income 87673 Representative total house income in the dwelling unit is $87673 +in.representative_income 87680 Representative total house income in the dwelling unit is $87680 +in.representative_income 87681 Representative total house income in the dwelling unit is $87681 +in.representative_income 87684 Representative total house income in the dwelling unit is $87684 +in.representative_income 87690 Representative total house income in the dwelling unit is $87690 +in.representative_income 87694 Representative total house income in the dwelling unit is $87694 +in.representative_income 87700 Representative total house income in the dwelling unit is $87700 +in.representative_income 87705 Representative total house income in the dwelling unit is $87705 +in.representative_income 87707 Representative total house income in the dwelling unit is $87707 +in.representative_income 87715 Representative total house income in the dwelling unit is $87715 +in.representative_income 87721 Representative total house income in the dwelling unit is $87721 +in.representative_income 87725 Representative total house income in the dwelling unit is $87725 +in.representative_income 87728 Representative total house income in the dwelling unit is $87728 +in.representative_income 87734 Representative total house income in the dwelling unit is $87734 +in.representative_income 87739 Representative total house income in the dwelling unit is $87739 +in.representative_income 87741 Representative total house income in the dwelling unit is $87741 +in.representative_income 87743 Representative total house income in the dwelling unit is $87743 +in.representative_income 87755 Representative total house income in the dwelling unit is $87755 +in.representative_income 87767 Representative total house income in the dwelling unit is $87767 +in.representative_income 87777 Representative total house income in the dwelling unit is $87777 +in.representative_income 87778 Representative total house income in the dwelling unit is $87778 +in.representative_income 87782 Representative total house income in the dwelling unit is $87782 +in.representative_income 87787 Representative total house income in the dwelling unit is $87787 +in.representative_income 87795 Representative total house income in the dwelling unit is $87795 +in.representative_income 87802 Representative total house income in the dwelling unit is $87802 +in.representative_income 87806 Representative total house income in the dwelling unit is $87806 +in.representative_income 87807 Representative total house income in the dwelling unit is $87807 +in.representative_income 87808 Representative total house income in the dwelling unit is $87808 +in.representative_income 87828 Representative total house income in the dwelling unit is $87828 +in.representative_income 87829 Representative total house income in the dwelling unit is $87829 +in.representative_income 87839 Representative total house income in the dwelling unit is $87839 +in.representative_income 87842 Representative total house income in the dwelling unit is $87842 +in.representative_income 87848 Representative total house income in the dwelling unit is $87848 +in.representative_income 87849 Representative total house income in the dwelling unit is $87849 +in.representative_income 87852 Representative total house income in the dwelling unit is $87852 +in.representative_income 87859 Representative total house income in the dwelling unit is $87859 +in.representative_income 87864 Representative total house income in the dwelling unit is $87864 +in.representative_income 87869 Representative total house income in the dwelling unit is $87869 +in.representative_income 87879 Representative total house income in the dwelling unit is $87879 +in.representative_income 87880 Representative total house income in the dwelling unit is $87880 +in.representative_income 87883 Representative total house income in the dwelling unit is $87883 +in.representative_income 87887 Representative total house income in the dwelling unit is $87887 +in.representative_income 87889 Representative total house income in the dwelling unit is $87889 +in.representative_income 87890 Representative total house income in the dwelling unit is $87890 +in.representative_income 87893 Representative total house income in the dwelling unit is $87893 +in.representative_income 87900 Representative total house income in the dwelling unit is $87900 +in.representative_income 87902 Representative total house income in the dwelling unit is $87902 +in.representative_income 87903 Representative total house income in the dwelling unit is $87903 +in.representative_income 87907 Representative total house income in the dwelling unit is $87907 +in.representative_income 87910 Representative total house income in the dwelling unit is $87910 +in.representative_income 87912 Representative total house income in the dwelling unit is $87912 +in.representative_income 87915 Representative total house income in the dwelling unit is $87915 +in.representative_income 87919 Representative total house income in the dwelling unit is $87919 +in.representative_income 87930 Representative total house income in the dwelling unit is $87930 +in.representative_income 87932 Representative total house income in the dwelling unit is $87932 +in.representative_income 87937 Representative total house income in the dwelling unit is $87937 +in.representative_income 87945 Representative total house income in the dwelling unit is $87945 +in.representative_income 87947 Representative total house income in the dwelling unit is $87947 +in.representative_income 87950 Representative total house income in the dwelling unit is $87950 +in.representative_income 87954 Representative total house income in the dwelling unit is $87954 +in.representative_income 87963 Representative total house income in the dwelling unit is $87963 +in.representative_income 87972 Representative total house income in the dwelling unit is $87972 +in.representative_income 87982 Representative total house income in the dwelling unit is $87982 +in.representative_income 87984 Representative total house income in the dwelling unit is $87984 +in.representative_income 87986 Representative total house income in the dwelling unit is $87986 +in.representative_income 87997 Representative total house income in the dwelling unit is $87997 +in.representative_income 88003 Representative total house income in the dwelling unit is $88003 +in.representative_income 88004 Representative total house income in the dwelling unit is $88004 +in.representative_income 88007 Representative total house income in the dwelling unit is $88007 +in.representative_income 88023 Representative total house income in the dwelling unit is $88023 +in.representative_income 88024 Representative total house income in the dwelling unit is $88024 +in.representative_income 88027 Representative total house income in the dwelling unit is $88027 +in.representative_income 88034 Representative total house income in the dwelling unit is $88034 +in.representative_income 88038 Representative total house income in the dwelling unit is $88038 +in.representative_income 88040 Representative total house income in the dwelling unit is $88040 +in.representative_income 88044 Representative total house income in the dwelling unit is $88044 +in.representative_income 88045 Representative total house income in the dwelling unit is $88045 +in.representative_income 88055 Representative total house income in the dwelling unit is $88055 +in.representative_income 88058 Representative total house income in the dwelling unit is $88058 +in.representative_income 88059 Representative total house income in the dwelling unit is $88059 +in.representative_income 88066 Representative total house income in the dwelling unit is $88066 +in.representative_income 88069 Representative total house income in the dwelling unit is $88069 +in.representative_income 88076 Representative total house income in the dwelling unit is $88076 +in.representative_income 88085 Representative total house income in the dwelling unit is $88085 +in.representative_income 88086 Representative total house income in the dwelling unit is $88086 +in.representative_income 88087 Representative total house income in the dwelling unit is $88087 +in.representative_income 88095 Representative total house income in the dwelling unit is $88095 +in.representative_income 88096 Representative total house income in the dwelling unit is $88096 +in.representative_income 88102 Representative total house income in the dwelling unit is $88102 +in.representative_income 88127 Representative total house income in the dwelling unit is $88127 +in.representative_income 88130 Representative total house income in the dwelling unit is $88130 +in.representative_income 88135 Representative total house income in the dwelling unit is $88135 +in.representative_income 88136 Representative total house income in the dwelling unit is $88136 +in.representative_income 88137 Representative total house income in the dwelling unit is $88137 +in.representative_income 88152 Representative total house income in the dwelling unit is $88152 +in.representative_income 88155 Representative total house income in the dwelling unit is $88155 +in.representative_income 88159 Representative total house income in the dwelling unit is $88159 +in.representative_income 88165 Representative total house income in the dwelling unit is $88165 +in.representative_income 88166 Representative total house income in the dwelling unit is $88166 +in.representative_income 88173 Representative total house income in the dwelling unit is $88173 +in.representative_income 88177 Representative total house income in the dwelling unit is $88177 +in.representative_income 88184 Representative total house income in the dwelling unit is $88184 +in.representative_income 88186 Representative total house income in the dwelling unit is $88186 +in.representative_income 88189 Representative total house income in the dwelling unit is $88189 +in.representative_income 88190 Representative total house income in the dwelling unit is $88190 +in.representative_income 88206 Representative total house income in the dwelling unit is $88206 +in.representative_income 88216 Representative total house income in the dwelling unit is $88216 +in.representative_income 88220 Representative total house income in the dwelling unit is $88220 +in.representative_income 88222 Representative total house income in the dwelling unit is $88222 +in.representative_income 88226 Representative total house income in the dwelling unit is $88226 +in.representative_income 88231 Representative total house income in the dwelling unit is $88231 +in.representative_income 88238 Representative total house income in the dwelling unit is $88238 +in.representative_income 88254 Representative total house income in the dwelling unit is $88254 +in.representative_income 88271 Representative total house income in the dwelling unit is $88271 +in.representative_income 88274 Representative total house income in the dwelling unit is $88274 +in.representative_income 88281 Representative total house income in the dwelling unit is $88281 +in.representative_income 88282 Representative total house income in the dwelling unit is $88282 +in.representative_income 88285 Representative total house income in the dwelling unit is $88285 +in.representative_income 88287 Representative total house income in the dwelling unit is $88287 +in.representative_income 88291 Representative total house income in the dwelling unit is $88291 +in.representative_income 88292 Representative total house income in the dwelling unit is $88292 +in.representative_income 88296 Representative total house income in the dwelling unit is $88296 +in.representative_income 88303 Representative total house income in the dwelling unit is $88303 +in.representative_income 88306 Representative total house income in the dwelling unit is $88306 +in.representative_income 88307 Representative total house income in the dwelling unit is $88307 +in.representative_income 88308 Representative total house income in the dwelling unit is $88308 +in.representative_income 88311 Representative total house income in the dwelling unit is $88311 +in.representative_income 88313 Representative total house income in the dwelling unit is $88313 +in.representative_income 88323 Representative total house income in the dwelling unit is $88323 +in.representative_income 88329 Representative total house income in the dwelling unit is $88329 +in.representative_income 88345 Representative total house income in the dwelling unit is $88345 +in.representative_income 88347 Representative total house income in the dwelling unit is $88347 +in.representative_income 88354 Representative total house income in the dwelling unit is $88354 +in.representative_income 88355 Representative total house income in the dwelling unit is $88355 +in.representative_income 88364 Representative total house income in the dwelling unit is $88364 +in.representative_income 88376 Representative total house income in the dwelling unit is $88376 +in.representative_income 88382 Representative total house income in the dwelling unit is $88382 +in.representative_income 88383 Representative total house income in the dwelling unit is $88383 +in.representative_income 88385 Representative total house income in the dwelling unit is $88385 +in.representative_income 88386 Representative total house income in the dwelling unit is $88386 +in.representative_income 88388 Representative total house income in the dwelling unit is $88388 +in.representative_income 88396 Representative total house income in the dwelling unit is $88396 +in.representative_income 88398 Representative total house income in the dwelling unit is $88398 +in.representative_income 88404 Representative total house income in the dwelling unit is $88404 +in.representative_income 88407 Representative total house income in the dwelling unit is $88407 +in.representative_income 88409 Representative total house income in the dwelling unit is $88409 +in.representative_income 88415 Representative total house income in the dwelling unit is $88415 +in.representative_income 88418 Representative total house income in the dwelling unit is $88418 +in.representative_income 88429 Representative total house income in the dwelling unit is $88429 +in.representative_income 88436 Representative total house income in the dwelling unit is $88436 +in.representative_income 88437 Representative total house income in the dwelling unit is $88437 +in.representative_income 88440 Representative total house income in the dwelling unit is $88440 +in.representative_income 88447 Representative total house income in the dwelling unit is $88447 +in.representative_income 88452 Representative total house income in the dwelling unit is $88452 +in.representative_income 88456 Representative total house income in the dwelling unit is $88456 +in.representative_income 88458 Representative total house income in the dwelling unit is $88458 +in.representative_income 88463 Representative total house income in the dwelling unit is $88463 +in.representative_income 88464 Representative total house income in the dwelling unit is $88464 +in.representative_income 88469 Representative total house income in the dwelling unit is $88469 +in.representative_income 88473 Representative total house income in the dwelling unit is $88473 +in.representative_income 88481 Representative total house income in the dwelling unit is $88481 +in.representative_income 88489 Representative total house income in the dwelling unit is $88489 +in.representative_income 88491 Representative total house income in the dwelling unit is $88491 +in.representative_income 88495 Representative total house income in the dwelling unit is $88495 +in.representative_income 88499 Representative total house income in the dwelling unit is $88499 +in.representative_income 88506 Representative total house income in the dwelling unit is $88506 +in.representative_income 88514 Representative total house income in the dwelling unit is $88514 +in.representative_income 88517 Representative total house income in the dwelling unit is $88517 +in.representative_income 88519 Representative total house income in the dwelling unit is $88519 +in.representative_income 88524 Representative total house income in the dwelling unit is $88524 +in.representative_income 88529 Representative total house income in the dwelling unit is $88529 +in.representative_income 88533 Representative total house income in the dwelling unit is $88533 +in.representative_income 88535 Representative total house income in the dwelling unit is $88535 +in.representative_income 88540 Representative total house income in the dwelling unit is $88540 +in.representative_income 88545 Representative total house income in the dwelling unit is $88545 +in.representative_income 88549 Representative total house income in the dwelling unit is $88549 +in.representative_income 88559 Representative total house income in the dwelling unit is $88559 +in.representative_income 88560 Representative total house income in the dwelling unit is $88560 +in.representative_income 88564 Representative total house income in the dwelling unit is $88564 +in.representative_income 88566 Representative total house income in the dwelling unit is $88566 +in.representative_income 88587 Representative total house income in the dwelling unit is $88587 +in.representative_income 88588 Representative total house income in the dwelling unit is $88588 +in.representative_income 88590 Representative total house income in the dwelling unit is $88590 +in.representative_income 88593 Representative total house income in the dwelling unit is $88593 +in.representative_income 88597 Representative total house income in the dwelling unit is $88597 +in.representative_income 88599 Representative total house income in the dwelling unit is $88599 +in.representative_income 88601 Representative total house income in the dwelling unit is $88601 +in.representative_income 88602 Representative total house income in the dwelling unit is $88602 +in.representative_income 88608 Representative total house income in the dwelling unit is $88608 +in.representative_income 88609 Representative total house income in the dwelling unit is $88609 +in.representative_income 88613 Representative total house income in the dwelling unit is $88613 +in.representative_income 88618 Representative total house income in the dwelling unit is $88618 +in.representative_income 88619 Representative total house income in the dwelling unit is $88619 +in.representative_income 88620 Representative total house income in the dwelling unit is $88620 +in.representative_income 88623 Representative total house income in the dwelling unit is $88623 +in.representative_income 88629 Representative total house income in the dwelling unit is $88629 +in.representative_income 88631 Representative total house income in the dwelling unit is $88631 +in.representative_income 88635 Representative total house income in the dwelling unit is $88635 +in.representative_income 88640 Representative total house income in the dwelling unit is $88640 +in.representative_income 88646 Representative total house income in the dwelling unit is $88646 +in.representative_income 88650 Representative total house income in the dwelling unit is $88650 +in.representative_income 88653 Representative total house income in the dwelling unit is $88653 +in.representative_income 88656 Representative total house income in the dwelling unit is $88656 +in.representative_income 88660 Representative total house income in the dwelling unit is $88660 +in.representative_income 88667 Representative total house income in the dwelling unit is $88667 +in.representative_income 88685 Representative total house income in the dwelling unit is $88685 +in.representative_income 88691 Representative total house income in the dwelling unit is $88691 +in.representative_income 88692 Representative total house income in the dwelling unit is $88692 +in.representative_income 88705 Representative total house income in the dwelling unit is $88705 +in.representative_income 88707 Representative total house income in the dwelling unit is $88707 +in.representative_income 88717 Representative total house income in the dwelling unit is $88717 +in.representative_income 88728 Representative total house income in the dwelling unit is $88728 +in.representative_income 88741 Representative total house income in the dwelling unit is $88741 +in.representative_income 88746 Representative total house income in the dwelling unit is $88746 +in.representative_income 88752 Representative total house income in the dwelling unit is $88752 +in.representative_income 88756 Representative total house income in the dwelling unit is $88756 +in.representative_income 88761 Representative total house income in the dwelling unit is $88761 +in.representative_income 88771 Representative total house income in the dwelling unit is $88771 +in.representative_income 88775 Representative total house income in the dwelling unit is $88775 +in.representative_income 88776 Representative total house income in the dwelling unit is $88776 +in.representative_income 88782 Representative total house income in the dwelling unit is $88782 +in.representative_income 88792 Representative total house income in the dwelling unit is $88792 +in.representative_income 88798 Representative total house income in the dwelling unit is $88798 +in.representative_income 88808 Representative total house income in the dwelling unit is $88808 +in.representative_income 88812 Representative total house income in the dwelling unit is $88812 +in.representative_income 88814 Representative total house income in the dwelling unit is $88814 +in.representative_income 88819 Representative total house income in the dwelling unit is $88819 +in.representative_income 88828 Representative total house income in the dwelling unit is $88828 +in.representative_income 88832 Representative total house income in the dwelling unit is $88832 +in.representative_income 88840 Representative total house income in the dwelling unit is $88840 +in.representative_income 88843 Representative total house income in the dwelling unit is $88843 +in.representative_income 88848 Representative total house income in the dwelling unit is $88848 +in.representative_income 88851 Representative total house income in the dwelling unit is $88851 +in.representative_income 88858 Representative total house income in the dwelling unit is $88858 +in.representative_income 88860 Representative total house income in the dwelling unit is $88860 +in.representative_income 88862 Representative total house income in the dwelling unit is $88862 +in.representative_income 88863 Representative total house income in the dwelling unit is $88863 +in.representative_income 88868 Representative total house income in the dwelling unit is $88868 +in.representative_income 88869 Representative total house income in the dwelling unit is $88869 +in.representative_income 88881 Representative total house income in the dwelling unit is $88881 +in.representative_income 88883 Representative total house income in the dwelling unit is $88883 +in.representative_income 88890 Representative total house income in the dwelling unit is $88890 +in.representative_income 88892 Representative total house income in the dwelling unit is $88892 +in.representative_income 88893 Representative total house income in the dwelling unit is $88893 +in.representative_income 88898 Representative total house income in the dwelling unit is $88898 +in.representative_income 88904 Representative total house income in the dwelling unit is $88904 +in.representative_income 88908 Representative total house income in the dwelling unit is $88908 +in.representative_income 88911 Representative total house income in the dwelling unit is $88911 +in.representative_income 88922 Representative total house income in the dwelling unit is $88922 +in.representative_income 88932 Representative total house income in the dwelling unit is $88932 +in.representative_income 88944 Representative total house income in the dwelling unit is $88944 +in.representative_income 88956 Representative total house income in the dwelling unit is $88956 +in.representative_income 88959 Representative total house income in the dwelling unit is $88959 +in.representative_income 88967 Representative total house income in the dwelling unit is $88967 +in.representative_income 88974 Representative total house income in the dwelling unit is $88974 +in.representative_income 88976 Representative total house income in the dwelling unit is $88976 +in.representative_income 88989 Representative total house income in the dwelling unit is $88989 +in.representative_income 88994 Representative total house income in the dwelling unit is $88994 +in.representative_income 88998 Representative total house income in the dwelling unit is $88998 +in.representative_income 89005 Representative total house income in the dwelling unit is $89005 +in.representative_income 89008 Representative total house income in the dwelling unit is $89008 +in.representative_income 89009 Representative total house income in the dwelling unit is $89009 +in.representative_income 89015 Representative total house income in the dwelling unit is $89015 +in.representative_income 89020 Representative total house income in the dwelling unit is $89020 +in.representative_income 89024 Representative total house income in the dwelling unit is $89024 +in.representative_income 89030 Representative total house income in the dwelling unit is $89030 +in.representative_income 89059 Representative total house income in the dwelling unit is $89059 +in.representative_income 89061 Representative total house income in the dwelling unit is $89061 +in.representative_income 89064 Representative total house income in the dwelling unit is $89064 +in.representative_income 89066 Representative total house income in the dwelling unit is $89066 +in.representative_income 89072 Representative total house income in the dwelling unit is $89072 +in.representative_income 89093 Representative total house income in the dwelling unit is $89093 +in.representative_income 89095 Representative total house income in the dwelling unit is $89095 +in.representative_income 89096 Representative total house income in the dwelling unit is $89096 +in.representative_income 89101 Representative total house income in the dwelling unit is $89101 +in.representative_income 89105 Representative total house income in the dwelling unit is $89105 +in.representative_income 89111 Representative total house income in the dwelling unit is $89111 +in.representative_income 89114 Representative total house income in the dwelling unit is $89114 +in.representative_income 89115 Representative total house income in the dwelling unit is $89115 +in.representative_income 89117 Representative total house income in the dwelling unit is $89117 +in.representative_income 89118 Representative total house income in the dwelling unit is $89118 +in.representative_income 89125 Representative total house income in the dwelling unit is $89125 +in.representative_income 89128 Representative total house income in the dwelling unit is $89128 +in.representative_income 89138 Representative total house income in the dwelling unit is $89138 +in.representative_income 89139 Representative total house income in the dwelling unit is $89139 +in.representative_income 89144 Representative total house income in the dwelling unit is $89144 +in.representative_income 89150 Representative total house income in the dwelling unit is $89150 +in.representative_income 89151 Representative total house income in the dwelling unit is $89151 +in.representative_income 89166 Representative total house income in the dwelling unit is $89166 +in.representative_income 89167 Representative total house income in the dwelling unit is $89167 +in.representative_income 89169 Representative total house income in the dwelling unit is $89169 +in.representative_income 89173 Representative total house income in the dwelling unit is $89173 +in.representative_income 89174 Representative total house income in the dwelling unit is $89174 +in.representative_income 89175 Representative total house income in the dwelling unit is $89175 +in.representative_income 89176 Representative total house income in the dwelling unit is $89176 +in.representative_income 89178 Representative total house income in the dwelling unit is $89178 +in.representative_income 89183 Representative total house income in the dwelling unit is $89183 +in.representative_income 89188 Representative total house income in the dwelling unit is $89188 +in.representative_income 89196 Representative total house income in the dwelling unit is $89196 +in.representative_income 89199 Representative total house income in the dwelling unit is $89199 +in.representative_income 89200 Representative total house income in the dwelling unit is $89200 +in.representative_income 89204 Representative total house income in the dwelling unit is $89204 +in.representative_income 89208 Representative total house income in the dwelling unit is $89208 +in.representative_income 89219 Representative total house income in the dwelling unit is $89219 +in.representative_income 89220 Representative total house income in the dwelling unit is $89220 +in.representative_income 89227 Representative total house income in the dwelling unit is $89227 +in.representative_income 89230 Representative total house income in the dwelling unit is $89230 +in.representative_income 89231 Representative total house income in the dwelling unit is $89231 +in.representative_income 89236 Representative total house income in the dwelling unit is $89236 +in.representative_income 89240 Representative total house income in the dwelling unit is $89240 +in.representative_income 89244 Representative total house income in the dwelling unit is $89244 +in.representative_income 89246 Representative total house income in the dwelling unit is $89246 +in.representative_income 89247 Representative total house income in the dwelling unit is $89247 +in.representative_income 89258 Representative total house income in the dwelling unit is $89258 +in.representative_income 89272 Representative total house income in the dwelling unit is $89272 +in.representative_income 89273 Representative total house income in the dwelling unit is $89273 +in.representative_income 89280 Representative total house income in the dwelling unit is $89280 +in.representative_income 89290 Representative total house income in the dwelling unit is $89290 +in.representative_income 89291 Representative total house income in the dwelling unit is $89291 +in.representative_income 89292 Representative total house income in the dwelling unit is $89292 +in.representative_income 89293 Representative total house income in the dwelling unit is $89293 +in.representative_income 89295 Representative total house income in the dwelling unit is $89295 +in.representative_income 89297 Representative total house income in the dwelling unit is $89297 +in.representative_income 89301 Representative total house income in the dwelling unit is $89301 +in.representative_income 89303 Representative total house income in the dwelling unit is $89303 +in.representative_income 89305 Representative total house income in the dwelling unit is $89305 +in.representative_income 89306 Representative total house income in the dwelling unit is $89306 +in.representative_income 89311 Representative total house income in the dwelling unit is $89311 +in.representative_income 89324 Representative total house income in the dwelling unit is $89324 +in.representative_income 89325 Representative total house income in the dwelling unit is $89325 +in.representative_income 89326 Representative total house income in the dwelling unit is $89326 +in.representative_income 89333 Representative total house income in the dwelling unit is $89333 +in.representative_income 89334 Representative total house income in the dwelling unit is $89334 +in.representative_income 89336 Representative total house income in the dwelling unit is $89336 +in.representative_income 89343 Representative total house income in the dwelling unit is $89343 +in.representative_income 89347 Representative total house income in the dwelling unit is $89347 +in.representative_income 89355 Representative total house income in the dwelling unit is $89355 +in.representative_income 89363 Representative total house income in the dwelling unit is $89363 +in.representative_income 89364 Representative total house income in the dwelling unit is $89364 +in.representative_income 89365 Representative total house income in the dwelling unit is $89365 +in.representative_income 89375 Representative total house income in the dwelling unit is $89375 +in.representative_income 89378 Representative total house income in the dwelling unit is $89378 +in.representative_income 89384 Representative total house income in the dwelling unit is $89384 +in.representative_income 89386 Representative total house income in the dwelling unit is $89386 +in.representative_income 89398 Representative total house income in the dwelling unit is $89398 +in.representative_income 89406 Representative total house income in the dwelling unit is $89406 +in.representative_income 89416 Representative total house income in the dwelling unit is $89416 +in.representative_income 89418 Representative total house income in the dwelling unit is $89418 +in.representative_income 89423 Representative total house income in the dwelling unit is $89423 +in.representative_income 89427 Representative total house income in the dwelling unit is $89427 +in.representative_income 89429 Representative total house income in the dwelling unit is $89429 +in.representative_income 89431 Representative total house income in the dwelling unit is $89431 +in.representative_income 89434 Representative total house income in the dwelling unit is $89434 +in.representative_income 89437 Representative total house income in the dwelling unit is $89437 +in.representative_income 89438 Representative total house income in the dwelling unit is $89438 +in.representative_income 89440 Representative total house income in the dwelling unit is $89440 +in.representative_income 89441 Representative total house income in the dwelling unit is $89441 +in.representative_income 89451 Representative total house income in the dwelling unit is $89451 +in.representative_income 89452 Representative total house income in the dwelling unit is $89452 +in.representative_income 89463 Representative total house income in the dwelling unit is $89463 +in.representative_income 89471 Representative total house income in the dwelling unit is $89471 +in.representative_income 89472 Representative total house income in the dwelling unit is $89472 +in.representative_income 89483 Representative total house income in the dwelling unit is $89483 +in.representative_income 89485 Representative total house income in the dwelling unit is $89485 +in.representative_income 89489 Representative total house income in the dwelling unit is $89489 +in.representative_income 89493 Representative total house income in the dwelling unit is $89493 +in.representative_income 89499 Representative total house income in the dwelling unit is $89499 +in.representative_income 89500 Representative total house income in the dwelling unit is $89500 +in.representative_income 89501 Representative total house income in the dwelling unit is $89501 +in.representative_income 89508 Representative total house income in the dwelling unit is $89508 +in.representative_income 89515 Representative total house income in the dwelling unit is $89515 +in.representative_income 89517 Representative total house income in the dwelling unit is $89517 +in.representative_income 89524 Representative total house income in the dwelling unit is $89524 +in.representative_income 89525 Representative total house income in the dwelling unit is $89525 +in.representative_income 89528 Representative total house income in the dwelling unit is $89528 +in.representative_income 89530 Representative total house income in the dwelling unit is $89530 +in.representative_income 89536 Representative total house income in the dwelling unit is $89536 +in.representative_income 89539 Representative total house income in the dwelling unit is $89539 +in.representative_income 89547 Representative total house income in the dwelling unit is $89547 +in.representative_income 89549 Representative total house income in the dwelling unit is $89549 +in.representative_income 89550 Representative total house income in the dwelling unit is $89550 +in.representative_income 89552 Representative total house income in the dwelling unit is $89552 +in.representative_income 89567 Representative total house income in the dwelling unit is $89567 +in.representative_income 89570 Representative total house income in the dwelling unit is $89570 +in.representative_income 89571 Representative total house income in the dwelling unit is $89571 +in.representative_income 89580 Representative total house income in the dwelling unit is $89580 +in.representative_income 89582 Representative total house income in the dwelling unit is $89582 +in.representative_income 89590 Representative total house income in the dwelling unit is $89590 +in.representative_income 89592 Representative total house income in the dwelling unit is $89592 +in.representative_income 89600 Representative total house income in the dwelling unit is $89600 +in.representative_income 89603 Representative total house income in the dwelling unit is $89603 +in.representative_income 89620 Representative total house income in the dwelling unit is $89620 +in.representative_income 89621 Representative total house income in the dwelling unit is $89621 +in.representative_income 89630 Representative total house income in the dwelling unit is $89630 +in.representative_income 89633 Representative total house income in the dwelling unit is $89633 +in.representative_income 89637 Representative total house income in the dwelling unit is $89637 +in.representative_income 89642 Representative total house income in the dwelling unit is $89642 +in.representative_income 89657 Representative total house income in the dwelling unit is $89657 +in.representative_income 89660 Representative total house income in the dwelling unit is $89660 +in.representative_income 89661 Representative total house income in the dwelling unit is $89661 +in.representative_income 89662 Representative total house income in the dwelling unit is $89662 +in.representative_income 89665 Representative total house income in the dwelling unit is $89665 +in.representative_income 89673 Representative total house income in the dwelling unit is $89673 +in.representative_income 89679 Representative total house income in the dwelling unit is $89679 +in.representative_income 89680 Representative total house income in the dwelling unit is $89680 +in.representative_income 89683 Representative total house income in the dwelling unit is $89683 +in.representative_income 89689 Representative total house income in the dwelling unit is $89689 +in.representative_income 89690 Representative total house income in the dwelling unit is $89690 +in.representative_income 89694 Representative total house income in the dwelling unit is $89694 +in.representative_income 89700 Representative total house income in the dwelling unit is $89700 +in.representative_income 89701 Representative total house income in the dwelling unit is $89701 +in.representative_income 89705 Representative total house income in the dwelling unit is $89705 +in.representative_income 89708 Representative total house income in the dwelling unit is $89708 +in.representative_income 89709 Representative total house income in the dwelling unit is $89709 +in.representative_income 89710 Representative total house income in the dwelling unit is $89710 +in.representative_income 89711 Representative total house income in the dwelling unit is $89711 +in.representative_income 89714 Representative total house income in the dwelling unit is $89714 +in.representative_income 89716 Representative total house income in the dwelling unit is $89716 +in.representative_income 89722 Representative total house income in the dwelling unit is $89722 +in.representative_income 89731 Representative total house income in the dwelling unit is $89731 +in.representative_income 89733 Representative total house income in the dwelling unit is $89733 +in.representative_income 89736 Representative total house income in the dwelling unit is $89736 +in.representative_income 89738 Representative total house income in the dwelling unit is $89738 +in.representative_income 89741 Representative total house income in the dwelling unit is $89741 +in.representative_income 89742 Representative total house income in the dwelling unit is $89742 +in.representative_income 89746 Representative total house income in the dwelling unit is $89746 +in.representative_income 89747 Representative total house income in the dwelling unit is $89747 +in.representative_income 89751 Representative total house income in the dwelling unit is $89751 +in.representative_income 89757 Representative total house income in the dwelling unit is $89757 +in.representative_income 89759 Representative total house income in the dwelling unit is $89759 +in.representative_income 89762 Representative total house income in the dwelling unit is $89762 +in.representative_income 89768 Representative total house income in the dwelling unit is $89768 +in.representative_income 89778 Representative total house income in the dwelling unit is $89778 +in.representative_income 89783 Representative total house income in the dwelling unit is $89783 +in.representative_income 89787 Representative total house income in the dwelling unit is $89787 +in.representative_income 89788 Representative total house income in the dwelling unit is $89788 +in.representative_income 89792 Representative total house income in the dwelling unit is $89792 +in.representative_income 89798 Representative total house income in the dwelling unit is $89798 +in.representative_income 89802 Representative total house income in the dwelling unit is $89802 +in.representative_income 89804 Representative total house income in the dwelling unit is $89804 +in.representative_income 89808 Representative total house income in the dwelling unit is $89808 +in.representative_income 89810 Representative total house income in the dwelling unit is $89810 +in.representative_income 89823 Representative total house income in the dwelling unit is $89823 +in.representative_income 89826 Representative total house income in the dwelling unit is $89826 +in.representative_income 89829 Representative total house income in the dwelling unit is $89829 +in.representative_income 89830 Representative total house income in the dwelling unit is $89830 +in.representative_income 89832 Representative total house income in the dwelling unit is $89832 +in.representative_income 89839 Representative total house income in the dwelling unit is $89839 +in.representative_income 89842 Representative total house income in the dwelling unit is $89842 +in.representative_income 89848 Representative total house income in the dwelling unit is $89848 +in.representative_income 89851 Representative total house income in the dwelling unit is $89851 +in.representative_income 89852 Representative total house income in the dwelling unit is $89852 +in.representative_income 89862 Representative total house income in the dwelling unit is $89862 +in.representative_income 89873 Representative total house income in the dwelling unit is $89873 +in.representative_income 89881 Representative total house income in the dwelling unit is $89881 +in.representative_income 89891 Representative total house income in the dwelling unit is $89891 +in.representative_income 89893 Representative total house income in the dwelling unit is $89893 +in.representative_income 89895 Representative total house income in the dwelling unit is $89895 +in.representative_income 89899 Representative total house income in the dwelling unit is $89899 +in.representative_income 89903 Representative total house income in the dwelling unit is $89903 +in.representative_income 89905 Representative total house income in the dwelling unit is $89905 +in.representative_income 89906 Representative total house income in the dwelling unit is $89906 +in.representative_income 89912 Representative total house income in the dwelling unit is $89912 +in.representative_income 89913 Representative total house income in the dwelling unit is $89913 +in.representative_income 89917 Representative total house income in the dwelling unit is $89917 +in.representative_income 89921 Representative total house income in the dwelling unit is $89921 +in.representative_income 89923 Representative total house income in the dwelling unit is $89923 +in.representative_income 89928 Representative total house income in the dwelling unit is $89928 +in.representative_income 89930 Representative total house income in the dwelling unit is $89930 +in.representative_income 89933 Representative total house income in the dwelling unit is $89933 +in.representative_income 89939 Representative total house income in the dwelling unit is $89939 +in.representative_income 89943 Representative total house income in the dwelling unit is $89943 +in.representative_income 89950 Representative total house income in the dwelling unit is $89950 +in.representative_income 89953 Representative total house income in the dwelling unit is $89953 +in.representative_income 89955 Representative total house income in the dwelling unit is $89955 +in.representative_income 89957 Representative total house income in the dwelling unit is $89957 +in.representative_income 89960 Representative total house income in the dwelling unit is $89960 +in.representative_income 89963 Representative total house income in the dwelling unit is $89963 +in.representative_income 89973 Representative total house income in the dwelling unit is $89973 +in.representative_income 89974 Representative total house income in the dwelling unit is $89974 +in.representative_income 89979 Representative total house income in the dwelling unit is $89979 +in.representative_income 89982 Representative total house income in the dwelling unit is $89982 +in.representative_income 89984 Representative total house income in the dwelling unit is $89984 +in.representative_income 89988 Representative total house income in the dwelling unit is $89988 +in.representative_income 89994 Representative total house income in the dwelling unit is $89994 +in.representative_income 90000 Representative total house income in the dwelling unit is $90000 +in.representative_income 90004 Representative total house income in the dwelling unit is $90004 +in.representative_income 90005 Representative total house income in the dwelling unit is $90005 +in.representative_income 90009 Representative total house income in the dwelling unit is $90009 +in.representative_income 90011 Representative total house income in the dwelling unit is $90011 +in.representative_income 90014 Representative total house income in the dwelling unit is $90014 +in.representative_income 90017 Representative total house income in the dwelling unit is $90017 +in.representative_income 90020 Representative total house income in the dwelling unit is $90020 +in.representative_income 90024 Representative total house income in the dwelling unit is $90024 +in.representative_income 90025 Representative total house income in the dwelling unit is $90025 +in.representative_income 90046 Representative total house income in the dwelling unit is $90046 +in.representative_income 90054 Representative total house income in the dwelling unit is $90054 +in.representative_income 90062 Representative total house income in the dwelling unit is $90062 +in.representative_income 90064 Representative total house income in the dwelling unit is $90064 +in.representative_income 90069 Representative total house income in the dwelling unit is $90069 +in.representative_income 90079 Representative total house income in the dwelling unit is $90079 +in.representative_income 90085 Representative total house income in the dwelling unit is $90085 +in.representative_income 90087 Representative total house income in the dwelling unit is $90087 +in.representative_income 90088 Representative total house income in the dwelling unit is $90088 +in.representative_income 90090 Representative total house income in the dwelling unit is $90090 +in.representative_income 90095 Representative total house income in the dwelling unit is $90095 +in.representative_income 90098 Representative total house income in the dwelling unit is $90098 +in.representative_income 90105 Representative total house income in the dwelling unit is $90105 +in.representative_income 90107 Representative total house income in the dwelling unit is $90107 +in.representative_income 90111 Representative total house income in the dwelling unit is $90111 +in.representative_income 90112 Representative total house income in the dwelling unit is $90112 +in.representative_income 90116 Representative total house income in the dwelling unit is $90116 +in.representative_income 90122 Representative total house income in the dwelling unit is $90122 +in.representative_income 90125 Representative total house income in the dwelling unit is $90125 +in.representative_income 90128 Representative total house income in the dwelling unit is $90128 +in.representative_income 90137 Representative total house income in the dwelling unit is $90137 +in.representative_income 90140 Representative total house income in the dwelling unit is $90140 +in.representative_income 90144 Representative total house income in the dwelling unit is $90144 +in.representative_income 90149 Representative total house income in the dwelling unit is $90149 +in.representative_income 90160 Representative total house income in the dwelling unit is $90160 +in.representative_income 90165 Representative total house income in the dwelling unit is $90165 +in.representative_income 90169 Representative total house income in the dwelling unit is $90169 +in.representative_income 90170 Representative total house income in the dwelling unit is $90170 +in.representative_income 90174 Representative total house income in the dwelling unit is $90174 +in.representative_income 90176 Representative total house income in the dwelling unit is $90176 +in.representative_income 90179 Representative total house income in the dwelling unit is $90179 +in.representative_income 90180 Representative total house income in the dwelling unit is $90180 +in.representative_income 90181 Representative total house income in the dwelling unit is $90181 +in.representative_income 90190 Representative total house income in the dwelling unit is $90190 +in.representative_income 90206 Representative total house income in the dwelling unit is $90206 +in.representative_income 90216 Representative total house income in the dwelling unit is $90216 +in.representative_income 90219 Representative total house income in the dwelling unit is $90219 +in.representative_income 90221 Representative total house income in the dwelling unit is $90221 +in.representative_income 90223 Representative total house income in the dwelling unit is $90223 +in.representative_income 90228 Representative total house income in the dwelling unit is $90228 +in.representative_income 90230 Representative total house income in the dwelling unit is $90230 +in.representative_income 90252 Representative total house income in the dwelling unit is $90252 +in.representative_income 90262 Representative total house income in the dwelling unit is $90262 +in.representative_income 90264 Representative total house income in the dwelling unit is $90264 +in.representative_income 90273 Representative total house income in the dwelling unit is $90273 +in.representative_income 90274 Representative total house income in the dwelling unit is $90274 +in.representative_income 90277 Representative total house income in the dwelling unit is $90277 +in.representative_income 90286 Representative total house income in the dwelling unit is $90286 +in.representative_income 90303 Representative total house income in the dwelling unit is $90303 +in.representative_income 90306 Representative total house income in the dwelling unit is $90306 +in.representative_income 90307 Representative total house income in the dwelling unit is $90307 +in.representative_income 90314 Representative total house income in the dwelling unit is $90314 +in.representative_income 90327 Representative total house income in the dwelling unit is $90327 +in.representative_income 90337 Representative total house income in the dwelling unit is $90337 +in.representative_income 90338 Representative total house income in the dwelling unit is $90338 +in.representative_income 90340 Representative total house income in the dwelling unit is $90340 +in.representative_income 90348 Representative total house income in the dwelling unit is $90348 +in.representative_income 90349 Representative total house income in the dwelling unit is $90349 +in.representative_income 90351 Representative total house income in the dwelling unit is $90351 +in.representative_income 90352 Representative total house income in the dwelling unit is $90352 +in.representative_income 90353 Representative total house income in the dwelling unit is $90353 +in.representative_income 90355 Representative total house income in the dwelling unit is $90355 +in.representative_income 90357 Representative total house income in the dwelling unit is $90357 +in.representative_income 90360 Representative total house income in the dwelling unit is $90360 +in.representative_income 90378 Representative total house income in the dwelling unit is $90378 +in.representative_income 90380 Representative total house income in the dwelling unit is $90380 +in.representative_income 90381 Representative total house income in the dwelling unit is $90381 +in.representative_income 90382 Representative total house income in the dwelling unit is $90382 +in.representative_income 90385 Representative total house income in the dwelling unit is $90385 +in.representative_income 90386 Representative total house income in the dwelling unit is $90386 +in.representative_income 90392 Representative total house income in the dwelling unit is $90392 +in.representative_income 90395 Representative total house income in the dwelling unit is $90395 +in.representative_income 90397 Representative total house income in the dwelling unit is $90397 +in.representative_income 90405 Representative total house income in the dwelling unit is $90405 +in.representative_income 90407 Representative total house income in the dwelling unit is $90407 +in.representative_income 90408 Representative total house income in the dwelling unit is $90408 +in.representative_income 90411 Representative total house income in the dwelling unit is $90411 +in.representative_income 90414 Representative total house income in the dwelling unit is $90414 +in.representative_income 90425 Representative total house income in the dwelling unit is $90425 +in.representative_income 90427 Representative total house income in the dwelling unit is $90427 +in.representative_income 90435 Representative total house income in the dwelling unit is $90435 +in.representative_income 90438 Representative total house income in the dwelling unit is $90438 +in.representative_income 90443 Representative total house income in the dwelling unit is $90443 +in.representative_income 90457 Representative total house income in the dwelling unit is $90457 +in.representative_income 90458 Representative total house income in the dwelling unit is $90458 +in.representative_income 90461 Representative total house income in the dwelling unit is $90461 +in.representative_income 90467 Representative total house income in the dwelling unit is $90467 +in.representative_income 90475 Representative total house income in the dwelling unit is $90475 +in.representative_income 90478 Representative total house income in the dwelling unit is $90478 +in.representative_income 90485 Representative total house income in the dwelling unit is $90485 +in.representative_income 90489 Representative total house income in the dwelling unit is $90489 +in.representative_income 90491 Representative total house income in the dwelling unit is $90491 +in.representative_income 90506 Representative total house income in the dwelling unit is $90506 +in.representative_income 90509 Representative total house income in the dwelling unit is $90509 +in.representative_income 90519 Representative total house income in the dwelling unit is $90519 +in.representative_income 90524 Representative total house income in the dwelling unit is $90524 +in.representative_income 90535 Representative total house income in the dwelling unit is $90535 +in.representative_income 90543 Representative total house income in the dwelling unit is $90543 +in.representative_income 90546 Representative total house income in the dwelling unit is $90546 +in.representative_income 90562 Representative total house income in the dwelling unit is $90562 +in.representative_income 90570 Representative total house income in the dwelling unit is $90570 +in.representative_income 90576 Representative total house income in the dwelling unit is $90576 +in.representative_income 90590 Representative total house income in the dwelling unit is $90590 +in.representative_income 90593 Representative total house income in the dwelling unit is $90593 +in.representative_income 90599 Representative total house income in the dwelling unit is $90599 +in.representative_income 90608 Representative total house income in the dwelling unit is $90608 +in.representative_income 90610 Representative total house income in the dwelling unit is $90610 +in.representative_income 90612 Representative total house income in the dwelling unit is $90612 +in.representative_income 90629 Representative total house income in the dwelling unit is $90629 +in.representative_income 90632 Representative total house income in the dwelling unit is $90632 +in.representative_income 90634 Representative total house income in the dwelling unit is $90634 +in.representative_income 90640 Representative total house income in the dwelling unit is $90640 +in.representative_income 90643 Representative total house income in the dwelling unit is $90643 +in.representative_income 90644 Representative total house income in the dwelling unit is $90644 +in.representative_income 90651 Representative total house income in the dwelling unit is $90651 +in.representative_income 90653 Representative total house income in the dwelling unit is $90653 +in.representative_income 90654 Representative total house income in the dwelling unit is $90654 +in.representative_income 90661 Representative total house income in the dwelling unit is $90661 +in.representative_income 90662 Representative total house income in the dwelling unit is $90662 +in.representative_income 90664 Representative total house income in the dwelling unit is $90664 +in.representative_income 90665 Representative total house income in the dwelling unit is $90665 +in.representative_income 90671 Representative total house income in the dwelling unit is $90671 +in.representative_income 90683 Representative total house income in the dwelling unit is $90683 +in.representative_income 90697 Representative total house income in the dwelling unit is $90697 +in.representative_income 90702 Representative total house income in the dwelling unit is $90702 +in.representative_income 90706 Representative total house income in the dwelling unit is $90706 +in.representative_income 90707 Representative total house income in the dwelling unit is $90707 +in.representative_income 90709 Representative total house income in the dwelling unit is $90709 +in.representative_income 90711 Representative total house income in the dwelling unit is $90711 +in.representative_income 90717 Representative total house income in the dwelling unit is $90717 +in.representative_income 90728 Representative total house income in the dwelling unit is $90728 +in.representative_income 90738 Representative total house income in the dwelling unit is $90738 +in.representative_income 90749 Representative total house income in the dwelling unit is $90749 +in.representative_income 90759 Representative total house income in the dwelling unit is $90759 +in.representative_income 90760 Representative total house income in the dwelling unit is $90760 +in.representative_income 90761 Representative total house income in the dwelling unit is $90761 +in.representative_income 90763 Representative total house income in the dwelling unit is $90763 +in.representative_income 90764 Representative total house income in the dwelling unit is $90764 +in.representative_income 90767 Representative total house income in the dwelling unit is $90767 +in.representative_income 90770 Representative total house income in the dwelling unit is $90770 +in.representative_income 90771 Representative total house income in the dwelling unit is $90771 +in.representative_income 90779 Representative total house income in the dwelling unit is $90779 +in.representative_income 90781 Representative total house income in the dwelling unit is $90781 +in.representative_income 90789 Representative total house income in the dwelling unit is $90789 +in.representative_income 90802 Representative total house income in the dwelling unit is $90802 +in.representative_income 90809 Representative total house income in the dwelling unit is $90809 +in.representative_income 90812 Representative total house income in the dwelling unit is $90812 +in.representative_income 90814 Representative total house income in the dwelling unit is $90814 +in.representative_income 90817 Representative total house income in the dwelling unit is $90817 +in.representative_income 90819 Representative total house income in the dwelling unit is $90819 +in.representative_income 90822 Representative total house income in the dwelling unit is $90822 +in.representative_income 90825 Representative total house income in the dwelling unit is $90825 +in.representative_income 90829 Representative total house income in the dwelling unit is $90829 +in.representative_income 90832 Representative total house income in the dwelling unit is $90832 +in.representative_income 90833 Representative total house income in the dwelling unit is $90833 +in.representative_income 90835 Representative total house income in the dwelling unit is $90835 +in.representative_income 90840 Representative total house income in the dwelling unit is $90840 +in.representative_income 90844 Representative total house income in the dwelling unit is $90844 +in.representative_income 90846 Representative total house income in the dwelling unit is $90846 +in.representative_income 90847 Representative total house income in the dwelling unit is $90847 +in.representative_income 90852 Representative total house income in the dwelling unit is $90852 +in.representative_income 90854 Representative total house income in the dwelling unit is $90854 +in.representative_income 90862 Representative total house income in the dwelling unit is $90862 +in.representative_income 90864 Representative total house income in the dwelling unit is $90864 +in.representative_income 90868 Representative total house income in the dwelling unit is $90868 +in.representative_income 90871 Representative total house income in the dwelling unit is $90871 +in.representative_income 90878 Representative total house income in the dwelling unit is $90878 +in.representative_income 90881 Representative total house income in the dwelling unit is $90881 +in.representative_income 90890 Representative total house income in the dwelling unit is $90890 +in.representative_income 90892 Representative total house income in the dwelling unit is $90892 +in.representative_income 90896 Representative total house income in the dwelling unit is $90896 +in.representative_income 90897 Representative total house income in the dwelling unit is $90897 +in.representative_income 90900 Representative total house income in the dwelling unit is $90900 +in.representative_income 90902 Representative total house income in the dwelling unit is $90902 +in.representative_income 90907 Representative total house income in the dwelling unit is $90907 +in.representative_income 90912 Representative total house income in the dwelling unit is $90912 +in.representative_income 90913 Representative total house income in the dwelling unit is $90913 +in.representative_income 90921 Representative total house income in the dwelling unit is $90921 +in.representative_income 90922 Representative total house income in the dwelling unit is $90922 +in.representative_income 90923 Representative total house income in the dwelling unit is $90923 +in.representative_income 90933 Representative total house income in the dwelling unit is $90933 +in.representative_income 90943 Representative total house income in the dwelling unit is $90943 +in.representative_income 90953 Representative total house income in the dwelling unit is $90953 +in.representative_income 90964 Representative total house income in the dwelling unit is $90964 +in.representative_income 90970 Representative total house income in the dwelling unit is $90970 +in.representative_income 90974 Representative total house income in the dwelling unit is $90974 +in.representative_income 90976 Representative total house income in the dwelling unit is $90976 +in.representative_income 90984 Representative total house income in the dwelling unit is $90984 +in.representative_income 90994 Representative total house income in the dwelling unit is $90994 +in.representative_income 90996 Representative total house income in the dwelling unit is $90996 +in.representative_income 91000 Representative total house income in the dwelling unit is $91000 +in.representative_income 91004 Representative total house income in the dwelling unit is $91004 +in.representative_income 91005 Representative total house income in the dwelling unit is $91005 +in.representative_income 91012 Representative total house income in the dwelling unit is $91012 +in.representative_income 91014 Representative total house income in the dwelling unit is $91014 +in.representative_income 91023 Representative total house income in the dwelling unit is $91023 +in.representative_income 91029 Representative total house income in the dwelling unit is $91029 +in.representative_income 91030 Representative total house income in the dwelling unit is $91030 +in.representative_income 91034 Representative total house income in the dwelling unit is $91034 +in.representative_income 91047 Representative total house income in the dwelling unit is $91047 +in.representative_income 91055 Representative total house income in the dwelling unit is $91055 +in.representative_income 91063 Representative total house income in the dwelling unit is $91063 +in.representative_income 91065 Representative total house income in the dwelling unit is $91065 +in.representative_income 91077 Representative total house income in the dwelling unit is $91077 +in.representative_income 91078 Representative total house income in the dwelling unit is $91078 +in.representative_income 91084 Representative total house income in the dwelling unit is $91084 +in.representative_income 91090 Representative total house income in the dwelling unit is $91090 +in.representative_income 91096 Representative total house income in the dwelling unit is $91096 +in.representative_income 91105 Representative total house income in the dwelling unit is $91105 +in.representative_income 91114 Representative total house income in the dwelling unit is $91114 +in.representative_income 91115 Representative total house income in the dwelling unit is $91115 +in.representative_income 91118 Representative total house income in the dwelling unit is $91118 +in.representative_income 91119 Representative total house income in the dwelling unit is $91119 +in.representative_income 91135 Representative total house income in the dwelling unit is $91135 +in.representative_income 91136 Representative total house income in the dwelling unit is $91136 +in.representative_income 91145 Representative total house income in the dwelling unit is $91145 +in.representative_income 91150 Representative total house income in the dwelling unit is $91150 +in.representative_income 91157 Representative total house income in the dwelling unit is $91157 +in.representative_income 91159 Representative total house income in the dwelling unit is $91159 +in.representative_income 91166 Representative total house income in the dwelling unit is $91166 +in.representative_income 91171 Representative total house income in the dwelling unit is $91171 +in.representative_income 91181 Representative total house income in the dwelling unit is $91181 +in.representative_income 91186 Representative total house income in the dwelling unit is $91186 +in.representative_income 91190 Representative total house income in the dwelling unit is $91190 +in.representative_income 91192 Representative total house income in the dwelling unit is $91192 +in.representative_income 91196 Representative total house income in the dwelling unit is $91196 +in.representative_income 91216 Representative total house income in the dwelling unit is $91216 +in.representative_income 91221 Representative total house income in the dwelling unit is $91221 +in.representative_income 91222 Representative total house income in the dwelling unit is $91222 +in.representative_income 91223 Representative total house income in the dwelling unit is $91223 +in.representative_income 91232 Representative total house income in the dwelling unit is $91232 +in.representative_income 91234 Representative total house income in the dwelling unit is $91234 +in.representative_income 91241 Representative total house income in the dwelling unit is $91241 +in.representative_income 91243 Representative total house income in the dwelling unit is $91243 +in.representative_income 91244 Representative total house income in the dwelling unit is $91244 +in.representative_income 91247 Representative total house income in the dwelling unit is $91247 +in.representative_income 91254 Representative total house income in the dwelling unit is $91254 +in.representative_income 91267 Representative total house income in the dwelling unit is $91267 +in.representative_income 91275 Representative total house income in the dwelling unit is $91275 +in.representative_income 91277 Representative total house income in the dwelling unit is $91277 +in.representative_income 91283 Representative total house income in the dwelling unit is $91283 +in.representative_income 91287 Representative total house income in the dwelling unit is $91287 +in.representative_income 91294 Representative total house income in the dwelling unit is $91294 +in.representative_income 91297 Representative total house income in the dwelling unit is $91297 +in.representative_income 91299 Representative total house income in the dwelling unit is $91299 +in.representative_income 91307 Representative total house income in the dwelling unit is $91307 +in.representative_income 91308 Representative total house income in the dwelling unit is $91308 +in.representative_income 91317 Representative total house income in the dwelling unit is $91317 +in.representative_income 91329 Representative total house income in the dwelling unit is $91329 +in.representative_income 91334 Representative total house income in the dwelling unit is $91334 +in.representative_income 91351 Representative total house income in the dwelling unit is $91351 +in.representative_income 91355 Representative total house income in the dwelling unit is $91355 +in.representative_income 91361 Representative total house income in the dwelling unit is $91361 +in.representative_income 91366 Representative total house income in the dwelling unit is $91366 +in.representative_income 91369 Representative total house income in the dwelling unit is $91369 +in.representative_income 91386 Representative total house income in the dwelling unit is $91386 +in.representative_income 91394 Representative total house income in the dwelling unit is $91394 +in.representative_income 91398 Representative total house income in the dwelling unit is $91398 +in.representative_income 91407 Representative total house income in the dwelling unit is $91407 +in.representative_income 91418 Representative total house income in the dwelling unit is $91418 +in.representative_income 91424 Representative total house income in the dwelling unit is $91424 +in.representative_income 91428 Representative total house income in the dwelling unit is $91428 +in.representative_income 91435 Representative total house income in the dwelling unit is $91435 +in.representative_income 91440 Representative total house income in the dwelling unit is $91440 +in.representative_income 91445 Representative total house income in the dwelling unit is $91445 +in.representative_income 91448 Representative total house income in the dwelling unit is $91448 +in.representative_income 91458 Representative total house income in the dwelling unit is $91458 +in.representative_income 91462 Representative total house income in the dwelling unit is $91462 +in.representative_income 91463 Representative total house income in the dwelling unit is $91463 +in.representative_income 91469 Representative total house income in the dwelling unit is $91469 +in.representative_income 91483 Representative total house income in the dwelling unit is $91483 +in.representative_income 91487 Representative total house income in the dwelling unit is $91487 +in.representative_income 91490 Representative total house income in the dwelling unit is $91490 +in.representative_income 91495 Representative total house income in the dwelling unit is $91495 +in.representative_income 91499 Representative total house income in the dwelling unit is $91499 +in.representative_income 91505 Representative total house income in the dwelling unit is $91505 +in.representative_income 91506 Representative total house income in the dwelling unit is $91506 +in.representative_income 91509 Representative total house income in the dwelling unit is $91509 +in.representative_income 91510 Representative total house income in the dwelling unit is $91510 +in.representative_income 91511 Representative total house income in the dwelling unit is $91511 +in.representative_income 91516 Representative total house income in the dwelling unit is $91516 +in.representative_income 91519 Representative total house income in the dwelling unit is $91519 +in.representative_income 91523 Representative total house income in the dwelling unit is $91523 +in.representative_income 91531 Representative total house income in the dwelling unit is $91531 +in.representative_income 91538 Representative total house income in the dwelling unit is $91538 +in.representative_income 91540 Representative total house income in the dwelling unit is $91540 +in.representative_income 91542 Representative total house income in the dwelling unit is $91542 +in.representative_income 91552 Representative total house income in the dwelling unit is $91552 +in.representative_income 91558 Representative total house income in the dwelling unit is $91558 +in.representative_income 91561 Representative total house income in the dwelling unit is $91561 +in.representative_income 91566 Representative total house income in the dwelling unit is $91566 +in.representative_income 91570 Representative total house income in the dwelling unit is $91570 +in.representative_income 91580 Representative total house income in the dwelling unit is $91580 +in.representative_income 91583 Representative total house income in the dwelling unit is $91583 +in.representative_income 91585 Representative total house income in the dwelling unit is $91585 +in.representative_income 91587 Representative total house income in the dwelling unit is $91587 +in.representative_income 91590 Representative total house income in the dwelling unit is $91590 +in.representative_income 91593 Representative total house income in the dwelling unit is $91593 +in.representative_income 91598 Representative total house income in the dwelling unit is $91598 +in.representative_income 91603 Representative total house income in the dwelling unit is $91603 +in.representative_income 91610 Representative total house income in the dwelling unit is $91610 +in.representative_income 91615 Representative total house income in the dwelling unit is $91615 +in.representative_income 91619 Representative total house income in the dwelling unit is $91619 +in.representative_income 91620 Representative total house income in the dwelling unit is $91620 +in.representative_income 91624 Representative total house income in the dwelling unit is $91624 +in.representative_income 91640 Representative total house income in the dwelling unit is $91640 +in.representative_income 91645 Representative total house income in the dwelling unit is $91645 +in.representative_income 91659 Representative total house income in the dwelling unit is $91659 +in.representative_income 91670 Representative total house income in the dwelling unit is $91670 +in.representative_income 91672 Representative total house income in the dwelling unit is $91672 +in.representative_income 91674 Representative total house income in the dwelling unit is $91674 +in.representative_income 91675 Representative total house income in the dwelling unit is $91675 +in.representative_income 91678 Representative total house income in the dwelling unit is $91678 +in.representative_income 91696 Representative total house income in the dwelling unit is $91696 +in.representative_income 91698 Representative total house income in the dwelling unit is $91698 +in.representative_income 91717 Representative total house income in the dwelling unit is $91717 +in.representative_income 91721 Representative total house income in the dwelling unit is $91721 +in.representative_income 91726 Representative total house income in the dwelling unit is $91726 +in.representative_income 91732 Representative total house income in the dwelling unit is $91732 +in.representative_income 91735 Representative total house income in the dwelling unit is $91735 +in.representative_income 91736 Representative total house income in the dwelling unit is $91736 +in.representative_income 91738 Representative total house income in the dwelling unit is $91738 +in.representative_income 91750 Representative total house income in the dwelling unit is $91750 +in.representative_income 91751 Representative total house income in the dwelling unit is $91751 +in.representative_income 91754 Representative total house income in the dwelling unit is $91754 +in.representative_income 91761 Representative total house income in the dwelling unit is $91761 +in.representative_income 91762 Representative total house income in the dwelling unit is $91762 +in.representative_income 91764 Representative total house income in the dwelling unit is $91764 +in.representative_income 91768 Representative total house income in the dwelling unit is $91768 +in.representative_income 91772 Representative total house income in the dwelling unit is $91772 +in.representative_income 91777 Representative total house income in the dwelling unit is $91777 +in.representative_income 91778 Representative total house income in the dwelling unit is $91778 +in.representative_income 91780 Representative total house income in the dwelling unit is $91780 +in.representative_income 91783 Representative total house income in the dwelling unit is $91783 +in.representative_income 91799 Representative total house income in the dwelling unit is $91799 +in.representative_income 91802 Representative total house income in the dwelling unit is $91802 +in.representative_income 91804 Representative total house income in the dwelling unit is $91804 +in.representative_income 91810 Representative total house income in the dwelling unit is $91810 +in.representative_income 91812 Representative total house income in the dwelling unit is $91812 +in.representative_income 91814 Representative total house income in the dwelling unit is $91814 +in.representative_income 91819 Representative total house income in the dwelling unit is $91819 +in.representative_income 91820 Representative total house income in the dwelling unit is $91820 +in.representative_income 91822 Representative total house income in the dwelling unit is $91822 +in.representative_income 91837 Representative total house income in the dwelling unit is $91837 +in.representative_income 91840 Representative total house income in the dwelling unit is $91840 +in.representative_income 91841 Representative total house income in the dwelling unit is $91841 +in.representative_income 91844 Representative total house income in the dwelling unit is $91844 +in.representative_income 91850 Representative total house income in the dwelling unit is $91850 +in.representative_income 91851 Representative total house income in the dwelling unit is $91851 +in.representative_income 91856 Representative total house income in the dwelling unit is $91856 +in.representative_income 91862 Representative total house income in the dwelling unit is $91862 +in.representative_income 91873 Representative total house income in the dwelling unit is $91873 +in.representative_income 91878 Representative total house income in the dwelling unit is $91878 +in.representative_income 91883 Representative total house income in the dwelling unit is $91883 +in.representative_income 91887 Representative total house income in the dwelling unit is $91887 +in.representative_income 91888 Representative total house income in the dwelling unit is $91888 +in.representative_income 91889 Representative total house income in the dwelling unit is $91889 +in.representative_income 91894 Representative total house income in the dwelling unit is $91894 +in.representative_income 91902 Representative total house income in the dwelling unit is $91902 +in.representative_income 91904 Representative total house income in the dwelling unit is $91904 +in.representative_income 91905 Representative total house income in the dwelling unit is $91905 +in.representative_income 91908 Representative total house income in the dwelling unit is $91908 +in.representative_income 91916 Representative total house income in the dwelling unit is $91916 +in.representative_income 91923 Representative total house income in the dwelling unit is $91923 +in.representative_income 91926 Representative total house income in the dwelling unit is $91926 +in.representative_income 91933 Representative total house income in the dwelling unit is $91933 +in.representative_income 91940 Representative total house income in the dwelling unit is $91940 +in.representative_income 91941 Representative total house income in the dwelling unit is $91941 +in.representative_income 91943 Representative total house income in the dwelling unit is $91943 +in.representative_income 91948 Representative total house income in the dwelling unit is $91948 +in.representative_income 91949 Representative total house income in the dwelling unit is $91949 +in.representative_income 91954 Representative total house income in the dwelling unit is $91954 +in.representative_income 91962 Representative total house income in the dwelling unit is $91962 +in.representative_income 91974 Representative total house income in the dwelling unit is $91974 +in.representative_income 91977 Representative total house income in the dwelling unit is $91977 +in.representative_income 91984 Representative total house income in the dwelling unit is $91984 +in.representative_income 91993 Representative total house income in the dwelling unit is $91993 +in.representative_income 91995 Representative total house income in the dwelling unit is $91995 +in.representative_income 92002 Representative total house income in the dwelling unit is $92002 +in.representative_income 92004 Representative total house income in the dwelling unit is $92004 +in.representative_income 92005 Representative total house income in the dwelling unit is $92005 +in.representative_income 92006 Representative total house income in the dwelling unit is $92006 +in.representative_income 92014 Representative total house income in the dwelling unit is $92014 +in.representative_income 92016 Representative total house income in the dwelling unit is $92016 +in.representative_income 92017 Representative total house income in the dwelling unit is $92017 +in.representative_income 92018 Representative total house income in the dwelling unit is $92018 +in.representative_income 92023 Representative total house income in the dwelling unit is $92023 +in.representative_income 92024 Representative total house income in the dwelling unit is $92024 +in.representative_income 92034 Representative total house income in the dwelling unit is $92034 +in.representative_income 92044 Representative total house income in the dwelling unit is $92044 +in.representative_income 92056 Representative total house income in the dwelling unit is $92056 +in.representative_income 92057 Representative total house income in the dwelling unit is $92057 +in.representative_income 92067 Representative total house income in the dwelling unit is $92067 +in.representative_income 92075 Representative total house income in the dwelling unit is $92075 +in.representative_income 92082 Representative total house income in the dwelling unit is $92082 +in.representative_income 92102 Representative total house income in the dwelling unit is $92102 +in.representative_income 92109 Representative total house income in the dwelling unit is $92109 +in.representative_income 92115 Representative total house income in the dwelling unit is $92115 +in.representative_income 92119 Representative total house income in the dwelling unit is $92119 +in.representative_income 92125 Representative total house income in the dwelling unit is $92125 +in.representative_income 92131 Representative total house income in the dwelling unit is $92131 +in.representative_income 92153 Representative total house income in the dwelling unit is $92153 +in.representative_income 92164 Representative total house income in the dwelling unit is $92164 +in.representative_income 92166 Representative total house income in the dwelling unit is $92166 +in.representative_income 92171 Representative total house income in the dwelling unit is $92171 +in.representative_income 92173 Representative total house income in the dwelling unit is $92173 +in.representative_income 92185 Representative total house income in the dwelling unit is $92185 +in.representative_income 92191 Representative total house income in the dwelling unit is $92191 +in.representative_income 92209 Representative total house income in the dwelling unit is $92209 +in.representative_income 92212 Representative total house income in the dwelling unit is $92212 +in.representative_income 92216 Representative total house income in the dwelling unit is $92216 +in.representative_income 92225 Representative total house income in the dwelling unit is $92225 +in.representative_income 92226 Representative total house income in the dwelling unit is $92226 +in.representative_income 92251 Representative total house income in the dwelling unit is $92251 +in.representative_income 92254 Representative total house income in the dwelling unit is $92254 +in.representative_income 92267 Representative total house income in the dwelling unit is $92267 +in.representative_income 92272 Representative total house income in the dwelling unit is $92272 +in.representative_income 92277 Representative total house income in the dwelling unit is $92277 +in.representative_income 92278 Representative total house income in the dwelling unit is $92278 +in.representative_income 92283 Representative total house income in the dwelling unit is $92283 +in.representative_income 92287 Representative total house income in the dwelling unit is $92287 +in.representative_income 92291 Representative total house income in the dwelling unit is $92291 +in.representative_income 92295 Representative total house income in the dwelling unit is $92295 +in.representative_income 92297 Representative total house income in the dwelling unit is $92297 +in.representative_income 92306 Representative total house income in the dwelling unit is $92306 +in.representative_income 92315 Representative total house income in the dwelling unit is $92315 +in.representative_income 92316 Representative total house income in the dwelling unit is $92316 +in.representative_income 92317 Representative total house income in the dwelling unit is $92317 +in.representative_income 92325 Representative total house income in the dwelling unit is $92325 +in.representative_income 92327 Representative total house income in the dwelling unit is $92327 +in.representative_income 92331 Representative total house income in the dwelling unit is $92331 +in.representative_income 92336 Representative total house income in the dwelling unit is $92336 +in.representative_income 92337 Representative total house income in the dwelling unit is $92337 +in.representative_income 92358 Representative total house income in the dwelling unit is $92358 +in.representative_income 92360 Representative total house income in the dwelling unit is $92360 +in.representative_income 92366 Representative total house income in the dwelling unit is $92366 +in.representative_income 92367 Representative total house income in the dwelling unit is $92367 +in.representative_income 92371 Representative total house income in the dwelling unit is $92371 +in.representative_income 92381 Representative total house income in the dwelling unit is $92381 +in.representative_income 92383 Representative total house income in the dwelling unit is $92383 +in.representative_income 92386 Representative total house income in the dwelling unit is $92386 +in.representative_income 92394 Representative total house income in the dwelling unit is $92394 +in.representative_income 92403 Representative total house income in the dwelling unit is $92403 +in.representative_income 92404 Representative total house income in the dwelling unit is $92404 +in.representative_income 92408 Representative total house income in the dwelling unit is $92408 +in.representative_income 92418 Representative total house income in the dwelling unit is $92418 +in.representative_income 92424 Representative total house income in the dwelling unit is $92424 +in.representative_income 92428 Representative total house income in the dwelling unit is $92428 +in.representative_income 92448 Representative total house income in the dwelling unit is $92448 +in.representative_income 92456 Representative total house income in the dwelling unit is $92456 +in.representative_income 92457 Representative total house income in the dwelling unit is $92457 +in.representative_income 92459 Representative total house income in the dwelling unit is $92459 +in.representative_income 92467 Representative total house income in the dwelling unit is $92467 +in.representative_income 92469 Representative total house income in the dwelling unit is $92469 +in.representative_income 92477 Representative total house income in the dwelling unit is $92477 +in.representative_income 92478 Representative total house income in the dwelling unit is $92478 +in.representative_income 92488 Representative total house income in the dwelling unit is $92488 +in.representative_income 92489 Representative total house income in the dwelling unit is $92489 +in.representative_income 92493 Representative total house income in the dwelling unit is $92493 +in.representative_income 92508 Representative total house income in the dwelling unit is $92508 +in.representative_income 92514 Representative total house income in the dwelling unit is $92514 +in.representative_income 92521 Representative total house income in the dwelling unit is $92521 +in.representative_income 92529 Representative total house income in the dwelling unit is $92529 +in.representative_income 92531 Representative total house income in the dwelling unit is $92531 +in.representative_income 92532 Representative total house income in the dwelling unit is $92532 +in.representative_income 92570 Representative total house income in the dwelling unit is $92570 +in.representative_income 92573 Representative total house income in the dwelling unit is $92573 +in.representative_income 92590 Representative total house income in the dwelling unit is $92590 +in.representative_income 92593 Representative total house income in the dwelling unit is $92593 +in.representative_income 92595 Representative total house income in the dwelling unit is $92595 +in.representative_income 92596 Representative total house income in the dwelling unit is $92596 +in.representative_income 92600 Representative total house income in the dwelling unit is $92600 +in.representative_income 92605 Representative total house income in the dwelling unit is $92605 +in.representative_income 92608 Representative total house income in the dwelling unit is $92608 +in.representative_income 92610 Representative total house income in the dwelling unit is $92610 +in.representative_income 92624 Representative total house income in the dwelling unit is $92624 +in.representative_income 92630 Representative total house income in the dwelling unit is $92630 +in.representative_income 92639 Representative total house income in the dwelling unit is $92639 +in.representative_income 92640 Representative total house income in the dwelling unit is $92640 +in.representative_income 92650 Representative total house income in the dwelling unit is $92650 +in.representative_income 92666 Representative total house income in the dwelling unit is $92666 +in.representative_income 92681 Representative total house income in the dwelling unit is $92681 +in.representative_income 92686 Representative total house income in the dwelling unit is $92686 +in.representative_income 92690 Representative total house income in the dwelling unit is $92690 +in.representative_income 92700 Representative total house income in the dwelling unit is $92700 +in.representative_income 92704 Representative total house income in the dwelling unit is $92704 +in.representative_income 92726 Representative total house income in the dwelling unit is $92726 +in.representative_income 92728 Representative total house income in the dwelling unit is $92728 +in.representative_income 92731 Representative total house income in the dwelling unit is $92731 +in.representative_income 92735 Representative total house income in the dwelling unit is $92735 +in.representative_income 92746 Representative total house income in the dwelling unit is $92746 +in.representative_income 92747 Representative total house income in the dwelling unit is $92747 +in.representative_income 92748 Representative total house income in the dwelling unit is $92748 +in.representative_income 92752 Representative total house income in the dwelling unit is $92752 +in.representative_income 92769 Representative total house income in the dwelling unit is $92769 +in.representative_income 92789 Representative total house income in the dwelling unit is $92789 +in.representative_income 92791 Representative total house income in the dwelling unit is $92791 +in.representative_income 92800 Representative total house income in the dwelling unit is $92800 +in.representative_income 92805 Representative total house income in the dwelling unit is $92805 +in.representative_income 92812 Representative total house income in the dwelling unit is $92812 +in.representative_income 92816 Representative total house income in the dwelling unit is $92816 +in.representative_income 92819 Representative total house income in the dwelling unit is $92819 +in.representative_income 92826 Representative total house income in the dwelling unit is $92826 +in.representative_income 92831 Representative total house income in the dwelling unit is $92831 +in.representative_income 92832 Representative total house income in the dwelling unit is $92832 +in.representative_income 92837 Representative total house income in the dwelling unit is $92837 +in.representative_income 92841 Representative total house income in the dwelling unit is $92841 +in.representative_income 92842 Representative total house income in the dwelling unit is $92842 +in.representative_income 92847 Representative total house income in the dwelling unit is $92847 +in.representative_income 92851 Representative total house income in the dwelling unit is $92851 +in.representative_income 92853 Representative total house income in the dwelling unit is $92853 +in.representative_income 92856 Representative total house income in the dwelling unit is $92856 +in.representative_income 92877 Representative total house income in the dwelling unit is $92877 +in.representative_income 92882 Representative total house income in the dwelling unit is $92882 +in.representative_income 92890 Representative total house income in the dwelling unit is $92890 +in.representative_income 92893 Representative total house income in the dwelling unit is $92893 +in.representative_income 92903 Representative total house income in the dwelling unit is $92903 +in.representative_income 92911 Representative total house income in the dwelling unit is $92911 +in.representative_income 92920 Representative total house income in the dwelling unit is $92920 +in.representative_income 92924 Representative total house income in the dwelling unit is $92924 +in.representative_income 92933 Representative total house income in the dwelling unit is $92933 +in.representative_income 92942 Representative total house income in the dwelling unit is $92942 +in.representative_income 92945 Representative total house income in the dwelling unit is $92945 +in.representative_income 92954 Representative total house income in the dwelling unit is $92954 +in.representative_income 92961 Representative total house income in the dwelling unit is $92961 +in.representative_income 92962 Representative total house income in the dwelling unit is $92962 +in.representative_income 92963 Representative total house income in the dwelling unit is $92963 +in.representative_income 92964 Representative total house income in the dwelling unit is $92964 +in.representative_income 92974 Representative total house income in the dwelling unit is $92974 +in.representative_income 92984 Representative total house income in the dwelling unit is $92984 +in.representative_income 92985 Representative total house income in the dwelling unit is $92985 +in.representative_income 92992 Representative total house income in the dwelling unit is $92992 +in.representative_income 92996 Representative total house income in the dwelling unit is $92996 +in.representative_income 93006 Representative total house income in the dwelling unit is $93006 +in.representative_income 93012 Representative total house income in the dwelling unit is $93012 +in.representative_income 93014 Representative total house income in the dwelling unit is $93014 +in.representative_income 93016 Representative total house income in the dwelling unit is $93016 +in.representative_income 93017 Representative total house income in the dwelling unit is $93017 +in.representative_income 93028 Representative total house income in the dwelling unit is $93028 +in.representative_income 93034 Representative total house income in the dwelling unit is $93034 +in.representative_income 93037 Representative total house income in the dwelling unit is $93037 +in.representative_income 93038 Representative total house income in the dwelling unit is $93038 +in.representative_income 93039 Representative total house income in the dwelling unit is $93039 +in.representative_income 93050 Representative total house income in the dwelling unit is $93050 +in.representative_income 93060 Representative total house income in the dwelling unit is $93060 +in.representative_income 93068 Representative total house income in the dwelling unit is $93068 +in.representative_income 93075 Representative total house income in the dwelling unit is $93075 +in.representative_income 93085 Representative total house income in the dwelling unit is $93085 +in.representative_income 93086 Representative total house income in the dwelling unit is $93086 +in.representative_income 93088 Representative total house income in the dwelling unit is $93088 +in.representative_income 93094 Representative total house income in the dwelling unit is $93094 +in.representative_income 93099 Representative total house income in the dwelling unit is $93099 +in.representative_income 93111 Representative total house income in the dwelling unit is $93111 +in.representative_income 93121 Representative total house income in the dwelling unit is $93121 +in.representative_income 93122 Representative total house income in the dwelling unit is $93122 +in.representative_income 93135 Representative total house income in the dwelling unit is $93135 +in.representative_income 93137 Representative total house income in the dwelling unit is $93137 +in.representative_income 93140 Representative total house income in the dwelling unit is $93140 +in.representative_income 93143 Representative total house income in the dwelling unit is $93143 +in.representative_income 93153 Representative total house income in the dwelling unit is $93153 +in.representative_income 93160 Representative total house income in the dwelling unit is $93160 +in.representative_income 93164 Representative total house income in the dwelling unit is $93164 +in.representative_income 93169 Representative total house income in the dwelling unit is $93169 +in.representative_income 93176 Representative total house income in the dwelling unit is $93176 +in.representative_income 93180 Representative total house income in the dwelling unit is $93180 +in.representative_income 93182 Representative total house income in the dwelling unit is $93182 +in.representative_income 93186 Representative total house income in the dwelling unit is $93186 +in.representative_income 93203 Representative total house income in the dwelling unit is $93203 +in.representative_income 93212 Representative total house income in the dwelling unit is $93212 +in.representative_income 93228 Representative total house income in the dwelling unit is $93228 +in.representative_income 93236 Representative total house income in the dwelling unit is $93236 +in.representative_income 93243 Representative total house income in the dwelling unit is $93243 +in.representative_income 93245 Representative total house income in the dwelling unit is $93245 +in.representative_income 93266 Representative total house income in the dwelling unit is $93266 +in.representative_income 93267 Representative total house income in the dwelling unit is $93267 +in.representative_income 93279 Representative total house income in the dwelling unit is $93279 +in.representative_income 93283 Representative total house income in the dwelling unit is $93283 +in.representative_income 93284 Representative total house income in the dwelling unit is $93284 +in.representative_income 93285 Representative total house income in the dwelling unit is $93285 +in.representative_income 93299 Representative total house income in the dwelling unit is $93299 +in.representative_income 93307 Representative total house income in the dwelling unit is $93307 +in.representative_income 93309 Representative total house income in the dwelling unit is $93309 +in.representative_income 93331 Representative total house income in the dwelling unit is $93331 +in.representative_income 93333 Representative total house income in the dwelling unit is $93333 +in.representative_income 93337 Representative total house income in the dwelling unit is $93337 +in.representative_income 93347 Representative total house income in the dwelling unit is $93347 +in.representative_income 93353 Representative total house income in the dwelling unit is $93353 +in.representative_income 93364 Representative total house income in the dwelling unit is $93364 +in.representative_income 93367 Representative total house income in the dwelling unit is $93367 +in.representative_income 93390 Representative total house income in the dwelling unit is $93390 +in.representative_income 93391 Representative total house income in the dwelling unit is $93391 +in.representative_income 93396 Representative total house income in the dwelling unit is $93396 +in.representative_income 93400 Representative total house income in the dwelling unit is $93400 +in.representative_income 93402 Representative total house income in the dwelling unit is $93402 +in.representative_income 93406 Representative total house income in the dwelling unit is $93406 +in.representative_income 93408 Representative total house income in the dwelling unit is $93408 +in.representative_income 93411 Representative total house income in the dwelling unit is $93411 +in.representative_income 93418 Representative total house income in the dwelling unit is $93418 +in.representative_income 93419 Representative total house income in the dwelling unit is $93419 +in.representative_income 93428 Representative total house income in the dwelling unit is $93428 +in.representative_income 93430 Representative total house income in the dwelling unit is $93430 +in.representative_income 93438 Representative total house income in the dwelling unit is $93438 +in.representative_income 93441 Representative total house income in the dwelling unit is $93441 +in.representative_income 93442 Representative total house income in the dwelling unit is $93442 +in.representative_income 93444 Representative total house income in the dwelling unit is $93444 +in.representative_income 93449 Representative total house income in the dwelling unit is $93449 +in.representative_income 93460 Representative total house income in the dwelling unit is $93460 +in.representative_income 93461 Representative total house income in the dwelling unit is $93461 +in.representative_income 93484 Representative total house income in the dwelling unit is $93484 +in.representative_income 93497 Representative total house income in the dwelling unit is $93497 +in.representative_income 93499 Representative total house income in the dwelling unit is $93499 +in.representative_income 93502 Representative total house income in the dwelling unit is $93502 +in.representative_income 93509 Representative total house income in the dwelling unit is $93509 +in.representative_income 93532 Representative total house income in the dwelling unit is $93532 +in.representative_income 93539 Representative total house income in the dwelling unit is $93539 +in.representative_income 93543 Representative total house income in the dwelling unit is $93543 +in.representative_income 93552 Representative total house income in the dwelling unit is $93552 +in.representative_income 93562 Representative total house income in the dwelling unit is $93562 +in.representative_income 93569 Representative total house income in the dwelling unit is $93569 +in.representative_income 93578 Representative total house income in the dwelling unit is $93578 +in.representative_income 93584 Representative total house income in the dwelling unit is $93584 +in.representative_income 93594 Representative total house income in the dwelling unit is $93594 +in.representative_income 93605 Representative total house income in the dwelling unit is $93605 +in.representative_income 93614 Representative total house income in the dwelling unit is $93614 +in.representative_income 93623 Representative total house income in the dwelling unit is $93623 +in.representative_income 93625 Representative total house income in the dwelling unit is $93625 +in.representative_income 93640 Representative total house income in the dwelling unit is $93640 +in.representative_income 93644 Representative total house income in the dwelling unit is $93644 +in.representative_income 93647 Representative total house income in the dwelling unit is $93647 +in.representative_income 93648 Representative total house income in the dwelling unit is $93648 +in.representative_income 93649 Representative total house income in the dwelling unit is $93649 +in.representative_income 93656 Representative total house income in the dwelling unit is $93656 +in.representative_income 93658 Representative total house income in the dwelling unit is $93658 +in.representative_income 93660 Representative total house income in the dwelling unit is $93660 +in.representative_income 93661 Representative total house income in the dwelling unit is $93661 +in.representative_income 93676 Representative total house income in the dwelling unit is $93676 +in.representative_income 93681 Representative total house income in the dwelling unit is $93681 +in.representative_income 93691 Representative total house income in the dwelling unit is $93691 +in.representative_income 93712 Representative total house income in the dwelling unit is $93712 +in.representative_income 93730 Representative total house income in the dwelling unit is $93730 +in.representative_income 93741 Representative total house income in the dwelling unit is $93741 +in.representative_income 93754 Representative total house income in the dwelling unit is $93754 +in.representative_income 93759 Representative total house income in the dwelling unit is $93759 +in.representative_income 93772 Representative total house income in the dwelling unit is $93772 +in.representative_income 93776 Representative total house income in the dwelling unit is $93776 +in.representative_income 93777 Representative total house income in the dwelling unit is $93777 +in.representative_income 93784 Representative total house income in the dwelling unit is $93784 +in.representative_income 93792 Representative total house income in the dwelling unit is $93792 +in.representative_income 93794 Representative total house income in the dwelling unit is $93794 +in.representative_income 93806 Representative total house income in the dwelling unit is $93806 +in.representative_income 93820 Representative total house income in the dwelling unit is $93820 +in.representative_income 93831 Representative total house income in the dwelling unit is $93831 +in.representative_income 93832 Representative total house income in the dwelling unit is $93832 +in.representative_income 93842 Representative total house income in the dwelling unit is $93842 +in.representative_income 93844 Representative total house income in the dwelling unit is $93844 +in.representative_income 93852 Representative total house income in the dwelling unit is $93852 +in.representative_income 93860 Representative total house income in the dwelling unit is $93860 +in.representative_income 93862 Representative total house income in the dwelling unit is $93862 +in.representative_income 93863 Representative total house income in the dwelling unit is $93863 +in.representative_income 93873 Representative total house income in the dwelling unit is $93873 +in.representative_income 93883 Representative total house income in the dwelling unit is $93883 +in.representative_income 93892 Representative total house income in the dwelling unit is $93892 +in.representative_income 93893 Representative total house income in the dwelling unit is $93893 +in.representative_income 93898 Representative total house income in the dwelling unit is $93898 +in.representative_income 93902 Representative total house income in the dwelling unit is $93902 +in.representative_income 93913 Representative total house income in the dwelling unit is $93913 +in.representative_income 93915 Representative total house income in the dwelling unit is $93915 +in.representative_income 93916 Representative total house income in the dwelling unit is $93916 +in.representative_income 93923 Representative total house income in the dwelling unit is $93923 +in.representative_income 93926 Representative total house income in the dwelling unit is $93926 +in.representative_income 93943 Representative total house income in the dwelling unit is $93943 +in.representative_income 93947 Representative total house income in the dwelling unit is $93947 +in.representative_income 93959 Representative total house income in the dwelling unit is $93959 +in.representative_income 93962 Representative total house income in the dwelling unit is $93962 +in.representative_income 93966 Representative total house income in the dwelling unit is $93966 +in.representative_income 93970 Representative total house income in the dwelling unit is $93970 +in.representative_income 93983 Representative total house income in the dwelling unit is $93983 +in.representative_income 93994 Representative total house income in the dwelling unit is $93994 +in.representative_income 94001 Representative total house income in the dwelling unit is $94001 +in.representative_income 94002 Representative total house income in the dwelling unit is $94002 +in.representative_income 94005 Representative total house income in the dwelling unit is $94005 +in.representative_income 94012 Representative total house income in the dwelling unit is $94012 +in.representative_income 94018 Representative total house income in the dwelling unit is $94018 +in.representative_income 94023 Representative total house income in the dwelling unit is $94023 +in.representative_income 94024 Representative total house income in the dwelling unit is $94024 +in.representative_income 94026 Representative total house income in the dwelling unit is $94026 +in.representative_income 94028 Representative total house income in the dwelling unit is $94028 +in.representative_income 94034 Representative total house income in the dwelling unit is $94034 +in.representative_income 94038 Representative total house income in the dwelling unit is $94038 +in.representative_income 94045 Representative total house income in the dwelling unit is $94045 +in.representative_income 94065 Representative total house income in the dwelling unit is $94065 +in.representative_income 94068 Representative total house income in the dwelling unit is $94068 +in.representative_income 94071 Representative total house income in the dwelling unit is $94071 +in.representative_income 94079 Representative total house income in the dwelling unit is $94079 +in.representative_income 94085 Representative total house income in the dwelling unit is $94085 +in.representative_income 94096 Representative total house income in the dwelling unit is $94096 +in.representative_income 94099 Representative total house income in the dwelling unit is $94099 +in.representative_income 94109 Representative total house income in the dwelling unit is $94109 +in.representative_income 94113 Representative total house income in the dwelling unit is $94113 +in.representative_income 94138 Representative total house income in the dwelling unit is $94138 +in.representative_income 94141 Representative total house income in the dwelling unit is $94141 +in.representative_income 94142 Representative total house income in the dwelling unit is $94142 +in.representative_income 94146 Representative total house income in the dwelling unit is $94146 +in.representative_income 94163 Representative total house income in the dwelling unit is $94163 +in.representative_income 94166 Representative total house income in the dwelling unit is $94166 +in.representative_income 94171 Representative total house income in the dwelling unit is $94171 +in.representative_income 94172 Representative total house income in the dwelling unit is $94172 +in.representative_income 94176 Representative total house income in the dwelling unit is $94176 +in.representative_income 94197 Representative total house income in the dwelling unit is $94197 +in.representative_income 94217 Representative total house income in the dwelling unit is $94217 +in.representative_income 94226 Representative total house income in the dwelling unit is $94226 +in.representative_income 94236 Representative total house income in the dwelling unit is $94236 +in.representative_income 94247 Representative total house income in the dwelling unit is $94247 +in.representative_income 94248 Representative total house income in the dwelling unit is $94248 +in.representative_income 94249 Representative total house income in the dwelling unit is $94249 +in.representative_income 94250 Representative total house income in the dwelling unit is $94250 +in.representative_income 94255 Representative total house income in the dwelling unit is $94255 +in.representative_income 94270 Representative total house income in the dwelling unit is $94270 +in.representative_income 94275 Representative total house income in the dwelling unit is $94275 +in.representative_income 94277 Representative total house income in the dwelling unit is $94277 +in.representative_income 94279 Representative total house income in the dwelling unit is $94279 +in.representative_income 94282 Representative total house income in the dwelling unit is $94282 +in.representative_income 94285 Representative total house income in the dwelling unit is $94285 +in.representative_income 94302 Representative total house income in the dwelling unit is $94302 +in.representative_income 94303 Representative total house income in the dwelling unit is $94303 +in.representative_income 94314 Representative total house income in the dwelling unit is $94314 +in.representative_income 94325 Representative total house income in the dwelling unit is $94325 +in.representative_income 94326 Representative total house income in the dwelling unit is $94326 +in.representative_income 94331 Representative total house income in the dwelling unit is $94331 +in.representative_income 94347 Representative total house income in the dwelling unit is $94347 +in.representative_income 94348 Representative total house income in the dwelling unit is $94348 +in.representative_income 94356 Representative total house income in the dwelling unit is $94356 +in.representative_income 94357 Representative total house income in the dwelling unit is $94357 +in.representative_income 94378 Representative total house income in the dwelling unit is $94378 +in.representative_income 94387 Representative total house income in the dwelling unit is $94387 +in.representative_income 94388 Representative total house income in the dwelling unit is $94388 +in.representative_income 94398 Representative total house income in the dwelling unit is $94398 +in.representative_income 94410 Representative total house income in the dwelling unit is $94410 +in.representative_income 94418 Representative total house income in the dwelling unit is $94418 +in.representative_income 94428 Representative total house income in the dwelling unit is $94428 +in.representative_income 94433 Representative total house income in the dwelling unit is $94433 +in.representative_income 94440 Representative total house income in the dwelling unit is $94440 +in.representative_income 94449 Representative total house income in the dwelling unit is $94449 +in.representative_income 94463 Representative total house income in the dwelling unit is $94463 +in.representative_income 94469 Representative total house income in the dwelling unit is $94469 +in.representative_income 94474 Representative total house income in the dwelling unit is $94474 +in.representative_income 94481 Representative total house income in the dwelling unit is $94481 +in.representative_income 94485 Representative total house income in the dwelling unit is $94485 +in.representative_income 94493 Representative total house income in the dwelling unit is $94493 +in.representative_income 94496 Representative total house income in the dwelling unit is $94496 +in.representative_income 94497 Representative total house income in the dwelling unit is $94497 +in.representative_income 94507 Representative total house income in the dwelling unit is $94507 +in.representative_income 94517 Representative total house income in the dwelling unit is $94517 +in.representative_income 94529 Representative total house income in the dwelling unit is $94529 +in.representative_income 94533 Representative total house income in the dwelling unit is $94533 +in.representative_income 94541 Representative total house income in the dwelling unit is $94541 +in.representative_income 94550 Representative total house income in the dwelling unit is $94550 +in.representative_income 94556 Representative total house income in the dwelling unit is $94556 +in.representative_income 94570 Representative total house income in the dwelling unit is $94570 +in.representative_income 94571 Representative total house income in the dwelling unit is $94571 +in.representative_income 94577 Representative total house income in the dwelling unit is $94577 +in.representative_income 94582 Representative total house income in the dwelling unit is $94582 +in.representative_income 94584 Representative total house income in the dwelling unit is $94584 +in.representative_income 94598 Representative total house income in the dwelling unit is $94598 +in.representative_income 94603 Representative total house income in the dwelling unit is $94603 +in.representative_income 94607 Representative total house income in the dwelling unit is $94607 +in.representative_income 94627 Representative total house income in the dwelling unit is $94627 +in.representative_income 94649 Representative total house income in the dwelling unit is $94649 +in.representative_income 94651 Representative total house income in the dwelling unit is $94651 +in.representative_income 94661 Representative total house income in the dwelling unit is $94661 +in.representative_income 94677 Representative total house income in the dwelling unit is $94677 +in.representative_income 94678 Representative total house income in the dwelling unit is $94678 +in.representative_income 94687 Representative total house income in the dwelling unit is $94687 +in.representative_income 94689 Representative total house income in the dwelling unit is $94689 +in.representative_income 94704 Representative total house income in the dwelling unit is $94704 +in.representative_income 94731 Representative total house income in the dwelling unit is $94731 +in.representative_income 94735 Representative total house income in the dwelling unit is $94735 +in.representative_income 94739 Representative total house income in the dwelling unit is $94739 +in.representative_income 94741 Representative total house income in the dwelling unit is $94741 +in.representative_income 94752 Representative total house income in the dwelling unit is $94752 +in.representative_income 94758 Representative total house income in the dwelling unit is $94758 +in.representative_income 94767 Representative total house income in the dwelling unit is $94767 +in.representative_income 94770 Representative total house income in the dwelling unit is $94770 +in.representative_income 94783 Representative total house income in the dwelling unit is $94783 +in.representative_income 94784 Representative total house income in the dwelling unit is $94784 +in.representative_income 94786 Representative total house income in the dwelling unit is $94786 +in.representative_income 94790 Representative total house income in the dwelling unit is $94790 +in.representative_income 94801 Representative total house income in the dwelling unit is $94801 +in.representative_income 94809 Representative total house income in the dwelling unit is $94809 +in.representative_income 94822 Representative total house income in the dwelling unit is $94822 +in.representative_income 94824 Representative total house income in the dwelling unit is $94824 +in.representative_income 94830 Representative total house income in the dwelling unit is $94830 +in.representative_income 94847 Representative total house income in the dwelling unit is $94847 +in.representative_income 94852 Representative total house income in the dwelling unit is $94852 +in.representative_income 94853 Representative total house income in the dwelling unit is $94853 +in.representative_income 94865 Representative total house income in the dwelling unit is $94865 +in.representative_income 94873 Representative total house income in the dwelling unit is $94873 +in.representative_income 94880 Representative total house income in the dwelling unit is $94880 +in.representative_income 94893 Representative total house income in the dwelling unit is $94893 +in.representative_income 94894 Representative total house income in the dwelling unit is $94894 +in.representative_income 94898 Representative total house income in the dwelling unit is $94898 +in.representative_income 94913 Representative total house income in the dwelling unit is $94913 +in.representative_income 94914 Representative total house income in the dwelling unit is $94914 +in.representative_income 94924 Representative total house income in the dwelling unit is $94924 +in.representative_income 94925 Representative total house income in the dwelling unit is $94925 +in.representative_income 94928 Representative total house income in the dwelling unit is $94928 +in.representative_income 94947 Representative total house income in the dwelling unit is $94947 +in.representative_income 94954 Representative total house income in the dwelling unit is $94954 +in.representative_income 94967 Representative total house income in the dwelling unit is $94967 +in.representative_income 94973 Representative total house income in the dwelling unit is $94973 +in.representative_income 94986 Representative total house income in the dwelling unit is $94986 +in.representative_income 94997 Representative total house income in the dwelling unit is $94997 +in.representative_income 95000 Representative total house income in the dwelling unit is $95000 +in.representative_income 95017 Representative total house income in the dwelling unit is $95017 +in.representative_income 95020 Representative total house income in the dwelling unit is $95020 +in.representative_income 95022 Representative total house income in the dwelling unit is $95022 +in.representative_income 95038 Representative total house income in the dwelling unit is $95038 +in.representative_income 95052 Representative total house income in the dwelling unit is $95052 +in.representative_income 95054 Representative total house income in the dwelling unit is $95054 +in.representative_income 95055 Representative total house income in the dwelling unit is $95055 +in.representative_income 95065 Representative total house income in the dwelling unit is $95065 +in.representative_income 95069 Representative total house income in the dwelling unit is $95069 +in.representative_income 95073 Representative total house income in the dwelling unit is $95073 +in.representative_income 95081 Representative total house income in the dwelling unit is $95081 +in.representative_income 95083 Representative total house income in the dwelling unit is $95083 +in.representative_income 95099 Representative total house income in the dwelling unit is $95099 +in.representative_income 95107 Representative total house income in the dwelling unit is $95107 +in.representative_income 95114 Representative total house income in the dwelling unit is $95114 +in.representative_income 95123 Representative total house income in the dwelling unit is $95123 +in.representative_income 95126 Representative total house income in the dwelling unit is $95126 +in.representative_income 95135 Representative total house income in the dwelling unit is $95135 +in.representative_income 95136 Representative total house income in the dwelling unit is $95136 +in.representative_income 95151 Representative total house income in the dwelling unit is $95151 +in.representative_income 95156 Representative total house income in the dwelling unit is $95156 +in.representative_income 95162 Representative total house income in the dwelling unit is $95162 +in.representative_income 95168 Representative total house income in the dwelling unit is $95168 +in.representative_income 95173 Representative total house income in the dwelling unit is $95173 +in.representative_income 95176 Representative total house income in the dwelling unit is $95176 +in.representative_income 95178 Representative total house income in the dwelling unit is $95178 +in.representative_income 95189 Representative total house income in the dwelling unit is $95189 +in.representative_income 95194 Representative total house income in the dwelling unit is $95194 +in.representative_income 95199 Representative total house income in the dwelling unit is $95199 +in.representative_income 95203 Representative total house income in the dwelling unit is $95203 +in.representative_income 95206 Representative total house income in the dwelling unit is $95206 +in.representative_income 95212 Representative total house income in the dwelling unit is $95212 +in.representative_income 95215 Representative total house income in the dwelling unit is $95215 +in.representative_income 95231 Representative total house income in the dwelling unit is $95231 +in.representative_income 95232 Representative total house income in the dwelling unit is $95232 +in.representative_income 95234 Representative total house income in the dwelling unit is $95234 +in.representative_income 95247 Representative total house income in the dwelling unit is $95247 +in.representative_income 95254 Representative total house income in the dwelling unit is $95254 +in.representative_income 95257 Representative total house income in the dwelling unit is $95257 +in.representative_income 95277 Representative total house income in the dwelling unit is $95277 +in.representative_income 95283 Representative total house income in the dwelling unit is $95283 +in.representative_income 95286 Representative total house income in the dwelling unit is $95286 +in.representative_income 95287 Representative total house income in the dwelling unit is $95287 +in.representative_income 95290 Representative total house income in the dwelling unit is $95290 +in.representative_income 95297 Representative total house income in the dwelling unit is $95297 +in.representative_income 95306 Representative total house income in the dwelling unit is $95306 +in.representative_income 95312 Representative total house income in the dwelling unit is $95312 +in.representative_income 95322 Representative total house income in the dwelling unit is $95322 +in.representative_income 95331 Representative total house income in the dwelling unit is $95331 +in.representative_income 95336 Representative total house income in the dwelling unit is $95336 +in.representative_income 95348 Representative total house income in the dwelling unit is $95348 +in.representative_income 95354 Representative total house income in the dwelling unit is $95354 +in.representative_income 95358 Representative total house income in the dwelling unit is $95358 +in.representative_income 95361 Representative total house income in the dwelling unit is $95361 +in.representative_income 95365 Representative total house income in the dwelling unit is $95365 +in.representative_income 95378 Representative total house income in the dwelling unit is $95378 +in.representative_income 95389 Representative total house income in the dwelling unit is $95389 +in.representative_income 95390 Representative total house income in the dwelling unit is $95390 +in.representative_income 95405 Representative total house income in the dwelling unit is $95405 +in.representative_income 95406 Representative total house income in the dwelling unit is $95406 +in.representative_income 95409 Representative total house income in the dwelling unit is $95409 +in.representative_income 95420 Representative total house income in the dwelling unit is $95420 +in.representative_income 95427 Representative total house income in the dwelling unit is $95427 +in.representative_income 95430 Representative total house income in the dwelling unit is $95430 +in.representative_income 95442 Representative total house income in the dwelling unit is $95442 +in.representative_income 95446 Representative total house income in the dwelling unit is $95446 +in.representative_income 95459 Representative total house income in the dwelling unit is $95459 +in.representative_income 95460 Representative total house income in the dwelling unit is $95460 +in.representative_income 95463 Representative total house income in the dwelling unit is $95463 +in.representative_income 95513 Representative total house income in the dwelling unit is $95513 +in.representative_income 95514 Representative total house income in the dwelling unit is $95514 +in.representative_income 95522 Representative total house income in the dwelling unit is $95522 +in.representative_income 95526 Representative total house income in the dwelling unit is $95526 +in.representative_income 95536 Representative total house income in the dwelling unit is $95536 +in.representative_income 95538 Representative total house income in the dwelling unit is $95538 +in.representative_income 95542 Representative total house income in the dwelling unit is $95542 +in.representative_income 95545 Representative total house income in the dwelling unit is $95545 +in.representative_income 95547 Representative total house income in the dwelling unit is $95547 +in.representative_income 95548 Representative total house income in the dwelling unit is $95548 +in.representative_income 95560 Representative total house income in the dwelling unit is $95560 +in.representative_income 95580 Representative total house income in the dwelling unit is $95580 +in.representative_income 95589 Representative total house income in the dwelling unit is $95589 +in.representative_income 95616 Representative total house income in the dwelling unit is $95616 +in.representative_income 95622 Representative total house income in the dwelling unit is $95622 +in.representative_income 95633 Representative total house income in the dwelling unit is $95633 +in.representative_income 95644 Representative total house income in the dwelling unit is $95644 +in.representative_income 95652 Representative total house income in the dwelling unit is $95652 +in.representative_income 95655 Representative total house income in the dwelling unit is $95655 +in.representative_income 95661 Representative total house income in the dwelling unit is $95661 +in.representative_income 95665 Representative total house income in the dwelling unit is $95665 +in.representative_income 95718 Representative total house income in the dwelling unit is $95718 +in.representative_income 95721 Representative total house income in the dwelling unit is $95721 +in.representative_income 95730 Representative total house income in the dwelling unit is $95730 +in.representative_income 95737 Representative total house income in the dwelling unit is $95737 +in.representative_income 95751 Representative total house income in the dwelling unit is $95751 +in.representative_income 95752 Representative total house income in the dwelling unit is $95752 +in.representative_income 95759 Representative total house income in the dwelling unit is $95759 +in.representative_income 95762 Representative total house income in the dwelling unit is $95762 +in.representative_income 95772 Representative total house income in the dwelling unit is $95772 +in.representative_income 95806 Representative total house income in the dwelling unit is $95806 +in.representative_income 95816 Representative total house income in the dwelling unit is $95816 +in.representative_income 95822 Representative total house income in the dwelling unit is $95822 +in.representative_income 95838 Representative total house income in the dwelling unit is $95838 +in.representative_income 95839 Representative total house income in the dwelling unit is $95839 +in.representative_income 95853 Representative total house income in the dwelling unit is $95853 +in.representative_income 95859 Representative total house income in the dwelling unit is $95859 +in.representative_income 95863 Representative total house income in the dwelling unit is $95863 +in.representative_income 95864 Representative total house income in the dwelling unit is $95864 +in.representative_income 95884 Representative total house income in the dwelling unit is $95884 +in.representative_income 95891 Representative total house income in the dwelling unit is $95891 +in.representative_income 95892 Representative total house income in the dwelling unit is $95892 +in.representative_income 95912 Representative total house income in the dwelling unit is $95912 +in.representative_income 95913 Representative total house income in the dwelling unit is $95913 +in.representative_income 95925 Representative total house income in the dwelling unit is $95925 +in.representative_income 95935 Representative total house income in the dwelling unit is $95935 +in.representative_income 95945 Representative total house income in the dwelling unit is $95945 +in.representative_income 95946 Representative total house income in the dwelling unit is $95946 +in.representative_income 95964 Representative total house income in the dwelling unit is $95964 +in.representative_income 95966 Representative total house income in the dwelling unit is $95966 +in.representative_income 95967 Representative total house income in the dwelling unit is $95967 +in.representative_income 95969 Representative total house income in the dwelling unit is $95969 +in.representative_income 95974 Representative total house income in the dwelling unit is $95974 +in.representative_income 95977 Representative total house income in the dwelling unit is $95977 +in.representative_income 95984 Representative total house income in the dwelling unit is $95984 +in.representative_income 95990 Representative total house income in the dwelling unit is $95990 +in.representative_income 95994 Representative total house income in the dwelling unit is $95994 +in.representative_income 96004 Representative total house income in the dwelling unit is $96004 +in.representative_income 96009 Representative total house income in the dwelling unit is $96009 +in.representative_income 96014 Representative total house income in the dwelling unit is $96014 +in.representative_income 96028 Representative total house income in the dwelling unit is $96028 +in.representative_income 96054 Representative total house income in the dwelling unit is $96054 +in.representative_income 96065 Representative total house income in the dwelling unit is $96065 +in.representative_income 96074 Representative total house income in the dwelling unit is $96074 +in.representative_income 96075 Representative total house income in the dwelling unit is $96075 +in.representative_income 96096 Representative total house income in the dwelling unit is $96096 +in.representative_income 96118 Representative total house income in the dwelling unit is $96118 +in.representative_income 96127 Representative total house income in the dwelling unit is $96127 +in.representative_income 96128 Representative total house income in the dwelling unit is $96128 +in.representative_income 96132 Representative total house income in the dwelling unit is $96132 +in.representative_income 96133 Representative total house income in the dwelling unit is $96133 +in.representative_income 96161 Representative total house income in the dwelling unit is $96161 +in.representative_income 96166 Representative total house income in the dwelling unit is $96166 +in.representative_income 96174 Representative total house income in the dwelling unit is $96174 +in.representative_income 96176 Representative total house income in the dwelling unit is $96176 +in.representative_income 96180 Representative total house income in the dwelling unit is $96180 +in.representative_income 96181 Representative total house income in the dwelling unit is $96181 +in.representative_income 96201 Representative total house income in the dwelling unit is $96201 +in.representative_income 96216 Representative total house income in the dwelling unit is $96216 +in.representative_income 96233 Representative total house income in the dwelling unit is $96233 +in.representative_income 96234 Representative total house income in the dwelling unit is $96234 +in.representative_income 96265 Representative total house income in the dwelling unit is $96265 +in.representative_income 96267 Representative total house income in the dwelling unit is $96267 +in.representative_income 96270 Representative total house income in the dwelling unit is $96270 +in.representative_income 96285 Representative total house income in the dwelling unit is $96285 +in.representative_income 96288 Representative total house income in the dwelling unit is $96288 +in.representative_income 96337 Representative total house income in the dwelling unit is $96337 +in.representative_income 96349 Representative total house income in the dwelling unit is $96349 +in.representative_income 96368 Representative total house income in the dwelling unit is $96368 +in.representative_income 96378 Representative total house income in the dwelling unit is $96378 +in.representative_income 96391 Representative total house income in the dwelling unit is $96391 +in.representative_income 96396 Representative total house income in the dwelling unit is $96396 +in.representative_income 96400 Representative total house income in the dwelling unit is $96400 +in.representative_income 96417 Representative total house income in the dwelling unit is $96417 +in.representative_income 96428 Representative total house income in the dwelling unit is $96428 +in.representative_income 96441 Representative total house income in the dwelling unit is $96441 +in.representative_income 96444 Representative total house income in the dwelling unit is $96444 +in.representative_income 96449 Representative total house income in the dwelling unit is $96449 +in.representative_income 96469 Representative total house income in the dwelling unit is $96469 +in.representative_income 96474 Representative total house income in the dwelling unit is $96474 +in.representative_income 96479 Representative total house income in the dwelling unit is $96479 +in.representative_income 96486 Representative total house income in the dwelling unit is $96486 +in.representative_income 96494 Representative total house income in the dwelling unit is $96494 +in.representative_income 96497 Representative total house income in the dwelling unit is $96497 +in.representative_income 96503 Representative total house income in the dwelling unit is $96503 +in.representative_income 96519 Representative total house income in the dwelling unit is $96519 +in.representative_income 96523 Representative total house income in the dwelling unit is $96523 +in.representative_income 96544 Representative total house income in the dwelling unit is $96544 +in.representative_income 96549 Representative total house income in the dwelling unit is $96549 +in.representative_income 96570 Representative total house income in the dwelling unit is $96570 +in.representative_income 96594 Representative total house income in the dwelling unit is $96594 +in.representative_income 96602 Representative total house income in the dwelling unit is $96602 +in.representative_income 96611 Representative total house income in the dwelling unit is $96611 +in.representative_income 96612 Representative total house income in the dwelling unit is $96612 +in.representative_income 96615 Representative total house income in the dwelling unit is $96615 +in.representative_income 96616 Representative total house income in the dwelling unit is $96616 +in.representative_income 96632 Representative total house income in the dwelling unit is $96632 +in.representative_income 96643 Representative total house income in the dwelling unit is $96643 +in.representative_income 96644 Representative total house income in the dwelling unit is $96644 +in.representative_income 96647 Representative total house income in the dwelling unit is $96647 +in.representative_income 96671 Representative total house income in the dwelling unit is $96671 +in.representative_income 96675 Representative total house income in the dwelling unit is $96675 +in.representative_income 96696 Representative total house income in the dwelling unit is $96696 +in.representative_income 96702 Representative total house income in the dwelling unit is $96702 +in.representative_income 96707 Representative total house income in the dwelling unit is $96707 +in.representative_income 96717 Representative total house income in the dwelling unit is $96717 +in.representative_income 96724 Representative total house income in the dwelling unit is $96724 +in.representative_income 96738 Representative total house income in the dwelling unit is $96738 +in.representative_income 96740 Representative total house income in the dwelling unit is $96740 +in.representative_income 96750 Representative total house income in the dwelling unit is $96750 +in.representative_income 96762 Representative total house income in the dwelling unit is $96762 +in.representative_income 96772 Representative total house income in the dwelling unit is $96772 +in.representative_income 96807 Representative total house income in the dwelling unit is $96807 +in.representative_income 96810 Representative total house income in the dwelling unit is $96810 +in.representative_income 96813 Representative total house income in the dwelling unit is $96813 +in.representative_income 96825 Representative total house income in the dwelling unit is $96825 +in.representative_income 96833 Representative total house income in the dwelling unit is $96833 +in.representative_income 96853 Representative total house income in the dwelling unit is $96853 +in.representative_income 96873 Representative total house income in the dwelling unit is $96873 +in.representative_income 96879 Representative total house income in the dwelling unit is $96879 +in.representative_income 96893 Representative total house income in the dwelling unit is $96893 +in.representative_income 96918 Representative total house income in the dwelling unit is $96918 +in.representative_income 96923 Representative total house income in the dwelling unit is $96923 +in.representative_income 96932 Representative total house income in the dwelling unit is $96932 +in.representative_income 96937 Representative total house income in the dwelling unit is $96937 +in.representative_income 96950 Representative total house income in the dwelling unit is $96950 +in.representative_income 96956 Representative total house income in the dwelling unit is $96956 +in.representative_income 96974 Representative total house income in the dwelling unit is $96974 +in.representative_income 96984 Representative total house income in the dwelling unit is $96984 +in.representative_income 97008 Representative total house income in the dwelling unit is $97008 +in.representative_income 97024 Representative total house income in the dwelling unit is $97024 +in.representative_income 97026 Representative total house income in the dwelling unit is $97026 +in.representative_income 97040 Representative total house income in the dwelling unit is $97040 +in.representative_income 97041 Representative total house income in the dwelling unit is $97041 +in.representative_income 97048 Representative total house income in the dwelling unit is $97048 +in.representative_income 97050 Representative total house income in the dwelling unit is $97050 +in.representative_income 97055 Representative total house income in the dwelling unit is $97055 +in.representative_income 97060 Representative total house income in the dwelling unit is $97060 +in.representative_income 97075 Representative total house income in the dwelling unit is $97075 +in.representative_income 97076 Representative total house income in the dwelling unit is $97076 +in.representative_income 97105 Representative total house income in the dwelling unit is $97105 +in.representative_income 97108 Representative total house income in the dwelling unit is $97108 +in.representative_income 97111 Representative total house income in the dwelling unit is $97111 +in.representative_income 97122 Representative total house income in the dwelling unit is $97122 +in.representative_income 97125 Representative total house income in the dwelling unit is $97125 +in.representative_income 97129 Representative total house income in the dwelling unit is $97129 +in.representative_income 97136 Representative total house income in the dwelling unit is $97136 +in.representative_income 97146 Representative total house income in the dwelling unit is $97146 +in.representative_income 97148 Representative total house income in the dwelling unit is $97148 +in.representative_income 97163 Representative total house income in the dwelling unit is $97163 +in.representative_income 97176 Representative total house income in the dwelling unit is $97176 +in.representative_income 97235 Representative total house income in the dwelling unit is $97235 +in.representative_income 97243 Representative total house income in the dwelling unit is $97243 +in.representative_income 97253 Representative total house income in the dwelling unit is $97253 +in.representative_income 97254 Representative total house income in the dwelling unit is $97254 +in.representative_income 97266 Representative total house income in the dwelling unit is $97266 +in.representative_income 97277 Representative total house income in the dwelling unit is $97277 +in.representative_income 97287 Representative total house income in the dwelling unit is $97287 +in.representative_income 97340 Representative total house income in the dwelling unit is $97340 +in.representative_income 97350 Representative total house income in the dwelling unit is $97350 +in.representative_income 97362 Representative total house income in the dwelling unit is $97362 +in.representative_income 97369 Representative total house income in the dwelling unit is $97369 +in.representative_income 97370 Representative total house income in the dwelling unit is $97370 +in.representative_income 97372 Representative total house income in the dwelling unit is $97372 +in.representative_income 97377 Representative total house income in the dwelling unit is $97377 +in.representative_income 97378 Representative total house income in the dwelling unit is $97378 +in.representative_income 97382 Representative total house income in the dwelling unit is $97382 +in.representative_income 97390 Representative total house income in the dwelling unit is $97390 +in.representative_income 97408 Representative total house income in the dwelling unit is $97408 +in.representative_income 97445 Representative total house income in the dwelling unit is $97445 +in.representative_income 97453 Representative total house income in the dwelling unit is $97453 +in.representative_income 97458 Representative total house income in the dwelling unit is $97458 +in.representative_income 97459 Representative total house income in the dwelling unit is $97459 +in.representative_income 97469 Representative total house income in the dwelling unit is $97469 +in.representative_income 97472 Representative total house income in the dwelling unit is $97472 +in.representative_income 97479 Representative total house income in the dwelling unit is $97479 +in.representative_income 97493 Representative total house income in the dwelling unit is $97493 +in.representative_income 97501 Representative total house income in the dwelling unit is $97501 +in.representative_income 97503 Representative total house income in the dwelling unit is $97503 +in.representative_income 97512 Representative total house income in the dwelling unit is $97512 +in.representative_income 97522 Representative total house income in the dwelling unit is $97522 +in.representative_income 97551 Representative total house income in the dwelling unit is $97551 +in.representative_income 97566 Representative total house income in the dwelling unit is $97566 +in.representative_income 97575 Representative total house income in the dwelling unit is $97575 +in.representative_income 97577 Representative total house income in the dwelling unit is $97577 +in.representative_income 97580 Representative total house income in the dwelling unit is $97580 +in.representative_income 97599 Representative total house income in the dwelling unit is $97599 +in.representative_income 97609 Representative total house income in the dwelling unit is $97609 +in.representative_income 97614 Representative total house income in the dwelling unit is $97614 +in.representative_income 97615 Representative total house income in the dwelling unit is $97615 +in.representative_income 97617 Representative total house income in the dwelling unit is $97617 +in.representative_income 97627 Representative total house income in the dwelling unit is $97627 +in.representative_income 97631 Representative total house income in the dwelling unit is $97631 +in.representative_income 97657 Representative total house income in the dwelling unit is $97657 +in.representative_income 97669 Representative total house income in the dwelling unit is $97669 +in.representative_income 97674 Representative total house income in the dwelling unit is $97674 +in.representative_income 97679 Representative total house income in the dwelling unit is $97679 +in.representative_income 97681 Representative total house income in the dwelling unit is $97681 +in.representative_income 97684 Representative total house income in the dwelling unit is $97684 +in.representative_income 97709 Representative total house income in the dwelling unit is $97709 +in.representative_income 97711 Representative total house income in the dwelling unit is $97711 +in.representative_income 97717 Representative total house income in the dwelling unit is $97717 +in.representative_income 97730 Representative total house income in the dwelling unit is $97730 +in.representative_income 97748 Representative total house income in the dwelling unit is $97748 +in.representative_income 97750 Representative total house income in the dwelling unit is $97750 +in.representative_income 97762 Representative total house income in the dwelling unit is $97762 +in.representative_income 97782 Representative total house income in the dwelling unit is $97782 +in.representative_income 97791 Representative total house income in the dwelling unit is $97791 +in.representative_income 97793 Representative total house income in the dwelling unit is $97793 +in.representative_income 97833 Representative total house income in the dwelling unit is $97833 +in.representative_income 97863 Representative total house income in the dwelling unit is $97863 +in.representative_income 97867 Representative total house income in the dwelling unit is $97867 +in.representative_income 97879 Representative total house income in the dwelling unit is $97879 +in.representative_income 97883 Representative total house income in the dwelling unit is $97883 +in.representative_income 97884 Representative total house income in the dwelling unit is $97884 +in.representative_income 97891 Representative total house income in the dwelling unit is $97891 +in.representative_income 97898 Representative total house income in the dwelling unit is $97898 +in.representative_income 97899 Representative total house income in the dwelling unit is $97899 +in.representative_income 97934 Representative total house income in the dwelling unit is $97934 +in.representative_income 97953 Representative total house income in the dwelling unit is $97953 +in.representative_income 97973 Representative total house income in the dwelling unit is $97973 +in.representative_income 97983 Representative total house income in the dwelling unit is $97983 +in.representative_income 97984 Representative total house income in the dwelling unit is $97984 +in.representative_income 97988 Representative total house income in the dwelling unit is $97988 +in.representative_income 97994 Representative total house income in the dwelling unit is $97994 +in.representative_income 97999 Representative total house income in the dwelling unit is $97999 +in.representative_income 98006 Representative total house income in the dwelling unit is $98006 +in.representative_income 98010 Representative total house income in the dwelling unit is $98010 +in.representative_income 98035 Representative total house income in the dwelling unit is $98035 +in.representative_income 98036 Representative total house income in the dwelling unit is $98036 +in.representative_income 98078 Representative total house income in the dwelling unit is $98078 +in.representative_income 98085 Representative total house income in the dwelling unit is $98085 +in.representative_income 98091 Representative total house income in the dwelling unit is $98091 +in.representative_income 98107 Representative total house income in the dwelling unit is $98107 +in.representative_income 98113 Representative total house income in the dwelling unit is $98113 +in.representative_income 98139 Representative total house income in the dwelling unit is $98139 +in.representative_income 98143 Representative total house income in the dwelling unit is $98143 +in.representative_income 98167 Representative total house income in the dwelling unit is $98167 +in.representative_income 98183 Representative total house income in the dwelling unit is $98183 +in.representative_income 98186 Representative total house income in the dwelling unit is $98186 +in.representative_income 98194 Representative total house income in the dwelling unit is $98194 +in.representative_income 98206 Representative total house income in the dwelling unit is $98206 +in.representative_income 98215 Representative total house income in the dwelling unit is $98215 +in.representative_income 98221 Representative total house income in the dwelling unit is $98221 +in.representative_income 98287 Representative total house income in the dwelling unit is $98287 +in.representative_income 98298 Representative total house income in the dwelling unit is $98298 +in.representative_income 98318 Representative total house income in the dwelling unit is $98318 +in.representative_income 98323 Representative total house income in the dwelling unit is $98323 +in.representative_income 98327 Representative total house income in the dwelling unit is $98327 +in.representative_income 98366 Representative total house income in the dwelling unit is $98366 +in.representative_income 98388 Representative total house income in the dwelling unit is $98388 +in.representative_income 98395 Representative total house income in the dwelling unit is $98395 +in.representative_income 98400 Representative total house income in the dwelling unit is $98400 +in.representative_income 98431 Representative total house income in the dwelling unit is $98431 +in.representative_income 98435 Representative total house income in the dwelling unit is $98435 +in.representative_income 98469 Representative total house income in the dwelling unit is $98469 +in.representative_income 98477 Representative total house income in the dwelling unit is $98477 +in.representative_income 98489 Representative total house income in the dwelling unit is $98489 +in.representative_income 98500 Representative total house income in the dwelling unit is $98500 +in.representative_income 98503 Representative total house income in the dwelling unit is $98503 +in.representative_income 98538 Representative total house income in the dwelling unit is $98538 +in.representative_income 98543 Representative total house income in the dwelling unit is $98543 +in.representative_income 98590 Representative total house income in the dwelling unit is $98590 +in.representative_income 98606 Representative total house income in the dwelling unit is $98606 +in.representative_income 98607 Representative total house income in the dwelling unit is $98607 +in.representative_income 98647 Representative total house income in the dwelling unit is $98647 +in.representative_income 98648 Representative total house income in the dwelling unit is $98648 +in.representative_income 98650 Representative total house income in the dwelling unit is $98650 +in.representative_income 98680 Representative total house income in the dwelling unit is $98680 +in.representative_income 98682 Representative total house income in the dwelling unit is $98682 +in.representative_income 98691 Representative total house income in the dwelling unit is $98691 +in.representative_income 98701 Representative total house income in the dwelling unit is $98701 +in.representative_income 98710 Representative total house income in the dwelling unit is $98710 +in.representative_income 98711 Representative total house income in the dwelling unit is $98711 +in.representative_income 98734 Representative total house income in the dwelling unit is $98734 +in.representative_income 98742 Representative total house income in the dwelling unit is $98742 +in.representative_income 98755 Representative total house income in the dwelling unit is $98755 +in.representative_income 98758 Representative total house income in the dwelling unit is $98758 +in.representative_income 98759 Representative total house income in the dwelling unit is $98759 +in.representative_income 98762 Representative total house income in the dwelling unit is $98762 +in.representative_income 98790 Representative total house income in the dwelling unit is $98790 +in.representative_income 98792 Representative total house income in the dwelling unit is $98792 +in.representative_income 98811 Representative total house income in the dwelling unit is $98811 +in.representative_income 98813 Representative total house income in the dwelling unit is $98813 +in.representative_income 98816 Representative total house income in the dwelling unit is $98816 +in.representative_income 98843 Representative total house income in the dwelling unit is $98843 +in.representative_income 98863 Representative total house income in the dwelling unit is $98863 +in.representative_income 98865 Representative total house income in the dwelling unit is $98865 +in.representative_income 98874 Representative total house income in the dwelling unit is $98874 +in.representative_income 98893 Representative total house income in the dwelling unit is $98893 +in.representative_income 98901 Representative total house income in the dwelling unit is $98901 +in.representative_income 98906 Representative total house income in the dwelling unit is $98906 +in.representative_income 98917 Representative total house income in the dwelling unit is $98917 +in.representative_income 98922 Representative total house income in the dwelling unit is $98922 +in.representative_income 98928 Representative total house income in the dwelling unit is $98928 +in.representative_income 98971 Representative total house income in the dwelling unit is $98971 +in.representative_income 98972 Representative total house income in the dwelling unit is $98972 +in.representative_income 98994 Representative total house income in the dwelling unit is $98994 +in.representative_income 99014 Representative total house income in the dwelling unit is $99014 +in.representative_income 99019 Representative total house income in the dwelling unit is $99019 +in.representative_income 99025 Representative total house income in the dwelling unit is $99025 +in.representative_income 99026 Representative total house income in the dwelling unit is $99026 +in.representative_income 99028 Representative total house income in the dwelling unit is $99028 +in.representative_income 99035 Representative total house income in the dwelling unit is $99035 +in.representative_income 99055 Representative total house income in the dwelling unit is $99055 +in.representative_income 99071 Representative total house income in the dwelling unit is $99071 +in.representative_income 99079 Representative total house income in the dwelling unit is $99079 +in.representative_income 99090 Representative total house income in the dwelling unit is $99090 +in.representative_income 99095 Representative total house income in the dwelling unit is $99095 +in.representative_income 99115 Representative total house income in the dwelling unit is $99115 +in.representative_income 99122 Representative total house income in the dwelling unit is $99122 +in.representative_income 99126 Representative total house income in the dwelling unit is $99126 +in.representative_income 99133 Representative total house income in the dwelling unit is $99133 +in.representative_income 99176 Representative total house income in the dwelling unit is $99176 +in.representative_income 99187 Representative total house income in the dwelling unit is $99187 +in.representative_income 99196 Representative total house income in the dwelling unit is $99196 +in.representative_income 99207 Representative total house income in the dwelling unit is $99207 +in.representative_income 99226 Representative total house income in the dwelling unit is $99226 +in.representative_income 99238 Representative total house income in the dwelling unit is $99238 +in.representative_income 99246 Representative total house income in the dwelling unit is $99246 +in.representative_income 99294 Representative total house income in the dwelling unit is $99294 +in.representative_income 99295 Representative total house income in the dwelling unit is $99295 +in.representative_income 99297 Representative total house income in the dwelling unit is $99297 +in.representative_income 99327 Representative total house income in the dwelling unit is $99327 +in.representative_income 99329 Representative total house income in the dwelling unit is $99329 +in.representative_income 99344 Representative total house income in the dwelling unit is $99344 +in.representative_income 99370 Representative total house income in the dwelling unit is $99370 +in.representative_income 99381 Representative total house income in the dwelling unit is $99381 +in.representative_income 99397 Representative total house income in the dwelling unit is $99397 +in.representative_income 99398 Representative total house income in the dwelling unit is $99398 +in.representative_income 99402 Representative total house income in the dwelling unit is $99402 +in.representative_income 99403 Representative total house income in the dwelling unit is $99403 +in.representative_income 99415 Representative total house income in the dwelling unit is $99415 +in.representative_income 99432 Representative total house income in the dwelling unit is $99432 +in.representative_income 99449 Representative total house income in the dwelling unit is $99449 +in.representative_income 99499 Representative total house income in the dwelling unit is $99499 +in.representative_income 99502 Representative total house income in the dwelling unit is $99502 +in.representative_income 99508 Representative total house income in the dwelling unit is $99508 +in.representative_income 99512 Representative total house income in the dwelling unit is $99512 +in.representative_income 99535 Representative total house income in the dwelling unit is $99535 +in.representative_income 99555 Representative total house income in the dwelling unit is $99555 +in.representative_income 99600 Representative total house income in the dwelling unit is $99600 +in.representative_income 99616 Representative total house income in the dwelling unit is $99616 +in.representative_income 99617 Representative total house income in the dwelling unit is $99617 +in.representative_income 99620 Representative total house income in the dwelling unit is $99620 +in.representative_income 99638 Representative total house income in the dwelling unit is $99638 +in.representative_income 99652 Representative total house income in the dwelling unit is $99652 +in.representative_income 99660 Representative total house income in the dwelling unit is $99660 +in.representative_income 99674 Representative total house income in the dwelling unit is $99674 +in.representative_income 99701 Representative total house income in the dwelling unit is $99701 +in.representative_income 99723 Representative total house income in the dwelling unit is $99723 +in.representative_income 99727 Representative total house income in the dwelling unit is $99727 +in.representative_income 99741 Representative total house income in the dwelling unit is $99741 +in.representative_income 99766 Representative total house income in the dwelling unit is $99766 +in.representative_income 99787 Representative total house income in the dwelling unit is $99787 +in.representative_income 99802 Representative total house income in the dwelling unit is $99802 +in.representative_income 99831 Representative total house income in the dwelling unit is $99831 +in.representative_income 99835 Representative total house income in the dwelling unit is $99835 +in.representative_income 99845 Representative total house income in the dwelling unit is $99845 +in.representative_income 99850 Representative total house income in the dwelling unit is $99850 +in.representative_income 99871 Representative total house income in the dwelling unit is $99871 +in.representative_income 99903 Representative total house income in the dwelling unit is $99903 +in.representative_income 99938 Representative total house income in the dwelling unit is $99938 +in.representative_income 99943 Representative total house income in the dwelling unit is $99943 +in.representative_income 99948 Representative total house income in the dwelling unit is $99948 +in.representative_income 99960 Representative total house income in the dwelling unit is $99960 +in.representative_income 99976 Representative total house income in the dwelling unit is $99976 +in.representative_income 100004 Representative total house income in the dwelling unit is $100004 +in.representative_income 100025 Representative total house income in the dwelling unit is $100025 +in.representative_income 100045 Representative total house income in the dwelling unit is $100045 +in.representative_income 100050 Representative total house income in the dwelling unit is $100050 +in.representative_income 100051 Representative total house income in the dwelling unit is $100051 +in.representative_income 100084 Representative total house income in the dwelling unit is $100084 +in.representative_income 100105 Representative total house income in the dwelling unit is $100105 +in.representative_income 100153 Representative total house income in the dwelling unit is $100153 +in.representative_income 100154 Representative total house income in the dwelling unit is $100154 +in.representative_income 100159 Representative total house income in the dwelling unit is $100159 +in.representative_income 100174 Representative total house income in the dwelling unit is $100174 +in.representative_income 100188 Representative total house income in the dwelling unit is $100188 +in.representative_income 100206 Representative total house income in the dwelling unit is $100206 +in.representative_income 100219 Representative total house income in the dwelling unit is $100219 +in.representative_income 100249 Representative total house income in the dwelling unit is $100249 +in.representative_income 100257 Representative total house income in the dwelling unit is $100257 +in.representative_income 100260 Representative total house income in the dwelling unit is $100260 +in.representative_income 100268 Representative total house income in the dwelling unit is $100268 +in.representative_income 100269 Representative total house income in the dwelling unit is $100269 +in.representative_income 100271 Representative total house income in the dwelling unit is $100271 +in.representative_income 100293 Representative total house income in the dwelling unit is $100293 +in.representative_income 100307 Representative total house income in the dwelling unit is $100307 +in.representative_income 100360 Representative total house income in the dwelling unit is $100360 +in.representative_income 100368 Representative total house income in the dwelling unit is $100368 +in.representative_income 100376 Representative total house income in the dwelling unit is $100376 +in.representative_income 100381 Representative total house income in the dwelling unit is $100381 +in.representative_income 100399 Representative total house income in the dwelling unit is $100399 +in.representative_income 100408 Representative total house income in the dwelling unit is $100408 +in.representative_income 100464 Representative total house income in the dwelling unit is $100464 +in.representative_income 100475 Representative total house income in the dwelling unit is $100475 +in.representative_income 100484 Representative total house income in the dwelling unit is $100484 +in.representative_income 100504 Representative total house income in the dwelling unit is $100504 +in.representative_income 100508 Representative total house income in the dwelling unit is $100508 +in.representative_income 100509 Representative total house income in the dwelling unit is $100509 +in.representative_income 100535 Representative total house income in the dwelling unit is $100535 +in.representative_income 100560 Representative total house income in the dwelling unit is $100560 +in.representative_income 100566 Representative total house income in the dwelling unit is $100566 +in.representative_income 100582 Representative total house income in the dwelling unit is $100582 +in.representative_income 100592 Representative total house income in the dwelling unit is $100592 +in.representative_income 100601 Representative total house income in the dwelling unit is $100601 +in.representative_income 100604 Representative total house income in the dwelling unit is $100604 +in.representative_income 100608 Representative total house income in the dwelling unit is $100608 +in.representative_income 100609 Representative total house income in the dwelling unit is $100609 +in.representative_income 100610 Representative total house income in the dwelling unit is $100610 +in.representative_income 100624 Representative total house income in the dwelling unit is $100624 +in.representative_income 100668 Representative total house income in the dwelling unit is $100668 +in.representative_income 100669 Representative total house income in the dwelling unit is $100669 +in.representative_income 100689 Representative total house income in the dwelling unit is $100689 +in.representative_income 100691 Representative total house income in the dwelling unit is $100691 +in.representative_income 100700 Representative total house income in the dwelling unit is $100700 +in.representative_income 100701 Representative total house income in the dwelling unit is $100701 +in.representative_income 100711 Representative total house income in the dwelling unit is $100711 +in.representative_income 100714 Representative total house income in the dwelling unit is $100714 +in.representative_income 100730 Representative total house income in the dwelling unit is $100730 +in.representative_income 100731 Representative total house income in the dwelling unit is $100731 +in.representative_income 100742 Representative total house income in the dwelling unit is $100742 +in.representative_income 100773 Representative total house income in the dwelling unit is $100773 +in.representative_income 100797 Representative total house income in the dwelling unit is $100797 +in.representative_income 100808 Representative total house income in the dwelling unit is $100808 +in.representative_income 100812 Representative total house income in the dwelling unit is $100812 +in.representative_income 100818 Representative total house income in the dwelling unit is $100818 +in.representative_income 100821 Representative total house income in the dwelling unit is $100821 +in.representative_income 100824 Representative total house income in the dwelling unit is $100824 +in.representative_income 100842 Representative total house income in the dwelling unit is $100842 +in.representative_income 100876 Representative total house income in the dwelling unit is $100876 +in.representative_income 100904 Representative total house income in the dwelling unit is $100904 +in.representative_income 100913 Representative total house income in the dwelling unit is $100913 +in.representative_income 100915 Representative total house income in the dwelling unit is $100915 +in.representative_income 100926 Representative total house income in the dwelling unit is $100926 +in.representative_income 100933 Representative total house income in the dwelling unit is $100933 +in.representative_income 100968 Representative total house income in the dwelling unit is $100968 +in.representative_income 100979 Representative total house income in the dwelling unit is $100979 +in.representative_income 100991 Representative total house income in the dwelling unit is $100991 +in.representative_income 101012 Representative total house income in the dwelling unit is $101012 +in.representative_income 101015 Representative total house income in the dwelling unit is $101015 +in.representative_income 101024 Representative total house income in the dwelling unit is $101024 +in.representative_income 101029 Representative total house income in the dwelling unit is $101029 +in.representative_income 101031 Representative total house income in the dwelling unit is $101031 +in.representative_income 101035 Representative total house income in the dwelling unit is $101035 +in.representative_income 101043 Representative total house income in the dwelling unit is $101043 +in.representative_income 101052 Representative total house income in the dwelling unit is $101052 +in.representative_income 101083 Representative total house income in the dwelling unit is $101083 +in.representative_income 101108 Representative total house income in the dwelling unit is $101108 +in.representative_income 101116 Representative total house income in the dwelling unit is $101116 +in.representative_income 101119 Representative total house income in the dwelling unit is $101119 +in.representative_income 101132 Representative total house income in the dwelling unit is $101132 +in.representative_income 101137 Representative total house income in the dwelling unit is $101137 +in.representative_income 101141 Representative total house income in the dwelling unit is $101141 +in.representative_income 101173 Representative total house income in the dwelling unit is $101173 +in.representative_income 101185 Representative total house income in the dwelling unit is $101185 +in.representative_income 101217 Representative total house income in the dwelling unit is $101217 +in.representative_income 101226 Representative total house income in the dwelling unit is $101226 +in.representative_income 101228 Representative total house income in the dwelling unit is $101228 +in.representative_income 101237 Representative total house income in the dwelling unit is $101237 +in.representative_income 101240 Representative total house income in the dwelling unit is $101240 +in.representative_income 101242 Representative total house income in the dwelling unit is $101242 +in.representative_income 101245 Representative total house income in the dwelling unit is $101245 +in.representative_income 101254 Representative total house income in the dwelling unit is $101254 +in.representative_income 101264 Representative total house income in the dwelling unit is $101264 +in.representative_income 101267 Representative total house income in the dwelling unit is $101267 +in.representative_income 101270 Representative total house income in the dwelling unit is $101270 +in.representative_income 101274 Representative total house income in the dwelling unit is $101274 +in.representative_income 101288 Representative total house income in the dwelling unit is $101288 +in.representative_income 101297 Representative total house income in the dwelling unit is $101297 +in.representative_income 101307 Representative total house income in the dwelling unit is $101307 +in.representative_income 101312 Representative total house income in the dwelling unit is $101312 +in.representative_income 101318 Representative total house income in the dwelling unit is $101318 +in.representative_income 101326 Representative total house income in the dwelling unit is $101326 +in.representative_income 101333 Representative total house income in the dwelling unit is $101333 +in.representative_income 101337 Representative total house income in the dwelling unit is $101337 +in.representative_income 101347 Representative total house income in the dwelling unit is $101347 +in.representative_income 101348 Representative total house income in the dwelling unit is $101348 +in.representative_income 101359 Representative total house income in the dwelling unit is $101359 +in.representative_income 101368 Representative total house income in the dwelling unit is $101368 +in.representative_income 101392 Representative total house income in the dwelling unit is $101392 +in.representative_income 101419 Representative total house income in the dwelling unit is $101419 +in.representative_income 101430 Representative total house income in the dwelling unit is $101430 +in.representative_income 101441 Representative total house income in the dwelling unit is $101441 +in.representative_income 101443 Representative total house income in the dwelling unit is $101443 +in.representative_income 101453 Representative total house income in the dwelling unit is $101453 +in.representative_income 101456 Representative total house income in the dwelling unit is $101456 +in.representative_income 101467 Representative total house income in the dwelling unit is $101467 +in.representative_income 101469 Representative total house income in the dwelling unit is $101469 +in.representative_income 101474 Representative total house income in the dwelling unit is $101474 +in.representative_income 101484 Representative total house income in the dwelling unit is $101484 +in.representative_income 101488 Representative total house income in the dwelling unit is $101488 +in.representative_income 101489 Representative total house income in the dwelling unit is $101489 +in.representative_income 101495 Representative total house income in the dwelling unit is $101495 +in.representative_income 101509 Representative total house income in the dwelling unit is $101509 +in.representative_income 101520 Representative total house income in the dwelling unit is $101520 +in.representative_income 101542 Representative total house income in the dwelling unit is $101542 +in.representative_income 101549 Representative total house income in the dwelling unit is $101549 +in.representative_income 101559 Representative total house income in the dwelling unit is $101559 +in.representative_income 101564 Representative total house income in the dwelling unit is $101564 +in.representative_income 101567 Representative total house income in the dwelling unit is $101567 +in.representative_income 101570 Representative total house income in the dwelling unit is $101570 +in.representative_income 101586 Representative total house income in the dwelling unit is $101586 +in.representative_income 101598 Representative total house income in the dwelling unit is $101598 +in.representative_income 101621 Representative total house income in the dwelling unit is $101621 +in.representative_income 101627 Representative total house income in the dwelling unit is $101627 +in.representative_income 101651 Representative total house income in the dwelling unit is $101651 +in.representative_income 101656 Representative total house income in the dwelling unit is $101656 +in.representative_income 101663 Representative total house income in the dwelling unit is $101663 +in.representative_income 101664 Representative total house income in the dwelling unit is $101664 +in.representative_income 101672 Representative total house income in the dwelling unit is $101672 +in.representative_income 101683 Representative total house income in the dwelling unit is $101683 +in.representative_income 101691 Representative total house income in the dwelling unit is $101691 +in.representative_income 101692 Representative total house income in the dwelling unit is $101692 +in.representative_income 101693 Representative total house income in the dwelling unit is $101693 +in.representative_income 101695 Representative total house income in the dwelling unit is $101695 +in.representative_income 101699 Representative total house income in the dwelling unit is $101699 +in.representative_income 101701 Representative total house income in the dwelling unit is $101701 +in.representative_income 101712 Representative total house income in the dwelling unit is $101712 +in.representative_income 101715 Representative total house income in the dwelling unit is $101715 +in.representative_income 101722 Representative total house income in the dwelling unit is $101722 +in.representative_income 101732 Representative total house income in the dwelling unit is $101732 +in.representative_income 101763 Representative total house income in the dwelling unit is $101763 +in.representative_income 101769 Representative total house income in the dwelling unit is $101769 +in.representative_income 101773 Representative total house income in the dwelling unit is $101773 +in.representative_income 101780 Representative total house income in the dwelling unit is $101780 +in.representative_income 101804 Representative total house income in the dwelling unit is $101804 +in.representative_income 101823 Representative total house income in the dwelling unit is $101823 +in.representative_income 101838 Representative total house income in the dwelling unit is $101838 +in.representative_income 101843 Representative total house income in the dwelling unit is $101843 +in.representative_income 101870 Representative total house income in the dwelling unit is $101870 +in.representative_income 101875 Representative total house income in the dwelling unit is $101875 +in.representative_income 101889 Representative total house income in the dwelling unit is $101889 +in.representative_income 101907 Representative total house income in the dwelling unit is $101907 +in.representative_income 101914 Representative total house income in the dwelling unit is $101914 +in.representative_income 101924 Representative total house income in the dwelling unit is $101924 +in.representative_income 101967 Representative total house income in the dwelling unit is $101967 +in.representative_income 101978 Representative total house income in the dwelling unit is $101978 +in.representative_income 101980 Representative total house income in the dwelling unit is $101980 +in.representative_income 101982 Representative total house income in the dwelling unit is $101982 +in.representative_income 101988 Representative total house income in the dwelling unit is $101988 +in.representative_income 101989 Representative total house income in the dwelling unit is $101989 +in.representative_income 101997 Representative total house income in the dwelling unit is $101997 +in.representative_income 102004 Representative total house income in the dwelling unit is $102004 +in.representative_income 102011 Representative total house income in the dwelling unit is $102011 +in.representative_income 102020 Representative total house income in the dwelling unit is $102020 +in.representative_income 102025 Representative total house income in the dwelling unit is $102025 +in.representative_income 102031 Representative total house income in the dwelling unit is $102031 +in.representative_income 102033 Representative total house income in the dwelling unit is $102033 +in.representative_income 102062 Representative total house income in the dwelling unit is $102062 +in.representative_income 102085 Representative total house income in the dwelling unit is $102085 +in.representative_income 102086 Representative total house income in the dwelling unit is $102086 +in.representative_income 102102 Representative total house income in the dwelling unit is $102102 +in.representative_income 102104 Representative total house income in the dwelling unit is $102104 +in.representative_income 102114 Representative total house income in the dwelling unit is $102114 +in.representative_income 102117 Representative total house income in the dwelling unit is $102117 +in.representative_income 102124 Representative total house income in the dwelling unit is $102124 +in.representative_income 102126 Representative total house income in the dwelling unit is $102126 +in.representative_income 102138 Representative total house income in the dwelling unit is $102138 +in.representative_income 102149 Representative total house income in the dwelling unit is $102149 +in.representative_income 102158 Representative total house income in the dwelling unit is $102158 +in.representative_income 102176 Representative total house income in the dwelling unit is $102176 +in.representative_income 102180 Representative total house income in the dwelling unit is $102180 +in.representative_income 102192 Representative total house income in the dwelling unit is $102192 +in.representative_income 102193 Representative total house income in the dwelling unit is $102193 +in.representative_income 102206 Representative total house income in the dwelling unit is $102206 +in.representative_income 102207 Representative total house income in the dwelling unit is $102207 +in.representative_income 102212 Representative total house income in the dwelling unit is $102212 +in.representative_income 102216 Representative total house income in the dwelling unit is $102216 +in.representative_income 102223 Representative total house income in the dwelling unit is $102223 +in.representative_income 102227 Representative total house income in the dwelling unit is $102227 +in.representative_income 102235 Representative total house income in the dwelling unit is $102235 +in.representative_income 102237 Representative total house income in the dwelling unit is $102237 +in.representative_income 102248 Representative total house income in the dwelling unit is $102248 +in.representative_income 102256 Representative total house income in the dwelling unit is $102256 +in.representative_income 102262 Representative total house income in the dwelling unit is $102262 +in.representative_income 102267 Representative total house income in the dwelling unit is $102267 +in.representative_income 102279 Representative total house income in the dwelling unit is $102279 +in.representative_income 102297 Representative total house income in the dwelling unit is $102297 +in.representative_income 102299 Representative total house income in the dwelling unit is $102299 +in.representative_income 102306 Representative total house income in the dwelling unit is $102306 +in.representative_income 102318 Representative total house income in the dwelling unit is $102318 +in.representative_income 102320 Representative total house income in the dwelling unit is $102320 +in.representative_income 102328 Representative total house income in the dwelling unit is $102328 +in.representative_income 102354 Representative total house income in the dwelling unit is $102354 +in.representative_income 102374 Representative total house income in the dwelling unit is $102374 +in.representative_income 102378 Representative total house income in the dwelling unit is $102378 +in.representative_income 102400 Representative total house income in the dwelling unit is $102400 +in.representative_income 102402 Representative total house income in the dwelling unit is $102402 +in.representative_income 102407 Representative total house income in the dwelling unit is $102407 +in.representative_income 102423 Representative total house income in the dwelling unit is $102423 +in.representative_income 102428 Representative total house income in the dwelling unit is $102428 +in.representative_income 102429 Representative total house income in the dwelling unit is $102429 +in.representative_income 102450 Representative total house income in the dwelling unit is $102450 +in.representative_income 102461 Representative total house income in the dwelling unit is $102461 +in.representative_income 102465 Representative total house income in the dwelling unit is $102465 +in.representative_income 102506 Representative total house income in the dwelling unit is $102506 +in.representative_income 102507 Representative total house income in the dwelling unit is $102507 +in.representative_income 102514 Representative total house income in the dwelling unit is $102514 +in.representative_income 102526 Representative total house income in the dwelling unit is $102526 +in.representative_income 102530 Representative total house income in the dwelling unit is $102530 +in.representative_income 102536 Representative total house income in the dwelling unit is $102536 +in.representative_income 102570 Representative total house income in the dwelling unit is $102570 +in.representative_income 102613 Representative total house income in the dwelling unit is $102613 +in.representative_income 102622 Representative total house income in the dwelling unit is $102622 +in.representative_income 102630 Representative total house income in the dwelling unit is $102630 +in.representative_income 102631 Representative total house income in the dwelling unit is $102631 +in.representative_income 102645 Representative total house income in the dwelling unit is $102645 +in.representative_income 102656 Representative total house income in the dwelling unit is $102656 +in.representative_income 102666 Representative total house income in the dwelling unit is $102666 +in.representative_income 102667 Representative total house income in the dwelling unit is $102667 +in.representative_income 102699 Representative total house income in the dwelling unit is $102699 +in.representative_income 102719 Representative total house income in the dwelling unit is $102719 +in.representative_income 102729 Representative total house income in the dwelling unit is $102729 +in.representative_income 102732 Representative total house income in the dwelling unit is $102732 +in.representative_income 102733 Representative total house income in the dwelling unit is $102733 +in.representative_income 102752 Representative total house income in the dwelling unit is $102752 +in.representative_income 102753 Representative total house income in the dwelling unit is $102753 +in.representative_income 102770 Representative total house income in the dwelling unit is $102770 +in.representative_income 102783 Representative total house income in the dwelling unit is $102783 +in.representative_income 102824 Representative total house income in the dwelling unit is $102824 +in.representative_income 102833 Representative total house income in the dwelling unit is $102833 +in.representative_income 102835 Representative total house income in the dwelling unit is $102835 +in.representative_income 102836 Representative total house income in the dwelling unit is $102836 +in.representative_income 102861 Representative total house income in the dwelling unit is $102861 +in.representative_income 102877 Representative total house income in the dwelling unit is $102877 +in.representative_income 102903 Representative total house income in the dwelling unit is $102903 +in.representative_income 102904 Representative total house income in the dwelling unit is $102904 +in.representative_income 102930 Representative total house income in the dwelling unit is $102930 +in.representative_income 102934 Representative total house income in the dwelling unit is $102934 +in.representative_income 102939 Representative total house income in the dwelling unit is $102939 +in.representative_income 102944 Representative total house income in the dwelling unit is $102944 +in.representative_income 102950 Representative total house income in the dwelling unit is $102950 +in.representative_income 102969 Representative total house income in the dwelling unit is $102969 +in.representative_income 103011 Representative total house income in the dwelling unit is $103011 +in.representative_income 103035 Representative total house income in the dwelling unit is $103035 +in.representative_income 103040 Representative total house income in the dwelling unit is $103040 +in.representative_income 103042 Representative total house income in the dwelling unit is $103042 +in.representative_income 103051 Representative total house income in the dwelling unit is $103051 +in.representative_income 103052 Representative total house income in the dwelling unit is $103052 +in.representative_income 103062 Representative total house income in the dwelling unit is $103062 +in.representative_income 103077 Representative total house income in the dwelling unit is $103077 +in.representative_income 103085 Representative total house income in the dwelling unit is $103085 +in.representative_income 103104 Representative total house income in the dwelling unit is $103104 +in.representative_income 103111 Representative total house income in the dwelling unit is $103111 +in.representative_income 103128 Representative total house income in the dwelling unit is $103128 +in.representative_income 103136 Representative total house income in the dwelling unit is $103136 +in.representative_income 103140 Representative total house income in the dwelling unit is $103140 +in.representative_income 103145 Representative total house income in the dwelling unit is $103145 +in.representative_income 103156 Representative total house income in the dwelling unit is $103156 +in.representative_income 103159 Representative total house income in the dwelling unit is $103159 +in.representative_income 103166 Representative total house income in the dwelling unit is $103166 +in.representative_income 103176 Representative total house income in the dwelling unit is $103176 +in.representative_income 103185 Representative total house income in the dwelling unit is $103185 +in.representative_income 103197 Representative total house income in the dwelling unit is $103197 +in.representative_income 103207 Representative total house income in the dwelling unit is $103207 +in.representative_income 103217 Representative total house income in the dwelling unit is $103217 +in.representative_income 103237 Representative total house income in the dwelling unit is $103237 +in.representative_income 103245 Representative total house income in the dwelling unit is $103245 +in.representative_income 103249 Representative total house income in the dwelling unit is $103249 +in.representative_income 103255 Representative total house income in the dwelling unit is $103255 +in.representative_income 103266 Representative total house income in the dwelling unit is $103266 +in.representative_income 103267 Representative total house income in the dwelling unit is $103267 +in.representative_income 103272 Representative total house income in the dwelling unit is $103272 +in.representative_income 103293 Representative total house income in the dwelling unit is $103293 +in.representative_income 103319 Representative total house income in the dwelling unit is $103319 +in.representative_income 103338 Representative total house income in the dwelling unit is $103338 +in.representative_income 103346 Representative total house income in the dwelling unit is $103346 +in.representative_income 103351 Representative total house income in the dwelling unit is $103351 +in.representative_income 103352 Representative total house income in the dwelling unit is $103352 +in.representative_income 103373 Representative total house income in the dwelling unit is $103373 +in.representative_income 103386 Representative total house income in the dwelling unit is $103386 +in.representative_income 103401 Representative total house income in the dwelling unit is $103401 +in.representative_income 103404 Representative total house income in the dwelling unit is $103404 +in.representative_income 103424 Representative total house income in the dwelling unit is $103424 +in.representative_income 103434 Representative total house income in the dwelling unit is $103434 +in.representative_income 103435 Representative total house income in the dwelling unit is $103435 +in.representative_income 103439 Representative total house income in the dwelling unit is $103439 +in.representative_income 103440 Representative total house income in the dwelling unit is $103440 +in.representative_income 103454 Representative total house income in the dwelling unit is $103454 +in.representative_income 103457 Representative total house income in the dwelling unit is $103457 +in.representative_income 103465 Representative total house income in the dwelling unit is $103465 +in.representative_income 103478 Representative total house income in the dwelling unit is $103478 +in.representative_income 103480 Representative total house income in the dwelling unit is $103480 +in.representative_income 103509 Representative total house income in the dwelling unit is $103509 +in.representative_income 103531 Representative total house income in the dwelling unit is $103531 +in.representative_income 103538 Representative total house income in the dwelling unit is $103538 +in.representative_income 103540 Representative total house income in the dwelling unit is $103540 +in.representative_income 103548 Representative total house income in the dwelling unit is $103548 +in.representative_income 103558 Representative total house income in the dwelling unit is $103558 +in.representative_income 103562 Representative total house income in the dwelling unit is $103562 +in.representative_income 103583 Representative total house income in the dwelling unit is $103583 +in.representative_income 103588 Representative total house income in the dwelling unit is $103588 +in.representative_income 103615 Representative total house income in the dwelling unit is $103615 +in.representative_income 103617 Representative total house income in the dwelling unit is $103617 +in.representative_income 103641 Representative total house income in the dwelling unit is $103641 +in.representative_income 103648 Representative total house income in the dwelling unit is $103648 +in.representative_income 103649 Representative total house income in the dwelling unit is $103649 +in.representative_income 103661 Representative total house income in the dwelling unit is $103661 +in.representative_income 103668 Representative total house income in the dwelling unit is $103668 +in.representative_income 103671 Representative total house income in the dwelling unit is $103671 +in.representative_income 103695 Representative total house income in the dwelling unit is $103695 +in.representative_income 103725 Representative total house income in the dwelling unit is $103725 +in.representative_income 103727 Representative total house income in the dwelling unit is $103727 +in.representative_income 103736 Representative total house income in the dwelling unit is $103736 +in.representative_income 103742 Representative total house income in the dwelling unit is $103742 +in.representative_income 103749 Representative total house income in the dwelling unit is $103749 +in.representative_income 103764 Representative total house income in the dwelling unit is $103764 +in.representative_income 103768 Representative total house income in the dwelling unit is $103768 +in.representative_income 103773 Representative total house income in the dwelling unit is $103773 +in.representative_income 103779 Representative total house income in the dwelling unit is $103779 +in.representative_income 103803 Representative total house income in the dwelling unit is $103803 +in.representative_income 103826 Representative total house income in the dwelling unit is $103826 +in.representative_income 103833 Representative total house income in the dwelling unit is $103833 +in.representative_income 103843 Representative total house income in the dwelling unit is $103843 +in.representative_income 103844 Representative total house income in the dwelling unit is $103844 +in.representative_income 103846 Representative total house income in the dwelling unit is $103846 +in.representative_income 103867 Representative total house income in the dwelling unit is $103867 +in.representative_income 103873 Representative total house income in the dwelling unit is $103873 +in.representative_income 103877 Representative total house income in the dwelling unit is $103877 +in.representative_income 103878 Representative total house income in the dwelling unit is $103878 +in.representative_income 103910 Representative total house income in the dwelling unit is $103910 +in.representative_income 103930 Representative total house income in the dwelling unit is $103930 +in.representative_income 103944 Representative total house income in the dwelling unit is $103944 +in.representative_income 103952 Representative total house income in the dwelling unit is $103952 +in.representative_income 103970 Representative total house income in the dwelling unit is $103970 +in.representative_income 103985 Representative total house income in the dwelling unit is $103985 +in.representative_income 103995 Representative total house income in the dwelling unit is $103995 +in.representative_income 104006 Representative total house income in the dwelling unit is $104006 +in.representative_income 104017 Representative total house income in the dwelling unit is $104017 +in.representative_income 104025 Representative total house income in the dwelling unit is $104025 +in.representative_income 104026 Representative total house income in the dwelling unit is $104026 +in.representative_income 104037 Representative total house income in the dwelling unit is $104037 +in.representative_income 104045 Representative total house income in the dwelling unit is $104045 +in.representative_income 104049 Representative total house income in the dwelling unit is $104049 +in.representative_income 104055 Representative total house income in the dwelling unit is $104055 +in.representative_income 104071 Representative total house income in the dwelling unit is $104071 +in.representative_income 104073 Representative total house income in the dwelling unit is $104073 +in.representative_income 104084 Representative total house income in the dwelling unit is $104084 +in.representative_income 104090 Representative total house income in the dwelling unit is $104090 +in.representative_income 104120 Representative total house income in the dwelling unit is $104120 +in.representative_income 104124 Representative total house income in the dwelling unit is $104124 +in.representative_income 104125 Representative total house income in the dwelling unit is $104125 +in.representative_income 104129 Representative total house income in the dwelling unit is $104129 +in.representative_income 104142 Representative total house income in the dwelling unit is $104142 +in.representative_income 104145 Representative total house income in the dwelling unit is $104145 +in.representative_income 104146 Representative total house income in the dwelling unit is $104146 +in.representative_income 104151 Representative total house income in the dwelling unit is $104151 +in.representative_income 104152 Representative total house income in the dwelling unit is $104152 +in.representative_income 104157 Representative total house income in the dwelling unit is $104157 +in.representative_income 104177 Representative total house income in the dwelling unit is $104177 +in.representative_income 104179 Representative total house income in the dwelling unit is $104179 +in.representative_income 104187 Representative total house income in the dwelling unit is $104187 +in.representative_income 104195 Representative total house income in the dwelling unit is $104195 +in.representative_income 104207 Representative total house income in the dwelling unit is $104207 +in.representative_income 104212 Representative total house income in the dwelling unit is $104212 +in.representative_income 104228 Representative total house income in the dwelling unit is $104228 +in.representative_income 104232 Representative total house income in the dwelling unit is $104232 +in.representative_income 104247 Representative total house income in the dwelling unit is $104247 +in.representative_income 104259 Representative total house income in the dwelling unit is $104259 +in.representative_income 104266 Representative total house income in the dwelling unit is $104266 +in.representative_income 104280 Representative total house income in the dwelling unit is $104280 +in.representative_income 104290 Representative total house income in the dwelling unit is $104290 +in.representative_income 104297 Representative total house income in the dwelling unit is $104297 +in.representative_income 104300 Representative total house income in the dwelling unit is $104300 +in.representative_income 104310 Representative total house income in the dwelling unit is $104310 +in.representative_income 104332 Representative total house income in the dwelling unit is $104332 +in.representative_income 104339 Representative total house income in the dwelling unit is $104339 +in.representative_income 104348 Representative total house income in the dwelling unit is $104348 +in.representative_income 104350 Representative total house income in the dwelling unit is $104350 +in.representative_income 104358 Representative total house income in the dwelling unit is $104358 +in.representative_income 104370 Representative total house income in the dwelling unit is $104370 +in.representative_income 104374 Representative total house income in the dwelling unit is $104374 +in.representative_income 104383 Representative total house income in the dwelling unit is $104383 +in.representative_income 104388 Representative total house income in the dwelling unit is $104388 +in.representative_income 104393 Representative total house income in the dwelling unit is $104393 +in.representative_income 104403 Representative total house income in the dwelling unit is $104403 +in.representative_income 104406 Representative total house income in the dwelling unit is $104406 +in.representative_income 104447 Representative total house income in the dwelling unit is $104447 +in.representative_income 104449 Representative total house income in the dwelling unit is $104449 +in.representative_income 104459 Representative total house income in the dwelling unit is $104459 +in.representative_income 104482 Representative total house income in the dwelling unit is $104482 +in.representative_income 104486 Representative total house income in the dwelling unit is $104486 +in.representative_income 104500 Representative total house income in the dwelling unit is $104500 +in.representative_income 104510 Representative total house income in the dwelling unit is $104510 +in.representative_income 104511 Representative total house income in the dwelling unit is $104511 +in.representative_income 104550 Representative total house income in the dwelling unit is $104550 +in.representative_income 104554 Representative total house income in the dwelling unit is $104554 +in.representative_income 104570 Representative total house income in the dwelling unit is $104570 +in.representative_income 104589 Representative total house income in the dwelling unit is $104589 +in.representative_income 104617 Representative total house income in the dwelling unit is $104617 +in.representative_income 104625 Representative total house income in the dwelling unit is $104625 +in.representative_income 104629 Representative total house income in the dwelling unit is $104629 +in.representative_income 104634 Representative total house income in the dwelling unit is $104634 +in.representative_income 104649 Representative total house income in the dwelling unit is $104649 +in.representative_income 104651 Representative total house income in the dwelling unit is $104651 +in.representative_income 104661 Representative total house income in the dwelling unit is $104661 +in.representative_income 104692 Representative total house income in the dwelling unit is $104692 +in.representative_income 104697 Representative total house income in the dwelling unit is $104697 +in.representative_income 104702 Representative total house income in the dwelling unit is $104702 +in.representative_income 104723 Representative total house income in the dwelling unit is $104723 +in.representative_income 104733 Representative total house income in the dwelling unit is $104733 +in.representative_income 104752 Representative total house income in the dwelling unit is $104752 +in.representative_income 104769 Representative total house income in the dwelling unit is $104769 +in.representative_income 104773 Representative total house income in the dwelling unit is $104773 +in.representative_income 104777 Representative total house income in the dwelling unit is $104777 +in.representative_income 104782 Representative total house income in the dwelling unit is $104782 +in.representative_income 104785 Representative total house income in the dwelling unit is $104785 +in.representative_income 104796 Representative total house income in the dwelling unit is $104796 +in.representative_income 104805 Representative total house income in the dwelling unit is $104805 +in.representative_income 104816 Representative total house income in the dwelling unit is $104816 +in.representative_income 104828 Representative total house income in the dwelling unit is $104828 +in.representative_income 104853 Representative total house income in the dwelling unit is $104853 +in.representative_income 104857 Representative total house income in the dwelling unit is $104857 +in.representative_income 104859 Representative total house income in the dwelling unit is $104859 +in.representative_income 104876 Representative total house income in the dwelling unit is $104876 +in.representative_income 104892 Representative total house income in the dwelling unit is $104892 +in.representative_income 104899 Representative total house income in the dwelling unit is $104899 +in.representative_income 104913 Representative total house income in the dwelling unit is $104913 +in.representative_income 104933 Representative total house income in the dwelling unit is $104933 +in.representative_income 104935 Representative total house income in the dwelling unit is $104935 +in.representative_income 104950 Representative total house income in the dwelling unit is $104950 +in.representative_income 104954 Representative total house income in the dwelling unit is $104954 +in.representative_income 104961 Representative total house income in the dwelling unit is $104961 +in.representative_income 104968 Representative total house income in the dwelling unit is $104968 +in.representative_income 104984 Representative total house income in the dwelling unit is $104984 +in.representative_income 105000 Representative total house income in the dwelling unit is $105000 +in.representative_income 105001 Representative total house income in the dwelling unit is $105001 +in.representative_income 105022 Representative total house income in the dwelling unit is $105022 +in.representative_income 105035 Representative total house income in the dwelling unit is $105035 +in.representative_income 105038 Representative total house income in the dwelling unit is $105038 +in.representative_income 105045 Representative total house income in the dwelling unit is $105045 +in.representative_income 105055 Representative total house income in the dwelling unit is $105055 +in.representative_income 105065 Representative total house income in the dwelling unit is $105065 +in.representative_income 105071 Representative total house income in the dwelling unit is $105071 +in.representative_income 105090 Representative total house income in the dwelling unit is $105090 +in.representative_income 105095 Representative total house income in the dwelling unit is $105095 +in.representative_income 105105 Representative total house income in the dwelling unit is $105105 +in.representative_income 105116 Representative total house income in the dwelling unit is $105116 +in.representative_income 105130 Representative total house income in the dwelling unit is $105130 +in.representative_income 105144 Representative total house income in the dwelling unit is $105144 +in.representative_income 105156 Representative total house income in the dwelling unit is $105156 +in.representative_income 105173 Representative total house income in the dwelling unit is $105173 +in.representative_income 105195 Representative total house income in the dwelling unit is $105195 +in.representative_income 105198 Representative total house income in the dwelling unit is $105198 +in.representative_income 105207 Representative total house income in the dwelling unit is $105207 +in.representative_income 105208 Representative total house income in the dwelling unit is $105208 +in.representative_income 105217 Representative total house income in the dwelling unit is $105217 +in.representative_income 105218 Representative total house income in the dwelling unit is $105218 +in.representative_income 105230 Representative total house income in the dwelling unit is $105230 +in.representative_income 105238 Representative total house income in the dwelling unit is $105238 +in.representative_income 105241 Representative total house income in the dwelling unit is $105241 +in.representative_income 105245 Representative total house income in the dwelling unit is $105245 +in.representative_income 105250 Representative total house income in the dwelling unit is $105250 +in.representative_income 105253 Representative total house income in the dwelling unit is $105253 +in.representative_income 105257 Representative total house income in the dwelling unit is $105257 +in.representative_income 105271 Representative total house income in the dwelling unit is $105271 +in.representative_income 105286 Representative total house income in the dwelling unit is $105286 +in.representative_income 105287 Representative total house income in the dwelling unit is $105287 +in.representative_income 105290 Representative total house income in the dwelling unit is $105290 +in.representative_income 105295 Representative total house income in the dwelling unit is $105295 +in.representative_income 105305 Representative total house income in the dwelling unit is $105305 +in.representative_income 105310 Representative total house income in the dwelling unit is $105310 +in.representative_income 105311 Representative total house income in the dwelling unit is $105311 +in.representative_income 105327 Representative total house income in the dwelling unit is $105327 +in.representative_income 105341 Representative total house income in the dwelling unit is $105341 +in.representative_income 105346 Representative total house income in the dwelling unit is $105346 +in.representative_income 105348 Representative total house income in the dwelling unit is $105348 +in.representative_income 105350 Representative total house income in the dwelling unit is $105350 +in.representative_income 105353 Representative total house income in the dwelling unit is $105353 +in.representative_income 105355 Representative total house income in the dwelling unit is $105355 +in.representative_income 105357 Representative total house income in the dwelling unit is $105357 +in.representative_income 105358 Representative total house income in the dwelling unit is $105358 +in.representative_income 105359 Representative total house income in the dwelling unit is $105359 +in.representative_income 105376 Representative total house income in the dwelling unit is $105376 +in.representative_income 105381 Representative total house income in the dwelling unit is $105381 +in.representative_income 105413 Representative total house income in the dwelling unit is $105413 +in.representative_income 105415 Representative total house income in the dwelling unit is $105415 +in.representative_income 105434 Representative total house income in the dwelling unit is $105434 +in.representative_income 105454 Representative total house income in the dwelling unit is $105454 +in.representative_income 105459 Representative total house income in the dwelling unit is $105459 +in.representative_income 105461 Representative total house income in the dwelling unit is $105461 +in.representative_income 105466 Representative total house income in the dwelling unit is $105466 +in.representative_income 105471 Representative total house income in the dwelling unit is $105471 +in.representative_income 105475 Representative total house income in the dwelling unit is $105475 +in.representative_income 105481 Representative total house income in the dwelling unit is $105481 +in.representative_income 105489 Representative total house income in the dwelling unit is $105489 +in.representative_income 105492 Representative total house income in the dwelling unit is $105492 +in.representative_income 105502 Representative total house income in the dwelling unit is $105502 +in.representative_income 105508 Representative total house income in the dwelling unit is $105508 +in.representative_income 105510 Representative total house income in the dwelling unit is $105510 +in.representative_income 105514 Representative total house income in the dwelling unit is $105514 +in.representative_income 105517 Representative total house income in the dwelling unit is $105517 +in.representative_income 105520 Representative total house income in the dwelling unit is $105520 +in.representative_income 105529 Representative total house income in the dwelling unit is $105529 +in.representative_income 105534 Representative total house income in the dwelling unit is $105534 +in.representative_income 105542 Representative total house income in the dwelling unit is $105542 +in.representative_income 105550 Representative total house income in the dwelling unit is $105550 +in.representative_income 105555 Representative total house income in the dwelling unit is $105555 +in.representative_income 105560 Representative total house income in the dwelling unit is $105560 +in.representative_income 105562 Representative total house income in the dwelling unit is $105562 +in.representative_income 105566 Representative total house income in the dwelling unit is $105566 +in.representative_income 105574 Representative total house income in the dwelling unit is $105574 +in.representative_income 105595 Representative total house income in the dwelling unit is $105595 +in.representative_income 105619 Representative total house income in the dwelling unit is $105619 +in.representative_income 105620 Representative total house income in the dwelling unit is $105620 +in.representative_income 105627 Representative total house income in the dwelling unit is $105627 +in.representative_income 105629 Representative total house income in the dwelling unit is $105629 +in.representative_income 105631 Representative total house income in the dwelling unit is $105631 +in.representative_income 105632 Representative total house income in the dwelling unit is $105632 +in.representative_income 105649 Representative total house income in the dwelling unit is $105649 +in.representative_income 105650 Representative total house income in the dwelling unit is $105650 +in.representative_income 105651 Representative total house income in the dwelling unit is $105651 +in.representative_income 105661 Representative total house income in the dwelling unit is $105661 +in.representative_income 105670 Representative total house income in the dwelling unit is $105670 +in.representative_income 105671 Representative total house income in the dwelling unit is $105671 +in.representative_income 105682 Representative total house income in the dwelling unit is $105682 +in.representative_income 105691 Representative total house income in the dwelling unit is $105691 +in.representative_income 105693 Representative total house income in the dwelling unit is $105693 +in.representative_income 105695 Representative total house income in the dwelling unit is $105695 +in.representative_income 105704 Representative total house income in the dwelling unit is $105704 +in.representative_income 105724 Representative total house income in the dwelling unit is $105724 +in.representative_income 105734 Representative total house income in the dwelling unit is $105734 +in.representative_income 105759 Representative total house income in the dwelling unit is $105759 +in.representative_income 105762 Representative total house income in the dwelling unit is $105762 +in.representative_income 105771 Representative total house income in the dwelling unit is $105771 +in.representative_income 105775 Representative total house income in the dwelling unit is $105775 +in.representative_income 105777 Representative total house income in the dwelling unit is $105777 +in.representative_income 105778 Representative total house income in the dwelling unit is $105778 +in.representative_income 105827 Representative total house income in the dwelling unit is $105827 +in.representative_income 105842 Representative total house income in the dwelling unit is $105842 +in.representative_income 105843 Representative total house income in the dwelling unit is $105843 +in.representative_income 105857 Representative total house income in the dwelling unit is $105857 +in.representative_income 105863 Representative total house income in the dwelling unit is $105863 +in.representative_income 105879 Representative total house income in the dwelling unit is $105879 +in.representative_income 105883 Representative total house income in the dwelling unit is $105883 +in.representative_income 105886 Representative total house income in the dwelling unit is $105886 +in.representative_income 105894 Representative total house income in the dwelling unit is $105894 +in.representative_income 105897 Representative total house income in the dwelling unit is $105897 +in.representative_income 105904 Representative total house income in the dwelling unit is $105904 +in.representative_income 105908 Representative total house income in the dwelling unit is $105908 +in.representative_income 105914 Representative total house income in the dwelling unit is $105914 +in.representative_income 105919 Representative total house income in the dwelling unit is $105919 +in.representative_income 105924 Representative total house income in the dwelling unit is $105924 +in.representative_income 105928 Representative total house income in the dwelling unit is $105928 +in.representative_income 105930 Representative total house income in the dwelling unit is $105930 +in.representative_income 105937 Representative total house income in the dwelling unit is $105937 +in.representative_income 105950 Representative total house income in the dwelling unit is $105950 +in.representative_income 105964 Representative total house income in the dwelling unit is $105964 +in.representative_income 105975 Representative total house income in the dwelling unit is $105975 +in.representative_income 105982 Representative total house income in the dwelling unit is $105982 +in.representative_income 105988 Representative total house income in the dwelling unit is $105988 +in.representative_income 105994 Representative total house income in the dwelling unit is $105994 +in.representative_income 106002 Representative total house income in the dwelling unit is $106002 +in.representative_income 106019 Representative total house income in the dwelling unit is $106019 +in.representative_income 106034 Representative total house income in the dwelling unit is $106034 +in.representative_income 106035 Representative total house income in the dwelling unit is $106035 +in.representative_income 106051 Representative total house income in the dwelling unit is $106051 +in.representative_income 106057 Representative total house income in the dwelling unit is $106057 +in.representative_income 106062 Representative total house income in the dwelling unit is $106062 +in.representative_income 106065 Representative total house income in the dwelling unit is $106065 +in.representative_income 106069 Representative total house income in the dwelling unit is $106069 +in.representative_income 106073 Representative total house income in the dwelling unit is $106073 +in.representative_income 106083 Representative total house income in the dwelling unit is $106083 +in.representative_income 106093 Representative total house income in the dwelling unit is $106093 +in.representative_income 106096 Representative total house income in the dwelling unit is $106096 +in.representative_income 106102 Representative total house income in the dwelling unit is $106102 +in.representative_income 106112 Representative total house income in the dwelling unit is $106112 +in.representative_income 106116 Representative total house income in the dwelling unit is $106116 +in.representative_income 106121 Representative total house income in the dwelling unit is $106121 +in.representative_income 106135 Representative total house income in the dwelling unit is $106135 +in.representative_income 106136 Representative total house income in the dwelling unit is $106136 +in.representative_income 106146 Representative total house income in the dwelling unit is $106146 +in.representative_income 106157 Representative total house income in the dwelling unit is $106157 +in.representative_income 106165 Representative total house income in the dwelling unit is $106165 +in.representative_income 106166 Representative total house income in the dwelling unit is $106166 +in.representative_income 106188 Representative total house income in the dwelling unit is $106188 +in.representative_income 106197 Representative total house income in the dwelling unit is $106197 +in.representative_income 106198 Representative total house income in the dwelling unit is $106198 +in.representative_income 106199 Representative total house income in the dwelling unit is $106199 +in.representative_income 106210 Representative total house income in the dwelling unit is $106210 +in.representative_income 106239 Representative total house income in the dwelling unit is $106239 +in.representative_income 106250 Representative total house income in the dwelling unit is $106250 +in.representative_income 106261 Representative total house income in the dwelling unit is $106261 +in.representative_income 106267 Representative total house income in the dwelling unit is $106267 +in.representative_income 106271 Representative total house income in the dwelling unit is $106271 +in.representative_income 106272 Representative total house income in the dwelling unit is $106272 +in.representative_income 106275 Representative total house income in the dwelling unit is $106275 +in.representative_income 106281 Representative total house income in the dwelling unit is $106281 +in.representative_income 106282 Representative total house income in the dwelling unit is $106282 +in.representative_income 106296 Representative total house income in the dwelling unit is $106296 +in.representative_income 106304 Representative total house income in the dwelling unit is $106304 +in.representative_income 106308 Representative total house income in the dwelling unit is $106308 +in.representative_income 106318 Representative total house income in the dwelling unit is $106318 +in.representative_income 106338 Representative total house income in the dwelling unit is $106338 +in.representative_income 106343 Representative total house income in the dwelling unit is $106343 +in.representative_income 106368 Representative total house income in the dwelling unit is $106368 +in.representative_income 106379 Representative total house income in the dwelling unit is $106379 +in.representative_income 106384 Representative total house income in the dwelling unit is $106384 +in.representative_income 106388 Representative total house income in the dwelling unit is $106388 +in.representative_income 106399 Representative total house income in the dwelling unit is $106399 +in.representative_income 106400 Representative total house income in the dwelling unit is $106400 +in.representative_income 106403 Representative total house income in the dwelling unit is $106403 +in.representative_income 106409 Representative total house income in the dwelling unit is $106409 +in.representative_income 106419 Representative total house income in the dwelling unit is $106419 +in.representative_income 106425 Representative total house income in the dwelling unit is $106425 +in.representative_income 106426 Representative total house income in the dwelling unit is $106426 +in.representative_income 106439 Representative total house income in the dwelling unit is $106439 +in.representative_income 106442 Representative total house income in the dwelling unit is $106442 +in.representative_income 106446 Representative total house income in the dwelling unit is $106446 +in.representative_income 106464 Representative total house income in the dwelling unit is $106464 +in.representative_income 106469 Representative total house income in the dwelling unit is $106469 +in.representative_income 106480 Representative total house income in the dwelling unit is $106480 +in.representative_income 106486 Representative total house income in the dwelling unit is $106486 +in.representative_income 106490 Representative total house income in the dwelling unit is $106490 +in.representative_income 106501 Representative total house income in the dwelling unit is $106501 +in.representative_income 106510 Representative total house income in the dwelling unit is $106510 +in.representative_income 106516 Representative total house income in the dwelling unit is $106516 +in.representative_income 106518 Representative total house income in the dwelling unit is $106518 +in.representative_income 106523 Representative total house income in the dwelling unit is $106523 +in.representative_income 106526 Representative total house income in the dwelling unit is $106526 +in.representative_income 106534 Representative total house income in the dwelling unit is $106534 +in.representative_income 106549 Representative total house income in the dwelling unit is $106549 +in.representative_income 106570 Representative total house income in the dwelling unit is $106570 +in.representative_income 106578 Representative total house income in the dwelling unit is $106578 +in.representative_income 106580 Representative total house income in the dwelling unit is $106580 +in.representative_income 106594 Representative total house income in the dwelling unit is $106594 +in.representative_income 106600 Representative total house income in the dwelling unit is $106600 +in.representative_income 106621 Representative total house income in the dwelling unit is $106621 +in.representative_income 106643 Representative total house income in the dwelling unit is $106643 +in.representative_income 106644 Representative total house income in the dwelling unit is $106644 +in.representative_income 106652 Representative total house income in the dwelling unit is $106652 +in.representative_income 106657 Representative total house income in the dwelling unit is $106657 +in.representative_income 106668 Representative total house income in the dwelling unit is $106668 +in.representative_income 106671 Representative total house income in the dwelling unit is $106671 +in.representative_income 106693 Representative total house income in the dwelling unit is $106693 +in.representative_income 106697 Representative total house income in the dwelling unit is $106697 +in.representative_income 106701 Representative total house income in the dwelling unit is $106701 +in.representative_income 106705 Representative total house income in the dwelling unit is $106705 +in.representative_income 106706 Representative total house income in the dwelling unit is $106706 +in.representative_income 106716 Representative total house income in the dwelling unit is $106716 +in.representative_income 106718 Representative total house income in the dwelling unit is $106718 +in.representative_income 106726 Representative total house income in the dwelling unit is $106726 +in.representative_income 106733 Representative total house income in the dwelling unit is $106733 +in.representative_income 106735 Representative total house income in the dwelling unit is $106735 +in.representative_income 106741 Representative total house income in the dwelling unit is $106741 +in.representative_income 106744 Representative total house income in the dwelling unit is $106744 +in.representative_income 106747 Representative total house income in the dwelling unit is $106747 +in.representative_income 106751 Representative total house income in the dwelling unit is $106751 +in.representative_income 106755 Representative total house income in the dwelling unit is $106755 +in.representative_income 106765 Representative total house income in the dwelling unit is $106765 +in.representative_income 106772 Representative total house income in the dwelling unit is $106772 +in.representative_income 106783 Representative total house income in the dwelling unit is $106783 +in.representative_income 106787 Representative total house income in the dwelling unit is $106787 +in.representative_income 106808 Representative total house income in the dwelling unit is $106808 +in.representative_income 106831 Representative total house income in the dwelling unit is $106831 +in.representative_income 106836 Representative total house income in the dwelling unit is $106836 +in.representative_income 106837 Representative total house income in the dwelling unit is $106837 +in.representative_income 106852 Representative total house income in the dwelling unit is $106852 +in.representative_income 106858 Representative total house income in the dwelling unit is $106858 +in.representative_income 106859 Representative total house income in the dwelling unit is $106859 +in.representative_income 106873 Representative total house income in the dwelling unit is $106873 +in.representative_income 106883 Representative total house income in the dwelling unit is $106883 +in.representative_income 106891 Representative total house income in the dwelling unit is $106891 +in.representative_income 106894 Representative total house income in the dwelling unit is $106894 +in.representative_income 106912 Representative total house income in the dwelling unit is $106912 +in.representative_income 106915 Representative total house income in the dwelling unit is $106915 +in.representative_income 106926 Representative total house income in the dwelling unit is $106926 +in.representative_income 106937 Representative total house income in the dwelling unit is $106937 +in.representative_income 106945 Representative total house income in the dwelling unit is $106945 +in.representative_income 106962 Representative total house income in the dwelling unit is $106962 +in.representative_income 106966 Representative total house income in the dwelling unit is $106966 +in.representative_income 106967 Representative total house income in the dwelling unit is $106967 +in.representative_income 106970 Representative total house income in the dwelling unit is $106970 +in.representative_income 106971 Representative total house income in the dwelling unit is $106971 +in.representative_income 106972 Representative total house income in the dwelling unit is $106972 +in.representative_income 106974 Representative total house income in the dwelling unit is $106974 +in.representative_income 106977 Representative total house income in the dwelling unit is $106977 +in.representative_income 106988 Representative total house income in the dwelling unit is $106988 +in.representative_income 106991 Representative total house income in the dwelling unit is $106991 +in.representative_income 106999 Representative total house income in the dwelling unit is $106999 +in.representative_income 107005 Representative total house income in the dwelling unit is $107005 +in.representative_income 107013 Representative total house income in the dwelling unit is $107013 +in.representative_income 107020 Representative total house income in the dwelling unit is $107020 +in.representative_income 107023 Representative total house income in the dwelling unit is $107023 +in.representative_income 107025 Representative total house income in the dwelling unit is $107025 +in.representative_income 107042 Representative total house income in the dwelling unit is $107042 +in.representative_income 107053 Representative total house income in the dwelling unit is $107053 +in.representative_income 107065 Representative total house income in the dwelling unit is $107065 +in.representative_income 107074 Representative total house income in the dwelling unit is $107074 +in.representative_income 107075 Representative total house income in the dwelling unit is $107075 +in.representative_income 107087 Representative total house income in the dwelling unit is $107087 +in.representative_income 107095 Representative total house income in the dwelling unit is $107095 +in.representative_income 107096 Representative total house income in the dwelling unit is $107096 +in.representative_income 107102 Representative total house income in the dwelling unit is $107102 +in.representative_income 107106 Representative total house income in the dwelling unit is $107106 +in.representative_income 107120 Representative total house income in the dwelling unit is $107120 +in.representative_income 107128 Representative total house income in the dwelling unit is $107128 +in.representative_income 107130 Representative total house income in the dwelling unit is $107130 +in.representative_income 107131 Representative total house income in the dwelling unit is $107131 +in.representative_income 107148 Representative total house income in the dwelling unit is $107148 +in.representative_income 107152 Representative total house income in the dwelling unit is $107152 +in.representative_income 107159 Representative total house income in the dwelling unit is $107159 +in.representative_income 107166 Representative total house income in the dwelling unit is $107166 +in.representative_income 107167 Representative total house income in the dwelling unit is $107167 +in.representative_income 107176 Representative total house income in the dwelling unit is $107176 +in.representative_income 107182 Representative total house income in the dwelling unit is $107182 +in.representative_income 107184 Representative total house income in the dwelling unit is $107184 +in.representative_income 107197 Representative total house income in the dwelling unit is $107197 +in.representative_income 107205 Representative total house income in the dwelling unit is $107205 +in.representative_income 107224 Representative total house income in the dwelling unit is $107224 +in.representative_income 107225 Representative total house income in the dwelling unit is $107225 +in.representative_income 107236 Representative total house income in the dwelling unit is $107236 +in.representative_income 107238 Representative total house income in the dwelling unit is $107238 +in.representative_income 107242 Representative total house income in the dwelling unit is $107242 +in.representative_income 107251 Representative total house income in the dwelling unit is $107251 +in.representative_income 107252 Representative total house income in the dwelling unit is $107252 +in.representative_income 107254 Representative total house income in the dwelling unit is $107254 +in.representative_income 107261 Representative total house income in the dwelling unit is $107261 +in.representative_income 107264 Representative total house income in the dwelling unit is $107264 +in.representative_income 107270 Representative total house income in the dwelling unit is $107270 +in.representative_income 107271 Representative total house income in the dwelling unit is $107271 +in.representative_income 107277 Representative total house income in the dwelling unit is $107277 +in.representative_income 107281 Representative total house income in the dwelling unit is $107281 +in.representative_income 107290 Representative total house income in the dwelling unit is $107290 +in.representative_income 107292 Representative total house income in the dwelling unit is $107292 +in.representative_income 107298 Representative total house income in the dwelling unit is $107298 +in.representative_income 107318 Representative total house income in the dwelling unit is $107318 +in.representative_income 107322 Representative total house income in the dwelling unit is $107322 +in.representative_income 107323 Representative total house income in the dwelling unit is $107323 +in.representative_income 107338 Representative total house income in the dwelling unit is $107338 +in.representative_income 107345 Representative total house income in the dwelling unit is $107345 +in.representative_income 107346 Representative total house income in the dwelling unit is $107346 +in.representative_income 107349 Representative total house income in the dwelling unit is $107349 +in.representative_income 107352 Representative total house income in the dwelling unit is $107352 +in.representative_income 107355 Representative total house income in the dwelling unit is $107355 +in.representative_income 107359 Representative total house income in the dwelling unit is $107359 +in.representative_income 107367 Representative total house income in the dwelling unit is $107367 +in.representative_income 107368 Representative total house income in the dwelling unit is $107368 +in.representative_income 107374 Representative total house income in the dwelling unit is $107374 +in.representative_income 107375 Representative total house income in the dwelling unit is $107375 +in.representative_income 107377 Representative total house income in the dwelling unit is $107377 +in.representative_income 107378 Representative total house income in the dwelling unit is $107378 +in.representative_income 107388 Representative total house income in the dwelling unit is $107388 +in.representative_income 107399 Representative total house income in the dwelling unit is $107399 +in.representative_income 107402 Representative total house income in the dwelling unit is $107402 +in.representative_income 107410 Representative total house income in the dwelling unit is $107410 +in.representative_income 107412 Representative total house income in the dwelling unit is $107412 +in.representative_income 107429 Representative total house income in the dwelling unit is $107429 +in.representative_income 107431 Representative total house income in the dwelling unit is $107431 +in.representative_income 107437 Representative total house income in the dwelling unit is $107437 +in.representative_income 107446 Representative total house income in the dwelling unit is $107446 +in.representative_income 107452 Representative total house income in the dwelling unit is $107452 +in.representative_income 107458 Representative total house income in the dwelling unit is $107458 +in.representative_income 107459 Representative total house income in the dwelling unit is $107459 +in.representative_income 107463 Representative total house income in the dwelling unit is $107463 +in.representative_income 107464 Representative total house income in the dwelling unit is $107464 +in.representative_income 107473 Representative total house income in the dwelling unit is $107473 +in.representative_income 107477 Representative total house income in the dwelling unit is $107477 +in.representative_income 107479 Representative total house income in the dwelling unit is $107479 +in.representative_income 107480 Representative total house income in the dwelling unit is $107480 +in.representative_income 107485 Representative total house income in the dwelling unit is $107485 +in.representative_income 107504 Representative total house income in the dwelling unit is $107504 +in.representative_income 107507 Representative total house income in the dwelling unit is $107507 +in.representative_income 107517 Representative total house income in the dwelling unit is $107517 +in.representative_income 107528 Representative total house income in the dwelling unit is $107528 +in.representative_income 107529 Representative total house income in the dwelling unit is $107529 +in.representative_income 107549 Representative total house income in the dwelling unit is $107549 +in.representative_income 107560 Representative total house income in the dwelling unit is $107560 +in.representative_income 107561 Representative total house income in the dwelling unit is $107561 +in.representative_income 107570 Representative total house income in the dwelling unit is $107570 +in.representative_income 107580 Representative total house income in the dwelling unit is $107580 +in.representative_income 107581 Representative total house income in the dwelling unit is $107581 +in.representative_income 107593 Representative total house income in the dwelling unit is $107593 +in.representative_income 107596 Representative total house income in the dwelling unit is $107596 +in.representative_income 107613 Representative total house income in the dwelling unit is $107613 +in.representative_income 107615 Representative total house income in the dwelling unit is $107615 +in.representative_income 107616 Representative total house income in the dwelling unit is $107616 +in.representative_income 107623 Representative total house income in the dwelling unit is $107623 +in.representative_income 107631 Representative total house income in the dwelling unit is $107631 +in.representative_income 107632 Representative total house income in the dwelling unit is $107632 +in.representative_income 107644 Representative total house income in the dwelling unit is $107644 +in.representative_income 107667 Representative total house income in the dwelling unit is $107667 +in.representative_income 107671 Representative total house income in the dwelling unit is $107671 +in.representative_income 107675 Representative total house income in the dwelling unit is $107675 +in.representative_income 107681 Representative total house income in the dwelling unit is $107681 +in.representative_income 107684 Representative total house income in the dwelling unit is $107684 +in.representative_income 107688 Representative total house income in the dwelling unit is $107688 +in.representative_income 107690 Representative total house income in the dwelling unit is $107690 +in.representative_income 107697 Representative total house income in the dwelling unit is $107697 +in.representative_income 107698 Representative total house income in the dwelling unit is $107698 +in.representative_income 107712 Representative total house income in the dwelling unit is $107712 +in.representative_income 107720 Representative total house income in the dwelling unit is $107720 +in.representative_income 107723 Representative total house income in the dwelling unit is $107723 +in.representative_income 107731 Representative total house income in the dwelling unit is $107731 +in.representative_income 107733 Representative total house income in the dwelling unit is $107733 +in.representative_income 107735 Representative total house income in the dwelling unit is $107735 +in.representative_income 107742 Representative total house income in the dwelling unit is $107742 +in.representative_income 107744 Representative total house income in the dwelling unit is $107744 +in.representative_income 107749 Representative total house income in the dwelling unit is $107749 +in.representative_income 107752 Representative total house income in the dwelling unit is $107752 +in.representative_income 107763 Representative total house income in the dwelling unit is $107763 +in.representative_income 107772 Representative total house income in the dwelling unit is $107772 +in.representative_income 107775 Representative total house income in the dwelling unit is $107775 +in.representative_income 107780 Representative total house income in the dwelling unit is $107780 +in.representative_income 107781 Representative total house income in the dwelling unit is $107781 +in.representative_income 107782 Representative total house income in the dwelling unit is $107782 +in.representative_income 107786 Representative total house income in the dwelling unit is $107786 +in.representative_income 107787 Representative total house income in the dwelling unit is $107787 +in.representative_income 107788 Representative total house income in the dwelling unit is $107788 +in.representative_income 107792 Representative total house income in the dwelling unit is $107792 +in.representative_income 107798 Representative total house income in the dwelling unit is $107798 +in.representative_income 107802 Representative total house income in the dwelling unit is $107802 +in.representative_income 107803 Representative total house income in the dwelling unit is $107803 +in.representative_income 107807 Representative total house income in the dwelling unit is $107807 +in.representative_income 107818 Representative total house income in the dwelling unit is $107818 +in.representative_income 107823 Representative total house income in the dwelling unit is $107823 +in.representative_income 107824 Representative total house income in the dwelling unit is $107824 +in.representative_income 107831 Representative total house income in the dwelling unit is $107831 +in.representative_income 107833 Representative total house income in the dwelling unit is $107833 +in.representative_income 107873 Representative total house income in the dwelling unit is $107873 +in.representative_income 107874 Representative total house income in the dwelling unit is $107874 +in.representative_income 107881 Representative total house income in the dwelling unit is $107881 +in.representative_income 107882 Representative total house income in the dwelling unit is $107882 +in.representative_income 107883 Representative total house income in the dwelling unit is $107883 +in.representative_income 107886 Representative total house income in the dwelling unit is $107886 +in.representative_income 107890 Representative total house income in the dwelling unit is $107890 +in.representative_income 107897 Representative total house income in the dwelling unit is $107897 +in.representative_income 107904 Representative total house income in the dwelling unit is $107904 +in.representative_income 107912 Representative total house income in the dwelling unit is $107912 +in.representative_income 107917 Representative total house income in the dwelling unit is $107917 +in.representative_income 107930 Representative total house income in the dwelling unit is $107930 +in.representative_income 107935 Representative total house income in the dwelling unit is $107935 +in.representative_income 107939 Representative total house income in the dwelling unit is $107939 +in.representative_income 107949 Representative total house income in the dwelling unit is $107949 +in.representative_income 107962 Representative total house income in the dwelling unit is $107962 +in.representative_income 107966 Representative total house income in the dwelling unit is $107966 +in.representative_income 107982 Representative total house income in the dwelling unit is $107982 +in.representative_income 107985 Representative total house income in the dwelling unit is $107985 +in.representative_income 107989 Representative total house income in the dwelling unit is $107989 +in.representative_income 107992 Representative total house income in the dwelling unit is $107992 +in.representative_income 107993 Representative total house income in the dwelling unit is $107993 +in.representative_income 107995 Representative total house income in the dwelling unit is $107995 +in.representative_income 108003 Representative total house income in the dwelling unit is $108003 +in.representative_income 108013 Representative total house income in the dwelling unit is $108013 +in.representative_income 108018 Representative total house income in the dwelling unit is $108018 +in.representative_income 108023 Representative total house income in the dwelling unit is $108023 +in.representative_income 108026 Representative total house income in the dwelling unit is $108026 +in.representative_income 108037 Representative total house income in the dwelling unit is $108037 +in.representative_income 108039 Representative total house income in the dwelling unit is $108039 +in.representative_income 108044 Representative total house income in the dwelling unit is $108044 +in.representative_income 108047 Representative total house income in the dwelling unit is $108047 +in.representative_income 108048 Representative total house income in the dwelling unit is $108048 +in.representative_income 108055 Representative total house income in the dwelling unit is $108055 +in.representative_income 108057 Representative total house income in the dwelling unit is $108057 +in.representative_income 108066 Representative total house income in the dwelling unit is $108066 +in.representative_income 108068 Representative total house income in the dwelling unit is $108068 +in.representative_income 108075 Representative total house income in the dwelling unit is $108075 +in.representative_income 108076 Representative total house income in the dwelling unit is $108076 +in.representative_income 108079 Representative total house income in the dwelling unit is $108079 +in.representative_income 108086 Representative total house income in the dwelling unit is $108086 +in.representative_income 108090 Representative total house income in the dwelling unit is $108090 +in.representative_income 108091 Representative total house income in the dwelling unit is $108091 +in.representative_income 108096 Representative total house income in the dwelling unit is $108096 +in.representative_income 108097 Representative total house income in the dwelling unit is $108097 +in.representative_income 108101 Representative total house income in the dwelling unit is $108101 +in.representative_income 108107 Representative total house income in the dwelling unit is $108107 +in.representative_income 108116 Representative total house income in the dwelling unit is $108116 +in.representative_income 108118 Representative total house income in the dwelling unit is $108118 +in.representative_income 108122 Representative total house income in the dwelling unit is $108122 +in.representative_income 108126 Representative total house income in the dwelling unit is $108126 +in.representative_income 108134 Representative total house income in the dwelling unit is $108134 +in.representative_income 108136 Representative total house income in the dwelling unit is $108136 +in.representative_income 108140 Representative total house income in the dwelling unit is $108140 +in.representative_income 108145 Representative total house income in the dwelling unit is $108145 +in.representative_income 108146 Representative total house income in the dwelling unit is $108146 +in.representative_income 108150 Representative total house income in the dwelling unit is $108150 +in.representative_income 108155 Representative total house income in the dwelling unit is $108155 +in.representative_income 108174 Representative total house income in the dwelling unit is $108174 +in.representative_income 108175 Representative total house income in the dwelling unit is $108175 +in.representative_income 108177 Representative total house income in the dwelling unit is $108177 +in.representative_income 108183 Representative total house income in the dwelling unit is $108183 +in.representative_income 108187 Representative total house income in the dwelling unit is $108187 +in.representative_income 108188 Representative total house income in the dwelling unit is $108188 +in.representative_income 108193 Representative total house income in the dwelling unit is $108193 +in.representative_income 108194 Representative total house income in the dwelling unit is $108194 +in.representative_income 108197 Representative total house income in the dwelling unit is $108197 +in.representative_income 108199 Representative total house income in the dwelling unit is $108199 +in.representative_income 108200 Representative total house income in the dwelling unit is $108200 +in.representative_income 108202 Representative total house income in the dwelling unit is $108202 +in.representative_income 108204 Representative total house income in the dwelling unit is $108204 +in.representative_income 108209 Representative total house income in the dwelling unit is $108209 +in.representative_income 108220 Representative total house income in the dwelling unit is $108220 +in.representative_income 108233 Representative total house income in the dwelling unit is $108233 +in.representative_income 108252 Representative total house income in the dwelling unit is $108252 +in.representative_income 108257 Representative total house income in the dwelling unit is $108257 +in.representative_income 108263 Representative total house income in the dwelling unit is $108263 +in.representative_income 108288 Representative total house income in the dwelling unit is $108288 +in.representative_income 108296 Representative total house income in the dwelling unit is $108296 +in.representative_income 108302 Representative total house income in the dwelling unit is $108302 +in.representative_income 108307 Representative total house income in the dwelling unit is $108307 +in.representative_income 108308 Representative total house income in the dwelling unit is $108308 +in.representative_income 108309 Representative total house income in the dwelling unit is $108309 +in.representative_income 108311 Representative total house income in the dwelling unit is $108311 +in.representative_income 108313 Representative total house income in the dwelling unit is $108313 +in.representative_income 108317 Representative total house income in the dwelling unit is $108317 +in.representative_income 108320 Representative total house income in the dwelling unit is $108320 +in.representative_income 108328 Representative total house income in the dwelling unit is $108328 +in.representative_income 108333 Representative total house income in the dwelling unit is $108333 +in.representative_income 108336 Representative total house income in the dwelling unit is $108336 +in.representative_income 108338 Representative total house income in the dwelling unit is $108338 +in.representative_income 108343 Representative total house income in the dwelling unit is $108343 +in.representative_income 108350 Representative total house income in the dwelling unit is $108350 +in.representative_income 108354 Representative total house income in the dwelling unit is $108354 +in.representative_income 108355 Representative total house income in the dwelling unit is $108355 +in.representative_income 108360 Representative total house income in the dwelling unit is $108360 +in.representative_income 108364 Representative total house income in the dwelling unit is $108364 +in.representative_income 108365 Representative total house income in the dwelling unit is $108365 +in.representative_income 108366 Representative total house income in the dwelling unit is $108366 +in.representative_income 108368 Representative total house income in the dwelling unit is $108368 +in.representative_income 108371 Representative total house income in the dwelling unit is $108371 +in.representative_income 108385 Representative total house income in the dwelling unit is $108385 +in.representative_income 108389 Representative total house income in the dwelling unit is $108389 +in.representative_income 108390 Representative total house income in the dwelling unit is $108390 +in.representative_income 108392 Representative total house income in the dwelling unit is $108392 +in.representative_income 108393 Representative total house income in the dwelling unit is $108393 +in.representative_income 108394 Representative total house income in the dwelling unit is $108394 +in.representative_income 108395 Representative total house income in the dwelling unit is $108395 +in.representative_income 108405 Representative total house income in the dwelling unit is $108405 +in.representative_income 108414 Representative total house income in the dwelling unit is $108414 +in.representative_income 108418 Representative total house income in the dwelling unit is $108418 +in.representative_income 108419 Representative total house income in the dwelling unit is $108419 +in.representative_income 108423 Representative total house income in the dwelling unit is $108423 +in.representative_income 108424 Representative total house income in the dwelling unit is $108424 +in.representative_income 108427 Representative total house income in the dwelling unit is $108427 +in.representative_income 108436 Representative total house income in the dwelling unit is $108436 +in.representative_income 108440 Representative total house income in the dwelling unit is $108440 +in.representative_income 108451 Representative total house income in the dwelling unit is $108451 +in.representative_income 108456 Representative total house income in the dwelling unit is $108456 +in.representative_income 108457 Representative total house income in the dwelling unit is $108457 +in.representative_income 108459 Representative total house income in the dwelling unit is $108459 +in.representative_income 108461 Representative total house income in the dwelling unit is $108461 +in.representative_income 108463 Representative total house income in the dwelling unit is $108463 +in.representative_income 108466 Representative total house income in the dwelling unit is $108466 +in.representative_income 108479 Representative total house income in the dwelling unit is $108479 +in.representative_income 108490 Representative total house income in the dwelling unit is $108490 +in.representative_income 108503 Representative total house income in the dwelling unit is $108503 +in.representative_income 108509 Representative total house income in the dwelling unit is $108509 +in.representative_income 108510 Representative total house income in the dwelling unit is $108510 +in.representative_income 108519 Representative total house income in the dwelling unit is $108519 +in.representative_income 108525 Representative total house income in the dwelling unit is $108525 +in.representative_income 108533 Representative total house income in the dwelling unit is $108533 +in.representative_income 108536 Representative total house income in the dwelling unit is $108536 +in.representative_income 108540 Representative total house income in the dwelling unit is $108540 +in.representative_income 108552 Representative total house income in the dwelling unit is $108552 +in.representative_income 108555 Representative total house income in the dwelling unit is $108555 +in.representative_income 108560 Representative total house income in the dwelling unit is $108560 +in.representative_income 108567 Representative total house income in the dwelling unit is $108567 +in.representative_income 108582 Representative total house income in the dwelling unit is $108582 +in.representative_income 108587 Representative total house income in the dwelling unit is $108587 +in.representative_income 108588 Representative total house income in the dwelling unit is $108588 +in.representative_income 108591 Representative total house income in the dwelling unit is $108591 +in.representative_income 108601 Representative total house income in the dwelling unit is $108601 +in.representative_income 108604 Representative total house income in the dwelling unit is $108604 +in.representative_income 108609 Representative total house income in the dwelling unit is $108609 +in.representative_income 108612 Representative total house income in the dwelling unit is $108612 +in.representative_income 108618 Representative total house income in the dwelling unit is $108618 +in.representative_income 108621 Representative total house income in the dwelling unit is $108621 +in.representative_income 108624 Representative total house income in the dwelling unit is $108624 +in.representative_income 108633 Representative total house income in the dwelling unit is $108633 +in.representative_income 108635 Representative total house income in the dwelling unit is $108635 +in.representative_income 108652 Representative total house income in the dwelling unit is $108652 +in.representative_income 108654 Representative total house income in the dwelling unit is $108654 +in.representative_income 108661 Representative total house income in the dwelling unit is $108661 +in.representative_income 108664 Representative total house income in the dwelling unit is $108664 +in.representative_income 108684 Representative total house income in the dwelling unit is $108684 +in.representative_income 108688 Representative total house income in the dwelling unit is $108688 +in.representative_income 108692 Representative total house income in the dwelling unit is $108692 +in.representative_income 108695 Representative total house income in the dwelling unit is $108695 +in.representative_income 108698 Representative total house income in the dwelling unit is $108698 +in.representative_income 108709 Representative total house income in the dwelling unit is $108709 +in.representative_income 108715 Representative total house income in the dwelling unit is $108715 +in.representative_income 108717 Representative total house income in the dwelling unit is $108717 +in.representative_income 108718 Representative total house income in the dwelling unit is $108718 +in.representative_income 108719 Representative total house income in the dwelling unit is $108719 +in.representative_income 108726 Representative total house income in the dwelling unit is $108726 +in.representative_income 108730 Representative total house income in the dwelling unit is $108730 +in.representative_income 108738 Representative total house income in the dwelling unit is $108738 +in.representative_income 108740 Representative total house income in the dwelling unit is $108740 +in.representative_income 108742 Representative total house income in the dwelling unit is $108742 +in.representative_income 108749 Representative total house income in the dwelling unit is $108749 +in.representative_income 108751 Representative total house income in the dwelling unit is $108751 +in.representative_income 108756 Representative total house income in the dwelling unit is $108756 +in.representative_income 108757 Representative total house income in the dwelling unit is $108757 +in.representative_income 108762 Representative total house income in the dwelling unit is $108762 +in.representative_income 108769 Representative total house income in the dwelling unit is $108769 +in.representative_income 108772 Representative total house income in the dwelling unit is $108772 +in.representative_income 108783 Representative total house income in the dwelling unit is $108783 +in.representative_income 108793 Representative total house income in the dwelling unit is $108793 +in.representative_income 108794 Representative total house income in the dwelling unit is $108794 +in.representative_income 108803 Representative total house income in the dwelling unit is $108803 +in.representative_income 108804 Representative total house income in the dwelling unit is $108804 +in.representative_income 108818 Representative total house income in the dwelling unit is $108818 +in.representative_income 108835 Representative total house income in the dwelling unit is $108835 +in.representative_income 108839 Representative total house income in the dwelling unit is $108839 +in.representative_income 108848 Representative total house income in the dwelling unit is $108848 +in.representative_income 108849 Representative total house income in the dwelling unit is $108849 +in.representative_income 108852 Representative total house income in the dwelling unit is $108852 +in.representative_income 108857 Representative total house income in the dwelling unit is $108857 +in.representative_income 108863 Representative total house income in the dwelling unit is $108863 +in.representative_income 108864 Representative total house income in the dwelling unit is $108864 +in.representative_income 108869 Representative total house income in the dwelling unit is $108869 +in.representative_income 108871 Representative total house income in the dwelling unit is $108871 +in.representative_income 108877 Representative total house income in the dwelling unit is $108877 +in.representative_income 108878 Representative total house income in the dwelling unit is $108878 +in.representative_income 108888 Representative total house income in the dwelling unit is $108888 +in.representative_income 108891 Representative total house income in the dwelling unit is $108891 +in.representative_income 108894 Representative total house income in the dwelling unit is $108894 +in.representative_income 108899 Representative total house income in the dwelling unit is $108899 +in.representative_income 108901 Representative total house income in the dwelling unit is $108901 +in.representative_income 108909 Representative total house income in the dwelling unit is $108909 +in.representative_income 108911 Representative total house income in the dwelling unit is $108911 +in.representative_income 108912 Representative total house income in the dwelling unit is $108912 +in.representative_income 108914 Representative total house income in the dwelling unit is $108914 +in.representative_income 108921 Representative total house income in the dwelling unit is $108921 +in.representative_income 108923 Representative total house income in the dwelling unit is $108923 +in.representative_income 108927 Representative total house income in the dwelling unit is $108927 +in.representative_income 108933 Representative total house income in the dwelling unit is $108933 +in.representative_income 108940 Representative total house income in the dwelling unit is $108940 +in.representative_income 108944 Representative total house income in the dwelling unit is $108944 +in.representative_income 108956 Representative total house income in the dwelling unit is $108956 +in.representative_income 108965 Representative total house income in the dwelling unit is $108965 +in.representative_income 108973 Representative total house income in the dwelling unit is $108973 +in.representative_income 108977 Representative total house income in the dwelling unit is $108977 +in.representative_income 108983 Representative total house income in the dwelling unit is $108983 +in.representative_income 108985 Representative total house income in the dwelling unit is $108985 +in.representative_income 108993 Representative total house income in the dwelling unit is $108993 +in.representative_income 108995 Representative total house income in the dwelling unit is $108995 +in.representative_income 109017 Representative total house income in the dwelling unit is $109017 +in.representative_income 109020 Representative total house income in the dwelling unit is $109020 +in.representative_income 109024 Representative total house income in the dwelling unit is $109024 +in.representative_income 109031 Representative total house income in the dwelling unit is $109031 +in.representative_income 109042 Representative total house income in the dwelling unit is $109042 +in.representative_income 109045 Representative total house income in the dwelling unit is $109045 +in.representative_income 109047 Representative total house income in the dwelling unit is $109047 +in.representative_income 109057 Representative total house income in the dwelling unit is $109057 +in.representative_income 109062 Representative total house income in the dwelling unit is $109062 +in.representative_income 109074 Representative total house income in the dwelling unit is $109074 +in.representative_income 109076 Representative total house income in the dwelling unit is $109076 +in.representative_income 109083 Representative total house income in the dwelling unit is $109083 +in.representative_income 109096 Representative total house income in the dwelling unit is $109096 +in.representative_income 109098 Representative total house income in the dwelling unit is $109098 +in.representative_income 109106 Representative total house income in the dwelling unit is $109106 +in.representative_income 109112 Representative total house income in the dwelling unit is $109112 +in.representative_income 109116 Representative total house income in the dwelling unit is $109116 +in.representative_income 109127 Representative total house income in the dwelling unit is $109127 +in.representative_income 109128 Representative total house income in the dwelling unit is $109128 +in.representative_income 109132 Representative total house income in the dwelling unit is $109132 +in.representative_income 109133 Representative total house income in the dwelling unit is $109133 +in.representative_income 109138 Representative total house income in the dwelling unit is $109138 +in.representative_income 109146 Representative total house income in the dwelling unit is $109146 +in.representative_income 109152 Representative total house income in the dwelling unit is $109152 +in.representative_income 109156 Representative total house income in the dwelling unit is $109156 +in.representative_income 109158 Representative total house income in the dwelling unit is $109158 +in.representative_income 109160 Representative total house income in the dwelling unit is $109160 +in.representative_income 109162 Representative total house income in the dwelling unit is $109162 +in.representative_income 109166 Representative total house income in the dwelling unit is $109166 +in.representative_income 109170 Representative total house income in the dwelling unit is $109170 +in.representative_income 109182 Representative total house income in the dwelling unit is $109182 +in.representative_income 109183 Representative total house income in the dwelling unit is $109183 +in.representative_income 109191 Representative total house income in the dwelling unit is $109191 +in.representative_income 109192 Representative total house income in the dwelling unit is $109192 +in.representative_income 109194 Representative total house income in the dwelling unit is $109194 +in.representative_income 109197 Representative total house income in the dwelling unit is $109197 +in.representative_income 109200 Representative total house income in the dwelling unit is $109200 +in.representative_income 109202 Representative total house income in the dwelling unit is $109202 +in.representative_income 109213 Representative total house income in the dwelling unit is $109213 +in.representative_income 109214 Representative total house income in the dwelling unit is $109214 +in.representative_income 109217 Representative total house income in the dwelling unit is $109217 +in.representative_income 109221 Representative total house income in the dwelling unit is $109221 +in.representative_income 109224 Representative total house income in the dwelling unit is $109224 +in.representative_income 109225 Representative total house income in the dwelling unit is $109225 +in.representative_income 109228 Representative total house income in the dwelling unit is $109228 +in.representative_income 109231 Representative total house income in the dwelling unit is $109231 +in.representative_income 109236 Representative total house income in the dwelling unit is $109236 +in.representative_income 109237 Representative total house income in the dwelling unit is $109237 +in.representative_income 109246 Representative total house income in the dwelling unit is $109246 +in.representative_income 109247 Representative total house income in the dwelling unit is $109247 +in.representative_income 109256 Representative total house income in the dwelling unit is $109256 +in.representative_income 109257 Representative total house income in the dwelling unit is $109257 +in.representative_income 109262 Representative total house income in the dwelling unit is $109262 +in.representative_income 109268 Representative total house income in the dwelling unit is $109268 +in.representative_income 109272 Representative total house income in the dwelling unit is $109272 +in.representative_income 109276 Representative total house income in the dwelling unit is $109276 +in.representative_income 109277 Representative total house income in the dwelling unit is $109277 +in.representative_income 109282 Representative total house income in the dwelling unit is $109282 +in.representative_income 109288 Representative total house income in the dwelling unit is $109288 +in.representative_income 109290 Representative total house income in the dwelling unit is $109290 +in.representative_income 109294 Representative total house income in the dwelling unit is $109294 +in.representative_income 109298 Representative total house income in the dwelling unit is $109298 +in.representative_income 109308 Representative total house income in the dwelling unit is $109308 +in.representative_income 109309 Representative total house income in the dwelling unit is $109309 +in.representative_income 109313 Representative total house income in the dwelling unit is $109313 +in.representative_income 109328 Representative total house income in the dwelling unit is $109328 +in.representative_income 109333 Representative total house income in the dwelling unit is $109333 +in.representative_income 109336 Representative total house income in the dwelling unit is $109336 +in.representative_income 109344 Representative total house income in the dwelling unit is $109344 +in.representative_income 109345 Representative total house income in the dwelling unit is $109345 +in.representative_income 109348 Representative total house income in the dwelling unit is $109348 +in.representative_income 109355 Representative total house income in the dwelling unit is $109355 +in.representative_income 109361 Representative total house income in the dwelling unit is $109361 +in.representative_income 109362 Representative total house income in the dwelling unit is $109362 +in.representative_income 109363 Representative total house income in the dwelling unit is $109363 +in.representative_income 109365 Representative total house income in the dwelling unit is $109365 +in.representative_income 109370 Representative total house income in the dwelling unit is $109370 +in.representative_income 109373 Representative total house income in the dwelling unit is $109373 +in.representative_income 109385 Representative total house income in the dwelling unit is $109385 +in.representative_income 109386 Representative total house income in the dwelling unit is $109386 +in.representative_income 109396 Representative total house income in the dwelling unit is $109396 +in.representative_income 109397 Representative total house income in the dwelling unit is $109397 +in.representative_income 109399 Representative total house income in the dwelling unit is $109399 +in.representative_income 109406 Representative total house income in the dwelling unit is $109406 +in.representative_income 109408 Representative total house income in the dwelling unit is $109408 +in.representative_income 109416 Representative total house income in the dwelling unit is $109416 +in.representative_income 109417 Representative total house income in the dwelling unit is $109417 +in.representative_income 109419 Representative total house income in the dwelling unit is $109419 +in.representative_income 109427 Representative total house income in the dwelling unit is $109427 +in.representative_income 109429 Representative total house income in the dwelling unit is $109429 +in.representative_income 109437 Representative total house income in the dwelling unit is $109437 +in.representative_income 109438 Representative total house income in the dwelling unit is $109438 +in.representative_income 109451 Representative total house income in the dwelling unit is $109451 +in.representative_income 109452 Representative total house income in the dwelling unit is $109452 +in.representative_income 109454 Representative total house income in the dwelling unit is $109454 +in.representative_income 109458 Representative total house income in the dwelling unit is $109458 +in.representative_income 109468 Representative total house income in the dwelling unit is $109468 +in.representative_income 109472 Representative total house income in the dwelling unit is $109472 +in.representative_income 109478 Representative total house income in the dwelling unit is $109478 +in.representative_income 109480 Representative total house income in the dwelling unit is $109480 +in.representative_income 109488 Representative total house income in the dwelling unit is $109488 +in.representative_income 109492 Representative total house income in the dwelling unit is $109492 +in.representative_income 109493 Representative total house income in the dwelling unit is $109493 +in.representative_income 109500 Representative total house income in the dwelling unit is $109500 +in.representative_income 109503 Representative total house income in the dwelling unit is $109503 +in.representative_income 109505 Representative total house income in the dwelling unit is $109505 +in.representative_income 109506 Representative total house income in the dwelling unit is $109506 +in.representative_income 109511 Representative total house income in the dwelling unit is $109511 +in.representative_income 109514 Representative total house income in the dwelling unit is $109514 +in.representative_income 109516 Representative total house income in the dwelling unit is $109516 +in.representative_income 109524 Representative total house income in the dwelling unit is $109524 +in.representative_income 109535 Representative total house income in the dwelling unit is $109535 +in.representative_income 109540 Representative total house income in the dwelling unit is $109540 +in.representative_income 109546 Representative total house income in the dwelling unit is $109546 +in.representative_income 109550 Representative total house income in the dwelling unit is $109550 +in.representative_income 109559 Representative total house income in the dwelling unit is $109559 +in.representative_income 109560 Representative total house income in the dwelling unit is $109560 +in.representative_income 109573 Representative total house income in the dwelling unit is $109573 +in.representative_income 109580 Representative total house income in the dwelling unit is $109580 +in.representative_income 109592 Representative total house income in the dwelling unit is $109592 +in.representative_income 109599 Representative total house income in the dwelling unit is $109599 +in.representative_income 109601 Representative total house income in the dwelling unit is $109601 +in.representative_income 109602 Representative total house income in the dwelling unit is $109602 +in.representative_income 109613 Representative total house income in the dwelling unit is $109613 +in.representative_income 109626 Representative total house income in the dwelling unit is $109626 +in.representative_income 109633 Representative total house income in the dwelling unit is $109633 +in.representative_income 109637 Representative total house income in the dwelling unit is $109637 +in.representative_income 109641 Representative total house income in the dwelling unit is $109641 +in.representative_income 109643 Representative total house income in the dwelling unit is $109643 +in.representative_income 109644 Representative total house income in the dwelling unit is $109644 +in.representative_income 109653 Representative total house income in the dwelling unit is $109653 +in.representative_income 109654 Representative total house income in the dwelling unit is $109654 +in.representative_income 109661 Representative total house income in the dwelling unit is $109661 +in.representative_income 109664 Representative total house income in the dwelling unit is $109664 +in.representative_income 109667 Representative total house income in the dwelling unit is $109667 +in.representative_income 109674 Representative total house income in the dwelling unit is $109674 +in.representative_income 109679 Representative total house income in the dwelling unit is $109679 +in.representative_income 109682 Representative total house income in the dwelling unit is $109682 +in.representative_income 109685 Representative total house income in the dwelling unit is $109685 +in.representative_income 109689 Representative total house income in the dwelling unit is $109689 +in.representative_income 109690 Representative total house income in the dwelling unit is $109690 +in.representative_income 109692 Representative total house income in the dwelling unit is $109692 +in.representative_income 109700 Representative total house income in the dwelling unit is $109700 +in.representative_income 109702 Representative total house income in the dwelling unit is $109702 +in.representative_income 109704 Representative total house income in the dwelling unit is $109704 +in.representative_income 109706 Representative total house income in the dwelling unit is $109706 +in.representative_income 109711 Representative total house income in the dwelling unit is $109711 +in.representative_income 109721 Representative total house income in the dwelling unit is $109721 +in.representative_income 109726 Representative total house income in the dwelling unit is $109726 +in.representative_income 109727 Representative total house income in the dwelling unit is $109727 +in.representative_income 109732 Representative total house income in the dwelling unit is $109732 +in.representative_income 109734 Representative total house income in the dwelling unit is $109734 +in.representative_income 109736 Representative total house income in the dwelling unit is $109736 +in.representative_income 109738 Representative total house income in the dwelling unit is $109738 +in.representative_income 109741 Representative total house income in the dwelling unit is $109741 +in.representative_income 109742 Representative total house income in the dwelling unit is $109742 +in.representative_income 109747 Representative total house income in the dwelling unit is $109747 +in.representative_income 109752 Representative total house income in the dwelling unit is $109752 +in.representative_income 109755 Representative total house income in the dwelling unit is $109755 +in.representative_income 109761 Representative total house income in the dwelling unit is $109761 +in.representative_income 109767 Representative total house income in the dwelling unit is $109767 +in.representative_income 109769 Representative total house income in the dwelling unit is $109769 +in.representative_income 109774 Representative total house income in the dwelling unit is $109774 +in.representative_income 109776 Representative total house income in the dwelling unit is $109776 +in.representative_income 109785 Representative total house income in the dwelling unit is $109785 +in.representative_income 109798 Representative total house income in the dwelling unit is $109798 +in.representative_income 109803 Representative total house income in the dwelling unit is $109803 +in.representative_income 109809 Representative total house income in the dwelling unit is $109809 +in.representative_income 109814 Representative total house income in the dwelling unit is $109814 +in.representative_income 109816 Representative total house income in the dwelling unit is $109816 +in.representative_income 109818 Representative total house income in the dwelling unit is $109818 +in.representative_income 109819 Representative total house income in the dwelling unit is $109819 +in.representative_income 109823 Representative total house income in the dwelling unit is $109823 +in.representative_income 109830 Representative total house income in the dwelling unit is $109830 +in.representative_income 109834 Representative total house income in the dwelling unit is $109834 +in.representative_income 109835 Representative total house income in the dwelling unit is $109835 +in.representative_income 109850 Representative total house income in the dwelling unit is $109850 +in.representative_income 109853 Representative total house income in the dwelling unit is $109853 +in.representative_income 109870 Representative total house income in the dwelling unit is $109870 +in.representative_income 109880 Representative total house income in the dwelling unit is $109880 +in.representative_income 109881 Representative total house income in the dwelling unit is $109881 +in.representative_income 109884 Representative total house income in the dwelling unit is $109884 +in.representative_income 109887 Representative total house income in the dwelling unit is $109887 +in.representative_income 109890 Representative total house income in the dwelling unit is $109890 +in.representative_income 109892 Representative total house income in the dwelling unit is $109892 +in.representative_income 109895 Representative total house income in the dwelling unit is $109895 +in.representative_income 109904 Representative total house income in the dwelling unit is $109904 +in.representative_income 109918 Representative total house income in the dwelling unit is $109918 +in.representative_income 109921 Representative total house income in the dwelling unit is $109921 +in.representative_income 109926 Representative total house income in the dwelling unit is $109926 +in.representative_income 109927 Representative total house income in the dwelling unit is $109927 +in.representative_income 109929 Representative total house income in the dwelling unit is $109929 +in.representative_income 109943 Representative total house income in the dwelling unit is $109943 +in.representative_income 109952 Representative total house income in the dwelling unit is $109952 +in.representative_income 109956 Representative total house income in the dwelling unit is $109956 +in.representative_income 109964 Representative total house income in the dwelling unit is $109964 +in.representative_income 109975 Representative total house income in the dwelling unit is $109975 +in.representative_income 109992 Representative total house income in the dwelling unit is $109992 +in.representative_income 109995 Representative total house income in the dwelling unit is $109995 +in.representative_income 109996 Representative total house income in the dwelling unit is $109996 +in.representative_income 109997 Representative total house income in the dwelling unit is $109997 +in.representative_income 110005 Representative total house income in the dwelling unit is $110005 +in.representative_income 110006 Representative total house income in the dwelling unit is $110006 +in.representative_income 110018 Representative total house income in the dwelling unit is $110018 +in.representative_income 110024 Representative total house income in the dwelling unit is $110024 +in.representative_income 110025 Representative total house income in the dwelling unit is $110025 +in.representative_income 110028 Representative total house income in the dwelling unit is $110028 +in.representative_income 110029 Representative total house income in the dwelling unit is $110029 +in.representative_income 110033 Representative total house income in the dwelling unit is $110033 +in.representative_income 110045 Representative total house income in the dwelling unit is $110045 +in.representative_income 110049 Representative total house income in the dwelling unit is $110049 +in.representative_income 110050 Representative total house income in the dwelling unit is $110050 +in.representative_income 110056 Representative total house income in the dwelling unit is $110056 +in.representative_income 110061 Representative total house income in the dwelling unit is $110061 +in.representative_income 110078 Representative total house income in the dwelling unit is $110078 +in.representative_income 110082 Representative total house income in the dwelling unit is $110082 +in.representative_income 110084 Representative total house income in the dwelling unit is $110084 +in.representative_income 110086 Representative total house income in the dwelling unit is $110086 +in.representative_income 110093 Representative total house income in the dwelling unit is $110093 +in.representative_income 110100 Representative total house income in the dwelling unit is $110100 +in.representative_income 110101 Representative total house income in the dwelling unit is $110101 +in.representative_income 110106 Representative total house income in the dwelling unit is $110106 +in.representative_income 110111 Representative total house income in the dwelling unit is $110111 +in.representative_income 110118 Representative total house income in the dwelling unit is $110118 +in.representative_income 110121 Representative total house income in the dwelling unit is $110121 +in.representative_income 110122 Representative total house income in the dwelling unit is $110122 +in.representative_income 110125 Representative total house income in the dwelling unit is $110125 +in.representative_income 110126 Representative total house income in the dwelling unit is $110126 +in.representative_income 110128 Representative total house income in the dwelling unit is $110128 +in.representative_income 110135 Representative total house income in the dwelling unit is $110135 +in.representative_income 110136 Representative total house income in the dwelling unit is $110136 +in.representative_income 110139 Representative total house income in the dwelling unit is $110139 +in.representative_income 110143 Representative total house income in the dwelling unit is $110143 +in.representative_income 110147 Representative total house income in the dwelling unit is $110147 +in.representative_income 110156 Representative total house income in the dwelling unit is $110156 +in.representative_income 110159 Representative total house income in the dwelling unit is $110159 +in.representative_income 110165 Representative total house income in the dwelling unit is $110165 +in.representative_income 110175 Representative total house income in the dwelling unit is $110175 +in.representative_income 110183 Representative total house income in the dwelling unit is $110183 +in.representative_income 110185 Representative total house income in the dwelling unit is $110185 +in.representative_income 110186 Representative total house income in the dwelling unit is $110186 +in.representative_income 110187 Representative total house income in the dwelling unit is $110187 +in.representative_income 110190 Representative total house income in the dwelling unit is $110190 +in.representative_income 110206 Representative total house income in the dwelling unit is $110206 +in.representative_income 110207 Representative total house income in the dwelling unit is $110207 +in.representative_income 110208 Representative total house income in the dwelling unit is $110208 +in.representative_income 110209 Representative total house income in the dwelling unit is $110209 +in.representative_income 110210 Representative total house income in the dwelling unit is $110210 +in.representative_income 110212 Representative total house income in the dwelling unit is $110212 +in.representative_income 110217 Representative total house income in the dwelling unit is $110217 +in.representative_income 110225 Representative total house income in the dwelling unit is $110225 +in.representative_income 110227 Representative total house income in the dwelling unit is $110227 +in.representative_income 110228 Representative total house income in the dwelling unit is $110228 +in.representative_income 110229 Representative total house income in the dwelling unit is $110229 +in.representative_income 110243 Representative total house income in the dwelling unit is $110243 +in.representative_income 110251 Representative total house income in the dwelling unit is $110251 +in.representative_income 110257 Representative total house income in the dwelling unit is $110257 +in.representative_income 110258 Representative total house income in the dwelling unit is $110258 +in.representative_income 110262 Representative total house income in the dwelling unit is $110262 +in.representative_income 110264 Representative total house income in the dwelling unit is $110264 +in.representative_income 110275 Representative total house income in the dwelling unit is $110275 +in.representative_income 110279 Representative total house income in the dwelling unit is $110279 +in.representative_income 110283 Representative total house income in the dwelling unit is $110283 +in.representative_income 110294 Representative total house income in the dwelling unit is $110294 +in.representative_income 110296 Representative total house income in the dwelling unit is $110296 +in.representative_income 110304 Representative total house income in the dwelling unit is $110304 +in.representative_income 110305 Representative total house income in the dwelling unit is $110305 +in.representative_income 110308 Representative total house income in the dwelling unit is $110308 +in.representative_income 110312 Representative total house income in the dwelling unit is $110312 +in.representative_income 110314 Representative total house income in the dwelling unit is $110314 +in.representative_income 110316 Representative total house income in the dwelling unit is $110316 +in.representative_income 110318 Representative total house income in the dwelling unit is $110318 +in.representative_income 110319 Representative total house income in the dwelling unit is $110319 +in.representative_income 110336 Representative total house income in the dwelling unit is $110336 +in.representative_income 110337 Representative total house income in the dwelling unit is $110337 +in.representative_income 110351 Representative total house income in the dwelling unit is $110351 +in.representative_income 110352 Representative total house income in the dwelling unit is $110352 +in.representative_income 110358 Representative total house income in the dwelling unit is $110358 +in.representative_income 110366 Representative total house income in the dwelling unit is $110366 +in.representative_income 110380 Representative total house income in the dwelling unit is $110380 +in.representative_income 110389 Representative total house income in the dwelling unit is $110389 +in.representative_income 110396 Representative total house income in the dwelling unit is $110396 +in.representative_income 110399 Representative total house income in the dwelling unit is $110399 +in.representative_income 110402 Representative total house income in the dwelling unit is $110402 +in.representative_income 110409 Representative total house income in the dwelling unit is $110409 +in.representative_income 110412 Representative total house income in the dwelling unit is $110412 +in.representative_income 110413 Representative total house income in the dwelling unit is $110413 +in.representative_income 110417 Representative total house income in the dwelling unit is $110417 +in.representative_income 110420 Representative total house income in the dwelling unit is $110420 +in.representative_income 110424 Representative total house income in the dwelling unit is $110424 +in.representative_income 110429 Representative total house income in the dwelling unit is $110429 +in.representative_income 110431 Representative total house income in the dwelling unit is $110431 +in.representative_income 110434 Representative total house income in the dwelling unit is $110434 +in.representative_income 110438 Representative total house income in the dwelling unit is $110438 +in.representative_income 110449 Representative total house income in the dwelling unit is $110449 +in.representative_income 110458 Representative total house income in the dwelling unit is $110458 +in.representative_income 110459 Representative total house income in the dwelling unit is $110459 +in.representative_income 110467 Representative total house income in the dwelling unit is $110467 +in.representative_income 110468 Representative total house income in the dwelling unit is $110468 +in.representative_income 110470 Representative total house income in the dwelling unit is $110470 +in.representative_income 110510 Representative total house income in the dwelling unit is $110510 +in.representative_income 110520 Representative total house income in the dwelling unit is $110520 +in.representative_income 110522 Representative total house income in the dwelling unit is $110522 +in.representative_income 110523 Representative total house income in the dwelling unit is $110523 +in.representative_income 110530 Representative total house income in the dwelling unit is $110530 +in.representative_income 110533 Representative total house income in the dwelling unit is $110533 +in.representative_income 110556 Representative total house income in the dwelling unit is $110556 +in.representative_income 110560 Representative total house income in the dwelling unit is $110560 +in.representative_income 110561 Representative total house income in the dwelling unit is $110561 +in.representative_income 110566 Representative total house income in the dwelling unit is $110566 +in.representative_income 110568 Representative total house income in the dwelling unit is $110568 +in.representative_income 110570 Representative total house income in the dwelling unit is $110570 +in.representative_income 110571 Representative total house income in the dwelling unit is $110571 +in.representative_income 110572 Representative total house income in the dwelling unit is $110572 +in.representative_income 110576 Representative total house income in the dwelling unit is $110576 +in.representative_income 110586 Representative total house income in the dwelling unit is $110586 +in.representative_income 110587 Representative total house income in the dwelling unit is $110587 +in.representative_income 110593 Representative total house income in the dwelling unit is $110593 +in.representative_income 110598 Representative total house income in the dwelling unit is $110598 +in.representative_income 110603 Representative total house income in the dwelling unit is $110603 +in.representative_income 110607 Representative total house income in the dwelling unit is $110607 +in.representative_income 110611 Representative total house income in the dwelling unit is $110611 +in.representative_income 110621 Representative total house income in the dwelling unit is $110621 +in.representative_income 110623 Representative total house income in the dwelling unit is $110623 +in.representative_income 110628 Representative total house income in the dwelling unit is $110628 +in.representative_income 110640 Representative total house income in the dwelling unit is $110640 +in.representative_income 110642 Representative total house income in the dwelling unit is $110642 +in.representative_income 110645 Representative total house income in the dwelling unit is $110645 +in.representative_income 110647 Representative total house income in the dwelling unit is $110647 +in.representative_income 110649 Representative total house income in the dwelling unit is $110649 +in.representative_income 110659 Representative total house income in the dwelling unit is $110659 +in.representative_income 110662 Representative total house income in the dwelling unit is $110662 +in.representative_income 110672 Representative total house income in the dwelling unit is $110672 +in.representative_income 110675 Representative total house income in the dwelling unit is $110675 +in.representative_income 110692 Representative total house income in the dwelling unit is $110692 +in.representative_income 110705 Representative total house income in the dwelling unit is $110705 +in.representative_income 110712 Representative total house income in the dwelling unit is $110712 +in.representative_income 110716 Representative total house income in the dwelling unit is $110716 +in.representative_income 110723 Representative total house income in the dwelling unit is $110723 +in.representative_income 110733 Representative total house income in the dwelling unit is $110733 +in.representative_income 110741 Representative total house income in the dwelling unit is $110741 +in.representative_income 110744 Representative total house income in the dwelling unit is $110744 +in.representative_income 110748 Representative total house income in the dwelling unit is $110748 +in.representative_income 110749 Representative total house income in the dwelling unit is $110749 +in.representative_income 110755 Representative total house income in the dwelling unit is $110755 +in.representative_income 110766 Representative total house income in the dwelling unit is $110766 +in.representative_income 110770 Representative total house income in the dwelling unit is $110770 +in.representative_income 110776 Representative total house income in the dwelling unit is $110776 +in.representative_income 110778 Representative total house income in the dwelling unit is $110778 +in.representative_income 110780 Representative total house income in the dwelling unit is $110780 +in.representative_income 110783 Representative total house income in the dwelling unit is $110783 +in.representative_income 110786 Representative total house income in the dwelling unit is $110786 +in.representative_income 110788 Representative total house income in the dwelling unit is $110788 +in.representative_income 110797 Representative total house income in the dwelling unit is $110797 +in.representative_income 110801 Representative total house income in the dwelling unit is $110801 +in.representative_income 110807 Representative total house income in the dwelling unit is $110807 +in.representative_income 110809 Representative total house income in the dwelling unit is $110809 +in.representative_income 110813 Representative total house income in the dwelling unit is $110813 +in.representative_income 110818 Representative total house income in the dwelling unit is $110818 +in.representative_income 110823 Representative total house income in the dwelling unit is $110823 +in.representative_income 110828 Representative total house income in the dwelling unit is $110828 +in.representative_income 110839 Representative total house income in the dwelling unit is $110839 +in.representative_income 110845 Representative total house income in the dwelling unit is $110845 +in.representative_income 110856 Representative total house income in the dwelling unit is $110856 +in.representative_income 110860 Representative total house income in the dwelling unit is $110860 +in.representative_income 110861 Representative total house income in the dwelling unit is $110861 +in.representative_income 110874 Representative total house income in the dwelling unit is $110874 +in.representative_income 110881 Representative total house income in the dwelling unit is $110881 +in.representative_income 110887 Representative total house income in the dwelling unit is $110887 +in.representative_income 110889 Representative total house income in the dwelling unit is $110889 +in.representative_income 110891 Representative total house income in the dwelling unit is $110891 +in.representative_income 110892 Representative total house income in the dwelling unit is $110892 +in.representative_income 110902 Representative total house income in the dwelling unit is $110902 +in.representative_income 110914 Representative total house income in the dwelling unit is $110914 +in.representative_income 110918 Representative total house income in the dwelling unit is $110918 +in.representative_income 110923 Representative total house income in the dwelling unit is $110923 +in.representative_income 110925 Representative total house income in the dwelling unit is $110925 +in.representative_income 110927 Representative total house income in the dwelling unit is $110927 +in.representative_income 110932 Representative total house income in the dwelling unit is $110932 +in.representative_income 110933 Representative total house income in the dwelling unit is $110933 +in.representative_income 110934 Representative total house income in the dwelling unit is $110934 +in.representative_income 110940 Representative total house income in the dwelling unit is $110940 +in.representative_income 110944 Representative total house income in the dwelling unit is $110944 +in.representative_income 110945 Representative total house income in the dwelling unit is $110945 +in.representative_income 110963 Representative total house income in the dwelling unit is $110963 +in.representative_income 110964 Representative total house income in the dwelling unit is $110964 +in.representative_income 110975 Representative total house income in the dwelling unit is $110975 +in.representative_income 110984 Representative total house income in the dwelling unit is $110984 +in.representative_income 110986 Representative total house income in the dwelling unit is $110986 +in.representative_income 110989 Representative total house income in the dwelling unit is $110989 +in.representative_income 110995 Representative total house income in the dwelling unit is $110995 +in.representative_income 110997 Representative total house income in the dwelling unit is $110997 +in.representative_income 111003 Representative total house income in the dwelling unit is $111003 +in.representative_income 111005 Representative total house income in the dwelling unit is $111005 +in.representative_income 111007 Representative total house income in the dwelling unit is $111007 +in.representative_income 111015 Representative total house income in the dwelling unit is $111015 +in.representative_income 111018 Representative total house income in the dwelling unit is $111018 +in.representative_income 111025 Representative total house income in the dwelling unit is $111025 +in.representative_income 111029 Representative total house income in the dwelling unit is $111029 +in.representative_income 111035 Representative total house income in the dwelling unit is $111035 +in.representative_income 111037 Representative total house income in the dwelling unit is $111037 +in.representative_income 111040 Representative total house income in the dwelling unit is $111040 +in.representative_income 111050 Representative total house income in the dwelling unit is $111050 +in.representative_income 111059 Representative total house income in the dwelling unit is $111059 +in.representative_income 111072 Representative total house income in the dwelling unit is $111072 +in.representative_income 111081 Representative total house income in the dwelling unit is $111081 +in.representative_income 111087 Representative total house income in the dwelling unit is $111087 +in.representative_income 111102 Representative total house income in the dwelling unit is $111102 +in.representative_income 111103 Representative total house income in the dwelling unit is $111103 +in.representative_income 111105 Representative total house income in the dwelling unit is $111105 +in.representative_income 111116 Representative total house income in the dwelling unit is $111116 +in.representative_income 111126 Representative total house income in the dwelling unit is $111126 +in.representative_income 111136 Representative total house income in the dwelling unit is $111136 +in.representative_income 111137 Representative total house income in the dwelling unit is $111137 +in.representative_income 111139 Representative total house income in the dwelling unit is $111139 +in.representative_income 111155 Representative total house income in the dwelling unit is $111155 +in.representative_income 111156 Representative total house income in the dwelling unit is $111156 +in.representative_income 111168 Representative total house income in the dwelling unit is $111168 +in.representative_income 111170 Representative total house income in the dwelling unit is $111170 +in.representative_income 111180 Representative total house income in the dwelling unit is $111180 +in.representative_income 111187 Representative total house income in the dwelling unit is $111187 +in.representative_income 111190 Representative total house income in the dwelling unit is $111190 +in.representative_income 111191 Representative total house income in the dwelling unit is $111191 +in.representative_income 111197 Representative total house income in the dwelling unit is $111197 +in.representative_income 111210 Representative total house income in the dwelling unit is $111210 +in.representative_income 111217 Representative total house income in the dwelling unit is $111217 +in.representative_income 111232 Representative total house income in the dwelling unit is $111232 +in.representative_income 111237 Representative total house income in the dwelling unit is $111237 +in.representative_income 111242 Representative total house income in the dwelling unit is $111242 +in.representative_income 111247 Representative total house income in the dwelling unit is $111247 +in.representative_income 111252 Representative total house income in the dwelling unit is $111252 +in.representative_income 111261 Representative total house income in the dwelling unit is $111261 +in.representative_income 111267 Representative total house income in the dwelling unit is $111267 +in.representative_income 111269 Representative total house income in the dwelling unit is $111269 +in.representative_income 111274 Representative total house income in the dwelling unit is $111274 +in.representative_income 111282 Representative total house income in the dwelling unit is $111282 +in.representative_income 111284 Representative total house income in the dwelling unit is $111284 +in.representative_income 111288 Representative total house income in the dwelling unit is $111288 +in.representative_income 111294 Representative total house income in the dwelling unit is $111294 +in.representative_income 111298 Representative total house income in the dwelling unit is $111298 +in.representative_income 111300 Representative total house income in the dwelling unit is $111300 +in.representative_income 111307 Representative total house income in the dwelling unit is $111307 +in.representative_income 111310 Representative total house income in the dwelling unit is $111310 +in.representative_income 111316 Representative total house income in the dwelling unit is $111316 +in.representative_income 111318 Representative total house income in the dwelling unit is $111318 +in.representative_income 111332 Representative total house income in the dwelling unit is $111332 +in.representative_income 111335 Representative total house income in the dwelling unit is $111335 +in.representative_income 111343 Representative total house income in the dwelling unit is $111343 +in.representative_income 111345 Representative total house income in the dwelling unit is $111345 +in.representative_income 111366 Representative total house income in the dwelling unit is $111366 +in.representative_income 111368 Representative total house income in the dwelling unit is $111368 +in.representative_income 111376 Representative total house income in the dwelling unit is $111376 +in.representative_income 111387 Representative total house income in the dwelling unit is $111387 +in.representative_income 111397 Representative total house income in the dwelling unit is $111397 +in.representative_income 111407 Representative total house income in the dwelling unit is $111407 +in.representative_income 111419 Representative total house income in the dwelling unit is $111419 +in.representative_income 111424 Representative total house income in the dwelling unit is $111424 +in.representative_income 111429 Representative total house income in the dwelling unit is $111429 +in.representative_income 111430 Representative total house income in the dwelling unit is $111430 +in.representative_income 111431 Representative total house income in the dwelling unit is $111431 +in.representative_income 111449 Representative total house income in the dwelling unit is $111449 +in.representative_income 111462 Representative total house income in the dwelling unit is $111462 +in.representative_income 111470 Representative total house income in the dwelling unit is $111470 +in.representative_income 111471 Representative total house income in the dwelling unit is $111471 +in.representative_income 111483 Representative total house income in the dwelling unit is $111483 +in.representative_income 111500 Representative total house income in the dwelling unit is $111500 +in.representative_income 111505 Representative total house income in the dwelling unit is $111505 +in.representative_income 111520 Representative total house income in the dwelling unit is $111520 +in.representative_income 111521 Representative total house income in the dwelling unit is $111521 +in.representative_income 111531 Representative total house income in the dwelling unit is $111531 +in.representative_income 111542 Representative total house income in the dwelling unit is $111542 +in.representative_income 111549 Representative total house income in the dwelling unit is $111549 +in.representative_income 111559 Representative total house income in the dwelling unit is $111559 +in.representative_income 111567 Representative total house income in the dwelling unit is $111567 +in.representative_income 111572 Representative total house income in the dwelling unit is $111572 +in.representative_income 111574 Representative total house income in the dwelling unit is $111574 +in.representative_income 111578 Representative total house income in the dwelling unit is $111578 +in.representative_income 111581 Representative total house income in the dwelling unit is $111581 +in.representative_income 111593 Representative total house income in the dwelling unit is $111593 +in.representative_income 111603 Representative total house income in the dwelling unit is $111603 +in.representative_income 111613 Representative total house income in the dwelling unit is $111613 +in.representative_income 111621 Representative total house income in the dwelling unit is $111621 +in.representative_income 111634 Representative total house income in the dwelling unit is $111634 +in.representative_income 111639 Representative total house income in the dwelling unit is $111639 +in.representative_income 111643 Representative total house income in the dwelling unit is $111643 +in.representative_income 111650 Representative total house income in the dwelling unit is $111650 +in.representative_income 111656 Representative total house income in the dwelling unit is $111656 +in.representative_income 111660 Representative total house income in the dwelling unit is $111660 +in.representative_income 111665 Representative total house income in the dwelling unit is $111665 +in.representative_income 111667 Representative total house income in the dwelling unit is $111667 +in.representative_income 111672 Representative total house income in the dwelling unit is $111672 +in.representative_income 111683 Representative total house income in the dwelling unit is $111683 +in.representative_income 111685 Representative total house income in the dwelling unit is $111685 +in.representative_income 111692 Representative total house income in the dwelling unit is $111692 +in.representative_income 111704 Representative total house income in the dwelling unit is $111704 +in.representative_income 111706 Representative total house income in the dwelling unit is $111706 +in.representative_income 111707 Representative total house income in the dwelling unit is $111707 +in.representative_income 111718 Representative total house income in the dwelling unit is $111718 +in.representative_income 111721 Representative total house income in the dwelling unit is $111721 +in.representative_income 111722 Representative total house income in the dwelling unit is $111722 +in.representative_income 111723 Representative total house income in the dwelling unit is $111723 +in.representative_income 111735 Representative total house income in the dwelling unit is $111735 +in.representative_income 111740 Representative total house income in the dwelling unit is $111740 +in.representative_income 111742 Representative total house income in the dwelling unit is $111742 +in.representative_income 111746 Representative total house income in the dwelling unit is $111746 +in.representative_income 111755 Representative total house income in the dwelling unit is $111755 +in.representative_income 111757 Representative total house income in the dwelling unit is $111757 +in.representative_income 111761 Representative total house income in the dwelling unit is $111761 +in.representative_income 111762 Representative total house income in the dwelling unit is $111762 +in.representative_income 111773 Representative total house income in the dwelling unit is $111773 +in.representative_income 111774 Representative total house income in the dwelling unit is $111774 +in.representative_income 111778 Representative total house income in the dwelling unit is $111778 +in.representative_income 111788 Representative total house income in the dwelling unit is $111788 +in.representative_income 111789 Representative total house income in the dwelling unit is $111789 +in.representative_income 111796 Representative total house income in the dwelling unit is $111796 +in.representative_income 111799 Representative total house income in the dwelling unit is $111799 +in.representative_income 111800 Representative total house income in the dwelling unit is $111800 +in.representative_income 111809 Representative total house income in the dwelling unit is $111809 +in.representative_income 111810 Representative total house income in the dwelling unit is $111810 +in.representative_income 111823 Representative total house income in the dwelling unit is $111823 +in.representative_income 111828 Representative total house income in the dwelling unit is $111828 +in.representative_income 111830 Representative total house income in the dwelling unit is $111830 +in.representative_income 111832 Representative total house income in the dwelling unit is $111832 +in.representative_income 111833 Representative total house income in the dwelling unit is $111833 +in.representative_income 111841 Representative total house income in the dwelling unit is $111841 +in.representative_income 111843 Representative total house income in the dwelling unit is $111843 +in.representative_income 111850 Representative total house income in the dwelling unit is $111850 +in.representative_income 111853 Representative total house income in the dwelling unit is $111853 +in.representative_income 111861 Representative total house income in the dwelling unit is $111861 +in.representative_income 111864 Representative total house income in the dwelling unit is $111864 +in.representative_income 111869 Representative total house income in the dwelling unit is $111869 +in.representative_income 111882 Representative total house income in the dwelling unit is $111882 +in.representative_income 111883 Representative total house income in the dwelling unit is $111883 +in.representative_income 111893 Representative total house income in the dwelling unit is $111893 +in.representative_income 111894 Representative total house income in the dwelling unit is $111894 +in.representative_income 111904 Representative total house income in the dwelling unit is $111904 +in.representative_income 111907 Representative total house income in the dwelling unit is $111907 +in.representative_income 111913 Representative total house income in the dwelling unit is $111913 +in.representative_income 111915 Representative total house income in the dwelling unit is $111915 +in.representative_income 111918 Representative total house income in the dwelling unit is $111918 +in.representative_income 111924 Representative total house income in the dwelling unit is $111924 +in.representative_income 111925 Representative total house income in the dwelling unit is $111925 +in.representative_income 111936 Representative total house income in the dwelling unit is $111936 +in.representative_income 111961 Representative total house income in the dwelling unit is $111961 +in.representative_income 111999 Representative total house income in the dwelling unit is $111999 +in.representative_income 112002 Representative total house income in the dwelling unit is $112002 +in.representative_income 112009 Representative total house income in the dwelling unit is $112009 +in.representative_income 112016 Representative total house income in the dwelling unit is $112016 +in.representative_income 112025 Representative total house income in the dwelling unit is $112025 +in.representative_income 112034 Representative total house income in the dwelling unit is $112034 +in.representative_income 112035 Representative total house income in the dwelling unit is $112035 +in.representative_income 112044 Representative total house income in the dwelling unit is $112044 +in.representative_income 112045 Representative total house income in the dwelling unit is $112045 +in.representative_income 112055 Representative total house income in the dwelling unit is $112055 +in.representative_income 112068 Representative total house income in the dwelling unit is $112068 +in.representative_income 112076 Representative total house income in the dwelling unit is $112076 +in.representative_income 112078 Representative total house income in the dwelling unit is $112078 +in.representative_income 112086 Representative total house income in the dwelling unit is $112086 +in.representative_income 112104 Representative total house income in the dwelling unit is $112104 +in.representative_income 112111 Representative total house income in the dwelling unit is $112111 +in.representative_income 112118 Representative total house income in the dwelling unit is $112118 +in.representative_income 112121 Representative total house income in the dwelling unit is $112121 +in.representative_income 112126 Representative total house income in the dwelling unit is $112126 +in.representative_income 112153 Representative total house income in the dwelling unit is $112153 +in.representative_income 112164 Representative total house income in the dwelling unit is $112164 +in.representative_income 112168 Representative total house income in the dwelling unit is $112168 +in.representative_income 112176 Representative total house income in the dwelling unit is $112176 +in.representative_income 112177 Representative total house income in the dwelling unit is $112177 +in.representative_income 112207 Representative total house income in the dwelling unit is $112207 +in.representative_income 112208 Representative total house income in the dwelling unit is $112208 +in.representative_income 112210 Representative total house income in the dwelling unit is $112210 +in.representative_income 112222 Representative total house income in the dwelling unit is $112222 +in.representative_income 112226 Representative total house income in the dwelling unit is $112226 +in.representative_income 112227 Representative total house income in the dwelling unit is $112227 +in.representative_income 112229 Representative total house income in the dwelling unit is $112229 +in.representative_income 112232 Representative total house income in the dwelling unit is $112232 +in.representative_income 112247 Representative total house income in the dwelling unit is $112247 +in.representative_income 112250 Representative total house income in the dwelling unit is $112250 +in.representative_income 112261 Representative total house income in the dwelling unit is $112261 +in.representative_income 112271 Representative total house income in the dwelling unit is $112271 +in.representative_income 112283 Representative total house income in the dwelling unit is $112283 +in.representative_income 112288 Representative total house income in the dwelling unit is $112288 +in.representative_income 112295 Representative total house income in the dwelling unit is $112295 +in.representative_income 112305 Representative total house income in the dwelling unit is $112305 +in.representative_income 112308 Representative total house income in the dwelling unit is $112308 +in.representative_income 112316 Representative total house income in the dwelling unit is $112316 +in.representative_income 112325 Representative total house income in the dwelling unit is $112325 +in.representative_income 112326 Representative total house income in the dwelling unit is $112326 +in.representative_income 112328 Representative total house income in the dwelling unit is $112328 +in.representative_income 112336 Representative total house income in the dwelling unit is $112336 +in.representative_income 112338 Representative total house income in the dwelling unit is $112338 +in.representative_income 112345 Representative total house income in the dwelling unit is $112345 +in.representative_income 112368 Representative total house income in the dwelling unit is $112368 +in.representative_income 112369 Representative total house income in the dwelling unit is $112369 +in.representative_income 112370 Representative total house income in the dwelling unit is $112370 +in.representative_income 112378 Representative total house income in the dwelling unit is $112378 +in.representative_income 112390 Representative total house income in the dwelling unit is $112390 +in.representative_income 112409 Representative total house income in the dwelling unit is $112409 +in.representative_income 112412 Representative total house income in the dwelling unit is $112412 +in.representative_income 112415 Representative total house income in the dwelling unit is $112415 +in.representative_income 112418 Representative total house income in the dwelling unit is $112418 +in.representative_income 112421 Representative total house income in the dwelling unit is $112421 +in.representative_income 112423 Representative total house income in the dwelling unit is $112423 +in.representative_income 112428 Representative total house income in the dwelling unit is $112428 +in.representative_income 112429 Representative total house income in the dwelling unit is $112429 +in.representative_income 112466 Representative total house income in the dwelling unit is $112466 +in.representative_income 112471 Representative total house income in the dwelling unit is $112471 +in.representative_income 112477 Representative total house income in the dwelling unit is $112477 +in.representative_income 112480 Representative total house income in the dwelling unit is $112480 +in.representative_income 112496 Representative total house income in the dwelling unit is $112496 +in.representative_income 112497 Representative total house income in the dwelling unit is $112497 +in.representative_income 112498 Representative total house income in the dwelling unit is $112498 +in.representative_income 112502 Representative total house income in the dwelling unit is $112502 +in.representative_income 112511 Representative total house income in the dwelling unit is $112511 +in.representative_income 112526 Representative total house income in the dwelling unit is $112526 +in.representative_income 112530 Representative total house income in the dwelling unit is $112530 +in.representative_income 112531 Representative total house income in the dwelling unit is $112531 +in.representative_income 112532 Representative total house income in the dwelling unit is $112532 +in.representative_income 112538 Representative total house income in the dwelling unit is $112538 +in.representative_income 112540 Representative total house income in the dwelling unit is $112540 +in.representative_income 112550 Representative total house income in the dwelling unit is $112550 +in.representative_income 112583 Representative total house income in the dwelling unit is $112583 +in.representative_income 112585 Representative total house income in the dwelling unit is $112585 +in.representative_income 112605 Representative total house income in the dwelling unit is $112605 +in.representative_income 112621 Representative total house income in the dwelling unit is $112621 +in.representative_income 112629 Representative total house income in the dwelling unit is $112629 +in.representative_income 112631 Representative total house income in the dwelling unit is $112631 +in.representative_income 112632 Representative total house income in the dwelling unit is $112632 +in.representative_income 112634 Representative total house income in the dwelling unit is $112634 +in.representative_income 112639 Representative total house income in the dwelling unit is $112639 +in.representative_income 112641 Representative total house income in the dwelling unit is $112641 +in.representative_income 112650 Representative total house income in the dwelling unit is $112650 +in.representative_income 112653 Representative total house income in the dwelling unit is $112653 +in.representative_income 112655 Representative total house income in the dwelling unit is $112655 +in.representative_income 112666 Representative total house income in the dwelling unit is $112666 +in.representative_income 112693 Representative total house income in the dwelling unit is $112693 +in.representative_income 112696 Representative total house income in the dwelling unit is $112696 +in.representative_income 112697 Representative total house income in the dwelling unit is $112697 +in.representative_income 112702 Representative total house income in the dwelling unit is $112702 +in.representative_income 112704 Representative total house income in the dwelling unit is $112704 +in.representative_income 112708 Representative total house income in the dwelling unit is $112708 +in.representative_income 112712 Representative total house income in the dwelling unit is $112712 +in.representative_income 112714 Representative total house income in the dwelling unit is $112714 +in.representative_income 112717 Representative total house income in the dwelling unit is $112717 +in.representative_income 112723 Representative total house income in the dwelling unit is $112723 +in.representative_income 112732 Representative total house income in the dwelling unit is $112732 +in.representative_income 112734 Representative total house income in the dwelling unit is $112734 +in.representative_income 112737 Representative total house income in the dwelling unit is $112737 +in.representative_income 112752 Representative total house income in the dwelling unit is $112752 +in.representative_income 112772 Representative total house income in the dwelling unit is $112772 +in.representative_income 112790 Representative total house income in the dwelling unit is $112790 +in.representative_income 112801 Representative total house income in the dwelling unit is $112801 +in.representative_income 112820 Representative total house income in the dwelling unit is $112820 +in.representative_income 112821 Representative total house income in the dwelling unit is $112821 +in.representative_income 112833 Representative total house income in the dwelling unit is $112833 +in.representative_income 112841 Representative total house income in the dwelling unit is $112841 +in.representative_income 112843 Representative total house income in the dwelling unit is $112843 +in.representative_income 112851 Representative total house income in the dwelling unit is $112851 +in.representative_income 112861 Representative total house income in the dwelling unit is $112861 +in.representative_income 112873 Representative total house income in the dwelling unit is $112873 +in.representative_income 112874 Representative total house income in the dwelling unit is $112874 +in.representative_income 112876 Representative total house income in the dwelling unit is $112876 +in.representative_income 112884 Representative total house income in the dwelling unit is $112884 +in.representative_income 112885 Representative total house income in the dwelling unit is $112885 +in.representative_income 112901 Representative total house income in the dwelling unit is $112901 +in.representative_income 112905 Representative total house income in the dwelling unit is $112905 +in.representative_income 112910 Representative total house income in the dwelling unit is $112910 +in.representative_income 112911 Representative total house income in the dwelling unit is $112911 +in.representative_income 112913 Representative total house income in the dwelling unit is $112913 +in.representative_income 112926 Representative total house income in the dwelling unit is $112926 +in.representative_income 112934 Representative total house income in the dwelling unit is $112934 +in.representative_income 112944 Representative total house income in the dwelling unit is $112944 +in.representative_income 112948 Representative total house income in the dwelling unit is $112948 +in.representative_income 112954 Representative total house income in the dwelling unit is $112954 +in.representative_income 112964 Representative total house income in the dwelling unit is $112964 +in.representative_income 112996 Representative total house income in the dwelling unit is $112996 +in.representative_income 113015 Representative total house income in the dwelling unit is $113015 +in.representative_income 113017 Representative total house income in the dwelling unit is $113017 +in.representative_income 113022 Representative total house income in the dwelling unit is $113022 +in.representative_income 113034 Representative total house income in the dwelling unit is $113034 +in.representative_income 113035 Representative total house income in the dwelling unit is $113035 +in.representative_income 113046 Representative total house income in the dwelling unit is $113046 +in.representative_income 113047 Representative total house income in the dwelling unit is $113047 +in.representative_income 113054 Representative total house income in the dwelling unit is $113054 +in.representative_income 113061 Representative total house income in the dwelling unit is $113061 +in.representative_income 113075 Representative total house income in the dwelling unit is $113075 +in.representative_income 113076 Representative total house income in the dwelling unit is $113076 +in.representative_income 113078 Representative total house income in the dwelling unit is $113078 +in.representative_income 113128 Representative total house income in the dwelling unit is $113128 +in.representative_income 113136 Representative total house income in the dwelling unit is $113136 +in.representative_income 113141 Representative total house income in the dwelling unit is $113141 +in.representative_income 113151 Representative total house income in the dwelling unit is $113151 +in.representative_income 113159 Representative total house income in the dwelling unit is $113159 +in.representative_income 113167 Representative total house income in the dwelling unit is $113167 +in.representative_income 113187 Representative total house income in the dwelling unit is $113187 +in.representative_income 113191 Representative total house income in the dwelling unit is $113191 +in.representative_income 113195 Representative total house income in the dwelling unit is $113195 +in.representative_income 113204 Representative total house income in the dwelling unit is $113204 +in.representative_income 113210 Representative total house income in the dwelling unit is $113210 +in.representative_income 113233 Representative total house income in the dwelling unit is $113233 +in.representative_income 113237 Representative total house income in the dwelling unit is $113237 +in.representative_income 113238 Representative total house income in the dwelling unit is $113238 +in.representative_income 113249 Representative total house income in the dwelling unit is $113249 +in.representative_income 113253 Representative total house income in the dwelling unit is $113253 +in.representative_income 113264 Representative total house income in the dwelling unit is $113264 +in.representative_income 113278 Representative total house income in the dwelling unit is $113278 +in.representative_income 113281 Representative total house income in the dwelling unit is $113281 +in.representative_income 113288 Representative total house income in the dwelling unit is $113288 +in.representative_income 113298 Representative total house income in the dwelling unit is $113298 +in.representative_income 113302 Representative total house income in the dwelling unit is $113302 +in.representative_income 113305 Representative total house income in the dwelling unit is $113305 +in.representative_income 113307 Representative total house income in the dwelling unit is $113307 +in.representative_income 113338 Representative total house income in the dwelling unit is $113338 +in.representative_income 113341 Representative total house income in the dwelling unit is $113341 +in.representative_income 113356 Representative total house income in the dwelling unit is $113356 +in.representative_income 113357 Representative total house income in the dwelling unit is $113357 +in.representative_income 113369 Representative total house income in the dwelling unit is $113369 +in.representative_income 113370 Representative total house income in the dwelling unit is $113370 +in.representative_income 113423 Representative total house income in the dwelling unit is $113423 +in.representative_income 113431 Representative total house income in the dwelling unit is $113431 +in.representative_income 113439 Representative total house income in the dwelling unit is $113439 +in.representative_income 113449 Representative total house income in the dwelling unit is $113449 +in.representative_income 113450 Representative total house income in the dwelling unit is $113450 +in.representative_income 113451 Representative total house income in the dwelling unit is $113451 +in.representative_income 113460 Representative total house income in the dwelling unit is $113460 +in.representative_income 113463 Representative total house income in the dwelling unit is $113463 +in.representative_income 113470 Representative total house income in the dwelling unit is $113470 +in.representative_income 113476 Representative total house income in the dwelling unit is $113476 +in.representative_income 113511 Representative total house income in the dwelling unit is $113511 +in.representative_income 113518 Representative total house income in the dwelling unit is $113518 +in.representative_income 113539 Representative total house income in the dwelling unit is $113539 +in.representative_income 113540 Representative total house income in the dwelling unit is $113540 +in.representative_income 113542 Representative total house income in the dwelling unit is $113542 +in.representative_income 113545 Representative total house income in the dwelling unit is $113545 +in.representative_income 113551 Representative total house income in the dwelling unit is $113551 +in.representative_income 113557 Representative total house income in the dwelling unit is $113557 +in.representative_income 113563 Representative total house income in the dwelling unit is $113563 +in.representative_income 113571 Representative total house income in the dwelling unit is $113571 +in.representative_income 113581 Representative total house income in the dwelling unit is $113581 +in.representative_income 113601 Representative total house income in the dwelling unit is $113601 +in.representative_income 113614 Representative total house income in the dwelling unit is $113614 +in.representative_income 113615 Representative total house income in the dwelling unit is $113615 +in.representative_income 113623 Representative total house income in the dwelling unit is $113623 +in.representative_income 113641 Representative total house income in the dwelling unit is $113641 +in.representative_income 113665 Representative total house income in the dwelling unit is $113665 +in.representative_income 113666 Representative total house income in the dwelling unit is $113666 +in.representative_income 113677 Representative total house income in the dwelling unit is $113677 +in.representative_income 113678 Representative total house income in the dwelling unit is $113678 +in.representative_income 113679 Representative total house income in the dwelling unit is $113679 +in.representative_income 113687 Representative total house income in the dwelling unit is $113687 +in.representative_income 113698 Representative total house income in the dwelling unit is $113698 +in.representative_income 113707 Representative total house income in the dwelling unit is $113707 +in.representative_income 113709 Representative total house income in the dwelling unit is $113709 +in.representative_income 113717 Representative total house income in the dwelling unit is $113717 +in.representative_income 113742 Representative total house income in the dwelling unit is $113742 +in.representative_income 113769 Representative total house income in the dwelling unit is $113769 +in.representative_income 113774 Representative total house income in the dwelling unit is $113774 +in.representative_income 113786 Representative total house income in the dwelling unit is $113786 +in.representative_income 113790 Representative total house income in the dwelling unit is $113790 +in.representative_income 113792 Representative total house income in the dwelling unit is $113792 +in.representative_income 113793 Representative total house income in the dwelling unit is $113793 +in.representative_income 113796 Representative total house income in the dwelling unit is $113796 +in.representative_income 113798 Representative total house income in the dwelling unit is $113798 +in.representative_income 113817 Representative total house income in the dwelling unit is $113817 +in.representative_income 113828 Representative total house income in the dwelling unit is $113828 +in.representative_income 113833 Representative total house income in the dwelling unit is $113833 +in.representative_income 113839 Representative total house income in the dwelling unit is $113839 +in.representative_income 113842 Representative total house income in the dwelling unit is $113842 +in.representative_income 113843 Representative total house income in the dwelling unit is $113843 +in.representative_income 113845 Representative total house income in the dwelling unit is $113845 +in.representative_income 113872 Representative total house income in the dwelling unit is $113872 +in.representative_income 113882 Representative total house income in the dwelling unit is $113882 +in.representative_income 113887 Representative total house income in the dwelling unit is $113887 +in.representative_income 113893 Representative total house income in the dwelling unit is $113893 +in.representative_income 113897 Representative total house income in the dwelling unit is $113897 +in.representative_income 113908 Representative total house income in the dwelling unit is $113908 +in.representative_income 113911 Representative total house income in the dwelling unit is $113911 +in.representative_income 113919 Representative total house income in the dwelling unit is $113919 +in.representative_income 113944 Representative total house income in the dwelling unit is $113944 +in.representative_income 113946 Representative total house income in the dwelling unit is $113946 +in.representative_income 113947 Representative total house income in the dwelling unit is $113947 +in.representative_income 113950 Representative total house income in the dwelling unit is $113950 +in.representative_income 113975 Representative total house income in the dwelling unit is $113975 +in.representative_income 113990 Representative total house income in the dwelling unit is $113990 +in.representative_income 114001 Representative total house income in the dwelling unit is $114001 +in.representative_income 114002 Representative total house income in the dwelling unit is $114002 +in.representative_income 114037 Representative total house income in the dwelling unit is $114037 +in.representative_income 114045 Representative total house income in the dwelling unit is $114045 +in.representative_income 114079 Representative total house income in the dwelling unit is $114079 +in.representative_income 114097 Representative total house income in the dwelling unit is $114097 +in.representative_income 114098 Representative total house income in the dwelling unit is $114098 +in.representative_income 114107 Representative total house income in the dwelling unit is $114107 +in.representative_income 114109 Representative total house income in the dwelling unit is $114109 +in.representative_income 114141 Representative total house income in the dwelling unit is $114141 +in.representative_income 114146 Representative total house income in the dwelling unit is $114146 +in.representative_income 114150 Representative total house income in the dwelling unit is $114150 +in.representative_income 114157 Representative total house income in the dwelling unit is $114157 +in.representative_income 114182 Representative total house income in the dwelling unit is $114182 +in.representative_income 114205 Representative total house income in the dwelling unit is $114205 +in.representative_income 114214 Representative total house income in the dwelling unit is $114214 +in.representative_income 114215 Representative total house income in the dwelling unit is $114215 +in.representative_income 114235 Representative total house income in the dwelling unit is $114235 +in.representative_income 114247 Representative total house income in the dwelling unit is $114247 +in.representative_income 114259 Representative total house income in the dwelling unit is $114259 +in.representative_income 114284 Representative total house income in the dwelling unit is $114284 +in.representative_income 114313 Representative total house income in the dwelling unit is $114313 +in.representative_income 114319 Representative total house income in the dwelling unit is $114319 +in.representative_income 114322 Representative total house income in the dwelling unit is $114322 +in.representative_income 114340 Representative total house income in the dwelling unit is $114340 +in.representative_income 114348 Representative total house income in the dwelling unit is $114348 +in.representative_income 114365 Representative total house income in the dwelling unit is $114365 +in.representative_income 114369 Representative total house income in the dwelling unit is $114369 +in.representative_income 114376 Representative total house income in the dwelling unit is $114376 +in.representative_income 114388 Representative total house income in the dwelling unit is $114388 +in.representative_income 114389 Representative total house income in the dwelling unit is $114389 +in.representative_income 114421 Representative total house income in the dwelling unit is $114421 +in.representative_income 114425 Representative total house income in the dwelling unit is $114425 +in.representative_income 114430 Representative total house income in the dwelling unit is $114430 +in.representative_income 114449 Representative total house income in the dwelling unit is $114449 +in.representative_income 114467 Representative total house income in the dwelling unit is $114467 +in.representative_income 114480 Representative total house income in the dwelling unit is $114480 +in.representative_income 114481 Representative total house income in the dwelling unit is $114481 +in.representative_income 114490 Representative total house income in the dwelling unit is $114490 +in.representative_income 114491 Representative total house income in the dwelling unit is $114491 +in.representative_income 114509 Representative total house income in the dwelling unit is $114509 +in.representative_income 114530 Representative total house income in the dwelling unit is $114530 +in.representative_income 114537 Representative total house income in the dwelling unit is $114537 +in.representative_income 114550 Representative total house income in the dwelling unit is $114550 +in.representative_income 114552 Representative total house income in the dwelling unit is $114552 +in.representative_income 114594 Representative total house income in the dwelling unit is $114594 +in.representative_income 114598 Representative total house income in the dwelling unit is $114598 +in.representative_income 114606 Representative total house income in the dwelling unit is $114606 +in.representative_income 114615 Representative total house income in the dwelling unit is $114615 +in.representative_income 114635 Representative total house income in the dwelling unit is $114635 +in.representative_income 114638 Representative total house income in the dwelling unit is $114638 +in.representative_income 114644 Representative total house income in the dwelling unit is $114644 +in.representative_income 114651 Representative total house income in the dwelling unit is $114651 +in.representative_income 114688 Representative total house income in the dwelling unit is $114688 +in.representative_income 114692 Representative total house income in the dwelling unit is $114692 +in.representative_income 114698 Representative total house income in the dwelling unit is $114698 +in.representative_income 114709 Representative total house income in the dwelling unit is $114709 +in.representative_income 114741 Representative total house income in the dwelling unit is $114741 +in.representative_income 114746 Representative total house income in the dwelling unit is $114746 +in.representative_income 114752 Representative total house income in the dwelling unit is $114752 +in.representative_income 114801 Representative total house income in the dwelling unit is $114801 +in.representative_income 114803 Representative total house income in the dwelling unit is $114803 +in.representative_income 114847 Representative total house income in the dwelling unit is $114847 +in.representative_income 114853 Representative total house income in the dwelling unit is $114853 +in.representative_income 114854 Representative total house income in the dwelling unit is $114854 +in.representative_income 114855 Representative total house income in the dwelling unit is $114855 +in.representative_income 114859 Representative total house income in the dwelling unit is $114859 +in.representative_income 114860 Representative total house income in the dwelling unit is $114860 +in.representative_income 114894 Representative total house income in the dwelling unit is $114894 +in.representative_income 114903 Representative total house income in the dwelling unit is $114903 +in.representative_income 114952 Representative total house income in the dwelling unit is $114952 +in.representative_income 114955 Representative total house income in the dwelling unit is $114955 +in.representative_income 114962 Representative total house income in the dwelling unit is $114962 +in.representative_income 114967 Representative total house income in the dwelling unit is $114967 +in.representative_income 115007 Representative total house income in the dwelling unit is $115007 +in.representative_income 115016 Representative total house income in the dwelling unit is $115016 +in.representative_income 115031 Representative total house income in the dwelling unit is $115031 +in.representative_income 115056 Representative total house income in the dwelling unit is $115056 +in.representative_income 115057 Representative total house income in the dwelling unit is $115057 +in.representative_income 115070 Representative total house income in the dwelling unit is $115070 +in.representative_income 115074 Representative total house income in the dwelling unit is $115074 +in.representative_income 115110 Representative total house income in the dwelling unit is $115110 +in.representative_income 115120 Representative total house income in the dwelling unit is $115120 +in.representative_income 115124 Representative total house income in the dwelling unit is $115124 +in.representative_income 115136 Representative total house income in the dwelling unit is $115136 +in.representative_income 115157 Representative total house income in the dwelling unit is $115157 +in.representative_income 115162 Representative total house income in the dwelling unit is $115162 +in.representative_income 115163 Representative total house income in the dwelling unit is $115163 +in.representative_income 115178 Representative total house income in the dwelling unit is $115178 +in.representative_income 115181 Representative total house income in the dwelling unit is $115181 +in.representative_income 115213 Representative total house income in the dwelling unit is $115213 +in.representative_income 115247 Representative total house income in the dwelling unit is $115247 +in.representative_income 115258 Representative total house income in the dwelling unit is $115258 +in.representative_income 115268 Representative total house income in the dwelling unit is $115268 +in.representative_income 115277 Representative total house income in the dwelling unit is $115277 +in.representative_income 115287 Representative total house income in the dwelling unit is $115287 +in.representative_income 115288 Representative total house income in the dwelling unit is $115288 +in.representative_income 115298 Representative total house income in the dwelling unit is $115298 +in.representative_income 115317 Representative total house income in the dwelling unit is $115317 +in.representative_income 115352 Representative total house income in the dwelling unit is $115352 +in.representative_income 115359 Representative total house income in the dwelling unit is $115359 +in.representative_income 115374 Representative total house income in the dwelling unit is $115374 +in.representative_income 115379 Representative total house income in the dwelling unit is $115379 +in.representative_income 115385 Representative total house income in the dwelling unit is $115385 +in.representative_income 115394 Representative total house income in the dwelling unit is $115394 +in.representative_income 115396 Representative total house income in the dwelling unit is $115396 +in.representative_income 115409 Representative total house income in the dwelling unit is $115409 +in.representative_income 115419 Representative total house income in the dwelling unit is $115419 +in.representative_income 115460 Representative total house income in the dwelling unit is $115460 +in.representative_income 115480 Representative total house income in the dwelling unit is $115480 +in.representative_income 115502 Representative total house income in the dwelling unit is $115502 +in.representative_income 115503 Representative total house income in the dwelling unit is $115503 +in.representative_income 115522 Representative total house income in the dwelling unit is $115522 +in.representative_income 115561 Representative total house income in the dwelling unit is $115561 +in.representative_income 115571 Representative total house income in the dwelling unit is $115571 +in.representative_income 115585 Representative total house income in the dwelling unit is $115585 +in.representative_income 115610 Representative total house income in the dwelling unit is $115610 +in.representative_income 115611 Representative total house income in the dwelling unit is $115611 +in.representative_income 115626 Representative total house income in the dwelling unit is $115626 +in.representative_income 115648 Representative total house income in the dwelling unit is $115648 +in.representative_income 115653 Representative total house income in the dwelling unit is $115653 +in.representative_income 115662 Representative total house income in the dwelling unit is $115662 +in.representative_income 115688 Representative total house income in the dwelling unit is $115688 +in.representative_income 115690 Representative total house income in the dwelling unit is $115690 +in.representative_income 115717 Representative total house income in the dwelling unit is $115717 +in.representative_income 115718 Representative total house income in the dwelling unit is $115718 +in.representative_income 115729 Representative total house income in the dwelling unit is $115729 +in.representative_income 115743 Representative total house income in the dwelling unit is $115743 +in.representative_income 115763 Representative total house income in the dwelling unit is $115763 +in.representative_income 115772 Representative total house income in the dwelling unit is $115772 +in.representative_income 115783 Representative total house income in the dwelling unit is $115783 +in.representative_income 115795 Representative total house income in the dwelling unit is $115795 +in.representative_income 115825 Representative total house income in the dwelling unit is $115825 +in.representative_income 115826 Representative total house income in the dwelling unit is $115826 +in.representative_income 115828 Representative total house income in the dwelling unit is $115828 +in.representative_income 115829 Representative total house income in the dwelling unit is $115829 +in.representative_income 115832 Representative total house income in the dwelling unit is $115832 +in.representative_income 115864 Representative total house income in the dwelling unit is $115864 +in.representative_income 115894 Representative total house income in the dwelling unit is $115894 +in.representative_income 115901 Representative total house income in the dwelling unit is $115901 +in.representative_income 115932 Representative total house income in the dwelling unit is $115932 +in.representative_income 115933 Representative total house income in the dwelling unit is $115933 +in.representative_income 115934 Representative total house income in the dwelling unit is $115934 +in.representative_income 115935 Representative total house income in the dwelling unit is $115935 +in.representative_income 115943 Representative total house income in the dwelling unit is $115943 +in.representative_income 115956 Representative total house income in the dwelling unit is $115956 +in.representative_income 115965 Representative total house income in the dwelling unit is $115965 +in.representative_income 115985 Representative total house income in the dwelling unit is $115985 +in.representative_income 115986 Representative total house income in the dwelling unit is $115986 +in.representative_income 115997 Representative total house income in the dwelling unit is $115997 +in.representative_income 116007 Representative total house income in the dwelling unit is $116007 +in.representative_income 116038 Representative total house income in the dwelling unit is $116038 +in.representative_income 116040 Representative total house income in the dwelling unit is $116040 +in.representative_income 116042 Representative total house income in the dwelling unit is $116042 +in.representative_income 116048 Representative total house income in the dwelling unit is $116048 +in.representative_income 116059 Representative total house income in the dwelling unit is $116059 +in.representative_income 116066 Representative total house income in the dwelling unit is $116066 +in.representative_income 116090 Representative total house income in the dwelling unit is $116090 +in.representative_income 116112 Representative total house income in the dwelling unit is $116112 +in.representative_income 116141 Representative total house income in the dwelling unit is $116141 +in.representative_income 116147 Representative total house income in the dwelling unit is $116147 +in.representative_income 116151 Representative total house income in the dwelling unit is $116151 +in.representative_income 116155 Representative total house income in the dwelling unit is $116155 +in.representative_income 116167 Representative total house income in the dwelling unit is $116167 +in.representative_income 116197 Representative total house income in the dwelling unit is $116197 +in.representative_income 116211 Representative total house income in the dwelling unit is $116211 +in.representative_income 116212 Representative total house income in the dwelling unit is $116212 +in.representative_income 116218 Representative total house income in the dwelling unit is $116218 +in.representative_income 116237 Representative total house income in the dwelling unit is $116237 +in.representative_income 116244 Representative total house income in the dwelling unit is $116244 +in.representative_income 116245 Representative total house income in the dwelling unit is $116245 +in.representative_income 116254 Representative total house income in the dwelling unit is $116254 +in.representative_income 116255 Representative total house income in the dwelling unit is $116255 +in.representative_income 116259 Representative total house income in the dwelling unit is $116259 +in.representative_income 116268 Representative total house income in the dwelling unit is $116268 +in.representative_income 116308 Representative total house income in the dwelling unit is $116308 +in.representative_income 116323 Representative total house income in the dwelling unit is $116323 +in.representative_income 116348 Representative total house income in the dwelling unit is $116348 +in.representative_income 116362 Representative total house income in the dwelling unit is $116362 +in.representative_income 116367 Representative total house income in the dwelling unit is $116367 +in.representative_income 116369 Representative total house income in the dwelling unit is $116369 +in.representative_income 116428 Representative total house income in the dwelling unit is $116428 +in.representative_income 116450 Representative total house income in the dwelling unit is $116450 +in.representative_income 116451 Representative total house income in the dwelling unit is $116451 +in.representative_income 116469 Representative total house income in the dwelling unit is $116469 +in.representative_income 116470 Representative total house income in the dwelling unit is $116470 +in.representative_income 116475 Representative total house income in the dwelling unit is $116475 +in.representative_income 116481 Representative total house income in the dwelling unit is $116481 +in.representative_income 116482 Representative total house income in the dwelling unit is $116482 +in.representative_income 116533 Representative total house income in the dwelling unit is $116533 +in.representative_income 116554 Representative total house income in the dwelling unit is $116554 +in.representative_income 116555 Representative total house income in the dwelling unit is $116555 +in.representative_income 116571 Representative total house income in the dwelling unit is $116571 +in.representative_income 116577 Representative total house income in the dwelling unit is $116577 +in.representative_income 116581 Representative total house income in the dwelling unit is $116581 +in.representative_income 116583 Representative total house income in the dwelling unit is $116583 +in.representative_income 116587 Representative total house income in the dwelling unit is $116587 +in.representative_income 116604 Representative total house income in the dwelling unit is $116604 +in.representative_income 116607 Representative total house income in the dwelling unit is $116607 +in.representative_income 116640 Representative total house income in the dwelling unit is $116640 +in.representative_income 116657 Representative total house income in the dwelling unit is $116657 +in.representative_income 116662 Representative total house income in the dwelling unit is $116662 +in.representative_income 116672 Representative total house income in the dwelling unit is $116672 +in.representative_income 116684 Representative total house income in the dwelling unit is $116684 +in.representative_income 116690 Representative total house income in the dwelling unit is $116690 +in.representative_income 116712 Representative total house income in the dwelling unit is $116712 +in.representative_income 116745 Representative total house income in the dwelling unit is $116745 +in.representative_income 116760 Representative total house income in the dwelling unit is $116760 +in.representative_income 116773 Representative total house income in the dwelling unit is $116773 +in.representative_income 116792 Representative total house income in the dwelling unit is $116792 +in.representative_income 116812 Representative total house income in the dwelling unit is $116812 +in.representative_income 116850 Representative total house income in the dwelling unit is $116850 +in.representative_income 116853 Representative total house income in the dwelling unit is $116853 +in.representative_income 116864 Representative total house income in the dwelling unit is $116864 +in.representative_income 116874 Representative total house income in the dwelling unit is $116874 +in.representative_income 116898 Representative total house income in the dwelling unit is $116898 +in.representative_income 116907 Representative total house income in the dwelling unit is $116907 +in.representative_income 116956 Representative total house income in the dwelling unit is $116956 +in.representative_income 116967 Representative total house income in the dwelling unit is $116967 +in.representative_income 116975 Representative total house income in the dwelling unit is $116975 +in.representative_income 117006 Representative total house income in the dwelling unit is $117006 +in.representative_income 117015 Representative total house income in the dwelling unit is $117015 +in.representative_income 117027 Representative total house income in the dwelling unit is $117027 +in.representative_income 117061 Representative total house income in the dwelling unit is $117061 +in.representative_income 117069 Representative total house income in the dwelling unit is $117069 +in.representative_income 117123 Representative total house income in the dwelling unit is $117123 +in.representative_income 117124 Representative total house income in the dwelling unit is $117124 +in.representative_income 117157 Representative total house income in the dwelling unit is $117157 +in.representative_income 117166 Representative total house income in the dwelling unit is $117166 +in.representative_income 117177 Representative total house income in the dwelling unit is $117177 +in.representative_income 117178 Representative total house income in the dwelling unit is $117178 +in.representative_income 117188 Representative total house income in the dwelling unit is $117188 +in.representative_income 117221 Representative total house income in the dwelling unit is $117221 +in.representative_income 117231 Representative total house income in the dwelling unit is $117231 +in.representative_income 117268 Representative total house income in the dwelling unit is $117268 +in.representative_income 117273 Representative total house income in the dwelling unit is $117273 +in.representative_income 117276 Representative total house income in the dwelling unit is $117276 +in.representative_income 117328 Representative total house income in the dwelling unit is $117328 +in.representative_income 117339 Representative total house income in the dwelling unit is $117339 +in.representative_income 117360 Representative total house income in the dwelling unit is $117360 +in.representative_income 117378 Representative total house income in the dwelling unit is $117378 +in.representative_income 117379 Representative total house income in the dwelling unit is $117379 +in.representative_income 117393 Representative total house income in the dwelling unit is $117393 +in.representative_income 117435 Representative total house income in the dwelling unit is $117435 +in.representative_income 117447 Representative total house income in the dwelling unit is $117447 +in.representative_income 117480 Representative total house income in the dwelling unit is $117480 +in.representative_income 117483 Representative total house income in the dwelling unit is $117483 +in.representative_income 117542 Representative total house income in the dwelling unit is $117542 +in.representative_income 117555 Representative total house income in the dwelling unit is $117555 +in.representative_income 117585 Representative total house income in the dwelling unit is $117585 +in.representative_income 117588 Representative total house income in the dwelling unit is $117588 +in.representative_income 117606 Representative total house income in the dwelling unit is $117606 +in.representative_income 117619 Representative total house income in the dwelling unit is $117619 +in.representative_income 117627 Representative total house income in the dwelling unit is $117627 +in.representative_income 117637 Representative total house income in the dwelling unit is $117637 +in.representative_income 117650 Representative total house income in the dwelling unit is $117650 +in.representative_income 117664 Representative total house income in the dwelling unit is $117664 +in.representative_income 117688 Representative total house income in the dwelling unit is $117688 +in.representative_income 117694 Representative total house income in the dwelling unit is $117694 +in.representative_income 117720 Representative total house income in the dwelling unit is $117720 +in.representative_income 117772 Representative total house income in the dwelling unit is $117772 +in.representative_income 117776 Representative total house income in the dwelling unit is $117776 +in.representative_income 117783 Representative total house income in the dwelling unit is $117783 +in.representative_income 117792 Representative total house income in the dwelling unit is $117792 +in.representative_income 117799 Representative total house income in the dwelling unit is $117799 +in.representative_income 117875 Representative total house income in the dwelling unit is $117875 +in.representative_income 117879 Representative total house income in the dwelling unit is $117879 +in.representative_income 117884 Representative total house income in the dwelling unit is $117884 +in.representative_income 117895 Representative total house income in the dwelling unit is $117895 +in.representative_income 117905 Representative total house income in the dwelling unit is $117905 +in.representative_income 117972 Representative total house income in the dwelling unit is $117972 +in.representative_income 117985 Representative total house income in the dwelling unit is $117985 +in.representative_income 117987 Representative total house income in the dwelling unit is $117987 +in.representative_income 117998 Representative total house income in the dwelling unit is $117998 +in.representative_income 118079 Representative total house income in the dwelling unit is $118079 +in.representative_income 118083 Representative total house income in the dwelling unit is $118083 +in.representative_income 118086 Representative total house income in the dwelling unit is $118086 +in.representative_income 118090 Representative total house income in the dwelling unit is $118090 +in.representative_income 118095 Representative total house income in the dwelling unit is $118095 +in.representative_income 118101 Representative total house income in the dwelling unit is $118101 +in.representative_income 118116 Representative total house income in the dwelling unit is $118116 +in.representative_income 118169 Representative total house income in the dwelling unit is $118169 +in.representative_income 118179 Representative total house income in the dwelling unit is $118179 +in.representative_income 118187 Representative total house income in the dwelling unit is $118187 +in.representative_income 118204 Representative total house income in the dwelling unit is $118204 +in.representative_income 118221 Representative total house income in the dwelling unit is $118221 +in.representative_income 118264 Representative total house income in the dwelling unit is $118264 +in.representative_income 118273 Representative total house income in the dwelling unit is $118273 +in.representative_income 118294 Representative total house income in the dwelling unit is $118294 +in.representative_income 118307 Representative total house income in the dwelling unit is $118307 +in.representative_income 118326 Representative total house income in the dwelling unit is $118326 +in.representative_income 118347 Representative total house income in the dwelling unit is $118347 +in.representative_income 118348 Representative total house income in the dwelling unit is $118348 +in.representative_income 118349 Representative total house income in the dwelling unit is $118349 +in.representative_income 118389 Representative total house income in the dwelling unit is $118389 +in.representative_income 118419 Representative total house income in the dwelling unit is $118419 +in.representative_income 118432 Representative total house income in the dwelling unit is $118432 +in.representative_income 118443 Representative total house income in the dwelling unit is $118443 +in.representative_income 118490 Representative total house income in the dwelling unit is $118490 +in.representative_income 118508 Representative total house income in the dwelling unit is $118508 +in.representative_income 118538 Representative total house income in the dwelling unit is $118538 +in.representative_income 118591 Representative total house income in the dwelling unit is $118591 +in.representative_income 118616 Representative total house income in the dwelling unit is $118616 +in.representative_income 118617 Representative total house income in the dwelling unit is $118617 +in.representative_income 118636 Representative total house income in the dwelling unit is $118636 +in.representative_income 118643 Representative total house income in the dwelling unit is $118643 +in.representative_income 118668 Representative total house income in the dwelling unit is $118668 +in.representative_income 118692 Representative total house income in the dwelling unit is $118692 +in.representative_income 118720 Representative total house income in the dwelling unit is $118720 +in.representative_income 118723 Representative total house income in the dwelling unit is $118723 +in.representative_income 118733 Representative total house income in the dwelling unit is $118733 +in.representative_income 118741 Representative total house income in the dwelling unit is $118741 +in.representative_income 118744 Representative total house income in the dwelling unit is $118744 +in.representative_income 118749 Representative total house income in the dwelling unit is $118749 +in.representative_income 118753 Representative total house income in the dwelling unit is $118753 +in.representative_income 118793 Representative total house income in the dwelling unit is $118793 +in.representative_income 118813 Representative total house income in the dwelling unit is $118813 +in.representative_income 118823 Representative total house income in the dwelling unit is $118823 +in.representative_income 118831 Representative total house income in the dwelling unit is $118831 +in.representative_income 118852 Representative total house income in the dwelling unit is $118852 +in.representative_income 118853 Representative total house income in the dwelling unit is $118853 +in.representative_income 118854 Representative total house income in the dwelling unit is $118854 +in.representative_income 118862 Representative total house income in the dwelling unit is $118862 +in.representative_income 118875 Representative total house income in the dwelling unit is $118875 +in.representative_income 118894 Representative total house income in the dwelling unit is $118894 +in.representative_income 118926 Representative total house income in the dwelling unit is $118926 +in.representative_income 118938 Representative total house income in the dwelling unit is $118938 +in.representative_income 118945 Representative total house income in the dwelling unit is $118945 +in.representative_income 118947 Representative total house income in the dwelling unit is $118947 +in.representative_income 118960 Representative total house income in the dwelling unit is $118960 +in.representative_income 118968 Representative total house income in the dwelling unit is $118968 +in.representative_income 119003 Representative total house income in the dwelling unit is $119003 +in.representative_income 119030 Representative total house income in the dwelling unit is $119030 +in.representative_income 119046 Representative total house income in the dwelling unit is $119046 +in.representative_income 119067 Representative total house income in the dwelling unit is $119067 +in.representative_income 119096 Representative total house income in the dwelling unit is $119096 +in.representative_income 119133 Representative total house income in the dwelling unit is $119133 +in.representative_income 119153 Representative total house income in the dwelling unit is $119153 +in.representative_income 119170 Representative total house income in the dwelling unit is $119170 +in.representative_income 119171 Representative total house income in the dwelling unit is $119171 +in.representative_income 119175 Representative total house income in the dwelling unit is $119175 +in.representative_income 119181 Representative total house income in the dwelling unit is $119181 +in.representative_income 119186 Representative total house income in the dwelling unit is $119186 +in.representative_income 119196 Representative total house income in the dwelling unit is $119196 +in.representative_income 119197 Representative total house income in the dwelling unit is $119197 +in.representative_income 119235 Representative total house income in the dwelling unit is $119235 +in.representative_income 119241 Representative total house income in the dwelling unit is $119241 +in.representative_income 119252 Representative total house income in the dwelling unit is $119252 +in.representative_income 119260 Representative total house income in the dwelling unit is $119260 +in.representative_income 119284 Representative total house income in the dwelling unit is $119284 +in.representative_income 119298 Representative total house income in the dwelling unit is $119298 +in.representative_income 119308 Representative total house income in the dwelling unit is $119308 +in.representative_income 119339 Representative total house income in the dwelling unit is $119339 +in.representative_income 119381 Representative total house income in the dwelling unit is $119381 +in.representative_income 119392 Representative total house income in the dwelling unit is $119392 +in.representative_income 119399 Representative total house income in the dwelling unit is $119399 +in.representative_income 119442 Representative total house income in the dwelling unit is $119442 +in.representative_income 119475 Representative total house income in the dwelling unit is $119475 +in.representative_income 119487 Representative total house income in the dwelling unit is $119487 +in.representative_income 119500 Representative total house income in the dwelling unit is $119500 +in.representative_income 119583 Representative total house income in the dwelling unit is $119583 +in.representative_income 119586 Representative total house income in the dwelling unit is $119586 +in.representative_income 119592 Representative total house income in the dwelling unit is $119592 +in.representative_income 119601 Representative total house income in the dwelling unit is $119601 +in.representative_income 119608 Representative total house income in the dwelling unit is $119608 +in.representative_income 119649 Representative total house income in the dwelling unit is $119649 +in.representative_income 119697 Representative total house income in the dwelling unit is $119697 +in.representative_income 119702 Representative total house income in the dwelling unit is $119702 +in.representative_income 119716 Representative total house income in the dwelling unit is $119716 +in.representative_income 119719 Representative total house income in the dwelling unit is $119719 +in.representative_income 119797 Representative total house income in the dwelling unit is $119797 +in.representative_income 119804 Representative total house income in the dwelling unit is $119804 +in.representative_income 119824 Representative total house income in the dwelling unit is $119824 +in.representative_income 119854 Representative total house income in the dwelling unit is $119854 +in.representative_income 119904 Representative total house income in the dwelling unit is $119904 +in.representative_income 119909 Representative total house income in the dwelling unit is $119909 +in.representative_income 119914 Representative total house income in the dwelling unit is $119914 +in.representative_income 119932 Representative total house income in the dwelling unit is $119932 +in.representative_income 119958 Representative total house income in the dwelling unit is $119958 +in.representative_income 119968 Representative total house income in the dwelling unit is $119968 +in.representative_income 120012 Representative total house income in the dwelling unit is $120012 +in.representative_income 120014 Representative total house income in the dwelling unit is $120014 +in.representative_income 120041 Representative total house income in the dwelling unit is $120041 +in.representative_income 120061 Representative total house income in the dwelling unit is $120061 +in.representative_income 120106 Representative total house income in the dwelling unit is $120106 +in.representative_income 120119 Representative total house income in the dwelling unit is $120119 +in.representative_income 120149 Representative total house income in the dwelling unit is $120149 +in.representative_income 120164 Representative total house income in the dwelling unit is $120164 +in.representative_income 120207 Representative total house income in the dwelling unit is $120207 +in.representative_income 120225 Representative total house income in the dwelling unit is $120225 +in.representative_income 120226 Representative total house income in the dwelling unit is $120226 +in.representative_income 120227 Representative total house income in the dwelling unit is $120227 +in.representative_income 120248 Representative total house income in the dwelling unit is $120248 +in.representative_income 120256 Representative total house income in the dwelling unit is $120256 +in.representative_income 120268 Representative total house income in the dwelling unit is $120268 +in.representative_income 120269 Representative total house income in the dwelling unit is $120269 +in.representative_income 120278 Representative total house income in the dwelling unit is $120278 +in.representative_income 120288 Representative total house income in the dwelling unit is $120288 +in.representative_income 120308 Representative total house income in the dwelling unit is $120308 +in.representative_income 120310 Representative total house income in the dwelling unit is $120310 +in.representative_income 120330 Representative total house income in the dwelling unit is $120330 +in.representative_income 120364 Representative total house income in the dwelling unit is $120364 +in.representative_income 120389 Representative total house income in the dwelling unit is $120389 +in.representative_income 120391 Representative total house income in the dwelling unit is $120391 +in.representative_income 120409 Representative total house income in the dwelling unit is $120409 +in.representative_income 120441 Representative total house income in the dwelling unit is $120441 +in.representative_income 120472 Representative total house income in the dwelling unit is $120472 +in.representative_income 120473 Representative total house income in the dwelling unit is $120473 +in.representative_income 120542 Representative total house income in the dwelling unit is $120542 +in.representative_income 120577 Representative total house income in the dwelling unit is $120577 +in.representative_income 120580 Representative total house income in the dwelling unit is $120580 +in.representative_income 120597 Representative total house income in the dwelling unit is $120597 +in.representative_income 120611 Representative total house income in the dwelling unit is $120611 +in.representative_income 120647 Representative total house income in the dwelling unit is $120647 +in.representative_income 120680 Representative total house income in the dwelling unit is $120680 +in.representative_income 120688 Representative total house income in the dwelling unit is $120688 +in.representative_income 120700 Representative total house income in the dwelling unit is $120700 +in.representative_income 120711 Representative total house income in the dwelling unit is $120711 +in.representative_income 120712 Representative total house income in the dwelling unit is $120712 +in.representative_income 120763 Representative total house income in the dwelling unit is $120763 +in.representative_income 120813 Representative total house income in the dwelling unit is $120813 +in.representative_income 120857 Representative total house income in the dwelling unit is $120857 +in.representative_income 120870 Representative total house income in the dwelling unit is $120870 +in.representative_income 120886 Representative total house income in the dwelling unit is $120886 +in.representative_income 120890 Representative total house income in the dwelling unit is $120890 +in.representative_income 120905 Representative total house income in the dwelling unit is $120905 +in.representative_income 120914 Representative total house income in the dwelling unit is $120914 +in.representative_income 120989 Representative total house income in the dwelling unit is $120989 +in.representative_income 121013 Representative total house income in the dwelling unit is $121013 +in.representative_income 121015 Representative total house income in the dwelling unit is $121015 +in.representative_income 121069 Representative total house income in the dwelling unit is $121069 +in.representative_income 121085 Representative total house income in the dwelling unit is $121085 +in.representative_income 121092 Representative total house income in the dwelling unit is $121092 +in.representative_income 121116 Representative total house income in the dwelling unit is $121116 +in.representative_income 121174 Representative total house income in the dwelling unit is $121174 +in.representative_income 121196 Representative total house income in the dwelling unit is $121196 +in.representative_income 121217 Representative total house income in the dwelling unit is $121217 +in.representative_income 121229 Representative total house income in the dwelling unit is $121229 +in.representative_income 121238 Representative total house income in the dwelling unit is $121238 +in.representative_income 121278 Representative total house income in the dwelling unit is $121278 +in.representative_income 121280 Representative total house income in the dwelling unit is $121280 +in.representative_income 121284 Representative total house income in the dwelling unit is $121284 +in.representative_income 121299 Representative total house income in the dwelling unit is $121299 +in.representative_income 121318 Representative total house income in the dwelling unit is $121318 +in.representative_income 121321 Representative total house income in the dwelling unit is $121321 +in.representative_income 121337 Representative total house income in the dwelling unit is $121337 +in.representative_income 121339 Representative total house income in the dwelling unit is $121339 +in.representative_income 121385 Representative total house income in the dwelling unit is $121385 +in.representative_income 121407 Representative total house income in the dwelling unit is $121407 +in.representative_income 121419 Representative total house income in the dwelling unit is $121419 +in.representative_income 121444 Representative total house income in the dwelling unit is $121444 +in.representative_income 121450 Representative total house income in the dwelling unit is $121450 +in.representative_income 121451 Representative total house income in the dwelling unit is $121451 +in.representative_income 121453 Representative total house income in the dwelling unit is $121453 +in.representative_income 121505 Representative total house income in the dwelling unit is $121505 +in.representative_income 121512 Representative total house income in the dwelling unit is $121512 +in.representative_income 121514 Representative total house income in the dwelling unit is $121514 +in.representative_income 121520 Representative total house income in the dwelling unit is $121520 +in.representative_income 121552 Representative total house income in the dwelling unit is $121552 +in.representative_income 121596 Representative total house income in the dwelling unit is $121596 +in.representative_income 121608 Representative total house income in the dwelling unit is $121608 +in.representative_income 121611 Representative total house income in the dwelling unit is $121611 +in.representative_income 121621 Representative total house income in the dwelling unit is $121621 +in.representative_income 121622 Representative total house income in the dwelling unit is $121622 +in.representative_income 121702 Representative total house income in the dwelling unit is $121702 +in.representative_income 121711 Representative total house income in the dwelling unit is $121711 +in.representative_income 121729 Representative total house income in the dwelling unit is $121729 +in.representative_income 121733 Representative total house income in the dwelling unit is $121733 +in.representative_income 121740 Representative total house income in the dwelling unit is $121740 +in.representative_income 121775 Representative total house income in the dwelling unit is $121775 +in.representative_income 121804 Representative total house income in the dwelling unit is $121804 +in.representative_income 121807 Representative total house income in the dwelling unit is $121807 +in.representative_income 121815 Representative total house income in the dwelling unit is $121815 +in.representative_income 121823 Representative total house income in the dwelling unit is $121823 +in.representative_income 121837 Representative total house income in the dwelling unit is $121837 +in.representative_income 121845 Representative total house income in the dwelling unit is $121845 +in.representative_income 121864 Representative total house income in the dwelling unit is $121864 +in.representative_income 121912 Representative total house income in the dwelling unit is $121912 +in.representative_income 121918 Representative total house income in the dwelling unit is $121918 +in.representative_income 121925 Representative total house income in the dwelling unit is $121925 +in.representative_income 121928 Representative total house income in the dwelling unit is $121928 +in.representative_income 121943 Representative total house income in the dwelling unit is $121943 +in.representative_income 121954 Representative total house income in the dwelling unit is $121954 +in.representative_income 121970 Representative total house income in the dwelling unit is $121970 +in.representative_income 121985 Representative total house income in the dwelling unit is $121985 +in.representative_income 122018 Representative total house income in the dwelling unit is $122018 +in.representative_income 122026 Representative total house income in the dwelling unit is $122026 +in.representative_income 122046 Representative total house income in the dwelling unit is $122046 +in.representative_income 122093 Representative total house income in the dwelling unit is $122093 +in.representative_income 122123 Representative total house income in the dwelling unit is $122123 +in.representative_income 122124 Representative total house income in the dwelling unit is $122124 +in.representative_income 122127 Representative total house income in the dwelling unit is $122127 +in.representative_income 122155 Representative total house income in the dwelling unit is $122155 +in.representative_income 122158 Representative total house income in the dwelling unit is $122158 +in.representative_income 122201 Representative total house income in the dwelling unit is $122201 +in.representative_income 122227 Representative total house income in the dwelling unit is $122227 +in.representative_income 122228 Representative total house income in the dwelling unit is $122228 +in.representative_income 122238 Representative total house income in the dwelling unit is $122238 +in.representative_income 122240 Representative total house income in the dwelling unit is $122240 +in.representative_income 122244 Representative total house income in the dwelling unit is $122244 +in.representative_income 122309 Representative total house income in the dwelling unit is $122309 +in.representative_income 122329 Representative total house income in the dwelling unit is $122329 +in.representative_income 122330 Representative total house income in the dwelling unit is $122330 +in.representative_income 122335 Representative total house income in the dwelling unit is $122335 +in.representative_income 122366 Representative total house income in the dwelling unit is $122366 +in.representative_income 122374 Representative total house income in the dwelling unit is $122374 +in.representative_income 122413 Representative total house income in the dwelling unit is $122413 +in.representative_income 122418 Representative total house income in the dwelling unit is $122418 +in.representative_income 122430 Representative total house income in the dwelling unit is $122430 +in.representative_income 122434 Representative total house income in the dwelling unit is $122434 +in.representative_income 122440 Representative total house income in the dwelling unit is $122440 +in.representative_income 122450 Representative total house income in the dwelling unit is $122450 +in.representative_income 122461 Representative total house income in the dwelling unit is $122461 +in.representative_income 122480 Representative total house income in the dwelling unit is $122480 +in.representative_income 122485 Representative total house income in the dwelling unit is $122485 +in.representative_income 122526 Representative total house income in the dwelling unit is $122526 +in.representative_income 122531 Representative total house income in the dwelling unit is $122531 +in.representative_income 122536 Representative total house income in the dwelling unit is $122536 +in.representative_income 122545 Representative total house income in the dwelling unit is $122545 +in.representative_income 122551 Representative total house income in the dwelling unit is $122551 +in.representative_income 122588 Representative total house income in the dwelling unit is $122588 +in.representative_income 122611 Representative total house income in the dwelling unit is $122611 +in.representative_income 122632 Representative total house income in the dwelling unit is $122632 +in.representative_income 122634 Representative total house income in the dwelling unit is $122634 +in.representative_income 122639 Representative total house income in the dwelling unit is $122639 +in.representative_income 122650 Representative total house income in the dwelling unit is $122650 +in.representative_income 122666 Representative total house income in the dwelling unit is $122666 +in.representative_income 122695 Representative total house income in the dwelling unit is $122695 +in.representative_income 122733 Representative total house income in the dwelling unit is $122733 +in.representative_income 122741 Representative total house income in the dwelling unit is $122741 +in.representative_income 122743 Representative total house income in the dwelling unit is $122743 +in.representative_income 122756 Representative total house income in the dwelling unit is $122756 +in.representative_income 122774 Representative total house income in the dwelling unit is $122774 +in.representative_income 122803 Representative total house income in the dwelling unit is $122803 +in.representative_income 122834 Representative total house income in the dwelling unit is $122834 +in.representative_income 122845 Representative total house income in the dwelling unit is $122845 +in.representative_income 122846 Representative total house income in the dwelling unit is $122846 +in.representative_income 122849 Representative total house income in the dwelling unit is $122849 +in.representative_income 122861 Representative total house income in the dwelling unit is $122861 +in.representative_income 122887 Representative total house income in the dwelling unit is $122887 +in.representative_income 122910 Representative total house income in the dwelling unit is $122910 +in.representative_income 122914 Representative total house income in the dwelling unit is $122914 +in.representative_income 122935 Representative total house income in the dwelling unit is $122935 +in.representative_income 122949 Representative total house income in the dwelling unit is $122949 +in.representative_income 122957 Representative total house income in the dwelling unit is $122957 +in.representative_income 122967 Representative total house income in the dwelling unit is $122967 +in.representative_income 122990 Representative total house income in the dwelling unit is $122990 +in.representative_income 123015 Representative total house income in the dwelling unit is $123015 +in.representative_income 123017 Representative total house income in the dwelling unit is $123017 +in.representative_income 123020 Representative total house income in the dwelling unit is $123020 +in.representative_income 123036 Representative total house income in the dwelling unit is $123036 +in.representative_income 123040 Representative total house income in the dwelling unit is $123040 +in.representative_income 123046 Representative total house income in the dwelling unit is $123046 +in.representative_income 123065 Representative total house income in the dwelling unit is $123065 +in.representative_income 123073 Representative total house income in the dwelling unit is $123073 +in.representative_income 123080 Representative total house income in the dwelling unit is $123080 +in.representative_income 123091 Representative total house income in the dwelling unit is $123091 +in.representative_income 123124 Representative total house income in the dwelling unit is $123124 +in.representative_income 123155 Representative total house income in the dwelling unit is $123155 +in.representative_income 123173 Representative total house income in the dwelling unit is $123173 +in.representative_income 123178 Representative total house income in the dwelling unit is $123178 +in.representative_income 123187 Representative total house income in the dwelling unit is $123187 +in.representative_income 123224 Representative total house income in the dwelling unit is $123224 +in.representative_income 123232 Representative total house income in the dwelling unit is $123232 +in.representative_income 123238 Representative total house income in the dwelling unit is $123238 +in.representative_income 123248 Representative total house income in the dwelling unit is $123248 +in.representative_income 123258 Representative total house income in the dwelling unit is $123258 +in.representative_income 123264 Representative total house income in the dwelling unit is $123264 +in.representative_income 123278 Representative total house income in the dwelling unit is $123278 +in.representative_income 123282 Representative total house income in the dwelling unit is $123282 +in.representative_income 123339 Representative total house income in the dwelling unit is $123339 +in.representative_income 123354 Representative total house income in the dwelling unit is $123354 +in.representative_income 123362 Representative total house income in the dwelling unit is $123362 +in.representative_income 123369 Representative total house income in the dwelling unit is $123369 +in.representative_income 123389 Representative total house income in the dwelling unit is $123389 +in.representative_income 123390 Representative total house income in the dwelling unit is $123390 +in.representative_income 123403 Representative total house income in the dwelling unit is $123403 +in.representative_income 123431 Representative total house income in the dwelling unit is $123431 +in.representative_income 123440 Representative total house income in the dwelling unit is $123440 +in.representative_income 123447 Representative total house income in the dwelling unit is $123447 +in.representative_income 123468 Representative total house income in the dwelling unit is $123468 +in.representative_income 123474 Representative total house income in the dwelling unit is $123474 +in.representative_income 123490 Representative total house income in the dwelling unit is $123490 +in.representative_income 123494 Representative total house income in the dwelling unit is $123494 +in.representative_income 123498 Representative total house income in the dwelling unit is $123498 +in.representative_income 123509 Representative total house income in the dwelling unit is $123509 +in.representative_income 123522 Representative total house income in the dwelling unit is $123522 +in.representative_income 123541 Representative total house income in the dwelling unit is $123541 +in.representative_income 123554 Representative total house income in the dwelling unit is $123554 +in.representative_income 123568 Representative total house income in the dwelling unit is $123568 +in.representative_income 123600 Representative total house income in the dwelling unit is $123600 +in.representative_income 123606 Representative total house income in the dwelling unit is $123606 +in.representative_income 123642 Representative total house income in the dwelling unit is $123642 +in.representative_income 123658 Representative total house income in the dwelling unit is $123658 +in.representative_income 123661 Representative total house income in the dwelling unit is $123661 +in.representative_income 123671 Representative total house income in the dwelling unit is $123671 +in.representative_income 123692 Representative total house income in the dwelling unit is $123692 +in.representative_income 123705 Representative total house income in the dwelling unit is $123705 +in.representative_income 123714 Representative total house income in the dwelling unit is $123714 +in.representative_income 123743 Representative total house income in the dwelling unit is $123743 +in.representative_income 123769 Representative total house income in the dwelling unit is $123769 +in.representative_income 123774 Representative total house income in the dwelling unit is $123774 +in.representative_income 123778 Representative total house income in the dwelling unit is $123778 +in.representative_income 123795 Representative total house income in the dwelling unit is $123795 +in.representative_income 123806 Representative total house income in the dwelling unit is $123806 +in.representative_income 123811 Representative total house income in the dwelling unit is $123811 +in.representative_income 123816 Representative total house income in the dwelling unit is $123816 +in.representative_income 123822 Representative total house income in the dwelling unit is $123822 +in.representative_income 123836 Representative total house income in the dwelling unit is $123836 +in.representative_income 123844 Representative total house income in the dwelling unit is $123844 +in.representative_income 123876 Representative total house income in the dwelling unit is $123876 +in.representative_income 123877 Representative total house income in the dwelling unit is $123877 +in.representative_income 123894 Representative total house income in the dwelling unit is $123894 +in.representative_income 123897 Representative total house income in the dwelling unit is $123897 +in.representative_income 123898 Representative total house income in the dwelling unit is $123898 +in.representative_income 123908 Representative total house income in the dwelling unit is $123908 +in.representative_income 123916 Representative total house income in the dwelling unit is $123916 +in.representative_income 123929 Representative total house income in the dwelling unit is $123929 +in.representative_income 123937 Representative total house income in the dwelling unit is $123937 +in.representative_income 123945 Representative total house income in the dwelling unit is $123945 +in.representative_income 123981 Representative total house income in the dwelling unit is $123981 +in.representative_income 123984 Representative total house income in the dwelling unit is $123984 +in.representative_income 124005 Representative total house income in the dwelling unit is $124005 +in.representative_income 124021 Representative total house income in the dwelling unit is $124021 +in.representative_income 124026 Representative total house income in the dwelling unit is $124026 +in.representative_income 124032 Representative total house income in the dwelling unit is $124032 +in.representative_income 124037 Representative total house income in the dwelling unit is $124037 +in.representative_income 124038 Representative total house income in the dwelling unit is $124038 +in.representative_income 124046 Representative total house income in the dwelling unit is $124046 +in.representative_income 124084 Representative total house income in the dwelling unit is $124084 +in.representative_income 124091 Representative total house income in the dwelling unit is $124091 +in.representative_income 124092 Representative total house income in the dwelling unit is $124092 +in.representative_income 124114 Representative total house income in the dwelling unit is $124114 +in.representative_income 124127 Representative total house income in the dwelling unit is $124127 +in.representative_income 124144 Representative total house income in the dwelling unit is $124144 +in.representative_income 124146 Representative total house income in the dwelling unit is $124146 +in.representative_income 124147 Representative total house income in the dwelling unit is $124147 +in.representative_income 124186 Representative total house income in the dwelling unit is $124186 +in.representative_income 124188 Representative total house income in the dwelling unit is $124188 +in.representative_income 124197 Representative total house income in the dwelling unit is $124197 +in.representative_income 124198 Representative total house income in the dwelling unit is $124198 +in.representative_income 124219 Representative total house income in the dwelling unit is $124219 +in.representative_income 124228 Representative total house income in the dwelling unit is $124228 +in.representative_income 124233 Representative total house income in the dwelling unit is $124233 +in.representative_income 124248 Representative total house income in the dwelling unit is $124248 +in.representative_income 124254 Representative total house income in the dwelling unit is $124254 +in.representative_income 124268 Representative total house income in the dwelling unit is $124268 +in.representative_income 124280 Representative total house income in the dwelling unit is $124280 +in.representative_income 124290 Representative total house income in the dwelling unit is $124290 +in.representative_income 124305 Representative total house income in the dwelling unit is $124305 +in.representative_income 124329 Representative total house income in the dwelling unit is $124329 +in.representative_income 124338 Representative total house income in the dwelling unit is $124338 +in.representative_income 124348 Representative total house income in the dwelling unit is $124348 +in.representative_income 124349 Representative total house income in the dwelling unit is $124349 +in.representative_income 124359 Representative total house income in the dwelling unit is $124359 +in.representative_income 124362 Representative total house income in the dwelling unit is $124362 +in.representative_income 124393 Representative total house income in the dwelling unit is $124393 +in.representative_income 124413 Representative total house income in the dwelling unit is $124413 +in.representative_income 124443 Representative total house income in the dwelling unit is $124443 +in.representative_income 124450 Representative total house income in the dwelling unit is $124450 +in.representative_income 124454 Representative total house income in the dwelling unit is $124454 +in.representative_income 124470 Representative total house income in the dwelling unit is $124470 +in.representative_income 124496 Representative total house income in the dwelling unit is $124496 +in.representative_income 124520 Representative total house income in the dwelling unit is $124520 +in.representative_income 124521 Representative total house income in the dwelling unit is $124521 +in.representative_income 124522 Representative total house income in the dwelling unit is $124522 +in.representative_income 124542 Representative total house income in the dwelling unit is $124542 +in.representative_income 124548 Representative total house income in the dwelling unit is $124548 +in.representative_income 124549 Representative total house income in the dwelling unit is $124549 +in.representative_income 124551 Representative total house income in the dwelling unit is $124551 +in.representative_income 124578 Representative total house income in the dwelling unit is $124578 +in.representative_income 124591 Representative total house income in the dwelling unit is $124591 +in.representative_income 124600 Representative total house income in the dwelling unit is $124600 +in.representative_income 124610 Representative total house income in the dwelling unit is $124610 +in.representative_income 124620 Representative total house income in the dwelling unit is $124620 +in.representative_income 124628 Representative total house income in the dwelling unit is $124628 +in.representative_income 124632 Representative total house income in the dwelling unit is $124632 +in.representative_income 124635 Representative total house income in the dwelling unit is $124635 +in.representative_income 124652 Representative total house income in the dwelling unit is $124652 +in.representative_income 124654 Representative total house income in the dwelling unit is $124654 +in.representative_income 124660 Representative total house income in the dwelling unit is $124660 +in.representative_income 124686 Representative total house income in the dwelling unit is $124686 +in.representative_income 124702 Representative total house income in the dwelling unit is $124702 +in.representative_income 124707 Representative total house income in the dwelling unit is $124707 +in.representative_income 124734 Representative total house income in the dwelling unit is $124734 +in.representative_income 124740 Representative total house income in the dwelling unit is $124740 +in.representative_income 124753 Representative total house income in the dwelling unit is $124753 +in.representative_income 124759 Representative total house income in the dwelling unit is $124759 +in.representative_income 124765 Representative total house income in the dwelling unit is $124765 +in.representative_income 124781 Representative total house income in the dwelling unit is $124781 +in.representative_income 124795 Representative total house income in the dwelling unit is $124795 +in.representative_income 124805 Representative total house income in the dwelling unit is $124805 +in.representative_income 124845 Representative total house income in the dwelling unit is $124845 +in.representative_income 124854 Representative total house income in the dwelling unit is $124854 +in.representative_income 124865 Representative total house income in the dwelling unit is $124865 +in.representative_income 124866 Representative total house income in the dwelling unit is $124866 +in.representative_income 124892 Representative total house income in the dwelling unit is $124892 +in.representative_income 124899 Representative total house income in the dwelling unit is $124899 +in.representative_income 124903 Representative total house income in the dwelling unit is $124903 +in.representative_income 124909 Representative total house income in the dwelling unit is $124909 +in.representative_income 124949 Representative total house income in the dwelling unit is $124949 +in.representative_income 124950 Representative total house income in the dwelling unit is $124950 +in.representative_income 124955 Representative total house income in the dwelling unit is $124955 +in.representative_income 124957 Representative total house income in the dwelling unit is $124957 +in.representative_income 124971 Representative total house income in the dwelling unit is $124971 +in.representative_income 124977 Representative total house income in the dwelling unit is $124977 +in.representative_income 124994 Representative total house income in the dwelling unit is $124994 +in.representative_income 125011 Representative total house income in the dwelling unit is $125011 +in.representative_income 125012 Representative total house income in the dwelling unit is $125012 +in.representative_income 125021 Representative total house income in the dwelling unit is $125021 +in.representative_income 125050 Representative total house income in the dwelling unit is $125050 +in.representative_income 125054 Representative total house income in the dwelling unit is $125054 +in.representative_income 125056 Representative total house income in the dwelling unit is $125056 +in.representative_income 125057 Representative total house income in the dwelling unit is $125057 +in.representative_income 125075 Representative total house income in the dwelling unit is $125075 +in.representative_income 125076 Representative total house income in the dwelling unit is $125076 +in.representative_income 125115 Representative total house income in the dwelling unit is $125115 +in.representative_income 125118 Representative total house income in the dwelling unit is $125118 +in.representative_income 125157 Representative total house income in the dwelling unit is $125157 +in.representative_income 125158 Representative total house income in the dwelling unit is $125158 +in.representative_income 125165 Representative total house income in the dwelling unit is $125165 +in.representative_income 125167 Representative total house income in the dwelling unit is $125167 +in.representative_income 125182 Representative total house income in the dwelling unit is $125182 +in.representative_income 125187 Representative total house income in the dwelling unit is $125187 +in.representative_income 125194 Representative total house income in the dwelling unit is $125194 +in.representative_income 125218 Representative total house income in the dwelling unit is $125218 +in.representative_income 125219 Representative total house income in the dwelling unit is $125219 +in.representative_income 125224 Representative total house income in the dwelling unit is $125224 +in.representative_income 125226 Representative total house income in the dwelling unit is $125226 +in.representative_income 125235 Representative total house income in the dwelling unit is $125235 +in.representative_income 125255 Representative total house income in the dwelling unit is $125255 +in.representative_income 125258 Representative total house income in the dwelling unit is $125258 +in.representative_income 125269 Representative total house income in the dwelling unit is $125269 +in.representative_income 125271 Representative total house income in the dwelling unit is $125271 +in.representative_income 125274 Representative total house income in the dwelling unit is $125274 +in.representative_income 125287 Representative total house income in the dwelling unit is $125287 +in.representative_income 125293 Representative total house income in the dwelling unit is $125293 +in.representative_income 125294 Representative total house income in the dwelling unit is $125294 +in.representative_income 125321 Representative total house income in the dwelling unit is $125321 +in.representative_income 125323 Representative total house income in the dwelling unit is $125323 +in.representative_income 125334 Representative total house income in the dwelling unit is $125334 +in.representative_income 125345 Representative total house income in the dwelling unit is $125345 +in.representative_income 125346 Representative total house income in the dwelling unit is $125346 +in.representative_income 125356 Representative total house income in the dwelling unit is $125356 +in.representative_income 125359 Representative total house income in the dwelling unit is $125359 +in.representative_income 125363 Representative total house income in the dwelling unit is $125363 +in.representative_income 125373 Representative total house income in the dwelling unit is $125373 +in.representative_income 125379 Representative total house income in the dwelling unit is $125379 +in.representative_income 125382 Representative total house income in the dwelling unit is $125382 +in.representative_income 125388 Representative total house income in the dwelling unit is $125388 +in.representative_income 125392 Representative total house income in the dwelling unit is $125392 +in.representative_income 125420 Representative total house income in the dwelling unit is $125420 +in.representative_income 125424 Representative total house income in the dwelling unit is $125424 +in.representative_income 125442 Representative total house income in the dwelling unit is $125442 +in.representative_income 125460 Representative total house income in the dwelling unit is $125460 +in.representative_income 125480 Representative total house income in the dwelling unit is $125480 +in.representative_income 125486 Representative total house income in the dwelling unit is $125486 +in.representative_income 125498 Representative total house income in the dwelling unit is $125498 +in.representative_income 125507 Representative total house income in the dwelling unit is $125507 +in.representative_income 125509 Representative total house income in the dwelling unit is $125509 +in.representative_income 125528 Representative total house income in the dwelling unit is $125528 +in.representative_income 125530 Representative total house income in the dwelling unit is $125530 +in.representative_income 125536 Representative total house income in the dwelling unit is $125536 +in.representative_income 125540 Representative total house income in the dwelling unit is $125540 +in.representative_income 125550 Representative total house income in the dwelling unit is $125550 +in.representative_income 125561 Representative total house income in the dwelling unit is $125561 +in.representative_income 125562 Representative total house income in the dwelling unit is $125562 +in.representative_income 125567 Representative total house income in the dwelling unit is $125567 +in.representative_income 125581 Representative total house income in the dwelling unit is $125581 +in.representative_income 125594 Representative total house income in the dwelling unit is $125594 +in.representative_income 125595 Representative total house income in the dwelling unit is $125595 +in.representative_income 125598 Representative total house income in the dwelling unit is $125598 +in.representative_income 125603 Representative total house income in the dwelling unit is $125603 +in.representative_income 125604 Representative total house income in the dwelling unit is $125604 +in.representative_income 125625 Representative total house income in the dwelling unit is $125625 +in.representative_income 125631 Representative total house income in the dwelling unit is $125631 +in.representative_income 125642 Representative total house income in the dwelling unit is $125642 +in.representative_income 125658 Representative total house income in the dwelling unit is $125658 +in.representative_income 125659 Representative total house income in the dwelling unit is $125659 +in.representative_income 125662 Representative total house income in the dwelling unit is $125662 +in.representative_income 125667 Representative total house income in the dwelling unit is $125667 +in.representative_income 125683 Representative total house income in the dwelling unit is $125683 +in.representative_income 125692 Representative total house income in the dwelling unit is $125692 +in.representative_income 125701 Representative total house income in the dwelling unit is $125701 +in.representative_income 125706 Representative total house income in the dwelling unit is $125706 +in.representative_income 125709 Representative total house income in the dwelling unit is $125709 +in.representative_income 125716 Representative total house income in the dwelling unit is $125716 +in.representative_income 125730 Representative total house income in the dwelling unit is $125730 +in.representative_income 125734 Representative total house income in the dwelling unit is $125734 +in.representative_income 125762 Representative total house income in the dwelling unit is $125762 +in.representative_income 125763 Representative total house income in the dwelling unit is $125763 +in.representative_income 125765 Representative total house income in the dwelling unit is $125765 +in.representative_income 125767 Representative total house income in the dwelling unit is $125767 +in.representative_income 125770 Representative total house income in the dwelling unit is $125770 +in.representative_income 125778 Representative total house income in the dwelling unit is $125778 +in.representative_income 125782 Representative total house income in the dwelling unit is $125782 +in.representative_income 125793 Representative total house income in the dwelling unit is $125793 +in.representative_income 125803 Representative total house income in the dwelling unit is $125803 +in.representative_income 125808 Representative total house income in the dwelling unit is $125808 +in.representative_income 125814 Representative total house income in the dwelling unit is $125814 +in.representative_income 125821 Representative total house income in the dwelling unit is $125821 +in.representative_income 125830 Representative total house income in the dwelling unit is $125830 +in.representative_income 125837 Representative total house income in the dwelling unit is $125837 +in.representative_income 125853 Representative total house income in the dwelling unit is $125853 +in.representative_income 125864 Representative total house income in the dwelling unit is $125864 +in.representative_income 125875 Representative total house income in the dwelling unit is $125875 +in.representative_income 125878 Representative total house income in the dwelling unit is $125878 +in.representative_income 125894 Representative total house income in the dwelling unit is $125894 +in.representative_income 125915 Representative total house income in the dwelling unit is $125915 +in.representative_income 125920 Representative total house income in the dwelling unit is $125920 +in.representative_income 125929 Representative total house income in the dwelling unit is $125929 +in.representative_income 125931 Representative total house income in the dwelling unit is $125931 +in.representative_income 125935 Representative total house income in the dwelling unit is $125935 +in.representative_income 125940 Representative total house income in the dwelling unit is $125940 +in.representative_income 125944 Representative total house income in the dwelling unit is $125944 +in.representative_income 125946 Representative total house income in the dwelling unit is $125946 +in.representative_income 125965 Representative total house income in the dwelling unit is $125965 +in.representative_income 125973 Representative total house income in the dwelling unit is $125973 +in.representative_income 125982 Representative total house income in the dwelling unit is $125982 +in.representative_income 125983 Representative total house income in the dwelling unit is $125983 +in.representative_income 126012 Representative total house income in the dwelling unit is $126012 +in.representative_income 126023 Representative total house income in the dwelling unit is $126023 +in.representative_income 126025 Representative total house income in the dwelling unit is $126025 +in.representative_income 126026 Representative total house income in the dwelling unit is $126026 +in.representative_income 126043 Representative total house income in the dwelling unit is $126043 +in.representative_income 126054 Representative total house income in the dwelling unit is $126054 +in.representative_income 126066 Representative total house income in the dwelling unit is $126066 +in.representative_income 126072 Representative total house income in the dwelling unit is $126072 +in.representative_income 126091 Representative total house income in the dwelling unit is $126091 +in.representative_income 126094 Representative total house income in the dwelling unit is $126094 +in.representative_income 126123 Representative total house income in the dwelling unit is $126123 +in.representative_income 126130 Representative total house income in the dwelling unit is $126130 +in.representative_income 126131 Representative total house income in the dwelling unit is $126131 +in.representative_income 126145 Representative total house income in the dwelling unit is $126145 +in.representative_income 126147 Representative total house income in the dwelling unit is $126147 +in.representative_income 126152 Representative total house income in the dwelling unit is $126152 +in.representative_income 126167 Representative total house income in the dwelling unit is $126167 +in.representative_income 126177 Representative total house income in the dwelling unit is $126177 +in.representative_income 126198 Representative total house income in the dwelling unit is $126198 +in.representative_income 126199 Representative total house income in the dwelling unit is $126199 +in.representative_income 126209 Representative total house income in the dwelling unit is $126209 +in.representative_income 126218 Representative total house income in the dwelling unit is $126218 +in.representative_income 126226 Representative total house income in the dwelling unit is $126226 +in.representative_income 126229 Representative total house income in the dwelling unit is $126229 +in.representative_income 126236 Representative total house income in the dwelling unit is $126236 +in.representative_income 126238 Representative total house income in the dwelling unit is $126238 +in.representative_income 126250 Representative total house income in the dwelling unit is $126250 +in.representative_income 126258 Representative total house income in the dwelling unit is $126258 +in.representative_income 126268 Representative total house income in the dwelling unit is $126268 +in.representative_income 126278 Representative total house income in the dwelling unit is $126278 +in.representative_income 126302 Representative total house income in the dwelling unit is $126302 +in.representative_income 126306 Representative total house income in the dwelling unit is $126306 +in.representative_income 126311 Representative total house income in the dwelling unit is $126311 +in.representative_income 126313 Representative total house income in the dwelling unit is $126313 +in.representative_income 126325 Representative total house income in the dwelling unit is $126325 +in.representative_income 126329 Representative total house income in the dwelling unit is $126329 +in.representative_income 126342 Representative total house income in the dwelling unit is $126342 +in.representative_income 126344 Representative total house income in the dwelling unit is $126344 +in.representative_income 126352 Representative total house income in the dwelling unit is $126352 +in.representative_income 126359 Representative total house income in the dwelling unit is $126359 +in.representative_income 126364 Representative total house income in the dwelling unit is $126364 +in.representative_income 126369 Representative total house income in the dwelling unit is $126369 +in.representative_income 126378 Representative total house income in the dwelling unit is $126378 +in.representative_income 126383 Representative total house income in the dwelling unit is $126383 +in.representative_income 126384 Representative total house income in the dwelling unit is $126384 +in.representative_income 126390 Representative total house income in the dwelling unit is $126390 +in.representative_income 126410 Representative total house income in the dwelling unit is $126410 +in.representative_income 126415 Representative total house income in the dwelling unit is $126415 +in.representative_income 126437 Representative total house income in the dwelling unit is $126437 +in.representative_income 126440 Representative total house income in the dwelling unit is $126440 +in.representative_income 126447 Representative total house income in the dwelling unit is $126447 +in.representative_income 126452 Representative total house income in the dwelling unit is $126452 +in.representative_income 126456 Representative total house income in the dwelling unit is $126456 +in.representative_income 126469 Representative total house income in the dwelling unit is $126469 +in.representative_income 126470 Representative total house income in the dwelling unit is $126470 +in.representative_income 126478 Representative total house income in the dwelling unit is $126478 +in.representative_income 126490 Representative total house income in the dwelling unit is $126490 +in.representative_income 126506 Representative total house income in the dwelling unit is $126506 +in.representative_income 126510 Representative total house income in the dwelling unit is $126510 +in.representative_income 126511 Representative total house income in the dwelling unit is $126511 +in.representative_income 126521 Representative total house income in the dwelling unit is $126521 +in.representative_income 126523 Representative total house income in the dwelling unit is $126523 +in.representative_income 126528 Representative total house income in the dwelling unit is $126528 +in.representative_income 126552 Representative total house income in the dwelling unit is $126552 +in.representative_income 126556 Representative total house income in the dwelling unit is $126556 +in.representative_income 126559 Representative total house income in the dwelling unit is $126559 +in.representative_income 126560 Representative total house income in the dwelling unit is $126560 +in.representative_income 126563 Representative total house income in the dwelling unit is $126563 +in.representative_income 126569 Representative total house income in the dwelling unit is $126569 +in.representative_income 126571 Representative total house income in the dwelling unit is $126571 +in.representative_income 126574 Representative total house income in the dwelling unit is $126574 +in.representative_income 126577 Representative total house income in the dwelling unit is $126577 +in.representative_income 126611 Representative total house income in the dwelling unit is $126611 +in.representative_income 126616 Representative total house income in the dwelling unit is $126616 +in.representative_income 126622 Representative total house income in the dwelling unit is $126622 +in.representative_income 126629 Representative total house income in the dwelling unit is $126629 +in.representative_income 126631 Representative total house income in the dwelling unit is $126631 +in.representative_income 126633 Representative total house income in the dwelling unit is $126633 +in.representative_income 126635 Representative total house income in the dwelling unit is $126635 +in.representative_income 126637 Representative total house income in the dwelling unit is $126637 +in.representative_income 126652 Representative total house income in the dwelling unit is $126652 +in.representative_income 126658 Representative total house income in the dwelling unit is $126658 +in.representative_income 126659 Representative total house income in the dwelling unit is $126659 +in.representative_income 126662 Representative total house income in the dwelling unit is $126662 +in.representative_income 126667 Representative total house income in the dwelling unit is $126667 +in.representative_income 126671 Representative total house income in the dwelling unit is $126671 +in.representative_income 126672 Representative total house income in the dwelling unit is $126672 +in.representative_income 126673 Representative total house income in the dwelling unit is $126673 +in.representative_income 126678 Representative total house income in the dwelling unit is $126678 +in.representative_income 126690 Representative total house income in the dwelling unit is $126690 +in.representative_income 126699 Representative total house income in the dwelling unit is $126699 +in.representative_income 126700 Representative total house income in the dwelling unit is $126700 +in.representative_income 126720 Representative total house income in the dwelling unit is $126720 +in.representative_income 126739 Representative total house income in the dwelling unit is $126739 +in.representative_income 126764 Representative total house income in the dwelling unit is $126764 +in.representative_income 126766 Representative total house income in the dwelling unit is $126766 +in.representative_income 126768 Representative total house income in the dwelling unit is $126768 +in.representative_income 126771 Representative total house income in the dwelling unit is $126771 +in.representative_income 126773 Representative total house income in the dwelling unit is $126773 +in.representative_income 126775 Representative total house income in the dwelling unit is $126775 +in.representative_income 126776 Representative total house income in the dwelling unit is $126776 +in.representative_income 126796 Representative total house income in the dwelling unit is $126796 +in.representative_income 126804 Representative total house income in the dwelling unit is $126804 +in.representative_income 126805 Representative total house income in the dwelling unit is $126805 +in.representative_income 126806 Representative total house income in the dwelling unit is $126806 +in.representative_income 126817 Representative total house income in the dwelling unit is $126817 +in.representative_income 126822 Representative total house income in the dwelling unit is $126822 +in.representative_income 126824 Representative total house income in the dwelling unit is $126824 +in.representative_income 126825 Representative total house income in the dwelling unit is $126825 +in.representative_income 126847 Representative total house income in the dwelling unit is $126847 +in.representative_income 126859 Representative total house income in the dwelling unit is $126859 +in.representative_income 126869 Representative total house income in the dwelling unit is $126869 +in.representative_income 126874 Representative total house income in the dwelling unit is $126874 +in.representative_income 126882 Representative total house income in the dwelling unit is $126882 +in.representative_income 126890 Representative total house income in the dwelling unit is $126890 +in.representative_income 126903 Representative total house income in the dwelling unit is $126903 +in.representative_income 126926 Representative total house income in the dwelling unit is $126926 +in.representative_income 126935 Representative total house income in the dwelling unit is $126935 +in.representative_income 126946 Representative total house income in the dwelling unit is $126946 +in.representative_income 126955 Representative total house income in the dwelling unit is $126955 +in.representative_income 126966 Representative total house income in the dwelling unit is $126966 +in.representative_income 126971 Representative total house income in the dwelling unit is $126971 +in.representative_income 126975 Representative total house income in the dwelling unit is $126975 +in.representative_income 126977 Representative total house income in the dwelling unit is $126977 +in.representative_income 126989 Representative total house income in the dwelling unit is $126989 +in.representative_income 126990 Representative total house income in the dwelling unit is $126990 +in.representative_income 126999 Representative total house income in the dwelling unit is $126999 +in.representative_income 127013 Representative total house income in the dwelling unit is $127013 +in.representative_income 127023 Representative total house income in the dwelling unit is $127023 +in.representative_income 127049 Representative total house income in the dwelling unit is $127049 +in.representative_income 127063 Representative total house income in the dwelling unit is $127063 +in.representative_income 127067 Representative total house income in the dwelling unit is $127067 +in.representative_income 127074 Representative total house income in the dwelling unit is $127074 +in.representative_income 127075 Representative total house income in the dwelling unit is $127075 +in.representative_income 127076 Representative total house income in the dwelling unit is $127076 +in.representative_income 127080 Representative total house income in the dwelling unit is $127080 +in.representative_income 127081 Representative total house income in the dwelling unit is $127081 +in.representative_income 127096 Representative total house income in the dwelling unit is $127096 +in.representative_income 127101 Representative total house income in the dwelling unit is $127101 +in.representative_income 127106 Representative total house income in the dwelling unit is $127106 +in.representative_income 127116 Representative total house income in the dwelling unit is $127116 +in.representative_income 127118 Representative total house income in the dwelling unit is $127118 +in.representative_income 127126 Representative total house income in the dwelling unit is $127126 +in.representative_income 127133 Representative total house income in the dwelling unit is $127133 +in.representative_income 127143 Representative total house income in the dwelling unit is $127143 +in.representative_income 127172 Representative total house income in the dwelling unit is $127172 +in.representative_income 127177 Representative total house income in the dwelling unit is $127177 +in.representative_income 127178 Representative total house income in the dwelling unit is $127178 +in.representative_income 127185 Representative total house income in the dwelling unit is $127185 +in.representative_income 127198 Representative total house income in the dwelling unit is $127198 +in.representative_income 127204 Representative total house income in the dwelling unit is $127204 +in.representative_income 127208 Representative total house income in the dwelling unit is $127208 +in.representative_income 127225 Representative total house income in the dwelling unit is $127225 +in.representative_income 127226 Representative total house income in the dwelling unit is $127226 +in.representative_income 127228 Representative total house income in the dwelling unit is $127228 +in.representative_income 127239 Representative total house income in the dwelling unit is $127239 +in.representative_income 127261 Representative total house income in the dwelling unit is $127261 +in.representative_income 127270 Representative total house income in the dwelling unit is $127270 +in.representative_income 127278 Representative total house income in the dwelling unit is $127278 +in.representative_income 127280 Representative total house income in the dwelling unit is $127280 +in.representative_income 127281 Representative total house income in the dwelling unit is $127281 +in.representative_income 127286 Representative total house income in the dwelling unit is $127286 +in.representative_income 127288 Representative total house income in the dwelling unit is $127288 +in.representative_income 127290 Representative total house income in the dwelling unit is $127290 +in.representative_income 127298 Representative total house income in the dwelling unit is $127298 +in.representative_income 127309 Representative total house income in the dwelling unit is $127309 +in.representative_income 127311 Representative total house income in the dwelling unit is $127311 +in.representative_income 127329 Representative total house income in the dwelling unit is $127329 +in.representative_income 127333 Representative total house income in the dwelling unit is $127333 +in.representative_income 127343 Representative total house income in the dwelling unit is $127343 +in.representative_income 127358 Representative total house income in the dwelling unit is $127358 +in.representative_income 127375 Representative total house income in the dwelling unit is $127375 +in.representative_income 127379 Representative total house income in the dwelling unit is $127379 +in.representative_income 127385 Representative total house income in the dwelling unit is $127385 +in.representative_income 127388 Representative total house income in the dwelling unit is $127388 +in.representative_income 127397 Representative total house income in the dwelling unit is $127397 +in.representative_income 127399 Representative total house income in the dwelling unit is $127399 +in.representative_income 127409 Representative total house income in the dwelling unit is $127409 +in.representative_income 127418 Representative total house income in the dwelling unit is $127418 +in.representative_income 127419 Representative total house income in the dwelling unit is $127419 +in.representative_income 127425 Representative total house income in the dwelling unit is $127425 +in.representative_income 127428 Representative total house income in the dwelling unit is $127428 +in.representative_income 127442 Representative total house income in the dwelling unit is $127442 +in.representative_income 127460 Representative total house income in the dwelling unit is $127460 +in.representative_income 127477 Representative total house income in the dwelling unit is $127477 +in.representative_income 127480 Representative total house income in the dwelling unit is $127480 +in.representative_income 127484 Representative total house income in the dwelling unit is $127484 +in.representative_income 127487 Representative total house income in the dwelling unit is $127487 +in.representative_income 127493 Representative total house income in the dwelling unit is $127493 +in.representative_income 127495 Representative total house income in the dwelling unit is $127495 +in.representative_income 127502 Representative total house income in the dwelling unit is $127502 +in.representative_income 127506 Representative total house income in the dwelling unit is $127506 +in.representative_income 127517 Representative total house income in the dwelling unit is $127517 +in.representative_income 127525 Representative total house income in the dwelling unit is $127525 +in.representative_income 127526 Representative total house income in the dwelling unit is $127526 +in.representative_income 127528 Representative total house income in the dwelling unit is $127528 +in.representative_income 127554 Representative total house income in the dwelling unit is $127554 +in.representative_income 127558 Representative total house income in the dwelling unit is $127558 +in.representative_income 127560 Representative total house income in the dwelling unit is $127560 +in.representative_income 127561 Representative total house income in the dwelling unit is $127561 +in.representative_income 127566 Representative total house income in the dwelling unit is $127566 +in.representative_income 127581 Representative total house income in the dwelling unit is $127581 +in.representative_income 127582 Representative total house income in the dwelling unit is $127582 +in.representative_income 127586 Representative total house income in the dwelling unit is $127586 +in.representative_income 127590 Representative total house income in the dwelling unit is $127590 +in.representative_income 127603 Representative total house income in the dwelling unit is $127603 +in.representative_income 127605 Representative total house income in the dwelling unit is $127605 +in.representative_income 127607 Representative total house income in the dwelling unit is $127607 +in.representative_income 127618 Representative total house income in the dwelling unit is $127618 +in.representative_income 127619 Representative total house income in the dwelling unit is $127619 +in.representative_income 127628 Representative total house income in the dwelling unit is $127628 +in.representative_income 127632 Representative total house income in the dwelling unit is $127632 +in.representative_income 127633 Representative total house income in the dwelling unit is $127633 +in.representative_income 127642 Representative total house income in the dwelling unit is $127642 +in.representative_income 127646 Representative total house income in the dwelling unit is $127646 +in.representative_income 127649 Representative total house income in the dwelling unit is $127649 +in.representative_income 127654 Representative total house income in the dwelling unit is $127654 +in.representative_income 127657 Representative total house income in the dwelling unit is $127657 +in.representative_income 127673 Representative total house income in the dwelling unit is $127673 +in.representative_income 127681 Representative total house income in the dwelling unit is $127681 +in.representative_income 127682 Representative total house income in the dwelling unit is $127682 +in.representative_income 127692 Representative total house income in the dwelling unit is $127692 +in.representative_income 127694 Representative total house income in the dwelling unit is $127694 +in.representative_income 127701 Representative total house income in the dwelling unit is $127701 +in.representative_income 127711 Representative total house income in the dwelling unit is $127711 +in.representative_income 127713 Representative total house income in the dwelling unit is $127713 +in.representative_income 127722 Representative total house income in the dwelling unit is $127722 +in.representative_income 127723 Representative total house income in the dwelling unit is $127723 +in.representative_income 127726 Representative total house income in the dwelling unit is $127726 +in.representative_income 127735 Representative total house income in the dwelling unit is $127735 +in.representative_income 127740 Representative total house income in the dwelling unit is $127740 +in.representative_income 127744 Representative total house income in the dwelling unit is $127744 +in.representative_income 127751 Representative total house income in the dwelling unit is $127751 +in.representative_income 127754 Representative total house income in the dwelling unit is $127754 +in.representative_income 127756 Representative total house income in the dwelling unit is $127756 +in.representative_income 127765 Representative total house income in the dwelling unit is $127765 +in.representative_income 127772 Representative total house income in the dwelling unit is $127772 +in.representative_income 127776 Representative total house income in the dwelling unit is $127776 +in.representative_income 127783 Representative total house income in the dwelling unit is $127783 +in.representative_income 127794 Representative total house income in the dwelling unit is $127794 +in.representative_income 127797 Representative total house income in the dwelling unit is $127797 +in.representative_income 127818 Representative total house income in the dwelling unit is $127818 +in.representative_income 127819 Representative total house income in the dwelling unit is $127819 +in.representative_income 127820 Representative total house income in the dwelling unit is $127820 +in.representative_income 127828 Representative total house income in the dwelling unit is $127828 +in.representative_income 127835 Representative total house income in the dwelling unit is $127835 +in.representative_income 127848 Representative total house income in the dwelling unit is $127848 +in.representative_income 127859 Representative total house income in the dwelling unit is $127859 +in.representative_income 127861 Representative total house income in the dwelling unit is $127861 +in.representative_income 127864 Representative total house income in the dwelling unit is $127864 +in.representative_income 127869 Representative total house income in the dwelling unit is $127869 +in.representative_income 127871 Representative total house income in the dwelling unit is $127871 +in.representative_income 127884 Representative total house income in the dwelling unit is $127884 +in.representative_income 127895 Representative total house income in the dwelling unit is $127895 +in.representative_income 127900 Representative total house income in the dwelling unit is $127900 +in.representative_income 127901 Representative total house income in the dwelling unit is $127901 +in.representative_income 127911 Representative total house income in the dwelling unit is $127911 +in.representative_income 127912 Representative total house income in the dwelling unit is $127912 +in.representative_income 127915 Representative total house income in the dwelling unit is $127915 +in.representative_income 127924 Representative total house income in the dwelling unit is $127924 +in.representative_income 127928 Representative total house income in the dwelling unit is $127928 +in.representative_income 127931 Representative total house income in the dwelling unit is $127931 +in.representative_income 127935 Representative total house income in the dwelling unit is $127935 +in.representative_income 127939 Representative total house income in the dwelling unit is $127939 +in.representative_income 127941 Representative total house income in the dwelling unit is $127941 +in.representative_income 127942 Representative total house income in the dwelling unit is $127942 +in.representative_income 127952 Representative total house income in the dwelling unit is $127952 +in.representative_income 127956 Representative total house income in the dwelling unit is $127956 +in.representative_income 127976 Representative total house income in the dwelling unit is $127976 +in.representative_income 127977 Representative total house income in the dwelling unit is $127977 +in.representative_income 127983 Representative total house income in the dwelling unit is $127983 +in.representative_income 127985 Representative total house income in the dwelling unit is $127985 +in.representative_income 127987 Representative total house income in the dwelling unit is $127987 +in.representative_income 127992 Representative total house income in the dwelling unit is $127992 +in.representative_income 127995 Representative total house income in the dwelling unit is $127995 +in.representative_income 128001 Representative total house income in the dwelling unit is $128001 +in.representative_income 128003 Representative total house income in the dwelling unit is $128003 +in.representative_income 128016 Representative total house income in the dwelling unit is $128016 +in.representative_income 128024 Representative total house income in the dwelling unit is $128024 +in.representative_income 128026 Representative total house income in the dwelling unit is $128026 +in.representative_income 128029 Representative total house income in the dwelling unit is $128029 +in.representative_income 128034 Representative total house income in the dwelling unit is $128034 +in.representative_income 128036 Representative total house income in the dwelling unit is $128036 +in.representative_income 128037 Representative total house income in the dwelling unit is $128037 +in.representative_income 128054 Representative total house income in the dwelling unit is $128054 +in.representative_income 128062 Representative total house income in the dwelling unit is $128062 +in.representative_income 128086 Representative total house income in the dwelling unit is $128086 +in.representative_income 128106 Representative total house income in the dwelling unit is $128106 +in.representative_income 128116 Representative total house income in the dwelling unit is $128116 +in.representative_income 128118 Representative total house income in the dwelling unit is $128118 +in.representative_income 128127 Representative total house income in the dwelling unit is $128127 +in.representative_income 128131 Representative total house income in the dwelling unit is $128131 +in.representative_income 128135 Representative total house income in the dwelling unit is $128135 +in.representative_income 128144 Representative total house income in the dwelling unit is $128144 +in.representative_income 128148 Representative total house income in the dwelling unit is $128148 +in.representative_income 128154 Representative total house income in the dwelling unit is $128154 +in.representative_income 128155 Representative total house income in the dwelling unit is $128155 +in.representative_income 128170 Representative total house income in the dwelling unit is $128170 +in.representative_income 128187 Representative total house income in the dwelling unit is $128187 +in.representative_income 128191 Representative total house income in the dwelling unit is $128191 +in.representative_income 128198 Representative total house income in the dwelling unit is $128198 +in.representative_income 128209 Representative total house income in the dwelling unit is $128209 +in.representative_income 128211 Representative total house income in the dwelling unit is $128211 +in.representative_income 128219 Representative total house income in the dwelling unit is $128219 +in.representative_income 128228 Representative total house income in the dwelling unit is $128228 +in.representative_income 128230 Representative total house income in the dwelling unit is $128230 +in.representative_income 128240 Representative total house income in the dwelling unit is $128240 +in.representative_income 128248 Representative total house income in the dwelling unit is $128248 +in.representative_income 128252 Representative total house income in the dwelling unit is $128252 +in.representative_income 128253 Representative total house income in the dwelling unit is $128253 +in.representative_income 128256 Representative total house income in the dwelling unit is $128256 +in.representative_income 128263 Representative total house income in the dwelling unit is $128263 +in.representative_income 128264 Representative total house income in the dwelling unit is $128264 +in.representative_income 128267 Representative total house income in the dwelling unit is $128267 +in.representative_income 128268 Representative total house income in the dwelling unit is $128268 +in.representative_income 128271 Representative total house income in the dwelling unit is $128271 +in.representative_income 128277 Representative total house income in the dwelling unit is $128277 +in.representative_income 128283 Representative total house income in the dwelling unit is $128283 +in.representative_income 128287 Representative total house income in the dwelling unit is $128287 +in.representative_income 128288 Representative total house income in the dwelling unit is $128288 +in.representative_income 128295 Representative total house income in the dwelling unit is $128295 +in.representative_income 128298 Representative total house income in the dwelling unit is $128298 +in.representative_income 128299 Representative total house income in the dwelling unit is $128299 +in.representative_income 128303 Representative total house income in the dwelling unit is $128303 +in.representative_income 128304 Representative total house income in the dwelling unit is $128304 +in.representative_income 128309 Representative total house income in the dwelling unit is $128309 +in.representative_income 128313 Representative total house income in the dwelling unit is $128313 +in.representative_income 128319 Representative total house income in the dwelling unit is $128319 +in.representative_income 128322 Representative total house income in the dwelling unit is $128322 +in.representative_income 128331 Representative total house income in the dwelling unit is $128331 +in.representative_income 128333 Representative total house income in the dwelling unit is $128333 +in.representative_income 128339 Representative total house income in the dwelling unit is $128339 +in.representative_income 128342 Representative total house income in the dwelling unit is $128342 +in.representative_income 128345 Representative total house income in the dwelling unit is $128345 +in.representative_income 128357 Representative total house income in the dwelling unit is $128357 +in.representative_income 128360 Representative total house income in the dwelling unit is $128360 +in.representative_income 128363 Representative total house income in the dwelling unit is $128363 +in.representative_income 128366 Representative total house income in the dwelling unit is $128366 +in.representative_income 128367 Representative total house income in the dwelling unit is $128367 +in.representative_income 128373 Representative total house income in the dwelling unit is $128373 +in.representative_income 128374 Representative total house income in the dwelling unit is $128374 +in.representative_income 128375 Representative total house income in the dwelling unit is $128375 +in.representative_income 128379 Representative total house income in the dwelling unit is $128379 +in.representative_income 128385 Representative total house income in the dwelling unit is $128385 +in.representative_income 128389 Representative total house income in the dwelling unit is $128389 +in.representative_income 128398 Representative total house income in the dwelling unit is $128398 +in.representative_income 128403 Representative total house income in the dwelling unit is $128403 +in.representative_income 128405 Representative total house income in the dwelling unit is $128405 +in.representative_income 128415 Representative total house income in the dwelling unit is $128415 +in.representative_income 128416 Representative total house income in the dwelling unit is $128416 +in.representative_income 128440 Representative total house income in the dwelling unit is $128440 +in.representative_income 128451 Representative total house income in the dwelling unit is $128451 +in.representative_income 128468 Representative total house income in the dwelling unit is $128468 +in.representative_income 128483 Representative total house income in the dwelling unit is $128483 +in.representative_income 128490 Representative total house income in the dwelling unit is $128490 +in.representative_income 128492 Representative total house income in the dwelling unit is $128492 +in.representative_income 128493 Representative total house income in the dwelling unit is $128493 +in.representative_income 128503 Representative total house income in the dwelling unit is $128503 +in.representative_income 128510 Representative total house income in the dwelling unit is $128510 +in.representative_income 128511 Representative total house income in the dwelling unit is $128511 +in.representative_income 128518 Representative total house income in the dwelling unit is $128518 +in.representative_income 128530 Representative total house income in the dwelling unit is $128530 +in.representative_income 128535 Representative total house income in the dwelling unit is $128535 +in.representative_income 128538 Representative total house income in the dwelling unit is $128538 +in.representative_income 128545 Representative total house income in the dwelling unit is $128545 +in.representative_income 128551 Representative total house income in the dwelling unit is $128551 +in.representative_income 128554 Representative total house income in the dwelling unit is $128554 +in.representative_income 128557 Representative total house income in the dwelling unit is $128557 +in.representative_income 128576 Representative total house income in the dwelling unit is $128576 +in.representative_income 128578 Representative total house income in the dwelling unit is $128578 +in.representative_income 128583 Representative total house income in the dwelling unit is $128583 +in.representative_income 128588 Representative total house income in the dwelling unit is $128588 +in.representative_income 128591 Representative total house income in the dwelling unit is $128591 +in.representative_income 128597 Representative total house income in the dwelling unit is $128597 +in.representative_income 128599 Representative total house income in the dwelling unit is $128599 +in.representative_income 128600 Representative total house income in the dwelling unit is $128600 +in.representative_income 128619 Representative total house income in the dwelling unit is $128619 +in.representative_income 128622 Representative total house income in the dwelling unit is $128622 +in.representative_income 128630 Representative total house income in the dwelling unit is $128630 +in.representative_income 128642 Representative total house income in the dwelling unit is $128642 +in.representative_income 128662 Representative total house income in the dwelling unit is $128662 +in.representative_income 128683 Representative total house income in the dwelling unit is $128683 +in.representative_income 128684 Representative total house income in the dwelling unit is $128684 +in.representative_income 128685 Representative total house income in the dwelling unit is $128685 +in.representative_income 128692 Representative total house income in the dwelling unit is $128692 +in.representative_income 128694 Representative total house income in the dwelling unit is $128694 +in.representative_income 128706 Representative total house income in the dwelling unit is $128706 +in.representative_income 128714 Representative total house income in the dwelling unit is $128714 +in.representative_income 128721 Representative total house income in the dwelling unit is $128721 +in.representative_income 128725 Representative total house income in the dwelling unit is $128725 +in.representative_income 128728 Representative total house income in the dwelling unit is $128728 +in.representative_income 128735 Representative total house income in the dwelling unit is $128735 +in.representative_income 128738 Representative total house income in the dwelling unit is $128738 +in.representative_income 128753 Representative total house income in the dwelling unit is $128753 +in.representative_income 128757 Representative total house income in the dwelling unit is $128757 +in.representative_income 128767 Representative total house income in the dwelling unit is $128767 +in.representative_income 128768 Representative total house income in the dwelling unit is $128768 +in.representative_income 128777 Representative total house income in the dwelling unit is $128777 +in.representative_income 128785 Representative total house income in the dwelling unit is $128785 +in.representative_income 128792 Representative total house income in the dwelling unit is $128792 +in.representative_income 128793 Representative total house income in the dwelling unit is $128793 +in.representative_income 128801 Representative total house income in the dwelling unit is $128801 +in.representative_income 128814 Representative total house income in the dwelling unit is $128814 +in.representative_income 128815 Representative total house income in the dwelling unit is $128815 +in.representative_income 128818 Representative total house income in the dwelling unit is $128818 +in.representative_income 128824 Representative total house income in the dwelling unit is $128824 +in.representative_income 128825 Representative total house income in the dwelling unit is $128825 +in.representative_income 128828 Representative total house income in the dwelling unit is $128828 +in.representative_income 128832 Representative total house income in the dwelling unit is $128832 +in.representative_income 128835 Representative total house income in the dwelling unit is $128835 +in.representative_income 128844 Representative total house income in the dwelling unit is $128844 +in.representative_income 128846 Representative total house income in the dwelling unit is $128846 +in.representative_income 128850 Representative total house income in the dwelling unit is $128850 +in.representative_income 128854 Representative total house income in the dwelling unit is $128854 +in.representative_income 128856 Representative total house income in the dwelling unit is $128856 +in.representative_income 128862 Representative total house income in the dwelling unit is $128862 +in.representative_income 128867 Representative total house income in the dwelling unit is $128867 +in.representative_income 128870 Representative total house income in the dwelling unit is $128870 +in.representative_income 128873 Representative total house income in the dwelling unit is $128873 +in.representative_income 128879 Representative total house income in the dwelling unit is $128879 +in.representative_income 128880 Representative total house income in the dwelling unit is $128880 +in.representative_income 128881 Representative total house income in the dwelling unit is $128881 +in.representative_income 128895 Representative total house income in the dwelling unit is $128895 +in.representative_income 128900 Representative total house income in the dwelling unit is $128900 +in.representative_income 128905 Representative total house income in the dwelling unit is $128905 +in.representative_income 128911 Representative total house income in the dwelling unit is $128911 +in.representative_income 128913 Representative total house income in the dwelling unit is $128913 +in.representative_income 128914 Representative total house income in the dwelling unit is $128914 +in.representative_income 128921 Representative total house income in the dwelling unit is $128921 +in.representative_income 128922 Representative total house income in the dwelling unit is $128922 +in.representative_income 128926 Representative total house income in the dwelling unit is $128926 +in.representative_income 128932 Representative total house income in the dwelling unit is $128932 +in.representative_income 128936 Representative total house income in the dwelling unit is $128936 +in.representative_income 128942 Representative total house income in the dwelling unit is $128942 +in.representative_income 128949 Representative total house income in the dwelling unit is $128949 +in.representative_income 128952 Representative total house income in the dwelling unit is $128952 +in.representative_income 128953 Representative total house income in the dwelling unit is $128953 +in.representative_income 128955 Representative total house income in the dwelling unit is $128955 +in.representative_income 128962 Representative total house income in the dwelling unit is $128962 +in.representative_income 128975 Representative total house income in the dwelling unit is $128975 +in.representative_income 128978 Representative total house income in the dwelling unit is $128978 +in.representative_income 128983 Representative total house income in the dwelling unit is $128983 +in.representative_income 128985 Representative total house income in the dwelling unit is $128985 +in.representative_income 128987 Representative total house income in the dwelling unit is $128987 +in.representative_income 128994 Representative total house income in the dwelling unit is $128994 +in.representative_income 128996 Representative total house income in the dwelling unit is $128996 +in.representative_income 129004 Representative total house income in the dwelling unit is $129004 +in.representative_income 129008 Representative total house income in the dwelling unit is $129008 +in.representative_income 129017 Representative total house income in the dwelling unit is $129017 +in.representative_income 129019 Representative total house income in the dwelling unit is $129019 +in.representative_income 129029 Representative total house income in the dwelling unit is $129029 +in.representative_income 129030 Representative total house income in the dwelling unit is $129030 +in.representative_income 129035 Representative total house income in the dwelling unit is $129035 +in.representative_income 129045 Representative total house income in the dwelling unit is $129045 +in.representative_income 129050 Representative total house income in the dwelling unit is $129050 +in.representative_income 129066 Representative total house income in the dwelling unit is $129066 +in.representative_income 129071 Representative total house income in the dwelling unit is $129071 +in.representative_income 129076 Representative total house income in the dwelling unit is $129076 +in.representative_income 129082 Representative total house income in the dwelling unit is $129082 +in.representative_income 129083 Representative total house income in the dwelling unit is $129083 +in.representative_income 129093 Representative total house income in the dwelling unit is $129093 +in.representative_income 129097 Representative total house income in the dwelling unit is $129097 +in.representative_income 129105 Representative total house income in the dwelling unit is $129105 +in.representative_income 129109 Representative total house income in the dwelling unit is $129109 +in.representative_income 129114 Representative total house income in the dwelling unit is $129114 +in.representative_income 129116 Representative total house income in the dwelling unit is $129116 +in.representative_income 129125 Representative total house income in the dwelling unit is $129125 +in.representative_income 129127 Representative total house income in the dwelling unit is $129127 +in.representative_income 129131 Representative total house income in the dwelling unit is $129131 +in.representative_income 129136 Representative total house income in the dwelling unit is $129136 +in.representative_income 129137 Representative total house income in the dwelling unit is $129137 +in.representative_income 129141 Representative total house income in the dwelling unit is $129141 +in.representative_income 129147 Representative total house income in the dwelling unit is $129147 +in.representative_income 129153 Representative total house income in the dwelling unit is $129153 +in.representative_income 129159 Representative total house income in the dwelling unit is $129159 +in.representative_income 129189 Representative total house income in the dwelling unit is $129189 +in.representative_income 129190 Representative total house income in the dwelling unit is $129190 +in.representative_income 129198 Representative total house income in the dwelling unit is $129198 +in.representative_income 129205 Representative total house income in the dwelling unit is $129205 +in.representative_income 129210 Representative total house income in the dwelling unit is $129210 +in.representative_income 129211 Representative total house income in the dwelling unit is $129211 +in.representative_income 129221 Representative total house income in the dwelling unit is $129221 +in.representative_income 129224 Representative total house income in the dwelling unit is $129224 +in.representative_income 129231 Representative total house income in the dwelling unit is $129231 +in.representative_income 129235 Representative total house income in the dwelling unit is $129235 +in.representative_income 129241 Representative total house income in the dwelling unit is $129241 +in.representative_income 129243 Representative total house income in the dwelling unit is $129243 +in.representative_income 129248 Representative total house income in the dwelling unit is $129248 +in.representative_income 129249 Representative total house income in the dwelling unit is $129249 +in.representative_income 129258 Representative total house income in the dwelling unit is $129258 +in.representative_income 129259 Representative total house income in the dwelling unit is $129259 +in.representative_income 129262 Representative total house income in the dwelling unit is $129262 +in.representative_income 129273 Representative total house income in the dwelling unit is $129273 +in.representative_income 129276 Representative total house income in the dwelling unit is $129276 +in.representative_income 129295 Representative total house income in the dwelling unit is $129295 +in.representative_income 129299 Representative total house income in the dwelling unit is $129299 +in.representative_income 129300 Representative total house income in the dwelling unit is $129300 +in.representative_income 129309 Representative total house income in the dwelling unit is $129309 +in.representative_income 129319 Representative total house income in the dwelling unit is $129319 +in.representative_income 129321 Representative total house income in the dwelling unit is $129321 +in.representative_income 129324 Representative total house income in the dwelling unit is $129324 +in.representative_income 129329 Representative total house income in the dwelling unit is $129329 +in.representative_income 129332 Representative total house income in the dwelling unit is $129332 +in.representative_income 129339 Representative total house income in the dwelling unit is $129339 +in.representative_income 129344 Representative total house income in the dwelling unit is $129344 +in.representative_income 129347 Representative total house income in the dwelling unit is $129347 +in.representative_income 129349 Representative total house income in the dwelling unit is $129349 +in.representative_income 129350 Representative total house income in the dwelling unit is $129350 +in.representative_income 129351 Representative total house income in the dwelling unit is $129351 +in.representative_income 129354 Representative total house income in the dwelling unit is $129354 +in.representative_income 129369 Representative total house income in the dwelling unit is $129369 +in.representative_income 129372 Representative total house income in the dwelling unit is $129372 +in.representative_income 129378 Representative total house income in the dwelling unit is $129378 +in.representative_income 129389 Representative total house income in the dwelling unit is $129389 +in.representative_income 129400 Representative total house income in the dwelling unit is $129400 +in.representative_income 129402 Representative total house income in the dwelling unit is $129402 +in.representative_income 129410 Representative total house income in the dwelling unit is $129410 +in.representative_income 129416 Representative total house income in the dwelling unit is $129416 +in.representative_income 129430 Representative total house income in the dwelling unit is $129430 +in.representative_income 129440 Representative total house income in the dwelling unit is $129440 +in.representative_income 129447 Representative total house income in the dwelling unit is $129447 +in.representative_income 129449 Representative total house income in the dwelling unit is $129449 +in.representative_income 129450 Representative total house income in the dwelling unit is $129450 +in.representative_income 129451 Representative total house income in the dwelling unit is $129451 +in.representative_income 129458 Representative total house income in the dwelling unit is $129458 +in.representative_income 129468 Representative total house income in the dwelling unit is $129468 +in.representative_income 129470 Representative total house income in the dwelling unit is $129470 +in.representative_income 129495 Representative total house income in the dwelling unit is $129495 +in.representative_income 129499 Representative total house income in the dwelling unit is $129499 +in.representative_income 129500 Representative total house income in the dwelling unit is $129500 +in.representative_income 129501 Representative total house income in the dwelling unit is $129501 +in.representative_income 129505 Representative total house income in the dwelling unit is $129505 +in.representative_income 129506 Representative total house income in the dwelling unit is $129506 +in.representative_income 129511 Representative total house income in the dwelling unit is $129511 +in.representative_income 129514 Representative total house income in the dwelling unit is $129514 +in.representative_income 129516 Representative total house income in the dwelling unit is $129516 +in.representative_income 129519 Representative total house income in the dwelling unit is $129519 +in.representative_income 129522 Representative total house income in the dwelling unit is $129522 +in.representative_income 129527 Representative total house income in the dwelling unit is $129527 +in.representative_income 129528 Representative total house income in the dwelling unit is $129528 +in.representative_income 129537 Representative total house income in the dwelling unit is $129537 +in.representative_income 129544 Representative total house income in the dwelling unit is $129544 +in.representative_income 129549 Representative total house income in the dwelling unit is $129549 +in.representative_income 129551 Representative total house income in the dwelling unit is $129551 +in.representative_income 129555 Representative total house income in the dwelling unit is $129555 +in.representative_income 129559 Representative total house income in the dwelling unit is $129559 +in.representative_income 129566 Representative total house income in the dwelling unit is $129566 +in.representative_income 129571 Representative total house income in the dwelling unit is $129571 +in.representative_income 129587 Representative total house income in the dwelling unit is $129587 +in.representative_income 129602 Representative total house income in the dwelling unit is $129602 +in.representative_income 129611 Representative total house income in the dwelling unit is $129611 +in.representative_income 129622 Representative total house income in the dwelling unit is $129622 +in.representative_income 129624 Representative total house income in the dwelling unit is $129624 +in.representative_income 129635 Representative total house income in the dwelling unit is $129635 +in.representative_income 129642 Representative total house income in the dwelling unit is $129642 +in.representative_income 129653 Representative total house income in the dwelling unit is $129653 +in.representative_income 129654 Representative total house income in the dwelling unit is $129654 +in.representative_income 129657 Representative total house income in the dwelling unit is $129657 +in.representative_income 129658 Representative total house income in the dwelling unit is $129658 +in.representative_income 129667 Representative total house income in the dwelling unit is $129667 +in.representative_income 129673 Representative total house income in the dwelling unit is $129673 +in.representative_income 129678 Representative total house income in the dwelling unit is $129678 +in.representative_income 129679 Representative total house income in the dwelling unit is $129679 +in.representative_income 129687 Representative total house income in the dwelling unit is $129687 +in.representative_income 129695 Representative total house income in the dwelling unit is $129695 +in.representative_income 129700 Representative total house income in the dwelling unit is $129700 +in.representative_income 129701 Representative total house income in the dwelling unit is $129701 +in.representative_income 129703 Representative total house income in the dwelling unit is $129703 +in.representative_income 129705 Representative total house income in the dwelling unit is $129705 +in.representative_income 129711 Representative total house income in the dwelling unit is $129711 +in.representative_income 129713 Representative total house income in the dwelling unit is $129713 +in.representative_income 129716 Representative total house income in the dwelling unit is $129716 +in.representative_income 129721 Representative total house income in the dwelling unit is $129721 +in.representative_income 129727 Representative total house income in the dwelling unit is $129727 +in.representative_income 129732 Representative total house income in the dwelling unit is $129732 +in.representative_income 129733 Representative total house income in the dwelling unit is $129733 +in.representative_income 129737 Representative total house income in the dwelling unit is $129737 +in.representative_income 129743 Representative total house income in the dwelling unit is $129743 +in.representative_income 129753 Representative total house income in the dwelling unit is $129753 +in.representative_income 129754 Representative total house income in the dwelling unit is $129754 +in.representative_income 129756 Representative total house income in the dwelling unit is $129756 +in.representative_income 129765 Representative total house income in the dwelling unit is $129765 +in.representative_income 129769 Representative total house income in the dwelling unit is $129769 +in.representative_income 129775 Representative total house income in the dwelling unit is $129775 +in.representative_income 129780 Representative total house income in the dwelling unit is $129780 +in.representative_income 129786 Representative total house income in the dwelling unit is $129786 +in.representative_income 129788 Representative total house income in the dwelling unit is $129788 +in.representative_income 129796 Representative total house income in the dwelling unit is $129796 +in.representative_income 129802 Representative total house income in the dwelling unit is $129802 +in.representative_income 129804 Representative total house income in the dwelling unit is $129804 +in.representative_income 129808 Representative total house income in the dwelling unit is $129808 +in.representative_income 129810 Representative total house income in the dwelling unit is $129810 +in.representative_income 129811 Representative total house income in the dwelling unit is $129811 +in.representative_income 129818 Representative total house income in the dwelling unit is $129818 +in.representative_income 129819 Representative total house income in the dwelling unit is $129819 +in.representative_income 129822 Representative total house income in the dwelling unit is $129822 +in.representative_income 129823 Representative total house income in the dwelling unit is $129823 +in.representative_income 129824 Representative total house income in the dwelling unit is $129824 +in.representative_income 129829 Representative total house income in the dwelling unit is $129829 +in.representative_income 129840 Representative total house income in the dwelling unit is $129840 +in.representative_income 129844 Representative total house income in the dwelling unit is $129844 +in.representative_income 129845 Representative total house income in the dwelling unit is $129845 +in.representative_income 129854 Representative total house income in the dwelling unit is $129854 +in.representative_income 129860 Representative total house income in the dwelling unit is $129860 +in.representative_income 129873 Representative total house income in the dwelling unit is $129873 +in.representative_income 129875 Representative total house income in the dwelling unit is $129875 +in.representative_income 129877 Representative total house income in the dwelling unit is $129877 +in.representative_income 129883 Representative total house income in the dwelling unit is $129883 +in.representative_income 129885 Representative total house income in the dwelling unit is $129885 +in.representative_income 129887 Representative total house income in the dwelling unit is $129887 +in.representative_income 129889 Representative total house income in the dwelling unit is $129889 +in.representative_income 129905 Representative total house income in the dwelling unit is $129905 +in.representative_income 129908 Representative total house income in the dwelling unit is $129908 +in.representative_income 129922 Representative total house income in the dwelling unit is $129922 +in.representative_income 129926 Representative total house income in the dwelling unit is $129926 +in.representative_income 129928 Representative total house income in the dwelling unit is $129928 +in.representative_income 129932 Representative total house income in the dwelling unit is $129932 +in.representative_income 129963 Representative total house income in the dwelling unit is $129963 +in.representative_income 129965 Representative total house income in the dwelling unit is $129965 +in.representative_income 129980 Representative total house income in the dwelling unit is $129980 +in.representative_income 129983 Representative total house income in the dwelling unit is $129983 +in.representative_income 129990 Representative total house income in the dwelling unit is $129990 +in.representative_income 129994 Representative total house income in the dwelling unit is $129994 +in.representative_income 129995 Representative total house income in the dwelling unit is $129995 +in.representative_income 129996 Representative total house income in the dwelling unit is $129996 +in.representative_income 130005 Representative total house income in the dwelling unit is $130005 +in.representative_income 130006 Representative total house income in the dwelling unit is $130006 +in.representative_income 130018 Representative total house income in the dwelling unit is $130018 +in.representative_income 130026 Representative total house income in the dwelling unit is $130026 +in.representative_income 130027 Representative total house income in the dwelling unit is $130027 +in.representative_income 130033 Representative total house income in the dwelling unit is $130033 +in.representative_income 130034 Representative total house income in the dwelling unit is $130034 +in.representative_income 130035 Representative total house income in the dwelling unit is $130035 +in.representative_income 130042 Representative total house income in the dwelling unit is $130042 +in.representative_income 130044 Representative total house income in the dwelling unit is $130044 +in.representative_income 130048 Representative total house income in the dwelling unit is $130048 +in.representative_income 130056 Representative total house income in the dwelling unit is $130056 +in.representative_income 130066 Representative total house income in the dwelling unit is $130066 +in.representative_income 130077 Representative total house income in the dwelling unit is $130077 +in.representative_income 130081 Representative total house income in the dwelling unit is $130081 +in.representative_income 130088 Representative total house income in the dwelling unit is $130088 +in.representative_income 130099 Representative total house income in the dwelling unit is $130099 +in.representative_income 130102 Representative total house income in the dwelling unit is $130102 +in.representative_income 130103 Representative total house income in the dwelling unit is $130103 +in.representative_income 130107 Representative total house income in the dwelling unit is $130107 +in.representative_income 130113 Representative total house income in the dwelling unit is $130113 +in.representative_income 130117 Representative total house income in the dwelling unit is $130117 +in.representative_income 130118 Representative total house income in the dwelling unit is $130118 +in.representative_income 130127 Representative total house income in the dwelling unit is $130127 +in.representative_income 130134 Representative total house income in the dwelling unit is $130134 +in.representative_income 130138 Representative total house income in the dwelling unit is $130138 +in.representative_income 130147 Representative total house income in the dwelling unit is $130147 +in.representative_income 130149 Representative total house income in the dwelling unit is $130149 +in.representative_income 130153 Representative total house income in the dwelling unit is $130153 +in.representative_income 130156 Representative total house income in the dwelling unit is $130156 +in.representative_income 130166 Representative total house income in the dwelling unit is $130166 +in.representative_income 130169 Representative total house income in the dwelling unit is $130169 +in.representative_income 130191 Representative total house income in the dwelling unit is $130191 +in.representative_income 130196 Representative total house income in the dwelling unit is $130196 +in.representative_income 130197 Representative total house income in the dwelling unit is $130197 +in.representative_income 130198 Representative total house income in the dwelling unit is $130198 +in.representative_income 130208 Representative total house income in the dwelling unit is $130208 +in.representative_income 130210 Representative total house income in the dwelling unit is $130210 +in.representative_income 130223 Representative total house income in the dwelling unit is $130223 +in.representative_income 130233 Representative total house income in the dwelling unit is $130233 +in.representative_income 130235 Representative total house income in the dwelling unit is $130235 +in.representative_income 130242 Representative total house income in the dwelling unit is $130242 +in.representative_income 130244 Representative total house income in the dwelling unit is $130244 +in.representative_income 130247 Representative total house income in the dwelling unit is $130247 +in.representative_income 130250 Representative total house income in the dwelling unit is $130250 +in.representative_income 130258 Representative total house income in the dwelling unit is $130258 +in.representative_income 130261 Representative total house income in the dwelling unit is $130261 +in.representative_income 130268 Representative total house income in the dwelling unit is $130268 +in.representative_income 130272 Representative total house income in the dwelling unit is $130272 +in.representative_income 130276 Representative total house income in the dwelling unit is $130276 +in.representative_income 130278 Representative total house income in the dwelling unit is $130278 +in.representative_income 130282 Representative total house income in the dwelling unit is $130282 +in.representative_income 130284 Representative total house income in the dwelling unit is $130284 +in.representative_income 130293 Representative total house income in the dwelling unit is $130293 +in.representative_income 130305 Representative total house income in the dwelling unit is $130305 +in.representative_income 130309 Representative total house income in the dwelling unit is $130309 +in.representative_income 130314 Representative total house income in the dwelling unit is $130314 +in.representative_income 130316 Representative total house income in the dwelling unit is $130316 +in.representative_income 130320 Representative total house income in the dwelling unit is $130320 +in.representative_income 130327 Representative total house income in the dwelling unit is $130327 +in.representative_income 130333 Representative total house income in the dwelling unit is $130333 +in.representative_income 130338 Representative total house income in the dwelling unit is $130338 +in.representative_income 130345 Representative total house income in the dwelling unit is $130345 +in.representative_income 130349 Representative total house income in the dwelling unit is $130349 +in.representative_income 130355 Representative total house income in the dwelling unit is $130355 +in.representative_income 130359 Representative total house income in the dwelling unit is $130359 +in.representative_income 130371 Representative total house income in the dwelling unit is $130371 +in.representative_income 130375 Representative total house income in the dwelling unit is $130375 +in.representative_income 130379 Representative total house income in the dwelling unit is $130379 +in.representative_income 130390 Representative total house income in the dwelling unit is $130390 +in.representative_income 130403 Representative total house income in the dwelling unit is $130403 +in.representative_income 130407 Representative total house income in the dwelling unit is $130407 +in.representative_income 130410 Representative total house income in the dwelling unit is $130410 +in.representative_income 130413 Representative total house income in the dwelling unit is $130413 +in.representative_income 130424 Representative total house income in the dwelling unit is $130424 +in.representative_income 130427 Representative total house income in the dwelling unit is $130427 +in.representative_income 130435 Representative total house income in the dwelling unit is $130435 +in.representative_income 130445 Representative total house income in the dwelling unit is $130445 +in.representative_income 130455 Representative total house income in the dwelling unit is $130455 +in.representative_income 130467 Representative total house income in the dwelling unit is $130467 +in.representative_income 130476 Representative total house income in the dwelling unit is $130476 +in.representative_income 130479 Representative total house income in the dwelling unit is $130479 +in.representative_income 130487 Representative total house income in the dwelling unit is $130487 +in.representative_income 130488 Representative total house income in the dwelling unit is $130488 +in.representative_income 130497 Representative total house income in the dwelling unit is $130497 +in.representative_income 130508 Representative total house income in the dwelling unit is $130508 +in.representative_income 130511 Representative total house income in the dwelling unit is $130511 +in.representative_income 130521 Representative total house income in the dwelling unit is $130521 +in.representative_income 130531 Representative total house income in the dwelling unit is $130531 +in.representative_income 130532 Representative total house income in the dwelling unit is $130532 +in.representative_income 130539 Representative total house income in the dwelling unit is $130539 +in.representative_income 130543 Representative total house income in the dwelling unit is $130543 +in.representative_income 130546 Representative total house income in the dwelling unit is $130546 +in.representative_income 130550 Representative total house income in the dwelling unit is $130550 +in.representative_income 130551 Representative total house income in the dwelling unit is $130551 +in.representative_income 130561 Representative total house income in the dwelling unit is $130561 +in.representative_income 130575 Representative total house income in the dwelling unit is $130575 +in.representative_income 130582 Representative total house income in the dwelling unit is $130582 +in.representative_income 130584 Representative total house income in the dwelling unit is $130584 +in.representative_income 130585 Representative total house income in the dwelling unit is $130585 +in.representative_income 130612 Representative total house income in the dwelling unit is $130612 +in.representative_income 130613 Representative total house income in the dwelling unit is $130613 +in.representative_income 130618 Representative total house income in the dwelling unit is $130618 +in.representative_income 130629 Representative total house income in the dwelling unit is $130629 +in.representative_income 130633 Representative total house income in the dwelling unit is $130633 +in.representative_income 130634 Representative total house income in the dwelling unit is $130634 +in.representative_income 130639 Representative total house income in the dwelling unit is $130639 +in.representative_income 130641 Representative total house income in the dwelling unit is $130641 +in.representative_income 130642 Representative total house income in the dwelling unit is $130642 +in.representative_income 130644 Representative total house income in the dwelling unit is $130644 +in.representative_income 130645 Representative total house income in the dwelling unit is $130645 +in.representative_income 130666 Representative total house income in the dwelling unit is $130666 +in.representative_income 130671 Representative total house income in the dwelling unit is $130671 +in.representative_income 130672 Representative total house income in the dwelling unit is $130672 +in.representative_income 130683 Representative total house income in the dwelling unit is $130683 +in.representative_income 130685 Representative total house income in the dwelling unit is $130685 +in.representative_income 130692 Representative total house income in the dwelling unit is $130692 +in.representative_income 130697 Representative total house income in the dwelling unit is $130697 +in.representative_income 130703 Representative total house income in the dwelling unit is $130703 +in.representative_income 130704 Representative total house income in the dwelling unit is $130704 +in.representative_income 130713 Representative total house income in the dwelling unit is $130713 +in.representative_income 130716 Representative total house income in the dwelling unit is $130716 +in.representative_income 130726 Representative total house income in the dwelling unit is $130726 +in.representative_income 130737 Representative total house income in the dwelling unit is $130737 +in.representative_income 130743 Representative total house income in the dwelling unit is $130743 +in.representative_income 130746 Representative total house income in the dwelling unit is $130746 +in.representative_income 130753 Representative total house income in the dwelling unit is $130753 +in.representative_income 130769 Representative total house income in the dwelling unit is $130769 +in.representative_income 130771 Representative total house income in the dwelling unit is $130771 +in.representative_income 130778 Representative total house income in the dwelling unit is $130778 +in.representative_income 130782 Representative total house income in the dwelling unit is $130782 +in.representative_income 130788 Representative total house income in the dwelling unit is $130788 +in.representative_income 130789 Representative total house income in the dwelling unit is $130789 +in.representative_income 130791 Representative total house income in the dwelling unit is $130791 +in.representative_income 130792 Representative total house income in the dwelling unit is $130792 +in.representative_income 130795 Representative total house income in the dwelling unit is $130795 +in.representative_income 130798 Representative total house income in the dwelling unit is $130798 +in.representative_income 130800 Representative total house income in the dwelling unit is $130800 +in.representative_income 130802 Representative total house income in the dwelling unit is $130802 +in.representative_income 130809 Representative total house income in the dwelling unit is $130809 +in.representative_income 130814 Representative total house income in the dwelling unit is $130814 +in.representative_income 130823 Representative total house income in the dwelling unit is $130823 +in.representative_income 130824 Representative total house income in the dwelling unit is $130824 +in.representative_income 130839 Representative total house income in the dwelling unit is $130839 +in.representative_income 130844 Representative total house income in the dwelling unit is $130844 +in.representative_income 130845 Representative total house income in the dwelling unit is $130845 +in.representative_income 130853 Representative total house income in the dwelling unit is $130853 +in.representative_income 130862 Representative total house income in the dwelling unit is $130862 +in.representative_income 130866 Representative total house income in the dwelling unit is $130866 +in.representative_income 130876 Representative total house income in the dwelling unit is $130876 +in.representative_income 130886 Representative total house income in the dwelling unit is $130886 +in.representative_income 130887 Representative total house income in the dwelling unit is $130887 +in.representative_income 130891 Representative total house income in the dwelling unit is $130891 +in.representative_income 130899 Representative total house income in the dwelling unit is $130899 +in.representative_income 130905 Representative total house income in the dwelling unit is $130905 +in.representative_income 130915 Representative total house income in the dwelling unit is $130915 +in.representative_income 130930 Representative total house income in the dwelling unit is $130930 +in.representative_income 130931 Representative total house income in the dwelling unit is $130931 +in.representative_income 130935 Representative total house income in the dwelling unit is $130935 +in.representative_income 130939 Representative total house income in the dwelling unit is $130939 +in.representative_income 130953 Representative total house income in the dwelling unit is $130953 +in.representative_income 130954 Representative total house income in the dwelling unit is $130954 +in.representative_income 130961 Representative total house income in the dwelling unit is $130961 +in.representative_income 130965 Representative total house income in the dwelling unit is $130965 +in.representative_income 130982 Representative total house income in the dwelling unit is $130982 +in.representative_income 130994 Representative total house income in the dwelling unit is $130994 +in.representative_income 131005 Representative total house income in the dwelling unit is $131005 +in.representative_income 131007 Representative total house income in the dwelling unit is $131007 +in.representative_income 131011 Representative total house income in the dwelling unit is $131011 +in.representative_income 131015 Representative total house income in the dwelling unit is $131015 +in.representative_income 131016 Representative total house income in the dwelling unit is $131016 +in.representative_income 131036 Representative total house income in the dwelling unit is $131036 +in.representative_income 131045 Representative total house income in the dwelling unit is $131045 +in.representative_income 131046 Representative total house income in the dwelling unit is $131046 +in.representative_income 131047 Representative total house income in the dwelling unit is $131047 +in.representative_income 131061 Representative total house income in the dwelling unit is $131061 +in.representative_income 131062 Representative total house income in the dwelling unit is $131062 +in.representative_income 131066 Representative total house income in the dwelling unit is $131066 +in.representative_income 131068 Representative total house income in the dwelling unit is $131068 +in.representative_income 131076 Representative total house income in the dwelling unit is $131076 +in.representative_income 131077 Representative total house income in the dwelling unit is $131077 +in.representative_income 131088 Representative total house income in the dwelling unit is $131088 +in.representative_income 131098 Representative total house income in the dwelling unit is $131098 +in.representative_income 131108 Representative total house income in the dwelling unit is $131108 +in.representative_income 131111 Representative total house income in the dwelling unit is $131111 +in.representative_income 131117 Representative total house income in the dwelling unit is $131117 +in.representative_income 131119 Representative total house income in the dwelling unit is $131119 +in.representative_income 131127 Representative total house income in the dwelling unit is $131127 +in.representative_income 131139 Representative total house income in the dwelling unit is $131139 +in.representative_income 131144 Representative total house income in the dwelling unit is $131144 +in.representative_income 131149 Representative total house income in the dwelling unit is $131149 +in.representative_income 131157 Representative total house income in the dwelling unit is $131157 +in.representative_income 131169 Representative total house income in the dwelling unit is $131169 +in.representative_income 131170 Representative total house income in the dwelling unit is $131170 +in.representative_income 131176 Representative total house income in the dwelling unit is $131176 +in.representative_income 131181 Representative total house income in the dwelling unit is $131181 +in.representative_income 131191 Representative total house income in the dwelling unit is $131191 +in.representative_income 131193 Representative total house income in the dwelling unit is $131193 +in.representative_income 131197 Representative total house income in the dwelling unit is $131197 +in.representative_income 131201 Representative total house income in the dwelling unit is $131201 +in.representative_income 131214 Representative total house income in the dwelling unit is $131214 +in.representative_income 131218 Representative total house income in the dwelling unit is $131218 +in.representative_income 131229 Representative total house income in the dwelling unit is $131229 +in.representative_income 131245 Representative total house income in the dwelling unit is $131245 +in.representative_income 131246 Representative total house income in the dwelling unit is $131246 +in.representative_income 131248 Representative total house income in the dwelling unit is $131248 +in.representative_income 131250 Representative total house income in the dwelling unit is $131250 +in.representative_income 131277 Representative total house income in the dwelling unit is $131277 +in.representative_income 131283 Representative total house income in the dwelling unit is $131283 +in.representative_income 131299 Representative total house income in the dwelling unit is $131299 +in.representative_income 131303 Representative total house income in the dwelling unit is $131303 +in.representative_income 131319 Representative total house income in the dwelling unit is $131319 +in.representative_income 131323 Representative total house income in the dwelling unit is $131323 +in.representative_income 131339 Representative total house income in the dwelling unit is $131339 +in.representative_income 131340 Representative total house income in the dwelling unit is $131340 +in.representative_income 131349 Representative total house income in the dwelling unit is $131349 +in.representative_income 131359 Representative total house income in the dwelling unit is $131359 +in.representative_income 131369 Representative total house income in the dwelling unit is $131369 +in.representative_income 131370 Representative total house income in the dwelling unit is $131370 +in.representative_income 131385 Representative total house income in the dwelling unit is $131385 +in.representative_income 131389 Representative total house income in the dwelling unit is $131389 +in.representative_income 131390 Representative total house income in the dwelling unit is $131390 +in.representative_income 131400 Representative total house income in the dwelling unit is $131400 +in.representative_income 131404 Representative total house income in the dwelling unit is $131404 +in.representative_income 131407 Representative total house income in the dwelling unit is $131407 +in.representative_income 131410 Representative total house income in the dwelling unit is $131410 +in.representative_income 131420 Representative total house income in the dwelling unit is $131420 +in.representative_income 131424 Representative total house income in the dwelling unit is $131424 +in.representative_income 131425 Representative total house income in the dwelling unit is $131425 +in.representative_income 131430 Representative total house income in the dwelling unit is $131430 +in.representative_income 131440 Representative total house income in the dwelling unit is $131440 +in.representative_income 131446 Representative total house income in the dwelling unit is $131446 +in.representative_income 131450 Representative total house income in the dwelling unit is $131450 +in.representative_income 131458 Representative total house income in the dwelling unit is $131458 +in.representative_income 131461 Representative total house income in the dwelling unit is $131461 +in.representative_income 131470 Representative total house income in the dwelling unit is $131470 +in.representative_income 131471 Representative total house income in the dwelling unit is $131471 +in.representative_income 131493 Representative total house income in the dwelling unit is $131493 +in.representative_income 131497 Representative total house income in the dwelling unit is $131497 +in.representative_income 131505 Representative total house income in the dwelling unit is $131505 +in.representative_income 131508 Representative total house income in the dwelling unit is $131508 +in.representative_income 131509 Representative total house income in the dwelling unit is $131509 +in.representative_income 131510 Representative total house income in the dwelling unit is $131510 +in.representative_income 131516 Representative total house income in the dwelling unit is $131516 +in.representative_income 131521 Representative total house income in the dwelling unit is $131521 +in.representative_income 131536 Representative total house income in the dwelling unit is $131536 +in.representative_income 131552 Representative total house income in the dwelling unit is $131552 +in.representative_income 131557 Representative total house income in the dwelling unit is $131557 +in.representative_income 131572 Representative total house income in the dwelling unit is $131572 +in.representative_income 131592 Representative total house income in the dwelling unit is $131592 +in.representative_income 131601 Representative total house income in the dwelling unit is $131601 +in.representative_income 131602 Representative total house income in the dwelling unit is $131602 +in.representative_income 131605 Representative total house income in the dwelling unit is $131605 +in.representative_income 131612 Representative total house income in the dwelling unit is $131612 +in.representative_income 131613 Representative total house income in the dwelling unit is $131613 +in.representative_income 131614 Representative total house income in the dwelling unit is $131614 +in.representative_income 131622 Representative total house income in the dwelling unit is $131622 +in.representative_income 131633 Representative total house income in the dwelling unit is $131633 +in.representative_income 131652 Representative total house income in the dwelling unit is $131652 +in.representative_income 131665 Representative total house income in the dwelling unit is $131665 +in.representative_income 131666 Representative total house income in the dwelling unit is $131666 +in.representative_income 131683 Representative total house income in the dwelling unit is $131683 +in.representative_income 131693 Representative total house income in the dwelling unit is $131693 +in.representative_income 131709 Representative total house income in the dwelling unit is $131709 +in.representative_income 131712 Representative total house income in the dwelling unit is $131712 +in.representative_income 131717 Representative total house income in the dwelling unit is $131717 +in.representative_income 131721 Representative total house income in the dwelling unit is $131721 +in.representative_income 131723 Representative total house income in the dwelling unit is $131723 +in.representative_income 131755 Representative total house income in the dwelling unit is $131755 +in.representative_income 131766 Representative total house income in the dwelling unit is $131766 +in.representative_income 131767 Representative total house income in the dwelling unit is $131767 +in.representative_income 131768 Representative total house income in the dwelling unit is $131768 +in.representative_income 131799 Representative total house income in the dwelling unit is $131799 +in.representative_income 131817 Representative total house income in the dwelling unit is $131817 +in.representative_income 131818 Representative total house income in the dwelling unit is $131818 +in.representative_income 131819 Representative total house income in the dwelling unit is $131819 +in.representative_income 131820 Representative total house income in the dwelling unit is $131820 +in.representative_income 131824 Representative total house income in the dwelling unit is $131824 +in.representative_income 131826 Representative total house income in the dwelling unit is $131826 +in.representative_income 131847 Representative total house income in the dwelling unit is $131847 +in.representative_income 131857 Representative total house income in the dwelling unit is $131857 +in.representative_income 131860 Representative total house income in the dwelling unit is $131860 +in.representative_income 131868 Representative total house income in the dwelling unit is $131868 +in.representative_income 131871 Representative total house income in the dwelling unit is $131871 +in.representative_income 131874 Representative total house income in the dwelling unit is $131874 +in.representative_income 131888 Representative total house income in the dwelling unit is $131888 +in.representative_income 131922 Representative total house income in the dwelling unit is $131922 +in.representative_income 131925 Representative total house income in the dwelling unit is $131925 +in.representative_income 131926 Representative total house income in the dwelling unit is $131926 +in.representative_income 131927 Representative total house income in the dwelling unit is $131927 +in.representative_income 131930 Representative total house income in the dwelling unit is $131930 +in.representative_income 131931 Representative total house income in the dwelling unit is $131931 +in.representative_income 131938 Representative total house income in the dwelling unit is $131938 +in.representative_income 131952 Representative total house income in the dwelling unit is $131952 +in.representative_income 131983 Representative total house income in the dwelling unit is $131983 +in.representative_income 131991 Representative total house income in the dwelling unit is $131991 +in.representative_income 132026 Representative total house income in the dwelling unit is $132026 +in.representative_income 132034 Representative total house income in the dwelling unit is $132034 +in.representative_income 132035 Representative total house income in the dwelling unit is $132035 +in.representative_income 132036 Representative total house income in the dwelling unit is $132036 +in.representative_income 132037 Representative total house income in the dwelling unit is $132037 +in.representative_income 132046 Representative total house income in the dwelling unit is $132046 +in.representative_income 132047 Representative total house income in the dwelling unit is $132047 +in.representative_income 132055 Representative total house income in the dwelling unit is $132055 +in.representative_income 132077 Representative total house income in the dwelling unit is $132077 +in.representative_income 132078 Representative total house income in the dwelling unit is $132078 +in.representative_income 132087 Representative total house income in the dwelling unit is $132087 +in.representative_income 132088 Representative total house income in the dwelling unit is $132088 +in.representative_income 132108 Representative total house income in the dwelling unit is $132108 +in.representative_income 132109 Representative total house income in the dwelling unit is $132109 +in.representative_income 132117 Representative total house income in the dwelling unit is $132117 +in.representative_income 132121 Representative total house income in the dwelling unit is $132121 +in.representative_income 132127 Representative total house income in the dwelling unit is $132127 +in.representative_income 132129 Representative total house income in the dwelling unit is $132129 +in.representative_income 132131 Representative total house income in the dwelling unit is $132131 +in.representative_income 132139 Representative total house income in the dwelling unit is $132139 +in.representative_income 132141 Representative total house income in the dwelling unit is $132141 +in.representative_income 132142 Representative total house income in the dwelling unit is $132142 +in.representative_income 132157 Representative total house income in the dwelling unit is $132157 +in.representative_income 132177 Representative total house income in the dwelling unit is $132177 +in.representative_income 132188 Representative total house income in the dwelling unit is $132188 +in.representative_income 132196 Representative total house income in the dwelling unit is $132196 +in.representative_income 132199 Representative total house income in the dwelling unit is $132199 +in.representative_income 132206 Representative total house income in the dwelling unit is $132206 +in.representative_income 132228 Representative total house income in the dwelling unit is $132228 +in.representative_income 132232 Representative total house income in the dwelling unit is $132232 +in.representative_income 132247 Representative total house income in the dwelling unit is $132247 +in.representative_income 132249 Representative total house income in the dwelling unit is $132249 +in.representative_income 132250 Representative total house income in the dwelling unit is $132250 +in.representative_income 132260 Representative total house income in the dwelling unit is $132260 +in.representative_income 132271 Representative total house income in the dwelling unit is $132271 +in.representative_income 132284 Representative total house income in the dwelling unit is $132284 +in.representative_income 132302 Representative total house income in the dwelling unit is $132302 +in.representative_income 132320 Representative total house income in the dwelling unit is $132320 +in.representative_income 132329 Representative total house income in the dwelling unit is $132329 +in.representative_income 132333 Representative total house income in the dwelling unit is $132333 +in.representative_income 132336 Representative total house income in the dwelling unit is $132336 +in.representative_income 132339 Representative total house income in the dwelling unit is $132339 +in.representative_income 132354 Representative total house income in the dwelling unit is $132354 +in.representative_income 132357 Representative total house income in the dwelling unit is $132357 +in.representative_income 132363 Representative total house income in the dwelling unit is $132363 +in.representative_income 132381 Representative total house income in the dwelling unit is $132381 +in.representative_income 132410 Representative total house income in the dwelling unit is $132410 +in.representative_income 132430 Representative total house income in the dwelling unit is $132430 +in.representative_income 132438 Representative total house income in the dwelling unit is $132438 +in.representative_income 132450 Representative total house income in the dwelling unit is $132450 +in.representative_income 132459 Representative total house income in the dwelling unit is $132459 +in.representative_income 132464 Representative total house income in the dwelling unit is $132464 +in.representative_income 132470 Representative total house income in the dwelling unit is $132470 +in.representative_income 132481 Representative total house income in the dwelling unit is $132481 +in.representative_income 132490 Representative total house income in the dwelling unit is $132490 +in.representative_income 132505 Representative total house income in the dwelling unit is $132505 +in.representative_income 132531 Representative total house income in the dwelling unit is $132531 +in.representative_income 132541 Representative total house income in the dwelling unit is $132541 +in.representative_income 132554 Representative total house income in the dwelling unit is $132554 +in.representative_income 132564 Representative total house income in the dwelling unit is $132564 +in.representative_income 132571 Representative total house income in the dwelling unit is $132571 +in.representative_income 132573 Representative total house income in the dwelling unit is $132573 +in.representative_income 132604 Representative total house income in the dwelling unit is $132604 +in.representative_income 132627 Representative total house income in the dwelling unit is $132627 +in.representative_income 132628 Representative total house income in the dwelling unit is $132628 +in.representative_income 132632 Representative total house income in the dwelling unit is $132632 +in.representative_income 132645 Representative total house income in the dwelling unit is $132645 +in.representative_income 132651 Representative total house income in the dwelling unit is $132651 +in.representative_income 132652 Representative total house income in the dwelling unit is $132652 +in.representative_income 132667 Representative total house income in the dwelling unit is $132667 +in.representative_income 132669 Representative total house income in the dwelling unit is $132669 +in.representative_income 132678 Representative total house income in the dwelling unit is $132678 +in.representative_income 132682 Representative total house income in the dwelling unit is $132682 +in.representative_income 132696 Representative total house income in the dwelling unit is $132696 +in.representative_income 132725 Representative total house income in the dwelling unit is $132725 +in.representative_income 132733 Representative total house income in the dwelling unit is $132733 +in.representative_income 132736 Representative total house income in the dwelling unit is $132736 +in.representative_income 132748 Representative total house income in the dwelling unit is $132748 +in.representative_income 132753 Representative total house income in the dwelling unit is $132753 +in.representative_income 132758 Representative total house income in the dwelling unit is $132758 +in.representative_income 132775 Representative total house income in the dwelling unit is $132775 +in.representative_income 132786 Representative total house income in the dwelling unit is $132786 +in.representative_income 132790 Representative total house income in the dwelling unit is $132790 +in.representative_income 132828 Representative total house income in the dwelling unit is $132828 +in.representative_income 132834 Representative total house income in the dwelling unit is $132834 +in.representative_income 132851 Representative total house income in the dwelling unit is $132851 +in.representative_income 132866 Representative total house income in the dwelling unit is $132866 +in.representative_income 132880 Representative total house income in the dwelling unit is $132880 +in.representative_income 132893 Representative total house income in the dwelling unit is $132893 +in.representative_income 132898 Representative total house income in the dwelling unit is $132898 +in.representative_income 132902 Representative total house income in the dwelling unit is $132902 +in.representative_income 132910 Representative total house income in the dwelling unit is $132910 +in.representative_income 132917 Representative total house income in the dwelling unit is $132917 +in.representative_income 132920 Representative total house income in the dwelling unit is $132920 +in.representative_income 132935 Representative total house income in the dwelling unit is $132935 +in.representative_income 132954 Representative total house income in the dwelling unit is $132954 +in.representative_income 132978 Representative total house income in the dwelling unit is $132978 +in.representative_income 132986 Representative total house income in the dwelling unit is $132986 +in.representative_income 133001 Representative total house income in the dwelling unit is $133001 +in.representative_income 133006 Representative total house income in the dwelling unit is $133006 +in.representative_income 133028 Representative total house income in the dwelling unit is $133028 +in.representative_income 133036 Representative total house income in the dwelling unit is $133036 +in.representative_income 133057 Representative total house income in the dwelling unit is $133057 +in.representative_income 133086 Representative total house income in the dwelling unit is $133086 +in.representative_income 133092 Representative total house income in the dwelling unit is $133092 +in.representative_income 133099 Representative total house income in the dwelling unit is $133099 +in.representative_income 133107 Representative total house income in the dwelling unit is $133107 +in.representative_income 133108 Representative total house income in the dwelling unit is $133108 +in.representative_income 133114 Representative total house income in the dwelling unit is $133114 +in.representative_income 133119 Representative total house income in the dwelling unit is $133119 +in.representative_income 133133 Representative total house income in the dwelling unit is $133133 +in.representative_income 133137 Representative total house income in the dwelling unit is $133137 +in.representative_income 133154 Representative total house income in the dwelling unit is $133154 +in.representative_income 133160 Representative total house income in the dwelling unit is $133160 +in.representative_income 133197 Representative total house income in the dwelling unit is $133197 +in.representative_income 133204 Representative total house income in the dwelling unit is $133204 +in.representative_income 133211 Representative total house income in the dwelling unit is $133211 +in.representative_income 133215 Representative total house income in the dwelling unit is $133215 +in.representative_income 133222 Representative total house income in the dwelling unit is $133222 +in.representative_income 133238 Representative total house income in the dwelling unit is $133238 +in.representative_income 133241 Representative total house income in the dwelling unit is $133241 +in.representative_income 133264 Representative total house income in the dwelling unit is $133264 +in.representative_income 133276 Representative total house income in the dwelling unit is $133276 +in.representative_income 133297 Representative total house income in the dwelling unit is $133297 +in.representative_income 133302 Representative total house income in the dwelling unit is $133302 +in.representative_income 133315 Representative total house income in the dwelling unit is $133315 +in.representative_income 133322 Representative total house income in the dwelling unit is $133322 +in.representative_income 133330 Representative total house income in the dwelling unit is $133330 +in.representative_income 133339 Representative total house income in the dwelling unit is $133339 +in.representative_income 133344 Representative total house income in the dwelling unit is $133344 +in.representative_income 133365 Representative total house income in the dwelling unit is $133365 +in.representative_income 133367 Representative total house income in the dwelling unit is $133367 +in.representative_income 133400 Representative total house income in the dwelling unit is $133400 +in.representative_income 133407 Representative total house income in the dwelling unit is $133407 +in.representative_income 133429 Representative total house income in the dwelling unit is $133429 +in.representative_income 133430 Representative total house income in the dwelling unit is $133430 +in.representative_income 133438 Representative total house income in the dwelling unit is $133438 +in.representative_income 133440 Representative total house income in the dwelling unit is $133440 +in.representative_income 133460 Representative total house income in the dwelling unit is $133460 +in.representative_income 133462 Representative total house income in the dwelling unit is $133462 +in.representative_income 133469 Representative total house income in the dwelling unit is $133469 +in.representative_income 133491 Representative total house income in the dwelling unit is $133491 +in.representative_income 133503 Representative total house income in the dwelling unit is $133503 +in.representative_income 133511 Representative total house income in the dwelling unit is $133511 +in.representative_income 133513 Representative total house income in the dwelling unit is $133513 +in.representative_income 133535 Representative total house income in the dwelling unit is $133535 +in.representative_income 133537 Representative total house income in the dwelling unit is $133537 +in.representative_income 133541 Representative total house income in the dwelling unit is $133541 +in.representative_income 133546 Representative total house income in the dwelling unit is $133546 +in.representative_income 133553 Representative total house income in the dwelling unit is $133553 +in.representative_income 133573 Representative total house income in the dwelling unit is $133573 +in.representative_income 133583 Representative total house income in the dwelling unit is $133583 +in.representative_income 133619 Representative total house income in the dwelling unit is $133619 +in.representative_income 133623 Representative total house income in the dwelling unit is $133623 +in.representative_income 133624 Representative total house income in the dwelling unit is $133624 +in.representative_income 133640 Representative total house income in the dwelling unit is $133640 +in.representative_income 133642 Representative total house income in the dwelling unit is $133642 +in.representative_income 133644 Representative total house income in the dwelling unit is $133644 +in.representative_income 133647 Representative total house income in the dwelling unit is $133647 +in.representative_income 133652 Representative total house income in the dwelling unit is $133652 +in.representative_income 133654 Representative total house income in the dwelling unit is $133654 +in.representative_income 133676 Representative total house income in the dwelling unit is $133676 +in.representative_income 133703 Representative total house income in the dwelling unit is $133703 +in.representative_income 133713 Representative total house income in the dwelling unit is $133713 +in.representative_income 133724 Representative total house income in the dwelling unit is $133724 +in.representative_income 133743 Representative total house income in the dwelling unit is $133743 +in.representative_income 133751 Representative total house income in the dwelling unit is $133751 +in.representative_income 133762 Representative total house income in the dwelling unit is $133762 +in.representative_income 133774 Representative total house income in the dwelling unit is $133774 +in.representative_income 133776 Representative total house income in the dwelling unit is $133776 +in.representative_income 133779 Representative total house income in the dwelling unit is $133779 +in.representative_income 133784 Representative total house income in the dwelling unit is $133784 +in.representative_income 133809 Representative total house income in the dwelling unit is $133809 +in.representative_income 133830 Representative total house income in the dwelling unit is $133830 +in.representative_income 133844 Representative total house income in the dwelling unit is $133844 +in.representative_income 133859 Representative total house income in the dwelling unit is $133859 +in.representative_income 133870 Representative total house income in the dwelling unit is $133870 +in.representative_income 133883 Representative total house income in the dwelling unit is $133883 +in.representative_income 133885 Representative total house income in the dwelling unit is $133885 +in.representative_income 133895 Representative total house income in the dwelling unit is $133895 +in.representative_income 133925 Representative total house income in the dwelling unit is $133925 +in.representative_income 133935 Representative total house income in the dwelling unit is $133935 +in.representative_income 133939 Representative total house income in the dwelling unit is $133939 +in.representative_income 133945 Representative total house income in the dwelling unit is $133945 +in.representative_income 133956 Representative total house income in the dwelling unit is $133956 +in.representative_income 133967 Representative total house income in the dwelling unit is $133967 +in.representative_income 133978 Representative total house income in the dwelling unit is $133978 +in.representative_income 133986 Representative total house income in the dwelling unit is $133986 +in.representative_income 134040 Representative total house income in the dwelling unit is $134040 +in.representative_income 134046 Representative total house income in the dwelling unit is $134046 +in.representative_income 134086 Representative total house income in the dwelling unit is $134086 +in.representative_income 134088 Representative total house income in the dwelling unit is $134088 +in.representative_income 134100 Representative total house income in the dwelling unit is $134100 +in.representative_income 134140 Representative total house income in the dwelling unit is $134140 +in.representative_income 134145 Representative total house income in the dwelling unit is $134145 +in.representative_income 134172 Representative total house income in the dwelling unit is $134172 +in.representative_income 134181 Representative total house income in the dwelling unit is $134181 +in.representative_income 134182 Representative total house income in the dwelling unit is $134182 +in.representative_income 134184 Representative total house income in the dwelling unit is $134184 +in.representative_income 134186 Representative total house income in the dwelling unit is $134186 +in.representative_income 134192 Representative total house income in the dwelling unit is $134192 +in.representative_income 134194 Representative total house income in the dwelling unit is $134194 +in.representative_income 134198 Representative total house income in the dwelling unit is $134198 +in.representative_income 134203 Representative total house income in the dwelling unit is $134203 +in.representative_income 134205 Representative total house income in the dwelling unit is $134205 +in.representative_income 134214 Representative total house income in the dwelling unit is $134214 +in.representative_income 134219 Representative total house income in the dwelling unit is $134219 +in.representative_income 134223 Representative total house income in the dwelling unit is $134223 +in.representative_income 134235 Representative total house income in the dwelling unit is $134235 +in.representative_income 134243 Representative total house income in the dwelling unit is $134243 +in.representative_income 134248 Representative total house income in the dwelling unit is $134248 +in.representative_income 134252 Representative total house income in the dwelling unit is $134252 +in.representative_income 134278 Representative total house income in the dwelling unit is $134278 +in.representative_income 134288 Representative total house income in the dwelling unit is $134288 +in.representative_income 134289 Representative total house income in the dwelling unit is $134289 +in.representative_income 134290 Representative total house income in the dwelling unit is $134290 +in.representative_income 134295 Representative total house income in the dwelling unit is $134295 +in.representative_income 134337 Representative total house income in the dwelling unit is $134337 +in.representative_income 134347 Representative total house income in the dwelling unit is $134347 +in.representative_income 134349 Representative total house income in the dwelling unit is $134349 +in.representative_income 134357 Representative total house income in the dwelling unit is $134357 +in.representative_income 134396 Representative total house income in the dwelling unit is $134396 +in.representative_income 134398 Representative total house income in the dwelling unit is $134398 +in.representative_income 134400 Representative total house income in the dwelling unit is $134400 +in.representative_income 134409 Representative total house income in the dwelling unit is $134409 +in.representative_income 134411 Representative total house income in the dwelling unit is $134411 +in.representative_income 134440 Representative total house income in the dwelling unit is $134440 +in.representative_income 134450 Representative total house income in the dwelling unit is $134450 +in.representative_income 134462 Representative total house income in the dwelling unit is $134462 +in.representative_income 134502 Representative total house income in the dwelling unit is $134502 +in.representative_income 134503 Representative total house income in the dwelling unit is $134503 +in.representative_income 134519 Representative total house income in the dwelling unit is $134519 +in.representative_income 134551 Representative total house income in the dwelling unit is $134551 +in.representative_income 134568 Representative total house income in the dwelling unit is $134568 +in.representative_income 134576 Representative total house income in the dwelling unit is $134576 +in.representative_income 134589 Representative total house income in the dwelling unit is $134589 +in.representative_income 134604 Representative total house income in the dwelling unit is $134604 +in.representative_income 134611 Representative total house income in the dwelling unit is $134611 +in.representative_income 134627 Representative total house income in the dwelling unit is $134627 +in.representative_income 134652 Representative total house income in the dwelling unit is $134652 +in.representative_income 134673 Representative total house income in the dwelling unit is $134673 +in.representative_income 134707 Representative total house income in the dwelling unit is $134707 +in.representative_income 134713 Representative total house income in the dwelling unit is $134713 +in.representative_income 134718 Representative total house income in the dwelling unit is $134718 +in.representative_income 134729 Representative total house income in the dwelling unit is $134729 +in.representative_income 134734 Representative total house income in the dwelling unit is $134734 +in.representative_income 134753 Representative total house income in the dwelling unit is $134753 +in.representative_income 134768 Representative total house income in the dwelling unit is $134768 +in.representative_income 134769 Representative total house income in the dwelling unit is $134769 +in.representative_income 134778 Representative total house income in the dwelling unit is $134778 +in.representative_income 134788 Representative total house income in the dwelling unit is $134788 +in.representative_income 134811 Representative total house income in the dwelling unit is $134811 +in.representative_income 134825 Representative total house income in the dwelling unit is $134825 +in.representative_income 134842 Representative total house income in the dwelling unit is $134842 +in.representative_income 134854 Representative total house income in the dwelling unit is $134854 +in.representative_income 134885 Representative total house income in the dwelling unit is $134885 +in.representative_income 134911 Representative total house income in the dwelling unit is $134911 +in.representative_income 134914 Representative total house income in the dwelling unit is $134914 +in.representative_income 134932 Representative total house income in the dwelling unit is $134932 +in.representative_income 134950 Representative total house income in the dwelling unit is $134950 +in.representative_income 134955 Representative total house income in the dwelling unit is $134955 +in.representative_income 134972 Representative total house income in the dwelling unit is $134972 +in.representative_income 134990 Representative total house income in the dwelling unit is $134990 +in.representative_income 135017 Representative total house income in the dwelling unit is $135017 +in.representative_income 135029 Representative total house income in the dwelling unit is $135029 +in.representative_income 135040 Representative total house income in the dwelling unit is $135040 +in.representative_income 135056 Representative total house income in the dwelling unit is $135056 +in.representative_income 135058 Representative total house income in the dwelling unit is $135058 +in.representative_income 135059 Representative total house income in the dwelling unit is $135059 +in.representative_income 135064 Representative total house income in the dwelling unit is $135064 +in.representative_income 135070 Representative total house income in the dwelling unit is $135070 +in.representative_income 135072 Representative total house income in the dwelling unit is $135072 +in.representative_income 135081 Representative total house income in the dwelling unit is $135081 +in.representative_income 135095 Representative total house income in the dwelling unit is $135095 +in.representative_income 135120 Representative total house income in the dwelling unit is $135120 +in.representative_income 135157 Representative total house income in the dwelling unit is $135157 +in.representative_income 135167 Representative total house income in the dwelling unit is $135167 +in.representative_income 135200 Representative total house income in the dwelling unit is $135200 +in.representative_income 135211 Representative total house income in the dwelling unit is $135211 +in.representative_income 135221 Representative total house income in the dwelling unit is $135221 +in.representative_income 135222 Representative total house income in the dwelling unit is $135222 +in.representative_income 135223 Representative total house income in the dwelling unit is $135223 +in.representative_income 135233 Representative total house income in the dwelling unit is $135233 +in.representative_income 135254 Representative total house income in the dwelling unit is $135254 +in.representative_income 135255 Representative total house income in the dwelling unit is $135255 +in.representative_income 135258 Representative total house income in the dwelling unit is $135258 +in.representative_income 135275 Representative total house income in the dwelling unit is $135275 +in.representative_income 135276 Representative total house income in the dwelling unit is $135276 +in.representative_income 135306 Representative total house income in the dwelling unit is $135306 +in.representative_income 135319 Representative total house income in the dwelling unit is $135319 +in.representative_income 135326 Representative total house income in the dwelling unit is $135326 +in.representative_income 135348 Representative total house income in the dwelling unit is $135348 +in.representative_income 135359 Representative total house income in the dwelling unit is $135359 +in.representative_income 135383 Representative total house income in the dwelling unit is $135383 +in.representative_income 135411 Representative total house income in the dwelling unit is $135411 +in.representative_income 135430 Representative total house income in the dwelling unit is $135430 +in.representative_income 135460 Representative total house income in the dwelling unit is $135460 +in.representative_income 135469 Representative total house income in the dwelling unit is $135469 +in.representative_income 135480 Representative total house income in the dwelling unit is $135480 +in.representative_income 135491 Representative total house income in the dwelling unit is $135491 +in.representative_income 135517 Representative total house income in the dwelling unit is $135517 +in.representative_income 135523 Representative total house income in the dwelling unit is $135523 +in.representative_income 135533 Representative total house income in the dwelling unit is $135533 +in.representative_income 135545 Representative total house income in the dwelling unit is $135545 +in.representative_income 135561 Representative total house income in the dwelling unit is $135561 +in.representative_income 135566 Representative total house income in the dwelling unit is $135566 +in.representative_income 135569 Representative total house income in the dwelling unit is $135569 +in.representative_income 135599 Representative total house income in the dwelling unit is $135599 +in.representative_income 135623 Representative total house income in the dwelling unit is $135623 +in.representative_income 135636 Representative total house income in the dwelling unit is $135636 +in.representative_income 135662 Representative total house income in the dwelling unit is $135662 +in.representative_income 135664 Representative total house income in the dwelling unit is $135664 +in.representative_income 135675 Representative total house income in the dwelling unit is $135675 +in.representative_income 135707 Representative total house income in the dwelling unit is $135707 +in.representative_income 135728 Representative total house income in the dwelling unit is $135728 +in.representative_income 135763 Representative total house income in the dwelling unit is $135763 +in.representative_income 135792 Representative total house income in the dwelling unit is $135792 +in.representative_income 135822 Representative total house income in the dwelling unit is $135822 +in.representative_income 135833 Representative total house income in the dwelling unit is $135833 +in.representative_income 135844 Representative total house income in the dwelling unit is $135844 +in.representative_income 135852 Representative total house income in the dwelling unit is $135852 +in.representative_income 135864 Representative total house income in the dwelling unit is $135864 +in.representative_income 135865 Representative total house income in the dwelling unit is $135865 +in.representative_income 135895 Representative total house income in the dwelling unit is $135895 +in.representative_income 135898 Representative total house income in the dwelling unit is $135898 +in.representative_income 135924 Representative total house income in the dwelling unit is $135924 +in.representative_income 135938 Representative total house income in the dwelling unit is $135938 +in.representative_income 135966 Representative total house income in the dwelling unit is $135966 +in.representative_income 136006 Representative total house income in the dwelling unit is $136006 +in.representative_income 136031 Representative total house income in the dwelling unit is $136031 +in.representative_income 136044 Representative total house income in the dwelling unit is $136044 +in.representative_income 136049 Representative total house income in the dwelling unit is $136049 +in.representative_income 136054 Representative total house income in the dwelling unit is $136054 +in.representative_income 136060 Representative total house income in the dwelling unit is $136060 +in.representative_income 136113 Representative total house income in the dwelling unit is $136113 +in.representative_income 136139 Representative total house income in the dwelling unit is $136139 +in.representative_income 136150 Representative total house income in the dwelling unit is $136150 +in.representative_income 136152 Representative total house income in the dwelling unit is $136152 +in.representative_income 136193 Representative total house income in the dwelling unit is $136193 +in.representative_income 136221 Representative total house income in the dwelling unit is $136221 +in.representative_income 136233 Representative total house income in the dwelling unit is $136233 +in.representative_income 136247 Representative total house income in the dwelling unit is $136247 +in.representative_income 136254 Representative total house income in the dwelling unit is $136254 +in.representative_income 136255 Representative total house income in the dwelling unit is $136255 +in.representative_income 136269 Representative total house income in the dwelling unit is $136269 +in.representative_income 136328 Representative total house income in the dwelling unit is $136328 +in.representative_income 136333 Representative total house income in the dwelling unit is $136333 +in.representative_income 136334 Representative total house income in the dwelling unit is $136334 +in.representative_income 136355 Representative total house income in the dwelling unit is $136355 +in.representative_income 136361 Representative total house income in the dwelling unit is $136361 +in.representative_income 136370 Representative total house income in the dwelling unit is $136370 +in.representative_income 136380 Representative total house income in the dwelling unit is $136380 +in.representative_income 136389 Representative total house income in the dwelling unit is $136389 +in.representative_income 136413 Representative total house income in the dwelling unit is $136413 +in.representative_income 136435 Representative total house income in the dwelling unit is $136435 +in.representative_income 136461 Representative total house income in the dwelling unit is $136461 +in.representative_income 136463 Representative total house income in the dwelling unit is $136463 +in.representative_income 136466 Representative total house income in the dwelling unit is $136466 +in.representative_income 136471 Representative total house income in the dwelling unit is $136471 +in.representative_income 136521 Representative total house income in the dwelling unit is $136521 +in.representative_income 136542 Representative total house income in the dwelling unit is $136542 +in.representative_income 136564 Representative total house income in the dwelling unit is $136564 +in.representative_income 136571 Representative total house income in the dwelling unit is $136571 +in.representative_income 136572 Representative total house income in the dwelling unit is $136572 +in.representative_income 136587 Representative total house income in the dwelling unit is $136587 +in.representative_income 136597 Representative total house income in the dwelling unit is $136597 +in.representative_income 136650 Representative total house income in the dwelling unit is $136650 +in.representative_income 136668 Representative total house income in the dwelling unit is $136668 +in.representative_income 136677 Representative total house income in the dwelling unit is $136677 +in.representative_income 136680 Representative total house income in the dwelling unit is $136680 +in.representative_income 136709 Representative total house income in the dwelling unit is $136709 +in.representative_income 136734 Representative total house income in the dwelling unit is $136734 +in.representative_income 136758 Representative total house income in the dwelling unit is $136758 +in.representative_income 136770 Representative total house income in the dwelling unit is $136770 +in.representative_income 136774 Representative total house income in the dwelling unit is $136774 +in.representative_income 136783 Representative total house income in the dwelling unit is $136783 +in.representative_income 136788 Representative total house income in the dwelling unit is $136788 +in.representative_income 136793 Representative total house income in the dwelling unit is $136793 +in.representative_income 136822 Representative total house income in the dwelling unit is $136822 +in.representative_income 136865 Representative total house income in the dwelling unit is $136865 +in.representative_income 136875 Representative total house income in the dwelling unit is $136875 +in.representative_income 136888 Representative total house income in the dwelling unit is $136888 +in.representative_income 136930 Representative total house income in the dwelling unit is $136930 +in.representative_income 136973 Representative total house income in the dwelling unit is $136973 +in.representative_income 136976 Representative total house income in the dwelling unit is $136976 +in.representative_income 136977 Representative total house income in the dwelling unit is $136977 +in.representative_income 136997 Representative total house income in the dwelling unit is $136997 +in.representative_income 137004 Representative total house income in the dwelling unit is $137004 +in.representative_income 137037 Representative total house income in the dwelling unit is $137037 +in.representative_income 137077 Representative total house income in the dwelling unit is $137077 +in.representative_income 137079 Representative total house income in the dwelling unit is $137079 +in.representative_income 137080 Representative total house income in the dwelling unit is $137080 +in.representative_income 137099 Representative total house income in the dwelling unit is $137099 +in.representative_income 137140 Representative total house income in the dwelling unit is $137140 +in.representative_income 137183 Representative total house income in the dwelling unit is $137183 +in.representative_income 137187 Representative total house income in the dwelling unit is $137187 +in.representative_income 137188 Representative total house income in the dwelling unit is $137188 +in.representative_income 137219 Representative total house income in the dwelling unit is $137219 +in.representative_income 137222 Representative total house income in the dwelling unit is $137222 +in.representative_income 137257 Representative total house income in the dwelling unit is $137257 +in.representative_income 137279 Representative total house income in the dwelling unit is $137279 +in.representative_income 137294 Representative total house income in the dwelling unit is $137294 +in.representative_income 137309 Representative total house income in the dwelling unit is $137309 +in.representative_income 137327 Representative total house income in the dwelling unit is $137327 +in.representative_income 137380 Representative total house income in the dwelling unit is $137380 +in.representative_income 137389 Representative total house income in the dwelling unit is $137389 +in.representative_income 137402 Representative total house income in the dwelling unit is $137402 +in.representative_income 137416 Representative total house income in the dwelling unit is $137416 +in.representative_income 137423 Representative total house income in the dwelling unit is $137423 +in.representative_income 137481 Representative total house income in the dwelling unit is $137481 +in.representative_income 137492 Representative total house income in the dwelling unit is $137492 +in.representative_income 137509 Representative total house income in the dwelling unit is $137509 +in.representative_income 137521 Representative total house income in the dwelling unit is $137521 +in.representative_income 137531 Representative total house income in the dwelling unit is $137531 +in.representative_income 137544 Representative total house income in the dwelling unit is $137544 +in.representative_income 137566 Representative total house income in the dwelling unit is $137566 +in.representative_income 137573 Representative total house income in the dwelling unit is $137573 +in.representative_income 137596 Representative total house income in the dwelling unit is $137596 +in.representative_income 137598 Representative total house income in the dwelling unit is $137598 +in.representative_income 137632 Representative total house income in the dwelling unit is $137632 +in.representative_income 137663 Representative total house income in the dwelling unit is $137663 +in.representative_income 137674 Representative total house income in the dwelling unit is $137674 +in.representative_income 137683 Representative total house income in the dwelling unit is $137683 +in.representative_income 137699 Representative total house income in the dwelling unit is $137699 +in.representative_income 137731 Representative total house income in the dwelling unit is $137731 +in.representative_income 137760 Representative total house income in the dwelling unit is $137760 +in.representative_income 137792 Representative total house income in the dwelling unit is $137792 +in.representative_income 137795 Representative total house income in the dwelling unit is $137795 +in.representative_income 137802 Representative total house income in the dwelling unit is $137802 +in.representative_income 137831 Representative total house income in the dwelling unit is $137831 +in.representative_income 137868 Representative total house income in the dwelling unit is $137868 +in.representative_income 137879 Representative total house income in the dwelling unit is $137879 +in.representative_income 137938 Representative total house income in the dwelling unit is $137938 +in.representative_income 137942 Representative total house income in the dwelling unit is $137942 +in.representative_income 137970 Representative total house income in the dwelling unit is $137970 +in.representative_income 137986 Representative total house income in the dwelling unit is $137986 +in.representative_income 138046 Representative total house income in the dwelling unit is $138046 +in.representative_income 138048 Representative total house income in the dwelling unit is $138048 +in.representative_income 138084 Representative total house income in the dwelling unit is $138084 +in.representative_income 138087 Representative total house income in the dwelling unit is $138087 +in.representative_income 138111 Representative total house income in the dwelling unit is $138111 +in.representative_income 138121 Representative total house income in the dwelling unit is $138121 +in.representative_income 138154 Representative total house income in the dwelling unit is $138154 +in.representative_income 138157 Representative total house income in the dwelling unit is $138157 +in.representative_income 138188 Representative total house income in the dwelling unit is $138188 +in.representative_income 138192 Representative total house income in the dwelling unit is $138192 +in.representative_income 138215 Representative total house income in the dwelling unit is $138215 +in.representative_income 138260 Representative total house income in the dwelling unit is $138260 +in.representative_income 138289 Representative total house income in the dwelling unit is $138289 +in.representative_income 138294 Representative total house income in the dwelling unit is $138294 +in.representative_income 138301 Representative total house income in the dwelling unit is $138301 +in.representative_income 138311 Representative total house income in the dwelling unit is $138311 +in.representative_income 138380 Representative total house income in the dwelling unit is $138380 +in.representative_income 138390 Representative total house income in the dwelling unit is $138390 +in.representative_income 138420 Representative total house income in the dwelling unit is $138420 +in.representative_income 138475 Representative total house income in the dwelling unit is $138475 +in.representative_income 138491 Representative total house income in the dwelling unit is $138491 +in.representative_income 138524 Representative total house income in the dwelling unit is $138524 +in.representative_income 138575 Representative total house income in the dwelling unit is $138575 +in.representative_income 138583 Representative total house income in the dwelling unit is $138583 +in.representative_income 138592 Representative total house income in the dwelling unit is $138592 +in.representative_income 138659 Representative total house income in the dwelling unit is $138659 +in.representative_income 138689 Representative total house income in the dwelling unit is $138689 +in.representative_income 138730 Representative total house income in the dwelling unit is $138730 +in.representative_income 138732 Representative total house income in the dwelling unit is $138732 +in.representative_income 138797 Representative total house income in the dwelling unit is $138797 +in.representative_income 138830 Representative total house income in the dwelling unit is $138830 +in.representative_income 138834 Representative total house income in the dwelling unit is $138834 +in.representative_income 138840 Representative total house income in the dwelling unit is $138840 +in.representative_income 138844 Representative total house income in the dwelling unit is $138844 +in.representative_income 138955 Representative total house income in the dwelling unit is $138955 +in.representative_income 138996 Representative total house income in the dwelling unit is $138996 +in.representative_income 138997 Representative total house income in the dwelling unit is $138997 +in.representative_income 139012 Representative total house income in the dwelling unit is $139012 +in.representative_income 139033 Representative total house income in the dwelling unit is $139033 +in.representative_income 139057 Representative total house income in the dwelling unit is $139057 +in.representative_income 139111 Representative total house income in the dwelling unit is $139111 +in.representative_income 139119 Representative total house income in the dwelling unit is $139119 +in.representative_income 139165 Representative total house income in the dwelling unit is $139165 +in.representative_income 139198 Representative total house income in the dwelling unit is $139198 +in.representative_income 139208 Representative total house income in the dwelling unit is $139208 +in.representative_income 139218 Representative total house income in the dwelling unit is $139218 +in.representative_income 139240 Representative total house income in the dwelling unit is $139240 +in.representative_income 139246 Representative total house income in the dwelling unit is $139246 +in.representative_income 139273 Representative total house income in the dwelling unit is $139273 +in.representative_income 139333 Representative total house income in the dwelling unit is $139333 +in.representative_income 139345 Representative total house income in the dwelling unit is $139345 +in.representative_income 139349 Representative total house income in the dwelling unit is $139349 +in.representative_income 139381 Representative total house income in the dwelling unit is $139381 +in.representative_income 139400 Representative total house income in the dwelling unit is $139400 +in.representative_income 139419 Representative total house income in the dwelling unit is $139419 +in.representative_income 139430 Representative total house income in the dwelling unit is $139430 +in.representative_income 139441 Representative total house income in the dwelling unit is $139441 +in.representative_income 139453 Representative total house income in the dwelling unit is $139453 +in.representative_income 139501 Representative total house income in the dwelling unit is $139501 +in.representative_income 139548 Representative total house income in the dwelling unit is $139548 +in.representative_income 139555 Representative total house income in the dwelling unit is $139555 +in.representative_income 139559 Representative total house income in the dwelling unit is $139559 +in.representative_income 139596 Representative total house income in the dwelling unit is $139596 +in.representative_income 139602 Representative total house income in the dwelling unit is $139602 +in.representative_income 139630 Representative total house income in the dwelling unit is $139630 +in.representative_income 139658 Representative total house income in the dwelling unit is $139658 +in.representative_income 139677 Representative total house income in the dwelling unit is $139677 +in.representative_income 139735 Representative total house income in the dwelling unit is $139735 +in.representative_income 139762 Representative total house income in the dwelling unit is $139762 +in.representative_income 139764 Representative total house income in the dwelling unit is $139764 +in.representative_income 139813 Representative total house income in the dwelling unit is $139813 +in.representative_income 139817 Representative total house income in the dwelling unit is $139817 +in.representative_income 139818 Representative total house income in the dwelling unit is $139818 +in.representative_income 139844 Representative total house income in the dwelling unit is $139844 +in.representative_income 139865 Representative total house income in the dwelling unit is $139865 +in.representative_income 139870 Representative total house income in the dwelling unit is $139870 +in.representative_income 139947 Representative total house income in the dwelling unit is $139947 +in.representative_income 139976 Representative total house income in the dwelling unit is $139976 +in.representative_income 139978 Representative total house income in the dwelling unit is $139978 +in.representative_income 140006 Representative total house income in the dwelling unit is $140006 +in.representative_income 140052 Representative total house income in the dwelling unit is $140052 +in.representative_income 140174 Representative total house income in the dwelling unit is $140174 +in.representative_income 140245 Representative total house income in the dwelling unit is $140245 +in.representative_income 140246 Representative total house income in the dwelling unit is $140246 +in.representative_income 140263 Representative total house income in the dwelling unit is $140263 +in.representative_income 140277 Representative total house income in the dwelling unit is $140277 +in.representative_income 140309 Representative total house income in the dwelling unit is $140309 +in.representative_income 140357 Representative total house income in the dwelling unit is $140357 +in.representative_income 140368 Representative total house income in the dwelling unit is $140368 +in.representative_income 140407 Representative total house income in the dwelling unit is $140407 +in.representative_income 140410 Representative total house income in the dwelling unit is $140410 +in.representative_income 140450 Representative total house income in the dwelling unit is $140450 +in.representative_income 140461 Representative total house income in the dwelling unit is $140461 +in.representative_income 140473 Representative total house income in the dwelling unit is $140473 +in.representative_income 140482 Representative total house income in the dwelling unit is $140482 +in.representative_income 140484 Representative total house income in the dwelling unit is $140484 +in.representative_income 140569 Representative total house income in the dwelling unit is $140569 +in.representative_income 140579 Representative total house income in the dwelling unit is $140579 +in.representative_income 140586 Representative total house income in the dwelling unit is $140586 +in.representative_income 140612 Representative total house income in the dwelling unit is $140612 +in.representative_income 140622 Representative total house income in the dwelling unit is $140622 +in.representative_income 140663 Representative total house income in the dwelling unit is $140663 +in.representative_income 140674 Representative total house income in the dwelling unit is $140674 +in.representative_income 140678 Representative total house income in the dwelling unit is $140678 +in.representative_income 140680 Representative total house income in the dwelling unit is $140680 +in.representative_income 140690 Representative total house income in the dwelling unit is $140690 +in.representative_income 140732 Representative total house income in the dwelling unit is $140732 +in.representative_income 140785 Representative total house income in the dwelling unit is $140785 +in.representative_income 140790 Representative total house income in the dwelling unit is $140790 +in.representative_income 140837 Representative total house income in the dwelling unit is $140837 +in.representative_income 140885 Representative total house income in the dwelling unit is $140885 +in.representative_income 140893 Representative total house income in the dwelling unit is $140893 +in.representative_income 140895 Representative total house income in the dwelling unit is $140895 +in.representative_income 140915 Representative total house income in the dwelling unit is $140915 +in.representative_income 140943 Representative total house income in the dwelling unit is $140943 +in.representative_income 141000 Representative total house income in the dwelling unit is $141000 +in.representative_income 141001 Representative total house income in the dwelling unit is $141001 +in.representative_income 141051 Representative total house income in the dwelling unit is $141051 +in.representative_income 141106 Representative total house income in the dwelling unit is $141106 +in.representative_income 141109 Representative total house income in the dwelling unit is $141109 +in.representative_income 141117 Representative total house income in the dwelling unit is $141117 +in.representative_income 141205 Representative total house income in the dwelling unit is $141205 +in.representative_income 141218 Representative total house income in the dwelling unit is $141218 +in.representative_income 141266 Representative total house income in the dwelling unit is $141266 +in.representative_income 141269 Representative total house income in the dwelling unit is $141269 +in.representative_income 141309 Representative total house income in the dwelling unit is $141309 +in.representative_income 141317 Representative total house income in the dwelling unit is $141317 +in.representative_income 141319 Representative total house income in the dwelling unit is $141319 +in.representative_income 141349 Representative total house income in the dwelling unit is $141349 +in.representative_income 141420 Representative total house income in the dwelling unit is $141420 +in.representative_income 141464 Representative total house income in the dwelling unit is $141464 +in.representative_income 141480 Representative total house income in the dwelling unit is $141480 +in.representative_income 141481 Representative total house income in the dwelling unit is $141481 +in.representative_income 141515 Representative total house income in the dwelling unit is $141515 +in.representative_income 141521 Representative total house income in the dwelling unit is $141521 +in.representative_income 141528 Representative total house income in the dwelling unit is $141528 +in.representative_income 141542 Representative total house income in the dwelling unit is $141542 +in.representative_income 141558 Representative total house income in the dwelling unit is $141558 +in.representative_income 141619 Representative total house income in the dwelling unit is $141619 +in.representative_income 141622 Representative total house income in the dwelling unit is $141622 +in.representative_income 141623 Representative total house income in the dwelling unit is $141623 +in.representative_income 141633 Representative total house income in the dwelling unit is $141633 +in.representative_income 141654 Representative total house income in the dwelling unit is $141654 +in.representative_income 141695 Representative total house income in the dwelling unit is $141695 +in.representative_income 141706 Representative total house income in the dwelling unit is $141706 +in.representative_income 141721 Representative total house income in the dwelling unit is $141721 +in.representative_income 141723 Representative total house income in the dwelling unit is $141723 +in.representative_income 141739 Representative total house income in the dwelling unit is $141739 +in.representative_income 141749 Representative total house income in the dwelling unit is $141749 +in.representative_income 141758 Representative total house income in the dwelling unit is $141758 +in.representative_income 141824 Representative total house income in the dwelling unit is $141824 +in.representative_income 141845 Representative total house income in the dwelling unit is $141845 +in.representative_income 141866 Representative total house income in the dwelling unit is $141866 +in.representative_income 141896 Representative total house income in the dwelling unit is $141896 +in.representative_income 141925 Representative total house income in the dwelling unit is $141925 +in.representative_income 141928 Representative total house income in the dwelling unit is $141928 +in.representative_income 141948 Representative total house income in the dwelling unit is $141948 +in.representative_income 142018 Representative total house income in the dwelling unit is $142018 +in.representative_income 142031 Representative total house income in the dwelling unit is $142031 +in.representative_income 142081 Representative total house income in the dwelling unit is $142081 +in.representative_income 142103 Representative total house income in the dwelling unit is $142103 +in.representative_income 142124 Representative total house income in the dwelling unit is $142124 +in.representative_income 142127 Representative total house income in the dwelling unit is $142127 +in.representative_income 142157 Representative total house income in the dwelling unit is $142157 +in.representative_income 142161 Representative total house income in the dwelling unit is $142161 +in.representative_income 142190 Representative total house income in the dwelling unit is $142190 +in.representative_income 142191 Representative total house income in the dwelling unit is $142191 +in.representative_income 142211 Representative total house income in the dwelling unit is $142211 +in.representative_income 142232 Representative total house income in the dwelling unit is $142232 +in.representative_income 142237 Representative total house income in the dwelling unit is $142237 +in.representative_income 142248 Representative total house income in the dwelling unit is $142248 +in.representative_income 142266 Representative total house income in the dwelling unit is $142266 +in.representative_income 142269 Representative total house income in the dwelling unit is $142269 +in.representative_income 142318 Representative total house income in the dwelling unit is $142318 +in.representative_income 142340 Representative total house income in the dwelling unit is $142340 +in.representative_income 142347 Representative total house income in the dwelling unit is $142347 +in.representative_income 142371 Representative total house income in the dwelling unit is $142371 +in.representative_income 142393 Representative total house income in the dwelling unit is $142393 +in.representative_income 142406 Representative total house income in the dwelling unit is $142406 +in.representative_income 142420 Representative total house income in the dwelling unit is $142420 +in.representative_income 142426 Representative total house income in the dwelling unit is $142426 +in.representative_income 142430 Representative total house income in the dwelling unit is $142430 +in.representative_income 142433 Representative total house income in the dwelling unit is $142433 +in.representative_income 142443 Representative total house income in the dwelling unit is $142443 +in.representative_income 142451 Representative total house income in the dwelling unit is $142451 +in.representative_income 142478 Representative total house income in the dwelling unit is $142478 +in.representative_income 142479 Representative total house income in the dwelling unit is $142479 +in.representative_income 142531 Representative total house income in the dwelling unit is $142531 +in.representative_income 142547 Representative total house income in the dwelling unit is $142547 +in.representative_income 142554 Representative total house income in the dwelling unit is $142554 +in.representative_income 142557 Representative total house income in the dwelling unit is $142557 +in.representative_income 142566 Representative total house income in the dwelling unit is $142566 +in.representative_income 142583 Representative total house income in the dwelling unit is $142583 +in.representative_income 142615 Representative total house income in the dwelling unit is $142615 +in.representative_income 142622 Representative total house income in the dwelling unit is $142622 +in.representative_income 142632 Representative total house income in the dwelling unit is $142632 +in.representative_income 142650 Representative total house income in the dwelling unit is $142650 +in.representative_income 142661 Representative total house income in the dwelling unit is $142661 +in.representative_income 142678 Representative total house income in the dwelling unit is $142678 +in.representative_income 142683 Representative total house income in the dwelling unit is $142683 +in.representative_income 142688 Representative total house income in the dwelling unit is $142688 +in.representative_income 142753 Representative total house income in the dwelling unit is $142753 +in.representative_income 142769 Representative total house income in the dwelling unit is $142769 +in.representative_income 142779 Representative total house income in the dwelling unit is $142779 +in.representative_income 142784 Representative total house income in the dwelling unit is $142784 +in.representative_income 142794 Representative total house income in the dwelling unit is $142794 +in.representative_income 142814 Representative total house income in the dwelling unit is $142814 +in.representative_income 142823 Representative total house income in the dwelling unit is $142823 +in.representative_income 142833 Representative total house income in the dwelling unit is $142833 +in.representative_income 142835 Representative total house income in the dwelling unit is $142835 +in.representative_income 142856 Representative total house income in the dwelling unit is $142856 +in.representative_income 142876 Representative total house income in the dwelling unit is $142876 +in.representative_income 142899 Representative total house income in the dwelling unit is $142899 +in.representative_income 142908 Representative total house income in the dwelling unit is $142908 +in.representative_income 142936 Representative total house income in the dwelling unit is $142936 +in.representative_income 142946 Representative total house income in the dwelling unit is $142946 +in.representative_income 142959 Representative total house income in the dwelling unit is $142959 +in.representative_income 142984 Representative total house income in the dwelling unit is $142984 +in.representative_income 143004 Representative total house income in the dwelling unit is $143004 +in.representative_income 143037 Representative total house income in the dwelling unit is $143037 +in.representative_income 143091 Representative total house income in the dwelling unit is $143091 +in.representative_income 143105 Representative total house income in the dwelling unit is $143105 +in.representative_income 143110 Representative total house income in the dwelling unit is $143110 +in.representative_income 143114 Representative total house income in the dwelling unit is $143114 +in.representative_income 143121 Representative total house income in the dwelling unit is $143121 +in.representative_income 143138 Representative total house income in the dwelling unit is $143138 +in.representative_income 143163 Representative total house income in the dwelling unit is $143163 +in.representative_income 143166 Representative total house income in the dwelling unit is $143166 +in.representative_income 143195 Representative total house income in the dwelling unit is $143195 +in.representative_income 143198 Representative total house income in the dwelling unit is $143198 +in.representative_income 143216 Representative total house income in the dwelling unit is $143216 +in.representative_income 143239 Representative total house income in the dwelling unit is $143239 +in.representative_income 143269 Representative total house income in the dwelling unit is $143269 +in.representative_income 143270 Representative total house income in the dwelling unit is $143270 +in.representative_income 143340 Representative total house income in the dwelling unit is $143340 +in.representative_income 143371 Representative total house income in the dwelling unit is $143371 +in.representative_income 143378 Representative total house income in the dwelling unit is $143378 +in.representative_income 143405 Representative total house income in the dwelling unit is $143405 +in.representative_income 143426 Representative total house income in the dwelling unit is $143426 +in.representative_income 143434 Representative total house income in the dwelling unit is $143434 +in.representative_income 143441 Representative total house income in the dwelling unit is $143441 +in.representative_income 143486 Representative total house income in the dwelling unit is $143486 +in.representative_income 143520 Representative total house income in the dwelling unit is $143520 +in.representative_income 143532 Representative total house income in the dwelling unit is $143532 +in.representative_income 143578 Representative total house income in the dwelling unit is $143578 +in.representative_income 143585 Representative total house income in the dwelling unit is $143585 +in.representative_income 143628 Representative total house income in the dwelling unit is $143628 +in.representative_income 143637 Representative total house income in the dwelling unit is $143637 +in.representative_income 143643 Representative total house income in the dwelling unit is $143643 +in.representative_income 143648 Representative total house income in the dwelling unit is $143648 +in.representative_income 143693 Representative total house income in the dwelling unit is $143693 +in.representative_income 143702 Representative total house income in the dwelling unit is $143702 +in.representative_income 143713 Representative total house income in the dwelling unit is $143713 +in.representative_income 143743 Representative total house income in the dwelling unit is $143743 +in.representative_income 143744 Representative total house income in the dwelling unit is $143744 +in.representative_income 143764 Representative total house income in the dwelling unit is $143764 +in.representative_income 143770 Representative total house income in the dwelling unit is $143770 +in.representative_income 143785 Representative total house income in the dwelling unit is $143785 +in.representative_income 143811 Representative total house income in the dwelling unit is $143811 +in.representative_income 143842 Representative total house income in the dwelling unit is $143842 +in.representative_income 143845 Representative total house income in the dwelling unit is $143845 +in.representative_income 143849 Representative total house income in the dwelling unit is $143849 +in.representative_income 143887 Representative total house income in the dwelling unit is $143887 +in.representative_income 143897 Representative total house income in the dwelling unit is $143897 +in.representative_income 143907 Representative total house income in the dwelling unit is $143907 +in.representative_income 143919 Representative total house income in the dwelling unit is $143919 +in.representative_income 143946 Representative total house income in the dwelling unit is $143946 +in.representative_income 143949 Representative total house income in the dwelling unit is $143949 +in.representative_income 143950 Representative total house income in the dwelling unit is $143950 +in.representative_income 143954 Representative total house income in the dwelling unit is $143954 +in.representative_income 143990 Representative total house income in the dwelling unit is $143990 +in.representative_income 144006 Representative total house income in the dwelling unit is $144006 +in.representative_income 144027 Representative total house income in the dwelling unit is $144027 +in.representative_income 144047 Representative total house income in the dwelling unit is $144047 +in.representative_income 144057 Representative total house income in the dwelling unit is $144057 +in.representative_income 144059 Representative total house income in the dwelling unit is $144059 +in.representative_income 144061 Representative total house income in the dwelling unit is $144061 +in.representative_income 144077 Representative total house income in the dwelling unit is $144077 +in.representative_income 144081 Representative total house income in the dwelling unit is $144081 +in.representative_income 144094 Representative total house income in the dwelling unit is $144094 +in.representative_income 144102 Representative total house income in the dwelling unit is $144102 +in.representative_income 144135 Representative total house income in the dwelling unit is $144135 +in.representative_income 144148 Representative total house income in the dwelling unit is $144148 +in.representative_income 144164 Representative total house income in the dwelling unit is $144164 +in.representative_income 144165 Representative total house income in the dwelling unit is $144165 +in.representative_income 144197 Representative total house income in the dwelling unit is $144197 +in.representative_income 144198 Representative total house income in the dwelling unit is $144198 +in.representative_income 144219 Representative total house income in the dwelling unit is $144219 +in.representative_income 144243 Representative total house income in the dwelling unit is $144243 +in.representative_income 144249 Representative total house income in the dwelling unit is $144249 +in.representative_income 144270 Representative total house income in the dwelling unit is $144270 +in.representative_income 144271 Representative total house income in the dwelling unit is $144271 +in.representative_income 144300 Representative total house income in the dwelling unit is $144300 +in.representative_income 144302 Representative total house income in the dwelling unit is $144302 +in.representative_income 144311 Representative total house income in the dwelling unit is $144311 +in.representative_income 144350 Representative total house income in the dwelling unit is $144350 +in.representative_income 144351 Representative total house income in the dwelling unit is $144351 +in.representative_income 144376 Representative total house income in the dwelling unit is $144376 +in.representative_income 144379 Representative total house income in the dwelling unit is $144379 +in.representative_income 144404 Representative total house income in the dwelling unit is $144404 +in.representative_income 144442 Representative total house income in the dwelling unit is $144442 +in.representative_income 144451 Representative total house income in the dwelling unit is $144451 +in.representative_income 144458 Representative total house income in the dwelling unit is $144458 +in.representative_income 144481 Representative total house income in the dwelling unit is $144481 +in.representative_income 144486 Representative total house income in the dwelling unit is $144486 +in.representative_income 144506 Representative total house income in the dwelling unit is $144506 +in.representative_income 144507 Representative total house income in the dwelling unit is $144507 +in.representative_income 144533 Representative total house income in the dwelling unit is $144533 +in.representative_income 144549 Representative total house income in the dwelling unit is $144549 +in.representative_income 144552 Representative total house income in the dwelling unit is $144552 +in.representative_income 144558 Representative total house income in the dwelling unit is $144558 +in.representative_income 144566 Representative total house income in the dwelling unit is $144566 +in.representative_income 144567 Representative total house income in the dwelling unit is $144567 +in.representative_income 144587 Representative total house income in the dwelling unit is $144587 +in.representative_income 144589 Representative total house income in the dwelling unit is $144589 +in.representative_income 144594 Representative total house income in the dwelling unit is $144594 +in.representative_income 144599 Representative total house income in the dwelling unit is $144599 +in.representative_income 144602 Representative total house income in the dwelling unit is $144602 +in.representative_income 144609 Representative total house income in the dwelling unit is $144609 +in.representative_income 144622 Representative total house income in the dwelling unit is $144622 +in.representative_income 144641 Representative total house income in the dwelling unit is $144641 +in.representative_income 144643 Representative total house income in the dwelling unit is $144643 +in.representative_income 144653 Representative total house income in the dwelling unit is $144653 +in.representative_income 144660 Representative total house income in the dwelling unit is $144660 +in.representative_income 144671 Representative total house income in the dwelling unit is $144671 +in.representative_income 144673 Representative total house income in the dwelling unit is $144673 +in.representative_income 144675 Representative total house income in the dwelling unit is $144675 +in.representative_income 144692 Representative total house income in the dwelling unit is $144692 +in.representative_income 144701 Representative total house income in the dwelling unit is $144701 +in.representative_income 144703 Representative total house income in the dwelling unit is $144703 +in.representative_income 144713 Representative total house income in the dwelling unit is $144713 +in.representative_income 144723 Representative total house income in the dwelling unit is $144723 +in.representative_income 144754 Representative total house income in the dwelling unit is $144754 +in.representative_income 144783 Representative total house income in the dwelling unit is $144783 +in.representative_income 144797 Representative total house income in the dwelling unit is $144797 +in.representative_income 144805 Representative total house income in the dwelling unit is $144805 +in.representative_income 144809 Representative total house income in the dwelling unit is $144809 +in.representative_income 144816 Representative total house income in the dwelling unit is $144816 +in.representative_income 144855 Representative total house income in the dwelling unit is $144855 +in.representative_income 144868 Representative total house income in the dwelling unit is $144868 +in.representative_income 144891 Representative total house income in the dwelling unit is $144891 +in.representative_income 144902 Representative total house income in the dwelling unit is $144902 +in.representative_income 144914 Representative total house income in the dwelling unit is $144914 +in.representative_income 144915 Representative total house income in the dwelling unit is $144915 +in.representative_income 144919 Representative total house income in the dwelling unit is $144919 +in.representative_income 144938 Representative total house income in the dwelling unit is $144938 +in.representative_income 144945 Representative total house income in the dwelling unit is $144945 +in.representative_income 144948 Representative total house income in the dwelling unit is $144948 +in.representative_income 144956 Representative total house income in the dwelling unit is $144956 +in.representative_income 144959 Representative total house income in the dwelling unit is $144959 +in.representative_income 144970 Representative total house income in the dwelling unit is $144970 +in.representative_income 144971 Representative total house income in the dwelling unit is $144971 +in.representative_income 144987 Representative total house income in the dwelling unit is $144987 +in.representative_income 144999 Representative total house income in the dwelling unit is $144999 +in.representative_income 145002 Representative total house income in the dwelling unit is $145002 +in.representative_income 145009 Representative total house income in the dwelling unit is $145009 +in.representative_income 145022 Representative total house income in the dwelling unit is $145022 +in.representative_income 145023 Representative total house income in the dwelling unit is $145023 +in.representative_income 145026 Representative total house income in the dwelling unit is $145026 +in.representative_income 145057 Representative total house income in the dwelling unit is $145057 +in.representative_income 145065 Representative total house income in the dwelling unit is $145065 +in.representative_income 145075 Representative total house income in the dwelling unit is $145075 +in.representative_income 145096 Representative total house income in the dwelling unit is $145096 +in.representative_income 145107 Representative total house income in the dwelling unit is $145107 +in.representative_income 145114 Representative total house income in the dwelling unit is $145114 +in.representative_income 145125 Representative total house income in the dwelling unit is $145125 +in.representative_income 145128 Representative total house income in the dwelling unit is $145128 +in.representative_income 145130 Representative total house income in the dwelling unit is $145130 +in.representative_income 145145 Representative total house income in the dwelling unit is $145145 +in.representative_income 145158 Representative total house income in the dwelling unit is $145158 +in.representative_income 145161 Representative total house income in the dwelling unit is $145161 +in.representative_income 145162 Representative total house income in the dwelling unit is $145162 +in.representative_income 145172 Representative total house income in the dwelling unit is $145172 +in.representative_income 145188 Representative total house income in the dwelling unit is $145188 +in.representative_income 145215 Representative total house income in the dwelling unit is $145215 +in.representative_income 145219 Representative total house income in the dwelling unit is $145219 +in.representative_income 145227 Representative total house income in the dwelling unit is $145227 +in.representative_income 145228 Representative total house income in the dwelling unit is $145228 +in.representative_income 145238 Representative total house income in the dwelling unit is $145238 +in.representative_income 145240 Representative total house income in the dwelling unit is $145240 +in.representative_income 145259 Representative total house income in the dwelling unit is $145259 +in.representative_income 145271 Representative total house income in the dwelling unit is $145271 +in.representative_income 145280 Representative total house income in the dwelling unit is $145280 +in.representative_income 145289 Representative total house income in the dwelling unit is $145289 +in.representative_income 145323 Representative total house income in the dwelling unit is $145323 +in.representative_income 145325 Representative total house income in the dwelling unit is $145325 +in.representative_income 145332 Representative total house income in the dwelling unit is $145332 +in.representative_income 145345 Representative total house income in the dwelling unit is $145345 +in.representative_income 145348 Representative total house income in the dwelling unit is $145348 +in.representative_income 145360 Representative total house income in the dwelling unit is $145360 +in.representative_income 145373 Representative total house income in the dwelling unit is $145373 +in.representative_income 145377 Representative total house income in the dwelling unit is $145377 +in.representative_income 145378 Representative total house income in the dwelling unit is $145378 +in.representative_income 145389 Representative total house income in the dwelling unit is $145389 +in.representative_income 145399 Representative total house income in the dwelling unit is $145399 +in.representative_income 145430 Representative total house income in the dwelling unit is $145430 +in.representative_income 145432 Representative total house income in the dwelling unit is $145432 +in.representative_income 145435 Representative total house income in the dwelling unit is $145435 +in.representative_income 145452 Representative total house income in the dwelling unit is $145452 +in.representative_income 145453 Representative total house income in the dwelling unit is $145453 +in.representative_income 145455 Representative total house income in the dwelling unit is $145455 +in.representative_income 145461 Representative total house income in the dwelling unit is $145461 +in.representative_income 145474 Representative total house income in the dwelling unit is $145474 +in.representative_income 145481 Representative total house income in the dwelling unit is $145481 +in.representative_income 145511 Representative total house income in the dwelling unit is $145511 +in.representative_income 145517 Representative total house income in the dwelling unit is $145517 +in.representative_income 145535 Representative total house income in the dwelling unit is $145535 +in.representative_income 145537 Representative total house income in the dwelling unit is $145537 +in.representative_income 145540 Representative total house income in the dwelling unit is $145540 +in.representative_income 145547 Representative total house income in the dwelling unit is $145547 +in.representative_income 145557 Representative total house income in the dwelling unit is $145557 +in.representative_income 145559 Representative total house income in the dwelling unit is $145559 +in.representative_income 145562 Representative total house income in the dwelling unit is $145562 +in.representative_income 145569 Representative total house income in the dwelling unit is $145569 +in.representative_income 145578 Representative total house income in the dwelling unit is $145578 +in.representative_income 145579 Representative total house income in the dwelling unit is $145579 +in.representative_income 145589 Representative total house income in the dwelling unit is $145589 +in.representative_income 145609 Representative total house income in the dwelling unit is $145609 +in.representative_income 145627 Representative total house income in the dwelling unit is $145627 +in.representative_income 145641 Representative total house income in the dwelling unit is $145641 +in.representative_income 145642 Representative total house income in the dwelling unit is $145642 +in.representative_income 145647 Representative total house income in the dwelling unit is $145647 +in.representative_income 145648 Representative total house income in the dwelling unit is $145648 +in.representative_income 145649 Representative total house income in the dwelling unit is $145649 +in.representative_income 145662 Representative total house income in the dwelling unit is $145662 +in.representative_income 145663 Representative total house income in the dwelling unit is $145663 +in.representative_income 145667 Representative total house income in the dwelling unit is $145667 +in.representative_income 145693 Representative total house income in the dwelling unit is $145693 +in.representative_income 145704 Representative total house income in the dwelling unit is $145704 +in.representative_income 145734 Representative total house income in the dwelling unit is $145734 +in.representative_income 145744 Representative total house income in the dwelling unit is $145744 +in.representative_income 145747 Representative total house income in the dwelling unit is $145747 +in.representative_income 145755 Representative total house income in the dwelling unit is $145755 +in.representative_income 145757 Representative total house income in the dwelling unit is $145757 +in.representative_income 145764 Representative total house income in the dwelling unit is $145764 +in.representative_income 145775 Representative total house income in the dwelling unit is $145775 +in.representative_income 145796 Representative total house income in the dwelling unit is $145796 +in.representative_income 145827 Representative total house income in the dwelling unit is $145827 +in.representative_income 145828 Representative total house income in the dwelling unit is $145828 +in.representative_income 145831 Representative total house income in the dwelling unit is $145831 +in.representative_income 145847 Representative total house income in the dwelling unit is $145847 +in.representative_income 145852 Representative total house income in the dwelling unit is $145852 +in.representative_income 145863 Representative total house income in the dwelling unit is $145863 +in.representative_income 145865 Representative total house income in the dwelling unit is $145865 +in.representative_income 145874 Representative total house income in the dwelling unit is $145874 +in.representative_income 145878 Representative total house income in the dwelling unit is $145878 +in.representative_income 145882 Representative total house income in the dwelling unit is $145882 +in.representative_income 145883 Representative total house income in the dwelling unit is $145883 +in.representative_income 145917 Representative total house income in the dwelling unit is $145917 +in.representative_income 145951 Representative total house income in the dwelling unit is $145951 +in.representative_income 145957 Representative total house income in the dwelling unit is $145957 +in.representative_income 145964 Representative total house income in the dwelling unit is $145964 +in.representative_income 145966 Representative total house income in the dwelling unit is $145966 +in.representative_income 145971 Representative total house income in the dwelling unit is $145971 +in.representative_income 145989 Representative total house income in the dwelling unit is $145989 +in.representative_income 146002 Representative total house income in the dwelling unit is $146002 +in.representative_income 146011 Representative total house income in the dwelling unit is $146011 +in.representative_income 146053 Representative total house income in the dwelling unit is $146053 +in.representative_income 146063 Representative total house income in the dwelling unit is $146063 +in.representative_income 146067 Representative total house income in the dwelling unit is $146067 +in.representative_income 146074 Representative total house income in the dwelling unit is $146074 +in.representative_income 146079 Representative total house income in the dwelling unit is $146079 +in.representative_income 146084 Representative total house income in the dwelling unit is $146084 +in.representative_income 146096 Representative total house income in the dwelling unit is $146096 +in.representative_income 146101 Representative total house income in the dwelling unit is $146101 +in.representative_income 146105 Representative total house income in the dwelling unit is $146105 +in.representative_income 146109 Representative total house income in the dwelling unit is $146109 +in.representative_income 146117 Representative total house income in the dwelling unit is $146117 +in.representative_income 146123 Representative total house income in the dwelling unit is $146123 +in.representative_income 146133 Representative total house income in the dwelling unit is $146133 +in.representative_income 146156 Representative total house income in the dwelling unit is $146156 +in.representative_income 146161 Representative total house income in the dwelling unit is $146161 +in.representative_income 146168 Representative total house income in the dwelling unit is $146168 +in.representative_income 146170 Representative total house income in the dwelling unit is $146170 +in.representative_income 146179 Representative total house income in the dwelling unit is $146179 +in.representative_income 146188 Representative total house income in the dwelling unit is $146188 +in.representative_income 146199 Representative total house income in the dwelling unit is $146199 +in.representative_income 146204 Representative total house income in the dwelling unit is $146204 +in.representative_income 146208 Representative total house income in the dwelling unit is $146208 +in.representative_income 146246 Representative total house income in the dwelling unit is $146246 +in.representative_income 146248 Representative total house income in the dwelling unit is $146248 +in.representative_income 146260 Representative total house income in the dwelling unit is $146260 +in.representative_income 146261 Representative total house income in the dwelling unit is $146261 +in.representative_income 146269 Representative total house income in the dwelling unit is $146269 +in.representative_income 146274 Representative total house income in the dwelling unit is $146274 +in.representative_income 146285 Representative total house income in the dwelling unit is $146285 +in.representative_income 146291 Representative total house income in the dwelling unit is $146291 +in.representative_income 146296 Representative total house income in the dwelling unit is $146296 +in.representative_income 146311 Representative total house income in the dwelling unit is $146311 +in.representative_income 146327 Representative total house income in the dwelling unit is $146327 +in.representative_income 146343 Representative total house income in the dwelling unit is $146343 +in.representative_income 146363 Representative total house income in the dwelling unit is $146363 +in.representative_income 146370 Representative total house income in the dwelling unit is $146370 +in.representative_income 146375 Representative total house income in the dwelling unit is $146375 +in.representative_income 146380 Representative total house income in the dwelling unit is $146380 +in.representative_income 146396 Representative total house income in the dwelling unit is $146396 +in.representative_income 146404 Representative total house income in the dwelling unit is $146404 +in.representative_income 146405 Representative total house income in the dwelling unit is $146405 +in.representative_income 146419 Representative total house income in the dwelling unit is $146419 +in.representative_income 146421 Representative total house income in the dwelling unit is $146421 +in.representative_income 146441 Representative total house income in the dwelling unit is $146441 +in.representative_income 146464 Representative total house income in the dwelling unit is $146464 +in.representative_income 146466 Representative total house income in the dwelling unit is $146466 +in.representative_income 146471 Representative total house income in the dwelling unit is $146471 +in.representative_income 146477 Representative total house income in the dwelling unit is $146477 +in.representative_income 146481 Representative total house income in the dwelling unit is $146481 +in.representative_income 146483 Representative total house income in the dwelling unit is $146483 +in.representative_income 146485 Representative total house income in the dwelling unit is $146485 +in.representative_income 146487 Representative total house income in the dwelling unit is $146487 +in.representative_income 146497 Representative total house income in the dwelling unit is $146497 +in.representative_income 146501 Representative total house income in the dwelling unit is $146501 +in.representative_income 146511 Representative total house income in the dwelling unit is $146511 +in.representative_income 146512 Representative total house income in the dwelling unit is $146512 +in.representative_income 146518 Representative total house income in the dwelling unit is $146518 +in.representative_income 146522 Representative total house income in the dwelling unit is $146522 +in.representative_income 146525 Representative total house income in the dwelling unit is $146525 +in.representative_income 146528 Representative total house income in the dwelling unit is $146528 +in.representative_income 146548 Representative total house income in the dwelling unit is $146548 +in.representative_income 146558 Representative total house income in the dwelling unit is $146558 +in.representative_income 146569 Representative total house income in the dwelling unit is $146569 +in.representative_income 146570 Representative total house income in the dwelling unit is $146570 +in.representative_income 146572 Representative total house income in the dwelling unit is $146572 +in.representative_income 146580 Representative total house income in the dwelling unit is $146580 +in.representative_income 146590 Representative total house income in the dwelling unit is $146590 +in.representative_income 146592 Representative total house income in the dwelling unit is $146592 +in.representative_income 146620 Representative total house income in the dwelling unit is $146620 +in.representative_income 146631 Representative total house income in the dwelling unit is $146631 +in.representative_income 146633 Representative total house income in the dwelling unit is $146633 +in.representative_income 146642 Representative total house income in the dwelling unit is $146642 +in.representative_income 146672 Representative total house income in the dwelling unit is $146672 +in.representative_income 146673 Representative total house income in the dwelling unit is $146673 +in.representative_income 146674 Representative total house income in the dwelling unit is $146674 +in.representative_income 146675 Representative total house income in the dwelling unit is $146675 +in.representative_income 146676 Representative total house income in the dwelling unit is $146676 +in.representative_income 146683 Representative total house income in the dwelling unit is $146683 +in.representative_income 146687 Representative total house income in the dwelling unit is $146687 +in.representative_income 146693 Representative total house income in the dwelling unit is $146693 +in.representative_income 146706 Representative total house income in the dwelling unit is $146706 +in.representative_income 146708 Representative total house income in the dwelling unit is $146708 +in.representative_income 146724 Representative total house income in the dwelling unit is $146724 +in.representative_income 146728 Representative total house income in the dwelling unit is $146728 +in.representative_income 146740 Representative total house income in the dwelling unit is $146740 +in.representative_income 146744 Representative total house income in the dwelling unit is $146744 +in.representative_income 146749 Representative total house income in the dwelling unit is $146749 +in.representative_income 146767 Representative total house income in the dwelling unit is $146767 +in.representative_income 146774 Representative total house income in the dwelling unit is $146774 +in.representative_income 146775 Representative total house income in the dwelling unit is $146775 +in.representative_income 146783 Representative total house income in the dwelling unit is $146783 +in.representative_income 146786 Representative total house income in the dwelling unit is $146786 +in.representative_income 146801 Representative total house income in the dwelling unit is $146801 +in.representative_income 146807 Representative total house income in the dwelling unit is $146807 +in.representative_income 146823 Representative total house income in the dwelling unit is $146823 +in.representative_income 146835 Representative total house income in the dwelling unit is $146835 +in.representative_income 146848 Representative total house income in the dwelling unit is $146848 +in.representative_income 146875 Representative total house income in the dwelling unit is $146875 +in.representative_income 146879 Representative total house income in the dwelling unit is $146879 +in.representative_income 146905 Representative total house income in the dwelling unit is $146905 +in.representative_income 146907 Representative total house income in the dwelling unit is $146907 +in.representative_income 146919 Representative total house income in the dwelling unit is $146919 +in.representative_income 146922 Representative total house income in the dwelling unit is $146922 +in.representative_income 146944 Representative total house income in the dwelling unit is $146944 +in.representative_income 146946 Representative total house income in the dwelling unit is $146946 +in.representative_income 146949 Representative total house income in the dwelling unit is $146949 +in.representative_income 146952 Representative total house income in the dwelling unit is $146952 +in.representative_income 146955 Representative total house income in the dwelling unit is $146955 +in.representative_income 146959 Representative total house income in the dwelling unit is $146959 +in.representative_income 146966 Representative total house income in the dwelling unit is $146966 +in.representative_income 146976 Representative total house income in the dwelling unit is $146976 +in.representative_income 146981 Representative total house income in the dwelling unit is $146981 +in.representative_income 146982 Representative total house income in the dwelling unit is $146982 +in.representative_income 147012 Representative total house income in the dwelling unit is $147012 +in.representative_income 147013 Representative total house income in the dwelling unit is $147013 +in.representative_income 147031 Representative total house income in the dwelling unit is $147031 +in.representative_income 147042 Representative total house income in the dwelling unit is $147042 +in.representative_income 147052 Representative total house income in the dwelling unit is $147052 +in.representative_income 147063 Representative total house income in the dwelling unit is $147063 +in.representative_income 147064 Representative total house income in the dwelling unit is $147064 +in.representative_income 147077 Representative total house income in the dwelling unit is $147077 +in.representative_income 147085 Representative total house income in the dwelling unit is $147085 +in.representative_income 147106 Representative total house income in the dwelling unit is $147106 +in.representative_income 147116 Representative total house income in the dwelling unit is $147116 +in.representative_income 147118 Representative total house income in the dwelling unit is $147118 +in.representative_income 147127 Representative total house income in the dwelling unit is $147127 +in.representative_income 147128 Representative total house income in the dwelling unit is $147128 +in.representative_income 147137 Representative total house income in the dwelling unit is $147137 +in.representative_income 147147 Representative total house income in the dwelling unit is $147147 +in.representative_income 147160 Representative total house income in the dwelling unit is $147160 +in.representative_income 147170 Representative total house income in the dwelling unit is $147170 +in.representative_income 147171 Representative total house income in the dwelling unit is $147171 +in.representative_income 147178 Representative total house income in the dwelling unit is $147178 +in.representative_income 147188 Representative total house income in the dwelling unit is $147188 +in.representative_income 147193 Representative total house income in the dwelling unit is $147193 +in.representative_income 147212 Representative total house income in the dwelling unit is $147212 +in.representative_income 147213 Representative total house income in the dwelling unit is $147213 +in.representative_income 147223 Representative total house income in the dwelling unit is $147223 +in.representative_income 147229 Representative total house income in the dwelling unit is $147229 +in.representative_income 147261 Representative total house income in the dwelling unit is $147261 +in.representative_income 147268 Representative total house income in the dwelling unit is $147268 +in.representative_income 147272 Representative total house income in the dwelling unit is $147272 +in.representative_income 147276 Representative total house income in the dwelling unit is $147276 +in.representative_income 147277 Representative total house income in the dwelling unit is $147277 +in.representative_income 147279 Representative total house income in the dwelling unit is $147279 +in.representative_income 147288 Representative total house income in the dwelling unit is $147288 +in.representative_income 147291 Representative total house income in the dwelling unit is $147291 +in.representative_income 147309 Representative total house income in the dwelling unit is $147309 +in.representative_income 147319 Representative total house income in the dwelling unit is $147319 +in.representative_income 147322 Representative total house income in the dwelling unit is $147322 +in.representative_income 147328 Representative total house income in the dwelling unit is $147328 +in.representative_income 147330 Representative total house income in the dwelling unit is $147330 +in.representative_income 147376 Representative total house income in the dwelling unit is $147376 +in.representative_income 147380 Representative total house income in the dwelling unit is $147380 +in.representative_income 147385 Representative total house income in the dwelling unit is $147385 +in.representative_income 147394 Representative total house income in the dwelling unit is $147394 +in.representative_income 147430 Representative total house income in the dwelling unit is $147430 +in.representative_income 147433 Representative total house income in the dwelling unit is $147433 +in.representative_income 147441 Representative total house income in the dwelling unit is $147441 +in.representative_income 147442 Representative total house income in the dwelling unit is $147442 +in.representative_income 147466 Representative total house income in the dwelling unit is $147466 +in.representative_income 147481 Representative total house income in the dwelling unit is $147481 +in.representative_income 147484 Representative total house income in the dwelling unit is $147484 +in.representative_income 147489 Representative total house income in the dwelling unit is $147489 +in.representative_income 147491 Representative total house income in the dwelling unit is $147491 +in.representative_income 147492 Representative total house income in the dwelling unit is $147492 +in.representative_income 147498 Representative total house income in the dwelling unit is $147498 +in.representative_income 147501 Representative total house income in the dwelling unit is $147501 +in.representative_income 147516 Representative total house income in the dwelling unit is $147516 +in.representative_income 147528 Representative total house income in the dwelling unit is $147528 +in.representative_income 147540 Representative total house income in the dwelling unit is $147540 +in.representative_income 147550 Representative total house income in the dwelling unit is $147550 +in.representative_income 147560 Representative total house income in the dwelling unit is $147560 +in.representative_income 147562 Representative total house income in the dwelling unit is $147562 +in.representative_income 147571 Representative total house income in the dwelling unit is $147571 +in.representative_income 147577 Representative total house income in the dwelling unit is $147577 +in.representative_income 147582 Representative total house income in the dwelling unit is $147582 +in.representative_income 147592 Representative total house income in the dwelling unit is $147592 +in.representative_income 147600 Representative total house income in the dwelling unit is $147600 +in.representative_income 147601 Representative total house income in the dwelling unit is $147601 +in.representative_income 147602 Representative total house income in the dwelling unit is $147602 +in.representative_income 147633 Representative total house income in the dwelling unit is $147633 +in.representative_income 147642 Representative total house income in the dwelling unit is $147642 +in.representative_income 147643 Representative total house income in the dwelling unit is $147643 +in.representative_income 147645 Representative total house income in the dwelling unit is $147645 +in.representative_income 147646 Representative total house income in the dwelling unit is $147646 +in.representative_income 147656 Representative total house income in the dwelling unit is $147656 +in.representative_income 147666 Representative total house income in the dwelling unit is $147666 +in.representative_income 147673 Representative total house income in the dwelling unit is $147673 +in.representative_income 147676 Representative total house income in the dwelling unit is $147676 +in.representative_income 147683 Representative total house income in the dwelling unit is $147683 +in.representative_income 147685 Representative total house income in the dwelling unit is $147685 +in.representative_income 147697 Representative total house income in the dwelling unit is $147697 +in.representative_income 147700 Representative total house income in the dwelling unit is $147700 +in.representative_income 147701 Representative total house income in the dwelling unit is $147701 +in.representative_income 147703 Representative total house income in the dwelling unit is $147703 +in.representative_income 147706 Representative total house income in the dwelling unit is $147706 +in.representative_income 147708 Representative total house income in the dwelling unit is $147708 +in.representative_income 147716 Representative total house income in the dwelling unit is $147716 +in.representative_income 147729 Representative total house income in the dwelling unit is $147729 +in.representative_income 147730 Representative total house income in the dwelling unit is $147730 +in.representative_income 147734 Representative total house income in the dwelling unit is $147734 +in.representative_income 147750 Representative total house income in the dwelling unit is $147750 +in.representative_income 147764 Representative total house income in the dwelling unit is $147764 +in.representative_income 147765 Representative total house income in the dwelling unit is $147765 +in.representative_income 147784 Representative total house income in the dwelling unit is $147784 +in.representative_income 147792 Representative total house income in the dwelling unit is $147792 +in.representative_income 147803 Representative total house income in the dwelling unit is $147803 +in.representative_income 147807 Representative total house income in the dwelling unit is $147807 +in.representative_income 147809 Representative total house income in the dwelling unit is $147809 +in.representative_income 147814 Representative total house income in the dwelling unit is $147814 +in.representative_income 147817 Representative total house income in the dwelling unit is $147817 +in.representative_income 147818 Representative total house income in the dwelling unit is $147818 +in.representative_income 147819 Representative total house income in the dwelling unit is $147819 +in.representative_income 147825 Representative total house income in the dwelling unit is $147825 +in.representative_income 147829 Representative total house income in the dwelling unit is $147829 +in.representative_income 147834 Representative total house income in the dwelling unit is $147834 +in.representative_income 147856 Representative total house income in the dwelling unit is $147856 +in.representative_income 147858 Representative total house income in the dwelling unit is $147858 +in.representative_income 147885 Representative total house income in the dwelling unit is $147885 +in.representative_income 147888 Representative total house income in the dwelling unit is $147888 +in.representative_income 147890 Representative total house income in the dwelling unit is $147890 +in.representative_income 147891 Representative total house income in the dwelling unit is $147891 +in.representative_income 147898 Representative total house income in the dwelling unit is $147898 +in.representative_income 147900 Representative total house income in the dwelling unit is $147900 +in.representative_income 147907 Representative total house income in the dwelling unit is $147907 +in.representative_income 147909 Representative total house income in the dwelling unit is $147909 +in.representative_income 147910 Representative total house income in the dwelling unit is $147910 +in.representative_income 147917 Representative total house income in the dwelling unit is $147917 +in.representative_income 147921 Representative total house income in the dwelling unit is $147921 +in.representative_income 147926 Representative total house income in the dwelling unit is $147926 +in.representative_income 147932 Representative total house income in the dwelling unit is $147932 +in.representative_income 147936 Representative total house income in the dwelling unit is $147936 +in.representative_income 147942 Representative total house income in the dwelling unit is $147942 +in.representative_income 147943 Representative total house income in the dwelling unit is $147943 +in.representative_income 147949 Representative total house income in the dwelling unit is $147949 +in.representative_income 147954 Representative total house income in the dwelling unit is $147954 +in.representative_income 147961 Representative total house income in the dwelling unit is $147961 +in.representative_income 147966 Representative total house income in the dwelling unit is $147966 +in.representative_income 147967 Representative total house income in the dwelling unit is $147967 +in.representative_income 147972 Representative total house income in the dwelling unit is $147972 +in.representative_income 147982 Representative total house income in the dwelling unit is $147982 +in.representative_income 147986 Representative total house income in the dwelling unit is $147986 +in.representative_income 148013 Representative total house income in the dwelling unit is $148013 +in.representative_income 148014 Representative total house income in the dwelling unit is $148014 +in.representative_income 148016 Representative total house income in the dwelling unit is $148016 +in.representative_income 148017 Representative total house income in the dwelling unit is $148017 +in.representative_income 148024 Representative total house income in the dwelling unit is $148024 +in.representative_income 148027 Representative total house income in the dwelling unit is $148027 +in.representative_income 148029 Representative total house income in the dwelling unit is $148029 +in.representative_income 148035 Representative total house income in the dwelling unit is $148035 +in.representative_income 148046 Representative total house income in the dwelling unit is $148046 +in.representative_income 148057 Representative total house income in the dwelling unit is $148057 +in.representative_income 148066 Representative total house income in the dwelling unit is $148066 +in.representative_income 148068 Representative total house income in the dwelling unit is $148068 +in.representative_income 148071 Representative total house income in the dwelling unit is $148071 +in.representative_income 148075 Representative total house income in the dwelling unit is $148075 +in.representative_income 148077 Representative total house income in the dwelling unit is $148077 +in.representative_income 148078 Representative total house income in the dwelling unit is $148078 +in.representative_income 148085 Representative total house income in the dwelling unit is $148085 +in.representative_income 148087 Representative total house income in the dwelling unit is $148087 +in.representative_income 148099 Representative total house income in the dwelling unit is $148099 +in.representative_income 148107 Representative total house income in the dwelling unit is $148107 +in.representative_income 148117 Representative total house income in the dwelling unit is $148117 +in.representative_income 148118 Representative total house income in the dwelling unit is $148118 +in.representative_income 148132 Representative total house income in the dwelling unit is $148132 +in.representative_income 148133 Representative total house income in the dwelling unit is $148133 +in.representative_income 148136 Representative total house income in the dwelling unit is $148136 +in.representative_income 148137 Representative total house income in the dwelling unit is $148137 +in.representative_income 148141 Representative total house income in the dwelling unit is $148141 +in.representative_income 148143 Representative total house income in the dwelling unit is $148143 +in.representative_income 148158 Representative total house income in the dwelling unit is $148158 +in.representative_income 148173 Representative total house income in the dwelling unit is $148173 +in.representative_income 148176 Representative total house income in the dwelling unit is $148176 +in.representative_income 148179 Representative total house income in the dwelling unit is $148179 +in.representative_income 148187 Representative total house income in the dwelling unit is $148187 +in.representative_income 148188 Representative total house income in the dwelling unit is $148188 +in.representative_income 148191 Representative total house income in the dwelling unit is $148191 +in.representative_income 148199 Representative total house income in the dwelling unit is $148199 +in.representative_income 148200 Representative total house income in the dwelling unit is $148200 +in.representative_income 148220 Representative total house income in the dwelling unit is $148220 +in.representative_income 148225 Representative total house income in the dwelling unit is $148225 +in.representative_income 148240 Representative total house income in the dwelling unit is $148240 +in.representative_income 148243 Representative total house income in the dwelling unit is $148243 +in.representative_income 148247 Representative total house income in the dwelling unit is $148247 +in.representative_income 148261 Representative total house income in the dwelling unit is $148261 +in.representative_income 148262 Representative total house income in the dwelling unit is $148262 +in.representative_income 148265 Representative total house income in the dwelling unit is $148265 +in.representative_income 148267 Representative total house income in the dwelling unit is $148267 +in.representative_income 148278 Representative total house income in the dwelling unit is $148278 +in.representative_income 148288 Representative total house income in the dwelling unit is $148288 +in.representative_income 148289 Representative total house income in the dwelling unit is $148289 +in.representative_income 148309 Representative total house income in the dwelling unit is $148309 +in.representative_income 148317 Representative total house income in the dwelling unit is $148317 +in.representative_income 148322 Representative total house income in the dwelling unit is $148322 +in.representative_income 148330 Representative total house income in the dwelling unit is $148330 +in.representative_income 148332 Representative total house income in the dwelling unit is $148332 +in.representative_income 148345 Representative total house income in the dwelling unit is $148345 +in.representative_income 148348 Representative total house income in the dwelling unit is $148348 +in.representative_income 148350 Representative total house income in the dwelling unit is $148350 +in.representative_income 148383 Representative total house income in the dwelling unit is $148383 +in.representative_income 148390 Representative total house income in the dwelling unit is $148390 +in.representative_income 148394 Representative total house income in the dwelling unit is $148394 +in.representative_income 148412 Representative total house income in the dwelling unit is $148412 +in.representative_income 148414 Representative total house income in the dwelling unit is $148414 +in.representative_income 148415 Representative total house income in the dwelling unit is $148415 +in.representative_income 148420 Representative total house income in the dwelling unit is $148420 +in.representative_income 148421 Representative total house income in the dwelling unit is $148421 +in.representative_income 148426 Representative total house income in the dwelling unit is $148426 +in.representative_income 148435 Representative total house income in the dwelling unit is $148435 +in.representative_income 148456 Representative total house income in the dwelling unit is $148456 +in.representative_income 148457 Representative total house income in the dwelling unit is $148457 +in.representative_income 148458 Representative total house income in the dwelling unit is $148458 +in.representative_income 148467 Representative total house income in the dwelling unit is $148467 +in.representative_income 148471 Representative total house income in the dwelling unit is $148471 +in.representative_income 148478 Representative total house income in the dwelling unit is $148478 +in.representative_income 148479 Representative total house income in the dwelling unit is $148479 +in.representative_income 148481 Representative total house income in the dwelling unit is $148481 +in.representative_income 148482 Representative total house income in the dwelling unit is $148482 +in.representative_income 148485 Representative total house income in the dwelling unit is $148485 +in.representative_income 148488 Representative total house income in the dwelling unit is $148488 +in.representative_income 148491 Representative total house income in the dwelling unit is $148491 +in.representative_income 148512 Representative total house income in the dwelling unit is $148512 +in.representative_income 148529 Representative total house income in the dwelling unit is $148529 +in.representative_income 148542 Representative total house income in the dwelling unit is $148542 +in.representative_income 148545 Representative total house income in the dwelling unit is $148545 +in.representative_income 148549 Representative total house income in the dwelling unit is $148549 +in.representative_income 148552 Representative total house income in the dwelling unit is $148552 +in.representative_income 148561 Representative total house income in the dwelling unit is $148561 +in.representative_income 148565 Representative total house income in the dwelling unit is $148565 +in.representative_income 148566 Representative total house income in the dwelling unit is $148566 +in.representative_income 148567 Representative total house income in the dwelling unit is $148567 +in.representative_income 148572 Representative total house income in the dwelling unit is $148572 +in.representative_income 148581 Representative total house income in the dwelling unit is $148581 +in.representative_income 148584 Representative total house income in the dwelling unit is $148584 +in.representative_income 148587 Representative total house income in the dwelling unit is $148587 +in.representative_income 148592 Representative total house income in the dwelling unit is $148592 +in.representative_income 148594 Representative total house income in the dwelling unit is $148594 +in.representative_income 148615 Representative total house income in the dwelling unit is $148615 +in.representative_income 148623 Representative total house income in the dwelling unit is $148623 +in.representative_income 148628 Representative total house income in the dwelling unit is $148628 +in.representative_income 148632 Representative total house income in the dwelling unit is $148632 +in.representative_income 148640 Representative total house income in the dwelling unit is $148640 +in.representative_income 148653 Representative total house income in the dwelling unit is $148653 +in.representative_income 148657 Representative total house income in the dwelling unit is $148657 +in.representative_income 148668 Representative total house income in the dwelling unit is $148668 +in.representative_income 148673 Representative total house income in the dwelling unit is $148673 +in.representative_income 148684 Representative total house income in the dwelling unit is $148684 +in.representative_income 148689 Representative total house income in the dwelling unit is $148689 +in.representative_income 148693 Representative total house income in the dwelling unit is $148693 +in.representative_income 148699 Representative total house income in the dwelling unit is $148699 +in.representative_income 148706 Representative total house income in the dwelling unit is $148706 +in.representative_income 148713 Representative total house income in the dwelling unit is $148713 +in.representative_income 148721 Representative total house income in the dwelling unit is $148721 +in.representative_income 148724 Representative total house income in the dwelling unit is $148724 +in.representative_income 148736 Representative total house income in the dwelling unit is $148736 +in.representative_income 148738 Representative total house income in the dwelling unit is $148738 +in.representative_income 148752 Representative total house income in the dwelling unit is $148752 +in.representative_income 148759 Representative total house income in the dwelling unit is $148759 +in.representative_income 148763 Representative total house income in the dwelling unit is $148763 +in.representative_income 148773 Representative total house income in the dwelling unit is $148773 +in.representative_income 148780 Representative total house income in the dwelling unit is $148780 +in.representative_income 148781 Representative total house income in the dwelling unit is $148781 +in.representative_income 148784 Representative total house income in the dwelling unit is $148784 +in.representative_income 148794 Representative total house income in the dwelling unit is $148794 +in.representative_income 148798 Representative total house income in the dwelling unit is $148798 +in.representative_income 148805 Representative total house income in the dwelling unit is $148805 +in.representative_income 148815 Representative total house income in the dwelling unit is $148815 +in.representative_income 148835 Representative total house income in the dwelling unit is $148835 +in.representative_income 148837 Representative total house income in the dwelling unit is $148837 +in.representative_income 148838 Representative total house income in the dwelling unit is $148838 +in.representative_income 148845 Representative total house income in the dwelling unit is $148845 +in.representative_income 148846 Representative total house income in the dwelling unit is $148846 +in.representative_income 148847 Representative total house income in the dwelling unit is $148847 +in.representative_income 148849 Representative total house income in the dwelling unit is $148849 +in.representative_income 148865 Representative total house income in the dwelling unit is $148865 +in.representative_income 148868 Representative total house income in the dwelling unit is $148868 +in.representative_income 148873 Representative total house income in the dwelling unit is $148873 +in.representative_income 148887 Representative total house income in the dwelling unit is $148887 +in.representative_income 148889 Representative total house income in the dwelling unit is $148889 +in.representative_income 148895 Representative total house income in the dwelling unit is $148895 +in.representative_income 148896 Representative total house income in the dwelling unit is $148896 +in.representative_income 148910 Representative total house income in the dwelling unit is $148910 +in.representative_income 148911 Representative total house income in the dwelling unit is $148911 +in.representative_income 148918 Representative total house income in the dwelling unit is $148918 +in.representative_income 148941 Representative total house income in the dwelling unit is $148941 +in.representative_income 148943 Representative total house income in the dwelling unit is $148943 +in.representative_income 148946 Representative total house income in the dwelling unit is $148946 +in.representative_income 148952 Representative total house income in the dwelling unit is $148952 +in.representative_income 148973 Representative total house income in the dwelling unit is $148973 +in.representative_income 148995 Representative total house income in the dwelling unit is $148995 +in.representative_income 148996 Representative total house income in the dwelling unit is $148996 +in.representative_income 148997 Representative total house income in the dwelling unit is $148997 +in.representative_income 149005 Representative total house income in the dwelling unit is $149005 +in.representative_income 149016 Representative total house income in the dwelling unit is $149016 +in.representative_income 149026 Representative total house income in the dwelling unit is $149026 +in.representative_income 149027 Representative total house income in the dwelling unit is $149027 +in.representative_income 149041 Representative total house income in the dwelling unit is $149041 +in.representative_income 149045 Representative total house income in the dwelling unit is $149045 +in.representative_income 149047 Representative total house income in the dwelling unit is $149047 +in.representative_income 149061 Representative total house income in the dwelling unit is $149061 +in.representative_income 149068 Representative total house income in the dwelling unit is $149068 +in.representative_income 149079 Representative total house income in the dwelling unit is $149079 +in.representative_income 149087 Representative total house income in the dwelling unit is $149087 +in.representative_income 149097 Representative total house income in the dwelling unit is $149097 +in.representative_income 149102 Representative total house income in the dwelling unit is $149102 +in.representative_income 149105 Representative total house income in the dwelling unit is $149105 +in.representative_income 149107 Representative total house income in the dwelling unit is $149107 +in.representative_income 149109 Representative total house income in the dwelling unit is $149109 +in.representative_income 149115 Representative total house income in the dwelling unit is $149115 +in.representative_income 149121 Representative total house income in the dwelling unit is $149121 +in.representative_income 149124 Representative total house income in the dwelling unit is $149124 +in.representative_income 149126 Representative total house income in the dwelling unit is $149126 +in.representative_income 149142 Representative total house income in the dwelling unit is $149142 +in.representative_income 149148 Representative total house income in the dwelling unit is $149148 +in.representative_income 149191 Representative total house income in the dwelling unit is $149191 +in.representative_income 149198 Representative total house income in the dwelling unit is $149198 +in.representative_income 149199 Representative total house income in the dwelling unit is $149199 +in.representative_income 149209 Representative total house income in the dwelling unit is $149209 +in.representative_income 149210 Representative total house income in the dwelling unit is $149210 +in.representative_income 149211 Representative total house income in the dwelling unit is $149211 +in.representative_income 149213 Representative total house income in the dwelling unit is $149213 +in.representative_income 149222 Representative total house income in the dwelling unit is $149222 +in.representative_income 149226 Representative total house income in the dwelling unit is $149226 +in.representative_income 149231 Representative total house income in the dwelling unit is $149231 +in.representative_income 149251 Representative total house income in the dwelling unit is $149251 +in.representative_income 149256 Representative total house income in the dwelling unit is $149256 +in.representative_income 149259 Representative total house income in the dwelling unit is $149259 +in.representative_income 149263 Representative total house income in the dwelling unit is $149263 +in.representative_income 149266 Representative total house income in the dwelling unit is $149266 +in.representative_income 149269 Representative total house income in the dwelling unit is $149269 +in.representative_income 149272 Representative total house income in the dwelling unit is $149272 +in.representative_income 149284 Representative total house income in the dwelling unit is $149284 +in.representative_income 149292 Representative total house income in the dwelling unit is $149292 +in.representative_income 149296 Representative total house income in the dwelling unit is $149296 +in.representative_income 149299 Representative total house income in the dwelling unit is $149299 +in.representative_income 149303 Representative total house income in the dwelling unit is $149303 +in.representative_income 149316 Representative total house income in the dwelling unit is $149316 +in.representative_income 149321 Representative total house income in the dwelling unit is $149321 +in.representative_income 149332 Representative total house income in the dwelling unit is $149332 +in.representative_income 149333 Representative total house income in the dwelling unit is $149333 +in.representative_income 149341 Representative total house income in the dwelling unit is $149341 +in.representative_income 149343 Representative total house income in the dwelling unit is $149343 +in.representative_income 149349 Representative total house income in the dwelling unit is $149349 +in.representative_income 149354 Representative total house income in the dwelling unit is $149354 +in.representative_income 149371 Representative total house income in the dwelling unit is $149371 +in.representative_income 149374 Representative total house income in the dwelling unit is $149374 +in.representative_income 149386 Representative total house income in the dwelling unit is $149386 +in.representative_income 149399 Representative total house income in the dwelling unit is $149399 +in.representative_income 149400 Representative total house income in the dwelling unit is $149400 +in.representative_income 149406 Representative total house income in the dwelling unit is $149406 +in.representative_income 149420 Representative total house income in the dwelling unit is $149420 +in.representative_income 149424 Representative total house income in the dwelling unit is $149424 +in.representative_income 149429 Representative total house income in the dwelling unit is $149429 +in.representative_income 149434 Representative total house income in the dwelling unit is $149434 +in.representative_income 149438 Representative total house income in the dwelling unit is $149438 +in.representative_income 149457 Representative total house income in the dwelling unit is $149457 +in.representative_income 149461 Representative total house income in the dwelling unit is $149461 +in.representative_income 149499 Representative total house income in the dwelling unit is $149499 +in.representative_income 149501 Representative total house income in the dwelling unit is $149501 +in.representative_income 149512 Representative total house income in the dwelling unit is $149512 +in.representative_income 149516 Representative total house income in the dwelling unit is $149516 +in.representative_income 149526 Representative total house income in the dwelling unit is $149526 +in.representative_income 149531 Representative total house income in the dwelling unit is $149531 +in.representative_income 149537 Representative total house income in the dwelling unit is $149537 +in.representative_income 149543 Representative total house income in the dwelling unit is $149543 +in.representative_income 149549 Representative total house income in the dwelling unit is $149549 +in.representative_income 149554 Representative total house income in the dwelling unit is $149554 +in.representative_income 149556 Representative total house income in the dwelling unit is $149556 +in.representative_income 149560 Representative total house income in the dwelling unit is $149560 +in.representative_income 149562 Representative total house income in the dwelling unit is $149562 +in.representative_income 149563 Representative total house income in the dwelling unit is $149563 +in.representative_income 149564 Representative total house income in the dwelling unit is $149564 +in.representative_income 149569 Representative total house income in the dwelling unit is $149569 +in.representative_income 149583 Representative total house income in the dwelling unit is $149583 +in.representative_income 149586 Representative total house income in the dwelling unit is $149586 +in.representative_income 149591 Representative total house income in the dwelling unit is $149591 +in.representative_income 149592 Representative total house income in the dwelling unit is $149592 +in.representative_income 149596 Representative total house income in the dwelling unit is $149596 +in.representative_income 149602 Representative total house income in the dwelling unit is $149602 +in.representative_income 149606 Representative total house income in the dwelling unit is $149606 +in.representative_income 149612 Representative total house income in the dwelling unit is $149612 +in.representative_income 149615 Representative total house income in the dwelling unit is $149615 +in.representative_income 149622 Representative total house income in the dwelling unit is $149622 +in.representative_income 149639 Representative total house income in the dwelling unit is $149639 +in.representative_income 149645 Representative total house income in the dwelling unit is $149645 +in.representative_income 149649 Representative total house income in the dwelling unit is $149649 +in.representative_income 149653 Representative total house income in the dwelling unit is $149653 +in.representative_income 149657 Representative total house income in the dwelling unit is $149657 +in.representative_income 149664 Representative total house income in the dwelling unit is $149664 +in.representative_income 149673 Representative total house income in the dwelling unit is $149673 +in.representative_income 149693 Representative total house income in the dwelling unit is $149693 +in.representative_income 149699 Representative total house income in the dwelling unit is $149699 +in.representative_income 149703 Representative total house income in the dwelling unit is $149703 +in.representative_income 149705 Representative total house income in the dwelling unit is $149705 +in.representative_income 149710 Representative total house income in the dwelling unit is $149710 +in.representative_income 149715 Representative total house income in the dwelling unit is $149715 +in.representative_income 149724 Representative total house income in the dwelling unit is $149724 +in.representative_income 149734 Representative total house income in the dwelling unit is $149734 +in.representative_income 149736 Representative total house income in the dwelling unit is $149736 +in.representative_income 149746 Representative total house income in the dwelling unit is $149746 +in.representative_income 149753 Representative total house income in the dwelling unit is $149753 +in.representative_income 149754 Representative total house income in the dwelling unit is $149754 +in.representative_income 149764 Representative total house income in the dwelling unit is $149764 +in.representative_income 149767 Representative total house income in the dwelling unit is $149767 +in.representative_income 149775 Representative total house income in the dwelling unit is $149775 +in.representative_income 149785 Representative total house income in the dwelling unit is $149785 +in.representative_income 149794 Representative total house income in the dwelling unit is $149794 +in.representative_income 149805 Representative total house income in the dwelling unit is $149805 +in.representative_income 149807 Representative total house income in the dwelling unit is $149807 +in.representative_income 149808 Representative total house income in the dwelling unit is $149808 +in.representative_income 149812 Representative total house income in the dwelling unit is $149812 +in.representative_income 149818 Representative total house income in the dwelling unit is $149818 +in.representative_income 149819 Representative total house income in the dwelling unit is $149819 +in.representative_income 149830 Representative total house income in the dwelling unit is $149830 +in.representative_income 149839 Representative total house income in the dwelling unit is $149839 +in.representative_income 149854 Representative total house income in the dwelling unit is $149854 +in.representative_income 149855 Representative total house income in the dwelling unit is $149855 +in.representative_income 149859 Representative total house income in the dwelling unit is $149859 +in.representative_income 149861 Representative total house income in the dwelling unit is $149861 +in.representative_income 149864 Representative total house income in the dwelling unit is $149864 +in.representative_income 149865 Representative total house income in the dwelling unit is $149865 +in.representative_income 149870 Representative total house income in the dwelling unit is $149870 +in.representative_income 149871 Representative total house income in the dwelling unit is $149871 +in.representative_income 149892 Representative total house income in the dwelling unit is $149892 +in.representative_income 149894 Representative total house income in the dwelling unit is $149894 +in.representative_income 149906 Representative total house income in the dwelling unit is $149906 +in.representative_income 149910 Representative total house income in the dwelling unit is $149910 +in.representative_income 149912 Representative total house income in the dwelling unit is $149912 +in.representative_income 149915 Representative total house income in the dwelling unit is $149915 +in.representative_income 149922 Representative total house income in the dwelling unit is $149922 +in.representative_income 149932 Representative total house income in the dwelling unit is $149932 +in.representative_income 149933 Representative total house income in the dwelling unit is $149933 +in.representative_income 149956 Representative total house income in the dwelling unit is $149956 +in.representative_income 149960 Representative total house income in the dwelling unit is $149960 +in.representative_income 149965 Representative total house income in the dwelling unit is $149965 +in.representative_income 149969 Representative total house income in the dwelling unit is $149969 +in.representative_income 149973 Representative total house income in the dwelling unit is $149973 +in.representative_income 149984 Representative total house income in the dwelling unit is $149984 +in.representative_income 149986 Representative total house income in the dwelling unit is $149986 +in.representative_income 149993 Representative total house income in the dwelling unit is $149993 +in.representative_income 150007 Representative total house income in the dwelling unit is $150007 +in.representative_income 150018 Representative total house income in the dwelling unit is $150018 +in.representative_income 150020 Representative total house income in the dwelling unit is $150020 +in.representative_income 150047 Representative total house income in the dwelling unit is $150047 +in.representative_income 150057 Representative total house income in the dwelling unit is $150057 +in.representative_income 150059 Representative total house income in the dwelling unit is $150059 +in.representative_income 150068 Representative total house income in the dwelling unit is $150068 +in.representative_income 150071 Representative total house income in the dwelling unit is $150071 +in.representative_income 150076 Representative total house income in the dwelling unit is $150076 +in.representative_income 150077 Representative total house income in the dwelling unit is $150077 +in.representative_income 150092 Representative total house income in the dwelling unit is $150092 +in.representative_income 150108 Representative total house income in the dwelling unit is $150108 +in.representative_income 150118 Representative total house income in the dwelling unit is $150118 +in.representative_income 150122 Representative total house income in the dwelling unit is $150122 +in.representative_income 150132 Representative total house income in the dwelling unit is $150132 +in.representative_income 150176 Representative total house income in the dwelling unit is $150176 +in.representative_income 150179 Representative total house income in the dwelling unit is $150179 +in.representative_income 150186 Representative total house income in the dwelling unit is $150186 +in.representative_income 150190 Representative total house income in the dwelling unit is $150190 +in.representative_income 150191 Representative total house income in the dwelling unit is $150191 +in.representative_income 150197 Representative total house income in the dwelling unit is $150197 +in.representative_income 150209 Representative total house income in the dwelling unit is $150209 +in.representative_income 150219 Representative total house income in the dwelling unit is $150219 +in.representative_income 150229 Representative total house income in the dwelling unit is $150229 +in.representative_income 150231 Representative total house income in the dwelling unit is $150231 +in.representative_income 150251 Representative total house income in the dwelling unit is $150251 +in.representative_income 150261 Representative total house income in the dwelling unit is $150261 +in.representative_income 150269 Representative total house income in the dwelling unit is $150269 +in.representative_income 150281 Representative total house income in the dwelling unit is $150281 +in.representative_income 150283 Representative total house income in the dwelling unit is $150283 +in.representative_income 150284 Representative total house income in the dwelling unit is $150284 +in.representative_income 150287 Representative total house income in the dwelling unit is $150287 +in.representative_income 150292 Representative total house income in the dwelling unit is $150292 +in.representative_income 150294 Representative total house income in the dwelling unit is $150294 +in.representative_income 150302 Representative total house income in the dwelling unit is $150302 +in.representative_income 150304 Representative total house income in the dwelling unit is $150304 +in.representative_income 150310 Representative total house income in the dwelling unit is $150310 +in.representative_income 150315 Representative total house income in the dwelling unit is $150315 +in.representative_income 150320 Representative total house income in the dwelling unit is $150320 +in.representative_income 150326 Representative total house income in the dwelling unit is $150326 +in.representative_income 150336 Representative total house income in the dwelling unit is $150336 +in.representative_income 150345 Representative total house income in the dwelling unit is $150345 +in.representative_income 150358 Representative total house income in the dwelling unit is $150358 +in.representative_income 150375 Representative total house income in the dwelling unit is $150375 +in.representative_income 150378 Representative total house income in the dwelling unit is $150378 +in.representative_income 150386 Representative total house income in the dwelling unit is $150386 +in.representative_income 150387 Representative total house income in the dwelling unit is $150387 +in.representative_income 150391 Representative total house income in the dwelling unit is $150391 +in.representative_income 150402 Representative total house income in the dwelling unit is $150402 +in.representative_income 150406 Representative total house income in the dwelling unit is $150406 +in.representative_income 150411 Representative total house income in the dwelling unit is $150411 +in.representative_income 150412 Representative total house income in the dwelling unit is $150412 +in.representative_income 150413 Representative total house income in the dwelling unit is $150413 +in.representative_income 150423 Representative total house income in the dwelling unit is $150423 +in.representative_income 150434 Representative total house income in the dwelling unit is $150434 +in.representative_income 150436 Representative total house income in the dwelling unit is $150436 +in.representative_income 150458 Representative total house income in the dwelling unit is $150458 +in.representative_income 150466 Representative total house income in the dwelling unit is $150466 +in.representative_income 150471 Representative total house income in the dwelling unit is $150471 +in.representative_income 150488 Representative total house income in the dwelling unit is $150488 +in.representative_income 150489 Representative total house income in the dwelling unit is $150489 +in.representative_income 150492 Representative total house income in the dwelling unit is $150492 +in.representative_income 150497 Representative total house income in the dwelling unit is $150497 +in.representative_income 150499 Representative total house income in the dwelling unit is $150499 +in.representative_income 150508 Representative total house income in the dwelling unit is $150508 +in.representative_income 150509 Representative total house income in the dwelling unit is $150509 +in.representative_income 150510 Representative total house income in the dwelling unit is $150510 +in.representative_income 150512 Representative total house income in the dwelling unit is $150512 +in.representative_income 150531 Representative total house income in the dwelling unit is $150531 +in.representative_income 150541 Representative total house income in the dwelling unit is $150541 +in.representative_income 150551 Representative total house income in the dwelling unit is $150551 +in.representative_income 150592 Representative total house income in the dwelling unit is $150592 +in.representative_income 150597 Representative total house income in the dwelling unit is $150597 +in.representative_income 150602 Representative total house income in the dwelling unit is $150602 +in.representative_income 150605 Representative total house income in the dwelling unit is $150605 +in.representative_income 150609 Representative total house income in the dwelling unit is $150609 +in.representative_income 150613 Representative total house income in the dwelling unit is $150613 +in.representative_income 150617 Representative total house income in the dwelling unit is $150617 +in.representative_income 150619 Representative total house income in the dwelling unit is $150619 +in.representative_income 150623 Representative total house income in the dwelling unit is $150623 +in.representative_income 150643 Representative total house income in the dwelling unit is $150643 +in.representative_income 150650 Representative total house income in the dwelling unit is $150650 +in.representative_income 150652 Representative total house income in the dwelling unit is $150652 +in.representative_income 150659 Representative total house income in the dwelling unit is $150659 +in.representative_income 150660 Representative total house income in the dwelling unit is $150660 +in.representative_income 150663 Representative total house income in the dwelling unit is $150663 +in.representative_income 150695 Representative total house income in the dwelling unit is $150695 +in.representative_income 150704 Representative total house income in the dwelling unit is $150704 +in.representative_income 150712 Representative total house income in the dwelling unit is $150712 +in.representative_income 150714 Representative total house income in the dwelling unit is $150714 +in.representative_income 150725 Representative total house income in the dwelling unit is $150725 +in.representative_income 150726 Representative total house income in the dwelling unit is $150726 +in.representative_income 150731 Representative total house income in the dwelling unit is $150731 +in.representative_income 150734 Representative total house income in the dwelling unit is $150734 +in.representative_income 150747 Representative total house income in the dwelling unit is $150747 +in.representative_income 150752 Representative total house income in the dwelling unit is $150752 +in.representative_income 150764 Representative total house income in the dwelling unit is $150764 +in.representative_income 150766 Representative total house income in the dwelling unit is $150766 +in.representative_income 150774 Representative total house income in the dwelling unit is $150774 +in.representative_income 150798 Representative total house income in the dwelling unit is $150798 +in.representative_income 150809 Representative total house income in the dwelling unit is $150809 +in.representative_income 150812 Representative total house income in the dwelling unit is $150812 +in.representative_income 150815 Representative total house income in the dwelling unit is $150815 +in.representative_income 150820 Representative total house income in the dwelling unit is $150820 +in.representative_income 150826 Representative total house income in the dwelling unit is $150826 +in.representative_income 150830 Representative total house income in the dwelling unit is $150830 +in.representative_income 150833 Representative total house income in the dwelling unit is $150833 +in.representative_income 150844 Representative total house income in the dwelling unit is $150844 +in.representative_income 150851 Representative total house income in the dwelling unit is $150851 +in.representative_income 150852 Representative total house income in the dwelling unit is $150852 +in.representative_income 150861 Representative total house income in the dwelling unit is $150861 +in.representative_income 150879 Representative total house income in the dwelling unit is $150879 +in.representative_income 150889 Representative total house income in the dwelling unit is $150889 +in.representative_income 150892 Representative total house income in the dwelling unit is $150892 +in.representative_income 150895 Representative total house income in the dwelling unit is $150895 +in.representative_income 150902 Representative total house income in the dwelling unit is $150902 +in.representative_income 150914 Representative total house income in the dwelling unit is $150914 +in.representative_income 150916 Representative total house income in the dwelling unit is $150916 +in.representative_income 150920 Representative total house income in the dwelling unit is $150920 +in.representative_income 150927 Representative total house income in the dwelling unit is $150927 +in.representative_income 150942 Representative total house income in the dwelling unit is $150942 +in.representative_income 150953 Representative total house income in the dwelling unit is $150953 +in.representative_income 150956 Representative total house income in the dwelling unit is $150956 +in.representative_income 150959 Representative total house income in the dwelling unit is $150959 +in.representative_income 151004 Representative total house income in the dwelling unit is $151004 +in.representative_income 151017 Representative total house income in the dwelling unit is $151017 +in.representative_income 151019 Representative total house income in the dwelling unit is $151019 +in.representative_income 151034 Representative total house income in the dwelling unit is $151034 +in.representative_income 151036 Representative total house income in the dwelling unit is $151036 +in.representative_income 151050 Representative total house income in the dwelling unit is $151050 +in.representative_income 151051 Representative total house income in the dwelling unit is $151051 +in.representative_income 151073 Representative total house income in the dwelling unit is $151073 +in.representative_income 151079 Representative total house income in the dwelling unit is $151079 +in.representative_income 151082 Representative total house income in the dwelling unit is $151082 +in.representative_income 151104 Representative total house income in the dwelling unit is $151104 +in.representative_income 151107 Representative total house income in the dwelling unit is $151107 +in.representative_income 151118 Representative total house income in the dwelling unit is $151118 +in.representative_income 151125 Representative total house income in the dwelling unit is $151125 +in.representative_income 151141 Representative total house income in the dwelling unit is $151141 +in.representative_income 151158 Representative total house income in the dwelling unit is $151158 +in.representative_income 151165 Representative total house income in the dwelling unit is $151165 +in.representative_income 151196 Representative total house income in the dwelling unit is $151196 +in.representative_income 151211 Representative total house income in the dwelling unit is $151211 +in.representative_income 151217 Representative total house income in the dwelling unit is $151217 +in.representative_income 151219 Representative total house income in the dwelling unit is $151219 +in.representative_income 151230 Representative total house income in the dwelling unit is $151230 +in.representative_income 151249 Representative total house income in the dwelling unit is $151249 +in.representative_income 151252 Representative total house income in the dwelling unit is $151252 +in.representative_income 151266 Representative total house income in the dwelling unit is $151266 +in.representative_income 151267 Representative total house income in the dwelling unit is $151267 +in.representative_income 151269 Representative total house income in the dwelling unit is $151269 +in.representative_income 151270 Representative total house income in the dwelling unit is $151270 +in.representative_income 151277 Representative total house income in the dwelling unit is $151277 +in.representative_income 151287 Representative total house income in the dwelling unit is $151287 +in.representative_income 151294 Representative total house income in the dwelling unit is $151294 +in.representative_income 151298 Representative total house income in the dwelling unit is $151298 +in.representative_income 151311 Representative total house income in the dwelling unit is $151311 +in.representative_income 151314 Representative total house income in the dwelling unit is $151314 +in.representative_income 151320 Representative total house income in the dwelling unit is $151320 +in.representative_income 151324 Representative total house income in the dwelling unit is $151324 +in.representative_income 151331 Representative total house income in the dwelling unit is $151331 +in.representative_income 151336 Representative total house income in the dwelling unit is $151336 +in.representative_income 151346 Representative total house income in the dwelling unit is $151346 +in.representative_income 151352 Representative total house income in the dwelling unit is $151352 +in.representative_income 151356 Representative total house income in the dwelling unit is $151356 +in.representative_income 151361 Representative total house income in the dwelling unit is $151361 +in.representative_income 151363 Representative total house income in the dwelling unit is $151363 +in.representative_income 151365 Representative total house income in the dwelling unit is $151365 +in.representative_income 151367 Representative total house income in the dwelling unit is $151367 +in.representative_income 151370 Representative total house income in the dwelling unit is $151370 +in.representative_income 151374 Representative total house income in the dwelling unit is $151374 +in.representative_income 151394 Representative total house income in the dwelling unit is $151394 +in.representative_income 151410 Representative total house income in the dwelling unit is $151410 +in.representative_income 151417 Representative total house income in the dwelling unit is $151417 +in.representative_income 151421 Representative total house income in the dwelling unit is $151421 +in.representative_income 151428 Representative total house income in the dwelling unit is $151428 +in.representative_income 151442 Representative total house income in the dwelling unit is $151442 +in.representative_income 151445 Representative total house income in the dwelling unit is $151445 +in.representative_income 151460 Representative total house income in the dwelling unit is $151460 +in.representative_income 151461 Representative total house income in the dwelling unit is $151461 +in.representative_income 151464 Representative total house income in the dwelling unit is $151464 +in.representative_income 151473 Representative total house income in the dwelling unit is $151473 +in.representative_income 151475 Representative total house income in the dwelling unit is $151475 +in.representative_income 151482 Representative total house income in the dwelling unit is $151482 +in.representative_income 151485 Representative total house income in the dwelling unit is $151485 +in.representative_income 151494 Representative total house income in the dwelling unit is $151494 +in.representative_income 151514 Representative total house income in the dwelling unit is $151514 +in.representative_income 151521 Representative total house income in the dwelling unit is $151521 +in.representative_income 151522 Representative total house income in the dwelling unit is $151522 +in.representative_income 151526 Representative total house income in the dwelling unit is $151526 +in.representative_income 151531 Representative total house income in the dwelling unit is $151531 +in.representative_income 151532 Representative total house income in the dwelling unit is $151532 +in.representative_income 151536 Representative total house income in the dwelling unit is $151536 +in.representative_income 151542 Representative total house income in the dwelling unit is $151542 +in.representative_income 151547 Representative total house income in the dwelling unit is $151547 +in.representative_income 151562 Representative total house income in the dwelling unit is $151562 +in.representative_income 151568 Representative total house income in the dwelling unit is $151568 +in.representative_income 151571 Representative total house income in the dwelling unit is $151571 +in.representative_income 151572 Representative total house income in the dwelling unit is $151572 +in.representative_income 151587 Representative total house income in the dwelling unit is $151587 +in.representative_income 151589 Representative total house income in the dwelling unit is $151589 +in.representative_income 151590 Representative total house income in the dwelling unit is $151590 +in.representative_income 151592 Representative total house income in the dwelling unit is $151592 +in.representative_income 151600 Representative total house income in the dwelling unit is $151600 +in.representative_income 151611 Representative total house income in the dwelling unit is $151611 +in.representative_income 151623 Representative total house income in the dwelling unit is $151623 +in.representative_income 151633 Representative total house income in the dwelling unit is $151633 +in.representative_income 151637 Representative total house income in the dwelling unit is $151637 +in.representative_income 151652 Representative total house income in the dwelling unit is $151652 +in.representative_income 151654 Representative total house income in the dwelling unit is $151654 +in.representative_income 151657 Representative total house income in the dwelling unit is $151657 +in.representative_income 151663 Representative total house income in the dwelling unit is $151663 +in.representative_income 151673 Representative total house income in the dwelling unit is $151673 +in.representative_income 151678 Representative total house income in the dwelling unit is $151678 +in.representative_income 151683 Representative total house income in the dwelling unit is $151683 +in.representative_income 151693 Representative total house income in the dwelling unit is $151693 +in.representative_income 151698 Representative total house income in the dwelling unit is $151698 +in.representative_income 151724 Representative total house income in the dwelling unit is $151724 +in.representative_income 151726 Representative total house income in the dwelling unit is $151726 +in.representative_income 151733 Representative total house income in the dwelling unit is $151733 +in.representative_income 151734 Representative total house income in the dwelling unit is $151734 +in.representative_income 151747 Representative total house income in the dwelling unit is $151747 +in.representative_income 151758 Representative total house income in the dwelling unit is $151758 +in.representative_income 151768 Representative total house income in the dwelling unit is $151768 +in.representative_income 151779 Representative total house income in the dwelling unit is $151779 +in.representative_income 151786 Representative total house income in the dwelling unit is $151786 +in.representative_income 151806 Representative total house income in the dwelling unit is $151806 +in.representative_income 151808 Representative total house income in the dwelling unit is $151808 +in.representative_income 151825 Representative total house income in the dwelling unit is $151825 +in.representative_income 151830 Representative total house income in the dwelling unit is $151830 +in.representative_income 151839 Representative total house income in the dwelling unit is $151839 +in.representative_income 151860 Representative total house income in the dwelling unit is $151860 +in.representative_income 151863 Representative total house income in the dwelling unit is $151863 +in.representative_income 151875 Representative total house income in the dwelling unit is $151875 +in.representative_income 151881 Representative total house income in the dwelling unit is $151881 +in.representative_income 151885 Representative total house income in the dwelling unit is $151885 +in.representative_income 151887 Representative total house income in the dwelling unit is $151887 +in.representative_income 151893 Representative total house income in the dwelling unit is $151893 +in.representative_income 151895 Representative total house income in the dwelling unit is $151895 +in.representative_income 151904 Representative total house income in the dwelling unit is $151904 +in.representative_income 151914 Representative total house income in the dwelling unit is $151914 +in.representative_income 151916 Representative total house income in the dwelling unit is $151916 +in.representative_income 151924 Representative total house income in the dwelling unit is $151924 +in.representative_income 151926 Representative total house income in the dwelling unit is $151926 +in.representative_income 151933 Representative total house income in the dwelling unit is $151933 +in.representative_income 151952 Representative total house income in the dwelling unit is $151952 +in.representative_income 151969 Representative total house income in the dwelling unit is $151969 +in.representative_income 151980 Representative total house income in the dwelling unit is $151980 +in.representative_income 151985 Representative total house income in the dwelling unit is $151985 +in.representative_income 152001 Representative total house income in the dwelling unit is $152001 +in.representative_income 152007 Representative total house income in the dwelling unit is $152007 +in.representative_income 152017 Representative total house income in the dwelling unit is $152017 +in.representative_income 152022 Representative total house income in the dwelling unit is $152022 +in.representative_income 152027 Representative total house income in the dwelling unit is $152027 +in.representative_income 152036 Representative total house income in the dwelling unit is $152036 +in.representative_income 152044 Representative total house income in the dwelling unit is $152044 +in.representative_income 152054 Representative total house income in the dwelling unit is $152054 +in.representative_income 152071 Representative total house income in the dwelling unit is $152071 +in.representative_income 152074 Representative total house income in the dwelling unit is $152074 +in.representative_income 152077 Representative total house income in the dwelling unit is $152077 +in.representative_income 152083 Representative total house income in the dwelling unit is $152083 +in.representative_income 152085 Representative total house income in the dwelling unit is $152085 +in.representative_income 152108 Representative total house income in the dwelling unit is $152108 +in.representative_income 152128 Representative total house income in the dwelling unit is $152128 +in.representative_income 152130 Representative total house income in the dwelling unit is $152130 +in.representative_income 152139 Representative total house income in the dwelling unit is $152139 +in.representative_income 152160 Representative total house income in the dwelling unit is $152160 +in.representative_income 152167 Representative total house income in the dwelling unit is $152167 +in.representative_income 152178 Representative total house income in the dwelling unit is $152178 +in.representative_income 152180 Representative total house income in the dwelling unit is $152180 +in.representative_income 152190 Representative total house income in the dwelling unit is $152190 +in.representative_income 152206 Representative total house income in the dwelling unit is $152206 +in.representative_income 152215 Representative total house income in the dwelling unit is $152215 +in.representative_income 152229 Representative total house income in the dwelling unit is $152229 +in.representative_income 152233 Representative total house income in the dwelling unit is $152233 +in.representative_income 152238 Representative total house income in the dwelling unit is $152238 +in.representative_income 152242 Representative total house income in the dwelling unit is $152242 +in.representative_income 152249 Representative total house income in the dwelling unit is $152249 +in.representative_income 152259 Representative total house income in the dwelling unit is $152259 +in.representative_income 152269 Representative total house income in the dwelling unit is $152269 +in.representative_income 152270 Representative total house income in the dwelling unit is $152270 +in.representative_income 152285 Representative total house income in the dwelling unit is $152285 +in.representative_income 152300 Representative total house income in the dwelling unit is $152300 +in.representative_income 152316 Representative total house income in the dwelling unit is $152316 +in.representative_income 152317 Representative total house income in the dwelling unit is $152317 +in.representative_income 152322 Representative total house income in the dwelling unit is $152322 +in.representative_income 152330 Representative total house income in the dwelling unit is $152330 +in.representative_income 152345 Representative total house income in the dwelling unit is $152345 +in.representative_income 152346 Representative total house income in the dwelling unit is $152346 +in.representative_income 152354 Representative total house income in the dwelling unit is $152354 +in.representative_income 152357 Representative total house income in the dwelling unit is $152357 +in.representative_income 152378 Representative total house income in the dwelling unit is $152378 +in.representative_income 152383 Representative total house income in the dwelling unit is $152383 +in.representative_income 152387 Representative total house income in the dwelling unit is $152387 +in.representative_income 152390 Representative total house income in the dwelling unit is $152390 +in.representative_income 152410 Representative total house income in the dwelling unit is $152410 +in.representative_income 152430 Representative total house income in the dwelling unit is $152430 +in.representative_income 152431 Representative total house income in the dwelling unit is $152431 +in.representative_income 152440 Representative total house income in the dwelling unit is $152440 +in.representative_income 152449 Representative total house income in the dwelling unit is $152449 +in.representative_income 152454 Representative total house income in the dwelling unit is $152454 +in.representative_income 152463 Representative total house income in the dwelling unit is $152463 +in.representative_income 152470 Representative total house income in the dwelling unit is $152470 +in.representative_income 152472 Representative total house income in the dwelling unit is $152472 +in.representative_income 152481 Representative total house income in the dwelling unit is $152481 +in.representative_income 152494 Representative total house income in the dwelling unit is $152494 +in.representative_income 152496 Representative total house income in the dwelling unit is $152496 +in.representative_income 152530 Representative total house income in the dwelling unit is $152530 +in.representative_income 152532 Representative total house income in the dwelling unit is $152532 +in.representative_income 152536 Representative total house income in the dwelling unit is $152536 +in.representative_income 152537 Representative total house income in the dwelling unit is $152537 +in.representative_income 152539 Representative total house income in the dwelling unit is $152539 +in.representative_income 152540 Representative total house income in the dwelling unit is $152540 +in.representative_income 152559 Representative total house income in the dwelling unit is $152559 +in.representative_income 152562 Representative total house income in the dwelling unit is $152562 +in.representative_income 152563 Representative total house income in the dwelling unit is $152563 +in.representative_income 152569 Representative total house income in the dwelling unit is $152569 +in.representative_income 152570 Representative total house income in the dwelling unit is $152570 +in.representative_income 152580 Representative total house income in the dwelling unit is $152580 +in.representative_income 152592 Representative total house income in the dwelling unit is $152592 +in.representative_income 152602 Representative total house income in the dwelling unit is $152602 +in.representative_income 152603 Representative total house income in the dwelling unit is $152603 +in.representative_income 152633 Representative total house income in the dwelling unit is $152633 +in.representative_income 152645 Representative total house income in the dwelling unit is $152645 +in.representative_income 152646 Representative total house income in the dwelling unit is $152646 +in.representative_income 152654 Representative total house income in the dwelling unit is $152654 +in.representative_income 152656 Representative total house income in the dwelling unit is $152656 +in.representative_income 152663 Representative total house income in the dwelling unit is $152663 +in.representative_income 152666 Representative total house income in the dwelling unit is $152666 +in.representative_income 152671 Representative total house income in the dwelling unit is $152671 +in.representative_income 152692 Representative total house income in the dwelling unit is $152692 +in.representative_income 152706 Representative total house income in the dwelling unit is $152706 +in.representative_income 152707 Representative total house income in the dwelling unit is $152707 +in.representative_income 152717 Representative total house income in the dwelling unit is $152717 +in.representative_income 152734 Representative total house income in the dwelling unit is $152734 +in.representative_income 152751 Representative total house income in the dwelling unit is $152751 +in.representative_income 152758 Representative total house income in the dwelling unit is $152758 +in.representative_income 152759 Representative total house income in the dwelling unit is $152759 +in.representative_income 152774 Representative total house income in the dwelling unit is $152774 +in.representative_income 152779 Representative total house income in the dwelling unit is $152779 +in.representative_income 152812 Representative total house income in the dwelling unit is $152812 +in.representative_income 152835 Representative total house income in the dwelling unit is $152835 +in.representative_income 152838 Representative total house income in the dwelling unit is $152838 +in.representative_income 152841 Representative total house income in the dwelling unit is $152841 +in.representative_income 152843 Representative total house income in the dwelling unit is $152843 +in.representative_income 152859 Representative total house income in the dwelling unit is $152859 +in.representative_income 152861 Representative total house income in the dwelling unit is $152861 +in.representative_income 152886 Representative total house income in the dwelling unit is $152886 +in.representative_income 152918 Representative total house income in the dwelling unit is $152918 +in.representative_income 152919 Representative total house income in the dwelling unit is $152919 +in.representative_income 152928 Representative total house income in the dwelling unit is $152928 +in.representative_income 152936 Representative total house income in the dwelling unit is $152936 +in.representative_income 152939 Representative total house income in the dwelling unit is $152939 +in.representative_income 152964 Representative total house income in the dwelling unit is $152964 +in.representative_income 152967 Representative total house income in the dwelling unit is $152967 +in.representative_income 152977 Representative total house income in the dwelling unit is $152977 +in.representative_income 152985 Representative total house income in the dwelling unit is $152985 +in.representative_income 152986 Representative total house income in the dwelling unit is $152986 +in.representative_income 152994 Representative total house income in the dwelling unit is $152994 +in.representative_income 153006 Representative total house income in the dwelling unit is $153006 +in.representative_income 153013 Representative total house income in the dwelling unit is $153013 +in.representative_income 153023 Representative total house income in the dwelling unit is $153023 +in.representative_income 153037 Representative total house income in the dwelling unit is $153037 +in.representative_income 153068 Representative total house income in the dwelling unit is $153068 +in.representative_income 153074 Representative total house income in the dwelling unit is $153074 +in.representative_income 153076 Representative total house income in the dwelling unit is $153076 +in.representative_income 153087 Representative total house income in the dwelling unit is $153087 +in.representative_income 153088 Representative total house income in the dwelling unit is $153088 +in.representative_income 153102 Representative total house income in the dwelling unit is $153102 +in.representative_income 153108 Representative total house income in the dwelling unit is $153108 +in.representative_income 153120 Representative total house income in the dwelling unit is $153120 +in.representative_income 153128 Representative total house income in the dwelling unit is $153128 +in.representative_income 153145 Representative total house income in the dwelling unit is $153145 +in.representative_income 153168 Representative total house income in the dwelling unit is $153168 +in.representative_income 153171 Representative total house income in the dwelling unit is $153171 +in.representative_income 153172 Representative total house income in the dwelling unit is $153172 +in.representative_income 153178 Representative total house income in the dwelling unit is $153178 +in.representative_income 153182 Representative total house income in the dwelling unit is $153182 +in.representative_income 153191 Representative total house income in the dwelling unit is $153191 +in.representative_income 153192 Representative total house income in the dwelling unit is $153192 +in.representative_income 153210 Representative total house income in the dwelling unit is $153210 +in.representative_income 153235 Representative total house income in the dwelling unit is $153235 +in.representative_income 153239 Representative total house income in the dwelling unit is $153239 +in.representative_income 153273 Representative total house income in the dwelling unit is $153273 +in.representative_income 153287 Representative total house income in the dwelling unit is $153287 +in.representative_income 153288 Representative total house income in the dwelling unit is $153288 +in.representative_income 153290 Representative total house income in the dwelling unit is $153290 +in.representative_income 153319 Representative total house income in the dwelling unit is $153319 +in.representative_income 153325 Representative total house income in the dwelling unit is $153325 +in.representative_income 153340 Representative total house income in the dwelling unit is $153340 +in.representative_income 153342 Representative total house income in the dwelling unit is $153342 +in.representative_income 153357 Representative total house income in the dwelling unit is $153357 +in.representative_income 153364 Representative total house income in the dwelling unit is $153364 +in.representative_income 153371 Representative total house income in the dwelling unit is $153371 +in.representative_income 153377 Representative total house income in the dwelling unit is $153377 +in.representative_income 153396 Representative total house income in the dwelling unit is $153396 +in.representative_income 153406 Representative total house income in the dwelling unit is $153406 +in.representative_income 153427 Representative total house income in the dwelling unit is $153427 +in.representative_income 153436 Representative total house income in the dwelling unit is $153436 +in.representative_income 153441 Representative total house income in the dwelling unit is $153441 +in.representative_income 153445 Representative total house income in the dwelling unit is $153445 +in.representative_income 153449 Representative total house income in the dwelling unit is $153449 +in.representative_income 153450 Representative total house income in the dwelling unit is $153450 +in.representative_income 153471 Representative total house income in the dwelling unit is $153471 +in.representative_income 153480 Representative total house income in the dwelling unit is $153480 +in.representative_income 153483 Representative total house income in the dwelling unit is $153483 +in.representative_income 153497 Representative total house income in the dwelling unit is $153497 +in.representative_income 153503 Representative total house income in the dwelling unit is $153503 +in.representative_income 153504 Representative total house income in the dwelling unit is $153504 +in.representative_income 153507 Representative total house income in the dwelling unit is $153507 +in.representative_income 153509 Representative total house income in the dwelling unit is $153509 +in.representative_income 153535 Representative total house income in the dwelling unit is $153535 +in.representative_income 153540 Representative total house income in the dwelling unit is $153540 +in.representative_income 153542 Representative total house income in the dwelling unit is $153542 +in.representative_income 153551 Representative total house income in the dwelling unit is $153551 +in.representative_income 153564 Representative total house income in the dwelling unit is $153564 +in.representative_income 153582 Representative total house income in the dwelling unit is $153582 +in.representative_income 153583 Representative total house income in the dwelling unit is $153583 +in.representative_income 153593 Representative total house income in the dwelling unit is $153593 +in.representative_income 153604 Representative total house income in the dwelling unit is $153604 +in.representative_income 153611 Representative total house income in the dwelling unit is $153611 +in.representative_income 153633 Representative total house income in the dwelling unit is $153633 +in.representative_income 153643 Representative total house income in the dwelling unit is $153643 +in.representative_income 153656 Representative total house income in the dwelling unit is $153656 +in.representative_income 153686 Representative total house income in the dwelling unit is $153686 +in.representative_income 153687 Representative total house income in the dwelling unit is $153687 +in.representative_income 153691 Representative total house income in the dwelling unit is $153691 +in.representative_income 153697 Representative total house income in the dwelling unit is $153697 +in.representative_income 153709 Representative total house income in the dwelling unit is $153709 +in.representative_income 153718 Representative total house income in the dwelling unit is $153718 +in.representative_income 153719 Representative total house income in the dwelling unit is $153719 +in.representative_income 153744 Representative total house income in the dwelling unit is $153744 +in.representative_income 153751 Representative total house income in the dwelling unit is $153751 +in.representative_income 153761 Representative total house income in the dwelling unit is $153761 +in.representative_income 153789 Representative total house income in the dwelling unit is $153789 +in.representative_income 153805 Representative total house income in the dwelling unit is $153805 +in.representative_income 153815 Representative total house income in the dwelling unit is $153815 +in.representative_income 153824 Representative total house income in the dwelling unit is $153824 +in.representative_income 153845 Representative total house income in the dwelling unit is $153845 +in.representative_income 153856 Representative total house income in the dwelling unit is $153856 +in.representative_income 153859 Representative total house income in the dwelling unit is $153859 +in.representative_income 153865 Representative total house income in the dwelling unit is $153865 +in.representative_income 153867 Representative total house income in the dwelling unit is $153867 +in.representative_income 153879 Representative total house income in the dwelling unit is $153879 +in.representative_income 153891 Representative total house income in the dwelling unit is $153891 +in.representative_income 153892 Representative total house income in the dwelling unit is $153892 +in.representative_income 153896 Representative total house income in the dwelling unit is $153896 +in.representative_income 153902 Representative total house income in the dwelling unit is $153902 +in.representative_income 153932 Representative total house income in the dwelling unit is $153932 +in.representative_income 153944 Representative total house income in the dwelling unit is $153944 +in.representative_income 153946 Representative total house income in the dwelling unit is $153946 +in.representative_income 153962 Representative total house income in the dwelling unit is $153962 +in.representative_income 153966 Representative total house income in the dwelling unit is $153966 +in.representative_income 153967 Representative total house income in the dwelling unit is $153967 +in.representative_income 153973 Representative total house income in the dwelling unit is $153973 +in.representative_income 153983 Representative total house income in the dwelling unit is $153983 +in.representative_income 153996 Representative total house income in the dwelling unit is $153996 +in.representative_income 154011 Representative total house income in the dwelling unit is $154011 +in.representative_income 154040 Representative total house income in the dwelling unit is $154040 +in.representative_income 154047 Representative total house income in the dwelling unit is $154047 +in.representative_income 154060 Representative total house income in the dwelling unit is $154060 +in.representative_income 154066 Representative total house income in the dwelling unit is $154066 +in.representative_income 154067 Representative total house income in the dwelling unit is $154067 +in.representative_income 154068 Representative total house income in the dwelling unit is $154068 +in.representative_income 154075 Representative total house income in the dwelling unit is $154075 +in.representative_income 154078 Representative total house income in the dwelling unit is $154078 +in.representative_income 154082 Representative total house income in the dwelling unit is $154082 +in.representative_income 154097 Representative total house income in the dwelling unit is $154097 +in.representative_income 154099 Representative total house income in the dwelling unit is $154099 +in.representative_income 154128 Representative total house income in the dwelling unit is $154128 +in.representative_income 154141 Representative total house income in the dwelling unit is $154141 +in.representative_income 154147 Representative total house income in the dwelling unit is $154147 +in.representative_income 154148 Representative total house income in the dwelling unit is $154148 +in.representative_income 154178 Representative total house income in the dwelling unit is $154178 +in.representative_income 154181 Representative total house income in the dwelling unit is $154181 +in.representative_income 154183 Representative total house income in the dwelling unit is $154183 +in.representative_income 154231 Representative total house income in the dwelling unit is $154231 +in.representative_income 154236 Representative total house income in the dwelling unit is $154236 +in.representative_income 154249 Representative total house income in the dwelling unit is $154249 +in.representative_income 154255 Representative total house income in the dwelling unit is $154255 +in.representative_income 154264 Representative total house income in the dwelling unit is $154264 +in.representative_income 154265 Representative total house income in the dwelling unit is $154265 +in.representative_income 154289 Representative total house income in the dwelling unit is $154289 +in.representative_income 154291 Representative total house income in the dwelling unit is $154291 +in.representative_income 154305 Representative total house income in the dwelling unit is $154305 +in.representative_income 154313 Representative total house income in the dwelling unit is $154313 +in.representative_income 154342 Representative total house income in the dwelling unit is $154342 +in.representative_income 154350 Representative total house income in the dwelling unit is $154350 +in.representative_income 154361 Representative total house income in the dwelling unit is $154361 +in.representative_income 154379 Representative total house income in the dwelling unit is $154379 +in.representative_income 154394 Representative total house income in the dwelling unit is $154394 +in.representative_income 154404 Representative total house income in the dwelling unit is $154404 +in.representative_income 154408 Representative total house income in the dwelling unit is $154408 +in.representative_income 154437 Representative total house income in the dwelling unit is $154437 +in.representative_income 154451 Representative total house income in the dwelling unit is $154451 +in.representative_income 154453 Representative total house income in the dwelling unit is $154453 +in.representative_income 154469 Representative total house income in the dwelling unit is $154469 +in.representative_income 154475 Representative total house income in the dwelling unit is $154475 +in.representative_income 154486 Representative total house income in the dwelling unit is $154486 +in.representative_income 154500 Representative total house income in the dwelling unit is $154500 +in.representative_income 154502 Representative total house income in the dwelling unit is $154502 +in.representative_income 154507 Representative total house income in the dwelling unit is $154507 +in.representative_income 154508 Representative total house income in the dwelling unit is $154508 +in.representative_income 154511 Representative total house income in the dwelling unit is $154511 +in.representative_income 154522 Representative total house income in the dwelling unit is $154522 +in.representative_income 154552 Representative total house income in the dwelling unit is $154552 +in.representative_income 154561 Representative total house income in the dwelling unit is $154561 +in.representative_income 154577 Representative total house income in the dwelling unit is $154577 +in.representative_income 154582 Representative total house income in the dwelling unit is $154582 +in.representative_income 154605 Representative total house income in the dwelling unit is $154605 +in.representative_income 154615 Representative total house income in the dwelling unit is $154615 +in.representative_income 154626 Representative total house income in the dwelling unit is $154626 +in.representative_income 154637 Representative total house income in the dwelling unit is $154637 +in.representative_income 154658 Representative total house income in the dwelling unit is $154658 +in.representative_income 154663 Representative total house income in the dwelling unit is $154663 +in.representative_income 154677 Representative total house income in the dwelling unit is $154677 +in.representative_income 154711 Representative total house income in the dwelling unit is $154711 +in.representative_income 154718 Representative total house income in the dwelling unit is $154718 +in.representative_income 154738 Representative total house income in the dwelling unit is $154738 +in.representative_income 154754 Representative total house income in the dwelling unit is $154754 +in.representative_income 154792 Representative total house income in the dwelling unit is $154792 +in.representative_income 154813 Representative total house income in the dwelling unit is $154813 +in.representative_income 154816 Representative total house income in the dwelling unit is $154816 +in.representative_income 154820 Representative total house income in the dwelling unit is $154820 +in.representative_income 154831 Representative total house income in the dwelling unit is $154831 +in.representative_income 154856 Representative total house income in the dwelling unit is $154856 +in.representative_income 154861 Representative total house income in the dwelling unit is $154861 +in.representative_income 154872 Representative total house income in the dwelling unit is $154872 +in.representative_income 154896 Representative total house income in the dwelling unit is $154896 +in.representative_income 154899 Representative total house income in the dwelling unit is $154899 +in.representative_income 154921 Representative total house income in the dwelling unit is $154921 +in.representative_income 154924 Representative total house income in the dwelling unit is $154924 +in.representative_income 154932 Representative total house income in the dwelling unit is $154932 +in.representative_income 154940 Representative total house income in the dwelling unit is $154940 +in.representative_income 154956 Representative total house income in the dwelling unit is $154956 +in.representative_income 155006 Representative total house income in the dwelling unit is $155006 +in.representative_income 155027 Representative total house income in the dwelling unit is $155027 +in.representative_income 155048 Representative total house income in the dwelling unit is $155048 +in.representative_income 155057 Representative total house income in the dwelling unit is $155057 +in.representative_income 155079 Representative total house income in the dwelling unit is $155079 +in.representative_income 155080 Representative total house income in the dwelling unit is $155080 +in.representative_income 155113 Representative total house income in the dwelling unit is $155113 +in.representative_income 155130 Representative total house income in the dwelling unit is $155130 +in.representative_income 155134 Representative total house income in the dwelling unit is $155134 +in.representative_income 155156 Representative total house income in the dwelling unit is $155156 +in.representative_income 155158 Representative total house income in the dwelling unit is $155158 +in.representative_income 155178 Representative total house income in the dwelling unit is $155178 +in.representative_income 155188 Representative total house income in the dwelling unit is $155188 +in.representative_income 155189 Representative total house income in the dwelling unit is $155189 +in.representative_income 155213 Representative total house income in the dwelling unit is $155213 +in.representative_income 155217 Representative total house income in the dwelling unit is $155217 +in.representative_income 155221 Representative total house income in the dwelling unit is $155221 +in.representative_income 155234 Representative total house income in the dwelling unit is $155234 +in.representative_income 155238 Representative total house income in the dwelling unit is $155238 +in.representative_income 155259 Representative total house income in the dwelling unit is $155259 +in.representative_income 155263 Representative total house income in the dwelling unit is $155263 +in.representative_income 155312 Representative total house income in the dwelling unit is $155312 +in.representative_income 155337 Representative total house income in the dwelling unit is $155337 +in.representative_income 155339 Representative total house income in the dwelling unit is $155339 +in.representative_income 155344 Representative total house income in the dwelling unit is $155344 +in.representative_income 155361 Representative total house income in the dwelling unit is $155361 +in.representative_income 155370 Representative total house income in the dwelling unit is $155370 +in.representative_income 155371 Representative total house income in the dwelling unit is $155371 +in.representative_income 155429 Representative total house income in the dwelling unit is $155429 +in.representative_income 155436 Representative total house income in the dwelling unit is $155436 +in.representative_income 155439 Representative total house income in the dwelling unit is $155439 +in.representative_income 155449 Representative total house income in the dwelling unit is $155449 +in.representative_income 155461 Representative total house income in the dwelling unit is $155461 +in.representative_income 155479 Representative total house income in the dwelling unit is $155479 +in.representative_income 155489 Representative total house income in the dwelling unit is $155489 +in.representative_income 155542 Representative total house income in the dwelling unit is $155542 +in.representative_income 155554 Representative total house income in the dwelling unit is $155554 +in.representative_income 155562 Representative total house income in the dwelling unit is $155562 +in.representative_income 155587 Representative total house income in the dwelling unit is $155587 +in.representative_income 155620 Representative total house income in the dwelling unit is $155620 +in.representative_income 155641 Representative total house income in the dwelling unit is $155641 +in.representative_income 155646 Representative total house income in the dwelling unit is $155646 +in.representative_income 155650 Representative total house income in the dwelling unit is $155650 +in.representative_income 155659 Representative total house income in the dwelling unit is $155659 +in.representative_income 155663 Representative total house income in the dwelling unit is $155663 +in.representative_income 155696 Representative total house income in the dwelling unit is $155696 +in.representative_income 155698 Representative total house income in the dwelling unit is $155698 +in.representative_income 155731 Representative total house income in the dwelling unit is $155731 +in.representative_income 155749 Representative total house income in the dwelling unit is $155749 +in.representative_income 155757 Representative total house income in the dwelling unit is $155757 +in.representative_income 155764 Representative total house income in the dwelling unit is $155764 +in.representative_income 155766 Representative total house income in the dwelling unit is $155766 +in.representative_income 155780 Representative total house income in the dwelling unit is $155780 +in.representative_income 155804 Representative total house income in the dwelling unit is $155804 +in.representative_income 155865 Representative total house income in the dwelling unit is $155865 +in.representative_income 155871 Representative total house income in the dwelling unit is $155871 +in.representative_income 155955 Representative total house income in the dwelling unit is $155955 +in.representative_income 155966 Representative total house income in the dwelling unit is $155966 +in.representative_income 155973 Representative total house income in the dwelling unit is $155973 +in.representative_income 155976 Representative total house income in the dwelling unit is $155976 +in.representative_income 156020 Representative total house income in the dwelling unit is $156020 +in.representative_income 156047 Representative total house income in the dwelling unit is $156047 +in.representative_income 156058 Representative total house income in the dwelling unit is $156058 +in.representative_income 156067 Representative total house income in the dwelling unit is $156067 +in.representative_income 156079 Representative total house income in the dwelling unit is $156079 +in.representative_income 156082 Representative total house income in the dwelling unit is $156082 +in.representative_income 156092 Representative total house income in the dwelling unit is $156092 +in.representative_income 156113 Representative total house income in the dwelling unit is $156113 +in.representative_income 156128 Representative total house income in the dwelling unit is $156128 +in.representative_income 156162 Representative total house income in the dwelling unit is $156162 +in.representative_income 156187 Representative total house income in the dwelling unit is $156187 +in.representative_income 156197 Representative total house income in the dwelling unit is $156197 +in.representative_income 156236 Representative total house income in the dwelling unit is $156236 +in.representative_income 156265 Representative total house income in the dwelling unit is $156265 +in.representative_income 156269 Representative total house income in the dwelling unit is $156269 +in.representative_income 156292 Representative total house income in the dwelling unit is $156292 +in.representative_income 156368 Representative total house income in the dwelling unit is $156368 +in.representative_income 156370 Representative total house income in the dwelling unit is $156370 +in.representative_income 156398 Representative total house income in the dwelling unit is $156398 +in.representative_income 156402 Representative total house income in the dwelling unit is $156402 +in.representative_income 156453 Representative total house income in the dwelling unit is $156453 +in.representative_income 156471 Representative total house income in the dwelling unit is $156471 +in.representative_income 156504 Representative total house income in the dwelling unit is $156504 +in.representative_income 156509 Representative total house income in the dwelling unit is $156509 +in.representative_income 156533 Representative total house income in the dwelling unit is $156533 +in.representative_income 156535 Representative total house income in the dwelling unit is $156535 +in.representative_income 156560 Representative total house income in the dwelling unit is $156560 +in.representative_income 156572 Representative total house income in the dwelling unit is $156572 +in.representative_income 156574 Representative total house income in the dwelling unit is $156574 +in.representative_income 156609 Representative total house income in the dwelling unit is $156609 +in.representative_income 156616 Representative total house income in the dwelling unit is $156616 +in.representative_income 156623 Representative total house income in the dwelling unit is $156623 +in.representative_income 156668 Representative total house income in the dwelling unit is $156668 +in.representative_income 156673 Representative total house income in the dwelling unit is $156673 +in.representative_income 156698 Representative total house income in the dwelling unit is $156698 +in.representative_income 156723 Representative total house income in the dwelling unit is $156723 +in.representative_income 156775 Representative total house income in the dwelling unit is $156775 +in.representative_income 156776 Representative total house income in the dwelling unit is $156776 +in.representative_income 156781 Representative total house income in the dwelling unit is $156781 +in.representative_income 156832 Representative total house income in the dwelling unit is $156832 +in.representative_income 156840 Representative total house income in the dwelling unit is $156840 +in.representative_income 156876 Representative total house income in the dwelling unit is $156876 +in.representative_income 156884 Representative total house income in the dwelling unit is $156884 +in.representative_income 156925 Representative total house income in the dwelling unit is $156925 +in.representative_income 156938 Representative total house income in the dwelling unit is $156938 +in.representative_income 156977 Representative total house income in the dwelling unit is $156977 +in.representative_income 156982 Representative total house income in the dwelling unit is $156982 +in.representative_income 156992 Representative total house income in the dwelling unit is $156992 +in.representative_income 157003 Representative total house income in the dwelling unit is $157003 +in.representative_income 157031 Representative total house income in the dwelling unit is $157031 +in.representative_income 157046 Representative total house income in the dwelling unit is $157046 +in.representative_income 157064 Representative total house income in the dwelling unit is $157064 +in.representative_income 157078 Representative total house income in the dwelling unit is $157078 +in.representative_income 157089 Representative total house income in the dwelling unit is $157089 +in.representative_income 157090 Representative total house income in the dwelling unit is $157090 +in.representative_income 157100 Representative total house income in the dwelling unit is $157100 +in.representative_income 157137 Representative total house income in the dwelling unit is $157137 +in.representative_income 157145 Representative total house income in the dwelling unit is $157145 +in.representative_income 157147 Representative total house income in the dwelling unit is $157147 +in.representative_income 157153 Representative total house income in the dwelling unit is $157153 +in.representative_income 157179 Representative total house income in the dwelling unit is $157179 +in.representative_income 157193 Representative total house income in the dwelling unit is $157193 +in.representative_income 157208 Representative total house income in the dwelling unit is $157208 +in.representative_income 157229 Representative total house income in the dwelling unit is $157229 +in.representative_income 157260 Representative total house income in the dwelling unit is $157260 +in.representative_income 157262 Representative total house income in the dwelling unit is $157262 +in.representative_income 157280 Representative total house income in the dwelling unit is $157280 +in.representative_income 157317 Representative total house income in the dwelling unit is $157317 +in.representative_income 157368 Representative total house income in the dwelling unit is $157368 +in.representative_income 157371 Representative total house income in the dwelling unit is $157371 +in.representative_income 157425 Representative total house income in the dwelling unit is $157425 +in.representative_income 157472 Representative total house income in the dwelling unit is $157472 +in.representative_income 157503 Representative total house income in the dwelling unit is $157503 +in.representative_income 157533 Representative total house income in the dwelling unit is $157533 +in.representative_income 157547 Representative total house income in the dwelling unit is $157547 +in.representative_income 157558 Representative total house income in the dwelling unit is $157558 +in.representative_income 157583 Representative total house income in the dwelling unit is $157583 +in.representative_income 157587 Representative total house income in the dwelling unit is $157587 +in.representative_income 157641 Representative total house income in the dwelling unit is $157641 +in.representative_income 157748 Representative total house income in the dwelling unit is $157748 +in.representative_income 157750 Representative total house income in the dwelling unit is $157750 +in.representative_income 157769 Representative total house income in the dwelling unit is $157769 +in.representative_income 157797 Representative total house income in the dwelling unit is $157797 +in.representative_income 157812 Representative total house income in the dwelling unit is $157812 +in.representative_income 157856 Representative total house income in the dwelling unit is $157856 +in.representative_income 157875 Representative total house income in the dwelling unit is $157875 +in.representative_income 157904 Representative total house income in the dwelling unit is $157904 +in.representative_income 157908 Representative total house income in the dwelling unit is $157908 +in.representative_income 157915 Representative total house income in the dwelling unit is $157915 +in.representative_income 157964 Representative total house income in the dwelling unit is $157964 +in.representative_income 157986 Representative total house income in the dwelling unit is $157986 +in.representative_income 158019 Representative total house income in the dwelling unit is $158019 +in.representative_income 158088 Representative total house income in the dwelling unit is $158088 +in.representative_income 158181 Representative total house income in the dwelling unit is $158181 +in.representative_income 158189 Representative total house income in the dwelling unit is $158189 +in.representative_income 158190 Representative total house income in the dwelling unit is $158190 +in.representative_income 158203 Representative total house income in the dwelling unit is $158203 +in.representative_income 158212 Representative total house income in the dwelling unit is $158212 +in.representative_income 158227 Representative total house income in the dwelling unit is $158227 +in.representative_income 158289 Representative total house income in the dwelling unit is $158289 +in.representative_income 158290 Representative total house income in the dwelling unit is $158290 +in.representative_income 158297 Representative total house income in the dwelling unit is $158297 +in.representative_income 158328 Representative total house income in the dwelling unit is $158328 +in.representative_income 158333 Representative total house income in the dwelling unit is $158333 +in.representative_income 158391 Representative total house income in the dwelling unit is $158391 +in.representative_income 158402 Representative total house income in the dwelling unit is $158402 +in.representative_income 158431 Representative total house income in the dwelling unit is $158431 +in.representative_income 158497 Representative total house income in the dwelling unit is $158497 +in.representative_income 158505 Representative total house income in the dwelling unit is $158505 +in.representative_income 158507 Representative total house income in the dwelling unit is $158507 +in.representative_income 158534 Representative total house income in the dwelling unit is $158534 +in.representative_income 158593 Representative total house income in the dwelling unit is $158593 +in.representative_income 158613 Representative total house income in the dwelling unit is $158613 +in.representative_income 158638 Representative total house income in the dwelling unit is $158638 +in.representative_income 158694 Representative total house income in the dwelling unit is $158694 +in.representative_income 158721 Representative total house income in the dwelling unit is $158721 +in.representative_income 158740 Representative total house income in the dwelling unit is $158740 +in.representative_income 158741 Representative total house income in the dwelling unit is $158741 +in.representative_income 158763 Representative total house income in the dwelling unit is $158763 +in.representative_income 158795 Representative total house income in the dwelling unit is $158795 +in.representative_income 158823 Representative total house income in the dwelling unit is $158823 +in.representative_income 158830 Representative total house income in the dwelling unit is $158830 +in.representative_income 158843 Representative total house income in the dwelling unit is $158843 +in.representative_income 158870 Representative total house income in the dwelling unit is $158870 +in.representative_income 158924 Representative total house income in the dwelling unit is $158924 +in.representative_income 158947 Representative total house income in the dwelling unit is $158947 +in.representative_income 158961 Representative total house income in the dwelling unit is $158961 +in.representative_income 158967 Representative total house income in the dwelling unit is $158967 +in.representative_income 159035 Representative total house income in the dwelling unit is $159035 +in.representative_income 159045 Representative total house income in the dwelling unit is $159045 +in.representative_income 159050 Representative total house income in the dwelling unit is $159050 +in.representative_income 159085 Representative total house income in the dwelling unit is $159085 +in.representative_income 159098 Representative total house income in the dwelling unit is $159098 +in.representative_income 159140 Representative total house income in the dwelling unit is $159140 +in.representative_income 159142 Representative total house income in the dwelling unit is $159142 +in.representative_income 159209 Representative total house income in the dwelling unit is $159209 +in.representative_income 159218 Representative total house income in the dwelling unit is $159218 +in.representative_income 159245 Representative total house income in the dwelling unit is $159245 +in.representative_income 159300 Representative total house income in the dwelling unit is $159300 +in.representative_income 159351 Representative total house income in the dwelling unit is $159351 +in.representative_income 159369 Representative total house income in the dwelling unit is $159369 +in.representative_income 159407 Representative total house income in the dwelling unit is $159407 +in.representative_income 159408 Representative total house income in the dwelling unit is $159408 +in.representative_income 159462 Representative total house income in the dwelling unit is $159462 +in.representative_income 159477 Representative total house income in the dwelling unit is $159477 +in.representative_income 159514 Representative total house income in the dwelling unit is $159514 +in.representative_income 159552 Representative total house income in the dwelling unit is $159552 +in.representative_income 159566 Representative total house income in the dwelling unit is $159566 +in.representative_income 159585 Representative total house income in the dwelling unit is $159585 +in.representative_income 159603 Representative total house income in the dwelling unit is $159603 +in.representative_income 159622 Representative total house income in the dwelling unit is $159622 +in.representative_income 159668 Representative total house income in the dwelling unit is $159668 +in.representative_income 159742 Representative total house income in the dwelling unit is $159742 +in.representative_income 159771 Representative total house income in the dwelling unit is $159771 +in.representative_income 159802 Representative total house income in the dwelling unit is $159802 +in.representative_income 159875 Representative total house income in the dwelling unit is $159875 +in.representative_income 159910 Representative total house income in the dwelling unit is $159910 +in.representative_income 159914 Representative total house income in the dwelling unit is $159914 +in.representative_income 159944 Representative total house income in the dwelling unit is $159944 +in.representative_income 160007 Representative total house income in the dwelling unit is $160007 +in.representative_income 160018 Representative total house income in the dwelling unit is $160018 +in.representative_income 160081 Representative total house income in the dwelling unit is $160081 +in.representative_income 160089 Representative total house income in the dwelling unit is $160089 +in.representative_income 160108 Representative total house income in the dwelling unit is $160108 +in.representative_income 160125 Representative total house income in the dwelling unit is $160125 +in.representative_income 160158 Representative total house income in the dwelling unit is $160158 +in.representative_income 160185 Representative total house income in the dwelling unit is $160185 +in.representative_income 160233 Representative total house income in the dwelling unit is $160233 +in.representative_income 160260 Representative total house income in the dwelling unit is $160260 +in.representative_income 160288 Representative total house income in the dwelling unit is $160288 +in.representative_income 160300 Representative total house income in the dwelling unit is $160300 +in.representative_income 160341 Representative total house income in the dwelling unit is $160341 +in.representative_income 160390 Representative total house income in the dwelling unit is $160390 +in.representative_income 160411 Representative total house income in the dwelling unit is $160411 +in.representative_income 160450 Representative total house income in the dwelling unit is $160450 +in.representative_income 160511 Representative total house income in the dwelling unit is $160511 +in.representative_income 160512 Representative total house income in the dwelling unit is $160512 +in.representative_income 160558 Representative total house income in the dwelling unit is $160558 +in.representative_income 160588 Representative total house income in the dwelling unit is $160588 +in.representative_income 160597 Representative total house income in the dwelling unit is $160597 +in.representative_income 160613 Representative total house income in the dwelling unit is $160613 +in.representative_income 160616 Representative total house income in the dwelling unit is $160616 +in.representative_income 160666 Representative total house income in the dwelling unit is $160666 +in.representative_income 160695 Representative total house income in the dwelling unit is $160695 +in.representative_income 160698 Representative total house income in the dwelling unit is $160698 +in.representative_income 160700 Representative total house income in the dwelling unit is $160700 +in.representative_income 160803 Representative total house income in the dwelling unit is $160803 +in.representative_income 160906 Representative total house income in the dwelling unit is $160906 +in.representative_income 160910 Representative total house income in the dwelling unit is $160910 +in.representative_income 160916 Representative total house income in the dwelling unit is $160916 +in.representative_income 160932 Representative total house income in the dwelling unit is $160932 +in.representative_income 160933 Representative total house income in the dwelling unit is $160933 +in.representative_income 160990 Representative total house income in the dwelling unit is $160990 +in.representative_income 161009 Representative total house income in the dwelling unit is $161009 +in.representative_income 161018 Representative total house income in the dwelling unit is $161018 +in.representative_income 161031 Representative total house income in the dwelling unit is $161031 +in.representative_income 161038 Representative total house income in the dwelling unit is $161038 +in.representative_income 161044 Representative total house income in the dwelling unit is $161044 +in.representative_income 161113 Representative total house income in the dwelling unit is $161113 +in.representative_income 161118 Representative total house income in the dwelling unit is $161118 +in.representative_income 161124 Representative total house income in the dwelling unit is $161124 +in.representative_income 161207 Representative total house income in the dwelling unit is $161207 +in.representative_income 161216 Representative total house income in the dwelling unit is $161216 +in.representative_income 161219 Representative total house income in the dwelling unit is $161219 +in.representative_income 161232 Representative total house income in the dwelling unit is $161232 +in.representative_income 161319 Representative total house income in the dwelling unit is $161319 +in.representative_income 161320 Representative total house income in the dwelling unit is $161320 +in.representative_income 161339 Representative total house income in the dwelling unit is $161339 +in.representative_income 161340 Representative total house income in the dwelling unit is $161340 +in.representative_income 161354 Representative total house income in the dwelling unit is $161354 +in.representative_income 161360 Representative total house income in the dwelling unit is $161360 +in.representative_income 161422 Representative total house income in the dwelling unit is $161422 +in.representative_income 161447 Representative total house income in the dwelling unit is $161447 +in.representative_income 161458 Representative total house income in the dwelling unit is $161458 +in.representative_income 161461 Representative total house income in the dwelling unit is $161461 +in.representative_income 161500 Representative total house income in the dwelling unit is $161500 +in.representative_income 161522 Representative total house income in the dwelling unit is $161522 +in.representative_income 161525 Representative total house income in the dwelling unit is $161525 +in.representative_income 161530 Representative total house income in the dwelling unit is $161530 +in.representative_income 161566 Representative total house income in the dwelling unit is $161566 +in.representative_income 161623 Representative total house income in the dwelling unit is $161623 +in.representative_income 161628 Representative total house income in the dwelling unit is $161628 +in.representative_income 161661 Representative total house income in the dwelling unit is $161661 +in.representative_income 161671 Representative total house income in the dwelling unit is $161671 +in.representative_income 161704 Representative total house income in the dwelling unit is $161704 +in.representative_income 161724 Representative total house income in the dwelling unit is $161724 +in.representative_income 161732 Representative total house income in the dwelling unit is $161732 +in.representative_income 161734 Representative total house income in the dwelling unit is $161734 +in.representative_income 161783 Representative total house income in the dwelling unit is $161783 +in.representative_income 161825 Representative total house income in the dwelling unit is $161825 +in.representative_income 161830 Representative total house income in the dwelling unit is $161830 +in.representative_income 161835 Representative total house income in the dwelling unit is $161835 +in.representative_income 161854 Representative total house income in the dwelling unit is $161854 +in.representative_income 161871 Representative total house income in the dwelling unit is $161871 +in.representative_income 161876 Representative total house income in the dwelling unit is $161876 +in.representative_income 161882 Representative total house income in the dwelling unit is $161882 +in.representative_income 161897 Representative total house income in the dwelling unit is $161897 +in.representative_income 161927 Representative total house income in the dwelling unit is $161927 +in.representative_income 161938 Representative total house income in the dwelling unit is $161938 +in.representative_income 161959 Representative total house income in the dwelling unit is $161959 +in.representative_income 162027 Representative total house income in the dwelling unit is $162027 +in.representative_income 162066 Representative total house income in the dwelling unit is $162066 +in.representative_income 162071 Representative total house income in the dwelling unit is $162071 +in.representative_income 162072 Representative total house income in the dwelling unit is $162072 +in.representative_income 162075 Representative total house income in the dwelling unit is $162075 +in.representative_income 162082 Representative total house income in the dwelling unit is $162082 +in.representative_income 162091 Representative total house income in the dwelling unit is $162091 +in.representative_income 162092 Representative total house income in the dwelling unit is $162092 +in.representative_income 162103 Representative total house income in the dwelling unit is $162103 +in.representative_income 162125 Representative total house income in the dwelling unit is $162125 +in.representative_income 162128 Representative total house income in the dwelling unit is $162128 +in.representative_income 162136 Representative total house income in the dwelling unit is $162136 +in.representative_income 162179 Representative total house income in the dwelling unit is $162179 +in.representative_income 162199 Representative total house income in the dwelling unit is $162199 +in.representative_income 162211 Representative total house income in the dwelling unit is $162211 +in.representative_income 162229 Representative total house income in the dwelling unit is $162229 +in.representative_income 162247 Representative total house income in the dwelling unit is $162247 +in.representative_income 162280 Representative total house income in the dwelling unit is $162280 +in.representative_income 162287 Representative total house income in the dwelling unit is $162287 +in.representative_income 162304 Representative total house income in the dwelling unit is $162304 +in.representative_income 162305 Representative total house income in the dwelling unit is $162305 +in.representative_income 162313 Representative total house income in the dwelling unit is $162313 +in.representative_income 162330 Representative total house income in the dwelling unit is $162330 +in.representative_income 162351 Representative total house income in the dwelling unit is $162351 +in.representative_income 162367 Representative total house income in the dwelling unit is $162367 +in.representative_income 162395 Representative total house income in the dwelling unit is $162395 +in.representative_income 162409 Representative total house income in the dwelling unit is $162409 +in.representative_income 162413 Representative total house income in the dwelling unit is $162413 +in.representative_income 162416 Representative total house income in the dwelling unit is $162416 +in.representative_income 162437 Representative total house income in the dwelling unit is $162437 +in.representative_income 162449 Representative total house income in the dwelling unit is $162449 +in.representative_income 162452 Representative total house income in the dwelling unit is $162452 +in.representative_income 162454 Representative total house income in the dwelling unit is $162454 +in.representative_income 162474 Representative total house income in the dwelling unit is $162474 +in.representative_income 162503 Representative total house income in the dwelling unit is $162503 +in.representative_income 162514 Representative total house income in the dwelling unit is $162514 +in.representative_income 162520 Representative total house income in the dwelling unit is $162520 +in.representative_income 162556 Representative total house income in the dwelling unit is $162556 +in.representative_income 162610 Representative total house income in the dwelling unit is $162610 +in.representative_income 162620 Representative total house income in the dwelling unit is $162620 +in.representative_income 162628 Representative total house income in the dwelling unit is $162628 +in.representative_income 162633 Representative total house income in the dwelling unit is $162633 +in.representative_income 162718 Representative total house income in the dwelling unit is $162718 +in.representative_income 162719 Representative total house income in the dwelling unit is $162719 +in.representative_income 162734 Representative total house income in the dwelling unit is $162734 +in.representative_income 162735 Representative total house income in the dwelling unit is $162735 +in.representative_income 162743 Representative total house income in the dwelling unit is $162743 +in.representative_income 162763 Representative total house income in the dwelling unit is $162763 +in.representative_income 162831 Representative total house income in the dwelling unit is $162831 +in.representative_income 162842 Representative total house income in the dwelling unit is $162842 +in.representative_income 162935 Representative total house income in the dwelling unit is $162935 +in.representative_income 162936 Representative total house income in the dwelling unit is $162936 +in.representative_income 162937 Representative total house income in the dwelling unit is $162937 +in.representative_income 162949 Representative total house income in the dwelling unit is $162949 +in.representative_income 162970 Representative total house income in the dwelling unit is $162970 +in.representative_income 163037 Representative total house income in the dwelling unit is $163037 +in.representative_income 163042 Representative total house income in the dwelling unit is $163042 +in.representative_income 163043 Representative total house income in the dwelling unit is $163043 +in.representative_income 163138 Representative total house income in the dwelling unit is $163138 +in.representative_income 163147 Representative total house income in the dwelling unit is $163147 +in.representative_income 163151 Representative total house income in the dwelling unit is $163151 +in.representative_income 163164 Representative total house income in the dwelling unit is $163164 +in.representative_income 163165 Representative total house income in the dwelling unit is $163165 +in.representative_income 163175 Representative total house income in the dwelling unit is $163175 +in.representative_income 163227 Representative total house income in the dwelling unit is $163227 +in.representative_income 163253 Representative total house income in the dwelling unit is $163253 +in.representative_income 163259 Representative total house income in the dwelling unit is $163259 +in.representative_income 163273 Representative total house income in the dwelling unit is $163273 +in.representative_income 163279 Representative total house income in the dwelling unit is $163279 +in.representative_income 163293 Representative total house income in the dwelling unit is $163293 +in.representative_income 163314 Representative total house income in the dwelling unit is $163314 +in.representative_income 163347 Representative total house income in the dwelling unit is $163347 +in.representative_income 163367 Representative total house income in the dwelling unit is $163367 +in.representative_income 163379 Representative total house income in the dwelling unit is $163379 +in.representative_income 163382 Representative total house income in the dwelling unit is $163382 +in.representative_income 163425 Representative total house income in the dwelling unit is $163425 +in.representative_income 163441 Representative total house income in the dwelling unit is $163441 +in.representative_income 163464 Representative total house income in the dwelling unit is $163464 +in.representative_income 163475 Representative total house income in the dwelling unit is $163475 +in.representative_income 163485 Representative total house income in the dwelling unit is $163485 +in.representative_income 163486 Representative total house income in the dwelling unit is $163486 +in.representative_income 163507 Representative total house income in the dwelling unit is $163507 +in.representative_income 163516 Representative total house income in the dwelling unit is $163516 +in.representative_income 163537 Representative total house income in the dwelling unit is $163537 +in.representative_income 163542 Representative total house income in the dwelling unit is $163542 +in.representative_income 163569 Representative total house income in the dwelling unit is $163569 +in.representative_income 163588 Representative total house income in the dwelling unit is $163588 +in.representative_income 163623 Representative total house income in the dwelling unit is $163623 +in.representative_income 163643 Representative total house income in the dwelling unit is $163643 +in.representative_income 163675 Representative total house income in the dwelling unit is $163675 +in.representative_income 163691 Representative total house income in the dwelling unit is $163691 +in.representative_income 163692 Representative total house income in the dwelling unit is $163692 +in.representative_income 163694 Representative total house income in the dwelling unit is $163694 +in.representative_income 163701 Representative total house income in the dwelling unit is $163701 +in.representative_income 163745 Representative total house income in the dwelling unit is $163745 +in.representative_income 163770 Representative total house income in the dwelling unit is $163770 +in.representative_income 163780 Representative total house income in the dwelling unit is $163780 +in.representative_income 163794 Representative total house income in the dwelling unit is $163794 +in.representative_income 163799 Representative total house income in the dwelling unit is $163799 +in.representative_income 163809 Representative total house income in the dwelling unit is $163809 +in.representative_income 163846 Representative total house income in the dwelling unit is $163846 +in.representative_income 163885 Representative total house income in the dwelling unit is $163885 +in.representative_income 163898 Representative total house income in the dwelling unit is $163898 +in.representative_income 163907 Representative total house income in the dwelling unit is $163907 +in.representative_income 163915 Representative total house income in the dwelling unit is $163915 +in.representative_income 163918 Representative total house income in the dwelling unit is $163918 +in.representative_income 163940 Representative total house income in the dwelling unit is $163940 +in.representative_income 163947 Representative total house income in the dwelling unit is $163947 +in.representative_income 163980 Representative total house income in the dwelling unit is $163980 +in.representative_income 163992 Representative total house income in the dwelling unit is $163992 +in.representative_income 163995 Representative total house income in the dwelling unit is $163995 +in.representative_income 164001 Representative total house income in the dwelling unit is $164001 +in.representative_income 164002 Representative total house income in the dwelling unit is $164002 +in.representative_income 164015 Representative total house income in the dwelling unit is $164015 +in.representative_income 164023 Representative total house income in the dwelling unit is $164023 +in.representative_income 164032 Representative total house income in the dwelling unit is $164032 +in.representative_income 164048 Representative total house income in the dwelling unit is $164048 +in.representative_income 164079 Representative total house income in the dwelling unit is $164079 +in.representative_income 164097 Representative total house income in the dwelling unit is $164097 +in.representative_income 164104 Representative total house income in the dwelling unit is $164104 +in.representative_income 164118 Representative total house income in the dwelling unit is $164118 +in.representative_income 164123 Representative total house income in the dwelling unit is $164123 +in.representative_income 164130 Representative total house income in the dwelling unit is $164130 +in.representative_income 164140 Representative total house income in the dwelling unit is $164140 +in.representative_income 164149 Representative total house income in the dwelling unit is $164149 +in.representative_income 164179 Representative total house income in the dwelling unit is $164179 +in.representative_income 164185 Representative total house income in the dwelling unit is $164185 +in.representative_income 164202 Representative total house income in the dwelling unit is $164202 +in.representative_income 164231 Representative total house income in the dwelling unit is $164231 +in.representative_income 164235 Representative total house income in the dwelling unit is $164235 +in.representative_income 164238 Representative total house income in the dwelling unit is $164238 +in.representative_income 164250 Representative total house income in the dwelling unit is $164250 +in.representative_income 164307 Representative total house income in the dwelling unit is $164307 +in.representative_income 164310 Representative total house income in the dwelling unit is $164310 +in.representative_income 164338 Representative total house income in the dwelling unit is $164338 +in.representative_income 164343 Representative total house income in the dwelling unit is $164343 +in.representative_income 164345 Representative total house income in the dwelling unit is $164345 +in.representative_income 164351 Representative total house income in the dwelling unit is $164351 +in.representative_income 164413 Representative total house income in the dwelling unit is $164413 +in.representative_income 164423 Representative total house income in the dwelling unit is $164423 +in.representative_income 164448 Representative total house income in the dwelling unit is $164448 +in.representative_income 164450 Representative total house income in the dwelling unit is $164450 +in.representative_income 164452 Representative total house income in the dwelling unit is $164452 +in.representative_income 164465 Representative total house income in the dwelling unit is $164465 +in.representative_income 164517 Representative total house income in the dwelling unit is $164517 +in.representative_income 164518 Representative total house income in the dwelling unit is $164518 +in.representative_income 164550 Representative total house income in the dwelling unit is $164550 +in.representative_income 164553 Representative total house income in the dwelling unit is $164553 +in.representative_income 164556 Representative total house income in the dwelling unit is $164556 +in.representative_income 164561 Representative total house income in the dwelling unit is $164561 +in.representative_income 164582 Representative total house income in the dwelling unit is $164582 +in.representative_income 164620 Representative total house income in the dwelling unit is $164620 +in.representative_income 164654 Representative total house income in the dwelling unit is $164654 +in.representative_income 164656 Representative total house income in the dwelling unit is $164656 +in.representative_income 164663 Representative total house income in the dwelling unit is $164663 +in.representative_income 164664 Representative total house income in the dwelling unit is $164664 +in.representative_income 164667 Representative total house income in the dwelling unit is $164667 +in.representative_income 164692 Representative total house income in the dwelling unit is $164692 +in.representative_income 164709 Representative total house income in the dwelling unit is $164709 +in.representative_income 164718 Representative total house income in the dwelling unit is $164718 +in.representative_income 164722 Representative total house income in the dwelling unit is $164722 +in.representative_income 164740 Representative total house income in the dwelling unit is $164740 +in.representative_income 164755 Representative total house income in the dwelling unit is $164755 +in.representative_income 164761 Representative total house income in the dwelling unit is $164761 +in.representative_income 164765 Representative total house income in the dwelling unit is $164765 +in.representative_income 164772 Representative total house income in the dwelling unit is $164772 +in.representative_income 164775 Representative total house income in the dwelling unit is $164775 +in.representative_income 164804 Representative total house income in the dwelling unit is $164804 +in.representative_income 164805 Representative total house income in the dwelling unit is $164805 +in.representative_income 164826 Representative total house income in the dwelling unit is $164826 +in.representative_income 164835 Representative total house income in the dwelling unit is $164835 +in.representative_income 164856 Representative total house income in the dwelling unit is $164856 +in.representative_income 164864 Representative total house income in the dwelling unit is $164864 +in.representative_income 164880 Representative total house income in the dwelling unit is $164880 +in.representative_income 164882 Representative total house income in the dwelling unit is $164882 +in.representative_income 164903 Representative total house income in the dwelling unit is $164903 +in.representative_income 164929 Representative total house income in the dwelling unit is $164929 +in.representative_income 164940 Representative total house income in the dwelling unit is $164940 +in.representative_income 164956 Representative total house income in the dwelling unit is $164956 +in.representative_income 164957 Representative total house income in the dwelling unit is $164957 +in.representative_income 164987 Representative total house income in the dwelling unit is $164987 +in.representative_income 164989 Representative total house income in the dwelling unit is $164989 +in.representative_income 165011 Representative total house income in the dwelling unit is $165011 +in.representative_income 165022 Representative total house income in the dwelling unit is $165022 +in.representative_income 165032 Representative total house income in the dwelling unit is $165032 +in.representative_income 165046 Representative total house income in the dwelling unit is $165046 +in.representative_income 165054 Representative total house income in the dwelling unit is $165054 +in.representative_income 165058 Representative total house income in the dwelling unit is $165058 +in.representative_income 165088 Representative total house income in the dwelling unit is $165088 +in.representative_income 165095 Representative total house income in the dwelling unit is $165095 +in.representative_income 165096 Representative total house income in the dwelling unit is $165096 +in.representative_income 165099 Representative total house income in the dwelling unit is $165099 +in.representative_income 165104 Representative total house income in the dwelling unit is $165104 +in.representative_income 165108 Representative total house income in the dwelling unit is $165108 +in.representative_income 165113 Representative total house income in the dwelling unit is $165113 +in.representative_income 165151 Representative total house income in the dwelling unit is $165151 +in.representative_income 165159 Representative total house income in the dwelling unit is $165159 +in.representative_income 165171 Representative total house income in the dwelling unit is $165171 +in.representative_income 165179 Representative total house income in the dwelling unit is $165179 +in.representative_income 165204 Representative total house income in the dwelling unit is $165204 +in.representative_income 165208 Representative total house income in the dwelling unit is $165208 +in.representative_income 165228 Representative total house income in the dwelling unit is $165228 +in.representative_income 165238 Representative total house income in the dwelling unit is $165238 +in.representative_income 165240 Representative total house income in the dwelling unit is $165240 +in.representative_income 165257 Representative total house income in the dwelling unit is $165257 +in.representative_income 165280 Representative total house income in the dwelling unit is $165280 +in.representative_income 165311 Representative total house income in the dwelling unit is $165311 +in.representative_income 165312 Representative total house income in the dwelling unit is $165312 +in.representative_income 165313 Representative total house income in the dwelling unit is $165313 +in.representative_income 165329 Representative total house income in the dwelling unit is $165329 +in.representative_income 165341 Representative total house income in the dwelling unit is $165341 +in.representative_income 165355 Representative total house income in the dwelling unit is $165355 +in.representative_income 165361 Representative total house income in the dwelling unit is $165361 +in.representative_income 165362 Representative total house income in the dwelling unit is $165362 +in.representative_income 165366 Representative total house income in the dwelling unit is $165366 +in.representative_income 165373 Representative total house income in the dwelling unit is $165373 +in.representative_income 165383 Representative total house income in the dwelling unit is $165383 +in.representative_income 165419 Representative total house income in the dwelling unit is $165419 +in.representative_income 165420 Representative total house income in the dwelling unit is $165420 +in.representative_income 165445 Representative total house income in the dwelling unit is $165445 +in.representative_income 165462 Representative total house income in the dwelling unit is $165462 +in.representative_income 165468 Representative total house income in the dwelling unit is $165468 +in.representative_income 165472 Representative total house income in the dwelling unit is $165472 +in.representative_income 165499 Representative total house income in the dwelling unit is $165499 +in.representative_income 165521 Representative total house income in the dwelling unit is $165521 +in.representative_income 165526 Representative total house income in the dwelling unit is $165526 +in.representative_income 165527 Representative total house income in the dwelling unit is $165527 +in.representative_income 165528 Representative total house income in the dwelling unit is $165528 +in.representative_income 165548 Representative total house income in the dwelling unit is $165548 +in.representative_income 165563 Representative total house income in the dwelling unit is $165563 +in.representative_income 165573 Representative total house income in the dwelling unit is $165573 +in.representative_income 165580 Representative total house income in the dwelling unit is $165580 +in.representative_income 165582 Representative total house income in the dwelling unit is $165582 +in.representative_income 165589 Representative total house income in the dwelling unit is $165589 +in.representative_income 165590 Representative total house income in the dwelling unit is $165590 +in.representative_income 165604 Representative total house income in the dwelling unit is $165604 +in.representative_income 165616 Representative total house income in the dwelling unit is $165616 +in.representative_income 165623 Representative total house income in the dwelling unit is $165623 +in.representative_income 165633 Representative total house income in the dwelling unit is $165633 +in.representative_income 165636 Representative total house income in the dwelling unit is $165636 +in.representative_income 165651 Representative total house income in the dwelling unit is $165651 +in.representative_income 165657 Representative total house income in the dwelling unit is $165657 +in.representative_income 165664 Representative total house income in the dwelling unit is $165664 +in.representative_income 165678 Representative total house income in the dwelling unit is $165678 +in.representative_income 165704 Representative total house income in the dwelling unit is $165704 +in.representative_income 165714 Representative total house income in the dwelling unit is $165714 +in.representative_income 165740 Representative total house income in the dwelling unit is $165740 +in.representative_income 165744 Representative total house income in the dwelling unit is $165744 +in.representative_income 165755 Representative total house income in the dwelling unit is $165755 +in.representative_income 165765 Representative total house income in the dwelling unit is $165765 +in.representative_income 165770 Representative total house income in the dwelling unit is $165770 +in.representative_income 165784 Representative total house income in the dwelling unit is $165784 +in.representative_income 165785 Representative total house income in the dwelling unit is $165785 +in.representative_income 165840 Representative total house income in the dwelling unit is $165840 +in.representative_income 165846 Representative total house income in the dwelling unit is $165846 +in.representative_income 165848 Representative total house income in the dwelling unit is $165848 +in.representative_income 165852 Representative total house income in the dwelling unit is $165852 +in.representative_income 165857 Representative total house income in the dwelling unit is $165857 +in.representative_income 165858 Representative total house income in the dwelling unit is $165858 +in.representative_income 165866 Representative total house income in the dwelling unit is $165866 +in.representative_income 165868 Representative total house income in the dwelling unit is $165868 +in.representative_income 165890 Representative total house income in the dwelling unit is $165890 +in.representative_income 165916 Representative total house income in the dwelling unit is $165916 +in.representative_income 165930 Representative total house income in the dwelling unit is $165930 +in.representative_income 165955 Representative total house income in the dwelling unit is $165955 +in.representative_income 165960 Representative total house income in the dwelling unit is $165960 +in.representative_income 165961 Representative total house income in the dwelling unit is $165961 +in.representative_income 165967 Representative total house income in the dwelling unit is $165967 +in.representative_income 165995 Representative total house income in the dwelling unit is $165995 +in.representative_income 166019 Representative total house income in the dwelling unit is $166019 +in.representative_income 166064 Representative total house income in the dwelling unit is $166064 +in.representative_income 166068 Representative total house income in the dwelling unit is $166068 +in.representative_income 166069 Representative total house income in the dwelling unit is $166069 +in.representative_income 166074 Representative total house income in the dwelling unit is $166074 +in.representative_income 166078 Representative total house income in the dwelling unit is $166078 +in.representative_income 166090 Representative total house income in the dwelling unit is $166090 +in.representative_income 166100 Representative total house income in the dwelling unit is $166100 +in.representative_income 166106 Representative total house income in the dwelling unit is $166106 +in.representative_income 166167 Representative total house income in the dwelling unit is $166167 +in.representative_income 166169 Representative total house income in the dwelling unit is $166169 +in.representative_income 166170 Representative total house income in the dwelling unit is $166170 +in.representative_income 166176 Representative total house income in the dwelling unit is $166176 +in.representative_income 166200 Representative total house income in the dwelling unit is $166200 +in.representative_income 166202 Representative total house income in the dwelling unit is $166202 +in.representative_income 166206 Representative total house income in the dwelling unit is $166206 +in.representative_income 166227 Representative total house income in the dwelling unit is $166227 +in.representative_income 166229 Representative total house income in the dwelling unit is $166229 +in.representative_income 166233 Representative total house income in the dwelling unit is $166233 +in.representative_income 166259 Representative total house income in the dwelling unit is $166259 +in.representative_income 166270 Representative total house income in the dwelling unit is $166270 +in.representative_income 166271 Representative total house income in the dwelling unit is $166271 +in.representative_income 166276 Representative total house income in the dwelling unit is $166276 +in.representative_income 166277 Representative total house income in the dwelling unit is $166277 +in.representative_income 166281 Representative total house income in the dwelling unit is $166281 +in.representative_income 166284 Representative total house income in the dwelling unit is $166284 +in.representative_income 166311 Representative total house income in the dwelling unit is $166311 +in.representative_income 166320 Representative total house income in the dwelling unit is $166320 +in.representative_income 166338 Representative total house income in the dwelling unit is $166338 +in.representative_income 166360 Representative total house income in the dwelling unit is $166360 +in.representative_income 166364 Representative total house income in the dwelling unit is $166364 +in.representative_income 166371 Representative total house income in the dwelling unit is $166371 +in.representative_income 166373 Representative total house income in the dwelling unit is $166373 +in.representative_income 166385 Representative total house income in the dwelling unit is $166385 +in.representative_income 166392 Representative total house income in the dwelling unit is $166392 +in.representative_income 166393 Representative total house income in the dwelling unit is $166393 +in.representative_income 166401 Representative total house income in the dwelling unit is $166401 +in.representative_income 166411 Representative total house income in the dwelling unit is $166411 +in.representative_income 166416 Representative total house income in the dwelling unit is $166416 +in.representative_income 166417 Representative total house income in the dwelling unit is $166417 +in.representative_income 166418 Representative total house income in the dwelling unit is $166418 +in.representative_income 166421 Representative total house income in the dwelling unit is $166421 +in.representative_income 166424 Representative total house income in the dwelling unit is $166424 +in.representative_income 166427 Representative total house income in the dwelling unit is $166427 +in.representative_income 166431 Representative total house income in the dwelling unit is $166431 +in.representative_income 166438 Representative total house income in the dwelling unit is $166438 +in.representative_income 166440 Representative total house income in the dwelling unit is $166440 +in.representative_income 166469 Representative total house income in the dwelling unit is $166469 +in.representative_income 166472 Representative total house income in the dwelling unit is $166472 +in.representative_income 166476 Representative total house income in the dwelling unit is $166476 +in.representative_income 166500 Representative total house income in the dwelling unit is $166500 +in.representative_income 166511 Representative total house income in the dwelling unit is $166511 +in.representative_income 166523 Representative total house income in the dwelling unit is $166523 +in.representative_income 166545 Representative total house income in the dwelling unit is $166545 +in.representative_income 166562 Representative total house income in the dwelling unit is $166562 +in.representative_income 166573 Representative total house income in the dwelling unit is $166573 +in.representative_income 166579 Representative total house income in the dwelling unit is $166579 +in.representative_income 166597 Representative total house income in the dwelling unit is $166597 +in.representative_income 166600 Representative total house income in the dwelling unit is $166600 +in.representative_income 166608 Representative total house income in the dwelling unit is $166608 +in.representative_income 166628 Representative total house income in the dwelling unit is $166628 +in.representative_income 166640 Representative total house income in the dwelling unit is $166640 +in.representative_income 166673 Representative total house income in the dwelling unit is $166673 +in.representative_income 166674 Representative total house income in the dwelling unit is $166674 +in.representative_income 166683 Representative total house income in the dwelling unit is $166683 +in.representative_income 166684 Representative total house income in the dwelling unit is $166684 +in.representative_income 166695 Representative total house income in the dwelling unit is $166695 +in.representative_income 166698 Representative total house income in the dwelling unit is $166698 +in.representative_income 166703 Representative total house income in the dwelling unit is $166703 +in.representative_income 166706 Representative total house income in the dwelling unit is $166706 +in.representative_income 166707 Representative total house income in the dwelling unit is $166707 +in.representative_income 166714 Representative total house income in the dwelling unit is $166714 +in.representative_income 166716 Representative total house income in the dwelling unit is $166716 +in.representative_income 166723 Representative total house income in the dwelling unit is $166723 +in.representative_income 166733 Representative total house income in the dwelling unit is $166733 +in.representative_income 166734 Representative total house income in the dwelling unit is $166734 +in.representative_income 166775 Representative total house income in the dwelling unit is $166775 +in.representative_income 166786 Representative total house income in the dwelling unit is $166786 +in.representative_income 166796 Representative total house income in the dwelling unit is $166796 +in.representative_income 166806 Representative total house income in the dwelling unit is $166806 +in.representative_income 166814 Representative total house income in the dwelling unit is $166814 +in.representative_income 166819 Representative total house income in the dwelling unit is $166819 +in.representative_income 166825 Representative total house income in the dwelling unit is $166825 +in.representative_income 166839 Representative total house income in the dwelling unit is $166839 +in.representative_income 166846 Representative total house income in the dwelling unit is $166846 +in.representative_income 166876 Representative total house income in the dwelling unit is $166876 +in.representative_income 166885 Representative total house income in the dwelling unit is $166885 +in.representative_income 166888 Representative total house income in the dwelling unit is $166888 +in.representative_income 166900 Representative total house income in the dwelling unit is $166900 +in.representative_income 166920 Representative total house income in the dwelling unit is $166920 +in.representative_income 166921 Representative total house income in the dwelling unit is $166921 +in.representative_income 166933 Representative total house income in the dwelling unit is $166933 +in.representative_income 166944 Representative total house income in the dwelling unit is $166944 +in.representative_income 166947 Representative total house income in the dwelling unit is $166947 +in.representative_income 166975 Representative total house income in the dwelling unit is $166975 +in.representative_income 166977 Representative total house income in the dwelling unit is $166977 +in.representative_income 166987 Representative total house income in the dwelling unit is $166987 +in.representative_income 166992 Representative total house income in the dwelling unit is $166992 +in.representative_income 167027 Representative total house income in the dwelling unit is $167027 +in.representative_income 167029 Representative total house income in the dwelling unit is $167029 +in.representative_income 167041 Representative total house income in the dwelling unit is $167041 +in.representative_income 167049 Representative total house income in the dwelling unit is $167049 +in.representative_income 167052 Representative total house income in the dwelling unit is $167052 +in.representative_income 167078 Representative total house income in the dwelling unit is $167078 +in.representative_income 167095 Representative total house income in the dwelling unit is $167095 +in.representative_income 167115 Representative total house income in the dwelling unit is $167115 +in.representative_income 167127 Representative total house income in the dwelling unit is $167127 +in.representative_income 167136 Representative total house income in the dwelling unit is $167136 +in.representative_income 167137 Representative total house income in the dwelling unit is $167137 +in.representative_income 167147 Representative total house income in the dwelling unit is $167147 +in.representative_income 167149 Representative total house income in the dwelling unit is $167149 +in.representative_income 167155 Representative total house income in the dwelling unit is $167155 +in.representative_income 167165 Representative total house income in the dwelling unit is $167165 +in.representative_income 167176 Representative total house income in the dwelling unit is $167176 +in.representative_income 167179 Representative total house income in the dwelling unit is $167179 +in.representative_income 167198 Representative total house income in the dwelling unit is $167198 +in.representative_income 167209 Representative total house income in the dwelling unit is $167209 +in.representative_income 167218 Representative total house income in the dwelling unit is $167218 +in.representative_income 167243 Representative total house income in the dwelling unit is $167243 +in.representative_income 167246 Representative total house income in the dwelling unit is $167246 +in.representative_income 167250 Representative total house income in the dwelling unit is $167250 +in.representative_income 167257 Representative total house income in the dwelling unit is $167257 +in.representative_income 167261 Representative total house income in the dwelling unit is $167261 +in.representative_income 167275 Representative total house income in the dwelling unit is $167275 +in.representative_income 167280 Representative total house income in the dwelling unit is $167280 +in.representative_income 167300 Representative total house income in the dwelling unit is $167300 +in.representative_income 167302 Representative total house income in the dwelling unit is $167302 +in.representative_income 167311 Representative total house income in the dwelling unit is $167311 +in.representative_income 167319 Representative total house income in the dwelling unit is $167319 +in.representative_income 167322 Representative total house income in the dwelling unit is $167322 +in.representative_income 167350 Representative total house income in the dwelling unit is $167350 +in.representative_income 167364 Representative total house income in the dwelling unit is $167364 +in.representative_income 167366 Representative total house income in the dwelling unit is $167366 +in.representative_income 167381 Representative total house income in the dwelling unit is $167381 +in.representative_income 167397 Representative total house income in the dwelling unit is $167397 +in.representative_income 167405 Representative total house income in the dwelling unit is $167405 +in.representative_income 167421 Representative total house income in the dwelling unit is $167421 +in.representative_income 167458 Representative total house income in the dwelling unit is $167458 +in.representative_income 167471 Representative total house income in the dwelling unit is $167471 +in.representative_income 167472 Representative total house income in the dwelling unit is $167472 +in.representative_income 167473 Representative total house income in the dwelling unit is $167473 +in.representative_income 167477 Representative total house income in the dwelling unit is $167477 +in.representative_income 167482 Representative total house income in the dwelling unit is $167482 +in.representative_income 167490 Representative total house income in the dwelling unit is $167490 +in.representative_income 167501 Representative total house income in the dwelling unit is $167501 +in.representative_income 167505 Representative total house income in the dwelling unit is $167505 +in.representative_income 167507 Representative total house income in the dwelling unit is $167507 +in.representative_income 167514 Representative total house income in the dwelling unit is $167514 +in.representative_income 167516 Representative total house income in the dwelling unit is $167516 +in.representative_income 167523 Representative total house income in the dwelling unit is $167523 +in.representative_income 167526 Representative total house income in the dwelling unit is $167526 +in.representative_income 167534 Representative total house income in the dwelling unit is $167534 +in.representative_income 167552 Representative total house income in the dwelling unit is $167552 +in.representative_income 167565 Representative total house income in the dwelling unit is $167565 +in.representative_income 167570 Representative total house income in the dwelling unit is $167570 +in.representative_income 167577 Representative total house income in the dwelling unit is $167577 +in.representative_income 167580 Representative total house income in the dwelling unit is $167580 +in.representative_income 167581 Representative total house income in the dwelling unit is $167581 +in.representative_income 167583 Representative total house income in the dwelling unit is $167583 +in.representative_income 167592 Representative total house income in the dwelling unit is $167592 +in.representative_income 167603 Representative total house income in the dwelling unit is $167603 +in.representative_income 167611 Representative total house income in the dwelling unit is $167611 +in.representative_income 167644 Representative total house income in the dwelling unit is $167644 +in.representative_income 167646 Representative total house income in the dwelling unit is $167646 +in.representative_income 167651 Representative total house income in the dwelling unit is $167651 +in.representative_income 167662 Representative total house income in the dwelling unit is $167662 +in.representative_income 167673 Representative total house income in the dwelling unit is $167673 +in.representative_income 167677 Representative total house income in the dwelling unit is $167677 +in.representative_income 167682 Representative total house income in the dwelling unit is $167682 +in.representative_income 167684 Representative total house income in the dwelling unit is $167684 +in.representative_income 167689 Representative total house income in the dwelling unit is $167689 +in.representative_income 167700 Representative total house income in the dwelling unit is $167700 +in.representative_income 167704 Representative total house income in the dwelling unit is $167704 +in.representative_income 167714 Representative total house income in the dwelling unit is $167714 +in.representative_income 167724 Representative total house income in the dwelling unit is $167724 +in.representative_income 167735 Representative total house income in the dwelling unit is $167735 +in.representative_income 167756 Representative total house income in the dwelling unit is $167756 +in.representative_income 167769 Representative total house income in the dwelling unit is $167769 +in.representative_income 167776 Representative total house income in the dwelling unit is $167776 +in.representative_income 167781 Representative total house income in the dwelling unit is $167781 +in.representative_income 167785 Representative total house income in the dwelling unit is $167785 +in.representative_income 167788 Representative total house income in the dwelling unit is $167788 +in.representative_income 167797 Representative total house income in the dwelling unit is $167797 +in.representative_income 167808 Representative total house income in the dwelling unit is $167808 +in.representative_income 167817 Representative total house income in the dwelling unit is $167817 +in.representative_income 167823 Representative total house income in the dwelling unit is $167823 +in.representative_income 167825 Representative total house income in the dwelling unit is $167825 +in.representative_income 167836 Representative total house income in the dwelling unit is $167836 +in.representative_income 167838 Representative total house income in the dwelling unit is $167838 +in.representative_income 167844 Representative total house income in the dwelling unit is $167844 +in.representative_income 167846 Representative total house income in the dwelling unit is $167846 +in.representative_income 167862 Representative total house income in the dwelling unit is $167862 +in.representative_income 167869 Representative total house income in the dwelling unit is $167869 +in.representative_income 167876 Representative total house income in the dwelling unit is $167876 +in.representative_income 167883 Representative total house income in the dwelling unit is $167883 +in.representative_income 167886 Representative total house income in the dwelling unit is $167886 +in.representative_income 167887 Representative total house income in the dwelling unit is $167887 +in.representative_income 167893 Representative total house income in the dwelling unit is $167893 +in.representative_income 167900 Representative total house income in the dwelling unit is $167900 +in.representative_income 167905 Representative total house income in the dwelling unit is $167905 +in.representative_income 167921 Representative total house income in the dwelling unit is $167921 +in.representative_income 167927 Representative total house income in the dwelling unit is $167927 +in.representative_income 167931 Representative total house income in the dwelling unit is $167931 +in.representative_income 167935 Representative total house income in the dwelling unit is $167935 +in.representative_income 167959 Representative total house income in the dwelling unit is $167959 +in.representative_income 167973 Representative total house income in the dwelling unit is $167973 +in.representative_income 167984 Representative total house income in the dwelling unit is $167984 +in.representative_income 167987 Representative total house income in the dwelling unit is $167987 +in.representative_income 167988 Representative total house income in the dwelling unit is $167988 +in.representative_income 167991 Representative total house income in the dwelling unit is $167991 +in.representative_income 167995 Representative total house income in the dwelling unit is $167995 +in.representative_income 167999 Representative total house income in the dwelling unit is $167999 +in.representative_income 168005 Representative total house income in the dwelling unit is $168005 +in.representative_income 168009 Representative total house income in the dwelling unit is $168009 +in.representative_income 168013 Representative total house income in the dwelling unit is $168013 +in.representative_income 168023 Representative total house income in the dwelling unit is $168023 +in.representative_income 168030 Representative total house income in the dwelling unit is $168030 +in.representative_income 168049 Representative total house income in the dwelling unit is $168049 +in.representative_income 168055 Representative total house income in the dwelling unit is $168055 +in.representative_income 168067 Representative total house income in the dwelling unit is $168067 +in.representative_income 168070 Representative total house income in the dwelling unit is $168070 +in.representative_income 168075 Representative total house income in the dwelling unit is $168075 +in.representative_income 168088 Representative total house income in the dwelling unit is $168088 +in.representative_income 168092 Representative total house income in the dwelling unit is $168092 +in.representative_income 168096 Representative total house income in the dwelling unit is $168096 +in.representative_income 168102 Representative total house income in the dwelling unit is $168102 +in.representative_income 168104 Representative total house income in the dwelling unit is $168104 +in.representative_income 168107 Representative total house income in the dwelling unit is $168107 +in.representative_income 168121 Representative total house income in the dwelling unit is $168121 +in.representative_income 168126 Representative total house income in the dwelling unit is $168126 +in.representative_income 168136 Representative total house income in the dwelling unit is $168136 +in.representative_income 168139 Representative total house income in the dwelling unit is $168139 +in.representative_income 168148 Representative total house income in the dwelling unit is $168148 +in.representative_income 168157 Representative total house income in the dwelling unit is $168157 +in.representative_income 168189 Representative total house income in the dwelling unit is $168189 +in.representative_income 168205 Representative total house income in the dwelling unit is $168205 +in.representative_income 168209 Representative total house income in the dwelling unit is $168209 +in.representative_income 168210 Representative total house income in the dwelling unit is $168210 +in.representative_income 168213 Representative total house income in the dwelling unit is $168213 +in.representative_income 168218 Representative total house income in the dwelling unit is $168218 +in.representative_income 168220 Representative total house income in the dwelling unit is $168220 +in.representative_income 168229 Representative total house income in the dwelling unit is $168229 +in.representative_income 168230 Representative total house income in the dwelling unit is $168230 +in.representative_income 168240 Representative total house income in the dwelling unit is $168240 +in.representative_income 168272 Representative total house income in the dwelling unit is $168272 +in.representative_income 168273 Representative total house income in the dwelling unit is $168273 +in.representative_income 168281 Representative total house income in the dwelling unit is $168281 +in.representative_income 168283 Representative total house income in the dwelling unit is $168283 +in.representative_income 168290 Representative total house income in the dwelling unit is $168290 +in.representative_income 168306 Representative total house income in the dwelling unit is $168306 +in.representative_income 168315 Representative total house income in the dwelling unit is $168315 +in.representative_income 168317 Representative total house income in the dwelling unit is $168317 +in.representative_income 168326 Representative total house income in the dwelling unit is $168326 +in.representative_income 168328 Representative total house income in the dwelling unit is $168328 +in.representative_income 168329 Representative total house income in the dwelling unit is $168329 +in.representative_income 168333 Representative total house income in the dwelling unit is $168333 +in.representative_income 168338 Representative total house income in the dwelling unit is $168338 +in.representative_income 168351 Representative total house income in the dwelling unit is $168351 +in.representative_income 168359 Representative total house income in the dwelling unit is $168359 +in.representative_income 168391 Representative total house income in the dwelling unit is $168391 +in.representative_income 168392 Representative total house income in the dwelling unit is $168392 +in.representative_income 168402 Representative total house income in the dwelling unit is $168402 +in.representative_income 168421 Representative total house income in the dwelling unit is $168421 +in.representative_income 168424 Representative total house income in the dwelling unit is $168424 +in.representative_income 168437 Representative total house income in the dwelling unit is $168437 +in.representative_income 168446 Representative total house income in the dwelling unit is $168446 +in.representative_income 168447 Representative total house income in the dwelling unit is $168447 +in.representative_income 168457 Representative total house income in the dwelling unit is $168457 +in.representative_income 168462 Representative total house income in the dwelling unit is $168462 +in.representative_income 168478 Representative total house income in the dwelling unit is $168478 +in.representative_income 168492 Representative total house income in the dwelling unit is $168492 +in.representative_income 168508 Representative total house income in the dwelling unit is $168508 +in.representative_income 168526 Representative total house income in the dwelling unit is $168526 +in.representative_income 168531 Representative total house income in the dwelling unit is $168531 +in.representative_income 168532 Representative total house income in the dwelling unit is $168532 +in.representative_income 168536 Representative total house income in the dwelling unit is $168536 +in.representative_income 168537 Representative total house income in the dwelling unit is $168537 +in.representative_income 168539 Representative total house income in the dwelling unit is $168539 +in.representative_income 168542 Representative total house income in the dwelling unit is $168542 +in.representative_income 168553 Representative total house income in the dwelling unit is $168553 +in.representative_income 168573 Representative total house income in the dwelling unit is $168573 +in.representative_income 168575 Representative total house income in the dwelling unit is $168575 +in.representative_income 168586 Representative total house income in the dwelling unit is $168586 +in.representative_income 168592 Representative total house income in the dwelling unit is $168592 +in.representative_income 168593 Representative total house income in the dwelling unit is $168593 +in.representative_income 168596 Representative total house income in the dwelling unit is $168596 +in.representative_income 168607 Representative total house income in the dwelling unit is $168607 +in.representative_income 168618 Representative total house income in the dwelling unit is $168618 +in.representative_income 168624 Representative total house income in the dwelling unit is $168624 +in.representative_income 168632 Representative total house income in the dwelling unit is $168632 +in.representative_income 168634 Representative total house income in the dwelling unit is $168634 +in.representative_income 168639 Representative total house income in the dwelling unit is $168639 +in.representative_income 168640 Representative total house income in the dwelling unit is $168640 +in.representative_income 168642 Representative total house income in the dwelling unit is $168642 +in.representative_income 168661 Representative total house income in the dwelling unit is $168661 +in.representative_income 168683 Representative total house income in the dwelling unit is $168683 +in.representative_income 168692 Representative total house income in the dwelling unit is $168692 +in.representative_income 168694 Representative total house income in the dwelling unit is $168694 +in.representative_income 168703 Representative total house income in the dwelling unit is $168703 +in.representative_income 168704 Representative total house income in the dwelling unit is $168704 +in.representative_income 168705 Representative total house income in the dwelling unit is $168705 +in.representative_income 168716 Representative total house income in the dwelling unit is $168716 +in.representative_income 168737 Representative total house income in the dwelling unit is $168737 +in.representative_income 168745 Representative total house income in the dwelling unit is $168745 +in.representative_income 168746 Representative total house income in the dwelling unit is $168746 +in.representative_income 168747 Representative total house income in the dwelling unit is $168747 +in.representative_income 168757 Representative total house income in the dwelling unit is $168757 +in.representative_income 168758 Representative total house income in the dwelling unit is $168758 +in.representative_income 168765 Representative total house income in the dwelling unit is $168765 +in.representative_income 168767 Representative total house income in the dwelling unit is $168767 +in.representative_income 168768 Representative total house income in the dwelling unit is $168768 +in.representative_income 168769 Representative total house income in the dwelling unit is $168769 +in.representative_income 168778 Representative total house income in the dwelling unit is $168778 +in.representative_income 168780 Representative total house income in the dwelling unit is $168780 +in.representative_income 168787 Representative total house income in the dwelling unit is $168787 +in.representative_income 168790 Representative total house income in the dwelling unit is $168790 +in.representative_income 168795 Representative total house income in the dwelling unit is $168795 +in.representative_income 168797 Representative total house income in the dwelling unit is $168797 +in.representative_income 168800 Representative total house income in the dwelling unit is $168800 +in.representative_income 168823 Representative total house income in the dwelling unit is $168823 +in.representative_income 168842 Representative total house income in the dwelling unit is $168842 +in.representative_income 168849 Representative total house income in the dwelling unit is $168849 +in.representative_income 168854 Representative total house income in the dwelling unit is $168854 +in.representative_income 168877 Representative total house income in the dwelling unit is $168877 +in.representative_income 168882 Representative total house income in the dwelling unit is $168882 +in.representative_income 168895 Representative total house income in the dwelling unit is $168895 +in.representative_income 168896 Representative total house income in the dwelling unit is $168896 +in.representative_income 168899 Representative total house income in the dwelling unit is $168899 +in.representative_income 168906 Representative total house income in the dwelling unit is $168906 +in.representative_income 168907 Representative total house income in the dwelling unit is $168907 +in.representative_income 168915 Representative total house income in the dwelling unit is $168915 +in.representative_income 168920 Representative total house income in the dwelling unit is $168920 +in.representative_income 168927 Representative total house income in the dwelling unit is $168927 +in.representative_income 168947 Representative total house income in the dwelling unit is $168947 +in.representative_income 168952 Representative total house income in the dwelling unit is $168952 +in.representative_income 168959 Representative total house income in the dwelling unit is $168959 +in.representative_income 168960 Representative total house income in the dwelling unit is $168960 +in.representative_income 168969 Representative total house income in the dwelling unit is $168969 +in.representative_income 168972 Representative total house income in the dwelling unit is $168972 +in.representative_income 168973 Representative total house income in the dwelling unit is $168973 +in.representative_income 168985 Representative total house income in the dwelling unit is $168985 +in.representative_income 168997 Representative total house income in the dwelling unit is $168997 +in.representative_income 169001 Representative total house income in the dwelling unit is $169001 +in.representative_income 169054 Representative total house income in the dwelling unit is $169054 +in.representative_income 169056 Representative total house income in the dwelling unit is $169056 +in.representative_income 169058 Representative total house income in the dwelling unit is $169058 +in.representative_income 169064 Representative total house income in the dwelling unit is $169064 +in.representative_income 169068 Representative total house income in the dwelling unit is $169068 +in.representative_income 169088 Representative total house income in the dwelling unit is $169088 +in.representative_income 169093 Representative total house income in the dwelling unit is $169093 +in.representative_income 169098 Representative total house income in the dwelling unit is $169098 +in.representative_income 169108 Representative total house income in the dwelling unit is $169108 +in.representative_income 169118 Representative total house income in the dwelling unit is $169118 +in.representative_income 169138 Representative total house income in the dwelling unit is $169138 +in.representative_income 169158 Representative total house income in the dwelling unit is $169158 +in.representative_income 169159 Representative total house income in the dwelling unit is $169159 +in.representative_income 169169 Representative total house income in the dwelling unit is $169169 +in.representative_income 169176 Representative total house income in the dwelling unit is $169176 +in.representative_income 169177 Representative total house income in the dwelling unit is $169177 +in.representative_income 169179 Representative total house income in the dwelling unit is $169179 +in.representative_income 169189 Representative total house income in the dwelling unit is $169189 +in.representative_income 169190 Representative total house income in the dwelling unit is $169190 +in.representative_income 169199 Representative total house income in the dwelling unit is $169199 +in.representative_income 169202 Representative total house income in the dwelling unit is $169202 +in.representative_income 169209 Representative total house income in the dwelling unit is $169209 +in.representative_income 169229 Representative total house income in the dwelling unit is $169229 +in.representative_income 169241 Representative total house income in the dwelling unit is $169241 +in.representative_income 169250 Representative total house income in the dwelling unit is $169250 +in.representative_income 169261 Representative total house income in the dwelling unit is $169261 +in.representative_income 169264 Representative total house income in the dwelling unit is $169264 +in.representative_income 169269 Representative total house income in the dwelling unit is $169269 +in.representative_income 169271 Representative total house income in the dwelling unit is $169271 +in.representative_income 169282 Representative total house income in the dwelling unit is $169282 +in.representative_income 169283 Representative total house income in the dwelling unit is $169283 +in.representative_income 169293 Representative total house income in the dwelling unit is $169293 +in.representative_income 169300 Representative total house income in the dwelling unit is $169300 +in.representative_income 169310 Representative total house income in the dwelling unit is $169310 +in.representative_income 169317 Representative total house income in the dwelling unit is $169317 +in.representative_income 169321 Representative total house income in the dwelling unit is $169321 +in.representative_income 169342 Representative total house income in the dwelling unit is $169342 +in.representative_income 169343 Representative total house income in the dwelling unit is $169343 +in.representative_income 169347 Representative total house income in the dwelling unit is $169347 +in.representative_income 169351 Representative total house income in the dwelling unit is $169351 +in.representative_income 169364 Representative total house income in the dwelling unit is $169364 +in.representative_income 169369 Representative total house income in the dwelling unit is $169369 +in.representative_income 169370 Representative total house income in the dwelling unit is $169370 +in.representative_income 169380 Representative total house income in the dwelling unit is $169380 +in.representative_income 169385 Representative total house income in the dwelling unit is $169385 +in.representative_income 169391 Representative total house income in the dwelling unit is $169391 +in.representative_income 169401 Representative total house income in the dwelling unit is $169401 +in.representative_income 169411 Representative total house income in the dwelling unit is $169411 +in.representative_income 169412 Representative total house income in the dwelling unit is $169412 +in.representative_income 169418 Representative total house income in the dwelling unit is $169418 +in.representative_income 169423 Representative total house income in the dwelling unit is $169423 +in.representative_income 169452 Representative total house income in the dwelling unit is $169452 +in.representative_income 169468 Representative total house income in the dwelling unit is $169468 +in.representative_income 169475 Representative total house income in the dwelling unit is $169475 +in.representative_income 169497 Representative total house income in the dwelling unit is $169497 +in.representative_income 169498 Representative total house income in the dwelling unit is $169498 +in.representative_income 169501 Representative total house income in the dwelling unit is $169501 +in.representative_income 169502 Representative total house income in the dwelling unit is $169502 +in.representative_income 169518 Representative total house income in the dwelling unit is $169518 +in.representative_income 169523 Representative total house income in the dwelling unit is $169523 +in.representative_income 169526 Representative total house income in the dwelling unit is $169526 +in.representative_income 169528 Representative total house income in the dwelling unit is $169528 +in.representative_income 169538 Representative total house income in the dwelling unit is $169538 +in.representative_income 169543 Representative total house income in the dwelling unit is $169543 +in.representative_income 169571 Representative total house income in the dwelling unit is $169571 +in.representative_income 169580 Representative total house income in the dwelling unit is $169580 +in.representative_income 169603 Representative total house income in the dwelling unit is $169603 +in.representative_income 169605 Representative total house income in the dwelling unit is $169605 +in.representative_income 169612 Representative total house income in the dwelling unit is $169612 +in.representative_income 169623 Representative total house income in the dwelling unit is $169623 +in.representative_income 169626 Representative total house income in the dwelling unit is $169626 +in.representative_income 169633 Representative total house income in the dwelling unit is $169633 +in.representative_income 169634 Representative total house income in the dwelling unit is $169634 +in.representative_income 169638 Representative total house income in the dwelling unit is $169638 +in.representative_income 169642 Representative total house income in the dwelling unit is $169642 +in.representative_income 169648 Representative total house income in the dwelling unit is $169648 +in.representative_income 169654 Representative total house income in the dwelling unit is $169654 +in.representative_income 169659 Representative total house income in the dwelling unit is $169659 +in.representative_income 169664 Representative total house income in the dwelling unit is $169664 +in.representative_income 169673 Representative total house income in the dwelling unit is $169673 +in.representative_income 169674 Representative total house income in the dwelling unit is $169674 +in.representative_income 169686 Representative total house income in the dwelling unit is $169686 +in.representative_income 169688 Representative total house income in the dwelling unit is $169688 +in.representative_income 169699 Representative total house income in the dwelling unit is $169699 +in.representative_income 169704 Representative total house income in the dwelling unit is $169704 +in.representative_income 169707 Representative total house income in the dwelling unit is $169707 +in.representative_income 169712 Representative total house income in the dwelling unit is $169712 +in.representative_income 169742 Representative total house income in the dwelling unit is $169742 +in.representative_income 169746 Representative total house income in the dwelling unit is $169746 +in.representative_income 169748 Representative total house income in the dwelling unit is $169748 +in.representative_income 169749 Representative total house income in the dwelling unit is $169749 +in.representative_income 169755 Representative total house income in the dwelling unit is $169755 +in.representative_income 169759 Representative total house income in the dwelling unit is $169759 +in.representative_income 169765 Representative total house income in the dwelling unit is $169765 +in.representative_income 169777 Representative total house income in the dwelling unit is $169777 +in.representative_income 169788 Representative total house income in the dwelling unit is $169788 +in.representative_income 169792 Representative total house income in the dwelling unit is $169792 +in.representative_income 169802 Representative total house income in the dwelling unit is $169802 +in.representative_income 169805 Representative total house income in the dwelling unit is $169805 +in.representative_income 169820 Representative total house income in the dwelling unit is $169820 +in.representative_income 169822 Representative total house income in the dwelling unit is $169822 +in.representative_income 169823 Representative total house income in the dwelling unit is $169823 +in.representative_income 169828 Representative total house income in the dwelling unit is $169828 +in.representative_income 169833 Representative total house income in the dwelling unit is $169833 +in.representative_income 169839 Representative total house income in the dwelling unit is $169839 +in.representative_income 169849 Representative total house income in the dwelling unit is $169849 +in.representative_income 169854 Representative total house income in the dwelling unit is $169854 +in.representative_income 169858 Representative total house income in the dwelling unit is $169858 +in.representative_income 169862 Representative total house income in the dwelling unit is $169862 +in.representative_income 169880 Representative total house income in the dwelling unit is $169880 +in.representative_income 169884 Representative total house income in the dwelling unit is $169884 +in.representative_income 169897 Representative total house income in the dwelling unit is $169897 +in.representative_income 169903 Representative total house income in the dwelling unit is $169903 +in.representative_income 169906 Representative total house income in the dwelling unit is $169906 +in.representative_income 169912 Representative total house income in the dwelling unit is $169912 +in.representative_income 169916 Representative total house income in the dwelling unit is $169916 +in.representative_income 169927 Representative total house income in the dwelling unit is $169927 +in.representative_income 169928 Representative total house income in the dwelling unit is $169928 +in.representative_income 169957 Representative total house income in the dwelling unit is $169957 +in.representative_income 169958 Representative total house income in the dwelling unit is $169958 +in.representative_income 169961 Representative total house income in the dwelling unit is $169961 +in.representative_income 169962 Representative total house income in the dwelling unit is $169962 +in.representative_income 169977 Representative total house income in the dwelling unit is $169977 +in.representative_income 169981 Representative total house income in the dwelling unit is $169981 +in.representative_income 169984 Representative total house income in the dwelling unit is $169984 +in.representative_income 169991 Representative total house income in the dwelling unit is $169991 +in.representative_income 170002 Representative total house income in the dwelling unit is $170002 +in.representative_income 170007 Representative total house income in the dwelling unit is $170007 +in.representative_income 170022 Representative total house income in the dwelling unit is $170022 +in.representative_income 170035 Representative total house income in the dwelling unit is $170035 +in.representative_income 170048 Representative total house income in the dwelling unit is $170048 +in.representative_income 170058 Representative total house income in the dwelling unit is $170058 +in.representative_income 170066 Representative total house income in the dwelling unit is $170066 +in.representative_income 170067 Representative total house income in the dwelling unit is $170067 +in.representative_income 170087 Representative total house income in the dwelling unit is $170087 +in.representative_income 170088 Representative total house income in the dwelling unit is $170088 +in.representative_income 170099 Representative total house income in the dwelling unit is $170099 +in.representative_income 170108 Representative total house income in the dwelling unit is $170108 +in.representative_income 170120 Representative total house income in the dwelling unit is $170120 +in.representative_income 170127 Representative total house income in the dwelling unit is $170127 +in.representative_income 170138 Representative total house income in the dwelling unit is $170138 +in.representative_income 170141 Representative total house income in the dwelling unit is $170141 +in.representative_income 170159 Representative total house income in the dwelling unit is $170159 +in.representative_income 170161 Representative total house income in the dwelling unit is $170161 +in.representative_income 170174 Representative total house income in the dwelling unit is $170174 +in.representative_income 170175 Representative total house income in the dwelling unit is $170175 +in.representative_income 170176 Representative total house income in the dwelling unit is $170176 +in.representative_income 170178 Representative total house income in the dwelling unit is $170178 +in.representative_income 170185 Representative total house income in the dwelling unit is $170185 +in.representative_income 170189 Representative total house income in the dwelling unit is $170189 +in.representative_income 170209 Representative total house income in the dwelling unit is $170209 +in.representative_income 170210 Representative total house income in the dwelling unit is $170210 +in.representative_income 170213 Representative total house income in the dwelling unit is $170213 +in.representative_income 170221 Representative total house income in the dwelling unit is $170221 +in.representative_income 170224 Representative total house income in the dwelling unit is $170224 +in.representative_income 170230 Representative total house income in the dwelling unit is $170230 +in.representative_income 170240 Representative total house income in the dwelling unit is $170240 +in.representative_income 170241 Representative total house income in the dwelling unit is $170241 +in.representative_income 170249 Representative total house income in the dwelling unit is $170249 +in.representative_income 170250 Representative total house income in the dwelling unit is $170250 +in.representative_income 170254 Representative total house income in the dwelling unit is $170254 +in.representative_income 170256 Representative total house income in the dwelling unit is $170256 +in.representative_income 170260 Representative total house income in the dwelling unit is $170260 +in.representative_income 170272 Representative total house income in the dwelling unit is $170272 +in.representative_income 170282 Representative total house income in the dwelling unit is $170282 +in.representative_income 170292 Representative total house income in the dwelling unit is $170292 +in.representative_income 170304 Representative total house income in the dwelling unit is $170304 +in.representative_income 170310 Representative total house income in the dwelling unit is $170310 +in.representative_income 170319 Representative total house income in the dwelling unit is $170319 +in.representative_income 170324 Representative total house income in the dwelling unit is $170324 +in.representative_income 170328 Representative total house income in the dwelling unit is $170328 +in.representative_income 170346 Representative total house income in the dwelling unit is $170346 +in.representative_income 170356 Representative total house income in the dwelling unit is $170356 +in.representative_income 170361 Representative total house income in the dwelling unit is $170361 +in.representative_income 170363 Representative total house income in the dwelling unit is $170363 +in.representative_income 170365 Representative total house income in the dwelling unit is $170365 +in.representative_income 170371 Representative total house income in the dwelling unit is $170371 +in.representative_income 170390 Representative total house income in the dwelling unit is $170390 +in.representative_income 170396 Representative total house income in the dwelling unit is $170396 +in.representative_income 170411 Representative total house income in the dwelling unit is $170411 +in.representative_income 170425 Representative total house income in the dwelling unit is $170425 +in.representative_income 170427 Representative total house income in the dwelling unit is $170427 +in.representative_income 170444 Representative total house income in the dwelling unit is $170444 +in.representative_income 170453 Representative total house income in the dwelling unit is $170453 +in.representative_income 170464 Representative total house income in the dwelling unit is $170464 +in.representative_income 170495 Representative total house income in the dwelling unit is $170495 +in.representative_income 170496 Representative total house income in the dwelling unit is $170496 +in.representative_income 170498 Representative total house income in the dwelling unit is $170498 +in.representative_income 170499 Representative total house income in the dwelling unit is $170499 +in.representative_income 170512 Representative total house income in the dwelling unit is $170512 +in.representative_income 170518 Representative total house income in the dwelling unit is $170518 +in.representative_income 170530 Representative total house income in the dwelling unit is $170530 +in.representative_income 170551 Representative total house income in the dwelling unit is $170551 +in.representative_income 170569 Representative total house income in the dwelling unit is $170569 +in.representative_income 170572 Representative total house income in the dwelling unit is $170572 +in.representative_income 170593 Representative total house income in the dwelling unit is $170593 +in.representative_income 170603 Representative total house income in the dwelling unit is $170603 +in.representative_income 170606 Representative total house income in the dwelling unit is $170606 +in.representative_income 170613 Representative total house income in the dwelling unit is $170613 +in.representative_income 170625 Representative total house income in the dwelling unit is $170625 +in.representative_income 170635 Representative total house income in the dwelling unit is $170635 +in.representative_income 170678 Representative total house income in the dwelling unit is $170678 +in.representative_income 170682 Representative total house income in the dwelling unit is $170682 +in.representative_income 170706 Representative total house income in the dwelling unit is $170706 +in.representative_income 170711 Representative total house income in the dwelling unit is $170711 +in.representative_income 170715 Representative total house income in the dwelling unit is $170715 +in.representative_income 170721 Representative total house income in the dwelling unit is $170721 +in.representative_income 170726 Representative total house income in the dwelling unit is $170726 +in.representative_income 170732 Representative total house income in the dwelling unit is $170732 +in.representative_income 170740 Representative total house income in the dwelling unit is $170740 +in.representative_income 170758 Representative total house income in the dwelling unit is $170758 +in.representative_income 170772 Representative total house income in the dwelling unit is $170772 +in.representative_income 170786 Representative total house income in the dwelling unit is $170786 +in.representative_income 170787 Representative total house income in the dwelling unit is $170787 +in.representative_income 170801 Representative total house income in the dwelling unit is $170801 +in.representative_income 170808 Representative total house income in the dwelling unit is $170808 +in.representative_income 170816 Representative total house income in the dwelling unit is $170816 +in.representative_income 170818 Representative total house income in the dwelling unit is $170818 +in.representative_income 170823 Representative total house income in the dwelling unit is $170823 +in.representative_income 170840 Representative total house income in the dwelling unit is $170840 +in.representative_income 170846 Representative total house income in the dwelling unit is $170846 +in.representative_income 170852 Representative total house income in the dwelling unit is $170852 +in.representative_income 170868 Representative total house income in the dwelling unit is $170868 +in.representative_income 170878 Representative total house income in the dwelling unit is $170878 +in.representative_income 170891 Representative total house income in the dwelling unit is $170891 +in.representative_income 170893 Representative total house income in the dwelling unit is $170893 +in.representative_income 170899 Representative total house income in the dwelling unit is $170899 +in.representative_income 170901 Representative total house income in the dwelling unit is $170901 +in.representative_income 170911 Representative total house income in the dwelling unit is $170911 +in.representative_income 170917 Representative total house income in the dwelling unit is $170917 +in.representative_income 170927 Representative total house income in the dwelling unit is $170927 +in.representative_income 170930 Representative total house income in the dwelling unit is $170930 +in.representative_income 170931 Representative total house income in the dwelling unit is $170931 +in.representative_income 170941 Representative total house income in the dwelling unit is $170941 +in.representative_income 170950 Representative total house income in the dwelling unit is $170950 +in.representative_income 170952 Representative total house income in the dwelling unit is $170952 +in.representative_income 170967 Representative total house income in the dwelling unit is $170967 +in.representative_income 170973 Representative total house income in the dwelling unit is $170973 +in.representative_income 170984 Representative total house income in the dwelling unit is $170984 +in.representative_income 171001 Representative total house income in the dwelling unit is $171001 +in.representative_income 171004 Representative total house income in the dwelling unit is $171004 +in.representative_income 171015 Representative total house income in the dwelling unit is $171015 +in.representative_income 171018 Representative total house income in the dwelling unit is $171018 +in.representative_income 171038 Representative total house income in the dwelling unit is $171038 +in.representative_income 171057 Representative total house income in the dwelling unit is $171057 +in.representative_income 171067 Representative total house income in the dwelling unit is $171067 +in.representative_income 171084 Representative total house income in the dwelling unit is $171084 +in.representative_income 171089 Representative total house income in the dwelling unit is $171089 +in.representative_income 171108 Representative total house income in the dwelling unit is $171108 +in.representative_income 171118 Representative total house income in the dwelling unit is $171118 +in.representative_income 171119 Representative total house income in the dwelling unit is $171119 +in.representative_income 171142 Representative total house income in the dwelling unit is $171142 +in.representative_income 171146 Representative total house income in the dwelling unit is $171146 +in.representative_income 171163 Representative total house income in the dwelling unit is $171163 +in.representative_income 171179 Representative total house income in the dwelling unit is $171179 +in.representative_income 171188 Representative total house income in the dwelling unit is $171188 +in.representative_income 171204 Representative total house income in the dwelling unit is $171204 +in.representative_income 171215 Representative total house income in the dwelling unit is $171215 +in.representative_income 171220 Representative total house income in the dwelling unit is $171220 +in.representative_income 171222 Representative total house income in the dwelling unit is $171222 +in.representative_income 171232 Representative total house income in the dwelling unit is $171232 +in.representative_income 171241 Representative total house income in the dwelling unit is $171241 +in.representative_income 171254 Representative total house income in the dwelling unit is $171254 +in.representative_income 171268 Representative total house income in the dwelling unit is $171268 +in.representative_income 171282 Representative total house income in the dwelling unit is $171282 +in.representative_income 171321 Representative total house income in the dwelling unit is $171321 +in.representative_income 171322 Representative total house income in the dwelling unit is $171322 +in.representative_income 171324 Representative total house income in the dwelling unit is $171324 +in.representative_income 171330 Representative total house income in the dwelling unit is $171330 +in.representative_income 171334 Representative total house income in the dwelling unit is $171334 +in.representative_income 171354 Representative total house income in the dwelling unit is $171354 +in.representative_income 171355 Representative total house income in the dwelling unit is $171355 +in.representative_income 171362 Representative total house income in the dwelling unit is $171362 +in.representative_income 171373 Representative total house income in the dwelling unit is $171373 +in.representative_income 171391 Representative total house income in the dwelling unit is $171391 +in.representative_income 171398 Representative total house income in the dwelling unit is $171398 +in.representative_income 171422 Representative total house income in the dwelling unit is $171422 +in.representative_income 171427 Representative total house income in the dwelling unit is $171427 +in.representative_income 171430 Representative total house income in the dwelling unit is $171430 +in.representative_income 171436 Representative total house income in the dwelling unit is $171436 +in.representative_income 171448 Representative total house income in the dwelling unit is $171448 +in.representative_income 171449 Representative total house income in the dwelling unit is $171449 +in.representative_income 171470 Representative total house income in the dwelling unit is $171470 +in.representative_income 171478 Representative total house income in the dwelling unit is $171478 +in.representative_income 171486 Representative total house income in the dwelling unit is $171486 +in.representative_income 171523 Representative total house income in the dwelling unit is $171523 +in.representative_income 171531 Representative total house income in the dwelling unit is $171531 +in.representative_income 171537 Representative total house income in the dwelling unit is $171537 +in.representative_income 171551 Representative total house income in the dwelling unit is $171551 +in.representative_income 171563 Representative total house income in the dwelling unit is $171563 +in.representative_income 171569 Representative total house income in the dwelling unit is $171569 +in.representative_income 171573 Representative total house income in the dwelling unit is $171573 +in.representative_income 171579 Representative total house income in the dwelling unit is $171579 +in.representative_income 171624 Representative total house income in the dwelling unit is $171624 +in.representative_income 171634 Representative total house income in the dwelling unit is $171634 +in.representative_income 171644 Representative total house income in the dwelling unit is $171644 +in.representative_income 171645 Representative total house income in the dwelling unit is $171645 +in.representative_income 171654 Representative total house income in the dwelling unit is $171654 +in.representative_income 171687 Representative total house income in the dwelling unit is $171687 +in.representative_income 171690 Representative total house income in the dwelling unit is $171690 +in.representative_income 171698 Representative total house income in the dwelling unit is $171698 +in.representative_income 171725 Representative total house income in the dwelling unit is $171725 +in.representative_income 171737 Representative total house income in the dwelling unit is $171737 +in.representative_income 171738 Representative total house income in the dwelling unit is $171738 +in.representative_income 171751 Representative total house income in the dwelling unit is $171751 +in.representative_income 171755 Representative total house income in the dwelling unit is $171755 +in.representative_income 171763 Representative total house income in the dwelling unit is $171763 +in.representative_income 171774 Representative total house income in the dwelling unit is $171774 +in.representative_income 171775 Representative total house income in the dwelling unit is $171775 +in.representative_income 171795 Representative total house income in the dwelling unit is $171795 +in.representative_income 171803 Representative total house income in the dwelling unit is $171803 +in.representative_income 171806 Representative total house income in the dwelling unit is $171806 +in.representative_income 171826 Representative total house income in the dwelling unit is $171826 +in.representative_income 171827 Representative total house income in the dwelling unit is $171827 +in.representative_income 171839 Representative total house income in the dwelling unit is $171839 +in.representative_income 171848 Representative total house income in the dwelling unit is $171848 +in.representative_income 171849 Representative total house income in the dwelling unit is $171849 +in.representative_income 171859 Representative total house income in the dwelling unit is $171859 +in.representative_income 171861 Representative total house income in the dwelling unit is $171861 +in.representative_income 171870 Representative total house income in the dwelling unit is $171870 +in.representative_income 171873 Representative total house income in the dwelling unit is $171873 +in.representative_income 171876 Representative total house income in the dwelling unit is $171876 +in.representative_income 171880 Representative total house income in the dwelling unit is $171880 +in.representative_income 171888 Representative total house income in the dwelling unit is $171888 +in.representative_income 171901 Representative total house income in the dwelling unit is $171901 +in.representative_income 171903 Representative total house income in the dwelling unit is $171903 +in.representative_income 171911 Representative total house income in the dwelling unit is $171911 +in.representative_income 171913 Representative total house income in the dwelling unit is $171913 +in.representative_income 171924 Representative total house income in the dwelling unit is $171924 +in.representative_income 171927 Representative total house income in the dwelling unit is $171927 +in.representative_income 171928 Representative total house income in the dwelling unit is $171928 +in.representative_income 171940 Representative total house income in the dwelling unit is $171940 +in.representative_income 171943 Representative total house income in the dwelling unit is $171943 +in.representative_income 171957 Representative total house income in the dwelling unit is $171957 +in.representative_income 171964 Representative total house income in the dwelling unit is $171964 +in.representative_income 171966 Representative total house income in the dwelling unit is $171966 +in.representative_income 171995 Representative total house income in the dwelling unit is $171995 +in.representative_income 171999 Representative total house income in the dwelling unit is $171999 +in.representative_income 172011 Representative total house income in the dwelling unit is $172011 +in.representative_income 172028 Representative total house income in the dwelling unit is $172028 +in.representative_income 172038 Representative total house income in the dwelling unit is $172038 +in.representative_income 172042 Representative total house income in the dwelling unit is $172042 +in.representative_income 172043 Representative total house income in the dwelling unit is $172043 +in.representative_income 172046 Representative total house income in the dwelling unit is $172046 +in.representative_income 172048 Representative total house income in the dwelling unit is $172048 +in.representative_income 172054 Representative total house income in the dwelling unit is $172054 +in.representative_income 172059 Representative total house income in the dwelling unit is $172059 +in.representative_income 172078 Representative total house income in the dwelling unit is $172078 +in.representative_income 172111 Representative total house income in the dwelling unit is $172111 +in.representative_income 172119 Representative total house income in the dwelling unit is $172119 +in.representative_income 172129 Representative total house income in the dwelling unit is $172129 +in.representative_income 172135 Representative total house income in the dwelling unit is $172135 +in.representative_income 172139 Representative total house income in the dwelling unit is $172139 +in.representative_income 172150 Representative total house income in the dwelling unit is $172150 +in.representative_income 172182 Representative total house income in the dwelling unit is $172182 +in.representative_income 172183 Representative total house income in the dwelling unit is $172183 +in.representative_income 172217 Representative total house income in the dwelling unit is $172217 +in.representative_income 172226 Representative total house income in the dwelling unit is $172226 +in.representative_income 172230 Representative total house income in the dwelling unit is $172230 +in.representative_income 172245 Representative total house income in the dwelling unit is $172245 +in.representative_income 172253 Representative total house income in the dwelling unit is $172253 +in.representative_income 172260 Representative total house income in the dwelling unit is $172260 +in.representative_income 172270 Representative total house income in the dwelling unit is $172270 +in.representative_income 172288 Representative total house income in the dwelling unit is $172288 +in.representative_income 172323 Representative total house income in the dwelling unit is $172323 +in.representative_income 172331 Representative total house income in the dwelling unit is $172331 +in.representative_income 172335 Representative total house income in the dwelling unit is $172335 +in.representative_income 172356 Representative total house income in the dwelling unit is $172356 +in.representative_income 172396 Representative total house income in the dwelling unit is $172396 +in.representative_income 172407 Representative total house income in the dwelling unit is $172407 +in.representative_income 172411 Representative total house income in the dwelling unit is $172411 +in.representative_income 172428 Representative total house income in the dwelling unit is $172428 +in.representative_income 172432 Representative total house income in the dwelling unit is $172432 +in.representative_income 172443 Representative total house income in the dwelling unit is $172443 +in.representative_income 172458 Representative total house income in the dwelling unit is $172458 +in.representative_income 172503 Representative total house income in the dwelling unit is $172503 +in.representative_income 172513 Representative total house income in the dwelling unit is $172513 +in.representative_income 172533 Representative total house income in the dwelling unit is $172533 +in.representative_income 172551 Representative total house income in the dwelling unit is $172551 +in.representative_income 172562 Representative total house income in the dwelling unit is $172562 +in.representative_income 172587 Representative total house income in the dwelling unit is $172587 +in.representative_income 172604 Representative total house income in the dwelling unit is $172604 +in.representative_income 172611 Representative total house income in the dwelling unit is $172611 +in.representative_income 172639 Representative total house income in the dwelling unit is $172639 +in.representative_income 172649 Representative total house income in the dwelling unit is $172649 +in.representative_income 172659 Representative total house income in the dwelling unit is $172659 +in.representative_income 172665 Representative total house income in the dwelling unit is $172665 +in.representative_income 172675 Representative total house income in the dwelling unit is $172675 +in.representative_income 172717 Representative total house income in the dwelling unit is $172717 +in.representative_income 172718 Representative total house income in the dwelling unit is $172718 +in.representative_income 172735 Representative total house income in the dwelling unit is $172735 +in.representative_income 172745 Representative total house income in the dwelling unit is $172745 +in.representative_income 172755 Representative total house income in the dwelling unit is $172755 +in.representative_income 172767 Representative total house income in the dwelling unit is $172767 +in.representative_income 172769 Representative total house income in the dwelling unit is $172769 +in.representative_income 172785 Representative total house income in the dwelling unit is $172785 +in.representative_income 172797 Representative total house income in the dwelling unit is $172797 +in.representative_income 172799 Representative total house income in the dwelling unit is $172799 +in.representative_income 172812 Representative total house income in the dwelling unit is $172812 +in.representative_income 172821 Representative total house income in the dwelling unit is $172821 +in.representative_income 172826 Representative total house income in the dwelling unit is $172826 +in.representative_income 172836 Representative total house income in the dwelling unit is $172836 +in.representative_income 172847 Representative total house income in the dwelling unit is $172847 +in.representative_income 172850 Representative total house income in the dwelling unit is $172850 +in.representative_income 172872 Representative total house income in the dwelling unit is $172872 +in.representative_income 172875 Representative total house income in the dwelling unit is $172875 +in.representative_income 172886 Representative total house income in the dwelling unit is $172886 +in.representative_income 172897 Representative total house income in the dwelling unit is $172897 +in.representative_income 172929 Representative total house income in the dwelling unit is $172929 +in.representative_income 172932 Representative total house income in the dwelling unit is $172932 +in.representative_income 172937 Representative total house income in the dwelling unit is $172937 +in.representative_income 172947 Representative total house income in the dwelling unit is $172947 +in.representative_income 172954 Representative total house income in the dwelling unit is $172954 +in.representative_income 172956 Representative total house income in the dwelling unit is $172956 +in.representative_income 172976 Representative total house income in the dwelling unit is $172976 +in.representative_income 172983 Representative total house income in the dwelling unit is $172983 +in.representative_income 172987 Representative total house income in the dwelling unit is $172987 +in.representative_income 173004 Representative total house income in the dwelling unit is $173004 +in.representative_income 173038 Representative total house income in the dwelling unit is $173038 +in.representative_income 173040 Representative total house income in the dwelling unit is $173040 +in.representative_income 173061 Representative total house income in the dwelling unit is $173061 +in.representative_income 173068 Representative total house income in the dwelling unit is $173068 +in.representative_income 173077 Representative total house income in the dwelling unit is $173077 +in.representative_income 173080 Representative total house income in the dwelling unit is $173080 +in.representative_income 173082 Representative total house income in the dwelling unit is $173082 +in.representative_income 173092 Representative total house income in the dwelling unit is $173092 +in.representative_income 173139 Representative total house income in the dwelling unit is $173139 +in.representative_income 173147 Representative total house income in the dwelling unit is $173147 +in.representative_income 173166 Representative total house income in the dwelling unit is $173166 +in.representative_income 173181 Representative total house income in the dwelling unit is $173181 +in.representative_income 173187 Representative total house income in the dwelling unit is $173187 +in.representative_income 173200 Representative total house income in the dwelling unit is $173200 +in.representative_income 173240 Representative total house income in the dwelling unit is $173240 +in.representative_income 173255 Representative total house income in the dwelling unit is $173255 +in.representative_income 173271 Representative total house income in the dwelling unit is $173271 +in.representative_income 173284 Representative total house income in the dwelling unit is $173284 +in.representative_income 173286 Representative total house income in the dwelling unit is $173286 +in.representative_income 173308 Representative total house income in the dwelling unit is $173308 +in.representative_income 173311 Representative total house income in the dwelling unit is $173311 +in.representative_income 173325 Representative total house income in the dwelling unit is $173325 +in.representative_income 173341 Representative total house income in the dwelling unit is $173341 +in.representative_income 173362 Representative total house income in the dwelling unit is $173362 +in.representative_income 173377 Representative total house income in the dwelling unit is $173377 +in.representative_income 173388 Representative total house income in the dwelling unit is $173388 +in.representative_income 173415 Representative total house income in the dwelling unit is $173415 +in.representative_income 173416 Representative total house income in the dwelling unit is $173416 +in.representative_income 173456 Representative total house income in the dwelling unit is $173456 +in.representative_income 173469 Representative total house income in the dwelling unit is $173469 +in.representative_income 173483 Representative total house income in the dwelling unit is $173483 +in.representative_income 173490 Representative total house income in the dwelling unit is $173490 +in.representative_income 173523 Representative total house income in the dwelling unit is $173523 +in.representative_income 173525 Representative total house income in the dwelling unit is $173525 +in.representative_income 173543 Representative total house income in the dwelling unit is $173543 +in.representative_income 173577 Representative total house income in the dwelling unit is $173577 +in.representative_income 173588 Representative total house income in the dwelling unit is $173588 +in.representative_income 173593 Representative total house income in the dwelling unit is $173593 +in.representative_income 173598 Representative total house income in the dwelling unit is $173598 +in.representative_income 173631 Representative total house income in the dwelling unit is $173631 +in.representative_income 173644 Representative total house income in the dwelling unit is $173644 +in.representative_income 173664 Representative total house income in the dwelling unit is $173664 +in.representative_income 173674 Representative total house income in the dwelling unit is $173674 +in.representative_income 173684 Representative total house income in the dwelling unit is $173684 +in.representative_income 173694 Representative total house income in the dwelling unit is $173694 +in.representative_income 173697 Representative total house income in the dwelling unit is $173697 +in.representative_income 173716 Representative total house income in the dwelling unit is $173716 +in.representative_income 173737 Representative total house income in the dwelling unit is $173737 +in.representative_income 173739 Representative total house income in the dwelling unit is $173739 +in.representative_income 173745 Representative total house income in the dwelling unit is $173745 +in.representative_income 173792 Representative total house income in the dwelling unit is $173792 +in.representative_income 173795 Representative total house income in the dwelling unit is $173795 +in.representative_income 173799 Representative total house income in the dwelling unit is $173799 +in.representative_income 173800 Representative total house income in the dwelling unit is $173800 +in.representative_income 173846 Representative total house income in the dwelling unit is $173846 +in.representative_income 173896 Representative total house income in the dwelling unit is $173896 +in.representative_income 173899 Representative total house income in the dwelling unit is $173899 +in.representative_income 173903 Representative total house income in the dwelling unit is $173903 +in.representative_income 173904 Representative total house income in the dwelling unit is $173904 +in.representative_income 173913 Representative total house income in the dwelling unit is $173913 +in.representative_income 173934 Representative total house income in the dwelling unit is $173934 +in.representative_income 173944 Representative total house income in the dwelling unit is $173944 +in.representative_income 173947 Representative total house income in the dwelling unit is $173947 +in.representative_income 173956 Representative total house income in the dwelling unit is $173956 +in.representative_income 173960 Representative total house income in the dwelling unit is $173960 +in.representative_income 173983 Representative total house income in the dwelling unit is $173983 +in.representative_income 174005 Representative total house income in the dwelling unit is $174005 +in.representative_income 174006 Representative total house income in the dwelling unit is $174006 +in.representative_income 174009 Representative total house income in the dwelling unit is $174009 +in.representative_income 174017 Representative total house income in the dwelling unit is $174017 +in.representative_income 174027 Representative total house income in the dwelling unit is $174027 +in.representative_income 174031 Representative total house income in the dwelling unit is $174031 +in.representative_income 174039 Representative total house income in the dwelling unit is $174039 +in.representative_income 174048 Representative total house income in the dwelling unit is $174048 +in.representative_income 174064 Representative total house income in the dwelling unit is $174064 +in.representative_income 174086 Representative total house income in the dwelling unit is $174086 +in.representative_income 174096 Representative total house income in the dwelling unit is $174096 +in.representative_income 174109 Representative total house income in the dwelling unit is $174109 +in.representative_income 174116 Representative total house income in the dwelling unit is $174116 +in.representative_income 174126 Representative total house income in the dwelling unit is $174126 +in.representative_income 174147 Representative total house income in the dwelling unit is $174147 +in.representative_income 174149 Representative total house income in the dwelling unit is $174149 +in.representative_income 174183 Representative total house income in the dwelling unit is $174183 +in.representative_income 174221 Representative total house income in the dwelling unit is $174221 +in.representative_income 174250 Representative total house income in the dwelling unit is $174250 +in.representative_income 174280 Representative total house income in the dwelling unit is $174280 +in.representative_income 174316 Representative total house income in the dwelling unit is $174316 +in.representative_income 174326 Representative total house income in the dwelling unit is $174326 +in.representative_income 174328 Representative total house income in the dwelling unit is $174328 +in.representative_income 174336 Representative total house income in the dwelling unit is $174336 +in.representative_income 174351 Representative total house income in the dwelling unit is $174351 +in.representative_income 174390 Representative total house income in the dwelling unit is $174390 +in.representative_income 174398 Representative total house income in the dwelling unit is $174398 +in.representative_income 174419 Representative total house income in the dwelling unit is $174419 +in.representative_income 174432 Representative total house income in the dwelling unit is $174432 +in.representative_income 174436 Representative total house income in the dwelling unit is $174436 +in.representative_income 174457 Representative total house income in the dwelling unit is $174457 +in.representative_income 174496 Representative total house income in the dwelling unit is $174496 +in.representative_income 174522 Representative total house income in the dwelling unit is $174522 +in.representative_income 174537 Representative total house income in the dwelling unit is $174537 +in.representative_income 174542 Representative total house income in the dwelling unit is $174542 +in.representative_income 174553 Representative total house income in the dwelling unit is $174553 +in.representative_income 174610 Representative total house income in the dwelling unit is $174610 +in.representative_income 174642 Representative total house income in the dwelling unit is $174642 +in.representative_income 174650 Representative total house income in the dwelling unit is $174650 +in.representative_income 174654 Representative total house income in the dwelling unit is $174654 +in.representative_income 174728 Representative total house income in the dwelling unit is $174728 +in.representative_income 174749 Representative total house income in the dwelling unit is $174749 +in.representative_income 174755 Representative total house income in the dwelling unit is $174755 +in.representative_income 174757 Representative total house income in the dwelling unit is $174757 +in.representative_income 174759 Representative total house income in the dwelling unit is $174759 +in.representative_income 174831 Representative total house income in the dwelling unit is $174831 +in.representative_income 174854 Representative total house income in the dwelling unit is $174854 +in.representative_income 174856 Representative total house income in the dwelling unit is $174856 +in.representative_income 174865 Representative total house income in the dwelling unit is $174865 +in.representative_income 174896 Representative total house income in the dwelling unit is $174896 +in.representative_income 174928 Representative total house income in the dwelling unit is $174928 +in.representative_income 174935 Representative total house income in the dwelling unit is $174935 +in.representative_income 174957 Representative total house income in the dwelling unit is $174957 +in.representative_income 174959 Representative total house income in the dwelling unit is $174959 +in.representative_income 174972 Representative total house income in the dwelling unit is $174972 +in.representative_income 174993 Representative total house income in the dwelling unit is $174993 +in.representative_income 175024 Representative total house income in the dwelling unit is $175024 +in.representative_income 175025 Representative total house income in the dwelling unit is $175025 +in.representative_income 175033 Representative total house income in the dwelling unit is $175033 +in.representative_income 175036 Representative total house income in the dwelling unit is $175036 +in.representative_income 175038 Representative total house income in the dwelling unit is $175038 +in.representative_income 175058 Representative total house income in the dwelling unit is $175058 +in.representative_income 175064 Representative total house income in the dwelling unit is $175064 +in.representative_income 175085 Representative total house income in the dwelling unit is $175085 +in.representative_income 175140 Representative total house income in the dwelling unit is $175140 +in.representative_income 175144 Representative total house income in the dwelling unit is $175144 +in.representative_income 175149 Representative total house income in the dwelling unit is $175149 +in.representative_income 175159 Representative total house income in the dwelling unit is $175159 +in.representative_income 175187 Representative total house income in the dwelling unit is $175187 +in.representative_income 175260 Representative total house income in the dwelling unit is $175260 +in.representative_income 175275 Representative total house income in the dwelling unit is $175275 +in.representative_income 175294 Representative total house income in the dwelling unit is $175294 +in.representative_income 175347 Representative total house income in the dwelling unit is $175347 +in.representative_income 175360 Representative total house income in the dwelling unit is $175360 +in.representative_income 175361 Representative total house income in the dwelling unit is $175361 +in.representative_income 175378 Representative total house income in the dwelling unit is $175378 +in.representative_income 175381 Representative total house income in the dwelling unit is $175381 +in.representative_income 175402 Representative total house income in the dwelling unit is $175402 +in.representative_income 175423 Representative total house income in the dwelling unit is $175423 +in.representative_income 175442 Representative total house income in the dwelling unit is $175442 +in.representative_income 175450 Representative total house income in the dwelling unit is $175450 +in.representative_income 175462 Representative total house income in the dwelling unit is $175462 +in.representative_income 175466 Representative total house income in the dwelling unit is $175466 +in.representative_income 175469 Representative total house income in the dwelling unit is $175469 +in.representative_income 175487 Representative total house income in the dwelling unit is $175487 +in.representative_income 175517 Representative total house income in the dwelling unit is $175517 +in.representative_income 175554 Representative total house income in the dwelling unit is $175554 +in.representative_income 175563 Representative total house income in the dwelling unit is $175563 +in.representative_income 175577 Representative total house income in the dwelling unit is $175577 +in.representative_income 175592 Representative total house income in the dwelling unit is $175592 +in.representative_income 175605 Representative total house income in the dwelling unit is $175605 +in.representative_income 175617 Representative total house income in the dwelling unit is $175617 +in.representative_income 175634 Representative total house income in the dwelling unit is $175634 +in.representative_income 175656 Representative total house income in the dwelling unit is $175656 +in.representative_income 175664 Representative total house income in the dwelling unit is $175664 +in.representative_income 175685 Representative total house income in the dwelling unit is $175685 +in.representative_income 175695 Representative total house income in the dwelling unit is $175695 +in.representative_income 175723 Representative total house income in the dwelling unit is $175723 +in.representative_income 175765 Representative total house income in the dwelling unit is $175765 +in.representative_income 175793 Representative total house income in the dwelling unit is $175793 +in.representative_income 175806 Representative total house income in the dwelling unit is $175806 +in.representative_income 175831 Representative total house income in the dwelling unit is $175831 +in.representative_income 175863 Representative total house income in the dwelling unit is $175863 +in.representative_income 175866 Representative total house income in the dwelling unit is $175866 +in.representative_income 175908 Representative total house income in the dwelling unit is $175908 +in.representative_income 175938 Representative total house income in the dwelling unit is $175938 +in.representative_income 175941 Representative total house income in the dwelling unit is $175941 +in.representative_income 175947 Representative total house income in the dwelling unit is $175947 +in.representative_income 175966 Representative total house income in the dwelling unit is $175966 +in.representative_income 175967 Representative total house income in the dwelling unit is $175967 +in.representative_income 175981 Representative total house income in the dwelling unit is $175981 +in.representative_income 176008 Representative total house income in the dwelling unit is $176008 +in.representative_income 176014 Representative total house income in the dwelling unit is $176014 +in.representative_income 176046 Representative total house income in the dwelling unit is $176046 +in.representative_income 176062 Representative total house income in the dwelling unit is $176062 +in.representative_income 176116 Representative total house income in the dwelling unit is $176116 +in.representative_income 176119 Representative total house income in the dwelling unit is $176119 +in.representative_income 176121 Representative total house income in the dwelling unit is $176121 +in.representative_income 176153 Representative total house income in the dwelling unit is $176153 +in.representative_income 176181 Representative total house income in the dwelling unit is $176181 +in.representative_income 176225 Representative total house income in the dwelling unit is $176225 +in.representative_income 176248 Representative total house income in the dwelling unit is $176248 +in.representative_income 176260 Representative total house income in the dwelling unit is $176260 +in.representative_income 176275 Representative total house income in the dwelling unit is $176275 +in.representative_income 176304 Representative total house income in the dwelling unit is $176304 +in.representative_income 176330 Representative total house income in the dwelling unit is $176330 +in.representative_income 176361 Representative total house income in the dwelling unit is $176361 +in.representative_income 176367 Representative total house income in the dwelling unit is $176367 +in.representative_income 176378 Representative total house income in the dwelling unit is $176378 +in.representative_income 176409 Representative total house income in the dwelling unit is $176409 +in.representative_income 176430 Representative total house income in the dwelling unit is $176430 +in.representative_income 176441 Representative total house income in the dwelling unit is $176441 +in.representative_income 176472 Representative total house income in the dwelling unit is $176472 +in.representative_income 176475 Representative total house income in the dwelling unit is $176475 +in.representative_income 176482 Representative total house income in the dwelling unit is $176482 +in.representative_income 176487 Representative total house income in the dwelling unit is $176487 +in.representative_income 176541 Representative total house income in the dwelling unit is $176541 +in.representative_income 176573 Representative total house income in the dwelling unit is $176573 +in.representative_income 176583 Representative total house income in the dwelling unit is $176583 +in.representative_income 176585 Representative total house income in the dwelling unit is $176585 +in.representative_income 176647 Representative total house income in the dwelling unit is $176647 +in.representative_income 176657 Representative total house income in the dwelling unit is $176657 +in.representative_income 176765 Representative total house income in the dwelling unit is $176765 +in.representative_income 176775 Representative total house income in the dwelling unit is $176775 +in.representative_income 176790 Representative total house income in the dwelling unit is $176790 +in.representative_income 176857 Representative total house income in the dwelling unit is $176857 +in.representative_income 176873 Representative total house income in the dwelling unit is $176873 +in.representative_income 176876 Representative total house income in the dwelling unit is $176876 +in.representative_income 176990 Representative total house income in the dwelling unit is $176990 +in.representative_income 177119 Representative total house income in the dwelling unit is $177119 +in.representative_income 177141 Representative total house income in the dwelling unit is $177141 +in.representative_income 177173 Representative total house income in the dwelling unit is $177173 +in.representative_income 177179 Representative total house income in the dwelling unit is $177179 +in.representative_income 177197 Representative total house income in the dwelling unit is $177197 +in.representative_income 177200 Representative total house income in the dwelling unit is $177200 +in.representative_income 177206 Representative total house income in the dwelling unit is $177206 +in.representative_income 177280 Representative total house income in the dwelling unit is $177280 +in.representative_income 177305 Representative total house income in the dwelling unit is $177305 +in.representative_income 177377 Representative total house income in the dwelling unit is $177377 +in.representative_income 177385 Representative total house income in the dwelling unit is $177385 +in.representative_income 177410 Representative total house income in the dwelling unit is $177410 +in.representative_income 177413 Representative total house income in the dwelling unit is $177413 +in.representative_income 177441 Representative total house income in the dwelling unit is $177441 +in.representative_income 177482 Representative total house income in the dwelling unit is $177482 +in.representative_income 177521 Representative total house income in the dwelling unit is $177521 +in.representative_income 177583 Representative total house income in the dwelling unit is $177583 +in.representative_income 177616 Representative total house income in the dwelling unit is $177616 +in.representative_income 177737 Representative total house income in the dwelling unit is $177737 +in.representative_income 177786 Representative total house income in the dwelling unit is $177786 +in.representative_income 177806 Representative total house income in the dwelling unit is $177806 +in.representative_income 177846 Representative total house income in the dwelling unit is $177846 +in.representative_income 177925 Representative total house income in the dwelling unit is $177925 +in.representative_income 177954 Representative total house income in the dwelling unit is $177954 +in.representative_income 177988 Representative total house income in the dwelling unit is $177988 +in.representative_income 178018 Representative total house income in the dwelling unit is $178018 +in.representative_income 178029 Representative total house income in the dwelling unit is $178029 +in.representative_income 178085 Representative total house income in the dwelling unit is $178085 +in.representative_income 178123 Representative total house income in the dwelling unit is $178123 +in.representative_income 178132 Representative total house income in the dwelling unit is $178132 +in.representative_income 178190 Representative total house income in the dwelling unit is $178190 +in.representative_income 178193 Representative total house income in the dwelling unit is $178193 +in.representative_income 178228 Representative total house income in the dwelling unit is $178228 +in.representative_income 178235 Representative total house income in the dwelling unit is $178235 +in.representative_income 178277 Representative total house income in the dwelling unit is $178277 +in.representative_income 178291 Representative total house income in the dwelling unit is $178291 +in.representative_income 178331 Representative total house income in the dwelling unit is $178331 +in.representative_income 178334 Representative total house income in the dwelling unit is $178334 +in.representative_income 178392 Representative total house income in the dwelling unit is $178392 +in.representative_income 178408 Representative total house income in the dwelling unit is $178408 +in.representative_income 178418 Representative total house income in the dwelling unit is $178418 +in.representative_income 178439 Representative total house income in the dwelling unit is $178439 +in.representative_income 178441 Representative total house income in the dwelling unit is $178441 +in.representative_income 178565 Representative total house income in the dwelling unit is $178565 +in.representative_income 178601 Representative total house income in the dwelling unit is $178601 +in.representative_income 178648 Representative total house income in the dwelling unit is $178648 +in.representative_income 178678 Representative total house income in the dwelling unit is $178678 +in.representative_income 178729 Representative total house income in the dwelling unit is $178729 +in.representative_income 178738 Representative total house income in the dwelling unit is $178738 +in.representative_income 178761 Representative total house income in the dwelling unit is $178761 +in.representative_income 178796 Representative total house income in the dwelling unit is $178796 +in.representative_income 178833 Representative total house income in the dwelling unit is $178833 +in.representative_income 178854 Representative total house income in the dwelling unit is $178854 +in.representative_income 178858 Representative total house income in the dwelling unit is $178858 +in.representative_income 178926 Representative total house income in the dwelling unit is $178926 +in.representative_income 178966 Representative total house income in the dwelling unit is $178966 +in.representative_income 178998 Representative total house income in the dwelling unit is $178998 +in.representative_income 179051 Representative total house income in the dwelling unit is $179051 +in.representative_income 179072 Representative total house income in the dwelling unit is $179072 +in.representative_income 179163 Representative total house income in the dwelling unit is $179163 +in.representative_income 179178 Representative total house income in the dwelling unit is $179178 +in.representative_income 179200 Representative total house income in the dwelling unit is $179200 +in.representative_income 179250 Representative total house income in the dwelling unit is $179250 +in.representative_income 179266 Representative total house income in the dwelling unit is $179266 +in.representative_income 179267 Representative total house income in the dwelling unit is $179267 +in.representative_income 179283 Representative total house income in the dwelling unit is $179283 +in.representative_income 179358 Representative total house income in the dwelling unit is $179358 +in.representative_income 179402 Representative total house income in the dwelling unit is $179402 +in.representative_income 179452 Representative total house income in the dwelling unit is $179452 +in.representative_income 179473 Representative total house income in the dwelling unit is $179473 +in.representative_income 179481 Representative total house income in the dwelling unit is $179481 +in.representative_income 179504 Representative total house income in the dwelling unit is $179504 +in.representative_income 179574 Representative total house income in the dwelling unit is $179574 +in.representative_income 179588 Representative total house income in the dwelling unit is $179588 +in.representative_income 179599 Representative total house income in the dwelling unit is $179599 +in.representative_income 179679 Representative total house income in the dwelling unit is $179679 +in.representative_income 179695 Representative total house income in the dwelling unit is $179695 +in.representative_income 179726 Representative total house income in the dwelling unit is $179726 +in.representative_income 179728 Representative total house income in the dwelling unit is $179728 +in.representative_income 179790 Representative total house income in the dwelling unit is $179790 +in.representative_income 179803 Representative total house income in the dwelling unit is $179803 +in.representative_income 179806 Representative total house income in the dwelling unit is $179806 +in.representative_income 179811 Representative total house income in the dwelling unit is $179811 +in.representative_income 179846 Representative total house income in the dwelling unit is $179846 +in.representative_income 179886 Representative total house income in the dwelling unit is $179886 +in.representative_income 179910 Representative total house income in the dwelling unit is $179910 +in.representative_income 179916 Representative total house income in the dwelling unit is $179916 +in.representative_income 179989 Representative total house income in the dwelling unit is $179989 +in.representative_income 180006 Representative total house income in the dwelling unit is $180006 +in.representative_income 180091 Representative total house income in the dwelling unit is $180091 +in.representative_income 180114 Representative total house income in the dwelling unit is $180114 +in.representative_income 180124 Representative total house income in the dwelling unit is $180124 +in.representative_income 180232 Representative total house income in the dwelling unit is $180232 +in.representative_income 180236 Representative total house income in the dwelling unit is $180236 +in.representative_income 180298 Representative total house income in the dwelling unit is $180298 +in.representative_income 180316 Representative total house income in the dwelling unit is $180316 +in.representative_income 180337 Representative total house income in the dwelling unit is $180337 +in.representative_income 180339 Representative total house income in the dwelling unit is $180339 +in.representative_income 180401 Representative total house income in the dwelling unit is $180401 +in.representative_income 180439 Representative total house income in the dwelling unit is $180439 +in.representative_income 180505 Representative total house income in the dwelling unit is $180505 +in.representative_income 180513 Representative total house income in the dwelling unit is $180513 +in.representative_income 180607 Representative total house income in the dwelling unit is $180607 +in.representative_income 180628 Representative total house income in the dwelling unit is $180628 +in.representative_income 180634 Representative total house income in the dwelling unit is $180634 +in.representative_income 180654 Representative total house income in the dwelling unit is $180654 +in.representative_income 180660 Representative total house income in the dwelling unit is $180660 +in.representative_income 180715 Representative total house income in the dwelling unit is $180715 +in.representative_income 180759 Representative total house income in the dwelling unit is $180759 +in.representative_income 180816 Representative total house income in the dwelling unit is $180816 +in.representative_income 180865 Representative total house income in the dwelling unit is $180865 +in.representative_income 180876 Representative total house income in the dwelling unit is $180876 +in.representative_income 180978 Representative total house income in the dwelling unit is $180978 +in.representative_income 180984 Representative total house income in the dwelling unit is $180984 +in.representative_income 181020 Representative total house income in the dwelling unit is $181020 +in.representative_income 181076 Representative total house income in the dwelling unit is $181076 +in.representative_income 181087 Representative total house income in the dwelling unit is $181087 +in.representative_income 181128 Representative total house income in the dwelling unit is $181128 +in.representative_income 181174 Representative total house income in the dwelling unit is $181174 +in.representative_income 181220 Representative total house income in the dwelling unit is $181220 +in.representative_income 181267 Representative total house income in the dwelling unit is $181267 +in.representative_income 181321 Representative total house income in the dwelling unit is $181321 +in.representative_income 181392 Representative total house income in the dwelling unit is $181392 +in.representative_income 181413 Representative total house income in the dwelling unit is $181413 +in.representative_income 181422 Representative total house income in the dwelling unit is $181422 +in.representative_income 181456 Representative total house income in the dwelling unit is $181456 +in.representative_income 181519 Representative total house income in the dwelling unit is $181519 +in.representative_income 181536 Representative total house income in the dwelling unit is $181536 +in.representative_income 181551 Representative total house income in the dwelling unit is $181551 +in.representative_income 181603 Representative total house income in the dwelling unit is $181603 +in.representative_income 181624 Representative total house income in the dwelling unit is $181624 +in.representative_income 181681 Representative total house income in the dwelling unit is $181681 +in.representative_income 181725 Representative total house income in the dwelling unit is $181725 +in.representative_income 181742 Representative total house income in the dwelling unit is $181742 +in.representative_income 181814 Representative total house income in the dwelling unit is $181814 +in.representative_income 181826 Representative total house income in the dwelling unit is $181826 +in.representative_income 181845 Representative total house income in the dwelling unit is $181845 +in.representative_income 181846 Representative total house income in the dwelling unit is $181846 +in.representative_income 181856 Representative total house income in the dwelling unit is $181856 +in.representative_income 181886 Representative total house income in the dwelling unit is $181886 +in.representative_income 181927 Representative total house income in the dwelling unit is $181927 +in.representative_income 181948 Representative total house income in the dwelling unit is $181948 +in.representative_income 181949 Representative total house income in the dwelling unit is $181949 +in.representative_income 181951 Representative total house income in the dwelling unit is $181951 +in.representative_income 181961 Representative total house income in the dwelling unit is $181961 +in.representative_income 181968 Representative total house income in the dwelling unit is $181968 +in.representative_income 182028 Representative total house income in the dwelling unit is $182028 +in.representative_income 182057 Representative total house income in the dwelling unit is $182057 +in.representative_income 182059 Representative total house income in the dwelling unit is $182059 +in.representative_income 182155 Representative total house income in the dwelling unit is $182155 +in.representative_income 182167 Representative total house income in the dwelling unit is $182167 +in.representative_income 182257 Representative total house income in the dwelling unit is $182257 +in.representative_income 182275 Representative total house income in the dwelling unit is $182275 +in.representative_income 182331 Representative total house income in the dwelling unit is $182331 +in.representative_income 182342 Representative total house income in the dwelling unit is $182342 +in.representative_income 182383 Representative total house income in the dwelling unit is $182383 +in.representative_income 182432 Representative total house income in the dwelling unit is $182432 +in.representative_income 182447 Representative total house income in the dwelling unit is $182447 +in.representative_income 182486 Representative total house income in the dwelling unit is $182486 +in.representative_income 182491 Representative total house income in the dwelling unit is $182491 +in.representative_income 182533 Representative total house income in the dwelling unit is $182533 +in.representative_income 182552 Representative total house income in the dwelling unit is $182552 +in.representative_income 182567 Representative total house income in the dwelling unit is $182567 +in.representative_income 182587 Representative total house income in the dwelling unit is $182587 +in.representative_income 182599 Representative total house income in the dwelling unit is $182599 +in.representative_income 182600 Representative total house income in the dwelling unit is $182600 +in.representative_income 182634 Representative total house income in the dwelling unit is $182634 +in.representative_income 182671 Representative total house income in the dwelling unit is $182671 +in.representative_income 182701 Representative total house income in the dwelling unit is $182701 +in.representative_income 182729 Representative total house income in the dwelling unit is $182729 +in.representative_income 182735 Representative total house income in the dwelling unit is $182735 +in.representative_income 182763 Representative total house income in the dwelling unit is $182763 +in.representative_income 182773 Representative total house income in the dwelling unit is $182773 +in.representative_income 182809 Representative total house income in the dwelling unit is $182809 +in.representative_income 182836 Representative total house income in the dwelling unit is $182836 +in.representative_income 182846 Representative total house income in the dwelling unit is $182846 +in.representative_income 182873 Representative total house income in the dwelling unit is $182873 +in.representative_income 182916 Representative total house income in the dwelling unit is $182916 +in.representative_income 182924 Representative total house income in the dwelling unit is $182924 +in.representative_income 182937 Representative total house income in the dwelling unit is $182937 +in.representative_income 182974 Representative total house income in the dwelling unit is $182974 +in.representative_income 182980 Representative total house income in the dwelling unit is $182980 +in.representative_income 183008 Representative total house income in the dwelling unit is $183008 +in.representative_income 183023 Representative total house income in the dwelling unit is $183023 +in.representative_income 183032 Representative total house income in the dwelling unit is $183032 +in.representative_income 183033 Representative total house income in the dwelling unit is $183033 +in.representative_income 183073 Representative total house income in the dwelling unit is $183073 +in.representative_income 183079 Representative total house income in the dwelling unit is $183079 +in.representative_income 183080 Representative total house income in the dwelling unit is $183080 +in.representative_income 183083 Representative total house income in the dwelling unit is $183083 +in.representative_income 183139 Representative total house income in the dwelling unit is $183139 +in.representative_income 183185 Representative total house income in the dwelling unit is $183185 +in.representative_income 183206 Representative total house income in the dwelling unit is $183206 +in.representative_income 183238 Representative total house income in the dwelling unit is $183238 +in.representative_income 183240 Representative total house income in the dwelling unit is $183240 +in.representative_income 183244 Representative total house income in the dwelling unit is $183244 +in.representative_income 183341 Representative total house income in the dwelling unit is $183341 +in.representative_income 183345 Representative total house income in the dwelling unit is $183345 +in.representative_income 183378 Representative total house income in the dwelling unit is $183378 +in.representative_income 183392 Representative total house income in the dwelling unit is $183392 +in.representative_income 183442 Representative total house income in the dwelling unit is $183442 +in.representative_income 183453 Representative total house income in the dwelling unit is $183453 +in.representative_income 183501 Representative total house income in the dwelling unit is $183501 +in.representative_income 183516 Representative total house income in the dwelling unit is $183516 +in.representative_income 183533 Representative total house income in the dwelling unit is $183533 +in.representative_income 183543 Representative total house income in the dwelling unit is $183543 +in.representative_income 183544 Representative total house income in the dwelling unit is $183544 +in.representative_income 183559 Representative total house income in the dwelling unit is $183559 +in.representative_income 183560 Representative total house income in the dwelling unit is $183560 +in.representative_income 183572 Representative total house income in the dwelling unit is $183572 +in.representative_income 183591 Representative total house income in the dwelling unit is $183591 +in.representative_income 183592 Representative total house income in the dwelling unit is $183592 +in.representative_income 183599 Representative total house income in the dwelling unit is $183599 +in.representative_income 183601 Representative total house income in the dwelling unit is $183601 +in.representative_income 183630 Representative total house income in the dwelling unit is $183630 +in.representative_income 183637 Representative total house income in the dwelling unit is $183637 +in.representative_income 183644 Representative total house income in the dwelling unit is $183644 +in.representative_income 183665 Representative total house income in the dwelling unit is $183665 +in.representative_income 183667 Representative total house income in the dwelling unit is $183667 +in.representative_income 183671 Representative total house income in the dwelling unit is $183671 +in.representative_income 183680 Representative total house income in the dwelling unit is $183680 +in.representative_income 183702 Representative total house income in the dwelling unit is $183702 +in.representative_income 183745 Representative total house income in the dwelling unit is $183745 +in.representative_income 183774 Representative total house income in the dwelling unit is $183774 +in.representative_income 183784 Representative total house income in the dwelling unit is $183784 +in.representative_income 183788 Representative total house income in the dwelling unit is $183788 +in.representative_income 183805 Representative total house income in the dwelling unit is $183805 +in.representative_income 183809 Representative total house income in the dwelling unit is $183809 +in.representative_income 183825 Representative total house income in the dwelling unit is $183825 +in.representative_income 183846 Representative total house income in the dwelling unit is $183846 +in.representative_income 183856 Representative total house income in the dwelling unit is $183856 +in.representative_income 183877 Representative total house income in the dwelling unit is $183877 +in.representative_income 183882 Representative total house income in the dwelling unit is $183882 +in.representative_income 183896 Representative total house income in the dwelling unit is $183896 +in.representative_income 183922 Representative total house income in the dwelling unit is $183922 +in.representative_income 183923 Representative total house income in the dwelling unit is $183923 +in.representative_income 183947 Representative total house income in the dwelling unit is $183947 +in.representative_income 183968 Representative total house income in the dwelling unit is $183968 +in.representative_income 183991 Representative total house income in the dwelling unit is $183991 +in.representative_income 184004 Representative total house income in the dwelling unit is $184004 +in.representative_income 184011 Representative total house income in the dwelling unit is $184011 +in.representative_income 184048 Representative total house income in the dwelling unit is $184048 +in.representative_income 184096 Representative total house income in the dwelling unit is $184096 +in.representative_income 184099 Representative total house income in the dwelling unit is $184099 +in.representative_income 184112 Representative total house income in the dwelling unit is $184112 +in.representative_income 184114 Representative total house income in the dwelling unit is $184114 +in.representative_income 184134 Representative total house income in the dwelling unit is $184134 +in.representative_income 184149 Representative total house income in the dwelling unit is $184149 +in.representative_income 184150 Representative total house income in the dwelling unit is $184150 +in.representative_income 184200 Representative total house income in the dwelling unit is $184200 +in.representative_income 184204 Representative total house income in the dwelling unit is $184204 +in.representative_income 184218 Representative total house income in the dwelling unit is $184218 +in.representative_income 184221 Representative total house income in the dwelling unit is $184221 +in.representative_income 184240 Representative total house income in the dwelling unit is $184240 +in.representative_income 184250 Representative total house income in the dwelling unit is $184250 +in.representative_income 184271 Representative total house income in the dwelling unit is $184271 +in.representative_income 184293 Representative total house income in the dwelling unit is $184293 +in.representative_income 184311 Representative total house income in the dwelling unit is $184311 +in.representative_income 184321 Representative total house income in the dwelling unit is $184321 +in.representative_income 184328 Representative total house income in the dwelling unit is $184328 +in.representative_income 184345 Representative total house income in the dwelling unit is $184345 +in.representative_income 184351 Representative total house income in the dwelling unit is $184351 +in.representative_income 184364 Representative total house income in the dwelling unit is $184364 +in.representative_income 184419 Representative total house income in the dwelling unit is $184419 +in.representative_income 184423 Representative total house income in the dwelling unit is $184423 +in.representative_income 184436 Representative total house income in the dwelling unit is $184436 +in.representative_income 184442 Representative total house income in the dwelling unit is $184442 +in.representative_income 184451 Representative total house income in the dwelling unit is $184451 +in.representative_income 184452 Representative total house income in the dwelling unit is $184452 +in.representative_income 184491 Representative total house income in the dwelling unit is $184491 +in.representative_income 184526 Representative total house income in the dwelling unit is $184526 +in.representative_income 184527 Representative total house income in the dwelling unit is $184527 +in.representative_income 184544 Representative total house income in the dwelling unit is $184544 +in.representative_income 184553 Representative total house income in the dwelling unit is $184553 +in.representative_income 184556 Representative total house income in the dwelling unit is $184556 +in.representative_income 184566 Representative total house income in the dwelling unit is $184566 +in.representative_income 184582 Representative total house income in the dwelling unit is $184582 +in.representative_income 184584 Representative total house income in the dwelling unit is $184584 +in.representative_income 184587 Representative total house income in the dwelling unit is $184587 +in.representative_income 184614 Representative total house income in the dwelling unit is $184614 +in.representative_income 184630 Representative total house income in the dwelling unit is $184630 +in.representative_income 184633 Representative total house income in the dwelling unit is $184633 +in.representative_income 184652 Representative total house income in the dwelling unit is $184652 +in.representative_income 184655 Representative total house income in the dwelling unit is $184655 +in.representative_income 184661 Representative total house income in the dwelling unit is $184661 +in.representative_income 184676 Representative total house income in the dwelling unit is $184676 +in.representative_income 184687 Representative total house income in the dwelling unit is $184687 +in.representative_income 184733 Representative total house income in the dwelling unit is $184733 +in.representative_income 184740 Representative total house income in the dwelling unit is $184740 +in.representative_income 184760 Representative total house income in the dwelling unit is $184760 +in.representative_income 184762 Representative total house income in the dwelling unit is $184762 +in.representative_income 184766 Representative total house income in the dwelling unit is $184766 +in.representative_income 184795 Representative total house income in the dwelling unit is $184795 +in.representative_income 184798 Representative total house income in the dwelling unit is $184798 +in.representative_income 184803 Representative total house income in the dwelling unit is $184803 +in.representative_income 184848 Representative total house income in the dwelling unit is $184848 +in.representative_income 184857 Representative total house income in the dwelling unit is $184857 +in.representative_income 184868 Representative total house income in the dwelling unit is $184868 +in.representative_income 184869 Representative total house income in the dwelling unit is $184869 +in.representative_income 184873 Representative total house income in the dwelling unit is $184873 +in.representative_income 184880 Representative total house income in the dwelling unit is $184880 +in.representative_income 184887 Representative total house income in the dwelling unit is $184887 +in.representative_income 184890 Representative total house income in the dwelling unit is $184890 +in.representative_income 184940 Representative total house income in the dwelling unit is $184940 +in.representative_income 184955 Representative total house income in the dwelling unit is $184955 +in.representative_income 184958 Representative total house income in the dwelling unit is $184958 +in.representative_income 184978 Representative total house income in the dwelling unit is $184978 +in.representative_income 185030 Representative total house income in the dwelling unit is $185030 +in.representative_income 185031 Representative total house income in the dwelling unit is $185031 +in.representative_income 185042 Representative total house income in the dwelling unit is $185042 +in.representative_income 185057 Representative total house income in the dwelling unit is $185057 +in.representative_income 185059 Representative total house income in the dwelling unit is $185059 +in.representative_income 185063 Representative total house income in the dwelling unit is $185063 +in.representative_income 185074 Representative total house income in the dwelling unit is $185074 +in.representative_income 185083 Representative total house income in the dwelling unit is $185083 +in.representative_income 185085 Representative total house income in the dwelling unit is $185085 +in.representative_income 185095 Representative total house income in the dwelling unit is $185095 +in.representative_income 185109 Representative total house income in the dwelling unit is $185109 +in.representative_income 185117 Representative total house income in the dwelling unit is $185117 +in.representative_income 185119 Representative total house income in the dwelling unit is $185119 +in.representative_income 185146 Representative total house income in the dwelling unit is $185146 +in.representative_income 185160 Representative total house income in the dwelling unit is $185160 +in.representative_income 185169 Representative total house income in the dwelling unit is $185169 +in.representative_income 185187 Representative total house income in the dwelling unit is $185187 +in.representative_income 185189 Representative total house income in the dwelling unit is $185189 +in.representative_income 185193 Representative total house income in the dwelling unit is $185193 +in.representative_income 185247 Representative total house income in the dwelling unit is $185247 +in.representative_income 185249 Representative total house income in the dwelling unit is $185249 +in.representative_income 185261 Representative total house income in the dwelling unit is $185261 +in.representative_income 185277 Representative total house income in the dwelling unit is $185277 +in.representative_income 185290 Representative total house income in the dwelling unit is $185290 +in.representative_income 185294 Representative total house income in the dwelling unit is $185294 +in.representative_income 185301 Representative total house income in the dwelling unit is $185301 +in.representative_income 185311 Representative total house income in the dwelling unit is $185311 +in.representative_income 185352 Representative total house income in the dwelling unit is $185352 +in.representative_income 185362 Representative total house income in the dwelling unit is $185362 +in.representative_income 185385 Representative total house income in the dwelling unit is $185385 +in.representative_income 185399 Representative total house income in the dwelling unit is $185399 +in.representative_income 185409 Representative total house income in the dwelling unit is $185409 +in.representative_income 185421 Representative total house income in the dwelling unit is $185421 +in.representative_income 185439 Representative total house income in the dwelling unit is $185439 +in.representative_income 185456 Representative total house income in the dwelling unit is $185456 +in.representative_income 185463 Representative total house income in the dwelling unit is $185463 +in.representative_income 185484 Representative total house income in the dwelling unit is $185484 +in.representative_income 185488 Representative total house income in the dwelling unit is $185488 +in.representative_income 185492 Representative total house income in the dwelling unit is $185492 +in.representative_income 185505 Representative total house income in the dwelling unit is $185505 +in.representative_income 185507 Representative total house income in the dwelling unit is $185507 +in.representative_income 185564 Representative total house income in the dwelling unit is $185564 +in.representative_income 185611 Representative total house income in the dwelling unit is $185611 +in.representative_income 185624 Representative total house income in the dwelling unit is $185624 +in.representative_income 185642 Representative total house income in the dwelling unit is $185642 +in.representative_income 185653 Representative total house income in the dwelling unit is $185653 +in.representative_income 185661 Representative total house income in the dwelling unit is $185661 +in.representative_income 185665 Representative total house income in the dwelling unit is $185665 +in.representative_income 185682 Representative total house income in the dwelling unit is $185682 +in.representative_income 185707 Representative total house income in the dwelling unit is $185707 +in.representative_income 185713 Representative total house income in the dwelling unit is $185713 +in.representative_income 185716 Representative total house income in the dwelling unit is $185716 +in.representative_income 185744 Representative total house income in the dwelling unit is $185744 +in.representative_income 185750 Representative total house income in the dwelling unit is $185750 +in.representative_income 185765 Representative total house income in the dwelling unit is $185765 +in.representative_income 185766 Representative total house income in the dwelling unit is $185766 +in.representative_income 185811 Representative total house income in the dwelling unit is $185811 +in.representative_income 185816 Representative total house income in the dwelling unit is $185816 +in.representative_income 185821 Representative total house income in the dwelling unit is $185821 +in.representative_income 185841 Representative total house income in the dwelling unit is $185841 +in.representative_income 185842 Representative total house income in the dwelling unit is $185842 +in.representative_income 185847 Representative total house income in the dwelling unit is $185847 +in.representative_income 185852 Representative total house income in the dwelling unit is $185852 +in.representative_income 185863 Representative total house income in the dwelling unit is $185863 +in.representative_income 185867 Representative total house income in the dwelling unit is $185867 +in.representative_income 185868 Representative total house income in the dwelling unit is $185868 +in.representative_income 185874 Representative total house income in the dwelling unit is $185874 +in.representative_income 185875 Representative total house income in the dwelling unit is $185875 +in.representative_income 185878 Representative total house income in the dwelling unit is $185878 +in.representative_income 185906 Representative total house income in the dwelling unit is $185906 +in.representative_income 185921 Representative total house income in the dwelling unit is $185921 +in.representative_income 185927 Representative total house income in the dwelling unit is $185927 +in.representative_income 185928 Representative total house income in the dwelling unit is $185928 +in.representative_income 185949 Representative total house income in the dwelling unit is $185949 +in.representative_income 185968 Representative total house income in the dwelling unit is $185968 +in.representative_income 185971 Representative total house income in the dwelling unit is $185971 +in.representative_income 185979 Representative total house income in the dwelling unit is $185979 +in.representative_income 186022 Representative total house income in the dwelling unit is $186022 +in.representative_income 186028 Representative total house income in the dwelling unit is $186028 +in.representative_income 186029 Representative total house income in the dwelling unit is $186029 +in.representative_income 186032 Representative total house income in the dwelling unit is $186032 +in.representative_income 186053 Representative total house income in the dwelling unit is $186053 +in.representative_income 186057 Representative total house income in the dwelling unit is $186057 +in.representative_income 186069 Representative total house income in the dwelling unit is $186069 +in.representative_income 186074 Representative total house income in the dwelling unit is $186074 +in.representative_income 186075 Representative total house income in the dwelling unit is $186075 +in.representative_income 186089 Representative total house income in the dwelling unit is $186089 +in.representative_income 186099 Representative total house income in the dwelling unit is $186099 +in.representative_income 186119 Representative total house income in the dwelling unit is $186119 +in.representative_income 186129 Representative total house income in the dwelling unit is $186129 +in.representative_income 186133 Representative total house income in the dwelling unit is $186133 +in.representative_income 186136 Representative total house income in the dwelling unit is $186136 +in.representative_income 186138 Representative total house income in the dwelling unit is $186138 +in.representative_income 186165 Representative total house income in the dwelling unit is $186165 +in.representative_income 186170 Representative total house income in the dwelling unit is $186170 +in.representative_income 186177 Representative total house income in the dwelling unit is $186177 +in.representative_income 186208 Representative total house income in the dwelling unit is $186208 +in.representative_income 186230 Representative total house income in the dwelling unit is $186230 +in.representative_income 186239 Representative total house income in the dwelling unit is $186239 +in.representative_income 186244 Representative total house income in the dwelling unit is $186244 +in.representative_income 186254 Representative total house income in the dwelling unit is $186254 +in.representative_income 186271 Representative total house income in the dwelling unit is $186271 +in.representative_income 186273 Representative total house income in the dwelling unit is $186273 +in.representative_income 186275 Representative total house income in the dwelling unit is $186275 +in.representative_income 186280 Representative total house income in the dwelling unit is $186280 +in.representative_income 186290 Representative total house income in the dwelling unit is $186290 +in.representative_income 186291 Representative total house income in the dwelling unit is $186291 +in.representative_income 186308 Representative total house income in the dwelling unit is $186308 +in.representative_income 186312 Representative total house income in the dwelling unit is $186312 +in.representative_income 186338 Representative total house income in the dwelling unit is $186338 +in.representative_income 186349 Representative total house income in the dwelling unit is $186349 +in.representative_income 186350 Representative total house income in the dwelling unit is $186350 +in.representative_income 186372 Representative total house income in the dwelling unit is $186372 +in.representative_income 186381 Representative total house income in the dwelling unit is $186381 +in.representative_income 186384 Representative total house income in the dwelling unit is $186384 +in.representative_income 186402 Representative total house income in the dwelling unit is $186402 +in.representative_income 186412 Representative total house income in the dwelling unit is $186412 +in.representative_income 186422 Representative total house income in the dwelling unit is $186422 +in.representative_income 186454 Representative total house income in the dwelling unit is $186454 +in.representative_income 186458 Representative total house income in the dwelling unit is $186458 +in.representative_income 186473 Representative total house income in the dwelling unit is $186473 +in.representative_income 186479 Representative total house income in the dwelling unit is $186479 +in.representative_income 186487 Representative total house income in the dwelling unit is $186487 +in.representative_income 186489 Representative total house income in the dwelling unit is $186489 +in.representative_income 186497 Representative total house income in the dwelling unit is $186497 +in.representative_income 186507 Representative total house income in the dwelling unit is $186507 +in.representative_income 186521 Representative total house income in the dwelling unit is $186521 +in.representative_income 186559 Representative total house income in the dwelling unit is $186559 +in.representative_income 186565 Representative total house income in the dwelling unit is $186565 +in.representative_income 186574 Representative total house income in the dwelling unit is $186574 +in.representative_income 186587 Representative total house income in the dwelling unit is $186587 +in.representative_income 186590 Representative total house income in the dwelling unit is $186590 +in.representative_income 186598 Representative total house income in the dwelling unit is $186598 +in.representative_income 186608 Representative total house income in the dwelling unit is $186608 +in.representative_income 186619 Representative total house income in the dwelling unit is $186619 +in.representative_income 186665 Representative total house income in the dwelling unit is $186665 +in.representative_income 186673 Representative total house income in the dwelling unit is $186673 +in.representative_income 186675 Representative total house income in the dwelling unit is $186675 +in.representative_income 186685 Representative total house income in the dwelling unit is $186685 +in.representative_income 186687 Representative total house income in the dwelling unit is $186687 +in.representative_income 186693 Representative total house income in the dwelling unit is $186693 +in.representative_income 186771 Representative total house income in the dwelling unit is $186771 +in.representative_income 186774 Representative total house income in the dwelling unit is $186774 +in.representative_income 186776 Representative total house income in the dwelling unit is $186776 +in.representative_income 186781 Representative total house income in the dwelling unit is $186781 +in.representative_income 186796 Representative total house income in the dwelling unit is $186796 +in.representative_income 186810 Representative total house income in the dwelling unit is $186810 +in.representative_income 186835 Representative total house income in the dwelling unit is $186835 +in.representative_income 186876 Representative total house income in the dwelling unit is $186876 +in.representative_income 186877 Representative total house income in the dwelling unit is $186877 +in.representative_income 186887 Representative total house income in the dwelling unit is $186887 +in.representative_income 186899 Representative total house income in the dwelling unit is $186899 +in.representative_income 186921 Representative total house income in the dwelling unit is $186921 +in.representative_income 186941 Representative total house income in the dwelling unit is $186941 +in.representative_income 186963 Representative total house income in the dwelling unit is $186963 +in.representative_income 186975 Representative total house income in the dwelling unit is $186975 +in.representative_income 186978 Representative total house income in the dwelling unit is $186978 +in.representative_income 186982 Representative total house income in the dwelling unit is $186982 +in.representative_income 186995 Representative total house income in the dwelling unit is $186995 +in.representative_income 187003 Representative total house income in the dwelling unit is $187003 +in.representative_income 187005 Representative total house income in the dwelling unit is $187005 +in.representative_income 187008 Representative total house income in the dwelling unit is $187008 +in.representative_income 187029 Representative total house income in the dwelling unit is $187029 +in.representative_income 187079 Representative total house income in the dwelling unit is $187079 +in.representative_income 187087 Representative total house income in the dwelling unit is $187087 +in.representative_income 187099 Representative total house income in the dwelling unit is $187099 +in.representative_income 187102 Representative total house income in the dwelling unit is $187102 +in.representative_income 187106 Representative total house income in the dwelling unit is $187106 +in.representative_income 187109 Representative total house income in the dwelling unit is $187109 +in.representative_income 187111 Representative total house income in the dwelling unit is $187111 +in.representative_income 187137 Representative total house income in the dwelling unit is $187137 +in.representative_income 187159 Representative total house income in the dwelling unit is $187159 +in.representative_income 187180 Representative total house income in the dwelling unit is $187180 +in.representative_income 187190 Representative total house income in the dwelling unit is $187190 +in.representative_income 187191 Representative total house income in the dwelling unit is $187191 +in.representative_income 187192 Representative total house income in the dwelling unit is $187192 +in.representative_income 187207 Representative total house income in the dwelling unit is $187207 +in.representative_income 187208 Representative total house income in the dwelling unit is $187208 +in.representative_income 187210 Representative total house income in the dwelling unit is $187210 +in.representative_income 187245 Representative total house income in the dwelling unit is $187245 +in.representative_income 187281 Representative total house income in the dwelling unit is $187281 +in.representative_income 187297 Representative total house income in the dwelling unit is $187297 +in.representative_income 187312 Representative total house income in the dwelling unit is $187312 +in.representative_income 187317 Representative total house income in the dwelling unit is $187317 +in.representative_income 187354 Representative total house income in the dwelling unit is $187354 +in.representative_income 187362 Representative total house income in the dwelling unit is $187362 +in.representative_income 187382 Representative total house income in the dwelling unit is $187382 +in.representative_income 187386 Representative total house income in the dwelling unit is $187386 +in.representative_income 187404 Representative total house income in the dwelling unit is $187404 +in.representative_income 187412 Representative total house income in the dwelling unit is $187412 +in.representative_income 187415 Representative total house income in the dwelling unit is $187415 +in.representative_income 187424 Representative total house income in the dwelling unit is $187424 +in.representative_income 187429 Representative total house income in the dwelling unit is $187429 +in.representative_income 187462 Representative total house income in the dwelling unit is $187462 +in.representative_income 187467 Representative total house income in the dwelling unit is $187467 +in.representative_income 187483 Representative total house income in the dwelling unit is $187483 +in.representative_income 187503 Representative total house income in the dwelling unit is $187503 +in.representative_income 187509 Representative total house income in the dwelling unit is $187509 +in.representative_income 187510 Representative total house income in the dwelling unit is $187510 +in.representative_income 187516 Representative total house income in the dwelling unit is $187516 +in.representative_income 187517 Representative total house income in the dwelling unit is $187517 +in.representative_income 187518 Representative total house income in the dwelling unit is $187518 +in.representative_income 187531 Representative total house income in the dwelling unit is $187531 +in.representative_income 187567 Representative total house income in the dwelling unit is $187567 +in.representative_income 187570 Representative total house income in the dwelling unit is $187570 +in.representative_income 187584 Representative total house income in the dwelling unit is $187584 +in.representative_income 187596 Representative total house income in the dwelling unit is $187596 +in.representative_income 187602 Representative total house income in the dwelling unit is $187602 +in.representative_income 187614 Representative total house income in the dwelling unit is $187614 +in.representative_income 187622 Representative total house income in the dwelling unit is $187622 +in.representative_income 187628 Representative total house income in the dwelling unit is $187628 +in.representative_income 187639 Representative total house income in the dwelling unit is $187639 +in.representative_income 187678 Representative total house income in the dwelling unit is $187678 +in.representative_income 187685 Representative total house income in the dwelling unit is $187685 +in.representative_income 187720 Representative total house income in the dwelling unit is $187720 +in.representative_income 187724 Representative total house income in the dwelling unit is $187724 +in.representative_income 187732 Representative total house income in the dwelling unit is $187732 +in.representative_income 187735 Representative total house income in the dwelling unit is $187735 +in.representative_income 187746 Representative total house income in the dwelling unit is $187746 +in.representative_income 187773 Representative total house income in the dwelling unit is $187773 +in.representative_income 187786 Representative total house income in the dwelling unit is $187786 +in.representative_income 187787 Representative total house income in the dwelling unit is $187787 +in.representative_income 187807 Representative total house income in the dwelling unit is $187807 +in.representative_income 187825 Representative total house income in the dwelling unit is $187825 +in.representative_income 187827 Representative total house income in the dwelling unit is $187827 +in.representative_income 187854 Representative total house income in the dwelling unit is $187854 +in.representative_income 187865 Representative total house income in the dwelling unit is $187865 +in.representative_income 187868 Representative total house income in the dwelling unit is $187868 +in.representative_income 187870 Representative total house income in the dwelling unit is $187870 +in.representative_income 187878 Representative total house income in the dwelling unit is $187878 +in.representative_income 187883 Representative total house income in the dwelling unit is $187883 +in.representative_income 187887 Representative total house income in the dwelling unit is $187887 +in.representative_income 187904 Representative total house income in the dwelling unit is $187904 +in.representative_income 187907 Representative total house income in the dwelling unit is $187907 +in.representative_income 187913 Representative total house income in the dwelling unit is $187913 +in.representative_income 187927 Representative total house income in the dwelling unit is $187927 +in.representative_income 187930 Representative total house income in the dwelling unit is $187930 +in.representative_income 187931 Representative total house income in the dwelling unit is $187931 +in.representative_income 187937 Representative total house income in the dwelling unit is $187937 +in.representative_income 187942 Representative total house income in the dwelling unit is $187942 +in.representative_income 187950 Representative total house income in the dwelling unit is $187950 +in.representative_income 187961 Representative total house income in the dwelling unit is $187961 +in.representative_income 187982 Representative total house income in the dwelling unit is $187982 +in.representative_income 187983 Representative total house income in the dwelling unit is $187983 +in.representative_income 187988 Representative total house income in the dwelling unit is $187988 +in.representative_income 188001 Representative total house income in the dwelling unit is $188001 +in.representative_income 188002 Representative total house income in the dwelling unit is $188002 +in.representative_income 188015 Representative total house income in the dwelling unit is $188015 +in.representative_income 188018 Representative total house income in the dwelling unit is $188018 +in.representative_income 188023 Representative total house income in the dwelling unit is $188023 +in.representative_income 188034 Representative total house income in the dwelling unit is $188034 +in.representative_income 188037 Representative total house income in the dwelling unit is $188037 +in.representative_income 188061 Representative total house income in the dwelling unit is $188061 +in.representative_income 188068 Representative total house income in the dwelling unit is $188068 +in.representative_income 188079 Representative total house income in the dwelling unit is $188079 +in.representative_income 188089 Representative total house income in the dwelling unit is $188089 +in.representative_income 188099 Representative total house income in the dwelling unit is $188099 +in.representative_income 188109 Representative total house income in the dwelling unit is $188109 +in.representative_income 188112 Representative total house income in the dwelling unit is $188112 +in.representative_income 188122 Representative total house income in the dwelling unit is $188122 +in.representative_income 188137 Representative total house income in the dwelling unit is $188137 +in.representative_income 188140 Representative total house income in the dwelling unit is $188140 +in.representative_income 188142 Representative total house income in the dwelling unit is $188142 +in.representative_income 188147 Representative total house income in the dwelling unit is $188147 +in.representative_income 188163 Representative total house income in the dwelling unit is $188163 +in.representative_income 188165 Representative total house income in the dwelling unit is $188165 +in.representative_income 188175 Representative total house income in the dwelling unit is $188175 +in.representative_income 188190 Representative total house income in the dwelling unit is $188190 +in.representative_income 188194 Representative total house income in the dwelling unit is $188194 +in.representative_income 188200 Representative total house income in the dwelling unit is $188200 +in.representative_income 188205 Representative total house income in the dwelling unit is $188205 +in.representative_income 188218 Representative total house income in the dwelling unit is $188218 +in.representative_income 188223 Representative total house income in the dwelling unit is $188223 +in.representative_income 188240 Representative total house income in the dwelling unit is $188240 +in.representative_income 188241 Representative total house income in the dwelling unit is $188241 +in.representative_income 188247 Representative total house income in the dwelling unit is $188247 +in.representative_income 188251 Representative total house income in the dwelling unit is $188251 +in.representative_income 188254 Representative total house income in the dwelling unit is $188254 +in.representative_income 188261 Representative total house income in the dwelling unit is $188261 +in.representative_income 188283 Representative total house income in the dwelling unit is $188283 +in.representative_income 188291 Representative total house income in the dwelling unit is $188291 +in.representative_income 188326 Representative total house income in the dwelling unit is $188326 +in.representative_income 188331 Representative total house income in the dwelling unit is $188331 +in.representative_income 188336 Representative total house income in the dwelling unit is $188336 +in.representative_income 188342 Representative total house income in the dwelling unit is $188342 +in.representative_income 188343 Representative total house income in the dwelling unit is $188343 +in.representative_income 188352 Representative total house income in the dwelling unit is $188352 +in.representative_income 188369 Representative total house income in the dwelling unit is $188369 +in.representative_income 188391 Representative total house income in the dwelling unit is $188391 +in.representative_income 188392 Representative total house income in the dwelling unit is $188392 +in.representative_income 188395 Representative total house income in the dwelling unit is $188395 +in.representative_income 188414 Representative total house income in the dwelling unit is $188414 +in.representative_income 188432 Representative total house income in the dwelling unit is $188432 +in.representative_income 188434 Representative total house income in the dwelling unit is $188434 +in.representative_income 188446 Representative total house income in the dwelling unit is $188446 +in.representative_income 188453 Representative total house income in the dwelling unit is $188453 +in.representative_income 188458 Representative total house income in the dwelling unit is $188458 +in.representative_income 188461 Representative total house income in the dwelling unit is $188461 +in.representative_income 188468 Representative total house income in the dwelling unit is $188468 +in.representative_income 188493 Representative total house income in the dwelling unit is $188493 +in.representative_income 188498 Representative total house income in the dwelling unit is $188498 +in.representative_income 188502 Representative total house income in the dwelling unit is $188502 +in.representative_income 188533 Representative total house income in the dwelling unit is $188533 +in.representative_income 188542 Representative total house income in the dwelling unit is $188542 +in.representative_income 188550 Representative total house income in the dwelling unit is $188550 +in.representative_income 188556 Representative total house income in the dwelling unit is $188556 +in.representative_income 188563 Representative total house income in the dwelling unit is $188563 +in.representative_income 188594 Representative total house income in the dwelling unit is $188594 +in.representative_income 188596 Representative total house income in the dwelling unit is $188596 +in.representative_income 188605 Representative total house income in the dwelling unit is $188605 +in.representative_income 188621 Representative total house income in the dwelling unit is $188621 +in.representative_income 188624 Representative total house income in the dwelling unit is $188624 +in.representative_income 188627 Representative total house income in the dwelling unit is $188627 +in.representative_income 188634 Representative total house income in the dwelling unit is $188634 +in.representative_income 188650 Representative total house income in the dwelling unit is $188650 +in.representative_income 188653 Representative total house income in the dwelling unit is $188653 +in.representative_income 188669 Representative total house income in the dwelling unit is $188669 +in.representative_income 188680 Representative total house income in the dwelling unit is $188680 +in.representative_income 188695 Representative total house income in the dwelling unit is $188695 +in.representative_income 188704 Representative total house income in the dwelling unit is $188704 +in.representative_income 188712 Representative total house income in the dwelling unit is $188712 +in.representative_income 188742 Representative total house income in the dwelling unit is $188742 +in.representative_income 188744 Representative total house income in the dwelling unit is $188744 +in.representative_income 188756 Representative total house income in the dwelling unit is $188756 +in.representative_income 188758 Representative total house income in the dwelling unit is $188758 +in.representative_income 188766 Representative total house income in the dwelling unit is $188766 +in.representative_income 188775 Representative total house income in the dwelling unit is $188775 +in.representative_income 188785 Representative total house income in the dwelling unit is $188785 +in.representative_income 188790 Representative total house income in the dwelling unit is $188790 +in.representative_income 188796 Representative total house income in the dwelling unit is $188796 +in.representative_income 188809 Representative total house income in the dwelling unit is $188809 +in.representative_income 188818 Representative total house income in the dwelling unit is $188818 +in.representative_income 188820 Representative total house income in the dwelling unit is $188820 +in.representative_income 188827 Representative total house income in the dwelling unit is $188827 +in.representative_income 188842 Representative total house income in the dwelling unit is $188842 +in.representative_income 188859 Representative total house income in the dwelling unit is $188859 +in.representative_income 188866 Representative total house income in the dwelling unit is $188866 +in.representative_income 188880 Representative total house income in the dwelling unit is $188880 +in.representative_income 188897 Representative total house income in the dwelling unit is $188897 +in.representative_income 188899 Representative total house income in the dwelling unit is $188899 +in.representative_income 188907 Representative total house income in the dwelling unit is $188907 +in.representative_income 188911 Representative total house income in the dwelling unit is $188911 +in.representative_income 188917 Representative total house income in the dwelling unit is $188917 +in.representative_income 188927 Representative total house income in the dwelling unit is $188927 +in.representative_income 188938 Representative total house income in the dwelling unit is $188938 +in.representative_income 188958 Representative total house income in the dwelling unit is $188958 +in.representative_income 188959 Representative total house income in the dwelling unit is $188959 +in.representative_income 188962 Representative total house income in the dwelling unit is $188962 +in.representative_income 188972 Representative total house income in the dwelling unit is $188972 +in.representative_income 188975 Representative total house income in the dwelling unit is $188975 +in.representative_income 188981 Representative total house income in the dwelling unit is $188981 +in.representative_income 188983 Representative total house income in the dwelling unit is $188983 +in.representative_income 188985 Representative total house income in the dwelling unit is $188985 +in.representative_income 188998 Representative total house income in the dwelling unit is $188998 +in.representative_income 189008 Representative total house income in the dwelling unit is $189008 +in.representative_income 189014 Representative total house income in the dwelling unit is $189014 +in.representative_income 189035 Representative total house income in the dwelling unit is $189035 +in.representative_income 189049 Representative total house income in the dwelling unit is $189049 +in.representative_income 189065 Representative total house income in the dwelling unit is $189065 +in.representative_income 189083 Representative total house income in the dwelling unit is $189083 +in.representative_income 189084 Representative total house income in the dwelling unit is $189084 +in.representative_income 189089 Representative total house income in the dwelling unit is $189089 +in.representative_income 189090 Representative total house income in the dwelling unit is $189090 +in.representative_income 189093 Representative total house income in the dwelling unit is $189093 +in.representative_income 189099 Representative total house income in the dwelling unit is $189099 +in.representative_income 189101 Representative total house income in the dwelling unit is $189101 +in.representative_income 189116 Representative total house income in the dwelling unit is $189116 +in.representative_income 189119 Representative total house income in the dwelling unit is $189119 +in.representative_income 189126 Representative total house income in the dwelling unit is $189126 +in.representative_income 189127 Representative total house income in the dwelling unit is $189127 +in.representative_income 189136 Representative total house income in the dwelling unit is $189136 +in.representative_income 189141 Representative total house income in the dwelling unit is $189141 +in.representative_income 189147 Representative total house income in the dwelling unit is $189147 +in.representative_income 189150 Representative total house income in the dwelling unit is $189150 +in.representative_income 189169 Representative total house income in the dwelling unit is $189169 +in.representative_income 189175 Representative total house income in the dwelling unit is $189175 +in.representative_income 189190 Representative total house income in the dwelling unit is $189190 +in.representative_income 189197 Representative total house income in the dwelling unit is $189197 +in.representative_income 189200 Representative total house income in the dwelling unit is $189200 +in.representative_income 189220 Representative total house income in the dwelling unit is $189220 +in.representative_income 189228 Representative total house income in the dwelling unit is $189228 +in.representative_income 189230 Representative total house income in the dwelling unit is $189230 +in.representative_income 189249 Representative total house income in the dwelling unit is $189249 +in.representative_income 189266 Representative total house income in the dwelling unit is $189266 +in.representative_income 189270 Representative total house income in the dwelling unit is $189270 +in.representative_income 189272 Representative total house income in the dwelling unit is $189272 +in.representative_income 189292 Representative total house income in the dwelling unit is $189292 +in.representative_income 189298 Representative total house income in the dwelling unit is $189298 +in.representative_income 189301 Representative total house income in the dwelling unit is $189301 +in.representative_income 189302 Representative total house income in the dwelling unit is $189302 +in.representative_income 189303 Representative total house income in the dwelling unit is $189303 +in.representative_income 189324 Representative total house income in the dwelling unit is $189324 +in.representative_income 189333 Representative total house income in the dwelling unit is $189333 +in.representative_income 189354 Representative total house income in the dwelling unit is $189354 +in.representative_income 189356 Representative total house income in the dwelling unit is $189356 +in.representative_income 189357 Representative total house income in the dwelling unit is $189357 +in.representative_income 189374 Representative total house income in the dwelling unit is $189374 +in.representative_income 189402 Representative total house income in the dwelling unit is $189402 +in.representative_income 189406 Representative total house income in the dwelling unit is $189406 +in.representative_income 189407 Representative total house income in the dwelling unit is $189407 +in.representative_income 189421 Representative total house income in the dwelling unit is $189421 +in.representative_income 189426 Representative total house income in the dwelling unit is $189426 +in.representative_income 189428 Representative total house income in the dwelling unit is $189428 +in.representative_income 189432 Representative total house income in the dwelling unit is $189432 +in.representative_income 189456 Representative total house income in the dwelling unit is $189456 +in.representative_income 189464 Representative total house income in the dwelling unit is $189464 +in.representative_income 189475 Representative total house income in the dwelling unit is $189475 +in.representative_income 189478 Representative total house income in the dwelling unit is $189478 +in.representative_income 189503 Representative total house income in the dwelling unit is $189503 +in.representative_income 189507 Representative total house income in the dwelling unit is $189507 +in.representative_income 189513 Representative total house income in the dwelling unit is $189513 +in.representative_income 189523 Representative total house income in the dwelling unit is $189523 +in.representative_income 189542 Representative total house income in the dwelling unit is $189542 +in.representative_income 189568 Representative total house income in the dwelling unit is $189568 +in.representative_income 189571 Representative total house income in the dwelling unit is $189571 +in.representative_income 189581 Representative total house income in the dwelling unit is $189581 +in.representative_income 189603 Representative total house income in the dwelling unit is $189603 +in.representative_income 189604 Representative total house income in the dwelling unit is $189604 +in.representative_income 189618 Representative total house income in the dwelling unit is $189618 +in.representative_income 189622 Representative total house income in the dwelling unit is $189622 +in.representative_income 189635 Representative total house income in the dwelling unit is $189635 +in.representative_income 189645 Representative total house income in the dwelling unit is $189645 +in.representative_income 189678 Representative total house income in the dwelling unit is $189678 +in.representative_income 189684 Representative total house income in the dwelling unit is $189684 +in.representative_income 189705 Representative total house income in the dwelling unit is $189705 +in.representative_income 189731 Representative total house income in the dwelling unit is $189731 +in.representative_income 189732 Representative total house income in the dwelling unit is $189732 +in.representative_income 189745 Representative total house income in the dwelling unit is $189745 +in.representative_income 189766 Representative total house income in the dwelling unit is $189766 +in.representative_income 189786 Representative total house income in the dwelling unit is $189786 +in.representative_income 189788 Representative total house income in the dwelling unit is $189788 +in.representative_income 189806 Representative total house income in the dwelling unit is $189806 +in.representative_income 189820 Representative total house income in the dwelling unit is $189820 +in.representative_income 189830 Representative total house income in the dwelling unit is $189830 +in.representative_income 189839 Representative total house income in the dwelling unit is $189839 +in.representative_income 189840 Representative total house income in the dwelling unit is $189840 +in.representative_income 189847 Representative total house income in the dwelling unit is $189847 +in.representative_income 189850 Representative total house income in the dwelling unit is $189850 +in.representative_income 189868 Representative total house income in the dwelling unit is $189868 +in.representative_income 189871 Representative total house income in the dwelling unit is $189871 +in.representative_income 189872 Representative total house income in the dwelling unit is $189872 +in.representative_income 189882 Representative total house income in the dwelling unit is $189882 +in.representative_income 189890 Representative total house income in the dwelling unit is $189890 +in.representative_income 189891 Representative total house income in the dwelling unit is $189891 +in.representative_income 189892 Representative total house income in the dwelling unit is $189892 +in.representative_income 189893 Representative total house income in the dwelling unit is $189893 +in.representative_income 189894 Representative total house income in the dwelling unit is $189894 +in.representative_income 189901 Representative total house income in the dwelling unit is $189901 +in.representative_income 189907 Representative total house income in the dwelling unit is $189907 +in.representative_income 189911 Representative total house income in the dwelling unit is $189911 +in.representative_income 189935 Representative total house income in the dwelling unit is $189935 +in.representative_income 189947 Representative total house income in the dwelling unit is $189947 +in.representative_income 189958 Representative total house income in the dwelling unit is $189958 +in.representative_income 189968 Representative total house income in the dwelling unit is $189968 +in.representative_income 189983 Representative total house income in the dwelling unit is $189983 +in.representative_income 189993 Representative total house income in the dwelling unit is $189993 +in.representative_income 189997 Representative total house income in the dwelling unit is $189997 +in.representative_income 190001 Representative total house income in the dwelling unit is $190001 +in.representative_income 190008 Representative total house income in the dwelling unit is $190008 +in.representative_income 190019 Representative total house income in the dwelling unit is $190019 +in.representative_income 190030 Representative total house income in the dwelling unit is $190030 +in.representative_income 190033 Representative total house income in the dwelling unit is $190033 +in.representative_income 190040 Representative total house income in the dwelling unit is $190040 +in.representative_income 190055 Representative total house income in the dwelling unit is $190055 +in.representative_income 190059 Representative total house income in the dwelling unit is $190059 +in.representative_income 190079 Representative total house income in the dwelling unit is $190079 +in.representative_income 190085 Representative total house income in the dwelling unit is $190085 +in.representative_income 190092 Representative total house income in the dwelling unit is $190092 +in.representative_income 190093 Representative total house income in the dwelling unit is $190093 +in.representative_income 190097 Representative total house income in the dwelling unit is $190097 +in.representative_income 190104 Representative total house income in the dwelling unit is $190104 +in.representative_income 190108 Representative total house income in the dwelling unit is $190108 +in.representative_income 190109 Representative total house income in the dwelling unit is $190109 +in.representative_income 190112 Representative total house income in the dwelling unit is $190112 +in.representative_income 190119 Representative total house income in the dwelling unit is $190119 +in.representative_income 190120 Representative total house income in the dwelling unit is $190120 +in.representative_income 190129 Representative total house income in the dwelling unit is $190129 +in.representative_income 190140 Representative total house income in the dwelling unit is $190140 +in.representative_income 190145 Representative total house income in the dwelling unit is $190145 +in.representative_income 190151 Representative total house income in the dwelling unit is $190151 +in.representative_income 190160 Representative total house income in the dwelling unit is $190160 +in.representative_income 190163 Representative total house income in the dwelling unit is $190163 +in.representative_income 190172 Representative total house income in the dwelling unit is $190172 +in.representative_income 190180 Representative total house income in the dwelling unit is $190180 +in.representative_income 190189 Representative total house income in the dwelling unit is $190189 +in.representative_income 190200 Representative total house income in the dwelling unit is $190200 +in.representative_income 190210 Representative total house income in the dwelling unit is $190210 +in.representative_income 190215 Representative total house income in the dwelling unit is $190215 +in.representative_income 190217 Representative total house income in the dwelling unit is $190217 +in.representative_income 190218 Representative total house income in the dwelling unit is $190218 +in.representative_income 190231 Representative total house income in the dwelling unit is $190231 +in.representative_income 190241 Representative total house income in the dwelling unit is $190241 +in.representative_income 190251 Representative total house income in the dwelling unit is $190251 +in.representative_income 190252 Representative total house income in the dwelling unit is $190252 +in.representative_income 190258 Representative total house income in the dwelling unit is $190258 +in.representative_income 190262 Representative total house income in the dwelling unit is $190262 +in.representative_income 190269 Representative total house income in the dwelling unit is $190269 +in.representative_income 190271 Representative total house income in the dwelling unit is $190271 +in.representative_income 190303 Representative total house income in the dwelling unit is $190303 +in.representative_income 190311 Representative total house income in the dwelling unit is $190311 +in.representative_income 190313 Representative total house income in the dwelling unit is $190313 +in.representative_income 190322 Representative total house income in the dwelling unit is $190322 +in.representative_income 190324 Representative total house income in the dwelling unit is $190324 +in.representative_income 190325 Representative total house income in the dwelling unit is $190325 +in.representative_income 190344 Representative total house income in the dwelling unit is $190344 +in.representative_income 190356 Representative total house income in the dwelling unit is $190356 +in.representative_income 190365 Representative total house income in the dwelling unit is $190365 +in.representative_income 190378 Representative total house income in the dwelling unit is $190378 +in.representative_income 190407 Representative total house income in the dwelling unit is $190407 +in.representative_income 190412 Representative total house income in the dwelling unit is $190412 +in.representative_income 190430 Representative total house income in the dwelling unit is $190430 +in.representative_income 190433 Representative total house income in the dwelling unit is $190433 +in.representative_income 190454 Representative total house income in the dwelling unit is $190454 +in.representative_income 190462 Representative total house income in the dwelling unit is $190462 +in.representative_income 190472 Representative total house income in the dwelling unit is $190472 +in.representative_income 190486 Representative total house income in the dwelling unit is $190486 +in.representative_income 190487 Representative total house income in the dwelling unit is $190487 +in.representative_income 190489 Representative total house income in the dwelling unit is $190489 +in.representative_income 190513 Representative total house income in the dwelling unit is $190513 +in.representative_income 190520 Representative total house income in the dwelling unit is $190520 +in.representative_income 190525 Representative total house income in the dwelling unit is $190525 +in.representative_income 190530 Representative total house income in the dwelling unit is $190530 +in.representative_income 190536 Representative total house income in the dwelling unit is $190536 +in.representative_income 190537 Representative total house income in the dwelling unit is $190537 +in.representative_income 190542 Representative total house income in the dwelling unit is $190542 +in.representative_income 190543 Representative total house income in the dwelling unit is $190543 +in.representative_income 190546 Representative total house income in the dwelling unit is $190546 +in.representative_income 190568 Representative total house income in the dwelling unit is $190568 +in.representative_income 190595 Representative total house income in the dwelling unit is $190595 +in.representative_income 190612 Representative total house income in the dwelling unit is $190612 +in.representative_income 190614 Representative total house income in the dwelling unit is $190614 +in.representative_income 190620 Representative total house income in the dwelling unit is $190620 +in.representative_income 190645 Representative total house income in the dwelling unit is $190645 +in.representative_income 190664 Representative total house income in the dwelling unit is $190664 +in.representative_income 190673 Representative total house income in the dwelling unit is $190673 +in.representative_income 190698 Representative total house income in the dwelling unit is $190698 +in.representative_income 190701 Representative total house income in the dwelling unit is $190701 +in.representative_income 190703 Representative total house income in the dwelling unit is $190703 +in.representative_income 190704 Representative total house income in the dwelling unit is $190704 +in.representative_income 190715 Representative total house income in the dwelling unit is $190715 +in.representative_income 190716 Representative total house income in the dwelling unit is $190716 +in.representative_income 190719 Representative total house income in the dwelling unit is $190719 +in.representative_income 190736 Representative total house income in the dwelling unit is $190736 +in.representative_income 190752 Representative total house income in the dwelling unit is $190752 +in.representative_income 190757 Representative total house income in the dwelling unit is $190757 +in.representative_income 190767 Representative total house income in the dwelling unit is $190767 +in.representative_income 190778 Representative total house income in the dwelling unit is $190778 +in.representative_income 190784 Representative total house income in the dwelling unit is $190784 +in.representative_income 190795 Representative total house income in the dwelling unit is $190795 +in.representative_income 190811 Representative total house income in the dwelling unit is $190811 +in.representative_income 190816 Representative total house income in the dwelling unit is $190816 +in.representative_income 190819 Representative total house income in the dwelling unit is $190819 +in.representative_income 190859 Representative total house income in the dwelling unit is $190859 +in.representative_income 190868 Representative total house income in the dwelling unit is $190868 +in.representative_income 190871 Representative total house income in the dwelling unit is $190871 +in.representative_income 190883 Representative total house income in the dwelling unit is $190883 +in.representative_income 190904 Representative total house income in the dwelling unit is $190904 +in.representative_income 190917 Representative total house income in the dwelling unit is $190917 +in.representative_income 190919 Representative total house income in the dwelling unit is $190919 +in.representative_income 190922 Representative total house income in the dwelling unit is $190922 +in.representative_income 190937 Representative total house income in the dwelling unit is $190937 +in.representative_income 190948 Representative total house income in the dwelling unit is $190948 +in.representative_income 190958 Representative total house income in the dwelling unit is $190958 +in.representative_income 190966 Representative total house income in the dwelling unit is $190966 +in.representative_income 190977 Representative total house income in the dwelling unit is $190977 +in.representative_income 190984 Representative total house income in the dwelling unit is $190984 +in.representative_income 190989 Representative total house income in the dwelling unit is $190989 +in.representative_income 191018 Representative total house income in the dwelling unit is $191018 +in.representative_income 191025 Representative total house income in the dwelling unit is $191025 +in.representative_income 191027 Representative total house income in the dwelling unit is $191027 +in.representative_income 191031 Representative total house income in the dwelling unit is $191031 +in.representative_income 191036 Representative total house income in the dwelling unit is $191036 +in.representative_income 191046 Representative total house income in the dwelling unit is $191046 +in.representative_income 191050 Representative total house income in the dwelling unit is $191050 +in.representative_income 191054 Representative total house income in the dwelling unit is $191054 +in.representative_income 191066 Representative total house income in the dwelling unit is $191066 +in.representative_income 191074 Representative total house income in the dwelling unit is $191074 +in.representative_income 191075 Representative total house income in the dwelling unit is $191075 +in.representative_income 191095 Representative total house income in the dwelling unit is $191095 +in.representative_income 191105 Representative total house income in the dwelling unit is $191105 +in.representative_income 191119 Representative total house income in the dwelling unit is $191119 +in.representative_income 191128 Representative total house income in the dwelling unit is $191128 +in.representative_income 191135 Representative total house income in the dwelling unit is $191135 +in.representative_income 191147 Representative total house income in the dwelling unit is $191147 +in.representative_income 191160 Representative total house income in the dwelling unit is $191160 +in.representative_income 191167 Representative total house income in the dwelling unit is $191167 +in.representative_income 191170 Representative total house income in the dwelling unit is $191170 +in.representative_income 191182 Representative total house income in the dwelling unit is $191182 +in.representative_income 191200 Representative total house income in the dwelling unit is $191200 +in.representative_income 191213 Representative total house income in the dwelling unit is $191213 +in.representative_income 191220 Representative total house income in the dwelling unit is $191220 +in.representative_income 191231 Representative total house income in the dwelling unit is $191231 +in.representative_income 191243 Representative total house income in the dwelling unit is $191243 +in.representative_income 191244 Representative total house income in the dwelling unit is $191244 +in.representative_income 191245 Representative total house income in the dwelling unit is $191245 +in.representative_income 191266 Representative total house income in the dwelling unit is $191266 +in.representative_income 191275 Representative total house income in the dwelling unit is $191275 +in.representative_income 191283 Representative total house income in the dwelling unit is $191283 +in.representative_income 191289 Representative total house income in the dwelling unit is $191289 +in.representative_income 191301 Representative total house income in the dwelling unit is $191301 +in.representative_income 191306 Representative total house income in the dwelling unit is $191306 +in.representative_income 191310 Representative total house income in the dwelling unit is $191310 +in.representative_income 191321 Representative total house income in the dwelling unit is $191321 +in.representative_income 191327 Representative total house income in the dwelling unit is $191327 +in.representative_income 191332 Representative total house income in the dwelling unit is $191332 +in.representative_income 191335 Representative total house income in the dwelling unit is $191335 +in.representative_income 191342 Representative total house income in the dwelling unit is $191342 +in.representative_income 191352 Representative total house income in the dwelling unit is $191352 +in.representative_income 191384 Representative total house income in the dwelling unit is $191384 +in.representative_income 191396 Representative total house income in the dwelling unit is $191396 +in.representative_income 191411 Representative total house income in the dwelling unit is $191411 +in.representative_income 191418 Representative total house income in the dwelling unit is $191418 +in.representative_income 191422 Representative total house income in the dwelling unit is $191422 +in.representative_income 191438 Representative total house income in the dwelling unit is $191438 +in.representative_income 191445 Representative total house income in the dwelling unit is $191445 +in.representative_income 191460 Representative total house income in the dwelling unit is $191460 +in.representative_income 191475 Representative total house income in the dwelling unit is $191475 +in.representative_income 191478 Representative total house income in the dwelling unit is $191478 +in.representative_income 191503 Representative total house income in the dwelling unit is $191503 +in.representative_income 191513 Representative total house income in the dwelling unit is $191513 +in.representative_income 191516 Representative total house income in the dwelling unit is $191516 +in.representative_income 191523 Representative total house income in the dwelling unit is $191523 +in.representative_income 191540 Representative total house income in the dwelling unit is $191540 +in.representative_income 191552 Representative total house income in the dwelling unit is $191552 +in.representative_income 191567 Representative total house income in the dwelling unit is $191567 +in.representative_income 191572 Representative total house income in the dwelling unit is $191572 +in.representative_income 191611 Representative total house income in the dwelling unit is $191611 +in.representative_income 191622 Representative total house income in the dwelling unit is $191622 +in.representative_income 191625 Representative total house income in the dwelling unit is $191625 +in.representative_income 191631 Representative total house income in the dwelling unit is $191631 +in.representative_income 191644 Representative total house income in the dwelling unit is $191644 +in.representative_income 191664 Representative total house income in the dwelling unit is $191664 +in.representative_income 191675 Representative total house income in the dwelling unit is $191675 +in.representative_income 191718 Representative total house income in the dwelling unit is $191718 +in.representative_income 191726 Representative total house income in the dwelling unit is $191726 +in.representative_income 191757 Representative total house income in the dwelling unit is $191757 +in.representative_income 191761 Representative total house income in the dwelling unit is $191761 +in.representative_income 191767 Representative total house income in the dwelling unit is $191767 +in.representative_income 191776 Representative total house income in the dwelling unit is $191776 +in.representative_income 191783 Representative total house income in the dwelling unit is $191783 +in.representative_income 191801 Representative total house income in the dwelling unit is $191801 +in.representative_income 191826 Representative total house income in the dwelling unit is $191826 +in.representative_income 191827 Representative total house income in the dwelling unit is $191827 +in.representative_income 191850 Representative total house income in the dwelling unit is $191850 +in.representative_income 191857 Representative total house income in the dwelling unit is $191857 +in.representative_income 191879 Representative total house income in the dwelling unit is $191879 +in.representative_income 191881 Representative total house income in the dwelling unit is $191881 +in.representative_income 191891 Representative total house income in the dwelling unit is $191891 +in.representative_income 191895 Representative total house income in the dwelling unit is $191895 +in.representative_income 191928 Representative total house income in the dwelling unit is $191928 +in.representative_income 191932 Representative total house income in the dwelling unit is $191932 +in.representative_income 191933 Representative total house income in the dwelling unit is $191933 +in.representative_income 191938 Representative total house income in the dwelling unit is $191938 +in.representative_income 191948 Representative total house income in the dwelling unit is $191948 +in.representative_income 191954 Representative total house income in the dwelling unit is $191954 +in.representative_income 191962 Representative total house income in the dwelling unit is $191962 +in.representative_income 191974 Representative total house income in the dwelling unit is $191974 +in.representative_income 191998 Representative total house income in the dwelling unit is $191998 +in.representative_income 191999 Representative total house income in the dwelling unit is $191999 +in.representative_income 192008 Representative total house income in the dwelling unit is $192008 +in.representative_income 192018 Representative total house income in the dwelling unit is $192018 +in.representative_income 192029 Representative total house income in the dwelling unit is $192029 +in.representative_income 192044 Representative total house income in the dwelling unit is $192044 +in.representative_income 192057 Representative total house income in the dwelling unit is $192057 +in.representative_income 192069 Representative total house income in the dwelling unit is $192069 +in.representative_income 192087 Representative total house income in the dwelling unit is $192087 +in.representative_income 192097 Representative total house income in the dwelling unit is $192097 +in.representative_income 192108 Representative total house income in the dwelling unit is $192108 +in.representative_income 192109 Representative total house income in the dwelling unit is $192109 +in.representative_income 192111 Representative total house income in the dwelling unit is $192111 +in.representative_income 192130 Representative total house income in the dwelling unit is $192130 +in.representative_income 192147 Representative total house income in the dwelling unit is $192147 +in.representative_income 192149 Representative total house income in the dwelling unit is $192149 +in.representative_income 192159 Representative total house income in the dwelling unit is $192159 +in.representative_income 192181 Representative total house income in the dwelling unit is $192181 +in.representative_income 192216 Representative total house income in the dwelling unit is $192216 +in.representative_income 192231 Representative total house income in the dwelling unit is $192231 +in.representative_income 192242 Representative total house income in the dwelling unit is $192242 +in.representative_income 192254 Representative total house income in the dwelling unit is $192254 +in.representative_income 192255 Representative total house income in the dwelling unit is $192255 +in.representative_income 192263 Representative total house income in the dwelling unit is $192263 +in.representative_income 192276 Representative total house income in the dwelling unit is $192276 +in.representative_income 192294 Representative total house income in the dwelling unit is $192294 +in.representative_income 192301 Representative total house income in the dwelling unit is $192301 +in.representative_income 192308 Representative total house income in the dwelling unit is $192308 +in.representative_income 192324 Representative total house income in the dwelling unit is $192324 +in.representative_income 192332 Representative total house income in the dwelling unit is $192332 +in.representative_income 192335 Representative total house income in the dwelling unit is $192335 +in.representative_income 192345 Representative total house income in the dwelling unit is $192345 +in.representative_income 192361 Representative total house income in the dwelling unit is $192361 +in.representative_income 192362 Representative total house income in the dwelling unit is $192362 +in.representative_income 192366 Representative total house income in the dwelling unit is $192366 +in.representative_income 192378 Representative total house income in the dwelling unit is $192378 +in.representative_income 192382 Representative total house income in the dwelling unit is $192382 +in.representative_income 192413 Representative total house income in the dwelling unit is $192413 +in.representative_income 192432 Representative total house income in the dwelling unit is $192432 +in.representative_income 192433 Representative total house income in the dwelling unit is $192433 +in.representative_income 192466 Representative total house income in the dwelling unit is $192466 +in.representative_income 192469 Representative total house income in the dwelling unit is $192469 +in.representative_income 192481 Representative total house income in the dwelling unit is $192481 +in.representative_income 192518 Representative total house income in the dwelling unit is $192518 +in.representative_income 192534 Representative total house income in the dwelling unit is $192534 +in.representative_income 192540 Representative total house income in the dwelling unit is $192540 +in.representative_income 192544 Representative total house income in the dwelling unit is $192544 +in.representative_income 192571 Representative total house income in the dwelling unit is $192571 +in.representative_income 192573 Representative total house income in the dwelling unit is $192573 +in.representative_income 192576 Representative total house income in the dwelling unit is $192576 +in.representative_income 192584 Representative total house income in the dwelling unit is $192584 +in.representative_income 192587 Representative total house income in the dwelling unit is $192587 +in.representative_income 192603 Representative total house income in the dwelling unit is $192603 +in.representative_income 192624 Representative total house income in the dwelling unit is $192624 +in.representative_income 192635 Representative total house income in the dwelling unit is $192635 +in.representative_income 192645 Representative total house income in the dwelling unit is $192645 +in.representative_income 192648 Representative total house income in the dwelling unit is $192648 +in.representative_income 192658 Representative total house income in the dwelling unit is $192658 +in.representative_income 192675 Representative total house income in the dwelling unit is $192675 +in.representative_income 192676 Representative total house income in the dwelling unit is $192676 +in.representative_income 192684 Representative total house income in the dwelling unit is $192684 +in.representative_income 192686 Representative total house income in the dwelling unit is $192686 +in.representative_income 192696 Representative total house income in the dwelling unit is $192696 +in.representative_income 192716 Representative total house income in the dwelling unit is $192716 +in.representative_income 192731 Representative total house income in the dwelling unit is $192731 +in.representative_income 192736 Representative total house income in the dwelling unit is $192736 +in.representative_income 192755 Representative total house income in the dwelling unit is $192755 +in.representative_income 192778 Representative total house income in the dwelling unit is $192778 +in.representative_income 192782 Representative total house income in the dwelling unit is $192782 +in.representative_income 192792 Representative total house income in the dwelling unit is $192792 +in.representative_income 192814 Representative total house income in the dwelling unit is $192814 +in.representative_income 192840 Representative total house income in the dwelling unit is $192840 +in.representative_income 192863 Representative total house income in the dwelling unit is $192863 +in.representative_income 192867 Representative total house income in the dwelling unit is $192867 +in.representative_income 192882 Representative total house income in the dwelling unit is $192882 +in.representative_income 192887 Representative total house income in the dwelling unit is $192887 +in.representative_income 192888 Representative total house income in the dwelling unit is $192888 +in.representative_income 192899 Representative total house income in the dwelling unit is $192899 +in.representative_income 192902 Representative total house income in the dwelling unit is $192902 +in.representative_income 192933 Representative total house income in the dwelling unit is $192933 +in.representative_income 192938 Representative total house income in the dwelling unit is $192938 +in.representative_income 192972 Representative total house income in the dwelling unit is $192972 +in.representative_income 192978 Representative total house income in the dwelling unit is $192978 +in.representative_income 192985 Representative total house income in the dwelling unit is $192985 +in.representative_income 192993 Representative total house income in the dwelling unit is $192993 +in.representative_income 192995 Representative total house income in the dwelling unit is $192995 +in.representative_income 193007 Representative total house income in the dwelling unit is $193007 +in.representative_income 193039 Representative total house income in the dwelling unit is $193039 +in.representative_income 193077 Representative total house income in the dwelling unit is $193077 +in.representative_income 193080 Representative total house income in the dwelling unit is $193080 +in.representative_income 193099 Representative total house income in the dwelling unit is $193099 +in.representative_income 193113 Representative total house income in the dwelling unit is $193113 +in.representative_income 193140 Representative total house income in the dwelling unit is $193140 +in.representative_income 193151 Representative total house income in the dwelling unit is $193151 +in.representative_income 193188 Representative total house income in the dwelling unit is $193188 +in.representative_income 193190 Representative total house income in the dwelling unit is $193190 +in.representative_income 193191 Representative total house income in the dwelling unit is $193191 +in.representative_income 193204 Representative total house income in the dwelling unit is $193204 +in.representative_income 193221 Representative total house income in the dwelling unit is $193221 +in.representative_income 193241 Representative total house income in the dwelling unit is $193241 +in.representative_income 193242 Representative total house income in the dwelling unit is $193242 +in.representative_income 193253 Representative total house income in the dwelling unit is $193253 +in.representative_income 193281 Representative total house income in the dwelling unit is $193281 +in.representative_income 193294 Representative total house income in the dwelling unit is $193294 +in.representative_income 193309 Representative total house income in the dwelling unit is $193309 +in.representative_income 193328 Representative total house income in the dwelling unit is $193328 +in.representative_income 193342 Representative total house income in the dwelling unit is $193342 +in.representative_income 193397 Representative total house income in the dwelling unit is $193397 +in.representative_income 193404 Representative total house income in the dwelling unit is $193404 +in.representative_income 193415 Representative total house income in the dwelling unit is $193415 +in.representative_income 193436 Representative total house income in the dwelling unit is $193436 +in.representative_income 193443 Representative total house income in the dwelling unit is $193443 +in.representative_income 193447 Representative total house income in the dwelling unit is $193447 +in.representative_income 193483 Representative total house income in the dwelling unit is $193483 +in.representative_income 193490 Representative total house income in the dwelling unit is $193490 +in.representative_income 193501 Representative total house income in the dwelling unit is $193501 +in.representative_income 193503 Representative total house income in the dwelling unit is $193503 +in.representative_income 193512 Representative total house income in the dwelling unit is $193512 +in.representative_income 193520 Representative total house income in the dwelling unit is $193520 +in.representative_income 193543 Representative total house income in the dwelling unit is $193543 +in.representative_income 193544 Representative total house income in the dwelling unit is $193544 +in.representative_income 193590 Representative total house income in the dwelling unit is $193590 +in.representative_income 193620 Representative total house income in the dwelling unit is $193620 +in.representative_income 193626 Representative total house income in the dwelling unit is $193626 +in.representative_income 193645 Representative total house income in the dwelling unit is $193645 +in.representative_income 193650 Representative total house income in the dwelling unit is $193650 +in.representative_income 193704 Representative total house income in the dwelling unit is $193704 +in.representative_income 193707 Representative total house income in the dwelling unit is $193707 +in.representative_income 193710 Representative total house income in the dwelling unit is $193710 +in.representative_income 193729 Representative total house income in the dwelling unit is $193729 +in.representative_income 193731 Representative total house income in the dwelling unit is $193731 +in.representative_income 193746 Representative total house income in the dwelling unit is $193746 +in.representative_income 193750 Representative total house income in the dwelling unit is $193750 +in.representative_income 193757 Representative total house income in the dwelling unit is $193757 +in.representative_income 193810 Representative total house income in the dwelling unit is $193810 +in.representative_income 193837 Representative total house income in the dwelling unit is $193837 +in.representative_income 193865 Representative total house income in the dwelling unit is $193865 +in.representative_income 193913 Representative total house income in the dwelling unit is $193913 +in.representative_income 193942 Representative total house income in the dwelling unit is $193942 +in.representative_income 193944 Representative total house income in the dwelling unit is $193944 +in.representative_income 193948 Representative total house income in the dwelling unit is $193948 +in.representative_income 193972 Representative total house income in the dwelling unit is $193972 +in.representative_income 193978 Representative total house income in the dwelling unit is $193978 +in.representative_income 193987 Representative total house income in the dwelling unit is $193987 +in.representative_income 194016 Representative total house income in the dwelling unit is $194016 +in.representative_income 194047 Representative total house income in the dwelling unit is $194047 +in.representative_income 194049 Representative total house income in the dwelling unit is $194049 +in.representative_income 194052 Representative total house income in the dwelling unit is $194052 +in.representative_income 194080 Representative total house income in the dwelling unit is $194080 +in.representative_income 194120 Representative total house income in the dwelling unit is $194120 +in.representative_income 194122 Representative total house income in the dwelling unit is $194122 +in.representative_income 194153 Representative total house income in the dwelling unit is $194153 +in.representative_income 194160 Representative total house income in the dwelling unit is $194160 +in.representative_income 194187 Representative total house income in the dwelling unit is $194187 +in.representative_income 194223 Representative total house income in the dwelling unit is $194223 +in.representative_income 194225 Representative total house income in the dwelling unit is $194225 +in.representative_income 194251 Representative total house income in the dwelling unit is $194251 +in.representative_income 194253 Representative total house income in the dwelling unit is $194253 +in.representative_income 194259 Representative total house income in the dwelling unit is $194259 +in.representative_income 194268 Representative total house income in the dwelling unit is $194268 +in.representative_income 194294 Representative total house income in the dwelling unit is $194294 +in.representative_income 194303 Representative total house income in the dwelling unit is $194303 +in.representative_income 194311 Representative total house income in the dwelling unit is $194311 +in.representative_income 194325 Representative total house income in the dwelling unit is $194325 +in.representative_income 194342 Representative total house income in the dwelling unit is $194342 +in.representative_income 194348 Representative total house income in the dwelling unit is $194348 +in.representative_income 194352 Representative total house income in the dwelling unit is $194352 +in.representative_income 194355 Representative total house income in the dwelling unit is $194355 +in.representative_income 194376 Representative total house income in the dwelling unit is $194376 +in.representative_income 194402 Representative total house income in the dwelling unit is $194402 +in.representative_income 194427 Representative total house income in the dwelling unit is $194427 +in.representative_income 194429 Representative total house income in the dwelling unit is $194429 +in.representative_income 194444 Representative total house income in the dwelling unit is $194444 +in.representative_income 194453 Representative total house income in the dwelling unit is $194453 +in.representative_income 194469 Representative total house income in the dwelling unit is $194469 +in.representative_income 194485 Representative total house income in the dwelling unit is $194485 +in.representative_income 194539 Representative total house income in the dwelling unit is $194539 +in.representative_income 194554 Representative total house income in the dwelling unit is $194554 +in.representative_income 194562 Representative total house income in the dwelling unit is $194562 +in.representative_income 194575 Representative total house income in the dwelling unit is $194575 +in.representative_income 194593 Representative total house income in the dwelling unit is $194593 +in.representative_income 194595 Representative total house income in the dwelling unit is $194595 +in.representative_income 194617 Representative total house income in the dwelling unit is $194617 +in.representative_income 194625 Representative total house income in the dwelling unit is $194625 +in.representative_income 194680 Representative total house income in the dwelling unit is $194680 +in.representative_income 194701 Representative total house income in the dwelling unit is $194701 +in.representative_income 194705 Representative total house income in the dwelling unit is $194705 +in.representative_income 194723 Representative total house income in the dwelling unit is $194723 +in.representative_income 194739 Representative total house income in the dwelling unit is $194739 +in.representative_income 194756 Representative total house income in the dwelling unit is $194756 +in.representative_income 194794 Representative total house income in the dwelling unit is $194794 +in.representative_income 194797 Representative total house income in the dwelling unit is $194797 +in.representative_income 194809 Representative total house income in the dwelling unit is $194809 +in.representative_income 194831 Representative total house income in the dwelling unit is $194831 +in.representative_income 194841 Representative total house income in the dwelling unit is $194841 +in.representative_income 194857 Representative total house income in the dwelling unit is $194857 +in.representative_income 194892 Representative total house income in the dwelling unit is $194892 +in.representative_income 194917 Representative total house income in the dwelling unit is $194917 +in.representative_income 194938 Representative total house income in the dwelling unit is $194938 +in.representative_income 194944 Representative total house income in the dwelling unit is $194944 +in.representative_income 194949 Representative total house income in the dwelling unit is $194949 +in.representative_income 194958 Representative total house income in the dwelling unit is $194958 +in.representative_income 194965 Representative total house income in the dwelling unit is $194965 +in.representative_income 195025 Representative total house income in the dwelling unit is $195025 +in.representative_income 195039 Representative total house income in the dwelling unit is $195039 +in.representative_income 195046 Representative total house income in the dwelling unit is $195046 +in.representative_income 195059 Representative total house income in the dwelling unit is $195059 +in.representative_income 195099 Representative total house income in the dwelling unit is $195099 +in.representative_income 195102 Representative total house income in the dwelling unit is $195102 +in.representative_income 195133 Representative total house income in the dwelling unit is $195133 +in.representative_income 195151 Representative total house income in the dwelling unit is $195151 +in.representative_income 195160 Representative total house income in the dwelling unit is $195160 +in.representative_income 195181 Representative total house income in the dwelling unit is $195181 +in.representative_income 195208 Representative total house income in the dwelling unit is $195208 +in.representative_income 195240 Representative total house income in the dwelling unit is $195240 +in.representative_income 195313 Representative total house income in the dwelling unit is $195313 +in.representative_income 195342 Representative total house income in the dwelling unit is $195342 +in.representative_income 195349 Representative total house income in the dwelling unit is $195349 +in.representative_income 195362 Representative total house income in the dwelling unit is $195362 +in.representative_income 195367 Representative total house income in the dwelling unit is $195367 +in.representative_income 195418 Representative total house income in the dwelling unit is $195418 +in.representative_income 195457 Representative total house income in the dwelling unit is $195457 +in.representative_income 195460 Representative total house income in the dwelling unit is $195460 +in.representative_income 195461 Representative total house income in the dwelling unit is $195461 +in.representative_income 195463 Representative total house income in the dwelling unit is $195463 +in.representative_income 195486 Representative total house income in the dwelling unit is $195486 +in.representative_income 195524 Representative total house income in the dwelling unit is $195524 +in.representative_income 195563 Representative total house income in the dwelling unit is $195563 +in.representative_income 195564 Representative total house income in the dwelling unit is $195564 +in.representative_income 195565 Representative total house income in the dwelling unit is $195565 +in.representative_income 195576 Representative total house income in the dwelling unit is $195576 +in.representative_income 195583 Representative total house income in the dwelling unit is $195583 +in.representative_income 195584 Representative total house income in the dwelling unit is $195584 +in.representative_income 195595 Representative total house income in the dwelling unit is $195595 +in.representative_income 195604 Representative total house income in the dwelling unit is $195604 +in.representative_income 195619 Representative total house income in the dwelling unit is $195619 +in.representative_income 195630 Representative total house income in the dwelling unit is $195630 +in.representative_income 195667 Representative total house income in the dwelling unit is $195667 +in.representative_income 195673 Representative total house income in the dwelling unit is $195673 +in.representative_income 195735 Representative total house income in the dwelling unit is $195735 +in.representative_income 195738 Representative total house income in the dwelling unit is $195738 +in.representative_income 195743 Representative total house income in the dwelling unit is $195743 +in.representative_income 195766 Representative total house income in the dwelling unit is $195766 +in.representative_income 195770 Representative total house income in the dwelling unit is $195770 +in.representative_income 195840 Representative total house income in the dwelling unit is $195840 +in.representative_income 195946 Representative total house income in the dwelling unit is $195946 +in.representative_income 195968 Representative total house income in the dwelling unit is $195968 +in.representative_income 195976 Representative total house income in the dwelling unit is $195976 +in.representative_income 195997 Representative total house income in the dwelling unit is $195997 +in.representative_income 196012 Representative total house income in the dwelling unit is $196012 +in.representative_income 196069 Representative total house income in the dwelling unit is $196069 +in.representative_income 196079 Representative total house income in the dwelling unit is $196079 +in.representative_income 196119 Representative total house income in the dwelling unit is $196119 +in.representative_income 196157 Representative total house income in the dwelling unit is $196157 +in.representative_income 196182 Representative total house income in the dwelling unit is $196182 +in.representative_income 196199 Representative total house income in the dwelling unit is $196199 +in.representative_income 196234 Representative total house income in the dwelling unit is $196234 +in.representative_income 196271 Representative total house income in the dwelling unit is $196271 +in.representative_income 196272 Representative total house income in the dwelling unit is $196272 +in.representative_income 196322 Representative total house income in the dwelling unit is $196322 +in.representative_income 196323 Representative total house income in the dwelling unit is $196323 +in.representative_income 196394 Representative total house income in the dwelling unit is $196394 +in.representative_income 196429 Representative total house income in the dwelling unit is $196429 +in.representative_income 196441 Representative total house income in the dwelling unit is $196441 +in.representative_income 196473 Representative total house income in the dwelling unit is $196473 +in.representative_income 196491 Representative total house income in the dwelling unit is $196491 +in.representative_income 196537 Representative total house income in the dwelling unit is $196537 +in.representative_income 196578 Representative total house income in the dwelling unit is $196578 +in.representative_income 196595 Representative total house income in the dwelling unit is $196595 +in.representative_income 196612 Representative total house income in the dwelling unit is $196612 +in.representative_income 196626 Representative total house income in the dwelling unit is $196626 +in.representative_income 196645 Representative total house income in the dwelling unit is $196645 +in.representative_income 196656 Representative total house income in the dwelling unit is $196656 +in.representative_income 196675 Representative total house income in the dwelling unit is $196675 +in.representative_income 196684 Representative total house income in the dwelling unit is $196684 +in.representative_income 196776 Representative total house income in the dwelling unit is $196776 +in.representative_income 196801 Representative total house income in the dwelling unit is $196801 +in.representative_income 196851 Representative total house income in the dwelling unit is $196851 +in.representative_income 196862 Representative total house income in the dwelling unit is $196862 +in.representative_income 196877 Representative total house income in the dwelling unit is $196877 +in.representative_income 196900 Representative total house income in the dwelling unit is $196900 +in.representative_income 196978 Representative total house income in the dwelling unit is $196978 +in.representative_income 196987 Representative total house income in the dwelling unit is $196987 +in.representative_income 197000 Representative total house income in the dwelling unit is $197000 +in.representative_income 197008 Representative total house income in the dwelling unit is $197008 +in.representative_income 197078 Representative total house income in the dwelling unit is $197078 +in.representative_income 197079 Representative total house income in the dwelling unit is $197079 +in.representative_income 197085 Representative total house income in the dwelling unit is $197085 +in.representative_income 197106 Representative total house income in the dwelling unit is $197106 +in.representative_income 197180 Representative total house income in the dwelling unit is $197180 +in.representative_income 197183 Representative total house income in the dwelling unit is $197183 +in.representative_income 197186 Representative total house income in the dwelling unit is $197186 +in.representative_income 197211 Representative total house income in the dwelling unit is $197211 +in.representative_income 197214 Representative total house income in the dwelling unit is $197214 +in.representative_income 197240 Representative total house income in the dwelling unit is $197240 +in.representative_income 197281 Representative total house income in the dwelling unit is $197281 +in.representative_income 197317 Representative total house income in the dwelling unit is $197317 +in.representative_income 197382 Representative total house income in the dwelling unit is $197382 +in.representative_income 197423 Representative total house income in the dwelling unit is $197423 +in.representative_income 197440 Representative total house income in the dwelling unit is $197440 +in.representative_income 197483 Representative total house income in the dwelling unit is $197483 +in.representative_income 197510 Representative total house income in the dwelling unit is $197510 +in.representative_income 197514 Representative total house income in the dwelling unit is $197514 +in.representative_income 197584 Representative total house income in the dwelling unit is $197584 +in.representative_income 197617 Representative total house income in the dwelling unit is $197617 +in.representative_income 197622 Representative total house income in the dwelling unit is $197622 +in.representative_income 197687 Representative total house income in the dwelling unit is $197687 +in.representative_income 197726 Representative total house income in the dwelling unit is $197726 +in.representative_income 197729 Representative total house income in the dwelling unit is $197729 +in.representative_income 197786 Representative total house income in the dwelling unit is $197786 +in.representative_income 197854 Representative total house income in the dwelling unit is $197854 +in.representative_income 197944 Representative total house income in the dwelling unit is $197944 +in.representative_income 197949 Representative total house income in the dwelling unit is $197949 +in.representative_income 197988 Representative total house income in the dwelling unit is $197988 +in.representative_income 198039 Representative total house income in the dwelling unit is $198039 +in.representative_income 198059 Representative total house income in the dwelling unit is $198059 +in.representative_income 198089 Representative total house income in the dwelling unit is $198089 +in.representative_income 198158 Representative total house income in the dwelling unit is $198158 +in.representative_income 198266 Representative total house income in the dwelling unit is $198266 +in.representative_income 198276 Representative total house income in the dwelling unit is $198276 +in.representative_income 198291 Representative total house income in the dwelling unit is $198291 +in.representative_income 198373 Representative total house income in the dwelling unit is $198373 +in.representative_income 198452 Representative total house income in the dwelling unit is $198452 +in.representative_income 198481 Representative total house income in the dwelling unit is $198481 +in.representative_income 198555 Representative total house income in the dwelling unit is $198555 +in.representative_income 198589 Representative total house income in the dwelling unit is $198589 +in.representative_income 198691 Representative total house income in the dwelling unit is $198691 +in.representative_income 198695 Representative total house income in the dwelling unit is $198695 +in.representative_income 198782 Representative total house income in the dwelling unit is $198782 +in.representative_income 198803 Representative total house income in the dwelling unit is $198803 +in.representative_income 198806 Representative total house income in the dwelling unit is $198806 +in.representative_income 198914 Representative total house income in the dwelling unit is $198914 +in.representative_income 198967 Representative total house income in the dwelling unit is $198967 +in.representative_income 198999 Representative total house income in the dwelling unit is $198999 +in.representative_income 199004 Representative total house income in the dwelling unit is $199004 +in.representative_income 199018 Representative total house income in the dwelling unit is $199018 +in.representative_income 199071 Representative total house income in the dwelling unit is $199071 +in.representative_income 199201 Representative total house income in the dwelling unit is $199201 +in.representative_income 199232 Representative total house income in the dwelling unit is $199232 +in.representative_income 199302 Representative total house income in the dwelling unit is $199302 +in.representative_income 199321 Representative total house income in the dwelling unit is $199321 +in.representative_income 199373 Representative total house income in the dwelling unit is $199373 +in.representative_income 199379 Representative total house income in the dwelling unit is $199379 +in.representative_income 199426 Representative total house income in the dwelling unit is $199426 +in.representative_income 199455 Representative total house income in the dwelling unit is $199455 +in.representative_income 199483 Representative total house income in the dwelling unit is $199483 +in.representative_income 199504 Representative total house income in the dwelling unit is $199504 +in.representative_income 199586 Representative total house income in the dwelling unit is $199586 +in.representative_income 199605 Representative total house income in the dwelling unit is $199605 +in.representative_income 199662 Representative total house income in the dwelling unit is $199662 +in.representative_income 199690 Representative total house income in the dwelling unit is $199690 +in.representative_income 199742 Representative total house income in the dwelling unit is $199742 +in.representative_income 199768 Representative total house income in the dwelling unit is $199768 +in.representative_income 199779 Representative total house income in the dwelling unit is $199779 +in.representative_income 199876 Representative total house income in the dwelling unit is $199876 +in.representative_income 199887 Representative total house income in the dwelling unit is $199887 +in.representative_income 199908 Representative total house income in the dwelling unit is $199908 +in.representative_income 199994 Representative total house income in the dwelling unit is $199994 +in.representative_income 200009 Representative total house income in the dwelling unit is $200009 +in.representative_income 200102 Representative total house income in the dwelling unit is $200102 +in.representative_income 200185 Representative total house income in the dwelling unit is $200185 +in.representative_income 200211 Representative total house income in the dwelling unit is $200211 +in.representative_income 200305 Representative total house income in the dwelling unit is $200305 +in.representative_income 200319 Representative total house income in the dwelling unit is $200319 +in.representative_income 200375 Representative total house income in the dwelling unit is $200375 +in.representative_income 200413 Representative total house income in the dwelling unit is $200413 +in.representative_income 200514 Representative total house income in the dwelling unit is $200514 +in.representative_income 200586 Representative total house income in the dwelling unit is $200586 +in.representative_income 200643 Representative total house income in the dwelling unit is $200643 +in.representative_income 200735 Representative total house income in the dwelling unit is $200735 +in.representative_income 200817 Representative total house income in the dwelling unit is $200817 +in.representative_income 200843 Representative total house income in the dwelling unit is $200843 +in.representative_income 200860 Representative total house income in the dwelling unit is $200860 +in.representative_income 200864 Representative total house income in the dwelling unit is $200864 +in.representative_income 200902 Representative total house income in the dwelling unit is $200902 +in.representative_income 200968 Representative total house income in the dwelling unit is $200968 +in.representative_income 201019 Representative total house income in the dwelling unit is $201019 +in.representative_income 201133 Representative total house income in the dwelling unit is $201133 +in.representative_income 201221 Representative total house income in the dwelling unit is $201221 +in.representative_income 201272 Representative total house income in the dwelling unit is $201272 +in.representative_income 201430 Representative total house income in the dwelling unit is $201430 +in.representative_income 201507 Representative total house income in the dwelling unit is $201507 +in.representative_income 201524 Representative total house income in the dwelling unit is $201524 +in.representative_income 201609 Representative total house income in the dwelling unit is $201609 +in.representative_income 201616 Representative total house income in the dwelling unit is $201616 +in.representative_income 201649 Representative total house income in the dwelling unit is $201649 +in.representative_income 201809 Representative total house income in the dwelling unit is $201809 +in.representative_income 201827 Representative total house income in the dwelling unit is $201827 +in.representative_income 201852 Representative total house income in the dwelling unit is $201852 +in.representative_income 201856 Representative total house income in the dwelling unit is $201856 +in.representative_income 201916 Representative total house income in the dwelling unit is $201916 +in.representative_income 201963 Representative total house income in the dwelling unit is $201963 +in.representative_income 202029 Representative total house income in the dwelling unit is $202029 +in.representative_income 202048 Representative total house income in the dwelling unit is $202048 +in.representative_income 202130 Representative total house income in the dwelling unit is $202130 +in.representative_income 202156 Representative total house income in the dwelling unit is $202156 +in.representative_income 202165 Representative total house income in the dwelling unit is $202165 +in.representative_income 202168 Representative total house income in the dwelling unit is $202168 +in.representative_income 202231 Representative total house income in the dwelling unit is $202231 +in.representative_income 202345 Representative total house income in the dwelling unit is $202345 +in.representative_income 202371 Representative total house income in the dwelling unit is $202371 +in.representative_income 202393 Representative total house income in the dwelling unit is $202393 +in.representative_income 202480 Representative total house income in the dwelling unit is $202480 +in.representative_income 202484 Representative total house income in the dwelling unit is $202484 +in.representative_income 202485 Representative total house income in the dwelling unit is $202485 +in.representative_income 202534 Representative total house income in the dwelling unit is $202534 +in.representative_income 202696 Representative total house income in the dwelling unit is $202696 +in.representative_income 202785 Representative total house income in the dwelling unit is $202785 +in.representative_income 202793 Representative total house income in the dwelling unit is $202793 +in.representative_income 202882 Representative total house income in the dwelling unit is $202882 +in.representative_income 202886 Representative total house income in the dwelling unit is $202886 +in.representative_income 202887 Representative total house income in the dwelling unit is $202887 +in.representative_income 202906 Representative total house income in the dwelling unit is $202906 +in.representative_income 202912 Representative total house income in the dwelling unit is $202912 +in.representative_income 202989 Representative total house income in the dwelling unit is $202989 +in.representative_income 203039 Representative total house income in the dwelling unit is $203039 +in.representative_income 203128 Representative total house income in the dwelling unit is $203128 +in.representative_income 203196 Representative total house income in the dwelling unit is $203196 +in.representative_income 203237 Representative total house income in the dwelling unit is $203237 +in.representative_income 203275 Representative total house income in the dwelling unit is $203275 +in.representative_income 203342 Representative total house income in the dwelling unit is $203342 +in.representative_income 203539 Representative total house income in the dwelling unit is $203539 +in.representative_income 203544 Representative total house income in the dwelling unit is $203544 +in.representative_income 203605 Representative total house income in the dwelling unit is $203605 +in.representative_income 203668 Representative total house income in the dwelling unit is $203668 +in.representative_income 203712 Representative total house income in the dwelling unit is $203712 +in.representative_income 203722 Representative total house income in the dwelling unit is $203722 +in.representative_income 203740 Representative total house income in the dwelling unit is $203740 +in.representative_income 203750 Representative total house income in the dwelling unit is $203750 +in.representative_income 203856 Representative total house income in the dwelling unit is $203856 +in.representative_income 203878 Representative total house income in the dwelling unit is $203878 +in.representative_income 203884 Representative total house income in the dwelling unit is $203884 +in.representative_income 203955 Representative total house income in the dwelling unit is $203955 +in.representative_income 203961 Representative total house income in the dwelling unit is $203961 +in.representative_income 203993 Representative total house income in the dwelling unit is $203993 +in.representative_income 204049 Representative total house income in the dwelling unit is $204049 +in.representative_income 204101 Representative total house income in the dwelling unit is $204101 +in.representative_income 204170 Representative total house income in the dwelling unit is $204170 +in.representative_income 204209 Representative total house income in the dwelling unit is $204209 +in.representative_income 204220 Representative total house income in the dwelling unit is $204220 +in.representative_income 204227 Representative total house income in the dwelling unit is $204227 +in.representative_income 204277 Representative total house income in the dwelling unit is $204277 +in.representative_income 204317 Representative total house income in the dwelling unit is $204317 +in.representative_income 204425 Representative total house income in the dwelling unit is $204425 +in.representative_income 204453 Representative total house income in the dwelling unit is $204453 +in.representative_income 204478 Representative total house income in the dwelling unit is $204478 +in.representative_income 204554 Representative total house income in the dwelling unit is $204554 +in.representative_income 204594 Representative total house income in the dwelling unit is $204594 +in.representative_income 204625 Representative total house income in the dwelling unit is $204625 +in.representative_income 204641 Representative total house income in the dwelling unit is $204641 +in.representative_income 204699 Representative total house income in the dwelling unit is $204699 +in.representative_income 204749 Representative total house income in the dwelling unit is $204749 +in.representative_income 204756 Representative total house income in the dwelling unit is $204756 +in.representative_income 204846 Representative total house income in the dwelling unit is $204846 +in.representative_income 204857 Representative total house income in the dwelling unit is $204857 +in.representative_income 204879 Representative total house income in the dwelling unit is $204879 +in.representative_income 205016 Representative total house income in the dwelling unit is $205016 +in.representative_income 205029 Representative total house income in the dwelling unit is $205029 +in.representative_income 205059 Representative total house income in the dwelling unit is $205059 +in.representative_income 205226 Representative total house income in the dwelling unit is $205226 +in.representative_income 205244 Representative total house income in the dwelling unit is $205244 +in.representative_income 205259 Representative total house income in the dwelling unit is $205259 +in.representative_income 205261 Representative total house income in the dwelling unit is $205261 +in.representative_income 205289 Representative total house income in the dwelling unit is $205289 +in.representative_income 205332 Representative total house income in the dwelling unit is $205332 +in.representative_income 205362 Representative total house income in the dwelling unit is $205362 +in.representative_income 205505 Representative total house income in the dwelling unit is $205505 +in.representative_income 205542 Representative total house income in the dwelling unit is $205542 +in.representative_income 205565 Representative total house income in the dwelling unit is $205565 +in.representative_income 205649 Representative total house income in the dwelling unit is $205649 +in.representative_income 205672 Representative total house income in the dwelling unit is $205672 +in.representative_income 205775 Representative total house income in the dwelling unit is $205775 +in.representative_income 205807 Representative total house income in the dwelling unit is $205807 +in.representative_income 205830 Representative total house income in the dwelling unit is $205830 +in.representative_income 205859 Representative total house income in the dwelling unit is $205859 +in.representative_income 205969 Representative total house income in the dwelling unit is $205969 +in.representative_income 206070 Representative total house income in the dwelling unit is $206070 +in.representative_income 206102 Representative total house income in the dwelling unit is $206102 +in.representative_income 206175 Representative total house income in the dwelling unit is $206175 +in.representative_income 206210 Representative total house income in the dwelling unit is $206210 +in.representative_income 206291 Representative total house income in the dwelling unit is $206291 +in.representative_income 206370 Representative total house income in the dwelling unit is $206370 +in.representative_income 206393 Representative total house income in the dwelling unit is $206393 +in.representative_income 206474 Representative total house income in the dwelling unit is $206474 +in.representative_income 206478 Representative total house income in the dwelling unit is $206478 +in.representative_income 206492 Representative total house income in the dwelling unit is $206492 +in.representative_income 206497 Representative total house income in the dwelling unit is $206497 +in.representative_income 206586 Representative total house income in the dwelling unit is $206586 +in.representative_income 206650 Representative total house income in the dwelling unit is $206650 +in.representative_income 206666 Representative total house income in the dwelling unit is $206666 +in.representative_income 206676 Representative total house income in the dwelling unit is $206676 +in.representative_income 206703 Representative total house income in the dwelling unit is $206703 +in.representative_income 206746 Representative total house income in the dwelling unit is $206746 +in.representative_income 206802 Representative total house income in the dwelling unit is $206802 +in.representative_income 206807 Representative total house income in the dwelling unit is $206807 +in.representative_income 206878 Representative total house income in the dwelling unit is $206878 +in.representative_income 206914 Representative total house income in the dwelling unit is $206914 +in.representative_income 206961 Representative total house income in the dwelling unit is $206961 +in.representative_income 207029 Representative total house income in the dwelling unit is $207029 +in.representative_income 207080 Representative total house income in the dwelling unit is $207080 +in.representative_income 207175 Representative total house income in the dwelling unit is $207175 +in.representative_income 207245 Representative total house income in the dwelling unit is $207245 +in.representative_income 207283 Representative total house income in the dwelling unit is $207283 +in.representative_income 207322 Representative total house income in the dwelling unit is $207322 +in.representative_income 207332 Representative total house income in the dwelling unit is $207332 +in.representative_income 207391 Representative total house income in the dwelling unit is $207391 +in.representative_income 207441 Representative total house income in the dwelling unit is $207441 +in.representative_income 207450 Representative total house income in the dwelling unit is $207450 +in.representative_income 207498 Representative total house income in the dwelling unit is $207498 +in.representative_income 207528 Representative total house income in the dwelling unit is $207528 +in.representative_income 207547 Representative total house income in the dwelling unit is $207547 +in.representative_income 207558 Representative total house income in the dwelling unit is $207558 +in.representative_income 207605 Representative total house income in the dwelling unit is $207605 +in.representative_income 207612 Representative total house income in the dwelling unit is $207612 +in.representative_income 207686 Representative total house income in the dwelling unit is $207686 +in.representative_income 207712 Representative total house income in the dwelling unit is $207712 +in.representative_income 207757 Representative total house income in the dwelling unit is $207757 +in.representative_income 207787 Representative total house income in the dwelling unit is $207787 +in.representative_income 207838 Representative total house income in the dwelling unit is $207838 +in.representative_income 207888 Representative total house income in the dwelling unit is $207888 +in.representative_income 207968 Representative total house income in the dwelling unit is $207968 +in.representative_income 208035 Representative total house income in the dwelling unit is $208035 +in.representative_income 208045 Representative total house income in the dwelling unit is $208045 +in.representative_income 208090 Representative total house income in the dwelling unit is $208090 +in.representative_income 208180 Representative total house income in the dwelling unit is $208180 +in.representative_income 208249 Representative total house income in the dwelling unit is $208249 +in.representative_income 208354 Representative total house income in the dwelling unit is $208354 +in.representative_income 208390 Representative total house income in the dwelling unit is $208390 +in.representative_income 208421 Representative total house income in the dwelling unit is $208421 +in.representative_income 208530 Representative total house income in the dwelling unit is $208530 +in.representative_income 208559 Representative total house income in the dwelling unit is $208559 +in.representative_income 208571 Representative total house income in the dwelling unit is $208571 +in.representative_income 208595 Representative total house income in the dwelling unit is $208595 +in.representative_income 208601 Representative total house income in the dwelling unit is $208601 +in.representative_income 208638 Representative total house income in the dwelling unit is $208638 +in.representative_income 208656 Representative total house income in the dwelling unit is $208656 +in.representative_income 208679 Representative total house income in the dwelling unit is $208679 +in.representative_income 208684 Representative total house income in the dwelling unit is $208684 +in.representative_income 208785 Representative total house income in the dwelling unit is $208785 +in.representative_income 208797 Representative total house income in the dwelling unit is $208797 +in.representative_income 208812 Representative total house income in the dwelling unit is $208812 +in.representative_income 208869 Representative total house income in the dwelling unit is $208869 +in.representative_income 208875 Representative total house income in the dwelling unit is $208875 +in.representative_income 209001 Representative total house income in the dwelling unit is $209001 +in.representative_income 209039 Representative total house income in the dwelling unit is $209039 +in.representative_income 209100 Representative total house income in the dwelling unit is $209100 +in.representative_income 209179 Representative total house income in the dwelling unit is $209179 +in.representative_income 209234 Representative total house income in the dwelling unit is $209234 +in.representative_income 209287 Representative total house income in the dwelling unit is $209287 +in.representative_income 209322 Representative total house income in the dwelling unit is $209322 +in.representative_income 209343 Representative total house income in the dwelling unit is $209343 +in.representative_income 209385 Representative total house income in the dwelling unit is $209385 +in.representative_income 209550 Representative total house income in the dwelling unit is $209550 +in.representative_income 209555 Representative total house income in the dwelling unit is $209555 +in.representative_income 209569 Representative total house income in the dwelling unit is $209569 +in.representative_income 209592 Representative total house income in the dwelling unit is $209592 +in.representative_income 209605 Representative total house income in the dwelling unit is $209605 +in.representative_income 209612 Representative total house income in the dwelling unit is $209612 +in.representative_income 209694 Representative total house income in the dwelling unit is $209694 +in.representative_income 209706 Representative total house income in the dwelling unit is $209706 +in.representative_income 209752 Representative total house income in the dwelling unit is $209752 +in.representative_income 209797 Representative total house income in the dwelling unit is $209797 +in.representative_income 209804 Representative total house income in the dwelling unit is $209804 +in.representative_income 209859 Representative total house income in the dwelling unit is $209859 +in.representative_income 209866 Representative total house income in the dwelling unit is $209866 +in.representative_income 209908 Representative total house income in the dwelling unit is $209908 +in.representative_income 209935 Representative total house income in the dwelling unit is $209935 +in.representative_income 210004 Representative total house income in the dwelling unit is $210004 +in.representative_income 210009 Representative total house income in the dwelling unit is $210009 +in.representative_income 210043 Representative total house income in the dwelling unit is $210043 +in.representative_income 210110 Representative total house income in the dwelling unit is $210110 +in.representative_income 210181 Representative total house income in the dwelling unit is $210181 +in.representative_income 210211 Representative total house income in the dwelling unit is $210211 +in.representative_income 210396 Representative total house income in the dwelling unit is $210396 +in.representative_income 210413 Representative total house income in the dwelling unit is $210413 +in.representative_income 210416 Representative total house income in the dwelling unit is $210416 +in.representative_income 210476 Representative total house income in the dwelling unit is $210476 +in.representative_income 210514 Representative total house income in the dwelling unit is $210514 +in.representative_income 210611 Representative total house income in the dwelling unit is $210611 +in.representative_income 210615 Representative total house income in the dwelling unit is $210615 +in.representative_income 210692 Representative total house income in the dwelling unit is $210692 +in.representative_income 210711 Representative total house income in the dwelling unit is $210711 +in.representative_income 210757 Representative total house income in the dwelling unit is $210757 +in.representative_income 210826 Representative total house income in the dwelling unit is $210826 +in.representative_income 210827 Representative total house income in the dwelling unit is $210827 +in.representative_income 210853 Representative total house income in the dwelling unit is $210853 +in.representative_income 210921 Representative total house income in the dwelling unit is $210921 +in.representative_income 210932 Representative total house income in the dwelling unit is $210932 +in.representative_income 210933 Representative total house income in the dwelling unit is $210933 +in.representative_income 210942 Representative total house income in the dwelling unit is $210942 +in.representative_income 211015 Representative total house income in the dwelling unit is $211015 +in.representative_income 211019 Representative total house income in the dwelling unit is $211019 +in.representative_income 211037 Representative total house income in the dwelling unit is $211037 +in.representative_income 211120 Representative total house income in the dwelling unit is $211120 +in.representative_income 211139 Representative total house income in the dwelling unit is $211139 +in.representative_income 211232 Representative total house income in the dwelling unit is $211232 +in.representative_income 211242 Representative total house income in the dwelling unit is $211242 +in.representative_income 211307 Representative total house income in the dwelling unit is $211307 +in.representative_income 211322 Representative total house income in the dwelling unit is $211322 +in.representative_income 211343 Representative total house income in the dwelling unit is $211343 +in.representative_income 211448 Representative total house income in the dwelling unit is $211448 +in.representative_income 211449 Representative total house income in the dwelling unit is $211449 +in.representative_income 211470 Representative total house income in the dwelling unit is $211470 +in.representative_income 211519 Representative total house income in the dwelling unit is $211519 +in.representative_income 211524 Representative total house income in the dwelling unit is $211524 +in.representative_income 211551 Representative total house income in the dwelling unit is $211551 +in.representative_income 211556 Representative total house income in the dwelling unit is $211556 +in.representative_income 211625 Representative total house income in the dwelling unit is $211625 +in.representative_income 211654 Representative total house income in the dwelling unit is $211654 +in.representative_income 211684 Representative total house income in the dwelling unit is $211684 +in.representative_income 211708 Representative total house income in the dwelling unit is $211708 +in.representative_income 211712 Representative total house income in the dwelling unit is $211712 +in.representative_income 211765 Representative total house income in the dwelling unit is $211765 +in.representative_income 211772 Representative total house income in the dwelling unit is $211772 +in.representative_income 211792 Representative total house income in the dwelling unit is $211792 +in.representative_income 211840 Representative total house income in the dwelling unit is $211840 +in.representative_income 211860 Representative total house income in the dwelling unit is $211860 +in.representative_income 211976 Representative total house income in the dwelling unit is $211976 +in.representative_income 212015 Representative total house income in the dwelling unit is $212015 +in.representative_income 212029 Representative total house income in the dwelling unit is $212029 +in.representative_income 212130 Representative total house income in the dwelling unit is $212130 +in.representative_income 212151 Representative total house income in the dwelling unit is $212151 +in.representative_income 212204 Representative total house income in the dwelling unit is $212204 +in.representative_income 212231 Representative total house income in the dwelling unit is $212231 +in.representative_income 212273 Representative total house income in the dwelling unit is $212273 +in.representative_income 212376 Representative total house income in the dwelling unit is $212376 +in.representative_income 212397 Representative total house income in the dwelling unit is $212397 +in.representative_income 212434 Representative total house income in the dwelling unit is $212434 +in.representative_income 212479 Representative total house income in the dwelling unit is $212479 +in.representative_income 212503 Representative total house income in the dwelling unit is $212503 +in.representative_income 212511 Representative total house income in the dwelling unit is $212511 +in.representative_income 212543 Representative total house income in the dwelling unit is $212543 +in.representative_income 212636 Representative total house income in the dwelling unit is $212636 +in.representative_income 212650 Representative total house income in the dwelling unit is $212650 +in.representative_income 212714 Representative total house income in the dwelling unit is $212714 +in.representative_income 212737 Representative total house income in the dwelling unit is $212737 +in.representative_income 212757 Representative total house income in the dwelling unit is $212757 +in.representative_income 212841 Representative total house income in the dwelling unit is $212841 +in.representative_income 212853 Representative total house income in the dwelling unit is $212853 +in.representative_income 212872 Representative total house income in the dwelling unit is $212872 +in.representative_income 212892 Representative total house income in the dwelling unit is $212892 +in.representative_income 212961 Representative total house income in the dwelling unit is $212961 +in.representative_income 212972 Representative total house income in the dwelling unit is $212972 +in.representative_income 212995 Representative total house income in the dwelling unit is $212995 +in.representative_income 213030 Representative total house income in the dwelling unit is $213030 +in.representative_income 213040 Representative total house income in the dwelling unit is $213040 +in.representative_income 213069 Representative total house income in the dwelling unit is $213069 +in.representative_income 213080 Representative total house income in the dwelling unit is $213080 +in.representative_income 213141 Representative total house income in the dwelling unit is $213141 +in.representative_income 213170 Representative total house income in the dwelling unit is $213170 +in.representative_income 213177 Representative total house income in the dwelling unit is $213177 +in.representative_income 213187 Representative total house income in the dwelling unit is $213187 +in.representative_income 213201 Representative total house income in the dwelling unit is $213201 +in.representative_income 213305 Representative total house income in the dwelling unit is $213305 +in.representative_income 213361 Representative total house income in the dwelling unit is $213361 +in.representative_income 213392 Representative total house income in the dwelling unit is $213392 +in.representative_income 213509 Representative total house income in the dwelling unit is $213509 +in.representative_income 213510 Representative total house income in the dwelling unit is $213510 +in.representative_income 213545 Representative total house income in the dwelling unit is $213545 +in.representative_income 213558 Representative total house income in the dwelling unit is $213558 +in.representative_income 213614 Representative total house income in the dwelling unit is $213614 +in.representative_income 213617 Representative total house income in the dwelling unit is $213617 +in.representative_income 213646 Representative total house income in the dwelling unit is $213646 +in.representative_income 213663 Representative total house income in the dwelling unit is $213663 +in.representative_income 213747 Representative total house income in the dwelling unit is $213747 +in.representative_income 213769 Representative total house income in the dwelling unit is $213769 +in.representative_income 213831 Representative total house income in the dwelling unit is $213831 +in.representative_income 213836 Representative total house income in the dwelling unit is $213836 +in.representative_income 213933 Representative total house income in the dwelling unit is $213933 +in.representative_income 213949 Representative total house income in the dwelling unit is $213949 +in.representative_income 213980 Representative total house income in the dwelling unit is $213980 +in.representative_income 214026 Representative total house income in the dwelling unit is $214026 +in.representative_income 214041 Representative total house income in the dwelling unit is $214041 +in.representative_income 214085 Representative total house income in the dwelling unit is $214085 +in.representative_income 214129 Representative total house income in the dwelling unit is $214129 +in.representative_income 214151 Representative total house income in the dwelling unit is $214151 +in.representative_income 214233 Representative total house income in the dwelling unit is $214233 +in.representative_income 214252 Representative total house income in the dwelling unit is $214252 +in.representative_income 214257 Representative total house income in the dwelling unit is $214257 +in.representative_income 214336 Representative total house income in the dwelling unit is $214336 +in.representative_income 214401 Representative total house income in the dwelling unit is $214401 +in.representative_income 214459 Representative total house income in the dwelling unit is $214459 +in.representative_income 214474 Representative total house income in the dwelling unit is $214474 +in.representative_income 214496 Representative total house income in the dwelling unit is $214496 +in.representative_income 214507 Representative total house income in the dwelling unit is $214507 +in.representative_income 214543 Representative total house income in the dwelling unit is $214543 +in.representative_income 214555 Representative total house income in the dwelling unit is $214555 +in.representative_income 214613 Representative total house income in the dwelling unit is $214613 +in.representative_income 214656 Representative total house income in the dwelling unit is $214656 +in.representative_income 214690 Representative total house income in the dwelling unit is $214690 +in.representative_income 214733 Representative total house income in the dwelling unit is $214733 +in.representative_income 214743 Representative total house income in the dwelling unit is $214743 +in.representative_income 214748 Representative total house income in the dwelling unit is $214748 +in.representative_income 214757 Representative total house income in the dwelling unit is $214757 +in.representative_income 214868 Representative total house income in the dwelling unit is $214868 +in.representative_income 214904 Representative total house income in the dwelling unit is $214904 +in.representative_income 214949 Representative total house income in the dwelling unit is $214949 +in.representative_income 214955 Representative total house income in the dwelling unit is $214955 +in.representative_income 215013 Representative total house income in the dwelling unit is $215013 +in.representative_income 215019 Representative total house income in the dwelling unit is $215019 +in.representative_income 215058 Representative total house income in the dwelling unit is $215058 +in.representative_income 215119 Representative total house income in the dwelling unit is $215119 +in.representative_income 215140 Representative total house income in the dwelling unit is $215140 +in.representative_income 215161 Representative total house income in the dwelling unit is $215161 +in.representative_income 215230 Representative total house income in the dwelling unit is $215230 +in.representative_income 215295 Representative total house income in the dwelling unit is $215295 +in.representative_income 215351 Representative total house income in the dwelling unit is $215351 +in.representative_income 215446 Representative total house income in the dwelling unit is $215446 +in.representative_income 215456 Representative total house income in the dwelling unit is $215456 +in.representative_income 215464 Representative total house income in the dwelling unit is $215464 +in.representative_income 215548 Representative total house income in the dwelling unit is $215548 +in.representative_income 215554 Representative total house income in the dwelling unit is $215554 +in.representative_income 215561 Representative total house income in the dwelling unit is $215561 +in.representative_income 215565 Representative total house income in the dwelling unit is $215565 +in.representative_income 215574 Representative total house income in the dwelling unit is $215574 +in.representative_income 215666 Representative total house income in the dwelling unit is $215666 +in.representative_income 215676 Representative total house income in the dwelling unit is $215676 +in.representative_income 215752 Representative total house income in the dwelling unit is $215752 +in.representative_income 215763 Representative total house income in the dwelling unit is $215763 +in.representative_income 215773 Representative total house income in the dwelling unit is $215773 +in.representative_income 215780 Representative total house income in the dwelling unit is $215780 +in.representative_income 215978 Representative total house income in the dwelling unit is $215978 +in.representative_income 215986 Representative total house income in the dwelling unit is $215986 +in.representative_income 216070 Representative total house income in the dwelling unit is $216070 +in.representative_income 216085 Representative total house income in the dwelling unit is $216085 +in.representative_income 216094 Representative total house income in the dwelling unit is $216094 +in.representative_income 216105 Representative total house income in the dwelling unit is $216105 +in.representative_income 216110 Representative total house income in the dwelling unit is $216110 +in.representative_income 216171 Representative total house income in the dwelling unit is $216171 +in.representative_income 216193 Representative total house income in the dwelling unit is $216193 +in.representative_income 216194 Representative total house income in the dwelling unit is $216194 +in.representative_income 216292 Representative total house income in the dwelling unit is $216292 +in.representative_income 216300 Representative total house income in the dwelling unit is $216300 +in.representative_income 216302 Representative total house income in the dwelling unit is $216302 +in.representative_income 216310 Representative total house income in the dwelling unit is $216310 +in.representative_income 216373 Representative total house income in the dwelling unit is $216373 +in.representative_income 216408 Representative total house income in the dwelling unit is $216408 +in.representative_income 216511 Representative total house income in the dwelling unit is $216511 +in.representative_income 216605 Representative total house income in the dwelling unit is $216605 +in.representative_income 216676 Representative total house income in the dwelling unit is $216676 +in.representative_income 216689 Representative total house income in the dwelling unit is $216689 +in.representative_income 216721 Representative total house income in the dwelling unit is $216721 +in.representative_income 216770 Representative total house income in the dwelling unit is $216770 +in.representative_income 216783 Representative total house income in the dwelling unit is $216783 +in.representative_income 216811 Representative total house income in the dwelling unit is $216811 +in.representative_income 216837 Representative total house income in the dwelling unit is $216837 +in.representative_income 216878 Representative total house income in the dwelling unit is $216878 +in.representative_income 216890 Representative total house income in the dwelling unit is $216890 +in.representative_income 216914 Representative total house income in the dwelling unit is $216914 +in.representative_income 216944 Representative total house income in the dwelling unit is $216944 +in.representative_income 216979 Representative total house income in the dwelling unit is $216979 +in.representative_income 217121 Representative total house income in the dwelling unit is $217121 +in.representative_income 217144 Representative total house income in the dwelling unit is $217144 +in.representative_income 217158 Representative total house income in the dwelling unit is $217158 +in.representative_income 217174 Representative total house income in the dwelling unit is $217174 +in.representative_income 217181 Representative total house income in the dwelling unit is $217181 +in.representative_income 217212 Representative total house income in the dwelling unit is $217212 +in.representative_income 217249 Representative total house income in the dwelling unit is $217249 +in.representative_income 217259 Representative total house income in the dwelling unit is $217259 +in.representative_income 217266 Representative total house income in the dwelling unit is $217266 +in.representative_income 217280 Representative total house income in the dwelling unit is $217280 +in.representative_income 217352 Representative total house income in the dwelling unit is $217352 +in.representative_income 217373 Representative total house income in the dwelling unit is $217373 +in.representative_income 217390 Representative total house income in the dwelling unit is $217390 +in.representative_income 217430 Representative total house income in the dwelling unit is $217430 +in.representative_income 217459 Representative total house income in the dwelling unit is $217459 +in.representative_income 217499 Representative total house income in the dwelling unit is $217499 +in.representative_income 217513 Representative total house income in the dwelling unit is $217513 +in.representative_income 217588 Representative total house income in the dwelling unit is $217588 +in.representative_income 217637 Representative total house income in the dwelling unit is $217637 +in.representative_income 217686 Representative total house income in the dwelling unit is $217686 +in.representative_income 217710 Representative total house income in the dwelling unit is $217710 +in.representative_income 217715 Representative total house income in the dwelling unit is $217715 +in.representative_income 217776 Representative total house income in the dwelling unit is $217776 +in.representative_income 217787 Representative total house income in the dwelling unit is $217787 +in.representative_income 217823 Representative total house income in the dwelling unit is $217823 +in.representative_income 217888 Representative total house income in the dwelling unit is $217888 +in.representative_income 217910 Representative total house income in the dwelling unit is $217910 +in.representative_income 217946 Representative total house income in the dwelling unit is $217946 +in.representative_income 217987 Representative total house income in the dwelling unit is $217987 +in.representative_income 218018 Representative total house income in the dwelling unit is $218018 +in.representative_income 218047 Representative total house income in the dwelling unit is $218047 +in.representative_income 218049 Representative total house income in the dwelling unit is $218049 +in.representative_income 218090 Representative total house income in the dwelling unit is $218090 +in.representative_income 218092 Representative total house income in the dwelling unit is $218092 +in.representative_income 218125 Representative total house income in the dwelling unit is $218125 +in.representative_income 218152 Representative total house income in the dwelling unit is $218152 +in.representative_income 218191 Representative total house income in the dwelling unit is $218191 +in.representative_income 218255 Representative total house income in the dwelling unit is $218255 +in.representative_income 218256 Representative total house income in the dwelling unit is $218256 +in.representative_income 218262 Representative total house income in the dwelling unit is $218262 +in.representative_income 218277 Representative total house income in the dwelling unit is $218277 +in.representative_income 218304 Representative total house income in the dwelling unit is $218304 +in.representative_income 218325 Representative total house income in the dwelling unit is $218325 +in.representative_income 218339 Representative total house income in the dwelling unit is $218339 +in.representative_income 218343 Representative total house income in the dwelling unit is $218343 +in.representative_income 218363 Representative total house income in the dwelling unit is $218363 +in.representative_income 218409 Representative total house income in the dwelling unit is $218409 +in.representative_income 218410 Representative total house income in the dwelling unit is $218410 +in.representative_income 218440 Representative total house income in the dwelling unit is $218440 +in.representative_income 218447 Representative total house income in the dwelling unit is $218447 +in.representative_income 218514 Representative total house income in the dwelling unit is $218514 +in.representative_income 218536 Representative total house income in the dwelling unit is $218536 +in.representative_income 218590 Representative total house income in the dwelling unit is $218590 +in.representative_income 218620 Representative total house income in the dwelling unit is $218620 +in.representative_income 218662 Representative total house income in the dwelling unit is $218662 +in.representative_income 218668 Representative total house income in the dwelling unit is $218668 +in.representative_income 218687 Representative total house income in the dwelling unit is $218687 +in.representative_income 218725 Representative total house income in the dwelling unit is $218725 +in.representative_income 218795 Representative total house income in the dwelling unit is $218795 +in.representative_income 218830 Representative total house income in the dwelling unit is $218830 +in.representative_income 218837 Representative total house income in the dwelling unit is $218837 +in.representative_income 218977 Representative total house income in the dwelling unit is $218977 +in.representative_income 218983 Representative total house income in the dwelling unit is $218983 +in.representative_income 219042 Representative total house income in the dwelling unit is $219042 +in.representative_income 219091 Representative total house income in the dwelling unit is $219091 +in.representative_income 219120 Representative total house income in the dwelling unit is $219120 +in.representative_income 219184 Representative total house income in the dwelling unit is $219184 +in.representative_income 219199 Representative total house income in the dwelling unit is $219199 +in.representative_income 219201 Representative total house income in the dwelling unit is $219201 +in.representative_income 219232 Representative total house income in the dwelling unit is $219232 +in.representative_income 219252 Representative total house income in the dwelling unit is $219252 +in.representative_income 219282 Representative total house income in the dwelling unit is $219282 +in.representative_income 219287 Representative total house income in the dwelling unit is $219287 +in.representative_income 219302 Representative total house income in the dwelling unit is $219302 +in.representative_income 219335 Representative total house income in the dwelling unit is $219335 +in.representative_income 219358 Representative total house income in the dwelling unit is $219358 +in.representative_income 219379 Representative total house income in the dwelling unit is $219379 +in.representative_income 219404 Representative total house income in the dwelling unit is $219404 +in.representative_income 219413 Representative total house income in the dwelling unit is $219413 +in.representative_income 219421 Representative total house income in the dwelling unit is $219421 +in.representative_income 219493 Representative total house income in the dwelling unit is $219493 +in.representative_income 219551 Representative total house income in the dwelling unit is $219551 +in.representative_income 219569 Representative total house income in the dwelling unit is $219569 +in.representative_income 219628 Representative total house income in the dwelling unit is $219628 +in.representative_income 219699 Representative total house income in the dwelling unit is $219699 +in.representative_income 219707 Representative total house income in the dwelling unit is $219707 +in.representative_income 219735 Representative total house income in the dwelling unit is $219735 +in.representative_income 219767 Representative total house income in the dwelling unit is $219767 +in.representative_income 219876 Representative total house income in the dwelling unit is $219876 +in.representative_income 219909 Representative total house income in the dwelling unit is $219909 +in.representative_income 220010 Representative total house income in the dwelling unit is $220010 +in.representative_income 220057 Representative total house income in the dwelling unit is $220057 +in.representative_income 220060 Representative total house income in the dwelling unit is $220060 +in.representative_income 220096 Representative total house income in the dwelling unit is $220096 +in.representative_income 220100 Representative total house income in the dwelling unit is $220100 +in.representative_income 220111 Representative total house income in the dwelling unit is $220111 +in.representative_income 220164 Representative total house income in the dwelling unit is $220164 +in.representative_income 220202 Representative total house income in the dwelling unit is $220202 +in.representative_income 220212 Representative total house income in the dwelling unit is $220212 +in.representative_income 220318 Representative total house income in the dwelling unit is $220318 +in.representative_income 220413 Representative total house income in the dwelling unit is $220413 +in.representative_income 220414 Representative total house income in the dwelling unit is $220414 +in.representative_income 220416 Representative total house income in the dwelling unit is $220416 +in.representative_income 220422 Representative total house income in the dwelling unit is $220422 +in.representative_income 220525 Representative total house income in the dwelling unit is $220525 +in.representative_income 220616 Representative total house income in the dwelling unit is $220616 +in.representative_income 220627 Representative total house income in the dwelling unit is $220627 +in.representative_income 220632 Representative total house income in the dwelling unit is $220632 +in.representative_income 220701 Representative total house income in the dwelling unit is $220701 +in.representative_income 220717 Representative total house income in the dwelling unit is $220717 +in.representative_income 220731 Representative total house income in the dwelling unit is $220731 +in.representative_income 220740 Representative total house income in the dwelling unit is $220740 +in.representative_income 220848 Representative total house income in the dwelling unit is $220848 +in.representative_income 220919 Representative total house income in the dwelling unit is $220919 +in.representative_income 220937 Representative total house income in the dwelling unit is $220937 +in.representative_income 220956 Representative total house income in the dwelling unit is $220956 +in.representative_income 221020 Representative total house income in the dwelling unit is $221020 +in.representative_income 221130 Representative total house income in the dwelling unit is $221130 +in.representative_income 221143 Representative total house income in the dwelling unit is $221143 +in.representative_income 221151 Representative total house income in the dwelling unit is $221151 +in.representative_income 221172 Representative total house income in the dwelling unit is $221172 +in.representative_income 221222 Representative total house income in the dwelling unit is $221222 +in.representative_income 221238 Representative total house income in the dwelling unit is $221238 +in.representative_income 221280 Representative total house income in the dwelling unit is $221280 +in.representative_income 221323 Representative total house income in the dwelling unit is $221323 +in.representative_income 221345 Representative total house income in the dwelling unit is $221345 +in.representative_income 221350 Representative total house income in the dwelling unit is $221350 +in.representative_income 221361 Representative total house income in the dwelling unit is $221361 +in.representative_income 221388 Representative total house income in the dwelling unit is $221388 +in.representative_income 221453 Representative total house income in the dwelling unit is $221453 +in.representative_income 221468 Representative total house income in the dwelling unit is $221468 +in.representative_income 221497 Representative total house income in the dwelling unit is $221497 +in.representative_income 221525 Representative total house income in the dwelling unit is $221525 +in.representative_income 221556 Representative total house income in the dwelling unit is $221556 +in.representative_income 221573 Representative total house income in the dwelling unit is $221573 +in.representative_income 221605 Representative total house income in the dwelling unit is $221605 +in.representative_income 221625 Representative total house income in the dwelling unit is $221625 +in.representative_income 221659 Representative total house income in the dwelling unit is $221659 +in.representative_income 221660 Representative total house income in the dwelling unit is $221660 +in.representative_income 221667 Representative total house income in the dwelling unit is $221667 +in.representative_income 221727 Representative total house income in the dwelling unit is $221727 +in.representative_income 221742 Representative total house income in the dwelling unit is $221742 +in.representative_income 221762 Representative total house income in the dwelling unit is $221762 +in.representative_income 221774 Representative total house income in the dwelling unit is $221774 +in.representative_income 221785 Representative total house income in the dwelling unit is $221785 +in.representative_income 221814 Representative total house income in the dwelling unit is $221814 +in.representative_income 221820 Representative total house income in the dwelling unit is $221820 +in.representative_income 221865 Representative total house income in the dwelling unit is $221865 +in.representative_income 221928 Representative total house income in the dwelling unit is $221928 +in.representative_income 221929 Representative total house income in the dwelling unit is $221929 +in.representative_income 221989 Representative total house income in the dwelling unit is $221989 +in.representative_income 221994 Representative total house income in the dwelling unit is $221994 +in.representative_income 222020 Representative total house income in the dwelling unit is $222020 +in.representative_income 222030 Representative total house income in the dwelling unit is $222030 +in.representative_income 222036 Representative total house income in the dwelling unit is $222036 +in.representative_income 222058 Representative total house income in the dwelling unit is $222058 +in.representative_income 222072 Representative total house income in the dwelling unit is $222072 +in.representative_income 222132 Representative total house income in the dwelling unit is $222132 +in.representative_income 222204 Representative total house income in the dwelling unit is $222204 +in.representative_income 222206 Representative total house income in the dwelling unit is $222206 +in.representative_income 222226 Representative total house income in the dwelling unit is $222226 +in.representative_income 222232 Representative total house income in the dwelling unit is $222232 +in.representative_income 222278 Representative total house income in the dwelling unit is $222278 +in.representative_income 222333 Representative total house income in the dwelling unit is $222333 +in.representative_income 222453 Representative total house income in the dwelling unit is $222453 +in.representative_income 222484 Representative total house income in the dwelling unit is $222484 +in.representative_income 222494 Representative total house income in the dwelling unit is $222494 +in.representative_income 222522 Representative total house income in the dwelling unit is $222522 +in.representative_income 222535 Representative total house income in the dwelling unit is $222535 +in.representative_income 222577 Representative total house income in the dwelling unit is $222577 +in.representative_income 222606 Representative total house income in the dwelling unit is $222606 +in.representative_income 222627 Representative total house income in the dwelling unit is $222627 +in.representative_income 222737 Representative total house income in the dwelling unit is $222737 +in.representative_income 222740 Representative total house income in the dwelling unit is $222740 +in.representative_income 222793 Representative total house income in the dwelling unit is $222793 +in.representative_income 222804 Representative total house income in the dwelling unit is $222804 +in.representative_income 222897 Representative total house income in the dwelling unit is $222897 +in.representative_income 222939 Representative total house income in the dwelling unit is $222939 +in.representative_income 222944 Representative total house income in the dwelling unit is $222944 +in.representative_income 223000 Representative total house income in the dwelling unit is $223000 +in.representative_income 223009 Representative total house income in the dwelling unit is $223009 +in.representative_income 223063 Representative total house income in the dwelling unit is $223063 +in.representative_income 223103 Representative total house income in the dwelling unit is $223103 +in.representative_income 223170 Representative total house income in the dwelling unit is $223170 +in.representative_income 223207 Representative total house income in the dwelling unit is $223207 +in.representative_income 223222 Representative total house income in the dwelling unit is $223222 +in.representative_income 223228 Representative total house income in the dwelling unit is $223228 +in.representative_income 223242 Representative total house income in the dwelling unit is $223242 +in.representative_income 223277 Representative total house income in the dwelling unit is $223277 +in.representative_income 223310 Representative total house income in the dwelling unit is $223310 +in.representative_income 223331 Representative total house income in the dwelling unit is $223331 +in.representative_income 223333 Representative total house income in the dwelling unit is $223333 +in.representative_income 223366 Representative total house income in the dwelling unit is $223366 +in.representative_income 223412 Representative total house income in the dwelling unit is $223412 +in.representative_income 223428 Representative total house income in the dwelling unit is $223428 +in.representative_income 223441 Representative total house income in the dwelling unit is $223441 +in.representative_income 223545 Representative total house income in the dwelling unit is $223545 +in.representative_income 223549 Representative total house income in the dwelling unit is $223549 +in.representative_income 223576 Representative total house income in the dwelling unit is $223576 +in.representative_income 223600 Representative total house income in the dwelling unit is $223600 +in.representative_income 223619 Representative total house income in the dwelling unit is $223619 +in.representative_income 223646 Representative total house income in the dwelling unit is $223646 +in.representative_income 223657 Representative total house income in the dwelling unit is $223657 +in.representative_income 223679 Representative total house income in the dwelling unit is $223679 +in.representative_income 223682 Representative total house income in the dwelling unit is $223682 +in.representative_income 223707 Representative total house income in the dwelling unit is $223707 +in.representative_income 223747 Representative total house income in the dwelling unit is $223747 +in.representative_income 223765 Representative total house income in the dwelling unit is $223765 +in.representative_income 223815 Representative total house income in the dwelling unit is $223815 +in.representative_income 223826 Representative total house income in the dwelling unit is $223826 +in.representative_income 223874 Representative total house income in the dwelling unit is $223874 +in.representative_income 223892 Representative total house income in the dwelling unit is $223892 +in.representative_income 223928 Representative total house income in the dwelling unit is $223928 +in.representative_income 223954 Representative total house income in the dwelling unit is $223954 +in.representative_income 223962 Representative total house income in the dwelling unit is $223962 +in.representative_income 224031 Representative total house income in the dwelling unit is $224031 +in.representative_income 224086 Representative total house income in the dwelling unit is $224086 +in.representative_income 224104 Representative total house income in the dwelling unit is $224104 +in.representative_income 224135 Representative total house income in the dwelling unit is $224135 +in.representative_income 224136 Representative total house income in the dwelling unit is $224136 +in.representative_income 224197 Representative total house income in the dwelling unit is $224197 +in.representative_income 224202 Representative total house income in the dwelling unit is $224202 +in.representative_income 224238 Representative total house income in the dwelling unit is $224238 +in.representative_income 224252 Representative total house income in the dwelling unit is $224252 +in.representative_income 224305 Representative total house income in the dwelling unit is $224305 +in.representative_income 224315 Representative total house income in the dwelling unit is $224315 +in.representative_income 224351 Representative total house income in the dwelling unit is $224351 +in.representative_income 224444 Representative total house income in the dwelling unit is $224444 +in.representative_income 224505 Representative total house income in the dwelling unit is $224505 +in.representative_income 224521 Representative total house income in the dwelling unit is $224521 +in.representative_income 224547 Representative total house income in the dwelling unit is $224547 +in.representative_income 224563 Representative total house income in the dwelling unit is $224563 +in.representative_income 224631 Representative total house income in the dwelling unit is $224631 +in.representative_income 224728 Representative total house income in the dwelling unit is $224728 +in.representative_income 224738 Representative total house income in the dwelling unit is $224738 +in.representative_income 224754 Representative total house income in the dwelling unit is $224754 +in.representative_income 224757 Representative total house income in the dwelling unit is $224757 +in.representative_income 224767 Representative total house income in the dwelling unit is $224767 +in.representative_income 224789 Representative total house income in the dwelling unit is $224789 +in.representative_income 224846 Representative total house income in the dwelling unit is $224846 +in.representative_income 224857 Representative total house income in the dwelling unit is $224857 +in.representative_income 224888 Representative total house income in the dwelling unit is $224888 +in.representative_income 224931 Representative total house income in the dwelling unit is $224931 +in.representative_income 224954 Representative total house income in the dwelling unit is $224954 +in.representative_income 224959 Representative total house income in the dwelling unit is $224959 +in.representative_income 224995 Representative total house income in the dwelling unit is $224995 +in.representative_income 225028 Representative total house income in the dwelling unit is $225028 +in.representative_income 225053 Representative total house income in the dwelling unit is $225053 +in.representative_income 225060 Representative total house income in the dwelling unit is $225060 +in.representative_income 225062 Representative total house income in the dwelling unit is $225062 +in.representative_income 225063 Representative total house income in the dwelling unit is $225063 +in.representative_income 225084 Representative total house income in the dwelling unit is $225084 +in.representative_income 225102 Representative total house income in the dwelling unit is $225102 +in.representative_income 225262 Representative total house income in the dwelling unit is $225262 +in.representative_income 225278 Representative total house income in the dwelling unit is $225278 +in.representative_income 225288 Representative total house income in the dwelling unit is $225288 +in.representative_income 225327 Representative total house income in the dwelling unit is $225327 +in.representative_income 225363 Representative total house income in the dwelling unit is $225363 +in.representative_income 225373 Representative total house income in the dwelling unit is $225373 +in.representative_income 225380 Representative total house income in the dwelling unit is $225380 +in.representative_income 225413 Representative total house income in the dwelling unit is $225413 +in.representative_income 225425 Representative total house income in the dwelling unit is $225425 +in.representative_income 225475 Representative total house income in the dwelling unit is $225475 +in.representative_income 225494 Representative total house income in the dwelling unit is $225494 +in.representative_income 225555 Representative total house income in the dwelling unit is $225555 +in.representative_income 225565 Representative total house income in the dwelling unit is $225565 +in.representative_income 225580 Representative total house income in the dwelling unit is $225580 +in.representative_income 225639 Representative total house income in the dwelling unit is $225639 +in.representative_income 225682 Representative total house income in the dwelling unit is $225682 +in.representative_income 225685 Representative total house income in the dwelling unit is $225685 +in.representative_income 225693 Representative total house income in the dwelling unit is $225693 +in.representative_income 225710 Representative total house income in the dwelling unit is $225710 +in.representative_income 225746 Representative total house income in the dwelling unit is $225746 +in.representative_income 225795 Representative total house income in the dwelling unit is $225795 +in.representative_income 225799 Representative total house income in the dwelling unit is $225799 +in.representative_income 225818 Representative total house income in the dwelling unit is $225818 +in.representative_income 225829 Representative total house income in the dwelling unit is $225829 +in.representative_income 225861 Representative total house income in the dwelling unit is $225861 +in.representative_income 225888 Representative total house income in the dwelling unit is $225888 +in.representative_income 225897 Representative total house income in the dwelling unit is $225897 +in.representative_income 225961 Representative total house income in the dwelling unit is $225961 +in.representative_income 225969 Representative total house income in the dwelling unit is $225969 +in.representative_income 226035 Representative total house income in the dwelling unit is $226035 +in.representative_income 226070 Representative total house income in the dwelling unit is $226070 +in.representative_income 226171 Representative total house income in the dwelling unit is $226171 +in.representative_income 226175 Representative total house income in the dwelling unit is $226175 +in.representative_income 226197 Representative total house income in the dwelling unit is $226197 +in.representative_income 226213 Representative total house income in the dwelling unit is $226213 +in.representative_income 226222 Representative total house income in the dwelling unit is $226222 +in.representative_income 226251 Representative total house income in the dwelling unit is $226251 +in.representative_income 226272 Representative total house income in the dwelling unit is $226272 +in.representative_income 226283 Representative total house income in the dwelling unit is $226283 +in.representative_income 226374 Representative total house income in the dwelling unit is $226374 +in.representative_income 226387 Representative total house income in the dwelling unit is $226387 +in.representative_income 226404 Representative total house income in the dwelling unit is $226404 +in.representative_income 226467 Representative total house income in the dwelling unit is $226467 +in.representative_income 226498 Representative total house income in the dwelling unit is $226498 +in.representative_income 226530 Representative total house income in the dwelling unit is $226530 +in.representative_income 226535 Representative total house income in the dwelling unit is $226535 +in.representative_income 226635 Representative total house income in the dwelling unit is $226635 +in.representative_income 226677 Representative total house income in the dwelling unit is $226677 +in.representative_income 226712 Representative total house income in the dwelling unit is $226712 +in.representative_income 226740 Representative total house income in the dwelling unit is $226740 +in.representative_income 226778 Representative total house income in the dwelling unit is $226778 +in.representative_income 226846 Representative total house income in the dwelling unit is $226846 +in.representative_income 226866 Representative total house income in the dwelling unit is $226866 +in.representative_income 226898 Representative total house income in the dwelling unit is $226898 +in.representative_income 226909 Representative total house income in the dwelling unit is $226909 +in.representative_income 226920 Representative total house income in the dwelling unit is $226920 +in.representative_income 226927 Representative total house income in the dwelling unit is $226927 +in.representative_income 226951 Representative total house income in the dwelling unit is $226951 +in.representative_income 227004 Representative total house income in the dwelling unit is $227004 +in.representative_income 227007 Representative total house income in the dwelling unit is $227007 +in.representative_income 227023 Representative total house income in the dwelling unit is $227023 +in.representative_income 227035 Representative total house income in the dwelling unit is $227035 +in.representative_income 227081 Representative total house income in the dwelling unit is $227081 +in.representative_income 227094 Representative total house income in the dwelling unit is $227094 +in.representative_income 227115 Representative total house income in the dwelling unit is $227115 +in.representative_income 227126 Representative total house income in the dwelling unit is $227126 +in.representative_income 227137 Representative total house income in the dwelling unit is $227137 +in.representative_income 227142 Representative total house income in the dwelling unit is $227142 +in.representative_income 227162 Representative total house income in the dwelling unit is $227162 +in.representative_income 227183 Representative total house income in the dwelling unit is $227183 +in.representative_income 227229 Representative total house income in the dwelling unit is $227229 +in.representative_income 227283 Representative total house income in the dwelling unit is $227283 +in.representative_income 227312 Representative total house income in the dwelling unit is $227312 +in.representative_income 227332 Representative total house income in the dwelling unit is $227332 +in.representative_income 227373 Representative total house income in the dwelling unit is $227373 +in.representative_income 227409 Representative total house income in the dwelling unit is $227409 +in.representative_income 227413 Representative total house income in the dwelling unit is $227413 +in.representative_income 227414 Representative total house income in the dwelling unit is $227414 +in.representative_income 227434 Representative total house income in the dwelling unit is $227434 +in.representative_income 227439 Representative total house income in the dwelling unit is $227439 +in.representative_income 227464 Representative total house income in the dwelling unit is $227464 +in.representative_income 227477 Representative total house income in the dwelling unit is $227477 +in.representative_income 227485 Representative total house income in the dwelling unit is $227485 +in.representative_income 227539 Representative total house income in the dwelling unit is $227539 +in.representative_income 227571 Representative total house income in the dwelling unit is $227571 +in.representative_income 227584 Representative total house income in the dwelling unit is $227584 +in.representative_income 227601 Representative total house income in the dwelling unit is $227601 +in.representative_income 227744 Representative total house income in the dwelling unit is $227744 +in.representative_income 227763 Representative total house income in the dwelling unit is $227763 +in.representative_income 227788 Representative total house income in the dwelling unit is $227788 +in.representative_income 227795 Representative total house income in the dwelling unit is $227795 +in.representative_income 227838 Representative total house income in the dwelling unit is $227838 +in.representative_income 227870 Representative total house income in the dwelling unit is $227870 +in.representative_income 227873 Representative total house income in the dwelling unit is $227873 +in.representative_income 227880 Representative total house income in the dwelling unit is $227880 +in.representative_income 227901 Representative total house income in the dwelling unit is $227901 +in.representative_income 227914 Representative total house income in the dwelling unit is $227914 +in.representative_income 227951 Representative total house income in the dwelling unit is $227951 +in.representative_income 227979 Representative total house income in the dwelling unit is $227979 +in.representative_income 227990 Representative total house income in the dwelling unit is $227990 +in.representative_income 228006 Representative total house income in the dwelling unit is $228006 +in.representative_income 228108 Representative total house income in the dwelling unit is $228108 +in.representative_income 228160 Representative total house income in the dwelling unit is $228160 +in.representative_income 228196 Representative total house income in the dwelling unit is $228196 +in.representative_income 228229 Representative total house income in the dwelling unit is $228229 +in.representative_income 228260 Representative total house income in the dwelling unit is $228260 +in.representative_income 228293 Representative total house income in the dwelling unit is $228293 +in.representative_income 228322 Representative total house income in the dwelling unit is $228322 +in.representative_income 228363 Representative total house income in the dwelling unit is $228363 +in.representative_income 228364 Representative total house income in the dwelling unit is $228364 +in.representative_income 228394 Representative total house income in the dwelling unit is $228394 +in.representative_income 228415 Representative total house income in the dwelling unit is $228415 +in.representative_income 228428 Representative total house income in the dwelling unit is $228428 +in.representative_income 228430 Representative total house income in the dwelling unit is $228430 +in.representative_income 228467 Representative total house income in the dwelling unit is $228467 +in.representative_income 228495 Representative total house income in the dwelling unit is $228495 +in.representative_income 228519 Representative total house income in the dwelling unit is $228519 +in.representative_income 228533 Representative total house income in the dwelling unit is $228533 +in.representative_income 228537 Representative total house income in the dwelling unit is $228537 +in.representative_income 228628 Representative total house income in the dwelling unit is $228628 +in.representative_income 228645 Representative total house income in the dwelling unit is $228645 +in.representative_income 228697 Representative total house income in the dwelling unit is $228697 +in.representative_income 228736 Representative total house income in the dwelling unit is $228736 +in.representative_income 228752 Representative total house income in the dwelling unit is $228752 +in.representative_income 228765 Representative total house income in the dwelling unit is $228765 +in.representative_income 228772 Representative total house income in the dwelling unit is $228772 +in.representative_income 228777 Representative total house income in the dwelling unit is $228777 +in.representative_income 228798 Representative total house income in the dwelling unit is $228798 +in.representative_income 228849 Representative total house income in the dwelling unit is $228849 +in.representative_income 228879 Representative total house income in the dwelling unit is $228879 +in.representative_income 228899 Representative total house income in the dwelling unit is $228899 +in.representative_income 228913 Representative total house income in the dwelling unit is $228913 +in.representative_income 228952 Representative total house income in the dwelling unit is $228952 +in.representative_income 228954 Representative total house income in the dwelling unit is $228954 +in.representative_income 228982 Representative total house income in the dwelling unit is $228982 +in.representative_income 229000 Representative total house income in the dwelling unit is $229000 +in.representative_income 229014 Representative total house income in the dwelling unit is $229014 +in.representative_income 229050 Representative total house income in the dwelling unit is $229050 +in.representative_income 229059 Representative total house income in the dwelling unit is $229059 +in.representative_income 229074 Representative total house income in the dwelling unit is $229074 +in.representative_income 229077 Representative total house income in the dwelling unit is $229077 +in.representative_income 229086 Representative total house income in the dwelling unit is $229086 +in.representative_income 229147 Representative total house income in the dwelling unit is $229147 +in.representative_income 229181 Representative total house income in the dwelling unit is $229181 +in.representative_income 229192 Representative total house income in the dwelling unit is $229192 +in.representative_income 229230 Representative total house income in the dwelling unit is $229230 +in.representative_income 229267 Representative total house income in the dwelling unit is $229267 +in.representative_income 229271 Representative total house income in the dwelling unit is $229271 +in.representative_income 229289 Representative total house income in the dwelling unit is $229289 +in.representative_income 229303 Representative total house income in the dwelling unit is $229303 +in.representative_income 229313 Representative total house income in the dwelling unit is $229313 +in.representative_income 229377 Representative total house income in the dwelling unit is $229377 +in.representative_income 229395 Representative total house income in the dwelling unit is $229395 +in.representative_income 229397 Representative total house income in the dwelling unit is $229397 +in.representative_income 229404 Representative total house income in the dwelling unit is $229404 +in.representative_income 229482 Representative total house income in the dwelling unit is $229482 +in.representative_income 229485 Representative total house income in the dwelling unit is $229485 +in.representative_income 229498 Representative total house income in the dwelling unit is $229498 +in.representative_income 229503 Representative total house income in the dwelling unit is $229503 +in.representative_income 229505 Representative total house income in the dwelling unit is $229505 +in.representative_income 229555 Representative total house income in the dwelling unit is $229555 +in.representative_income 229600 Representative total house income in the dwelling unit is $229600 +in.representative_income 229601 Representative total house income in the dwelling unit is $229601 +in.representative_income 229611 Representative total house income in the dwelling unit is $229611 +in.representative_income 229705 Representative total house income in the dwelling unit is $229705 +in.representative_income 229718 Representative total house income in the dwelling unit is $229718 +in.representative_income 229725 Representative total house income in the dwelling unit is $229725 +in.representative_income 229778 Representative total house income in the dwelling unit is $229778 +in.representative_income 229808 Representative total house income in the dwelling unit is $229808 +in.representative_income 229826 Representative total house income in the dwelling unit is $229826 +in.representative_income 229891 Representative total house income in the dwelling unit is $229891 +in.representative_income 229904 Representative total house income in the dwelling unit is $229904 +in.representative_income 229910 Representative total house income in the dwelling unit is $229910 +in.representative_income 229933 Representative total house income in the dwelling unit is $229933 +in.representative_income 229962 Representative total house income in the dwelling unit is $229962 +in.representative_income 230009 Representative total house income in the dwelling unit is $230009 +in.representative_income 230014 Representative total house income in the dwelling unit is $230014 +in.representative_income 230040 Representative total house income in the dwelling unit is $230040 +in.representative_income 230053 Representative total house income in the dwelling unit is $230053 +in.representative_income 230075 Representative total house income in the dwelling unit is $230075 +in.representative_income 230111 Representative total house income in the dwelling unit is $230111 +in.representative_income 230141 Representative total house income in the dwelling unit is $230141 +in.representative_income 230147 Representative total house income in the dwelling unit is $230147 +in.representative_income 230162 Representative total house income in the dwelling unit is $230162 +in.representative_income 230172 Representative total house income in the dwelling unit is $230172 +in.representative_income 230220 Representative total house income in the dwelling unit is $230220 +in.representative_income 230255 Representative total house income in the dwelling unit is $230255 +in.representative_income 230313 Representative total house income in the dwelling unit is $230313 +in.representative_income 230326 Representative total house income in the dwelling unit is $230326 +in.representative_income 230362 Representative total house income in the dwelling unit is $230362 +in.representative_income 230368 Representative total house income in the dwelling unit is $230368 +in.representative_income 230414 Representative total house income in the dwelling unit is $230414 +in.representative_income 230432 Representative total house income in the dwelling unit is $230432 +in.representative_income 230437 Representative total house income in the dwelling unit is $230437 +in.representative_income 230485 Representative total house income in the dwelling unit is $230485 +in.representative_income 230515 Representative total house income in the dwelling unit is $230515 +in.representative_income 230529 Representative total house income in the dwelling unit is $230529 +in.representative_income 230576 Representative total house income in the dwelling unit is $230576 +in.representative_income 230594 Representative total house income in the dwelling unit is $230594 +in.representative_income 230616 Representative total house income in the dwelling unit is $230616 +in.representative_income 230633 Representative total house income in the dwelling unit is $230633 +in.representative_income 230642 Representative total house income in the dwelling unit is $230642 +in.representative_income 230680 Representative total house income in the dwelling unit is $230680 +in.representative_income 230684 Representative total house income in the dwelling unit is $230684 +in.representative_income 230717 Representative total house income in the dwelling unit is $230717 +in.representative_income 230726 Representative total house income in the dwelling unit is $230726 +in.representative_income 230747 Representative total house income in the dwelling unit is $230747 +in.representative_income 230791 Representative total house income in the dwelling unit is $230791 +in.representative_income 230818 Representative total house income in the dwelling unit is $230818 +in.representative_income 230820 Representative total house income in the dwelling unit is $230820 +in.representative_income 230839 Representative total house income in the dwelling unit is $230839 +in.representative_income 230842 Representative total house income in the dwelling unit is $230842 +in.representative_income 230919 Representative total house income in the dwelling unit is $230919 +in.representative_income 230943 Representative total house income in the dwelling unit is $230943 +in.representative_income 230959 Representative total house income in the dwelling unit is $230959 +in.representative_income 230991 Representative total house income in the dwelling unit is $230991 +in.representative_income 230996 Representative total house income in the dwelling unit is $230996 +in.representative_income 231005 Representative total house income in the dwelling unit is $231005 +in.representative_income 231020 Representative total house income in the dwelling unit is $231020 +in.representative_income 231045 Representative total house income in the dwelling unit is $231045 +in.representative_income 231060 Representative total house income in the dwelling unit is $231060 +in.representative_income 231102 Representative total house income in the dwelling unit is $231102 +in.representative_income 231116 Representative total house income in the dwelling unit is $231116 +in.representative_income 231121 Representative total house income in the dwelling unit is $231121 +in.representative_income 231145 Representative total house income in the dwelling unit is $231145 +in.representative_income 231148 Representative total house income in the dwelling unit is $231148 +in.representative_income 231170 Representative total house income in the dwelling unit is $231170 +in.representative_income 231221 Representative total house income in the dwelling unit is $231221 +in.representative_income 231222 Representative total house income in the dwelling unit is $231222 +in.representative_income 231231 Representative total house income in the dwelling unit is $231231 +in.representative_income 231275 Representative total house income in the dwelling unit is $231275 +in.representative_income 231321 Representative total house income in the dwelling unit is $231321 +in.representative_income 231323 Representative total house income in the dwelling unit is $231323 +in.representative_income 231328 Representative total house income in the dwelling unit is $231328 +in.representative_income 231355 Representative total house income in the dwelling unit is $231355 +in.representative_income 231382 Representative total house income in the dwelling unit is $231382 +in.representative_income 231424 Representative total house income in the dwelling unit is $231424 +in.representative_income 231436 Representative total house income in the dwelling unit is $231436 +in.representative_income 231486 Representative total house income in the dwelling unit is $231486 +in.representative_income 231525 Representative total house income in the dwelling unit is $231525 +in.representative_income 231544 Representative total house income in the dwelling unit is $231544 +in.representative_income 231561 Representative total house income in the dwelling unit is $231561 +in.representative_income 231592 Representative total house income in the dwelling unit is $231592 +in.representative_income 231626 Representative total house income in the dwelling unit is $231626 +in.representative_income 231651 Representative total house income in the dwelling unit is $231651 +in.representative_income 231697 Representative total house income in the dwelling unit is $231697 +in.representative_income 231727 Representative total house income in the dwelling unit is $231727 +in.representative_income 231767 Representative total house income in the dwelling unit is $231767 +in.representative_income 231802 Representative total house income in the dwelling unit is $231802 +in.representative_income 231828 Representative total house income in the dwelling unit is $231828 +in.representative_income 231865 Representative total house income in the dwelling unit is $231865 +in.representative_income 231871 Representative total house income in the dwelling unit is $231871 +in.representative_income 231908 Representative total house income in the dwelling unit is $231908 +in.representative_income 231929 Representative total house income in the dwelling unit is $231929 +in.representative_income 231961 Representative total house income in the dwelling unit is $231961 +in.representative_income 231974 Representative total house income in the dwelling unit is $231974 +in.representative_income 231977 Representative total house income in the dwelling unit is $231977 +in.representative_income 232010 Representative total house income in the dwelling unit is $232010 +in.representative_income 232013 Representative total house income in the dwelling unit is $232013 +in.representative_income 232015 Representative total house income in the dwelling unit is $232015 +in.representative_income 232023 Representative total house income in the dwelling unit is $232023 +in.representative_income 232031 Representative total house income in the dwelling unit is $232031 +in.representative_income 232077 Representative total house income in the dwelling unit is $232077 +in.representative_income 232080 Representative total house income in the dwelling unit is $232080 +in.representative_income 232118 Representative total house income in the dwelling unit is $232118 +in.representative_income 232171 Representative total house income in the dwelling unit is $232171 +in.representative_income 232180 Representative total house income in the dwelling unit is $232180 +in.representative_income 232232 Representative total house income in the dwelling unit is $232232 +in.representative_income 232294 Representative total house income in the dwelling unit is $232294 +in.representative_income 232301 Representative total house income in the dwelling unit is $232301 +in.representative_income 232315 Representative total house income in the dwelling unit is $232315 +in.representative_income 232333 Representative total house income in the dwelling unit is $232333 +in.representative_income 232355 Representative total house income in the dwelling unit is $232355 +in.representative_income 232376 Representative total house income in the dwelling unit is $232376 +in.representative_income 232386 Representative total house income in the dwelling unit is $232386 +in.representative_income 232434 Representative total house income in the dwelling unit is $232434 +in.representative_income 232441 Representative total house income in the dwelling unit is $232441 +in.representative_income 232490 Representative total house income in the dwelling unit is $232490 +in.representative_income 232535 Representative total house income in the dwelling unit is $232535 +in.representative_income 232540 Representative total house income in the dwelling unit is $232540 +in.representative_income 232572 Representative total house income in the dwelling unit is $232572 +in.representative_income 232593 Representative total house income in the dwelling unit is $232593 +in.representative_income 232604 Representative total house income in the dwelling unit is $232604 +in.representative_income 232617 Representative total house income in the dwelling unit is $232617 +in.representative_income 232625 Representative total house income in the dwelling unit is $232625 +in.representative_income 232636 Representative total house income in the dwelling unit is $232636 +in.representative_income 232646 Representative total house income in the dwelling unit is $232646 +in.representative_income 232695 Representative total house income in the dwelling unit is $232695 +in.representative_income 232715 Representative total house income in the dwelling unit is $232715 +in.representative_income 232733 Representative total house income in the dwelling unit is $232733 +in.representative_income 232737 Representative total house income in the dwelling unit is $232737 +in.representative_income 232747 Representative total house income in the dwelling unit is $232747 +in.representative_income 232751 Representative total house income in the dwelling unit is $232751 +in.representative_income 232799 Representative total house income in the dwelling unit is $232799 +in.representative_income 232838 Representative total house income in the dwelling unit is $232838 +in.representative_income 232853 Representative total house income in the dwelling unit is $232853 +in.representative_income 232857 Representative total house income in the dwelling unit is $232857 +in.representative_income 232938 Representative total house income in the dwelling unit is $232938 +in.representative_income 232939 Representative total house income in the dwelling unit is $232939 +in.representative_income 232949 Representative total house income in the dwelling unit is $232949 +in.representative_income 233040 Representative total house income in the dwelling unit is $233040 +in.representative_income 233063 Representative total house income in the dwelling unit is $233063 +in.representative_income 233068 Representative total house income in the dwelling unit is $233068 +in.representative_income 233089 Representative total house income in the dwelling unit is $233089 +in.representative_income 233109 Representative total house income in the dwelling unit is $233109 +in.representative_income 233129 Representative total house income in the dwelling unit is $233129 +in.representative_income 233141 Representative total house income in the dwelling unit is $233141 +in.representative_income 233153 Representative total house income in the dwelling unit is $233153 +in.representative_income 233170 Representative total house income in the dwelling unit is $233170 +in.representative_income 233211 Representative total house income in the dwelling unit is $233211 +in.representative_income 233222 Representative total house income in the dwelling unit is $233222 +in.representative_income 233230 Representative total house income in the dwelling unit is $233230 +in.representative_income 233261 Representative total house income in the dwelling unit is $233261 +in.representative_income 233273 Representative total house income in the dwelling unit is $233273 +in.representative_income 233279 Representative total house income in the dwelling unit is $233279 +in.representative_income 233344 Representative total house income in the dwelling unit is $233344 +in.representative_income 233367 Representative total house income in the dwelling unit is $233367 +in.representative_income 233382 Representative total house income in the dwelling unit is $233382 +in.representative_income 233485 Representative total house income in the dwelling unit is $233485 +in.representative_income 233490 Representative total house income in the dwelling unit is $233490 +in.representative_income 233521 Representative total house income in the dwelling unit is $233521 +in.representative_income 233546 Representative total house income in the dwelling unit is $233546 +in.representative_income 233582 Representative total house income in the dwelling unit is $233582 +in.representative_income 233595 Representative total house income in the dwelling unit is $233595 +in.representative_income 233647 Representative total house income in the dwelling unit is $233647 +in.representative_income 233676 Representative total house income in the dwelling unit is $233676 +in.representative_income 233697 Representative total house income in the dwelling unit is $233697 +in.representative_income 233706 Representative total house income in the dwelling unit is $233706 +in.representative_income 233728 Representative total house income in the dwelling unit is $233728 +in.representative_income 233760 Representative total house income in the dwelling unit is $233760 +in.representative_income 233798 Representative total house income in the dwelling unit is $233798 +in.representative_income 233806 Representative total house income in the dwelling unit is $233806 +in.representative_income 233807 Representative total house income in the dwelling unit is $233807 +in.representative_income 233830 Representative total house income in the dwelling unit is $233830 +in.representative_income 233849 Representative total house income in the dwelling unit is $233849 +in.representative_income 233905 Representative total house income in the dwelling unit is $233905 +in.representative_income 233911 Representative total house income in the dwelling unit is $233911 +in.representative_income 233921 Representative total house income in the dwelling unit is $233921 +in.representative_income 233933 Representative total house income in the dwelling unit is $233933 +in.representative_income 233950 Representative total house income in the dwelling unit is $233950 +in.representative_income 234000 Representative total house income in the dwelling unit is $234000 +in.representative_income 234012 Representative total house income in the dwelling unit is $234012 +in.representative_income 234017 Representative total house income in the dwelling unit is $234017 +in.representative_income 234098 Representative total house income in the dwelling unit is $234098 +in.representative_income 234123 Representative total house income in the dwelling unit is $234123 +in.representative_income 234140 Representative total house income in the dwelling unit is $234140 +in.representative_income 234152 Representative total house income in the dwelling unit is $234152 +in.representative_income 234227 Representative total house income in the dwelling unit is $234227 +in.representative_income 234243 Representative total house income in the dwelling unit is $234243 +in.representative_income 234246 Representative total house income in the dwelling unit is $234246 +in.representative_income 234253 Representative total house income in the dwelling unit is $234253 +in.representative_income 234333 Representative total house income in the dwelling unit is $234333 +in.representative_income 234346 Representative total house income in the dwelling unit is $234346 +in.representative_income 234354 Representative total house income in the dwelling unit is $234354 +in.representative_income 234374 Representative total house income in the dwelling unit is $234374 +in.representative_income 234424 Representative total house income in the dwelling unit is $234424 +in.representative_income 234439 Representative total house income in the dwelling unit is $234439 +in.representative_income 234452 Representative total house income in the dwelling unit is $234452 +in.representative_income 234460 Representative total house income in the dwelling unit is $234460 +in.representative_income 234462 Representative total house income in the dwelling unit is $234462 +in.representative_income 234548 Representative total house income in the dwelling unit is $234548 +in.representative_income 234552 Representative total house income in the dwelling unit is $234552 +in.representative_income 234556 Representative total house income in the dwelling unit is $234556 +in.representative_income 234649 Representative total house income in the dwelling unit is $234649 +in.representative_income 234656 Representative total house income in the dwelling unit is $234656 +in.representative_income 234723 Representative total house income in the dwelling unit is $234723 +in.representative_income 234756 Representative total house income in the dwelling unit is $234756 +in.representative_income 234758 Representative total house income in the dwelling unit is $234758 +in.representative_income 234759 Representative total house income in the dwelling unit is $234759 +in.representative_income 234763 Representative total house income in the dwelling unit is $234763 +in.representative_income 234859 Representative total house income in the dwelling unit is $234859 +in.representative_income 234861 Representative total house income in the dwelling unit is $234861 +in.representative_income 234871 Representative total house income in the dwelling unit is $234871 +in.representative_income 234895 Representative total house income in the dwelling unit is $234895 +in.representative_income 234966 Representative total house income in the dwelling unit is $234966 +in.representative_income 235003 Representative total house income in the dwelling unit is $235003 +in.representative_income 235061 Representative total house income in the dwelling unit is $235061 +in.representative_income 235068 Representative total house income in the dwelling unit is $235068 +in.representative_income 235071 Representative total house income in the dwelling unit is $235071 +in.representative_income 235085 Representative total house income in the dwelling unit is $235085 +in.representative_income 235110 Representative total house income in the dwelling unit is $235110 +in.representative_income 235162 Representative total house income in the dwelling unit is $235162 +in.representative_income 235171 Representative total house income in the dwelling unit is $235171 +in.representative_income 235177 Representative total house income in the dwelling unit is $235177 +in.representative_income 235187 Representative total house income in the dwelling unit is $235187 +in.representative_income 235191 Representative total house income in the dwelling unit is $235191 +in.representative_income 235192 Representative total house income in the dwelling unit is $235192 +in.representative_income 235206 Representative total house income in the dwelling unit is $235206 +in.representative_income 235218 Representative total house income in the dwelling unit is $235218 +in.representative_income 235261 Representative total house income in the dwelling unit is $235261 +in.representative_income 235263 Representative total house income in the dwelling unit is $235263 +in.representative_income 235300 Representative total house income in the dwelling unit is $235300 +in.representative_income 235364 Representative total house income in the dwelling unit is $235364 +in.representative_income 235378 Representative total house income in the dwelling unit is $235378 +in.representative_income 235398 Representative total house income in the dwelling unit is $235398 +in.representative_income 235408 Representative total house income in the dwelling unit is $235408 +in.representative_income 235434 Representative total house income in the dwelling unit is $235434 +in.representative_income 235494 Representative total house income in the dwelling unit is $235494 +in.representative_income 235515 Representative total house income in the dwelling unit is $235515 +in.representative_income 235542 Representative total house income in the dwelling unit is $235542 +in.representative_income 235563 Representative total house income in the dwelling unit is $235563 +in.representative_income 235566 Representative total house income in the dwelling unit is $235566 +in.representative_income 235687 Representative total house income in the dwelling unit is $235687 +in.representative_income 235729 Representative total house income in the dwelling unit is $235729 +in.representative_income 235739 Representative total house income in the dwelling unit is $235739 +in.representative_income 235768 Representative total house income in the dwelling unit is $235768 +in.representative_income 235780 Representative total house income in the dwelling unit is $235780 +in.representative_income 235790 Representative total house income in the dwelling unit is $235790 +in.representative_income 235810 Representative total house income in the dwelling unit is $235810 +in.representative_income 235837 Representative total house income in the dwelling unit is $235837 +in.representative_income 235867 Representative total house income in the dwelling unit is $235867 +in.representative_income 235915 Representative total house income in the dwelling unit is $235915 +in.representative_income 235919 Representative total house income in the dwelling unit is $235919 +in.representative_income 235948 Representative total house income in the dwelling unit is $235948 +in.representative_income 235970 Representative total house income in the dwelling unit is $235970 +in.representative_income 235975 Representative total house income in the dwelling unit is $235975 +in.representative_income 236023 Representative total house income in the dwelling unit is $236023 +in.representative_income 236067 Representative total house income in the dwelling unit is $236067 +in.representative_income 236099 Representative total house income in the dwelling unit is $236099 +in.representative_income 236158 Representative total house income in the dwelling unit is $236158 +in.representative_income 236172 Representative total house income in the dwelling unit is $236172 +in.representative_income 236191 Representative total house income in the dwelling unit is $236191 +in.representative_income 236203 Representative total house income in the dwelling unit is $236203 +in.representative_income 236232 Representative total house income in the dwelling unit is $236232 +in.representative_income 236266 Representative total house income in the dwelling unit is $236266 +in.representative_income 236298 Representative total house income in the dwelling unit is $236298 +in.representative_income 236337 Representative total house income in the dwelling unit is $236337 +in.representative_income 236373 Representative total house income in the dwelling unit is $236373 +in.representative_income 236374 Representative total house income in the dwelling unit is $236374 +in.representative_income 236409 Representative total house income in the dwelling unit is $236409 +in.representative_income 236442 Representative total house income in the dwelling unit is $236442 +in.representative_income 236483 Representative total house income in the dwelling unit is $236483 +in.representative_income 236505 Representative total house income in the dwelling unit is $236505 +in.representative_income 236512 Representative total house income in the dwelling unit is $236512 +in.representative_income 236525 Representative total house income in the dwelling unit is $236525 +in.representative_income 236558 Representative total house income in the dwelling unit is $236558 +in.representative_income 236567 Representative total house income in the dwelling unit is $236567 +in.representative_income 236576 Representative total house income in the dwelling unit is $236576 +in.representative_income 236588 Representative total house income in the dwelling unit is $236588 +in.representative_income 236623 Representative total house income in the dwelling unit is $236623 +in.representative_income 236654 Representative total house income in the dwelling unit is $236654 +in.representative_income 236677 Representative total house income in the dwelling unit is $236677 +in.representative_income 236696 Representative total house income in the dwelling unit is $236696 +in.representative_income 236718 Representative total house income in the dwelling unit is $236718 +in.representative_income 236731 Representative total house income in the dwelling unit is $236731 +in.representative_income 236778 Representative total house income in the dwelling unit is $236778 +in.representative_income 236793 Representative total house income in the dwelling unit is $236793 +in.representative_income 236822 Representative total house income in the dwelling unit is $236822 +in.representative_income 236842 Representative total house income in the dwelling unit is $236842 +in.representative_income 236850 Representative total house income in the dwelling unit is $236850 +in.representative_income 236864 Representative total house income in the dwelling unit is $236864 +in.representative_income 236879 Representative total house income in the dwelling unit is $236879 +in.representative_income 236915 Representative total house income in the dwelling unit is $236915 +in.representative_income 236925 Representative total house income in the dwelling unit is $236925 +in.representative_income 236947 Representative total house income in the dwelling unit is $236947 +in.representative_income 236970 Representative total house income in the dwelling unit is $236970 +in.representative_income 236980 Representative total house income in the dwelling unit is $236980 +in.representative_income 237014 Representative total house income in the dwelling unit is $237014 +in.representative_income 237027 Representative total house income in the dwelling unit is $237027 +in.representative_income 237075 Representative total house income in the dwelling unit is $237075 +in.representative_income 237087 Representative total house income in the dwelling unit is $237087 +in.representative_income 237100 Representative total house income in the dwelling unit is $237100 +in.representative_income 237121 Representative total house income in the dwelling unit is $237121 +in.representative_income 237163 Representative total house income in the dwelling unit is $237163 +in.representative_income 237180 Representative total house income in the dwelling unit is $237180 +in.representative_income 237182 Representative total house income in the dwelling unit is $237182 +in.representative_income 237233 Representative total house income in the dwelling unit is $237233 +in.representative_income 237234 Representative total house income in the dwelling unit is $237234 +in.representative_income 237272 Representative total house income in the dwelling unit is $237272 +in.representative_income 237283 Representative total house income in the dwelling unit is $237283 +in.representative_income 237287 Representative total house income in the dwelling unit is $237287 +in.representative_income 237297 Representative total house income in the dwelling unit is $237297 +in.representative_income 237318 Representative total house income in the dwelling unit is $237318 +in.representative_income 237321 Representative total house income in the dwelling unit is $237321 +in.representative_income 237335 Representative total house income in the dwelling unit is $237335 +in.representative_income 237337 Representative total house income in the dwelling unit is $237337 +in.representative_income 237339 Representative total house income in the dwelling unit is $237339 +in.representative_income 237384 Representative total house income in the dwelling unit is $237384 +in.representative_income 237392 Representative total house income in the dwelling unit is $237392 +in.representative_income 237433 Representative total house income in the dwelling unit is $237433 +in.representative_income 237447 Representative total house income in the dwelling unit is $237447 +in.representative_income 237471 Representative total house income in the dwelling unit is $237471 +in.representative_income 237485 Representative total house income in the dwelling unit is $237485 +in.representative_income 237487 Representative total house income in the dwelling unit is $237487 +in.representative_income 237544 Representative total house income in the dwelling unit is $237544 +in.representative_income 237554 Representative total house income in the dwelling unit is $237554 +in.representative_income 237637 Representative total house income in the dwelling unit is $237637 +in.representative_income 237687 Representative total house income in the dwelling unit is $237687 +in.representative_income 237694 Representative total house income in the dwelling unit is $237694 +in.representative_income 237703 Representative total house income in the dwelling unit is $237703 +in.representative_income 237705 Representative total house income in the dwelling unit is $237705 +in.representative_income 237708 Representative total house income in the dwelling unit is $237708 +in.representative_income 237750 Representative total house income in the dwelling unit is $237750 +in.representative_income 237757 Representative total house income in the dwelling unit is $237757 +in.representative_income 237788 Representative total house income in the dwelling unit is $237788 +in.representative_income 237811 Representative total house income in the dwelling unit is $237811 +in.representative_income 237813 Representative total house income in the dwelling unit is $237813 +in.representative_income 237853 Representative total house income in the dwelling unit is $237853 +in.representative_income 237876 Representative total house income in the dwelling unit is $237876 +in.representative_income 237889 Representative total house income in the dwelling unit is $237889 +in.representative_income 237909 Representative total house income in the dwelling unit is $237909 +in.representative_income 237919 Representative total house income in the dwelling unit is $237919 +in.representative_income 237930 Representative total house income in the dwelling unit is $237930 +in.representative_income 237973 Representative total house income in the dwelling unit is $237973 +in.representative_income 237990 Representative total house income in the dwelling unit is $237990 +in.representative_income 238025 Representative total house income in the dwelling unit is $238025 +in.representative_income 238027 Representative total house income in the dwelling unit is $238027 +in.representative_income 238077 Representative total house income in the dwelling unit is $238077 +in.representative_income 238091 Representative total house income in the dwelling unit is $238091 +in.representative_income 238101 Representative total house income in the dwelling unit is $238101 +in.representative_income 238130 Representative total house income in the dwelling unit is $238130 +in.representative_income 238131 Representative total house income in the dwelling unit is $238131 +in.representative_income 238136 Representative total house income in the dwelling unit is $238136 +in.representative_income 238192 Representative total house income in the dwelling unit is $238192 +in.representative_income 238235 Representative total house income in the dwelling unit is $238235 +in.representative_income 238244 Representative total house income in the dwelling unit is $238244 +in.representative_income 238265 Representative total house income in the dwelling unit is $238265 +in.representative_income 238287 Representative total house income in the dwelling unit is $238287 +in.representative_income 238293 Representative total house income in the dwelling unit is $238293 +in.representative_income 238306 Representative total house income in the dwelling unit is $238306 +in.representative_income 238327 Representative total house income in the dwelling unit is $238327 +in.representative_income 238341 Representative total house income in the dwelling unit is $238341 +in.representative_income 238394 Representative total house income in the dwelling unit is $238394 +in.representative_income 238410 Representative total house income in the dwelling unit is $238410 +in.representative_income 238413 Representative total house income in the dwelling unit is $238413 +in.representative_income 238435 Representative total house income in the dwelling unit is $238435 +in.representative_income 238446 Representative total house income in the dwelling unit is $238446 +in.representative_income 238460 Representative total house income in the dwelling unit is $238460 +in.representative_income 238472 Representative total house income in the dwelling unit is $238472 +in.representative_income 238495 Representative total house income in the dwelling unit is $238495 +in.representative_income 238520 Representative total house income in the dwelling unit is $238520 +in.representative_income 238552 Representative total house income in the dwelling unit is $238552 +in.representative_income 238568 Representative total house income in the dwelling unit is $238568 +in.representative_income 238575 Representative total house income in the dwelling unit is $238575 +in.representative_income 238576 Representative total house income in the dwelling unit is $238576 +in.representative_income 238596 Representative total house income in the dwelling unit is $238596 +in.representative_income 238657 Representative total house income in the dwelling unit is $238657 +in.representative_income 238675 Representative total house income in the dwelling unit is $238675 +in.representative_income 238678 Representative total house income in the dwelling unit is $238678 +in.representative_income 238699 Representative total house income in the dwelling unit is $238699 +in.representative_income 238735 Representative total house income in the dwelling unit is $238735 +in.representative_income 238763 Representative total house income in the dwelling unit is $238763 +in.representative_income 238781 Representative total house income in the dwelling unit is $238781 +in.representative_income 238783 Representative total house income in the dwelling unit is $238783 +in.representative_income 238798 Representative total house income in the dwelling unit is $238798 +in.representative_income 238843 Representative total house income in the dwelling unit is $238843 +in.representative_income 238853 Representative total house income in the dwelling unit is $238853 +in.representative_income 238868 Representative total house income in the dwelling unit is $238868 +in.representative_income 238899 Representative total house income in the dwelling unit is $238899 +in.representative_income 238946 Representative total house income in the dwelling unit is $238946 +in.representative_income 238950 Representative total house income in the dwelling unit is $238950 +in.representative_income 239000 Representative total house income in the dwelling unit is $239000 +in.representative_income 239004 Representative total house income in the dwelling unit is $239004 +in.representative_income 239057 Representative total house income in the dwelling unit is $239057 +in.representative_income 239079 Representative total house income in the dwelling unit is $239079 +in.representative_income 239091 Representative total house income in the dwelling unit is $239091 +in.representative_income 239111 Representative total house income in the dwelling unit is $239111 +in.representative_income 239152 Representative total house income in the dwelling unit is $239152 +in.representative_income 239184 Representative total house income in the dwelling unit is $239184 +in.representative_income 239194 Representative total house income in the dwelling unit is $239194 +in.representative_income 239202 Representative total house income in the dwelling unit is $239202 +in.representative_income 239216 Representative total house income in the dwelling unit is $239216 +in.representative_income 239272 Representative total house income in the dwelling unit is $239272 +in.representative_income 239297 Representative total house income in the dwelling unit is $239297 +in.representative_income 239303 Representative total house income in the dwelling unit is $239303 +in.representative_income 239324 Representative total house income in the dwelling unit is $239324 +in.representative_income 239379 Representative total house income in the dwelling unit is $239379 +in.representative_income 239380 Representative total house income in the dwelling unit is $239380 +in.representative_income 239396 Representative total house income in the dwelling unit is $239396 +in.representative_income 239404 Representative total house income in the dwelling unit is $239404 +in.representative_income 239411 Representative total house income in the dwelling unit is $239411 +in.representative_income 239432 Representative total house income in the dwelling unit is $239432 +in.representative_income 239437 Representative total house income in the dwelling unit is $239437 +in.representative_income 239459 Representative total house income in the dwelling unit is $239459 +in.representative_income 239487 Representative total house income in the dwelling unit is $239487 +in.representative_income 239540 Representative total house income in the dwelling unit is $239540 +in.representative_income 239555 Representative total house income in the dwelling unit is $239555 +in.representative_income 239593 Representative total house income in the dwelling unit is $239593 +in.representative_income 239594 Representative total house income in the dwelling unit is $239594 +in.representative_income 239606 Representative total house income in the dwelling unit is $239606 +in.representative_income 239607 Representative total house income in the dwelling unit is $239607 +in.representative_income 239649 Representative total house income in the dwelling unit is $239649 +in.representative_income 239670 Representative total house income in the dwelling unit is $239670 +in.representative_income 239692 Representative total house income in the dwelling unit is $239692 +in.representative_income 239701 Representative total house income in the dwelling unit is $239701 +in.representative_income 239710 Representative total house income in the dwelling unit is $239710 +in.representative_income 239809 Representative total house income in the dwelling unit is $239809 +in.representative_income 239812 Representative total house income in the dwelling unit is $239812 +in.representative_income 239818 Representative total house income in the dwelling unit is $239818 +in.representative_income 239864 Representative total house income in the dwelling unit is $239864 +in.representative_income 239913 Representative total house income in the dwelling unit is $239913 +in.representative_income 239916 Representative total house income in the dwelling unit is $239916 +in.representative_income 239923 Representative total house income in the dwelling unit is $239923 +in.representative_income 239948 Representative total house income in the dwelling unit is $239948 +in.representative_income 240010 Representative total house income in the dwelling unit is $240010 +in.representative_income 240019 Representative total house income in the dwelling unit is $240019 +in.representative_income 240061 Representative total house income in the dwelling unit is $240061 +in.representative_income 240111 Representative total house income in the dwelling unit is $240111 +in.representative_income 240122 Representative total house income in the dwelling unit is $240122 +in.representative_income 240130 Representative total house income in the dwelling unit is $240130 +in.representative_income 240158 Representative total house income in the dwelling unit is $240158 +in.representative_income 240162 Representative total house income in the dwelling unit is $240162 +in.representative_income 240187 Representative total house income in the dwelling unit is $240187 +in.representative_income 240188 Representative total house income in the dwelling unit is $240188 +in.representative_income 240212 Representative total house income in the dwelling unit is $240212 +in.representative_income 240226 Representative total house income in the dwelling unit is $240226 +in.representative_income 240238 Representative total house income in the dwelling unit is $240238 +in.representative_income 240240 Representative total house income in the dwelling unit is $240240 +in.representative_income 240242 Representative total house income in the dwelling unit is $240242 +in.representative_income 240296 Representative total house income in the dwelling unit is $240296 +in.representative_income 240328 Representative total house income in the dwelling unit is $240328 +in.representative_income 240339 Representative total house income in the dwelling unit is $240339 +in.representative_income 240344 Representative total house income in the dwelling unit is $240344 +in.representative_income 240350 Representative total house income in the dwelling unit is $240350 +in.representative_income 240380 Representative total house income in the dwelling unit is $240380 +in.representative_income 240404 Representative total house income in the dwelling unit is $240404 +in.representative_income 240415 Representative total house income in the dwelling unit is $240415 +in.representative_income 240450 Representative total house income in the dwelling unit is $240450 +in.representative_income 240453 Representative total house income in the dwelling unit is $240453 +in.representative_income 240513 Representative total house income in the dwelling unit is $240513 +in.representative_income 240516 Representative total house income in the dwelling unit is $240516 +in.representative_income 240517 Representative total house income in the dwelling unit is $240517 +in.representative_income 240535 Representative total house income in the dwelling unit is $240535 +in.representative_income 240556 Representative total house income in the dwelling unit is $240556 +in.representative_income 240617 Representative total house income in the dwelling unit is $240617 +in.representative_income 240621 Representative total house income in the dwelling unit is $240621 +in.representative_income 240638 Representative total house income in the dwelling unit is $240638 +in.representative_income 240640 Representative total house income in the dwelling unit is $240640 +in.representative_income 240741 Representative total house income in the dwelling unit is $240741 +in.representative_income 240766 Representative total house income in the dwelling unit is $240766 +in.representative_income 240782 Representative total house income in the dwelling unit is $240782 +in.representative_income 240837 Representative total house income in the dwelling unit is $240837 +in.representative_income 240872 Representative total house income in the dwelling unit is $240872 +in.representative_income 240882 Representative total house income in the dwelling unit is $240882 +in.representative_income 240920 Representative total house income in the dwelling unit is $240920 +in.representative_income 240945 Representative total house income in the dwelling unit is $240945 +in.representative_income 240947 Representative total house income in the dwelling unit is $240947 +in.representative_income 240967 Representative total house income in the dwelling unit is $240967 +in.representative_income 240977 Representative total house income in the dwelling unit is $240977 +in.representative_income 240981 Representative total house income in the dwelling unit is $240981 +in.representative_income 240989 Representative total house income in the dwelling unit is $240989 +in.representative_income 240999 Representative total house income in the dwelling unit is $240999 +in.representative_income 241021 Representative total house income in the dwelling unit is $241021 +in.representative_income 241050 Representative total house income in the dwelling unit is $241050 +in.representative_income 241083 Representative total house income in the dwelling unit is $241083 +in.representative_income 241085 Representative total house income in the dwelling unit is $241085 +in.representative_income 241097 Representative total house income in the dwelling unit is $241097 +in.representative_income 241099 Representative total house income in the dwelling unit is $241099 +in.representative_income 241103 Representative total house income in the dwelling unit is $241103 +in.representative_income 241122 Representative total house income in the dwelling unit is $241122 +in.representative_income 241154 Representative total house income in the dwelling unit is $241154 +in.representative_income 241160 Representative total house income in the dwelling unit is $241160 +in.representative_income 241204 Representative total house income in the dwelling unit is $241204 +in.representative_income 241218 Representative total house income in the dwelling unit is $241218 +in.representative_income 241223 Representative total house income in the dwelling unit is $241223 +in.representative_income 241257 Representative total house income in the dwelling unit is $241257 +in.representative_income 241258 Representative total house income in the dwelling unit is $241258 +in.representative_income 241294 Representative total house income in the dwelling unit is $241294 +in.representative_income 241324 Representative total house income in the dwelling unit is $241324 +in.representative_income 241360 Representative total house income in the dwelling unit is $241360 +in.representative_income 241377 Representative total house income in the dwelling unit is $241377 +in.representative_income 241399 Representative total house income in the dwelling unit is $241399 +in.representative_income 241419 Representative total house income in the dwelling unit is $241419 +in.representative_income 241425 Representative total house income in the dwelling unit is $241425 +in.representative_income 241485 Representative total house income in the dwelling unit is $241485 +in.representative_income 241504 Representative total house income in the dwelling unit is $241504 +in.representative_income 241526 Representative total house income in the dwelling unit is $241526 +in.representative_income 241537 Representative total house income in the dwelling unit is $241537 +in.representative_income 241547 Representative total house income in the dwelling unit is $241547 +in.representative_income 241566 Representative total house income in the dwelling unit is $241566 +in.representative_income 241590 Representative total house income in the dwelling unit is $241590 +in.representative_income 241593 Representative total house income in the dwelling unit is $241593 +in.representative_income 241610 Representative total house income in the dwelling unit is $241610 +in.representative_income 241627 Representative total house income in the dwelling unit is $241627 +in.representative_income 241634 Representative total house income in the dwelling unit is $241634 +in.representative_income 241658 Representative total house income in the dwelling unit is $241658 +in.representative_income 241701 Representative total house income in the dwelling unit is $241701 +in.representative_income 241768 Representative total house income in the dwelling unit is $241768 +in.representative_income 241773 Representative total house income in the dwelling unit is $241773 +in.representative_income 241794 Representative total house income in the dwelling unit is $241794 +in.representative_income 241809 Representative total house income in the dwelling unit is $241809 +in.representative_income 241821 Representative total house income in the dwelling unit is $241821 +in.representative_income 241829 Representative total house income in the dwelling unit is $241829 +in.representative_income 241848 Representative total house income in the dwelling unit is $241848 +in.representative_income 241873 Representative total house income in the dwelling unit is $241873 +in.representative_income 241876 Representative total house income in the dwelling unit is $241876 +in.representative_income 241910 Representative total house income in the dwelling unit is $241910 +in.representative_income 241927 Representative total house income in the dwelling unit is $241927 +in.representative_income 241930 Representative total house income in the dwelling unit is $241930 +in.representative_income 241940 Representative total house income in the dwelling unit is $241940 +in.representative_income 241955 Representative total house income in the dwelling unit is $241955 +in.representative_income 241978 Representative total house income in the dwelling unit is $241978 +in.representative_income 241992 Representative total house income in the dwelling unit is $241992 +in.representative_income 242026 Representative total house income in the dwelling unit is $242026 +in.representative_income 242031 Representative total house income in the dwelling unit is $242031 +in.representative_income 242063 Representative total house income in the dwelling unit is $242063 +in.representative_income 242071 Representative total house income in the dwelling unit is $242071 +in.representative_income 242134 Representative total house income in the dwelling unit is $242134 +in.representative_income 242137 Representative total house income in the dwelling unit is $242137 +in.representative_income 242172 Representative total house income in the dwelling unit is $242172 +in.representative_income 242224 Representative total house income in the dwelling unit is $242224 +in.representative_income 242233 Representative total house income in the dwelling unit is $242233 +in.representative_income 242242 Representative total house income in the dwelling unit is $242242 +in.representative_income 242273 Representative total house income in the dwelling unit is $242273 +in.representative_income 242278 Representative total house income in the dwelling unit is $242278 +in.representative_income 242288 Representative total house income in the dwelling unit is $242288 +in.representative_income 242296 Representative total house income in the dwelling unit is $242296 +in.representative_income 242334 Representative total house income in the dwelling unit is $242334 +in.representative_income 242340 Representative total house income in the dwelling unit is $242340 +in.representative_income 242349 Representative total house income in the dwelling unit is $242349 +in.representative_income 242384 Representative total house income in the dwelling unit is $242384 +in.representative_income 242392 Representative total house income in the dwelling unit is $242392 +in.representative_income 242410 Representative total house income in the dwelling unit is $242410 +in.representative_income 242432 Representative total house income in the dwelling unit is $242432 +in.representative_income 242435 Representative total house income in the dwelling unit is $242435 +in.representative_income 242455 Representative total house income in the dwelling unit is $242455 +in.representative_income 242465 Representative total house income in the dwelling unit is $242465 +in.representative_income 242492 Representative total house income in the dwelling unit is $242492 +in.representative_income 242495 Representative total house income in the dwelling unit is $242495 +in.representative_income 242517 Representative total house income in the dwelling unit is $242517 +in.representative_income 242536 Representative total house income in the dwelling unit is $242536 +in.representative_income 242546 Representative total house income in the dwelling unit is $242546 +in.representative_income 242559 Representative total house income in the dwelling unit is $242559 +in.representative_income 242565 Representative total house income in the dwelling unit is $242565 +in.representative_income 242591 Representative total house income in the dwelling unit is $242591 +in.representative_income 242597 Representative total house income in the dwelling unit is $242597 +in.representative_income 242599 Representative total house income in the dwelling unit is $242599 +in.representative_income 242637 Representative total house income in the dwelling unit is $242637 +in.representative_income 242665 Representative total house income in the dwelling unit is $242665 +in.representative_income 242673 Representative total house income in the dwelling unit is $242673 +in.representative_income 242701 Representative total house income in the dwelling unit is $242701 +in.representative_income 242707 Representative total house income in the dwelling unit is $242707 +in.representative_income 242738 Representative total house income in the dwelling unit is $242738 +in.representative_income 242770 Representative total house income in the dwelling unit is $242770 +in.representative_income 242781 Representative total house income in the dwelling unit is $242781 +in.representative_income 242804 Representative total house income in the dwelling unit is $242804 +in.representative_income 242815 Representative total house income in the dwelling unit is $242815 +in.representative_income 242839 Representative total house income in the dwelling unit is $242839 +in.representative_income 242875 Representative total house income in the dwelling unit is $242875 +in.representative_income 242886 Representative total house income in the dwelling unit is $242886 +in.representative_income 242890 Representative total house income in the dwelling unit is $242890 +in.representative_income 242907 Representative total house income in the dwelling unit is $242907 +in.representative_income 242921 Representative total house income in the dwelling unit is $242921 +in.representative_income 242940 Representative total house income in the dwelling unit is $242940 +in.representative_income 242998 Representative total house income in the dwelling unit is $242998 +in.representative_income 243011 Representative total house income in the dwelling unit is $243011 +in.representative_income 243027 Representative total house income in the dwelling unit is $243027 +in.representative_income 243029 Representative total house income in the dwelling unit is $243029 +in.representative_income 243034 Representative total house income in the dwelling unit is $243034 +in.representative_income 243041 Representative total house income in the dwelling unit is $243041 +in.representative_income 243087 Representative total house income in the dwelling unit is $243087 +in.representative_income 243106 Representative total house income in the dwelling unit is $243106 +in.representative_income 243113 Representative total house income in the dwelling unit is $243113 +in.representative_income 243132 Representative total house income in the dwelling unit is $243132 +in.representative_income 243142 Representative total house income in the dwelling unit is $243142 +in.representative_income 243171 Representative total house income in the dwelling unit is $243171 +in.representative_income 243214 Representative total house income in the dwelling unit is $243214 +in.representative_income 243243 Representative total house income in the dwelling unit is $243243 +in.representative_income 243244 Representative total house income in the dwelling unit is $243244 +in.representative_income 243297 Representative total house income in the dwelling unit is $243297 +in.representative_income 243322 Representative total house income in the dwelling unit is $243322 +in.representative_income 243344 Representative total house income in the dwelling unit is $243344 +in.representative_income 243351 Representative total house income in the dwelling unit is $243351 +in.representative_income 243382 Representative total house income in the dwelling unit is $243382 +in.representative_income 243403 Representative total house income in the dwelling unit is $243403 +in.representative_income 243423 Representative total house income in the dwelling unit is $243423 +in.representative_income 243430 Representative total house income in the dwelling unit is $243430 +in.representative_income 243434 Representative total house income in the dwelling unit is $243434 +in.representative_income 243445 Representative total house income in the dwelling unit is $243445 +in.representative_income 243458 Representative total house income in the dwelling unit is $243458 +in.representative_income 243494 Representative total house income in the dwelling unit is $243494 +in.representative_income 243505 Representative total house income in the dwelling unit is $243505 +in.representative_income 243516 Representative total house income in the dwelling unit is $243516 +in.representative_income 243546 Representative total house income in the dwelling unit is $243546 +in.representative_income 243565 Representative total house income in the dwelling unit is $243565 +in.representative_income 243614 Representative total house income in the dwelling unit is $243614 +in.representative_income 243629 Representative total house income in the dwelling unit is $243629 +in.representative_income 243646 Representative total house income in the dwelling unit is $243646 +in.representative_income 243647 Representative total house income in the dwelling unit is $243647 +in.representative_income 243673 Representative total house income in the dwelling unit is $243673 +in.representative_income 243677 Representative total house income in the dwelling unit is $243677 +in.representative_income 243720 Representative total house income in the dwelling unit is $243720 +in.representative_income 243732 Representative total house income in the dwelling unit is $243732 +in.representative_income 243738 Representative total house income in the dwelling unit is $243738 +in.representative_income 243748 Representative total house income in the dwelling unit is $243748 +in.representative_income 243754 Representative total house income in the dwelling unit is $243754 +in.representative_income 243765 Representative total house income in the dwelling unit is $243765 +in.representative_income 243770 Representative total house income in the dwelling unit is $243770 +in.representative_income 243825 Representative total house income in the dwelling unit is $243825 +in.representative_income 243835 Representative total house income in the dwelling unit is $243835 +in.representative_income 243862 Representative total house income in the dwelling unit is $243862 +in.representative_income 243888 Representative total house income in the dwelling unit is $243888 +in.representative_income 243930 Representative total house income in the dwelling unit is $243930 +in.representative_income 243939 Representative total house income in the dwelling unit is $243939 +in.representative_income 243950 Representative total house income in the dwelling unit is $243950 +in.representative_income 243970 Representative total house income in the dwelling unit is $243970 +in.representative_income 243999 Representative total house income in the dwelling unit is $243999 +in.representative_income 244024 Representative total house income in the dwelling unit is $244024 +in.representative_income 244051 Representative total house income in the dwelling unit is $244051 +in.representative_income 244115 Representative total house income in the dwelling unit is $244115 +in.representative_income 244141 Representative total house income in the dwelling unit is $244141 +in.representative_income 244145 Representative total house income in the dwelling unit is $244145 +in.representative_income 244152 Representative total house income in the dwelling unit is $244152 +in.representative_income 244186 Representative total house income in the dwelling unit is $244186 +in.representative_income 244210 Representative total house income in the dwelling unit is $244210 +in.representative_income 244248 Representative total house income in the dwelling unit is $244248 +in.representative_income 244294 Representative total house income in the dwelling unit is $244294 +in.representative_income 244352 Representative total house income in the dwelling unit is $244352 +in.representative_income 244354 Representative total house income in the dwelling unit is $244354 +in.representative_income 244404 Representative total house income in the dwelling unit is $244404 +in.representative_income 244425 Representative total house income in the dwelling unit is $244425 +in.representative_income 244454 Representative total house income in the dwelling unit is $244454 +in.representative_income 244455 Representative total house income in the dwelling unit is $244455 +in.representative_income 244458 Representative total house income in the dwelling unit is $244458 +in.representative_income 244478 Representative total house income in the dwelling unit is $244478 +in.representative_income 244532 Representative total house income in the dwelling unit is $244532 +in.representative_income 244556 Representative total house income in the dwelling unit is $244556 +in.representative_income 244563 Representative total house income in the dwelling unit is $244563 +in.representative_income 244657 Representative total house income in the dwelling unit is $244657 +in.representative_income 244661 Representative total house income in the dwelling unit is $244661 +in.representative_income 244668 Representative total house income in the dwelling unit is $244668 +in.representative_income 244725 Representative total house income in the dwelling unit is $244725 +in.representative_income 244726 Representative total house income in the dwelling unit is $244726 +in.representative_income 244746 Representative total house income in the dwelling unit is $244746 +in.representative_income 244758 Representative total house income in the dwelling unit is $244758 +in.representative_income 244763 Representative total house income in the dwelling unit is $244763 +in.representative_income 244778 Representative total house income in the dwelling unit is $244778 +in.representative_income 244834 Representative total house income in the dwelling unit is $244834 +in.representative_income 244854 Representative total house income in the dwelling unit is $244854 +in.representative_income 244867 Representative total house income in the dwelling unit is $244867 +in.representative_income 244880 Representative total house income in the dwelling unit is $244880 +in.representative_income 244890 Representative total house income in the dwelling unit is $244890 +in.representative_income 244942 Representative total house income in the dwelling unit is $244942 +in.representative_income 244960 Representative total house income in the dwelling unit is $244960 +in.representative_income 244961 Representative total house income in the dwelling unit is $244961 +in.representative_income 244970 Representative total house income in the dwelling unit is $244970 +in.representative_income 244985 Representative total house income in the dwelling unit is $244985 +in.representative_income 245011 Representative total house income in the dwelling unit is $245011 +in.representative_income 245037 Representative total house income in the dwelling unit is $245037 +in.representative_income 245052 Representative total house income in the dwelling unit is $245052 +in.representative_income 245069 Representative total house income in the dwelling unit is $245069 +in.representative_income 245073 Representative total house income in the dwelling unit is $245073 +in.representative_income 245081 Representative total house income in the dwelling unit is $245081 +in.representative_income 245102 Representative total house income in the dwelling unit is $245102 +in.representative_income 245175 Representative total house income in the dwelling unit is $245175 +in.representative_income 245177 Representative total house income in the dwelling unit is $245177 +in.representative_income 245183 Representative total house income in the dwelling unit is $245183 +in.representative_income 245208 Representative total house income in the dwelling unit is $245208 +in.representative_income 245263 Representative total house income in the dwelling unit is $245263 +in.representative_income 245267 Representative total house income in the dwelling unit is $245267 +in.representative_income 245279 Representative total house income in the dwelling unit is $245279 +in.representative_income 245283 Representative total house income in the dwelling unit is $245283 +in.representative_income 245390 Representative total house income in the dwelling unit is $245390 +in.representative_income 245397 Representative total house income in the dwelling unit is $245397 +in.representative_income 245465 Representative total house income in the dwelling unit is $245465 +in.representative_income 245483 Representative total house income in the dwelling unit is $245483 +in.representative_income 245486 Representative total house income in the dwelling unit is $245486 +in.representative_income 245498 Representative total house income in the dwelling unit is $245498 +in.representative_income 245541 Representative total house income in the dwelling unit is $245541 +in.representative_income 245566 Representative total house income in the dwelling unit is $245566 +in.representative_income 245583 Representative total house income in the dwelling unit is $245583 +in.representative_income 245589 Representative total house income in the dwelling unit is $245589 +in.representative_income 245618 Representative total house income in the dwelling unit is $245618 +in.representative_income 245667 Representative total house income in the dwelling unit is $245667 +in.representative_income 245699 Representative total house income in the dwelling unit is $245699 +in.representative_income 245712 Representative total house income in the dwelling unit is $245712 +in.representative_income 245723 Representative total house income in the dwelling unit is $245723 +in.representative_income 245754 Representative total house income in the dwelling unit is $245754 +in.representative_income 245788 Representative total house income in the dwelling unit is $245788 +in.representative_income 245807 Representative total house income in the dwelling unit is $245807 +in.representative_income 245820 Representative total house income in the dwelling unit is $245820 +in.representative_income 245828 Representative total house income in the dwelling unit is $245828 +in.representative_income 245869 Representative total house income in the dwelling unit is $245869 +in.representative_income 245876 Representative total house income in the dwelling unit is $245876 +in.representative_income 245898 Representative total house income in the dwelling unit is $245898 +in.representative_income 245914 Representative total house income in the dwelling unit is $245914 +in.representative_income 245927 Representative total house income in the dwelling unit is $245927 +in.representative_income 245934 Representative total house income in the dwelling unit is $245934 +in.representative_income 245947 Representative total house income in the dwelling unit is $245947 +in.representative_income 245959 Representative total house income in the dwelling unit is $245959 +in.representative_income 245980 Representative total house income in the dwelling unit is $245980 +in.representative_income 245991 Representative total house income in the dwelling unit is $245991 +in.representative_income 246003 Representative total house income in the dwelling unit is $246003 +in.representative_income 246039 Representative total house income in the dwelling unit is $246039 +in.representative_income 246061 Representative total house income in the dwelling unit is $246061 +in.representative_income 246071 Representative total house income in the dwelling unit is $246071 +in.representative_income 246131 Representative total house income in the dwelling unit is $246131 +in.representative_income 246142 Representative total house income in the dwelling unit is $246142 +in.representative_income 246172 Representative total house income in the dwelling unit is $246172 +in.representative_income 246207 Representative total house income in the dwelling unit is $246207 +in.representative_income 246208 Representative total house income in the dwelling unit is $246208 +in.representative_income 246238 Representative total house income in the dwelling unit is $246238 +in.representative_income 246251 Representative total house income in the dwelling unit is $246251 +in.representative_income 246273 Representative total house income in the dwelling unit is $246273 +in.representative_income 246293 Representative total house income in the dwelling unit is $246293 +in.representative_income 246311 Representative total house income in the dwelling unit is $246311 +in.representative_income 246347 Representative total house income in the dwelling unit is $246347 +in.representative_income 246356 Representative total house income in the dwelling unit is $246356 +in.representative_income 246374 Representative total house income in the dwelling unit is $246374 +in.representative_income 246390 Representative total house income in the dwelling unit is $246390 +in.representative_income 246453 Representative total house income in the dwelling unit is $246453 +in.representative_income 246464 Representative total house income in the dwelling unit is $246464 +in.representative_income 246475 Representative total house income in the dwelling unit is $246475 +in.representative_income 246517 Representative total house income in the dwelling unit is $246517 +in.representative_income 246543 Representative total house income in the dwelling unit is $246543 +in.representative_income 246546 Representative total house income in the dwelling unit is $246546 +in.representative_income 246563 Representative total house income in the dwelling unit is $246563 +in.representative_income 246567 Representative total house income in the dwelling unit is $246567 +in.representative_income 246576 Representative total house income in the dwelling unit is $246576 +in.representative_income 246600 Representative total house income in the dwelling unit is $246600 +in.representative_income 246617 Representative total house income in the dwelling unit is $246617 +in.representative_income 246620 Representative total house income in the dwelling unit is $246620 +in.representative_income 246672 Representative total house income in the dwelling unit is $246672 +in.representative_income 246679 Representative total house income in the dwelling unit is $246679 +in.representative_income 246724 Representative total house income in the dwelling unit is $246724 +in.representative_income 246754 Representative total house income in the dwelling unit is $246754 +in.representative_income 246766 Representative total house income in the dwelling unit is $246766 +in.representative_income 246778 Representative total house income in the dwelling unit is $246778 +in.representative_income 246780 Representative total house income in the dwelling unit is $246780 +in.representative_income 246859 Representative total house income in the dwelling unit is $246859 +in.representative_income 246879 Representative total house income in the dwelling unit is $246879 +in.representative_income 246883 Representative total house income in the dwelling unit is $246883 +in.representative_income 246888 Representative total house income in the dwelling unit is $246888 +in.representative_income 246893 Representative total house income in the dwelling unit is $246893 +in.representative_income 246929 Representative total house income in the dwelling unit is $246929 +in.representative_income 246980 Representative total house income in the dwelling unit is $246980 +in.representative_income 246989 Representative total house income in the dwelling unit is $246989 +in.representative_income 247000 Representative total house income in the dwelling unit is $247000 +in.representative_income 247033 Representative total house income in the dwelling unit is $247033 +in.representative_income 247081 Representative total house income in the dwelling unit is $247081 +in.representative_income 247094 Representative total house income in the dwelling unit is $247094 +in.representative_income 247108 Representative total house income in the dwelling unit is $247108 +in.representative_income 247161 Representative total house income in the dwelling unit is $247161 +in.representative_income 247189 Representative total house income in the dwelling unit is $247189 +in.representative_income 247199 Representative total house income in the dwelling unit is $247199 +in.representative_income 247216 Representative total house income in the dwelling unit is $247216 +in.representative_income 247237 Representative total house income in the dwelling unit is $247237 +in.representative_income 247239 Representative total house income in the dwelling unit is $247239 +in.representative_income 247280 Representative total house income in the dwelling unit is $247280 +in.representative_income 247284 Representative total house income in the dwelling unit is $247284 +in.representative_income 247323 Representative total house income in the dwelling unit is $247323 +in.representative_income 247335 Representative total house income in the dwelling unit is $247335 +in.representative_income 247343 Representative total house income in the dwelling unit is $247343 +in.representative_income 247385 Representative total house income in the dwelling unit is $247385 +in.representative_income 247427 Representative total house income in the dwelling unit is $247427 +in.representative_income 247430 Representative total house income in the dwelling unit is $247430 +in.representative_income 247431 Representative total house income in the dwelling unit is $247431 +in.representative_income 247484 Representative total house income in the dwelling unit is $247484 +in.representative_income 247486 Representative total house income in the dwelling unit is $247486 +in.representative_income 247516 Representative total house income in the dwelling unit is $247516 +in.representative_income 247527 Representative total house income in the dwelling unit is $247527 +in.representative_income 247535 Representative total house income in the dwelling unit is $247535 +in.representative_income 247536 Representative total house income in the dwelling unit is $247536 +in.representative_income 247548 Representative total house income in the dwelling unit is $247548 +in.representative_income 247581 Representative total house income in the dwelling unit is $247581 +in.representative_income 247587 Representative total house income in the dwelling unit is $247587 +in.representative_income 247621 Representative total house income in the dwelling unit is $247621 +in.representative_income 247634 Representative total house income in the dwelling unit is $247634 +in.representative_income 247688 Representative total house income in the dwelling unit is $247688 +in.representative_income 247695 Representative total house income in the dwelling unit is $247695 +in.representative_income 247752 Representative total house income in the dwelling unit is $247752 +in.representative_income 247755 Representative total house income in the dwelling unit is $247755 +in.representative_income 247789 Representative total house income in the dwelling unit is $247789 +in.representative_income 247832 Representative total house income in the dwelling unit is $247832 +in.representative_income 247841 Representative total house income in the dwelling unit is $247841 +in.representative_income 247858 Representative total house income in the dwelling unit is $247858 +in.representative_income 247864 Representative total house income in the dwelling unit is $247864 +in.representative_income 247890 Representative total house income in the dwelling unit is $247890 +in.representative_income 247910 Representative total house income in the dwelling unit is $247910 +in.representative_income 247937 Representative total house income in the dwelling unit is $247937 +in.representative_income 247940 Representative total house income in the dwelling unit is $247940 +in.representative_income 247966 Representative total house income in the dwelling unit is $247966 +in.representative_income 247971 Representative total house income in the dwelling unit is $247971 +in.representative_income 247991 Representative total house income in the dwelling unit is $247991 +in.representative_income 248021 Representative total house income in the dwelling unit is $248021 +in.representative_income 248028 Representative total house income in the dwelling unit is $248028 +in.representative_income 248038 Representative total house income in the dwelling unit is $248038 +in.representative_income 248064 Representative total house income in the dwelling unit is $248064 +in.representative_income 248074 Representative total house income in the dwelling unit is $248074 +in.representative_income 248086 Representative total house income in the dwelling unit is $248086 +in.representative_income 248092 Representative total house income in the dwelling unit is $248092 +in.representative_income 248117 Representative total house income in the dwelling unit is $248117 +in.representative_income 248124 Representative total house income in the dwelling unit is $248124 +in.representative_income 248149 Representative total house income in the dwelling unit is $248149 +in.representative_income 248167 Representative total house income in the dwelling unit is $248167 +in.representative_income 248170 Representative total house income in the dwelling unit is $248170 +in.representative_income 248181 Representative total house income in the dwelling unit is $248181 +in.representative_income 248193 Representative total house income in the dwelling unit is $248193 +in.representative_income 248254 Representative total house income in the dwelling unit is $248254 +in.representative_income 248271 Representative total house income in the dwelling unit is $248271 +in.representative_income 248274 Representative total house income in the dwelling unit is $248274 +in.representative_income 248292 Representative total house income in the dwelling unit is $248292 +in.representative_income 248294 Representative total house income in the dwelling unit is $248294 +in.representative_income 248359 Representative total house income in the dwelling unit is $248359 +in.representative_income 248385 Representative total house income in the dwelling unit is $248385 +in.representative_income 248398 Representative total house income in the dwelling unit is $248398 +in.representative_income 248400 Representative total house income in the dwelling unit is $248400 +in.representative_income 248465 Representative total house income in the dwelling unit is $248465 +in.representative_income 248477 Representative total house income in the dwelling unit is $248477 +in.representative_income 248496 Representative total house income in the dwelling unit is $248496 +in.representative_income 248503 Representative total house income in the dwelling unit is $248503 +in.representative_income 248508 Representative total house income in the dwelling unit is $248508 +in.representative_income 248510 Representative total house income in the dwelling unit is $248510 +in.representative_income 248538 Representative total house income in the dwelling unit is $248538 +in.representative_income 248562 Representative total house income in the dwelling unit is $248562 +in.representative_income 248570 Representative total house income in the dwelling unit is $248570 +in.representative_income 248580 Representative total house income in the dwelling unit is $248580 +in.representative_income 248611 Representative total house income in the dwelling unit is $248611 +in.representative_income 248616 Representative total house income in the dwelling unit is $248616 +in.representative_income 248619 Representative total house income in the dwelling unit is $248619 +in.representative_income 248666 Representative total house income in the dwelling unit is $248666 +in.representative_income 248670 Representative total house income in the dwelling unit is $248670 +in.representative_income 248676 Representative total house income in the dwelling unit is $248676 +in.representative_income 248698 Representative total house income in the dwelling unit is $248698 +in.representative_income 248782 Representative total house income in the dwelling unit is $248782 +in.representative_income 248786 Representative total house income in the dwelling unit is $248786 +in.representative_income 248796 Representative total house income in the dwelling unit is $248796 +in.representative_income 248799 Representative total house income in the dwelling unit is $248799 +in.representative_income 248826 Representative total house income in the dwelling unit is $248826 +in.representative_income 248887 Representative total house income in the dwelling unit is $248887 +in.representative_income 248890 Representative total house income in the dwelling unit is $248890 +in.representative_income 248900 Representative total house income in the dwelling unit is $248900 +in.representative_income 248972 Representative total house income in the dwelling unit is $248972 +in.representative_income 248993 Representative total house income in the dwelling unit is $248993 +in.representative_income 249001 Representative total house income in the dwelling unit is $249001 +in.representative_income 249026 Representative total house income in the dwelling unit is $249026 +in.representative_income 249040 Representative total house income in the dwelling unit is $249040 +in.representative_income 249048 Representative total house income in the dwelling unit is $249048 +in.representative_income 249095 Representative total house income in the dwelling unit is $249095 +in.representative_income 249098 Representative total house income in the dwelling unit is $249098 +in.representative_income 249102 Representative total house income in the dwelling unit is $249102 +in.representative_income 249108 Representative total house income in the dwelling unit is $249108 +in.representative_income 249126 Representative total house income in the dwelling unit is $249126 +in.representative_income 249139 Representative total house income in the dwelling unit is $249139 +in.representative_income 249203 Representative total house income in the dwelling unit is $249203 +in.representative_income 249255 Representative total house income in the dwelling unit is $249255 +in.representative_income 249302 Representative total house income in the dwelling unit is $249302 +in.representative_income 249309 Representative total house income in the dwelling unit is $249309 +in.representative_income 249362 Representative total house income in the dwelling unit is $249362 +in.representative_income 249405 Representative total house income in the dwelling unit is $249405 +in.representative_income 249414 Representative total house income in the dwelling unit is $249414 +in.representative_income 249435 Representative total house income in the dwelling unit is $249435 +in.representative_income 249470 Representative total house income in the dwelling unit is $249470 +in.representative_income 249506 Representative total house income in the dwelling unit is $249506 +in.representative_income 249520 Representative total house income in the dwelling unit is $249520 +in.representative_income 249577 Representative total house income in the dwelling unit is $249577 +in.representative_income 249588 Representative total house income in the dwelling unit is $249588 +in.representative_income 249593 Representative total house income in the dwelling unit is $249593 +in.representative_income 249597 Representative total house income in the dwelling unit is $249597 +in.representative_income 249599 Representative total house income in the dwelling unit is $249599 +in.representative_income 249607 Representative total house income in the dwelling unit is $249607 +in.representative_income 249611 Representative total house income in the dwelling unit is $249611 +in.representative_income 249612 Representative total house income in the dwelling unit is $249612 +in.representative_income 249625 Representative total house income in the dwelling unit is $249625 +in.representative_income 249684 Representative total house income in the dwelling unit is $249684 +in.representative_income 249696 Representative total house income in the dwelling unit is $249696 +in.representative_income 249708 Representative total house income in the dwelling unit is $249708 +in.representative_income 249717 Representative total house income in the dwelling unit is $249717 +in.representative_income 249730 Representative total house income in the dwelling unit is $249730 +in.representative_income 249804 Representative total house income in the dwelling unit is $249804 +in.representative_income 249809 Representative total house income in the dwelling unit is $249809 +in.representative_income 249818 Representative total house income in the dwelling unit is $249818 +in.representative_income 249890 Representative total house income in the dwelling unit is $249890 +in.representative_income 249899 Representative total house income in the dwelling unit is $249899 +in.representative_income 249912 Representative total house income in the dwelling unit is $249912 +in.representative_income 249921 Representative total house income in the dwelling unit is $249921 +in.representative_income 249924 Representative total house income in the dwelling unit is $249924 +in.representative_income 249942 Representative total house income in the dwelling unit is $249942 +in.representative_income 250011 Representative total house income in the dwelling unit is $250011 +in.representative_income 250024 Representative total house income in the dwelling unit is $250024 +in.representative_income 250112 Representative total house income in the dwelling unit is $250112 +in.representative_income 250114 Representative total house income in the dwelling unit is $250114 +in.representative_income 250128 Representative total house income in the dwelling unit is $250128 +in.representative_income 250129 Representative total house income in the dwelling unit is $250129 +in.representative_income 250135 Representative total house income in the dwelling unit is $250135 +in.representative_income 250152 Representative total house income in the dwelling unit is $250152 +in.representative_income 250213 Representative total house income in the dwelling unit is $250213 +in.representative_income 250230 Representative total house income in the dwelling unit is $250230 +in.representative_income 250268 Representative total house income in the dwelling unit is $250268 +in.representative_income 250282 Representative total house income in the dwelling unit is $250282 +in.representative_income 250291 Representative total house income in the dwelling unit is $250291 +in.representative_income 250296 Representative total house income in the dwelling unit is $250296 +in.representative_income 250314 Representative total house income in the dwelling unit is $250314 +in.representative_income 250324 Representative total house income in the dwelling unit is $250324 +in.representative_income 250328 Representative total house income in the dwelling unit is $250328 +in.representative_income 250345 Representative total house income in the dwelling unit is $250345 +in.representative_income 250363 Representative total house income in the dwelling unit is $250363 +in.representative_income 250415 Representative total house income in the dwelling unit is $250415 +in.representative_income 250437 Representative total house income in the dwelling unit is $250437 +in.representative_income 250453 Representative total house income in the dwelling unit is $250453 +in.representative_income 250468 Representative total house income in the dwelling unit is $250468 +in.representative_income 250485 Representative total house income in the dwelling unit is $250485 +in.representative_income 250516 Representative total house income in the dwelling unit is $250516 +in.representative_income 250540 Representative total house income in the dwelling unit is $250540 +in.representative_income 250543 Representative total house income in the dwelling unit is $250543 +in.representative_income 250561 Representative total house income in the dwelling unit is $250561 +in.representative_income 250566 Representative total house income in the dwelling unit is $250566 +in.representative_income 250575 Representative total house income in the dwelling unit is $250575 +in.representative_income 250617 Representative total house income in the dwelling unit is $250617 +in.representative_income 250643 Representative total house income in the dwelling unit is $250643 +in.representative_income 250651 Representative total house income in the dwelling unit is $250651 +in.representative_income 250669 Representative total house income in the dwelling unit is $250669 +in.representative_income 250680 Representative total house income in the dwelling unit is $250680 +in.representative_income 250705 Representative total house income in the dwelling unit is $250705 +in.representative_income 250718 Representative total house income in the dwelling unit is $250718 +in.representative_income 250757 Representative total house income in the dwelling unit is $250757 +in.representative_income 250777 Representative total house income in the dwelling unit is $250777 +in.representative_income 250785 Representative total house income in the dwelling unit is $250785 +in.representative_income 250819 Representative total house income in the dwelling unit is $250819 +in.representative_income 250849 Representative total house income in the dwelling unit is $250849 +in.representative_income 250865 Representative total house income in the dwelling unit is $250865 +in.representative_income 250880 Representative total house income in the dwelling unit is $250880 +in.representative_income 250885 Representative total house income in the dwelling unit is $250885 +in.representative_income 250952 Representative total house income in the dwelling unit is $250952 +in.representative_income 250972 Representative total house income in the dwelling unit is $250972 +in.representative_income 250981 Representative total house income in the dwelling unit is $250981 +in.representative_income 250993 Representative total house income in the dwelling unit is $250993 +in.representative_income 250994 Representative total house income in the dwelling unit is $250994 +in.representative_income 250996 Representative total house income in the dwelling unit is $250996 +in.representative_income 251021 Representative total house income in the dwelling unit is $251021 +in.representative_income 251047 Representative total house income in the dwelling unit is $251047 +in.representative_income 251056 Representative total house income in the dwelling unit is $251056 +in.representative_income 251080 Representative total house income in the dwelling unit is $251080 +in.representative_income 251101 Representative total house income in the dwelling unit is $251101 +in.representative_income 251122 Representative total house income in the dwelling unit is $251122 +in.representative_income 251159 Representative total house income in the dwelling unit is $251159 +in.representative_income 251165 Representative total house income in the dwelling unit is $251165 +in.representative_income 251187 Representative total house income in the dwelling unit is $251187 +in.representative_income 251207 Representative total house income in the dwelling unit is $251207 +in.representative_income 251209 Representative total house income in the dwelling unit is $251209 +in.representative_income 251223 Representative total house income in the dwelling unit is $251223 +in.representative_income 251236 Representative total house income in the dwelling unit is $251236 +in.representative_income 251260 Representative total house income in the dwelling unit is $251260 +in.representative_income 251262 Representative total house income in the dwelling unit is $251262 +in.representative_income 251294 Representative total house income in the dwelling unit is $251294 +in.representative_income 251317 Representative total house income in the dwelling unit is $251317 +in.representative_income 251344 Representative total house income in the dwelling unit is $251344 +in.representative_income 251354 Representative total house income in the dwelling unit is $251354 +in.representative_income 251359 Representative total house income in the dwelling unit is $251359 +in.representative_income 251401 Representative total house income in the dwelling unit is $251401 +in.representative_income 251418 Representative total house income in the dwelling unit is $251418 +in.representative_income 251425 Representative total house income in the dwelling unit is $251425 +in.representative_income 251496 Representative total house income in the dwelling unit is $251496 +in.representative_income 251508 Representative total house income in the dwelling unit is $251508 +in.representative_income 251523 Representative total house income in the dwelling unit is $251523 +in.representative_income 251526 Representative total house income in the dwelling unit is $251526 +in.representative_income 251534 Representative total house income in the dwelling unit is $251534 +in.representative_income 251571 Representative total house income in the dwelling unit is $251571 +in.representative_income 251617 Representative total house income in the dwelling unit is $251617 +in.representative_income 251629 Representative total house income in the dwelling unit is $251629 +in.representative_income 251661 Representative total house income in the dwelling unit is $251661 +in.representative_income 251675 Representative total house income in the dwelling unit is $251675 +in.representative_income 251678 Representative total house income in the dwelling unit is $251678 +in.representative_income 251688 Representative total house income in the dwelling unit is $251688 +in.representative_income 251724 Representative total house income in the dwelling unit is $251724 +in.representative_income 251726 Representative total house income in the dwelling unit is $251726 +in.representative_income 251729 Representative total house income in the dwelling unit is $251729 +in.representative_income 251734 Representative total house income in the dwelling unit is $251734 +in.representative_income 251750 Representative total house income in the dwelling unit is $251750 +in.representative_income 251754 Representative total house income in the dwelling unit is $251754 +in.representative_income 251789 Representative total house income in the dwelling unit is $251789 +in.representative_income 251829 Representative total house income in the dwelling unit is $251829 +in.representative_income 251840 Representative total house income in the dwelling unit is $251840 +in.representative_income 251858 Representative total house income in the dwelling unit is $251858 +in.representative_income 251930 Representative total house income in the dwelling unit is $251930 +in.representative_income 251984 Representative total house income in the dwelling unit is $251984 +in.representative_income 252014 Representative total house income in the dwelling unit is $252014 +in.representative_income 252046 Representative total house income in the dwelling unit is $252046 +in.representative_income 252051 Representative total house income in the dwelling unit is $252051 +in.representative_income 252073 Representative total house income in the dwelling unit is $252073 +in.representative_income 252132 Representative total house income in the dwelling unit is $252132 +in.representative_income 252153 Representative total house income in the dwelling unit is $252153 +in.representative_income 252188 Representative total house income in the dwelling unit is $252188 +in.representative_income 252190 Representative total house income in the dwelling unit is $252190 +in.representative_income 252261 Representative total house income in the dwelling unit is $252261 +in.representative_income 252271 Representative total house income in the dwelling unit is $252271 +in.representative_income 252282 Representative total house income in the dwelling unit is $252282 +in.representative_income 252294 Representative total house income in the dwelling unit is $252294 +in.representative_income 252334 Representative total house income in the dwelling unit is $252334 +in.representative_income 252368 Representative total house income in the dwelling unit is $252368 +in.representative_income 252379 Representative total house income in the dwelling unit is $252379 +in.representative_income 252390 Representative total house income in the dwelling unit is $252390 +in.representative_income 252398 Representative total house income in the dwelling unit is $252398 +in.representative_income 252422 Representative total house income in the dwelling unit is $252422 +in.representative_income 252435 Representative total house income in the dwelling unit is $252435 +in.representative_income 252473 Representative total house income in the dwelling unit is $252473 +in.representative_income 252475 Representative total house income in the dwelling unit is $252475 +in.representative_income 252521 Representative total house income in the dwelling unit is $252521 +in.representative_income 252536 Representative total house income in the dwelling unit is $252536 +in.representative_income 252578 Representative total house income in the dwelling unit is $252578 +in.representative_income 252587 Representative total house income in the dwelling unit is $252587 +in.representative_income 252603 Representative total house income in the dwelling unit is $252603 +in.representative_income 252614 Representative total house income in the dwelling unit is $252614 +in.representative_income 252668 Representative total house income in the dwelling unit is $252668 +in.representative_income 252690 Representative total house income in the dwelling unit is $252690 +in.representative_income 252706 Representative total house income in the dwelling unit is $252706 +in.representative_income 252769 Representative total house income in the dwelling unit is $252769 +in.representative_income 252789 Representative total house income in the dwelling unit is $252789 +in.representative_income 252797 Representative total house income in the dwelling unit is $252797 +in.representative_income 252809 Representative total house income in the dwelling unit is $252809 +in.representative_income 252830 Representative total house income in the dwelling unit is $252830 +in.representative_income 252839 Representative total house income in the dwelling unit is $252839 +in.representative_income 252894 Representative total house income in the dwelling unit is $252894 +in.representative_income 252913 Representative total house income in the dwelling unit is $252913 +in.representative_income 252938 Representative total house income in the dwelling unit is $252938 +in.representative_income 253012 Representative total house income in the dwelling unit is $253012 +in.representative_income 253015 Representative total house income in the dwelling unit is $253015 +in.representative_income 253041 Representative total house income in the dwelling unit is $253041 +in.representative_income 253046 Representative total house income in the dwelling unit is $253046 +in.representative_income 253101 Representative total house income in the dwelling unit is $253101 +in.representative_income 253106 Representative total house income in the dwelling unit is $253106 +in.representative_income 253119 Representative total house income in the dwelling unit is $253119 +in.representative_income 253142 Representative total house income in the dwelling unit is $253142 +in.representative_income 253147 Representative total house income in the dwelling unit is $253147 +in.representative_income 253170 Representative total house income in the dwelling unit is $253170 +in.representative_income 253208 Representative total house income in the dwelling unit is $253208 +in.representative_income 253211 Representative total house income in the dwelling unit is $253211 +in.representative_income 253220 Representative total house income in the dwelling unit is $253220 +in.representative_income 253222 Representative total house income in the dwelling unit is $253222 +in.representative_income 253227 Representative total house income in the dwelling unit is $253227 +in.representative_income 253243 Representative total house income in the dwelling unit is $253243 +in.representative_income 253262 Representative total house income in the dwelling unit is $253262 +in.representative_income 253294 Representative total house income in the dwelling unit is $253294 +in.representative_income 253316 Representative total house income in the dwelling unit is $253316 +in.representative_income 253334 Representative total house income in the dwelling unit is $253334 +in.representative_income 253338 Representative total house income in the dwelling unit is $253338 +in.representative_income 253370 Representative total house income in the dwelling unit is $253370 +in.representative_income 253377 Representative total house income in the dwelling unit is $253377 +in.representative_income 253395 Representative total house income in the dwelling unit is $253395 +in.representative_income 253398 Representative total house income in the dwelling unit is $253398 +in.representative_income 253422 Representative total house income in the dwelling unit is $253422 +in.representative_income 253428 Representative total house income in the dwelling unit is $253428 +in.representative_income 253431 Representative total house income in the dwelling unit is $253431 +in.representative_income 253432 Representative total house income in the dwelling unit is $253432 +in.representative_income 253442 Representative total house income in the dwelling unit is $253442 +in.representative_income 253445 Representative total house income in the dwelling unit is $253445 +in.representative_income 253475 Representative total house income in the dwelling unit is $253475 +in.representative_income 253527 Representative total house income in the dwelling unit is $253527 +in.representative_income 253531 Representative total house income in the dwelling unit is $253531 +in.representative_income 253546 Representative total house income in the dwelling unit is $253546 +in.representative_income 253548 Representative total house income in the dwelling unit is $253548 +in.representative_income 253586 Representative total house income in the dwelling unit is $253586 +in.representative_income 253632 Representative total house income in the dwelling unit is $253632 +in.representative_income 253634 Representative total house income in the dwelling unit is $253634 +in.representative_income 253647 Representative total house income in the dwelling unit is $253647 +in.representative_income 253655 Representative total house income in the dwelling unit is $253655 +in.representative_income 253656 Representative total house income in the dwelling unit is $253656 +in.representative_income 253675 Representative total house income in the dwelling unit is $253675 +in.representative_income 253686 Representative total house income in the dwelling unit is $253686 +in.representative_income 253694 Representative total house income in the dwelling unit is $253694 +in.representative_income 253737 Representative total house income in the dwelling unit is $253737 +in.representative_income 253738 Representative total house income in the dwelling unit is $253738 +in.representative_income 253748 Representative total house income in the dwelling unit is $253748 +in.representative_income 253758 Representative total house income in the dwelling unit is $253758 +in.representative_income 253824 Representative total house income in the dwelling unit is $253824 +in.representative_income 253844 Representative total house income in the dwelling unit is $253844 +in.representative_income 253849 Representative total house income in the dwelling unit is $253849 +in.representative_income 253871 Representative total house income in the dwelling unit is $253871 +in.representative_income 253872 Representative total house income in the dwelling unit is $253872 +in.representative_income 253911 Representative total house income in the dwelling unit is $253911 +in.representative_income 253924 Representative total house income in the dwelling unit is $253924 +in.representative_income 253949 Representative total house income in the dwelling unit is $253949 +in.representative_income 253950 Representative total house income in the dwelling unit is $253950 +in.representative_income 253964 Representative total house income in the dwelling unit is $253964 +in.representative_income 253978 Representative total house income in the dwelling unit is $253978 +in.representative_income 254019 Representative total house income in the dwelling unit is $254019 +in.representative_income 254046 Representative total house income in the dwelling unit is $254046 +in.representative_income 254051 Representative total house income in the dwelling unit is $254051 +in.representative_income 254054 Representative total house income in the dwelling unit is $254054 +in.representative_income 254127 Representative total house income in the dwelling unit is $254127 +in.representative_income 254128 Representative total house income in the dwelling unit is $254128 +in.representative_income 254160 Representative total house income in the dwelling unit is $254160 +in.representative_income 254192 Representative total house income in the dwelling unit is $254192 +in.representative_income 254253 Representative total house income in the dwelling unit is $254253 +in.representative_income 254254 Representative total house income in the dwelling unit is $254254 +in.representative_income 254266 Representative total house income in the dwelling unit is $254266 +in.representative_income 254321 Representative total house income in the dwelling unit is $254321 +in.representative_income 254334 Representative total house income in the dwelling unit is $254334 +in.representative_income 254342 Representative total house income in the dwelling unit is $254342 +in.representative_income 254355 Representative total house income in the dwelling unit is $254355 +in.representative_income 254356 Representative total house income in the dwelling unit is $254356 +in.representative_income 254371 Representative total house income in the dwelling unit is $254371 +in.representative_income 254408 Representative total house income in the dwelling unit is $254408 +in.representative_income 254450 Representative total house income in the dwelling unit is $254450 +in.representative_income 254460 Representative total house income in the dwelling unit is $254460 +in.representative_income 254477 Representative total house income in the dwelling unit is $254477 +in.representative_income 254515 Representative total house income in the dwelling unit is $254515 +in.representative_income 254557 Representative total house income in the dwelling unit is $254557 +in.representative_income 254562 Representative total house income in the dwelling unit is $254562 +in.representative_income 254658 Representative total house income in the dwelling unit is $254658 +in.representative_income 254665 Representative total house income in the dwelling unit is $254665 +in.representative_income 254687 Representative total house income in the dwelling unit is $254687 +in.representative_income 254708 Representative total house income in the dwelling unit is $254708 +in.representative_income 254759 Representative total house income in the dwelling unit is $254759 +in.representative_income 254762 Representative total house income in the dwelling unit is $254762 +in.representative_income 254769 Representative total house income in the dwelling unit is $254769 +in.representative_income 254775 Representative total house income in the dwelling unit is $254775 +in.representative_income 254789 Representative total house income in the dwelling unit is $254789 +in.representative_income 254792 Representative total house income in the dwelling unit is $254792 +in.representative_income 254829 Representative total house income in the dwelling unit is $254829 +in.representative_income 254872 Representative total house income in the dwelling unit is $254872 +in.representative_income 254883 Representative total house income in the dwelling unit is $254883 +in.representative_income 254899 Representative total house income in the dwelling unit is $254899 +in.representative_income 254944 Representative total house income in the dwelling unit is $254944 +in.representative_income 254961 Representative total house income in the dwelling unit is $254961 +in.representative_income 254991 Representative total house income in the dwelling unit is $254991 +in.representative_income 255052 Representative total house income in the dwelling unit is $255052 +in.representative_income 255062 Representative total house income in the dwelling unit is $255062 +in.representative_income 255099 Representative total house income in the dwelling unit is $255099 +in.representative_income 255207 Representative total house income in the dwelling unit is $255207 +in.representative_income 255215 Representative total house income in the dwelling unit is $255215 +in.representative_income 255221 Representative total house income in the dwelling unit is $255221 +in.representative_income 255264 Representative total house income in the dwelling unit is $255264 +in.representative_income 255266 Representative total house income in the dwelling unit is $255266 +in.representative_income 255268 Representative total house income in the dwelling unit is $255268 +in.representative_income 255279 Representative total house income in the dwelling unit is $255279 +in.representative_income 255284 Representative total house income in the dwelling unit is $255284 +in.representative_income 255299 Representative total house income in the dwelling unit is $255299 +in.representative_income 255315 Representative total house income in the dwelling unit is $255315 +in.representative_income 255320 Representative total house income in the dwelling unit is $255320 +in.representative_income 255365 Representative total house income in the dwelling unit is $255365 +in.representative_income 255388 Representative total house income in the dwelling unit is $255388 +in.representative_income 255423 Representative total house income in the dwelling unit is $255423 +in.representative_income 255425 Representative total house income in the dwelling unit is $255425 +in.representative_income 255436 Representative total house income in the dwelling unit is $255436 +in.representative_income 255481 Representative total house income in the dwelling unit is $255481 +in.representative_income 255567 Representative total house income in the dwelling unit is $255567 +in.representative_income 255577 Representative total house income in the dwelling unit is $255577 +in.representative_income 255584 Representative total house income in the dwelling unit is $255584 +in.representative_income 255588 Representative total house income in the dwelling unit is $255588 +in.representative_income 255594 Representative total house income in the dwelling unit is $255594 +in.representative_income 255637 Representative total house income in the dwelling unit is $255637 +in.representative_income 255639 Representative total house income in the dwelling unit is $255639 +in.representative_income 255668 Representative total house income in the dwelling unit is $255668 +in.representative_income 255696 Representative total house income in the dwelling unit is $255696 +in.representative_income 255742 Representative total house income in the dwelling unit is $255742 +in.representative_income 255747 Representative total house income in the dwelling unit is $255747 +in.representative_income 255769 Representative total house income in the dwelling unit is $255769 +in.representative_income 255789 Representative total house income in the dwelling unit is $255789 +in.representative_income 255800 Representative total house income in the dwelling unit is $255800 +in.representative_income 255802 Representative total house income in the dwelling unit is $255802 +in.representative_income 255810 Representative total house income in the dwelling unit is $255810 +in.representative_income 255847 Representative total house income in the dwelling unit is $255847 +in.representative_income 255855 Representative total house income in the dwelling unit is $255855 +in.representative_income 255870 Representative total house income in the dwelling unit is $255870 +in.representative_income 255903 Representative total house income in the dwelling unit is $255903 +in.representative_income 255932 Representative total house income in the dwelling unit is $255932 +in.representative_income 255963 Representative total house income in the dwelling unit is $255963 +in.representative_income 255971 Representative total house income in the dwelling unit is $255971 +in.representative_income 255986 Representative total house income in the dwelling unit is $255986 +in.representative_income 256008 Representative total house income in the dwelling unit is $256008 +in.representative_income 256034 Representative total house income in the dwelling unit is $256034 +in.representative_income 256058 Representative total house income in the dwelling unit is $256058 +in.representative_income 256071 Representative total house income in the dwelling unit is $256071 +in.representative_income 256072 Representative total house income in the dwelling unit is $256072 +in.representative_income 256102 Representative total house income in the dwelling unit is $256102 +in.representative_income 256107 Representative total house income in the dwelling unit is $256107 +in.representative_income 256110 Representative total house income in the dwelling unit is $256110 +in.representative_income 256125 Representative total house income in the dwelling unit is $256125 +in.representative_income 256164 Representative total house income in the dwelling unit is $256164 +in.representative_income 256173 Representative total house income in the dwelling unit is $256173 +in.representative_income 256179 Representative total house income in the dwelling unit is $256179 +in.representative_income 256212 Representative total house income in the dwelling unit is $256212 +in.representative_income 256216 Representative total house income in the dwelling unit is $256216 +in.representative_income 256270 Representative total house income in the dwelling unit is $256270 +in.representative_income 256314 Representative total house income in the dwelling unit is $256314 +in.representative_income 256339 Representative total house income in the dwelling unit is $256339 +in.representative_income 256375 Representative total house income in the dwelling unit is $256375 +in.representative_income 256396 Representative total house income in the dwelling unit is $256396 +in.representative_income 256405 Representative total house income in the dwelling unit is $256405 +in.representative_income 256419 Representative total house income in the dwelling unit is $256419 +in.representative_income 256447 Representative total house income in the dwelling unit is $256447 +in.representative_income 256476 Representative total house income in the dwelling unit is $256476 +in.representative_income 256554 Representative total house income in the dwelling unit is $256554 +in.representative_income 256575 Representative total house income in the dwelling unit is $256575 +in.representative_income 256577 Representative total house income in the dwelling unit is $256577 +in.representative_income 256608 Representative total house income in the dwelling unit is $256608 +in.representative_income 256612 Representative total house income in the dwelling unit is $256612 +in.representative_income 256617 Representative total house income in the dwelling unit is $256617 +in.representative_income 256626 Representative total house income in the dwelling unit is $256626 +in.representative_income 256662 Representative total house income in the dwelling unit is $256662 +in.representative_income 256678 Representative total house income in the dwelling unit is $256678 +in.representative_income 256691 Representative total house income in the dwelling unit is $256691 +in.representative_income 256720 Representative total house income in the dwelling unit is $256720 +in.representative_income 256729 Representative total house income in the dwelling unit is $256729 +in.representative_income 256797 Representative total house income in the dwelling unit is $256797 +in.representative_income 256807 Representative total house income in the dwelling unit is $256807 +in.representative_income 256828 Representative total house income in the dwelling unit is $256828 +in.representative_income 256831 Representative total house income in the dwelling unit is $256831 +in.representative_income 256860 Representative total house income in the dwelling unit is $256860 +in.representative_income 256877 Representative total house income in the dwelling unit is $256877 +in.representative_income 256880 Representative total house income in the dwelling unit is $256880 +in.representative_income 256935 Representative total house income in the dwelling unit is $256935 +in.representative_income 256981 Representative total house income in the dwelling unit is $256981 +in.representative_income 256983 Representative total house income in the dwelling unit is $256983 +in.representative_income 257038 Representative total house income in the dwelling unit is $257038 +in.representative_income 257081 Representative total house income in the dwelling unit is $257081 +in.representative_income 257082 Representative total house income in the dwelling unit is $257082 +in.representative_income 257091 Representative total house income in the dwelling unit is $257091 +in.representative_income 257113 Representative total house income in the dwelling unit is $257113 +in.representative_income 257152 Representative total house income in the dwelling unit is $257152 +in.representative_income 257163 Representative total house income in the dwelling unit is $257163 +in.representative_income 257174 Representative total house income in the dwelling unit is $257174 +in.representative_income 257183 Representative total house income in the dwelling unit is $257183 +in.representative_income 257198 Representative total house income in the dwelling unit is $257198 +in.representative_income 257206 Representative total house income in the dwelling unit is $257206 +in.representative_income 257218 Representative total house income in the dwelling unit is $257218 +in.representative_income 257238 Representative total house income in the dwelling unit is $257238 +in.representative_income 257245 Representative total house income in the dwelling unit is $257245 +in.representative_income 257260 Representative total house income in the dwelling unit is $257260 +in.representative_income 257284 Representative total house income in the dwelling unit is $257284 +in.representative_income 257323 Representative total house income in the dwelling unit is $257323 +in.representative_income 257327 Representative total house income in the dwelling unit is $257327 +in.representative_income 257334 Representative total house income in the dwelling unit is $257334 +in.representative_income 257348 Representative total house income in the dwelling unit is $257348 +in.representative_income 257368 Representative total house income in the dwelling unit is $257368 +in.representative_income 257385 Representative total house income in the dwelling unit is $257385 +in.representative_income 257387 Representative total house income in the dwelling unit is $257387 +in.representative_income 257430 Representative total house income in the dwelling unit is $257430 +in.representative_income 257450 Representative total house income in the dwelling unit is $257450 +in.representative_income 257455 Representative total house income in the dwelling unit is $257455 +in.representative_income 257554 Representative total house income in the dwelling unit is $257554 +in.representative_income 257584 Representative total house income in the dwelling unit is $257584 +in.representative_income 257587 Representative total house income in the dwelling unit is $257587 +in.representative_income 257628 Representative total house income in the dwelling unit is $257628 +in.representative_income 257640 Representative total house income in the dwelling unit is $257640 +in.representative_income 257688 Representative total house income in the dwelling unit is $257688 +in.representative_income 257789 Representative total house income in the dwelling unit is $257789 +in.representative_income 257799 Representative total house income in the dwelling unit is $257799 +in.representative_income 257851 Representative total house income in the dwelling unit is $257851 +in.representative_income 257863 Representative total house income in the dwelling unit is $257863 +in.representative_income 257884 Representative total house income in the dwelling unit is $257884 +in.representative_income 257890 Representative total house income in the dwelling unit is $257890 +in.representative_income 257896 Representative total house income in the dwelling unit is $257896 +in.representative_income 257904 Representative total house income in the dwelling unit is $257904 +in.representative_income 257909 Representative total house income in the dwelling unit is $257909 +in.representative_income 257950 Representative total house income in the dwelling unit is $257950 +in.representative_income 257955 Representative total house income in the dwelling unit is $257955 +in.representative_income 257956 Representative total house income in the dwelling unit is $257956 +in.representative_income 257966 Representative total house income in the dwelling unit is $257966 +in.representative_income 257987 Representative total house income in the dwelling unit is $257987 +in.representative_income 257989 Representative total house income in the dwelling unit is $257989 +in.representative_income 257991 Representative total house income in the dwelling unit is $257991 +in.representative_income 258016 Representative total house income in the dwelling unit is $258016 +in.representative_income 258057 Representative total house income in the dwelling unit is $258057 +in.representative_income 258069 Representative total house income in the dwelling unit is $258069 +in.representative_income 258090 Representative total house income in the dwelling unit is $258090 +in.representative_income 258092 Representative total house income in the dwelling unit is $258092 +in.representative_income 258124 Representative total house income in the dwelling unit is $258124 +in.representative_income 258164 Representative total house income in the dwelling unit is $258164 +in.representative_income 258168 Representative total house income in the dwelling unit is $258168 +in.representative_income 258173 Representative total house income in the dwelling unit is $258173 +in.representative_income 258193 Representative total house income in the dwelling unit is $258193 +in.representative_income 258232 Representative total house income in the dwelling unit is $258232 +in.representative_income 258276 Representative total house income in the dwelling unit is $258276 +in.representative_income 258314 Representative total house income in the dwelling unit is $258314 +in.representative_income 258345 Representative total house income in the dwelling unit is $258345 +in.representative_income 258378 Representative total house income in the dwelling unit is $258378 +in.representative_income 258379 Representative total house income in the dwelling unit is $258379 +in.representative_income 258395 Representative total house income in the dwelling unit is $258395 +in.representative_income 258448 Representative total house income in the dwelling unit is $258448 +in.representative_income 258487 Representative total house income in the dwelling unit is $258487 +in.representative_income 258496 Representative total house income in the dwelling unit is $258496 +in.representative_income 258503 Representative total house income in the dwelling unit is $258503 +in.representative_income 258556 Representative total house income in the dwelling unit is $258556 +in.representative_income 258585 Representative total house income in the dwelling unit is $258585 +in.representative_income 258589 Representative total house income in the dwelling unit is $258589 +in.representative_income 258593 Representative total house income in the dwelling unit is $258593 +in.representative_income 258597 Representative total house income in the dwelling unit is $258597 +in.representative_income 258600 Representative total house income in the dwelling unit is $258600 +in.representative_income 258627 Representative total house income in the dwelling unit is $258627 +in.representative_income 258665 Representative total house income in the dwelling unit is $258665 +in.representative_income 258688 Representative total house income in the dwelling unit is $258688 +in.representative_income 258695 Representative total house income in the dwelling unit is $258695 +in.representative_income 258698 Representative total house income in the dwelling unit is $258698 +in.representative_income 258701 Representative total house income in the dwelling unit is $258701 +in.representative_income 258745 Representative total house income in the dwelling unit is $258745 +in.representative_income 258770 Representative total house income in the dwelling unit is $258770 +in.representative_income 258773 Representative total house income in the dwelling unit is $258773 +in.representative_income 258781 Representative total house income in the dwelling unit is $258781 +in.representative_income 258792 Representative total house income in the dwelling unit is $258792 +in.representative_income 258799 Representative total house income in the dwelling unit is $258799 +in.representative_income 258801 Representative total house income in the dwelling unit is $258801 +in.representative_income 258822 Representative total house income in the dwelling unit is $258822 +in.representative_income 258850 Representative total house income in the dwelling unit is $258850 +in.representative_income 258881 Representative total house income in the dwelling unit is $258881 +in.representative_income 258895 Representative total house income in the dwelling unit is $258895 +in.representative_income 258906 Representative total house income in the dwelling unit is $258906 +in.representative_income 258916 Representative total house income in the dwelling unit is $258916 +in.representative_income 258980 Representative total house income in the dwelling unit is $258980 +in.representative_income 258997 Representative total house income in the dwelling unit is $258997 +in.representative_income 259001 Representative total house income in the dwelling unit is $259001 +in.representative_income 259011 Representative total house income in the dwelling unit is $259011 +in.representative_income 259024 Representative total house income in the dwelling unit is $259024 +in.representative_income 259102 Representative total house income in the dwelling unit is $259102 +in.representative_income 259130 Representative total house income in the dwelling unit is $259130 +in.representative_income 259151 Representative total house income in the dwelling unit is $259151 +in.representative_income 259164 Representative total house income in the dwelling unit is $259164 +in.representative_income 259203 Representative total house income in the dwelling unit is $259203 +in.representative_income 259204 Representative total house income in the dwelling unit is $259204 +in.representative_income 259206 Representative total house income in the dwelling unit is $259206 +in.representative_income 259222 Representative total house income in the dwelling unit is $259222 +in.representative_income 259223 Representative total house income in the dwelling unit is $259223 +in.representative_income 259256 Representative total house income in the dwelling unit is $259256 +in.representative_income 259304 Representative total house income in the dwelling unit is $259304 +in.representative_income 259308 Representative total house income in the dwelling unit is $259308 +in.representative_income 259312 Representative total house income in the dwelling unit is $259312 +in.representative_income 259345 Representative total house income in the dwelling unit is $259345 +in.representative_income 259405 Representative total house income in the dwelling unit is $259405 +in.representative_income 259411 Representative total house income in the dwelling unit is $259411 +in.representative_income 259421 Representative total house income in the dwelling unit is $259421 +in.representative_income 259433 Representative total house income in the dwelling unit is $259433 +in.representative_income 259513 Representative total house income in the dwelling unit is $259513 +in.representative_income 259529 Representative total house income in the dwelling unit is $259529 +in.representative_income 259607 Representative total house income in the dwelling unit is $259607 +in.representative_income 259637 Representative total house income in the dwelling unit is $259637 +in.representative_income 259644 Representative total house income in the dwelling unit is $259644 +in.representative_income 259658 Representative total house income in the dwelling unit is $259658 +in.representative_income 259668 Representative total house income in the dwelling unit is $259668 +in.representative_income 259708 Representative total house income in the dwelling unit is $259708 +in.representative_income 259745 Representative total house income in the dwelling unit is $259745 +in.representative_income 259749 Representative total house income in the dwelling unit is $259749 +in.representative_income 259774 Representative total house income in the dwelling unit is $259774 +in.representative_income 259809 Representative total house income in the dwelling unit is $259809 +in.representative_income 259823 Representative total house income in the dwelling unit is $259823 +in.representative_income 259853 Representative total house income in the dwelling unit is $259853 +in.representative_income 259855 Representative total house income in the dwelling unit is $259855 +in.representative_income 259882 Representative total house income in the dwelling unit is $259882 +in.representative_income 259892 Representative total house income in the dwelling unit is $259892 +in.representative_income 259910 Representative total house income in the dwelling unit is $259910 +in.representative_income 259926 Representative total house income in the dwelling unit is $259926 +in.representative_income 259961 Representative total house income in the dwelling unit is $259961 +in.representative_income 259989 Representative total house income in the dwelling unit is $259989 +in.representative_income 260011 Representative total house income in the dwelling unit is $260011 +in.representative_income 260030 Representative total house income in the dwelling unit is $260030 +in.representative_income 260112 Representative total house income in the dwelling unit is $260112 +in.representative_income 260118 Representative total house income in the dwelling unit is $260118 +in.representative_income 260132 Representative total house income in the dwelling unit is $260132 +in.representative_income 260150 Representative total house income in the dwelling unit is $260150 +in.representative_income 260171 Representative total house income in the dwelling unit is $260171 +in.representative_income 260177 Representative total house income in the dwelling unit is $260177 +in.representative_income 260204 Representative total house income in the dwelling unit is $260204 +in.representative_income 260235 Representative total house income in the dwelling unit is $260235 +in.representative_income 260277 Representative total house income in the dwelling unit is $260277 +in.representative_income 260286 Representative total house income in the dwelling unit is $260286 +in.representative_income 260311 Representative total house income in the dwelling unit is $260311 +in.representative_income 260355 Representative total house income in the dwelling unit is $260355 +in.representative_income 260393 Representative total house income in the dwelling unit is $260393 +in.representative_income 260419 Representative total house income in the dwelling unit is $260419 +in.representative_income 260442 Representative total house income in the dwelling unit is $260442 +in.representative_income 260487 Representative total house income in the dwelling unit is $260487 +in.representative_income 260516 Representative total house income in the dwelling unit is $260516 +in.representative_income 260526 Representative total house income in the dwelling unit is $260526 +in.representative_income 260540 Representative total house income in the dwelling unit is $260540 +in.representative_income 260545 Representative total house income in the dwelling unit is $260545 +in.representative_income 260553 Representative total house income in the dwelling unit is $260553 +in.representative_income 260594 Representative total house income in the dwelling unit is $260594 +in.representative_income 260609 Representative total house income in the dwelling unit is $260609 +in.representative_income 260617 Representative total house income in the dwelling unit is $260617 +in.representative_income 260625 Representative total house income in the dwelling unit is $260625 +in.representative_income 260628 Representative total house income in the dwelling unit is $260628 +in.representative_income 260634 Representative total house income in the dwelling unit is $260634 +in.representative_income 260640 Representative total house income in the dwelling unit is $260640 +in.representative_income 260695 Representative total house income in the dwelling unit is $260695 +in.representative_income 260699 Representative total house income in the dwelling unit is $260699 +in.representative_income 260717 Representative total house income in the dwelling unit is $260717 +in.representative_income 260718 Representative total house income in the dwelling unit is $260718 +in.representative_income 260751 Representative total house income in the dwelling unit is $260751 +in.representative_income 260757 Representative total house income in the dwelling unit is $260757 +in.representative_income 260819 Representative total house income in the dwelling unit is $260819 +in.representative_income 260848 Representative total house income in the dwelling unit is $260848 +in.representative_income 260854 Representative total house income in the dwelling unit is $260854 +in.representative_income 260870 Representative total house income in the dwelling unit is $260870 +in.representative_income 260909 Representative total house income in the dwelling unit is $260909 +in.representative_income 260920 Representative total house income in the dwelling unit is $260920 +in.representative_income 260926 Representative total house income in the dwelling unit is $260926 +in.representative_income 260933 Representative total house income in the dwelling unit is $260933 +in.representative_income 260955 Representative total house income in the dwelling unit is $260955 +in.representative_income 260958 Representative total house income in the dwelling unit is $260958 +in.representative_income 261015 Representative total house income in the dwelling unit is $261015 +in.representative_income 261021 Representative total house income in the dwelling unit is $261021 +in.representative_income 261042 Representative total house income in the dwelling unit is $261042 +in.representative_income 261057 Representative total house income in the dwelling unit is $261057 +in.representative_income 261061 Representative total house income in the dwelling unit is $261061 +in.representative_income 261063 Representative total house income in the dwelling unit is $261063 +in.representative_income 261064 Representative total house income in the dwelling unit is $261064 +in.representative_income 261120 Representative total house income in the dwelling unit is $261120 +in.representative_income 261122 Representative total house income in the dwelling unit is $261122 +in.representative_income 261150 Representative total house income in the dwelling unit is $261150 +in.representative_income 261163 Representative total house income in the dwelling unit is $261163 +in.representative_income 261170 Representative total house income in the dwelling unit is $261170 +in.representative_income 261204 Representative total house income in the dwelling unit is $261204 +in.representative_income 261205 Representative total house income in the dwelling unit is $261205 +in.representative_income 261224 Representative total house income in the dwelling unit is $261224 +in.representative_income 261226 Representative total house income in the dwelling unit is $261226 +in.representative_income 261258 Representative total house income in the dwelling unit is $261258 +in.representative_income 261267 Representative total house income in the dwelling unit is $261267 +in.representative_income 261278 Representative total house income in the dwelling unit is $261278 +in.representative_income 261325 Representative total house income in the dwelling unit is $261325 +in.representative_income 261359 Representative total house income in the dwelling unit is $261359 +in.representative_income 261370 Representative total house income in the dwelling unit is $261370 +in.representative_income 261384 Representative total house income in the dwelling unit is $261384 +in.representative_income 261387 Representative total house income in the dwelling unit is $261387 +in.representative_income 261426 Representative total house income in the dwelling unit is $261426 +in.representative_income 261437 Representative total house income in the dwelling unit is $261437 +in.representative_income 261466 Representative total house income in the dwelling unit is $261466 +in.representative_income 261473 Representative total house income in the dwelling unit is $261473 +in.representative_income 261474 Representative total house income in the dwelling unit is $261474 +in.representative_income 261475 Representative total house income in the dwelling unit is $261475 +in.representative_income 261489 Representative total house income in the dwelling unit is $261489 +in.representative_income 261492 Representative total house income in the dwelling unit is $261492 +in.representative_income 261528 Representative total house income in the dwelling unit is $261528 +in.representative_income 261537 Representative total house income in the dwelling unit is $261537 +in.representative_income 261542 Representative total house income in the dwelling unit is $261542 +in.representative_income 261547 Representative total house income in the dwelling unit is $261547 +in.representative_income 261557 Representative total house income in the dwelling unit is $261557 +in.representative_income 261577 Representative total house income in the dwelling unit is $261577 +in.representative_income 261599 Representative total house income in the dwelling unit is $261599 +in.representative_income 261628 Representative total house income in the dwelling unit is $261628 +in.representative_income 261647 Representative total house income in the dwelling unit is $261647 +in.representative_income 261648 Representative total house income in the dwelling unit is $261648 +in.representative_income 261653 Representative total house income in the dwelling unit is $261653 +in.representative_income 261689 Representative total house income in the dwelling unit is $261689 +in.representative_income 261753 Representative total house income in the dwelling unit is $261753 +in.representative_income 261797 Representative total house income in the dwelling unit is $261797 +in.representative_income 261880 Representative total house income in the dwelling unit is $261880 +in.representative_income 261886 Representative total house income in the dwelling unit is $261886 +in.representative_income 261906 Representative total house income in the dwelling unit is $261906 +in.representative_income 261922 Representative total house income in the dwelling unit is $261922 +in.representative_income 261925 Representative total house income in the dwelling unit is $261925 +in.representative_income 261931 Representative total house income in the dwelling unit is $261931 +in.representative_income 261989 Representative total house income in the dwelling unit is $261989 +in.representative_income 262014 Representative total house income in the dwelling unit is $262014 +in.representative_income 262019 Representative total house income in the dwelling unit is $262019 +in.representative_income 262032 Representative total house income in the dwelling unit is $262032 +in.representative_income 262083 Representative total house income in the dwelling unit is $262083 +in.representative_income 262091 Representative total house income in the dwelling unit is $262091 +in.representative_income 262122 Representative total house income in the dwelling unit is $262122 +in.representative_income 262133 Representative total house income in the dwelling unit is $262133 +in.representative_income 262136 Representative total house income in the dwelling unit is $262136 +in.representative_income 262144 Representative total house income in the dwelling unit is $262144 +in.representative_income 262154 Representative total house income in the dwelling unit is $262154 +in.representative_income 262157 Representative total house income in the dwelling unit is $262157 +in.representative_income 262175 Representative total house income in the dwelling unit is $262175 +in.representative_income 262196 Representative total house income in the dwelling unit is $262196 +in.representative_income 262198 Representative total house income in the dwelling unit is $262198 +in.representative_income 262211 Representative total house income in the dwelling unit is $262211 +in.representative_income 262234 Representative total house income in the dwelling unit is $262234 +in.representative_income 262274 Representative total house income in the dwelling unit is $262274 +in.representative_income 262280 Representative total house income in the dwelling unit is $262280 +in.representative_income 262298 Representative total house income in the dwelling unit is $262298 +in.representative_income 262335 Representative total house income in the dwelling unit is $262335 +in.representative_income 262338 Representative total house income in the dwelling unit is $262338 +in.representative_income 262351 Representative total house income in the dwelling unit is $262351 +in.representative_income 262386 Representative total house income in the dwelling unit is $262386 +in.representative_income 262401 Representative total house income in the dwelling unit is $262401 +in.representative_income 262436 Representative total house income in the dwelling unit is $262436 +in.representative_income 262446 Representative total house income in the dwelling unit is $262446 +in.representative_income 262492 Representative total house income in the dwelling unit is $262492 +in.representative_income 262505 Representative total house income in the dwelling unit is $262505 +in.representative_income 262532 Representative total house income in the dwelling unit is $262532 +in.representative_income 262534 Representative total house income in the dwelling unit is $262534 +in.representative_income 262537 Representative total house income in the dwelling unit is $262537 +in.representative_income 262554 Representative total house income in the dwelling unit is $262554 +in.representative_income 262565 Representative total house income in the dwelling unit is $262565 +in.representative_income 262597 Representative total house income in the dwelling unit is $262597 +in.representative_income 262608 Representative total house income in the dwelling unit is $262608 +in.representative_income 262638 Representative total house income in the dwelling unit is $262638 +in.representative_income 262648 Representative total house income in the dwelling unit is $262648 +in.representative_income 262658 Representative total house income in the dwelling unit is $262658 +in.representative_income 262663 Representative total house income in the dwelling unit is $262663 +in.representative_income 262668 Representative total house income in the dwelling unit is $262668 +in.representative_income 262698 Representative total house income in the dwelling unit is $262698 +in.representative_income 262717 Representative total house income in the dwelling unit is $262717 +in.representative_income 262739 Representative total house income in the dwelling unit is $262739 +in.representative_income 262780 Representative total house income in the dwelling unit is $262780 +in.representative_income 262787 Representative total house income in the dwelling unit is $262787 +in.representative_income 262820 Representative total house income in the dwelling unit is $262820 +in.representative_income 262840 Representative total house income in the dwelling unit is $262840 +in.representative_income 262888 Representative total house income in the dwelling unit is $262888 +in.representative_income 262917 Representative total house income in the dwelling unit is $262917 +in.representative_income 262937 Representative total house income in the dwelling unit is $262937 +in.representative_income 262941 Representative total house income in the dwelling unit is $262941 +in.representative_income 262995 Representative total house income in the dwelling unit is $262995 +in.representative_income 263018 Representative total house income in the dwelling unit is $263018 +in.representative_income 263020 Representative total house income in the dwelling unit is $263020 +in.representative_income 263042 Representative total house income in the dwelling unit is $263042 +in.representative_income 263049 Representative total house income in the dwelling unit is $263049 +in.representative_income 263083 Representative total house income in the dwelling unit is $263083 +in.representative_income 263094 Representative total house income in the dwelling unit is $263094 +in.representative_income 263102 Representative total house income in the dwelling unit is $263102 +in.representative_income 263124 Representative total house income in the dwelling unit is $263124 +in.representative_income 263135 Representative total house income in the dwelling unit is $263135 +in.representative_income 263143 Representative total house income in the dwelling unit is $263143 +in.representative_income 263163 Representative total house income in the dwelling unit is $263163 +in.representative_income 263190 Representative total house income in the dwelling unit is $263190 +in.representative_income 263210 Representative total house income in the dwelling unit is $263210 +in.representative_income 263227 Representative total house income in the dwelling unit is $263227 +in.representative_income 263244 Representative total house income in the dwelling unit is $263244 +in.representative_income 263310 Representative total house income in the dwelling unit is $263310 +in.representative_income 263330 Representative total house income in the dwelling unit is $263330 +in.representative_income 263345 Representative total house income in the dwelling unit is $263345 +in.representative_income 263352 Representative total house income in the dwelling unit is $263352 +in.representative_income 263370 Representative total house income in the dwelling unit is $263370 +in.representative_income 263403 Representative total house income in the dwelling unit is $263403 +in.representative_income 263419 Representative total house income in the dwelling unit is $263419 +in.representative_income 263425 Representative total house income in the dwelling unit is $263425 +in.representative_income 263433 Representative total house income in the dwelling unit is $263433 +in.representative_income 263435 Representative total house income in the dwelling unit is $263435 +in.representative_income 263440 Representative total house income in the dwelling unit is $263440 +in.representative_income 263446 Representative total house income in the dwelling unit is $263446 +in.representative_income 263498 Representative total house income in the dwelling unit is $263498 +in.representative_income 263532 Representative total house income in the dwelling unit is $263532 +in.representative_income 263536 Representative total house income in the dwelling unit is $263536 +in.representative_income 263635 Representative total house income in the dwelling unit is $263635 +in.representative_income 263639 Representative total house income in the dwelling unit is $263639 +in.representative_income 263643 Representative total house income in the dwelling unit is $263643 +in.representative_income 263648 Representative total house income in the dwelling unit is $263648 +in.representative_income 263651 Representative total house income in the dwelling unit is $263651 +in.representative_income 263668 Representative total house income in the dwelling unit is $263668 +in.representative_income 263743 Representative total house income in the dwelling unit is $263743 +in.representative_income 263747 Representative total house income in the dwelling unit is $263747 +in.representative_income 263749 Representative total house income in the dwelling unit is $263749 +in.representative_income 263757 Representative total house income in the dwelling unit is $263757 +in.representative_income 263778 Representative total house income in the dwelling unit is $263778 +in.representative_income 263830 Representative total house income in the dwelling unit is $263830 +in.representative_income 263846 Representative total house income in the dwelling unit is $263846 +in.representative_income 263850 Representative total house income in the dwelling unit is $263850 +in.representative_income 263851 Representative total house income in the dwelling unit is $263851 +in.representative_income 263854 Representative total house income in the dwelling unit is $263854 +in.representative_income 263915 Representative total house income in the dwelling unit is $263915 +in.representative_income 263948 Representative total house income in the dwelling unit is $263948 +in.representative_income 263951 Representative total house income in the dwelling unit is $263951 +in.representative_income 263959 Representative total house income in the dwelling unit is $263959 +in.representative_income 263961 Representative total house income in the dwelling unit is $263961 +in.representative_income 263999 Representative total house income in the dwelling unit is $263999 +in.representative_income 264052 Representative total house income in the dwelling unit is $264052 +in.representative_income 264066 Representative total house income in the dwelling unit is $264066 +in.representative_income 264069 Representative total house income in the dwelling unit is $264069 +in.representative_income 264073 Representative total house income in the dwelling unit is $264073 +in.representative_income 264102 Representative total house income in the dwelling unit is $264102 +in.representative_income 264153 Representative total house income in the dwelling unit is $264153 +in.representative_income 264175 Representative total house income in the dwelling unit is $264175 +in.representative_income 264179 Representative total house income in the dwelling unit is $264179 +in.representative_income 264207 Representative total house income in the dwelling unit is $264207 +in.representative_income 264254 Representative total house income in the dwelling unit is $264254 +in.representative_income 264258 Representative total house income in the dwelling unit is $264258 +in.representative_income 264283 Representative total house income in the dwelling unit is $264283 +in.representative_income 264284 Representative total house income in the dwelling unit is $264284 +in.representative_income 264294 Representative total house income in the dwelling unit is $264294 +in.representative_income 264335 Representative total house income in the dwelling unit is $264335 +in.representative_income 264337 Representative total house income in the dwelling unit is $264337 +in.representative_income 264355 Representative total house income in the dwelling unit is $264355 +in.representative_income 264362 Representative total house income in the dwelling unit is $264362 +in.representative_income 264390 Representative total house income in the dwelling unit is $264390 +in.representative_income 264391 Representative total house income in the dwelling unit is $264391 +in.representative_income 264436 Representative total house income in the dwelling unit is $264436 +in.representative_income 264456 Representative total house income in the dwelling unit is $264456 +in.representative_income 264464 Representative total house income in the dwelling unit is $264464 +in.representative_income 264495 Representative total house income in the dwelling unit is $264495 +in.representative_income 264499 Representative total house income in the dwelling unit is $264499 +in.representative_income 264551 Representative total house income in the dwelling unit is $264551 +in.representative_income 264557 Representative total house income in the dwelling unit is $264557 +in.representative_income 264567 Representative total house income in the dwelling unit is $264567 +in.representative_income 264599 Representative total house income in the dwelling unit is $264599 +in.representative_income 264601 Representative total house income in the dwelling unit is $264601 +in.representative_income 264605 Representative total house income in the dwelling unit is $264605 +in.representative_income 264607 Representative total house income in the dwelling unit is $264607 +in.representative_income 264658 Representative total house income in the dwelling unit is $264658 +in.representative_income 264671 Representative total house income in the dwelling unit is $264671 +in.representative_income 264706 Representative total house income in the dwelling unit is $264706 +in.representative_income 264713 Representative total house income in the dwelling unit is $264713 +in.representative_income 264715 Representative total house income in the dwelling unit is $264715 +in.representative_income 264716 Representative total house income in the dwelling unit is $264716 +in.representative_income 264737 Representative total house income in the dwelling unit is $264737 +in.representative_income 264759 Representative total house income in the dwelling unit is $264759 +in.representative_income 264774 Representative total house income in the dwelling unit is $264774 +in.representative_income 264811 Representative total house income in the dwelling unit is $264811 +in.representative_income 264823 Representative total house income in the dwelling unit is $264823 +in.representative_income 264860 Representative total house income in the dwelling unit is $264860 +in.representative_income 264877 Representative total house income in the dwelling unit is $264877 +in.representative_income 264894 Representative total house income in the dwelling unit is $264894 +in.representative_income 264917 Representative total house income in the dwelling unit is $264917 +in.representative_income 264927 Representative total house income in the dwelling unit is $264927 +in.representative_income 264931 Representative total house income in the dwelling unit is $264931 +in.representative_income 264938 Representative total house income in the dwelling unit is $264938 +in.representative_income 264955 Representative total house income in the dwelling unit is $264955 +in.representative_income 265003 Representative total house income in the dwelling unit is $265003 +in.representative_income 265023 Representative total house income in the dwelling unit is $265023 +in.representative_income 265035 Representative total house income in the dwelling unit is $265035 +in.representative_income 265083 Representative total house income in the dwelling unit is $265083 +in.representative_income 265128 Representative total house income in the dwelling unit is $265128 +in.representative_income 265142 Representative total house income in the dwelling unit is $265142 +in.representative_income 265148 Representative total house income in the dwelling unit is $265148 +in.representative_income 265163 Representative total house income in the dwelling unit is $265163 +in.representative_income 265186 Representative total house income in the dwelling unit is $265186 +in.representative_income 265233 Representative total house income in the dwelling unit is $265233 +in.representative_income 265250 Representative total house income in the dwelling unit is $265250 +in.representative_income 265255 Representative total house income in the dwelling unit is $265255 +in.representative_income 265271 Representative total house income in the dwelling unit is $265271 +in.representative_income 265290 Representative total house income in the dwelling unit is $265290 +in.representative_income 265339 Representative total house income in the dwelling unit is $265339 +in.representative_income 265363 Representative total house income in the dwelling unit is $265363 +in.representative_income 265365 Representative total house income in the dwelling unit is $265365 +in.representative_income 265444 Representative total house income in the dwelling unit is $265444 +in.representative_income 265446 Representative total house income in the dwelling unit is $265446 +in.representative_income 265464 Representative total house income in the dwelling unit is $265464 +in.representative_income 265466 Representative total house income in the dwelling unit is $265466 +in.representative_income 265496 Representative total house income in the dwelling unit is $265496 +in.representative_income 265539 Representative total house income in the dwelling unit is $265539 +in.representative_income 265571 Representative total house income in the dwelling unit is $265571 +in.representative_income 265599 Representative total house income in the dwelling unit is $265599 +in.representative_income 265668 Representative total house income in the dwelling unit is $265668 +in.representative_income 265761 Representative total house income in the dwelling unit is $265761 +in.representative_income 265769 Representative total house income in the dwelling unit is $265769 +in.representative_income 265796 Representative total house income in the dwelling unit is $265796 +in.representative_income 265810 Representative total house income in the dwelling unit is $265810 +in.representative_income 265820 Representative total house income in the dwelling unit is $265820 +in.representative_income 265828 Representative total house income in the dwelling unit is $265828 +in.representative_income 265887 Representative total house income in the dwelling unit is $265887 +in.representative_income 265921 Representative total house income in the dwelling unit is $265921 +in.representative_income 265947 Representative total house income in the dwelling unit is $265947 +in.representative_income 265969 Representative total house income in the dwelling unit is $265969 +in.representative_income 265972 Representative total house income in the dwelling unit is $265972 +in.representative_income 266000 Representative total house income in the dwelling unit is $266000 +in.representative_income 266012 Representative total house income in the dwelling unit is $266012 +in.representative_income 266025 Representative total house income in the dwelling unit is $266025 +in.representative_income 266072 Representative total house income in the dwelling unit is $266072 +in.representative_income 266108 Representative total house income in the dwelling unit is $266108 +in.representative_income 266114 Representative total house income in the dwelling unit is $266114 +in.representative_income 266120 Representative total house income in the dwelling unit is $266120 +in.representative_income 266136 Representative total house income in the dwelling unit is $266136 +in.representative_income 266141 Representative total house income in the dwelling unit is $266141 +in.representative_income 266161 Representative total house income in the dwelling unit is $266161 +in.representative_income 266166 Representative total house income in the dwelling unit is $266166 +in.representative_income 266173 Representative total house income in the dwelling unit is $266173 +in.representative_income 266216 Representative total house income in the dwelling unit is $266216 +in.representative_income 266218 Representative total house income in the dwelling unit is $266218 +in.representative_income 266228 Representative total house income in the dwelling unit is $266228 +in.representative_income 266237 Representative total house income in the dwelling unit is $266237 +in.representative_income 266239 Representative total house income in the dwelling unit is $266239 +in.representative_income 266274 Representative total house income in the dwelling unit is $266274 +in.representative_income 266288 Representative total house income in the dwelling unit is $266288 +in.representative_income 266323 Representative total house income in the dwelling unit is $266323 +in.representative_income 266336 Representative total house income in the dwelling unit is $266336 +in.representative_income 266394 Representative total house income in the dwelling unit is $266394 +in.representative_income 266398 Representative total house income in the dwelling unit is $266398 +in.representative_income 266424 Representative total house income in the dwelling unit is $266424 +in.representative_income 266430 Representative total house income in the dwelling unit is $266430 +in.representative_income 266443 Representative total house income in the dwelling unit is $266443 +in.representative_income 266509 Representative total house income in the dwelling unit is $266509 +in.representative_income 266528 Representative total house income in the dwelling unit is $266528 +in.representative_income 266552 Representative total house income in the dwelling unit is $266552 +in.representative_income 266604 Representative total house income in the dwelling unit is $266604 +in.representative_income 266645 Representative total house income in the dwelling unit is $266645 +in.representative_income 266660 Representative total house income in the dwelling unit is $266660 +in.representative_income 266678 Representative total house income in the dwelling unit is $266678 +in.representative_income 266710 Representative total house income in the dwelling unit is $266710 +in.representative_income 266733 Representative total house income in the dwelling unit is $266733 +in.representative_income 266752 Representative total house income in the dwelling unit is $266752 +in.representative_income 266768 Representative total house income in the dwelling unit is $266768 +in.representative_income 266779 Representative total house income in the dwelling unit is $266779 +in.representative_income 266815 Representative total house income in the dwelling unit is $266815 +in.representative_income 266837 Representative total house income in the dwelling unit is $266837 +in.representative_income 266847 Representative total house income in the dwelling unit is $266847 +in.representative_income 266860 Representative total house income in the dwelling unit is $266860 +in.representative_income 266876 Representative total house income in the dwelling unit is $266876 +in.representative_income 266880 Representative total house income in the dwelling unit is $266880 +in.representative_income 266921 Representative total house income in the dwelling unit is $266921 +in.representative_income 266940 Representative total house income in the dwelling unit is $266940 +in.representative_income 266967 Representative total house income in the dwelling unit is $266967 +in.representative_income 266981 Representative total house income in the dwelling unit is $266981 +in.representative_income 266984 Representative total house income in the dwelling unit is $266984 +in.representative_income 267026 Representative total house income in the dwelling unit is $267026 +in.representative_income 267043 Representative total house income in the dwelling unit is $267043 +in.representative_income 267074 Representative total house income in the dwelling unit is $267074 +in.representative_income 267092 Representative total house income in the dwelling unit is $267092 +in.representative_income 267146 Representative total house income in the dwelling unit is $267146 +in.representative_income 267147 Representative total house income in the dwelling unit is $267147 +in.representative_income 267183 Representative total house income in the dwelling unit is $267183 +in.representative_income 267237 Representative total house income in the dwelling unit is $267237 +in.representative_income 267249 Representative total house income in the dwelling unit is $267249 +in.representative_income 267265 Representative total house income in the dwelling unit is $267265 +in.representative_income 267289 Representative total house income in the dwelling unit is $267289 +in.representative_income 267293 Representative total house income in the dwelling unit is $267293 +in.representative_income 267330 Representative total house income in the dwelling unit is $267330 +in.representative_income 267342 Representative total house income in the dwelling unit is $267342 +in.representative_income 267374 Representative total house income in the dwelling unit is $267374 +in.representative_income 267385 Representative total house income in the dwelling unit is $267385 +in.representative_income 267395 Representative total house income in the dwelling unit is $267395 +in.representative_income 267417 Representative total house income in the dwelling unit is $267417 +in.representative_income 267448 Representative total house income in the dwelling unit is $267448 +in.representative_income 267456 Representative total house income in the dwelling unit is $267456 +in.representative_income 267486 Representative total house income in the dwelling unit is $267486 +in.representative_income 267525 Representative total house income in the dwelling unit is $267525 +in.representative_income 267554 Representative total house income in the dwelling unit is $267554 +in.representative_income 267559 Representative total house income in the dwelling unit is $267559 +in.representative_income 267587 Representative total house income in the dwelling unit is $267587 +in.representative_income 267611 Representative total house income in the dwelling unit is $267611 +in.representative_income 267632 Representative total house income in the dwelling unit is $267632 +in.representative_income 267662 Representative total house income in the dwelling unit is $267662 +in.representative_income 267688 Representative total house income in the dwelling unit is $267688 +in.representative_income 267718 Representative total house income in the dwelling unit is $267718 +in.representative_income 267740 Representative total house income in the dwelling unit is $267740 +in.representative_income 267750 Representative total house income in the dwelling unit is $267750 +in.representative_income 267751 Representative total house income in the dwelling unit is $267751 +in.representative_income 267765 Representative total house income in the dwelling unit is $267765 +in.representative_income 267777 Representative total house income in the dwelling unit is $267777 +in.representative_income 267779 Representative total house income in the dwelling unit is $267779 +in.representative_income 267826 Representative total house income in the dwelling unit is $267826 +in.representative_income 267848 Representative total house income in the dwelling unit is $267848 +in.representative_income 267859 Representative total house income in the dwelling unit is $267859 +in.representative_income 267868 Representative total house income in the dwelling unit is $267868 +in.representative_income 267870 Representative total house income in the dwelling unit is $267870 +in.representative_income 267879 Representative total house income in the dwelling unit is $267879 +in.representative_income 267890 Representative total house income in the dwelling unit is $267890 +in.representative_income 267933 Representative total house income in the dwelling unit is $267933 +in.representative_income 267956 Representative total house income in the dwelling unit is $267956 +in.representative_income 267971 Representative total house income in the dwelling unit is $267971 +in.representative_income 267991 Representative total house income in the dwelling unit is $267991 +in.representative_income 268032 Representative total house income in the dwelling unit is $268032 +in.representative_income 268041 Representative total house income in the dwelling unit is $268041 +in.representative_income 268042 Representative total house income in the dwelling unit is $268042 +in.representative_income 268064 Representative total house income in the dwelling unit is $268064 +in.representative_income 268072 Representative total house income in the dwelling unit is $268072 +in.representative_income 268075 Representative total house income in the dwelling unit is $268075 +in.representative_income 268080 Representative total house income in the dwelling unit is $268080 +in.representative_income 268082 Representative total house income in the dwelling unit is $268082 +in.representative_income 268092 Representative total house income in the dwelling unit is $268092 +in.representative_income 268147 Representative total house income in the dwelling unit is $268147 +in.representative_income 268174 Representative total house income in the dwelling unit is $268174 +in.representative_income 268178 Representative total house income in the dwelling unit is $268178 +in.representative_income 268194 Representative total house income in the dwelling unit is $268194 +in.representative_income 268249 Representative total house income in the dwelling unit is $268249 +in.representative_income 268255 Representative total house income in the dwelling unit is $268255 +in.representative_income 268281 Representative total house income in the dwelling unit is $268281 +in.representative_income 268295 Representative total house income in the dwelling unit is $268295 +in.representative_income 268332 Representative total house income in the dwelling unit is $268332 +in.representative_income 268362 Representative total house income in the dwelling unit is $268362 +in.representative_income 268363 Representative total house income in the dwelling unit is $268363 +in.representative_income 268384 Representative total house income in the dwelling unit is $268384 +in.representative_income 268389 Representative total house income in the dwelling unit is $268389 +in.representative_income 268397 Representative total house income in the dwelling unit is $268397 +in.representative_income 268416 Representative total house income in the dwelling unit is $268416 +in.representative_income 268436 Representative total house income in the dwelling unit is $268436 +in.representative_income 268470 Representative total house income in the dwelling unit is $268470 +in.representative_income 268480 Representative total house income in the dwelling unit is $268480 +in.representative_income 268487 Representative total house income in the dwelling unit is $268487 +in.representative_income 268497 Representative total house income in the dwelling unit is $268497 +in.representative_income 268503 Representative total house income in the dwelling unit is $268503 +in.representative_income 268523 Representative total house income in the dwelling unit is $268523 +in.representative_income 268577 Representative total house income in the dwelling unit is $268577 +in.representative_income 268590 Representative total house income in the dwelling unit is $268590 +in.representative_income 268620 Representative total house income in the dwelling unit is $268620 +in.representative_income 268631 Representative total house income in the dwelling unit is $268631 +in.representative_income 268655 Representative total house income in the dwelling unit is $268655 +in.representative_income 268684 Representative total house income in the dwelling unit is $268684 +in.representative_income 268694 Representative total house income in the dwelling unit is $268694 +in.representative_income 268699 Representative total house income in the dwelling unit is $268699 +in.representative_income 268713 Representative total house income in the dwelling unit is $268713 +in.representative_income 268714 Representative total house income in the dwelling unit is $268714 +in.representative_income 268797 Representative total house income in the dwelling unit is $268797 +in.representative_income 268800 Representative total house income in the dwelling unit is $268800 +in.representative_income 268827 Representative total house income in the dwelling unit is $268827 +in.representative_income 268879 Representative total house income in the dwelling unit is $268879 +in.representative_income 268880 Representative total house income in the dwelling unit is $268880 +in.representative_income 268899 Representative total house income in the dwelling unit is $268899 +in.representative_income 268901 Representative total house income in the dwelling unit is $268901 +in.representative_income 268925 Representative total house income in the dwelling unit is $268925 +in.representative_income 268929 Representative total house income in the dwelling unit is $268929 +in.representative_income 268941 Representative total house income in the dwelling unit is $268941 +in.representative_income 269003 Representative total house income in the dwelling unit is $269003 +in.representative_income 269030 Representative total house income in the dwelling unit is $269030 +in.representative_income 269037 Representative total house income in the dwelling unit is $269037 +in.representative_income 269038 Representative total house income in the dwelling unit is $269038 +in.representative_income 269040 Representative total house income in the dwelling unit is $269040 +in.representative_income 269067 Representative total house income in the dwelling unit is $269067 +in.representative_income 269103 Representative total house income in the dwelling unit is $269103 +in.representative_income 269106 Representative total house income in the dwelling unit is $269106 +in.representative_income 269114 Representative total house income in the dwelling unit is $269114 +in.representative_income 269135 Representative total house income in the dwelling unit is $269135 +in.representative_income 269204 Representative total house income in the dwelling unit is $269204 +in.representative_income 269209 Representative total house income in the dwelling unit is $269209 +in.representative_income 269221 Representative total house income in the dwelling unit is $269221 +in.representative_income 269253 Representative total house income in the dwelling unit is $269253 +in.representative_income 269275 Representative total house income in the dwelling unit is $269275 +in.representative_income 269305 Representative total house income in the dwelling unit is $269305 +in.representative_income 269313 Representative total house income in the dwelling unit is $269313 +in.representative_income 269346 Representative total house income in the dwelling unit is $269346 +in.representative_income 269361 Representative total house income in the dwelling unit is $269361 +in.representative_income 269436 Representative total house income in the dwelling unit is $269436 +in.representative_income 269452 Representative total house income in the dwelling unit is $269452 +in.representative_income 269469 Representative total house income in the dwelling unit is $269469 +in.representative_income 269518 Representative total house income in the dwelling unit is $269518 +in.representative_income 269527 Representative total house income in the dwelling unit is $269527 +in.representative_income 269535 Representative total house income in the dwelling unit is $269535 +in.representative_income 269543 Representative total house income in the dwelling unit is $269543 +in.representative_income 269608 Representative total house income in the dwelling unit is $269608 +in.representative_income 269642 Representative total house income in the dwelling unit is $269642 +in.representative_income 269651 Representative total house income in the dwelling unit is $269651 +in.representative_income 269663 Representative total house income in the dwelling unit is $269663 +in.representative_income 269685 Representative total house income in the dwelling unit is $269685 +in.representative_income 269709 Representative total house income in the dwelling unit is $269709 +in.representative_income 269725 Representative total house income in the dwelling unit is $269725 +in.representative_income 269750 Representative total house income in the dwelling unit is $269750 +in.representative_income 269758 Representative total house income in the dwelling unit is $269758 +in.representative_income 269768 Representative total house income in the dwelling unit is $269768 +in.representative_income 269873 Representative total house income in the dwelling unit is $269873 +in.representative_income 269911 Representative total house income in the dwelling unit is $269911 +in.representative_income 269931 Representative total house income in the dwelling unit is $269931 +in.representative_income 269956 Representative total house income in the dwelling unit is $269956 +in.representative_income 269966 Representative total house income in the dwelling unit is $269966 +in.representative_income 269972 Representative total house income in the dwelling unit is $269972 +in.representative_income 269979 Representative total house income in the dwelling unit is $269979 +in.representative_income 269990 Representative total house income in the dwelling unit is $269990 +in.representative_income 270010 Representative total house income in the dwelling unit is $270010 +in.representative_income 270012 Representative total house income in the dwelling unit is $270012 +in.representative_income 270037 Representative total house income in the dwelling unit is $270037 +in.representative_income 270080 Representative total house income in the dwelling unit is $270080 +in.representative_income 270116 Representative total house income in the dwelling unit is $270116 +in.representative_income 270117 Representative total house income in the dwelling unit is $270117 +in.representative_income 270137 Representative total house income in the dwelling unit is $270137 +in.representative_income 270148 Representative total house income in the dwelling unit is $270148 +in.representative_income 270171 Representative total house income in the dwelling unit is $270171 +in.representative_income 270190 Representative total house income in the dwelling unit is $270190 +in.representative_income 270206 Representative total house income in the dwelling unit is $270206 +in.representative_income 270214 Representative total house income in the dwelling unit is $270214 +in.representative_income 270224 Representative total house income in the dwelling unit is $270224 +in.representative_income 270225 Representative total house income in the dwelling unit is $270225 +in.representative_income 270241 Representative total house income in the dwelling unit is $270241 +in.representative_income 270313 Representative total house income in the dwelling unit is $270313 +in.representative_income 270315 Representative total house income in the dwelling unit is $270315 +in.representative_income 270333 Representative total house income in the dwelling unit is $270333 +in.representative_income 270344 Representative total house income in the dwelling unit is $270344 +in.representative_income 270371 Representative total house income in the dwelling unit is $270371 +in.representative_income 270375 Representative total house income in the dwelling unit is $270375 +in.representative_income 270401 Representative total house income in the dwelling unit is $270401 +in.representative_income 270416 Representative total house income in the dwelling unit is $270416 +in.representative_income 270441 Representative total house income in the dwelling unit is $270441 +in.representative_income 270447 Representative total house income in the dwelling unit is $270447 +in.representative_income 270509 Representative total house income in the dwelling unit is $270509 +in.representative_income 270517 Representative total house income in the dwelling unit is $270517 +in.representative_income 270550 Representative total house income in the dwelling unit is $270550 +in.representative_income 270556 Representative total house income in the dwelling unit is $270556 +in.representative_income 270611 Representative total house income in the dwelling unit is $270611 +in.representative_income 270616 Representative total house income in the dwelling unit is $270616 +in.representative_income 270617 Representative total house income in the dwelling unit is $270617 +in.representative_income 270653 Representative total house income in the dwelling unit is $270653 +in.representative_income 270658 Representative total house income in the dwelling unit is $270658 +in.representative_income 270719 Representative total house income in the dwelling unit is $270719 +in.representative_income 270729 Representative total house income in the dwelling unit is $270729 +in.representative_income 270756 Representative total house income in the dwelling unit is $270756 +in.representative_income 270766 Representative total house income in the dwelling unit is $270766 +in.representative_income 270788 Representative total house income in the dwelling unit is $270788 +in.representative_income 270823 Representative total house income in the dwelling unit is $270823 +in.representative_income 270860 Representative total house income in the dwelling unit is $270860 +in.representative_income 270874 Representative total house income in the dwelling unit is $270874 +in.representative_income 270897 Representative total house income in the dwelling unit is $270897 +in.representative_income 270951 Representative total house income in the dwelling unit is $270951 +in.representative_income 270982 Representative total house income in the dwelling unit is $270982 +in.representative_income 270992 Representative total house income in the dwelling unit is $270992 +in.representative_income 271022 Representative total house income in the dwelling unit is $271022 +in.representative_income 271034 Representative total house income in the dwelling unit is $271034 +in.representative_income 271036 Representative total house income in the dwelling unit is $271036 +in.representative_income 271046 Representative total house income in the dwelling unit is $271046 +in.representative_income 271090 Representative total house income in the dwelling unit is $271090 +in.representative_income 271123 Representative total house income in the dwelling unit is $271123 +in.representative_income 271137 Representative total house income in the dwelling unit is $271137 +in.representative_income 271139 Representative total house income in the dwelling unit is $271139 +in.representative_income 271153 Representative total house income in the dwelling unit is $271153 +in.representative_income 271154 Representative total house income in the dwelling unit is $271154 +in.representative_income 271169 Representative total house income in the dwelling unit is $271169 +in.representative_income 271173 Representative total house income in the dwelling unit is $271173 +in.representative_income 271198 Representative total house income in the dwelling unit is $271198 +in.representative_income 271224 Representative total house income in the dwelling unit is $271224 +in.representative_income 271234 Representative total house income in the dwelling unit is $271234 +in.representative_income 271244 Representative total house income in the dwelling unit is $271244 +in.representative_income 271261 Representative total house income in the dwelling unit is $271261 +in.representative_income 271272 Representative total house income in the dwelling unit is $271272 +in.representative_income 271306 Representative total house income in the dwelling unit is $271306 +in.representative_income 271351 Representative total house income in the dwelling unit is $271351 +in.representative_income 271368 Representative total house income in the dwelling unit is $271368 +in.representative_income 271414 Representative total house income in the dwelling unit is $271414 +in.representative_income 271426 Representative total house income in the dwelling unit is $271426 +in.representative_income 271456 Representative total house income in the dwelling unit is $271456 +in.representative_income 271479 Representative total house income in the dwelling unit is $271479 +in.representative_income 271522 Representative total house income in the dwelling unit is $271522 +in.representative_income 271527 Representative total house income in the dwelling unit is $271527 +in.representative_income 271561 Representative total house income in the dwelling unit is $271561 +in.representative_income 271581 Representative total house income in the dwelling unit is $271581 +in.representative_income 271582 Representative total house income in the dwelling unit is $271582 +in.representative_income 271583 Representative total house income in the dwelling unit is $271583 +in.representative_income 271626 Representative total house income in the dwelling unit is $271626 +in.representative_income 271628 Representative total house income in the dwelling unit is $271628 +in.representative_income 271630 Representative total house income in the dwelling unit is $271630 +in.representative_income 271666 Representative total house income in the dwelling unit is $271666 +in.representative_income 271690 Representative total house income in the dwelling unit is $271690 +in.representative_income 271725 Representative total house income in the dwelling unit is $271725 +in.representative_income 271729 Representative total house income in the dwelling unit is $271729 +in.representative_income 271738 Representative total house income in the dwelling unit is $271738 +in.representative_income 271772 Representative total house income in the dwelling unit is $271772 +in.representative_income 271788 Representative total house income in the dwelling unit is $271788 +in.representative_income 271797 Representative total house income in the dwelling unit is $271797 +in.representative_income 271846 Representative total house income in the dwelling unit is $271846 +in.representative_income 271931 Representative total house income in the dwelling unit is $271931 +in.representative_income 271983 Representative total house income in the dwelling unit is $271983 +in.representative_income 271994 Representative total house income in the dwelling unit is $271994 +in.representative_income 272011 Representative total house income in the dwelling unit is $272011 +in.representative_income 272032 Representative total house income in the dwelling unit is $272032 +in.representative_income 272062 Representative total house income in the dwelling unit is $272062 +in.representative_income 272089 Representative total house income in the dwelling unit is $272089 +in.representative_income 272098 Representative total house income in the dwelling unit is $272098 +in.representative_income 272119 Representative total house income in the dwelling unit is $272119 +in.representative_income 272133 Representative total house income in the dwelling unit is $272133 +in.representative_income 272138 Representative total house income in the dwelling unit is $272138 +in.representative_income 272163 Representative total house income in the dwelling unit is $272163 +in.representative_income 272180 Representative total house income in the dwelling unit is $272180 +in.representative_income 272204 Representative total house income in the dwelling unit is $272204 +in.representative_income 272227 Representative total house income in the dwelling unit is $272227 +in.representative_income 272234 Representative total house income in the dwelling unit is $272234 +in.representative_income 272263 Representative total house income in the dwelling unit is $272263 +in.representative_income 272279 Representative total house income in the dwelling unit is $272279 +in.representative_income 272299 Representative total house income in the dwelling unit is $272299 +in.representative_income 272303 Representative total house income in the dwelling unit is $272303 +in.representative_income 272334 Representative total house income in the dwelling unit is $272334 +in.representative_income 272335 Representative total house income in the dwelling unit is $272335 +in.representative_income 272407 Representative total house income in the dwelling unit is $272407 +in.representative_income 272436 Representative total house income in the dwelling unit is $272436 +in.representative_income 272480 Representative total house income in the dwelling unit is $272480 +in.representative_income 272495 Representative total house income in the dwelling unit is $272495 +in.representative_income 272510 Representative total house income in the dwelling unit is $272510 +in.representative_income 272537 Representative total house income in the dwelling unit is $272537 +in.representative_income 272559 Representative total house income in the dwelling unit is $272559 +in.representative_income 272616 Representative total house income in the dwelling unit is $272616 +in.representative_income 272656 Representative total house income in the dwelling unit is $272656 +in.representative_income 272679 Representative total house income in the dwelling unit is $272679 +in.representative_income 272721 Representative total house income in the dwelling unit is $272721 +in.representative_income 272739 Representative total house income in the dwelling unit is $272739 +in.representative_income 272753 Representative total house income in the dwelling unit is $272753 +in.representative_income 272763 Representative total house income in the dwelling unit is $272763 +in.representative_income 272818 Representative total house income in the dwelling unit is $272818 +in.representative_income 272819 Representative total house income in the dwelling unit is $272819 +in.representative_income 272860 Representative total house income in the dwelling unit is $272860 +in.representative_income 272913 Representative total house income in the dwelling unit is $272913 +in.representative_income 272922 Representative total house income in the dwelling unit is $272922 +in.representative_income 272941 Representative total house income in the dwelling unit is $272941 +in.representative_income 272943 Representative total house income in the dwelling unit is $272943 +in.representative_income 272978 Representative total house income in the dwelling unit is $272978 +in.representative_income 273053 Representative total house income in the dwelling unit is $273053 +in.representative_income 273067 Representative total house income in the dwelling unit is $273067 +in.representative_income 273080 Representative total house income in the dwelling unit is $273080 +in.representative_income 273093 Representative total house income in the dwelling unit is $273093 +in.representative_income 273129 Representative total house income in the dwelling unit is $273129 +in.representative_income 273142 Representative total house income in the dwelling unit is $273142 +in.representative_income 273143 Representative total house income in the dwelling unit is $273143 +in.representative_income 273206 Representative total house income in the dwelling unit is $273206 +in.representative_income 273224 Representative total house income in the dwelling unit is $273224 +in.representative_income 273242 Representative total house income in the dwelling unit is $273242 +in.representative_income 273244 Representative total house income in the dwelling unit is $273244 +in.representative_income 273300 Representative total house income in the dwelling unit is $273300 +in.representative_income 273335 Representative total house income in the dwelling unit is $273335 +in.representative_income 273345 Representative total house income in the dwelling unit is $273345 +in.representative_income 273359 Representative total house income in the dwelling unit is $273359 +in.representative_income 273366 Representative total house income in the dwelling unit is $273366 +in.representative_income 273407 Representative total house income in the dwelling unit is $273407 +in.representative_income 273416 Representative total house income in the dwelling unit is $273416 +in.representative_income 273438 Representative total house income in the dwelling unit is $273438 +in.representative_income 273459 Representative total house income in the dwelling unit is $273459 +in.representative_income 273462 Representative total house income in the dwelling unit is $273462 +in.representative_income 273467 Representative total house income in the dwelling unit is $273467 +in.representative_income 273490 Representative total house income in the dwelling unit is $273490 +in.representative_income 273532 Representative total house income in the dwelling unit is $273532 +in.representative_income 273541 Representative total house income in the dwelling unit is $273541 +in.representative_income 273547 Representative total house income in the dwelling unit is $273547 +in.representative_income 273565 Representative total house income in the dwelling unit is $273565 +in.representative_income 273575 Representative total house income in the dwelling unit is $273575 +in.representative_income 273623 Representative total house income in the dwelling unit is $273623 +in.representative_income 273629 Representative total house income in the dwelling unit is $273629 +in.representative_income 273648 Representative total house income in the dwelling unit is $273648 +in.representative_income 273670 Representative total house income in the dwelling unit is $273670 +in.representative_income 273696 Representative total house income in the dwelling unit is $273696 +in.representative_income 273729 Representative total house income in the dwelling unit is $273729 +in.representative_income 273733 Representative total house income in the dwelling unit is $273733 +in.representative_income 273749 Representative total house income in the dwelling unit is $273749 +in.representative_income 273771 Representative total house income in the dwelling unit is $273771 +in.representative_income 273775 Representative total house income in the dwelling unit is $273775 +in.representative_income 273791 Representative total house income in the dwelling unit is $273791 +in.representative_income 273850 Representative total house income in the dwelling unit is $273850 +in.representative_income 273881 Representative total house income in the dwelling unit is $273881 +in.representative_income 273899 Representative total house income in the dwelling unit is $273899 +in.representative_income 273943 Representative total house income in the dwelling unit is $273943 +in.representative_income 273951 Representative total house income in the dwelling unit is $273951 +in.representative_income 274007 Representative total house income in the dwelling unit is $274007 +in.representative_income 274024 Representative total house income in the dwelling unit is $274024 +in.representative_income 274042 Representative total house income in the dwelling unit is $274042 +in.representative_income 274052 Representative total house income in the dwelling unit is $274052 +in.representative_income 274072 Representative total house income in the dwelling unit is $274072 +in.representative_income 274092 Representative total house income in the dwelling unit is $274092 +in.representative_income 274153 Representative total house income in the dwelling unit is $274153 +in.representative_income 274159 Representative total house income in the dwelling unit is $274159 +in.representative_income 274160 Representative total house income in the dwelling unit is $274160 +in.representative_income 274197 Representative total house income in the dwelling unit is $274197 +in.representative_income 274223 Representative total house income in the dwelling unit is $274223 +in.representative_income 274251 Representative total house income in the dwelling unit is $274251 +in.representative_income 274254 Representative total house income in the dwelling unit is $274254 +in.representative_income 274264 Representative total house income in the dwelling unit is $274264 +in.representative_income 274266 Representative total house income in the dwelling unit is $274266 +in.representative_income 274271 Representative total house income in the dwelling unit is $274271 +in.representative_income 274303 Representative total house income in the dwelling unit is $274303 +in.representative_income 274366 Representative total house income in the dwelling unit is $274366 +in.representative_income 274373 Representative total house income in the dwelling unit is $274373 +in.representative_income 274408 Representative total house income in the dwelling unit is $274408 +in.representative_income 274430 Representative total house income in the dwelling unit is $274430 +in.representative_income 274439 Representative total house income in the dwelling unit is $274439 +in.representative_income 274469 Representative total house income in the dwelling unit is $274469 +in.representative_income 274548 Representative total house income in the dwelling unit is $274548 +in.representative_income 274573 Representative total house income in the dwelling unit is $274573 +in.representative_income 274577 Representative total house income in the dwelling unit is $274577 +in.representative_income 274620 Representative total house income in the dwelling unit is $274620 +in.representative_income 274656 Representative total house income in the dwelling unit is $274656 +in.representative_income 274658 Representative total house income in the dwelling unit is $274658 +in.representative_income 274676 Representative total house income in the dwelling unit is $274676 +in.representative_income 274725 Representative total house income in the dwelling unit is $274725 +in.representative_income 274759 Representative total house income in the dwelling unit is $274759 +in.representative_income 274779 Representative total house income in the dwelling unit is $274779 +in.representative_income 274803 Representative total house income in the dwelling unit is $274803 +in.representative_income 274814 Representative total house income in the dwelling unit is $274814 +in.representative_income 274857 Representative total house income in the dwelling unit is $274857 +in.representative_income 274860 Representative total house income in the dwelling unit is $274860 +in.representative_income 274882 Representative total house income in the dwelling unit is $274882 +in.representative_income 274941 Representative total house income in the dwelling unit is $274941 +in.representative_income 274961 Representative total house income in the dwelling unit is $274961 +in.representative_income 274979 Representative total house income in the dwelling unit is $274979 +in.representative_income 274985 Representative total house income in the dwelling unit is $274985 +in.representative_income 275062 Representative total house income in the dwelling unit is $275062 +in.representative_income 275077 Representative total house income in the dwelling unit is $275077 +in.representative_income 275104 Representative total house income in the dwelling unit is $275104 +in.representative_income 275147 Representative total house income in the dwelling unit is $275147 +in.representative_income 275164 Representative total house income in the dwelling unit is $275164 +in.representative_income 275252 Representative total house income in the dwelling unit is $275252 +in.representative_income 275265 Representative total house income in the dwelling unit is $275265 +in.representative_income 275295 Representative total house income in the dwelling unit is $275295 +in.representative_income 275304 Representative total house income in the dwelling unit is $275304 +in.representative_income 275328 Representative total house income in the dwelling unit is $275328 +in.representative_income 275358 Representative total house income in the dwelling unit is $275358 +in.representative_income 275366 Representative total house income in the dwelling unit is $275366 +in.representative_income 275397 Representative total house income in the dwelling unit is $275397 +in.representative_income 275412 Representative total house income in the dwelling unit is $275412 +in.representative_income 275421 Representative total house income in the dwelling unit is $275421 +in.representative_income 275463 Representative total house income in the dwelling unit is $275463 +in.representative_income 275480 Representative total house income in the dwelling unit is $275480 +in.representative_income 275501 Representative total house income in the dwelling unit is $275501 +in.representative_income 275520 Representative total house income in the dwelling unit is $275520 +in.representative_income 275563 Representative total house income in the dwelling unit is $275563 +in.representative_income 275568 Representative total house income in the dwelling unit is $275568 +in.representative_income 275574 Representative total house income in the dwelling unit is $275574 +in.representative_income 275604 Representative total house income in the dwelling unit is $275604 +in.representative_income 275620 Representative total house income in the dwelling unit is $275620 +in.representative_income 275674 Representative total house income in the dwelling unit is $275674 +in.representative_income 275736 Representative total house income in the dwelling unit is $275736 +in.representative_income 275751 Representative total house income in the dwelling unit is $275751 +in.representative_income 275769 Representative total house income in the dwelling unit is $275769 +in.representative_income 275770 Representative total house income in the dwelling unit is $275770 +in.representative_income 275790 Representative total house income in the dwelling unit is $275790 +in.representative_income 275811 Representative total house income in the dwelling unit is $275811 +in.representative_income 275877 Representative total house income in the dwelling unit is $275877 +in.representative_income 275885 Representative total house income in the dwelling unit is $275885 +in.representative_income 275902 Representative total house income in the dwelling unit is $275902 +in.representative_income 275914 Representative total house income in the dwelling unit is $275914 +in.representative_income 275937 Representative total house income in the dwelling unit is $275937 +in.representative_income 275972 Representative total house income in the dwelling unit is $275972 +in.representative_income 275983 Representative total house income in the dwelling unit is $275983 +in.representative_income 275990 Representative total house income in the dwelling unit is $275990 +in.representative_income 276016 Representative total house income in the dwelling unit is $276016 +in.representative_income 276073 Representative total house income in the dwelling unit is $276073 +in.representative_income 276096 Representative total house income in the dwelling unit is $276096 +in.representative_income 276127 Representative total house income in the dwelling unit is $276127 +in.representative_income 276168 Representative total house income in the dwelling unit is $276168 +in.representative_income 276174 Representative total house income in the dwelling unit is $276174 +in.representative_income 276198 Representative total house income in the dwelling unit is $276198 +in.representative_income 276275 Representative total house income in the dwelling unit is $276275 +in.representative_income 276306 Representative total house income in the dwelling unit is $276306 +in.representative_income 276359 Representative total house income in the dwelling unit is $276359 +in.representative_income 276413 Representative total house income in the dwelling unit is $276413 +in.representative_income 276430 Representative total house income in the dwelling unit is $276430 +in.representative_income 276460 Representative total house income in the dwelling unit is $276460 +in.representative_income 276492 Representative total house income in the dwelling unit is $276492 +in.representative_income 276525 Representative total house income in the dwelling unit is $276525 +in.representative_income 276532 Representative total house income in the dwelling unit is $276532 +in.representative_income 276598 Representative total house income in the dwelling unit is $276598 +in.representative_income 276600 Representative total house income in the dwelling unit is $276600 +in.representative_income 276655 Representative total house income in the dwelling unit is $276655 +in.representative_income 276679 Representative total house income in the dwelling unit is $276679 +in.representative_income 276682 Representative total house income in the dwelling unit is $276682 +in.representative_income 276708 Representative total house income in the dwelling unit is $276708 +in.representative_income 276728 Representative total house income in the dwelling unit is $276728 +in.representative_income 276735 Representative total house income in the dwelling unit is $276735 +in.representative_income 276739 Representative total house income in the dwelling unit is $276739 +in.representative_income 276768 Representative total house income in the dwelling unit is $276768 +in.representative_income 276780 Representative total house income in the dwelling unit is $276780 +in.representative_income 276834 Representative total house income in the dwelling unit is $276834 +in.representative_income 276842 Representative total house income in the dwelling unit is $276842 +in.representative_income 276888 Representative total house income in the dwelling unit is $276888 +in.representative_income 276925 Representative total house income in the dwelling unit is $276925 +in.representative_income 276945 Representative total house income in the dwelling unit is $276945 +in.representative_income 276950 Representative total house income in the dwelling unit is $276950 +in.representative_income 276971 Representative total house income in the dwelling unit is $276971 +in.representative_income 276982 Representative total house income in the dwelling unit is $276982 +in.representative_income 277013 Representative total house income in the dwelling unit is $277013 +in.representative_income 277033 Representative total house income in the dwelling unit is $277033 +in.representative_income 277048 Representative total house income in the dwelling unit is $277048 +in.representative_income 277057 Representative total house income in the dwelling unit is $277057 +in.representative_income 277083 Representative total house income in the dwelling unit is $277083 +in.representative_income 277141 Representative total house income in the dwelling unit is $277141 +in.representative_income 277151 Representative total house income in the dwelling unit is $277151 +in.representative_income 277164 Representative total house income in the dwelling unit is $277164 +in.representative_income 277180 Representative total house income in the dwelling unit is $277180 +in.representative_income 277184 Representative total house income in the dwelling unit is $277184 +in.representative_income 277244 Representative total house income in the dwelling unit is $277244 +in.representative_income 277361 Representative total house income in the dwelling unit is $277361 +in.representative_income 277386 Representative total house income in the dwelling unit is $277386 +in.representative_income 277405 Representative total house income in the dwelling unit is $277405 +in.representative_income 277461 Representative total house income in the dwelling unit is $277461 +in.representative_income 277487 Representative total house income in the dwelling unit is $277487 +in.representative_income 277588 Representative total house income in the dwelling unit is $277588 +in.representative_income 277594 Representative total house income in the dwelling unit is $277594 +in.representative_income 277667 Representative total house income in the dwelling unit is $277667 +in.representative_income 277681 Representative total house income in the dwelling unit is $277681 +in.representative_income 277685 Representative total house income in the dwelling unit is $277685 +in.representative_income 277689 Representative total house income in the dwelling unit is $277689 +in.representative_income 277781 Representative total house income in the dwelling unit is $277781 +in.representative_income 277783 Representative total house income in the dwelling unit is $277783 +in.representative_income 277789 Representative total house income in the dwelling unit is $277789 +in.representative_income 277790 Representative total house income in the dwelling unit is $277790 +in.representative_income 277808 Representative total house income in the dwelling unit is $277808 +in.representative_income 277840 Representative total house income in the dwelling unit is $277840 +in.representative_income 277873 Representative total house income in the dwelling unit is $277873 +in.representative_income 277889 Representative total house income in the dwelling unit is $277889 +in.representative_income 277891 Representative total house income in the dwelling unit is $277891 +in.representative_income 277895 Representative total house income in the dwelling unit is $277895 +in.representative_income 277897 Representative total house income in the dwelling unit is $277897 +in.representative_income 277916 Representative total house income in the dwelling unit is $277916 +in.representative_income 277977 Representative total house income in the dwelling unit is $277977 +in.representative_income 277994 Representative total house income in the dwelling unit is $277994 +in.representative_income 278002 Representative total house income in the dwelling unit is $278002 +in.representative_income 278024 Representative total house income in the dwelling unit is $278024 +in.representative_income 278048 Representative total house income in the dwelling unit is $278048 +in.representative_income 278077 Representative total house income in the dwelling unit is $278077 +in.representative_income 278080 Representative total house income in the dwelling unit is $278080 +in.representative_income 278093 Representative total house income in the dwelling unit is $278093 +in.representative_income 278099 Representative total house income in the dwelling unit is $278099 +in.representative_income 278113 Representative total house income in the dwelling unit is $278113 +in.representative_income 278182 Representative total house income in the dwelling unit is $278182 +in.representative_income 278205 Representative total house income in the dwelling unit is $278205 +in.representative_income 278221 Representative total house income in the dwelling unit is $278221 +in.representative_income 278238 Representative total house income in the dwelling unit is $278238 +in.representative_income 278255 Representative total house income in the dwelling unit is $278255 +in.representative_income 278279 Representative total house income in the dwelling unit is $278279 +in.representative_income 278295 Representative total house income in the dwelling unit is $278295 +in.representative_income 278329 Representative total house income in the dwelling unit is $278329 +in.representative_income 278345 Representative total house income in the dwelling unit is $278345 +in.representative_income 278352 Representative total house income in the dwelling unit is $278352 +in.representative_income 278416 Representative total house income in the dwelling unit is $278416 +in.representative_income 278427 Representative total house income in the dwelling unit is $278427 +in.representative_income 278492 Representative total house income in the dwelling unit is $278492 +in.representative_income 278497 Representative total house income in the dwelling unit is $278497 +in.representative_income 278501 Representative total house income in the dwelling unit is $278501 +in.representative_income 278502 Representative total house income in the dwelling unit is $278502 +in.representative_income 278560 Representative total house income in the dwelling unit is $278560 +in.representative_income 278574 Representative total house income in the dwelling unit is $278574 +in.representative_income 278627 Representative total house income in the dwelling unit is $278627 +in.representative_income 278653 Representative total house income in the dwelling unit is $278653 +in.representative_income 278698 Representative total house income in the dwelling unit is $278698 +in.representative_income 278699 Representative total house income in the dwelling unit is $278699 +in.representative_income 278732 Representative total house income in the dwelling unit is $278732 +in.representative_income 278761 Representative total house income in the dwelling unit is $278761 +in.representative_income 278774 Representative total house income in the dwelling unit is $278774 +in.representative_income 278800 Representative total house income in the dwelling unit is $278800 +in.representative_income 278801 Representative total house income in the dwelling unit is $278801 +in.representative_income 278815 Representative total house income in the dwelling unit is $278815 +in.representative_income 278820 Representative total house income in the dwelling unit is $278820 +in.representative_income 278837 Representative total house income in the dwelling unit is $278837 +in.representative_income 278905 Representative total house income in the dwelling unit is $278905 +in.representative_income 278944 Representative total house income in the dwelling unit is $278944 +in.representative_income 278989 Representative total house income in the dwelling unit is $278989 +in.representative_income 279002 Representative total house income in the dwelling unit is $279002 +in.representative_income 279008 Representative total house income in the dwelling unit is $279008 +in.representative_income 279049 Representative total house income in the dwelling unit is $279049 +in.representative_income 279085 Representative total house income in the dwelling unit is $279085 +in.representative_income 279097 Representative total house income in the dwelling unit is $279097 +in.representative_income 279101 Representative total house income in the dwelling unit is $279101 +in.representative_income 279103 Representative total house income in the dwelling unit is $279103 +in.representative_income 279111 Representative total house income in the dwelling unit is $279111 +in.representative_income 279118 Representative total house income in the dwelling unit is $279118 +in.representative_income 279154 Representative total house income in the dwelling unit is $279154 +in.representative_income 279193 Representative total house income in the dwelling unit is $279193 +in.representative_income 279204 Representative total house income in the dwelling unit is $279204 +in.representative_income 279260 Representative total house income in the dwelling unit is $279260 +in.representative_income 279280 Representative total house income in the dwelling unit is $279280 +in.representative_income 279311 Representative total house income in the dwelling unit is $279311 +in.representative_income 279317 Representative total house income in the dwelling unit is $279317 +in.representative_income 279335 Representative total house income in the dwelling unit is $279335 +in.representative_income 279406 Representative total house income in the dwelling unit is $279406 +in.representative_income 279419 Representative total house income in the dwelling unit is $279419 +in.representative_income 279420 Representative total house income in the dwelling unit is $279420 +in.representative_income 279470 Representative total house income in the dwelling unit is $279470 +in.representative_income 279483 Representative total house income in the dwelling unit is $279483 +in.representative_income 279507 Representative total house income in the dwelling unit is $279507 +in.representative_income 279523 Representative total house income in the dwelling unit is $279523 +in.representative_income 279524 Representative total house income in the dwelling unit is $279524 +in.representative_income 279534 Representative total house income in the dwelling unit is $279534 +in.representative_income 279576 Representative total house income in the dwelling unit is $279576 +in.representative_income 279634 Representative total house income in the dwelling unit is $279634 +in.representative_income 279682 Representative total house income in the dwelling unit is $279682 +in.representative_income 279709 Representative total house income in the dwelling unit is $279709 +in.representative_income 279730 Representative total house income in the dwelling unit is $279730 +in.representative_income 279781 Representative total house income in the dwelling unit is $279781 +in.representative_income 279810 Representative total house income in the dwelling unit is $279810 +in.representative_income 279841 Representative total house income in the dwelling unit is $279841 +in.representative_income 279892 Representative total house income in the dwelling unit is $279892 +in.representative_income 279921 Representative total house income in the dwelling unit is $279921 +in.representative_income 279936 Representative total house income in the dwelling unit is $279936 +in.representative_income 279955 Representative total house income in the dwelling unit is $279955 +in.representative_income 280012 Representative total house income in the dwelling unit is $280012 +in.representative_income 280039 Representative total house income in the dwelling unit is $280039 +in.representative_income 280058 Representative total house income in the dwelling unit is $280058 +in.representative_income 280084 Representative total house income in the dwelling unit is $280084 +in.representative_income 280103 Representative total house income in the dwelling unit is $280103 +in.representative_income 280113 Representative total house income in the dwelling unit is $280113 +in.representative_income 280143 Representative total house income in the dwelling unit is $280143 +in.representative_income 280170 Representative total house income in the dwelling unit is $280170 +in.representative_income 280174 Representative total house income in the dwelling unit is $280174 +in.representative_income 280209 Representative total house income in the dwelling unit is $280209 +in.representative_income 280314 Representative total house income in the dwelling unit is $280314 +in.representative_income 280348 Representative total house income in the dwelling unit is $280348 +in.representative_income 280382 Representative total house income in the dwelling unit is $280382 +in.representative_income 280416 Representative total house income in the dwelling unit is $280416 +in.representative_income 280492 Representative total house income in the dwelling unit is $280492 +in.representative_income 280525 Representative total house income in the dwelling unit is $280525 +in.representative_income 280555 Representative total house income in the dwelling unit is $280555 +in.representative_income 280599 Representative total house income in the dwelling unit is $280599 +in.representative_income 280618 Representative total house income in the dwelling unit is $280618 +in.representative_income 280630 Representative total house income in the dwelling unit is $280630 +in.representative_income 280658 Representative total house income in the dwelling unit is $280658 +in.representative_income 280707 Representative total house income in the dwelling unit is $280707 +in.representative_income 280736 Representative total house income in the dwelling unit is $280736 +in.representative_income 280762 Representative total house income in the dwelling unit is $280762 +in.representative_income 280815 Representative total house income in the dwelling unit is $280815 +in.representative_income 280820 Representative total house income in the dwelling unit is $280820 +in.representative_income 280865 Representative total house income in the dwelling unit is $280865 +in.representative_income 280916 Representative total house income in the dwelling unit is $280916 +in.representative_income 280922 Representative total house income in the dwelling unit is $280922 +in.representative_income 280947 Representative total house income in the dwelling unit is $280947 +in.representative_income 280967 Representative total house income in the dwelling unit is $280967 +in.representative_income 280976 Representative total house income in the dwelling unit is $280976 +in.representative_income 281022 Representative total house income in the dwelling unit is $281022 +in.representative_income 281029 Representative total house income in the dwelling unit is $281029 +in.representative_income 281052 Representative total house income in the dwelling unit is $281052 +in.representative_income 281053 Representative total house income in the dwelling unit is $281053 +in.representative_income 281123 Representative total house income in the dwelling unit is $281123 +in.representative_income 281174 Representative total house income in the dwelling unit is $281174 +in.representative_income 281224 Representative total house income in the dwelling unit is $281224 +in.representative_income 281244 Representative total house income in the dwelling unit is $281244 +in.representative_income 281246 Representative total house income in the dwelling unit is $281246 +in.representative_income 281263 Representative total house income in the dwelling unit is $281263 +in.representative_income 281277 Representative total house income in the dwelling unit is $281277 +in.representative_income 281297 Representative total house income in the dwelling unit is $281297 +in.representative_income 281339 Representative total house income in the dwelling unit is $281339 +in.representative_income 281351 Representative total house income in the dwelling unit is $281351 +in.representative_income 281354 Representative total house income in the dwelling unit is $281354 +in.representative_income 281368 Representative total house income in the dwelling unit is $281368 +in.representative_income 281381 Representative total house income in the dwelling unit is $281381 +in.representative_income 281426 Representative total house income in the dwelling unit is $281426 +in.representative_income 281560 Representative total house income in the dwelling unit is $281560 +in.representative_income 281570 Representative total house income in the dwelling unit is $281570 +in.representative_income 281577 Representative total house income in the dwelling unit is $281577 +in.representative_income 281578 Representative total house income in the dwelling unit is $281578 +in.representative_income 281580 Representative total house income in the dwelling unit is $281580 +in.representative_income 281586 Representative total house income in the dwelling unit is $281586 +in.representative_income 281596 Representative total house income in the dwelling unit is $281596 +in.representative_income 281628 Representative total house income in the dwelling unit is $281628 +in.representative_income 281653 Representative total house income in the dwelling unit is $281653 +in.representative_income 281673 Representative total house income in the dwelling unit is $281673 +in.representative_income 281677 Representative total house income in the dwelling unit is $281677 +in.representative_income 281690 Representative total house income in the dwelling unit is $281690 +in.representative_income 281726 Representative total house income in the dwelling unit is $281726 +in.representative_income 281729 Representative total house income in the dwelling unit is $281729 +in.representative_income 281791 Representative total house income in the dwelling unit is $281791 +in.representative_income 281830 Representative total house income in the dwelling unit is $281830 +in.representative_income 281841 Representative total house income in the dwelling unit is $281841 +in.representative_income 281888 Representative total house income in the dwelling unit is $281888 +in.representative_income 281937 Representative total house income in the dwelling unit is $281937 +in.representative_income 281978 Representative total house income in the dwelling unit is $281978 +in.representative_income 281999 Representative total house income in the dwelling unit is $281999 +in.representative_income 282001 Representative total house income in the dwelling unit is $282001 +in.representative_income 282003 Representative total house income in the dwelling unit is $282003 +in.representative_income 282102 Representative total house income in the dwelling unit is $282102 +in.representative_income 282107 Representative total house income in the dwelling unit is $282107 +in.representative_income 282111 Representative total house income in the dwelling unit is $282111 +in.representative_income 282123 Representative total house income in the dwelling unit is $282123 +in.representative_income 282134 Representative total house income in the dwelling unit is $282134 +in.representative_income 282205 Representative total house income in the dwelling unit is $282205 +in.representative_income 282213 Representative total house income in the dwelling unit is $282213 +in.representative_income 282288 Representative total house income in the dwelling unit is $282288 +in.representative_income 282317 Representative total house income in the dwelling unit is $282317 +in.representative_income 282318 Representative total house income in the dwelling unit is $282318 +in.representative_income 282336 Representative total house income in the dwelling unit is $282336 +in.representative_income 282356 Representative total house income in the dwelling unit is $282356 +in.representative_income 282412 Representative total house income in the dwelling unit is $282412 +in.representative_income 282423 Representative total house income in the dwelling unit is $282423 +in.representative_income 282425 Representative total house income in the dwelling unit is $282425 +in.representative_income 282435 Representative total house income in the dwelling unit is $282435 +in.representative_income 282437 Representative total house income in the dwelling unit is $282437 +in.representative_income 282489 Representative total house income in the dwelling unit is $282489 +in.representative_income 282508 Representative total house income in the dwelling unit is $282508 +in.representative_income 282514 Representative total house income in the dwelling unit is $282514 +in.representative_income 282529 Representative total house income in the dwelling unit is $282529 +in.representative_income 282538 Representative total house income in the dwelling unit is $282538 +in.representative_income 282543 Representative total house income in the dwelling unit is $282543 +in.representative_income 282618 Representative total house income in the dwelling unit is $282618 +in.representative_income 282634 Representative total house income in the dwelling unit is $282634 +in.representative_income 282650 Representative total house income in the dwelling unit is $282650 +in.representative_income 282651 Representative total house income in the dwelling unit is $282651 +in.representative_income 282709 Representative total house income in the dwelling unit is $282709 +in.representative_income 282721 Representative total house income in the dwelling unit is $282721 +in.representative_income 282759 Representative total house income in the dwelling unit is $282759 +in.representative_income 282824 Representative total house income in the dwelling unit is $282824 +in.representative_income 282841 Representative total house income in the dwelling unit is $282841 +in.representative_income 282846 Representative total house income in the dwelling unit is $282846 +in.representative_income 282867 Representative total house income in the dwelling unit is $282867 +in.representative_income 282877 Representative total house income in the dwelling unit is $282877 +in.representative_income 282891 Representative total house income in the dwelling unit is $282891 +in.representative_income 282928 Representative total house income in the dwelling unit is $282928 +in.representative_income 282942 Representative total house income in the dwelling unit is $282942 +in.representative_income 282951 Representative total house income in the dwelling unit is $282951 +in.representative_income 282961 Representative total house income in the dwelling unit is $282961 +in.representative_income 283031 Representative total house income in the dwelling unit is $283031 +in.representative_income 283043 Representative total house income in the dwelling unit is $283043 +in.representative_income 283069 Representative total house income in the dwelling unit is $283069 +in.representative_income 283073 Representative total house income in the dwelling unit is $283073 +in.representative_income 283083 Representative total house income in the dwelling unit is $283083 +in.representative_income 283115 Representative total house income in the dwelling unit is $283115 +in.representative_income 283133 Representative total house income in the dwelling unit is $283133 +in.representative_income 283161 Representative total house income in the dwelling unit is $283161 +in.representative_income 283176 Representative total house income in the dwelling unit is $283176 +in.representative_income 283192 Representative total house income in the dwelling unit is $283192 +in.representative_income 283194 Representative total house income in the dwelling unit is $283194 +in.representative_income 283267 Representative total house income in the dwelling unit is $283267 +in.representative_income 283272 Representative total house income in the dwelling unit is $283272 +in.representative_income 283289 Representative total house income in the dwelling unit is $283289 +in.representative_income 283300 Representative total house income in the dwelling unit is $283300 +in.representative_income 283340 Representative total house income in the dwelling unit is $283340 +in.representative_income 283346 Representative total house income in the dwelling unit is $283346 +in.representative_income 283390 Representative total house income in the dwelling unit is $283390 +in.representative_income 283443 Representative total house income in the dwelling unit is $283443 +in.representative_income 283447 Representative total house income in the dwelling unit is $283447 +in.representative_income 283478 Representative total house income in the dwelling unit is $283478 +in.representative_income 283498 Representative total house income in the dwelling unit is $283498 +in.representative_income 283547 Representative total house income in the dwelling unit is $283547 +in.representative_income 283548 Representative total house income in the dwelling unit is $283548 +in.representative_income 283584 Representative total house income in the dwelling unit is $283584 +in.representative_income 283605 Representative total house income in the dwelling unit is $283605 +in.representative_income 283623 Representative total house income in the dwelling unit is $283623 +in.representative_income 283637 Representative total house income in the dwelling unit is $283637 +in.representative_income 283649 Representative total house income in the dwelling unit is $283649 +in.representative_income 283653 Representative total house income in the dwelling unit is $283653 +in.representative_income 283669 Representative total house income in the dwelling unit is $283669 +in.representative_income 283689 Representative total house income in the dwelling unit is $283689 +in.representative_income 283713 Representative total house income in the dwelling unit is $283713 +in.representative_income 283731 Representative total house income in the dwelling unit is $283731 +in.representative_income 283742 Representative total house income in the dwelling unit is $283742 +in.representative_income 283750 Representative total house income in the dwelling unit is $283750 +in.representative_income 283773 Representative total house income in the dwelling unit is $283773 +in.representative_income 283820 Representative total house income in the dwelling unit is $283820 +in.representative_income 283834 Representative total house income in the dwelling unit is $283834 +in.representative_income 283851 Representative total house income in the dwelling unit is $283851 +in.representative_income 283899 Representative total house income in the dwelling unit is $283899 +in.representative_income 284006 Representative total house income in the dwelling unit is $284006 +in.representative_income 284035 Representative total house income in the dwelling unit is $284035 +in.representative_income 284053 Representative total house income in the dwelling unit is $284053 +in.representative_income 284062 Representative total house income in the dwelling unit is $284062 +in.representative_income 284093 Representative total house income in the dwelling unit is $284093 +in.representative_income 284154 Representative total house income in the dwelling unit is $284154 +in.representative_income 284163 Representative total house income in the dwelling unit is $284163 +in.representative_income 284164 Representative total house income in the dwelling unit is $284164 +in.representative_income 284165 Representative total house income in the dwelling unit is $284165 +in.representative_income 284216 Representative total house income in the dwelling unit is $284216 +in.representative_income 284250 Representative total house income in the dwelling unit is $284250 +in.representative_income 284255 Representative total house income in the dwelling unit is $284255 +in.representative_income 284268 Representative total house income in the dwelling unit is $284268 +in.representative_income 284272 Representative total house income in the dwelling unit is $284272 +in.representative_income 284322 Representative total house income in the dwelling unit is $284322 +in.representative_income 284356 Representative total house income in the dwelling unit is $284356 +in.representative_income 284371 Representative total house income in the dwelling unit is $284371 +in.representative_income 284380 Representative total house income in the dwelling unit is $284380 +in.representative_income 284427 Representative total house income in the dwelling unit is $284427 +in.representative_income 284464 Representative total house income in the dwelling unit is $284464 +in.representative_income 284474 Representative total house income in the dwelling unit is $284474 +in.representative_income 284475 Representative total house income in the dwelling unit is $284475 +in.representative_income 284488 Representative total house income in the dwelling unit is $284488 +in.representative_income 284571 Representative total house income in the dwelling unit is $284571 +in.representative_income 284595 Representative total house income in the dwelling unit is $284595 +in.representative_income 284659 Representative total house income in the dwelling unit is $284659 +in.representative_income 284679 Representative total house income in the dwelling unit is $284679 +in.representative_income 284681 Representative total house income in the dwelling unit is $284681 +in.representative_income 284700 Representative total house income in the dwelling unit is $284700 +in.representative_income 284703 Representative total house income in the dwelling unit is $284703 +in.representative_income 284744 Representative total house income in the dwelling unit is $284744 +in.representative_income 284747 Representative total house income in the dwelling unit is $284747 +in.representative_income 284786 Representative total house income in the dwelling unit is $284786 +in.representative_income 284861 Representative total house income in the dwelling unit is $284861 +in.representative_income 284894 Representative total house income in the dwelling unit is $284894 +in.representative_income 284934 Representative total house income in the dwelling unit is $284934 +in.representative_income 284962 Representative total house income in the dwelling unit is $284962 +in.representative_income 284990 Representative total house income in the dwelling unit is $284990 +in.representative_income 285000 Representative total house income in the dwelling unit is $285000 +in.representative_income 285028 Representative total house income in the dwelling unit is $285028 +in.representative_income 285094 Representative total house income in the dwelling unit is $285094 +in.representative_income 285108 Representative total house income in the dwelling unit is $285108 +in.representative_income 285136 Representative total house income in the dwelling unit is $285136 +in.representative_income 285155 Representative total house income in the dwelling unit is $285155 +in.representative_income 285164 Representative total house income in the dwelling unit is $285164 +in.representative_income 285215 Representative total house income in the dwelling unit is $285215 +in.representative_income 285244 Representative total house income in the dwelling unit is $285244 +in.representative_income 285266 Representative total house income in the dwelling unit is $285266 +in.representative_income 285299 Representative total house income in the dwelling unit is $285299 +in.representative_income 285323 Representative total house income in the dwelling unit is $285323 +in.representative_income 285366 Representative total house income in the dwelling unit is $285366 +in.representative_income 285377 Representative total house income in the dwelling unit is $285377 +in.representative_income 285403 Representative total house income in the dwelling unit is $285403 +in.representative_income 285482 Representative total house income in the dwelling unit is $285482 +in.representative_income 285506 Representative total house income in the dwelling unit is $285506 +in.representative_income 285537 Representative total house income in the dwelling unit is $285537 +in.representative_income 285568 Representative total house income in the dwelling unit is $285568 +in.representative_income 285587 Representative total house income in the dwelling unit is $285587 +in.representative_income 285609 Representative total house income in the dwelling unit is $285609 +in.representative_income 285677 Representative total house income in the dwelling unit is $285677 +in.representative_income 285691 Representative total house income in the dwelling unit is $285691 +in.representative_income 285692 Representative total house income in the dwelling unit is $285692 +in.representative_income 285713 Representative total house income in the dwelling unit is $285713 +in.representative_income 285741 Representative total house income in the dwelling unit is $285741 +in.representative_income 285752 Representative total house income in the dwelling unit is $285752 +in.representative_income 285784 Representative total house income in the dwelling unit is $285784 +in.representative_income 285798 Representative total house income in the dwelling unit is $285798 +in.representative_income 285870 Representative total house income in the dwelling unit is $285870 +in.representative_income 285871 Representative total house income in the dwelling unit is $285871 +in.representative_income 285892 Representative total house income in the dwelling unit is $285892 +in.representative_income 285918 Representative total house income in the dwelling unit is $285918 +in.representative_income 285967 Representative total house income in the dwelling unit is $285967 +in.representative_income 285972 Representative total house income in the dwelling unit is $285972 +in.representative_income 286000 Representative total house income in the dwelling unit is $286000 +in.representative_income 286009 Representative total house income in the dwelling unit is $286009 +in.representative_income 286037 Representative total house income in the dwelling unit is $286037 +in.representative_income 286061 Representative total house income in the dwelling unit is $286061 +in.representative_income 286073 Representative total house income in the dwelling unit is $286073 +in.representative_income 286074 Representative total house income in the dwelling unit is $286074 +in.representative_income 286108 Representative total house income in the dwelling unit is $286108 +in.representative_income 286124 Representative total house income in the dwelling unit is $286124 +in.representative_income 286125 Representative total house income in the dwelling unit is $286125 +in.representative_income 286162 Representative total house income in the dwelling unit is $286162 +in.representative_income 286174 Representative total house income in the dwelling unit is $286174 +in.representative_income 286181 Representative total house income in the dwelling unit is $286181 +in.representative_income 286220 Representative total house income in the dwelling unit is $286220 +in.representative_income 286228 Representative total house income in the dwelling unit is $286228 +in.representative_income 286275 Representative total house income in the dwelling unit is $286275 +in.representative_income 286290 Representative total house income in the dwelling unit is $286290 +in.representative_income 286324 Representative total house income in the dwelling unit is $286324 +in.representative_income 286332 Representative total house income in the dwelling unit is $286332 +in.representative_income 286396 Representative total house income in the dwelling unit is $286396 +in.representative_income 286434 Representative total house income in the dwelling unit is $286434 +in.representative_income 286484 Representative total house income in the dwelling unit is $286484 +in.representative_income 286486 Representative total house income in the dwelling unit is $286486 +in.representative_income 286504 Representative total house income in the dwelling unit is $286504 +in.representative_income 286522 Representative total house income in the dwelling unit is $286522 +in.representative_income 286537 Representative total house income in the dwelling unit is $286537 +in.representative_income 286547 Representative total house income in the dwelling unit is $286547 +in.representative_income 286578 Representative total house income in the dwelling unit is $286578 +in.representative_income 286610 Representative total house income in the dwelling unit is $286610 +in.representative_income 286641 Representative total house income in the dwelling unit is $286641 +in.representative_income 286642 Representative total house income in the dwelling unit is $286642 +in.representative_income 286718 Representative total house income in the dwelling unit is $286718 +in.representative_income 286744 Representative total house income in the dwelling unit is $286744 +in.representative_income 286757 Representative total house income in the dwelling unit is $286757 +in.representative_income 286811 Representative total house income in the dwelling unit is $286811 +in.representative_income 286826 Representative total house income in the dwelling unit is $286826 +in.representative_income 286830 Representative total house income in the dwelling unit is $286830 +in.representative_income 286847 Representative total house income in the dwelling unit is $286847 +in.representative_income 286853 Representative total house income in the dwelling unit is $286853 +in.representative_income 286865 Representative total house income in the dwelling unit is $286865 +in.representative_income 286874 Representative total house income in the dwelling unit is $286874 +in.representative_income 286875 Representative total house income in the dwelling unit is $286875 +in.representative_income 286879 Representative total house income in the dwelling unit is $286879 +in.representative_income 286881 Representative total house income in the dwelling unit is $286881 +in.representative_income 286958 Representative total house income in the dwelling unit is $286958 +in.representative_income 286972 Representative total house income in the dwelling unit is $286972 +in.representative_income 287041 Representative total house income in the dwelling unit is $287041 +in.representative_income 287043 Representative total house income in the dwelling unit is $287043 +in.representative_income 287053 Representative total house income in the dwelling unit is $287053 +in.representative_income 287063 Representative total house income in the dwelling unit is $287063 +in.representative_income 287083 Representative total house income in the dwelling unit is $287083 +in.representative_income 287147 Representative total house income in the dwelling unit is $287147 +in.representative_income 287156 Representative total house income in the dwelling unit is $287156 +in.representative_income 287189 Representative total house income in the dwelling unit is $287189 +in.representative_income 287208 Representative total house income in the dwelling unit is $287208 +in.representative_income 287275 Representative total house income in the dwelling unit is $287275 +in.representative_income 287285 Representative total house income in the dwelling unit is $287285 +in.representative_income 287297 Representative total house income in the dwelling unit is $287297 +in.representative_income 287380 Representative total house income in the dwelling unit is $287380 +in.representative_income 287384 Representative total house income in the dwelling unit is $287384 +in.representative_income 287386 Representative total house income in the dwelling unit is $287386 +in.representative_income 287405 Representative total house income in the dwelling unit is $287405 +in.representative_income 287470 Representative total house income in the dwelling unit is $287470 +in.representative_income 287485 Representative total house income in the dwelling unit is $287485 +in.representative_income 287487 Representative total house income in the dwelling unit is $287487 +in.representative_income 287517 Representative total house income in the dwelling unit is $287517 +in.representative_income 287544 Representative total house income in the dwelling unit is $287544 +in.representative_income 287577 Representative total house income in the dwelling unit is $287577 +in.representative_income 287588 Representative total house income in the dwelling unit is $287588 +in.representative_income 287620 Representative total house income in the dwelling unit is $287620 +in.representative_income 287621 Representative total house income in the dwelling unit is $287621 +in.representative_income 287685 Representative total house income in the dwelling unit is $287685 +in.representative_income 287689 Representative total house income in the dwelling unit is $287689 +in.representative_income 287696 Representative total house income in the dwelling unit is $287696 +in.representative_income 287729 Representative total house income in the dwelling unit is $287729 +in.representative_income 287775 Representative total house income in the dwelling unit is $287775 +in.representative_income 287790 Representative total house income in the dwelling unit is $287790 +in.representative_income 287837 Representative total house income in the dwelling unit is $287837 +in.representative_income 287879 Representative total house income in the dwelling unit is $287879 +in.representative_income 287891 Representative total house income in the dwelling unit is $287891 +in.representative_income 287908 Representative total house income in the dwelling unit is $287908 +in.representative_income 287945 Representative total house income in the dwelling unit is $287945 +in.representative_income 287946 Representative total house income in the dwelling unit is $287946 +in.representative_income 287982 Representative total house income in the dwelling unit is $287982 +in.representative_income 288002 Representative total house income in the dwelling unit is $288002 +in.representative_income 288006 Representative total house income in the dwelling unit is $288006 +in.representative_income 288013 Representative total house income in the dwelling unit is $288013 +in.representative_income 288093 Representative total house income in the dwelling unit is $288093 +in.representative_income 288118 Representative total house income in the dwelling unit is $288118 +in.representative_income 288126 Representative total house income in the dwelling unit is $288126 +in.representative_income 288144 Representative total house income in the dwelling unit is $288144 +in.representative_income 288188 Representative total house income in the dwelling unit is $288188 +in.representative_income 288222 Representative total house income in the dwelling unit is $288222 +in.representative_income 288269 Representative total house income in the dwelling unit is $288269 +in.representative_income 288291 Representative total house income in the dwelling unit is $288291 +in.representative_income 288295 Representative total house income in the dwelling unit is $288295 +in.representative_income 288329 Representative total house income in the dwelling unit is $288329 +in.representative_income 288346 Representative total house income in the dwelling unit is $288346 +in.representative_income 288351 Representative total house income in the dwelling unit is $288351 +in.representative_income 288394 Representative total house income in the dwelling unit is $288394 +in.representative_income 288396 Representative total house income in the dwelling unit is $288396 +in.representative_income 288407 Representative total house income in the dwelling unit is $288407 +in.representative_income 288435 Representative total house income in the dwelling unit is $288435 +in.representative_income 288485 Representative total house income in the dwelling unit is $288485 +in.representative_income 288498 Representative total house income in the dwelling unit is $288498 +in.representative_income 288508 Representative total house income in the dwelling unit is $288508 +in.representative_income 288598 Representative total house income in the dwelling unit is $288598 +in.representative_income 288600 Representative total house income in the dwelling unit is $288600 +in.representative_income 288649 Representative total house income in the dwelling unit is $288649 +in.representative_income 288651 Representative total house income in the dwelling unit is $288651 +in.representative_income 288701 Representative total house income in the dwelling unit is $288701 +in.representative_income 288751 Representative total house income in the dwelling unit is $288751 +in.representative_income 288758 Representative total house income in the dwelling unit is $288758 +in.representative_income 288790 Representative total house income in the dwelling unit is $288790 +in.representative_income 288807 Representative total house income in the dwelling unit is $288807 +in.representative_income 288810 Representative total house income in the dwelling unit is $288810 +in.representative_income 288858 Representative total house income in the dwelling unit is $288858 +in.representative_income 288901 Representative total house income in the dwelling unit is $288901 +in.representative_income 288910 Representative total house income in the dwelling unit is $288910 +in.representative_income 288918 Representative total house income in the dwelling unit is $288918 +in.representative_income 288962 Representative total house income in the dwelling unit is $288962 +in.representative_income 289013 Representative total house income in the dwelling unit is $289013 +in.representative_income 289068 Representative total house income in the dwelling unit is $289068 +in.representative_income 289078 Representative total house income in the dwelling unit is $289078 +in.representative_income 289080 Representative total house income in the dwelling unit is $289080 +in.representative_income 289089 Representative total house income in the dwelling unit is $289089 +in.representative_income 289242 Representative total house income in the dwelling unit is $289242 +in.representative_income 289271 Representative total house income in the dwelling unit is $289271 +in.representative_income 289295 Representative total house income in the dwelling unit is $289295 +in.representative_income 289306 Representative total house income in the dwelling unit is $289306 +in.representative_income 289322 Representative total house income in the dwelling unit is $289322 +in.representative_income 289327 Representative total house income in the dwelling unit is $289327 +in.representative_income 289384 Representative total house income in the dwelling unit is $289384 +in.representative_income 289401 Representative total house income in the dwelling unit is $289401 +in.representative_income 289407 Representative total house income in the dwelling unit is $289407 +in.representative_income 289426 Representative total house income in the dwelling unit is $289426 +in.representative_income 289508 Representative total house income in the dwelling unit is $289508 +in.representative_income 289509 Representative total house income in the dwelling unit is $289509 +in.representative_income 289510 Representative total house income in the dwelling unit is $289510 +in.representative_income 289566 Representative total house income in the dwelling unit is $289566 +in.representative_income 289594 Representative total house income in the dwelling unit is $289594 +in.representative_income 289616 Representative total house income in the dwelling unit is $289616 +in.representative_income 289632 Representative total house income in the dwelling unit is $289632 +in.representative_income 289701 Representative total house income in the dwelling unit is $289701 +in.representative_income 289710 Representative total house income in the dwelling unit is $289710 +in.representative_income 289735 Representative total house income in the dwelling unit is $289735 +in.representative_income 289806 Representative total house income in the dwelling unit is $289806 +in.representative_income 289813 Representative total house income in the dwelling unit is $289813 +in.representative_income 289827 Representative total house income in the dwelling unit is $289827 +in.representative_income 289832 Representative total house income in the dwelling unit is $289832 +in.representative_income 289838 Representative total house income in the dwelling unit is $289838 +in.representative_income 289848 Representative total house income in the dwelling unit is $289848 +in.representative_income 289851 Representative total house income in the dwelling unit is $289851 +in.representative_income 289864 Representative total house income in the dwelling unit is $289864 +in.representative_income 289874 Representative total house income in the dwelling unit is $289874 +in.representative_income 289885 Representative total house income in the dwelling unit is $289885 +in.representative_income 289890 Representative total house income in the dwelling unit is $289890 +in.representative_income 289912 Representative total house income in the dwelling unit is $289912 +in.representative_income 289916 Representative total house income in the dwelling unit is $289916 +in.representative_income 289939 Representative total house income in the dwelling unit is $289939 +in.representative_income 289998 Representative total house income in the dwelling unit is $289998 +in.representative_income 290013 Representative total house income in the dwelling unit is $290013 +in.representative_income 290016 Representative total house income in the dwelling unit is $290016 +in.representative_income 290033 Representative total house income in the dwelling unit is $290033 +in.representative_income 290070 Representative total house income in the dwelling unit is $290070 +in.representative_income 290106 Representative total house income in the dwelling unit is $290106 +in.representative_income 290122 Representative total house income in the dwelling unit is $290122 +in.representative_income 290144 Representative total house income in the dwelling unit is $290144 +in.representative_income 290153 Representative total house income in the dwelling unit is $290153 +in.representative_income 290196 Representative total house income in the dwelling unit is $290196 +in.representative_income 290214 Representative total house income in the dwelling unit is $290214 +in.representative_income 290215 Representative total house income in the dwelling unit is $290215 +in.representative_income 290227 Representative total house income in the dwelling unit is $290227 +in.representative_income 290261 Representative total house income in the dwelling unit is $290261 +in.representative_income 290316 Representative total house income in the dwelling unit is $290316 +in.representative_income 290323 Representative total house income in the dwelling unit is $290323 +in.representative_income 290333 Representative total house income in the dwelling unit is $290333 +in.representative_income 290354 Representative total house income in the dwelling unit is $290354 +in.representative_income 290389 Representative total house income in the dwelling unit is $290389 +in.representative_income 290390 Representative total house income in the dwelling unit is $290390 +in.representative_income 290417 Representative total house income in the dwelling unit is $290417 +in.representative_income 290431 Representative total house income in the dwelling unit is $290431 +in.representative_income 290439 Representative total house income in the dwelling unit is $290439 +in.representative_income 290457 Representative total house income in the dwelling unit is $290457 +in.representative_income 290486 Representative total house income in the dwelling unit is $290486 +in.representative_income 290518 Representative total house income in the dwelling unit is $290518 +in.representative_income 290539 Representative total house income in the dwelling unit is $290539 +in.representative_income 290544 Representative total house income in the dwelling unit is $290544 +in.representative_income 290560 Representative total house income in the dwelling unit is $290560 +in.representative_income 290578 Representative total house income in the dwelling unit is $290578 +in.representative_income 290609 Representative total house income in the dwelling unit is $290609 +in.representative_income 290638 Representative total house income in the dwelling unit is $290638 +in.representative_income 290646 Representative total house income in the dwelling unit is $290646 +in.representative_income 290664 Representative total house income in the dwelling unit is $290664 +in.representative_income 290690 Representative total house income in the dwelling unit is $290690 +in.representative_income 290720 Representative total house income in the dwelling unit is $290720 +in.representative_income 290766 Representative total house income in the dwelling unit is $290766 +in.representative_income 290858 Representative total house income in the dwelling unit is $290858 +in.representative_income 290862 Representative total house income in the dwelling unit is $290862 +in.representative_income 290869 Representative total house income in the dwelling unit is $290869 +in.representative_income 290901 Representative total house income in the dwelling unit is $290901 +in.representative_income 290905 Representative total house income in the dwelling unit is $290905 +in.representative_income 290921 Representative total house income in the dwelling unit is $290921 +in.representative_income 290922 Representative total house income in the dwelling unit is $290922 +in.representative_income 290973 Representative total house income in the dwelling unit is $290973 +in.representative_income 291071 Representative total house income in the dwelling unit is $291071 +in.representative_income 291076 Representative total house income in the dwelling unit is $291076 +in.representative_income 291119 Representative total house income in the dwelling unit is $291119 +in.representative_income 291128 Representative total house income in the dwelling unit is $291128 +in.representative_income 291177 Representative total house income in the dwelling unit is $291177 +in.representative_income 291225 Representative total house income in the dwelling unit is $291225 +in.representative_income 291227 Representative total house income in the dwelling unit is $291227 +in.representative_income 291231 Representative total house income in the dwelling unit is $291231 +in.representative_income 291272 Representative total house income in the dwelling unit is $291272 +in.representative_income 291282 Representative total house income in the dwelling unit is $291282 +in.representative_income 291293 Representative total house income in the dwelling unit is $291293 +in.representative_income 291295 Representative total house income in the dwelling unit is $291295 +in.representative_income 291326 Representative total house income in the dwelling unit is $291326 +in.representative_income 291334 Representative total house income in the dwelling unit is $291334 +in.representative_income 291385 Representative total house income in the dwelling unit is $291385 +in.representative_income 291387 Representative total house income in the dwelling unit is $291387 +in.representative_income 291427 Representative total house income in the dwelling unit is $291427 +in.representative_income 291442 Representative total house income in the dwelling unit is $291442 +in.representative_income 291488 Representative total house income in the dwelling unit is $291488 +in.representative_income 291493 Representative total house income in the dwelling unit is $291493 +in.representative_income 291511 Representative total house income in the dwelling unit is $291511 +in.representative_income 291528 Representative total house income in the dwelling unit is $291528 +in.representative_income 291548 Representative total house income in the dwelling unit is $291548 +in.representative_income 291656 Representative total house income in the dwelling unit is $291656 +in.representative_income 291686 Representative total house income in the dwelling unit is $291686 +in.representative_income 291695 Representative total house income in the dwelling unit is $291695 +in.representative_income 291704 Representative total house income in the dwelling unit is $291704 +in.representative_income 291727 Representative total house income in the dwelling unit is $291727 +in.representative_income 291730 Representative total house income in the dwelling unit is $291730 +in.representative_income 291763 Representative total house income in the dwelling unit is $291763 +in.representative_income 291809 Representative total house income in the dwelling unit is $291809 +in.representative_income 291834 Representative total house income in the dwelling unit is $291834 +in.representative_income 291901 Representative total house income in the dwelling unit is $291901 +in.representative_income 291915 Representative total house income in the dwelling unit is $291915 +in.representative_income 291932 Representative total house income in the dwelling unit is $291932 +in.representative_income 291943 Representative total house income in the dwelling unit is $291943 +in.representative_income 291952 Representative total house income in the dwelling unit is $291952 +in.representative_income 291978 Representative total house income in the dwelling unit is $291978 +in.representative_income 292000 Representative total house income in the dwelling unit is $292000 +in.representative_income 292051 Representative total house income in the dwelling unit is $292051 +in.representative_income 292086 Representative total house income in the dwelling unit is $292086 +in.representative_income 292107 Representative total house income in the dwelling unit is $292107 +in.representative_income 292125 Representative total house income in the dwelling unit is $292125 +in.representative_income 292134 Representative total house income in the dwelling unit is $292134 +in.representative_income 292267 Representative total house income in the dwelling unit is $292267 +in.representative_income 292314 Representative total house income in the dwelling unit is $292314 +in.representative_income 292336 Representative total house income in the dwelling unit is $292336 +in.representative_income 292337 Representative total house income in the dwelling unit is $292337 +in.representative_income 292375 Representative total house income in the dwelling unit is $292375 +in.representative_income 292379 Representative total house income in the dwelling unit is $292379 +in.representative_income 292437 Representative total house income in the dwelling unit is $292437 +in.representative_income 292444 Representative total house income in the dwelling unit is $292444 +in.representative_income 292515 Representative total house income in the dwelling unit is $292515 +in.representative_income 292520 Representative total house income in the dwelling unit is $292520 +in.representative_income 292538 Representative total house income in the dwelling unit is $292538 +in.representative_income 292568 Representative total house income in the dwelling unit is $292568 +in.representative_income 292591 Representative total house income in the dwelling unit is $292591 +in.representative_income 292623 Representative total house income in the dwelling unit is $292623 +in.representative_income 292653 Representative total house income in the dwelling unit is $292653 +in.representative_income 292654 Representative total house income in the dwelling unit is $292654 +in.representative_income 292700 Representative total house income in the dwelling unit is $292700 +in.representative_income 292726 Representative total house income in the dwelling unit is $292726 +in.representative_income 292740 Representative total house income in the dwelling unit is $292740 +in.representative_income 292758 Representative total house income in the dwelling unit is $292758 +in.representative_income 292808 Representative total house income in the dwelling unit is $292808 +in.representative_income 292813 Representative total house income in the dwelling unit is $292813 +in.representative_income 292830 Representative total house income in the dwelling unit is $292830 +in.representative_income 292837 Representative total house income in the dwelling unit is $292837 +in.representative_income 292841 Representative total house income in the dwelling unit is $292841 +in.representative_income 292864 Representative total house income in the dwelling unit is $292864 +in.representative_income 292916 Representative total house income in the dwelling unit is $292916 +in.representative_income 292932 Representative total house income in the dwelling unit is $292932 +in.representative_income 292942 Representative total house income in the dwelling unit is $292942 +in.representative_income 292970 Representative total house income in the dwelling unit is $292970 +in.representative_income 292984 Representative total house income in the dwelling unit is $292984 +in.representative_income 293023 Representative total house income in the dwelling unit is $293023 +in.representative_income 293035 Representative total house income in the dwelling unit is $293035 +in.representative_income 293043 Representative total house income in the dwelling unit is $293043 +in.representative_income 293052 Representative total house income in the dwelling unit is $293052 +in.representative_income 293058 Representative total house income in the dwelling unit is $293058 +in.representative_income 293131 Representative total house income in the dwelling unit is $293131 +in.representative_income 293144 Representative total house income in the dwelling unit is $293144 +in.representative_income 293159 Representative total house income in the dwelling unit is $293159 +in.representative_income 293180 Representative total house income in the dwelling unit is $293180 +in.representative_income 293242 Representative total house income in the dwelling unit is $293242 +in.representative_income 293267 Representative total house income in the dwelling unit is $293267 +in.representative_income 293346 Representative total house income in the dwelling unit is $293346 +in.representative_income 293373 Representative total house income in the dwelling unit is $293373 +in.representative_income 293447 Representative total house income in the dwelling unit is $293447 +in.representative_income 293449 Representative total house income in the dwelling unit is $293449 +in.representative_income 293455 Representative total house income in the dwelling unit is $293455 +in.representative_income 293548 Representative total house income in the dwelling unit is $293548 +in.representative_income 293602 Representative total house income in the dwelling unit is $293602 +in.representative_income 293672 Representative total house income in the dwelling unit is $293672 +in.representative_income 293696 Representative total house income in the dwelling unit is $293696 +in.representative_income 293749 Representative total house income in the dwelling unit is $293749 +in.representative_income 293803 Representative total house income in the dwelling unit is $293803 +in.representative_income 293812 Representative total house income in the dwelling unit is $293812 +in.representative_income 293813 Representative total house income in the dwelling unit is $293813 +in.representative_income 293851 Representative total house income in the dwelling unit is $293851 +in.representative_income 293888 Representative total house income in the dwelling unit is $293888 +in.representative_income 293913 Representative total house income in the dwelling unit is $293913 +in.representative_income 293952 Representative total house income in the dwelling unit is $293952 +in.representative_income 293964 Representative total house income in the dwelling unit is $293964 +in.representative_income 293996 Representative total house income in the dwelling unit is $293996 +in.representative_income 294053 Representative total house income in the dwelling unit is $294053 +in.representative_income 294125 Representative total house income in the dwelling unit is $294125 +in.representative_income 294154 Representative total house income in the dwelling unit is $294154 +in.representative_income 294170 Representative total house income in the dwelling unit is $294170 +in.representative_income 294235 Representative total house income in the dwelling unit is $294235 +in.representative_income 294273 Representative total house income in the dwelling unit is $294273 +in.representative_income 294318 Representative total house income in the dwelling unit is $294318 +in.representative_income 294320 Representative total house income in the dwelling unit is $294320 +in.representative_income 294340 Representative total house income in the dwelling unit is $294340 +in.representative_income 294341 Representative total house income in the dwelling unit is $294341 +in.representative_income 294374 Representative total house income in the dwelling unit is $294374 +in.representative_income 294376 Representative total house income in the dwelling unit is $294376 +in.representative_income 294377 Representative total house income in the dwelling unit is $294377 +in.representative_income 294387 Representative total house income in the dwelling unit is $294387 +in.representative_income 294428 Representative total house income in the dwelling unit is $294428 +in.representative_income 294446 Representative total house income in the dwelling unit is $294446 +in.representative_income 294480 Representative total house income in the dwelling unit is $294480 +in.representative_income 294536 Representative total house income in the dwelling unit is $294536 +in.representative_income 294659 Representative total house income in the dwelling unit is $294659 +in.representative_income 294662 Representative total house income in the dwelling unit is $294662 +in.representative_income 294686 Representative total house income in the dwelling unit is $294686 +in.representative_income 294696 Representative total house income in the dwelling unit is $294696 +in.representative_income 294769 Representative total house income in the dwelling unit is $294769 +in.representative_income 294861 Representative total house income in the dwelling unit is $294861 +in.representative_income 294962 Representative total house income in the dwelling unit is $294962 +in.representative_income 294968 Representative total house income in the dwelling unit is $294968 +in.representative_income 294973 Representative total house income in the dwelling unit is $294973 +in.representative_income 294983 Representative total house income in the dwelling unit is $294983 +in.representative_income 294996 Representative total house income in the dwelling unit is $294996 +in.representative_income 295034 Representative total house income in the dwelling unit is $295034 +in.representative_income 295077 Representative total house income in the dwelling unit is $295077 +in.representative_income 295079 Representative total house income in the dwelling unit is $295079 +in.representative_income 295124 Representative total house income in the dwelling unit is $295124 +in.representative_income 295184 Representative total house income in the dwelling unit is $295184 +in.representative_income 295198 Representative total house income in the dwelling unit is $295198 +in.representative_income 295201 Representative total house income in the dwelling unit is $295201 +in.representative_income 295253 Representative total house income in the dwelling unit is $295253 +in.representative_income 295265 Representative total house income in the dwelling unit is $295265 +in.representative_income 295289 Representative total house income in the dwelling unit is $295289 +in.representative_income 295305 Representative total house income in the dwelling unit is $295305 +in.representative_income 295306 Representative total house income in the dwelling unit is $295306 +in.representative_income 295401 Representative total house income in the dwelling unit is $295401 +in.representative_income 295408 Representative total house income in the dwelling unit is $295408 +in.representative_income 295413 Representative total house income in the dwelling unit is $295413 +in.representative_income 295467 Representative total house income in the dwelling unit is $295467 +in.representative_income 295501 Representative total house income in the dwelling unit is $295501 +in.representative_income 295508 Representative total house income in the dwelling unit is $295508 +in.representative_income 295511 Representative total house income in the dwelling unit is $295511 +in.representative_income 295521 Representative total house income in the dwelling unit is $295521 +in.representative_income 295568 Representative total house income in the dwelling unit is $295568 +in.representative_income 295575 Representative total house income in the dwelling unit is $295575 +in.representative_income 295627 Representative total house income in the dwelling unit is $295627 +in.representative_income 295711 Representative total house income in the dwelling unit is $295711 +in.representative_income 295735 Representative total house income in the dwelling unit is $295735 +in.representative_income 295743 Representative total house income in the dwelling unit is $295743 +in.representative_income 295775 Representative total house income in the dwelling unit is $295775 +in.representative_income 295779 Representative total house income in the dwelling unit is $295779 +in.representative_income 295820 Representative total house income in the dwelling unit is $295820 +in.representative_income 295832 Representative total house income in the dwelling unit is $295832 +in.representative_income 295843 Representative total house income in the dwelling unit is $295843 +in.representative_income 295871 Representative total house income in the dwelling unit is $295871 +in.representative_income 295922 Representative total house income in the dwelling unit is $295922 +in.representative_income 295924 Representative total house income in the dwelling unit is $295924 +in.representative_income 295973 Representative total house income in the dwelling unit is $295973 +in.representative_income 295979 Representative total house income in the dwelling unit is $295979 +in.representative_income 296023 Representative total house income in the dwelling unit is $296023 +in.representative_income 296027 Representative total house income in the dwelling unit is $296027 +in.representative_income 296028 Representative total house income in the dwelling unit is $296028 +in.representative_income 296049 Representative total house income in the dwelling unit is $296049 +in.representative_income 296074 Representative total house income in the dwelling unit is $296074 +in.representative_income 296130 Representative total house income in the dwelling unit is $296130 +in.representative_income 296151 Representative total house income in the dwelling unit is $296151 +in.representative_income 296175 Representative total house income in the dwelling unit is $296175 +in.representative_income 296233 Representative total house income in the dwelling unit is $296233 +in.representative_income 296239 Representative total house income in the dwelling unit is $296239 +in.representative_income 296265 Representative total house income in the dwelling unit is $296265 +in.representative_income 296272 Representative total house income in the dwelling unit is $296272 +in.representative_income 296315 Representative total house income in the dwelling unit is $296315 +in.representative_income 296344 Representative total house income in the dwelling unit is $296344 +in.representative_income 296379 Representative total house income in the dwelling unit is $296379 +in.representative_income 296449 Representative total house income in the dwelling unit is $296449 +in.representative_income 296491 Representative total house income in the dwelling unit is $296491 +in.representative_income 296543 Representative total house income in the dwelling unit is $296543 +in.representative_income 296573 Representative total house income in the dwelling unit is $296573 +in.representative_income 296579 Representative total house income in the dwelling unit is $296579 +in.representative_income 296589 Representative total house income in the dwelling unit is $296589 +in.representative_income 296594 Representative total house income in the dwelling unit is $296594 +in.representative_income 296599 Representative total house income in the dwelling unit is $296599 +in.representative_income 296608 Representative total house income in the dwelling unit is $296608 +in.representative_income 296615 Representative total house income in the dwelling unit is $296615 +in.representative_income 296629 Representative total house income in the dwelling unit is $296629 +in.representative_income 296680 Representative total house income in the dwelling unit is $296680 +in.representative_income 296697 Representative total house income in the dwelling unit is $296697 +in.representative_income 296724 Representative total house income in the dwelling unit is $296724 +in.representative_income 296781 Representative total house income in the dwelling unit is $296781 +in.representative_income 296791 Representative total house income in the dwelling unit is $296791 +in.representative_income 296795 Representative total house income in the dwelling unit is $296795 +in.representative_income 296808 Representative total house income in the dwelling unit is $296808 +in.representative_income 296854 Representative total house income in the dwelling unit is $296854 +in.representative_income 296893 Representative total house income in the dwelling unit is $296893 +in.representative_income 296983 Representative total house income in the dwelling unit is $296983 +in.representative_income 297021 Representative total house income in the dwelling unit is $297021 +in.representative_income 297024 Representative total house income in the dwelling unit is $297024 +in.representative_income 297038 Representative total house income in the dwelling unit is $297038 +in.representative_income 297058 Representative total house income in the dwelling unit is $297058 +in.representative_income 297084 Representative total house income in the dwelling unit is $297084 +in.representative_income 297108 Representative total house income in the dwelling unit is $297108 +in.representative_income 297129 Representative total house income in the dwelling unit is $297129 +in.representative_income 297131 Representative total house income in the dwelling unit is $297131 +in.representative_income 297238 Representative total house income in the dwelling unit is $297238 +in.representative_income 297248 Representative total house income in the dwelling unit is $297248 +in.representative_income 297265 Representative total house income in the dwelling unit is $297265 +in.representative_income 297291 Representative total house income in the dwelling unit is $297291 +in.representative_income 297294 Representative total house income in the dwelling unit is $297294 +in.representative_income 297316 Representative total house income in the dwelling unit is $297316 +in.representative_income 297345 Representative total house income in the dwelling unit is $297345 +in.representative_income 297346 Representative total house income in the dwelling unit is $297346 +in.representative_income 297367 Representative total house income in the dwelling unit is $297367 +in.representative_income 297399 Representative total house income in the dwelling unit is $297399 +in.representative_income 297460 Representative total house income in the dwelling unit is $297460 +in.representative_income 297488 Representative total house income in the dwelling unit is $297488 +in.representative_income 297560 Representative total house income in the dwelling unit is $297560 +in.representative_income 297574 Representative total house income in the dwelling unit is $297574 +in.representative_income 297610 Representative total house income in the dwelling unit is $297610 +in.representative_income 297663 Representative total house income in the dwelling unit is $297663 +in.representative_income 297691 Representative total house income in the dwelling unit is $297691 +in.representative_income 297737 Representative total house income in the dwelling unit is $297737 +in.representative_income 297820 Representative total house income in the dwelling unit is $297820 +in.representative_income 297883 Representative total house income in the dwelling unit is $297883 +in.representative_income 297892 Representative total house income in the dwelling unit is $297892 +in.representative_income 297976 Representative total house income in the dwelling unit is $297976 +in.representative_income 297986 Representative total house income in the dwelling unit is $297986 +in.representative_income 297989 Representative total house income in the dwelling unit is $297989 +in.representative_income 297993 Representative total house income in the dwelling unit is $297993 +in.representative_income 298090 Representative total house income in the dwelling unit is $298090 +in.representative_income 298094 Representative total house income in the dwelling unit is $298094 +in.representative_income 298101 Representative total house income in the dwelling unit is $298101 +in.representative_income 298172 Representative total house income in the dwelling unit is $298172 +in.representative_income 298195 Representative total house income in the dwelling unit is $298195 +in.representative_income 298204 Representative total house income in the dwelling unit is $298204 +in.representative_income 298209 Representative total house income in the dwelling unit is $298209 +in.representative_income 298296 Representative total house income in the dwelling unit is $298296 +in.representative_income 298318 Representative total house income in the dwelling unit is $298318 +in.representative_income 298346 Representative total house income in the dwelling unit is $298346 +in.representative_income 298348 Representative total house income in the dwelling unit is $298348 +in.representative_income 298400 Representative total house income in the dwelling unit is $298400 +in.representative_income 298418 Representative total house income in the dwelling unit is $298418 +in.representative_income 298453 Representative total house income in the dwelling unit is $298453 +in.representative_income 298599 Representative total house income in the dwelling unit is $298599 +in.representative_income 298605 Representative total house income in the dwelling unit is $298605 +in.representative_income 298634 Representative total house income in the dwelling unit is $298634 +in.representative_income 298642 Representative total house income in the dwelling unit is $298642 +in.representative_income 298665 Representative total house income in the dwelling unit is $298665 +in.representative_income 298700 Representative total house income in the dwelling unit is $298700 +in.representative_income 298741 Representative total house income in the dwelling unit is $298741 +in.representative_income 298750 Representative total house income in the dwelling unit is $298750 +in.representative_income 298761 Representative total house income in the dwelling unit is $298761 +in.representative_income 298812 Representative total house income in the dwelling unit is $298812 +in.representative_income 298849 Representative total house income in the dwelling unit is $298849 +in.representative_income 298875 Representative total house income in the dwelling unit is $298875 +in.representative_income 298902 Representative total house income in the dwelling unit is $298902 +in.representative_income 298955 Representative total house income in the dwelling unit is $298955 +in.representative_income 298980 Representative total house income in the dwelling unit is $298980 +in.representative_income 299003 Representative total house income in the dwelling unit is $299003 +in.representative_income 299009 Representative total house income in the dwelling unit is $299009 +in.representative_income 299018 Representative total house income in the dwelling unit is $299018 +in.representative_income 299104 Representative total house income in the dwelling unit is $299104 +in.representative_income 299112 Representative total house income in the dwelling unit is $299112 +in.representative_income 299121 Representative total house income in the dwelling unit is $299121 +in.representative_income 299135 Representative total house income in the dwelling unit is $299135 +in.representative_income 299139 Representative total house income in the dwelling unit is $299139 +in.representative_income 299182 Representative total house income in the dwelling unit is $299182 +in.representative_income 299183 Representative total house income in the dwelling unit is $299183 +in.representative_income 299224 Representative total house income in the dwelling unit is $299224 +in.representative_income 299278 Representative total house income in the dwelling unit is $299278 +in.representative_income 299290 Representative total house income in the dwelling unit is $299290 +in.representative_income 299314 Representative total house income in the dwelling unit is $299314 +in.representative_income 299328 Representative total house income in the dwelling unit is $299328 +in.representative_income 299385 Representative total house income in the dwelling unit is $299385 +in.representative_income 299387 Representative total house income in the dwelling unit is $299387 +in.representative_income 299431 Representative total house income in the dwelling unit is $299431 +in.representative_income 299492 Representative total house income in the dwelling unit is $299492 +in.representative_income 299506 Representative total house income in the dwelling unit is $299506 +in.representative_income 299508 Representative total house income in the dwelling unit is $299508 +in.representative_income 299533 Representative total house income in the dwelling unit is $299533 +in.representative_income 299603 Representative total house income in the dwelling unit is $299603 +in.representative_income 299609 Representative total house income in the dwelling unit is $299609 +in.representative_income 299707 Representative total house income in the dwelling unit is $299707 +in.representative_income 299718 Representative total house income in the dwelling unit is $299718 +in.representative_income 299740 Representative total house income in the dwelling unit is $299740 +in.representative_income 299831 Representative total house income in the dwelling unit is $299831 +in.representative_income 299846 Representative total house income in the dwelling unit is $299846 +in.representative_income 299896 Representative total house income in the dwelling unit is $299896 +in.representative_income 299947 Representative total house income in the dwelling unit is $299947 +in.representative_income 300013 Representative total house income in the dwelling unit is $300013 +in.representative_income 300029 Representative total house income in the dwelling unit is $300029 +in.representative_income 300035 Representative total house income in the dwelling unit is $300035 +in.representative_income 300064 Representative total house income in the dwelling unit is $300064 +in.representative_income 300114 Representative total house income in the dwelling unit is $300114 +in.representative_income 300136 Representative total house income in the dwelling unit is $300136 +in.representative_income 300152 Representative total house income in the dwelling unit is $300152 +in.representative_income 300155 Representative total house income in the dwelling unit is $300155 +in.representative_income 300215 Representative total house income in the dwelling unit is $300215 +in.representative_income 300244 Representative total house income in the dwelling unit is $300244 +in.representative_income 300262 Representative total house income in the dwelling unit is $300262 +in.representative_income 300316 Representative total house income in the dwelling unit is $300316 +in.representative_income 300351 Representative total house income in the dwelling unit is $300351 +in.representative_income 300359 Representative total house income in the dwelling unit is $300359 +in.representative_income 300370 Representative total house income in the dwelling unit is $300370 +in.representative_income 300417 Representative total house income in the dwelling unit is $300417 +in.representative_income 300458 Representative total house income in the dwelling unit is $300458 +in.representative_income 300459 Representative total house income in the dwelling unit is $300459 +in.representative_income 300478 Representative total house income in the dwelling unit is $300478 +in.representative_income 300498 Representative total house income in the dwelling unit is $300498 +in.representative_income 300518 Representative total house income in the dwelling unit is $300518 +in.representative_income 300563 Representative total house income in the dwelling unit is $300563 +in.representative_income 300566 Representative total house income in the dwelling unit is $300566 +in.representative_income 300598 Representative total house income in the dwelling unit is $300598 +in.representative_income 300609 Representative total house income in the dwelling unit is $300609 +in.representative_income 300615 Representative total house income in the dwelling unit is $300615 +in.representative_income 300619 Representative total house income in the dwelling unit is $300619 +in.representative_income 300620 Representative total house income in the dwelling unit is $300620 +in.representative_income 300668 Representative total house income in the dwelling unit is $300668 +in.representative_income 300720 Representative total house income in the dwelling unit is $300720 +in.representative_income 300721 Representative total house income in the dwelling unit is $300721 +in.representative_income 300727 Representative total house income in the dwelling unit is $300727 +in.representative_income 300773 Representative total house income in the dwelling unit is $300773 +in.representative_income 300780 Representative total house income in the dwelling unit is $300780 +in.representative_income 300821 Representative total house income in the dwelling unit is $300821 +in.representative_income 300875 Representative total house income in the dwelling unit is $300875 +in.representative_income 300911 Representative total house income in the dwelling unit is $300911 +in.representative_income 300978 Representative total house income in the dwelling unit is $300978 +in.representative_income 300984 Representative total house income in the dwelling unit is $300984 +in.representative_income 301019 Representative total house income in the dwelling unit is $301019 +in.representative_income 301023 Representative total house income in the dwelling unit is $301023 +in.representative_income 301073 Representative total house income in the dwelling unit is $301073 +in.representative_income 301127 Representative total house income in the dwelling unit is $301127 +in.representative_income 301184 Representative total house income in the dwelling unit is $301184 +in.representative_income 301185 Representative total house income in the dwelling unit is $301185 +in.representative_income 301196 Representative total house income in the dwelling unit is $301196 +in.representative_income 301287 Representative total house income in the dwelling unit is $301287 +in.representative_income 301424 Representative total house income in the dwelling unit is $301424 +in.representative_income 301442 Representative total house income in the dwelling unit is $301442 +in.representative_income 301452 Representative total house income in the dwelling unit is $301452 +in.representative_income 301528 Representative total house income in the dwelling unit is $301528 +in.representative_income 301559 Representative total house income in the dwelling unit is $301559 +in.representative_income 301597 Representative total house income in the dwelling unit is $301597 +in.representative_income 301613 Representative total house income in the dwelling unit is $301613 +in.representative_income 301617 Representative total house income in the dwelling unit is $301617 +in.representative_income 301629 Representative total house income in the dwelling unit is $301629 +in.representative_income 301640 Representative total house income in the dwelling unit is $301640 +in.representative_income 301667 Representative total house income in the dwelling unit is $301667 +in.representative_income 301699 Representative total house income in the dwelling unit is $301699 +in.representative_income 301723 Representative total house income in the dwelling unit is $301723 +in.representative_income 301730 Representative total house income in the dwelling unit is $301730 +in.representative_income 301775 Representative total house income in the dwelling unit is $301775 +in.representative_income 301828 Representative total house income in the dwelling unit is $301828 +in.representative_income 301831 Representative total house income in the dwelling unit is $301831 +in.representative_income 301854 Representative total house income in the dwelling unit is $301854 +in.representative_income 301883 Representative total house income in the dwelling unit is $301883 +in.representative_income 301892 Representative total house income in the dwelling unit is $301892 +in.representative_income 301926 Representative total house income in the dwelling unit is $301926 +in.representative_income 301961 Representative total house income in the dwelling unit is $301961 +in.representative_income 302009 Representative total house income in the dwelling unit is $302009 +in.representative_income 302030 Representative total house income in the dwelling unit is $302030 +in.representative_income 302033 Representative total house income in the dwelling unit is $302033 +in.representative_income 302047 Representative total house income in the dwelling unit is $302047 +in.representative_income 302074 Representative total house income in the dwelling unit is $302074 +in.representative_income 302099 Representative total house income in the dwelling unit is $302099 +in.representative_income 302113 Representative total house income in the dwelling unit is $302113 +in.representative_income 302134 Representative total house income in the dwelling unit is $302134 +in.representative_income 302176 Representative total house income in the dwelling unit is $302176 +in.representative_income 302208 Representative total house income in the dwelling unit is $302208 +in.representative_income 302216 Representative total house income in the dwelling unit is $302216 +in.representative_income 302235 Representative total house income in the dwelling unit is $302235 +in.representative_income 302250 Representative total house income in the dwelling unit is $302250 +in.representative_income 302283 Representative total house income in the dwelling unit is $302283 +in.representative_income 302395 Representative total house income in the dwelling unit is $302395 +in.representative_income 302482 Representative total house income in the dwelling unit is $302482 +in.representative_income 302498 Representative total house income in the dwelling unit is $302498 +in.representative_income 302532 Representative total house income in the dwelling unit is $302532 +in.representative_income 302596 Representative total house income in the dwelling unit is $302596 +in.representative_income 302639 Representative total house income in the dwelling unit is $302639 +in.representative_income 302640 Representative total house income in the dwelling unit is $302640 +in.representative_income 302672 Representative total house income in the dwelling unit is $302672 +in.representative_income 302713 Representative total house income in the dwelling unit is $302713 +in.representative_income 302820 Representative total house income in the dwelling unit is $302820 +in.representative_income 302830 Representative total house income in the dwelling unit is $302830 +in.representative_income 302834 Representative total house income in the dwelling unit is $302834 +in.representative_income 302841 Representative total house income in the dwelling unit is $302841 +in.representative_income 302855 Representative total house income in the dwelling unit is $302855 +in.representative_income 302943 Representative total house income in the dwelling unit is $302943 +in.representative_income 302989 Representative total house income in the dwelling unit is $302989 +in.representative_income 303041 Representative total house income in the dwelling unit is $303041 +in.representative_income 303044 Representative total house income in the dwelling unit is $303044 +in.representative_income 303144 Representative total house income in the dwelling unit is $303144 +in.representative_income 303145 Representative total house income in the dwelling unit is $303145 +in.representative_income 303246 Representative total house income in the dwelling unit is $303246 +in.representative_income 303247 Representative total house income in the dwelling unit is $303247 +in.representative_income 303350 Representative total house income in the dwelling unit is $303350 +in.representative_income 303410 Representative total house income in the dwelling unit is $303410 +in.representative_income 303433 Representative total house income in the dwelling unit is $303433 +in.representative_income 303448 Representative total house income in the dwelling unit is $303448 +in.representative_income 303515 Representative total house income in the dwelling unit is $303515 +in.representative_income 303549 Representative total house income in the dwelling unit is $303549 +in.representative_income 303571 Representative total house income in the dwelling unit is $303571 +in.representative_income 303609 Representative total house income in the dwelling unit is $303609 +in.representative_income 303612 Representative total house income in the dwelling unit is $303612 +in.representative_income 303633 Representative total house income in the dwelling unit is $303633 +in.representative_income 303710 Representative total house income in the dwelling unit is $303710 +in.representative_income 303720 Representative total house income in the dwelling unit is $303720 +in.representative_income 303727 Representative total house income in the dwelling unit is $303727 +in.representative_income 303751 Representative total house income in the dwelling unit is $303751 +in.representative_income 303786 Representative total house income in the dwelling unit is $303786 +in.representative_income 303822 Representative total house income in the dwelling unit is $303822 +in.representative_income 303829 Representative total house income in the dwelling unit is $303829 +in.representative_income 303866 Representative total house income in the dwelling unit is $303866 +in.representative_income 303894 Representative total house income in the dwelling unit is $303894 +in.representative_income 303953 Representative total house income in the dwelling unit is $303953 +in.representative_income 303969 Representative total house income in the dwelling unit is $303969 +in.representative_income 304043 Representative total house income in the dwelling unit is $304043 +in.representative_income 304044 Representative total house income in the dwelling unit is $304044 +in.representative_income 304054 Representative total house income in the dwelling unit is $304054 +in.representative_income 304074 Representative total house income in the dwelling unit is $304074 +in.representative_income 304108 Representative total house income in the dwelling unit is $304108 +in.representative_income 304152 Representative total house income in the dwelling unit is $304152 +in.representative_income 304155 Representative total house income in the dwelling unit is $304155 +in.representative_income 304254 Representative total house income in the dwelling unit is $304254 +in.representative_income 304256 Representative total house income in the dwelling unit is $304256 +in.representative_income 304260 Representative total house income in the dwelling unit is $304260 +in.representative_income 304279 Representative total house income in the dwelling unit is $304279 +in.representative_income 304323 Representative total house income in the dwelling unit is $304323 +in.representative_income 304357 Representative total house income in the dwelling unit is $304357 +in.representative_income 304359 Representative total house income in the dwelling unit is $304359 +in.representative_income 304465 Representative total house income in the dwelling unit is $304465 +in.representative_income 304476 Representative total house income in the dwelling unit is $304476 +in.representative_income 304559 Representative total house income in the dwelling unit is $304559 +in.representative_income 304645 Representative total house income in the dwelling unit is $304645 +in.representative_income 304691 Representative total house income in the dwelling unit is $304691 +in.representative_income 304693 Representative total house income in the dwelling unit is $304693 +in.representative_income 304781 Representative total house income in the dwelling unit is $304781 +in.representative_income 304794 Representative total house income in the dwelling unit is $304794 +in.representative_income 304801 Representative total house income in the dwelling unit is $304801 +in.representative_income 304860 Representative total house income in the dwelling unit is $304860 +in.representative_income 304862 Representative total house income in the dwelling unit is $304862 +in.representative_income 304909 Representative total house income in the dwelling unit is $304909 +in.representative_income 304992 Representative total house income in the dwelling unit is $304992 +in.representative_income 305064 Representative total house income in the dwelling unit is $305064 +in.representative_income 305074 Representative total house income in the dwelling unit is $305074 +in.representative_income 305103 Representative total house income in the dwelling unit is $305103 +in.representative_income 305124 Representative total house income in the dwelling unit is $305124 +in.representative_income 305165 Representative total house income in the dwelling unit is $305165 +in.representative_income 305289 Representative total house income in the dwelling unit is $305289 +in.representative_income 305310 Representative total house income in the dwelling unit is $305310 +in.representative_income 305340 Representative total house income in the dwelling unit is $305340 +in.representative_income 305413 Representative total house income in the dwelling unit is $305413 +in.representative_income 305468 Representative total house income in the dwelling unit is $305468 +in.representative_income 305504 Representative total house income in the dwelling unit is $305504 +in.representative_income 305546 Representative total house income in the dwelling unit is $305546 +in.representative_income 305557 Representative total house income in the dwelling unit is $305557 +in.representative_income 305569 Representative total house income in the dwelling unit is $305569 +in.representative_income 305611 Representative total house income in the dwelling unit is $305611 +in.representative_income 305625 Representative total house income in the dwelling unit is $305625 +in.representative_income 305631 Representative total house income in the dwelling unit is $305631 +in.representative_income 305665 Representative total house income in the dwelling unit is $305665 +in.representative_income 305722 Representative total house income in the dwelling unit is $305722 +in.representative_income 305771 Representative total house income in the dwelling unit is $305771 +in.representative_income 305773 Representative total house income in the dwelling unit is $305773 +in.representative_income 305836 Representative total house income in the dwelling unit is $305836 +in.representative_income 305865 Representative total house income in the dwelling unit is $305865 +in.representative_income 305913 Representative total house income in the dwelling unit is $305913 +in.representative_income 305933 Representative total house income in the dwelling unit is $305933 +in.representative_income 305941 Representative total house income in the dwelling unit is $305941 +in.representative_income 305973 Representative total house income in the dwelling unit is $305973 +in.representative_income 305978 Representative total house income in the dwelling unit is $305978 +in.representative_income 306043 Representative total house income in the dwelling unit is $306043 +in.representative_income 306046 Representative total house income in the dwelling unit is $306046 +in.representative_income 306074 Representative total house income in the dwelling unit is $306074 +in.representative_income 306135 Representative total house income in the dwelling unit is $306135 +in.representative_income 306152 Representative total house income in the dwelling unit is $306152 +in.representative_income 306238 Representative total house income in the dwelling unit is $306238 +in.representative_income 306258 Representative total house income in the dwelling unit is $306258 +in.representative_income 306276 Representative total house income in the dwelling unit is $306276 +in.representative_income 306341 Representative total house income in the dwelling unit is $306341 +in.representative_income 306362 Representative total house income in the dwelling unit is $306362 +in.representative_income 306363 Representative total house income in the dwelling unit is $306363 +in.representative_income 306377 Representative total house income in the dwelling unit is $306377 +in.representative_income 306421 Representative total house income in the dwelling unit is $306421 +in.representative_income 306445 Representative total house income in the dwelling unit is $306445 +in.representative_income 306468 Representative total house income in the dwelling unit is $306468 +in.representative_income 306489 Representative total house income in the dwelling unit is $306489 +in.representative_income 306548 Representative total house income in the dwelling unit is $306548 +in.representative_income 306574 Representative total house income in the dwelling unit is $306574 +in.representative_income 306579 Representative total house income in the dwelling unit is $306579 +in.representative_income 306637 Representative total house income in the dwelling unit is $306637 +in.representative_income 306680 Representative total house income in the dwelling unit is $306680 +in.representative_income 306685 Representative total house income in the dwelling unit is $306685 +in.representative_income 306720 Representative total house income in the dwelling unit is $306720 +in.representative_income 306788 Representative total house income in the dwelling unit is $306788 +in.representative_income 306791 Representative total house income in the dwelling unit is $306791 +in.representative_income 306853 Representative total house income in the dwelling unit is $306853 +in.representative_income 306857 Representative total house income in the dwelling unit is $306857 +in.representative_income 306864 Representative total house income in the dwelling unit is $306864 +in.representative_income 306868 Representative total house income in the dwelling unit is $306868 +in.representative_income 306890 Representative total house income in the dwelling unit is $306890 +in.representative_income 306960 Representative total house income in the dwelling unit is $306960 +in.representative_income 306983 Representative total house income in the dwelling unit is $306983 +in.representative_income 306996 Representative total house income in the dwelling unit is $306996 +in.representative_income 307006 Representative total house income in the dwelling unit is $307006 +in.representative_income 307042 Representative total house income in the dwelling unit is $307042 +in.representative_income 307070 Representative total house income in the dwelling unit is $307070 +in.representative_income 307084 Representative total house income in the dwelling unit is $307084 +in.representative_income 307167 Representative total house income in the dwelling unit is $307167 +in.representative_income 307195 Representative total house income in the dwelling unit is $307195 +in.representative_income 307199 Representative total house income in the dwelling unit is $307199 +in.representative_income 307206 Representative total house income in the dwelling unit is $307206 +in.representative_income 307275 Representative total house income in the dwelling unit is $307275 +in.representative_income 307286 Representative total house income in the dwelling unit is $307286 +in.representative_income 307312 Representative total house income in the dwelling unit is $307312 +in.representative_income 307373 Representative total house income in the dwelling unit is $307373 +in.representative_income 307476 Representative total house income in the dwelling unit is $307476 +in.representative_income 307488 Representative total house income in the dwelling unit is $307488 +in.representative_income 307490 Representative total house income in the dwelling unit is $307490 +in.representative_income 307501 Representative total house income in the dwelling unit is $307501 +in.representative_income 307579 Representative total house income in the dwelling unit is $307579 +in.representative_income 307589 Representative total house income in the dwelling unit is $307589 +in.representative_income 307609 Representative total house income in the dwelling unit is $307609 +in.representative_income 307682 Representative total house income in the dwelling unit is $307682 +in.representative_income 307690 Representative total house income in the dwelling unit is $307690 +in.representative_income 307717 Representative total house income in the dwelling unit is $307717 +in.representative_income 307734 Representative total house income in the dwelling unit is $307734 +in.representative_income 307758 Representative total house income in the dwelling unit is $307758 +in.representative_income 307791 Representative total house income in the dwelling unit is $307791 +in.representative_income 307826 Representative total house income in the dwelling unit is $307826 +in.representative_income 307839 Representative total house income in the dwelling unit is $307839 +in.representative_income 307892 Representative total house income in the dwelling unit is $307892 +in.representative_income 307934 Representative total house income in the dwelling unit is $307934 +in.representative_income 307935 Representative total house income in the dwelling unit is $307935 +in.representative_income 307944 Representative total house income in the dwelling unit is $307944 +in.representative_income 307993 Representative total house income in the dwelling unit is $307993 +in.representative_income 308080 Representative total house income in the dwelling unit is $308080 +in.representative_income 308094 Representative total house income in the dwelling unit is $308094 +in.representative_income 308095 Representative total house income in the dwelling unit is $308095 +in.representative_income 308122 Representative total house income in the dwelling unit is $308122 +in.representative_income 308156 Representative total house income in the dwelling unit is $308156 +in.representative_income 308195 Representative total house income in the dwelling unit is $308195 +in.representative_income 308226 Representative total house income in the dwelling unit is $308226 +in.representative_income 308258 Representative total house income in the dwelling unit is $308258 +in.representative_income 308327 Representative total house income in the dwelling unit is $308327 +in.representative_income 308404 Representative total house income in the dwelling unit is $308404 +in.representative_income 308456 Representative total house income in the dwelling unit is $308456 +in.representative_income 308472 Representative total house income in the dwelling unit is $308472 +in.representative_income 308474 Representative total house income in the dwelling unit is $308474 +in.representative_income 308498 Representative total house income in the dwelling unit is $308498 +in.representative_income 308500 Representative total house income in the dwelling unit is $308500 +in.representative_income 308611 Representative total house income in the dwelling unit is $308611 +in.representative_income 308724 Representative total house income in the dwelling unit is $308724 +in.representative_income 308801 Representative total house income in the dwelling unit is $308801 +in.representative_income 308902 Representative total house income in the dwelling unit is $308902 +in.representative_income 308906 Representative total house income in the dwelling unit is $308906 +in.representative_income 308912 Representative total house income in the dwelling unit is $308912 +in.representative_income 308999 Representative total house income in the dwelling unit is $308999 +in.representative_income 309014 Representative total house income in the dwelling unit is $309014 +in.representative_income 309104 Representative total house income in the dwelling unit is $309104 +in.representative_income 309105 Representative total house income in the dwelling unit is $309105 +in.representative_income 309122 Representative total house income in the dwelling unit is $309122 +in.representative_income 309153 Representative total house income in the dwelling unit is $309153 +in.representative_income 309176 Representative total house income in the dwelling unit is $309176 +in.representative_income 309205 Representative total house income in the dwelling unit is $309205 +in.representative_income 309207 Representative total house income in the dwelling unit is $309207 +in.representative_income 309218 Representative total house income in the dwelling unit is $309218 +in.representative_income 309230 Representative total house income in the dwelling unit is $309230 +in.representative_income 309261 Representative total house income in the dwelling unit is $309261 +in.representative_income 309316 Representative total house income in the dwelling unit is $309316 +in.representative_income 309329 Representative total house income in the dwelling unit is $309329 +in.representative_income 309415 Representative total house income in the dwelling unit is $309415 +in.representative_income 309435 Representative total house income in the dwelling unit is $309435 +in.representative_income 309467 Representative total house income in the dwelling unit is $309467 +in.representative_income 309487 Representative total house income in the dwelling unit is $309487 +in.representative_income 309527 Representative total house income in the dwelling unit is $309527 +in.representative_income 309539 Representative total house income in the dwelling unit is $309539 +in.representative_income 309609 Representative total house income in the dwelling unit is $309609 +in.representative_income 309637 Representative total house income in the dwelling unit is $309637 +in.representative_income 309642 Representative total house income in the dwelling unit is $309642 +in.representative_income 309663 Representative total house income in the dwelling unit is $309663 +in.representative_income 309690 Representative total house income in the dwelling unit is $309690 +in.representative_income 309745 Representative total house income in the dwelling unit is $309745 +in.representative_income 309785 Representative total house income in the dwelling unit is $309785 +in.representative_income 309791 Representative total house income in the dwelling unit is $309791 +in.representative_income 309797 Representative total house income in the dwelling unit is $309797 +in.representative_income 309849 Representative total house income in the dwelling unit is $309849 +in.representative_income 309980 Representative total house income in the dwelling unit is $309980 +in.representative_income 310003 Representative total house income in the dwelling unit is $310003 +in.representative_income 310014 Representative total house income in the dwelling unit is $310014 +in.representative_income 310054 Representative total house income in the dwelling unit is $310054 +in.representative_income 310094 Representative total house income in the dwelling unit is $310094 +in.representative_income 310115 Representative total house income in the dwelling unit is $310115 +in.representative_income 310158 Representative total house income in the dwelling unit is $310158 +in.representative_income 310226 Representative total house income in the dwelling unit is $310226 +in.representative_income 310230 Representative total house income in the dwelling unit is $310230 +in.representative_income 310261 Representative total house income in the dwelling unit is $310261 +in.representative_income 310311 Representative total house income in the dwelling unit is $310311 +in.representative_income 310334 Representative total house income in the dwelling unit is $310334 +in.representative_income 310418 Representative total house income in the dwelling unit is $310418 +in.representative_income 310442 Representative total house income in the dwelling unit is $310442 +in.representative_income 310467 Representative total house income in the dwelling unit is $310467 +in.representative_income 310519 Representative total house income in the dwelling unit is $310519 +in.representative_income 310527 Representative total house income in the dwelling unit is $310527 +in.representative_income 310582 Representative total house income in the dwelling unit is $310582 +in.representative_income 310721 Representative total house income in the dwelling unit is $310721 +in.representative_income 310777 Representative total house income in the dwelling unit is $310777 +in.representative_income 310851 Representative total house income in the dwelling unit is $310851 +in.representative_income 310871 Representative total house income in the dwelling unit is $310871 +in.representative_income 310898 Representative total house income in the dwelling unit is $310898 +in.representative_income 310923 Representative total house income in the dwelling unit is $310923 +in.representative_income 310978 Representative total house income in the dwelling unit is $310978 +in.representative_income 310983 Representative total house income in the dwelling unit is $310983 +in.representative_income 310990 Representative total house income in the dwelling unit is $310990 +in.representative_income 311034 Representative total house income in the dwelling unit is $311034 +in.representative_income 311086 Representative total house income in the dwelling unit is $311086 +in.representative_income 311108 Representative total house income in the dwelling unit is $311108 +in.representative_income 311125 Representative total house income in the dwelling unit is $311125 +in.representative_income 311175 Representative total house income in the dwelling unit is $311175 +in.representative_income 311189 Representative total house income in the dwelling unit is $311189 +in.representative_income 311247 Representative total house income in the dwelling unit is $311247 +in.representative_income 311300 Representative total house income in the dwelling unit is $311300 +in.representative_income 311320 Representative total house income in the dwelling unit is $311320 +in.representative_income 311372 Representative total house income in the dwelling unit is $311372 +in.representative_income 311407 Representative total house income in the dwelling unit is $311407 +in.representative_income 311425 Representative total house income in the dwelling unit is $311425 +in.representative_income 311451 Representative total house income in the dwelling unit is $311451 +in.representative_income 311499 Representative total house income in the dwelling unit is $311499 +in.representative_income 311515 Representative total house income in the dwelling unit is $311515 +in.representative_income 311601 Representative total house income in the dwelling unit is $311601 +in.representative_income 311607 Representative total house income in the dwelling unit is $311607 +in.representative_income 311630 Representative total house income in the dwelling unit is $311630 +in.representative_income 311705 Representative total house income in the dwelling unit is $311705 +in.representative_income 311730 Representative total house income in the dwelling unit is $311730 +in.representative_income 311741 Representative total house income in the dwelling unit is $311741 +in.representative_income 311808 Representative total house income in the dwelling unit is $311808 +in.representative_income 311832 Representative total house income in the dwelling unit is $311832 +in.representative_income 311932 Representative total house income in the dwelling unit is $311932 +in.representative_income 311944 Representative total house income in the dwelling unit is $311944 +in.representative_income 311953 Representative total house income in the dwelling unit is $311953 +in.representative_income 312015 Representative total house income in the dwelling unit is $312015 +in.representative_income 312089 Representative total house income in the dwelling unit is $312089 +in.representative_income 312117 Representative total house income in the dwelling unit is $312117 +in.representative_income 312135 Representative total house income in the dwelling unit is $312135 +in.representative_income 312163 Representative total house income in the dwelling unit is $312163 +in.representative_income 312256 Representative total house income in the dwelling unit is $312256 +in.representative_income 312373 Representative total house income in the dwelling unit is $312373 +in.representative_income 312374 Representative total house income in the dwelling unit is $312374 +in.representative_income 312426 Representative total house income in the dwelling unit is $312426 +in.representative_income 312427 Representative total house income in the dwelling unit is $312427 +in.representative_income 312481 Representative total house income in the dwelling unit is $312481 +in.representative_income 312530 Representative total house income in the dwelling unit is $312530 +in.representative_income 312588 Representative total house income in the dwelling unit is $312588 +in.representative_income 312640 Representative total house income in the dwelling unit is $312640 +in.representative_income 312688 Representative total house income in the dwelling unit is $312688 +in.representative_income 312691 Representative total house income in the dwelling unit is $312691 +in.representative_income 312741 Representative total house income in the dwelling unit is $312741 +in.representative_income 312796 Representative total house income in the dwelling unit is $312796 +in.representative_income 312849 Representative total house income in the dwelling unit is $312849 +in.representative_income 312857 Representative total house income in the dwelling unit is $312857 +in.representative_income 312910 Representative total house income in the dwelling unit is $312910 +in.representative_income 312943 Representative total house income in the dwelling unit is $312943 +in.representative_income 313006 Representative total house income in the dwelling unit is $313006 +in.representative_income 313017 Representative total house income in the dwelling unit is $313017 +in.representative_income 313113 Representative total house income in the dwelling unit is $313113 +in.representative_income 313145 Representative total house income in the dwelling unit is $313145 +in.representative_income 313218 Representative total house income in the dwelling unit is $313218 +in.representative_income 313233 Representative total house income in the dwelling unit is $313233 +in.representative_income 313246 Representative total house income in the dwelling unit is $313246 +in.representative_income 313313 Representative total house income in the dwelling unit is $313313 +in.representative_income 313337 Representative total house income in the dwelling unit is $313337 +in.representative_income 313429 Representative total house income in the dwelling unit is $313429 +in.representative_income 313534 Representative total house income in the dwelling unit is $313534 +in.representative_income 313549 Representative total house income in the dwelling unit is $313549 +in.representative_income 313562 Representative total house income in the dwelling unit is $313562 +in.representative_income 313639 Representative total house income in the dwelling unit is $313639 +in.representative_income 313650 Representative total house income in the dwelling unit is $313650 +in.representative_income 313662 Representative total house income in the dwelling unit is $313662 +in.representative_income 313746 Representative total house income in the dwelling unit is $313746 +in.representative_income 313768 Representative total house income in the dwelling unit is $313768 +in.representative_income 313805 Representative total house income in the dwelling unit is $313805 +in.representative_income 313953 Representative total house income in the dwelling unit is $313953 +in.representative_income 314077 Representative total house income in the dwelling unit is $314077 +in.representative_income 314155 Representative total house income in the dwelling unit is $314155 +in.representative_income 314233 Representative total house income in the dwelling unit is $314233 +in.representative_income 314273 Representative total house income in the dwelling unit is $314273 +in.representative_income 314309 Representative total house income in the dwelling unit is $314309 +in.representative_income 314315 Representative total house income in the dwelling unit is $314315 +in.representative_income 314357 Representative total house income in the dwelling unit is $314357 +in.representative_income 314368 Representative total house income in the dwelling unit is $314368 +in.representative_income 314417 Representative total house income in the dwelling unit is $314417 +in.representative_income 314458 Representative total house income in the dwelling unit is $314458 +in.representative_income 314521 Representative total house income in the dwelling unit is $314521 +in.representative_income 314525 Representative total house income in the dwelling unit is $314525 +in.representative_income 314559 Representative total house income in the dwelling unit is $314559 +in.representative_income 314593 Representative total house income in the dwelling unit is $314593 +in.representative_income 314627 Representative total house income in the dwelling unit is $314627 +in.representative_income 314633 Representative total house income in the dwelling unit is $314633 +in.representative_income 314660 Representative total house income in the dwelling unit is $314660 +in.representative_income 314694 Representative total house income in the dwelling unit is $314694 +in.representative_income 314705 Representative total house income in the dwelling unit is $314705 +in.representative_income 314735 Representative total house income in the dwelling unit is $314735 +in.representative_income 314761 Representative total house income in the dwelling unit is $314761 +in.representative_income 314800 Representative total house income in the dwelling unit is $314800 +in.representative_income 314848 Representative total house income in the dwelling unit is $314848 +in.representative_income 314950 Representative total house income in the dwelling unit is $314950 +in.representative_income 314963 Representative total house income in the dwelling unit is $314963 +in.representative_income 315005 Representative total house income in the dwelling unit is $315005 +in.representative_income 315011 Representative total house income in the dwelling unit is $315011 +in.representative_income 315065 Representative total house income in the dwelling unit is $315065 +in.representative_income 315109 Representative total house income in the dwelling unit is $315109 +in.representative_income 315165 Representative total house income in the dwelling unit is $315165 +in.representative_income 315173 Representative total house income in the dwelling unit is $315173 +in.representative_income 315216 Representative total house income in the dwelling unit is $315216 +in.representative_income 315327 Representative total house income in the dwelling unit is $315327 +in.representative_income 315367 Representative total house income in the dwelling unit is $315367 +in.representative_income 315368 Representative total house income in the dwelling unit is $315368 +in.representative_income 315389 Representative total house income in the dwelling unit is $315389 +in.representative_income 315468 Representative total house income in the dwelling unit is $315468 +in.representative_income 315485 Representative total house income in the dwelling unit is $315485 +in.representative_income 315497 Representative total house income in the dwelling unit is $315497 +in.representative_income 315569 Representative total house income in the dwelling unit is $315569 +in.representative_income 315594 Representative total house income in the dwelling unit is $315594 +in.representative_income 315624 Representative total house income in the dwelling unit is $315624 +in.representative_income 315644 Representative total house income in the dwelling unit is $315644 +in.representative_income 315670 Representative total house income in the dwelling unit is $315670 +in.representative_income 315702 Representative total house income in the dwelling unit is $315702 +in.representative_income 315787 Representative total house income in the dwelling unit is $315787 +in.representative_income 315912 Representative total house income in the dwelling unit is $315912 +in.representative_income 315930 Representative total house income in the dwelling unit is $315930 +in.representative_income 315934 Representative total house income in the dwelling unit is $315934 +in.representative_income 316023 Representative total house income in the dwelling unit is $316023 +in.representative_income 316024 Representative total house income in the dwelling unit is $316024 +in.representative_income 316037 Representative total house income in the dwelling unit is $316037 +in.representative_income 316065 Representative total house income in the dwelling unit is $316065 +in.representative_income 316140 Representative total house income in the dwelling unit is $316140 +in.representative_income 316145 Representative total house income in the dwelling unit is $316145 +in.representative_income 316175 Representative total house income in the dwelling unit is $316175 +in.representative_income 316276 Representative total house income in the dwelling unit is $316276 +in.representative_income 316382 Representative total house income in the dwelling unit is $316382 +in.representative_income 316478 Representative total house income in the dwelling unit is $316478 +in.representative_income 316482 Representative total house income in the dwelling unit is $316482 +in.representative_income 316567 Representative total house income in the dwelling unit is $316567 +in.representative_income 316578 Representative total house income in the dwelling unit is $316578 +in.representative_income 316592 Representative total house income in the dwelling unit is $316592 +in.representative_income 316656 Representative total house income in the dwelling unit is $316656 +in.representative_income 316668 Representative total house income in the dwelling unit is $316668 +in.representative_income 316680 Representative total house income in the dwelling unit is $316680 +in.representative_income 316698 Representative total house income in the dwelling unit is $316698 +in.representative_income 316862 Representative total house income in the dwelling unit is $316862 +in.representative_income 316883 Representative total house income in the dwelling unit is $316883 +in.representative_income 316902 Representative total house income in the dwelling unit is $316902 +in.representative_income 316989 Representative total house income in the dwelling unit is $316989 +in.representative_income 317015 Representative total house income in the dwelling unit is $317015 +in.representative_income 317118 Representative total house income in the dwelling unit is $317118 +in.representative_income 317186 Representative total house income in the dwelling unit is $317186 +in.representative_income 317225 Representative total house income in the dwelling unit is $317225 +in.representative_income 317275 Representative total house income in the dwelling unit is $317275 +in.representative_income 317287 Representative total house income in the dwelling unit is $317287 +in.representative_income 317331 Representative total house income in the dwelling unit is $317331 +in.representative_income 317367 Representative total house income in the dwelling unit is $317367 +in.representative_income 317418 Representative total house income in the dwelling unit is $317418 +in.representative_income 317437 Representative total house income in the dwelling unit is $317437 +in.representative_income 317438 Representative total house income in the dwelling unit is $317438 +in.representative_income 317442 Representative total house income in the dwelling unit is $317442 +in.representative_income 317526 Representative total house income in the dwelling unit is $317526 +in.representative_income 317658 Representative total house income in the dwelling unit is $317658 +in.representative_income 317687 Representative total house income in the dwelling unit is $317687 +in.representative_income 317691 Representative total house income in the dwelling unit is $317691 +in.representative_income 317741 Representative total house income in the dwelling unit is $317741 +in.representative_income 317753 Representative total house income in the dwelling unit is $317753 +in.representative_income 317766 Representative total house income in the dwelling unit is $317766 +in.representative_income 317874 Representative total house income in the dwelling unit is $317874 +in.representative_income 317955 Representative total house income in the dwelling unit is $317955 +in.representative_income 318063 Representative total house income in the dwelling unit is $318063 +in.representative_income 318070 Representative total house income in the dwelling unit is $318070 +in.representative_income 318095 Representative total house income in the dwelling unit is $318095 +in.representative_income 318112 Representative total house income in the dwelling unit is $318112 +in.representative_income 318196 Representative total house income in the dwelling unit is $318196 +in.representative_income 318199 Representative total house income in the dwelling unit is $318199 +in.representative_income 318203 Representative total house income in the dwelling unit is $318203 +in.representative_income 318278 Representative total house income in the dwelling unit is $318278 +in.representative_income 318385 Representative total house income in the dwelling unit is $318385 +in.representative_income 318491 Representative total house income in the dwelling unit is $318491 +in.representative_income 318513 Representative total house income in the dwelling unit is $318513 +in.representative_income 318630 Representative total house income in the dwelling unit is $318630 +in.representative_income 318702 Representative total house income in the dwelling unit is $318702 +in.representative_income 318718 Representative total house income in the dwelling unit is $318718 +in.representative_income 318738 Representative total house income in the dwelling unit is $318738 +in.representative_income 318802 Representative total house income in the dwelling unit is $318802 +in.representative_income 318808 Representative total house income in the dwelling unit is $318808 +in.representative_income 318814 Representative total house income in the dwelling unit is $318814 +in.representative_income 318857 Representative total house income in the dwelling unit is $318857 +in.representative_income 318903 Representative total house income in the dwelling unit is $318903 +in.representative_income 318913 Representative total house income in the dwelling unit is $318913 +in.representative_income 319009 Representative total house income in the dwelling unit is $319009 +in.representative_income 319063 Representative total house income in the dwelling unit is $319063 +in.representative_income 319124 Representative total house income in the dwelling unit is $319124 +in.representative_income 319171 Representative total house income in the dwelling unit is $319171 +in.representative_income 319206 Representative total house income in the dwelling unit is $319206 +in.representative_income 319279 Representative total house income in the dwelling unit is $319279 +in.representative_income 319307 Representative total house income in the dwelling unit is $319307 +in.representative_income 319387 Representative total house income in the dwelling unit is $319387 +in.representative_income 319509 Representative total house income in the dwelling unit is $319509 +in.representative_income 319533 Representative total house income in the dwelling unit is $319533 +in.representative_income 319546 Representative total house income in the dwelling unit is $319546 +in.representative_income 319566 Representative total house income in the dwelling unit is $319566 +in.representative_income 319684 Representative total house income in the dwelling unit is $319684 +in.representative_income 319751 Representative total house income in the dwelling unit is $319751 +in.representative_income 319756 Representative total house income in the dwelling unit is $319756 +in.representative_income 319812 Representative total house income in the dwelling unit is $319812 +in.representative_income 319819 Representative total house income in the dwelling unit is $319819 +in.representative_income 319888 Representative total house income in the dwelling unit is $319888 +in.representative_income 319920 Representative total house income in the dwelling unit is $319920 +in.representative_income 319956 Representative total house income in the dwelling unit is $319956 +in.representative_income 319995 Representative total house income in the dwelling unit is $319995 +in.representative_income 320163 Representative total house income in the dwelling unit is $320163 +in.representative_income 320178 Representative total house income in the dwelling unit is $320178 +in.representative_income 320216 Representative total house income in the dwelling unit is $320216 +in.representative_income 320266 Representative total house income in the dwelling unit is $320266 +in.representative_income 320273 Representative total house income in the dwelling unit is $320273 +in.representative_income 320274 Representative total house income in the dwelling unit is $320274 +in.representative_income 320317 Representative total house income in the dwelling unit is $320317 +in.representative_income 320369 Representative total house income in the dwelling unit is $320369 +in.representative_income 320418 Representative total house income in the dwelling unit is $320418 +in.representative_income 320424 Representative total house income in the dwelling unit is $320424 +in.representative_income 320468 Representative total house income in the dwelling unit is $320468 +in.representative_income 320601 Representative total house income in the dwelling unit is $320601 +in.representative_income 320620 Representative total house income in the dwelling unit is $320620 +in.representative_income 320653 Representative total house income in the dwelling unit is $320653 +in.representative_income 320721 Representative total house income in the dwelling unit is $320721 +in.representative_income 320782 Representative total house income in the dwelling unit is $320782 +in.representative_income 320822 Representative total house income in the dwelling unit is $320822 +in.representative_income 320874 Representative total house income in the dwelling unit is $320874 +in.representative_income 320899 Representative total house income in the dwelling unit is $320899 +in.representative_income 320916 Representative total house income in the dwelling unit is $320916 +in.representative_income 320917 Representative total house income in the dwelling unit is $320917 +in.representative_income 320961 Representative total house income in the dwelling unit is $320961 +in.representative_income 320972 Representative total house income in the dwelling unit is $320972 +in.representative_income 321024 Representative total house income in the dwelling unit is $321024 +in.representative_income 321226 Representative total house income in the dwelling unit is $321226 +in.representative_income 321261 Representative total house income in the dwelling unit is $321261 +in.representative_income 321284 Representative total house income in the dwelling unit is $321284 +in.representative_income 321298 Representative total house income in the dwelling unit is $321298 +in.representative_income 321428 Representative total house income in the dwelling unit is $321428 +in.representative_income 321440 Representative total house income in the dwelling unit is $321440 +in.representative_income 321451 Representative total house income in the dwelling unit is $321451 +in.representative_income 321548 Representative total house income in the dwelling unit is $321548 +in.representative_income 321655 Representative total house income in the dwelling unit is $321655 +in.representative_income 321760 Representative total house income in the dwelling unit is $321760 +in.representative_income 321764 Representative total house income in the dwelling unit is $321764 +in.representative_income 321813 Representative total house income in the dwelling unit is $321813 +in.representative_income 321832 Representative total house income in the dwelling unit is $321832 +in.representative_income 321866 Representative total house income in the dwelling unit is $321866 +in.representative_income 321880 Representative total house income in the dwelling unit is $321880 +in.representative_income 321933 Representative total house income in the dwelling unit is $321933 +in.representative_income 321980 Representative total house income in the dwelling unit is $321980 +in.representative_income 322019 Representative total house income in the dwelling unit is $322019 +in.representative_income 322035 Representative total house income in the dwelling unit is $322035 +in.representative_income 322050 Representative total house income in the dwelling unit is $322050 +in.representative_income 322089 Representative total house income in the dwelling unit is $322089 +in.representative_income 322142 Representative total house income in the dwelling unit is $322142 +in.representative_income 322182 Representative total house income in the dwelling unit is $322182 +in.representative_income 322236 Representative total house income in the dwelling unit is $322236 +in.representative_income 322287 Representative total house income in the dwelling unit is $322287 +in.representative_income 322329 Representative total house income in the dwelling unit is $322329 +in.representative_income 322357 Representative total house income in the dwelling unit is $322357 +in.representative_income 322393 Representative total house income in the dwelling unit is $322393 +in.representative_income 322432 Representative total house income in the dwelling unit is $322432 +in.representative_income 322438 Representative total house income in the dwelling unit is $322438 +in.representative_income 322464 Representative total house income in the dwelling unit is $322464 +in.representative_income 322628 Representative total house income in the dwelling unit is $322628 +in.representative_income 322656 Representative total house income in the dwelling unit is $322656 +in.representative_income 322710 Representative total house income in the dwelling unit is $322710 +in.representative_income 322842 Representative total house income in the dwelling unit is $322842 +in.representative_income 322845 Representative total house income in the dwelling unit is $322845 +in.representative_income 322894 Representative total house income in the dwelling unit is $322894 +in.representative_income 322920 Representative total house income in the dwelling unit is $322920 +in.representative_income 322953 Representative total house income in the dwelling unit is $322953 +in.representative_income 323044 Representative total house income in the dwelling unit is $323044 +in.representative_income 323061 Representative total house income in the dwelling unit is $323061 +in.representative_income 323108 Representative total house income in the dwelling unit is $323108 +in.representative_income 323145 Representative total house income in the dwelling unit is $323145 +in.representative_income 323237 Representative total house income in the dwelling unit is $323237 +in.representative_income 323246 Representative total house income in the dwelling unit is $323246 +in.representative_income 323257 Representative total house income in the dwelling unit is $323257 +in.representative_income 323342 Representative total house income in the dwelling unit is $323342 +in.representative_income 323448 Representative total house income in the dwelling unit is $323448 +in.representative_income 323538 Representative total house income in the dwelling unit is $323538 +in.representative_income 323658 Representative total house income in the dwelling unit is $323658 +in.representative_income 323668 Representative total house income in the dwelling unit is $323668 +in.representative_income 323751 Representative total house income in the dwelling unit is $323751 +in.representative_income 323752 Representative total house income in the dwelling unit is $323752 +in.representative_income 323764 Representative total house income in the dwelling unit is $323764 +in.representative_income 323817 Representative total house income in the dwelling unit is $323817 +in.representative_income 323824 Representative total house income in the dwelling unit is $323824 +in.representative_income 323833 Representative total house income in the dwelling unit is $323833 +in.representative_income 323876 Representative total house income in the dwelling unit is $323876 +in.representative_income 323967 Representative total house income in the dwelling unit is $323967 +in.representative_income 324083 Representative total house income in the dwelling unit is $324083 +in.representative_income 324141 Representative total house income in the dwelling unit is $324141 +in.representative_income 324181 Representative total house income in the dwelling unit is $324181 +in.representative_income 324185 Representative total house income in the dwelling unit is $324185 +in.representative_income 324195 Representative total house income in the dwelling unit is $324195 +in.representative_income 324257 Representative total house income in the dwelling unit is $324257 +in.representative_income 324259 Representative total house income in the dwelling unit is $324259 +in.representative_income 324288 Representative total house income in the dwelling unit is $324288 +in.representative_income 324291 Representative total house income in the dwelling unit is $324291 +in.representative_income 324344 Representative total house income in the dwelling unit is $324344 +in.representative_income 324357 Representative total house income in the dwelling unit is $324357 +in.representative_income 324392 Representative total house income in the dwelling unit is $324392 +in.representative_income 324396 Representative total house income in the dwelling unit is $324396 +in.representative_income 324465 Representative total house income in the dwelling unit is $324465 +in.representative_income 324495 Representative total house income in the dwelling unit is $324495 +in.representative_income 324504 Representative total house income in the dwelling unit is $324504 +in.representative_income 324573 Representative total house income in the dwelling unit is $324573 +in.representative_income 324608 Representative total house income in the dwelling unit is $324608 +in.representative_income 324742 Representative total house income in the dwelling unit is $324742 +in.representative_income 324789 Representative total house income in the dwelling unit is $324789 +in.representative_income 324818 Representative total house income in the dwelling unit is $324818 +in.representative_income 324825 Representative total house income in the dwelling unit is $324825 +in.representative_income 324863 Representative total house income in the dwelling unit is $324863 +in.representative_income 324907 Representative total house income in the dwelling unit is $324907 +in.representative_income 325005 Representative total house income in the dwelling unit is $325005 +in.representative_income 325011 Representative total house income in the dwelling unit is $325011 +in.representative_income 325041 Representative total house income in the dwelling unit is $325041 +in.representative_income 325065 Representative total house income in the dwelling unit is $325065 +in.representative_income 325114 Representative total house income in the dwelling unit is $325114 +in.representative_income 325222 Representative total house income in the dwelling unit is $325222 +in.representative_income 325255 Representative total house income in the dwelling unit is $325255 +in.representative_income 325267 Representative total house income in the dwelling unit is $325267 +in.representative_income 325320 Representative total house income in the dwelling unit is $325320 +in.representative_income 325346 Representative total house income in the dwelling unit is $325346 +in.representative_income 325423 Representative total house income in the dwelling unit is $325423 +in.representative_income 325451 Representative total house income in the dwelling unit is $325451 +in.representative_income 325526 Representative total house income in the dwelling unit is $325526 +in.representative_income 325577 Representative total house income in the dwelling unit is $325577 +in.representative_income 325761 Representative total house income in the dwelling unit is $325761 +in.representative_income 325768 Representative total house income in the dwelling unit is $325768 +in.representative_income 325815 Representative total house income in the dwelling unit is $325815 +in.representative_income 325873 Representative total house income in the dwelling unit is $325873 +in.representative_income 325939 Representative total house income in the dwelling unit is $325939 +in.representative_income 325979 Representative total house income in the dwelling unit is $325979 +in.representative_income 326108 Representative total house income in the dwelling unit is $326108 +in.representative_income 326195 Representative total house income in the dwelling unit is $326195 +in.representative_income 326200 Representative total house income in the dwelling unit is $326200 +in.representative_income 326249 Representative total house income in the dwelling unit is $326249 +in.representative_income 326277 Representative total house income in the dwelling unit is $326277 +in.representative_income 326300 Representative total house income in the dwelling unit is $326300 +in.representative_income 326302 Representative total house income in the dwelling unit is $326302 +in.representative_income 326348 Representative total house income in the dwelling unit is $326348 +in.representative_income 326401 Representative total house income in the dwelling unit is $326401 +in.representative_income 326410 Representative total house income in the dwelling unit is $326410 +in.representative_income 326506 Representative total house income in the dwelling unit is $326506 +in.representative_income 326518 Representative total house income in the dwelling unit is $326518 +in.representative_income 326611 Representative total house income in the dwelling unit is $326611 +in.representative_income 326626 Representative total house income in the dwelling unit is $326626 +in.representative_income 326651 Representative total house income in the dwelling unit is $326651 +in.representative_income 326661 Representative total house income in the dwelling unit is $326661 +in.representative_income 326782 Representative total house income in the dwelling unit is $326782 +in.representative_income 326842 Representative total house income in the dwelling unit is $326842 +in.representative_income 326855 Representative total house income in the dwelling unit is $326855 +in.representative_income 326866 Representative total house income in the dwelling unit is $326866 +in.representative_income 326883 Representative total house income in the dwelling unit is $326883 +in.representative_income 326928 Representative total house income in the dwelling unit is $326928 +in.representative_income 326933 Representative total house income in the dwelling unit is $326933 +in.representative_income 326970 Representative total house income in the dwelling unit is $326970 +in.representative_income 327034 Representative total house income in the dwelling unit is $327034 +in.representative_income 327177 Representative total house income in the dwelling unit is $327177 +in.representative_income 327188 Representative total house income in the dwelling unit is $327188 +in.representative_income 327280 Representative total house income in the dwelling unit is $327280 +in.representative_income 327287 Representative total house income in the dwelling unit is $327287 +in.representative_income 327299 Representative total house income in the dwelling unit is $327299 +in.representative_income 327349 Representative total house income in the dwelling unit is $327349 +in.representative_income 327382 Representative total house income in the dwelling unit is $327382 +in.representative_income 327402 Representative total house income in the dwelling unit is $327402 +in.representative_income 327434 Representative total house income in the dwelling unit is $327434 +in.representative_income 327449 Representative total house income in the dwelling unit is $327449 +in.representative_income 327455 Representative total house income in the dwelling unit is $327455 +in.representative_income 327666 Representative total house income in the dwelling unit is $327666 +in.representative_income 327772 Representative total house income in the dwelling unit is $327772 +in.representative_income 327792 Representative total house income in the dwelling unit is $327792 +in.representative_income 327831 Representative total house income in the dwelling unit is $327831 +in.representative_income 327939 Representative total house income in the dwelling unit is $327939 +in.representative_income 327982 Representative total house income in the dwelling unit is $327982 +in.representative_income 328001 Representative total house income in the dwelling unit is $328001 +in.representative_income 328045 Representative total house income in the dwelling unit is $328045 +in.representative_income 328046 Representative total house income in the dwelling unit is $328046 +in.representative_income 328087 Representative total house income in the dwelling unit is $328087 +in.representative_income 328194 Representative total house income in the dwelling unit is $328194 +in.representative_income 328208 Representative total house income in the dwelling unit is $328208 +in.representative_income 328297 Representative total house income in the dwelling unit is $328297 +in.representative_income 328299 Representative total house income in the dwelling unit is $328299 +in.representative_income 328463 Representative total house income in the dwelling unit is $328463 +in.representative_income 328476 Representative total house income in the dwelling unit is $328476 +in.representative_income 328499 Representative total house income in the dwelling unit is $328499 +in.representative_income 328518 Representative total house income in the dwelling unit is $328518 +in.representative_income 328600 Representative total house income in the dwelling unit is $328600 +in.representative_income 328620 Representative total house income in the dwelling unit is $328620 +in.representative_income 328827 Representative total house income in the dwelling unit is $328827 +in.representative_income 329034 Representative total house income in the dwelling unit is $329034 +in.representative_income 329037 Representative total house income in the dwelling unit is $329037 +in.representative_income 329085 Representative total house income in the dwelling unit is $329085 +in.representative_income 329095 Representative total house income in the dwelling unit is $329095 +in.representative_income 329111 Representative total house income in the dwelling unit is $329111 +in.representative_income 329136 Representative total house income in the dwelling unit is $329136 +in.representative_income 329307 Representative total house income in the dwelling unit is $329307 +in.representative_income 329327 Representative total house income in the dwelling unit is $329327 +in.representative_income 329408 Representative total house income in the dwelling unit is $329408 +in.representative_income 329446 Representative total house income in the dwelling unit is $329446 +in.representative_income 329543 Representative total house income in the dwelling unit is $329543 +in.representative_income 329549 Representative total house income in the dwelling unit is $329549 +in.representative_income 329775 Representative total house income in the dwelling unit is $329775 +in.representative_income 329858 Representative total house income in the dwelling unit is $329858 +in.representative_income 329867 Representative total house income in the dwelling unit is $329867 +in.representative_income 329934 Representative total house income in the dwelling unit is $329934 +in.representative_income 329962 Representative total house income in the dwelling unit is $329962 +in.representative_income 330064 Representative total house income in the dwelling unit is $330064 +in.representative_income 330065 Representative total house income in the dwelling unit is $330065 +in.representative_income 330092 Representative total house income in the dwelling unit is $330092 +in.representative_income 330113 Representative total house income in the dwelling unit is $330113 +in.representative_income 330117 Representative total house income in the dwelling unit is $330117 +in.representative_income 330157 Representative total house income in the dwelling unit is $330157 +in.representative_income 330300 Representative total house income in the dwelling unit is $330300 +in.representative_income 330303 Representative total house income in the dwelling unit is $330303 +in.representative_income 330317 Representative total house income in the dwelling unit is $330317 +in.representative_income 330368 Representative total house income in the dwelling unit is $330368 +in.representative_income 330374 Representative total house income in the dwelling unit is $330374 +in.representative_income 330477 Representative total house income in the dwelling unit is $330477 +in.representative_income 330515 Representative total house income in the dwelling unit is $330515 +in.representative_income 330581 Representative total house income in the dwelling unit is $330581 +in.representative_income 330620 Representative total house income in the dwelling unit is $330620 +in.representative_income 330622 Representative total house income in the dwelling unit is $330622 +in.representative_income 330623 Representative total house income in the dwelling unit is $330623 +in.representative_income 330684 Representative total house income in the dwelling unit is $330684 +in.representative_income 330786 Representative total house income in the dwelling unit is $330786 +in.representative_income 330823 Representative total house income in the dwelling unit is $330823 +in.representative_income 330913 Representative total house income in the dwelling unit is $330913 +in.representative_income 330944 Representative total house income in the dwelling unit is $330944 +in.representative_income 331041 Representative total house income in the dwelling unit is $331041 +in.representative_income 331056 Representative total house income in the dwelling unit is $331056 +in.representative_income 331096 Representative total house income in the dwelling unit is $331096 +in.representative_income 331146 Representative total house income in the dwelling unit is $331146 +in.representative_income 331159 Representative total house income in the dwelling unit is $331159 +in.representative_income 331200 Representative total house income in the dwelling unit is $331200 +in.representative_income 331267 Representative total house income in the dwelling unit is $331267 +in.representative_income 331328 Representative total house income in the dwelling unit is $331328 +in.representative_income 331354 Representative total house income in the dwelling unit is $331354 +in.representative_income 331429 Representative total house income in the dwelling unit is $331429 +in.representative_income 331480 Representative total house income in the dwelling unit is $331480 +in.representative_income 331481 Representative total house income in the dwelling unit is $331481 +in.representative_income 331612 Representative total house income in the dwelling unit is $331612 +in.representative_income 331696 Representative total house income in the dwelling unit is $331696 +in.representative_income 331704 Representative total house income in the dwelling unit is $331704 +in.representative_income 331769 Representative total house income in the dwelling unit is $331769 +in.representative_income 331833 Representative total house income in the dwelling unit is $331833 +in.representative_income 331934 Representative total house income in the dwelling unit is $331934 +in.representative_income 331951 Representative total house income in the dwelling unit is $331951 +in.representative_income 331990 Representative total house income in the dwelling unit is $331990 +in.representative_income 332024 Representative total house income in the dwelling unit is $332024 +in.representative_income 332128 Representative total house income in the dwelling unit is $332128 +in.representative_income 332136 Representative total house income in the dwelling unit is $332136 +in.representative_income 332201 Representative total house income in the dwelling unit is $332201 +in.representative_income 332232 Representative total house income in the dwelling unit is $332232 +in.representative_income 332296 Representative total house income in the dwelling unit is $332296 +in.representative_income 332314 Representative total house income in the dwelling unit is $332314 +in.representative_income 332327 Representative total house income in the dwelling unit is $332327 +in.representative_income 332338 Representative total house income in the dwelling unit is $332338 +in.representative_income 332429 Representative total house income in the dwelling unit is $332429 +in.representative_income 332641 Representative total house income in the dwelling unit is $332641 +in.representative_income 332677 Representative total house income in the dwelling unit is $332677 +in.representative_income 332769 Representative total house income in the dwelling unit is $332769 +in.representative_income 332785 Representative total house income in the dwelling unit is $332785 +in.representative_income 332798 Representative total house income in the dwelling unit is $332798 +in.representative_income 332834 Representative total house income in the dwelling unit is $332834 +in.representative_income 332843 Representative total house income in the dwelling unit is $332843 +in.representative_income 332850 Representative total house income in the dwelling unit is $332850 +in.representative_income 332877 Representative total house income in the dwelling unit is $332877 +in.representative_income 332892 Representative total house income in the dwelling unit is $332892 +in.representative_income 332984 Representative total house income in the dwelling unit is $332984 +in.representative_income 333023 Representative total house income in the dwelling unit is $333023 +in.representative_income 333037 Representative total house income in the dwelling unit is $333037 +in.representative_income 333045 Representative total house income in the dwelling unit is $333045 +in.representative_income 333150 Representative total house income in the dwelling unit is $333150 +in.representative_income 333159 Representative total house income in the dwelling unit is $333159 +in.representative_income 333198 Representative total house income in the dwelling unit is $333198 +in.representative_income 333217 Representative total house income in the dwelling unit is $333217 +in.representative_income 333247 Representative total house income in the dwelling unit is $333247 +in.representative_income 333256 Representative total house income in the dwelling unit is $333256 +in.representative_income 333344 Representative total house income in the dwelling unit is $333344 +in.representative_income 333348 Representative total house income in the dwelling unit is $333348 +in.representative_income 333361 Representative total house income in the dwelling unit is $333361 +in.representative_income 333521 Representative total house income in the dwelling unit is $333521 +in.representative_income 333600 Representative total house income in the dwelling unit is $333600 +in.representative_income 333628 Representative total house income in the dwelling unit is $333628 +in.representative_income 333675 Representative total house income in the dwelling unit is $333675 +in.representative_income 333735 Representative total house income in the dwelling unit is $333735 +in.representative_income 333778 Representative total house income in the dwelling unit is $333778 +in.representative_income 333843 Representative total house income in the dwelling unit is $333843 +in.representative_income 333853 Representative total house income in the dwelling unit is $333853 +in.representative_income 333865 Representative total house income in the dwelling unit is $333865 +in.representative_income 334087 Representative total house income in the dwelling unit is $334087 +in.representative_income 334099 Representative total house income in the dwelling unit is $334099 +in.representative_income 334190 Representative total house income in the dwelling unit is $334190 +in.representative_income 334257 Representative total house income in the dwelling unit is $334257 +in.representative_income 334272 Representative total house income in the dwelling unit is $334272 +in.representative_income 334297 Representative total house income in the dwelling unit is $334297 +in.representative_income 334310 Representative total house income in the dwelling unit is $334310 +in.representative_income 334358 Representative total house income in the dwelling unit is $334358 +in.representative_income 334405 Representative total house income in the dwelling unit is $334405 +in.representative_income 334513 Representative total house income in the dwelling unit is $334513 +in.representative_income 334521 Representative total house income in the dwelling unit is $334521 +in.representative_income 334560 Representative total house income in the dwelling unit is $334560 +in.representative_income 334594 Representative total house income in the dwelling unit is $334594 +in.representative_income 334621 Representative total house income in the dwelling unit is $334621 +in.representative_income 334661 Representative total house income in the dwelling unit is $334661 +in.representative_income 334730 Representative total house income in the dwelling unit is $334730 +in.representative_income 334732 Representative total house income in the dwelling unit is $334732 +in.representative_income 334762 Representative total house income in the dwelling unit is $334762 +in.representative_income 334916 Representative total house income in the dwelling unit is $334916 +in.representative_income 334943 Representative total house income in the dwelling unit is $334943 +in.representative_income 334946 Representative total house income in the dwelling unit is $334946 +in.representative_income 335222 Representative total house income in the dwelling unit is $335222 +in.representative_income 335292 Representative total house income in the dwelling unit is $335292 +in.representative_income 335325 Representative total house income in the dwelling unit is $335325 +in.representative_income 335365 Representative total house income in the dwelling unit is $335365 +in.representative_income 335368 Representative total house income in the dwelling unit is $335368 +in.representative_income 335428 Representative total house income in the dwelling unit is $335428 +in.representative_income 335737 Representative total house income in the dwelling unit is $335737 +in.representative_income 335787 Representative total house income in the dwelling unit is $335787 +in.representative_income 335841 Representative total house income in the dwelling unit is $335841 +in.representative_income 335873 Representative total house income in the dwelling unit is $335873 +in.representative_income 335892 Representative total house income in the dwelling unit is $335892 +in.representative_income 335989 Representative total house income in the dwelling unit is $335989 +in.representative_income 335998 Representative total house income in the dwelling unit is $335998 +in.representative_income 336026 Representative total house income in the dwelling unit is $336026 +in.representative_income 336047 Representative total house income in the dwelling unit is $336047 +in.representative_income 336097 Representative total house income in the dwelling unit is $336097 +in.representative_income 336156 Representative total house income in the dwelling unit is $336156 +in.representative_income 336176 Representative total house income in the dwelling unit is $336176 +in.representative_income 336212 Representative total house income in the dwelling unit is $336212 +in.representative_income 336253 Representative total house income in the dwelling unit is $336253 +in.representative_income 336378 Representative total house income in the dwelling unit is $336378 +in.representative_income 336420 Representative total house income in the dwelling unit is $336420 +in.representative_income 336459 Representative total house income in the dwelling unit is $336459 +in.representative_income 336525 Representative total house income in the dwelling unit is $336525 +in.representative_income 336526 Representative total house income in the dwelling unit is $336526 +in.representative_income 336566 Representative total house income in the dwelling unit is $336566 +in.representative_income 336674 Representative total house income in the dwelling unit is $336674 +in.representative_income 336782 Representative total house income in the dwelling unit is $336782 +in.representative_income 336841 Representative total house income in the dwelling unit is $336841 +in.representative_income 336964 Representative total house income in the dwelling unit is $336964 +in.representative_income 336975 Representative total house income in the dwelling unit is $336975 +in.representative_income 336984 Representative total house income in the dwelling unit is $336984 +in.representative_income 337052 Representative total house income in the dwelling unit is $337052 +in.representative_income 337063 Representative total house income in the dwelling unit is $337063 +in.representative_income 337079 Representative total house income in the dwelling unit is $337079 +in.representative_income 337107 Representative total house income in the dwelling unit is $337107 +in.representative_income 337187 Representative total house income in the dwelling unit is $337187 +in.representative_income 337263 Representative total house income in the dwelling unit is $337263 +in.representative_income 337269 Representative total house income in the dwelling unit is $337269 +in.representative_income 337285 Representative total house income in the dwelling unit is $337285 +in.representative_income 337388 Representative total house income in the dwelling unit is $337388 +in.representative_income 337431 Representative total house income in the dwelling unit is $337431 +in.representative_income 337474 Representative total house income in the dwelling unit is $337474 +in.representative_income 337491 Representative total house income in the dwelling unit is $337491 +in.representative_income 337590 Representative total house income in the dwelling unit is $337590 +in.representative_income 337599 Representative total house income in the dwelling unit is $337599 +in.representative_income 337647 Representative total house income in the dwelling unit is $337647 +in.representative_income 337793 Representative total house income in the dwelling unit is $337793 +in.representative_income 337801 Representative total house income in the dwelling unit is $337801 +in.representative_income 337863 Representative total house income in the dwelling unit is $337863 +in.representative_income 337896 Representative total house income in the dwelling unit is $337896 +in.representative_income 337903 Representative total house income in the dwelling unit is $337903 +in.representative_income 337917 Representative total house income in the dwelling unit is $337917 +in.representative_income 337922 Representative total house income in the dwelling unit is $337922 +in.representative_income 338001 Representative total house income in the dwelling unit is $338001 +in.representative_income 338136 Representative total house income in the dwelling unit is $338136 +in.representative_income 338187 Representative total house income in the dwelling unit is $338187 +in.representative_income 338212 Representative total house income in the dwelling unit is $338212 +in.representative_income 338213 Representative total house income in the dwelling unit is $338213 +in.representative_income 338298 Representative total house income in the dwelling unit is $338298 +in.representative_income 338317 Representative total house income in the dwelling unit is $338317 +in.representative_income 338351 Representative total house income in the dwelling unit is $338351 +in.representative_income 338399 Representative total house income in the dwelling unit is $338399 +in.representative_income 338409 Representative total house income in the dwelling unit is $338409 +in.representative_income 338459 Representative total house income in the dwelling unit is $338459 +in.representative_income 338511 Representative total house income in the dwelling unit is $338511 +in.representative_income 338611 Representative total house income in the dwelling unit is $338611 +in.representative_income 338634 Representative total house income in the dwelling unit is $338634 +in.representative_income 338644 Representative total house income in the dwelling unit is $338644 +in.representative_income 338674 Representative total house income in the dwelling unit is $338674 +in.representative_income 338728 Representative total house income in the dwelling unit is $338728 +in.representative_income 338803 Representative total house income in the dwelling unit is $338803 +in.representative_income 338936 Representative total house income in the dwelling unit is $338936 +in.representative_income 338951 Representative total house income in the dwelling unit is $338951 +in.representative_income 339003 Representative total house income in the dwelling unit is $339003 +in.representative_income 339005 Representative total house income in the dwelling unit is $339005 +in.representative_income 339056 Representative total house income in the dwelling unit is $339056 +in.representative_income 339141 Representative total house income in the dwelling unit is $339141 +in.representative_income 339207 Representative total house income in the dwelling unit is $339207 +in.representative_income 339210 Representative total house income in the dwelling unit is $339210 +in.representative_income 339267 Representative total house income in the dwelling unit is $339267 +in.representative_income 339348 Representative total house income in the dwelling unit is $339348 +in.representative_income 339409 Representative total house income in the dwelling unit is $339409 +in.representative_income 339414 Representative total house income in the dwelling unit is $339414 +in.representative_income 339421 Representative total house income in the dwelling unit is $339421 +in.representative_income 339583 Representative total house income in the dwelling unit is $339583 +in.representative_income 339639 Representative total house income in the dwelling unit is $339639 +in.representative_income 339689 Representative total house income in the dwelling unit is $339689 +in.representative_income 339743 Representative total house income in the dwelling unit is $339743 +in.representative_income 339794 Representative total house income in the dwelling unit is $339794 +in.representative_income 339854 Representative total house income in the dwelling unit is $339854 +in.representative_income 339914 Representative total house income in the dwelling unit is $339914 +in.representative_income 340015 Representative total house income in the dwelling unit is $340015 +in.representative_income 340110 Representative total house income in the dwelling unit is $340110 +in.representative_income 340116 Representative total house income in the dwelling unit is $340116 +in.representative_income 340284 Representative total house income in the dwelling unit is $340284 +in.representative_income 340322 Representative total house income in the dwelling unit is $340322 +in.representative_income 340348 Representative total house income in the dwelling unit is $340348 +in.representative_income 340370 Representative total house income in the dwelling unit is $340370 +in.representative_income 340379 Representative total house income in the dwelling unit is $340379 +in.representative_income 340419 Representative total house income in the dwelling unit is $340419 +in.representative_income 340520 Representative total house income in the dwelling unit is $340520 +in.representative_income 340586 Representative total house income in the dwelling unit is $340586 +in.representative_income 340637 Representative total house income in the dwelling unit is $340637 +in.representative_income 340688 Representative total house income in the dwelling unit is $340688 +in.representative_income 340702 Representative total house income in the dwelling unit is $340702 +in.representative_income 340743 Representative total house income in the dwelling unit is $340743 +in.representative_income 340823 Representative total house income in the dwelling unit is $340823 +in.representative_income 340895 Representative total house income in the dwelling unit is $340895 +in.representative_income 340924 Representative total house income in the dwelling unit is $340924 +in.representative_income 340927 Representative total house income in the dwelling unit is $340927 +in.representative_income 340996 Representative total house income in the dwelling unit is $340996 +in.representative_income 341126 Representative total house income in the dwelling unit is $341126 +in.representative_income 341227 Representative total house income in the dwelling unit is $341227 +in.representative_income 341307 Representative total house income in the dwelling unit is $341307 +in.representative_income 341357 Representative total house income in the dwelling unit is $341357 +in.representative_income 341411 Representative total house income in the dwelling unit is $341411 +in.representative_income 341428 Representative total house income in the dwelling unit is $341428 +in.representative_income 341429 Representative total house income in the dwelling unit is $341429 +in.representative_income 341482 Representative total house income in the dwelling unit is $341482 +in.representative_income 341530 Representative total house income in the dwelling unit is $341530 +in.representative_income 341571 Representative total house income in the dwelling unit is $341571 +in.representative_income 341617 Representative total house income in the dwelling unit is $341617 +in.representative_income 341644 Representative total house income in the dwelling unit is $341644 +in.representative_income 341687 Representative total house income in the dwelling unit is $341687 +in.representative_income 341692 Representative total house income in the dwelling unit is $341692 +in.representative_income 341720 Representative total house income in the dwelling unit is $341720 +in.representative_income 341894 Representative total house income in the dwelling unit is $341894 +in.representative_income 342035 Representative total house income in the dwelling unit is $342035 +in.representative_income 342077 Representative total house income in the dwelling unit is $342077 +in.representative_income 342133 Representative total house income in the dwelling unit is $342133 +in.representative_income 342237 Representative total house income in the dwelling unit is $342237 +in.representative_income 342293 Representative total house income in the dwelling unit is $342293 +in.representative_income 342323 Representative total house income in the dwelling unit is $342323 +in.representative_income 342338 Representative total house income in the dwelling unit is $342338 +in.representative_income 342430 Representative total house income in the dwelling unit is $342430 +in.representative_income 342439 Representative total house income in the dwelling unit is $342439 +in.representative_income 342442 Representative total house income in the dwelling unit is $342442 +in.representative_income 342509 Representative total house income in the dwelling unit is $342509 +in.representative_income 342617 Representative total house income in the dwelling unit is $342617 +in.representative_income 342725 Representative total house income in the dwelling unit is $342725 +in.representative_income 342742 Representative total house income in the dwelling unit is $342742 +in.representative_income 342747 Representative total house income in the dwelling unit is $342747 +in.representative_income 342941 Representative total house income in the dwelling unit is $342941 +in.representative_income 343045 Representative total house income in the dwelling unit is $343045 +in.representative_income 343075 Representative total house income in the dwelling unit is $343075 +in.representative_income 343220 Representative total house income in the dwelling unit is $343220 +in.representative_income 343247 Representative total house income in the dwelling unit is $343247 +in.representative_income 343380 Representative total house income in the dwelling unit is $343380 +in.representative_income 343449 Representative total house income in the dwelling unit is $343449 +in.representative_income 343473 Representative total house income in the dwelling unit is $343473 +in.representative_income 343504 Representative total house income in the dwelling unit is $343504 +in.representative_income 343590 Representative total house income in the dwelling unit is $343590 +in.representative_income 343611 Representative total house income in the dwelling unit is $343611 +in.representative_income 343651 Representative total house income in the dwelling unit is $343651 +in.representative_income 343698 Representative total house income in the dwelling unit is $343698 +in.representative_income 343801 Representative total house income in the dwelling unit is $343801 +in.representative_income 343805 Representative total house income in the dwelling unit is $343805 +in.representative_income 343825 Representative total house income in the dwelling unit is $343825 +in.representative_income 343954 Representative total house income in the dwelling unit is $343954 +in.representative_income 344129 Representative total house income in the dwelling unit is $344129 +in.representative_income 344238 Representative total house income in the dwelling unit is $344238 +in.representative_income 344346 Representative total house income in the dwelling unit is $344346 +in.representative_income 344358 Representative total house income in the dwelling unit is $344358 +in.representative_income 344362 Representative total house income in the dwelling unit is $344362 +in.representative_income 344459 Representative total house income in the dwelling unit is $344459 +in.representative_income 344505 Representative total house income in the dwelling unit is $344505 +in.representative_income 344577 Representative total house income in the dwelling unit is $344577 +in.representative_income 344608 Representative total house income in the dwelling unit is $344608 +in.representative_income 344631 Representative total house income in the dwelling unit is $344631 +in.representative_income 344661 Representative total house income in the dwelling unit is $344661 +in.representative_income 344670 Representative total house income in the dwelling unit is $344670 +in.representative_income 344711 Representative total house income in the dwelling unit is $344711 +in.representative_income 344792 Representative total house income in the dwelling unit is $344792 +in.representative_income 344856 Representative total house income in the dwelling unit is $344856 +in.representative_income 344877 Representative total house income in the dwelling unit is $344877 +in.representative_income 344899 Representative total house income in the dwelling unit is $344899 +in.representative_income 344965 Representative total house income in the dwelling unit is $344965 +in.representative_income 344994 Representative total house income in the dwelling unit is $344994 +in.representative_income 345006 Representative total house income in the dwelling unit is $345006 +in.representative_income 345113 Representative total house income in the dwelling unit is $345113 +in.representative_income 345172 Representative total house income in the dwelling unit is $345172 +in.representative_income 345329 Representative total house income in the dwelling unit is $345329 +in.representative_income 345435 Representative total house income in the dwelling unit is $345435 +in.representative_income 345470 Representative total house income in the dwelling unit is $345470 +in.representative_income 345489 Representative total house income in the dwelling unit is $345489 +in.representative_income 345490 Representative total house income in the dwelling unit is $345490 +in.representative_income 345500 Representative total house income in the dwelling unit is $345500 +in.representative_income 345536 Representative total house income in the dwelling unit is $345536 +in.representative_income 345639 Representative total house income in the dwelling unit is $345639 +in.representative_income 345651 Representative total house income in the dwelling unit is $345651 +in.representative_income 345700 Representative total house income in the dwelling unit is $345700 +in.representative_income 345750 Representative total house income in the dwelling unit is $345750 +in.representative_income 345794 Representative total house income in the dwelling unit is $345794 +in.representative_income 345811 Representative total house income in the dwelling unit is $345811 +in.representative_income 345822 Representative total house income in the dwelling unit is $345822 +in.representative_income 345846 Representative total house income in the dwelling unit is $345846 +in.representative_income 345911 Representative total house income in the dwelling unit is $345911 +in.representative_income 345967 Representative total house income in the dwelling unit is $345967 +in.representative_income 345975 Representative total house income in the dwelling unit is $345975 +in.representative_income 346053 Representative total house income in the dwelling unit is $346053 +in.representative_income 346122 Representative total house income in the dwelling unit is $346122 +in.representative_income 346155 Representative total house income in the dwelling unit is $346155 +in.representative_income 346182 Representative total house income in the dwelling unit is $346182 +in.representative_income 346227 Representative total house income in the dwelling unit is $346227 +in.representative_income 346278 Representative total house income in the dwelling unit is $346278 +in.representative_income 346398 Representative total house income in the dwelling unit is $346398 +in.representative_income 346480 Representative total house income in the dwelling unit is $346480 +in.representative_income 346517 Representative total house income in the dwelling unit is $346517 +in.representative_income 346568 Representative total house income in the dwelling unit is $346568 +in.representative_income 346581 Representative total house income in the dwelling unit is $346581 +in.representative_income 346616 Representative total house income in the dwelling unit is $346616 +in.representative_income 346682 Representative total house income in the dwelling unit is $346682 +in.representative_income 346723 Representative total house income in the dwelling unit is $346723 +in.representative_income 346724 Representative total house income in the dwelling unit is $346724 +in.representative_income 346754 Representative total house income in the dwelling unit is $346754 +in.representative_income 346831 Representative total house income in the dwelling unit is $346831 +in.representative_income 346965 Representative total house income in the dwelling unit is $346965 +in.representative_income 346985 Representative total house income in the dwelling unit is $346985 +in.representative_income 347084 Representative total house income in the dwelling unit is $347084 +in.representative_income 347187 Representative total house income in the dwelling unit is $347187 +in.representative_income 347261 Representative total house income in the dwelling unit is $347261 +in.representative_income 347374 Representative total house income in the dwelling unit is $347374 +in.representative_income 347387 Representative total house income in the dwelling unit is $347387 +in.representative_income 347490 Representative total house income in the dwelling unit is $347490 +in.representative_income 347587 Representative total house income in the dwelling unit is $347587 +in.representative_income 347598 Representative total house income in the dwelling unit is $347598 +in.representative_income 347600 Representative total house income in the dwelling unit is $347600 +in.representative_income 347723 Representative total house income in the dwelling unit is $347723 +in.representative_income 347797 Representative total house income in the dwelling unit is $347797 +in.representative_income 347894 Representative total house income in the dwelling unit is $347894 +in.representative_income 347911 Representative total house income in the dwelling unit is $347911 +in.representative_income 347995 Representative total house income in the dwelling unit is $347995 +in.representative_income 348012 Representative total house income in the dwelling unit is $348012 +in.representative_income 348020 Representative total house income in the dwelling unit is $348020 +in.representative_income 348135 Representative total house income in the dwelling unit is $348135 +in.representative_income 348284 Representative total house income in the dwelling unit is $348284 +in.representative_income 348334 Representative total house income in the dwelling unit is $348334 +in.representative_income 348500 Representative total house income in the dwelling unit is $348500 +in.representative_income 348528 Representative total house income in the dwelling unit is $348528 +in.representative_income 348547 Representative total house income in the dwelling unit is $348547 +in.representative_income 348560 Representative total house income in the dwelling unit is $348560 +in.representative_income 348631 Representative total house income in the dwelling unit is $348631 +in.representative_income 348702 Representative total house income in the dwelling unit is $348702 +in.representative_income 348837 Representative total house income in the dwelling unit is $348837 +in.representative_income 348871 Representative total house income in the dwelling unit is $348871 +in.representative_income 348888 Representative total house income in the dwelling unit is $348888 +in.representative_income 348992 Representative total house income in the dwelling unit is $348992 +in.representative_income 349043 Representative total house income in the dwelling unit is $349043 +in.representative_income 349075 Representative total house income in the dwelling unit is $349075 +in.representative_income 349086 Representative total house income in the dwelling unit is $349086 +in.representative_income 349117 Representative total house income in the dwelling unit is $349117 +in.representative_income 349391 Representative total house income in the dwelling unit is $349391 +in.representative_income 349409 Representative total house income in the dwelling unit is $349409 +in.representative_income 349510 Representative total house income in the dwelling unit is $349510 +in.representative_income 349662 Representative total house income in the dwelling unit is $349662 +in.representative_income 349944 Representative total house income in the dwelling unit is $349944 +in.representative_income 349971 Representative total house income in the dwelling unit is $349971 +in.representative_income 350015 Representative total house income in the dwelling unit is $350015 +in.representative_income 350016 Representative total house income in the dwelling unit is $350016 +in.representative_income 350072 Representative total house income in the dwelling unit is $350072 +in.representative_income 350075 Representative total house income in the dwelling unit is $350075 +in.representative_income 350129 Representative total house income in the dwelling unit is $350129 +in.representative_income 350196 Representative total house income in the dwelling unit is $350196 +in.representative_income 350281 Representative total house income in the dwelling unit is $350281 +in.representative_income 350288 Representative total house income in the dwelling unit is $350288 +in.representative_income 350446 Representative total house income in the dwelling unit is $350446 +in.representative_income 350520 Representative total house income in the dwelling unit is $350520 +in.representative_income 350531 Representative total house income in the dwelling unit is $350531 +in.representative_income 350588 Representative total house income in the dwelling unit is $350588 +in.representative_income 350613 Representative total house income in the dwelling unit is $350613 +in.representative_income 350680 Representative total house income in the dwelling unit is $350680 +in.representative_income 350694 Representative total house income in the dwelling unit is $350694 +in.representative_income 350722 Representative total house income in the dwelling unit is $350722 +in.representative_income 350937 Representative total house income in the dwelling unit is $350937 +in.representative_income 351017 Representative total house income in the dwelling unit is $351017 +in.representative_income 351152 Representative total house income in the dwelling unit is $351152 +in.representative_income 351184 Representative total house income in the dwelling unit is $351184 +in.representative_income 351206 Representative total house income in the dwelling unit is $351206 +in.representative_income 351369 Representative total house income in the dwelling unit is $351369 +in.representative_income 351530 Representative total house income in the dwelling unit is $351530 +in.representative_income 351606 Representative total house income in the dwelling unit is $351606 +in.representative_income 351622 Representative total house income in the dwelling unit is $351622 +in.representative_income 351725 Representative total house income in the dwelling unit is $351725 +in.representative_income 351932 Representative total house income in the dwelling unit is $351932 +in.representative_income 351935 Representative total house income in the dwelling unit is $351935 +in.representative_income 352017 Representative total house income in the dwelling unit is $352017 +in.representative_income 352036 Representative total house income in the dwelling unit is $352036 +in.representative_income 352092 Representative total house income in the dwelling unit is $352092 +in.representative_income 352233 Representative total house income in the dwelling unit is $352233 +in.representative_income 352239 Representative total house income in the dwelling unit is $352239 +in.representative_income 352339 Representative total house income in the dwelling unit is $352339 +in.representative_income 352341 Representative total house income in the dwelling unit is $352341 +in.representative_income 352449 Representative total house income in the dwelling unit is $352449 +in.representative_income 352521 Representative total house income in the dwelling unit is $352521 +in.representative_income 352541 Representative total house income in the dwelling unit is $352541 +in.representative_income 352642 Representative total house income in the dwelling unit is $352642 +in.representative_income 352646 Representative total house income in the dwelling unit is $352646 +in.representative_income 352654 Representative total house income in the dwelling unit is $352654 +in.representative_income 352665 Representative total house income in the dwelling unit is $352665 +in.representative_income 352743 Representative total house income in the dwelling unit is $352743 +in.representative_income 352756 Representative total house income in the dwelling unit is $352756 +in.representative_income 352883 Representative total house income in the dwelling unit is $352883 +in.representative_income 353165 Representative total house income in the dwelling unit is $353165 +in.representative_income 353248 Representative total house income in the dwelling unit is $353248 +in.representative_income 353293 Representative total house income in the dwelling unit is $353293 +in.representative_income 353314 Representative total house income in the dwelling unit is $353314 +in.representative_income 353324 Representative total house income in the dwelling unit is $353324 +in.representative_income 353375 Representative total house income in the dwelling unit is $353375 +in.representative_income 353529 Representative total house income in the dwelling unit is $353529 +in.representative_income 353551 Representative total house income in the dwelling unit is $353551 +in.representative_income 353582 Representative total house income in the dwelling unit is $353582 +in.representative_income 353594 Representative total house income in the dwelling unit is $353594 +in.representative_income 353637 Representative total house income in the dwelling unit is $353637 +in.representative_income 353652 Representative total house income in the dwelling unit is $353652 +in.representative_income 353808 Representative total house income in the dwelling unit is $353808 +in.representative_income 353962 Representative total house income in the dwelling unit is $353962 +in.representative_income 354098 Representative total house income in the dwelling unit is $354098 +in.representative_income 354238 Representative total house income in the dwelling unit is $354238 +in.representative_income 354286 Representative total house income in the dwelling unit is $354286 +in.representative_income 354348 Representative total house income in the dwelling unit is $354348 +in.representative_income 354394 Representative total house income in the dwelling unit is $354394 +in.representative_income 354503 Representative total house income in the dwelling unit is $354503 +in.representative_income 354558 Representative total house income in the dwelling unit is $354558 +in.representative_income 354561 Representative total house income in the dwelling unit is $354561 +in.representative_income 354679 Representative total house income in the dwelling unit is $354679 +in.representative_income 354775 Representative total house income in the dwelling unit is $354775 +in.representative_income 354804 Representative total house income in the dwelling unit is $354804 +in.representative_income 354820 Representative total house income in the dwelling unit is $354820 +in.representative_income 354826 Representative total house income in the dwelling unit is $354826 +in.representative_income 354965 Representative total house income in the dwelling unit is $354965 +in.representative_income 354980 Representative total house income in the dwelling unit is $354980 +in.representative_income 355066 Representative total house income in the dwelling unit is $355066 +in.representative_income 355097 Representative total house income in the dwelling unit is $355097 +in.representative_income 355167 Representative total house income in the dwelling unit is $355167 +in.representative_income 355232 Representative total house income in the dwelling unit is $355232 +in.representative_income 355286 Representative total house income in the dwelling unit is $355286 +in.representative_income 355312 Representative total house income in the dwelling unit is $355312 +in.representative_income 355369 Representative total house income in the dwelling unit is $355369 +in.representative_income 355403 Representative total house income in the dwelling unit is $355403 +in.representative_income 355470 Representative total house income in the dwelling unit is $355470 +in.representative_income 355475 Representative total house income in the dwelling unit is $355475 +in.representative_income 355541 Representative total house income in the dwelling unit is $355541 +in.representative_income 355633 Representative total house income in the dwelling unit is $355633 +in.representative_income 355691 Representative total house income in the dwelling unit is $355691 +in.representative_income 355824 Representative total house income in the dwelling unit is $355824 +in.representative_income 355849 Representative total house income in the dwelling unit is $355849 +in.representative_income 355851 Representative total house income in the dwelling unit is $355851 +in.representative_income 355882 Representative total house income in the dwelling unit is $355882 +in.representative_income 355954 Representative total house income in the dwelling unit is $355954 +in.representative_income 355975 Representative total house income in the dwelling unit is $355975 +in.representative_income 356063 Representative total house income in the dwelling unit is $356063 +in.representative_income 356160 Representative total house income in the dwelling unit is $356160 +in.representative_income 356371 Representative total house income in the dwelling unit is $356371 +in.representative_income 356385 Representative total house income in the dwelling unit is $356385 +in.representative_income 356456 Representative total house income in the dwelling unit is $356456 +in.representative_income 356470 Representative total house income in the dwelling unit is $356470 +in.representative_income 356480 Representative total house income in the dwelling unit is $356480 +in.representative_income 356493 Representative total house income in the dwelling unit is $356493 +in.representative_income 356541 Representative total house income in the dwelling unit is $356541 +in.representative_income 356555 Representative total house income in the dwelling unit is $356555 +in.representative_income 356682 Representative total house income in the dwelling unit is $356682 +in.representative_income 356707 Representative total house income in the dwelling unit is $356707 +in.representative_income 356825 Representative total house income in the dwelling unit is $356825 +in.representative_income 356879 Representative total house income in the dwelling unit is $356879 +in.representative_income 356883 Representative total house income in the dwelling unit is $356883 +in.representative_income 357086 Representative total house income in the dwelling unit is $357086 +in.representative_income 357089 Representative total house income in the dwelling unit is $357089 +in.representative_income 357095 Representative total house income in the dwelling unit is $357095 +in.representative_income 357173 Representative total house income in the dwelling unit is $357173 +in.representative_income 357192 Representative total house income in the dwelling unit is $357192 +in.representative_income 357295 Representative total house income in the dwelling unit is $357295 +in.representative_income 357301 Representative total house income in the dwelling unit is $357301 +in.representative_income 357459 Representative total house income in the dwelling unit is $357459 +in.representative_income 357502 Representative total house income in the dwelling unit is $357502 +in.representative_income 357511 Representative total house income in the dwelling unit is $357511 +in.representative_income 357591 Representative total house income in the dwelling unit is $357591 +in.representative_income 357635 Representative total house income in the dwelling unit is $357635 +in.representative_income 357722 Representative total house income in the dwelling unit is $357722 +in.representative_income 357780 Representative total house income in the dwelling unit is $357780 +in.representative_income 357914 Representative total house income in the dwelling unit is $357914 +in.representative_income 358283 Representative total house income in the dwelling unit is $358283 +in.representative_income 358424 Representative total house income in the dwelling unit is $358424 +in.representative_income 358566 Representative total house income in the dwelling unit is $358566 +in.representative_income 358579 Representative total house income in the dwelling unit is $358579 +in.representative_income 358601 Representative total house income in the dwelling unit is $358601 +in.representative_income 358716 Representative total house income in the dwelling unit is $358716 +in.representative_income 358758 Representative total house income in the dwelling unit is $358758 +in.representative_income 358804 Representative total house income in the dwelling unit is $358804 +in.representative_income 358842 Representative total house income in the dwelling unit is $358842 +in.representative_income 358945 Representative total house income in the dwelling unit is $358945 +in.representative_income 358982 Representative total house income in the dwelling unit is $358982 +in.representative_income 359006 Representative total house income in the dwelling unit is $359006 +in.representative_income 359152 Representative total house income in the dwelling unit is $359152 +in.representative_income 359176 Representative total house income in the dwelling unit is $359176 +in.representative_income 359605 Representative total house income in the dwelling unit is $359605 +in.representative_income 359610 Representative total house income in the dwelling unit is $359610 +in.representative_income 359620 Representative total house income in the dwelling unit is $359620 +in.representative_income 359713 Representative total house income in the dwelling unit is $359713 +in.representative_income 359796 Representative total house income in the dwelling unit is $359796 +in.representative_income 359956 Representative total house income in the dwelling unit is $359956 +in.representative_income 359977 Representative total house income in the dwelling unit is $359977 +in.representative_income 360045 Representative total house income in the dwelling unit is $360045 +in.representative_income 360080 Representative total house income in the dwelling unit is $360080 +in.representative_income 360121 Representative total house income in the dwelling unit is $360121 +in.representative_income 360142 Representative total house income in the dwelling unit is $360142 +in.representative_income 360250 Representative total house income in the dwelling unit is $360250 +in.representative_income 360337 Representative total house income in the dwelling unit is $360337 +in.representative_income 360517 Representative total house income in the dwelling unit is $360517 +in.representative_income 360571 Representative total house income in the dwelling unit is $360571 +in.representative_income 360622 Representative total house income in the dwelling unit is $360622 +in.representative_income 360625 Representative total house income in the dwelling unit is $360625 +in.representative_income 360661 Representative total house income in the dwelling unit is $360661 +in.representative_income 360675 Representative total house income in the dwelling unit is $360675 +in.representative_income 360679 Representative total house income in the dwelling unit is $360679 +in.representative_income 360861 Representative total house income in the dwelling unit is $360861 +in.representative_income 360877 Representative total house income in the dwelling unit is $360877 +in.representative_income 360886 Representative total house income in the dwelling unit is $360886 +in.representative_income 360925 Representative total house income in the dwelling unit is $360925 +in.representative_income 361008 Representative total house income in the dwelling unit is $361008 +in.representative_income 361026 Representative total house income in the dwelling unit is $361026 +in.representative_income 361097 Representative total house income in the dwelling unit is $361097 +in.representative_income 361111 Representative total house income in the dwelling unit is $361111 +in.representative_income 361127 Representative total house income in the dwelling unit is $361127 +in.representative_income 361307 Representative total house income in the dwelling unit is $361307 +in.representative_income 361329 Representative total house income in the dwelling unit is $361329 +in.representative_income 361331 Representative total house income in the dwelling unit is $361331 +in.representative_income 361413 Representative total house income in the dwelling unit is $361413 +in.representative_income 361430 Representative total house income in the dwelling unit is $361430 +in.representative_income 361476 Representative total house income in the dwelling unit is $361476 +in.representative_income 361525 Representative total house income in the dwelling unit is $361525 +in.representative_income 361624 Representative total house income in the dwelling unit is $361624 +in.representative_income 361632 Representative total house income in the dwelling unit is $361632 +in.representative_income 361730 Representative total house income in the dwelling unit is $361730 +in.representative_income 361752 Representative total house income in the dwelling unit is $361752 +in.representative_income 361854 Representative total house income in the dwelling unit is $361854 +in.representative_income 361941 Representative total house income in the dwelling unit is $361941 +in.representative_income 361957 Representative total house income in the dwelling unit is $361957 +in.representative_income 361975 Representative total house income in the dwelling unit is $361975 +in.representative_income 362075 Representative total house income in the dwelling unit is $362075 +in.representative_income 362238 Representative total house income in the dwelling unit is $362238 +in.representative_income 362363 Representative total house income in the dwelling unit is $362363 +in.representative_income 362468 Representative total house income in the dwelling unit is $362468 +in.representative_income 362504 Representative total house income in the dwelling unit is $362504 +in.representative_income 362642 Representative total house income in the dwelling unit is $362642 +in.representative_income 362658 Representative total house income in the dwelling unit is $362658 +in.representative_income 362670 Representative total house income in the dwelling unit is $362670 +in.representative_income 362714 Representative total house income in the dwelling unit is $362714 +in.representative_income 362784 Representative total house income in the dwelling unit is $362784 +in.representative_income 362825 Representative total house income in the dwelling unit is $362825 +in.representative_income 362865 Representative total house income in the dwelling unit is $362865 +in.representative_income 362889 Representative total house income in the dwelling unit is $362889 +in.representative_income 362930 Representative total house income in the dwelling unit is $362930 +in.representative_income 362996 Representative total house income in the dwelling unit is $362996 +in.representative_income 363038 Representative total house income in the dwelling unit is $363038 +in.representative_income 363040 Representative total house income in the dwelling unit is $363040 +in.representative_income 363048 Representative total house income in the dwelling unit is $363048 +in.representative_income 363072 Representative total house income in the dwelling unit is $363072 +in.representative_income 363277 Representative total house income in the dwelling unit is $363277 +in.representative_income 363349 Representative total house income in the dwelling unit is $363349 +in.representative_income 363541 Representative total house income in the dwelling unit is $363541 +in.representative_income 363587 Representative total house income in the dwelling unit is $363587 +in.representative_income 363652 Representative total house income in the dwelling unit is $363652 +in.representative_income 363734 Representative total house income in the dwelling unit is $363734 +in.representative_income 363839 Representative total house income in the dwelling unit is $363839 +in.representative_income 363854 Representative total house income in the dwelling unit is $363854 +in.representative_income 363899 Representative total house income in the dwelling unit is $363899 +in.representative_income 363902 Representative total house income in the dwelling unit is $363902 +in.representative_income 364103 Representative total house income in the dwelling unit is $364103 +in.representative_income 364119 Representative total house income in the dwelling unit is $364119 +in.representative_income 364299 Representative total house income in the dwelling unit is $364299 +in.representative_income 364366 Representative total house income in the dwelling unit is $364366 +in.representative_income 364470 Representative total house income in the dwelling unit is $364470 +in.representative_income 364559 Representative total house income in the dwelling unit is $364559 +in.representative_income 364561 Representative total house income in the dwelling unit is $364561 +in.representative_income 364662 Representative total house income in the dwelling unit is $364662 +in.representative_income 364682 Representative total house income in the dwelling unit is $364682 +in.representative_income 364736 Representative total house income in the dwelling unit is $364736 +in.representative_income 364758 Representative total house income in the dwelling unit is $364758 +in.representative_income 364763 Representative total house income in the dwelling unit is $364763 +in.representative_income 364811 Representative total house income in the dwelling unit is $364811 +in.representative_income 364833 Representative total house income in the dwelling unit is $364833 +in.representative_income 364875 Representative total house income in the dwelling unit is $364875 +in.representative_income 364894 Representative total house income in the dwelling unit is $364894 +in.representative_income 364973 Representative total house income in the dwelling unit is $364973 +in.representative_income 365134 Representative total house income in the dwelling unit is $365134 +in.representative_income 365167 Representative total house income in the dwelling unit is $365167 +in.representative_income 365199 Representative total house income in the dwelling unit is $365199 +in.representative_income 365238 Representative total house income in the dwelling unit is $365238 +in.representative_income 365415 Representative total house income in the dwelling unit is $365415 +in.representative_income 365420 Representative total house income in the dwelling unit is $365420 +in.representative_income 365443 Representative total house income in the dwelling unit is $365443 +in.representative_income 365481 Representative total house income in the dwelling unit is $365481 +in.representative_income 365650 Representative total house income in the dwelling unit is $365650 +in.representative_income 365673 Representative total house income in the dwelling unit is $365673 +in.representative_income 365739 Representative total house income in the dwelling unit is $365739 +in.representative_income 365847 Representative total house income in the dwelling unit is $365847 +in.representative_income 365864 Representative total house income in the dwelling unit is $365864 +in.representative_income 365906 Representative total house income in the dwelling unit is $365906 +in.representative_income 366046 Representative total house income in the dwelling unit is $366046 +in.representative_income 366077 Representative total house income in the dwelling unit is $366077 +in.representative_income 366166 Representative total house income in the dwelling unit is $366166 +in.representative_income 366265 Representative total house income in the dwelling unit is $366265 +in.representative_income 366279 Representative total house income in the dwelling unit is $366279 +in.representative_income 366475 Representative total house income in the dwelling unit is $366475 +in.representative_income 366496 Representative total house income in the dwelling unit is $366496 +in.representative_income 366683 Representative total house income in the dwelling unit is $366683 +in.representative_income 366691 Representative total house income in the dwelling unit is $366691 +in.representative_income 366713 Representative total house income in the dwelling unit is $366713 +in.representative_income 366763 Representative total house income in the dwelling unit is $366763 +in.representative_income 366885 Representative total house income in the dwelling unit is $366885 +in.representative_income 366905 Representative total house income in the dwelling unit is $366905 +in.representative_income 367003 Representative total house income in the dwelling unit is $367003 +in.representative_income 367087 Representative total house income in the dwelling unit is $367087 +in.representative_income 367094 Representative total house income in the dwelling unit is $367094 +in.representative_income 367120 Representative total house income in the dwelling unit is $367120 +in.representative_income 367197 Representative total house income in the dwelling unit is $367197 +in.representative_income 367226 Representative total house income in the dwelling unit is $367226 +in.representative_income 367360 Representative total house income in the dwelling unit is $367360 +in.representative_income 367619 Representative total house income in the dwelling unit is $367619 +in.representative_income 367636 Representative total house income in the dwelling unit is $367636 +in.representative_income 367657 Representative total house income in the dwelling unit is $367657 +in.representative_income 367693 Representative total house income in the dwelling unit is $367693 +in.representative_income 367713 Representative total house income in the dwelling unit is $367713 +in.representative_income 367774 Representative total house income in the dwelling unit is $367774 +in.representative_income 367792 Representative total house income in the dwelling unit is $367792 +in.representative_income 368058 Representative total house income in the dwelling unit is $368058 +in.representative_income 368097 Representative total house income in the dwelling unit is $368097 +in.representative_income 368163 Representative total house income in the dwelling unit is $368163 +in.representative_income 368246 Representative total house income in the dwelling unit is $368246 +in.representative_income 368602 Representative total house income in the dwelling unit is $368602 +in.representative_income 368665 Representative total house income in the dwelling unit is $368665 +in.representative_income 368703 Representative total house income in the dwelling unit is $368703 +in.representative_income 368944 Representative total house income in the dwelling unit is $368944 +in.representative_income 369112 Representative total house income in the dwelling unit is $369112 +in.representative_income 369156 Representative total house income in the dwelling unit is $369156 +in.representative_income 369196 Representative total house income in the dwelling unit is $369196 +in.representative_income 369260 Representative total house income in the dwelling unit is $369260 +in.representative_income 369267 Representative total house income in the dwelling unit is $369267 +in.representative_income 369304 Representative total house income in the dwelling unit is $369304 +in.representative_income 369323 Representative total house income in the dwelling unit is $369323 +in.representative_income 369365 Representative total house income in the dwelling unit is $369365 +in.representative_income 369503 Representative total house income in the dwelling unit is $369503 +in.representative_income 369511 Representative total house income in the dwelling unit is $369511 +in.representative_income 369534 Representative total house income in the dwelling unit is $369534 +in.representative_income 369588 Representative total house income in the dwelling unit is $369588 +in.representative_income 369639 Representative total house income in the dwelling unit is $369639 +in.representative_income 369713 Representative total house income in the dwelling unit is $369713 +in.representative_income 369725 Representative total house income in the dwelling unit is $369725 +in.representative_income 369737 Representative total house income in the dwelling unit is $369737 +in.representative_income 369953 Representative total house income in the dwelling unit is $369953 +in.representative_income 370167 Representative total house income in the dwelling unit is $370167 +in.representative_income 370287 Representative total house income in the dwelling unit is $370287 +in.representative_income 370291 Representative total house income in the dwelling unit is $370291 +in.representative_income 370340 Representative total house income in the dwelling unit is $370340 +in.representative_income 370377 Representative total house income in the dwelling unit is $370377 +in.representative_income 370447 Representative total house income in the dwelling unit is $370447 +in.representative_income 370589 Representative total house income in the dwelling unit is $370589 +in.representative_income 370709 Representative total house income in the dwelling unit is $370709 +in.representative_income 370723 Representative total house income in the dwelling unit is $370723 +in.representative_income 370725 Representative total house income in the dwelling unit is $370725 +in.representative_income 370748 Representative total house income in the dwelling unit is $370748 +in.representative_income 370877 Representative total house income in the dwelling unit is $370877 +in.representative_income 371010 Representative total house income in the dwelling unit is $371010 +in.representative_income 371013 Representative total house income in the dwelling unit is $371013 +in.representative_income 371033 Representative total house income in the dwelling unit is $371033 +in.representative_income 371127 Representative total house income in the dwelling unit is $371127 +in.representative_income 371142 Representative total house income in the dwelling unit is $371142 +in.representative_income 371198 Representative total house income in the dwelling unit is $371198 +in.representative_income 371222 Representative total house income in the dwelling unit is $371222 +in.representative_income 371322 Representative total house income in the dwelling unit is $371322 +in.representative_income 371413 Representative total house income in the dwelling unit is $371413 +in.representative_income 371432 Representative total house income in the dwelling unit is $371432 +in.representative_income 371527 Representative total house income in the dwelling unit is $371527 +in.representative_income 371548 Representative total house income in the dwelling unit is $371548 +in.representative_income 371643 Representative total house income in the dwelling unit is $371643 +in.representative_income 371681 Representative total house income in the dwelling unit is $371681 +in.representative_income 371733 Representative total house income in the dwelling unit is $371733 +in.representative_income 371854 Representative total house income in the dwelling unit is $371854 +in.representative_income 372114 Representative total house income in the dwelling unit is $372114 +in.representative_income 372276 Representative total house income in the dwelling unit is $372276 +in.representative_income 372355 Representative total house income in the dwelling unit is $372355 +in.representative_income 372487 Representative total house income in the dwelling unit is $372487 +in.representative_income 372616 Representative total house income in the dwelling unit is $372616 +in.representative_income 372664 Representative total house income in the dwelling unit is $372664 +in.representative_income 372744 Representative total house income in the dwelling unit is $372744 +in.representative_income 372762 Representative total house income in the dwelling unit is $372762 +in.representative_income 372845 Representative total house income in the dwelling unit is $372845 +in.representative_income 372916 Representative total house income in the dwelling unit is $372916 +in.representative_income 372946 Representative total house income in the dwelling unit is $372946 +in.representative_income 373076 Representative total house income in the dwelling unit is $373076 +in.representative_income 373270 Representative total house income in the dwelling unit is $373270 +in.representative_income 373330 Representative total house income in the dwelling unit is $373330 +in.representative_income 373346 Representative total house income in the dwelling unit is $373346 +in.representative_income 373451 Representative total house income in the dwelling unit is $373451 +in.representative_income 373560 Representative total house income in the dwelling unit is $373560 +in.representative_income 373627 Representative total house income in the dwelling unit is $373627 +in.representative_income 373646 Representative total house income in the dwelling unit is $373646 +in.representative_income 373754 Representative total house income in the dwelling unit is $373754 +in.representative_income 373764 Representative total house income in the dwelling unit is $373764 +in.representative_income 373843 Representative total house income in the dwelling unit is $373843 +in.representative_income 373858 Representative total house income in the dwelling unit is $373858 +in.representative_income 373929 Representative total house income in the dwelling unit is $373929 +in.representative_income 374069 Representative total house income in the dwelling unit is $374069 +in.representative_income 374211 Representative total house income in the dwelling unit is $374211 +in.representative_income 374383 Representative total house income in the dwelling unit is $374383 +in.representative_income 374385 Representative total house income in the dwelling unit is $374385 +in.representative_income 374417 Representative total house income in the dwelling unit is $374417 +in.representative_income 374419 Representative total house income in the dwelling unit is $374419 +in.representative_income 374512 Representative total house income in the dwelling unit is $374512 +in.representative_income 374599 Representative total house income in the dwelling unit is $374599 +in.representative_income 374633 Representative total house income in the dwelling unit is $374633 +in.representative_income 374663 Representative total house income in the dwelling unit is $374663 +in.representative_income 374691 Representative total house income in the dwelling unit is $374691 +in.representative_income 374764 Representative total house income in the dwelling unit is $374764 +in.representative_income 374807 Representative total house income in the dwelling unit is $374807 +in.representative_income 374865 Representative total house income in the dwelling unit is $374865 +in.representative_income 374890 Representative total house income in the dwelling unit is $374890 +in.representative_income 374923 Representative total house income in the dwelling unit is $374923 +in.representative_income 374933 Representative total house income in the dwelling unit is $374933 +in.representative_income 374977 Representative total house income in the dwelling unit is $374977 +in.representative_income 375018 Representative total house income in the dwelling unit is $375018 +in.representative_income 375140 Representative total house income in the dwelling unit is $375140 +in.representative_income 375215 Representative total house income in the dwelling unit is $375215 +in.representative_income 375385 Representative total house income in the dwelling unit is $375385 +in.representative_income 375439 Representative total house income in the dwelling unit is $375439 +in.representative_income 375449 Representative total house income in the dwelling unit is $375449 +in.representative_income 375471 Representative total house income in the dwelling unit is $375471 +in.representative_income 375571 Representative total house income in the dwelling unit is $375571 +in.representative_income 375707 Representative total house income in the dwelling unit is $375707 +in.representative_income 375772 Representative total house income in the dwelling unit is $375772 +in.representative_income 375774 Representative total house income in the dwelling unit is $375774 +in.representative_income 375787 Representative total house income in the dwelling unit is $375787 +in.representative_income 375901 Representative total house income in the dwelling unit is $375901 +in.representative_income 376004 Representative total house income in the dwelling unit is $376004 +in.representative_income 376077 Representative total house income in the dwelling unit is $376077 +in.representative_income 376112 Representative total house income in the dwelling unit is $376112 +in.representative_income 376177 Representative total house income in the dwelling unit is $376177 +in.representative_income 376178 Representative total house income in the dwelling unit is $376178 +in.representative_income 376188 Representative total house income in the dwelling unit is $376188 +in.representative_income 376243 Representative total house income in the dwelling unit is $376243 +in.representative_income 376480 Representative total house income in the dwelling unit is $376480 +in.representative_income 376494 Representative total house income in the dwelling unit is $376494 +in.representative_income 376760 Representative total house income in the dwelling unit is $376760 +in.representative_income 376780 Representative total house income in the dwelling unit is $376780 +in.representative_income 376784 Representative total house income in the dwelling unit is $376784 +in.representative_income 376868 Representative total house income in the dwelling unit is $376868 +in.representative_income 376892 Representative total house income in the dwelling unit is $376892 +in.representative_income 377084 Representative total house income in the dwelling unit is $377084 +in.representative_income 377127 Representative total house income in the dwelling unit is $377127 +in.representative_income 377300 Representative total house income in the dwelling unit is $377300 +in.representative_income 377318 Representative total house income in the dwelling unit is $377318 +in.representative_income 377338 Representative total house income in the dwelling unit is $377338 +in.representative_income 377399 Representative total house income in the dwelling unit is $377399 +in.representative_income 377511 Representative total house income in the dwelling unit is $377511 +in.representative_income 377549 Representative total house income in the dwelling unit is $377549 +in.representative_income 377615 Representative total house income in the dwelling unit is $377615 +in.representative_income 377840 Representative total house income in the dwelling unit is $377840 +in.representative_income 377854 Representative total house income in the dwelling unit is $377854 +in.representative_income 377948 Representative total house income in the dwelling unit is $377948 +in.representative_income 377961 Representative total house income in the dwelling unit is $377961 +in.representative_income 378077 Representative total house income in the dwelling unit is $378077 +in.representative_income 378130 Representative total house income in the dwelling unit is $378130 +in.representative_income 378164 Representative total house income in the dwelling unit is $378164 +in.representative_income 378178 Representative total house income in the dwelling unit is $378178 +in.representative_income 378337 Representative total house income in the dwelling unit is $378337 +in.representative_income 378391 Representative total house income in the dwelling unit is $378391 +in.representative_income 378400 Representative total house income in the dwelling unit is $378400 +in.representative_income 378543 Representative total house income in the dwelling unit is $378543 +in.representative_income 378597 Representative total house income in the dwelling unit is $378597 +in.representative_income 378603 Representative total house income in the dwelling unit is $378603 +in.representative_income 378804 Representative total house income in the dwelling unit is $378804 +in.representative_income 378853 Representative total house income in the dwelling unit is $378853 +in.representative_income 378905 Representative total house income in the dwelling unit is $378905 +in.representative_income 378928 Representative total house income in the dwelling unit is $378928 +in.representative_income 379025 Representative total house income in the dwelling unit is $379025 +in.representative_income 379063 Representative total house income in the dwelling unit is $379063 +in.representative_income 379162 Representative total house income in the dwelling unit is $379162 +in.representative_income 379236 Representative total house income in the dwelling unit is $379236 +in.representative_income 379245 Representative total house income in the dwelling unit is $379245 +in.representative_income 379265 Representative total house income in the dwelling unit is $379265 +in.representative_income 379472 Representative total house income in the dwelling unit is $379472 +in.representative_income 379574 Representative total house income in the dwelling unit is $379574 +in.representative_income 379658 Representative total house income in the dwelling unit is $379658 +in.representative_income 379673 Representative total house income in the dwelling unit is $379673 +in.representative_income 379815 Representative total house income in the dwelling unit is $379815 +in.representative_income 379884 Representative total house income in the dwelling unit is $379884 +in.representative_income 379916 Representative total house income in the dwelling unit is $379916 +in.representative_income 380001 Representative total house income in the dwelling unit is $380001 +in.representative_income 380109 Representative total house income in the dwelling unit is $380109 +in.representative_income 380219 Representative total house income in the dwelling unit is $380219 +in.representative_income 380291 Representative total house income in the dwelling unit is $380291 +in.representative_income 380501 Representative total house income in the dwelling unit is $380501 +in.representative_income 380506 Representative total house income in the dwelling unit is $380506 +in.representative_income 380538 Representative total house income in the dwelling unit is $380538 +in.representative_income 380559 Representative total house income in the dwelling unit is $380559 +in.representative_income 380606 Representative total house income in the dwelling unit is $380606 +in.representative_income 380608 Representative total house income in the dwelling unit is $380608 +in.representative_income 380647 Representative total house income in the dwelling unit is $380647 +in.representative_income 380825 Representative total house income in the dwelling unit is $380825 +in.representative_income 380866 Representative total house income in the dwelling unit is $380866 +in.representative_income 381075 Representative total house income in the dwelling unit is $381075 +in.representative_income 381085 Representative total house income in the dwelling unit is $381085 +in.representative_income 381482 Representative total house income in the dwelling unit is $381482 +in.representative_income 381513 Representative total house income in the dwelling unit is $381513 +in.representative_income 381611 Representative total house income in the dwelling unit is $381611 +in.representative_income 381638 Representative total house income in the dwelling unit is $381638 +in.representative_income 381761 Representative total house income in the dwelling unit is $381761 +in.representative_income 381767 Representative total house income in the dwelling unit is $381767 +in.representative_income 381925 Representative total house income in the dwelling unit is $381925 +in.representative_income 381947 Representative total house income in the dwelling unit is $381947 +in.representative_income 382040 Representative total house income in the dwelling unit is $382040 +in.representative_income 382066 Representative total house income in the dwelling unit is $382066 +in.representative_income 382084 Representative total house income in the dwelling unit is $382084 +in.representative_income 382148 Representative total house income in the dwelling unit is $382148 +in.representative_income 382162 Representative total house income in the dwelling unit is $382162 +in.representative_income 382255 Representative total house income in the dwelling unit is $382255 +in.representative_income 382277 Representative total house income in the dwelling unit is $382277 +in.representative_income 382340 Representative total house income in the dwelling unit is $382340 +in.representative_income 382464 Representative total house income in the dwelling unit is $382464 +in.representative_income 382486 Representative total house income in the dwelling unit is $382486 +in.representative_income 382611 Representative total house income in the dwelling unit is $382611 +in.representative_income 382643 Representative total house income in the dwelling unit is $382643 +in.representative_income 382669 Representative total house income in the dwelling unit is $382669 +in.representative_income 382822 Representative total house income in the dwelling unit is $382822 +in.representative_income 382845 Representative total house income in the dwelling unit is $382845 +in.representative_income 382900 Representative total house income in the dwelling unit is $382900 +in.representative_income 383081 Representative total house income in the dwelling unit is $383081 +in.representative_income 383185 Representative total house income in the dwelling unit is $383185 +in.representative_income 383350 Representative total house income in the dwelling unit is $383350 +in.representative_income 383436 Representative total house income in the dwelling unit is $383436 +in.representative_income 383567 Representative total house income in the dwelling unit is $383567 +in.representative_income 383700 Representative total house income in the dwelling unit is $383700 +in.representative_income 383855 Representative total house income in the dwelling unit is $383855 +in.representative_income 383877 Representative total house income in the dwelling unit is $383877 +in.representative_income 384057 Representative total house income in the dwelling unit is $384057 +in.representative_income 384295 Representative total house income in the dwelling unit is $384295 +in.representative_income 384360 Representative total house income in the dwelling unit is $384360 +in.representative_income 384423 Representative total house income in the dwelling unit is $384423 +in.representative_income 384648 Representative total house income in the dwelling unit is $384648 +in.representative_income 384732 Representative total house income in the dwelling unit is $384732 +in.representative_income 384739 Representative total house income in the dwelling unit is $384739 +in.representative_income 384835 Representative total house income in the dwelling unit is $384835 +in.representative_income 384865 Representative total house income in the dwelling unit is $384865 +in.representative_income 384931 Representative total house income in the dwelling unit is $384931 +in.representative_income 385025 Representative total house income in the dwelling unit is $385025 +in.representative_income 385052 Representative total house income in the dwelling unit is $385052 +in.representative_income 385089 Representative total house income in the dwelling unit is $385089 +in.representative_income 385133 Representative total house income in the dwelling unit is $385133 +in.representative_income 385168 Representative total house income in the dwelling unit is $385168 +in.representative_income 385248 Representative total house income in the dwelling unit is $385248 +in.representative_income 385583 Representative total house income in the dwelling unit is $385583 +in.representative_income 385691 Representative total house income in the dwelling unit is $385691 +in.representative_income 385728 Representative total house income in the dwelling unit is $385728 +in.representative_income 385763 Representative total house income in the dwelling unit is $385763 +in.representative_income 385875 Representative total house income in the dwelling unit is $385875 +in.representative_income 385986 Representative total house income in the dwelling unit is $385986 +in.representative_income 386124 Representative total house income in the dwelling unit is $386124 +in.representative_income 386178 Representative total house income in the dwelling unit is $386178 +in.representative_income 386382 Representative total house income in the dwelling unit is $386382 +in.representative_income 386441 Representative total house income in the dwelling unit is $386441 +in.representative_income 386549 Representative total house income in the dwelling unit is $386549 +in.representative_income 386710 Representative total house income in the dwelling unit is $386710 +in.representative_income 386794 Representative total house income in the dwelling unit is $386794 +in.representative_income 386808 Representative total house income in the dwelling unit is $386808 +in.representative_income 386898 Representative total house income in the dwelling unit is $386898 +in.representative_income 387041 Representative total house income in the dwelling unit is $387041 +in.representative_income 387532 Representative total house income in the dwelling unit is $387532 +in.representative_income 387564 Representative total house income in the dwelling unit is $387564 +in.representative_income 387779 Representative total house income in the dwelling unit is $387779 +in.representative_income 387826 Representative total house income in the dwelling unit is $387826 +in.representative_income 387889 Representative total house income in the dwelling unit is $387889 +in.representative_income 387989 Representative total house income in the dwelling unit is $387989 +in.representative_income 388051 Representative total house income in the dwelling unit is $388051 +in.representative_income 388095 Representative total house income in the dwelling unit is $388095 +in.representative_income 388300 Representative total house income in the dwelling unit is $388300 +in.representative_income 388588 Representative total house income in the dwelling unit is $388588 +in.representative_income 388622 Representative total house income in the dwelling unit is $388622 +in.representative_income 388727 Representative total house income in the dwelling unit is $388727 +in.representative_income 388753 Representative total house income in the dwelling unit is $388753 +in.representative_income 388857 Representative total house income in the dwelling unit is $388857 +in.representative_income 388862 Representative total house income in the dwelling unit is $388862 +in.representative_income 388906 Representative total house income in the dwelling unit is $388906 +in.representative_income 388960 Representative total house income in the dwelling unit is $388960 +in.representative_income 388969 Representative total house income in the dwelling unit is $388969 +in.representative_income 389108 Representative total house income in the dwelling unit is $389108 +in.representative_income 389149 Representative total house income in the dwelling unit is $389149 +in.representative_income 389411 Representative total house income in the dwelling unit is $389411 +in.representative_income 389663 Representative total house income in the dwelling unit is $389663 +in.representative_income 389683 Representative total house income in the dwelling unit is $389683 +in.representative_income 389782 Representative total house income in the dwelling unit is $389782 +in.representative_income 389815 Representative total house income in the dwelling unit is $389815 +in.representative_income 389833 Representative total house income in the dwelling unit is $389833 +in.representative_income 389877 Representative total house income in the dwelling unit is $389877 +in.representative_income 389889 Representative total house income in the dwelling unit is $389889 +in.representative_income 390049 Representative total house income in the dwelling unit is $390049 +in.representative_income 390158 Representative total house income in the dwelling unit is $390158 +in.representative_income 390204 Representative total house income in the dwelling unit is $390204 +in.representative_income 390266 Representative total house income in the dwelling unit is $390266 +in.representative_income 390306 Representative total house income in the dwelling unit is $390306 +in.representative_income 390590 Representative total house income in the dwelling unit is $390590 +in.representative_income 390628 Representative total house income in the dwelling unit is $390628 +in.representative_income 390732 Representative total house income in the dwelling unit is $390732 +in.representative_income 390736 Representative total house income in the dwelling unit is $390736 +in.representative_income 390825 Representative total house income in the dwelling unit is $390825 +in.representative_income 390921 Representative total house income in the dwelling unit is $390921 +in.representative_income 391023 Representative total house income in the dwelling unit is $391023 +in.representative_income 391048 Representative total house income in the dwelling unit is $391048 +in.representative_income 391128 Representative total house income in the dwelling unit is $391128 +in.representative_income 391130 Representative total house income in the dwelling unit is $391130 +in.representative_income 391195 Representative total house income in the dwelling unit is $391195 +in.representative_income 391229 Representative total house income in the dwelling unit is $391229 +in.representative_income 391379 Representative total house income in the dwelling unit is $391379 +in.representative_income 391436 Representative total house income in the dwelling unit is $391436 +in.representative_income 391594 Representative total house income in the dwelling unit is $391594 +in.representative_income 391670 Representative total house income in the dwelling unit is $391670 +in.representative_income 391734 Representative total house income in the dwelling unit is $391734 +in.representative_income 391779 Representative total house income in the dwelling unit is $391779 +in.representative_income 391809 Representative total house income in the dwelling unit is $391809 +in.representative_income 391849 Representative total house income in the dwelling unit is $391849 +in.representative_income 391891 Representative total house income in the dwelling unit is $391891 +in.representative_income 391936 Representative total house income in the dwelling unit is $391936 +in.representative_income 391952 Representative total house income in the dwelling unit is $391952 +in.representative_income 392210 Representative total house income in the dwelling unit is $392210 +in.representative_income 392229 Representative total house income in the dwelling unit is $392229 +in.representative_income 392313 Representative total house income in the dwelling unit is $392313 +in.representative_income 392883 Representative total house income in the dwelling unit is $392883 +in.representative_income 392946 Representative total house income in the dwelling unit is $392946 +in.representative_income 392983 Representative total house income in the dwelling unit is $392983 +in.representative_income 393035 Representative total house income in the dwelling unit is $393035 +in.representative_income 393419 Representative total house income in the dwelling unit is $393419 +in.representative_income 393451 Representative total house income in the dwelling unit is $393451 +in.representative_income 393633 Representative total house income in the dwelling unit is $393633 +in.representative_income 393856 Representative total house income in the dwelling unit is $393856 +in.representative_income 393956 Representative total house income in the dwelling unit is $393956 +in.representative_income 393957 Representative total house income in the dwelling unit is $393957 +in.representative_income 394015 Representative total house income in the dwelling unit is $394015 +in.representative_income 394106 Representative total house income in the dwelling unit is $394106 +in.representative_income 394156 Representative total house income in the dwelling unit is $394156 +in.representative_income 394172 Representative total house income in the dwelling unit is $394172 +in.representative_income 394180 Representative total house income in the dwelling unit is $394180 +in.representative_income 394260 Representative total house income in the dwelling unit is $394260 +in.representative_income 394422 Representative total house income in the dwelling unit is $394422 +in.representative_income 394480 Representative total house income in the dwelling unit is $394480 +in.representative_income 394587 Representative total house income in the dwelling unit is $394587 +in.representative_income 394654 Representative total house income in the dwelling unit is $394654 +in.representative_income 394825 Representative total house income in the dwelling unit is $394825 +in.representative_income 394967 Representative total house income in the dwelling unit is $394967 +in.representative_income 395017 Representative total house income in the dwelling unit is $395017 +in.representative_income 395029 Representative total house income in the dwelling unit is $395029 +in.representative_income 395169 Representative total house income in the dwelling unit is $395169 +in.representative_income 395372 Representative total house income in the dwelling unit is $395372 +in.representative_income 395452 Representative total house income in the dwelling unit is $395452 +in.representative_income 395477 Representative total house income in the dwelling unit is $395477 +in.representative_income 395636 Representative total house income in the dwelling unit is $395636 +in.representative_income 395722 Representative total house income in the dwelling unit is $395722 +in.representative_income 395730 Representative total house income in the dwelling unit is $395730 +in.representative_income 395872 Representative total house income in the dwelling unit is $395872 +in.representative_income 395938 Representative total house income in the dwelling unit is $395938 +in.representative_income 396077 Representative total house income in the dwelling unit is $396077 +in.representative_income 396103 Representative total house income in the dwelling unit is $396103 +in.representative_income 396215 Representative total house income in the dwelling unit is $396215 +in.representative_income 396280 Representative total house income in the dwelling unit is $396280 +in.representative_income 396294 Representative total house income in the dwelling unit is $396294 +in.representative_income 396371 Representative total house income in the dwelling unit is $396371 +in.representative_income 396479 Representative total house income in the dwelling unit is $396479 +in.representative_income 396482 Representative total house income in the dwelling unit is $396482 +in.representative_income 396532 Representative total house income in the dwelling unit is $396532 +in.representative_income 396533 Representative total house income in the dwelling unit is $396533 +in.representative_income 396785 Representative total house income in the dwelling unit is $396785 +in.representative_income 396903 Representative total house income in the dwelling unit is $396903 +in.representative_income 397006 Representative total house income in the dwelling unit is $397006 +in.representative_income 397176 Representative total house income in the dwelling unit is $397176 +in.representative_income 397189 Representative total house income in the dwelling unit is $397189 +in.representative_income 397218 Representative total house income in the dwelling unit is $397218 +in.representative_income 397234 Representative total house income in the dwelling unit is $397234 +in.representative_income 397315 Representative total house income in the dwelling unit is $397315 +in.representative_income 397391 Representative total house income in the dwelling unit is $397391 +in.representative_income 397613 Representative total house income in the dwelling unit is $397613 +in.representative_income 397713 Representative total house income in the dwelling unit is $397713 +in.representative_income 397721 Representative total house income in the dwelling unit is $397721 +in.representative_income 397992 Representative total house income in the dwelling unit is $397992 +in.representative_income 397997 Representative total house income in the dwelling unit is $397997 +in.representative_income 398130 Representative total house income in the dwelling unit is $398130 +in.representative_income 398199 Representative total house income in the dwelling unit is $398199 +in.representative_income 398243 Representative total house income in the dwelling unit is $398243 +in.representative_income 398249 Representative total house income in the dwelling unit is $398249 +in.representative_income 398261 Representative total house income in the dwelling unit is $398261 +in.representative_income 398347 Representative total house income in the dwelling unit is $398347 +in.representative_income 398759 Representative total house income in the dwelling unit is $398759 +in.representative_income 398910 Representative total house income in the dwelling unit is $398910 +in.representative_income 398966 Representative total house income in the dwelling unit is $398966 +in.representative_income 398993 Representative total house income in the dwelling unit is $398993 +in.representative_income 399007 Representative total house income in the dwelling unit is $399007 +in.representative_income 399108 Representative total house income in the dwelling unit is $399108 +in.representative_income 399172 Representative total house income in the dwelling unit is $399172 +in.representative_income 399323 Representative total house income in the dwelling unit is $399323 +in.representative_income 399378 Representative total house income in the dwelling unit is $399378 +in.representative_income 399557 Representative total house income in the dwelling unit is $399557 +in.representative_income 399774 Representative total house income in the dwelling unit is $399774 +in.representative_income 400017 Representative total house income in the dwelling unit is $400017 +in.representative_income 400206 Representative total house income in the dwelling unit is $400206 +in.representative_income 400314 Representative total house income in the dwelling unit is $400314 +in.representative_income 400322 Representative total house income in the dwelling unit is $400322 +in.representative_income 400396 Representative total house income in the dwelling unit is $400396 +in.representative_income 400725 Representative total house income in the dwelling unit is $400725 +in.representative_income 400750 Representative total house income in the dwelling unit is $400750 +in.representative_income 400854 Representative total house income in the dwelling unit is $400854 +in.representative_income 401028 Representative total house income in the dwelling unit is $401028 +in.representative_income 401178 Representative total house income in the dwelling unit is $401178 +in.representative_income 401179 Representative total house income in the dwelling unit is $401179 +in.representative_income 401235 Representative total house income in the dwelling unit is $401235 +in.representative_income 401287 Representative total house income in the dwelling unit is $401287 +in.representative_income 401395 Representative total house income in the dwelling unit is $401395 +in.representative_income 401470 Representative total house income in the dwelling unit is $401470 +in.representative_income 401533 Representative total house income in the dwelling unit is $401533 +in.representative_income 401699 Representative total house income in the dwelling unit is $401699 +in.representative_income 401836 Representative total house income in the dwelling unit is $401836 +in.representative_income 401910 Representative total house income in the dwelling unit is $401910 +in.representative_income 402038 Representative total house income in the dwelling unit is $402038 +in.representative_income 402067 Representative total house income in the dwelling unit is $402067 +in.representative_income 402163 Representative total house income in the dwelling unit is $402163 +in.representative_income 402221 Representative total house income in the dwelling unit is $402221 +in.representative_income 402240 Representative total house income in the dwelling unit is $402240 +in.representative_income 402266 Representative total house income in the dwelling unit is $402266 +in.representative_income 402846 Representative total house income in the dwelling unit is $402846 +in.representative_income 402908 Representative total house income in the dwelling unit is $402908 +in.representative_income 403015 Representative total house income in the dwelling unit is $403015 +in.representative_income 403048 Representative total house income in the dwelling unit is $403048 +in.representative_income 403298 Representative total house income in the dwelling unit is $403298 +in.representative_income 403339 Representative total house income in the dwelling unit is $403339 +in.representative_income 403617 Representative total house income in the dwelling unit is $403617 +in.representative_income 403856 Representative total house income in the dwelling unit is $403856 +in.representative_income 404058 Representative total house income in the dwelling unit is $404058 +in.representative_income 404096 Representative total house income in the dwelling unit is $404096 +in.representative_income 404329 Representative total house income in the dwelling unit is $404329 +in.representative_income 404441 Representative total house income in the dwelling unit is $404441 +in.representative_income 404563 Representative total house income in the dwelling unit is $404563 +in.representative_income 404636 Representative total house income in the dwelling unit is $404636 +in.representative_income 404664 Representative total house income in the dwelling unit is $404664 +in.representative_income 404691 Representative total house income in the dwelling unit is $404691 +in.representative_income 405068 Representative total house income in the dwelling unit is $405068 +in.representative_income 405077 Representative total house income in the dwelling unit is $405077 +in.representative_income 405169 Representative total house income in the dwelling unit is $405169 +in.representative_income 405177 Representative total house income in the dwelling unit is $405177 +in.representative_income 405335 Representative total house income in the dwelling unit is $405335 +in.representative_income 405360 Representative total house income in the dwelling unit is $405360 +in.representative_income 405608 Representative total house income in the dwelling unit is $405608 +in.representative_income 405764 Representative total house income in the dwelling unit is $405764 +in.representative_income 405903 Representative total house income in the dwelling unit is $405903 +in.representative_income 406023 Representative total house income in the dwelling unit is $406023 +in.representative_income 406078 Representative total house income in the dwelling unit is $406078 +in.representative_income 406160 Representative total house income in the dwelling unit is $406160 +in.representative_income 406193 Representative total house income in the dwelling unit is $406193 +in.representative_income 406234 Representative total house income in the dwelling unit is $406234 +in.representative_income 406392 Representative total house income in the dwelling unit is $406392 +in.representative_income 406684 Representative total house income in the dwelling unit is $406684 +in.representative_income 406837 Representative total house income in the dwelling unit is $406837 +in.representative_income 406908 Representative total house income in the dwelling unit is $406908 +in.representative_income 407139 Representative total house income in the dwelling unit is $407139 +in.representative_income 407184 Representative total house income in the dwelling unit is $407184 +in.representative_income 407337 Representative total house income in the dwelling unit is $407337 +in.representative_income 407374 Representative total house income in the dwelling unit is $407374 +in.representative_income 407424 Representative total house income in the dwelling unit is $407424 +in.representative_income 407681 Representative total house income in the dwelling unit is $407681 +in.representative_income 407695 Representative total house income in the dwelling unit is $407695 +in.representative_income 407710 Representative total house income in the dwelling unit is $407710 +in.representative_income 407911 Representative total house income in the dwelling unit is $407911 +in.representative_income 407940 Representative total house income in the dwelling unit is $407940 +in.representative_income 408008 Representative total house income in the dwelling unit is $408008 +in.representative_income 408099 Representative total house income in the dwelling unit is $408099 +in.representative_income 408249 Representative total house income in the dwelling unit is $408249 +in.representative_income 408402 Representative total house income in the dwelling unit is $408402 +in.representative_income 408418 Representative total house income in the dwelling unit is $408418 +in.representative_income 408455 Representative total house income in the dwelling unit is $408455 +in.representative_income 408555 Representative total house income in the dwelling unit is $408555 +in.representative_income 408576 Representative total house income in the dwelling unit is $408576 +in.representative_income 408634 Representative total house income in the dwelling unit is $408634 +in.representative_income 408958 Representative total house income in the dwelling unit is $408958 +in.representative_income 409109 Representative total house income in the dwelling unit is $409109 +in.representative_income 409187 Representative total house income in the dwelling unit is $409187 +in.representative_income 409336 Representative total house income in the dwelling unit is $409336 +in.representative_income 409614 Representative total house income in the dwelling unit is $409614 +in.representative_income 409816 Representative total house income in the dwelling unit is $409816 +in.representative_income 409820 Representative total house income in the dwelling unit is $409820 +in.representative_income 409842 Representative total house income in the dwelling unit is $409842 +in.representative_income 410057 Representative total house income in the dwelling unit is $410057 +in.representative_income 410097 Representative total house income in the dwelling unit is $410097 +in.representative_income 410119 Representative total house income in the dwelling unit is $410119 +in.representative_income 410147 Representative total house income in the dwelling unit is $410147 +in.representative_income 410208 Representative total house income in the dwelling unit is $410208 +in.representative_income 410220 Representative total house income in the dwelling unit is $410220 +in.representative_income 410241 Representative total house income in the dwelling unit is $410241 +in.representative_income 410518 Representative total house income in the dwelling unit is $410518 +in.representative_income 410576 Representative total house income in the dwelling unit is $410576 +in.representative_income 410578 Representative total house income in the dwelling unit is $410578 +in.representative_income 410624 Representative total house income in the dwelling unit is $410624 +in.representative_income 410902 Representative total house income in the dwelling unit is $410902 +in.representative_income 411129 Representative total house income in the dwelling unit is $411129 +in.representative_income 411238 Representative total house income in the dwelling unit is $411238 +in.representative_income 411296 Representative total house income in the dwelling unit is $411296 +in.representative_income 411327 Representative total house income in the dwelling unit is $411327 +in.representative_income 411331 Representative total house income in the dwelling unit is $411331 +in.representative_income 411401 Representative total house income in the dwelling unit is $411401 +in.representative_income 411659 Representative total house income in the dwelling unit is $411659 +in.representative_income 411667 Representative total house income in the dwelling unit is $411667 +in.representative_income 411929 Representative total house income in the dwelling unit is $411929 +in.representative_income 412065 Representative total house income in the dwelling unit is $412065 +in.representative_income 412139 Representative total house income in the dwelling unit is $412139 +in.representative_income 412204 Representative total house income in the dwelling unit is $412204 +in.representative_income 412581 Representative total house income in the dwelling unit is $412581 +in.representative_income 412739 Representative total house income in the dwelling unit is $412739 +in.representative_income 412793 Representative total house income in the dwelling unit is $412793 +in.representative_income 412846 Representative total house income in the dwelling unit is $412846 +in.representative_income 412993 Representative total house income in the dwelling unit is $412993 +in.representative_income 413278 Representative total house income in the dwelling unit is $413278 +in.representative_income 413385 Representative total house income in the dwelling unit is $413385 +in.representative_income 413405 Representative total house income in the dwelling unit is $413405 +in.representative_income 413820 Representative total house income in the dwelling unit is $413820 +in.representative_income 413936 Representative total house income in the dwelling unit is $413936 +in.representative_income 414159 Representative total house income in the dwelling unit is $414159 +in.representative_income 414260 Representative total house income in the dwelling unit is $414260 +in.representative_income 414460 Representative total house income in the dwelling unit is $414460 +in.representative_income 414850 Representative total house income in the dwelling unit is $414850 +in.representative_income 415057 Representative total house income in the dwelling unit is $415057 +in.representative_income 415425 Representative total house income in the dwelling unit is $415425 +in.representative_income 415440 Representative total house income in the dwelling unit is $415440 +in.representative_income 415515 Representative total house income in the dwelling unit is $415515 +in.representative_income 415525 Representative total house income in the dwelling unit is $415525 +in.representative_income 415676 Representative total house income in the dwelling unit is $415676 +in.representative_income 415765 Representative total house income in the dwelling unit is $415765 +in.representative_income 415881 Representative total house income in the dwelling unit is $415881 +in.representative_income 415981 Representative total house income in the dwelling unit is $415981 +in.representative_income 416253 Representative total house income in the dwelling unit is $416253 +in.representative_income 416316 Representative total house income in the dwelling unit is $416316 +in.representative_income 416358 Representative total house income in the dwelling unit is $416358 +in.representative_income 416499 Representative total house income in the dwelling unit is $416499 +in.representative_income 416604 Representative total house income in the dwelling unit is $416604 +in.representative_income 416737 Representative total house income in the dwelling unit is $416737 +in.representative_income 416787 Representative total house income in the dwelling unit is $416787 +in.representative_income 417062 Representative total house income in the dwelling unit is $417062 +in.representative_income 417190 Representative total house income in the dwelling unit is $417190 +in.representative_income 417624 Representative total house income in the dwelling unit is $417624 +in.representative_income 417738 Representative total house income in the dwelling unit is $417738 +in.representative_income 417998 Representative total house income in the dwelling unit is $417998 +in.representative_income 418046 Representative total house income in the dwelling unit is $418046 +in.representative_income 418099 Representative total house income in the dwelling unit is $418099 +in.representative_income 418142 Representative total house income in the dwelling unit is $418142 +in.representative_income 418146 Representative total house income in the dwelling unit is $418146 +in.representative_income 418200 Representative total house income in the dwelling unit is $418200 +in.representative_income 418466 Representative total house income in the dwelling unit is $418466 +in.representative_income 418645 Representative total house income in the dwelling unit is $418645 +in.representative_income 418682 Representative total house income in the dwelling unit is $418682 +in.representative_income 418770 Representative total house income in the dwelling unit is $418770 +in.representative_income 418806 Representative total house income in the dwelling unit is $418806 +in.representative_income 418975 Representative total house income in the dwelling unit is $418975 +in.representative_income 418995 Representative total house income in the dwelling unit is $418995 +in.representative_income 419210 Representative total house income in the dwelling unit is $419210 +in.representative_income 419222 Representative total house income in the dwelling unit is $419222 +in.representative_income 419719 Representative total house income in the dwelling unit is $419719 +in.representative_income 419733 Representative total house income in the dwelling unit is $419733 +in.representative_income 419801 Representative total house income in the dwelling unit is $419801 +in.representative_income 419839 Representative total house income in the dwelling unit is $419839 +in.representative_income 420110 Representative total house income in the dwelling unit is $420110 +in.representative_income 420220 Representative total house income in the dwelling unit is $420220 +in.representative_income 420303 Representative total house income in the dwelling unit is $420303 +in.representative_income 420624 Representative total house income in the dwelling unit is $420624 +in.representative_income 420735 Representative total house income in the dwelling unit is $420735 +in.representative_income 420792 Representative total house income in the dwelling unit is $420792 +in.representative_income 420936 Representative total house income in the dwelling unit is $420936 +in.representative_income 421230 Representative total house income in the dwelling unit is $421230 +in.representative_income 421245 Representative total house income in the dwelling unit is $421245 +in.representative_income 421383 Representative total house income in the dwelling unit is $421383 +in.representative_income 421470 Representative total house income in the dwelling unit is $421470 +in.representative_income 421509 Representative total house income in the dwelling unit is $421509 +in.representative_income 421837 Representative total house income in the dwelling unit is $421837 +in.representative_income 421843 Representative total house income in the dwelling unit is $421843 +in.representative_income 421865 Representative total house income in the dwelling unit is $421865 +in.representative_income 422053 Representative total house income in the dwelling unit is $422053 +in.representative_income 422241 Representative total house income in the dwelling unit is $422241 +in.representative_income 422248 Representative total house income in the dwelling unit is $422248 +in.representative_income 422463 Representative total house income in the dwelling unit is $422463 +in.representative_income 422510 Representative total house income in the dwelling unit is $422510 +in.representative_income 422680 Representative total house income in the dwelling unit is $422680 +in.representative_income 422767 Representative total house income in the dwelling unit is $422767 +in.representative_income 422939 Representative total house income in the dwelling unit is $422939 +in.representative_income 422948 Representative total house income in the dwelling unit is $422948 +in.representative_income 423108 Representative total house income in the dwelling unit is $423108 +in.representative_income 423154 Representative total house income in the dwelling unit is $423154 +in.representative_income 423210 Representative total house income in the dwelling unit is $423210 +in.representative_income 423544 Representative total house income in the dwelling unit is $423544 +in.representative_income 423721 Representative total house income in the dwelling unit is $423721 +in.representative_income 423926 Representative total house income in the dwelling unit is $423926 +in.representative_income 424030 Representative total house income in the dwelling unit is $424030 +in.representative_income 424261 Representative total house income in the dwelling unit is $424261 +in.representative_income 424517 Representative total house income in the dwelling unit is $424517 +in.representative_income 424545 Representative total house income in the dwelling unit is $424545 +in.representative_income 424867 Representative total house income in the dwelling unit is $424867 +in.representative_income 424959 Representative total house income in the dwelling unit is $424959 +in.representative_income 424968 Representative total house income in the dwelling unit is $424968 +in.representative_income 424969 Representative total house income in the dwelling unit is $424969 +in.representative_income 425006 Representative total house income in the dwelling unit is $425006 +in.representative_income 425217 Representative total house income in the dwelling unit is $425217 +in.representative_income 425383 Representative total house income in the dwelling unit is $425383 +in.representative_income 425408 Representative total house income in the dwelling unit is $425408 +in.representative_income 425569 Representative total house income in the dwelling unit is $425569 +in.representative_income 425622 Representative total house income in the dwelling unit is $425622 +in.representative_income 425639 Representative total house income in the dwelling unit is $425639 +in.representative_income 426029 Representative total house income in the dwelling unit is $426029 +in.representative_income 426060 Representative total house income in the dwelling unit is $426060 +in.representative_income 426159 Representative total house income in the dwelling unit is $426159 +in.representative_income 426374 Representative total house income in the dwelling unit is $426374 +in.representative_income 426506 Representative total house income in the dwelling unit is $426506 +in.representative_income 426786 Representative total house income in the dwelling unit is $426786 +in.representative_income 426799 Representative total house income in the dwelling unit is $426799 +in.representative_income 426872 Representative total house income in the dwelling unit is $426872 +in.representative_income 427021 Representative total house income in the dwelling unit is $427021 +in.representative_income 427115 Representative total house income in the dwelling unit is $427115 +in.representative_income 427232 Representative total house income in the dwelling unit is $427232 +in.representative_income 427233 Representative total house income in the dwelling unit is $427233 +in.representative_income 427291 Representative total house income in the dwelling unit is $427291 +in.representative_income 427325 Representative total house income in the dwelling unit is $427325 +in.representative_income 427352 Representative total house income in the dwelling unit is $427352 +in.representative_income 427467 Representative total house income in the dwelling unit is $427467 +in.representative_income 427537 Representative total house income in the dwelling unit is $427537 +in.representative_income 427853 Representative total house income in the dwelling unit is $427853 +in.representative_income 427866 Representative total house income in the dwelling unit is $427866 +in.representative_income 428170 Representative total house income in the dwelling unit is $428170 +in.representative_income 428191 Representative total house income in the dwelling unit is $428191 +in.representative_income 428299 Representative total house income in the dwelling unit is $428299 +in.representative_income 428307 Representative total house income in the dwelling unit is $428307 +in.representative_income 429084 Representative total house income in the dwelling unit is $429084 +in.representative_income 429224 Representative total house income in the dwelling unit is $429224 +in.representative_income 429312 Representative total house income in the dwelling unit is $429312 +in.representative_income 429342 Representative total house income in the dwelling unit is $429342 +in.representative_income 429380 Representative total house income in the dwelling unit is $429380 +in.representative_income 429487 Representative total house income in the dwelling unit is $429487 +in.representative_income 429755 Representative total house income in the dwelling unit is $429755 +in.representative_income 430027 Representative total house income in the dwelling unit is $430027 +in.representative_income 430068 Representative total house income in the dwelling unit is $430068 +in.representative_income 430115 Representative total house income in the dwelling unit is $430115 +in.representative_income 430178 Representative total house income in the dwelling unit is $430178 +in.representative_income 430193 Representative total house income in the dwelling unit is $430193 +in.representative_income 430279 Representative total house income in the dwelling unit is $430279 +in.representative_income 430322 Representative total house income in the dwelling unit is $430322 +in.representative_income 430453 Representative total house income in the dwelling unit is $430453 +in.representative_income 430912 Representative total house income in the dwelling unit is $430912 +in.representative_income 431043 Representative total house income in the dwelling unit is $431043 +in.representative_income 431107 Representative total house income in the dwelling unit is $431107 +in.representative_income 431147 Representative total house income in the dwelling unit is $431147 +in.representative_income 431432 Representative total house income in the dwelling unit is $431432 +in.representative_income 431527 Representative total house income in the dwelling unit is $431527 +in.representative_income 431534 Representative total house income in the dwelling unit is $431534 +in.representative_income 431939 Representative total house income in the dwelling unit is $431939 +in.representative_income 432178 Representative total house income in the dwelling unit is $432178 +in.representative_income 432188 Representative total house income in the dwelling unit is $432188 +in.representative_income 432210 Representative total house income in the dwelling unit is $432210 +in.representative_income 432494 Representative total house income in the dwelling unit is $432494 +in.representative_income 432600 Representative total house income in the dwelling unit is $432600 +in.representative_income 432728 Representative total house income in the dwelling unit is $432728 +in.representative_income 433210 Representative total house income in the dwelling unit is $433210 +in.representative_income 433352 Representative total house income in the dwelling unit is $433352 +in.representative_income 433409 Representative total house income in the dwelling unit is $433409 +in.representative_income 433443 Representative total house income in the dwelling unit is $433443 +in.representative_income 433766 Representative total house income in the dwelling unit is $433766 +in.representative_income 433857 Representative total house income in the dwelling unit is $433857 +in.representative_income 434242 Representative total house income in the dwelling unit is $434242 +in.representative_income 434318 Representative total house income in the dwelling unit is $434318 +in.representative_income 434349 Representative total house income in the dwelling unit is $434349 +in.representative_income 434362 Representative total house income in the dwelling unit is $434362 +in.representative_income 434447 Representative total house income in the dwelling unit is $434447 +in.representative_income 434463 Representative total house income in the dwelling unit is $434463 +in.representative_income 434498 Representative total house income in the dwelling unit is $434498 +in.representative_income 434747 Representative total house income in the dwelling unit is $434747 +in.representative_income 434757 Representative total house income in the dwelling unit is $434757 +in.representative_income 434867 Representative total house income in the dwelling unit is $434867 +in.representative_income 435273 Representative total house income in the dwelling unit is $435273 +in.representative_income 435373 Representative total house income in the dwelling unit is $435373 +in.representative_income 435446 Representative total house income in the dwelling unit is $435446 +in.representative_income 435451 Representative total house income in the dwelling unit is $435451 +in.representative_income 435552 Representative total house income in the dwelling unit is $435552 +in.representative_income 435820 Representative total house income in the dwelling unit is $435820 +in.representative_income 435928 Representative total house income in the dwelling unit is $435928 +in.representative_income 435974 Representative total house income in the dwelling unit is $435974 +in.representative_income 436079 Representative total house income in the dwelling unit is $436079 +in.representative_income 436304 Representative total house income in the dwelling unit is $436304 +in.representative_income 436655 Representative total house income in the dwelling unit is $436655 +in.representative_income 436674 Representative total house income in the dwelling unit is $436674 +in.representative_income 436764 Representative total house income in the dwelling unit is $436764 +in.representative_income 437140 Representative total house income in the dwelling unit is $437140 +in.representative_income 437266 Representative total house income in the dwelling unit is $437266 +in.representative_income 437393 Representative total house income in the dwelling unit is $437393 +in.representative_income 437556 Representative total house income in the dwelling unit is $437556 +in.representative_income 437590 Representative total house income in the dwelling unit is $437590 +in.representative_income 437662 Representative total house income in the dwelling unit is $437662 +in.representative_income 437872 Representative total house income in the dwelling unit is $437872 +in.representative_income 437967 Representative total house income in the dwelling unit is $437967 +in.representative_income 437999 Representative total house income in the dwelling unit is $437999 +in.representative_income 438290 Representative total house income in the dwelling unit is $438290 +in.representative_income 438292 Representative total house income in the dwelling unit is $438292 +in.representative_income 438367 Representative total house income in the dwelling unit is $438367 +in.representative_income 438403 Representative total house income in the dwelling unit is $438403 +in.representative_income 438611 Representative total house income in the dwelling unit is $438611 +in.representative_income 438706 Representative total house income in the dwelling unit is $438706 +in.representative_income 438715 Representative total house income in the dwelling unit is $438715 +in.representative_income 438934 Representative total house income in the dwelling unit is $438934 +in.representative_income 439050 Representative total house income in the dwelling unit is $439050 +in.representative_income 439193 Representative total house income in the dwelling unit is $439193 +in.representative_income 439398 Representative total house income in the dwelling unit is $439398 +in.representative_income 439413 Representative total house income in the dwelling unit is $439413 +in.representative_income 439427 Representative total house income in the dwelling unit is $439427 +in.representative_income 439876 Representative total house income in the dwelling unit is $439876 +in.representative_income 439967 Representative total house income in the dwelling unit is $439967 +in.representative_income 440193 Representative total house income in the dwelling unit is $440193 +in.representative_income 440224 Representative total house income in the dwelling unit is $440224 +in.representative_income 440322 Representative total house income in the dwelling unit is $440322 +in.representative_income 440430 Representative total house income in the dwelling unit is $440430 +in.representative_income 440562 Representative total house income in the dwelling unit is $440562 +in.representative_income 440832 Representative total house income in the dwelling unit is $440832 +in.representative_income 440945 Representative total house income in the dwelling unit is $440945 +in.representative_income 441029 Representative total house income in the dwelling unit is $441029 +in.representative_income 441048 Representative total house income in the dwelling unit is $441048 +in.representative_income 441188 Representative total house income in the dwelling unit is $441188 +in.representative_income 441295 Representative total house income in the dwelling unit is $441295 +in.representative_income 441572 Representative total house income in the dwelling unit is $441572 +in.representative_income 441879 Representative total house income in the dwelling unit is $441879 +in.representative_income 441912 Representative total house income in the dwelling unit is $441912 +in.representative_income 442221 Representative total house income in the dwelling unit is $442221 +in.representative_income 442261 Representative total house income in the dwelling unit is $442261 +in.representative_income 442365 Representative total house income in the dwelling unit is $442365 +in.representative_income 442453 Representative total house income in the dwelling unit is $442453 +in.representative_income 442493 Representative total house income in the dwelling unit is $442493 +in.representative_income 442561 Representative total house income in the dwelling unit is $442561 +in.representative_income 442636 Representative total house income in the dwelling unit is $442636 +in.representative_income 442934 Representative total house income in the dwelling unit is $442934 +in.representative_income 442992 Representative total house income in the dwelling unit is $442992 +in.representative_income 443215 Representative total house income in the dwelling unit is $443215 +in.representative_income 443454 Representative total house income in the dwelling unit is $443454 +in.representative_income 443656 Representative total house income in the dwelling unit is $443656 +in.representative_income 443730 Representative total house income in the dwelling unit is $443730 +in.representative_income 443989 Representative total house income in the dwelling unit is $443989 +in.representative_income 444556 Representative total house income in the dwelling unit is $444556 +in.representative_income 445154 Representative total house income in the dwelling unit is $445154 +in.representative_income 445201 Representative total house income in the dwelling unit is $445201 +in.representative_income 445381 Representative total house income in the dwelling unit is $445381 +in.representative_income 445587 Representative total house income in the dwelling unit is $445587 +in.representative_income 445887 Representative total house income in the dwelling unit is $445887 +in.representative_income 446233 Representative total house income in the dwelling unit is $446233 +in.representative_income 446234 Representative total house income in the dwelling unit is $446234 +in.representative_income 447153 Representative total house income in the dwelling unit is $447153 +in.representative_income 447205 Representative total house income in the dwelling unit is $447205 +in.representative_income 447315 Representative total house income in the dwelling unit is $447315 +in.representative_income 447494 Representative total house income in the dwelling unit is $447494 +in.representative_income 447628 Representative total house income in the dwelling unit is $447628 +in.representative_income 447650 Representative total house income in the dwelling unit is $447650 +in.representative_income 448165 Representative total house income in the dwelling unit is $448165 +in.representative_income 448208 Representative total house income in the dwelling unit is $448208 +in.representative_income 448681 Representative total house income in the dwelling unit is $448681 +in.representative_income 448702 Representative total house income in the dwelling unit is $448702 +in.representative_income 448917 Representative total house income in the dwelling unit is $448917 +in.representative_income 449473 Representative total house income in the dwelling unit is $449473 +in.representative_income 449475 Representative total house income in the dwelling unit is $449475 +in.representative_income 449515 Representative total house income in the dwelling unit is $449515 +in.representative_income 449579 Representative total house income in the dwelling unit is $449579 +in.representative_income 449775 Representative total house income in the dwelling unit is $449775 +in.representative_income 449882 Representative total house income in the dwelling unit is $449882 +in.representative_income 450204 Representative total house income in the dwelling unit is $450204 +in.representative_income 450312 Representative total house income in the dwelling unit is $450312 +in.representative_income 450525 Representative total house income in the dwelling unit is $450525 +in.representative_income 450556 Representative total house income in the dwelling unit is $450556 +in.representative_income 450745 Representative total house income in the dwelling unit is $450745 +in.representative_income 450848 Representative total house income in the dwelling unit is $450848 +in.representative_income 450951 Representative total house income in the dwelling unit is $450951 +in.representative_income 451278 Representative total house income in the dwelling unit is $451278 +in.representative_income 451372 Representative total house income in the dwelling unit is $451372 +in.representative_income 451385 Representative total house income in the dwelling unit is $451385 +in.representative_income 451415 Representative total house income in the dwelling unit is $451415 +in.representative_income 451420 Representative total house income in the dwelling unit is $451420 +in.representative_income 451636 Representative total house income in the dwelling unit is $451636 +in.representative_income 451715 Representative total house income in the dwelling unit is $451715 +in.representative_income 451737 Representative total house income in the dwelling unit is $451737 +in.representative_income 451776 Representative total house income in the dwelling unit is $451776 +in.representative_income 451900 Representative total house income in the dwelling unit is $451900 +in.representative_income 451922 Representative total house income in the dwelling unit is $451922 +in.representative_income 452040 Representative total house income in the dwelling unit is $452040 +in.representative_income 452137 Representative total house income in the dwelling unit is $452137 +in.representative_income 452242 Representative total house income in the dwelling unit is $452242 +in.representative_income 452285 Representative total house income in the dwelling unit is $452285 +in.representative_income 452374 Representative total house income in the dwelling unit is $452374 +in.representative_income 452426 Representative total house income in the dwelling unit is $452426 +in.representative_income 452566 Representative total house income in the dwelling unit is $452566 +in.representative_income 452717 Representative total house income in the dwelling unit is $452717 +in.representative_income 452808 Representative total house income in the dwelling unit is $452808 +in.representative_income 452911 Representative total house income in the dwelling unit is $452911 +in.representative_income 452995 Representative total house income in the dwelling unit is $452995 +in.representative_income 453149 Representative total house income in the dwelling unit is $453149 +in.representative_income 453220 Representative total house income in the dwelling unit is $453220 +in.representative_income 453353 Representative total house income in the dwelling unit is $453353 +in.representative_income 453555 Representative total house income in the dwelling unit is $453555 +in.representative_income 453797 Representative total house income in the dwelling unit is $453797 +in.representative_income 453839 Representative total house income in the dwelling unit is $453839 +in.representative_income 453959 Representative total house income in the dwelling unit is $453959 +in.representative_income 454219 Representative total house income in the dwelling unit is $454219 +in.representative_income 454355 Representative total house income in the dwelling unit is $454355 +in.representative_income 454496 Representative total house income in the dwelling unit is $454496 +in.representative_income 454565 Representative total house income in the dwelling unit is $454565 +in.representative_income 454664 Representative total house income in the dwelling unit is $454664 +in.representative_income 454870 Representative total house income in the dwelling unit is $454870 +in.representative_income 455143 Representative total house income in the dwelling unit is $455143 +in.representative_income 455207 Representative total house income in the dwelling unit is $455207 +in.representative_income 455274 Representative total house income in the dwelling unit is $455274 +in.representative_income 455418 Representative total house income in the dwelling unit is $455418 +in.representative_income 455589 Representative total house income in the dwelling unit is $455589 +in.representative_income 455600 Representative total house income in the dwelling unit is $455600 +in.representative_income 455695 Representative total house income in the dwelling unit is $455695 +in.representative_income 455959 Representative total house income in the dwelling unit is $455959 +in.representative_income 456080 Representative total house income in the dwelling unit is $456080 +in.representative_income 456222 Representative total house income in the dwelling unit is $456222 +in.representative_income 456592 Representative total house income in the dwelling unit is $456592 +in.representative_income 457147 Representative total house income in the dwelling unit is $457147 +in.representative_income 457290 Representative total house income in the dwelling unit is $457290 +in.representative_income 457964 Representative total house income in the dwelling unit is $457964 +in.representative_income 458332 Representative total house income in the dwelling unit is $458332 +in.representative_income 458363 Representative total house income in the dwelling unit is $458363 +in.representative_income 458553 Representative total house income in the dwelling unit is $458553 +in.representative_income 458583 Representative total house income in the dwelling unit is $458583 +in.representative_income 458753 Representative total house income in the dwelling unit is $458753 +in.representative_income 458767 Representative total house income in the dwelling unit is $458767 +in.representative_income 458859 Representative total house income in the dwelling unit is $458859 +in.representative_income 458900 Representative total house income in the dwelling unit is $458900 +in.representative_income 459009 Representative total house income in the dwelling unit is $459009 +in.representative_income 459200 Representative total house income in the dwelling unit is $459200 +in.representative_income 459386 Representative total house income in the dwelling unit is $459386 +in.representative_income 459426 Representative total house income in the dwelling unit is $459426 +in.representative_income 459436 Representative total house income in the dwelling unit is $459436 +in.representative_income 459808 Representative total house income in the dwelling unit is $459808 +in.representative_income 459818 Representative total house income in the dwelling unit is $459818 +in.representative_income 460028 Representative total house income in the dwelling unit is $460028 +in.representative_income 460124 Representative total house income in the dwelling unit is $460124 +in.representative_income 460280 Representative total house income in the dwelling unit is $460280 +in.representative_income 460348 Representative total house income in the dwelling unit is $460348 +in.representative_income 460510 Representative total house income in the dwelling unit is $460510 +in.representative_income 460626 Representative total house income in the dwelling unit is $460626 +in.representative_income 460863 Representative total house income in the dwelling unit is $460863 +in.representative_income 460968 Representative total house income in the dwelling unit is $460968 +in.representative_income 460993 Representative total house income in the dwelling unit is $460993 +in.representative_income 461059 Representative total house income in the dwelling unit is $461059 +in.representative_income 461368 Representative total house income in the dwelling unit is $461368 +in.representative_income 461583 Representative total house income in the dwelling unit is $461583 +in.representative_income 461690 Representative total house income in the dwelling unit is $461690 +in.representative_income 461793 Representative total house income in the dwelling unit is $461793 +in.representative_income 461901 Representative total house income in the dwelling unit is $461901 +in.representative_income 462091 Representative total house income in the dwelling unit is $462091 +in.representative_income 462181 Representative total house income in the dwelling unit is $462181 +in.representative_income 462646 Representative total house income in the dwelling unit is $462646 +in.representative_income 462882 Representative total house income in the dwelling unit is $462882 +in.representative_income 462972 Representative total house income in the dwelling unit is $462972 +in.representative_income 463521 Representative total house income in the dwelling unit is $463521 +in.representative_income 463730 Representative total house income in the dwelling unit is $463730 +in.representative_income 463900 Representative total house income in the dwelling unit is $463900 +in.representative_income 464153 Representative total house income in the dwelling unit is $464153 +in.representative_income 464386 Representative total house income in the dwelling unit is $464386 +in.representative_income 464396 Representative total house income in the dwelling unit is $464396 +in.representative_income 464602 Representative total house income in the dwelling unit is $464602 +in.representative_income 464667 Representative total house income in the dwelling unit is $464667 +in.representative_income 464803 Representative total house income in the dwelling unit is $464803 +in.representative_income 464818 Representative total house income in the dwelling unit is $464818 +in.representative_income 464829 Representative total house income in the dwelling unit is $464829 +in.representative_income 465165 Representative total house income in the dwelling unit is $465165 +in.representative_income 465185 Representative total house income in the dwelling unit is $465185 +in.representative_income 465683 Representative total house income in the dwelling unit is $465683 +in.representative_income 465876 Representative total house income in the dwelling unit is $465876 +in.representative_income 466136 Representative total house income in the dwelling unit is $466136 +in.representative_income 466216 Representative total house income in the dwelling unit is $466216 +in.representative_income 466732 Representative total house income in the dwelling unit is $466732 +in.representative_income 466951 Representative total house income in the dwelling unit is $466951 +in.representative_income 466993 Representative total house income in the dwelling unit is $466993 +in.representative_income 467191 Representative total house income in the dwelling unit is $467191 +in.representative_income 467195 Representative total house income in the dwelling unit is $467195 +in.representative_income 467247 Representative total house income in the dwelling unit is $467247 +in.representative_income 467697 Representative total house income in the dwelling unit is $467697 +in.representative_income 468024 Representative total house income in the dwelling unit is $468024 +in.representative_income 468245 Representative total house income in the dwelling unit is $468245 +in.representative_income 468303 Representative total house income in the dwelling unit is $468303 +in.representative_income 468707 Representative total house income in the dwelling unit is $468707 +in.representative_income 468795 Representative total house income in the dwelling unit is $468795 +in.representative_income 469010 Representative total house income in the dwelling unit is $469010 +in.representative_income 469300 Representative total house income in the dwelling unit is $469300 +in.representative_income 469342 Representative total house income in the dwelling unit is $469342 +in.representative_income 469827 Representative total house income in the dwelling unit is $469827 +in.representative_income 470171 Representative total house income in the dwelling unit is $470171 +in.representative_income 470291 Representative total house income in the dwelling unit is $470291 +in.representative_income 470355 Representative total house income in the dwelling unit is $470355 +in.representative_income 470651 Representative total house income in the dwelling unit is $470651 +in.representative_income 470728 Representative total house income in the dwelling unit is $470728 +in.representative_income 471409 Representative total house income in the dwelling unit is $471409 +in.representative_income 471738 Representative total house income in the dwelling unit is $471738 +in.representative_income 471949 Representative total house income in the dwelling unit is $471949 +in.representative_income 472598 Representative total house income in the dwelling unit is $472598 +in.representative_income 472748 Representative total house income in the dwelling unit is $472748 +in.representative_income 473436 Representative total house income in the dwelling unit is $473436 +in.representative_income 473678 Representative total house income in the dwelling unit is $473678 +in.representative_income 473758 Representative total house income in the dwelling unit is $473758 +in.representative_income 473859 Representative total house income in the dwelling unit is $473859 +in.representative_income 474045 Representative total house income in the dwelling unit is $474045 +in.representative_income 474467 Representative total house income in the dwelling unit is $474467 +in.representative_income 474468 Representative total house income in the dwelling unit is $474468 +in.representative_income 474571 Representative total house income in the dwelling unit is $474571 +in.representative_income 474572 Representative total house income in the dwelling unit is $474572 +in.representative_income 475407 Representative total house income in the dwelling unit is $475407 +in.representative_income 475499 Representative total house income in the dwelling unit is $475499 +in.representative_income 475538 Representative total house income in the dwelling unit is $475538 +in.representative_income 475778 Representative total house income in the dwelling unit is $475778 +in.representative_income 476682 Representative total house income in the dwelling unit is $476682 +in.representative_income 476687 Representative total house income in the dwelling unit is $476687 +in.representative_income 476788 Representative total house income in the dwelling unit is $476788 +in.representative_income 477568 Representative total house income in the dwelling unit is $477568 +in.representative_income 477684 Representative total house income in the dwelling unit is $477684 +in.representative_income 478108 Representative total house income in the dwelling unit is $478108 +in.representative_income 478436 Representative total house income in the dwelling unit is $478436 +in.representative_income 478491 Representative total house income in the dwelling unit is $478491 +in.representative_income 478648 Representative total house income in the dwelling unit is $478648 +in.representative_income 478791 Representative total house income in the dwelling unit is $478791 +in.representative_income 478809 Representative total house income in the dwelling unit is $478809 +in.representative_income 479510 Representative total house income in the dwelling unit is $479510 +in.representative_income 479832 Representative total house income in the dwelling unit is $479832 +in.representative_income 479846 Representative total house income in the dwelling unit is $479846 +in.representative_income 480526 Representative total house income in the dwelling unit is $480526 +in.representative_income 480829 Representative total house income in the dwelling unit is $480829 +in.representative_income 481132 Representative total house income in the dwelling unit is $481132 +in.representative_income 481479 Representative total house income in the dwelling unit is $481479 +in.representative_income 481688 Representative total house income in the dwelling unit is $481688 +in.representative_income 481889 Representative total house income in the dwelling unit is $481889 +in.representative_income 481958 Representative total house income in the dwelling unit is $481958 +in.representative_income 481979 Representative total house income in the dwelling unit is $481979 +in.representative_income 482086 Representative total house income in the dwelling unit is $482086 +in.representative_income 482204 Representative total house income in the dwelling unit is $482204 +in.representative_income 482430 Representative total house income in the dwelling unit is $482430 +in.representative_income 482615 Representative total house income in the dwelling unit is $482615 +in.representative_income 482719 Representative total house income in the dwelling unit is $482719 +in.representative_income 483266 Representative total house income in the dwelling unit is $483266 +in.representative_income 483647 Representative total house income in the dwelling unit is $483647 +in.representative_income 483751 Representative total house income in the dwelling unit is $483751 +in.representative_income 483859 Representative total house income in the dwelling unit is $483859 +in.representative_income 484051 Representative total house income in the dwelling unit is $484051 +in.representative_income 484061 Representative total house income in the dwelling unit is $484061 +in.representative_income 484064 Representative total house income in the dwelling unit is $484064 +in.representative_income 484264 Representative total house income in the dwelling unit is $484264 +in.representative_income 484870 Representative total house income in the dwelling unit is $484870 +in.representative_income 484885 Representative total house income in the dwelling unit is $484885 +in.representative_income 485199 Representative total house income in the dwelling unit is $485199 +in.representative_income 485298 Representative total house income in the dwelling unit is $485298 +in.representative_income 485347 Representative total house income in the dwelling unit is $485347 +in.representative_income 485814 Representative total house income in the dwelling unit is $485814 +in.representative_income 486174 Representative total house income in the dwelling unit is $486174 +in.representative_income 486212 Representative total house income in the dwelling unit is $486212 +in.representative_income 486846 Representative total house income in the dwelling unit is $486846 +in.representative_income 487228 Representative total house income in the dwelling unit is $487228 +in.representative_income 487292 Representative total house income in the dwelling unit is $487292 +in.representative_income 487346 Representative total house income in the dwelling unit is $487346 +in.representative_income 487356 Representative total house income in the dwelling unit is $487356 +in.representative_income 487877 Representative total house income in the dwelling unit is $487877 +in.representative_income 487900 Representative total house income in the dwelling unit is $487900 +in.representative_income 487920 Representative total house income in the dwelling unit is $487920 +in.representative_income 487991 Representative total house income in the dwelling unit is $487991 +in.representative_income 488072 Representative total house income in the dwelling unit is $488072 +in.representative_income 488283 Representative total house income in the dwelling unit is $488283 +in.representative_income 488373 Representative total house income in the dwelling unit is $488373 +in.representative_income 488705 Representative total house income in the dwelling unit is $488705 +in.representative_income 488908 Representative total house income in the dwelling unit is $488908 +in.representative_income 489020 Representative total house income in the dwelling unit is $489020 +in.representative_income 489171 Representative total house income in the dwelling unit is $489171 +in.representative_income 489337 Representative total house income in the dwelling unit is $489337 +in.representative_income 490533 Representative total house income in the dwelling unit is $490533 +in.representative_income 490971 Representative total house income in the dwelling unit is $490971 +in.representative_income 491614 Representative total house income in the dwelling unit is $491614 +in.representative_income 491639 Representative total house income in the dwelling unit is $491639 +in.representative_income 492042 Representative total house income in the dwelling unit is $492042 +in.representative_income 492078 Representative total house income in the dwelling unit is $492078 +in.representative_income 492694 Representative total house income in the dwelling unit is $492694 +in.representative_income 493343 Representative total house income in the dwelling unit is $493343 +in.representative_income 493555 Representative total house income in the dwelling unit is $493555 +in.representative_income 493787 Representative total house income in the dwelling unit is $493787 +in.representative_income 493961 Representative total house income in the dwelling unit is $493961 +in.representative_income 494109 Representative total house income in the dwelling unit is $494109 +in.representative_income 494272 Representative total house income in the dwelling unit is $494272 +in.representative_income 494610 Representative total house income in the dwelling unit is $494610 +in.representative_income 494860 Representative total house income in the dwelling unit is $494860 +in.representative_income 494971 Representative total house income in the dwelling unit is $494971 +in.representative_income 495138 Representative total house income in the dwelling unit is $495138 +in.representative_income 496298 Representative total house income in the dwelling unit is $496298 +in.representative_income 496470 Representative total house income in the dwelling unit is $496470 +in.representative_income 496991 Representative total house income in the dwelling unit is $496991 +in.representative_income 497016 Representative total house income in the dwelling unit is $497016 +in.representative_income 497160 Representative total house income in the dwelling unit is $497160 +in.representative_income 497774 Representative total house income in the dwelling unit is $497774 +in.representative_income 498416 Representative total house income in the dwelling unit is $498416 +in.representative_income 499223 Representative total house income in the dwelling unit is $499223 +in.representative_income 499883 Representative total house income in the dwelling unit is $499883 +in.representative_income 500022 Representative total house income in the dwelling unit is $500022 +in.representative_income 500032 Representative total house income in the dwelling unit is $500032 +in.representative_income 500254 Representative total house income in the dwelling unit is $500254 +in.representative_income 500564 Representative total house income in the dwelling unit is $500564 +in.representative_income 500938 Representative total house income in the dwelling unit is $500938 +in.representative_income 501032 Representative total house income in the dwelling unit is $501032 +in.representative_income 501234 Representative total house income in the dwelling unit is $501234 +in.representative_income 501300 Representative total house income in the dwelling unit is $501300 +in.representative_income 501492 Representative total house income in the dwelling unit is $501492 +in.representative_income 501554 Representative total house income in the dwelling unit is $501554 +in.representative_income 502042 Representative total house income in the dwelling unit is $502042 +in.representative_income 502345 Representative total house income in the dwelling unit is $502345 +in.representative_income 503052 Representative total house income in the dwelling unit is $503052 +in.representative_income 503349 Representative total house income in the dwelling unit is $503349 +in.representative_income 503447 Representative total house income in the dwelling unit is $503447 +in.representative_income 503574 Representative total house income in the dwelling unit is $503574 +in.representative_income 503607 Representative total house income in the dwelling unit is $503607 +in.representative_income 504091 Representative total house income in the dwelling unit is $504091 +in.representative_income 504380 Representative total house income in the dwelling unit is $504380 +in.representative_income 504521 Representative total house income in the dwelling unit is $504521 +in.representative_income 504903 Representative total house income in the dwelling unit is $504903 +in.representative_income 505073 Representative total house income in the dwelling unit is $505073 +in.representative_income 505156 Representative total house income in the dwelling unit is $505156 +in.representative_income 505721 Representative total house income in the dwelling unit is $505721 +in.representative_income 505745 Representative total house income in the dwelling unit is $505745 +in.representative_income 506083 Representative total house income in the dwelling unit is $506083 +in.representative_income 506210 Representative total house income in the dwelling unit is $506210 +in.representative_income 507093 Representative total house income in the dwelling unit is $507093 +in.representative_income 507174 Representative total house income in the dwelling unit is $507174 +in.representative_income 507265 Representative total house income in the dwelling unit is $507265 +in.representative_income 507295 Representative total house income in the dwelling unit is $507295 +in.representative_income 507742 Representative total house income in the dwelling unit is $507742 +in.representative_income 508815 Representative total house income in the dwelling unit is $508815 +in.representative_income 509118 Representative total house income in the dwelling unit is $509118 +in.representative_income 509374 Representative total house income in the dwelling unit is $509374 +in.representative_income 510123 Representative total house income in the dwelling unit is $510123 +in.representative_income 510376 Representative total house income in the dwelling unit is $510376 +in.representative_income 510568 Representative total house income in the dwelling unit is $510568 +in.representative_income 510846 Representative total house income in the dwelling unit is $510846 +in.representative_income 511133 Representative total house income in the dwelling unit is $511133 +in.representative_income 511335 Representative total house income in the dwelling unit is $511335 +in.representative_income 511436 Representative total house income in the dwelling unit is $511436 +in.representative_income 511600 Representative total house income in the dwelling unit is $511600 +in.representative_income 511938 Representative total house income in the dwelling unit is $511938 +in.representative_income 513659 Representative total house income in the dwelling unit is $513659 +in.representative_income 514164 Representative total house income in the dwelling unit is $514164 +in.representative_income 514332 Representative total house income in the dwelling unit is $514332 +in.representative_income 514504 Representative total house income in the dwelling unit is $514504 +in.representative_income 514695 Representative total house income in the dwelling unit is $514695 +in.representative_income 515004 Representative total house income in the dwelling unit is $515004 +in.representative_income 515073 Representative total house income in the dwelling unit is $515073 +in.representative_income 515174 Representative total house income in the dwelling unit is $515174 +in.representative_income 515384 Representative total house income in the dwelling unit is $515384 +in.representative_income 515726 Representative total house income in the dwelling unit is $515726 +in.representative_income 516032 Representative total house income in the dwelling unit is $516032 +in.representative_income 516329 Representative total house income in the dwelling unit is $516329 +in.representative_income 517068 Representative total house income in the dwelling unit is $517068 +in.representative_income 517194 Representative total house income in the dwelling unit is $517194 +in.representative_income 517402 Representative total house income in the dwelling unit is $517402 +in.representative_income 517545 Representative total house income in the dwelling unit is $517545 +in.representative_income 517789 Representative total house income in the dwelling unit is $517789 +in.representative_income 518204 Representative total house income in the dwelling unit is $518204 +in.representative_income 518476 Representative total house income in the dwelling unit is $518476 +in.representative_income 518581 Representative total house income in the dwelling unit is $518581 +in.representative_income 518820 Representative total house income in the dwelling unit is $518820 +in.representative_income 518866 Representative total house income in the dwelling unit is $518866 +in.representative_income 519336 Representative total house income in the dwelling unit is $519336 +in.representative_income 519619 Representative total house income in the dwelling unit is $519619 +in.representative_income 519720 Representative total house income in the dwelling unit is $519720 +in.representative_income 519851 Representative total house income in the dwelling unit is $519851 +in.representative_income 519921 Representative total house income in the dwelling unit is $519921 +in.representative_income 520226 Representative total house income in the dwelling unit is $520226 +in.representative_income 520623 Representative total house income in the dwelling unit is $520623 +in.representative_income 520786 Representative total house income in the dwelling unit is $520786 +in.representative_income 521639 Representative total house income in the dwelling unit is $521639 +in.representative_income 521867 Representative total house income in the dwelling unit is $521867 +in.representative_income 521915 Representative total house income in the dwelling unit is $521915 +in.representative_income 522029 Representative total house income in the dwelling unit is $522029 +in.representative_income 522282 Representative total house income in the dwelling unit is $522282 +in.representative_income 523255 Representative total house income in the dwelling unit is $523255 +in.representative_income 523462 Representative total house income in the dwelling unit is $523462 +in.representative_income 523843 Representative total house income in the dwelling unit is $523843 +in.representative_income 524139 Representative total house income in the dwelling unit is $524139 +in.representative_income 524277 Representative total house income in the dwelling unit is $524277 +in.representative_income 524916 Representative total house income in the dwelling unit is $524916 +in.representative_income 525108 Representative total house income in the dwelling unit is $525108 +in.representative_income 525193 Representative total house income in the dwelling unit is $525193 +in.representative_income 525275 Representative total house income in the dwelling unit is $525275 +in.representative_income 526041 Representative total house income in the dwelling unit is $526041 +in.representative_income 526248 Representative total house income in the dwelling unit is $526248 +in.representative_income 526660 Representative total house income in the dwelling unit is $526660 +in.representative_income 527198 Representative total house income in the dwelling unit is $527198 +in.representative_income 527296 Representative total house income in the dwelling unit is $527296 +in.representative_income 527303 Representative total house income in the dwelling unit is $527303 +in.representative_income 527619 Representative total house income in the dwelling unit is $527619 +in.representative_income 527701 Representative total house income in the dwelling unit is $527701 +in.representative_income 528103 Representative total house income in the dwelling unit is $528103 +in.representative_income 528350 Representative total house income in the dwelling unit is $528350 +in.representative_income 528352 Representative total house income in the dwelling unit is $528352 +in.representative_income 528517 Representative total house income in the dwelling unit is $528517 +in.representative_income 528990 Representative total house income in the dwelling unit is $528990 +in.representative_income 529210 Representative total house income in the dwelling unit is $529210 +in.representative_income 530167 Representative total house income in the dwelling unit is $530167 +in.representative_income 530326 Representative total house income in the dwelling unit is $530326 +in.representative_income 531198 Representative total house income in the dwelling unit is $531198 +in.representative_income 531336 Representative total house income in the dwelling unit is $531336 +in.representative_income 531591 Representative total house income in the dwelling unit is $531591 +in.representative_income 531894 Representative total house income in the dwelling unit is $531894 +in.representative_income 531943 Representative total house income in the dwelling unit is $531943 +in.representative_income 532346 Representative total house income in the dwelling unit is $532346 +in.representative_income 532671 Representative total house income in the dwelling unit is $532671 +in.representative_income 532849 Representative total house income in the dwelling unit is $532849 +in.representative_income 532996 Representative total house income in the dwelling unit is $532996 +in.representative_income 533075 Representative total house income in the dwelling unit is $533075 +in.representative_income 533357 Representative total house income in the dwelling unit is $533357 +in.representative_income 533631 Representative total house income in the dwelling unit is $533631 +in.representative_income 533752 Representative total house income in the dwelling unit is $533752 +in.representative_income 533968 Representative total house income in the dwelling unit is $533968 +in.representative_income 534685 Representative total house income in the dwelling unit is $534685 +in.representative_income 535002 Representative total house income in the dwelling unit is $535002 +in.representative_income 535324 Representative total house income in the dwelling unit is $535324 +in.representative_income 535436 Representative total house income in the dwelling unit is $535436 +in.representative_income 535651 Representative total house income in the dwelling unit is $535651 +in.representative_income 536355 Representative total house income in the dwelling unit is $536355 +in.representative_income 536387 Representative total house income in the dwelling unit is $536387 +in.representative_income 537143 Representative total house income in the dwelling unit is $537143 +in.representative_income 537216 Representative total house income in the dwelling unit is $537216 +in.representative_income 538407 Representative total house income in the dwelling unit is $538407 +in.representative_income 538871 Representative total house income in the dwelling unit is $538871 +in.representative_income 539114 Representative total house income in the dwelling unit is $539114 +in.representative_income 539215 Representative total house income in the dwelling unit is $539215 +in.representative_income 539731 Representative total house income in the dwelling unit is $539731 +in.representative_income 541012 Representative total house income in the dwelling unit is $541012 +in.representative_income 541018 Representative total house income in the dwelling unit is $541018 +in.representative_income 541438 Representative total house income in the dwelling unit is $541438 +in.representative_income 541837 Representative total house income in the dwelling unit is $541837 +in.representative_income 542044 Representative total house income in the dwelling unit is $542044 +in.representative_income 542448 Representative total house income in the dwelling unit is $542448 +in.representative_income 542544 Representative total house income in the dwelling unit is $542544 +in.representative_income 542650 Representative total house income in the dwelling unit is $542650 +in.representative_income 543166 Representative total house income in the dwelling unit is $543166 +in.representative_income 543458 Representative total house income in the dwelling unit is $543458 +in.representative_income 543472 Representative total house income in the dwelling unit is $543472 +in.representative_income 543692 Representative total house income in the dwelling unit is $543692 +in.representative_income 545312 Representative total house income in the dwelling unit is $545312 +in.representative_income 545637 Representative total house income in the dwelling unit is $545637 +in.representative_income 545989 Representative total house income in the dwelling unit is $545989 +in.representative_income 547340 Representative total house income in the dwelling unit is $547340 +in.representative_income 547762 Representative total house income in the dwelling unit is $547762 +in.representative_income 548122 Representative total house income in the dwelling unit is $548122 +in.representative_income 548395 Representative total house income in the dwelling unit is $548395 +in.representative_income 548954 Representative total house income in the dwelling unit is $548954 +in.representative_income 549014 Representative total house income in the dwelling unit is $549014 +in.representative_income 549519 Representative total house income in the dwelling unit is $549519 +in.representative_income 549868 Representative total house income in the dwelling unit is $549868 +in.representative_income 551539 Representative total house income in the dwelling unit is $551539 +in.representative_income 552086 Representative total house income in the dwelling unit is $552086 +in.representative_income 552343 Representative total house income in the dwelling unit is $552343 +in.representative_income 552549 Representative total house income in the dwelling unit is $552549 +in.representative_income 552858 Representative total house income in the dwelling unit is $552858 +in.representative_income 553363 Representative total house income in the dwelling unit is $553363 +in.representative_income 553879 Representative total house income in the dwelling unit is $553879 +in.representative_income 553899 Representative total house income in the dwelling unit is $553899 +in.representative_income 554090 Representative total house income in the dwelling unit is $554090 +in.representative_income 554195 Representative total house income in the dwelling unit is $554195 +in.representative_income 554281 Representative total house income in the dwelling unit is $554281 +in.representative_income 556590 Representative total house income in the dwelling unit is $556590 +in.representative_income 557120 Representative total house income in the dwelling unit is $557120 +in.representative_income 557389 Representative total house income in the dwelling unit is $557389 +in.representative_income 557523 Representative total house income in the dwelling unit is $557523 +in.representative_income 557570 Representative total house income in the dwelling unit is $557570 +in.representative_income 557600 Representative total house income in the dwelling unit is $557600 +in.representative_income 557804 Representative total house income in the dwelling unit is $557804 +in.representative_income 558279 Representative total house income in the dwelling unit is $558279 +in.representative_income 558941 Representative total house income in the dwelling unit is $558941 +in.representative_income 559267 Representative total house income in the dwelling unit is $559267 +in.representative_income 559995 Representative total house income in the dwelling unit is $559995 +in.representative_income 560079 Representative total house income in the dwelling unit is $560079 +in.representative_income 560327 Representative total house income in the dwelling unit is $560327 +in.representative_income 560341 Representative total house income in the dwelling unit is $560341 +in.representative_income 560555 Representative total house income in the dwelling unit is $560555 +in.representative_income 560631 Representative total house income in the dwelling unit is $560631 +in.representative_income 560764 Representative total house income in the dwelling unit is $560764 +in.representative_income 560770 Representative total house income in the dwelling unit is $560770 +in.representative_income 560985 Representative total house income in the dwelling unit is $560985 +in.representative_income 561050 Representative total house income in the dwelling unit is $561050 +in.representative_income 561136 Representative total house income in the dwelling unit is $561136 +in.representative_income 561414 Representative total house income in the dwelling unit is $561414 +in.representative_income 562105 Representative total house income in the dwelling unit is $562105 +in.representative_income 562141 Representative total house income in the dwelling unit is $562141 +in.representative_income 562487 Representative total house income in the dwelling unit is $562487 +in.representative_income 564204 Representative total house income in the dwelling unit is $564204 +in.representative_income 564514 Representative total house income in the dwelling unit is $564514 +in.representative_income 564699 Representative total house income in the dwelling unit is $564699 +in.representative_income 564869 Representative total house income in the dwelling unit is $564869 +in.representative_income 566268 Representative total house income in the dwelling unit is $566268 +in.representative_income 566641 Representative total house income in the dwelling unit is $566641 +in.representative_income 566781 Representative total house income in the dwelling unit is $566781 +in.representative_income 567299 Representative total house income in the dwelling unit is $567299 +in.representative_income 567378 Representative total house income in the dwelling unit is $567378 +in.representative_income 567787 Representative total house income in the dwelling unit is $567787 +in.representative_income 568855 Representative total house income in the dwelling unit is $568855 +in.representative_income 570227 Representative total house income in the dwelling unit is $570227 +in.representative_income 570393 Representative total house income in the dwelling unit is $570393 +in.representative_income 570617 Representative total house income in the dwelling unit is $570617 +in.representative_income 571742 Representative total house income in the dwelling unit is $571742 +in.representative_income 572149 Representative total house income in the dwelling unit is $572149 +in.representative_income 572456 Representative total house income in the dwelling unit is $572456 +in.representative_income 572649 Representative total house income in the dwelling unit is $572649 +in.representative_income 573488 Representative total house income in the dwelling unit is $573488 +in.representative_income 573705 Representative total house income in the dwelling unit is $573705 +in.representative_income 576793 Representative total house income in the dwelling unit is $576793 +in.representative_income 576869 Representative total house income in the dwelling unit is $576869 +in.representative_income 576970 Representative total house income in the dwelling unit is $576970 +in.representative_income 577515 Representative total house income in the dwelling unit is $577515 +in.representative_income 578955 Representative total house income in the dwelling unit is $578955 +in.representative_income 579217 Representative total house income in the dwelling unit is $579217 +in.representative_income 579400 Representative total house income in the dwelling unit is $579400 +in.representative_income 579662 Representative total house income in the dwelling unit is $579662 +in.representative_income 579823 Representative total house income in the dwelling unit is $579823 +in.representative_income 581826 Representative total house income in the dwelling unit is $581826 +in.representative_income 582771 Representative total house income in the dwelling unit is $582771 +in.representative_income 582883 Representative total house income in the dwelling unit is $582883 +in.representative_income 583197 Representative total house income in the dwelling unit is $583197 +in.representative_income 583957 Representative total house income in the dwelling unit is $583957 +in.representative_income 584534 Representative total house income in the dwelling unit is $584534 +in.representative_income 584601 Representative total house income in the dwelling unit is $584601 +in.representative_income 585307 Representative total house income in the dwelling unit is $585307 +in.representative_income 586695 Representative total house income in the dwelling unit is $586695 +in.representative_income 587928 Representative total house income in the dwelling unit is $587928 +in.representative_income 588470 Representative total house income in the dwelling unit is $588470 +in.representative_income 588959 Representative total house income in the dwelling unit is $588959 +in.representative_income 590010 Representative total house income in the dwelling unit is $590010 +in.representative_income 590157 Representative total house income in the dwelling unit is $590157 +in.representative_income 590397 Representative total house income in the dwelling unit is $590397 +in.representative_income 591023 Representative total house income in the dwelling unit is $591023 +in.representative_income 591470 Representative total house income in the dwelling unit is $591470 +in.representative_income 592745 Representative total house income in the dwelling unit is $592745 +in.representative_income 593638 Representative total house income in the dwelling unit is $593638 +in.representative_income 594975 Representative total house income in the dwelling unit is $594975 +in.representative_income 595765 Representative total house income in the dwelling unit is $595765 +in.representative_income 596907 Representative total house income in the dwelling unit is $596907 +in.representative_income 597005 Representative total house income in the dwelling unit is $597005 +in.representative_income 597267 Representative total house income in the dwelling unit is $597267 +in.representative_income 599121 Representative total house income in the dwelling unit is $599121 +in.representative_income 599200 Representative total house income in the dwelling unit is $599200 +in.representative_income 599274 Representative total house income in the dwelling unit is $599274 +in.representative_income 599333 Representative total house income in the dwelling unit is $599333 +in.representative_income 600026 Representative total house income in the dwelling unit is $600026 +in.representative_income 600595 Representative total house income in the dwelling unit is $600595 +in.representative_income 602046 Representative total house income in the dwelling unit is $602046 +in.representative_income 602902 Representative total house income in the dwelling unit is $602902 +in.representative_income 604431 Representative total house income in the dwelling unit is $604431 +in.representative_income 606804 Representative total house income in the dwelling unit is $606804 +in.representative_income 607097 Representative total house income in the dwelling unit is $607097 +in.representative_income 608412 Representative total house income in the dwelling unit is $608412 +in.representative_income 608557 Representative total house income in the dwelling unit is $608557 +in.representative_income 609754 Representative total house income in the dwelling unit is $609754 +in.representative_income 610633 Representative total house income in the dwelling unit is $610633 +in.representative_income 611671 Representative total house income in the dwelling unit is $611671 +in.representative_income 612148 Representative total house income in the dwelling unit is $612148 +in.representative_income 614835 Representative total house income in the dwelling unit is $614835 +in.representative_income 615178 Representative total house income in the dwelling unit is $615178 +in.representative_income 616948 Representative total house income in the dwelling unit is $616948 +in.representative_income 617634 Representative total house income in the dwelling unit is $617634 +in.representative_income 617840 Representative total house income in the dwelling unit is $617840 +in.representative_income 620109 Representative total house income in the dwelling unit is $620109 +in.representative_income 620561 Representative total house income in the dwelling unit is $620561 +in.representative_income 621487 Representative total house income in the dwelling unit is $621487 +in.representative_income 622213 Representative total house income in the dwelling unit is $622213 +in.representative_income 623431 Representative total house income in the dwelling unit is $623431 +in.representative_income 625821 Representative total house income in the dwelling unit is $625821 +in.representative_income 626221 Representative total house income in the dwelling unit is $626221 +in.representative_income 626688 Representative total house income in the dwelling unit is $626688 +in.representative_income 626894 Representative total house income in the dwelling unit is $626894 +in.representative_income 627490 Representative total house income in the dwelling unit is $627490 +in.representative_income 629041 Representative total house income in the dwelling unit is $629041 +in.representative_income 629600 Representative total house income in the dwelling unit is $629600 +in.representative_income 630424 Representative total house income in the dwelling unit is $630424 +in.representative_income 632351 Representative total house income in the dwelling unit is $632351 +in.representative_income 633155 Representative total house income in the dwelling unit is $633155 +in.representative_income 634019 Representative total house income in the dwelling unit is $634019 +in.representative_income 634371 Representative total house income in the dwelling unit is $634371 +in.representative_income 635928 Representative total house income in the dwelling unit is $635928 +in.representative_income 635965 Representative total house income in the dwelling unit is $635965 +in.representative_income 636829 Representative total house income in the dwelling unit is $636829 +in.representative_income 637402 Representative total house income in the dwelling unit is $637402 +in.representative_income 637438 Representative total house income in the dwelling unit is $637438 +in.representative_income 638412 Representative total house income in the dwelling unit is $638412 +in.representative_income 642555 Representative total house income in the dwelling unit is $642555 +in.representative_income 642654 Representative total house income in the dwelling unit is $642654 +in.representative_income 645143 Representative total house income in the dwelling unit is $645143 +in.representative_income 645281 Representative total house income in the dwelling unit is $645281 +in.representative_income 645483 Representative total house income in the dwelling unit is $645483 +in.representative_income 646149 Representative total house income in the dwelling unit is $646149 +in.representative_income 646650 Representative total house income in the dwelling unit is $646650 +in.representative_income 649578 Representative total house income in the dwelling unit is $649578 +in.representative_income 650533 Representative total house income in the dwelling unit is $650533 +in.representative_income 653194 Representative total house income in the dwelling unit is $653194 +in.representative_income 653564 Representative total house income in the dwelling unit is $653564 +in.representative_income 655877 Representative total house income in the dwelling unit is $655877 +in.representative_income 659625 Representative total house income in the dwelling unit is $659625 +in.representative_income 660171 Representative total house income in the dwelling unit is $660171 +in.representative_income 661264 Representative total house income in the dwelling unit is $661264 +in.representative_income 662292 Representative total house income in the dwelling unit is $662292 +in.representative_income 662328 Representative total house income in the dwelling unit is $662328 +in.representative_income 663665 Representative total house income in the dwelling unit is $663665 +in.representative_income 667946 Representative total house income in the dwelling unit is $667946 +in.representative_income 667968 Representative total house income in the dwelling unit is $667968 +in.representative_income 669832 Representative total house income in the dwelling unit is $669832 +in.representative_income 670972 Representative total house income in the dwelling unit is $670972 +in.representative_income 671241 Representative total house income in the dwelling unit is $671241 +in.representative_income 671512 Representative total house income in the dwelling unit is $671512 +in.representative_income 671746 Representative total house income in the dwelling unit is $671746 +in.representative_income 672757 Representative total house income in the dwelling unit is $672757 +in.representative_income 672816 Representative total house income in the dwelling unit is $672816 +in.representative_income 672838 Representative total house income in the dwelling unit is $672838 +in.representative_income 673868 Representative total house income in the dwelling unit is $673868 +in.representative_income 674737 Representative total house income in the dwelling unit is $674737 +in.representative_income 677807 Representative total house income in the dwelling unit is $677807 +in.representative_income 678428 Representative total house income in the dwelling unit is $678428 +in.representative_income 680759 Representative total house income in the dwelling unit is $680759 +in.representative_income 681344 Representative total house income in the dwelling unit is $681344 +in.representative_income 682858 Representative total house income in the dwelling unit is $682858 +in.representative_income 683853 Representative total house income in the dwelling unit is $683853 +in.representative_income 685915 Representative total house income in the dwelling unit is $685915 +in.representative_income 686899 Representative total house income in the dwelling unit is $686899 +in.representative_income 687909 Representative total house income in the dwelling unit is $687909 +in.representative_income 688081 Representative total house income in the dwelling unit is $688081 +in.representative_income 689010 Representative total house income in the dwelling unit is $689010 +in.representative_income 689369 Representative total house income in the dwelling unit is $689369 +in.representative_income 692911 Representative total house income in the dwelling unit is $692911 +in.representative_income 692960 Representative total house income in the dwelling unit is $692960 +in.representative_income 693719 Representative total house income in the dwelling unit is $693719 +in.representative_income 693984 Representative total house income in the dwelling unit is $693984 +in.representative_income 694521 Representative total house income in the dwelling unit is $694521 +in.representative_income 695198 Representative total house income in the dwelling unit is $695198 +in.representative_income 699266 Representative total house income in the dwelling unit is $699266 +in.representative_income 700259 Representative total house income in the dwelling unit is $700259 +in.representative_income 701387 Representative total house income in the dwelling unit is $701387 +in.representative_income 702859 Representative total house income in the dwelling unit is $702859 +in.representative_income 703386 Representative total house income in the dwelling unit is $703386 +in.representative_income 703553 Representative total house income in the dwelling unit is $703553 +in.representative_income 705514 Representative total house income in the dwelling unit is $705514 +in.representative_income 705547 Representative total house income in the dwelling unit is $705547 +in.representative_income 707640 Representative total house income in the dwelling unit is $707640 +in.representative_income 708062 Representative total house income in the dwelling unit is $708062 +in.representative_income 709228 Representative total house income in the dwelling unit is $709228 +in.representative_income 711647 Representative total house income in the dwelling unit is $711647 +in.representative_income 712030 Representative total house income in the dwelling unit is $712030 +in.representative_income 712253 Representative total house income in the dwelling unit is $712253 +in.representative_income 712455 Representative total house income in the dwelling unit is $712455 +in.representative_income 713218 Representative total house income in the dwelling unit is $713218 +in.representative_income 715183 Representative total house income in the dwelling unit is $715183 +in.representative_income 721244 Representative total house income in the dwelling unit is $721244 +in.representative_income 721969 Representative total house income in the dwelling unit is $721969 +in.representative_income 724578 Representative total house income in the dwelling unit is $724578 +in.representative_income 725284 Representative total house income in the dwelling unit is $725284 +in.representative_income 725780 Representative total house income in the dwelling unit is $725780 +in.representative_income 731019 Representative total house income in the dwelling unit is $731019 +in.representative_income 732355 Representative total house income in the dwelling unit is $732355 +in.representative_income 733639 Representative total house income in the dwelling unit is $733639 +in.representative_income 734132 Representative total house income in the dwelling unit is $734132 +in.representative_income 740333 Representative total house income in the dwelling unit is $740333 +in.representative_income 743058 Representative total house income in the dwelling unit is $743058 +in.representative_income 743972 Representative total house income in the dwelling unit is $743972 +in.representative_income 752547 Representative total house income in the dwelling unit is $752547 +in.representative_income 752989 Representative total house income in the dwelling unit is $752989 +in.representative_income 757409 Representative total house income in the dwelling unit is $757409 +in.representative_income 759629 Representative total house income in the dwelling unit is $759629 +in.representative_income 759974 Representative total house income in the dwelling unit is $759974 +in.representative_income 760593 Representative total house income in the dwelling unit is $760593 +in.representative_income 761637 Representative total house income in the dwelling unit is $761637 +in.representative_income 763274 Representative total house income in the dwelling unit is $763274 +in.representative_income 769230 Representative total house income in the dwelling unit is $769230 +in.representative_income 771751 Representative total house income in the dwelling unit is $771751 +in.representative_income 775777 Representative total house income in the dwelling unit is $775777 +in.representative_income 776802 Representative total house income in the dwelling unit is $776802 +in.representative_income 777812 Representative total house income in the dwelling unit is $777812 +in.representative_income 778299 Representative total house income in the dwelling unit is $778299 +in.representative_income 785502 Representative total house income in the dwelling unit is $785502 +in.representative_income 787760 Representative total house income in the dwelling unit is $787760 +in.representative_income 788959 Representative total house income in the dwelling unit is $788959 +in.representative_income 792964 Representative total house income in the dwelling unit is $792964 +in.representative_income 796802 Representative total house income in the dwelling unit is $796802 +in.representative_income 797062 Representative total house income in the dwelling unit is $797062 +in.representative_income 798337 Representative total house income in the dwelling unit is $798337 +in.representative_income 804120 Representative total house income in the dwelling unit is $804120 +in.representative_income 806160 Representative total house income in the dwelling unit is $806160 +in.representative_income 812514 Representative total house income in the dwelling unit is $812514 +in.representative_income 812681 Representative total house income in the dwelling unit is $812681 +in.representative_income 821551 Representative total house income in the dwelling unit is $821551 +in.representative_income 838012 Representative total house income in the dwelling unit is $838012 +in.representative_income 842658 Representative total house income in the dwelling unit is $842658 +in.representative_income 844820 Representative total house income in the dwelling unit is $844820 +in.representative_income 849916 Representative total house income in the dwelling unit is $849916 +in.representative_income 870030 Representative total house income in the dwelling unit is $870030 +in.representative_income 880174 Representative total house income in the dwelling unit is $880174 +in.representative_income 885986 Representative total house income in the dwelling unit is $885986 +in.representative_income 898395 Representative total house income in the dwelling unit is $898395 +in.representative_income 910125 Representative total house income in the dwelling unit is $910125 +in.representative_income 922093 Representative total house income in the dwelling unit is $922093 +in.representative_income 937415 Representative total house income in the dwelling unit is $937415 +in.representative_income 945842 Representative total house income in the dwelling unit is $945842 +in.representative_income 980808 Representative total house income in the dwelling unit is $980808 +in.representative_income 988326 Representative total house income in the dwelling unit is $988326 +in.representative_income 1004749 Representative total house income in the dwelling unit is $1004749 +in.representative_income 1009135 Representative total house income in the dwelling unit is $1009135 +in.representative_income 1023201 Representative total house income in the dwelling unit is $1023201 +in.representative_income 1032484 Representative total house income in the dwelling unit is $1032484 +in.representative_income 1035234 Representative total house income in the dwelling unit is $1035234 +in.representative_income 1066686 Representative total house income in the dwelling unit is $1066686 +in.representative_income 1096007 Representative total house income in the dwelling unit is $1096007 +in.representative_income 1114719 Representative total house income in the dwelling unit is $1114719 +in.representative_income 1165541 Representative total house income in the dwelling unit is $1165541 +in.representative_income 1216289 Representative total house income in the dwelling unit is $1216289 +in.representative_income 1278844 Representative total house income in the dwelling unit is $1278844 +in.representative_income 1328393 Representative total house income in the dwelling unit is $1328393 +in.representative_income 1648476 Representative total house income in the dwelling unit is $1648476 +in.representative_income 1771970 Representative total house income in the dwelling unit is $1771970 +in.representative_income None No information on the representative total house income in the dwelling unit +in.roof_material "Asphalt Shingles, Medium" Medium colored asphalt shingle roof +in.roof_material Composition Shingles Composition shingle roof +in.roof_material "Metal, Dark" Dark colored metal roof +in.roof_material Slate Slate roof +in.roof_material "Tile, Clay or Ceramic" Clay or ceramic tile roof +in.roof_material "Tile, Concrete" Concrete tile roof +in.roof_material Wood Shingles Wood shingle roof +in.simulation_control_run_period_begin_day_of_month 1 Starting day of month for simulation is 1 +in.simulation_control_run_period_begin_month 1 Starting month for simulation is January +in.simulation_control_run_period_calendar_year 2018 Calendar year for simulation is 2018 +in.simulation_control_run_period_end_day_of_month 31 Last day of month of simulation is 31 +in.simulation_control_run_period_end_month 12 Last month of simulation is December +in.simulation_control_timestep 15 Timestep for each simulation of each building is 15 minutes +in.sqft..ft2 273 finished foor area of the housing unit is 273 ft2 +in.sqft..ft2 298 finished foor area of the housing unit is 298 ft2 +in.sqft..ft2 322 finished foor area of the housing unit is 322 ft2 +in.sqft..ft2 623 finished foor area of the housing unit is 623 ft2 +in.sqft..ft2 625 finished foor area of the housing unit is 625 ft2 +in.sqft..ft2 634 finished foor area of the housing unit is 634 ft2 +in.sqft..ft2 854 finished foor area of the housing unit is 854 ft2 +in.sqft..ft2 872 finished foor area of the housing unit is 872 ft2 +in.sqft..ft2 881 finished foor area of the housing unit is 881 ft2 +in.sqft..ft2 1138 finished foor area of the housing unit is 1138 ft2 +in.sqft..ft2 1207 finished foor area of the housing unit is 1207 ft2 +in.sqft..ft2 1228 finished foor area of the housing unit is 1228 ft2 +in.sqft..ft2 1678 finished foor area of the housing unit is 1678 ft2 +in.sqft..ft2 1682 finished foor area of the housing unit is 1682 ft2 +in.sqft..ft2 1698 finished foor area of the housing unit is 1698 ft2 +in.sqft..ft2 2115 finished foor area of the housing unit is 2115 ft2 +in.sqft..ft2 2152 finished foor area of the housing unit is 2152 ft2 +in.sqft..ft2 2179 finished foor area of the housing unit is 2179 ft2 +in.sqft..ft2 2648 finished foor area of the housing unit is 2648 ft2 +in.sqft..ft2 2663 finished foor area of the housing unit is 2663 ft2 +in.sqft..ft2 2678 finished foor area of the housing unit is 2678 ft2 +in.sqft..ft2 3171 finished foor area of the housing unit is 3171 ft2 +in.sqft..ft2 3228 finished foor area of the housing unit is 3228 ft2 +in.sqft..ft2 3310 finished foor area of the housing unit is 3310 ft2 +in.sqft..ft2 5587 finished foor area of the housing unit is 5587 ft2 +in.sqft..ft2 6348 finished foor area of the housing unit is 6348 ft2 +in.sqft..ft2 7414 finished foor area of the housing unit is 7414 ft2 +in.state AK The dwelling unit is in AK +in.state AL The dwelling unit is in AL +in.state AR The dwelling unit is in AR +in.state AZ The dwelling unit is in AZ +in.state CA The dwelling unit is in CA +in.state CO The dwelling unit is in CO +in.state CT The dwelling unit is in CT +in.state DC The dwelling unit is in DC +in.state DE The dwelling unit is in DE +in.state FL The dwelling unit is in FL +in.state GA The dwelling unit is in GA +in.state HI The dwelling unit is in HI +in.state IA The dwelling unit is in IA +in.state ID The dwelling unit is in ID +in.state IL The dwelling unit is in IL +in.state IN The dwelling unit is in IN +in.state KS The dwelling unit is in KS +in.state KY The dwelling unit is in KY +in.state LA The dwelling unit is in LA +in.state MA The dwelling unit is in MA +in.state MD The dwelling unit is in MD +in.state ME The dwelling unit is in ME +in.state MI The dwelling unit is in MI +in.state MN The dwelling unit is in MN +in.state MO The dwelling unit is in MO +in.state MS The dwelling unit is in MS +in.state MT The dwelling unit is in MT +in.state NC The dwelling unit is in NC +in.state ND The dwelling unit is in ND +in.state NE The dwelling unit is in NE +in.state NH The dwelling unit is in NH +in.state NJ The dwelling unit is in NJ +in.state NM The dwelling unit is in NM +in.state NV The dwelling unit is in NV +in.state NY The dwelling unit is in NY +in.state OH The dwelling unit is in OH +in.state OK The dwelling unit is in OK +in.state OR The dwelling unit is in OR +in.state PA The dwelling unit is in PA +in.state RI The dwelling unit is in RI +in.state SC The dwelling unit is in SC +in.state SD The dwelling unit is in SD +in.state TN The dwelling unit is in TN +in.state TX The dwelling unit is in TX +in.state UT The dwelling unit is in UT +in.state VA The dwelling unit is in VA +in.state VT The dwelling unit is in VT +in.state WA The dwelling unit is in WA +in.state WI The dwelling unit is in WI +in.state WV The dwelling unit is in WV +in.state WY The dwelling unit is in WY +in.state_metro_median_income 0-30% The household occupying the dwelling unit has a state metro median income of 0-30% +in.state_metro_median_income 100-120% The household occupying the dwelling unit has a state metro median income of 100-120% +in.state_metro_median_income 120-150% The household occupying the dwelling unit has a state metro median income of 120-150% +in.state_metro_median_income 150%+ The household occupying the dwelling unit has a state metro median income of 150%+ +in.state_metro_median_income 30-60% The household occupying the dwelling unit has a state metro median income of 30-60% +in.state_metro_median_income 60-80% The household occupying the dwelling unit has a state metro median income of 60-80% +in.state_metro_median_income 80-100% The household occupying the dwelling unit has a state metro median income of 80-100% +in.state_metro_median_income Not Available The state metro median income of the household occupying the dwelling unit is not available +in.tenure Not Available Data on whether the dwelling unit is owned by occupant(s) are not available +in.tenure Owner Dwelling unit is owned by occupant(s) +in.tenure Renter Dwelling unit is rented by occupant(s) +in.units_represented 1 Model represents a single housing unit +in.upgrade_name Air Sealing with Drill and Fill Wall Insulation The dwelling unit received an Air Sealing with Drill and Fill Wall Insulation upgrade +in.upgrade_name "Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation" "The dwelling unit received an Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation upgrade" +in.upgrade_name "Air Sealing, Attic Floor Insulation, and Duct sealing" "The dwelling unit received an Air Sealing, Attic Floor Insulation, and Duct sealing upgrade" +in.upgrade_name Attic Floor Insulation for Unfinished Attics The dwelling unit received an Attic Floor Insulation for Unfinished Attics upgrade +in.upgrade_name Baseline The dwelling unit did not receive any upgrade +in.upgrade_name Drill and Fill Wall Insulation with Air Sealing The dwelling unit received an Drill and Fill Wall Insulation with Air Sealing upgrade +in.upgrade_name Dual Fuel Heat Pump System The dwelling unit received an Dual Fuel Heat Pump System upgrade +in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade +in.upgrade_name "Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing" "The dwelling unit received an Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing upgrade" +in.upgrade_name Duct Sealing and Insulation The dwelling unit received an Duct Sealing and Insulation upgrade +in.upgrade_name ENERGY STAR Windows The dwelling unit received an ENERGY STAR Windows upgrade +in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging The dwelling unit received an Efficient Electric Vehicle Adoption with Level 2 Charging upgrade +in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility The dwelling unit received an Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility upgrade +in.upgrade_name Electric Vehicle Adoption with Level 1 Charging The dwelling unit received an Electric Vehicle Adoption with Level 1 Charging upgrade +in.upgrade_name Electric Vehicle Adoption with Level 2 Charging The dwelling unit received an Electric Vehicle Adoption with Level 2 Charging upgrade +in.upgrade_name Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility The dwelling unit received an Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility upgrade +in.upgrade_name "HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset" "The dwelling unit received an HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset upgrade" +in.upgrade_name "HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset" "The dwelling unit received an HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset upgrade" +in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration upgrade" +in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration upgrade" +in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration upgrade" +in.upgrade_name Heat Pump Water Heater The dwelling unit received an Heat Pump Water Heater upgrade +in.upgrade_name High Efficiency Natural Gas Tankless Water Heater The dwelling unit received an High Efficiency Natural Gas Tankless Water Heater upgrade +in.upgrade_name Minimum Efficiency Furnaces and Air Conditioners Circa 2025 The dwelling unit received an Minimum Efficiency Furnaces and Air Conditioners Circa 2025 upgrade +in.upgrade_name Natural Gas Furnace 95% AFUE for All Dwellings with Ducts The dwelling unit received an Natural Gas Furnace 95% AFUE for All Dwellings with Ducts upgrade +in.upgrade_name Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE The dwelling unit received an Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE upgrade +in.upgrade_name Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade +in.upgrade_name Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 The dwelling unit received an Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 upgrade +in.upgrade_name Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade +in.usage_level High Usage of major appliances is higher than the national average +in.usage_level Low Usage of major appliances is lower than the national average +in.usage_level Medium Usage of major appliances is equal to the national average +in.utility_bill_electricity_fixed_charges 13.8 Electricity utility bill monthly fixed charge is $13.8 +in.utility_bill_electricity_marginal_rates 0.093792718 Electricity utility bill marginal rate is $0.093792718 per kWh +in.utility_bill_electricity_marginal_rates 0.095708797 Electricity utility bill marginal rate is $0.095708797 per kWh +in.utility_bill_electricity_marginal_rates 0.09623518 Electricity utility bill marginal rate is $0.09623518 per kWh +in.utility_bill_electricity_marginal_rates 0.097183641 Electricity utility bill marginal rate is $0.097183641 per kWh +in.utility_bill_electricity_marginal_rates 0.098152001 Electricity utility bill marginal rate is $0.098152001 per kWh +in.utility_bill_electricity_marginal_rates 0.098685549 Electricity utility bill marginal rate is $0.098685549 per kWh +in.utility_bill_electricity_marginal_rates 0.104342732 Electricity utility bill marginal rate is $0.104342732 per kWh +in.utility_bill_electricity_marginal_rates 0.10788677 Electricity utility bill marginal rate is $0.10788677 per kWh +in.utility_bill_electricity_marginal_rates 0.109361977 Electricity utility bill marginal rate is $0.109361977 per kWh +in.utility_bill_electricity_marginal_rates 0.109475659 Electricity utility bill marginal rate is $0.109475659 per kWh +in.utility_bill_electricity_marginal_rates 0.109586156 Electricity utility bill marginal rate is $0.109586156 per kWh +in.utility_bill_electricity_marginal_rates 0.109780313 Electricity utility bill marginal rate is $0.109780313 per kWh +in.utility_bill_electricity_marginal_rates 0.112014549 Electricity utility bill marginal rate is $0.112014549 per kWh +in.utility_bill_electricity_marginal_rates 0.112391066 Electricity utility bill marginal rate is $0.112391066 per kWh +in.utility_bill_electricity_marginal_rates 0.11263658 Electricity utility bill marginal rate is $0.11263658 per kWh +in.utility_bill_electricity_marginal_rates 0.115311516 Electricity utility bill marginal rate is $0.115311516 per kWh +in.utility_bill_electricity_marginal_rates 0.116761718 Electricity utility bill marginal rate is $0.116761718 per kWh +in.utility_bill_electricity_marginal_rates 0.117508163 Electricity utility bill marginal rate is $0.117508163 per kWh +in.utility_bill_electricity_marginal_rates 0.118167966 Electricity utility bill marginal rate is $0.118167966 per kWh +in.utility_bill_electricity_marginal_rates 0.120336179 Electricity utility bill marginal rate is $0.120336179 per kWh +in.utility_bill_electricity_marginal_rates 0.12212382 Electricity utility bill marginal rate is $0.12212382 per kWh +in.utility_bill_electricity_marginal_rates 0.123340947 Electricity utility bill marginal rate is $0.123340947 per kWh +in.utility_bill_electricity_marginal_rates 0.123565513 Electricity utility bill marginal rate is $0.123565513 per kWh +in.utility_bill_electricity_marginal_rates 0.126507786 Electricity utility bill marginal rate is $0.126507786 per kWh +in.utility_bill_electricity_marginal_rates 0.127150707 Electricity utility bill marginal rate is $0.127150707 per kWh +in.utility_bill_electricity_marginal_rates 0.128706431 Electricity utility bill marginal rate is $0.128706431 per kWh +in.utility_bill_electricity_marginal_rates 0.128973847 Electricity utility bill marginal rate is $0.128973847 per kWh +in.utility_bill_electricity_marginal_rates 0.132607564 Electricity utility bill marginal rate is $0.132607564 per kWh +in.utility_bill_electricity_marginal_rates 0.133635546 Electricity utility bill marginal rate is $0.133635546 per kWh +in.utility_bill_electricity_marginal_rates 0.133848087 Electricity utility bill marginal rate is $0.133848087 per kWh +in.utility_bill_electricity_marginal_rates 0.136443929 Electricity utility bill marginal rate is $0.136443929 per kWh +in.utility_bill_electricity_marginal_rates 0.136793145 Electricity utility bill marginal rate is $0.136793145 per kWh +in.utility_bill_electricity_marginal_rates 0.139605448 Electricity utility bill marginal rate is $0.139605448 per kWh +in.utility_bill_electricity_marginal_rates 0.141584464 Electricity utility bill marginal rate is $0.141584464 per kWh +in.utility_bill_electricity_marginal_rates 0.142604109 Electricity utility bill marginal rate is $0.142604109 per kWh +in.utility_bill_electricity_marginal_rates 0.147789041 Electricity utility bill marginal rate is $0.147789041 per kWh +in.utility_bill_electricity_marginal_rates 0.150543726 Electricity utility bill marginal rate is $0.150543726 per kWh +in.utility_bill_electricity_marginal_rates 0.150884217 Electricity utility bill marginal rate is $0.150884217 per kWh +in.utility_bill_electricity_marginal_rates 0.155457448 Electricity utility bill marginal rate is $0.155457448 per kWh +in.utility_bill_electricity_marginal_rates 0.163560709 Electricity utility bill marginal rate is $0.163560709 per kWh +in.utility_bill_electricity_marginal_rates 0.165542527 Electricity utility bill marginal rate is $0.165542527 per kWh +in.utility_bill_electricity_marginal_rates 0.183661334 Electricity utility bill marginal rate is $0.183661334 per kWh +in.utility_bill_electricity_marginal_rates 0.198047752 Electricity utility bill marginal rate is $0.198047752 per kWh +in.utility_bill_electricity_marginal_rates 0.215063004 Electricity utility bill marginal rate is $0.215063004 per kWh +in.utility_bill_electricity_marginal_rates 0.245262372 Electricity utility bill marginal rate is $0.245262372 per kWh +in.utility_bill_electricity_marginal_rates 0.249571924 Electricity utility bill marginal rate is $0.249571924 per kWh +in.utility_bill_electricity_marginal_rates 0.258502111 Electricity utility bill marginal rate is $0.258502111 per kWh +in.utility_bill_electricity_marginal_rates 0.266971414 Electricity utility bill marginal rate is $0.266971414 per kWh +in.utility_bill_electricity_marginal_rates 0.271402266 Electricity utility bill marginal rate is $0.271402266 per kWh +in.utility_bill_electricity_marginal_rates 0.278485535 Electricity utility bill marginal rate is $0.278485535 per kWh +in.utility_bill_electricity_marginal_rates 0.396489398 Electricity utility bill marginal rate is $0.396489398 per kWh +in.utility_bill_fuel_oil_fixed_charges 0 Fuel oil utility bill monthly fixed charges is $0 +in.utility_bill_fuel_oil_marginal_rates 2.746846154 Fuel oil utility bill marginal rate is $2.746846154 per kBtu +in.utility_bill_fuel_oil_marginal_rates 2.897307692 Fuel oil utility bill marginal rate is $2.897307692 per kBtu +in.utility_bill_fuel_oil_marginal_rates 2.967307692 Fuel oil utility bill marginal rate is $2.967307692 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.019076923 Fuel oil utility bill marginal rate is $3.019076923 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.088538462 Fuel oil utility bill marginal rate is $3.088538462 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.274230769 Fuel oil utility bill marginal rate is $3.274230769 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.309538462 Fuel oil utility bill marginal rate is $3.309538462 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.329769231 Fuel oil utility bill marginal rate is $3.329769231 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.448461538 Fuel oil utility bill marginal rate is $3.448461538 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.449153846 Fuel oil utility bill marginal rate is $3.449153846 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.486230769 Fuel oil utility bill marginal rate is $3.486230769 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.526538462 Fuel oil utility bill marginal rate is $3.526538462 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.582692308 Fuel oil utility bill marginal rate is $3.582692308 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.658923077 Fuel oil utility bill marginal rate is $3.658923077 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.681153846 Fuel oil utility bill marginal rate is $3.681153846 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.694307692 Fuel oil utility bill marginal rate is $3.694307692 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.741846154 Fuel oil utility bill marginal rate is $3.741846154 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.768230769 Fuel oil utility bill marginal rate is $3.768230769 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.801 Fuel oil utility bill marginal rate is $3.801 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.809384615 Fuel oil utility bill marginal rate is $3.809384615 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.888615385 Fuel oil utility bill marginal rate is $3.888615385 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.921 Fuel oil utility bill marginal rate is $3.921 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.941846154 Fuel oil utility bill marginal rate is $3.941846154 per kBtu +in.utility_bill_fuel_oil_marginal_rates 3.976461538 Fuel oil utility bill marginal rate is $3.976461538 per kBtu +in.utility_bill_fuel_oil_marginal_rates 4.016307692 Fuel oil utility bill marginal rate is $4.016307692 per kBtu +in.utility_bill_fuel_oil_marginal_rates 6.58 Fuel oil utility bill marginal rate is $6.58 per kBtu +in.utility_bill_natural_gas_fixed_charges 10 Natural gas utility bill monthly fixed charge is $10 +in.utility_bill_natural_gas_fixed_charges 10.8 Natural gas utility bill monthly fixed charge is $10.8 +in.utility_bill_natural_gas_fixed_charges 11.38 Natural gas utility bill monthly fixed charge is $11.38 +in.utility_bill_natural_gas_fixed_charges 13.16 Natural gas utility bill monthly fixed charge is $13.16 +in.utility_bill_natural_gas_fixed_charges 13.24 Natural gas utility bill monthly fixed charge is $13.24 +in.utility_bill_natural_gas_fixed_charges 13.5 Natural gas utility bill monthly fixed charge is $13.5 +in.utility_bill_natural_gas_fixed_charges 14 Natural gas utility bill monthly fixed charge is $14 +in.utility_bill_natural_gas_fixed_charges 14.6 Natural gas utility bill monthly fixed charge is $14.6 +in.utility_bill_natural_gas_fixed_charges 4.95 Natural gas utility bill monthly fixed charge is $4.95 +in.utility_bill_natural_gas_marginal_rates 0.757959287 Natural gas utility bill marginal rate is $0.757959287 per therm +in.utility_bill_natural_gas_marginal_rates 0.766550977 Natural gas utility bill marginal rate is $0.766550977 per therm +in.utility_bill_natural_gas_marginal_rates 0.771145095 Natural gas utility bill marginal rate is $0.771145095 per therm +in.utility_bill_natural_gas_marginal_rates 0.808926492 Natural gas utility bill marginal rate is $0.808926492 per therm +in.utility_bill_natural_gas_marginal_rates 0.814349384 Natural gas utility bill marginal rate is $0.814349384 per therm +in.utility_bill_natural_gas_marginal_rates 0.8619508 Natural gas utility bill marginal rate is $0.8619508 per therm +in.utility_bill_natural_gas_marginal_rates 0.890533801 Natural gas utility bill marginal rate is $0.890533801 per therm +in.utility_bill_natural_gas_marginal_rates 0.914474387 Natural gas utility bill marginal rate is $0.914474387 per therm +in.utility_bill_natural_gas_marginal_rates 0.924764572 Natural gas utility bill marginal rate is $0.924764572 per therm +in.utility_bill_natural_gas_marginal_rates 0.947964437 Natural gas utility bill marginal rate is $0.947964437 per therm +in.utility_bill_natural_gas_marginal_rates 0.95950615 Natural gas utility bill marginal rate is $0.95950615 per therm +in.utility_bill_natural_gas_marginal_rates 0.970288774 Natural gas utility bill marginal rate is $0.970288774 per therm +in.utility_bill_natural_gas_marginal_rates 0.97273477 Natural gas utility bill marginal rate is $0.97273477 per therm +in.utility_bill_natural_gas_marginal_rates 1.041230921 Natural gas utility bill marginal rate is $1.041230921 per therm +in.utility_bill_natural_gas_marginal_rates 1.042071903 Natural gas utility bill marginal rate is $1.042071903 per therm +in.utility_bill_natural_gas_marginal_rates 1.058096089 Natural gas utility bill marginal rate is $1.058096089 per therm +in.utility_bill_natural_gas_marginal_rates 1.083933273 Natural gas utility bill marginal rate is $1.083933273 per therm +in.utility_bill_natural_gas_marginal_rates 1.131644784 Natural gas utility bill marginal rate is $1.131644784 per therm +in.utility_bill_natural_gas_marginal_rates 1.13368161 Natural gas utility bill marginal rate is $1.13368161 per therm +in.utility_bill_natural_gas_marginal_rates 1.138438617 Natural gas utility bill marginal rate is $1.138438617 per therm +in.utility_bill_natural_gas_marginal_rates 1.161648985 Natural gas utility bill marginal rate is $1.161648985 per therm +in.utility_bill_natural_gas_marginal_rates 1.172535955 Natural gas utility bill marginal rate is $1.172535955 per therm +in.utility_bill_natural_gas_marginal_rates 1.179455136 Natural gas utility bill marginal rate is $1.179455136 per therm +in.utility_bill_natural_gas_marginal_rates 1.191737547 Natural gas utility bill marginal rate is $1.191737547 per therm +in.utility_bill_natural_gas_marginal_rates 1.250961795 Natural gas utility bill marginal rate is $1.250961795 per therm +in.utility_bill_natural_gas_marginal_rates 1.274823771 Natural gas utility bill marginal rate is $1.274823771 per therm +in.utility_bill_natural_gas_marginal_rates 1.324122284 Natural gas utility bill marginal rate is $1.324122284 per therm +in.utility_bill_natural_gas_marginal_rates 1.376099502 Natural gas utility bill marginal rate is $1.376099502 per therm +in.utility_bill_natural_gas_marginal_rates 1.40010647 Natural gas utility bill marginal rate is $1.40010647 per therm +in.utility_bill_natural_gas_marginal_rates 1.411150918 Natural gas utility bill marginal rate is $1.411150918 per therm +in.utility_bill_natural_gas_marginal_rates 1.413705399 Natural gas utility bill marginal rate is $1.413705399 per therm +in.utility_bill_natural_gas_marginal_rates 1.413742415 Natural gas utility bill marginal rate is $1.413742415 per therm +in.utility_bill_natural_gas_marginal_rates 1.416042199 Natural gas utility bill marginal rate is $1.416042199 per therm +in.utility_bill_natural_gas_marginal_rates 1.420968081 Natural gas utility bill marginal rate is $1.420968081 per therm +in.utility_bill_natural_gas_marginal_rates 1.44004766 Natural gas utility bill marginal rate is $1.44004766 per therm +in.utility_bill_natural_gas_marginal_rates 1.440901216 Natural gas utility bill marginal rate is $1.440901216 per therm +in.utility_bill_natural_gas_marginal_rates 1.443628661 Natural gas utility bill marginal rate is $1.443628661 per therm +in.utility_bill_natural_gas_marginal_rates 1.45183129 Natural gas utility bill marginal rate is $1.45183129 per therm +in.utility_bill_natural_gas_marginal_rates 1.466099897 Natural gas utility bill marginal rate is $1.466099897 per therm +in.utility_bill_natural_gas_marginal_rates 1.476893379 Natural gas utility bill marginal rate is $1.476893379 per therm +in.utility_bill_natural_gas_marginal_rates 1.491501436 Natural gas utility bill marginal rate is $1.491501436 per therm +in.utility_bill_natural_gas_marginal_rates 1.492142732 Natural gas utility bill marginal rate is $1.492142732 per therm +in.utility_bill_natural_gas_marginal_rates 1.621992584 Natural gas utility bill marginal rate is $1.621992584 per therm +in.utility_bill_natural_gas_marginal_rates 1.651841618 Natural gas utility bill marginal rate is $1.651841618 per therm +in.utility_bill_natural_gas_marginal_rates 1.65263025 Natural gas utility bill marginal rate is $1.65263025 per therm +in.utility_bill_natural_gas_marginal_rates 1.75104111 Natural gas utility bill marginal rate is $1.75104111 per therm +in.utility_bill_natural_gas_marginal_rates 1.766762896 Natural gas utility bill marginal rate is $1.766762896 per therm +in.utility_bill_natural_gas_marginal_rates 1.837640087 Natural gas utility bill marginal rate is $1.837640087 per therm +in.utility_bill_natural_gas_marginal_rates 1.863660544 Natural gas utility bill marginal rate is $1.863660544 per therm +in.utility_bill_natural_gas_marginal_rates 1.964713414 Natural gas utility bill marginal rate is $1.964713414 per therm +in.utility_bill_natural_gas_marginal_rates 4.83842304 Natural gas utility bill marginal rate is $4.83842304 per therm +in.utility_bill_propane_fixed_charges 0 Propane utility bill monthly fixed charge is $0 +in.utility_bill_propane_marginal_rates 1.642230769 Propane utility bill marginal rate is $1.642230769 per gallon +in.utility_bill_propane_marginal_rates 1.679230769 Propane utility bill marginal rate is $1.679230769 per gallon +in.utility_bill_propane_marginal_rates 1.761461538 Propane utility bill marginal rate is $1.761461538 per gallon +in.utility_bill_propane_marginal_rates 1.889 Propane utility bill marginal rate is $1.889 per gallon +in.utility_bill_propane_marginal_rates 1.906153846 Propane utility bill marginal rate is $1.906153846 per gallon +in.utility_bill_propane_marginal_rates 1.951692308 Propane utility bill marginal rate is $1.951692308 per gallon +in.utility_bill_propane_marginal_rates 1.982692308 Propane utility bill marginal rate is $1.982692308 per gallon +in.utility_bill_propane_marginal_rates 2.021384615 Propane utility bill marginal rate is $2.021384615 per gallon +in.utility_bill_propane_marginal_rates 2.164692308 Propane utility bill marginal rate is $2.164692308 per gallon +in.utility_bill_propane_marginal_rates 2.221692308 Propane utility bill marginal rate is $2.221692308 per gallon +in.utility_bill_propane_marginal_rates 2.279153846 Propane utility bill marginal rate is $2.279153846 per gallon +in.utility_bill_propane_marginal_rates 2.304384615 Propane utility bill marginal rate is $2.304384615 per gallon +in.utility_bill_propane_marginal_rates 2.316615385 Propane utility bill marginal rate is $2.316615385 per gallon +in.utility_bill_propane_marginal_rates 2.331384615 Propane utility bill marginal rate is $2.331384615 per gallon +in.utility_bill_propane_marginal_rates 2.426692308 Propane utility bill marginal rate is $2.426692308 per gallon +in.utility_bill_propane_marginal_rates 2.485153846 Propane utility bill marginal rate is $2.485153846 per gallon +in.utility_bill_propane_marginal_rates 2.536923077 Propane utility bill marginal rate is $2.536923077 per gallon +in.utility_bill_propane_marginal_rates 2.538846154 Propane utility bill marginal rate is $2.538846154 per gallon +in.utility_bill_propane_marginal_rates 2.632769231 Propane utility bill marginal rate is $2.632769231 per gallon +in.utility_bill_propane_marginal_rates 2.734153846 Propane utility bill marginal rate is $2.734153846 per gallon +in.utility_bill_propane_marginal_rates 2.734461538 Propane utility bill marginal rate is $2.734461538 per gallon +in.utility_bill_propane_marginal_rates 2.947230769 Propane utility bill marginal rate is $2.947230769 per gallon +in.utility_bill_propane_marginal_rates 2.959615385 Propane utility bill marginal rate is $2.959615385 per gallon +in.utility_bill_propane_marginal_rates 3.004846154 Propane utility bill marginal rate is $3.004846154 per gallon +in.utility_bill_propane_marginal_rates 3.038615385 Propane utility bill marginal rate is $3.038615385 per gallon +in.utility_bill_propane_marginal_rates 3.178923077 Propane utility bill marginal rate is $3.178923077 per gallon +in.utility_bill_propane_marginal_rates 3.256230769 Propane utility bill marginal rate is $3.256230769 per gallon +in.utility_bill_propane_marginal_rates 3.390230769 Propane utility bill marginal rate is $3.390230769 per gallon +in.utility_bill_propane_marginal_rates 3.404923077 Propane utility bill marginal rate is $3.404923077 per gallon +in.utility_bill_propane_marginal_rates 3.439923077 Propane utility bill marginal rate is $3.439923077 per gallon +in.utility_bill_propane_marginal_rates 3.467538462 Propane utility bill marginal rate is $3.467538462 per gallon +in.utility_bill_propane_marginal_rates 3.487846154 Propane utility bill marginal rate is $3.487846154 per gallon +in.utility_bill_propane_marginal_rates 3.495 Propane utility bill marginal rate is $3.495 per gallon +in.utility_bill_propane_marginal_rates 3.551923077 Propane utility bill marginal rate is $3.551923077 per gallon +in.utility_bill_propane_marginal_rates 3.623384615 Propane utility bill marginal rate is $3.623384615 per gallon +in.utility_bill_propane_marginal_rates 3.666076923 Propane utility bill marginal rate is $3.666076923 per gallon +in.utility_bill_propane_marginal_rates 3.680615385 Propane utility bill marginal rate is $3.680615385 per gallon +in.utility_bill_propane_marginal_rates 3.699076923 Propane utility bill marginal rate is $3.699076923 per gallon +in.utility_bill_propane_marginal_rates 3.720461538 Propane utility bill marginal rate is $3.720461538 per gallon +in.utility_bill_propane_marginal_rates 3.747769231 Propane utility bill marginal rate is $3.747769231 per gallon +in.utility_bill_propane_marginal_rates 3.819769231 Propane utility bill marginal rate is $3.819769231 per gallon +in.utility_bill_propane_marginal_rates 3.967076923 Propane utility bill marginal rate is $3.967076923 per gallon +in.utility_bill_propane_marginal_rates 4.751615385 Propane utility bill marginal rate is $4.751615385 per gallon +in.utility_bill_propane_marginal_rates 8.11 Propane utility bill marginal rate is $8.11 per gallon +in.utility_bill_scenario_names Utility Rates - Fixed + Variable The name of utility bill scenario +in.utility_bill_simple_filepaths data/utility_bills/sdr_rates/State.tsv Relative paths of simple utility rates. Paths are relative to the ResStock resources folder. +in.vacancy_status Occupied The dwelling unit is occupied +in.vacancy_status Vacant The dwelling unit is vacant +in.vintage 1940s Housing unit was built in the 1940s +in.vintage 1950s Housing unit was built in the 1950s +in.vintage 1960s Housing unit was built in the 1960s +in.vintage 1970s Housing unit was built in the 1970s +in.vintage 1980s Housing unit was built in the 1980s +in.vintage 1990s Housing unit was built in the 1990s +in.vintage 2000s Housing unit was built in the 2000s +in.vintage 2010s Housing unit was built in the 2010s +in.vintage <1940 Housing unit was built prior to 1940 +in.vintage_acs 1940-59 Housing unit was built between 1940-59 +in.vintage_acs 1960-79 Housing unit was built between 1960-79 +in.vintage_acs 1980-99 Housing unit was built between 1980-99 +in.vintage_acs 2000-09 Housing unit was built between 2000-09 +in.vintage_acs 2010s Housing unit was built between 2010s +in.vintage_acs <1940 Housing unit was built prior to 1940 +in.water_heater_efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" 50 gal heat pump water heater with 3.45 UEF efficiency level +in.water_heater_efficiency Electric Premium Electric water heater with an energy factor of 0.95 +in.water_heater_efficiency Electric Standard Electric water heater with an energy factor of 0.92 +in.water_heater_efficiency Electric Tankless Tankless electric water heater +in.water_heater_efficiency FIXME Fuel Oil Indirect Fuel oil indirect water heater +in.water_heater_efficiency Fuel Oil Premium Fuel oil water heater with energy factor of 0.68 +in.water_heater_efficiency Fuel Oil Standard Fuel oil water heater with energy factor of 0.62 +in.water_heater_efficiency Natural Gas Premium Natural gas water heater with energy factor of 0.67 +in.water_heater_efficiency Natural Gas Standard Natural gas water heater with energy factor of 0.59 +in.water_heater_efficiency Natural Gas Tankless Tankless natural gas water heater +in.water_heater_efficiency Other Fuel "Other fuel (wood, coal, solar) water heater" +in.water_heater_efficiency Propane Premium Propane water heater with energy factor of 0.67 +in.water_heater_efficiency Propane Standard Propane water heater with energy factor of 0.59 +in.water_heater_efficiency Propane Tankless Tankless propane water heater +in.water_heater_efficiency "Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an east-facing roof at roof pitch. The storage has an electric resistance standard backup. +in.water_heater_efficiency "Solar Thermal, 40 sqft, North, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an north-facing roof at roof pitch. The storage has an electric resistance standard backup. +in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The storage has an electric resistance standard backup. +in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Natural Gas Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The system uses a separate natural gas storage water heater as backup. +in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Propane Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The system uses a separate propane storage water heater as backup. +in.water_heater_efficiency "Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an west-facing roof at roof pitch. The storage has an electric resistance standard backup. +in.water_heater_efficiency Wood Wood water heater +in.water_heater_fuel Electricity Electric water heater +in.water_heater_fuel Fuel Oil Fuel oil water heater +in.water_heater_fuel Natural Gas Natural gas water heater +in.water_heater_fuel Other Fuel "Other fuel (wood, coal, solar) water heater" +in.water_heater_fuel Propane Propane water heater +in.water_heater_fuel Solar Thermal Solar thermal water heater +in.water_heater_fuel Wood Wood water heater +in.water_heater_in_unit No No water heater present in unit +in.water_heater_in_unit Yes Water heater present in unit +in.water_heater_location Attic The water heater is located in the Attic +in.water_heater_location Conditioned Mechanical Room The water heater is located in the Conditioned Mechanical Room +in.water_heater_location Crawlspace The water heater is located in the Crawlspace +in.water_heater_location Garage The water heater is located in the Garage +in.water_heater_location Heated Basement The water heater is located in the Heated Basement +in.water_heater_location Living Space The water heater is located in the Living Space +in.water_heater_location Outside The water heater is located in the Outside +in.water_heater_location Unheated Basement The water heater is located in the Unheated Basement +in.weather_file_city A L Mangham Jr Rgnl Location of weather station from specific weather file used for the building energy simulation is A L Mangham Jr Rgnl +in.weather_file_city Aberdeen Regional Location of weather station from specific weather file used for the building energy simulation is Aberdeen Regional +in.weather_file_city Abilene Dyess Afb Location of weather station from specific weather file used for the building energy simulation is Abilene Dyess Afb +in.weather_file_city Abilene Municipal Location of weather station from specific weather file used for the building energy simulation is Abilene Municipal +in.weather_file_city Accomack Co Location of weather station from specific weather file used for the building energy simulation is Accomack Co +in.weather_file_city Adirondack Rgnl Location of weather station from specific weather file used for the building energy simulation is Adirondack Rgnl +in.weather_file_city Ainsworth Municipal Location of weather station from specific weather file used for the building energy simulation is Ainsworth Municipal +in.weather_file_city Airborne Airpark Location of weather station from specific weather file used for the building energy simulation is Airborne Airpark +in.weather_file_city Aitkin Muni Kurtz Fl Location of weather station from specific weather file used for the building energy simulation is Aitkin Muni Kurtz Fl +in.weather_file_city Akron Akron Canton Location of weather station from specific weather file used for the building energy simulation is Akron Akron Canton +in.weather_file_city Alamogordo White Sa Location of weather station from specific weather file used for the building energy simulation is Alamogordo White Sa +in.weather_file_city Alamosa Muni Awos Location of weather station from specific weather file used for the building energy simulation is Alamosa Muni Awos +in.weather_file_city Albany County Airpo Location of weather station from specific weather file used for the building energy simulation is Albany County Airpo +in.weather_file_city Albany Municipal Location of weather station from specific weather file used for the building energy simulation is Albany Municipal +in.weather_file_city Albert Lea Awos Location of weather station from specific weather file used for the building energy simulation is Albert Lea Awos +in.weather_file_city Albuquerque Intl Location of weather station from specific weather file used for the building energy simulation is Albuquerque Intl +in.weather_file_city Alexander Fld South Location of weather station from specific weather file used for the building energy simulation is Alexander Fld South +in.weather_file_city Alexandria Int Location of weather station from specific weather file used for the building energy simulation is Alexandria Int +in.weather_file_city Algona Location of weather station from specific weather file used for the building energy simulation is Algona +in.weather_file_city Alice Intl Location of weather station from specific weather file used for the building energy simulation is Alice Intl +in.weather_file_city Allegheny Co Location of weather station from specific weather file used for the building energy simulation is Allegheny Co +in.weather_file_city Allentown A Bethle Location of weather station from specific weather file used for the building energy simulation is Allentown A Bethle +in.weather_file_city Alliance Muni Location of weather station from specific weather file used for the building energy simulation is Alliance Muni +in.weather_file_city Alma Bacon Co Location of weather station from specific weather file used for the building energy simulation is Alma Bacon Co +in.weather_file_city Alpena Phelps Colli Location of weather station from specific weather file used for the building energy simulation is Alpena Phelps Colli +in.weather_file_city Altoona Blair Co Location of weather station from specific weather file used for the building energy simulation is Altoona Blair Co +in.weather_file_city Alturas Muni Location of weather station from specific weather file used for the building energy simulation is Alturas Muni +in.weather_file_city Altus Afb Location of weather station from specific weather file used for the building energy simulation is Altus Afb +in.weather_file_city Amarillo Intl Location of weather station from specific weather file used for the building energy simulation is Amarillo Intl +in.weather_file_city Ames Muni Location of weather station from specific weather file used for the building energy simulation is Ames Muni +in.weather_file_city Anderson Rgnl Location of weather station from specific weather file used for the building energy simulation is Anderson Rgnl +in.weather_file_city Andrews Afb Camp Sp Location of weather station from specific weather file used for the building energy simulation is Andrews Afb Camp Sp +in.weather_file_city Angelina Co Location of weather station from specific weather file used for the building energy simulation is Angelina Co +in.weather_file_city Ann Arbor Municipal Location of weather station from specific weather file used for the building energy simulation is Ann Arbor Municipal +in.weather_file_city Anniston Metropolit Location of weather station from specific weather file used for the building energy simulation is Anniston Metropolit +in.weather_file_city Anoka Co Blaine Location of weather station from specific weather file used for the building energy simulation is Anoka Co Blaine +in.weather_file_city Antrim Co Location of weather station from specific weather file used for the building energy simulation is Antrim Co +in.weather_file_city Apalachicola Muni Location of weather station from specific weather file used for the building energy simulation is Apalachicola Muni +in.weather_file_city Aransas Co Location of weather station from specific weather file used for the building energy simulation is Aransas Co +in.weather_file_city Arcata Location of weather station from specific weather file used for the building energy simulation is Arcata +in.weather_file_city Ardmore Downtown Exe Location of weather station from specific weather file used for the building energy simulation is Ardmore Downtown Exe +in.weather_file_city Arlington Muni Location of weather station from specific weather file used for the building energy simulation is Arlington Muni +in.weather_file_city Arthur N Neu Location of weather station from specific weather file used for the building energy simulation is Arthur N Neu +in.weather_file_city Ashe Co Location of weather station from specific weather file used for the building energy simulation is Ashe Co +in.weather_file_city Asheboro Rgnl Location of weather station from specific weather file used for the building energy simulation is Asheboro Rgnl +in.weather_file_city Asheville Municipal Location of weather station from specific weather file used for the building energy simulation is Asheville Municipal +in.weather_file_city Ashtabula Co Location of weather station from specific weather file used for the building energy simulation is Ashtabula Co +in.weather_file_city Aspen Pitkin Co Sard Location of weather station from specific weather file used for the building energy simulation is Aspen Pitkin Co Sard +in.weather_file_city Astoria Clatsop Location of weather station from specific weather file used for the building energy simulation is Astoria Clatsop +in.weather_file_city Athens Municipal Location of weather station from specific weather file used for the building energy simulation is Athens Municipal +in.weather_file_city Atlanta Municipal Location of weather station from specific weather file used for the building energy simulation is Atlanta Municipal +in.weather_file_city Atlantic City Intl Location of weather station from specific weather file used for the building energy simulation is Atlantic City Intl +in.weather_file_city Atlantic Muni Location of weather station from specific weather file used for the building energy simulation is Atlantic Muni +in.weather_file_city Auburn Lewiston Muni Location of weather station from specific weather file used for the building energy simulation is Auburn Lewiston Muni +in.weather_file_city Audubon Co Location of weather station from specific weather file used for the building energy simulation is Audubon Co +in.weather_file_city Augusta Bush Field Location of weather station from specific weather file used for the building energy simulation is Augusta Bush Field +in.weather_file_city Augusta State Arpt Location of weather station from specific weather file used for the building energy simulation is Augusta State Arpt +in.weather_file_city Aurora Muni Al Pott Location of weather station from specific weather file used for the building energy simulation is Aurora Muni Al Pott +in.weather_file_city Aurora Municipal Location of weather station from specific weather file used for the building energy simulation is Aurora Municipal +in.weather_file_city Aurora State Location of weather station from specific weather file used for the building energy simulation is Aurora State +in.weather_file_city Austin Camp Mabry Location of weather station from specific weather file used for the building energy simulation is Austin Camp Mabry +in.weather_file_city Austin Mueller Muni Location of weather station from specific weather file used for the building energy simulation is Austin Mueller Muni +in.weather_file_city Austin Muni Location of weather station from specific weather file used for the building energy simulation is Austin Muni +in.weather_file_city Baker City Muni Location of weather station from specific weather file used for the building energy simulation is Baker City Muni +in.weather_file_city Baker Muni Location of weather station from specific weather file used for the building energy simulation is Baker Muni +in.weather_file_city Bakersfield Meadows Location of weather station from specific weather file used for the building energy simulation is Bakersfield Meadows +in.weather_file_city Baltimore Washingto Location of weather station from specific weather file used for the building energy simulation is Baltimore Washingto +in.weather_file_city Bangor Intl Location of weather station from specific weather file used for the building energy simulation is Bangor Intl +in.weather_file_city Baraboo Wisc Dells Location of weather station from specific weather file used for the building energy simulation is Baraboo Wisc Dells +in.weather_file_city Barksdale Afb Location of weather station from specific weather file used for the building energy simulation is Barksdale Afb +in.weather_file_city Barnstable Muni Boa Location of weather station from specific weather file used for the building energy simulation is Barnstable Muni Boa +in.weather_file_city Batesville Rgnl Location of weather station from specific weather file used for the building energy simulation is Batesville Rgnl +in.weather_file_city Baton Rouge Metro R Location of weather station from specific weather file used for the building energy simulation is Baton Rouge Metro R +in.weather_file_city Baudette Intl Location of weather station from specific weather file used for the building energy simulation is Baudette Intl +in.weather_file_city Beale Afb Location of weather station from specific weather file used for the building energy simulation is Beale Afb +in.weather_file_city Beatrice Muni Location of weather station from specific weather file used for the building energy simulation is Beatrice Muni +in.weather_file_city Beaufort Mcas Location of weather station from specific weather file used for the building energy simulation is Beaufort Mcas +in.weather_file_city Beckley Raleigh Ct Location of weather station from specific weather file used for the building energy simulation is Beckley Raleigh Ct +in.weather_file_city Beeville Chase Naas Location of weather station from specific weather file used for the building energy simulation is Beeville Chase Naas +in.weather_file_city Bellingham Intl Location of weather station from specific weather file used for the building energy simulation is Bellingham Intl +in.weather_file_city Bemidji Municipal Location of weather station from specific weather file used for the building energy simulation is Bemidji Municipal +in.weather_file_city Bentonville Muni Tha Location of weather station from specific weather file used for the building energy simulation is Bentonville Muni Tha +in.weather_file_city Berlin Municipal Location of weather station from specific weather file used for the building energy simulation is Berlin Municipal +in.weather_file_city Bert Mooney Location of weather station from specific weather file used for the building energy simulation is Bert Mooney +in.weather_file_city Beverly Muni Location of weather station from specific weather file used for the building energy simulation is Beverly Muni +in.weather_file_city Big Piney Amos Location of weather station from specific weather file used for the building energy simulation is Big Piney Amos +in.weather_file_city Billings Logan Int Location of weather station from specific weather file used for the building energy simulation is Billings Logan Int +in.weather_file_city Binghamton Broome C Location of weather station from specific weather file used for the building energy simulation is Binghamton Broome C +in.weather_file_city Birmingham Location of weather station from specific weather file used for the building energy simulation is Birmingham +in.weather_file_city Birmingham Muni Location of weather station from specific weather file used for the building energy simulation is Birmingham Muni +in.weather_file_city Bisbee Douglas Intl Location of weather station from specific weather file used for the building energy simulation is Bisbee Douglas Intl +in.weather_file_city Bishop Airport Location of weather station from specific weather file used for the building energy simulation is Bishop Airport +in.weather_file_city Bismarck Municipal Location of weather station from specific weather file used for the building energy simulation is Bismarck Municipal +in.weather_file_city Block Island Location of weather station from specific weather file used for the building energy simulation is Block Island +in.weather_file_city Blue Canyon Nyack Location of weather station from specific weather file used for the building energy simulation is Blue Canyon Nyack +in.weather_file_city Blue Ridge Location of weather station from specific weather file used for the building energy simulation is Blue Ridge +in.weather_file_city Blythe Location of weather station from specific weather file used for the building energy simulation is Blythe +in.weather_file_city Boise Municipal Location of weather station from specific weather file used for the building energy simulation is Boise Municipal +in.weather_file_city Boone Co Location of weather station from specific weather file used for the building energy simulation is Boone Co +in.weather_file_city Boone Muni Location of weather station from specific weather file used for the building energy simulation is Boone Muni +in.weather_file_city Boscobel Location of weather station from specific weather file used for the building energy simulation is Boscobel +in.weather_file_city Boston Logan Intl Location of weather station from specific weather file used for the building energy simulation is Boston Logan Intl +in.weather_file_city Bowerman Location of weather station from specific weather file used for the building energy simulation is Bowerman +in.weather_file_city Bowers Fld Location of weather station from specific weather file used for the building energy simulation is Bowers Fld +in.weather_file_city Bowling Green Warre Location of weather station from specific weather file used for the building energy simulation is Bowling Green Warre +in.weather_file_city Bowman Fld Location of weather station from specific weather file used for the building energy simulation is Bowman Fld +in.weather_file_city Bradford Rgnl Location of weather station from specific weather file used for the building energy simulation is Bradford Rgnl +in.weather_file_city Brainerd Lakes Rgnl Location of weather station from specific weather file used for the building energy simulation is Brainerd Lakes Rgnl +in.weather_file_city Branch Co Mem Location of weather station from specific weather file used for the building energy simulation is Branch Co Mem +in.weather_file_city Brazoria Co Location of weather station from specific weather file used for the building energy simulation is Brazoria Co +in.weather_file_city Bremerton National Location of weather station from specific weather file used for the building energy simulation is Bremerton National +in.weather_file_city Brewster Fld Location of weather station from specific weather file used for the building energy simulation is Brewster Fld +in.weather_file_city Bridgeport Igor I Location of weather station from specific weather file used for the building energy simulation is Bridgeport Igor I +in.weather_file_city Broken Bow Muni Location of weather station from specific weather file used for the building energy simulation is Broken Bow Muni +in.weather_file_city Brookings Rgnl Location of weather station from specific weather file used for the building energy simulation is Brookings Rgnl +in.weather_file_city Brownsville Intl Location of weather station from specific weather file used for the building energy simulation is Brownsville Intl +in.weather_file_city Brunswick Golden Is Location of weather station from specific weather file used for the building energy simulation is Brunswick Golden Is +in.weather_file_city Buckley Afb Location of weather station from specific weather file used for the building energy simulation is Buckley Afb +in.weather_file_city Buffalo Location of weather station from specific weather file used for the building energy simulation is Buffalo +in.weather_file_city Burke Lakefront Location of weather station from specific weather file used for the building energy simulation is Burke Lakefront +in.weather_file_city Burley Muni Location of weather station from specific weather file used for the building energy simulation is Burley Muni +in.weather_file_city Burlington Alamance Location of weather station from specific weather file used for the building energy simulation is Burlington Alamance +in.weather_file_city Burlington Intl Location of weather station from specific weather file used for the building energy simulation is Burlington Intl +in.weather_file_city Burnet Muni Kate Cr Location of weather station from specific weather file used for the building energy simulation is Burnet Muni Kate Cr +in.weather_file_city Burns Muni Amos Location of weather station from specific weather file used for the building energy simulation is Burns Muni Amos +in.weather_file_city Butler Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Butler Co Rgnl +in.weather_file_city Butler Co Scholter F Location of weather station from specific weather file used for the building energy simulation is Butler Co Scholter F +in.weather_file_city C David Campbell Fld Location of weather station from specific weather file used for the building energy simulation is C David Campbell Fld +in.weather_file_city C M Schulz Sonoma Co Location of weather station from specific weather file used for the building energy simulation is C M Schulz Sonoma Co +in.weather_file_city Cahokia St Louis Location of weather station from specific weather file used for the building energy simulation is Cahokia St Louis +in.weather_file_city Cairns Aaf Location of weather station from specific weather file used for the building energy simulation is Cairns Aaf +in.weather_file_city Caldwell Awos Location of weather station from specific weather file used for the building energy simulation is Caldwell Awos +in.weather_file_city Camarillo Location of weather station from specific weather file used for the building energy simulation is Camarillo +in.weather_file_city Cambridge Muni Location of weather station from specific weather file used for the building energy simulation is Cambridge Muni +in.weather_file_city Cannon Afb Location of weather station from specific weather file used for the building energy simulation is Cannon Afb +in.weather_file_city Canyonlands Fld Location of weather station from specific weather file used for the building energy simulation is Canyonlands Fld +in.weather_file_city Cape Girardeau Rgnl Location of weather station from specific weather file used for the building energy simulation is Cape Girardeau Rgnl +in.weather_file_city Cape Hatteras Location of weather station from specific weather file used for the building energy simulation is Cape Hatteras +in.weather_file_city Cape May Co Location of weather station from specific weather file used for the building energy simulation is Cape May Co +in.weather_file_city Cape Newenham Afs Location of weather station from specific weather file used for the building energy simulation is Cape Newenham Afs +in.weather_file_city Capital City Arpt Location of weather station from specific weather file used for the building energy simulation is Capital City Arpt +in.weather_file_city Cartersville Location of weather station from specific weather file used for the building energy simulation is Cartersville +in.weather_file_city Casper Natrona Coun Location of weather station from specific weather file used for the building energy simulation is Casper Natrona Coun +in.weather_file_city Cavern City Air Ter Location of weather station from specific weather file used for the building energy simulation is Cavern City Air Ter +in.weather_file_city Cecil Fld Location of weather station from specific weather file used for the building energy simulation is Cecil Fld +in.weather_file_city Cedar City Rgnl Location of weather station from specific weather file used for the building energy simulation is Cedar City Rgnl +in.weather_file_city Cedar Rapids Muni Location of weather station from specific weather file used for the building energy simulation is Cedar Rapids Muni +in.weather_file_city Centennial Location of weather station from specific weather file used for the building energy simulation is Centennial +in.weather_file_city Central Illinois Rg Location of weather station from specific weather file used for the building energy simulation is Central Illinois Rg +in.weather_file_city Centreville Location of weather station from specific weather file used for the building energy simulation is Centreville +in.weather_file_city Challis Location of weather station from specific weather file used for the building energy simulation is Challis +in.weather_file_city Chamberlain Amos Location of weather station from specific weather file used for the building energy simulation is Chamberlain Amos +in.weather_file_city Chan Gurney Muni Location of weather station from specific weather file used for the building energy simulation is Chan Gurney Muni +in.weather_file_city Chandler Fld Location of weather station from specific weather file used for the building energy simulation is Chandler Fld +in.weather_file_city Chanute Martin Johns Location of weather station from specific weather file used for the building energy simulation is Chanute Martin Johns +in.weather_file_city Chariton Muni Location of weather station from specific weather file used for the building energy simulation is Chariton Muni +in.weather_file_city Charles B Wheeler D Location of weather station from specific weather file used for the building energy simulation is Charles B Wheeler D +in.weather_file_city Charleston Muni Location of weather station from specific weather file used for the building energy simulation is Charleston Muni +in.weather_file_city Charlevoix Muni Location of weather station from specific weather file used for the building energy simulation is Charlevoix Muni +in.weather_file_city Charlotte Co Location of weather station from specific weather file used for the building energy simulation is Charlotte Co +in.weather_file_city Charlotte Douglas Location of weather station from specific weather file used for the building energy simulation is Charlotte Douglas +in.weather_file_city Charlottesville Alb Location of weather station from specific weather file used for the building energy simulation is Charlottesville Alb +in.weather_file_city Chattanooga Lovell Location of weather station from specific weather file used for the building energy simulation is Chattanooga Lovell +in.weather_file_city Cherry Capital Location of weather station from specific weather file used for the building energy simulation is Cherry Capital +in.weather_file_city Cherry Point Mcas Location of weather station from specific weather file used for the building energy simulation is Cherry Point Mcas +in.weather_file_city Chesapeake Location of weather station from specific weather file used for the building energy simulation is Chesapeake +in.weather_file_city Cheyenne Warren Afb Location of weather station from specific weather file used for the building energy simulation is Cheyenne Warren Afb +in.weather_file_city Chicago Midway Location of weather station from specific weather file used for the building energy simulation is Chicago Midway +in.weather_file_city Chicago Waukegan Location of weather station from specific weather file used for the building energy simulation is Chicago Waukegan +in.weather_file_city Chicopee Falls West Location of weather station from specific weather file used for the building energy simulation is Chicopee Falls West +in.weather_file_city Childress Municipal Location of weather station from specific weather file used for the building energy simulation is Childress Municipal +in.weather_file_city Chippewa Valley Rgn Location of weather station from specific weather file used for the building energy simulation is Chippewa Valley Rgn +in.weather_file_city Cincinnati Greater Location of weather station from specific weather file used for the building energy simulation is Cincinnati Greater +in.weather_file_city Cincinnati Muni Lun Location of weather station from specific weather file used for the building energy simulation is Cincinnati Muni Lun +in.weather_file_city Clarion Muni Location of weather station from specific weather file used for the building energy simulation is Clarion Muni +in.weather_file_city Clayton Muni Amos Location of weather station from specific weather file used for the building energy simulation is Clayton Muni Amos +in.weather_file_city Clearfield Lawrence Location of weather station from specific weather file used for the building energy simulation is Clearfield Lawrence +in.weather_file_city Cleveland Location of weather station from specific weather file used for the building energy simulation is Cleveland +in.weather_file_city Clines Corners Location of weather station from specific weather file used for the building energy simulation is Clines Corners +in.weather_file_city Clinton Muni Location of weather station from specific weather file used for the building energy simulation is Clinton Muni +in.weather_file_city Clinton Sherman Location of weather station from specific weather file used for the building energy simulation is Clinton Sherman +in.weather_file_city Clintonville Muni Location of weather station from specific weather file used for the building energy simulation is Clintonville Muni +in.weather_file_city Cloquet Carlton Co Location of weather station from specific weather file used for the building energy simulation is Cloquet Carlton Co +in.weather_file_city Clovis Muni Location of weather station from specific weather file used for the building energy simulation is Clovis Muni +in.weather_file_city Cody Muni Awos Location of weather station from specific weather file used for the building energy simulation is Cody Muni Awos +in.weather_file_city Coeur D Alene Air Te Location of weather station from specific weather file used for the building energy simulation is Coeur D Alene Air Te +in.weather_file_city Coffeyville Muni Location of weather station from specific weather file used for the building energy simulation is Coffeyville Muni +in.weather_file_city Col James Jabara Location of weather station from specific weather file used for the building energy simulation is Col James Jabara +in.weather_file_city Cold Bay Location of weather station from specific weather file used for the building energy simulation is Cold Bay +in.weather_file_city Coles Co Mem Location of weather station from specific weather file used for the building energy simulation is Coles Co Mem +in.weather_file_city Collin Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Collin Co Rgnl +in.weather_file_city Colorado Plains Rgnl Location of weather station from specific weather file used for the building energy simulation is Colorado Plains Rgnl +in.weather_file_city Colorado Springs Mu Location of weather station from specific weather file used for the building energy simulation is Colorado Springs Mu +in.weather_file_city Columbia Gorge Rgnl Location of weather station from specific weather file used for the building energy simulation is Columbia Gorge Rgnl +in.weather_file_city Columbia Metro Location of weather station from specific weather file used for the building energy simulation is Columbia Metro +in.weather_file_city Columbia Owens Apt Location of weather station from specific weather file used for the building energy simulation is Columbia Owens Apt +in.weather_file_city Columbia Regional Location of weather station from specific weather file used for the building energy simulation is Columbia Regional +in.weather_file_city Columbus Afb Location of weather station from specific weather file used for the building energy simulation is Columbus Afb +in.weather_file_city Columbus Metropolit Location of weather station from specific weather file used for the building energy simulation is Columbus Metropolit +in.weather_file_city Columbus Muni Location of weather station from specific weather file used for the building energy simulation is Columbus Muni +in.weather_file_city Columbus Port Colum Location of weather station from specific weather file used for the building energy simulation is Columbus Port Colum +in.weather_file_city Concord Buchanan Location of weather station from specific weather file used for the building energy simulation is Concord Buchanan +in.weather_file_city Concord Municipal Location of weather station from specific weather file used for the building energy simulation is Concord Municipal +in.weather_file_city Concordia Blosser M Location of weather station from specific weather file used for the building energy simulation is Concordia Blosser M +in.weather_file_city Converse Co Location of weather station from specific weather file used for the building energy simulation is Converse Co +in.weather_file_city Copper Harbor Location of weather station from specific weather file used for the building energy simulation is Copper Harbor +in.weather_file_city Corpus Christi Int Location of weather station from specific weather file used for the building energy simulation is Corpus Christi Int +in.weather_file_city Cortez Muni Location of weather station from specific weather file used for the building energy simulation is Cortez Muni +in.weather_file_city Corvallis Muni Location of weather station from specific weather file used for the building energy simulation is Corvallis Muni +in.weather_file_city Cotulla Lasalle Co Location of weather station from specific weather file used for the building energy simulation is Cotulla Lasalle Co +in.weather_file_city Council Bluffs Muni Location of weather station from specific weather file used for the building energy simulation is Council Bluffs Muni +in.weather_file_city Cox Fld Location of weather station from specific weather file used for the building energy simulation is Cox Fld +in.weather_file_city Craig Moffat Location of weather station from specific weather file used for the building energy simulation is Craig Moffat +in.weather_file_city Craven Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Craven Co Rgnl +in.weather_file_city Creston Muni Location of weather station from specific weather file used for the building energy simulation is Creston Muni +in.weather_file_city Crookston Muni Kirkw Location of weather station from specific weather file used for the building energy simulation is Crookston Muni Kirkw +in.weather_file_city Cross City Cross Ci Location of weather station from specific weather file used for the building energy simulation is Cross City Cross Ci +in.weather_file_city Crossville Mem Whit Location of weather station from specific weather file used for the building energy simulation is Crossville Mem Whit +in.weather_file_city Crystal Location of weather station from specific weather file used for the building energy simulation is Crystal +in.weather_file_city Culpeper Rgnl Location of weather station from specific weather file used for the building energy simulation is Culpeper Rgnl +in.weather_file_city Custer Location of weather station from specific weather file used for the building energy simulation is Custer +in.weather_file_city Custer County Location of weather station from specific weather file used for the building energy simulation is Custer County +in.weather_file_city Cut Bank Muni Location of weather station from specific weather file used for the building energy simulation is Cut Bank Muni +in.weather_file_city Dalhart Municipal Location of weather station from specific weather file used for the building energy simulation is Dalhart Municipal +in.weather_file_city Dallas Hensley Field Nas Location of weather station from specific weather file used for the building energy simulation is Dallas Hensley Field Nas +in.weather_file_city Dallas Love Fld Location of weather station from specific weather file used for the building energy simulation is Dallas Love Fld +in.weather_file_city Dalton Location of weather station from specific weather file used for the building energy simulation is Dalton +in.weather_file_city Danbury Muni Arpt Location of weather station from specific weather file used for the building energy simulation is Danbury Muni Arpt +in.weather_file_city Daniel Field Location of weather station from specific weather file used for the building energy simulation is Daniel Field +in.weather_file_city Danville Rgnl Location of weather station from specific weather file used for the building energy simulation is Danville Rgnl +in.weather_file_city Dare Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Dare Co Rgnl +in.weather_file_city Davenport Muni Location of weather station from specific weather file used for the building energy simulation is Davenport Muni +in.weather_file_city Davis Monthan Afb Location of weather station from specific weather file used for the building energy simulation is Davis Monthan Afb +in.weather_file_city Davison Aaf Location of weather station from specific weather file used for the building energy simulation is Davison Aaf +in.weather_file_city Dawson Community Location of weather station from specific weather file used for the building energy simulation is Dawson Community +in.weather_file_city Dayton James M Cox Location of weather station from specific weather file used for the building energy simulation is Dayton James M Cox +in.weather_file_city Dayton Wright Brothe Location of weather station from specific weather file used for the building energy simulation is Dayton Wright Brothe +in.weather_file_city Dayton Wright Patte Location of weather station from specific weather file used for the building energy simulation is Dayton Wright Patte +in.weather_file_city Daytona Beach Intl Location of weather station from specific weather file used for the building energy simulation is Daytona Beach Intl +in.weather_file_city Decatur Location of weather station from specific weather file used for the building energy simulation is Decatur +in.weather_file_city Decorah Muni Location of weather station from specific weather file used for the building energy simulation is Decorah Muni +in.weather_file_city Deer Park Arpt Location of weather station from specific weather file used for the building energy simulation is Deer Park Arpt +in.weather_file_city Defiance Memorial Location of weather station from specific weather file used for the building energy simulation is Defiance Memorial +in.weather_file_city Dekalb Peachtree Location of weather station from specific weather file used for the building energy simulation is Dekalb Peachtree +in.weather_file_city Del Rio Intl Location of weather station from specific weather file used for the building energy simulation is Del Rio Intl +in.weather_file_city Delaware Co Johnson Location of weather station from specific weather file used for the building energy simulation is Delaware Co Johnson +in.weather_file_city Delta Co Location of weather station from specific weather file used for the building energy simulation is Delta Co +in.weather_file_city Deming Muni Location of weather station from specific weather file used for the building energy simulation is Deming Muni +in.weather_file_city Denison Municipal Location of weather station from specific weather file used for the building energy simulation is Denison Municipal +in.weather_file_city Denton Muni Location of weather station from specific weather file used for the building energy simulation is Denton Muni +in.weather_file_city Denver Internationa Location of weather station from specific weather file used for the building energy simulation is Denver Internationa +in.weather_file_city Derby Fld Location of weather station from specific weather file used for the building energy simulation is Derby Fld +in.weather_file_city Des Moines Intl Location of weather station from specific weather file used for the building energy simulation is Des Moines Intl +in.weather_file_city Desert Rock Location of weather station from specific weather file used for the building energy simulation is Desert Rock +in.weather_file_city Destin Ft Walton Location of weather station from specific weather file used for the building energy simulation is Destin Ft Walton +in.weather_file_city Detroit Lakes Wethin Location of weather station from specific weather file used for the building energy simulation is Detroit Lakes Wethin +in.weather_file_city Detroit Metropolita Location of weather station from specific weather file used for the building energy simulation is Detroit Metropolita +in.weather_file_city Devils Lake Muni Location of weather station from specific weather file used for the building energy simulation is Devils Lake Muni +in.weather_file_city Dickinson Muni Location of weather station from specific weather file used for the building energy simulation is Dickinson Muni +in.weather_file_city Dillant Hopkins Location of weather station from specific weather file used for the building energy simulation is Dillant Hopkins +in.weather_file_city Dillingham Muni Location of weather station from specific weather file used for the building energy simulation is Dillingham Muni +in.weather_file_city Dillon Airport Location of weather station from specific weather file used for the building energy simulation is Dillon Airport +in.weather_file_city Dinwiddie Co Location of weather station from specific weather file used for the building energy simulation is Dinwiddie Co +in.weather_file_city Dodge City Awos Location of weather station from specific weather file used for the building energy simulation is Dodge City Awos +in.weather_file_city Dodge Co Location of weather station from specific weather file used for the building energy simulation is Dodge Co +in.weather_file_city Door Co Cherryland Location of weather station from specific weather file used for the building energy simulation is Door Co Cherryland +in.weather_file_city Dothan Rgnl Location of weather station from specific weather file used for the building energy simulation is Dothan Rgnl +in.weather_file_city Dover Afb Location of weather station from specific weather file used for the building energy simulation is Dover Afb +in.weather_file_city Doylestown Location of weather station from specific weather file used for the building energy simulation is Doylestown +in.weather_file_city Drake Fld Location of weather station from specific weather file used for the building energy simulation is Drake Fld +in.weather_file_city Draughon Miller Cen Location of weather station from specific weather file used for the building energy simulation is Draughon Miller Cen +in.weather_file_city Du Bois Jefferson C Location of weather station from specific weather file used for the building energy simulation is Du Bois Jefferson C +in.weather_file_city Dublin New Riv Vlly Location of weather station from specific weather file used for the building energy simulation is Dublin New Riv Vlly +in.weather_file_city Dubuque Municipal Location of weather station from specific weather file used for the building energy simulation is Dubuque Municipal +in.weather_file_city Duluth Intl Airport Location of weather station from specific weather file used for the building energy simulation is Duluth Intl Airport +in.weather_file_city Dunkirk Location of weather station from specific weather file used for the building energy simulation is Dunkirk +in.weather_file_city Dupage Location of weather station from specific weather file used for the building energy simulation is Dupage +in.weather_file_city Durango La Plata Co Location of weather station from specific weather file used for the building energy simulation is Durango La Plata Co +in.weather_file_city Dutch Harbor Location of weather station from specific weather file used for the building energy simulation is Dutch Harbor +in.weather_file_city Dutchess Co Location of weather station from specific weather file used for the building energy simulation is Dutchess Co +in.weather_file_city Dyersburg Muni Location of weather station from specific weather file used for the building energy simulation is Dyersburg Muni +in.weather_file_city Eagle Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Eagle Co Rgnl +in.weather_file_city Eagle Creek Airpark Location of weather station from specific weather file used for the building energy simulation is Eagle Creek Airpark +in.weather_file_city Eagle River Union Location of weather station from specific weather file used for the building energy simulation is Eagle River Union +in.weather_file_city Eastern Slopes Rgnl Location of weather station from specific weather file used for the building energy simulation is Eastern Slopes Rgnl +in.weather_file_city Eastern Wv Rgnl She Location of weather station from specific weather file used for the building energy simulation is Eastern Wv Rgnl She +in.weather_file_city Easterwood Fld Location of weather station from specific weather file used for the building energy simulation is Easterwood Fld +in.weather_file_city Edward F Knapp State Location of weather station from specific weather file used for the building energy simulation is Edward F Knapp State +in.weather_file_city El Paso Intl Arpt Location of weather station from specific weather file used for the building energy simulation is El Paso Intl Arpt +in.weather_file_city El Toro Mcas Location of weather station from specific weather file used for the building energy simulation is El Toro Mcas +in.weather_file_city Elizabeth City Cgas Location of weather station from specific weather file used for the building energy simulation is Elizabeth City Cgas +in.weather_file_city Elkhart Morton Co Location of weather station from specific weather file used for the building energy simulation is Elkhart Morton Co +in.weather_file_city Elkins Randolph Cou Location of weather station from specific weather file used for the building energy simulation is Elkins Randolph Cou +in.weather_file_city Elko Rgnl Location of weather station from specific weather file used for the building energy simulation is Elko Rgnl +in.weather_file_city Ellsworth Afb Location of weather station from specific weather file used for the building energy simulation is Ellsworth Afb +in.weather_file_city Elmira Corning Rgnl Location of weather station from specific weather file used for the building energy simulation is Elmira Corning Rgnl +in.weather_file_city Ely Arpt Yelland Fld Location of weather station from specific weather file used for the building energy simulation is Ely Arpt Yelland Fld +in.weather_file_city Emporia Muni Location of weather station from specific weather file used for the building energy simulation is Emporia Muni +in.weather_file_city Erie Intl Airport Location of weather station from specific weather file used for the building energy simulation is Erie Intl Airport +in.weather_file_city Ernest A Love Fld Location of weather station from specific weather file used for the building energy simulation is Ernest A Love Fld +in.weather_file_city Esler Rgnl Location of weather station from specific weather file used for the building energy simulation is Esler Rgnl +in.weather_file_city Essex Co Location of weather station from specific weather file used for the building energy simulation is Essex Co +in.weather_file_city Estherville Muni Location of weather station from specific weather file used for the building energy simulation is Estherville Muni +in.weather_file_city Eugene Mahlon Sweet Location of weather station from specific weather file used for the building energy simulation is Eugene Mahlon Sweet +in.weather_file_city Eureka Ramos Location of weather station from specific weather file used for the building energy simulation is Eureka Ramos +in.weather_file_city Evansville Regional Location of weather station from specific weather file used for the building energy simulation is Evansville Regional +in.weather_file_city Executive Location of weather station from specific weather file used for the building energy simulation is Executive +in.weather_file_city Fairchild Afb Location of weather station from specific weather file used for the building energy simulation is Fairchild Afb +in.weather_file_city Fairfield Co Location of weather station from specific weather file used for the building energy simulation is Fairfield Co +in.weather_file_city Fairfield Muni Location of weather station from specific weather file used for the building energy simulation is Fairfield Muni +in.weather_file_city Fairfield Travis Af Location of weather station from specific weather file used for the building energy simulation is Fairfield Travis Af +in.weather_file_city Fairmont Muni Awos Location of weather station from specific weather file used for the building energy simulation is Fairmont Muni Awos +in.weather_file_city Fallon Nas Location of weather station from specific weather file used for the building energy simulation is Fallon Nas +in.weather_file_city Falls City Brenner Location of weather station from specific weather file used for the building energy simulation is Falls City Brenner +in.weather_file_city Fargo Hector Field Location of weather station from specific weather file used for the building energy simulation is Fargo Hector Field +in.weather_file_city Farmington Rgnl Location of weather station from specific weather file used for the building energy simulation is Farmington Rgnl +in.weather_file_city Farmville Rgnl Location of weather station from specific weather file used for the building energy simulation is Farmville Rgnl +in.weather_file_city Fayette Rgnl Air Ctr Location of weather station from specific weather file used for the building energy simulation is Fayette Rgnl Air Ctr +in.weather_file_city Fayetteville Rgnl G Location of weather station from specific weather file used for the building energy simulation is Fayetteville Rgnl G +in.weather_file_city Felts Fld Location of weather station from specific weather file used for the building energy simulation is Felts Fld +in.weather_file_city Findlay Location of weather station from specific weather file used for the building energy simulation is Findlay +in.weather_file_city Flagstaff Airport Location of weather station from specific weather file used for the building energy simulation is Flagstaff Airport +in.weather_file_city Flint Bishop Intl Location of weather station from specific weather file used for the building energy simulation is Flint Bishop Intl +in.weather_file_city Florence Rgnl Location of weather station from specific weather file used for the building energy simulation is Florence Rgnl +in.weather_file_city Florida Keys Maratho Location of weather station from specific weather file used for the building energy simulation is Florida Keys Maratho +in.weather_file_city Floyd Bennett Mem Location of weather station from specific weather file used for the building energy simulation is Floyd Bennett Mem +in.weather_file_city Flying Cloud Location of weather station from specific weather file used for the building energy simulation is Flying Cloud +in.weather_file_city Fond Du Lac Co Location of weather station from specific weather file used for the building energy simulation is Fond Du Lac Co +in.weather_file_city Forbes Fld Location of weather station from specific weather file used for the building energy simulation is Forbes Fld +in.weather_file_city Ford Location of weather station from specific weather file used for the building energy simulation is Ford +in.weather_file_city Fort Benning Location of weather station from specific weather file used for the building energy simulation is Fort Benning +in.weather_file_city Fort Bragg Simmons Location of weather station from specific weather file used for the building energy simulation is Fort Bragg Simmons +in.weather_file_city Fort Campbell Aaf Location of weather station from specific weather file used for the building energy simulation is Fort Campbell Aaf +in.weather_file_city Fort Dodge Awos Location of weather station from specific weather file used for the building energy simulation is Fort Dodge Awos +in.weather_file_city Fort Drum Wheeler S Location of weather station from specific weather file used for the building energy simulation is Fort Drum Wheeler S +in.weather_file_city Fort Knox Godman Location of weather station from specific weather file used for the building energy simulation is Fort Knox Godman +in.weather_file_city Fort Lauderdale Exec Location of weather station from specific weather file used for the building energy simulation is Fort Lauderdale Exec +in.weather_file_city Fort Lewis Gray Aaf Location of weather station from specific weather file used for the building energy simulation is Fort Lewis Gray Aaf +in.weather_file_city Fort Myers Page Fld Location of weather station from specific weather file used for the building energy simulation is Fort Myers Page Fld +in.weather_file_city Fort Polk Army Location of weather station from specific weather file used for the building energy simulation is Fort Polk Army +in.weather_file_city Fort Sill Location of weather station from specific weather file used for the building energy simulation is Fort Sill +in.weather_file_city Fort Smith Muni Location of weather station from specific weather file used for the building energy simulation is Fort Smith Muni +in.weather_file_city Fort Stockton Pecos Location of weather station from specific weather file used for the building energy simulation is Fort Stockton Pecos +in.weather_file_city Fort Wayne Baer Fld Location of weather station from specific weather file used for the building energy simulation is Fort Wayne Baer Fld +in.weather_file_city Fort Worth Alliance Location of weather station from specific weather file used for the building energy simulation is Fort Worth Alliance +in.weather_file_city Fort Worth Meacham Location of weather station from specific weather file used for the building energy simulation is Fort Worth Meacham +in.weather_file_city Four Corners Rgnl Location of weather station from specific weather file used for the building energy simulation is Four Corners Rgnl +in.weather_file_city Franklin Muni Jb Ros Location of weather station from specific weather file used for the building energy simulation is Franklin Muni Jb Ros +in.weather_file_city Frederick Muni Location of weather station from specific weather file used for the building energy simulation is Frederick Muni +in.weather_file_city Fremont Muni Location of weather station from specific weather file used for the building energy simulation is Fremont Muni +in.weather_file_city Fresno Air Terminal Location of weather station from specific weather file used for the building energy simulation is Fresno Air Terminal +in.weather_file_city Friday Harbor Location of weather station from specific weather file used for the building energy simulation is Friday Harbor +in.weather_file_city Frying Pan Shoals Location of weather station from specific weather file used for the building energy simulation is Frying Pan Shoals +in.weather_file_city Ft Riley Marshall Location of weather station from specific weather file used for the building energy simulation is Ft Riley Marshall +in.weather_file_city Fulton Co Arpt Brow Location of weather station from specific weather file used for the building energy simulation is Fulton Co Arpt Brow +in.weather_file_city Gadsden Muni Location of weather station from specific weather file used for the building energy simulation is Gadsden Muni +in.weather_file_city Gage Shattuck Location of weather station from specific weather file used for the building energy simulation is Gage Shattuck +in.weather_file_city Gainesville Rgnl Location of weather station from specific weather file used for the building energy simulation is Gainesville Rgnl +in.weather_file_city Gallatin Fld Location of weather station from specific weather file used for the building energy simulation is Gallatin Fld +in.weather_file_city Gallup Muni Location of weather station from specific weather file used for the building energy simulation is Gallup Muni +in.weather_file_city Galveston Location of weather station from specific weather file used for the building energy simulation is Galveston +in.weather_file_city Garden City Rgnl Location of weather station from specific weather file used for the building energy simulation is Garden City Rgnl +in.weather_file_city Garfield Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Garfield Co Rgnl +in.weather_file_city Garrison Location of weather station from specific weather file used for the building energy simulation is Garrison +in.weather_file_city Gastonia Muni Location of weather station from specific weather file used for the building energy simulation is Gastonia Muni +in.weather_file_city Gaylord Rgnl Location of weather station from specific weather file used for the building energy simulation is Gaylord Rgnl +in.weather_file_city Georgetown Muni Location of weather station from specific weather file used for the building energy simulation is Georgetown Muni +in.weather_file_city Gillette Gillette C Location of weather station from specific weather file used for the building energy simulation is Gillette Gillette C +in.weather_file_city Glasgow Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Glasgow Intl Arpt +in.weather_file_city Glenwood Muni Location of weather station from specific weather file used for the building energy simulation is Glenwood Muni +in.weather_file_city Gocebic Iron Co Location of weather station from specific weather file used for the building energy simulation is Gocebic Iron Co +in.weather_file_city Goodland Renner Fie Location of weather station from specific weather file used for the building energy simulation is Goodland Renner Fie +in.weather_file_city Grand Forks Afb Location of weather station from specific weather file used for the building energy simulation is Grand Forks Afb +in.weather_file_city Grand Forks Intl Location of weather station from specific weather file used for the building energy simulation is Grand Forks Intl +in.weather_file_city Grand Island County Location of weather station from specific weather file used for the building energy simulation is Grand Island County +in.weather_file_city Grand Junction Walk Location of weather station from specific weather file used for the building energy simulation is Grand Junction Walk +in.weather_file_city Grand Marias Location of weather station from specific weather file used for the building energy simulation is Grand Marias +in.weather_file_city Grand Rapids Itasca Location of weather station from specific weather file used for the building energy simulation is Grand Rapids Itasca +in.weather_file_city Grand Rapids Kent C Location of weather station from specific weather file used for the building energy simulation is Grand Rapids Kent C +in.weather_file_city Gratiot Community Location of weather station from specific weather file used for the building energy simulation is Gratiot Community +in.weather_file_city Great Bend Muni Location of weather station from specific weather file used for the building energy simulation is Great Bend Muni +in.weather_file_city Great Falls Intl Location of weather station from specific weather file used for the building energy simulation is Great Falls Intl +in.weather_file_city Greater Buffalo Int Location of weather station from specific weather file used for the building energy simulation is Greater Buffalo Int +in.weather_file_city Greater Peoria Muni Location of weather station from specific weather file used for the building energy simulation is Greater Peoria Muni +in.weather_file_city Greater Pittsburgh I Location of weather station from specific weather file used for the building energy simulation is Greater Pittsburgh I +in.weather_file_city Greater Rockford Location of weather station from specific weather file used for the building energy simulation is Greater Rockford +in.weather_file_city Greeley Weld Co Location of weather station from specific weather file used for the building energy simulation is Greeley Weld Co +in.weather_file_city Green Bay A Straub Location of weather station from specific weather file used for the building energy simulation is Green Bay A Straub +in.weather_file_city Greenbrier Valley Location of weather station from specific weather file used for the building energy simulation is Greenbrier Valley +in.weather_file_city Greensboro G High Location of weather station from specific weather file used for the building energy simulation is Greensboro G High +in.weather_file_city Greenville Location of weather station from specific weather file used for the building energy simulation is Greenville +in.weather_file_city Greenville Greenvil Location of weather station from specific weather file used for the building energy simulation is Greenville Greenvil +in.weather_file_city Greenwood Co Location of weather station from specific weather file used for the building energy simulation is Greenwood Co +in.weather_file_city Greenwood Leflore Location of weather station from specific weather file used for the building energy simulation is Greenwood Leflore +in.weather_file_city Grider Fld Location of weather station from specific weather file used for the building energy simulation is Grider Fld +in.weather_file_city Griffiss Airpark Location of weather station from specific weather file used for the building energy simulation is Griffiss Airpark +in.weather_file_city Grissom Arb Location of weather station from specific weather file used for the building energy simulation is Grissom Arb +in.weather_file_city Gulfport Biloxi Int Location of weather station from specific weather file used for the building energy simulation is Gulfport Biloxi Int +in.weather_file_city Gunnison Co Awos Location of weather station from specific weather file used for the building energy simulation is Gunnison Co Awos +in.weather_file_city Gustavus Location of weather station from specific weather file used for the building energy simulation is Gustavus +in.weather_file_city Guthrie Muni Location of weather station from specific weather file used for the building energy simulation is Guthrie Muni +in.weather_file_city Hagerstown Rgnl Ric Location of weather station from specific weather file used for the building energy simulation is Hagerstown Rgnl Ric +in.weather_file_city Haines Location of weather station from specific weather file used for the building energy simulation is Haines +in.weather_file_city Halifax Co Location of weather station from specific weather file used for the building energy simulation is Halifax Co +in.weather_file_city Hallock Muni Location of weather station from specific weather file used for the building energy simulation is Hallock Muni +in.weather_file_city Hancock Co Bar Harbo Location of weather station from specific weather file used for the building energy simulation is Hancock Co Bar Harbo +in.weather_file_city Hanford Location of weather station from specific weather file used for the building energy simulation is Hanford +in.weather_file_city Hanford Muni Location of weather station from specific weather file used for the building energy simulation is Hanford Muni +in.weather_file_city Hanover Co Muni Location of weather station from specific weather file used for the building energy simulation is Hanover Co Muni +in.weather_file_city Harriman And West Location of weather station from specific weather file used for the building energy simulation is Harriman And West +in.weather_file_city Harrisburg Capital Location of weather station from specific weather file used for the building energy simulation is Harrisburg Capital +in.weather_file_city Harrisburg Intl Location of weather station from specific weather file used for the building energy simulation is Harrisburg Intl +in.weather_file_city Harrison Marion Rgn Location of weather station from specific weather file used for the building energy simulation is Harrison Marion Rgn +in.weather_file_city Harry Clever Fld Location of weather station from specific weather file used for the building energy simulation is Harry Clever Fld +in.weather_file_city Harry P Williams Mem Location of weather station from specific weather file used for the building energy simulation is Harry P Williams Mem +in.weather_file_city Hartford Brainard Location of weather station from specific weather file used for the building energy simulation is Hartford Brainard +in.weather_file_city Hartness State Location of weather station from specific weather file used for the building energy simulation is Hartness State +in.weather_file_city Hartnett County Location of weather station from specific weather file used for the building energy simulation is Hartnett County +in.weather_file_city Hastings Muni Location of weather station from specific weather file used for the building energy simulation is Hastings Muni +in.weather_file_city Hattiesburg Laurel Location of weather station from specific weather file used for the building energy simulation is Hattiesburg Laurel +in.weather_file_city Havre Amos Location of weather station from specific weather file used for the building energy simulation is Havre Amos +in.weather_file_city Hayden Yampa Awos Location of weather station from specific weather file used for the building energy simulation is Hayden Yampa Awos +in.weather_file_city Hays Rgnl Location of weather station from specific weather file used for the building energy simulation is Hays Rgnl +in.weather_file_city Hayward Air Term Location of weather station from specific weather file used for the building energy simulation is Hayward Air Term +in.weather_file_city Helena Regional Location of weather station from specific weather file used for the building energy simulation is Helena Regional +in.weather_file_city Henderson City Co Location of weather station from specific weather file used for the building energy simulation is Henderson City Co +in.weather_file_city Hermiston Muni Location of weather station from specific weather file used for the building energy simulation is Hermiston Muni +in.weather_file_city Hernando Co Location of weather station from specific weather file used for the building energy simulation is Hernando Co +in.weather_file_city Hettinger Muni Location of weather station from specific weather file used for the building energy simulation is Hettinger Muni +in.weather_file_city Hickory Rgnl Location of weather station from specific weather file used for the building energy simulation is Hickory Rgnl +in.weather_file_city Hill Afb Location of weather station from specific weather file used for the building energy simulation is Hill Afb +in.weather_file_city Hill City Muni Location of weather station from specific weather file used for the building energy simulation is Hill City Muni +in.weather_file_city Hillsdale Municipal Location of weather station from specific weather file used for the building energy simulation is Hillsdale Municipal +in.weather_file_city Hobart Muni Location of weather station from specific weather file used for the building energy simulation is Hobart Muni +in.weather_file_city Homer Location of weather station from specific weather file used for the building energy simulation is Homer +in.weather_file_city Hondo Muni Location of weather station from specific weather file used for the building energy simulation is Hondo Muni +in.weather_file_city Honolulu Intl Location of weather station from specific weather file used for the building energy simulation is Honolulu Intl +in.weather_file_city Houghton County Location of weather station from specific weather file used for the building energy simulation is Houghton County +in.weather_file_city Houghton Lake Rosco Location of weather station from specific weather file used for the building energy simulation is Houghton Lake Rosco +in.weather_file_city Houston Dw Hooks Location of weather station from specific weather file used for the building energy simulation is Houston Dw Hooks +in.weather_file_city Houston Ellington Location of weather station from specific weather file used for the building energy simulation is Houston Ellington +in.weather_file_city Houston Intercontin Location of weather station from specific weather file used for the building energy simulation is Houston Intercontin +in.weather_file_city Hunter Aaf Location of weather station from specific weather file used for the building energy simulation is Hunter Aaf +in.weather_file_city Huntingburg Location of weather station from specific weather file used for the building energy simulation is Huntingburg +in.weather_file_city Huntington Tri Stat Location of weather station from specific weather file used for the building energy simulation is Huntington Tri Stat +in.weather_file_city Huntsville Location of weather station from specific weather file used for the building energy simulation is Huntsville +in.weather_file_city Huntsville Madison Location of weather station from specific weather file used for the building energy simulation is Huntsville Madison +in.weather_file_city Huron Co Mem Location of weather station from specific weather file used for the building energy simulation is Huron Co Mem +in.weather_file_city Huron Huron Regiona Location of weather station from specific weather file used for the building energy simulation is Huron Huron Regiona +in.weather_file_city Hutchinson Co Location of weather station from specific weather file used for the building energy simulation is Hutchinson Co +in.weather_file_city Hutchinson Muni Location of weather station from specific weather file used for the building energy simulation is Hutchinson Muni +in.weather_file_city Hutchinson Muni Butl Location of weather station from specific weather file used for the building energy simulation is Hutchinson Muni Butl +in.weather_file_city Idaho Falls Rgnl Location of weather station from specific weather file used for the building energy simulation is Idaho Falls Rgnl +in.weather_file_city Iliamna Iliamna Air Location of weather station from specific weather file used for the building energy simulation is Iliamna Iliamna Air +in.weather_file_city Imperial Co Location of weather station from specific weather file used for the building energy simulation is Imperial Co +in.weather_file_city Indiana Co Location of weather station from specific weather file used for the building energy simulation is Indiana Co +in.weather_file_city Indianapolis I Mun Location of weather station from specific weather file used for the building energy simulation is Indianapolis I Mun +in.weather_file_city Ingalls Fld Location of weather station from specific weather file used for the building energy simulation is Ingalls Fld +in.weather_file_city International Falls Location of weather station from specific weather file used for the building energy simulation is International Falls +in.weather_file_city Iowa City Muni Location of weather station from specific weather file used for the building energy simulation is Iowa City Muni +in.weather_file_city Iowa Co Location of weather station from specific weather file used for the building energy simulation is Iowa Co +in.weather_file_city J F Kennedy Memorial Location of weather station from specific weather file used for the building energy simulation is J F Kennedy Memorial +in.weather_file_city J L Helms Sevier Co Location of weather station from specific weather file used for the building energy simulation is J L Helms Sevier Co +in.weather_file_city Jack Mc Namara Fld Location of weather station from specific weather file used for the building energy simulation is Jack Mc Namara Fld +in.weather_file_city Jackson Allen C Th Location of weather station from specific weather file used for the building energy simulation is Jackson Allen C Th +in.weather_file_city Jackson Carroll Arpt Location of weather station from specific weather file used for the building energy simulation is Jackson Carroll Arpt +in.weather_file_city Jackson Co Reynolds Location of weather station from specific weather file used for the building energy simulation is Jackson Co Reynolds +in.weather_file_city Jackson Hole Location of weather station from specific weather file used for the building energy simulation is Jackson Hole +in.weather_file_city Jackson Muni Location of weather station from specific weather file used for the building energy simulation is Jackson Muni +in.weather_file_city Jacksonville Awos Location of weather station from specific weather file used for the building energy simulation is Jacksonville Awos +in.weather_file_city Jacksonville Intnl Location of weather station from specific weather file used for the building energy simulation is Jacksonville Intnl +in.weather_file_city Jacksonville Muni Location of weather station from specific weather file used for the building energy simulation is Jacksonville Muni +in.weather_file_city Jacksonville Nas Location of weather station from specific weather file used for the building energy simulation is Jacksonville Nas +in.weather_file_city Jamestown Rgnl Location of weather station from specific weather file used for the building energy simulation is Jamestown Rgnl +in.weather_file_city Jefferson City Mem Location of weather station from specific weather file used for the building energy simulation is Jefferson City Mem +in.weather_file_city Jerome Co Location of weather station from specific weather file used for the building energy simulation is Jerome Co +in.weather_file_city John H Batten Location of weather station from specific weather file used for the building energy simulation is John H Batten +in.weather_file_city John Murtha Johnsto Location of weather station from specific weather file used for the building energy simulation is John Murtha Johnsto +in.weather_file_city Johnson Co Location of weather station from specific weather file used for the building energy simulation is Johnson Co +in.weather_file_city Johnson Co Executive Location of weather station from specific weather file used for the building energy simulation is Johnson Co Executive +in.weather_file_city Johnson Co Industr Location of weather station from specific weather file used for the building energy simulation is Johnson Co Industr +in.weather_file_city Joliet Rgnl Location of weather station from specific weather file used for the building energy simulation is Joliet Rgnl +in.weather_file_city Jonesboro Muni Location of weather station from specific weather file used for the building energy simulation is Jonesboro Muni +in.weather_file_city Joplin Rgnl Location of weather station from specific weather file used for the building energy simulation is Joplin Rgnl +in.weather_file_city Jordan Location of weather station from specific weather file used for the building energy simulation is Jordan +in.weather_file_city Joslin Fld Magic Va Location of weather station from specific weather file used for the building energy simulation is Joslin Fld Magic Va +in.weather_file_city Juneau Location of weather station from specific weather file used for the building energy simulation is Juneau +in.weather_file_city Kalamazoo Battle Cr Location of weather station from specific weather file used for the building energy simulation is Kalamazoo Battle Cr +in.weather_file_city Kalispell Glacier P Location of weather station from specific weather file used for the building energy simulation is Kalispell Glacier P +in.weather_file_city Kansas City Intl Location of weather station from specific weather file used for the building energy simulation is Kansas City Intl +in.weather_file_city Kearney Muni Location of weather station from specific weather file used for the building energy simulation is Kearney Muni +in.weather_file_city Kenosha Rgnl Location of weather station from specific weather file used for the building energy simulation is Kenosha Rgnl +in.weather_file_city Keokuk Muni Location of weather station from specific weather file used for the building energy simulation is Keokuk Muni +in.weather_file_city Ketchikan Intl Location of weather station from specific weather file used for the building energy simulation is Ketchikan Intl +in.weather_file_city Killeen Muni Awos Location of weather station from specific weather file used for the building energy simulation is Killeen Muni Awos +in.weather_file_city Kimble Co Location of weather station from specific weather file used for the building energy simulation is Kimble Co +in.weather_file_city King Salmon Location of weather station from specific weather file used for the building energy simulation is King Salmon +in.weather_file_city Kingman Location of weather station from specific weather file used for the building energy simulation is Kingman +in.weather_file_city Kingsville Nas Location of weather station from specific weather file used for the building energy simulation is Kingsville Nas +in.weather_file_city Kirksville Rgnl Location of weather station from specific weather file used for the building energy simulation is Kirksville Rgnl +in.weather_file_city Kirsch Muni Location of weather station from specific weather file used for the building energy simulation is Kirsch Muni +in.weather_file_city Kit Carson County Location of weather station from specific weather file used for the building energy simulation is Kit Carson County +in.weather_file_city Klamath Falls Location of weather station from specific weather file used for the building energy simulation is Klamath Falls +in.weather_file_city Knoxville Location of weather station from specific weather file used for the building energy simulation is Knoxville +in.weather_file_city Knoxville Municipal Location of weather station from specific weather file used for the building energy simulation is Knoxville Municipal +in.weather_file_city Kodiak Location of weather station from specific weather file used for the building energy simulation is Kodiak +in.weather_file_city L M Clayton Location of weather station from specific weather file used for the building energy simulation is L M Clayton +in.weather_file_city L O Simenstad Muni Location of weather station from specific weather file used for the building energy simulation is L O Simenstad Muni +in.weather_file_city La Crosse Municipal Location of weather station from specific weather file used for the building energy simulation is La Crosse Municipal +in.weather_file_city La Grande Union Co Location of weather station from specific weather file used for the building energy simulation is La Grande Union Co +in.weather_file_city La Junta Muni Location of weather station from specific weather file used for the building energy simulation is La Junta Muni +in.weather_file_city La Usc Downtown Cam Location of weather station from specific weather file used for the building energy simulation is La Usc Downtown Cam +in.weather_file_city Lac Qui Parle Co Location of weather station from specific weather file used for the building energy simulation is Lac Qui Parle Co +in.weather_file_city Laconia Muni Location of weather station from specific weather file used for the building energy simulation is Laconia Muni +in.weather_file_city Lafayette Rgnl Location of weather station from specific weather file used for the building energy simulation is Lafayette Rgnl +in.weather_file_city Lake Charles Muni Location of weather station from specific weather file used for the building energy simulation is Lake Charles Muni +in.weather_file_city Lake Co Location of weather station from specific weather file used for the building energy simulation is Lake Co +in.weather_file_city Lake Tahoe Location of weather station from specific weather file used for the building energy simulation is Lake Tahoe +in.weather_file_city Lakefront Location of weather station from specific weather file used for the building energy simulation is Lakefront +in.weather_file_city Lakeland Noble F Le Location of weather station from specific weather file used for the building energy simulation is Lakeland Noble F Le +in.weather_file_city Lamar Muni Location of weather station from specific weather file used for the building energy simulation is Lamar Muni +in.weather_file_city Lamoni Muni Airport Location of weather station from specific weather file used for the building energy simulation is Lamoni Muni Airport +in.weather_file_city Lancaster Location of weather station from specific weather file used for the building energy simulation is Lancaster +in.weather_file_city Langlade Co Location of weather station from specific weather file used for the building energy simulation is Langlade Co +in.weather_file_city Langley Afb Hampton Location of weather station from specific weather file used for the building energy simulation is Langley Afb Hampton +in.weather_file_city Lansing Capital Cit Location of weather station from specific weather file used for the building energy simulation is Lansing Capital Cit +in.weather_file_city Laramie Rgnl Location of weather station from specific weather file used for the building energy simulation is Laramie Rgnl +in.weather_file_city Laredo Intl Airport Location of weather station from specific weather file used for the building energy simulation is Laredo Intl Airport +in.weather_file_city Las Vegas Mccarran Location of weather station from specific weather file used for the building energy simulation is Las Vegas Mccarran +in.weather_file_city Las Vegas Municipal Location of weather station from specific weather file used for the building energy simulation is Las Vegas Municipal +in.weather_file_city Laughlin Afb Location of weather station from specific weather file used for the building energy simulation is Laughlin Afb +in.weather_file_city Laurence G Hanscom Location of weather station from specific weather file used for the building energy simulation is Laurence G Hanscom +in.weather_file_city Lawrence Muni Location of weather station from specific weather file used for the building energy simulation is Lawrence Muni +in.weather_file_city Lawrenceville Vincen Location of weather station from specific weather file used for the building energy simulation is Lawrenceville Vincen +in.weather_file_city Lawton Municipal Location of weather station from specific weather file used for the building energy simulation is Lawton Municipal +in.weather_file_city Le Mars Muni Location of weather station from specific weather file used for the building energy simulation is Le Mars Muni +in.weather_file_city Lebanon Muni Location of weather station from specific weather file used for the building energy simulation is Lebanon Muni +in.weather_file_city Lee C Fine Mem Location of weather station from specific weather file used for the building energy simulation is Lee C Fine Mem +in.weather_file_city Lee Gilmer Mem Location of weather station from specific weather file used for the building energy simulation is Lee Gilmer Mem +in.weather_file_city Leesburg Executive Location of weather station from specific weather file used for the building energy simulation is Leesburg Executive +in.weather_file_city Leesburg Rgnl Location of weather station from specific weather file used for the building energy simulation is Leesburg Rgnl +in.weather_file_city Lemhi Co Location of weather station from specific weather file used for the building energy simulation is Lemhi Co +in.weather_file_city Lenawee Co Location of weather station from specific weather file used for the building energy simulation is Lenawee Co +in.weather_file_city Lewis University Location of weather station from specific weather file used for the building energy simulation is Lewis University +in.weather_file_city Lewiston Nez Perce Location of weather station from specific weather file used for the building energy simulation is Lewiston Nez Perce +in.weather_file_city Lewistown Muni Location of weather station from specific weather file used for the building energy simulation is Lewistown Muni +in.weather_file_city Lexington Blue Gras Location of weather station from specific weather file used for the building energy simulation is Lexington Blue Gras +in.weather_file_city Liberal Muni Location of weather station from specific weather file used for the building energy simulation is Liberal Muni +in.weather_file_city Lidgerwood Ramos Location of weather station from specific weather file used for the building energy simulation is Lidgerwood Ramos +in.weather_file_city Lima Allen Co Location of weather station from specific weather file used for the building energy simulation is Lima Allen Co +in.weather_file_city Limon Muni Location of weather station from specific weather file used for the building energy simulation is Limon Muni +in.weather_file_city Lincoln Municipal Location of weather station from specific weather file used for the building energy simulation is Lincoln Municipal +in.weather_file_city Litchfield Muni Location of weather station from specific weather file used for the building energy simulation is Litchfield Muni +in.weather_file_city Little Rock Adams F Location of weather station from specific weather file used for the building energy simulation is Little Rock Adams F +in.weather_file_city Little Rock Afb Location of weather station from specific weather file used for the building energy simulation is Little Rock Afb +in.weather_file_city Livingston Co Location of weather station from specific weather file used for the building energy simulation is Livingston Co +in.weather_file_city Logan Cache Location of weather station from specific weather file used for the building energy simulation is Logan Cache +in.weather_file_city London Corbin Arpt Location of weather station from specific weather file used for the building energy simulation is London Corbin Arpt +in.weather_file_city Lonesome Pine Location of weather station from specific weather file used for the building energy simulation is Lonesome Pine +in.weather_file_city Long Island Mac Art Location of weather station from specific weather file used for the building energy simulation is Long Island Mac Art +in.weather_file_city Longview Location of weather station from specific weather file used for the building energy simulation is Longview +in.weather_file_city Lorain Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Lorain Co Rgnl +in.weather_file_city Louisa Co Freeman Fl Location of weather station from specific weather file used for the building energy simulation is Louisa Co Freeman Fl +in.weather_file_city Louisville Standifo Location of weather station from specific weather file used for the building energy simulation is Louisville Standifo +in.weather_file_city Lowell Location of weather station from specific weather file used for the building energy simulation is Lowell +in.weather_file_city Lubbock Lubbock Int Location of weather station from specific weather file used for the building energy simulation is Lubbock Lubbock Int +in.weather_file_city Luce Co Location of weather station from specific weather file used for the building energy simulation is Luce Co +in.weather_file_city Lynchburg Mun P G Location of weather station from specific weather file used for the building energy simulation is Lynchburg Mun P G +in.weather_file_city Mackinack Island Location of weather station from specific weather file used for the building energy simulation is Mackinack Island +in.weather_file_city Macon Lewis Bwilso Location of weather station from specific weather file used for the building energy simulation is Macon Lewis Bwilso +in.weather_file_city Madera Muni Location of weather station from specific weather file used for the building energy simulation is Madera Muni +in.weather_file_city Madison Dane County Location of weather station from specific weather file used for the building energy simulation is Madison Dane County +in.weather_file_city Malmstrom Afhp Location of weather station from specific weather file used for the building energy simulation is Malmstrom Afhp +in.weather_file_city Manassas Rgnl Davis Location of weather station from specific weather file used for the building energy simulation is Manassas Rgnl Davis +in.weather_file_city Manchester Location of weather station from specific weather file used for the building energy simulation is Manchester +in.weather_file_city Manhattan Rgnl Location of weather station from specific weather file used for the building energy simulation is Manhattan Rgnl +in.weather_file_city Manistee Co Blacker Location of weather station from specific weather file used for the building energy simulation is Manistee Co Blacker +in.weather_file_city Manistique Amos Location of weather station from specific weather file used for the building energy simulation is Manistique Amos +in.weather_file_city Manitowoc Co Location of weather station from specific weather file used for the building energy simulation is Manitowoc Co +in.weather_file_city Mankata Rgnl Arpt Location of weather station from specific weather file used for the building energy simulation is Mankata Rgnl Arpt +in.weather_file_city Mansfield Lahm Rgnl Location of weather station from specific weather file used for the building energy simulation is Mansfield Lahm Rgnl +in.weather_file_city Marfa Municipal Location of weather station from specific weather file used for the building energy simulation is Marfa Municipal +in.weather_file_city Marianna Muni Location of weather station from specific weather file used for the building energy simulation is Marianna Muni +in.weather_file_city Marietta Dobbins Af Location of weather station from specific weather file used for the building energy simulation is Marietta Dobbins Af +in.weather_file_city Marion Muni Location of weather station from specific weather file used for the building energy simulation is Marion Muni +in.weather_file_city Marseilles Island Location of weather station from specific weather file used for the building energy simulation is Marseilles Island +in.weather_file_city Marshall Town Muni Location of weather station from specific weather file used for the building energy simulation is Marshall Town Muni +in.weather_file_city Marshfield Muni Location of weather station from specific weather file used for the building energy simulation is Marshfield Muni +in.weather_file_city Marthas Vineyard Location of weather station from specific weather file used for the building energy simulation is Marthas Vineyard +in.weather_file_city Mason City Muni Location of weather station from specific weather file used for the building energy simulation is Mason City Muni +in.weather_file_city Mason Co Location of weather station from specific weather file used for the building energy simulation is Mason Co +in.weather_file_city Mason Jewett Fld Location of weather station from specific weather file used for the building energy simulation is Mason Jewett Fld +in.weather_file_city Massena Intl Richar Location of weather station from specific weather file used for the building energy simulation is Massena Intl Richar +in.weather_file_city Matinicus Rock Location of weather station from specific weather file used for the building energy simulation is Matinicus Rock +in.weather_file_city Maxton Location of weather station from specific weather file used for the building energy simulation is Maxton +in.weather_file_city Maxwell Afb Location of weather station from specific weather file used for the building energy simulation is Maxwell Afb +in.weather_file_city Mbs Intl Location of weather station from specific weather file used for the building energy simulation is Mbs Intl +in.weather_file_city Mc Alester Rgnl Location of weather station from specific weather file used for the building energy simulation is Mc Alester Rgnl +in.weather_file_city Mc Allen Miller Int Location of weather station from specific weather file used for the building energy simulation is Mc Allen Miller Int +in.weather_file_city Mc Call Muni Location of weather station from specific weather file used for the building energy simulation is Mc Call Muni +in.weather_file_city Mc Clellan Afld Location of weather station from specific weather file used for the building energy simulation is Mc Clellan Afld +in.weather_file_city Mc Comb Pike Co Joh Location of weather station from specific weather file used for the building energy simulation is Mc Comb Pike Co Joh +in.weather_file_city Mc Connell Afb Location of weather station from specific weather file used for the building energy simulation is Mc Connell Afb +in.weather_file_city Mc Gregor Executive Location of weather station from specific weather file used for the building energy simulation is Mc Gregor Executive +in.weather_file_city Mc Kellar Sipes Rgn Location of weather station from specific weather file used for the building energy simulation is Mc Kellar Sipes Rgn +in.weather_file_city Mc Minnville Muni Location of weather station from specific weather file used for the building energy simulation is Mc Minnville Muni +in.weather_file_city Mccook Rgnl Location of weather station from specific weather file used for the building energy simulation is Mccook Rgnl +in.weather_file_city Mecklenburg Brunswi Location of weather station from specific weather file used for the building energy simulation is Mecklenburg Brunswi +in.weather_file_city Medford Jackson Cou Location of weather station from specific weather file used for the building energy simulation is Medford Jackson Cou +in.weather_file_city Medicine Lodge Amos Location of weather station from specific weather file used for the building energy simulation is Medicine Lodge Amos +in.weather_file_city Meeker Location of weather station from specific weather file used for the building energy simulation is Meeker +in.weather_file_city Melbourne Regional Location of weather station from specific weather file used for the building energy simulation is Melbourne Regional +in.weather_file_city Memorial Fld Location of weather station from specific weather file used for the building energy simulation is Memorial Fld +in.weather_file_city Memphis Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Memphis Intl Arpt +in.weather_file_city Menominee Marinette Location of weather station from specific weather file used for the building energy simulation is Menominee Marinette +in.weather_file_city Merced Muni Macready Location of weather station from specific weather file used for the building energy simulation is Merced Muni Macready +in.weather_file_city Mercer Co Location of weather station from specific weather file used for the building energy simulation is Mercer Co +in.weather_file_city Meriden Markham Muni Location of weather station from specific weather file used for the building energy simulation is Meriden Markham Muni +in.weather_file_city Meridian Key Field Location of weather station from specific weather file used for the building energy simulation is Meridian Key Field +in.weather_file_city Meridian Nas Location of weather station from specific weather file used for the building energy simulation is Meridian Nas +in.weather_file_city Merrill Muni Location of weather station from specific weather file used for the building energy simulation is Merrill Muni +in.weather_file_city Metcalf Fld Location of weather station from specific weather file used for the building energy simulation is Metcalf Fld +in.weather_file_city Miami Location of weather station from specific weather file used for the building energy simulation is Miami +in.weather_file_city Michael J Smith Fld Location of weather station from specific weather file used for the building energy simulation is Michael J Smith Fld +in.weather_file_city Mid Ohio Valley Rgn Location of weather station from specific weather file used for the building energy simulation is Mid Ohio Valley Rgn +in.weather_file_city Middleton Fld Location of weather station from specific weather file used for the building energy simulation is Middleton Fld +in.weather_file_city Middleton Island Location of weather station from specific weather file used for the building energy simulation is Middleton Island +in.weather_file_city Midland Midland Reg Location of weather station from specific weather file used for the building energy simulation is Midland Midland Reg +in.weather_file_city Miles City Location of weather station from specific weather file used for the building energy simulation is Miles City +in.weather_file_city Millington Muni Arp Location of weather station from specific weather file used for the building energy simulation is Millington Muni Arp +in.weather_file_city Millville Muni Location of weather station from specific weather file used for the building energy simulation is Millville Muni +in.weather_file_city Milwaukee Gen Mitc Location of weather station from specific weather file used for the building energy simulation is Milwaukee Gen Mitc +in.weather_file_city Mineral Wells Muni Location of weather station from specific weather file used for the building energy simulation is Mineral Wells Muni +in.weather_file_city Minot Afb Location of weather station from specific weather file used for the building energy simulation is Minot Afb +in.weather_file_city Minot Intl Location of weather station from specific weather file used for the building energy simulation is Minot Intl +in.weather_file_city Miramar Mcas Location of weather station from specific weather file used for the building energy simulation is Miramar Mcas +in.weather_file_city Mission Fld Location of weather station from specific weather file used for the building energy simulation is Mission Fld +in.weather_file_city Missoula Johnson Be Location of weather station from specific weather file used for the building energy simulation is Missoula Johnson Be +in.weather_file_city Mitchell Muni Location of weather station from specific weather file used for the building energy simulation is Mitchell Muni +in.weather_file_city Mobile Bates Field Location of weather station from specific weather file used for the building energy simulation is Mobile Bates Field +in.weather_file_city Mobile Downtown Location of weather station from specific weather file used for the building energy simulation is Mobile Downtown +in.weather_file_city Mobridge Muni Location of weather station from specific weather file used for the building energy simulation is Mobridge Muni +in.weather_file_city Modesto City Co Har Location of weather station from specific weather file used for the building energy simulation is Modesto City Co Har +in.weather_file_city Moline Quad City Location of weather station from specific weather file used for the building energy simulation is Moline Quad City +in.weather_file_city Monmouth Executive Location of weather station from specific weather file used for the building energy simulation is Monmouth Executive +in.weather_file_city Monroe Airport Location of weather station from specific weather file used for the building energy simulation is Monroe Airport +in.weather_file_city Monroe Co Location of weather station from specific weather file used for the building energy simulation is Monroe Co +in.weather_file_city Monroe Muni Location of weather station from specific weather file used for the building energy simulation is Monroe Muni +in.weather_file_city Monroe Rgnl Location of weather station from specific weather file used for the building energy simulation is Monroe Rgnl +in.weather_file_city Montevideo Chippewa Location of weather station from specific weather file used for the building energy simulation is Montevideo Chippewa +in.weather_file_city Montgomery Co Location of weather station from specific weather file used for the building energy simulation is Montgomery Co +in.weather_file_city Montgomery Dannelly Location of weather station from specific weather file used for the building energy simulation is Montgomery Dannelly +in.weather_file_city Monticello Muni Location of weather station from specific weather file used for the building energy simulation is Monticello Muni +in.weather_file_city Monticello Rgnl Location of weather station from specific weather file used for the building energy simulation is Monticello Rgnl +in.weather_file_city Montrose Rgnl Location of weather station from specific weather file used for the building energy simulation is Montrose Rgnl +in.weather_file_city Moody Afb Valdosta Location of weather station from specific weather file used for the building energy simulation is Moody Afb Valdosta +in.weather_file_city Moore Co Location of weather station from specific weather file used for the building energy simulation is Moore Co +in.weather_file_city Mora Muni Location of weather station from specific weather file used for the building energy simulation is Mora Muni +in.weather_file_city Morgantown Muni Wal Location of weather station from specific weather file used for the building energy simulation is Morgantown Muni Wal +in.weather_file_city Morris Muni Location of weather station from specific weather file used for the building energy simulation is Morris Muni +in.weather_file_city Morrisville Stowe St Location of weather station from specific weather file used for the building energy simulation is Morrisville Stowe St +in.weather_file_city Moses Lake Grant Co Location of weather station from specific weather file used for the building energy simulation is Moses Lake Grant Co +in.weather_file_city Mount Ida Location of weather station from specific weather file used for the building energy simulation is Mount Ida +in.weather_file_city Mount Pleasant Muni Location of weather station from specific weather file used for the building energy simulation is Mount Pleasant Muni +in.weather_file_city Mount Vernon Location of weather station from specific weather file used for the building energy simulation is Mount Vernon +in.weather_file_city Mountain Empire Location of weather station from specific weather file used for the building energy simulation is Mountain Empire +in.weather_file_city Mountain Home Afb Location of weather station from specific weather file used for the building energy simulation is Mountain Home Afb +in.weather_file_city Mt Washington Rgnl Location of weather station from specific weather file used for the building energy simulation is Mt Washington Rgnl +in.weather_file_city Mullan Awrs Location of weather station from specific weather file used for the building energy simulation is Mullan Awrs +in.weather_file_city Muscatine Muni Location of weather station from specific weather file used for the building energy simulation is Muscatine Muni +in.weather_file_city Muskegon Location of weather station from specific weather file used for the building energy simulation is Muskegon +in.weather_file_city Muskogee Davis Fld Location of weather station from specific weather file used for the building energy simulation is Muskogee Davis Fld +in.weather_file_city Myrtle Beach Civ Location of weather station from specific weather file used for the building energy simulation is Myrtle Beach Civ +in.weather_file_city Nantucket Mem Location of weather station from specific weather file used for the building energy simulation is Nantucket Mem +in.weather_file_city Napa Co Location of weather station from specific weather file used for the building energy simulation is Napa Co +in.weather_file_city Naples Muni Location of weather station from specific weather file used for the building energy simulation is Naples Muni +in.weather_file_city Nashville Metropoli Location of weather station from specific weather file used for the building energy simulation is Nashville Metropoli +in.weather_file_city Natchez Hardy Awos Location of weather station from specific weather file used for the building energy simulation is Natchez Hardy Awos +in.weather_file_city New Braunfels Muni Location of weather station from specific weather file used for the building energy simulation is New Braunfels Muni +in.weather_file_city New Iberia Acadiana Location of weather station from specific weather file used for the building energy simulation is New Iberia Acadiana +in.weather_file_city New Orleans Moisant Location of weather station from specific weather file used for the building energy simulation is New Orleans Moisant +in.weather_file_city New Orleans Nas Jrb Location of weather station from specific weather file used for the building energy simulation is New Orleans Nas Jrb +in.weather_file_city New River Mcas Location of weather station from specific weather file used for the building energy simulation is New River Mcas +in.weather_file_city New York John F Ke Location of weather station from specific weather file used for the building energy simulation is New York John F Ke +in.weather_file_city New York La Guardia Location of weather station from specific weather file used for the building energy simulation is New York La Guardia +in.weather_file_city Newark Intl Airport Location of weather station from specific weather file used for the building energy simulation is Newark Intl Airport +in.weather_file_city Newnan Coweta Co Location of weather station from specific weather file used for the building energy simulation is Newnan Coweta Co +in.weather_file_city Newport Location of weather station from specific weather file used for the building energy simulation is Newport +in.weather_file_city Newport News Willia Location of weather station from specific weather file used for the building energy simulation is Newport News Willia +in.weather_file_city Newport State Beach Location of weather station from specific weather file used for the building energy simulation is Newport State Beach +in.weather_file_city Newton City Co Location of weather station from specific weather file used for the building energy simulation is Newton City Co +in.weather_file_city Newton Muni Location of weather station from specific weather file used for the building energy simulation is Newton Muni +in.weather_file_city Niagara Falls Intl Location of weather station from specific weather file used for the building energy simulation is Niagara Falls Intl +in.weather_file_city Nogales Intl Location of weather station from specific weather file used for the building energy simulation is Nogales Intl +in.weather_file_city Norfolk Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Norfolk Intl Arpt +in.weather_file_city Norfolk Karl Stefan Location of weather station from specific weather file used for the building energy simulation is Norfolk Karl Stefan +in.weather_file_city Norfolk Ns Location of weather station from specific weather file used for the building energy simulation is Norfolk Ns +in.weather_file_city Norman Max Westheim Location of weather station from specific weather file used for the building energy simulation is Norman Max Westheim +in.weather_file_city Norman Y Mineta San Location of weather station from specific weather file used for the building energy simulation is Norman Y Mineta San +in.weather_file_city North Bend Muni Location of weather station from specific weather file used for the building energy simulation is North Bend Muni +in.weather_file_city North Central State Location of weather station from specific weather file used for the building energy simulation is North Central State +in.weather_file_city North Platte Lee Bi Location of weather station from specific weather file used for the building energy simulation is North Platte Lee Bi +in.weather_file_city Northeast Philadelph Location of weather station from specific weather file used for the building energy simulation is Northeast Philadelph +in.weather_file_city Northeastern Rgnl Location of weather station from specific weather file used for the building energy simulation is Northeastern Rgnl +in.weather_file_city Northwest Alabama R Location of weather station from specific weather file used for the building energy simulation is Northwest Alabama R +in.weather_file_city Norwood Mem Location of weather station from specific weather file used for the building energy simulation is Norwood Mem +in.weather_file_city Nyc Central Park Location of weather station from specific weather file used for the building energy simulation is Nyc Central Park +in.weather_file_city Oak Ridge Location of weather station from specific weather file used for the building energy simulation is Oak Ridge +in.weather_file_city Oakland Co Intl Location of weather station from specific weather file used for the building energy simulation is Oakland Co Intl +in.weather_file_city Ocala Intl J Taylor Location of weather station from specific weather file used for the building energy simulation is Ocala Intl J Taylor +in.weather_file_city Ocean City Muni Location of weather station from specific weather file used for the building energy simulation is Ocean City Muni +in.weather_file_city Oconee Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Oconee Co Rgnl +in.weather_file_city Odessa Schlemeyer Fl Location of weather station from specific weather file used for the building energy simulation is Odessa Schlemeyer Fl +in.weather_file_city Offutt Afb Location of weather station from specific weather file used for the building energy simulation is Offutt Afb +in.weather_file_city Ogden Hinckley Muni Location of weather station from specific weather file used for the building energy simulation is Ogden Hinckley Muni +in.weather_file_city Ohio State Universi Location of weather station from specific weather file used for the building energy simulation is Ohio State Universi +in.weather_file_city Oklahoma City W Ro Location of weather station from specific weather file used for the building energy simulation is Oklahoma City W Ro +in.weather_file_city Oklahoma City Wiley Location of weather station from specific weather file used for the building energy simulation is Oklahoma City Wiley +in.weather_file_city Olympia Location of weather station from specific weather file used for the building energy simulation is Olympia +in.weather_file_city Omaha Location of weather station from specific weather file used for the building energy simulation is Omaha +in.weather_file_city Omak Location of weather station from specific weather file used for the building energy simulation is Omak +in.weather_file_city Ontaria Muni Location of weather station from specific weather file used for the building energy simulation is Ontaria Muni +in.weather_file_city Ontario Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Ontario Intl Arpt +in.weather_file_city Orange City Muni Location of weather station from specific weather file used for the building energy simulation is Orange City Muni +in.weather_file_city Orange Co Location of weather station from specific weather file used for the building energy simulation is Orange Co +in.weather_file_city Orangeburg Muni Location of weather station from specific weather file used for the building energy simulation is Orangeburg Muni +in.weather_file_city Orlando Jetport Location of weather station from specific weather file used for the building energy simulation is Orlando Jetport +in.weather_file_city Orlando Sanford Location of weather station from specific weather file used for the building energy simulation is Orlando Sanford +in.weather_file_city Oroville Muni Location of weather station from specific weather file used for the building energy simulation is Oroville Muni +in.weather_file_city Ortonville Muni Mart Location of weather station from specific weather file used for the building energy simulation is Ortonville Muni Mart +in.weather_file_city Oscoda Wurtsmith Location of weather station from specific weather file used for the building energy simulation is Oscoda Wurtsmith +in.weather_file_city Oswego Co Location of weather station from specific weather file used for the building energy simulation is Oswego Co +in.weather_file_city Ottumwa Industrial Location of weather station from specific weather file used for the building energy simulation is Ottumwa Industrial +in.weather_file_city Outagamie Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Outagamie Co Rgnl +in.weather_file_city Ozark Rgnl Location of weather station from specific weather file used for the building energy simulation is Ozark Rgnl +in.weather_file_city Paducah Barkley Location of weather station from specific weather file used for the building energy simulation is Paducah Barkley +in.weather_file_city Page Muni Amos Location of weather station from specific weather file used for the building energy simulation is Page Muni Amos +in.weather_file_city Palacios Muni Location of weather station from specific weather file used for the building energy simulation is Palacios Muni +in.weather_file_city Panama City Bay Co Location of weather station from specific weather file used for the building energy simulation is Panama City Bay Co +in.weather_file_city Pangborn Mem Location of weather station from specific weather file used for the building energy simulation is Pangborn Mem +in.weather_file_city Park Falls Muni Location of weather station from specific weather file used for the building energy simulation is Park Falls Muni +in.weather_file_city Park Rapids Muni Kon Location of weather station from specific weather file used for the building energy simulation is Park Rapids Muni Kon +in.weather_file_city Patuxent River Nas Location of weather station from specific weather file used for the building energy simulation is Patuxent River Nas +in.weather_file_city Peachtree City Falco Location of weather station from specific weather file used for the building energy simulation is Peachtree City Falco +in.weather_file_city Pearson Fld Location of weather station from specific weather file used for the building energy simulation is Pearson Fld +in.weather_file_city Pellston Rgnl Arpt Location of weather station from specific weather file used for the building energy simulation is Pellston Rgnl Arpt +in.weather_file_city Pendleton Municipal Location of weather station from specific weather file used for the building energy simulation is Pendleton Municipal +in.weather_file_city Penn Yan Location of weather station from specific weather file used for the building energy simulation is Penn Yan +in.weather_file_city Pensacola Rgnl Location of weather station from specific weather file used for the building energy simulation is Pensacola Rgnl +in.weather_file_city Perry Foley Location of weather station from specific weather file used for the building energy simulation is Perry Foley +in.weather_file_city Perry Stokes Location of weather station from specific weather file used for the building energy simulation is Perry Stokes +in.weather_file_city Philadelphia Intl Location of weather station from specific weather file used for the building energy simulation is Philadelphia Intl +in.weather_file_city Philip Location of weather station from specific weather file used for the building energy simulation is Philip +in.weather_file_city Phoenix Sky Harbor Location of weather station from specific weather file used for the building energy simulation is Phoenix Sky Harbor +in.weather_file_city Pierre Rgnl Location of weather station from specific weather file used for the building energy simulation is Pierre Rgnl +in.weather_file_city Pine Ridge Location of weather station from specific weather file used for the building energy simulation is Pine Ridge +in.weather_file_city Pine River Rgnl Location of weather station from specific weather file used for the building energy simulation is Pine River Rgnl +in.weather_file_city Pine Springs Guadalu Location of weather station from specific weather file used for the building energy simulation is Pine Springs Guadalu +in.weather_file_city Pipestone Muni Location of weather station from specific weather file used for the building energy simulation is Pipestone Muni +in.weather_file_city Pitt Greenville Location of weather station from specific weather file used for the building energy simulation is Pitt Greenville +in.weather_file_city Plattsburgh Intl Location of weather station from specific weather file used for the building energy simulation is Plattsburgh Intl +in.weather_file_city Plymouth Municipal Location of weather station from specific weather file used for the building energy simulation is Plymouth Municipal +in.weather_file_city Pocatello Municipal Location of weather station from specific weather file used for the building energy simulation is Pocatello Municipal +in.weather_file_city Pocono Mountains Mun Location of weather station from specific weather file used for the building energy simulation is Pocono Mountains Mun +in.weather_file_city Ponca City Muni Location of weather station from specific weather file used for the building energy simulation is Ponca City Muni +in.weather_file_city Pope Afb Location of weather station from specific weather file used for the building energy simulation is Pope Afb +in.weather_file_city Poplar Bluff Amos Location of weather station from specific weather file used for the building energy simulation is Poplar Bluff Amos +in.weather_file_city Port Arthur Jeffers Location of weather station from specific weather file used for the building energy simulation is Port Arthur Jeffers +in.weather_file_city Port Meadville Location of weather station from specific weather file used for the building energy simulation is Port Meadville +in.weather_file_city Porter Co Muni Location of weather station from specific weather file used for the building energy simulation is Porter Co Muni +in.weather_file_city Portland Hillsboro Location of weather station from specific weather file used for the building energy simulation is Portland Hillsboro +in.weather_file_city Portland Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Portland Intl Arpt +in.weather_file_city Portland Intnl Jet Location of weather station from specific weather file used for the building energy simulation is Portland Intnl Jet +in.weather_file_city Pottstown Limerick Location of weather station from specific weather file used for the building energy simulation is Pottstown Limerick +in.weather_file_city Prairie Du Chien Mun Location of weather station from specific weather file used for the building energy simulation is Prairie Du Chien Mun +in.weather_file_city Presque Isle Awos Location of weather station from specific weather file used for the building energy simulation is Presque Isle Awos +in.weather_file_city Price Carbon County Location of weather station from specific weather file used for the building energy simulation is Price Carbon County +in.weather_file_city Princeton Muni Location of weather station from specific weather file used for the building energy simulation is Princeton Muni +in.weather_file_city Providence Green St Location of weather station from specific weather file used for the building energy simulation is Providence Green St +in.weather_file_city Provo Muni Location of weather station from specific weather file used for the building energy simulation is Provo Muni +in.weather_file_city Pryor Fld Rgnl Location of weather station from specific weather file used for the building energy simulation is Pryor Fld Rgnl +in.weather_file_city Pueblo Memorial Aw Location of weather station from specific weather file used for the building energy simulation is Pueblo Memorial Aw +in.weather_file_city Pullman Moscow Rgnl Location of weather station from specific weather file used for the building energy simulation is Pullman Moscow Rgnl +in.weather_file_city Purdue Univ Location of weather station from specific weather file used for the building energy simulation is Purdue Univ +in.weather_file_city Quantico Mcaf Location of weather station from specific weather file used for the building energy simulation is Quantico Mcaf +in.weather_file_city Quincy Rgnl Baldwin Location of weather station from specific weather file used for the building energy simulation is Quincy Rgnl Baldwin +in.weather_file_city Raleigh Raleigh Dur Location of weather station from specific weather file used for the building energy simulation is Raleigh Raleigh Dur +in.weather_file_city Randolph Afb Location of weather station from specific weather file used for the building energy simulation is Randolph Afb +in.weather_file_city Rapid City Regional Location of weather station from specific weather file used for the building energy simulation is Rapid City Regional +in.weather_file_city Rawlins Municipal Location of weather station from specific weather file used for the building energy simulation is Rawlins Municipal +in.weather_file_city Reading Rgnl Carl Location of weather station from specific weather file used for the building energy simulation is Reading Rgnl Carl +in.weather_file_city Red Bluff Municipal Location of weather station from specific weather file used for the building energy simulation is Red Bluff Municipal +in.weather_file_city Red Oak Muni Location of weather station from specific weather file used for the building energy simulation is Red Oak Muni +in.weather_file_city Red Wing Rgnl Location of weather station from specific weather file used for the building energy simulation is Red Wing Rgnl +in.weather_file_city Redding Municipal Location of weather station from specific weather file used for the building energy simulation is Redding Municipal +in.weather_file_city Redwood Falls Muni Location of weather station from specific weather file used for the building energy simulation is Redwood Falls Muni +in.weather_file_city Reno Cannon Intl Location of weather station from specific weather file used for the building energy simulation is Reno Cannon Intl +in.weather_file_city Renton Muni Location of weather station from specific weather file used for the building energy simulation is Renton Muni +in.weather_file_city Republic Location of weather station from specific weather file used for the building energy simulation is Republic +in.weather_file_city Rexburg Madison Co Location of weather station from specific weather file used for the building energy simulation is Rexburg Madison Co +in.weather_file_city Rhinelander Oneida Location of weather station from specific weather file used for the building energy simulation is Rhinelander Oneida +in.weather_file_city Rice Lake Rgnl Carls Location of weather station from specific weather file used for the building energy simulation is Rice Lake Rgnl Carls +in.weather_file_city Richard I Bong Location of weather station from specific weather file used for the building energy simulation is Richard I Bong +in.weather_file_city Richard Lloyd Jones Location of weather station from specific weather file used for the building energy simulation is Richard Lloyd Jones +in.weather_file_city Richmond Byrd Field Location of weather station from specific weather file used for the building energy simulation is Richmond Byrd Field +in.weather_file_city Rickenbacker Intl Location of weather station from specific weather file used for the building energy simulation is Rickenbacker Intl +in.weather_file_city Riverside March Afb Location of weather station from specific weather file used for the building energy simulation is Riverside March Afb +in.weather_file_city Riverton Location of weather station from specific weather file used for the building energy simulation is Riverton +in.weather_file_city Roanoke Municipal Location of weather station from specific weather file used for the building energy simulation is Roanoke Municipal +in.weather_file_city Roben Hood Location of weather station from specific weather file used for the building energy simulation is Roben Hood +in.weather_file_city Robert Gray Aaf Location of weather station from specific weather file used for the building energy simulation is Robert Gray Aaf +in.weather_file_city Roberts Fld Location of weather station from specific weather file used for the building energy simulation is Roberts Fld +in.weather_file_city Robins Afb Location of weather station from specific weather file used for the building energy simulation is Robins Afb +in.weather_file_city Rochester Monroe Co Location of weather station from specific weather file used for the building energy simulation is Rochester Monroe Co +in.weather_file_city Rochester Municipal Location of weather station from specific weather file used for the building energy simulation is Rochester Municipal +in.weather_file_city Rock Hill York Co Location of weather station from specific weather file used for the building energy simulation is Rock Hill York Co +in.weather_file_city Rock Springs Sweetw Location of weather station from specific weather file used for the building energy simulation is Rock Springs Sweetw +in.weather_file_city Rocky Mount Wilson Location of weather station from specific weather file used for the building energy simulation is Rocky Mount Wilson +in.weather_file_city Rogers Muni Carter F Location of weather station from specific weather file used for the building energy simulation is Rogers Muni Carter F +in.weather_file_city Rolla Vichy Airport Location of weather station from specific weather file used for the building energy simulation is Rolla Vichy Airport +in.weather_file_city Rome Russell Ramos Location of weather station from specific weather file used for the building energy simulation is Rome Russell Ramos +in.weather_file_city Roseau Muni Billberg Location of weather station from specific weather file used for the building energy simulation is Roseau Muni Billberg +in.weather_file_city Roseburg Rgnl Location of weather station from specific weather file used for the building energy simulation is Roseburg Rgnl +in.weather_file_city Roswell Industrial Location of weather station from specific weather file used for the building energy simulation is Roswell Industrial +in.weather_file_city Rush City Rgnl Location of weather station from specific weather file used for the building energy simulation is Rush City Rgnl +in.weather_file_city Russell Muni Location of weather station from specific weather file used for the building energy simulation is Russell Muni +in.weather_file_city Russellville Rgnl Location of weather station from specific weather file used for the building energy simulation is Russellville Rgnl +in.weather_file_city Rutherfordton Location of weather station from specific weather file used for the building energy simulation is Rutherfordton +in.weather_file_city Rutland State Location of weather station from specific weather file used for the building energy simulation is Rutland State +in.weather_file_city Sacramento Intl Location of weather station from specific weather file used for the building energy simulation is Sacramento Intl +in.weather_file_city Safford Rgnl Location of weather station from specific weather file used for the building energy simulation is Safford Rgnl +in.weather_file_city Salem Leckrone Location of weather station from specific weather file used for the building energy simulation is Salem Leckrone +in.weather_file_city Salem Mcnary Location of weather station from specific weather file used for the building energy simulation is Salem Mcnary +in.weather_file_city Salina Muni Location of weather station from specific weather file used for the building energy simulation is Salina Muni +in.weather_file_city Salinas Muni Location of weather station from specific weather file used for the building energy simulation is Salinas Muni +in.weather_file_city Salisbury Ocean Cit Location of weather station from specific weather file used for the building energy simulation is Salisbury Ocean Cit +in.weather_file_city Salt Lake City Intl Location of weather station from specific weather file used for the building energy simulation is Salt Lake City Intl +in.weather_file_city San Angelo Mathis Location of weather station from specific weather file used for the building energy simulation is San Angelo Mathis +in.weather_file_city San Antonio Intl Location of weather station from specific weather file used for the building energy simulation is San Antonio Intl +in.weather_file_city San Francisco Intl Location of weather station from specific weather file used for the building energy simulation is San Francisco Intl +in.weather_file_city San Luis Co Rgnl Location of weather station from specific weather file used for the building energy simulation is San Luis Co Rgnl +in.weather_file_city San Marcos Muni Location of weather station from specific weather file used for the building energy simulation is San Marcos Muni +in.weather_file_city Sanderson Fld Location of weather station from specific weather file used for the building energy simulation is Sanderson Fld +in.weather_file_city Sanford Rgnl Location of weather station from specific weather file used for the building energy simulation is Sanford Rgnl +in.weather_file_city Santa Barbara Muni Location of weather station from specific weather file used for the building energy simulation is Santa Barbara Muni +in.weather_file_city Santa Fe Co Muni Location of weather station from specific weather file used for the building energy simulation is Santa Fe Co Muni +in.weather_file_city Sarasota Bradenton Location of weather station from specific weather file used for the building energy simulation is Sarasota Bradenton +in.weather_file_city Sault Ste Marie Location of weather station from specific weather file used for the building energy simulation is Sault Ste Marie +in.weather_file_city Savannah Municipal Location of weather station from specific weather file used for the building energy simulation is Savannah Municipal +in.weather_file_city Sawyer Co Location of weather station from specific weather file used for the building energy simulation is Sawyer Co +in.weather_file_city Sawyer Intl Location of weather station from specific weather file used for the building energy simulation is Sawyer Intl +in.weather_file_city Scappoose Industrial Location of weather station from specific weather file used for the building energy simulation is Scappoose Industrial +in.weather_file_city Schenck Fld Location of weather station from specific weather file used for the building energy simulation is Schenck Fld +in.weather_file_city Scott Afb Midameric Location of weather station from specific weather file used for the building energy simulation is Scott Afb Midameric +in.weather_file_city Scottsbluff Heilig Location of weather station from specific weather file used for the building energy simulation is Scottsbluff Heilig +in.weather_file_city Searle Fld Location of weather station from specific weather file used for the building energy simulation is Searle Fld +in.weather_file_city Sedalia Memorial Location of weather station from specific weather file used for the building energy simulation is Sedalia Memorial +in.weather_file_city Selfridge Angb Location of weather station from specific weather file used for the building energy simulation is Selfridge Angb +in.weather_file_city Seward Location of weather station from specific weather file used for the building energy simulation is Seward +in.weather_file_city Sexton Summit Location of weather station from specific weather file used for the building energy simulation is Sexton Summit +in.weather_file_city Seymour Johnson Afb Location of weather station from specific weather file used for the building energy simulation is Seymour Johnson Afb +in.weather_file_city Shannon Location of weather station from specific weather file used for the building energy simulation is Shannon +in.weather_file_city Shaw Afb Sumter Location of weather station from specific weather file used for the building energy simulation is Shaw Afb Sumter +in.weather_file_city Sheboygan Co Mem Location of weather station from specific weather file used for the building energy simulation is Sheboygan Co Mem +in.weather_file_city Shelbyville Muni Location of weather station from specific weather file used for the building energy simulation is Shelbyville Muni +in.weather_file_city Sheldon Muni Location of weather station from specific weather file used for the building energy simulation is Sheldon Muni +in.weather_file_city Shenandoah Muni Location of weather station from specific weather file used for the building energy simulation is Shenandoah Muni +in.weather_file_city Shenandoah Valley Rg Location of weather station from specific weather file used for the building energy simulation is Shenandoah Valley Rg +in.weather_file_city Sheridan Co Arpt Location of weather station from specific weather file used for the building energy simulation is Sheridan Co Arpt +in.weather_file_city Shreveport Regional Location of weather station from specific weather file used for the building energy simulation is Shreveport Regional +in.weather_file_city Sidney Muni Amos Location of weather station from specific weather file used for the building energy simulation is Sidney Muni Amos +in.weather_file_city Sidney Richland Muni Location of weather station from specific weather file used for the building energy simulation is Sidney Richland Muni +in.weather_file_city Sierra Blanca Rgnl Location of weather station from specific weather file used for the building energy simulation is Sierra Blanca Rgnl +in.weather_file_city Silver Bay Muni Location of weather station from specific weather file used for the building energy simulation is Silver Bay Muni +in.weather_file_city Sioux City Muni Location of weather station from specific weather file used for the building energy simulation is Sioux City Muni +in.weather_file_city Sioux Falls Foss Fi Location of weather station from specific weather file used for the building energy simulation is Sioux Falls Foss Fi +in.weather_file_city Siskiyou Co Location of weather station from specific weather file used for the building energy simulation is Siskiyou Co +in.weather_file_city Sisseton Muni Arpt Location of weather station from specific weather file used for the building energy simulation is Sisseton Muni Arpt +in.weather_file_city Sitka Location of weather station from specific weather file used for the building energy simulation is Sitka +in.weather_file_city Skyhaven Location of weather station from specific weather file used for the building energy simulation is Skyhaven +in.weather_file_city Slidell Location of weather station from specific weather file used for the building energy simulation is Slidell +in.weather_file_city Smith Reynolds Location of weather station from specific weather file used for the building energy simulation is Smith Reynolds +in.weather_file_city Snohomish Co Location of weather station from specific weather file used for the building energy simulation is Snohomish Co +in.weather_file_city Somerset Pulaski Co Location of weather station from specific weather file used for the building energy simulation is Somerset Pulaski Co +in.weather_file_city South Arkansas Rgnl Location of weather station from specific weather file used for the building energy simulation is South Arkansas Rgnl +in.weather_file_city South Bass Island Location of weather station from specific weather file used for the building energy simulation is South Bass Island +in.weather_file_city South Bend Stjosep Location of weather station from specific weather file used for the building energy simulation is South Bend Stjosep +in.weather_file_city South Big Horn Co Location of weather station from specific weather file used for the building energy simulation is South Big Horn Co +in.weather_file_city South Jersey Rgnl Location of weather station from specific weather file used for the building energy simulation is South Jersey Rgnl +in.weather_file_city South St Paul Muni Location of weather station from specific weather file used for the building energy simulation is South St Paul Muni +in.weather_file_city Southeast Iowa Rgnl Location of weather station from specific weather file used for the building energy simulation is Southeast Iowa Rgnl +in.weather_file_city Southern Illinois Location of weather station from specific weather file used for the building energy simulation is Southern Illinois +in.weather_file_city Southern Wisc Rgnl Location of weather station from specific weather file used for the building energy simulation is Southern Wisc Rgnl +in.weather_file_city Southwest Florida I Location of weather station from specific weather file used for the building energy simulation is Southwest Florida I +in.weather_file_city Southwest Michigan Location of weather station from specific weather file used for the building energy simulation is Southwest Michigan +in.weather_file_city Spart Fort Mc Coy Location of weather station from specific weather file used for the building energy simulation is Spart Fort Mc Coy +in.weather_file_city Spencer Location of weather station from specific weather file used for the building energy simulation is Spencer +in.weather_file_city Spirit Of St Louis Location of weather station from specific weather file used for the building energy simulation is Spirit Of St Louis +in.weather_file_city Springfield Capital Location of weather station from specific weather file used for the building energy simulation is Springfield Capital +in.weather_file_city Springfield Comanche Location of weather station from specific weather file used for the building energy simulation is Springfield Comanche +in.weather_file_city Springfield Muni Location of weather station from specific weather file used for the building energy simulation is Springfield Muni +in.weather_file_city St Augustine Location of weather station from specific weather file used for the building energy simulation is St Augustine +in.weather_file_city St Clair Co Intl Location of weather station from specific weather file used for the building energy simulation is St Clair Co Intl +in.weather_file_city St Cloud Municipal Location of weather station from specific weather file used for the building energy simulation is St Cloud Municipal +in.weather_file_city St George Muni Location of weather station from specific weather file used for the building energy simulation is St George Muni +in.weather_file_city St Johns Industrial Location of weather station from specific weather file used for the building energy simulation is St Johns Industrial +in.weather_file_city St Joseph Rose Cra Location of weather station from specific weather file used for the building energy simulation is St Joseph Rose Cra +in.weather_file_city St Louis Lambert Location of weather station from specific weather file used for the building energy simulation is St Louis Lambert +in.weather_file_city St Lucie Co Intl Location of weather station from specific weather file used for the building energy simulation is St Lucie Co Intl +in.weather_file_city St Paul Downtown Ho Location of weather station from specific weather file used for the building energy simulation is St Paul Downtown Ho +in.weather_file_city St Petersburg Clear Location of weather station from specific weather file used for the building energy simulation is St Petersburg Clear +in.weather_file_city Stanley Ranger Stn Location of weather station from specific weather file used for the building energy simulation is Stanley Ranger Stn +in.weather_file_city Staples Muni Location of weather station from specific weather file used for the building energy simulation is Staples Muni +in.weather_file_city Stephenville Clark Location of weather station from specific weather file used for the building energy simulation is Stephenville Clark +in.weather_file_city Sterling Rockfalls Location of weather station from specific weather file used for the building energy simulation is Sterling Rockfalls +in.weather_file_city Stevens Point Muni Location of weather station from specific weather file used for the building energy simulation is Stevens Point Muni +in.weather_file_city Stillwater Rgnl Location of weather station from specific weather file used for the building energy simulation is Stillwater Rgnl +in.weather_file_city Stinson Muni Location of weather station from specific weather file used for the building energy simulation is Stinson Muni +in.weather_file_city Stockton Metropolit Location of weather station from specific weather file used for the building energy simulation is Stockton Metropolit +in.weather_file_city Storm Lake Muni Location of weather station from specific weather file used for the building energy simulation is Storm Lake Muni +in.weather_file_city Strother Fld Location of weather station from specific weather file used for the building energy simulation is Strother Fld +in.weather_file_city Stuttgart Muni Location of weather station from specific weather file used for the building energy simulation is Stuttgart Muni +in.weather_file_city Suffolk Executive Location of weather station from specific weather file used for the building energy simulation is Suffolk Executive +in.weather_file_city Suger Land Rgnl Location of weather station from specific weather file used for the building energy simulation is Suger Land Rgnl +in.weather_file_city Sullivan Co Intl Location of weather station from specific weather file used for the building energy simulation is Sullivan Co Intl +in.weather_file_city Sussex Co Location of weather station from specific weather file used for the building energy simulation is Sussex Co +in.weather_file_city Sw Minnesota Rgnl Location of weather station from specific weather file used for the building energy simulation is Sw Minnesota Rgnl +in.weather_file_city Syracuse Hancock Location of weather station from specific weather file used for the building energy simulation is Syracuse Hancock +in.weather_file_city Tallahassee Municip Location of weather station from specific weather file used for the building energy simulation is Tallahassee Municip +in.weather_file_city Tampa Intl Airport Location of weather station from specific weather file used for the building energy simulation is Tampa Intl Airport +in.weather_file_city Taos Muni Apt Awos Location of weather station from specific weather file used for the building energy simulation is Taos Muni Apt Awos +in.weather_file_city Taunton Muni Location of weather station from specific weather file used for the building energy simulation is Taunton Muni +in.weather_file_city Taylor Co Location of weather station from specific weather file used for the building energy simulation is Taylor Co +in.weather_file_city Tekamah Muni Location of weather station from specific weather file used for the building energy simulation is Tekamah Muni +in.weather_file_city Terre Haute Intl Hu Location of weather station from specific weather file used for the building energy simulation is Terre Haute Intl Hu +in.weather_file_city Terrell Muni Location of weather station from specific weather file used for the building energy simulation is Terrell Muni +in.weather_file_city Teterboro Location of weather station from specific weather file used for the building energy simulation is Teterboro +in.weather_file_city Texarkana Rgnl Webb Location of weather station from specific weather file used for the building energy simulation is Texarkana Rgnl Webb +in.weather_file_city The Oneill Muni J Ba Location of weather station from specific weather file used for the building energy simulation is The Oneill Muni J Ba +in.weather_file_city Thief River Falls Rg Location of weather station from specific weather file used for the building energy simulation is Thief River Falls Rg +in.weather_file_city Thomas Point Location of weather station from specific weather file used for the building energy simulation is Thomas Point +in.weather_file_city Tinker Afb Location of weather station from specific weather file used for the building energy simulation is Tinker Afb +in.weather_file_city Toledo Express Location of weather station from specific weather file used for the building energy simulation is Toledo Express +in.weather_file_city Tonopah Location of weather station from specific weather file used for the building energy simulation is Tonopah +in.weather_file_city Topeka Billard Muni Location of weather station from specific weather file used for the building energy simulation is Topeka Billard Muni +in.weather_file_city Torrington Muni Location of weather station from specific weather file used for the building energy simulation is Torrington Muni +in.weather_file_city Trent Lott Intl Location of weather station from specific weather file used for the building energy simulation is Trent Lott Intl +in.weather_file_city Trenton Mercer Location of weather station from specific weather file used for the building energy simulation is Trenton Mercer +in.weather_file_city Tri Cities Location of weather station from specific weather file used for the building energy simulation is Tri Cities +in.weather_file_city Tri Cities Rgnl Location of weather station from specific weather file used for the building energy simulation is Tri Cities Rgnl +in.weather_file_city Tri City Location of weather station from specific weather file used for the building energy simulation is Tri City +in.weather_file_city Truckee Tahoe Location of weather station from specific weather file used for the building energy simulation is Truckee Tahoe +in.weather_file_city Tulip City Location of weather station from specific weather file used for the building energy simulation is Tulip City +in.weather_file_city Tulsa Intl Arpt Aw Location of weather station from specific weather file used for the building energy simulation is Tulsa Intl Arpt Aw +in.weather_file_city Tupelo Cd Lemons Location of weather station from specific weather file used for the building energy simulation is Tupelo Cd Lemons +in.weather_file_city Tuscaloosa Rgnl Location of weather station from specific weather file used for the building energy simulation is Tuscaloosa Rgnl +in.weather_file_city Twin County Location of weather station from specific weather file used for the building energy simulation is Twin County +in.weather_file_city Tyler Pounds Rgnl Location of weather station from specific weather file used for the building energy simulation is Tyler Pounds Rgnl +in.weather_file_city Ukiah Muni Location of weather station from specific weather file used for the building energy simulation is Ukiah Muni +in.weather_file_city Univ Of Illinois Wi Location of weather station from specific weather file used for the building energy simulation is Univ Of Illinois Wi +in.weather_file_city University Park Location of weather station from specific weather file used for the building energy simulation is University Park +in.weather_file_city Valdosta Rgnl Location of weather station from specific weather file used for the building energy simulation is Valdosta Rgnl +in.weather_file_city Valentine Amos Location of weather station from specific weather file used for the building energy simulation is Valentine Amos +in.weather_file_city Valley Intl Location of weather station from specific weather file used for the building energy simulation is Valley Intl +in.weather_file_city Valparaiso Eglin Af Location of weather station from specific weather file used for the building energy simulation is Valparaiso Eglin Af +in.weather_file_city Vance Afb Location of weather station from specific weather file used for the building energy simulation is Vance Afb +in.weather_file_city Venango Rgnl Location of weather station from specific weather file used for the building energy simulation is Venango Rgnl +in.weather_file_city Venice Pier Location of weather station from specific weather file used for the building energy simulation is Venice Pier +in.weather_file_city Vernal Location of weather station from specific weather file used for the building energy simulation is Vernal +in.weather_file_city Vero Beach Muni Location of weather station from specific weather file used for the building energy simulation is Vero Beach Muni +in.weather_file_city Vicksburg Tallulah Location of weather station from specific weather file used for the building energy simulation is Vicksburg Tallulah +in.weather_file_city Victoria Victoria R Location of weather station from specific weather file used for the building energy simulation is Victoria Victoria R +in.weather_file_city Virginia Highlands Location of weather station from specific weather file used for the building energy simulation is Virginia Highlands +in.weather_file_city Virginia Tech Arpt Location of weather station from specific weather file used for the building energy simulation is Virginia Tech Arpt +in.weather_file_city Visalia Muni Location of weather station from specific weather file used for the building energy simulation is Visalia Muni +in.weather_file_city W H Morse State Location of weather station from specific weather file used for the building energy simulation is W H Morse State +in.weather_file_city W K Kellogg Location of weather station from specific weather file used for the building energy simulation is W K Kellogg +in.weather_file_city Waco Rgnl Location of weather station from specific weather file used for the building energy simulation is Waco Rgnl +in.weather_file_city Wadena Location of weather station from specific weather file used for the building energy simulation is Wadena +in.weather_file_city Wakefield Muni Location of weather station from specific weather file used for the building energy simulation is Wakefield Muni +in.weather_file_city Walla Walla Rgnl Location of weather station from specific weather file used for the building energy simulation is Walla Walla Rgnl +in.weather_file_city Wallops Isl Stn Location of weather station from specific weather file used for the building energy simulation is Wallops Isl Stn +in.weather_file_city Walnut Ridge Rgnl Location of weather station from specific weather file used for the building energy simulation is Walnut Ridge Rgnl +in.weather_file_city Washington Co Location of weather station from specific weather file used for the building energy simulation is Washington Co +in.weather_file_city Washington Muni Location of weather station from specific weather file used for the building energy simulation is Washington Muni +in.weather_file_city Washington National Location of weather station from specific weather file used for the building energy simulation is Washington National +in.weather_file_city Waterbury Oxford Location of weather station from specific weather file used for the building energy simulation is Waterbury Oxford +in.weather_file_city Waterloo Municipal Location of weather station from specific weather file used for the building energy simulation is Waterloo Municipal +in.weather_file_city Watertown Intl Location of weather station from specific weather file used for the building energy simulation is Watertown Intl +in.weather_file_city Watertown Muni Location of weather station from specific weather file used for the building energy simulation is Watertown Muni +in.weather_file_city Waterville R Lafleur Location of weather station from specific weather file used for the building energy simulation is Waterville R Lafleur +in.weather_file_city Watsonville Muni Location of weather station from specific weather file used for the building energy simulation is Watsonville Muni +in.weather_file_city Waukesha Co Location of weather station from specific weather file used for the building energy simulation is Waukesha Co +in.weather_file_city Wausau Downtown Location of weather station from specific weather file used for the building energy simulation is Wausau Downtown +in.weather_file_city Waycross Ware Co Location of weather station from specific weather file used for the building energy simulation is Waycross Ware Co +in.weather_file_city Wayne Co Location of weather station from specific weather file used for the building energy simulation is Wayne Co +in.weather_file_city Webster City Muni Location of weather station from specific weather file used for the building energy simulation is Webster City Muni +in.weather_file_city Wellsville Muni Location of weather station from specific weather file used for the building energy simulation is Wellsville Muni +in.weather_file_city Wendover Af Aux F Location of weather station from specific weather file used for the building energy simulation is Wendover Af Aux F +in.weather_file_city West Bend Muni Location of weather station from specific weather file used for the building energy simulation is West Bend Muni +in.weather_file_city West Palm Beach In Location of weather station from specific weather file used for the building energy simulation is West Palm Beach In +in.weather_file_city West Plains Muni Location of weather station from specific weather file used for the building energy simulation is West Plains Muni +in.weather_file_city West Point Ls Location of weather station from specific weather file used for the building energy simulation is West Point Ls +in.weather_file_city Westchester Co Location of weather station from specific weather file used for the building energy simulation is Westchester Co +in.weather_file_city Wexford Co Location of weather station from specific weather file used for the building energy simulation is Wexford Co +in.weather_file_city Wheaton Muni Location of weather station from specific weather file used for the building energy simulation is Wheaton Muni +in.weather_file_city Wheeling Ohio Co Location of weather station from specific weather file used for the building energy simulation is Wheeling Ohio Co +in.weather_file_city White Sands Location of weather station from specific weather file used for the building energy simulation is White Sands +in.weather_file_city Whiteman Afb Location of weather station from specific weather file used for the building energy simulation is Whiteman Afb +in.weather_file_city Whiting Fld Nas Nort Location of weather station from specific weather file used for the building energy simulation is Whiting Fld Nas Nort +in.weather_file_city Wichita Falls Sheps Location of weather station from specific weather file used for the building energy simulation is Wichita Falls Sheps +in.weather_file_city Wichita Mid Contine Location of weather station from specific weather file used for the building energy simulation is Wichita Mid Contine +in.weather_file_city Wilkes Barre Scrant Location of weather station from specific weather file used for the building energy simulation is Wilkes Barre Scrant +in.weather_file_city William R Fairchild Location of weather station from specific weather file used for the building energy simulation is William R Fairchild +in.weather_file_city Williamson Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Williamson Co Rgnl +in.weather_file_city Williamsport Lycomi Location of weather station from specific weather file used for the building energy simulation is Williamsport Lycomi +in.weather_file_city Williston Sloulin F Location of weather station from specific weather file used for the building energy simulation is Williston Sloulin F +in.weather_file_city Willmar Rco Location of weather station from specific weather file used for the building energy simulation is Willmar Rco +in.weather_file_city Willow Grove Nas Jr Location of weather station from specific weather file used for the building energy simulation is Willow Grove Nas Jr +in.weather_file_city Wilmington Location of weather station from specific weather file used for the building energy simulation is Wilmington +in.weather_file_city Wilmington New Cast Location of weather station from specific weather file used for the building energy simulation is Wilmington New Cast +in.weather_file_city Winchester Rgnl Location of weather station from specific weather file used for the building energy simulation is Winchester Rgnl +in.weather_file_city Winder Barrow Location of weather station from specific weather file used for the building energy simulation is Winder Barrow +in.weather_file_city Windham Airport Location of weather station from specific weather file used for the building energy simulation is Windham Airport +in.weather_file_city Windom Muni Location of weather station from specific weather file used for the building energy simulation is Windom Muni +in.weather_file_city Window Rock Location of weather station from specific weather file used for the building energy simulation is Window Rock +in.weather_file_city Winkler Co Location of weather station from specific weather file used for the building energy simulation is Winkler Co +in.weather_file_city Winnemucca Muni Location of weather station from specific weather file used for the building energy simulation is Winnemucca Muni +in.weather_file_city Winner Location of weather station from specific weather file used for the building energy simulation is Winner +in.weather_file_city Winona Muni Conrad F Location of weather station from specific weather file used for the building energy simulation is Winona Muni Conrad F +in.weather_file_city Winslow Aut Location of weather station from specific weather file used for the building energy simulation is Winslow Aut +in.weather_file_city Wiscasset Location of weather station from specific weather file used for the building energy simulation is Wiscasset +in.weather_file_city Wittman Rgnl Location of weather station from specific weather file used for the building energy simulation is Wittman Rgnl +in.weather_file_city Worcester Regional Arpt Location of weather station from specific weather file used for the building energy simulation is Worcester Regional Arpt +in.weather_file_city Worland Muni Location of weather station from specific weather file used for the building energy simulation is Worland Muni +in.weather_file_city Worthington Muni Location of weather station from specific weather file used for the building energy simulation is Worthington Muni +in.weather_file_city Wrangell Location of weather station from specific weather file used for the building energy simulation is Wrangell +in.weather_file_city Yakima Air Terminal Location of weather station from specific weather file used for the building energy simulation is Yakima Air Terminal +in.weather_file_city Yeager Location of weather station from specific weather file used for the building energy simulation is Yeager +in.weather_file_city York Location of weather station from specific weather file used for the building energy simulation is York +in.weather_file_city Youngstown Muni Location of weather station from specific weather file used for the building energy simulation is Youngstown Muni +in.weather_file_city Yuba Co Location of weather station from specific weather file used for the building energy simulation is Yuba Co +in.weather_file_city Yuma Intl Airport Location of weather station from specific weather file used for the building energy simulation is Yuma Intl Airport +in.weather_file_city Zanesville Muni Location of weather station from specific weather file used for the building energy simulation is Zanesville Muni +in.weather_file_latitude 20.901944 Weather station latitude from weather file used for the building energy simulation is 20.901944°N +in.weather_file_latitude 24.73 Weather station latitude from weather file used for the building energy simulation is 24.73°N +in.weather_file_latitude 25.82 Weather station latitude from weather file used for the building energy simulation is 25.82°N +in.weather_file_latitude 25.91 Weather station latitude from weather file used for the building energy simulation is 25.91°N +in.weather_file_latitude 26.15 Weather station latitude from weather file used for the building energy simulation is 26.15°N +in.weather_file_latitude 26.18 Weather station latitude from weather file used for the building energy simulation is 26.18°N +in.weather_file_latitude 26.2 Weather station latitude from weather file used for the building energy simulation is 26.2°N +in.weather_file_latitude 26.23 Weather station latitude from weather file used for the building energy simulation is 26.23°N +in.weather_file_latitude 26.54 Weather station latitude from weather file used for the building energy simulation is 26.54°N +in.weather_file_latitude 26.59 Weather station latitude from weather file used for the building energy simulation is 26.59°N +in.weather_file_latitude 26.69 Weather station latitude from weather file used for the building energy simulation is 26.69°N +in.weather_file_latitude 26.92 Weather station latitude from weather file used for the building energy simulation is 26.92°N +in.weather_file_latitude 27.07 Weather station latitude from weather file used for the building energy simulation is 27.07°N +in.weather_file_latitude 27.4 Weather station latitude from weather file used for the building energy simulation is 27.4°N +in.weather_file_latitude 27.5 Weather station latitude from weather file used for the building energy simulation is 27.5°N +in.weather_file_latitude 27.55 Weather station latitude from weather file used for the building energy simulation is 27.55°N +in.weather_file_latitude 27.66 Weather station latitude from weather file used for the building energy simulation is 27.66°N +in.weather_file_latitude 27.74 Weather station latitude from weather file used for the building energy simulation is 27.74°N +in.weather_file_latitude 27.77 Weather station latitude from weather file used for the building energy simulation is 27.77°N +in.weather_file_latitude 27.91 Weather station latitude from weather file used for the building energy simulation is 27.91°N +in.weather_file_latitude 27.96 Weather station latitude from weather file used for the building energy simulation is 27.96°N +in.weather_file_latitude 28.08 Weather station latitude from weather file used for the building energy simulation is 28.08°N +in.weather_file_latitude 28.1 Weather station latitude from weather file used for the building energy simulation is 28.1°N +in.weather_file_latitude 28.37 Weather station latitude from weather file used for the building energy simulation is 28.37°N +in.weather_file_latitude 28.43 Weather station latitude from weather file used for the building energy simulation is 28.43°N +in.weather_file_latitude 28.46 Weather station latitude from weather file used for the building energy simulation is 28.46°N +in.weather_file_latitude 28.47 Weather station latitude from weather file used for the building energy simulation is 28.47°N +in.weather_file_latitude 28.55 Weather station latitude from weather file used for the building energy simulation is 28.55°N +in.weather_file_latitude 28.73 Weather station latitude from weather file used for the building energy simulation is 28.73°N +in.weather_file_latitude 28.78 Weather station latitude from weather file used for the building energy simulation is 28.78°N +in.weather_file_latitude 28.82 Weather station latitude from weather file used for the building energy simulation is 28.82°N +in.weather_file_latitude 28.86 Weather station latitude from weather file used for the building energy simulation is 28.86°N +in.weather_file_latitude 29.11 Weather station latitude from weather file used for the building energy simulation is 29.11°N +in.weather_file_latitude 29.17 Weather station latitude from weather file used for the building energy simulation is 29.17°N +in.weather_file_latitude 29.18 Weather station latitude from weather file used for the building energy simulation is 29.18°N +in.weather_file_latitude 29.27 Weather station latitude from weather file used for the building energy simulation is 29.27°N +in.weather_file_latitude 29.34 Weather station latitude from weather file used for the building energy simulation is 29.34°N +in.weather_file_latitude 29.36 Weather station latitude from weather file used for the building energy simulation is 29.36°N +in.weather_file_latitude 29.37 Weather station latitude from weather file used for the building energy simulation is 29.37°N +in.weather_file_latitude 29.53 Weather station latitude from weather file used for the building energy simulation is 29.53°N +in.weather_file_latitude 29.55 Weather station latitude from weather file used for the building energy simulation is 29.55°N +in.weather_file_latitude 29.61 Weather station latitude from weather file used for the building energy simulation is 29.61°N +in.weather_file_latitude 29.62 Weather station latitude from weather file used for the building energy simulation is 29.62°N +in.weather_file_latitude 29.69 Weather station latitude from weather file used for the building energy simulation is 29.69°N +in.weather_file_latitude 29.71 Weather station latitude from weather file used for the building energy simulation is 29.71°N +in.weather_file_latitude 29.73 Weather station latitude from weather file used for the building energy simulation is 29.73°N +in.weather_file_latitude 29.83 Weather station latitude from weather file used for the building energy simulation is 29.83°N +in.weather_file_latitude 29.87 Weather station latitude from weather file used for the building energy simulation is 29.87°N +in.weather_file_latitude 29.89 Weather station latitude from weather file used for the building energy simulation is 29.89°N +in.weather_file_latitude 29.91 Weather station latitude from weather file used for the building energy simulation is 29.91°N +in.weather_file_latitude 29.95 Weather station latitude from weather file used for the building energy simulation is 29.95°N +in.weather_file_latitude 29.99 Weather station latitude from weather file used for the building energy simulation is 29.99°N +in.weather_file_latitude 30.04 Weather station latitude from weather file used for the building energy simulation is 30.04°N +in.weather_file_latitude 30.06 Weather station latitude from weather file used for the building energy simulation is 30.06°N +in.weather_file_latitude 30.07 Weather station latitude from weather file used for the building energy simulation is 30.07°N +in.weather_file_latitude 30.13 Weather station latitude from weather file used for the building energy simulation is 30.13°N +in.weather_file_latitude 30.18 Weather station latitude from weather file used for the building energy simulation is 30.18°N +in.weather_file_latitude 30.21 Weather station latitude from weather file used for the building energy simulation is 30.21°N +in.weather_file_latitude 30.22 Weather station latitude from weather file used for the building energy simulation is 30.22°N +in.weather_file_latitude 30.23 Weather station latitude from weather file used for the building energy simulation is 30.23°N +in.weather_file_latitude 30.32 Weather station latitude from weather file used for the building energy simulation is 30.32°N +in.weather_file_latitude 30.35 Weather station latitude from weather file used for the building energy simulation is 30.35°N +in.weather_file_latitude 30.37 Weather station latitude from weather file used for the building energy simulation is 30.37°N +in.weather_file_latitude 30.39 Weather station latitude from weather file used for the building energy simulation is 30.39°N +in.weather_file_latitude 30.4 Weather station latitude from weather file used for the building energy simulation is 30.4°N +in.weather_file_latitude 30.41 Weather station latitude from weather file used for the building energy simulation is 30.41°N +in.weather_file_latitude 30.46 Weather station latitude from weather file used for the building energy simulation is 30.46°N +in.weather_file_latitude 30.47 Weather station latitude from weather file used for the building energy simulation is 30.47°N +in.weather_file_latitude 30.48 Weather station latitude from weather file used for the building energy simulation is 30.48°N +in.weather_file_latitude 30.49 Weather station latitude from weather file used for the building energy simulation is 30.49°N +in.weather_file_latitude 30.51 Weather station latitude from weather file used for the building energy simulation is 30.51°N +in.weather_file_latitude 30.54 Weather station latitude from weather file used for the building energy simulation is 30.54°N +in.weather_file_latitude 30.59 Weather station latitude from weather file used for the building energy simulation is 30.59°N +in.weather_file_latitude 30.63 Weather station latitude from weather file used for the building energy simulation is 30.63°N +in.weather_file_latitude 30.68 Weather station latitude from weather file used for the building energy simulation is 30.68°N +in.weather_file_latitude 30.69 Weather station latitude from weather file used for the building energy simulation is 30.69°N +in.weather_file_latitude 30.72 Weather station latitude from weather file used for the building energy simulation is 30.72°N +in.weather_file_latitude 30.74 Weather station latitude from weather file used for the building energy simulation is 30.74°N +in.weather_file_latitude 30.75 Weather station latitude from weather file used for the building energy simulation is 30.75°N +in.weather_file_latitude 30.78 Weather station latitude from weather file used for the building energy simulation is 30.78°N +in.weather_file_latitude 30.84 Weather station latitude from weather file used for the building energy simulation is 30.84°N +in.weather_file_latitude 30.92 Weather station latitude from weather file used for the building energy simulation is 30.92°N +in.weather_file_latitude 30.97 Weather station latitude from weather file used for the building energy simulation is 30.97°N +in.weather_file_latitude 31.05 Weather station latitude from weather file used for the building energy simulation is 31.05°N +in.weather_file_latitude 31.07 Weather station latitude from weather file used for the building energy simulation is 31.07°N +in.weather_file_latitude 31.09 Weather station latitude from weather file used for the building energy simulation is 31.09°N +in.weather_file_latitude 31.15 Weather station latitude from weather file used for the building energy simulation is 31.15°N +in.weather_file_latitude 31.18 Weather station latitude from weather file used for the building energy simulation is 31.18°N +in.weather_file_latitude 31.23 Weather station latitude from weather file used for the building energy simulation is 31.23°N +in.weather_file_latitude 31.25 Weather station latitude from weather file used for the building energy simulation is 31.25°N +in.weather_file_latitude 31.26 Weather station latitude from weather file used for the building energy simulation is 31.26°N +in.weather_file_latitude 31.28 Weather station latitude from weather file used for the building energy simulation is 31.28°N +in.weather_file_latitude 31.32 Weather station latitude from weather file used for the building energy simulation is 31.32°N +in.weather_file_latitude 31.34 Weather station latitude from weather file used for the building energy simulation is 31.34°N +in.weather_file_latitude 31.35 Weather station latitude from weather file used for the building energy simulation is 31.35°N +in.weather_file_latitude 31.4 Weather station latitude from weather file used for the building energy simulation is 31.4°N +in.weather_file_latitude 31.42 Weather station latitude from weather file used for the building energy simulation is 31.42°N +in.weather_file_latitude 31.47 Weather station latitude from weather file used for the building energy simulation is 31.47°N +in.weather_file_latitude 31.49 Weather station latitude from weather file used for the building energy simulation is 31.49°N +in.weather_file_latitude 31.54 Weather station latitude from weather file used for the building energy simulation is 31.54°N +in.weather_file_latitude 31.58 Weather station latitude from weather file used for the building energy simulation is 31.58°N +in.weather_file_latitude 31.61 Weather station latitude from weather file used for the building energy simulation is 31.61°N +in.weather_file_latitude 31.78 Weather station latitude from weather file used for the building energy simulation is 31.78°N +in.weather_file_latitude 31.81 Weather station latitude from weather file used for the building energy simulation is 31.81°N +in.weather_file_latitude 31.83 Weather station latitude from weather file used for the building energy simulation is 31.83°N +in.weather_file_latitude 31.92 Weather station latitude from weather file used for the building energy simulation is 31.92°N +in.weather_file_latitude 31.93 Weather station latitude from weather file used for the building energy simulation is 31.93°N +in.weather_file_latitude 32.01 Weather station latitude from weather file used for the building energy simulation is 32.01°N +in.weather_file_latitude 32.03 Weather station latitude from weather file used for the building energy simulation is 32.03°N +in.weather_file_latitude 32.12 Weather station latitude from weather file used for the building energy simulation is 32.12°N +in.weather_file_latitude 32.17 Weather station latitude from weather file used for the building energy simulation is 32.17°N +in.weather_file_latitude 32.22 Weather station latitude from weather file used for the building energy simulation is 32.22°N +in.weather_file_latitude 32.26 Weather station latitude from weather file used for the building energy simulation is 32.26°N +in.weather_file_latitude 32.3 Weather station latitude from weather file used for the building energy simulation is 32.3°N +in.weather_file_latitude 32.32 Weather station latitude from weather file used for the building energy simulation is 32.32°N +in.weather_file_latitude 32.33 Weather station latitude from weather file used for the building energy simulation is 32.33°N +in.weather_file_latitude 32.34 Weather station latitude from weather file used for the building energy simulation is 32.34°N +in.weather_file_latitude 32.35 Weather station latitude from weather file used for the building energy simulation is 32.35°N +in.weather_file_latitude 32.38 Weather station latitude from weather file used for the building energy simulation is 32.38°N +in.weather_file_latitude 32.39 Weather station latitude from weather file used for the building energy simulation is 32.39°N +in.weather_file_latitude 32.41 Weather station latitude from weather file used for the building energy simulation is 32.41°N +in.weather_file_latitude 32.43 Weather station latitude from weather file used for the building energy simulation is 32.43°N +in.weather_file_latitude 32.45 Weather station latitude from weather file used for the building energy simulation is 32.45°N +in.weather_file_latitude 32.48 Weather station latitude from weather file used for the building energy simulation is 32.48°N +in.weather_file_latitude 32.5 Weather station latitude from weather file used for the building energy simulation is 32.5°N +in.weather_file_latitude 32.51 Weather station latitude from weather file used for the building energy simulation is 32.51°N +in.weather_file_latitude 32.52 Weather station latitude from weather file used for the building energy simulation is 32.52°N +in.weather_file_latitude 32.55 Weather station latitude from weather file used for the building energy simulation is 32.55°N +in.weather_file_latitude 32.63 Weather station latitude from weather file used for the building energy simulation is 32.63°N +in.weather_file_latitude 32.65 Weather station latitude from weather file used for the building energy simulation is 32.65°N +in.weather_file_latitude 32.66 Weather station latitude from weather file used for the building energy simulation is 32.66°N +in.weather_file_latitude 32.69 Weather station latitude from weather file used for the building energy simulation is 32.69°N +in.weather_file_latitude 32.71 Weather station latitude from weather file used for the building energy simulation is 32.71°N +in.weather_file_latitude 32.73 Weather station latitude from weather file used for the building energy simulation is 32.73°N +in.weather_file_latitude 32.78 Weather station latitude from weather file used for the building energy simulation is 32.78°N +in.weather_file_latitude 32.82 Weather station latitude from weather file used for the building energy simulation is 32.82°N +in.weather_file_latitude 32.83 Weather station latitude from weather file used for the building energy simulation is 32.83°N +in.weather_file_latitude 32.84 Weather station latitude from weather file used for the building energy simulation is 32.84°N +in.weather_file_latitude 32.85 Weather station latitude from weather file used for the building energy simulation is 32.85°N +in.weather_file_latitude 32.86 Weather station latitude from weather file used for the building energy simulation is 32.86°N +in.weather_file_latitude 32.87 Weather station latitude from weather file used for the building energy simulation is 32.87°N +in.weather_file_latitude 32.9 Weather station latitude from weather file used for the building energy simulation is 32.9°N +in.weather_file_latitude 32.97 Weather station latitude from weather file used for the building energy simulation is 32.97°N +in.weather_file_latitude 33.18 Weather station latitude from weather file used for the building energy simulation is 33.18°N +in.weather_file_latitude 33.21 Weather station latitude from weather file used for the building energy simulation is 33.21°N +in.weather_file_latitude 33.22 Weather station latitude from weather file used for the building energy simulation is 33.22°N +in.weather_file_latitude 33.31 Weather station latitude from weather file used for the building energy simulation is 33.31°N +in.weather_file_latitude 33.36 Weather station latitude from weather file used for the building energy simulation is 33.36°N +in.weather_file_latitude 33.37 Weather station latitude from weather file used for the building energy simulation is 33.37°N +in.weather_file_latitude 33.44 Weather station latitude from weather file used for the building energy simulation is 33.44°N +in.weather_file_latitude 33.45 Weather station latitude from weather file used for the building energy simulation is 33.45°N +in.weather_file_latitude 33.46 Weather station latitude from weather file used for the building energy simulation is 33.46°N +in.weather_file_latitude 33.47 Weather station latitude from weather file used for the building energy simulation is 33.47°N +in.weather_file_latitude 33.48 Weather station latitude from weather file used for the building energy simulation is 33.48°N +in.weather_file_latitude 33.5 Weather station latitude from weather file used for the building energy simulation is 33.5°N +in.weather_file_latitude 33.56 Weather station latitude from weather file used for the building energy simulation is 33.56°N +in.weather_file_latitude 33.59 Weather station latitude from weather file used for the building energy simulation is 33.59°N +in.weather_file_latitude 33.62 Weather station latitude from weather file used for the building energy simulation is 33.62°N +in.weather_file_latitude 33.64 Weather station latitude from weather file used for the building energy simulation is 33.64°N +in.weather_file_latitude 33.67 Weather station latitude from weather file used for the building energy simulation is 33.67°N +in.weather_file_latitude 33.68 Weather station latitude from weather file used for the building energy simulation is 33.68°N +in.weather_file_latitude 33.78 Weather station latitude from weather file used for the building energy simulation is 33.78°N +in.weather_file_latitude 33.88 Weather station latitude from weather file used for the building energy simulation is 33.88°N +in.weather_file_latitude 33.9 Weather station latitude from weather file used for the building energy simulation is 33.9°N +in.weather_file_latitude 33.92 Weather station latitude from weather file used for the building energy simulation is 33.92°N +in.weather_file_latitude 33.94 Weather station latitude from weather file used for the building energy simulation is 33.94°N +in.weather_file_latitude 33.95 Weather station latitude from weather file used for the building energy simulation is 33.95°N +in.weather_file_latitude 33.97 Weather station latitude from weather file used for the building energy simulation is 33.97°N +in.weather_file_latitude 33.98 Weather station latitude from weather file used for the building energy simulation is 33.98°N +in.weather_file_latitude 34.03 Weather station latitude from weather file used for the building energy simulation is 34.03°N +in.weather_file_latitude 34.05 Weather station latitude from weather file used for the building energy simulation is 34.05°N +in.weather_file_latitude 34.12 Weather station latitude from weather file used for the building energy simulation is 34.12°N +in.weather_file_latitude 34.15 Weather station latitude from weather file used for the building energy simulation is 34.15°N +in.weather_file_latitude 34.18 Weather station latitude from weather file used for the building energy simulation is 34.18°N +in.weather_file_latitude 34.19 Weather station latitude from weather file used for the building energy simulation is 34.19°N +in.weather_file_latitude 34.22 Weather station latitude from weather file used for the building energy simulation is 34.22°N +in.weather_file_latitude 34.25 Weather station latitude from weather file used for the building energy simulation is 34.25°N +in.weather_file_latitude 34.26 Weather station latitude from weather file used for the building energy simulation is 34.26°N +in.weather_file_latitude 34.27 Weather station latitude from weather file used for the building energy simulation is 34.27°N +in.weather_file_latitude 34.35 Weather station latitude from weather file used for the building energy simulation is 34.35°N +in.weather_file_latitude 34.38 Weather station latitude from weather file used for the building energy simulation is 34.38°N +in.weather_file_latitude 34.43 Weather station latitude from weather file used for the building energy simulation is 34.43°N +in.weather_file_latitude 34.48 Weather station latitude from weather file used for the building energy simulation is 34.48°N +in.weather_file_latitude 34.5 Weather station latitude from weather file used for the building energy simulation is 34.5°N +in.weather_file_latitude 34.52 Weather station latitude from weather file used for the building energy simulation is 34.52°N +in.weather_file_latitude 34.55 Weather station latitude from weather file used for the building energy simulation is 34.55°N +in.weather_file_latitude 34.57 Weather station latitude from weather file used for the building energy simulation is 34.57°N +in.weather_file_latitude 34.6 Weather station latitude from weather file used for the building energy simulation is 34.6°N +in.weather_file_latitude 34.64 Weather station latitude from weather file used for the building energy simulation is 34.64°N +in.weather_file_latitude 34.65 Weather station latitude from weather file used for the building energy simulation is 34.65°N +in.weather_file_latitude 34.66 Weather station latitude from weather file used for the building energy simulation is 34.66°N +in.weather_file_latitude 34.67 Weather station latitude from weather file used for the building energy simulation is 34.67°N +in.weather_file_latitude 34.7 Weather station latitude from weather file used for the building energy simulation is 34.7°N +in.weather_file_latitude 34.72 Weather station latitude from weather file used for the building energy simulation is 34.72°N +in.weather_file_latitude 34.73 Weather station latitude from weather file used for the building energy simulation is 34.73°N +in.weather_file_latitude 34.75 Weather station latitude from weather file used for the building energy simulation is 34.75°N +in.weather_file_latitude 34.79 Weather station latitude from weather file used for the building energy simulation is 34.79°N +in.weather_file_latitude 34.83 Weather station latitude from weather file used for the building energy simulation is 34.83°N +in.weather_file_latitude 34.9 Weather station latitude from weather file used for the building energy simulation is 34.9°N +in.weather_file_latitude 34.92 Weather station latitude from weather file used for the building energy simulation is 34.92°N +in.weather_file_latitude 34.99 Weather station latitude from weather file used for the building energy simulation is 34.99°N +in.weather_file_latitude 35 Weather station latitude from weather file used for the building energy simulation is 35°N +in.weather_file_latitude 35.01 Weather station latitude from weather file used for the building energy simulation is 35.01°N +in.weather_file_latitude 35.02 Weather station latitude from weather file used for the building energy simulation is 35.02°N +in.weather_file_latitude 35.03 Weather station latitude from weather file used for the building energy simulation is 35.03°N +in.weather_file_latitude 35.04 Weather station latitude from weather file used for the building energy simulation is 35.04°N +in.weather_file_latitude 35.06 Weather station latitude from weather file used for the building energy simulation is 35.06°N +in.weather_file_latitude 35.07 Weather station latitude from weather file used for the building energy simulation is 35.07°N +in.weather_file_latitude 35.13 Weather station latitude from weather file used for the building energy simulation is 35.13°N +in.weather_file_latitude 35.14 Weather station latitude from weather file used for the building energy simulation is 35.14°N +in.weather_file_latitude 35.17 Weather station latitude from weather file used for the building energy simulation is 35.17°N +in.weather_file_latitude 35.2 Weather station latitude from weather file used for the building energy simulation is 35.2°N +in.weather_file_latitude 35.21 Weather station latitude from weather file used for the building energy simulation is 35.21°N +in.weather_file_latitude 35.22 Weather station latitude from weather file used for the building energy simulation is 35.22°N +in.weather_file_latitude 35.24 Weather station latitude from weather file used for the building energy simulation is 35.24°N +in.weather_file_latitude 35.26 Weather station latitude from weather file used for the building energy simulation is 35.26°N +in.weather_file_latitude 35.27 Weather station latitude from weather file used for the building energy simulation is 35.27°N +in.weather_file_latitude 35.33 Weather station latitude from weather file used for the building energy simulation is 35.33°N +in.weather_file_latitude 35.34 Weather station latitude from weather file used for the building energy simulation is 35.34°N +in.weather_file_latitude 35.35 Weather station latitude from weather file used for the building energy simulation is 35.35°N +in.weather_file_latitude 35.38 Weather station latitude from weather file used for the building energy simulation is 35.38°N +in.weather_file_latitude 35.39 Weather station latitude from weather file used for the building energy simulation is 35.39°N +in.weather_file_latitude 35.42 Weather station latitude from weather file used for the building energy simulation is 35.42°N +in.weather_file_latitude 35.43 Weather station latitude from weather file used for the building energy simulation is 35.43°N +in.weather_file_latitude 35.51 Weather station latitude from weather file used for the building energy simulation is 35.51°N +in.weather_file_latitude 35.53 Weather station latitude from weather file used for the building energy simulation is 35.53°N +in.weather_file_latitude 35.59 Weather station latitude from weather file used for the building energy simulation is 35.59°N +in.weather_file_latitude 35.62 Weather station latitude from weather file used for the building energy simulation is 35.62°N +in.weather_file_latitude 35.64 Weather station latitude from weather file used for the building energy simulation is 35.64°N +in.weather_file_latitude 35.65 Weather station latitude from weather file used for the building energy simulation is 35.65°N +in.weather_file_latitude 35.66 Weather station latitude from weather file used for the building energy simulation is 35.66°N +in.weather_file_latitude 35.7 Weather station latitude from weather file used for the building energy simulation is 35.7°N +in.weather_file_latitude 35.73 Weather station latitude from weather file used for the building energy simulation is 35.73°N +in.weather_file_latitude 35.74 Weather station latitude from weather file used for the building energy simulation is 35.74°N +in.weather_file_latitude 35.82 Weather station latitude from weather file used for the building energy simulation is 35.82°N +in.weather_file_latitude 35.83 Weather station latitude from weather file used for the building energy simulation is 35.83°N +in.weather_file_latitude 35.85 Weather station latitude from weather file used for the building energy simulation is 35.85°N +in.weather_file_latitude 35.86 Weather station latitude from weather file used for the building energy simulation is 35.86°N +in.weather_file_latitude 35.87 Weather station latitude from weather file used for the building energy simulation is 35.87°N +in.weather_file_latitude 35.92 Weather station latitude from weather file used for the building energy simulation is 35.92°N +in.weather_file_latitude 35.95 Weather station latitude from weather file used for the building energy simulation is 35.95°N +in.weather_file_latitude 36 Weather station latitude from weather file used for the building energy simulation is 36°N +in.weather_file_latitude 36.01 Weather station latitude from weather file used for the building energy simulation is 36.01°N +in.weather_file_latitude 36.02 Weather station latitude from weather file used for the building energy simulation is 36.02°N +in.weather_file_latitude 36.03 Weather station latitude from weather file used for the building energy simulation is 36.03°N +in.weather_file_latitude 36.04 Weather station latitude from weather file used for the building energy simulation is 36.04°N +in.weather_file_latitude 36.05 Weather station latitude from weather file used for the building energy simulation is 36.05°N +in.weather_file_latitude 36.08 Weather station latitude from weather file used for the building energy simulation is 36.08°N +in.weather_file_latitude 36.1 Weather station latitude from weather file used for the building energy simulation is 36.1°N +in.weather_file_latitude 36.12 Weather station latitude from weather file used for the building energy simulation is 36.12°N +in.weather_file_latitude 36.13 Weather station latitude from weather file used for the building energy simulation is 36.13°N +in.weather_file_latitude 36.16 Weather station latitude from weather file used for the building energy simulation is 36.16°N +in.weather_file_latitude 36.2 Weather station latitude from weather file used for the building energy simulation is 36.2°N +in.weather_file_latitude 36.26 Weather station latitude from weather file used for the building energy simulation is 36.26°N +in.weather_file_latitude 36.3 Weather station latitude from weather file used for the building energy simulation is 36.3°N +in.weather_file_latitude 36.32 Weather station latitude from weather file used for the building energy simulation is 36.32°N +in.weather_file_latitude 36.34 Weather station latitude from weather file used for the building energy simulation is 36.34°N +in.weather_file_latitude 36.35 Weather station latitude from weather file used for the building energy simulation is 36.35°N +in.weather_file_latitude 36.37 Weather station latitude from weather file used for the building energy simulation is 36.37°N +in.weather_file_latitude 36.43 Weather station latitude from weather file used for the building energy simulation is 36.43°N +in.weather_file_latitude 36.44 Weather station latitude from weather file used for the building energy simulation is 36.44°N +in.weather_file_latitude 36.45 Weather station latitude from weather file used for the building energy simulation is 36.45°N +in.weather_file_latitude 36.46 Weather station latitude from weather file used for the building energy simulation is 36.46°N +in.weather_file_latitude 36.48 Weather station latitude from weather file used for the building energy simulation is 36.48°N +in.weather_file_latitude 36.57 Weather station latitude from weather file used for the building energy simulation is 36.57°N +in.weather_file_latitude 36.62 Weather station latitude from weather file used for the building energy simulation is 36.62°N +in.weather_file_latitude 36.63 Weather station latitude from weather file used for the building energy simulation is 36.63°N +in.weather_file_latitude 36.66 Weather station latitude from weather file used for the building energy simulation is 36.66°N +in.weather_file_latitude 36.67 Weather station latitude from weather file used for the building energy simulation is 36.67°N +in.weather_file_latitude 36.68 Weather station latitude from weather file used for the building energy simulation is 36.68°N +in.weather_file_latitude 36.69 Weather station latitude from weather file used for the building energy simulation is 36.69°N +in.weather_file_latitude 36.7 Weather station latitude from weather file used for the building energy simulation is 36.7°N +in.weather_file_latitude 36.73 Weather station latitude from weather file used for the building energy simulation is 36.73°N +in.weather_file_latitude 36.74 Weather station latitude from weather file used for the building energy simulation is 36.74°N +in.weather_file_latitude 36.77 Weather station latitude from weather file used for the building energy simulation is 36.77°N +in.weather_file_latitude 36.78 Weather station latitude from weather file used for the building energy simulation is 36.78°N +in.weather_file_latitude 36.88 Weather station latitude from weather file used for the building energy simulation is 36.88°N +in.weather_file_latitude 36.9 Weather station latitude from weather file used for the building energy simulation is 36.9°N +in.weather_file_latitude 36.93 Weather station latitude from weather file used for the building energy simulation is 36.93°N +in.weather_file_latitude 36.94 Weather station latitude from weather file used for the building energy simulation is 36.94°N +in.weather_file_latitude 36.98 Weather station latitude from weather file used for the building energy simulation is 36.98°N +in.weather_file_latitude 36.99 Weather station latitude from weather file used for the building energy simulation is 36.99°N +in.weather_file_latitude 37 Weather station latitude from weather file used for the building energy simulation is 37°N +in.weather_file_latitude 37.04 Weather station latitude from weather file used for the building energy simulation is 37.04°N +in.weather_file_latitude 37.05 Weather station latitude from weather file used for the building energy simulation is 37.05°N +in.weather_file_latitude 37.06 Weather station latitude from weather file used for the building energy simulation is 37.06°N +in.weather_file_latitude 37.08 Weather station latitude from weather file used for the building energy simulation is 37.08°N +in.weather_file_latitude 37.09 Weather station latitude from weather file used for the building energy simulation is 37.09°N +in.weather_file_latitude 37.13 Weather station latitude from weather file used for the building energy simulation is 37.13°N +in.weather_file_latitude 37.14 Weather station latitude from weather file used for the building energy simulation is 37.14°N +in.weather_file_latitude 37.15 Weather station latitude from weather file used for the building energy simulation is 37.15°N +in.weather_file_latitude 37.17 Weather station latitude from weather file used for the building energy simulation is 37.17°N +in.weather_file_latitude 37.18 Weather station latitude from weather file used for the building energy simulation is 37.18°N +in.weather_file_latitude 37.21 Weather station latitude from weather file used for the building energy simulation is 37.21°N +in.weather_file_latitude 37.23 Weather station latitude from weather file used for the building energy simulation is 37.23°N +in.weather_file_latitude 37.24 Weather station latitude from weather file used for the building energy simulation is 37.24°N +in.weather_file_latitude 37.26 Weather station latitude from weather file used for the building energy simulation is 37.26°N +in.weather_file_latitude 37.28 Weather station latitude from weather file used for the building energy simulation is 37.28°N +in.weather_file_latitude 37.29 Weather station latitude from weather file used for the building energy simulation is 37.29°N +in.weather_file_latitude 37.3 Weather station latitude from weather file used for the building energy simulation is 37.3°N +in.weather_file_latitude 37.32 Weather station latitude from weather file used for the building energy simulation is 37.32°N +in.weather_file_latitude 37.33 Weather station latitude from weather file used for the building energy simulation is 37.33°N +in.weather_file_latitude 37.34 Weather station latitude from weather file used for the building energy simulation is 37.34°N +in.weather_file_latitude 37.36 Weather station latitude from weather file used for the building energy simulation is 37.36°N +in.weather_file_latitude 37.37 Weather station latitude from weather file used for the building energy simulation is 37.37°N +in.weather_file_latitude 37.44 Weather station latitude from weather file used for the building energy simulation is 37.44°N +in.weather_file_latitude 37.51 Weather station latitude from weather file used for the building energy simulation is 37.51°N +in.weather_file_latitude 37.59 Weather station latitude from weather file used for the building energy simulation is 37.59°N +in.weather_file_latitude 37.62 Weather station latitude from weather file used for the building energy simulation is 37.62°N +in.weather_file_latitude 37.63 Weather station latitude from weather file used for the building energy simulation is 37.63°N +in.weather_file_latitude 37.65 Weather station latitude from weather file used for the building energy simulation is 37.65°N +in.weather_file_latitude 37.66 Weather station latitude from weather file used for the building energy simulation is 37.66°N +in.weather_file_latitude 37.67 Weather station latitude from weather file used for the building energy simulation is 37.67°N +in.weather_file_latitude 37.7 Weather station latitude from weather file used for the building energy simulation is 37.7°N +in.weather_file_latitude 37.71 Weather station latitude from weather file used for the building energy simulation is 37.71°N +in.weather_file_latitude 37.75 Weather station latitude from weather file used for the building energy simulation is 37.75°N +in.weather_file_latitude 37.76 Weather station latitude from weather file used for the building energy simulation is 37.76°N +in.weather_file_latitude 37.77 Weather station latitude from weather file used for the building energy simulation is 37.77°N +in.weather_file_latitude 37.78 Weather station latitude from weather file used for the building energy simulation is 37.78°N +in.weather_file_latitude 37.8 Weather station latitude from weather file used for the building energy simulation is 37.8°N +in.weather_file_latitude 37.81 Weather station latitude from weather file used for the building energy simulation is 37.81°N +in.weather_file_latitude 37.86 Weather station latitude from weather file used for the building energy simulation is 37.86°N +in.weather_file_latitude 37.89 Weather station latitude from weather file used for the building energy simulation is 37.89°N +in.weather_file_latitude 37.9 Weather station latitude from weather file used for the building energy simulation is 37.9°N +in.weather_file_latitude 37.93 Weather station latitude from weather file used for the building energy simulation is 37.93°N +in.weather_file_latitude 37.94 Weather station latitude from weather file used for the building energy simulation is 37.94°N +in.weather_file_latitude 37.95 Weather station latitude from weather file used for the building energy simulation is 37.95°N +in.weather_file_latitude 37.99 Weather station latitude from weather file used for the building energy simulation is 37.99°N +in.weather_file_latitude 38.01 Weather station latitude from weather file used for the building energy simulation is 38.01°N +in.weather_file_latitude 38.04 Weather station latitude from weather file used for the building energy simulation is 38.04°N +in.weather_file_latitude 38.05 Weather station latitude from weather file used for the building energy simulation is 38.05°N +in.weather_file_latitude 38.06 Weather station latitude from weather file used for the building energy simulation is 38.06°N +in.weather_file_latitude 38.07 Weather station latitude from weather file used for the building energy simulation is 38.07°N +in.weather_file_latitude 38.1 Weather station latitude from weather file used for the building energy simulation is 38.1°N +in.weather_file_latitude 38.13 Weather station latitude from weather file used for the building energy simulation is 38.13°N +in.weather_file_latitude 38.14 Weather station latitude from weather file used for the building energy simulation is 38.14°N +in.weather_file_latitude 38.18 Weather station latitude from weather file used for the building energy simulation is 38.18°N +in.weather_file_latitude 38.19 Weather station latitude from weather file used for the building energy simulation is 38.19°N +in.weather_file_latitude 38.21 Weather station latitude from weather file used for the building energy simulation is 38.21°N +in.weather_file_latitude 38.23 Weather station latitude from weather file used for the building energy simulation is 38.23°N +in.weather_file_latitude 38.25 Weather station latitude from weather file used for the building energy simulation is 38.25°N +in.weather_file_latitude 38.26 Weather station latitude from weather file used for the building energy simulation is 38.26°N +in.weather_file_latitude 38.27 Weather station latitude from weather file used for the building energy simulation is 38.27°N +in.weather_file_latitude 38.28 Weather station latitude from weather file used for the building energy simulation is 38.28°N +in.weather_file_latitude 38.29 Weather station latitude from weather file used for the building energy simulation is 38.29°N +in.weather_file_latitude 38.31 Weather station latitude from weather file used for the building energy simulation is 38.31°N +in.weather_file_latitude 38.32 Weather station latitude from weather file used for the building energy simulation is 38.32°N +in.weather_file_latitude 38.33 Weather station latitude from weather file used for the building energy simulation is 38.33°N +in.weather_file_latitude 38.34 Weather station latitude from weather file used for the building energy simulation is 38.34°N +in.weather_file_latitude 38.38 Weather station latitude from weather file used for the building energy simulation is 38.38°N +in.weather_file_latitude 38.45 Weather station latitude from weather file used for the building energy simulation is 38.45°N +in.weather_file_latitude 38.5 Weather station latitude from weather file used for the building energy simulation is 38.5°N +in.weather_file_latitude 38.51 Weather station latitude from weather file used for the building energy simulation is 38.51°N +in.weather_file_latitude 38.53 Weather station latitude from weather file used for the building energy simulation is 38.53°N +in.weather_file_latitude 38.57 Weather station latitude from weather file used for the building energy simulation is 38.57°N +in.weather_file_latitude 38.59 Weather station latitude from weather file used for the building energy simulation is 38.59°N +in.weather_file_latitude 38.64 Weather station latitude from weather file used for the building energy simulation is 38.64°N +in.weather_file_latitude 38.66 Weather station latitude from weather file used for the building energy simulation is 38.66°N +in.weather_file_latitude 38.67 Weather station latitude from weather file used for the building energy simulation is 38.67°N +in.weather_file_latitude 38.69 Weather station latitude from weather file used for the building energy simulation is 38.69°N +in.weather_file_latitude 38.7 Weather station latitude from weather file used for the building energy simulation is 38.7°N +in.weather_file_latitude 38.72 Weather station latitude from weather file used for the building energy simulation is 38.72°N +in.weather_file_latitude 38.73 Weather station latitude from weather file used for the building energy simulation is 38.73°N +in.weather_file_latitude 38.75 Weather station latitude from weather file used for the building energy simulation is 38.75°N +in.weather_file_latitude 38.76 Weather station latitude from weather file used for the building energy simulation is 38.76°N +in.weather_file_latitude 38.81 Weather station latitude from weather file used for the building energy simulation is 38.81°N +in.weather_file_latitude 38.82 Weather station latitude from weather file used for the building energy simulation is 38.82°N +in.weather_file_latitude 38.83 Weather station latitude from weather file used for the building energy simulation is 38.83°N +in.weather_file_latitude 38.85 Weather station latitude from weather file used for the building energy simulation is 38.85°N +in.weather_file_latitude 38.87 Weather station latitude from weather file used for the building energy simulation is 38.87°N +in.weather_file_latitude 38.89 Weather station latitude from weather file used for the building energy simulation is 38.89°N +in.weather_file_latitude 38.9 Weather station latitude from weather file used for the building energy simulation is 38.9°N +in.weather_file_latitude 38.95 Weather station latitude from weather file used for the building energy simulation is 38.95°N +in.weather_file_latitude 39.01 Weather station latitude from weather file used for the building energy simulation is 39.01°N +in.weather_file_latitude 39.04 Weather station latitude from weather file used for the building energy simulation is 39.04°N +in.weather_file_latitude 39.06 Weather station latitude from weather file used for the building energy simulation is 39.06°N +in.weather_file_latitude 39.07 Weather station latitude from weather file used for the building energy simulation is 39.07°N +in.weather_file_latitude 39.08 Weather station latitude from weather file used for the building energy simulation is 39.08°N +in.weather_file_latitude 39.1 Weather station latitude from weather file used for the building energy simulation is 39.1°N +in.weather_file_latitude 39.12 Weather station latitude from weather file used for the building energy simulation is 39.12°N +in.weather_file_latitude 39.13 Weather station latitude from weather file used for the building energy simulation is 39.13°N +in.weather_file_latitude 39.14 Weather station latitude from weather file used for the building energy simulation is 39.14°N +in.weather_file_latitude 39.17 Weather station latitude from weather file used for the building energy simulation is 39.17°N +in.weather_file_latitude 39.19 Weather station latitude from weather file used for the building energy simulation is 39.19°N +in.weather_file_latitude 39.22 Weather station latitude from weather file used for the building energy simulation is 39.22°N +in.weather_file_latitude 39.23 Weather station latitude from weather file used for the building energy simulation is 39.23°N +in.weather_file_latitude 39.25 Weather station latitude from weather file used for the building energy simulation is 39.25°N +in.weather_file_latitude 39.29 Weather station latitude from weather file used for the building energy simulation is 39.29°N +in.weather_file_latitude 39.3 Weather station latitude from weather file used for the building energy simulation is 39.3°N +in.weather_file_latitude 39.32 Weather station latitude from weather file used for the building energy simulation is 39.32°N +in.weather_file_latitude 39.35 Weather station latitude from weather file used for the building energy simulation is 39.35°N +in.weather_file_latitude 39.36 Weather station latitude from weather file used for the building energy simulation is 39.36°N +in.weather_file_latitude 39.37 Weather station latitude from weather file used for the building energy simulation is 39.37°N +in.weather_file_latitude 39.38 Weather station latitude from weather file used for the building energy simulation is 39.38°N +in.weather_file_latitude 39.4 Weather station latitude from weather file used for the building energy simulation is 39.4°N +in.weather_file_latitude 39.42 Weather station latitude from weather file used for the building energy simulation is 39.42°N +in.weather_file_latitude 39.45 Weather station latitude from weather file used for the building energy simulation is 39.45°N +in.weather_file_latitude 39.46 Weather station latitude from weather file used for the building energy simulation is 39.46°N +in.weather_file_latitude 39.48 Weather station latitude from weather file used for the building energy simulation is 39.48°N +in.weather_file_latitude 39.49 Weather station latitude from weather file used for the building energy simulation is 39.49°N +in.weather_file_latitude 39.53 Weather station latitude from weather file used for the building energy simulation is 39.53°N +in.weather_file_latitude 39.55 Weather station latitude from weather file used for the building energy simulation is 39.55°N +in.weather_file_latitude 39.57 Weather station latitude from weather file used for the building energy simulation is 39.57°N +in.weather_file_latitude 39.58 Weather station latitude from weather file used for the building energy simulation is 39.58°N +in.weather_file_latitude 39.59 Weather station latitude from weather file used for the building energy simulation is 39.59°N +in.weather_file_latitude 39.6 Weather station latitude from weather file used for the building energy simulation is 39.6°N +in.weather_file_latitude 39.64 Weather station latitude from weather file used for the building energy simulation is 39.64°N +in.weather_file_latitude 39.67 Weather station latitude from weather file used for the building energy simulation is 39.67°N +in.weather_file_latitude 39.7 Weather station latitude from weather file used for the building energy simulation is 39.7°N +in.weather_file_latitude 39.71 Weather station latitude from weather file used for the building energy simulation is 39.71°N +in.weather_file_latitude 39.76 Weather station latitude from weather file used for the building energy simulation is 39.76°N +in.weather_file_latitude 39.77 Weather station latitude from weather file used for the building energy simulation is 39.77°N +in.weather_file_latitude 39.78 Weather station latitude from weather file used for the building energy simulation is 39.78°N +in.weather_file_latitude 39.8 Weather station latitude from weather file used for the building energy simulation is 39.8°N +in.weather_file_latitude 39.83 Weather station latitude from weather file used for the building energy simulation is 39.83°N +in.weather_file_latitude 39.85 Weather station latitude from weather file used for the building energy simulation is 39.85°N +in.weather_file_latitude 39.87 Weather station latitude from weather file used for the building energy simulation is 39.87°N +in.weather_file_latitude 39.91 Weather station latitude from weather file used for the building energy simulation is 39.91°N +in.weather_file_latitude 39.92 Weather station latitude from weather file used for the building energy simulation is 39.92°N +in.weather_file_latitude 39.94 Weather station latitude from weather file used for the building energy simulation is 39.94°N +in.weather_file_latitude 39.98 Weather station latitude from weather file used for the building energy simulation is 39.98°N +in.weather_file_latitude 39.99 Weather station latitude from weather file used for the building energy simulation is 39.99°N +in.weather_file_latitude 40.04 Weather station latitude from weather file used for the building energy simulation is 40.04°N +in.weather_file_latitude 40.05 Weather station latitude from weather file used for the building energy simulation is 40.05°N +in.weather_file_latitude 40.07 Weather station latitude from weather file used for the building energy simulation is 40.07°N +in.weather_file_latitude 40.08 Weather station latitude from weather file used for the building energy simulation is 40.08°N +in.weather_file_latitude 40.1 Weather station latitude from weather file used for the building energy simulation is 40.1°N +in.weather_file_latitude 40.12 Weather station latitude from weather file used for the building energy simulation is 40.12°N +in.weather_file_latitude 40.14 Weather station latitude from weather file used for the building energy simulation is 40.14°N +in.weather_file_latitude 40.15 Weather station latitude from weather file used for the building energy simulation is 40.15°N +in.weather_file_latitude 40.17 Weather station latitude from weather file used for the building energy simulation is 40.17°N +in.weather_file_latitude 40.18 Weather station latitude from weather file used for the building energy simulation is 40.18°N +in.weather_file_latitude 40.19 Weather station latitude from weather file used for the building energy simulation is 40.19°N +in.weather_file_latitude 40.2 Weather station latitude from weather file used for the building energy simulation is 40.2°N +in.weather_file_latitude 40.21 Weather station latitude from weather file used for the building energy simulation is 40.21°N +in.weather_file_latitude 40.22 Weather station latitude from weather file used for the building energy simulation is 40.22°N +in.weather_file_latitude 40.23 Weather station latitude from weather file used for the building energy simulation is 40.23°N +in.weather_file_latitude 40.24 Weather station latitude from weather file used for the building energy simulation is 40.24°N +in.weather_file_latitude 40.28 Weather station latitude from weather file used for the building energy simulation is 40.28°N +in.weather_file_latitude 40.3 Weather station latitude from weather file used for the building energy simulation is 40.3°N +in.weather_file_latitude 40.33 Weather station latitude from weather file used for the building energy simulation is 40.33°N +in.weather_file_latitude 40.36 Weather station latitude from weather file used for the building energy simulation is 40.36°N +in.weather_file_latitude 40.37 Weather station latitude from weather file used for the building energy simulation is 40.37°N +in.weather_file_latitude 40.41 Weather station latitude from weather file used for the building energy simulation is 40.41°N +in.weather_file_latitude 40.44 Weather station latitude from weather file used for the building energy simulation is 40.44°N +in.weather_file_latitude 40.45 Weather station latitude from weather file used for the building energy simulation is 40.45°N +in.weather_file_latitude 40.46 Weather station latitude from weather file used for the building energy simulation is 40.46°N +in.weather_file_latitude 40.47 Weather station latitude from weather file used for the building energy simulation is 40.47°N +in.weather_file_latitude 40.48 Weather station latitude from weather file used for the building energy simulation is 40.48°N +in.weather_file_latitude 40.5 Weather station latitude from weather file used for the building energy simulation is 40.5°N +in.weather_file_latitude 40.52 Weather station latitude from weather file used for the building energy simulation is 40.52°N +in.weather_file_latitude 40.6 Weather station latitude from weather file used for the building energy simulation is 40.6°N +in.weather_file_latitude 40.62 Weather station latitude from weather file used for the building energy simulation is 40.62°N +in.weather_file_latitude 40.63 Weather station latitude from weather file used for the building energy simulation is 40.63°N +in.weather_file_latitude 40.65 Weather station latitude from weather file used for the building energy simulation is 40.65°N +in.weather_file_latitude 40.66 Weather station latitude from weather file used for the building energy simulation is 40.66°N +in.weather_file_latitude 40.67 Weather station latitude from weather file used for the building energy simulation is 40.67°N +in.weather_file_latitude 40.68 Weather station latitude from weather file used for the building energy simulation is 40.68°N +in.weather_file_latitude 40.71 Weather station latitude from weather file used for the building energy simulation is 40.71°N +in.weather_file_latitude 40.72 Weather station latitude from weather file used for the building energy simulation is 40.72°N +in.weather_file_latitude 40.73 Weather station latitude from weather file used for the building energy simulation is 40.73°N +in.weather_file_latitude 40.75 Weather station latitude from weather file used for the building energy simulation is 40.75°N +in.weather_file_latitude 40.77 Weather station latitude from weather file used for the building energy simulation is 40.77°N +in.weather_file_latitude 40.78 Weather station latitude from weather file used for the building energy simulation is 40.78°N +in.weather_file_latitude 40.79 Weather station latitude from weather file used for the building energy simulation is 40.79°N +in.weather_file_latitude 40.82 Weather station latitude from weather file used for the building energy simulation is 40.82°N +in.weather_file_latitude 40.83 Weather station latitude from weather file used for the building energy simulation is 40.83°N +in.weather_file_latitude 40.85 Weather station latitude from weather file used for the building energy simulation is 40.85°N +in.weather_file_latitude 40.88 Weather station latitude from weather file used for the building energy simulation is 40.88°N +in.weather_file_latitude 40.89 Weather station latitude from weather file used for the building energy simulation is 40.89°N +in.weather_file_latitude 40.9 Weather station latitude from weather file used for the building energy simulation is 40.9°N +in.weather_file_latitude 40.92 Weather station latitude from weather file used for the building energy simulation is 40.92°N +in.weather_file_latitude 40.96 Weather station latitude from weather file used for the building energy simulation is 40.96°N +in.weather_file_latitude 40.98 Weather station latitude from weather file used for the building energy simulation is 40.98°N +in.weather_file_latitude 41.01 Weather station latitude from weather file used for the building energy simulation is 41.01°N +in.weather_file_latitude 41.02 Weather station latitude from weather file used for the building energy simulation is 41.02°N +in.weather_file_latitude 41.05 Weather station latitude from weather file used for the building energy simulation is 41.05°N +in.weather_file_latitude 41.07 Weather station latitude from weather file used for the building energy simulation is 41.07°N +in.weather_file_latitude 41.1 Weather station latitude from weather file used for the building energy simulation is 41.1°N +in.weather_file_latitude 41.11 Weather station latitude from weather file used for the building energy simulation is 41.11°N +in.weather_file_latitude 41.12 Weather station latitude from weather file used for the building energy simulation is 41.12°N +in.weather_file_latitude 41.14 Weather station latitude from weather file used for the building energy simulation is 41.14°N +in.weather_file_latitude 41.16 Weather station latitude from weather file used for the building energy simulation is 41.16°N +in.weather_file_latitude 41.17 Weather station latitude from weather file used for the building energy simulation is 41.17°N +in.weather_file_latitude 41.18 Weather station latitude from weather file used for the building energy simulation is 41.18°N +in.weather_file_latitude 41.2 Weather station latitude from weather file used for the building energy simulation is 41.2°N +in.weather_file_latitude 41.24 Weather station latitude from weather file used for the building energy simulation is 41.24°N +in.weather_file_latitude 41.25 Weather station latitude from weather file used for the building energy simulation is 41.25°N +in.weather_file_latitude 41.26 Weather station latitude from weather file used for the building energy simulation is 41.26°N +in.weather_file_latitude 41.28 Weather station latitude from weather file used for the building energy simulation is 41.28°N +in.weather_file_latitude 41.3 Weather station latitude from weather file used for the building energy simulation is 41.3°N +in.weather_file_latitude 41.31 Weather station latitude from weather file used for the building energy simulation is 41.31°N +in.weather_file_latitude 41.34 Weather station latitude from weather file used for the building energy simulation is 41.34°N +in.weather_file_latitude 41.37 Weather station latitude from weather file used for the building energy simulation is 41.37°N +in.weather_file_latitude 41.39 Weather station latitude from weather file used for the building energy simulation is 41.39°N +in.weather_file_latitude 41.41 Weather station latitude from weather file used for the building energy simulation is 41.41°N +in.weather_file_latitude 41.44 Weather station latitude from weather file used for the building energy simulation is 41.44°N +in.weather_file_latitude 41.45 Weather station latitude from weather file used for the building energy simulation is 41.45°N +in.weather_file_latitude 41.47 Weather station latitude from weather file used for the building energy simulation is 41.47°N +in.weather_file_latitude 41.48 Weather station latitude from weather file used for the building energy simulation is 41.48°N +in.weather_file_latitude 41.51 Weather station latitude from weather file used for the building energy simulation is 41.51°N +in.weather_file_latitude 41.52 Weather station latitude from weather file used for the building energy simulation is 41.52°N +in.weather_file_latitude 41.53 Weather station latitude from weather file used for the building energy simulation is 41.53°N +in.weather_file_latitude 41.54 Weather station latitude from weather file used for the building energy simulation is 41.54°N +in.weather_file_latitude 41.56 Weather station latitude from weather file used for the building energy simulation is 41.56°N +in.weather_file_latitude 41.59 Weather station latitude from weather file used for the building energy simulation is 41.59°N +in.weather_file_latitude 41.61 Weather station latitude from weather file used for the building energy simulation is 41.61°N +in.weather_file_latitude 41.62 Weather station latitude from weather file used for the building energy simulation is 41.62°N +in.weather_file_latitude 41.63 Weather station latitude from weather file used for the building energy simulation is 41.63°N +in.weather_file_latitude 41.67 Weather station latitude from weather file used for the building energy simulation is 41.67°N +in.weather_file_latitude 41.7 Weather station latitude from weather file used for the building energy simulation is 41.7°N +in.weather_file_latitude 41.71 Weather station latitude from weather file used for the building energy simulation is 41.71°N +in.weather_file_latitude 41.72 Weather station latitude from weather file used for the building energy simulation is 41.72°N +in.weather_file_latitude 41.74 Weather station latitude from weather file used for the building energy simulation is 41.74°N +in.weather_file_latitude 41.76 Weather station latitude from weather file used for the building energy simulation is 41.76°N +in.weather_file_latitude 41.77 Weather station latitude from weather file used for the building energy simulation is 41.77°N +in.weather_file_latitude 41.78 Weather station latitude from weather file used for the building energy simulation is 41.78°N +in.weather_file_latitude 41.79 Weather station latitude from weather file used for the building energy simulation is 41.79°N +in.weather_file_latitude 41.8 Weather station latitude from weather file used for the building energy simulation is 41.8°N +in.weather_file_latitude 41.81 Weather station latitude from weather file used for the building energy simulation is 41.81°N +in.weather_file_latitude 41.82 Weather station latitude from weather file used for the building energy simulation is 41.82°N +in.weather_file_latitude 41.83 Weather station latitude from weather file used for the building energy simulation is 41.83°N +in.weather_file_latitude 41.87 Weather station latitude from weather file used for the building energy simulation is 41.87°N +in.weather_file_latitude 41.88 Weather station latitude from weather file used for the building energy simulation is 41.88°N +in.weather_file_latitude 41.91 Weather station latitude from weather file used for the building energy simulation is 41.91°N +in.weather_file_latitude 41.92 Weather station latitude from weather file used for the building energy simulation is 41.92°N +in.weather_file_latitude 41.93 Weather station latitude from weather file used for the building energy simulation is 41.93°N +in.weather_file_latitude 41.98 Weather station latitude from weather file used for the building energy simulation is 41.98°N +in.weather_file_latitude 41.99 Weather station latitude from weather file used for the building energy simulation is 41.99°N +in.weather_file_latitude 42.05 Weather station latitude from weather file used for the building energy simulation is 42.05°N +in.weather_file_latitude 42.06 Weather station latitude from weather file used for the building energy simulation is 42.06°N +in.weather_file_latitude 42.07 Weather station latitude from weather file used for the building energy simulation is 42.07°N +in.weather_file_latitude 42.08 Weather station latitude from weather file used for the building energy simulation is 42.08°N +in.weather_file_latitude 42.11 Weather station latitude from weather file used for the building energy simulation is 42.11°N +in.weather_file_latitude 42.13 Weather station latitude from weather file used for the building energy simulation is 42.13°N +in.weather_file_latitude 42.15 Weather station latitude from weather file used for the building energy simulation is 42.15°N +in.weather_file_latitude 42.16 Weather station latitude from weather file used for the building energy simulation is 42.16°N +in.weather_file_latitude 42.17 Weather station latitude from weather file used for the building energy simulation is 42.17°N +in.weather_file_latitude 42.19 Weather station latitude from weather file used for the building energy simulation is 42.19°N +in.weather_file_latitude 42.2 Weather station latitude from weather file used for the building energy simulation is 42.2°N +in.weather_file_latitude 42.21 Weather station latitude from weather file used for the building energy simulation is 42.21°N +in.weather_file_latitude 42.22 Weather station latitude from weather file used for the building energy simulation is 42.22°N +in.weather_file_latitude 42.24 Weather station latitude from weather file used for the building energy simulation is 42.24°N +in.weather_file_latitude 42.26 Weather station latitude from weather file used for the building energy simulation is 42.26°N +in.weather_file_latitude 42.27 Weather station latitude from weather file used for the building energy simulation is 42.27°N +in.weather_file_latitude 42.31 Weather station latitude from weather file used for the building energy simulation is 42.31°N +in.weather_file_latitude 42.36 Weather station latitude from weather file used for the building energy simulation is 42.36°N +in.weather_file_latitude 42.39 Weather station latitude from weather file used for the building energy simulation is 42.39°N +in.weather_file_latitude 42.4 Weather station latitude from weather file used for the building energy simulation is 42.4°N +in.weather_file_latitude 42.42 Weather station latitude from weather file used for the building energy simulation is 42.42°N +in.weather_file_latitude 42.44 Weather station latitude from weather file used for the building energy simulation is 42.44°N +in.weather_file_latitude 42.47 Weather station latitude from weather file used for the building energy simulation is 42.47°N +in.weather_file_latitude 42.48 Weather station latitude from weather file used for the building energy simulation is 42.48°N +in.weather_file_latitude 42.54 Weather station latitude from weather file used for the building energy simulation is 42.54°N +in.weather_file_latitude 42.55 Weather station latitude from weather file used for the building energy simulation is 42.55°N +in.weather_file_latitude 42.57 Weather station latitude from weather file used for the building energy simulation is 42.57°N +in.weather_file_latitude 42.58 Weather station latitude from weather file used for the building energy simulation is 42.58°N +in.weather_file_latitude 42.6 Weather station latitude from weather file used for the building energy simulation is 42.6°N +in.weather_file_latitude 42.61 Weather station latitude from weather file used for the building energy simulation is 42.61°N +in.weather_file_latitude 42.62 Weather station latitude from weather file used for the building energy simulation is 42.62°N +in.weather_file_latitude 42.63 Weather station latitude from weather file used for the building energy simulation is 42.63°N +in.weather_file_latitude 42.64 Weather station latitude from weather file used for the building energy simulation is 42.64°N +in.weather_file_latitude 42.67 Weather station latitude from weather file used for the building energy simulation is 42.67°N +in.weather_file_latitude 42.7 Weather station latitude from weather file used for the building energy simulation is 42.7°N +in.weather_file_latitude 42.73 Weather station latitude from weather file used for the building energy simulation is 42.73°N +in.weather_file_latitude 42.74 Weather station latitude from weather file used for the building energy simulation is 42.74°N +in.weather_file_latitude 42.75 Weather station latitude from weather file used for the building energy simulation is 42.75°N +in.weather_file_latitude 42.76 Weather station latitude from weather file used for the building energy simulation is 42.76°N +in.weather_file_latitude 42.78 Weather station latitude from weather file used for the building energy simulation is 42.78°N +in.weather_file_latitude 42.79 Weather station latitude from weather file used for the building energy simulation is 42.79°N +in.weather_file_latitude 42.8 Weather station latitude from weather file used for the building energy simulation is 42.8°N +in.weather_file_latitude 42.86 Weather station latitude from weather file used for the building energy simulation is 42.86°N +in.weather_file_latitude 42.88 Weather station latitude from weather file used for the building energy simulation is 42.88°N +in.weather_file_latitude 42.89 Weather station latitude from weather file used for the building energy simulation is 42.89°N +in.weather_file_latitude 42.9 Weather station latitude from weather file used for the building energy simulation is 42.9°N +in.weather_file_latitude 42.91 Weather station latitude from weather file used for the building energy simulation is 42.91°N +in.weather_file_latitude 42.92 Weather station latitude from weather file used for the building energy simulation is 42.92°N +in.weather_file_latitude 42.93 Weather station latitude from weather file used for the building energy simulation is 42.93°N +in.weather_file_latitude 42.94 Weather station latitude from weather file used for the building energy simulation is 42.94°N +in.weather_file_latitude 42.95 Weather station latitude from weather file used for the building energy simulation is 42.95°N +in.weather_file_latitude 42.97 Weather station latitude from weather file used for the building energy simulation is 42.97°N +in.weather_file_latitude 42.99 Weather station latitude from weather file used for the building energy simulation is 42.99°N +in.weather_file_latitude 43.02 Weather station latitude from weather file used for the building energy simulation is 43.02°N +in.weather_file_latitude 43.04 Weather station latitude from weather file used for the building energy simulation is 43.04°N +in.weather_file_latitude 43.06 Weather station latitude from weather file used for the building energy simulation is 43.06°N +in.weather_file_latitude 43.08 Weather station latitude from weather file used for the building energy simulation is 43.08°N +in.weather_file_latitude 43.11 Weather station latitude from weather file used for the building energy simulation is 43.11°N +in.weather_file_latitude 43.12 Weather station latitude from weather file used for the building energy simulation is 43.12°N +in.weather_file_latitude 43.14 Weather station latitude from weather file used for the building energy simulation is 43.14°N +in.weather_file_latitude 43.16 Weather station latitude from weather file used for the building energy simulation is 43.16°N +in.weather_file_latitude 43.17 Weather station latitude from weather file used for the building energy simulation is 43.17°N +in.weather_file_latitude 43.2 Weather station latitude from weather file used for the building energy simulation is 43.2°N +in.weather_file_latitude 43.21 Weather station latitude from weather file used for the building energy simulation is 43.21°N +in.weather_file_latitude 43.23 Weather station latitude from weather file used for the building energy simulation is 43.23°N +in.weather_file_latitude 43.24 Weather station latitude from weather file used for the building energy simulation is 43.24°N +in.weather_file_latitude 43.28 Weather station latitude from weather file used for the building energy simulation is 43.28°N +in.weather_file_latitude 43.32 Weather station latitude from weather file used for the building energy simulation is 43.32°N +in.weather_file_latitude 43.34 Weather station latitude from weather file used for the building energy simulation is 43.34°N +in.weather_file_latitude 43.35 Weather station latitude from weather file used for the building energy simulation is 43.35°N +in.weather_file_latitude 43.39 Weather station latitude from weather file used for the building energy simulation is 43.39°N +in.weather_file_latitude 43.41 Weather station latitude from weather file used for the building energy simulation is 43.41°N +in.weather_file_latitude 43.42 Weather station latitude from weather file used for the building energy simulation is 43.42°N +in.weather_file_latitude 43.43 Weather station latitude from weather file used for the building energy simulation is 43.43°N +in.weather_file_latitude 43.52 Weather station latitude from weather file used for the building energy simulation is 43.52°N +in.weather_file_latitude 43.53 Weather station latitude from weather file used for the building energy simulation is 43.53°N +in.weather_file_latitude 43.57 Weather station latitude from weather file used for the building energy simulation is 43.57°N +in.weather_file_latitude 43.58 Weather station latitude from weather file used for the building energy simulation is 43.58°N +in.weather_file_latitude 43.59 Weather station latitude from weather file used for the building energy simulation is 43.59°N +in.weather_file_latitude 43.61 Weather station latitude from weather file used for the building energy simulation is 43.61°N +in.weather_file_latitude 43.62 Weather station latitude from weather file used for the building energy simulation is 43.62°N +in.weather_file_latitude 43.63 Weather station latitude from weather file used for the building energy simulation is 43.63°N +in.weather_file_latitude 43.64 Weather station latitude from weather file used for the building energy simulation is 43.64°N +in.weather_file_latitude 43.65 Weather station latitude from weather file used for the building energy simulation is 43.65°N +in.weather_file_latitude 43.66 Weather station latitude from weather file used for the building energy simulation is 43.66°N +in.weather_file_latitude 43.67 Weather station latitude from weather file used for the building energy simulation is 43.67°N +in.weather_file_latitude 43.68 Weather station latitude from weather file used for the building energy simulation is 43.68°N +in.weather_file_latitude 43.72 Weather station latitude from weather file used for the building energy simulation is 43.72°N +in.weather_file_latitude 43.73 Weather station latitude from weather file used for the building energy simulation is 43.73°N +in.weather_file_latitude 43.77 Weather station latitude from weather file used for the building energy simulation is 43.77°N +in.weather_file_latitude 43.78 Weather station latitude from weather file used for the building energy simulation is 43.78°N +in.weather_file_latitude 43.83 Weather station latitude from weather file used for the building energy simulation is 43.83°N +in.weather_file_latitude 43.88 Weather station latitude from weather file used for the building energy simulation is 43.88°N +in.weather_file_latitude 43.9 Weather station latitude from weather file used for the building energy simulation is 43.9°N +in.weather_file_latitude 43.91 Weather station latitude from weather file used for the building energy simulation is 43.91°N +in.weather_file_latitude 43.96 Weather station latitude from weather file used for the building energy simulation is 43.96°N +in.weather_file_latitude 43.97 Weather station latitude from weather file used for the building energy simulation is 43.97°N +in.weather_file_latitude 43.98 Weather station latitude from weather file used for the building energy simulation is 43.98°N +in.weather_file_latitude 43.99 Weather station latitude from weather file used for the building energy simulation is 43.99°N +in.weather_file_latitude 44.02 Weather station latitude from weather file used for the building energy simulation is 44.02°N +in.weather_file_latitude 44.05 Weather station latitude from weather file used for the building energy simulation is 44.05°N +in.weather_file_latitude 44.08 Weather station latitude from weather file used for the building energy simulation is 44.08°N +in.weather_file_latitude 44.13 Weather station latitude from weather file used for the building energy simulation is 44.13°N +in.weather_file_latitude 44.15 Weather station latitude from weather file used for the building energy simulation is 44.15°N +in.weather_file_latitude 44.17 Weather station latitude from weather file used for the building energy simulation is 44.17°N +in.weather_file_latitude 44.2 Weather station latitude from weather file used for the building energy simulation is 44.2°N +in.weather_file_latitude 44.22 Weather station latitude from weather file used for the building energy simulation is 44.22°N +in.weather_file_latitude 44.25 Weather station latitude from weather file used for the building energy simulation is 44.25°N +in.weather_file_latitude 44.26 Weather station latitude from weather file used for the building energy simulation is 44.26°N +in.weather_file_latitude 44.27 Weather station latitude from weather file used for the building energy simulation is 44.27°N +in.weather_file_latitude 44.28 Weather station latitude from weather file used for the building energy simulation is 44.28°N +in.weather_file_latitude 44.3 Weather station latitude from weather file used for the building energy simulation is 44.3°N +in.weather_file_latitude 44.32 Weather station latitude from weather file used for the building energy simulation is 44.32°N +in.weather_file_latitude 44.34 Weather station latitude from weather file used for the building energy simulation is 44.34°N +in.weather_file_latitude 44.36 Weather station latitude from weather file used for the building energy simulation is 44.36°N +in.weather_file_latitude 44.37 Weather station latitude from weather file used for the building energy simulation is 44.37°N +in.weather_file_latitude 44.38 Weather station latitude from weather file used for the building energy simulation is 44.38°N +in.weather_file_latitude 44.39 Weather station latitude from weather file used for the building energy simulation is 44.39°N +in.weather_file_latitude 44.44 Weather station latitude from weather file used for the building energy simulation is 44.44°N +in.weather_file_latitude 44.45 Weather station latitude from weather file used for the building energy simulation is 44.45°N +in.weather_file_latitude 44.47 Weather station latitude from weather file used for the building energy simulation is 44.47°N +in.weather_file_latitude 44.5 Weather station latitude from weather file used for the building energy simulation is 44.5°N +in.weather_file_latitude 44.51 Weather station latitude from weather file used for the building energy simulation is 44.51°N +in.weather_file_latitude 44.52 Weather station latitude from weather file used for the building energy simulation is 44.52°N +in.weather_file_latitude 44.53 Weather station latitude from weather file used for the building energy simulation is 44.53°N +in.weather_file_latitude 44.55 Weather station latitude from weather file used for the building energy simulation is 44.55°N +in.weather_file_latitude 44.58 Weather station latitude from weather file used for the building energy simulation is 44.58°N +in.weather_file_latitude 44.59 Weather station latitude from weather file used for the building energy simulation is 44.59°N +in.weather_file_latitude 44.61 Weather station latitude from weather file used for the building energy simulation is 44.61°N +in.weather_file_latitude 44.62 Weather station latitude from weather file used for the building energy simulation is 44.62°N +in.weather_file_latitude 44.64 Weather station latitude from weather file used for the building energy simulation is 44.64°N +in.weather_file_latitude 44.65 Weather station latitude from weather file used for the building energy simulation is 44.65°N +in.weather_file_latitude 44.74 Weather station latitude from weather file used for the building energy simulation is 44.74°N +in.weather_file_latitude 44.77 Weather station latitude from weather file used for the building energy simulation is 44.77°N +in.weather_file_latitude 44.81 Weather station latitude from weather file used for the building energy simulation is 44.81°N +in.weather_file_latitude 44.83 Weather station latitude from weather file used for the building energy simulation is 44.83°N +in.weather_file_latitude 44.84 Weather station latitude from weather file used for the building energy simulation is 44.84°N +in.weather_file_latitude 44.85 Weather station latitude from weather file used for the building energy simulation is 44.85°N +in.weather_file_latitude 44.86 Weather station latitude from weather file used for the building energy simulation is 44.86°N +in.weather_file_latitude 44.87 Weather station latitude from weather file used for the building energy simulation is 44.87°N +in.weather_file_latitude 44.88 Weather station latitude from weather file used for the building energy simulation is 44.88°N +in.weather_file_latitude 44.91 Weather station latitude from weather file used for the building energy simulation is 44.91°N +in.weather_file_latitude 44.93 Weather station latitude from weather file used for the building energy simulation is 44.93°N +in.weather_file_latitude 44.94 Weather station latitude from weather file used for the building energy simulation is 44.94°N +in.weather_file_latitude 44.97 Weather station latitude from weather file used for the building energy simulation is 44.97°N +in.weather_file_latitude 44.99 Weather station latitude from weather file used for the building energy simulation is 44.99°N +in.weather_file_latitude 45.01 Weather station latitude from weather file used for the building energy simulation is 45.01°N +in.weather_file_latitude 45.06 Weather station latitude from weather file used for the building energy simulation is 45.06°N +in.weather_file_latitude 45.07 Weather station latitude from weather file used for the building energy simulation is 45.07°N +in.weather_file_latitude 45.1 Weather station latitude from weather file used for the building energy simulation is 45.1°N +in.weather_file_latitude 45.12 Weather station latitude from weather file used for the building energy simulation is 45.12°N +in.weather_file_latitude 45.13 Weather station latitude from weather file used for the building energy simulation is 45.13°N +in.weather_file_latitude 45.15 Weather station latitude from weather file used for the building energy simulation is 45.15°N +in.weather_file_latitude 45.2 Weather station latitude from weather file used for the building energy simulation is 45.2°N +in.weather_file_latitude 45.25 Weather station latitude from weather file used for the building energy simulation is 45.25°N +in.weather_file_latitude 45.26 Weather station latitude from weather file used for the building energy simulation is 45.26°N +in.weather_file_latitude 45.29 Weather station latitude from weather file used for the building energy simulation is 45.29°N +in.weather_file_latitude 45.31 Weather station latitude from weather file used for the building energy simulation is 45.31°N +in.weather_file_latitude 45.42 Weather station latitude from weather file used for the building energy simulation is 45.42°N +in.weather_file_latitude 45.45 Weather station latitude from weather file used for the building energy simulation is 45.45°N +in.weather_file_latitude 45.47 Weather station latitude from weather file used for the building energy simulation is 45.47°N +in.weather_file_latitude 45.54 Weather station latitude from weather file used for the building energy simulation is 45.54°N +in.weather_file_latitude 45.55 Weather station latitude from weather file used for the building energy simulation is 45.55°N +in.weather_file_latitude 45.56 Weather station latitude from weather file used for the building energy simulation is 45.56°N +in.weather_file_latitude 45.57 Weather station latitude from weather file used for the building energy simulation is 45.57°N +in.weather_file_latitude 45.59 Weather station latitude from weather file used for the building energy simulation is 45.59°N +in.weather_file_latitude 45.6 Weather station latitude from weather file used for the building energy simulation is 45.6°N +in.weather_file_latitude 45.62 Weather station latitude from weather file used for the building energy simulation is 45.62°N +in.weather_file_latitude 45.63 Weather station latitude from weather file used for the building energy simulation is 45.63°N +in.weather_file_latitude 45.64 Weather station latitude from weather file used for the building energy simulation is 45.64°N +in.weather_file_latitude 45.67 Weather station latitude from weather file used for the building energy simulation is 45.67°N +in.weather_file_latitude 45.7 Weather station latitude from weather file used for the building energy simulation is 45.7°N +in.weather_file_latitude 45.72 Weather station latitude from weather file used for the building energy simulation is 45.72°N +in.weather_file_latitude 45.77 Weather station latitude from weather file used for the building energy simulation is 45.77°N +in.weather_file_latitude 45.78 Weather station latitude from weather file used for the building energy simulation is 45.78°N +in.weather_file_latitude 45.79 Weather station latitude from weather file used for the building energy simulation is 45.79°N +in.weather_file_latitude 45.81 Weather station latitude from weather file used for the building energy simulation is 45.81°N +in.weather_file_latitude 45.82 Weather station latitude from weather file used for the building energy simulation is 45.82°N +in.weather_file_latitude 45.83 Weather station latitude from weather file used for the building energy simulation is 45.83°N +in.weather_file_latitude 45.87 Weather station latitude from weather file used for the building energy simulation is 45.87°N +in.weather_file_latitude 45.88 Weather station latitude from weather file used for the building energy simulation is 45.88°N +in.weather_file_latitude 45.89 Weather station latitude from weather file used for the building energy simulation is 45.89°N +in.weather_file_latitude 45.93 Weather station latitude from weather file used for the building energy simulation is 45.93°N +in.weather_file_latitude 45.95 Weather station latitude from weather file used for the building energy simulation is 45.95°N +in.weather_file_latitude 46.01 Weather station latitude from weather file used for the building energy simulation is 46.01°N +in.weather_file_latitude 46.03 Weather station latitude from weather file used for the building energy simulation is 46.03°N +in.weather_file_latitude 46.1 Weather station latitude from weather file used for the building energy simulation is 46.1°N +in.weather_file_latitude 46.14 Weather station latitude from weather file used for the building energy simulation is 46.14°N +in.weather_file_latitude 46.16 Weather station latitude from weather file used for the building energy simulation is 46.16°N +in.weather_file_latitude 46.27 Weather station latitude from weather file used for the building energy simulation is 46.27°N +in.weather_file_latitude 46.31 Weather station latitude from weather file used for the building energy simulation is 46.31°N +in.weather_file_latitude 46.35 Weather station latitude from weather file used for the building energy simulation is 46.35°N +in.weather_file_latitude 46.36 Weather station latitude from weather file used for the building energy simulation is 46.36°N +in.weather_file_latitude 46.38 Weather station latitude from weather file used for the building energy simulation is 46.38°N +in.weather_file_latitude 46.41 Weather station latitude from weather file used for the building energy simulation is 46.41°N +in.weather_file_latitude 46.43 Weather station latitude from weather file used for the building energy simulation is 46.43°N +in.weather_file_latitude 46.45 Weather station latitude from weather file used for the building energy simulation is 46.45°N +in.weather_file_latitude 46.47 Weather station latitude from weather file used for the building energy simulation is 46.47°N +in.weather_file_latitude 46.53 Weather station latitude from weather file used for the building energy simulation is 46.53°N +in.weather_file_latitude 46.55 Weather station latitude from weather file used for the building energy simulation is 46.55°N +in.weather_file_latitude 46.56 Weather station latitude from weather file used for the building energy simulation is 46.56°N +in.weather_file_latitude 46.57 Weather station latitude from weather file used for the building energy simulation is 46.57°N +in.weather_file_latitude 46.61 Weather station latitude from weather file used for the building energy simulation is 46.61°N +in.weather_file_latitude 46.69 Weather station latitude from weather file used for the building energy simulation is 46.69°N +in.weather_file_latitude 46.7 Weather station latitude from weather file used for the building energy simulation is 46.7°N +in.weather_file_latitude 46.73 Weather station latitude from weather file used for the building energy simulation is 46.73°N +in.weather_file_latitude 46.74 Weather station latitude from weather file used for the building energy simulation is 46.74°N +in.weather_file_latitude 46.77 Weather station latitude from weather file used for the building energy simulation is 46.77°N +in.weather_file_latitude 46.8 Weather station latitude from weather file used for the building energy simulation is 46.8°N +in.weather_file_latitude 46.83 Weather station latitude from weather file used for the building energy simulation is 46.83°N +in.weather_file_latitude 46.84 Weather station latitude from weather file used for the building energy simulation is 46.84°N +in.weather_file_latitude 46.9 Weather station latitude from weather file used for the building energy simulation is 46.9°N +in.weather_file_latitude 46.92 Weather station latitude from weather file used for the building energy simulation is 46.92°N +in.weather_file_latitude 46.93 Weather station latitude from weather file used for the building energy simulation is 46.93°N +in.weather_file_latitude 46.97 Weather station latitude from weather file used for the building energy simulation is 46.97°N +in.weather_file_latitude 47.03 Weather station latitude from weather file used for the building energy simulation is 47.03°N +in.weather_file_latitude 47.05 Weather station latitude from weather file used for the building energy simulation is 47.05°N +in.weather_file_latitude 47.12 Weather station latitude from weather file used for the building energy simulation is 47.12°N +in.weather_file_latitude 47.13 Weather station latitude from weather file used for the building energy simulation is 47.13°N +in.weather_file_latitude 47.16 Weather station latitude from weather file used for the building energy simulation is 47.16°N +in.weather_file_latitude 47.17 Weather station latitude from weather file used for the building energy simulation is 47.17°N +in.weather_file_latitude 47.21 Weather station latitude from weather file used for the building energy simulation is 47.21°N +in.weather_file_latitude 47.24 Weather station latitude from weather file used for the building energy simulation is 47.24°N +in.weather_file_latitude 47.25 Weather station latitude from weather file used for the building energy simulation is 47.25°N +in.weather_file_latitude 47.33 Weather station latitude from weather file used for the building energy simulation is 47.33°N +in.weather_file_latitude 47.4 Weather station latitude from weather file used for the building energy simulation is 47.4°N +in.weather_file_latitude 47.47 Weather station latitude from weather file used for the building energy simulation is 47.47°N +in.weather_file_latitude 47.49 Weather station latitude from weather file used for the building energy simulation is 47.49°N +in.weather_file_latitude 47.5 Weather station latitude from weather file used for the building energy simulation is 47.5°N +in.weather_file_latitude 47.51 Weather station latitude from weather file used for the building energy simulation is 47.51°N +in.weather_file_latitude 47.62 Weather station latitude from weather file used for the building energy simulation is 47.62°N +in.weather_file_latitude 47.66 Weather station latitude from weather file used for the building energy simulation is 47.66°N +in.weather_file_latitude 47.67 Weather station latitude from weather file used for the building energy simulation is 47.67°N +in.weather_file_latitude 47.68 Weather station latitude from weather file used for the building energy simulation is 47.68°N +in.weather_file_latitude 47.71 Weather station latitude from weather file used for the building energy simulation is 47.71°N +in.weather_file_latitude 47.75 Weather station latitude from weather file used for the building energy simulation is 47.75°N +in.weather_file_latitude 47.77 Weather station latitude from weather file used for the building energy simulation is 47.77°N +in.weather_file_latitude 47.84 Weather station latitude from weather file used for the building energy simulation is 47.84°N +in.weather_file_latitude 47.91 Weather station latitude from weather file used for the building energy simulation is 47.91°N +in.weather_file_latitude 47.95 Weather station latitude from weather file used for the building energy simulation is 47.95°N +in.weather_file_latitude 47.97 Weather station latitude from weather file used for the building energy simulation is 47.97°N +in.weather_file_latitude 48.07 Weather station latitude from weather file used for the building energy simulation is 48.07°N +in.weather_file_latitude 48.09 Weather station latitude from weather file used for the building energy simulation is 48.09°N +in.weather_file_latitude 48.11 Weather station latitude from weather file used for the building energy simulation is 48.11°N +in.weather_file_latitude 48.12 Weather station latitude from weather file used for the building energy simulation is 48.12°N +in.weather_file_latitude 48.16 Weather station latitude from weather file used for the building energy simulation is 48.16°N +in.weather_file_latitude 48.2 Weather station latitude from weather file used for the building energy simulation is 48.2°N +in.weather_file_latitude 48.21 Weather station latitude from weather file used for the building energy simulation is 48.21°N +in.weather_file_latitude 48.26 Weather station latitude from weather file used for the building energy simulation is 48.26°N +in.weather_file_latitude 48.3 Weather station latitude from weather file used for the building energy simulation is 48.3°N +in.weather_file_latitude 48.43 Weather station latitude from weather file used for the building energy simulation is 48.43°N +in.weather_file_latitude 48.46 Weather station latitude from weather file used for the building energy simulation is 48.46°N +in.weather_file_latitude 48.52 Weather station latitude from weather file used for the building energy simulation is 48.52°N +in.weather_file_latitude 48.56 Weather station latitude from weather file used for the building energy simulation is 48.56°N +in.weather_file_latitude 48.57 Weather station latitude from weather file used for the building energy simulation is 48.57°N +in.weather_file_latitude 48.61 Weather station latitude from weather file used for the building energy simulation is 48.61°N +in.weather_file_latitude 48.73 Weather station latitude from weather file used for the building energy simulation is 48.73°N +in.weather_file_latitude 48.75 Weather station latitude from weather file used for the building energy simulation is 48.75°N +in.weather_file_latitude 48.79 Weather station latitude from weather file used for the building energy simulation is 48.79°N +in.weather_file_latitude 48.86 Weather station latitude from weather file used for the building energy simulation is 48.86°N +in.weather_file_latitude 53.9 Weather station latitude from weather file used for the building energy simulation is 53.9°N +in.weather_file_latitude 55.21 Weather station latitude from weather file used for the building energy simulation is 55.21°N +in.weather_file_latitude 55.36 Weather station latitude from weather file used for the building energy simulation is 55.36°N +in.weather_file_latitude 56.48 Weather station latitude from weather file used for the building energy simulation is 56.48°N +in.weather_file_latitude 57.05 Weather station latitude from weather file used for the building energy simulation is 57.05°N +in.weather_file_latitude 57.75 Weather station latitude from weather file used for the building energy simulation is 57.75°N +in.weather_file_latitude 58.36 Weather station latitude from weather file used for the building energy simulation is 58.36°N +in.weather_file_latitude 58.43 Weather station latitude from weather file used for the building energy simulation is 58.43°N +in.weather_file_latitude 58.65 Weather station latitude from weather file used for the building energy simulation is 58.65°N +in.weather_file_latitude 58.68 Weather station latitude from weather file used for the building energy simulation is 58.68°N +in.weather_file_latitude 58.99 Weather station latitude from weather file used for the building energy simulation is 58.99°N +in.weather_file_latitude 59.25 Weather station latitude from weather file used for the building energy simulation is 59.25°N +in.weather_file_latitude 59.43 Weather station latitude from weather file used for the building energy simulation is 59.43°N +in.weather_file_latitude 59.65 Weather station latitude from weather file used for the building energy simulation is 59.65°N +in.weather_file_latitude 59.75 Weather station latitude from weather file used for the building energy simulation is 59.75°N +in.weather_file_latitude 60.13 Weather station latitude from weather file used for the building energy simulation is 60.13°N +in.weather_file_longitude -166.54 Weather station longitude from weather file used for the building energy simulation is -166.54° +in.weather_file_longitude -162.72 Weather station longitude from weather file used for the building energy simulation is -162.72° +in.weather_file_longitude -162.06 Weather station longitude from weather file used for the building energy simulation is -162.06° +in.weather_file_longitude -158.55 Weather station longitude from weather file used for the building energy simulation is -158.55° +in.weather_file_longitude -156.65 Weather station longitude from weather file used for the building energy simulation is -156.65° +in.weather_file_longitude -156.433056 Weather station longitude from weather file used for the building energy simulation is -156.433056° +in.weather_file_longitude -154.92 Weather station longitude from weather file used for the building energy simulation is -154.92° +in.weather_file_longitude -152.49 Weather station longitude from weather file used for the building energy simulation is -152.49° +in.weather_file_longitude -151.48 Weather station longitude from weather file used for the building energy simulation is -151.48° +in.weather_file_longitude -149.42 Weather station longitude from weather file used for the building energy simulation is -149.42° +in.weather_file_longitude -146.33 Weather station longitude from weather file used for the building energy simulation is -146.33° +in.weather_file_longitude -135.71 Weather station longitude from weather file used for the building energy simulation is -135.71° +in.weather_file_longitude -135.52 Weather station longitude from weather file used for the building energy simulation is -135.52° +in.weather_file_longitude -135.36 Weather station longitude from weather file used for the building energy simulation is -135.36° +in.weather_file_longitude -134.58 Weather station longitude from weather file used for the building energy simulation is -134.58° +in.weather_file_longitude -132.37 Weather station longitude from weather file used for the building energy simulation is -132.37° +in.weather_file_longitude -131.71 Weather station longitude from weather file used for the building energy simulation is -131.71° +in.weather_file_longitude -124.25 Weather station longitude from weather file used for the building energy simulation is -124.25° +in.weather_file_longitude -124.24 Weather station longitude from weather file used for the building energy simulation is -124.24° +in.weather_file_longitude -124.11 Weather station longitude from weather file used for the building energy simulation is -124.11° +in.weather_file_longitude -124.07 Weather station longitude from weather file used for the building energy simulation is -124.07° +in.weather_file_longitude -123.94 Weather station longitude from weather file used for the building energy simulation is -123.94° +in.weather_file_longitude -123.88 Weather station longitude from weather file used for the building energy simulation is -123.88° +in.weather_file_longitude -123.5 Weather station longitude from weather file used for the building energy simulation is -123.5° +in.weather_file_longitude -123.38 Weather station longitude from weather file used for the building energy simulation is -123.38° +in.weather_file_longitude -123.36 Weather station longitude from weather file used for the building energy simulation is -123.36° +in.weather_file_longitude -123.29 Weather station longitude from weather file used for the building energy simulation is -123.29° +in.weather_file_longitude -123.21 Weather station longitude from weather file used for the building energy simulation is -123.21° +in.weather_file_longitude -123.2 Weather station longitude from weather file used for the building energy simulation is -123.2° +in.weather_file_longitude -123.15 Weather station longitude from weather file used for the building energy simulation is -123.15° +in.weather_file_longitude -123.13 Weather station longitude from weather file used for the building energy simulation is -123.13° +in.weather_file_longitude -123.02 Weather station longitude from weather file used for the building energy simulation is -123.02° +in.weather_file_longitude -123 Weather station longitude from weather file used for the building energy simulation is -123° +in.weather_file_longitude -122.95 Weather station longitude from weather file used for the building energy simulation is -122.95° +in.weather_file_longitude -122.9 Weather station longitude from weather file used for the building energy simulation is -122.9° +in.weather_file_longitude -122.87 Weather station longitude from weather file used for the building energy simulation is -122.87° +in.weather_file_longitude -122.86 Weather station longitude from weather file used for the building energy simulation is -122.86° +in.weather_file_longitude -122.81 Weather station longitude from weather file used for the building energy simulation is -122.81° +in.weather_file_longitude -122.77 Weather station longitude from weather file used for the building energy simulation is -122.77° +in.weather_file_longitude -122.76 Weather station longitude from weather file used for the building energy simulation is -122.76° +in.weather_file_longitude -122.66 Weather station longitude from weather file used for the building energy simulation is -122.66° +in.weather_file_longitude -122.6 Weather station longitude from weather file used for the building energy simulation is -122.6° +in.weather_file_longitude -122.55 Weather station longitude from weather file used for the building energy simulation is -122.55° +in.weather_file_longitude -122.54 Weather station longitude from weather file used for the building energy simulation is -122.54° +in.weather_file_longitude -122.47 Weather station longitude from weather file used for the building energy simulation is -122.47° +in.weather_file_longitude -122.43 Weather station longitude from weather file used for the building energy simulation is -122.43° +in.weather_file_longitude -122.4 Weather station longitude from weather file used for the building energy simulation is -122.4° +in.weather_file_longitude -122.31 Weather station longitude from weather file used for the building energy simulation is -122.31° +in.weather_file_longitude -122.28 Weather station longitude from weather file used for the building energy simulation is -122.28° +in.weather_file_longitude -122.25 Weather station longitude from weather file used for the building energy simulation is -122.25° +in.weather_file_longitude -122.21 Weather station longitude from weather file used for the building energy simulation is -122.21° +in.weather_file_longitude -122.15 Weather station longitude from weather file used for the building energy simulation is -122.15° +in.weather_file_longitude -122.12 Weather station longitude from weather file used for the building energy simulation is -122.12° +in.weather_file_longitude -122.05 Weather station longitude from weather file used for the building energy simulation is -122.05° +in.weather_file_longitude -121.95 Weather station longitude from weather file used for the building energy simulation is -121.95° +in.weather_file_longitude -121.93 Weather station longitude from weather file used for the building energy simulation is -121.93° +in.weather_file_longitude -121.79 Weather station longitude from weather file used for the building energy simulation is -121.79° +in.weather_file_longitude -121.72 Weather station longitude from weather file used for the building energy simulation is -121.72° +in.weather_file_longitude -121.62 Weather station longitude from weather file used for the building energy simulation is -121.62° +in.weather_file_longitude -121.61 Weather station longitude from weather file used for the building energy simulation is -121.61° +in.weather_file_longitude -121.59 Weather station longitude from weather file used for the building energy simulation is -121.59° +in.weather_file_longitude -121.57 Weather station longitude from weather file used for the building energy simulation is -121.57° +in.weather_file_longitude -121.44 Weather station longitude from weather file used for the building energy simulation is -121.44° +in.weather_file_longitude -121.4 Weather station longitude from weather file used for the building energy simulation is -121.4° +in.weather_file_longitude -121.24 Weather station longitude from weather file used for the building energy simulation is -121.24° +in.weather_file_longitude -121.17 Weather station longitude from weather file used for the building energy simulation is -121.17° +in.weather_file_longitude -121.15 Weather station longitude from weather file used for the building energy simulation is -121.15° +in.weather_file_longitude -120.95 Weather station longitude from weather file used for the building energy simulation is -120.95° +in.weather_file_longitude -120.71 Weather station longitude from weather file used for the building energy simulation is -120.71° +in.weather_file_longitude -120.64 Weather station longitude from weather file used for the building energy simulation is -120.64° +in.weather_file_longitude -120.57 Weather station longitude from weather file used for the building energy simulation is -120.57° +in.weather_file_longitude -120.53 Weather station longitude from weather file used for the building energy simulation is -120.53° +in.weather_file_longitude -120.51 Weather station longitude from weather file used for the building energy simulation is -120.51° +in.weather_file_longitude -120.4 Weather station longitude from weather file used for the building energy simulation is -120.4° +in.weather_file_longitude -120.21 Weather station longitude from weather file used for the building energy simulation is -120.21° +in.weather_file_longitude -120.13 Weather station longitude from weather file used for the building energy simulation is -120.13° +in.weather_file_longitude -120.11 Weather station longitude from weather file used for the building energy simulation is -120.11° +in.weather_file_longitude -120 Weather station longitude from weather file used for the building energy simulation is -120° +in.weather_file_longitude -119.84 Weather station longitude from weather file used for the building energy simulation is -119.84° +in.weather_file_longitude -119.77 Weather station longitude from weather file used for the building energy simulation is -119.77° +in.weather_file_longitude -119.72 Weather station longitude from weather file used for the building energy simulation is -119.72° +in.weather_file_longitude -119.63 Weather station longitude from weather file used for the building energy simulation is -119.63° +in.weather_file_longitude -119.6 Weather station longitude from weather file used for the building energy simulation is -119.6° +in.weather_file_longitude -119.52 Weather station longitude from weather file used for the building energy simulation is -119.52° +in.weather_file_longitude -119.38 Weather station longitude from weather file used for the building energy simulation is -119.38° +in.weather_file_longitude -119.32 Weather station longitude from weather file used for the building energy simulation is -119.32° +in.weather_file_longitude -119.26 Weather station longitude from weather file used for the building energy simulation is -119.26° +in.weather_file_longitude -119.12 Weather station longitude from weather file used for the building energy simulation is -119.12° +in.weather_file_longitude -119.1 Weather station longitude from weather file used for the building energy simulation is -119.1° +in.weather_file_longitude -119.06 Weather station longitude from weather file used for the building energy simulation is -119.06° +in.weather_file_longitude -118.95 Weather station longitude from weather file used for the building energy simulation is -118.95° +in.weather_file_longitude -118.83 Weather station longitude from weather file used for the building energy simulation is -118.83° +in.weather_file_longitude -118.7 Weather station longitude from weather file used for the building energy simulation is -118.7° +in.weather_file_longitude -118.57 Weather station longitude from weather file used for the building energy simulation is -118.57° +in.weather_file_longitude -118.36 Weather station longitude from weather file used for the building energy simulation is -118.36° +in.weather_file_longitude -118.3 Weather station longitude from weather file used for the building energy simulation is -118.3° +in.weather_file_longitude -118.29 Weather station longitude from weather file used for the building energy simulation is -118.29° +in.weather_file_longitude -118.01 Weather station longitude from weather file used for the building energy simulation is -118.01° +in.weather_file_longitude -117.81 Weather station longitude from weather file used for the building energy simulation is -117.81° +in.weather_file_longitude -117.73 Weather station longitude from weather file used for the building energy simulation is -117.73° +in.weather_file_longitude -117.65 Weather station longitude from weather file used for the building energy simulation is -117.65° +in.weather_file_longitude -117.57 Weather station longitude from weather file used for the building energy simulation is -117.57° +in.weather_file_longitude -117.42 Weather station longitude from weather file used for the building energy simulation is -117.42° +in.weather_file_longitude -117.32 Weather station longitude from weather file used for the building energy simulation is -117.32° +in.weather_file_longitude -117.25 Weather station longitude from weather file used for the building energy simulation is -117.25° +in.weather_file_longitude -117.15 Weather station longitude from weather file used for the building energy simulation is -117.15° +in.weather_file_longitude -117.11 Weather station longitude from weather file used for the building energy simulation is -117.11° +in.weather_file_longitude -117.09 Weather station longitude from weather file used for the building energy simulation is -117.09° +in.weather_file_longitude -117.01 Weather station longitude from weather file used for the building energy simulation is -117.01° +in.weather_file_longitude -116.82 Weather station longitude from weather file used for the building energy simulation is -116.82° +in.weather_file_longitude -116.63 Weather station longitude from weather file used for the building energy simulation is -116.63° +in.weather_file_longitude -116.22 Weather station longitude from weather file used for the building energy simulation is -116.22° +in.weather_file_longitude -116.1 Weather station longitude from weather file used for the building energy simulation is -116.1° +in.weather_file_longitude -116.03 Weather station longitude from weather file used for the building energy simulation is -116.03° +in.weather_file_longitude -116.01 Weather station longitude from weather file used for the building energy simulation is -116.01° +in.weather_file_longitude -115.87 Weather station longitude from weather file used for the building energy simulation is -115.87° +in.weather_file_longitude -115.8 Weather station longitude from weather file used for the building energy simulation is -115.8° +in.weather_file_longitude -115.79 Weather station longitude from weather file used for the building energy simulation is -115.79° +in.weather_file_longitude -115.6 Weather station longitude from weather file used for the building energy simulation is -115.6° +in.weather_file_longitude -115.58 Weather station longitude from weather file used for the building energy simulation is -115.58° +in.weather_file_longitude -115.16 Weather station longitude from weather file used for the building energy simulation is -115.16° +in.weather_file_longitude -114.93 Weather station longitude from weather file used for the building energy simulation is -114.93° +in.weather_file_longitude -114.85 Weather station longitude from weather file used for the building energy simulation is -114.85° +in.weather_file_longitude -114.72 Weather station longitude from weather file used for the building energy simulation is -114.72° +in.weather_file_longitude -114.6 Weather station longitude from weather file used for the building energy simulation is -114.6° +in.weather_file_longitude -114.49 Weather station longitude from weather file used for the building energy simulation is -114.49° +in.weather_file_longitude -114.46 Weather station longitude from weather file used for the building energy simulation is -114.46° +in.weather_file_longitude -114.26 Weather station longitude from weather file used for the building energy simulation is -114.26° +in.weather_file_longitude -114.22 Weather station longitude from weather file used for the building energy simulation is -114.22° +in.weather_file_longitude -114.09 Weather station longitude from weather file used for the building energy simulation is -114.09° +in.weather_file_longitude -114.02 Weather station longitude from weather file used for the building energy simulation is -114.02° +in.weather_file_longitude -113.94 Weather station longitude from weather file used for the building energy simulation is -113.94° +in.weather_file_longitude -113.87 Weather station longitude from weather file used for the building energy simulation is -113.87° +in.weather_file_longitude -113.77 Weather station longitude from weather file used for the building energy simulation is -113.77° +in.weather_file_longitude -113.58 Weather station longitude from weather file used for the building energy simulation is -113.58° +in.weather_file_longitude -113.1 Weather station longitude from weather file used for the building energy simulation is -113.1° +in.weather_file_longitude -112.57 Weather station longitude from weather file used for the building energy simulation is -112.57° +in.weather_file_longitude -112.55 Weather station longitude from weather file used for the building energy simulation is -112.55° +in.weather_file_longitude -112.51 Weather station longitude from weather file used for the building energy simulation is -112.51° +in.weather_file_longitude -112.42 Weather station longitude from weather file used for the building energy simulation is -112.42° +in.weather_file_longitude -112.38 Weather station longitude from weather file used for the building energy simulation is -112.38° +in.weather_file_longitude -112.07 Weather station longitude from weather file used for the building energy simulation is -112.07° +in.weather_file_longitude -112.01 Weather station longitude from weather file used for the building energy simulation is -112.01° +in.weather_file_longitude -111.99 Weather station longitude from weather file used for the building energy simulation is -111.99° +in.weather_file_longitude -111.97 Weather station longitude from weather file used for the building energy simulation is -111.97° +in.weather_file_longitude -111.96 Weather station longitude from weather file used for the building energy simulation is -111.96° +in.weather_file_longitude -111.88 Weather station longitude from weather file used for the building energy simulation is -111.88° +in.weather_file_longitude -111.85 Weather station longitude from weather file used for the building energy simulation is -111.85° +in.weather_file_longitude -111.72 Weather station longitude from weather file used for the building energy simulation is -111.72° +in.weather_file_longitude -111.67 Weather station longitude from weather file used for the building energy simulation is -111.67° +in.weather_file_longitude -111.45 Weather station longitude from weather file used for the building energy simulation is -111.45° +in.weather_file_longitude -111.38 Weather station longitude from weather file used for the building energy simulation is -111.38° +in.weather_file_longitude -111.19 Weather station longitude from weather file used for the building energy simulation is -111.19° +in.weather_file_longitude -111.15 Weather station longitude from weather file used for the building energy simulation is -111.15° +in.weather_file_longitude -110.88 Weather station longitude from weather file used for the building energy simulation is -110.88° +in.weather_file_longitude -110.85 Weather station longitude from weather file used for the building energy simulation is -110.85° +in.weather_file_longitude -110.75 Weather station longitude from weather file used for the building energy simulation is -110.75° +in.weather_file_longitude -110.73 Weather station longitude from weather file used for the building energy simulation is -110.73° +in.weather_file_longitude -110.72 Weather station longitude from weather file used for the building energy simulation is -110.72° +in.weather_file_longitude -110.45 Weather station longitude from weather file used for the building energy simulation is -110.45° +in.weather_file_longitude -110.11 Weather station longitude from weather file used for the building energy simulation is -110.11° +in.weather_file_longitude -109.78 Weather station longitude from weather file used for the building energy simulation is -109.78° +in.weather_file_longitude -109.75 Weather station longitude from weather file used for the building energy simulation is -109.75° +in.weather_file_longitude -109.64 Weather station longitude from weather file used for the building energy simulation is -109.64° +in.weather_file_longitude -109.6 Weather station longitude from weather file used for the building energy simulation is -109.6° +in.weather_file_longitude -109.51 Weather station longitude from weather file used for the building energy simulation is -109.51° +in.weather_file_longitude -109.47 Weather station longitude from weather file used for the building energy simulation is -109.47° +in.weather_file_longitude -109.38 Weather station longitude from weather file used for the building energy simulation is -109.38° +in.weather_file_longitude -109.07 Weather station longitude from weather file used for the building energy simulation is -109.07° +in.weather_file_longitude -109.06 Weather station longitude from weather file used for the building energy simulation is -109.06° +in.weather_file_longitude -108.95 Weather station longitude from weather file used for the building energy simulation is -108.95° +in.weather_file_longitude -108.79 Weather station longitude from weather file used for the building energy simulation is -108.79° +in.weather_file_longitude -108.63 Weather station longitude from weather file used for the building energy simulation is -108.63° +in.weather_file_longitude -108.54 Weather station longitude from weather file used for the building energy simulation is -108.54° +in.weather_file_longitude -108.46 Weather station longitude from weather file used for the building energy simulation is -108.46° +in.weather_file_longitude -108.23 Weather station longitude from weather file used for the building energy simulation is -108.23° +in.weather_file_longitude -108.08 Weather station longitude from weather file used for the building energy simulation is -108.08° +in.weather_file_longitude -107.95 Weather station longitude from weather file used for the building energy simulation is -107.95° +in.weather_file_longitude -107.9 Weather station longitude from weather file used for the building energy simulation is -107.9° +in.weather_file_longitude -107.89 Weather station longitude from weather file used for the building energy simulation is -107.89° +in.weather_file_longitude -107.76 Weather station longitude from weather file used for the building energy simulation is -107.76° +in.weather_file_longitude -107.73 Weather station longitude from weather file used for the building energy simulation is -107.73° +in.weather_file_longitude -107.72 Weather station longitude from weather file used for the building energy simulation is -107.72° +in.weather_file_longitude -107.52 Weather station longitude from weather file used for the building energy simulation is -107.52° +in.weather_file_longitude -107.22 Weather station longitude from weather file used for the building energy simulation is -107.22° +in.weather_file_longitude -107.2 Weather station longitude from weather file used for the building energy simulation is -107.2° +in.weather_file_longitude -107.03 Weather station longitude from weather file used for the building energy simulation is -107.03° +in.weather_file_longitude -106.98 Weather station longitude from weather file used for the building energy simulation is -106.98° +in.weather_file_longitude -106.95 Weather station longitude from weather file used for the building energy simulation is -106.95° +in.weather_file_longitude -106.92 Weather station longitude from weather file used for the building energy simulation is -106.92° +in.weather_file_longitude -106.87 Weather station longitude from weather file used for the building energy simulation is -106.87° +in.weather_file_longitude -106.72 Weather station longitude from weather file used for the building energy simulation is -106.72° +in.weather_file_longitude -106.62 Weather station longitude from weather file used for the building energy simulation is -106.62° +in.weather_file_longitude -106.48 Weather station longitude from weather file used for the building energy simulation is -106.48° +in.weather_file_longitude -106.47 Weather station longitude from weather file used for the building energy simulation is -106.47° +in.weather_file_longitude -106.38 Weather station longitude from weather file used for the building energy simulation is -106.38° +in.weather_file_longitude -106.32 Weather station longitude from weather file used for the building energy simulation is -106.32° +in.weather_file_longitude -106.09 Weather station longitude from weather file used for the building energy simulation is -106.09° +in.weather_file_longitude -105.98 Weather station longitude from weather file used for the building energy simulation is -105.98° +in.weather_file_longitude -105.89 Weather station longitude from weather file used for the building energy simulation is -105.89° +in.weather_file_longitude -105.87 Weather station longitude from weather file used for the building energy simulation is -105.87° +in.weather_file_longitude -105.67 Weather station longitude from weather file used for the building energy simulation is -105.67° +in.weather_file_longitude -105.66 Weather station longitude from weather file used for the building energy simulation is -105.66° +in.weather_file_longitude -105.57 Weather station longitude from weather file used for the building energy simulation is -105.57° +in.weather_file_longitude -105.54 Weather station longitude from weather file used for the building energy simulation is -105.54° +in.weather_file_longitude -105.53 Weather station longitude from weather file used for the building energy simulation is -105.53° +in.weather_file_longitude -105.39 Weather station longitude from weather file used for the building energy simulation is -105.39° +in.weather_file_longitude -105.14 Weather station longitude from weather file used for the building energy simulation is -105.14° +in.weather_file_longitude -104.85 Weather station longitude from weather file used for the building energy simulation is -104.85° +in.weather_file_longitude -104.81 Weather station longitude from weather file used for the building energy simulation is -104.81° +in.weather_file_longitude -104.8 Weather station longitude from weather file used for the building energy simulation is -104.8° +in.weather_file_longitude -104.75 Weather station longitude from weather file used for the building energy simulation is -104.75° +in.weather_file_longitude -104.71 Weather station longitude from weather file used for the building energy simulation is -104.71° +in.weather_file_longitude -104.66 Weather station longitude from weather file used for the building energy simulation is -104.66° +in.weather_file_longitude -104.62 Weather station longitude from weather file used for the building energy simulation is -104.62° +in.weather_file_longitude -104.54 Weather station longitude from weather file used for the building energy simulation is -104.54° +in.weather_file_longitude -104.5 Weather station longitude from weather file used for the building energy simulation is -104.5° +in.weather_file_longitude -104.34 Weather station longitude from weather file used for the building energy simulation is -104.34° +in.weather_file_longitude -104.26 Weather station longitude from weather file used for the building energy simulation is -104.26° +in.weather_file_longitude -104.25 Weather station longitude from weather file used for the building energy simulation is -104.25° +in.weather_file_longitude -104.18 Weather station longitude from weather file used for the building energy simulation is -104.18° +in.weather_file_longitude -104.15 Weather station longitude from weather file used for the building energy simulation is -104.15° +in.weather_file_longitude -104.02 Weather station longitude from weather file used for the building energy simulation is -104.02° +in.weather_file_longitude -103.72 Weather station longitude from weather file used for the building energy simulation is -103.72° +in.weather_file_longitude -103.64 Weather station longitude from weather file used for the building energy simulation is -103.64° +in.weather_file_longitude -103.63 Weather station longitude from weather file used for the building energy simulation is -103.63° +in.weather_file_longitude -103.6 Weather station longitude from weather file used for the building energy simulation is -103.6° +in.weather_file_longitude -103.55 Weather station longitude from weather file used for the building energy simulation is -103.55° +in.weather_file_longitude -103.53 Weather station longitude from weather file used for the building energy simulation is -103.53° +in.weather_file_longitude -103.32 Weather station longitude from weather file used for the building energy simulation is -103.32° +in.weather_file_longitude -103.23 Weather station longitude from weather file used for the building energy simulation is -103.23° +in.weather_file_longitude -103.2 Weather station longitude from weather file used for the building energy simulation is -103.2° +in.weather_file_longitude -103.15 Weather station longitude from weather file used for the building energy simulation is -103.15° +in.weather_file_longitude -103.1 Weather station longitude from weather file used for the building energy simulation is -103.1° +in.weather_file_longitude -103.07 Weather station longitude from weather file used for the building energy simulation is -103.07° +in.weather_file_longitude -103.05 Weather station longitude from weather file used for the building energy simulation is -103.05° +in.weather_file_longitude -102.99 Weather station longitude from weather file used for the building energy simulation is -102.99° +in.weather_file_longitude -102.92 Weather station longitude from weather file used for the building energy simulation is -102.92° +in.weather_file_longitude -102.8 Weather station longitude from weather file used for the building energy simulation is -102.8° +in.weather_file_longitude -102.69 Weather station longitude from weather file used for the building energy simulation is -102.69° +in.weather_file_longitude -102.66 Weather station longitude from weather file used for the building energy simulation is -102.66° +in.weather_file_longitude -102.61 Weather station longitude from weather file used for the building energy simulation is -102.61° +in.weather_file_longitude -102.55 Weather station longitude from weather file used for the building energy simulation is -102.55° +in.weather_file_longitude -102.52 Weather station longitude from weather file used for the building energy simulation is -102.52° +in.weather_file_longitude -102.39 Weather station longitude from weather file used for the building energy simulation is -102.39° +in.weather_file_longitude -102.28 Weather station longitude from weather file used for the building energy simulation is -102.28° +in.weather_file_longitude -102.21 Weather station longitude from weather file used for the building energy simulation is -102.21° +in.weather_file_longitude -101.87 Weather station longitude from weather file used for the building energy simulation is -101.87° +in.weather_file_longitude -101.82 Weather station longitude from weather file used for the building energy simulation is -101.82° +in.weather_file_longitude -101.77 Weather station longitude from weather file used for the building energy simulation is -101.77° +in.weather_file_longitude -101.71 Weather station longitude from weather file used for the building energy simulation is -101.71° +in.weather_file_longitude -101.69 Weather station longitude from weather file used for the building energy simulation is -101.69° +in.weather_file_longitude -101.6 Weather station longitude from weather file used for the building energy simulation is -101.6° +in.weather_file_longitude -101.44 Weather station longitude from weather file used for the building energy simulation is -101.44° +in.weather_file_longitude -101.39 Weather station longitude from weather file used for the building energy simulation is -101.39° +in.weather_file_longitude -101.36 Weather station longitude from weather file used for the building energy simulation is -101.36° +in.weather_file_longitude -101.28 Weather station longitude from weather file used for the building energy simulation is -101.28° +in.weather_file_longitude -100.96 Weather station longitude from weather file used for the building energy simulation is -100.96° +in.weather_file_longitude -100.92 Weather station longitude from weather file used for the building energy simulation is -100.92° +in.weather_file_longitude -100.78 Weather station longitude from weather file used for the building energy simulation is -100.78° +in.weather_file_longitude -100.75 Weather station longitude from weather file used for the building energy simulation is -100.75° +in.weather_file_longitude -100.73 Weather station longitude from weather file used for the building energy simulation is -100.73° +in.weather_file_longitude -100.67 Weather station longitude from weather file used for the building energy simulation is -100.67° +in.weather_file_longitude -100.59 Weather station longitude from weather file used for the building energy simulation is -100.59° +in.weather_file_longitude -100.55 Weather station longitude from weather file used for the building energy simulation is -100.55° +in.weather_file_longitude -100.49 Weather station longitude from weather file used for the building energy simulation is -100.49° +in.weather_file_longitude -100.41 Weather station longitude from weather file used for the building energy simulation is -100.41° +in.weather_file_longitude -100.29 Weather station longitude from weather file used for the building energy simulation is -100.29° +in.weather_file_longitude -99.98 Weather station longitude from weather file used for the building energy simulation is -99.98° +in.weather_file_longitude -99.97 Weather station longitude from weather file used for the building energy simulation is -99.97° +in.weather_file_longitude -99.85 Weather station longitude from weather file used for the building energy simulation is -99.85° +in.weather_file_longitude -99.84 Weather station longitude from weather file used for the building energy simulation is -99.84° +in.weather_file_longitude -99.83 Weather station longitude from weather file used for the building energy simulation is -99.83° +in.weather_file_longitude -99.78 Weather station longitude from weather file used for the building energy simulation is -99.78° +in.weather_file_longitude -99.77 Weather station longitude from weather file used for the building energy simulation is -99.77° +in.weather_file_longitude -99.68 Weather station longitude from weather file used for the building energy simulation is -99.68° +in.weather_file_longitude -99.64 Weather station longitude from weather file used for the building energy simulation is -99.64° +in.weather_file_longitude -99.47 Weather station longitude from weather file used for the building energy simulation is -99.47° +in.weather_file_longitude -99.33 Weather station longitude from weather file used for the building energy simulation is -99.33° +in.weather_file_longitude -99.32 Weather station longitude from weather file used for the building energy simulation is -99.32° +in.weather_file_longitude -99.28 Weather station longitude from weather file used for the building energy simulation is -99.28° +in.weather_file_longitude -99.27 Weather station longitude from weather file used for the building energy simulation is -99.27° +in.weather_file_longitude -99.22 Weather station longitude from weather file used for the building energy simulation is -99.22° +in.weather_file_longitude -99.2 Weather station longitude from weather file used for the building energy simulation is -99.2° +in.weather_file_longitude -99.17 Weather station longitude from weather file used for the building energy simulation is -99.17° +in.weather_file_longitude -99.05 Weather station longitude from weather file used for the building energy simulation is -99.05° +in.weather_file_longitude -99 Weather station longitude from weather file used for the building energy simulation is -99° +in.weather_file_longitude -98.98 Weather station longitude from weather file used for the building energy simulation is -98.98° +in.weather_file_longitude -98.9 Weather station longitude from weather file used for the building energy simulation is -98.9° +in.weather_file_longitude -98.85 Weather station longitude from weather file used for the building energy simulation is -98.85° +in.weather_file_longitude -98.83 Weather station longitude from weather file used for the building energy simulation is -98.83° +in.weather_file_longitude -98.68 Weather station longitude from weather file used for the building energy simulation is -98.68° +in.weather_file_longitude -98.55 Weather station longitude from weather file used for the building energy simulation is -98.55° +in.weather_file_longitude -98.49 Weather station longitude from weather file used for the building energy simulation is -98.49° +in.weather_file_longitude -98.47 Weather station longitude from weather file used for the building energy simulation is -98.47° +in.weather_file_longitude -98.46 Weather station longitude from weather file used for the building energy simulation is -98.46° +in.weather_file_longitude -98.43 Weather station longitude from weather file used for the building energy simulation is -98.43° +in.weather_file_longitude -98.42 Weather station longitude from weather file used for the building energy simulation is -98.42° +in.weather_file_longitude -98.4 Weather station longitude from weather file used for the building energy simulation is -98.4° +in.weather_file_longitude -98.31 Weather station longitude from weather file used for the building energy simulation is -98.31° +in.weather_file_longitude -98.28 Weather station longitude from weather file used for the building energy simulation is -98.28° +in.weather_file_longitude -98.24 Weather station longitude from weather file used for the building energy simulation is -98.24° +in.weather_file_longitude -98.23 Weather station longitude from weather file used for the building energy simulation is -98.23° +in.weather_file_longitude -98.18 Weather station longitude from weather file used for the building energy simulation is -98.18° +in.weather_file_longitude -98.06 Weather station longitude from weather file used for the building energy simulation is -98.06° +in.weather_file_longitude -98.05 Weather station longitude from weather file used for the building energy simulation is -98.05° +in.weather_file_longitude -98.04 Weather station longitude from weather file used for the building energy simulation is -98.04° +in.weather_file_longitude -98.03 Weather station longitude from weather file used for the building energy simulation is -98.03° +in.weather_file_longitude -97.99 Weather station longitude from weather file used for the building energy simulation is -97.99° +in.weather_file_longitude -97.98 Weather station longitude from weather file used for the building energy simulation is -97.98° +in.weather_file_longitude -97.86 Weather station longitude from weather file used for the building energy simulation is -97.86° +in.weather_file_longitude -97.85 Weather station longitude from weather file used for the building energy simulation is -97.85° +in.weather_file_longitude -97.83 Weather station longitude from weather file used for the building energy simulation is -97.83° +in.weather_file_longitude -97.82 Weather station longitude from weather file used for the building energy simulation is -97.82° +in.weather_file_longitude -97.77 Weather station longitude from weather file used for the building energy simulation is -97.77° +in.weather_file_longitude -97.69 Weather station longitude from weather file used for the building energy simulation is -97.69° +in.weather_file_longitude -97.68 Weather station longitude from weather file used for the building energy simulation is -97.68° +in.weather_file_longitude -97.67 Weather station longitude from weather file used for the building energy simulation is -97.67° +in.weather_file_longitude -97.66 Weather station longitude from weather file used for the building energy simulation is -97.66° +in.weather_file_longitude -97.65 Weather station longitude from weather file used for the building energy simulation is -97.65° +in.weather_file_longitude -97.6 Weather station longitude from weather file used for the building energy simulation is -97.6° +in.weather_file_longitude -97.51 Weather station longitude from weather file used for the building energy simulation is -97.51° +in.weather_file_longitude -97.45 Weather station longitude from weather file used for the building energy simulation is -97.45° +in.weather_file_longitude -97.44 Weather station longitude from weather file used for the building energy simulation is -97.44° +in.weather_file_longitude -97.43 Weather station longitude from weather file used for the building energy simulation is -97.43° +in.weather_file_longitude -97.42 Weather station longitude from weather file used for the building energy simulation is -97.42° +in.weather_file_longitude -97.4 Weather station longitude from weather file used for the building energy simulation is -97.4° +in.weather_file_longitude -97.38 Weather station longitude from weather file used for the building energy simulation is -97.38° +in.weather_file_longitude -97.36 Weather station longitude from weather file used for the building energy simulation is -97.36° +in.weather_file_longitude -97.33 Weather station longitude from weather file used for the building energy simulation is -97.33° +in.weather_file_longitude -97.32 Weather station longitude from weather file used for the building energy simulation is -97.32° +in.weather_file_longitude -97.3 Weather station longitude from weather file used for the building energy simulation is -97.3° +in.weather_file_longitude -97.27 Weather station longitude from weather file used for the building energy simulation is -97.27° +in.weather_file_longitude -97.23 Weather station longitude from weather file used for the building energy simulation is -97.23° +in.weather_file_longitude -97.22 Weather station longitude from weather file used for the building energy simulation is -97.22° +in.weather_file_longitude -97.2 Weather station longitude from weather file used for the building energy simulation is -97.2° +in.weather_file_longitude -97.18 Weather station longitude from weather file used for the building energy simulation is -97.18° +in.weather_file_longitude -97.15 Weather station longitude from weather file used for the building energy simulation is -97.15° +in.weather_file_longitude -97.12 Weather station longitude from weather file used for the building energy simulation is -97.12° +in.weather_file_longitude -97.1 Weather station longitude from weather file used for the building energy simulation is -97.1° +in.weather_file_longitude -97.09 Weather station longitude from weather file used for the building energy simulation is -97.09° +in.weather_file_longitude -97.05 Weather station longitude from weather file used for the building energy simulation is -97.05° +in.weather_file_longitude -97.04 Weather station longitude from weather file used for the building energy simulation is -97.04° +in.weather_file_longitude -96.99 Weather station longitude from weather file used for the building energy simulation is -96.99° +in.weather_file_longitude -96.97 Weather station longitude from weather file used for the building energy simulation is -96.97° +in.weather_file_longitude -96.95 Weather station longitude from weather file used for the building energy simulation is -96.95° +in.weather_file_longitude -96.93 Weather station longitude from weather file used for the building energy simulation is -96.93° +in.weather_file_longitude -96.85 Weather station longitude from weather file used for the building energy simulation is -96.85° +in.weather_file_longitude -96.81 Weather station longitude from weather file used for the building energy simulation is -96.81° +in.weather_file_longitude -96.8 Weather station longitude from weather file used for the building energy simulation is -96.8° +in.weather_file_longitude -96.76 Weather station longitude from weather file used for the building energy simulation is -96.76° +in.weather_file_longitude -96.75 Weather station longitude from weather file used for the building energy simulation is -96.75° +in.weather_file_longitude -96.68 Weather station longitude from weather file used for the building energy simulation is -96.68° +in.weather_file_longitude -96.62 Weather station longitude from weather file used for the building energy simulation is -96.62° +in.weather_file_longitude -96.59 Weather station longitude from weather file used for the building energy simulation is -96.59° +in.weather_file_longitude -96.53 Weather station longitude from weather file used for the building energy simulation is -96.53° +in.weather_file_longitude -96.52 Weather station longitude from weather file used for the building energy simulation is -96.52° +in.weather_file_longitude -96.42 Weather station longitude from weather file used for the building energy simulation is -96.42° +in.weather_file_longitude -96.4 Weather station longitude from weather file used for the building energy simulation is -96.4° +in.weather_file_longitude -96.38 Weather station longitude from weather file used for the building energy simulation is -96.38° +in.weather_file_longitude -96.36 Weather station longitude from weather file used for the building energy simulation is -96.36° +in.weather_file_longitude -96.3 Weather station longitude from weather file used for the building energy simulation is -96.3° +in.weather_file_longitude -96.27 Weather station longitude from weather file used for the building energy simulation is -96.27° +in.weather_file_longitude -96.25 Weather station longitude from weather file used for the building energy simulation is -96.25° +in.weather_file_longitude -96.19 Weather station longitude from weather file used for the building energy simulation is -96.19° +in.weather_file_longitude -96.18 Weather station longitude from weather file used for the building energy simulation is -96.18° +in.weather_file_longitude -96.17 Weather station longitude from weather file used for the building energy simulation is -96.17° +in.weather_file_longitude -96.05 Weather station longitude from weather file used for the building energy simulation is -96.05° +in.weather_file_longitude -96.02 Weather station longitude from weather file used for the building energy simulation is -96.02° +in.weather_file_longitude -95.98 Weather station longitude from weather file used for the building energy simulation is -95.98° +in.weather_file_longitude -95.97 Weather station longitude from weather file used for the building energy simulation is -95.97° +in.weather_file_longitude -95.9 Weather station longitude from weather file used for the building energy simulation is -95.9° +in.weather_file_longitude -95.89 Weather station longitude from weather file used for the building energy simulation is -95.89° +in.weather_file_longitude -95.88 Weather station longitude from weather file used for the building energy simulation is -95.88° +in.weather_file_longitude -95.83 Weather station longitude from weather file used for the building energy simulation is -95.83° +in.weather_file_longitude -95.82 Weather station longitude from weather file used for the building energy simulation is -95.82° +in.weather_file_longitude -95.78 Weather station longitude from weather file used for the building energy simulation is -95.78° +in.weather_file_longitude -95.75 Weather station longitude from weather file used for the building energy simulation is -95.75° +in.weather_file_longitude -95.7 Weather station longitude from weather file used for the building energy simulation is -95.7° +in.weather_file_longitude -95.68 Weather station longitude from weather file used for the building energy simulation is -95.68° +in.weather_file_longitude -95.66 Weather station longitude from weather file used for the building energy simulation is -95.66° +in.weather_file_longitude -95.63 Weather station longitude from weather file used for the building energy simulation is -95.63° +in.weather_file_longitude -95.59 Weather station longitude from weather file used for the building energy simulation is -95.59° +in.weather_file_longitude -95.57 Weather station longitude from weather file used for the building energy simulation is -95.57° +in.weather_file_longitude -95.55 Weather station longitude from weather file used for the building energy simulation is -95.55° +in.weather_file_longitude -95.5 Weather station longitude from weather file used for the building energy simulation is -95.5° +in.weather_file_longitude -95.48 Weather station longitude from weather file used for the building energy simulation is -95.48° +in.weather_file_longitude -95.46 Weather station longitude from weather file used for the building energy simulation is -95.46° +in.weather_file_longitude -95.45 Weather station longitude from weather file used for the building energy simulation is -95.45° +in.weather_file_longitude -95.41 Weather station longitude from weather file used for the building energy simulation is -95.41° +in.weather_file_longitude -95.4 Weather station longitude from weather file used for the building energy simulation is -95.4° +in.weather_file_longitude -95.39 Weather station longitude from weather file used for the building energy simulation is -95.39° +in.weather_file_longitude -95.37 Weather station longitude from weather file used for the building energy simulation is -95.37° +in.weather_file_longitude -95.36 Weather station longitude from weather file used for the building energy simulation is -95.36° +in.weather_file_longitude -95.32 Weather station longitude from weather file used for the building energy simulation is -95.32° +in.weather_file_longitude -95.25 Weather station longitude from weather file used for the building energy simulation is -95.25° +in.weather_file_longitude -95.23 Weather station longitude from weather file used for the building energy simulation is -95.23° +in.weather_file_longitude -95.21 Weather station longitude from weather file used for the building energy simulation is -95.21° +in.weather_file_longitude -95.2 Weather station longitude from weather file used for the building energy simulation is -95.2° +in.weather_file_longitude -95.16 Weather station longitude from weather file used for the building energy simulation is -95.16° +in.weather_file_longitude -95.1 Weather station longitude from weather file used for the building energy simulation is -95.1° +in.weather_file_longitude -95.08 Weather station longitude from weather file used for the building energy simulation is -95.08° +in.weather_file_longitude -95.07 Weather station longitude from weather file used for the building energy simulation is -95.07° +in.weather_file_longitude -95.03 Weather station longitude from weather file used for the building energy simulation is -95.03° +in.weather_file_longitude -95.02 Weather station longitude from weather file used for the building energy simulation is -95.02° +in.weather_file_longitude -94.98 Weather station longitude from weather file used for the building energy simulation is -94.98° +in.weather_file_longitude -94.93 Weather station longitude from weather file used for the building energy simulation is -94.93° +in.weather_file_longitude -94.92 Weather station longitude from weather file used for the building energy simulation is -94.92° +in.weather_file_longitude -94.91 Weather station longitude from weather file used for the building energy simulation is -94.91° +in.weather_file_longitude -94.89 Weather station longitude from weather file used for the building energy simulation is -94.89° +in.weather_file_longitude -94.86 Weather station longitude from weather file used for the building energy simulation is -94.86° +in.weather_file_longitude -94.81 Weather station longitude from weather file used for the building energy simulation is -94.81° +in.weather_file_longitude -94.78 Weather station longitude from weather file used for the building energy simulation is -94.78° +in.weather_file_longitude -94.75 Weather station longitude from weather file used for the building energy simulation is -94.75° +in.weather_file_longitude -94.74 Weather station longitude from weather file used for the building energy simulation is -94.74° +in.weather_file_longitude -94.72 Weather station longitude from weather file used for the building energy simulation is -94.72° +in.weather_file_longitude -94.71 Weather station longitude from weather file used for the building energy simulation is -94.71° +in.weather_file_longitude -94.7 Weather station longitude from weather file used for the building energy simulation is -94.7° +in.weather_file_longitude -94.61 Weather station longitude from weather file used for the building energy simulation is -94.61° +in.weather_file_longitude -94.59 Weather station longitude from weather file used for the building energy simulation is -94.59° +in.weather_file_longitude -94.5 Weather station longitude from weather file used for the building energy simulation is -94.5° +in.weather_file_longitude -94.42 Weather station longitude from weather file used for the building energy simulation is -94.42° +in.weather_file_longitude -94.4 Weather station longitude from weather file used for the building energy simulation is -94.4° +in.weather_file_longitude -94.38 Weather station longitude from weather file used for the building energy simulation is -94.38° +in.weather_file_longitude -94.37 Weather station longitude from weather file used for the building energy simulation is -94.37° +in.weather_file_longitude -94.35 Weather station longitude from weather file used for the building energy simulation is -94.35° +in.weather_file_longitude -94.3 Weather station longitude from weather file used for the building energy simulation is -94.3° +in.weather_file_longitude -94.27 Weather station longitude from weather file used for the building energy simulation is -94.27° +in.weather_file_longitude -94.22 Weather station longitude from weather file used for the building energy simulation is -94.22° +in.weather_file_longitude -94.17 Weather station longitude from weather file used for the building energy simulation is -94.17° +in.weather_file_longitude -94.13 Weather station longitude from weather file used for the building energy simulation is -94.13° +in.weather_file_longitude -94.1 Weather station longitude from weather file used for the building energy simulation is -94.1° +in.weather_file_longitude -94.05 Weather station longitude from weather file used for the building energy simulation is -94.05° +in.weather_file_longitude -94.02 Weather station longitude from weather file used for the building energy simulation is -94.02° +in.weather_file_longitude -94.01 Weather station longitude from weather file used for the building energy simulation is -94.01° +in.weather_file_longitude -93.92 Weather station longitude from weather file used for the building energy simulation is -93.92° +in.weather_file_longitude -93.9 Weather station longitude from weather file used for the building energy simulation is -93.9° +in.weather_file_longitude -93.87 Weather station longitude from weather file used for the building energy simulation is -93.87° +in.weather_file_longitude -93.84 Weather station longitude from weather file used for the building energy simulation is -93.84° +in.weather_file_longitude -93.82 Weather station longitude from weather file used for the building energy simulation is -93.82° +in.weather_file_longitude -93.75 Weather station longitude from weather file used for the building energy simulation is -93.75° +in.weather_file_longitude -93.67 Weather station longitude from weather file used for the building energy simulation is -93.67° +in.weather_file_longitude -93.66 Weather station longitude from weather file used for the building energy simulation is -93.66° +in.weather_file_longitude -93.62 Weather station longitude from weather file used for the building energy simulation is -93.62° +in.weather_file_longitude -93.61 Weather station longitude from weather file used for the building energy simulation is -93.61° +in.weather_file_longitude -93.58 Weather station longitude from weather file used for the building energy simulation is -93.58° +in.weather_file_longitude -93.55 Weather station longitude from weather file used for the building energy simulation is -93.55° +in.weather_file_longitude -93.48 Weather station longitude from weather file used for the building energy simulation is -93.48° +in.weather_file_longitude -93.47 Weather station longitude from weather file used for the building energy simulation is -93.47° +in.weather_file_longitude -93.4 Weather station longitude from weather file used for the building energy simulation is -93.4° +in.weather_file_longitude -93.39 Weather station longitude from weather file used for the building energy simulation is -93.39° +in.weather_file_longitude -93.37 Weather station longitude from weather file used for the building energy simulation is -93.37° +in.weather_file_longitude -93.35 Weather station longitude from weather file used for the building energy simulation is -93.35° +in.weather_file_longitude -93.33 Weather station longitude from weather file used for the building energy simulation is -93.33° +in.weather_file_longitude -93.27 Weather station longitude from weather file used for the building energy simulation is -93.27° +in.weather_file_longitude -93.25 Weather station longitude from weather file used for the building energy simulation is -93.25° +in.weather_file_longitude -93.23 Weather station longitude from weather file used for the building energy simulation is -93.23° +in.weather_file_longitude -93.2 Weather station longitude from weather file used for the building energy simulation is -93.2° +in.weather_file_longitude -93.19 Weather station longitude from weather file used for the building energy simulation is -93.19° +in.weather_file_longitude -93.18 Weather station longitude from weather file used for the building energy simulation is -93.18° +in.weather_file_longitude -93.16 Weather station longitude from weather file used for the building energy simulation is -93.16° +in.weather_file_longitude -93.1 Weather station longitude from weather file used for the building energy simulation is -93.1° +in.weather_file_longitude -93.05 Weather station longitude from weather file used for the building energy simulation is -93.05° +in.weather_file_longitude -93.03 Weather station longitude from weather file used for the building energy simulation is -93.03° +in.weather_file_longitude -93.02 Weather station longitude from weather file used for the building energy simulation is -93.02° +in.weather_file_longitude -92.95 Weather station longitude from weather file used for the building energy simulation is -92.95° +in.weather_file_longitude -92.93 Weather station longitude from weather file used for the building energy simulation is -92.93° +in.weather_file_longitude -92.92 Weather station longitude from weather file used for the building energy simulation is -92.92° +in.weather_file_longitude -92.81 Weather station longitude from weather file used for the building energy simulation is -92.81° +in.weather_file_longitude -92.69 Weather station longitude from weather file used for the building energy simulation is -92.69° +in.weather_file_longitude -92.56 Weather station longitude from weather file used for the building energy simulation is -92.56° +in.weather_file_longitude -92.55 Weather station longitude from weather file used for the building energy simulation is -92.55° +in.weather_file_longitude -92.54 Weather station longitude from weather file used for the building energy simulation is -92.54° +in.weather_file_longitude -92.5 Weather station longitude from weather file used for the building energy simulation is -92.5° +in.weather_file_longitude -92.49 Weather station longitude from weather file used for the building energy simulation is -92.49° +in.weather_file_longitude -92.48 Weather station longitude from weather file used for the building energy simulation is -92.48° +in.weather_file_longitude -92.47 Weather station longitude from weather file used for the building energy simulation is -92.47° +in.weather_file_longitude -92.45 Weather station longitude from weather file used for the building energy simulation is -92.45° +in.weather_file_longitude -92.4 Weather station longitude from weather file used for the building energy simulation is -92.4° +in.weather_file_longitude -92.3 Weather station longitude from weather file used for the building energy simulation is -92.3° +in.weather_file_longitude -92.25 Weather station longitude from weather file used for the building energy simulation is -92.25° +in.weather_file_longitude -92.22 Weather station longitude from weather file used for the building energy simulation is -92.22° +in.weather_file_longitude -92.19 Weather station longitude from weather file used for the building energy simulation is -92.19° +in.weather_file_longitude -92.16 Weather station longitude from weather file used for the building energy simulation is -92.16° +in.weather_file_longitude -92.15 Weather station longitude from weather file used for the building energy simulation is -92.15° +in.weather_file_longitude -92.09 Weather station longitude from weather file used for the building energy simulation is -92.09° +in.weather_file_longitude -92.04 Weather station longitude from weather file used for the building energy simulation is -92.04° +in.weather_file_longitude -91.99 Weather station longitude from weather file used for the building energy simulation is -91.99° +in.weather_file_longitude -91.97 Weather station longitude from weather file used for the building energy simulation is -91.97° +in.weather_file_longitude -91.94 Weather station longitude from weather file used for the building energy simulation is -91.94° +in.weather_file_longitude -91.9 Weather station longitude from weather file used for the building energy simulation is -91.9° +in.weather_file_longitude -91.88 Weather station longitude from weather file used for the building energy simulation is -91.88° +in.weather_file_longitude -91.77 Weather station longitude from weather file used for the building energy simulation is -91.77° +in.weather_file_longitude -91.75 Weather station longitude from weather file used for the building energy simulation is -91.75° +in.weather_file_longitude -91.73 Weather station longitude from weather file used for the building energy simulation is -91.73° +in.weather_file_longitude -91.71 Weather station longitude from weather file used for the building energy simulation is -91.71° +in.weather_file_longitude -91.7 Weather station longitude from weather file used for the building energy simulation is -91.7° +in.weather_file_longitude -91.67 Weather station longitude from weather file used for the building energy simulation is -91.67° +in.weather_file_longitude -91.64 Weather station longitude from weather file used for the building energy simulation is -91.64° +in.weather_file_longitude -91.57 Weather station longitude from weather file used for the building energy simulation is -91.57° +in.weather_file_longitude -91.54 Weather station longitude from weather file used for the building energy simulation is -91.54° +in.weather_file_longitude -91.49 Weather station longitude from weather file used for the building energy simulation is -91.49° +in.weather_file_longitude -91.44 Weather station longitude from weather file used for the building energy simulation is -91.44° +in.weather_file_longitude -91.42 Weather station longitude from weather file used for the building energy simulation is -91.42° +in.weather_file_longitude -91.4 Weather station longitude from weather file used for the building energy simulation is -91.4° +in.weather_file_longitude -91.33 Weather station longitude from weather file used for the building energy simulation is -91.33° +in.weather_file_longitude -91.3 Weather station longitude from weather file used for the building energy simulation is -91.3° +in.weather_file_longitude -91.25 Weather station longitude from weather file used for the building energy simulation is -91.25° +in.weather_file_longitude -91.19 Weather station longitude from weather file used for the building energy simulation is -91.19° +in.weather_file_longitude -91.15 Weather station longitude from weather file used for the building energy simulation is -91.15° +in.weather_file_longitude -91.14 Weather station longitude from weather file used for the building energy simulation is -91.14° +in.weather_file_longitude -91.13 Weather station longitude from weather file used for the building energy simulation is -91.13° +in.weather_file_longitude -91.12 Weather station longitude from weather file used for the building energy simulation is -91.12° +in.weather_file_longitude -91.03 Weather station longitude from weather file used for the building energy simulation is -91.03° +in.weather_file_longitude -90.93 Weather station longitude from weather file used for the building energy simulation is -90.93° +in.weather_file_longitude -90.92 Weather station longitude from weather file used for the building energy simulation is -90.92° +in.weather_file_longitude -90.73 Weather station longitude from weather file used for the building energy simulation is -90.73° +in.weather_file_longitude -90.7 Weather station longitude from weather file used for the building energy simulation is -90.7° +in.weather_file_longitude -90.68 Weather station longitude from weather file used for the building energy simulation is -90.68° +in.weather_file_longitude -90.66 Weather station longitude from weather file used for the building energy simulation is -90.66° +in.weather_file_longitude -90.65 Weather station longitude from weather file used for the building energy simulation is -90.65° +in.weather_file_longitude -90.59 Weather station longitude from weather file used for the building energy simulation is -90.59° +in.weather_file_longitude -90.52 Weather station longitude from weather file used for the building energy simulation is -90.52° +in.weather_file_longitude -90.47 Weather station longitude from weather file used for the building energy simulation is -90.47° +in.weather_file_longitude -90.45 Weather station longitude from weather file used for the building energy simulation is -90.45° +in.weather_file_longitude -90.42 Weather station longitude from weather file used for the building energy simulation is -90.42° +in.weather_file_longitude -90.37 Weather station longitude from weather file used for the building energy simulation is -90.37° +in.weather_file_longitude -90.34 Weather station longitude from weather file used for the building energy simulation is -90.34° +in.weather_file_longitude -90.33 Weather station longitude from weather file used for the building energy simulation is -90.33° +in.weather_file_longitude -90.32 Weather station longitude from weather file used for the building energy simulation is -90.32° +in.weather_file_longitude -90.3 Weather station longitude from weather file used for the building energy simulation is -90.3° +in.weather_file_longitude -90.25 Weather station longitude from weather file used for the building energy simulation is -90.25° +in.weather_file_longitude -90.24 Weather station longitude from weather file used for the building energy simulation is -90.24° +in.weather_file_longitude -90.23 Weather station longitude from weather file used for the building energy simulation is -90.23° +in.weather_file_longitude -90.19 Weather station longitude from weather file used for the building energy simulation is -90.19° +in.weather_file_longitude -90.16 Weather station longitude from weather file used for the building energy simulation is -90.16° +in.weather_file_longitude -90.12 Weather station longitude from weather file used for the building energy simulation is -90.12° +in.weather_file_longitude -90.08 Weather station longitude from weather file used for the building energy simulation is -90.08° +in.weather_file_longitude -90.03 Weather station longitude from weather file used for the building energy simulation is -90.03° +in.weather_file_longitude -89.99 Weather station longitude from weather file used for the building energy simulation is -89.99° +in.weather_file_longitude -89.87 Weather station longitude from weather file used for the building energy simulation is -89.87° +in.weather_file_longitude -89.84 Weather station longitude from weather file used for the building energy simulation is -89.84° +in.weather_file_longitude -89.83 Weather station longitude from weather file used for the building energy simulation is -89.83° +in.weather_file_longitude -89.82 Weather station longitude from weather file used for the building energy simulation is -89.82° +in.weather_file_longitude -89.77 Weather station longitude from weather file used for the building energy simulation is -89.77° +in.weather_file_longitude -89.72 Weather station longitude from weather file used for the building energy simulation is -89.72° +in.weather_file_longitude -89.7 Weather station longitude from weather file used for the building energy simulation is -89.7° +in.weather_file_longitude -89.68 Weather station longitude from weather file used for the building energy simulation is -89.68° +in.weather_file_longitude -89.67 Weather station longitude from weather file used for the building energy simulation is -89.67° +in.weather_file_longitude -89.63 Weather station longitude from weather file used for the building energy simulation is -89.63° +in.weather_file_longitude -89.58 Weather station longitude from weather file used for the building energy simulation is -89.58° +in.weather_file_longitude -89.57 Weather station longitude from weather file used for the building energy simulation is -89.57° +in.weather_file_longitude -89.52 Weather station longitude from weather file used for the building energy simulation is -89.52° +in.weather_file_longitude -89.47 Weather station longitude from weather file used for the building energy simulation is -89.47° +in.weather_file_longitude -89.4 Weather station longitude from weather file used for the building energy simulation is -89.4° +in.weather_file_longitude -89.35 Weather station longitude from weather file used for the building energy simulation is -89.35° +in.weather_file_longitude -89.34 Weather station longitude from weather file used for the building energy simulation is -89.34° +in.weather_file_longitude -89.27 Weather station longitude from weather file used for the building energy simulation is -89.27° +in.weather_file_longitude -89.25 Weather station longitude from weather file used for the building energy simulation is -89.25° +in.weather_file_longitude -89.1 Weather station longitude from weather file used for the building energy simulation is -89.1° +in.weather_file_longitude -89.09 Weather station longitude from weather file used for the building energy simulation is -89.09° +in.weather_file_longitude -89.07 Weather station longitude from weather file used for the building energy simulation is -89.07° +in.weather_file_longitude -89.04 Weather station longitude from weather file used for the building energy simulation is -89.04° +in.weather_file_longitude -89 Weather station longitude from weather file used for the building energy simulation is -89° +in.weather_file_longitude -88.95 Weather station longitude from weather file used for the building energy simulation is -88.95° +in.weather_file_longitude -88.92 Weather station longitude from weather file used for the building energy simulation is -88.92° +in.weather_file_longitude -88.87 Weather station longitude from weather file used for the building energy simulation is -88.87° +in.weather_file_longitude -88.86 Weather station longitude from weather file used for the building energy simulation is -88.86° +in.weather_file_longitude -88.77 Weather station longitude from weather file used for the building energy simulation is -88.77° +in.weather_file_longitude -88.75 Weather station longitude from weather file used for the building energy simulation is -88.75° +in.weather_file_longitude -88.73 Weather station longitude from weather file used for the building energy simulation is -88.73° +in.weather_file_longitude -88.72 Weather station longitude from weather file used for the building energy simulation is -88.72° +in.weather_file_longitude -88.7 Weather station longitude from weather file used for the building energy simulation is -88.7° +in.weather_file_longitude -88.68 Weather station longitude from weather file used for the building energy simulation is -88.68° +in.weather_file_longitude -88.57 Weather station longitude from weather file used for the building energy simulation is -88.57° +in.weather_file_longitude -88.56 Weather station longitude from weather file used for the building energy simulation is -88.56° +in.weather_file_longitude -88.53 Weather station longitude from weather file used for the building energy simulation is -88.53° +in.weather_file_longitude -88.52 Weather station longitude from weather file used for the building energy simulation is -88.52° +in.weather_file_longitude -88.51 Weather station longitude from weather file used for the building energy simulation is -88.51° +in.weather_file_longitude -88.49 Weather station longitude from weather file used for the building energy simulation is -88.49° +in.weather_file_longitude -88.48 Weather station longitude from weather file used for the building energy simulation is -88.48° +in.weather_file_longitude -88.44 Weather station longitude from weather file used for the building energy simulation is -88.44° +in.weather_file_longitude -88.28 Weather station longitude from weather file used for the building energy simulation is -88.28° +in.weather_file_longitude -88.25 Weather station longitude from weather file used for the building energy simulation is -88.25° +in.weather_file_longitude -88.23 Weather station longitude from weather file used for the building energy simulation is -88.23° +in.weather_file_longitude -88.17 Weather station longitude from weather file used for the building energy simulation is -88.17° +in.weather_file_longitude -88.12 Weather station longitude from weather file used for the building energy simulation is -88.12° +in.weather_file_longitude -88.11 Weather station longitude from weather file used for the building energy simulation is -88.11° +in.weather_file_longitude -88.08 Weather station longitude from weather file used for the building energy simulation is -88.08° +in.weather_file_longitude -88.07 Weather station longitude from weather file used for the building energy simulation is -88.07° +in.weather_file_longitude -87.94 Weather station longitude from weather file used for the building energy simulation is -87.94° +in.weather_file_longitude -87.9 Weather station longitude from weather file used for the building energy simulation is -87.9° +in.weather_file_longitude -87.88 Weather station longitude from weather file used for the building energy simulation is -87.88° +in.weather_file_longitude -87.87 Weather station longitude from weather file used for the building energy simulation is -87.87° +in.weather_file_longitude -87.85 Weather station longitude from weather file used for the building energy simulation is -87.85° +in.weather_file_longitude -87.81 Weather station longitude from weather file used for the building energy simulation is -87.81° +in.weather_file_longitude -87.75 Weather station longitude from weather file used for the building energy simulation is -87.75° +in.weather_file_longitude -87.68 Weather station longitude from weather file used for the building energy simulation is -87.68° +in.weather_file_longitude -87.67 Weather station longitude from weather file used for the building energy simulation is -87.67° +in.weather_file_longitude -87.64 Weather station longitude from weather file used for the building energy simulation is -87.64° +in.weather_file_longitude -87.62 Weather station longitude from weather file used for the building energy simulation is -87.62° +in.weather_file_longitude -87.61 Weather station longitude from weather file used for the building energy simulation is -87.61° +in.weather_file_longitude -87.54 Weather station longitude from weather file used for the building energy simulation is -87.54° +in.weather_file_longitude -87.5 Weather station longitude from weather file used for the building energy simulation is -87.5° +in.weather_file_longitude -87.42 Weather station longitude from weather file used for the building energy simulation is -87.42° +in.weather_file_longitude -87.38 Weather station longitude from weather file used for the building energy simulation is -87.38° +in.weather_file_longitude -87.3 Weather station longitude from weather file used for the building energy simulation is -87.3° +in.weather_file_longitude -87.25 Weather station longitude from weather file used for the building energy simulation is -87.25° +in.weather_file_longitude -87.19 Weather station longitude from weather file used for the building energy simulation is -87.19° +in.weather_file_longitude -87.09 Weather station longitude from weather file used for the building energy simulation is -87.09° +in.weather_file_longitude -87.04 Weather station longitude from weather file used for the building energy simulation is -87.04° +in.weather_file_longitude -87.02 Weather station longitude from weather file used for the building energy simulation is -87.02° +in.weather_file_longitude -87.01 Weather station longitude from weather file used for the building energy simulation is -87.01° +in.weather_file_longitude -86.95 Weather station longitude from weather file used for the building energy simulation is -86.95° +in.weather_file_longitude -86.94 Weather station longitude from weather file used for the building energy simulation is -86.94° +in.weather_file_longitude -86.79 Weather station longitude from weather file used for the building energy simulation is -86.79° +in.weather_file_longitude -86.78 Weather station longitude from weather file used for the building energy simulation is -86.78° +in.weather_file_longitude -86.75 Weather station longitude from weather file used for the building energy simulation is -86.75° +in.weather_file_longitude -86.69 Weather station longitude from weather file used for the building energy simulation is -86.69° +in.weather_file_longitude -86.62 Weather station longitude from weather file used for the building energy simulation is -86.62° +in.weather_file_longitude -86.52 Weather station longitude from weather file used for the building energy simulation is -86.52° +in.weather_file_longitude -86.47 Weather station longitude from weather file used for the building energy simulation is -86.47° +in.weather_file_longitude -86.44 Weather station longitude from weather file used for the building energy simulation is -86.44° +in.weather_file_longitude -86.42 Weather station longitude from weather file used for the building energy simulation is -86.42° +in.weather_file_longitude -86.4 Weather station longitude from weather file used for the building energy simulation is -86.4° +in.weather_file_longitude -86.39 Weather station longitude from weather file used for the building energy simulation is -86.39° +in.weather_file_longitude -86.36 Weather station longitude from weather file used for the building energy simulation is -86.36° +in.weather_file_longitude -86.33 Weather station longitude from weather file used for the building energy simulation is -86.33° +in.weather_file_longitude -86.3 Weather station longitude from weather file used for the building energy simulation is -86.3° +in.weather_file_longitude -86.27 Weather station longitude from weather file used for the building energy simulation is -86.27° +in.weather_file_longitude -86.24 Weather station longitude from weather file used for the building energy simulation is -86.24° +in.weather_file_longitude -86.23 Weather station longitude from weather file used for the building energy simulation is -86.23° +in.weather_file_longitude -86.15 Weather station longitude from weather file used for the building energy simulation is -86.15° +in.weather_file_longitude -86.1 Weather station longitude from weather file used for the building energy simulation is -86.1° +in.weather_file_longitude -86.08 Weather station longitude from weather file used for the building energy simulation is -86.08° +in.weather_file_longitude -85.97 Weather station longitude from weather file used for the building energy simulation is -85.97° +in.weather_file_longitude -85.86 Weather station longitude from weather file used for the building energy simulation is -85.86° +in.weather_file_longitude -85.8 Weather station longitude from weather file used for the building energy simulation is -85.8° +in.weather_file_longitude -85.73 Weather station longitude from weather file used for the building energy simulation is -85.73° +in.weather_file_longitude -85.71 Weather station longitude from weather file used for the building energy simulation is -85.71° +in.weather_file_longitude -85.68 Weather station longitude from weather file used for the building energy simulation is -85.68° +in.weather_file_longitude -85.66 Weather station longitude from weather file used for the building energy simulation is -85.66° +in.weather_file_longitude -85.58 Weather station longitude from weather file used for the building energy simulation is -85.58° +in.weather_file_longitude -85.55 Weather station longitude from weather file used for the building energy simulation is -85.55° +in.weather_file_longitude -85.52 Weather station longitude from weather file used for the building energy simulation is -85.52° +in.weather_file_longitude -85.5 Weather station longitude from weather file used for the building energy simulation is -85.5° +in.weather_file_longitude -85.45 Weather station longitude from weather file used for the building energy simulation is -85.45° +in.weather_file_longitude -85.44 Weather station longitude from weather file used for the building energy simulation is -85.44° +in.weather_file_longitude -85.42 Weather station longitude from weather file used for the building energy simulation is -85.42° +in.weather_file_longitude -85.39 Weather station longitude from weather file used for the building energy simulation is -85.39° +in.weather_file_longitude -85.27 Weather station longitude from weather file used for the building energy simulation is -85.27° +in.weather_file_longitude -85.25 Weather station longitude from weather file used for the building energy simulation is -85.25° +in.weather_file_longitude -85.21 Weather station longitude from weather file used for the building energy simulation is -85.21° +in.weather_file_longitude -85.2 Weather station longitude from weather file used for the building energy simulation is -85.2° +in.weather_file_longitude -85.19 Weather station longitude from weather file used for the building energy simulation is -85.19° +in.weather_file_longitude -85.18 Weather station longitude from weather file used for the building energy simulation is -85.18° +in.weather_file_longitude -85.16 Weather station longitude from weather file used for the building energy simulation is -85.16° +in.weather_file_longitude -85.09 Weather station longitude from weather file used for the building energy simulation is -85.09° +in.weather_file_longitude -85.05 Weather station longitude from weather file used for the building energy simulation is -85.05° +in.weather_file_longitude -85.03 Weather station longitude from weather file used for the building energy simulation is -85.03° +in.weather_file_longitude -85 Weather station longitude from weather file used for the building energy simulation is -85° +in.weather_file_longitude -84.94 Weather station longitude from weather file used for the building energy simulation is -84.94° +in.weather_file_longitude -84.9 Weather station longitude from weather file used for the building energy simulation is -84.9° +in.weather_file_longitude -84.87 Weather station longitude from weather file used for the building energy simulation is -84.87° +in.weather_file_longitude -84.85 Weather station longitude from weather file used for the building energy simulation is -84.85° +in.weather_file_longitude -84.8 Weather station longitude from weather file used for the building energy simulation is -84.8° +in.weather_file_longitude -84.77 Weather station longitude from weather file used for the building energy simulation is -84.77° +in.weather_file_longitude -84.73 Weather station longitude from weather file used for the building energy simulation is -84.73° +in.weather_file_longitude -84.7 Weather station longitude from weather file used for the building energy simulation is -84.7° +in.weather_file_longitude -84.69 Weather station longitude from weather file used for the building energy simulation is -84.69° +in.weather_file_longitude -84.67 Weather station longitude from weather file used for the building energy simulation is -84.67° +in.weather_file_longitude -84.64 Weather station longitude from weather file used for the building energy simulation is -84.64° +in.weather_file_longitude -84.61 Weather station longitude from weather file used for the building energy simulation is -84.61° +in.weather_file_longitude -84.6 Weather station longitude from weather file used for the building energy simulation is -84.6° +in.weather_file_longitude -84.58 Weather station longitude from weather file used for the building energy simulation is -84.58° +in.weather_file_longitude -84.57 Weather station longitude from weather file used for the building energy simulation is -84.57° +in.weather_file_longitude -84.53 Weather station longitude from weather file used for the building energy simulation is -84.53° +in.weather_file_longitude -84.52 Weather station longitude from weather file used for the building energy simulation is -84.52° +in.weather_file_longitude -84.46 Weather station longitude from weather file used for the building energy simulation is -84.46° +in.weather_file_longitude -84.43 Weather station longitude from weather file used for the building energy simulation is -84.43° +in.weather_file_longitude -84.42 Weather station longitude from weather file used for the building energy simulation is -84.42° +in.weather_file_longitude -84.37 Weather station longitude from weather file used for the building energy simulation is -84.37° +in.weather_file_longitude -84.35 Weather station longitude from weather file used for the building energy simulation is -84.35° +in.weather_file_longitude -84.3 Weather station longitude from weather file used for the building energy simulation is -84.3° +in.weather_file_longitude -84.23 Weather station longitude from weather file used for the building energy simulation is -84.23° +in.weather_file_longitude -84.22 Weather station longitude from weather file used for the building energy simulation is -84.22° +in.weather_file_longitude -84.19 Weather station longitude from weather file used for the building energy simulation is -84.19° +in.weather_file_longitude -84.08 Weather station longitude from weather file used for the building energy simulation is -84.08° +in.weather_file_longitude -84.05 Weather station longitude from weather file used for the building energy simulation is -84.05° +in.weather_file_longitude -84.03 Weather station longitude from weather file used for the building energy simulation is -84.03° +in.weather_file_longitude -83.99 Weather station longitude from weather file used for the building energy simulation is -83.99° +in.weather_file_longitude -83.98 Weather station longitude from weather file used for the building energy simulation is -83.98° +in.weather_file_longitude -83.83 Weather station longitude from weather file used for the building energy simulation is -83.83° +in.weather_file_longitude -83.82 Weather station longitude from weather file used for the building energy simulation is -83.82° +in.weather_file_longitude -83.8 Weather station longitude from weather file used for the building energy simulation is -83.8° +in.weather_file_longitude -83.75 Weather station longitude from weather file used for the building energy simulation is -83.75° +in.weather_file_longitude -83.67 Weather station longitude from weather file used for the building energy simulation is -83.67° +in.weather_file_longitude -83.65 Weather station longitude from weather file used for the building energy simulation is -83.65° +in.weather_file_longitude -83.6 Weather station longitude from weather file used for the building energy simulation is -83.6° +in.weather_file_longitude -83.58 Weather station longitude from weather file used for the building energy simulation is -83.58° +in.weather_file_longitude -83.57 Weather station longitude from weather file used for the building energy simulation is -83.57° +in.weather_file_longitude -83.48 Weather station longitude from weather file used for the building energy simulation is -83.48° +in.weather_file_longitude -83.43 Weather station longitude from weather file used for the building energy simulation is -83.43° +in.weather_file_longitude -83.42 Weather station longitude from weather file used for the building energy simulation is -83.42° +in.weather_file_longitude -83.37 Weather station longitude from weather file used for the building energy simulation is -83.37° +in.weather_file_longitude -83.35 Weather station longitude from weather file used for the building energy simulation is -83.35° +in.weather_file_longitude -83.33 Weather station longitude from weather file used for the building energy simulation is -83.33° +in.weather_file_longitude -83.31 Weather station longitude from weather file used for the building energy simulation is -83.31° +in.weather_file_longitude -83.28 Weather station longitude from weather file used for the building energy simulation is -83.28° +in.weather_file_longitude -83.19 Weather station longitude from weather file used for the building energy simulation is -83.19° +in.weather_file_longitude -83.11 Weather station longitude from weather file used for the building energy simulation is -83.11° +in.weather_file_longitude -83.08 Weather station longitude from weather file used for the building energy simulation is -83.08° +in.weather_file_longitude -83.06 Weather station longitude from weather file used for the building energy simulation is -83.06° +in.weather_file_longitude -82.98 Weather station longitude from weather file used for the building energy simulation is -82.98° +in.weather_file_longitude -82.92 Weather station longitude from weather file used for the building energy simulation is -82.92° +in.weather_file_longitude -82.89 Weather station longitude from weather file used for the building energy simulation is -82.89° +in.weather_file_longitude -82.88 Weather station longitude from weather file used for the building energy simulation is -82.88° +in.weather_file_longitude -82.83 Weather station longitude from weather file used for the building energy simulation is -82.83° +in.weather_file_longitude -82.71 Weather station longitude from weather file used for the building energy simulation is -82.71° +in.weather_file_longitude -82.69 Weather station longitude from weather file used for the building energy simulation is -82.69° +in.weather_file_longitude -82.66 Weather station longitude from weather file used for the building energy simulation is -82.66° +in.weather_file_longitude -82.56 Weather station longitude from weather file used for the building energy simulation is -82.56° +in.weather_file_longitude -82.54 Weather station longitude from weather file used for the building energy simulation is -82.54° +in.weather_file_longitude -82.52 Weather station longitude from weather file used for the building energy simulation is -82.52° +in.weather_file_longitude -82.51 Weather station longitude from weather file used for the building energy simulation is -82.51° +in.weather_file_longitude -82.45 Weather station longitude from weather file used for the building energy simulation is -82.45° +in.weather_file_longitude -82.4 Weather station longitude from weather file used for the building energy simulation is -82.4° +in.weather_file_longitude -82.27 Weather station longitude from weather file used for the building energy simulation is -82.27° +in.weather_file_longitude -82.22 Weather station longitude from weather file used for the building energy simulation is -82.22° +in.weather_file_longitude -82.18 Weather station longitude from weather file used for the building energy simulation is -82.18° +in.weather_file_longitude -82.16 Weather station longitude from weather file used for the building energy simulation is -82.16° +in.weather_file_longitude -82.04 Weather station longitude from weather file used for the building energy simulation is -82.04° +in.weather_file_longitude -82.03 Weather station longitude from weather file used for the building energy simulation is -82.03° +in.weather_file_longitude -81.99 Weather station longitude from weather file used for the building energy simulation is -81.99° +in.weather_file_longitude -81.97 Weather station longitude from weather file used for the building energy simulation is -81.97° +in.weather_file_longitude -81.93 Weather station longitude from weather file used for the building energy simulation is -81.93° +in.weather_file_longitude -81.89 Weather station longitude from weather file used for the building energy simulation is -81.89° +in.weather_file_longitude -81.87 Weather station longitude from weather file used for the building energy simulation is -81.87° +in.weather_file_longitude -81.86 Weather station longitude from weather file used for the building energy simulation is -81.86° +in.weather_file_longitude -81.85 Weather station longitude from weather file used for the building energy simulation is -81.85° +in.weather_file_longitude -81.81 Weather station longitude from weather file used for the building energy simulation is -81.81° +in.weather_file_longitude -81.78 Weather station longitude from weather file used for the building energy simulation is -81.78° +in.weather_file_longitude -81.76 Weather station longitude from weather file used for the building energy simulation is -81.76° +in.weather_file_longitude -81.69 Weather station longitude from weather file used for the building energy simulation is -81.69° +in.weather_file_longitude -81.68 Weather station longitude from weather file used for the building energy simulation is -81.68° +in.weather_file_longitude -81.59 Weather station longitude from weather file used for the building energy simulation is -81.59° +in.weather_file_longitude -81.45 Weather station longitude from weather file used for the building energy simulation is -81.45° +in.weather_file_longitude -81.44 Weather station longitude from weather file used for the building energy simulation is -81.44° +in.weather_file_longitude -81.42 Weather station longitude from weather file used for the building energy simulation is -81.42° +in.weather_file_longitude -81.39 Weather station longitude from weather file used for the building energy simulation is -81.39° +in.weather_file_longitude -81.34 Weather station longitude from weather file used for the building energy simulation is -81.34° +in.weather_file_longitude -81.33 Weather station longitude from weather file used for the building energy simulation is -81.33° +in.weather_file_longitude -81.27 Weather station longitude from weather file used for the building energy simulation is -81.27° +in.weather_file_longitude -81.24 Weather station longitude from weather file used for the building energy simulation is -81.24° +in.weather_file_longitude -81.21 Weather station longitude from weather file used for the building energy simulation is -81.21° +in.weather_file_longitude -81.2 Weather station longitude from weather file used for the building energy simulation is -81.2° +in.weather_file_longitude -81.16 Weather station longitude from weather file used for the building energy simulation is -81.16° +in.weather_file_longitude -81.15 Weather station longitude from weather file used for the building energy simulation is -81.15° +in.weather_file_longitude -81.13 Weather station longitude from weather file used for the building energy simulation is -81.13° +in.weather_file_longitude -81.12 Weather station longitude from weather file used for the building energy simulation is -81.12° +in.weather_file_longitude -81.06 Weather station longitude from weather file used for the building energy simulation is -81.06° +in.weather_file_longitude -81.05 Weather station longitude from weather file used for the building energy simulation is -81.05° +in.weather_file_longitude -81 Weather station longitude from weather file used for the building energy simulation is -81° +in.weather_file_longitude -80.94 Weather station longitude from weather file used for the building energy simulation is -80.94° +in.weather_file_longitude -80.86 Weather station longitude from weather file used for the building energy simulation is -80.86° +in.weather_file_longitude -80.82 Weather station longitude from weather file used for the building energy simulation is -80.82° +in.weather_file_longitude -80.72 Weather station longitude from weather file used for the building energy simulation is -80.72° +in.weather_file_longitude -80.7 Weather station longitude from weather file used for the building energy simulation is -80.7° +in.weather_file_longitude -80.67 Weather station longitude from weather file used for the building energy simulation is -80.67° +in.weather_file_longitude -80.65 Weather station longitude from weather file used for the building energy simulation is -80.65° +in.weather_file_longitude -80.62 Weather station longitude from weather file used for the building energy simulation is -80.62° +in.weather_file_longitude -80.48 Weather station longitude from weather file used for the building energy simulation is -80.48° +in.weather_file_longitude -80.42 Weather station longitude from weather file used for the building energy simulation is -80.42° +in.weather_file_longitude -80.4 Weather station longitude from weather file used for the building energy simulation is -80.4° +in.weather_file_longitude -80.38 Weather station longitude from weather file used for the building energy simulation is -80.38° +in.weather_file_longitude -80.3 Weather station longitude from weather file used for the building energy simulation is -80.3° +in.weather_file_longitude -80.28 Weather station longitude from weather file used for the building energy simulation is -80.28° +in.weather_file_longitude -80.23 Weather station longitude from weather file used for the building energy simulation is -80.23° +in.weather_file_longitude -80.22 Weather station longitude from weather file used for the building energy simulation is -80.22° +in.weather_file_longitude -80.18 Weather station longitude from weather file used for the building energy simulation is -80.18° +in.weather_file_longitude -80.17 Weather station longitude from weather file used for the building energy simulation is -80.17° +in.weather_file_longitude -80.1 Weather station longitude from weather file used for the building energy simulation is -80.1° +in.weather_file_longitude -80.04 Weather station longitude from weather file used for the building energy simulation is -80.04° +in.weather_file_longitude -80.02 Weather station longitude from weather file used for the building energy simulation is -80.02° +in.weather_file_longitude -79.97 Weather station longitude from weather file used for the building energy simulation is -79.97° +in.weather_file_longitude -79.94 Weather station longitude from weather file used for the building energy simulation is -79.94° +in.weather_file_longitude -79.92 Weather station longitude from weather file used for the building energy simulation is -79.92° +in.weather_file_longitude -79.88 Weather station longitude from weather file used for the building energy simulation is -79.88° +in.weather_file_longitude -79.85 Weather station longitude from weather file used for the building energy simulation is -79.85° +in.weather_file_longitude -79.83 Weather station longitude from weather file used for the building energy simulation is -79.83° +in.weather_file_longitude -79.73 Weather station longitude from weather file used for the building energy simulation is -79.73° +in.weather_file_longitude -79.48 Weather station longitude from weather file used for the building energy simulation is -79.48° +in.weather_file_longitude -79.38 Weather station longitude from weather file used for the building energy simulation is -79.38° +in.weather_file_longitude -79.37 Weather station longitude from weather file used for the building energy simulation is -79.37° +in.weather_file_longitude -79.35 Weather station longitude from weather file used for the building energy simulation is -79.35° +in.weather_file_longitude -79.34 Weather station longitude from weather file used for the building energy simulation is -79.34° +in.weather_file_longitude -79.21 Weather station longitude from weather file used for the building energy simulation is -79.21° +in.weather_file_longitude -79.1 Weather station longitude from weather file used for the building energy simulation is -79.1° +in.weather_file_longitude -79.03 Weather station longitude from weather file used for the building energy simulation is -79.03° +in.weather_file_longitude -78.95 Weather station longitude from weather file used for the building energy simulation is -78.95° +in.weather_file_longitude -78.94 Weather station longitude from weather file used for the building energy simulation is -78.94° +in.weather_file_longitude -78.92 Weather station longitude from weather file used for the building energy simulation is -78.92° +in.weather_file_longitude -78.9 Weather station longitude from weather file used for the building energy simulation is -78.9° +in.weather_file_longitude -78.88 Weather station longitude from weather file used for the building energy simulation is -78.88° +in.weather_file_longitude -78.83 Weather station longitude from weather file used for the building energy simulation is -78.83° +in.weather_file_longitude -78.79 Weather station longitude from weather file used for the building energy simulation is -78.79° +in.weather_file_longitude -78.74 Weather station longitude from weather file used for the building energy simulation is -78.74° +in.weather_file_longitude -78.73 Weather station longitude from weather file used for the building energy simulation is -78.73° +in.weather_file_longitude -78.64 Weather station longitude from weather file used for the building energy simulation is -78.64° +in.weather_file_longitude -78.45 Weather station longitude from weather file used for the building energy simulation is -78.45° +in.weather_file_longitude -78.43 Weather station longitude from weather file used for the building energy simulation is -78.43° +in.weather_file_longitude -78.41 Weather station longitude from weather file used for the building energy simulation is -78.41° +in.weather_file_longitude -78.32 Weather station longitude from weather file used for the building energy simulation is -78.32° +in.weather_file_longitude -78.13 Weather station longitude from weather file used for the building energy simulation is -78.13° +in.weather_file_longitude -78.05 Weather station longitude from weather file used for the building energy simulation is -78.05° +in.weather_file_longitude -77.99 Weather station longitude from weather file used for the building energy simulation is -77.99° +in.weather_file_longitude -77.98 Weather station longitude from weather file used for the building energy simulation is -77.98° +in.weather_file_longitude -77.97 Weather station longitude from weather file used for the building energy simulation is -77.97° +in.weather_file_longitude -77.96 Weather station longitude from weather file used for the building energy simulation is -77.96° +in.weather_file_longitude -77.9 Weather station longitude from weather file used for the building energy simulation is -77.9° +in.weather_file_longitude -77.89 Weather station longitude from weather file used for the building energy simulation is -77.89° +in.weather_file_longitude -77.85 Weather station longitude from weather file used for the building energy simulation is -77.85° +in.weather_file_longitude -77.84 Weather station longitude from weather file used for the building energy simulation is -77.84° +in.weather_file_longitude -77.73 Weather station longitude from weather file used for the building energy simulation is -77.73° +in.weather_file_longitude -77.71 Weather station longitude from weather file used for the building energy simulation is -77.71° +in.weather_file_longitude -77.68 Weather station longitude from weather file used for the building energy simulation is -77.68° +in.weather_file_longitude -77.61 Weather station longitude from weather file used for the building energy simulation is -77.61° +in.weather_file_longitude -77.58 Weather station longitude from weather file used for the building energy simulation is -77.58° +in.weather_file_longitude -77.55 Weather station longitude from weather file used for the building energy simulation is -77.55° +in.weather_file_longitude -77.5 Weather station longitude from weather file used for the building energy simulation is -77.5° +in.weather_file_longitude -77.44 Weather station longitude from weather file used for the building energy simulation is -77.44° +in.weather_file_longitude -77.43 Weather station longitude from weather file used for the building energy simulation is -77.43° +in.weather_file_longitude -77.38 Weather station longitude from weather file used for the building energy simulation is -77.38° +in.weather_file_longitude -77.32 Weather station longitude from weather file used for the building energy simulation is -77.32° +in.weather_file_longitude -77.3 Weather station longitude from weather file used for the building energy simulation is -77.3° +in.weather_file_longitude -77.06 Weather station longitude from weather file used for the building energy simulation is -77.06° +in.weather_file_longitude -77.05 Weather station longitude from weather file used for the building energy simulation is -77.05° +in.weather_file_longitude -77.03 Weather station longitude from weather file used for the building energy simulation is -77.03° +in.weather_file_longitude -77.01 Weather station longitude from weather file used for the building energy simulation is -77.01° +in.weather_file_longitude -76.92 Weather station longitude from weather file used for the building energy simulation is -76.92° +in.weather_file_longitude -76.9 Weather station longitude from weather file used for the building energy simulation is -76.9° +in.weather_file_longitude -76.89 Weather station longitude from weather file used for the building energy simulation is -76.89° +in.weather_file_longitude -76.88 Weather station longitude from weather file used for the building energy simulation is -76.88° +in.weather_file_longitude -76.87 Weather station longitude from weather file used for the building energy simulation is -76.87° +in.weather_file_longitude -76.85 Weather station longitude from weather file used for the building energy simulation is -76.85° +in.weather_file_longitude -76.76 Weather station longitude from weather file used for the building energy simulation is -76.76° +in.weather_file_longitude -76.68 Weather station longitude from weather file used for the building energy simulation is -76.68° +in.weather_file_longitude -76.66 Weather station longitude from weather file used for the building energy simulation is -76.66° +in.weather_file_longitude -76.6 Weather station longitude from weather file used for the building energy simulation is -76.6° +in.weather_file_longitude -76.57 Weather station longitude from weather file used for the building energy simulation is -76.57° +in.weather_file_longitude -76.49 Weather station longitude from weather file used for the building energy simulation is -76.49° +in.weather_file_longitude -76.43 Weather station longitude from weather file used for the building energy simulation is -76.43° +in.weather_file_longitude -76.4 Weather station longitude from weather file used for the building energy simulation is -76.4° +in.weather_file_longitude -76.39 Weather station longitude from weather file used for the building energy simulation is -76.39° +in.weather_file_longitude -76.35 Weather station longitude from weather file used for the building energy simulation is -76.35° +in.weather_file_longitude -76.29 Weather station longitude from weather file used for the building energy simulation is -76.29° +in.weather_file_longitude -76.28 Weather station longitude from weather file used for the building energy simulation is -76.28° +in.weather_file_longitude -76.19 Weather station longitude from weather file used for the building energy simulation is -76.19° +in.weather_file_longitude -76.18 Weather station longitude from weather file used for the building energy simulation is -76.18° +in.weather_file_longitude -76.1 Weather station longitude from weather file used for the building energy simulation is -76.1° +in.weather_file_longitude -76.02 Weather station longitude from weather file used for the building energy simulation is -76.02° +in.weather_file_longitude -75.98 Weather station longitude from weather file used for the building energy simulation is -75.98° +in.weather_file_longitude -75.96 Weather station longitude from weather file used for the building energy simulation is -75.96° +in.weather_file_longitude -75.75 Weather station longitude from weather file used for the building energy simulation is -75.75° +in.weather_file_longitude -75.73 Weather station longitude from weather file used for the building energy simulation is -75.73° +in.weather_file_longitude -75.72 Weather station longitude from weather file used for the building energy simulation is -75.72° +in.weather_file_longitude -75.7 Weather station longitude from weather file used for the building energy simulation is -75.7° +in.weather_file_longitude -75.6 Weather station longitude from weather file used for the building energy simulation is -75.6° +in.weather_file_longitude -75.56 Weather station longitude from weather file used for the building energy simulation is -75.56° +in.weather_file_longitude -75.55 Weather station longitude from weather file used for the building energy simulation is -75.55° +in.weather_file_longitude -75.51 Weather station longitude from weather file used for the building energy simulation is -75.51° +in.weather_file_longitude -75.5 Weather station longitude from weather file used for the building energy simulation is -75.5° +in.weather_file_longitude -75.47 Weather station longitude from weather file used for the building energy simulation is -75.47° +in.weather_file_longitude -75.45 Weather station longitude from weather file used for the building energy simulation is -75.45° +in.weather_file_longitude -75.41 Weather station longitude from weather file used for the building energy simulation is -75.41° +in.weather_file_longitude -75.38 Weather station longitude from weather file used for the building energy simulation is -75.38° +in.weather_file_longitude -75.36 Weather station longitude from weather file used for the building energy simulation is -75.36° +in.weather_file_longitude -75.23 Weather station longitude from weather file used for the building energy simulation is -75.23° +in.weather_file_longitude -75.15 Weather station longitude from weather file used for the building energy simulation is -75.15° +in.weather_file_longitude -75.12 Weather station longitude from weather file used for the building energy simulation is -75.12° +in.weather_file_longitude -75.08 Weather station longitude from weather file used for the building energy simulation is -75.08° +in.weather_file_longitude -75.01 Weather station longitude from weather file used for the building energy simulation is -75.01° +in.weather_file_longitude -74.9 Weather station longitude from weather file used for the building energy simulation is -74.9° +in.weather_file_longitude -74.85 Weather station longitude from weather file used for the building energy simulation is -74.85° +in.weather_file_longitude -74.84 Weather station longitude from weather file used for the building energy simulation is -74.84° +in.weather_file_longitude -74.81 Weather station longitude from weather file used for the building energy simulation is -74.81° +in.weather_file_longitude -74.78 Weather station longitude from weather file used for the building energy simulation is -74.78° +in.weather_file_longitude -74.58 Weather station longitude from weather file used for the building energy simulation is -74.58° +in.weather_file_longitude -74.28 Weather station longitude from weather file used for the building energy simulation is -74.28° +in.weather_file_longitude -74.27 Weather station longitude from weather file used for the building energy simulation is -74.27° +in.weather_file_longitude -74.21 Weather station longitude from weather file used for the building energy simulation is -74.21° +in.weather_file_longitude -74.17 Weather station longitude from weather file used for the building energy simulation is -74.17° +in.weather_file_longitude -74.12 Weather station longitude from weather file used for the building energy simulation is -74.12° +in.weather_file_longitude -74.06 Weather station longitude from weather file used for the building energy simulation is -74.06° +in.weather_file_longitude -73.97 Weather station longitude from weather file used for the building energy simulation is -73.97° +in.weather_file_longitude -73.88 Weather station longitude from weather file used for the building energy simulation is -73.88° +in.weather_file_longitude -73.8 Weather station longitude from weather file used for the building energy simulation is -73.8° +in.weather_file_longitude -73.71 Weather station longitude from weather file used for the building energy simulation is -73.71° +in.weather_file_longitude -73.61 Weather station longitude from weather file used for the building energy simulation is -73.61° +in.weather_file_longitude -73.48 Weather station longitude from weather file used for the building energy simulation is -73.48° +in.weather_file_longitude -73.47 Weather station longitude from weather file used for the building energy simulation is -73.47° +in.weather_file_longitude -73.42 Weather station longitude from weather file used for the building energy simulation is -73.42° +in.weather_file_longitude -73.25 Weather station longitude from weather file used for the building energy simulation is -73.25° +in.weather_file_longitude -73.17 Weather station longitude from weather file used for the building energy simulation is -73.17° +in.weather_file_longitude -73.15 Weather station longitude from weather file used for the building energy simulation is -73.15° +in.weather_file_longitude -73.13 Weather station longitude from weather file used for the building energy simulation is -73.13° +in.weather_file_longitude -73.1 Weather station longitude from weather file used for the building energy simulation is -73.1° +in.weather_file_longitude -72.94 Weather station longitude from weather file used for the building energy simulation is -72.94° +in.weather_file_longitude -72.83 Weather station longitude from weather file used for the building energy simulation is -72.83° +in.weather_file_longitude -72.65 Weather station longitude from weather file used for the building energy simulation is -72.65° +in.weather_file_longitude -72.61 Weather station longitude from weather file used for the building energy simulation is -72.61° +in.weather_file_longitude -72.58 Weather station longitude from weather file used for the building energy simulation is -72.58° +in.weather_file_longitude -72.53 Weather station longitude from weather file used for the building energy simulation is -72.53° +in.weather_file_longitude -72.52 Weather station longitude from weather file used for the building energy simulation is -72.52° +in.weather_file_longitude -72.31 Weather station longitude from weather file used for the building energy simulation is -72.31° +in.weather_file_longitude -72.28 Weather station longitude from weather file used for the building energy simulation is -72.28° +in.weather_file_longitude -72.18 Weather station longitude from weather file used for the building energy simulation is -72.18° +in.weather_file_longitude -71.88 Weather station longitude from weather file used for the building energy simulation is -71.88° +in.weather_file_longitude -71.58 Weather station longitude from weather file used for the building energy simulation is -71.58° +in.weather_file_longitude -71.54 Weather station longitude from weather file used for the building energy simulation is -71.54° +in.weather_file_longitude -71.5 Weather station longitude from weather file used for the building energy simulation is -71.5° +in.weather_file_longitude -71.48 Weather station longitude from weather file used for the building energy simulation is -71.48° +in.weather_file_longitude -71.44 Weather station longitude from weather file used for the building energy simulation is -71.44° +in.weather_file_longitude -71.43 Weather station longitude from weather file used for the building energy simulation is -71.43° +in.weather_file_longitude -71.42 Weather station longitude from weather file used for the building energy simulation is -71.42° +in.weather_file_longitude -71.29 Weather station longitude from weather file used for the building energy simulation is -71.29° +in.weather_file_longitude -71.28 Weather station longitude from weather file used for the building energy simulation is -71.28° +in.weather_file_longitude -71.18 Weather station longitude from weather file used for the building energy simulation is -71.18° +in.weather_file_longitude -71.17 Weather station longitude from weather file used for the building energy simulation is -71.17° +in.weather_file_longitude -71.02 Weather station longitude from weather file used for the building energy simulation is -71.02° +in.weather_file_longitude -71.01 Weather station longitude from weather file used for the building energy simulation is -71.01° +in.weather_file_longitude -70.95 Weather station longitude from weather file used for the building energy simulation is -70.95° +in.weather_file_longitude -70.92 Weather station longitude from weather file used for the building energy simulation is -70.92° +in.weather_file_longitude -70.73 Weather station longitude from weather file used for the building energy simulation is -70.73° +in.weather_file_longitude -70.7 Weather station longitude from weather file used for the building energy simulation is -70.7° +in.weather_file_longitude -70.62 Weather station longitude from weather file used for the building energy simulation is -70.62° +in.weather_file_longitude -70.3 Weather station longitude from weather file used for the building energy simulation is -70.3° +in.weather_file_longitude -70.28 Weather station longitude from weather file used for the building energy simulation is -70.28° +in.weather_file_longitude -70.06 Weather station longitude from weather file used for the building energy simulation is -70.06° +in.weather_file_longitude -69.8 Weather station longitude from weather file used for the building energy simulation is -69.8° +in.weather_file_longitude -69.71 Weather station longitude from weather file used for the building energy simulation is -69.71° +in.weather_file_longitude -69.67 Weather station longitude from weather file used for the building energy simulation is -69.67° +in.weather_file_longitude -69.58 Weather station longitude from weather file used for the building energy simulation is -69.58° +in.weather_file_longitude -68.87 Weather station longitude from weather file used for the building energy simulation is -68.87° +in.weather_file_longitude -68.82 Weather station longitude from weather file used for the building energy simulation is -68.82° +in.weather_file_longitude -68.37 Weather station longitude from weather file used for the building energy simulation is -68.37° +in.weather_file_longitude -68.03 Weather station longitude from weather file used for the building energy simulation is -68.03° +in.window_areas F12 B12 L12 R12 Window to wall ratio of 0.12 for all walls +in.window_areas F15 B15 L15 R15 Window to wall ratio of 0.15 for all walls +in.window_areas F18 B18 L18 R18 Window to wall ratio of 0.18 for all walls +in.window_areas F30 B30 L30 R30 Window to wall ratio of 0.30 for all walls +in.window_areas F6 B6 L6 R6 Window to wall ratio of 0.06 for all walls +in.window_areas F9 B9 L9 R9 Window to wall ratio of 0.09 for all walls +in.windows "Double, Clear, Metal, Air" "Double-pane, metal frame, air-filled windows" +in.windows "Double, Clear, Metal, Air, Exterior Clear Storm" "Double-pane, metal frame, air-filled windows with storm windows" +in.windows "Double, Clear, Non-metal, Air" "Double-pane, non-metal frame, air-filled windows" +in.windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" "Double-pane, non-metal frame, air-filled windows with storm windows" +in.windows "Double, Low-E, Non-metal, Air, M-Gain" "Double-pane, low-E glass, non-metal frame, medium solar gain, air-filled windows" +in.windows "Single, Clear, Metal" "Single-pane, metal frame windows" +in.windows "Single, Clear, Metal, Exterior Clear Storm" "Single-pane, metal frame windows with storm windows" +in.windows "Single, Clear, Non-metal" "Single-pane, non-metal frame windows" +in.windows "Single, Clear, Non-metal, Exterior Clear Storm" "Single-pane, non-metal frame windows with storm windows" +in.windows "Triple, Low-E, Non-metal, Air, L-Gain" "Triple-pane, low-E glass, non-metal frame, low solar gain, air-filled windows" +upgrade 0 The upgrade number is 0 +upgrade 1 The upgrade number is 1 +upgrade 2 The upgrade number is 2 +upgrade 3 The upgrade number is 3 +upgrade 4 The upgrade number is 4 +upgrade 5 The upgrade number is 5 +upgrade 6 The upgrade number is 6 +upgrade 7 The upgrade number is 7 +upgrade 8 The upgrade number is 8 +upgrade 9 The upgrade number is 9 +upgrade 10 The upgrade number is 10 +upgrade 11 The upgrade number is 11 +upgrade 12 The upgrade number is 12 +upgrade 13 The upgrade number is 13 +upgrade 14 The upgrade number is 14 +upgrade 15 The upgrade number is 15 +upgrade 16 The upgrade number is 16 +upgrade 17 The upgrade number is 17 +upgrade 18 The upgrade number is 18 +upgrade 19 The upgrade number is 19 +upgrade 20 The upgrade number is 20 +upgrade 21 The upgrade number is 21 +upgrade 22 The upgrade number is 22 +upgrade 23 The upgrade number is 23 +upgrade 24 The upgrade number is 24 +upgrade 25 The upgrade number is 25 +upgrade 26 The upgrade number is 26 +upgrade 27 The upgrade number is 27 +upgrade 28 The upgrade number is 28 +upgrade.demand_flexibility_electric_vehicle Enabled Demand flexibility is applied to electric vehicle in the model +upgrade.demand_flexibility_electric_vehicle None Demand flexibility is not applied to electric vehicle in the model +upgrade.demand_flexibility_hvac None Demand flexibility is not applied to the HVAC system in the model +upgrade.demand_flexibility_hvac "On-peak Load Shedding, 2F Offset" Demand flexibility is applied to the HVAC system in the model with a 4F offset during on-peak hours +upgrade.demand_flexibility_hvac "On-peak Load Shedding, 4F Offset" Demand flexibility is applied to the HVAC system in the model with a 2F offset during on-peak hours +upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 2F preheating or precooling starting 1 hour before on-peak hours +upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 2F preheating or precooling starting 4 hours before on-peak hours +upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 4F preheating or precooling starting 4 hours before on-peak hours +upgrade.demand_flexibility_random_shift 30 minutes The random shift applied for demand flexibility in the model is 30 minutes +upgrade.demand_flexibility_random_shift None No random shift +upgrade.duct_leakage_and_insulation "5% Leakage to Outside, R-6" "Duct leakage and insulation is upgraded to 5% Leakage to Outside, R-6" +upgrade.duct_leakage_and_insulation "5% Leakage to Outside, R-8" "Duct leakage and insulation is upgraded to 5% Leakage to Outside, R-8" +upgrade.duct_leakage_and_insulation None No duct leakage and insulation upgrade +upgrade.electric_vehicle_charger Level 1 charger The dwelling unit installs a Level 1 electric vehicle charger in the upgrade +upgrade.electric_vehicle_charger Level 2 charger The dwelling unit installs a Level 2 electric vehicle charger in the upgrade +upgrade.electric_vehicle_charger None No electric vehicle charger +upgrade.electric_vehicle_efficiency_increase 15% The efficiency of the electric vehicle is increased by 15% in the upgrade +upgrade.electric_vehicle_efficiency_increase None No increase of the efficiency of the electric vehicle +upgrade.electric_vehicle_ownership None No electric vehicle +upgrade.electric_vehicle_ownership Yes The dwelling unit has one electric vehicle in the upgrade +upgrade.heating_fuel Natural Gas Heating fuel is changed to natural gas in the upgrade +upgrade.heating_fuel None No change on heating fuel +upgrade.hvac_cooling_efficiency "AC, SEER 15" "Cooling efficiency is changed to AC, SEER 15 in the upgrade" +upgrade.hvac_cooling_efficiency "AC, SEER2 13.4" "Cooling efficiency is changed to AC, SEER2 13.4 in the upgrade" +upgrade.hvac_cooling_efficiency "AC, SEER2 14.3" "Cooling efficiency is changed to AC, SEER2 14.3 in the upgrade" +upgrade.hvac_cooling_efficiency Ducted Heat Pump Cooling efficiency is changed to Ducted Heat Pump in the upgrade +upgrade.hvac_cooling_efficiency None No change on cooling efficiency +upgrade.hvac_cooling_efficiency "Room AC, EER 12.0" "Cooling efficiency is changed to Room AC, EER 12.0 in the upgrade" +upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% conditioned for cooling in the upgrade +upgrade.hvac_cooling_partial_space_conditioning None No change on cooling partial space conditioning +upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted HVAC system upgraded to Cold Climate Heat Pump Ducted +upgrade.hvac_detailed_performance_data None No change on HVAC system +upgrade.hvac_heating_efficiency "ASHP, SEER2 14.3, 7.5 HSPF2" "Heating efficiency is upgraded to ASHP, SEER2 14.3, 7.5 HSPF2" +upgrade.hvac_heating_efficiency "ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" "Heating efficiency is upgraded to ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" +upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" +upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover" +upgrade.hvac_heating_efficiency "Electric Baseboard, 100% Efficiency" "Heating efficiency is upgraded to Electric Baseboard, 100% Efficiency" +upgrade.hvac_heating_efficiency "Electric Boiler, 100% AFUE" "Heating efficiency is upgraded to Electric Boiler, 100% AFUE" +upgrade.hvac_heating_efficiency "Electric Furnace, 100% AFUE" "Heating efficiency is upgraded to Electric Furnace, 100% AFUE" +upgrade.hvac_heating_efficiency "Electric Wall Furnace, 100% AFUE" "Heating efficiency is upgraded to Electric Wall Furnace, 100% AFUE" +upgrade.hvac_heating_efficiency "Fuel Boiler, 80% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 80% AFUE" +upgrade.hvac_heating_efficiency "Fuel Boiler, 83% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 83% AFUE" +upgrade.hvac_heating_efficiency "Fuel Boiler, 90% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 90% AFUE" +upgrade.hvac_heating_efficiency "Fuel Furnace, 80% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 80% AFUE" +upgrade.hvac_heating_efficiency "Fuel Furnace, 83% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 83% AFUE" +upgrade.hvac_heating_efficiency "Fuel Furnace, 88% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 88% AFUE" +upgrade.hvac_heating_efficiency "Fuel Furnace, 92.5% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 92.5% AFUE" +upgrade.hvac_heating_efficiency "Fuel Furnace, 95% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 95% AFUE" +upgrade.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 60% AFUE" "Heating efficiency is upgraded to Fuel Wall/Floor Furnace, 60% AFUE" +upgrade.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 68% AFUE" "Heating efficiency is upgraded to Fuel Wall/Floor Furnace, 68% AFUE" +upgrade.hvac_heating_efficiency "GSHP, EER 18.6, COP 3.8" "Heating efficiency is upgraded to GSHP, EER 18.6, COP 3.8" +upgrade.hvac_heating_efficiency "GSHP, EER 20.5, COP 4.0" "Heating efficiency is upgraded to GSHP, EER 20.5, COP 4.0" +upgrade.hvac_heating_efficiency "GSHP, EER 30.9, COP 4.4" "Heating efficiency is upgraded to GSHP, EER 30.9, COP 4.4" +upgrade.hvac_heating_efficiency None No change on heating efficiency +upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Heating type and fuel is upgraded to Natural Gas Fuel Furnace +upgrade.hvac_heating_type_and_fuel None No change on heating type and fuel +upgrade.infiltration 5 ACH50 The infiltration rate is upgraded to 5ACH50 +upgrade.infiltration None No change on infiltration rate +upgrade.infiltration_reduction 13% The infiltration rate is reduced by 13% +upgrade.infiltration_reduction 30% The infiltration rate is reduced by 30% +upgrade.infiltration_reduction None No infiltration rate reduction +upgrade.insulation_ceiling None No ceiling insulation upgrade +upgrade.insulation_ceiling R-49 The ceiling insulation is upgraded to R-49 +upgrade.insulation_ceiling R-60 The ceiling insulation is upgraded to R-60 +upgrade.insulation_wall None No wall insulation upgrade +upgrade.insulation_wall "Wood Stud, R-13" "The wall insulation is upgraded to Wood Stud, R-13" +upgrade.water_heater_efficiency "Electric Heat Pump, 50 gal, 3.78 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 50 gal, 3.78 UEF" +upgrade.water_heater_efficiency "Electric Heat Pump, 66 gal, 3.95 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 66 gal, 3.95 UEF" +upgrade.water_heater_efficiency "Electric Heat Pump, 80 gal, 3.98 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 80 gal, 3.98 UEF" +upgrade.water_heater_efficiency "High Efficiency Natural Gas Tankless, Condensing" "Water heater efficiency is upgraded to High Efficiency Natural Gas Tankless, Condensing" +upgrade.water_heater_efficiency None No water heater efficiency upgrade +upgrade.water_heater_fuel Electricity Water heater fuel is changed to Electricity +upgrade.water_heater_fuel Natural Gas Water heater fuel is changed to Natural Gas +upgrade.water_heater_fuel None No change on water heater fuel +upgrade.windows "EnergyStar, North-Central" "Windows is upgraded to EnergyStar, North-Central" +upgrade.windows "EnergyStar, Northern" "Windows is upgraded to EnergyStar, Northern" +upgrade.windows "EnergyStar, South-Central" "Windows is upgraded to EnergyStar, South-Central" +upgrade.windows "EnergyStar, Southern" "Windows is upgraded to EnergyStar, Southern" +upgrade.windows None No windows upgrade +weight 253.9036727 One dwelling unit simulation results represents 253.903672727272 dwelling units From fcd5f320133b41014fce1d3cf34c0fd9e883fa7c Mon Sep 17 00:00:00 2001 From: Jes Brossman <119698017+jbrossman@users.noreply.github.com> Date: Wed, 15 Oct 2025 08:58:47 -0600 Subject: [PATCH 27/82] Update data_dictionary.tsv Edits up through line 115 --- .../resources/publication/data_dictionary.tsv | 112 +++++++++--------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index b7f459d25d..4b9b3e29b3 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -1,28 +1,28 @@ field_location field_name data_type units field_description -metadata_and_annual bldg_id string n/a The building unit number (between 1 and the number of samples). +metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. +metadata_and_annual bldg_id string n/a The dwelling unit model ID number (between 1 and the number of samples). metadata_and_annual completed_status string n/a The simulation status. -metadata_and_annual upgrade string n/a The upgrade number +metadata_and_annual upgrade string n/a The upgrade number. metadata_and_annual in.upgrade_name string n/a User-specificed name that describes the upgrade. -metadata_and_annual weight float n/a Number of buildings this simulation represents. -metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the building. Will be always True for baseline. +metadata_and_annual weight float n/a Number of dwelling units this model represents. metadata_and_annual in.sqft..ft2 float ft2 Floor Area, Conditioned -metadata_and_annual in.representative_income float usd Average representative income of the country +metadata_and_annual in.representative_income float usd Income for this dwelling unit. metadata_and_annual in.county_name string n/a County name -metadata_and_annual in.ahs_region string n/a The American Housing Survey region that the sample is located. -metadata_and_annual in.aiannh_area boolean n/a American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -metadata_and_annual in.area_median_income string n/a Area median income of the household occupying the dwelling unit. -metadata_and_annual in.ashrae_iecc_climate_zone_2004 string n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split string n/a Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI. +metadata_and_annual in.ahs_region string n/a American Housing Survey region where the sample is located. +metadata_and_annual in.aiannh_area boolean n/a If the dwelling unit model is located in an American Indian/Alaska Native/Native Hawaiian (AIANNH) Area or not. +metadata_and_annual in.area_median_income string n/a Area median income of the household occupying the dwelling unit. Zero for vacant units. +metadata_and_annual in.ashrae_iecc_climate_zone_2004 string n/a Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. +metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split string n/a Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. Climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MS and climate zone 1A is split between counties in FL and HI. metadata_and_annual in.bathroom_spot_vent_hour string n/a Bathroom spot ventilation daily start hour. -metadata_and_annual in.battery string n/a The size of an onsite battery (not used in baseline models). +metadata_and_annual in.battery string n/a The presence, size, location, and efficiency of an onsite battery (not used in baseline models). metadata_and_annual in.bedrooms integer n/a The number of bedrooms in the dwelling unit. -metadata_and_annual in.building_america_climate_zone string n/a The Building America Climate Zone that the sample is located. -metadata_and_annual in.cec_climate_zone string n/a The California Energy Commission Climate Zone that the sample is located. +metadata_and_annual in.building_america_climate_zone string n/a The Building America Climate Zone where the sample is located. +metadata_and_annual in.cec_climate_zone string n/a The California Energy Commission Climate Zone where the sample is located. metadata_and_annual in.ceiling_fan string n/a Presence and energy usage of ceiling fans at medium speed. -metadata_and_annual in.census_division string n/a The U.S. Census Division that the sample is located. -metadata_and_annual in.census_division_recs string n/a Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). -metadata_and_annual in.census_region string n/a The U.S. Census Region that the sample is located. -metadata_and_annual in.city string n/a The City that the sample is located. +metadata_and_annual in.census_division string n/a The 2010 U.S. Census Division where the sample is located. +metadata_and_annual in.census_division_recs string n/a Census Division as used in RECS 2015 where the sample is located. RECS 2015 split the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). +metadata_and_annual in.census_region string n/a The 2010 U.S. Census Region where the sample is located. +metadata_and_annual in.city string n/a The census-designated city where the sample is located. metadata_and_annual in.clothes_dryer string n/a The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit. metadata_and_annual in.clothes_dryer_usage_level string n/a Clothes dryer energy usage level multiplier. metadata_and_annual in.clothes_washer string n/a Presence and rated efficiency of the clothes washer. @@ -36,51 +36,51 @@ metadata_and_annual in.cooling_setpoint_has_offset boolean n/a Presence of a coo metadata_and_annual in.cooling_setpoint_offset_magnitude string n/a The magnitude of cooling setpoint offset. metadata_and_annual in.cooling_setpoint_offset_period string n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. metadata_and_annual in.corridor string n/a Type of corridor attached to multi-family units. -metadata_and_annual in.county string n/a The U.S. County that the sample is located. -metadata_and_annual in.county_and_puma string n/a The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -metadata_and_annual in.county_metro_status string n/a The Metro Status of the county that the sample is located, based on MSA and MicroSA. -metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. +metadata_and_annual in.county string n/a The U.S. County where the sample is located and GISJOIN indentifier. +metadata_and_annual in.county_and_puma string n/a The GISJOIN identifier for the County and the Public Use Microdata Area (PUMA) where the sample is located. +metadata_and_annual in.county_metro_status string n/a Whether the county is part of a census-defined metro area. +metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distribution states where we have more data. metadata_and_annual in.dehumidifier string n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. metadata_and_annual in.dishwasher string n/a The presence and rated efficiency of the dishwasher. metadata_and_annual in.dishwasher_usage_level string n/a Dishwasher energy usage level multiplier. metadata_and_annual in.door_area string n/a Area of exterior doors. metadata_and_annual in.doors string n/a Exterior door material and properties. -metadata_and_annual in.duct_leakage_and_insulation string n/a Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -metadata_and_annual in.duct_location string n/a Location of Duct System. +metadata_and_annual in.duct_leakage_and_insulation string n/a cuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +metadata_and_annual in.duct_location string n/a Location of duct System. metadata_and_annual in.eaves string n/a Depth of roof eaves. -metadata_and_annual in.electric_panel_service_rating..a integer amp The rating of electric panel in Ampere. -metadata_and_annual in.electric_panel_service_rating_bin..a string amp The rating bin of electric panel in Ampere. -metadata_and_annual in.electric_vehicle_battery string n/a The type of electric vehicle and battery range in miles. -metadata_and_annual in.electric_vehicle_charge_at_home string n/a The percentage a household would or do charge their electric vehicle at home. -metadata_and_annual in.electric_vehicle_charger string n/a Type of electric vehicle charger used at the dwelling unit. -metadata_and_annual in.electric_vehicle_miles_traveled integer n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. -metadata_and_annual in.electric_vehicle_outlet_access boolean n/a The unit has an outlet within 20 feet of vehicle parking. -metadata_and_annual in.electric_vehicle_ownership boolean n/a The dwelling unit owns an electric vehicle. -metadata_and_annual in.energystar_climate_zone_2023 string n/a Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023. +metadata_and_annual in.electric_panel_service_rating..a integer amp Electric panel service or max current rating in Ampere (A). +metadata_and_annual in.electric_panel_service_rating_bin..a string amp Electric panel service or max current rating in bins of Ampere (A). +metadata_and_annual in.electric_vehicle_battery string n/a The type of electric vehicle and battery range. +metadata_and_annual in.electric_vehicle_charge_at_home string n/a Percentage of EV charging that occurs at the dwelling units. +metadata_and_annual in.electric_vehicle_charger string n/a Type of EV charger used at the dwelling unit. +metadata_and_annual in.electric_vehicle_miles_traveled integer n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. EVs are driven fewer miles than internal combustine engine (ICE) cars, so the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. +metadata_and_annual in.electric_vehicle_outlet_access boolean n/a If the dwelling unit has an electric outlet within 20 feet of EV parking. +metadata_and_annual in.electric_vehicle_ownership boolean n/a If the dwelling unit owns an EV. +metadata_and_annual in.energystar_climate_zone_2023 string n/a Climate zones for windows, doors, and skylights per 2023 ENERGYSTAR guidelines. metadata_and_annual in.federal_poverty_level string n/a Federal poverty level of the household occupying the dwelling unit. -metadata_and_annual in.generation_and_emissions_assessment_region string n/a The generation and carbon emissions assessment region that the sample is located in. +metadata_and_annual in.generation_and_emissions_assessment_region string n/a The generation and carbon emissions assessment (GEA) region from Cambium 2023. metadata_and_annual in.geometry_attic_type string n/a The dwelling unit attic type. -metadata_and_annual in.geometry_building_horizontal_location_mf string n/a Location of the single-family attached unit horizontally within the building (left, middle, right). +metadata_and_annual in.geometry_building_horizontal_location_mf string n/a Location of the multi-family attached unit horizontally within the building (left, middle, right). metadata_and_annual in.geometry_building_horizontal_location_sfa string n/a Location of the single-family attached unit horizontally within the building (left, middle, right). metadata_and_annual in.geometry_building_level_mf string n/a Location of the multi-family unit vertically within the building (bottom, middle, top). -metadata_and_annual in.geometry_building_number_units_mf integer n/a The number of dwelling units in the multi-family building. -metadata_and_annual in.geometry_building_number_units_sfa integer n/a Number of units in the single-family attached building. -metadata_and_annual in.geometry_building_type_acs string n/a The building type classification according to the U.S. Census American Community Survey. -metadata_and_annual in.geometry_building_type_height string n/a The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise. -metadata_and_annual in.geometry_building_type_recs string n/a The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_building_number_units_mf integer n/a The number of dwelling units in the multi-family building where the dwelling unit is located. +metadata_and_annual in.geometry_building_number_units_sfa integer n/a Number of dwelling units in the single-family attached building where the dwelling unit is located. +metadata_and_annual in.geometry_building_type_acs string n/a The building type classification according to the U.S. Census American Community Survey (ACS). +metadata_and_annual in.geometry_building_type_height string n/a The 2009 Residential Energy Consumption Survey (RECS) building type, with multi-family buildings split out by low-rise, mid-rise, and high-rise. +metadata_and_annual in.geometry_building_type_recs string n/a The building type classification according to the Residential Energy Consumption Survey (RECS). metadata_and_annual in.geometry_floor_area string n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -metadata_and_annual in.geometry_floor_area_bin string n/a The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.geometry_floor_area_bin string n/a The finished floor area bin from Residential Energy Consumption Survey (RECS). metadata_and_annual in.geometry_foundation_type string n/a The type of foundation. metadata_and_annual in.geometry_garage string n/a The size of an attached garage. -metadata_and_annual in.geometry_space_combination string n/a Valid combinations of building type, building level mf, attic, foundation, and garage. +metadata_and_annual in.geometry_space_combination string n/a Valid combinations of building type, building level if it is multi-family, foundation, attic, and garage. metadata_and_annual in.geometry_stories integer n/a The number of building stories. -metadata_and_annual in.geometry_stories_low_rise string n/a Number of building stories for low-rise buildings. -metadata_and_annual in.geometry_story_bin string n/a The building has more than 8 or less than 8 stories. +metadata_and_annual in.geometry_stories_low_rise integer n/a Number of building stories for low-rise buildings. +metadata_and_annual in.geometry_story_bin string n/a Binned height of the dwelling unit's building of more or less than 8 stories. metadata_and_annual in.geometry_wall_exterior_finish string n/a Wall siding material and color. metadata_and_annual in.geometry_wall_type string n/a The wall material used for thermal mass calculations of exterior walls. -metadata_and_annual in.ground_thermal_conductivity float n/a The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -metadata_and_annual in.has_pv boolean n/a The dwelling unit has a rooftop photovoltaic system. -metadata_and_annual in.heating_fuel string n/a The primary fuel used for heating the dwelling unit. +metadata_and_annual in.ground_thermal_conductivity float n/a The thermal conductivity (Btu/hr-ft-F) of the ground used for foundation and geothermal heat pump heat transfer calculations. +metadata_and_annual in.has_pv boolean n/a If the dwelling unit has a rooftop photovoltaic system. +metadata_and_annual in.heating_fuel string n/a The primary heating fuel. metadata_and_annual in.heating_unavailable_days string n/a Number of days in a year the heating system is unavailable. metadata_and_annual in.heating_setpoint string n/a Baseline heating setpoint with no offset applied. metadata_and_annual in.heating_setpoint_has_offset boolean n/a Presence of a heating setpoint offset. @@ -88,18 +88,18 @@ metadata_and_annual in.heating_setpoint_offset_magnitude string n/a Magnitude of metadata_and_annual in.heating_setpoint_offset_period string n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. metadata_and_annual in.holiday_lighting string n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). metadata_and_annual in.hot_water_distribution string n/a Type of distribution system and presence of hot water piping insulation. -metadata_and_annual in.hot_water_fixtures string n/a Hot water fixture usage and flow levels. +metadata_and_annual in.hot_water_fixtures string n/a Hot water fixture usage. metadata_and_annual in.household_has_tribal_persons string n/a The household occupying the dwelling unit has at least one tribal person in the household. metadata_and_annual in.hvac_cooling_autosizing_factor string n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -metadata_and_annual in.hvac_cooling_efficiency string n/a The presence and efficiency of primary cooling system in the dwelling unit. -metadata_and_annual in.hvac_cooling_partial_space_conditioning string n/a The fraction of the finished floor area that the cooling system provides cooling. -metadata_and_annual in.hvac_cooling_type string n/a The presence and type of primary cooling system in the dwelling unit. -metadata_and_annual in.hvac_has_ducts boolean n/a The presence of ducts in the dwelling unit. +metadata_and_annual in.hvac_cooling_efficiency string n/a The presence and efficiency of the primary cooling system. +metadata_and_annual in.hvac_cooling_partial_space_conditioning string n/a The fraction of the finished floor area that the cooling system covers. +metadata_and_annual in.hvac_cooling_type string n/a The presence and type of primary cooling system. +metadata_and_annual in.hvac_has_ducts boolean n/a The presence of ducts. metadata_and_annual in.hvac_has_shared_system string n/a The presence of an HVAC system shared between multiple dwelling units. metadata_and_annual in.hvac_has_zonal_electric_heating boolean n/a Presence of electric baseboard heating. metadata_and_annual in.hvac_heating_autosizing_factor string n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -metadata_and_annual in.hvac_heating_efficiency string n/a The presence and efficiency of the primary heating system in the dwelling unit. -metadata_and_annual in.hvac_heating_type string n/a The presence and type of the primary heating system in the dwelling unit. +metadata_and_annual in.hvac_heating_efficiency string n/a The presence and efficiency of the primary heating system. +metadata_and_annual in.hvac_heating_type string n/a The presence and type of the primary heating system. metadata_and_annual in.hvac_heating_type_and_fuel string n/a The presence, type, and fuel of primary heating system. metadata_and_annual in.hvac_secondary_heating_efficiency string n/a The efficiency and type of the secondary heating system. metadata_and_annual in.hvac_secondary_heating_fuel string n/a Secondary Heating Fuel for the dwelling unit @@ -110,9 +110,9 @@ metadata_and_annual in.hvac_system_is_faulted boolean n/a The presence of the HV metadata_and_annual in.hvac_system_is_scaled boolean n/a Whether the HVAC system has been undersized or oversized (not used). metadata_and_annual in.hvac_system_single_speed_ac_airflow string n/a Single speed central and room air conditioner actual air flow rates. metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and room air conditioner deviation between design/installed charge. -metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates. -metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge. -metadata_and_annual in.income string n/a Income of the household occupying the dwelling unit. +metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates (not used). +metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge (not used). +metadata_and_annual in.income string n/a Income bin of the household occupying the dwelling unit. metadata_and_annual in.income_recs_2015 string n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. metadata_and_annual in.income_recs_2020 string n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. metadata_and_annual in.infiltration string n/a Total infiltration to the dwelling unit. From 88d4baad3a53acd72686a1e3bcaf192ef4e619e7 Mon Sep 17 00:00:00 2001 From: Jes Brossman <119698017+jbrossman@users.noreply.github.com> Date: Wed, 15 Oct 2025 09:47:59 -0600 Subject: [PATCH 28/82] Update data_dictionary.tsv Edits up through line 241 --- .../resources/publication/data_dictionary.tsv | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index 4b9b3e29b3..1b871fcaf5 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -4,7 +4,7 @@ metadata_and_annual bldg_id string n/a The dwelling unit model ID number (betwee metadata_and_annual completed_status string n/a The simulation status. metadata_and_annual upgrade string n/a The upgrade number. metadata_and_annual in.upgrade_name string n/a User-specificed name that describes the upgrade. -metadata_and_annual weight float n/a Number of dwelling units this model represents. +metadata_and_annual weight float n/a Number of dwelling units this model represents in real life. metadata_and_annual in.sqft..ft2 float ft2 Floor Area, Conditioned metadata_and_annual in.representative_income float usd Income for this dwelling unit. metadata_and_annual in.county_name string n/a County name @@ -113,8 +113,8 @@ metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates (not used). metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge (not used). metadata_and_annual in.income string n/a Income bin of the household occupying the dwelling unit. -metadata_and_annual in.income_recs_2015 string n/a Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -metadata_and_annual in.income_recs_2020 string n/a Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +metadata_and_annual in.income_recs_2015 string n/a Income bin of the household occupying the dwelling unit that are aligned with the 2015 Residential Energy Consumption Survey (RECS). +metadata_and_annual in.income_recs_2020 string n/a Income bin of the household occupying the dwelling unit that are aligned with the 2020 Residential Energy Consumption Survey (RECS). metadata_and_annual in.infiltration string n/a Total infiltration to the dwelling unit. metadata_and_annual in.insulation_ceiling string n/a Ceiling insulation level (between the living space and unconditioned attic). metadata_and_annual in.insulation_floor string n/a Floor insulation level. @@ -124,13 +124,13 @@ metadata_and_annual in.insulation_roof string n/a Finished roof insulation level metadata_and_annual in.insulation_slab string n/a Slab insulation level. metadata_and_annual in.insulation_wall string n/a Wall construction type and insulation level. metadata_and_annual in.interior_shading string n/a Type of window interior shading. -metadata_and_annual in.iso_rto_region string n/a The independent system operator or regional transmission organization region that the sample is located. -metadata_and_annual in.lighting string n/a Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options. +metadata_and_annual in.iso_rto_region string n/a The independent system operator (ISO) or regional transmission organization (RTO) region where the dwelling unit is located. +metadata_and_annual in.lighting string n/a Fraction of lighting types. metadata_and_annual in.lighting_interior_use string n/a Interior lighting usage relative to the national average. metadata_and_annual in.lighting_other_use string n/a Exterior and garage lighting usage relative to the national average. -metadata_and_annual in.location_region string n/a A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +metadata_and_annual in.location_region string n/a Custom ResStock region where the sample is located. metadata_and_annual in.mechanical_ventilation string n/a Mechanical ventilation type and efficiency. -metadata_and_annual in.metropolitan_and_micropolitan_statistical_area string n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +metadata_and_annual in.metropolitan_and_micropolitan_statistical_area string n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) where the sample is located. metadata_and_annual in.misc_extra_refrigerator string n/a The presence and rated efficiency of the secondary refrigerator. metadata_and_annual in.misc_freezer string n/a The presence and rated efficiency of a standalone freezer. metadata_and_annual in.misc_gas_fireplace string n/a Presence of a gas fireplace.` @@ -140,7 +140,7 @@ metadata_and_annual in.misc_hot_tub_spa string n/a The presence and heating fuel metadata_and_annual in.misc_pool string n/a The presence of a pool at the dwelling unit. metadata_and_annual in.misc_pool_heater string n/a The heating fuel of the pool heater if there is a pool. metadata_and_annual in.misc_pool_pump string n/a Presence and size of pool pump. -metadata_and_annual in.misc_well_pump string n/a Presence of well pump according to the use of well for domestic water source. +metadata_and_annual in.misc_well_pump string n/a Presence of well pump for domestic water source. metadata_and_annual in.natural_ventilation string n/a Schedule of natural ventilation from windows. metadata_and_annual in.neighbors string n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. metadata_and_annual in.occupants string n/a The number of occupants living in the dwelling unit. @@ -148,23 +148,23 @@ metadata_and_annual in.orientation string n/a Orientation of the front of the dw metadata_and_annual in.overhangs string n/a Presence, depth, and location of window overhangs metadata_and_annual in.plug_load_diversity string n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. metadata_and_annual in.plug_loads string n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. -metadata_and_annual in.puma string n/a The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -metadata_and_annual in.puma_metro_status string n/a The public use microdata area metropolitan status that the dwelling unit is located. -metadata_and_annual in.pv_orientation string n/a The orientation of the photovoltaic system. +metadata_and_annual in.puma string n/a The 2010 Public Use Microdata Area (PUMA) where the dwelling unit is located. +metadata_and_annual in.puma_metro_status string n/a The Public Use Microdata Area (PUMA) metropolitan status where the dwelling unit is located. +metadata_and_annual in.pv_orientation string n/a The presence and orientation of the photovoltaic system. metadata_and_annual in.pv_system_size string n/a The size of the photovoltaic system. metadata_and_annual in.radiant_barrier string n/a Presence of radiant barrier in the attic (not modeled). metadata_and_annual in.range_spot_vent_hour string n/a Range spot ventilation daily start hour. -metadata_and_annual in.reeds_balancing_area string n/a The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +metadata_and_annual in.reeds_balancing_area string n/a The Regional Energy Deployment System Model (ReEDS) balancing area where the dwelling unit is located. metadata_and_annual in.refrigerator string n/a The presence and rated efficiency of the primary refrigerator. metadata_and_annual in.refrigerator_usage_level string n/a Refrigerator energy usage level multiplier. metadata_and_annual in.roof_material string n/a Roof material and color. -metadata_and_annual in.state string n/a The U.S. State the sample is located. -metadata_and_annual in.state_metro_median_income string n/a State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +metadata_and_annual in.state string n/a The U.S. State. +metadata_and_annual in.state_metro_median_income string n/a The census-supplied median income for dwelling units in the metro area where the dwelling unit is located, which can be different from the State Median Income. metadata_and_annual in.tenure string n/a The tenancy (owner or renter) of the household occupying the dwelling unit. metadata_and_annual in.usage_level string n/a Usage of major appliances relative to the national average. metadata_and_annual in.vacancy_status string n/a The vacancy status (occupied or vacant) of the dwelling unit. -metadata_and_annual in.vintage string n/a Time period in which the building was constructed. -metadata_and_annual in.vintage_acs string n/a Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +metadata_and_annual in.vintage string n/a Time period bin in which the building was constructed. +metadata_and_annual in.vintage_acs string n/a Time period bin in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey (ACS). metadata_and_annual in.water_heater_efficiency string n/a The efficiency, type, and heating fuel of water heater. metadata_and_annual in.water_heater_fuel string n/a The water heater fuel type. metadata_and_annual in.water_heater_in_unit boolean n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. @@ -174,12 +174,12 @@ metadata_and_annual in.windows string n/a Construction type and efficiency level metadata_and_annual in.air_leakage_to_outside_ach50 float n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. metadata_and_annual in.applicable boolean n/a The measure was applied to the workflow. metadata_and_annual in.buildstock_csv_path string n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -metadata_and_annual in.units_represented integer n/a The number of dwelling units this simulation represents. Should always be one. -metadata_and_annual in.simulation_control_run_period_begin_day_of_month integer n/a This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_begin_month integer n/a This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_calendar_year integer n/a This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. -metadata_and_annual in.simulation_control_run_period_end_day_of_month integer n/a This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_end_month integer n/a This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.units_represented integer n/a The number of dwelling units this simulation represents, which is different than the weight field. Should always be one. +metadata_and_annual in.simulation_control_run_period_begin_day_of_month integer n/a Starting day of the starting month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_begin_month integer n/a Starting month number (1 = January, 2 = February, etc.) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_calendar_year integer n/a Calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. +metadata_and_annual in.simulation_control_run_period_end_day_of_month integer n/a Ending day of the ending month (must be valid for month) for the annual run period desired. +metadata_and_annual in.simulation_control_run_period_end_month integer n/a End month number (1 = January, 2 = February, etc.) for the annual run period desired. metadata_and_annual in.simulation_control_timestep integer n/a Value must be a divisor of 60. metadata_and_annual in.utility_bill_electricity_fixed_charges float usd Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. metadata_and_annual in.utility_bill_electricity_marginal_rates float usd Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. @@ -189,14 +189,14 @@ metadata_and_annual in.utility_bill_natural_gas_fixed_charges float usd Natural metadata_and_annual in.utility_bill_natural_gas_marginal_rates float usd Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. metadata_and_annual in.utility_bill_propane_fixed_charges float usd Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. metadata_and_annual in.utility_bill_propane_marginal_rates float usd Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_scenario_names string n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. +metadata_and_annual in.utility_bill_scenario_names string n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. metadata_and_annual in.utility_bill_simple_filepaths string n/a Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header. metadata_and_annual in.weather_file_city string n/a City from the EPW weather file. metadata_and_annual in.weather_file_latitude float n/a Latitude from the EPW weather file. metadata_and_annual in.weather_file_longitude float n/a Longitude from the EPW weather file. metadata_and_annual in.heating_unavailable_period string n/a Heating unavailable period. metadata_and_annual in.cooling_unavailable_period string n/a Cooling unavailable period. -metadata_and_annual out.params.door_area..ft2 float ft2 Door Area +metadata_and_annual out.params.door_area..ft2 float ft2 Door area metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 float ft2 Duct Unconditioned Surface Area metadata_and_annual out.params.floor_area_attic..ft2 float ft2 Floor Area, Attic metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value float r_value Floor Area, Attic * Insulation Increase @@ -217,27 +217,27 @@ metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 float ft2 Wal metadata_and_annual out.params.wall_area_below_grade..ft2 float ft2 Wall Area, Below-Grade metadata_and_annual out.params.window_area..ft2 float ft2 Window Area metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count integer n/a Number of boreholes used for the geothermal heat pump system. -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Supply fan (air distribution) or circulating pump (geothermal loop) -metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Excludes fans/pumps -metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Excludes heat pump backup fans/pumps -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Excludes heat pump backup and fans/pumps -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Excludes recirc pump and solar thermal pump -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Non-zero only when using detailed (not simple) solar thermal inputs -metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Includes exterior holiday lighting -metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh float kwh Excludes preheating/precooling +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh Electricity consumed by ceiling fans +metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh Electricity consumed by dryers +metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh Electricity consumed by clothes washers +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) +metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Electricity consumed by cooling systems, excludes fans/pumps +metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh Electricity consumed by the dishwasher +metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh Electricity consumed by charging EVs +metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh Electricity consumed by the the freezer +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Electricity consumed by heat pump backup, excludes heat pump backup fans/pumps +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heat pump backup during heating +metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Electricity consumed by heating systems, excludes heat pump backup and fans/pumps +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh Electricity consumed by spa heating +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh Electricity consumed by spa pump +metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Electricity consumed by hot water system, excludes recirculation pump and solar thermal pump +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Electricity consumed by solar hot water system pump. Non-zero only when using detailed (not simple) solar thermal inputs +metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Electricity consumed by exterio lighting, which includes exterior holiday lighting +metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh Electricity consumed by lighting in the garage +metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh Electricity consumed by interior lighting +metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh float kwh Electricity consumed by mechanical ventilation system, excludes preheating/precooling metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh float kwh Excludes independently reported plug loads (e.g., well pump) metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh float kwh metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh float kwh From d36f9179a951e0e6244a6bdb36dafa52c7b958f1 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 15 Oct 2025 17:40:23 -0600 Subject: [PATCH 29/82] add note description --- .../resources/publication/data_dictionary.tsv | 1003 +++++++------- .../publication/sdr_column_definitions.csv | 1200 ++++++++--------- 2 files changed, 1101 insertions(+), 1102 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv index 1b871fcaf5..075f3742fe 100644 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv @@ -1,12 +1,12 @@ field_location field_name data_type units field_description -metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. metadata_and_annual bldg_id string n/a The dwelling unit model ID number (between 1 and the number of samples). metadata_and_annual completed_status string n/a The simulation status. metadata_and_annual upgrade string n/a The upgrade number. metadata_and_annual in.upgrade_name string n/a User-specificed name that describes the upgrade. metadata_and_annual weight float n/a Number of dwelling units this model represents in real life. +metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. metadata_and_annual in.sqft..ft2 float ft2 Floor Area, Conditioned -metadata_and_annual in.representative_income float usd Income for this dwelling unit. +metadata_and_annual in.representative_income float usd Income for this dwelling unit. metadata_and_annual in.county_name string n/a County name metadata_and_annual in.ahs_region string n/a American Housing Survey region where the sample is located. metadata_and_annual in.aiannh_area boolean n/a If the dwelling unit model is located in an American Indian/Alaska Native/Native Hawaiian (AIANNH) Area or not. @@ -36,16 +36,16 @@ metadata_and_annual in.cooling_setpoint_has_offset boolean n/a Presence of a coo metadata_and_annual in.cooling_setpoint_offset_magnitude string n/a The magnitude of cooling setpoint offset. metadata_and_annual in.cooling_setpoint_offset_period string n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. metadata_and_annual in.corridor string n/a Type of corridor attached to multi-family units. -metadata_and_annual in.county string n/a The U.S. County where the sample is located and GISJOIN indentifier. +metadata_and_annual in.county string n/a The U.S. County where the sample is located. metadata_and_annual in.county_and_puma string n/a The GISJOIN identifier for the County and the Public Use Microdata Area (PUMA) where the sample is located. metadata_and_annual in.county_metro_status string n/a Whether the county is part of a census-defined metro area. -metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distribution states where we have more data. +metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. metadata_and_annual in.dehumidifier string n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. metadata_and_annual in.dishwasher string n/a The presence and rated efficiency of the dishwasher. metadata_and_annual in.dishwasher_usage_level string n/a Dishwasher energy usage level multiplier. metadata_and_annual in.door_area string n/a Area of exterior doors. metadata_and_annual in.doors string n/a Exterior door material and properties. -metadata_and_annual in.duct_leakage_and_insulation string n/a cuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +metadata_and_annual in.duct_leakage_and_insulation string n/a Dcuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. metadata_and_annual in.duct_location string n/a Location of duct System. metadata_and_annual in.eaves string n/a Depth of roof eaves. metadata_and_annual in.electric_panel_service_rating..a integer amp Electric panel service or max current rating in Ampere (A). @@ -74,7 +74,7 @@ metadata_and_annual in.geometry_foundation_type string n/a The type of foundatio metadata_and_annual in.geometry_garage string n/a The size of an attached garage. metadata_and_annual in.geometry_space_combination string n/a Valid combinations of building type, building level if it is multi-family, foundation, attic, and garage. metadata_and_annual in.geometry_stories integer n/a The number of building stories. -metadata_and_annual in.geometry_stories_low_rise integer n/a Number of building stories for low-rise buildings. +metadata_and_annual in.geometry_stories_low_rise string n/a Number of building stories for low-rise buildings. metadata_and_annual in.geometry_story_bin string n/a Binned height of the dwelling unit's building of more or less than 8 stories. metadata_and_annual in.geometry_wall_exterior_finish string n/a Wall siding material and color. metadata_and_annual in.geometry_wall_type string n/a The wall material used for thermal mass calculations of exterior walls. @@ -108,8 +108,8 @@ metadata_and_annual in.hvac_secondary_heating_type string n/a The efficiency and metadata_and_annual in.hvac_shared_efficiencies string n/a The presence and efficiency of the shared HVAC system. metadata_and_annual in.hvac_system_is_faulted boolean n/a The presence of the HVAC system having a fault (not used). metadata_and_annual in.hvac_system_is_scaled boolean n/a Whether the HVAC system has been undersized or oversized (not used). -metadata_and_annual in.hvac_system_single_speed_ac_airflow string n/a Single speed central and room air conditioner actual air flow rates. -metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and room air conditioner deviation between design/installed charge. +metadata_and_annual in.hvac_system_single_speed_ac_airflow string n/a Single speed central and room air conditioner actual air flow rates (not used). +metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and room air conditioner deviation between design/installed charge (not used). metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates (not used). metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge (not used). metadata_and_annual in.income string n/a Income bin of the household occupying the dwelling unit. @@ -173,7 +173,6 @@ metadata_and_annual in.window_areas string n/a Window to wall ratios of the fron metadata_and_annual in.windows string n/a Construction type and efficiency levels of windows. metadata_and_annual in.air_leakage_to_outside_ach50 float n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. metadata_and_annual in.applicable boolean n/a The measure was applied to the workflow. -metadata_and_annual in.buildstock_csv_path string n/a Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. metadata_and_annual in.units_represented integer n/a The number of dwelling units this simulation represents, which is different than the weight field. Should always be one. metadata_and_annual in.simulation_control_run_period_begin_day_of_month integer n/a Starting day of the starting month (must be valid for month) for the annual run period desired. metadata_and_annual in.simulation_control_run_period_begin_month integer n/a Starting month number (1 = January, 2 = February, etc.) for the annual run period desired. @@ -196,7 +195,7 @@ metadata_and_annual in.weather_file_latitude float n/a Latitude from the EPW wea metadata_and_annual in.weather_file_longitude float n/a Longitude from the EPW weather file. metadata_and_annual in.heating_unavailable_period string n/a Heating unavailable period. metadata_and_annual in.cooling_unavailable_period string n/a Cooling unavailable period. -metadata_and_annual out.params.door_area..ft2 float ft2 Door area +metadata_and_annual out.params.door_area..ft2 float ft2 Door Area metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 float ft2 Duct Unconditioned Surface Area metadata_and_annual out.params.floor_area_attic..ft2 float ft2 Floor Area, Attic metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value float r_value Floor Area, Attic * Insulation Increase @@ -217,73 +216,73 @@ metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 float ft2 Wal metadata_and_annual out.params.wall_area_below_grade..ft2 float ft2 Wall Area, Below-Grade metadata_and_annual out.params.window_area..ft2 float ft2 Window Area metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count integer n/a Number of boreholes used for the geothermal heat pump system. -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh Electricity consumed by ceiling fans -metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh Electricity consumed by dryers -metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh Electricity consumed by clothes washers -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) -metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Electricity consumed by cooling systems, excludes fans/pumps -metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh Electricity consumed by the dishwasher -metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh Electricity consumed by charging EVs -metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh Electricity consumed by the the freezer -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Electricity consumed by heat pump backup, excludes heat pump backup fans/pumps -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heat pump backup during heating -metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Electricity consumed by heating systems, excludes heat pump backup and fans/pumps -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh Electricity consumed by spa heating -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh Electricity consumed by spa pump -metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Electricity consumed by hot water system, excludes recirculation pump and solar thermal pump -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Electricity consumed by solar hot water system pump. Non-zero only when using detailed (not simple) solar thermal inputs -metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Electricity consumed by exterio lighting, which includes exterior holiday lighting -metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh Electricity consumed by lighting in the garage -metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh Electricity consumed by interior lighting +metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh Electricity consumed by ceiling fan. +metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh Electricity consumed by clothes dryer. +metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh Electricity consumed by clothes washer. +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. +metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Electricity consumed by cooling systems excludes usage by fans/pumps. +metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh Electricity consumed by dishwasher. +metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh Electricity consumed by electric vehicle charging. +metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh Electricity consumed by standalone freezers. +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps. +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. +metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Electricity consumed by heating systems excludes usage by fans/pumps. +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh Electricity consumed by spa heating. +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh Electricity consumed by spa pump. +metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Electricity consumed by hot water system excludes recirc pump and solar thermal pump. +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs +metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Electricity consumed by exterior lighting, includes exterior holiday lighting. +metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh Electricity consumed by lighting in the garage. +metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh Electricity consumed by interior lighting. metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh float kwh Electricity consumed by mechanical ventilation system, excludes preheating/precooling -metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh float kwh Excludes independently reported plug loads (e.g., well pump) -metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.pv.energy_consumption..kwh float kwh Negative value for any power produced -metadata_and_annual out.electricity.range_oven.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.television.energy_consumption..kwh float kwh -metadata_and_annual out.electricity.well_pump.energy_consumption..kwh float kwh -metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh float kwh Excludes heat pump backup -metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.grill.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.heating.energy_consumption..kwh float kwh Excludes heat pump backup -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh float kwh -metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh float kwh -metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh float kwh -metadata_and_annual out.propane.heating.energy_consumption..kwh float kwh Excludes heat pump backup -metadata_and_annual out.propane.hot_water.energy_consumption..kwh float kwh -metadata_and_annual out.propane.range_oven.energy_consumption..kwh float kwh -metadata_and_annual out.site_energy.net.energy_consumption..kwh float kwh Subtracts any power produced by PV or generators. -metadata_and_annual out.site_energy.total.energy_consumption..kwh float kwh Includes any battery charging/discharging -metadata_and_annual out.electricity.net.energy_consumption..kwh float kwh Subtracts any power produced by PV or generators. -metadata_and_annual out.electricity.total.energy_consumption..kwh float kwh Includes any battery charging/discharging -metadata_and_annual out.fuel_oil.total.energy_consumption..kwh float kwh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -metadata_and_annual out.natural_gas.total.energy_consumption..kwh float kwh -metadata_and_annual out.propane.total.energy_consumption..kwh float kwh -metadata_and_annual out.hot_water.clothes_washer..gal float gal -metadata_and_annual out.hot_water.dishwasher..gal float gal -metadata_and_annual out.hot_water.distribution_waste..gal float gal -metadata_and_annual out.hot_water.fixtures..gal float gal Showers and faucets. -metadata_and_annual out.capacity.cooling..btu_per_hr float btu_h -metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr float btu_h -metadata_and_annual out.capacity.heating..btu_per_hr float btu_h -metadata_and_annual out.load.cooling.energy_delivered..kbtu float kbtu Includes HVAC distribution losses. -metadata_and_annual out.load.heating.energy_delivered..kbtu float kbtu Includes HVAC distribution losses. -metadata_and_annual out.load.hot_water.energy_delivered..kbtu float kbtu Includes contributions by desuperheaters or solar thermal systems. -metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu float kbtu Water heater solar thermal energy. +metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh float kwh Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump). +metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh float kwh Electricity consumed by pool heater. +metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh float kwh Electricity consumed by pool pump. +metadata_and_annual out.electricity.pv.energy_consumption..kwh float kwh Energy produced by rooftop PV systems. Negative value for any power produced +metadata_and_annual out.electricity.range_oven.energy_consumption..kwh float kwh Electricity consumed by range oven. +metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh float kwh Electricity consumed by refrigerator. +metadata_and_annual out.electricity.television.energy_consumption..kwh float kwh Electricity consumed by television. +metadata_and_annual out.electricity.well_pump.energy_consumption..kwh float kwh Electricity consumed by well pump. +metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh float kwh Fuel oil consumed by fuel oil heating systems, excludes heat pump backup. +metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh float kwh Fuel oil consumed by fuel oil hot water systems +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh float kwh Natural gas consumed by natural gas clothes dryers. +metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh float kwh Natural gas consumed by natural gas fireplaces. +metadata_and_annual out.natural_gas.grill.energy_consumption..kwh float kwh Natural gas consumed by natural gas grills. +metadata_and_annual out.natural_gas.heating.energy_consumption..kwh float kwh Natural gas consumed by natural gas heating systems, excludes heat pump backup. +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kwh Natural gas consumed by spa heating. +metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh float kwh Natural gas consumed by natural gas hot water systems. +metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh float kwh Natural gas consumed by natural gas lighting. +metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh float kwh Natural gas consumed by natural gas pool heaters. +metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh float kwh Natural gas consumed by natural gas range and oven. +metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh float kwh Propane consumed by propane clothes dryers. +metadata_and_annual out.propane.heating.energy_consumption..kwh float kwh Propane consumed by propane heating systems, excludes heat pump backup +metadata_and_annual out.propane.hot_water.energy_consumption..kwh float kwh Propane consumed by propane hot water systems. +metadata_and_annual out.propane.range_oven.energy_consumption..kwh float kwh Propane consumed by range oven. +metadata_and_annual out.site_energy.net.energy_consumption..kwh float kwh Total site energy consumed subtracts any power produced by PV or generators +metadata_and_annual out.site_energy.total.energy_consumption..kwh float kwh Total site energy consumed, includes any battery charging/discharging +metadata_and_annual out.electricity.net.energy_consumption..kwh float kwh Total electricity consumed subtracts any power produced by PV or generators. +metadata_and_annual out.electricity.total.energy_consumption..kwh float kwh Total electricity consumed, includes any battery charging/discharging +metadata_and_annual out.fuel_oil.total.energy_consumption..kwh float kwh Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +metadata_and_annual out.natural_gas.total.energy_consumption..kwh float kwh Total natural gas consumed. +metadata_and_annual out.propane.total.energy_consumption..kwh float kwh Total propane energy consumed +metadata_and_annual out.hot_water.clothes_washer..gal float gal Hot water consumed by clothes washer +metadata_and_annual out.hot_water.dishwasher..gal float gal Hot water consumed by dishwasher +metadata_and_annual out.hot_water.distribution_waste..gal float gal Hot water consumed by water distribution system (water remaining in the pipe) +metadata_and_annual out.hot_water.fixtures..gal float gal Hot water consumed by showers, sinks, and baths +metadata_and_annual out.capacity.cooling..btu_per_hr float btu_h Cooling Capacity +metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr float btu_h Heat pump backup Capacity +metadata_and_annual out.capacity.heating..btu_per_hr float btu_h Heating Capacity +metadata_and_annual out.load.cooling.energy_delivered..kbtu float kbtu Total energy delivered by cooling system includes HVAC distribution losses. +metadata_and_annual out.load.heating.energy_delivered..kbtu float kbtu Total energy delivered by heating system includes HVAC distribution losses. +metadata_and_annual out.load.hot_water.energy_delivered..kbtu float kbtu Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu float kbtu Total energy delivered by solar thermal water heater. metadata_and_annual out.load.hot_water.energy_tank_losses..kbtu float kbtu Water heater tank losses energy. -metadata_and_annual out.load.cooling.peak..kbtu_per_hr float kbtu_hr Includes HVAC distribution losses. -metadata_and_annual out.load.heating.peak..kbtu_per_hr float kbtu_hr Includes HVAC distribution losses. -metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw float kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw float kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +metadata_and_annual out.load.cooling.peak..kbtu_per_hr float kbtu_hr Maximum cooling load delivered by cooling system includes HVAC distribution losses. +metadata_and_annual out.load.heating.peak..kbtu_per_hr float kbtu_hr Maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period. +metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw float kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). +metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw float kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). metadata_and_annual out.unmet_hours.cooling..hr float hr Number of hours where the cooling setpoint is not maintained. metadata_and_annual out.unmet_hours.ev_driving..hr float hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. metadata_and_annual out.unmet_hours.heating..hr float hr Number of hours where the heating setpoint is not maintained. @@ -363,209 +362,209 @@ metadata_and_annual out.params.panel_constraint_capacity.2023_nec_existing_dwell metadata_and_annual out.params.panel_constraint_breaker_space boolean bool Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0 metadata_and_annual out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based string categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" metadata_and_annual out.energy_burden..percentage float percentage Percentage of income spent on energy -metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh float kwh -metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh float kwh -metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh float kwh -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh float kwh -metadata_and_annual out.electricity.cooling.energy_savings..kwh float kwh -metadata_and_annual out.electricity.dishwasher.energy_savings..kwh float kwh -metadata_and_annual out.electricity.ev_charging.energy_savings..kwh float kwh -metadata_and_annual out.electricity.freezer.energy_savings..kwh float kwh -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh float kwh -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh float kwh -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh float kwh -metadata_and_annual out.electricity.heating.energy_savings..kwh float kwh -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh float kwh -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh float kwh -metadata_and_annual out.electricity.hot_water.energy_savings..kwh float kwh -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh float kwh -metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh float kwh -metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh float kwh -metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh float kwh -metadata_and_annual out.electricity.mech_vent.energy_savings..kwh float kwh -metadata_and_annual out.electricity.plug_loads.energy_savings..kwh float kwh -metadata_and_annual out.electricity.pool_heater.energy_savings..kwh float kwh -metadata_and_annual out.electricity.pool_pump.energy_savings..kwh float kwh -metadata_and_annual out.electricity.pv.energy_savings..kwh float kwh -metadata_and_annual out.electricity.range_oven.energy_savings..kwh float kwh -metadata_and_annual out.electricity.refrigerator.energy_savings..kwh float kwh -metadata_and_annual out.electricity.television.energy_savings..kwh float kwh -metadata_and_annual out.electricity.well_pump.energy_savings..kwh float kwh -metadata_and_annual out.fuel_oil.heating.energy_savings..kwh float kwh -metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.grill.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.heating.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.lighting.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh float kwh -metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh float kwh -metadata_and_annual out.propane.heating.energy_savings..kwh float kwh -metadata_and_annual out.propane.hot_water.energy_savings..kwh float kwh -metadata_and_annual out.propane.range_oven.energy_savings..kwh float kwh -metadata_and_annual out.site_energy.net.energy_savings..kwh float kwh -metadata_and_annual out.site_energy.total.energy_savings..kwh float kwh -metadata_and_annual out.electricity.net.energy_savings..kwh float kwh -metadata_and_annual out.electricity.total.energy_savings..kwh float kwh -metadata_and_annual out.fuel_oil.total.energy_savings..kwh float kwh -metadata_and_annual out.natural_gas.total.energy_savings..kwh float kwh -metadata_and_annual out.propane.total.energy_savings..kwh float kwh -metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu float kbtu -metadata_and_annual out.load.heating.energy_delivered_savings..kbtu float kbtu -metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu float kbtu -metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu float kbtu -metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu float kbtu -metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr float kbtu_hr -metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr float kbtu_hr -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw float kw -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw float kw -metadata_and_annual out.unmet_hours_reduction.cooling..hr float hour -metadata_and_annual out.unmet_hours_reduction.heating..hr float hour -metadata_and_annual out.emissions.fuel_oil.total..co2e_kg float n/a -metadata_and_annual out.emissions.natural_gas.total..co2e_kg float n/a -metadata_and_annual out.emissions.propane.total..co2e_kg float n/a -metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg float n/a -metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg float n/a -metadata_and_annual out.emissions_reduction.propane.total..co2e_kg float n/a -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg float kg -metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg float kg -metadata_and_annual out.utility_bills.electricity_bill_savings..usd float usd -metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd float usd -metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd float usd -metadata_and_annual out.utility_bills.propane_bill_savings..usd float usd -metadata_and_annual out.utility_bills.total_bill_savings..usd float usd -metadata_and_annual out.energy_burden_savings..percentage float percentage -metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 -metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 +metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh float kwh Electricity savings from ceiling fan. +metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh float kwh Electricity savings from clothes dryer. +metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh float kwh Electricity savings from clothes washer. +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (geothermal loop) during cooling. +metadata_and_annual out.electricity.cooling.energy_savings..kwh float kwh Electricity savings from cooling systems excludes usage by fans/pumps. +metadata_and_annual out.electricity.dishwasher.energy_savings..kwh float kwh Electricity savings from dishwasher. +metadata_and_annual out.electricity.ev_charging.energy_savings..kwh float kwh Electricity savings from electric vehicle charging. +metadata_and_annual out.electricity.freezer.energy_savings..kwh float kwh Electricity savings from standalone freezers. +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh float kwh Electricity savings from heat pump backup, excludes usage by heat pump backup fans/pumps. +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. +metadata_and_annual out.electricity.heating.energy_savings..kwh float kwh Electricity savings from heating systems excludes usage by fans/pumps. +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh float kwh Electricity savings from spa heating. +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh float kwh Electricity savings from spa pump. +metadata_and_annual out.electricity.hot_water.energy_savings..kwh float kwh Electricity savings from hot water system excludes recirc pump and solar thermal pump. +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh float kwh Electricity savings from solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs +metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh float kwh Electricity savings from exterior lighting, includes exterior holiday lighting. +metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh float kwh Electricity savings from lighting in the garage. +metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh float kwh Electricity savings from interior lighting. +metadata_and_annual out.electricity.mech_vent.energy_savings..kwh float kwh Electricity savings from mechanical ventilation system, excludes preheating/precooling +metadata_and_annual out.electricity.plug_loads.energy_savings..kwh float kwh Electricity savings from plug loads, excludes independently reported plug loads (e.g., well pump). +metadata_and_annual out.electricity.pool_heater.energy_savings..kwh float kwh Electricity savings from pool heater. +metadata_and_annual out.electricity.pool_pump.energy_savings..kwh float kwh Electricity savings from pool pump. +metadata_and_annual out.electricity.pv.energy_savings..kwh float kwh Energy produced by rooftop PV systems. Negative value for any power produced +metadata_and_annual out.electricity.range_oven.energy_savings..kwh float kwh Electricity savings from range oven. +metadata_and_annual out.electricity.refrigerator.energy_savings..kwh float kwh Electricity savings from refrigerator. +metadata_and_annual out.electricity.television.energy_savings..kwh float kwh Electricity savings from television. +metadata_and_annual out.electricity.well_pump.energy_savings..kwh float kwh Electricity savings from well pump. +metadata_and_annual out.fuel_oil.heating.energy_savings..kwh float kwh Fuel oil savings from fuel oil heating systems, excludes heat pump backup. +metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh float kwh Fuel oil savings from fuel oil hot water systems +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh float kwh Natural gas savings from natural gas clothes dryers. +metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh float kwh Natural gas savings from natural gas fireplaces. +metadata_and_annual out.natural_gas.grill.energy_savings..kwh float kwh Natural gas savings from natural gas grills. +metadata_and_annual out.natural_gas.heating.energy_savings..kwh float kwh Natural gas savings from natural gas heating systems, excludes heat pump backup. +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh float kwh Natural gas savings from spa heating. +metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh float kwh Natural gas savings from natural gas hot water systems. +metadata_and_annual out.natural_gas.lighting.energy_savings..kwh float kwh Natural gas savings from natural gas lighting. +metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh float kwh Natural gas savings from natural gas pool heaters. +metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh float kwh Natural gas savings from natural gas range and oven. +metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh float kwh Propane savings from propane clothes dryers. +metadata_and_annual out.propane.heating.energy_savings..kwh float kwh Propane savings from propane heating systems, excludes heat pump backup +metadata_and_annual out.propane.hot_water.energy_savings..kwh float kwh Propane savings from propane hot water systems. +metadata_and_annual out.propane.range_oven.energy_savings..kwh float kwh Propane savings from range oven. +metadata_and_annual out.site_energy.net.energy_savings..kwh float kwh Total net site energy savings. +metadata_and_annual out.site_energy.total.energy_savings..kwh float kwh Total site energy savings. +metadata_and_annual out.electricity.net.energy_savings..kwh float kwh Total net electricity savings. +metadata_and_annual out.electricity.total.energy_savings..kwh float kwh Total electricity savings. +metadata_and_annual out.fuel_oil.total.energy_savings..kwh float kwh Total fuel oil savings +metadata_and_annual out.natural_gas.total.energy_savings..kwh float kwh Total natural gas savings. +metadata_and_annual out.propane.total.energy_savings..kwh float kwh Total propane savings. +metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by cooling system includes HVAC distribution losses. +metadata_and_annual out.load.heating.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by heating system includes HVAC distribution losses. +metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu float kbtu Savings on the total energy delivered by solar thermal water heater. +metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu float kbtu Savings on the water heater tank losses energy. +metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr float kbtu_hr Reduction on the maximum cooling load delivered by cooling system includes HVAC distribution losses. +metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr float kbtu_hr Reduction on the maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw float kw Reduction on the maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). +metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw float kw Reduction on the maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). +metadata_and_annual out.unmet_hours_reduction.cooling..hr float hour Reduction on the number of hours where the cooling setpoint is not maintained. +metadata_and_annual out.unmet_hours_reduction.heating..hr float hour Reduction on the number of hours where the heating setpoint is not maintained. +metadata_and_annual out.emissions.fuel_oil.total..co2e_kg float n/a Emissions from on-site fuel oil consumption. +metadata_and_annual out.emissions.natural_gas.total..co2e_kg float n/a Emissions from on-site natural gas consumption. +metadata_and_annual out.emissions.propane.total..co2e_kg float n/a Emissions from on-site propane consumption. +metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg float n/a Emissions reduction from on-site fuel oil consumption. +metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg float n/a Emissions reduction from on-site natural gas consumption. +metadata_and_annual out.emissions_reduction.propane.total..co2e_kg float n/a Emissions reduction from on-site propane consumption. +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging +metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging +metadata_and_annual out.utility_bills.electricity_bill_savings..usd float usd Savigns on the scenario annual total charges for electricity. +metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd float usd Savigns on the scenario annual total charges for fuel oil. +metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd float usd Savigns on the scenario annual total charges for natural gas. +metadata_and_annual out.utility_bills.propane_bill_savings..usd float usd Savigns on the scenario annual total charges for propane. +metadata_and_annual out.utility_bills.total_bill_savings..usd float usd Savigns on the scenario annual total charges. +metadata_and_annual out.energy_burden_savings..percentage float percentage Reduction on the percentage of income spent on energy +metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area +metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area +metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area metadata_and_annual upgrade.electric_vehicle_charger string n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.electric_vehicle_efficiency_increase string n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. metadata_and_annual upgrade.electric_vehicle_ownership string n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. @@ -586,227 +585,227 @@ metadata_and_annual upgrade.duct_leakage_and_insulation string n/a Indicates the metadata_and_annual upgrade.infiltration string n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. metadata_and_annual upgrade.insulation_wall string n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. metadata_and_annual upgrade.windows string n/a Only appears when at least one building has this upgrade. -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu float tbtu -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu float tbtu -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh float kWh Supply fan (air distribution) or circulating pump (geothermal loop) -timeseries_aggregates out.electricity.cooling.energy_consumption..kwh float kWh Excludes fans/pumps -timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.freezer.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh float kWh Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh float kWh Excludes heat pump backup fans/pumps -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kWh Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -timeseries_aggregates out.electricity.heating.energy_consumption..kwh float kWh Excludes heat pump backup and fans/pumps -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh float kWh Excludes recirc pump and solar thermal pump -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh float kWh Non-zero only when using detailed (not simple) solar thermal inputs -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh float kWh Includes exterior holiday lighting -timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh float kWh Excludes preheating/precooling -timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh float kWh Excludes independently reported plug loads (e.g., well pump) -timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.pv.energy_consumption..kwh float kWh Negative value for any power produced -timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.television.energy_consumption..kwh float kWh -timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh float kWh -timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh float kWh Excludes heat pump backup -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh float kWh Excludes heat pump backup -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh float kWh -timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh float kWh -timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh float kWh -timeseries_aggregates out.propane.heating.energy_consumption..kwh float kWh Excludes heat pump backup -timeseries_aggregates out.propane.hot_water.energy_consumption..kwh float kWh -timeseries_aggregates out.propane.range_oven.energy_consumption..kwh float kWh -timeseries_aggregates out.site_energy.net.energy_consumption..kwh float kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.site_energy.total.energy_consumption..kwh float kWh Includes any battery charging/discharging -timeseries_aggregates out.electricity.net.energy_consumption..kwh float kWh Subtracts any power produced by PV or generators. -timeseries_aggregates out.electricity.total.energy_consumption..kwh float kWh Includes any battery charging/discharging -timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh float kWh Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -timeseries_aggregates out.natural_gas.total.energy_consumption..kwh float kWh -timeseries_aggregates out.propane.total.energy_consumption..kwh float kWh -timeseries_aggregates out.load.cooling.energy_delivered..kbtu float kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.heating.energy_delivered..kbtu float kBtu Includes HVAC distribution losses. -timeseries_aggregates out.load.hot_water.energy_delivered..kbtu float kBtu Includes contributions by desuperheaters or solar thermal systems. -timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu float kBtu Water heater solar thermal energy. +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. +timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh float kWh Electricity consumed by ceiling fan. +timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh float kWh Electricity consumed by clothes dryer. +timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh float kWh Electricity consumed by clothes washer. +timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. +timeseries_aggregates out.electricity.cooling.energy_consumption..kwh float kWh Electricity consumed by cooling systems excludes usage by fans/pumps. +timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh float kWh Electricity consumed by dishwasher. +timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh float kWh Electricity consumed by electric vehicle charging. +timeseries_aggregates out.electricity.freezer.energy_consumption..kwh float kWh Electricity consumed by standalone freezers. +timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. +timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh float kWh Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps. +timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. +timeseries_aggregates out.electricity.heating.energy_consumption..kwh float kWh Electricity consumed by heating systems excludes usage by fans/pumps. +timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh float kWh Electricity consumed by spa heating. +timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh float kWh Electricity consumed by spa pump. +timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh float kWh Electricity consumed by hot water system excludes recirc pump and solar thermal pump. +timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh float kWh Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs +timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh float kWh Electricity consumed by exterior lighting, includes exterior holiday lighting. +timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh float kWh Electricity consumed by lighting in the garage. +timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh float kWh Electricity consumed by interior lighting. +timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh float kWh Electricity consumed by mechanical ventilation system, excludes preheating/precooling +timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh float kWh Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump). +timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh float kWh Electricity consumed by pool heater. +timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh float kWh Electricity consumed by pool pump. +timeseries_aggregates out.electricity.pv.energy_consumption..kwh float kWh Energy produced by rooftop PV systems. Negative value for any power produced +timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh float kWh Electricity consumed by range oven. +timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh float kWh Electricity consumed by refrigerator. +timeseries_aggregates out.electricity.television.energy_consumption..kwh float kWh Electricity consumed by television. +timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh float kWh Electricity consumed by well pump. +timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh float kWh Fuel oil consumed by fuel oil heating systems, excludes heat pump backup. +timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh float kWh Fuel oil consumed by fuel oil hot water systems +timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh float kWh Natural gas consumed by natural gas clothes dryers. +timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh float kWh Natural gas consumed by natural gas fireplaces. +timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh float kWh Natural gas consumed by natural gas grills. +timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh float kWh Natural gas consumed by heat pump backup. +timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh float kWh Natural gas consumed by natural gas heating systems, excludes heat pump backup. +timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kWh Natural gas consumed by spa heating. +timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh float kWh Natural gas consumed by natural gas hot water systems. +timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh float kWh Natural gas consumed by natural gas lighting. +timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh float kWh Natural gas consumed by natural gas pool heaters. +timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh float kWh Natural gas consumed by natural gas range and oven. +timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh float kWh Propane consumed by propane clothes dryers. +timeseries_aggregates out.propane.heating.energy_consumption..kwh float kWh Propane consumed by propane heating systems, excludes heat pump backup +timeseries_aggregates out.propane.hot_water.energy_consumption..kwh float kWh Propane consumed by propane hot water systems. +timeseries_aggregates out.propane.range_oven.energy_consumption..kwh float kWh Propane consumed by range oven. +timeseries_aggregates out.site_energy.net.energy_consumption..kwh float kWh Total site energy consumed subtracts any power produced by PV or generators +timeseries_aggregates out.site_energy.total.energy_consumption..kwh float kWh Total site energy consumed, includes any battery charging/discharging +timeseries_aggregates out.electricity.net.energy_consumption..kwh float kWh Total electricity consumed subtracts any power produced by PV or generators. +timeseries_aggregates out.electricity.total.energy_consumption..kwh float kWh Total electricity consumed, includes any battery charging/discharging +timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh float kWh Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' +timeseries_aggregates out.natural_gas.total.energy_consumption..kwh float kWh Total natural gas consumed. +timeseries_aggregates out.propane.total.energy_consumption..kwh float kWh Total propane energy consumed +timeseries_aggregates out.load.cooling.energy_delivered..kbtu float kBtu Total energy delivered by cooling system includes HVAC distribution losses. +timeseries_aggregates out.load.heating.energy_delivered..kbtu float kBtu Total energy delivered by heating system includes HVAC distribution losses. +timeseries_aggregates out.load.hot_water.energy_delivered..kbtu float kBtu Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu float kBtu Total energy delivered by solar thermal water heater. timeseries_aggregates out.load.hot_water.energy_tank_losses..kbtu float kBtu Water heater tank losses energy. timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging @@ -838,6 +837,6 @@ timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_k timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging timeseries_aggregates out.total.aer_midcase_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg float n/a -timeseries_aggregates out.emissions.natural_gas.total..co2e_kg float n/a -timeseries_aggregates out.emissions.propane.total..co2e_kg float n/a +timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg float n/a Emissions from on-site fuel oil consumption. +timeseries_aggregates out.emissions.natural_gas.total..co2e_kg float n/a Emissions from on-site natural gas consumption. +timeseries_aggregates out.emissions.propane.total..co2e_kg float n/a Emissions from on-site propane consumption. diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 2d1a68ac7a..d7b08039b3 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,28 +1,28 @@ Column Type,Import From Raw,Publish In Full,Data Type,Timeseries Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,yes,yes,string,no,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,yes,yes,string,no,building_id,,bldg_id,bldg_id,,,,,,,,,The dwelling unit model ID number (between 1 and the number of samples). Input,yes,yes,string,no,completed_status,,completed_status,,,,,,,,,,The simulation status. -Input,yes,yes,string,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,yes,yes,string,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number. Input,yes,yes,string,no,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,yes,yes,float,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. -Calculated,yes,yes,boolean,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Input,yes,yes,float,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of dwelling units this model represents in real life. +Calculated,yes,yes,boolean,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. Output,yes,yes,float,no,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,yes,yes,float,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,yes,yes,float,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Income for this dwelling unit. Calculated,yes,yes,string,no,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,yes,string,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,The American Housing Survey region that the sample is located. -Input,yes,yes,boolean,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,American Indian/Alaska Native/Native Hawaiian Area that the sample is located. -Input,yes,yes,string,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. -Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone according to ASHRAE 169 in 2004 and IECC in 2012 that the sample is located. Climate zone where climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MSClimate zone where climate zone 1A is split between counties in FL and HI." +Input,yes,yes,string,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,American Housing Survey region where the sample is located. +Input,yes,yes,boolean,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,If the dwelling unit model is located in an American Indian/Alaska Native/Native Hawaiian (AIANNH) Area or not. +Input,yes,yes,string,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. Zero for vacant units. +Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. +Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. Climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MS and climate zone 1A is split between counties in FL and HI." Input,yes,yes,string,no,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. -Input,yes,yes,string,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,The size of an onsite battery (not used in baseline models). +Input,yes,yes,string,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,"The presence, size, location, and efficiency of an onsite battery (not used in baseline models)." Input,yes,yes,integer,no,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone that the sample is located. -Input,yes,yes,string,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone that the sample is located. +Input,yes,yes,string,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone where the sample is located. +Input,yes,yes,string,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone where the sample is located. Input,yes,yes,string,no,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. -Input,yes,yes,string,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The U.S. Census Division that the sample is located. -Input,yes,yes,string,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 that the sample is located. RECS 2015 splits the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." -Input,yes,yes,string,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The U.S. Census Region that the sample is located. -Input,yes,yes,string,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The City that the sample is located. +Input,yes,yes,string,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The 2010 U.S. Census Division where the sample is located. +Input,yes,yes,string,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 where the sample is located. RECS 2015 split the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." +Input,yes,yes,string,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The 2010 U.S. Census Region where the sample is located. +Input,yes,yes,string,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The census-designated city where the sample is located. Input,yes,yes,string,no,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." Input,yes,yes,string,no,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. Input,yes,yes,string,no,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. @@ -36,51 +36,51 @@ Input,yes,yes,boolean,no,build_existing_model.cooling_setpoint_has_offset,,in.co Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. Input,yes,yes,string,no,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. -Input,yes,yes,string,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County that the sample is located. -Input,yes,yes,string,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area that the sample is located. -Input,yes,yes,string,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,"The Metro Status of the county that the sample is located, based on MSA and MicroSA." +Input,yes,yes,string,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County where the sample is located. +Input,yes,yes,string,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area (PUMA) where the sample is located. +Input,yes,yes,string,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,Whether the county is part of a census-defined metro area. Input,yes,yes,string,no,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. Input,yes,yes,string,no,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." Input,yes,yes,string,no,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,The presence and rated efficiency of the dishwasher. Input,yes,yes,string,no,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. Input,yes,yes,string,no,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. Input,yes,yes,string,no,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. -Input,yes,yes,string,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -Input,yes,yes,string,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of Duct System. +Input,yes,yes,string,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Dcuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. +Input,yes,yes,string,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of duct System. Input,yes,yes,string,no,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. -Input,yes,yes,integer,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,The rating of electric panel in Ampere. -Input,yes,yes,string,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,The rating bin of electric panel in Ampere. -Input,yes,yes,string,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range in miles. -Input,yes,yes,string,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,The percentage a household would or do charge their electric vehicle at home. -Input,yes,yes,string,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of electric vehicle charger used at the dwelling unit. -Input,yes,yes,integer,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. Because EVs drive less miles/year than ICE, the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." -Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,The unit has an outlet within 20 feet of vehicle parking. -Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,The dwelling unit owns an electric vehicle. -Input,yes,yes,string,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per EnergyStar guidelines as of 2023." +Input,yes,yes,integer,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,Electric panel service or max current rating in Ampere (A). +Input,yes,yes,string,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,Electric panel service or max current rating in bins of Ampere (A). +Input,yes,yes,string,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range. +Input,yes,yes,string,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,Percentage of EV charging that occurs at the dwelling units. +Input,yes,yes,string,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of EV charger used at the dwelling unit. +Input,yes,yes,integer,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. EVs are driven fewer miles than internal combustine engine (ICE) cars, so the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." +Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,If the dwelling unit has an electric outlet within 20 feet of EV parking. +Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,If the dwelling unit owns an EV. +Input,yes,yes,string,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per 2023 ENERGYSTAR guidelines." Input,yes,yes,string,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment region that the sample is located in. +Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment (GEA) region from Cambium 2023. Input,yes,yes,string,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. -Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." +Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the multi-family attached unit horizontally within the building (left, middle, right)." Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." Input,yes,yes,string,no,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." -Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building. -Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of units in the single-family attached building. -Input,yes,yes,string,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey. -Input,yes,yes,string,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 U.S. Energy Information Administration Residential Energy Consumption Survey building type with multi-family buildings split out by low-rise, mid-rise, and high-rise." -Input,yes,yes,string,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building where the dwelling unit is located. +Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of dwelling units in the single-family attached building where the dwelling unit is located. +Input,yes,yes,string,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey (ACS). +Input,yes,yes,string,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 Residential Energy Consumption Survey (RECS) building type, with multi-family buildings split out by low-rise, mid-rise, and high-rise." +Input,yes,yes,string,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the Residential Energy Consumption Survey (RECS). Input,yes,yes,string,no,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -Input,yes,yes,string,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area of the dwelling unit using bins from the U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area bin from Residential Energy Consumption Survey (RECS). Input,yes,yes,string,no,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. Input,yes,yes,string,no,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. -Input,yes,yes,string,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level mf, attic, foundation, and garage." +Input,yes,yes,string,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level if it is multi-family, foundation, attic, and garage." Input,yes,yes,integer,no,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. Input,yes,yes,string,no,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. -Input,yes,yes,string,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,The building has more than 8 or less than 8 stories. +Input,yes,yes,string,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,Binned height of the dwelling unit's building of more or less than 8 stories. Input,yes,yes,string,no,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. Input,yes,yes,string,no,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. -Input,yes,yes,float,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (in Btu/hr-ft-F) of the ground using in foundation and geothermal heat pump heat transfer calculations. -Input,yes,yes,boolean,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,The dwelling unit has a rooftop photovoltaic system. -Input,yes,yes,string,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary fuel used for heating the dwelling unit. +Input,yes,yes,float,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (Btu/hr-ft-F) of the ground used for foundation and geothermal heat pump heat transfer calculations. +Input,yes,yes,boolean,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,If the dwelling unit has a rooftop photovoltaic system. +Input,yes,yes,string,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary heating fuel. Input,yes,yes,string,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. Input,yes,yes,string,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. Input,yes,yes,boolean,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. @@ -88,18 +88,18 @@ Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_magnitude,, Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. Input,yes,yes,string,no,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). Input,yes,yes,string,no,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. -Input,yes,yes,string,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage and flow levels. +Input,yes,yes,string,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage. Input,yes,yes,string,no,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. Input,yes,yes,string,no,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -Input,yes,yes,string,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of primary cooling system in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system provides cooling. -Input,yes,yes,string,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system in the dwelling unit. -Input,yes,yes,boolean,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of the primary cooling system. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system covers. +Input,yes,yes,string,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system. +Input,yes,yes,boolean,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts. Input,yes,yes,string,no,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. Input,yes,yes,boolean,no,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. Input,yes,yes,string,no,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -Input,yes,yes,string,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system in the dwelling unit. +Input,yes,yes,string,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system. +Input,yes,yes,string,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system. Input,yes,yes,string,no,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit @@ -108,13 +108,13 @@ Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_type,,in.hva Input,yes,yes,string,no,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates. -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge. -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates. -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge. -Input,yes,yes,string,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2015 U.S. Energy Information Administration Residential Energy Consumption Survey. -Input,yes,yes,string,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income of the household occupying the dwelling unit that are aligned with the 2020 U.S. Energy Information Administration Residential Energy Consumption Survey. +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates (not used). +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge (not used). +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates (not used). +Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge (not used). +Input,yes,yes,string,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income bin of the household occupying the dwelling unit. +Input,yes,yes,string,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income bin of the household occupying the dwelling unit that are aligned with the 2015 Residential Energy Consumption Survey (RECS). +Input,yes,yes,string,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income bin of the household occupying the dwelling unit that are aligned with the 2020 Residential Energy Consumption Survey (RECS). Input,yes,yes,string,no,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. Input,yes,yes,string,no,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). Input,yes,yes,string,no,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. @@ -124,13 +124,13 @@ Input,yes,yes,string,no,build_existing_model.insulation_roof,,in.insulation_roof Input,yes,yes,string,no,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. Input,yes,yes,string,no,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. Input,yes,yes,string,no,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. -Input,yes,yes,string,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator or regional transmission organization region that the sample is located. -Input,yes,yes,string,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,"Qualitative lamp type fractions in each household surveyed are distributed to three options representing 100% incandescent, 100% CFl, and 100% LED lamp type options." +Input,yes,yes,string,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator (ISO) or regional transmission organization (RTO) region where the dwelling unit is located. +Input,yes,yes,string,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,Fraction of lighting types. Input,yes,yes,string,no,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. Input,yes,yes,string,no,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. -Input,yes,yes,string,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,A custom ResStock region constructed of RECS 2009 reportable domains that the sample is located. +Input,yes,yes,string,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,Custom ResStock region where the sample is located. Input,yes,yes,string,no,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. -Input,yes,yes,string,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) that the sample is located. +Input,yes,yes,string,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) where the sample is located. Input,yes,yes,string,no,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. Input,yes,yes,string,no,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. Input,yes,yes,string,no,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` @@ -140,7 +140,7 @@ Input,yes,yes,string,no,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_s Input,yes,yes,string,no,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. Input,yes,yes,string,no,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. Input,yes,yes,string,no,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. -Input,yes,yes,string,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump according to the use of well for domestic water source. +Input,yes,yes,string,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump for domestic water source. Input,yes,yes,string,no,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. Input,yes,yes,string,no,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. Input,yes,yes,string,no,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. @@ -148,23 +148,23 @@ Input,yes,yes,string,no,build_existing_model.orientation,,in.orientation,in.orie Input,yes,yes,string,no,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" Input,yes,yes,string,no,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. Input,yes,yes,string,no,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. -Input,yes,yes,string,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The Public Use Microdata Area from 2010 U.S. Census that the sample is located. -Input,yes,yes,string,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The public use microdata area metropolitan status that the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The orientation of the photovoltaic system. +Input,yes,yes,string,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The 2010 Public Use Microdata Area (PUMA) where the dwelling unit is located. +Input,yes,yes,string,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The Public Use Microdata Area (PUMA) metropolitan status where the dwelling unit is located. +Input,yes,yes,string,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The presence and orientation of the photovoltaic system. Input,yes,yes,string,no,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. Input,yes,yes,string,no,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). Input,yes,yes,string,no,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. -Input,yes,yes,string,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area that the sample is located. +Input,yes,yes,string,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area where the dwelling unit is located. Input,yes,yes,string,no,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. Input,yes,yes,string,no,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. Input,yes,yes,string,no,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. -Input,yes,yes,string,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State the sample is located. -Input,yes,yes,string,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,State Metro median income of the household occupying the dwelling unit. This is different from State Median Income in that the Income Limits are differentiated by Metro and Nonmetro portions of the state. +Input,yes,yes,string,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State. +Input,yes,yes,string,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,"The census-supplied median income for dwelling units in the metro area where the dwelling unit is located, which can be different from the State Median Income." Input,yes,yes,string,no,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. Input,yes,yes,string,no,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. Input,yes,yes,string,no,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. -Input,yes,yes,string,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period in which the building was constructed. -Input,yes,yes,string,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey. +Input,yes,yes,string,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period bin in which the building was constructed. +Input,yes,yes,string,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period bin in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey (ACS). Input,yes,yes,string,no,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." Input,yes,yes,string,no,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. Input,yes,yes,boolean,no,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. @@ -174,7 +174,7 @@ Input,yes,yes,string,no,build_existing_model.windows,,in.windows,in.windows,,,,, Input,yes,yes,float,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. Input,yes,yes,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. Input,yes,no,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,"The number of dwelling units this simulation represents, which is different than the weight field. Should always be one." Input,yes,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." Input,yes,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." Input,yes,no,string,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." @@ -185,11 +185,11 @@ Input,yes,no,float,no,build_existing_model.emissions_propane_values,,in.emission Input,yes,no,string,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." Input,yes,no,string,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." Input,yes,no,float,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,Starting day of the starting month (must be valid for month) for the annual run period desired. +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"Starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"Calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,Ending day of the ending month (must be valid for month) for the annual run period desired. +Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"End month number (1 = January, 2 = February, etc.) for the annual run period desired." Input,yes,yes,integer,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. Input,yes,no,string,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." Input,yes,no,string,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." @@ -207,7 +207,7 @@ Input,yes,no,string,no,build_existing_model.utility_bill_pv_monthly_grid_connect Input,yes,no,float,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." Input,yes,no,string,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." Input,yes,no,float,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +Input,yes,yes,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." Input,yes,yes,string,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." Input,yes,no,float,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." Input,yes,no,float,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." @@ -238,96 +238,96 @@ Output,yes,yes,float,no,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params Output,yes,yes,float,no,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area Output,yes,yes,integer,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. Output,yes,yes,float,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,no,no,float,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Excludes fans/pumps -Output,no,no,float,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1, -Output,no,no,float,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Negative value for any power produced -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,Excludes heat pump backup fans/pumps -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Excludes heat pump backup and fans/pumps -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Excludes recirc pump and solar thermal pump -Output,no,no,float,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,Includes exterior holiday lighting -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,Excludes preheating/precooling -Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1, -Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Negative value for any power produced -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1, -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1, -Output,no,no,float,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Positive value for any fuel consumed -Output,no,no,float,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,Excludes heat pump backup -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107, -Output,no,no,float,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Subtracts any power produced by PV or generators. -Output,yes,yes,float,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,Includes any battery charging/discharging -Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Subtracts any power produced by PV or generators. -Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,Includes any battery charging/discharging -Output,yes,yes,float,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,yes,yes,float,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107, -Output,yes,yes,float,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, -Output,yes,yes,float,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, -Output,yes,yes,float,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, -Output,yes,yes,float,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,, -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,, -Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Includes HVAC distribution losses. -Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. -Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Water heater solar thermal energy. +Output,no,no,float,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Electricity consumed by battery. Positive value for charging (including efficiency losses); negative value for discharging. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1,Electricity consumed by ceiling fan. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1,Electricity consumed by clothes dryer. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1,Electricity consumed by clothes washer. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Electricity consumed by cooling systems excludes usage by fans/pumps. +Output,no,no,float,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1,Electricity consumed by dehumidifier. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1,Electricity consumed by dishwasher. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1,Electricity consumed by electric vehicle charging. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1,Electricity consumed by standalone freezers. +Output,no,no,float,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Electricity consumed by generator. Negative value for any power produced. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,"Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps." +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Electricity consumed by heating systems excludes usage by fans/pumps. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1,Electricity consumed by spa heating. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1,Electricity consumed by spa pump. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Electricity consumed by hot water system excludes recirc pump and solar thermal pump. +Output,no,no,float,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1,Electricity consumed by hot water recirc pump and solar thermal pump. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,"Electricity consumed by exterior lighting, includes exterior holiday lighting." +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1,Electricity consumed by lighting in the garage. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1,Electricity consumed by interior lighting. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,"Electricity consumed by mechanical ventilation system, excludes preheating/precooling" +Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1,Electricity consumed by mechanical ventilation for precooling. +Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1,Electricity consumed by mechanical ventilation for preheating. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump)." +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1,Electricity consumed by pool heater. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1,Electricity consumed by pool pump. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Energy produced by rooftop PV systems. Negative value for any power produced +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1,Electricity consumed by range oven. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1,Electricity consumed by refrigerator. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1,Electricity consumed by television. +Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1,Electricity consumed by well pump. +Output,no,no,float,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1,Electricity consumed by whole house fan system. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by clothes dryer. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil fireplace. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil generator. Positive value for any fuel consumed. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil grill. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,"Fuel oil consumed by fuel oil heating systems, excludes heat pump backup." +Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by fuel oil hot water systems +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil lighting. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by mechanical ventilation for preheating. +Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by range and oven. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas clothes dryers. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas fireplaces. +Output,no,no,float,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas generator. Positive value for any fuel consumed. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas grills. +Output,no,no,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,"Natural gas consumed by natural gas heating systems, excludes heat pump backup." +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by spa heating. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas hot water systems. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas lighting. +Output,no,no,float,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by mechanical ventilation for preheating. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas pool heaters. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas range and oven. +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane clothes dryers. +Output,no,no,float,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane fireplace. +Output,no,no,float,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propance generator. Positive value for any fuel consumed +Output,no,no,float,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane grill. +Output,no,no,float,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Propane consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,"Propane consumed by propane heating systems, excludes heat pump backup" +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane hot water systems. +Output,no,no,float,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane lighting. +Output,no,no,float,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107,Propane consumed by mechanical ventilation for preheating. +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107,Propane consumed by range oven. +Output,yes,yes,float,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Total site energy consumed subtracts any power produced by PV or generators +Output,yes,yes,float,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,"Total site energy consumed, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Total electricity consumed subtracts any power produced by PV or generators. +Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,"Total electricity consumed, includes any battery charging/discharging" +Output,yes,yes,float,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,yes,yes,float,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107,Total natural gas consumed. +Output,yes,yes,float,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107,Total propane energy consumed +Output,yes,yes,float,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,,Hot water consumed by clothes washer +Output,yes,yes,float,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,,Hot water consumed by dishwasher +Output,yes,yes,float,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,,Hot water consumed by water distribution system (water remaining in the pipe) +Output,yes,yes,float,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,"Hot water consumed by showers, sinks, and baths" +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,,Cooling Capacity +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,,Heat pump backup Capacity +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,,Heating Capacity +Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Total energy delivered by cooling system includes HVAC distribution losses. +Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heating system includes HVAC distribution losses. +Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Total energy delivered by solar thermal water heater. Output,yes,yes,float,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. -Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,float,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. -Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) -Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum cooling load delivered by cooling system includes HVAC distribution losses. +Output,yes,yes,float,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period. +Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). +Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). Output,yes,yes,float,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. Output,yes,yes,float,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. Output,yes,yes,float,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. @@ -445,46 +445,46 @@ Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,no,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, -Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Output,yes,no,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107,Cooling consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107,Cooling consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107,Cooling consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107,Cooling consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107,Cooling consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107,Cooling consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107,Cooling consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107,Cooling consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107,Cooling consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107,Cooling consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107,Cooling consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107,Cooling consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) +Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107,Heating consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107,Heating consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107,Heating consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107,Heating consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107,Heating consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107,Heating consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107,Heating consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107,Heating consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107,Heating consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107,Heating consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107,Heating consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107,Heating consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) +Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging Calculated,yes,yes,float,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,integer,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,integer,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure @@ -566,233 +566,233 @@ Calculated,yes,yes,float,no,,,,out.electricity.total.energy_consumption_intensit Calculated,yes,yes,float,no,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,no,no,float,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, -Calculated,no,no,float,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, -Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, -Calculated,yes,yes,float,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,float,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, -Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,, -Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, -Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,, -Calculated,yes,yes,float,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,, -Calculated,yes,yes,float,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,, -Calculated,yes,yes,float,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, -Calculated,yes,yes,float,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,, -Calculated,yes,yes,float,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,, -Calculated,yes,yes,float,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,, -Calculated,yes,yes,float,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,, -Calculated,yes,yes,float,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,, -Calculated,yes,yes,float,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,, +Calculated,no,no,float,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,,Electricity savings from battery. Positive value for charging (including efficiency losses); negative value for discharging. +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,,Electricity savings from ceiling fan. +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,,Electricity savings from clothes dryer. +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,,Electricity savings from clothes washer. +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (geothermal loop) during cooling. +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,,Electricity savings from cooling systems excludes usage by fans/pumps. +Calculated,no,no,float,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,,Electricity savings from dehumidifier. +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,,Electricity savings from dishwasher. +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,,Electricity savings from electric vehicle charging. +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,,Electricity savings from standalone freezers. +Calculated,no,no,float,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,,Electricity savings from generator. Negative value for any power produced. +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,,"Electricity savings from heat pump backup, excludes usage by heat pump backup fans/pumps." +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,,Electricity savings from heating systems excludes usage by fans/pumps. +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,,Electricity savings from spa heating. +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,,Electricity savings from spa pump. +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,,Electricity savings from hot water system excludes recirc pump and solar thermal pump. +Calculated,no,no,float,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,,Electricity savings from hot water recirc pump and solar thermal pump. +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,,Electricity savings from solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,,"Electricity savings from exterior lighting, includes exterior holiday lighting." +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,,Electricity savings from lighting in the garage. +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,,Electricity savings from interior lighting. +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,,"Electricity savings from mechanical ventilation system, excludes preheating/precooling" +Calculated,no,no,float,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,,Electricity savings from mechanical ventilation for precooling. +Calculated,no,no,float,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,,Electricity savings from mechanical ventilation for preheating. +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,,"Electricity savings from plug loads, excludes independently reported plug loads (e.g., well pump)." +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,,Electricity savings from pool heater. +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,,Electricity savings from pool pump. +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,,Energy produced by rooftop PV systems. Negative value for any power produced +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,,Electricity savings from range oven. +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,,Electricity savings from refrigerator. +Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,,Electricity savings from television. +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,,Electricity savings from well pump. +Calculated,no,no,float,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,,Electricity savings from whole house fan system. +Calculated,no,no,float,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,,Fuel oil savings from clothes dryer. +Calculated,no,no,float,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,,Fuel oil savings from oil fireplace. +Calculated,no,no,float,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,,Fuel oil savings from oil generator. Positive value for any fuel consumed. +Calculated,no,no,float,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,,Fuel oil savings from oil grill. +Calculated,no,no,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,,Fuel oil savings from heat pump backup. +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,,"Fuel oil savings from fuel oil heating systems, excludes heat pump backup." +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,,Fuel oil savings from fuel oil hot water systems +Calculated,no,no,float,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,,Fuel oil savings from oil lighting. +Calculated,no,no,float,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,,Fuel oil savings from mechanical ventilation for preheating. +Calculated,no,no,float,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,,Fuel oil savings from range and oven. +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,,Natural gas savings from natural gas clothes dryers. +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,,Natural gas savings from natural gas fireplaces. +Calculated,no,no,float,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,,Natural gas savings from natural gas generator. Positive value for any fuel consumed. +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,,Natural gas savings from natural gas grills. +Calculated,no,no,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,,Natural gas savings from heat pump backup. +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,,"Natural gas savings from natural gas heating systems, excludes heat pump backup." +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,,Natural gas savings from spa heating. +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,,Natural gas savings from natural gas hot water systems. +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,,Natural gas savings from natural gas lighting. +Calculated,no,no,float,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,,Natural gas savings from mechanical ventilation for preheating. +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,,Natural gas savings from natural gas pool heaters. +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,,Natural gas savings from natural gas range and oven. +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,,Propane savings from propane clothes dryers. +Calculated,no,no,float,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,,Propane savings from propane fireplace. +Calculated,no,no,float,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,,Propane savings from propance generator. Positive value for any fuel consumed +Calculated,no,no,float,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,,Propane savings from propane grill. +Calculated,no,no,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,,Propane savings from heat pump backup. +Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,,"Propane savings from propane heating systems, excludes heat pump backup" +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,,Propane savings from propane hot water systems. +Calculated,no,no,float,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,,Propane savings from propane lighting. +Calculated,no,no,float,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,,Propane savings from mechanical ventilation for preheating. +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,,Propane savings from range oven. +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,,Total net site energy savings. +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,,Total site energy savings. +Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,,Total net electricity savings. +Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,,Total electricity savings. +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,,Total fuel oil savings +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,,Total natural gas savings. +Calculated,yes,yes,float,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,,Total propane savings. +Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by cooling system includes HVAC distribution losses. +Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heating system includes HVAC distribution losses. +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,,Savings on the total energy delivered by solar thermal water heater. +Calculated,yes,yes,float,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,,Savings on the water heater tank losses energy. +Calculated,yes,yes,float,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,,Reduction on the maximum cooling load delivered by cooling system includes HVAC distribution losses. +Calculated,yes,yes,float,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,,Reduction on the maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period +Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,,Reduction on the maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). +Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,,Reduction on the maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). +Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,,Reduction on the number of hours where the cooling setpoint is not maintained. +Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,,Reduction on the number of hours where the heating setpoint is not maintained. +Calculated,yes,yes,float,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,,Emissions from on-site fuel oil consumption. +Calculated,yes,yes,float,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,,Emissions from on-site natural gas consumption. +Calculated,yes,yes,float,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,,Emissions from on-site propane consumption. +Calculated,yes,yes,float,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site fuel oil consumption. +Calculated,yes,yes,float,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site natural gas consumption. +Calculated,yes,yes,float,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site propane consumption. +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" +Calculated,yes,yes,float,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for electricity. +Calculated,yes,yes,float,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for fuel oil. +Calculated,yes,yes,float,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for natural gas. +Calculated,yes,yes,float,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for propane. +Calculated,yes,yes,float,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges. +Calculated,yes,yes,float,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,,Reduction on the percentage of income spent on energy +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,no,string,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,no,string,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. @@ -839,169 +839,169 @@ Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,, +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. From 251e66628efb752a1aacf3db0e804dd83f5e1365 Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 16 Oct 2025 14:13:00 -0600 Subject: [PATCH 30/82] update enumeration description --- .../publication/enumeration_dictionary.tsv | 340 +++++++++--------- 1 file changed, 170 insertions(+), 170 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv index 25be40db7e..06897afbd0 100644 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -1,6 +1,6 @@ metadata_column enumeration enumeration_description -applicability TRUE The upgrade is not applicable to the building -completed_status Success The upgrade is applicable to the building +applicability TRUE The upgrade is applicable to the building +completed_status Success Simulation for the model was completed in.ahs_region "CBSA Atlanta-Sandy Springs-Roswell, GA" "American Housing Survey region Atlanta-Sandy Springs-Roswell, GA" in.ahs_region "CBSA Boston-Cambridge-Newton, MA-NH" "American Housing Survey region Boston-Cambridge-Newton, MA-NH" in.ahs_region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" "American Housing Survey region Chicago-Naperville-Elgin, IL-IN-WI" @@ -2638,25 +2638,25 @@ in.ashrae_iecc_climate_zone_2004 7A IECC Climate Zone 7A in.ashrae_iecc_climate_zone_2004 7AK IECC Climate Zone 7AK in.ashrae_iecc_climate_zone_2004 7B IECC Climate Zone 7B in.ashrae_iecc_climate_zone_2004 8AK IECC Climate Zone 8AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL IECC Climate Zone where 1A and 2A is split: 1A down selected to FL -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI IECC Climate Zone where 1A and 2A is split: 1A down selected to HI -in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - FL, GA, AL, MS" "IECC Climate Zone where 1A and 2A is split: 2A down selected to FL, GA, AL, MS" -in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - TX, LA" "IECC Climate Zone where 1A and 2A is split: 2A down selected to TX, LA" -in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B IECC Climate Zone where 1A and 2A is split: 2B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A IECC Climate Zone where 1A and 2A is split: 3A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B IECC Climate Zone where 1A and 2A is split: 3B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C IECC Climate Zone where 1A and 2A is split: 3C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A IECC Climate Zone where 1A and 2A is split: 4A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B IECC Climate Zone where 1A and 2A is split: 4B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C IECC Climate Zone where 1A and 2A is split: 4C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A IECC Climate Zone where 1A and 2A is split: 5A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B IECC Climate Zone where 1A and 2A is split: 5B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A IECC Climate Zone where 1A and 2A is split: 6A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B IECC Climate Zone where 1A and 2A is split: 6B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A IECC Climate Zone where 1A and 2A is split: 7A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK IECC Climate Zone where 1A and 2A is split: 7AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B IECC Climate Zone where 1A and 2A is split: 7B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK IECC Climate Zone where 1A and 2A is split: 8AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL IECC Climate Zone Split: 1A down selected to FL +in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI IECC Climate Zone Split: 1A down selected to HI +in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - FL, GA, AL, MS" "IECC Climate Zone Split: 2A down selected to FL, GA, AL, MS" +in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - TX, LA" "IECC Climate Zone Split: 2A down selected to TX, LA" +in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B IECC Climate Zone Split: 2B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A IECC Climate Zone Split: 3A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B IECC Climate Zone Split: 3B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C IECC Climate Zone Split: 3C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A IECC Climate Zone Split: 4A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B IECC Climate Zone Split: 4B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C IECC Climate Zone Split: 4C +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A IECC Climate Zone Split: 5A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B IECC Climate Zone Split: 5B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A IECC Climate Zone Split: 6A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B IECC Climate Zone Split: 6B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A IECC Climate Zone Split: 7A +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK IECC Climate Zone Split: 7AK +in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B IECC Climate Zone Split: 7B +in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK IECC Climate Zone Split: 8AK in.bathroom_spot_vent_hour Hour0 "Bathroom spot ventilation occurs at hour 0, and lasts for 1 hour" in.bathroom_spot_vent_hour Hour1 "Bathroom spot ventilation occurs at hour 1, and lasts for 1 hour" in.bathroom_spot_vent_hour Hour10 "Bathroom spot ventilation occurs at hour 10, and lasts for 1 hour" @@ -21582,140 +21582,140 @@ in.range_spot_vent_hour Hour6 "Range in.range_spot_vent_hour Hour7 "Range spot ventilation occurs at hour 7, and lasts for 1 hour" in.range_spot_vent_hour Hour8 "Range spot ventilation occurs at hour 8, and lasts for 1 hour" in.range_spot_vent_hour Hour9 "Range spot ventilation occurs at hour 9, and lasts for 1 hour" -in.reeds_balancing_area 1 Balancing area 1 of the Regional Energy Deployment System Model -in.reeds_balancing_area 2 Balancing area 2 of the Regional Energy Deployment System Model -in.reeds_balancing_area 3 Balancing area 3 of the Regional Energy Deployment System Model -in.reeds_balancing_area 4 Balancing area 4 of the Regional Energy Deployment System Model -in.reeds_balancing_area 5 Balancing area 5 of the Regional Energy Deployment System Model -in.reeds_balancing_area 6 Balancing area 6 of the Regional Energy Deployment System Model -in.reeds_balancing_area 7 Balancing area 7 of the Regional Energy Deployment System Model -in.reeds_balancing_area 8 Balancing area 8 of the Regional Energy Deployment System Model -in.reeds_balancing_area 9 Balancing area 9 of the Regional Energy Deployment System Model -in.reeds_balancing_area 10 Balancing area 10 of the Regional Energy Deployment System Model -in.reeds_balancing_area 11 Balancing area 11 of the Regional Energy Deployment System Model -in.reeds_balancing_area 12 Balancing area 12 of the Regional Energy Deployment System Model -in.reeds_balancing_area 13 Balancing area 13 of the Regional Energy Deployment System Model -in.reeds_balancing_area 14 Balancing area 14 of the Regional Energy Deployment System Model -in.reeds_balancing_area 15 Balancing area 15 of the Regional Energy Deployment System Model -in.reeds_balancing_area 16 Balancing area 16 of the Regional Energy Deployment System Model -in.reeds_balancing_area 17 Balancing area 17 of the Regional Energy Deployment System Model -in.reeds_balancing_area 18 Balancing area 18 of the Regional Energy Deployment System Model -in.reeds_balancing_area 19 Balancing area 19 of the Regional Energy Deployment System Model -in.reeds_balancing_area 20 Balancing area 20 of the Regional Energy Deployment System Model -in.reeds_balancing_area 21 Balancing area 21 of the Regional Energy Deployment System Model -in.reeds_balancing_area 22 Balancing area 22 of the Regional Energy Deployment System Model -in.reeds_balancing_area 23 Balancing area 23 of the Regional Energy Deployment System Model -in.reeds_balancing_area 24 Balancing area 24 of the Regional Energy Deployment System Model -in.reeds_balancing_area 25 Balancing area 25 of the Regional Energy Deployment System Model -in.reeds_balancing_area 26 Balancing area 26 of the Regional Energy Deployment System Model -in.reeds_balancing_area 27 Balancing area 27 of the Regional Energy Deployment System Model -in.reeds_balancing_area 28 Balancing area 28 of the Regional Energy Deployment System Model -in.reeds_balancing_area 29 Balancing area 29 of the Regional Energy Deployment System Model -in.reeds_balancing_area 30 Balancing area 30 of the Regional Energy Deployment System Model -in.reeds_balancing_area 31 Balancing area 31 of the Regional Energy Deployment System Model -in.reeds_balancing_area 32 Balancing area 32 of the Regional Energy Deployment System Model -in.reeds_balancing_area 33 Balancing area 33 of the Regional Energy Deployment System Model -in.reeds_balancing_area 34 Balancing area 34 of the Regional Energy Deployment System Model -in.reeds_balancing_area 35 Balancing area 35 of the Regional Energy Deployment System Model -in.reeds_balancing_area 36 Balancing area 36 of the Regional Energy Deployment System Model -in.reeds_balancing_area 37 Balancing area 37 of the Regional Energy Deployment System Model -in.reeds_balancing_area 38 Balancing area 38 of the Regional Energy Deployment System Model -in.reeds_balancing_area 39 Balancing area 39 of the Regional Energy Deployment System Model -in.reeds_balancing_area 40 Balancing area 40 of the Regional Energy Deployment System Model -in.reeds_balancing_area 41 Balancing area 41 of the Regional Energy Deployment System Model -in.reeds_balancing_area 42 Balancing area 42 of the Regional Energy Deployment System Model -in.reeds_balancing_area 43 Balancing area 43 of the Regional Energy Deployment System Model -in.reeds_balancing_area 44 Balancing area 44 of the Regional Energy Deployment System Model -in.reeds_balancing_area 45 Balancing area 45 of the Regional Energy Deployment System Model -in.reeds_balancing_area 46 Balancing area 46 of the Regional Energy Deployment System Model -in.reeds_balancing_area 47 Balancing area 47 of the Regional Energy Deployment System Model -in.reeds_balancing_area 48 Balancing area 48 of the Regional Energy Deployment System Model -in.reeds_balancing_area 49 Balancing area 49 of the Regional Energy Deployment System Model -in.reeds_balancing_area 50 Balancing area 50 of the Regional Energy Deployment System Model -in.reeds_balancing_area 51 Balancing area 51 of the Regional Energy Deployment System Model -in.reeds_balancing_area 52 Balancing area 52 of the Regional Energy Deployment System Model -in.reeds_balancing_area 53 Balancing area 53 of the Regional Energy Deployment System Model -in.reeds_balancing_area 54 Balancing area 54 of the Regional Energy Deployment System Model -in.reeds_balancing_area 55 Balancing area 55 of the Regional Energy Deployment System Model -in.reeds_balancing_area 56 Balancing area 56 of the Regional Energy Deployment System Model -in.reeds_balancing_area 57 Balancing area 57 of the Regional Energy Deployment System Model -in.reeds_balancing_area 58 Balancing area 58 of the Regional Energy Deployment System Model -in.reeds_balancing_area 59 Balancing area 59 of the Regional Energy Deployment System Model -in.reeds_balancing_area 60 Balancing area 60 of the Regional Energy Deployment System Model -in.reeds_balancing_area 61 Balancing area 61 of the Regional Energy Deployment System Model -in.reeds_balancing_area 62 Balancing area 62 of the Regional Energy Deployment System Model -in.reeds_balancing_area 63 Balancing area 63 of the Regional Energy Deployment System Model -in.reeds_balancing_area 64 Balancing area 64 of the Regional Energy Deployment System Model -in.reeds_balancing_area 65 Balancing area 65 of the Regional Energy Deployment System Model -in.reeds_balancing_area 66 Balancing area 66 of the Regional Energy Deployment System Model -in.reeds_balancing_area 67 Balancing area 67 of the Regional Energy Deployment System Model -in.reeds_balancing_area 68 Balancing area 68 of the Regional Energy Deployment System Model -in.reeds_balancing_area 69 Balancing area 69 of the Regional Energy Deployment System Model -in.reeds_balancing_area 70 Balancing area 70 of the Regional Energy Deployment System Model -in.reeds_balancing_area 71 Balancing area 71 of the Regional Energy Deployment System Model -in.reeds_balancing_area 72 Balancing area 72 of the Regional Energy Deployment System Model -in.reeds_balancing_area 73 Balancing area 73 of the Regional Energy Deployment System Model -in.reeds_balancing_area 74 Balancing area 74 of the Regional Energy Deployment System Model -in.reeds_balancing_area 75 Balancing area 75 of the Regional Energy Deployment System Model -in.reeds_balancing_area 76 Balancing area 76 of the Regional Energy Deployment System Model -in.reeds_balancing_area 77 Balancing area 77 of the Regional Energy Deployment System Model -in.reeds_balancing_area 78 Balancing area 78 of the Regional Energy Deployment System Model -in.reeds_balancing_area 79 Balancing area 79 of the Regional Energy Deployment System Model -in.reeds_balancing_area 80 Balancing area 80 of the Regional Energy Deployment System Model -in.reeds_balancing_area 81 Balancing area 81 of the Regional Energy Deployment System Model -in.reeds_balancing_area 82 Balancing area 82 of the Regional Energy Deployment System Model -in.reeds_balancing_area 83 Balancing area 83 of the Regional Energy Deployment System Model -in.reeds_balancing_area 84 Balancing area 84 of the Regional Energy Deployment System Model -in.reeds_balancing_area 85 Balancing area 85 of the Regional Energy Deployment System Model -in.reeds_balancing_area 86 Balancing area 86 of the Regional Energy Deployment System Model -in.reeds_balancing_area 87 Balancing area 87 of the Regional Energy Deployment System Model -in.reeds_balancing_area 88 Balancing area 88 of the Regional Energy Deployment System Model -in.reeds_balancing_area 89 Balancing area 89 of the Regional Energy Deployment System Model -in.reeds_balancing_area 90 Balancing area 90 of the Regional Energy Deployment System Model -in.reeds_balancing_area 91 Balancing area 91 of the Regional Energy Deployment System Model -in.reeds_balancing_area 92 Balancing area 92 of the Regional Energy Deployment System Model -in.reeds_balancing_area 93 Balancing area 93 of the Regional Energy Deployment System Model -in.reeds_balancing_area 94 Balancing area 94 of the Regional Energy Deployment System Model -in.reeds_balancing_area 95 Balancing area 95 of the Regional Energy Deployment System Model -in.reeds_balancing_area 96 Balancing area 96 of the Regional Energy Deployment System Model -in.reeds_balancing_area 97 Balancing area 97 of the Regional Energy Deployment System Model -in.reeds_balancing_area 98 Balancing area 98 of the Regional Energy Deployment System Model -in.reeds_balancing_area 99 Balancing area 99 of the Regional Energy Deployment System Model -in.reeds_balancing_area 100 Balancing area 100 of the Regional Energy Deployment System Model -in.reeds_balancing_area 101 Balancing area 101 of the Regional Energy Deployment System Model -in.reeds_balancing_area 102 Balancing area 102 of the Regional Energy Deployment System Model -in.reeds_balancing_area 103 Balancing area 103 of the Regional Energy Deployment System Model -in.reeds_balancing_area 104 Balancing area 104 of the Regional Energy Deployment System Model -in.reeds_balancing_area 105 Balancing area 105 of the Regional Energy Deployment System Model -in.reeds_balancing_area 106 Balancing area 106 of the Regional Energy Deployment System Model -in.reeds_balancing_area 107 Balancing area 107 of the Regional Energy Deployment System Model -in.reeds_balancing_area 108 Balancing area 108 of the Regional Energy Deployment System Model -in.reeds_balancing_area 109 Balancing area 109 of the Regional Energy Deployment System Model -in.reeds_balancing_area 110 Balancing area 110 of the Regional Energy Deployment System Model -in.reeds_balancing_area 111 Balancing area 111 of the Regional Energy Deployment System Model -in.reeds_balancing_area 112 Balancing area 112 of the Regional Energy Deployment System Model -in.reeds_balancing_area 113 Balancing area 113 of the Regional Energy Deployment System Model -in.reeds_balancing_area 114 Balancing area 114 of the Regional Energy Deployment System Model -in.reeds_balancing_area 115 Balancing area 115 of the Regional Energy Deployment System Model -in.reeds_balancing_area 116 Balancing area 116 of the Regional Energy Deployment System Model -in.reeds_balancing_area 117 Balancing area 117 of the Regional Energy Deployment System Model -in.reeds_balancing_area 118 Balancing area 118 of the Regional Energy Deployment System Model -in.reeds_balancing_area 119 Balancing area 119 of the Regional Energy Deployment System Model -in.reeds_balancing_area 120 Balancing area 120 of the Regional Energy Deployment System Model -in.reeds_balancing_area 121 Balancing area 121 of the Regional Energy Deployment System Model -in.reeds_balancing_area 122 Balancing area 122 of the Regional Energy Deployment System Model -in.reeds_balancing_area 123 Balancing area 123 of the Regional Energy Deployment System Model -in.reeds_balancing_area 124 Balancing area 124 of the Regional Energy Deployment System Model -in.reeds_balancing_area 125 Balancing area 125 of the Regional Energy Deployment System Model -in.reeds_balancing_area 126 Balancing area 126 of the Regional Energy Deployment System Model -in.reeds_balancing_area 127 Balancing area 127 of the Regional Energy Deployment System Model -in.reeds_balancing_area 128 Balancing area 128 of the Regional Energy Deployment System Model -in.reeds_balancing_area 129 Balancing area 129 of the Regional Energy Deployment System Model -in.reeds_balancing_area 130 Balancing area 130 of the Regional Energy Deployment System Model -in.reeds_balancing_area 131 Balancing area 131 of the Regional Energy Deployment System Model -in.reeds_balancing_area 132 Balancing area 132 of the Regional Energy Deployment System Model -in.reeds_balancing_area 133 Balancing area 133 of the Regional Energy Deployment System Model -in.reeds_balancing_area 134 Balancing area 134 of the Regional Energy Deployment System Model +in.reeds_balancing_area 1 Balancing area 1 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 2 Balancing area 2 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 3 Balancing area 3 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 4 Balancing area 4 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 5 Balancing area 5 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 6 Balancing area 6 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 7 Balancing area 7 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 8 Balancing area 8 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 9 Balancing area 9 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 10 Balancing area 10 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 11 Balancing area 11 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 12 Balancing area 12 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 13 Balancing area 13 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 14 Balancing area 14 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 15 Balancing area 15 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 16 Balancing area 16 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 17 Balancing area 17 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 18 Balancing area 18 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 19 Balancing area 19 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 20 Balancing area 20 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 21 Balancing area 21 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 22 Balancing area 22 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 23 Balancing area 23 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 24 Balancing area 24 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 25 Balancing area 25 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 26 Balancing area 26 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 27 Balancing area 27 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 28 Balancing area 28 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 29 Balancing area 29 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 30 Balancing area 30 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 31 Balancing area 31 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 32 Balancing area 32 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 33 Balancing area 33 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 34 Balancing area 34 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 35 Balancing area 35 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 36 Balancing area 36 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 37 Balancing area 37 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 38 Balancing area 38 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 39 Balancing area 39 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 40 Balancing area 40 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 41 Balancing area 41 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 42 Balancing area 42 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 43 Balancing area 43 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 44 Balancing area 44 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 45 Balancing area 45 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 46 Balancing area 46 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 47 Balancing area 47 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 48 Balancing area 48 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 49 Balancing area 49 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 50 Balancing area 50 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 51 Balancing area 51 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 52 Balancing area 52 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 53 Balancing area 53 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 54 Balancing area 54 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 55 Balancing area 55 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 56 Balancing area 56 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 57 Balancing area 57 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 58 Balancing area 58 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 59 Balancing area 59 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 60 Balancing area 60 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 61 Balancing area 61 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 62 Balancing area 62 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 63 Balancing area 63 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 64 Balancing area 64 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 65 Balancing area 65 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 66 Balancing area 66 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 67 Balancing area 67 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 68 Balancing area 68 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 69 Balancing area 69 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 70 Balancing area 70 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 71 Balancing area 71 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 72 Balancing area 72 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 73 Balancing area 73 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 74 Balancing area 74 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 75 Balancing area 75 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 76 Balancing area 76 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 77 Balancing area 77 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 78 Balancing area 78 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 79 Balancing area 79 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 80 Balancing area 80 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 81 Balancing area 81 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 82 Balancing area 82 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 83 Balancing area 83 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 84 Balancing area 84 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 85 Balancing area 85 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 86 Balancing area 86 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 87 Balancing area 87 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 88 Balancing area 88 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 89 Balancing area 89 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 90 Balancing area 90 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 91 Balancing area 91 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 92 Balancing area 92 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 93 Balancing area 93 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 94 Balancing area 94 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 95 Balancing area 95 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 96 Balancing area 96 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 97 Balancing area 97 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 98 Balancing area 98 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 99 Balancing area 99 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 100 Balancing area 100 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 101 Balancing area 101 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 102 Balancing area 102 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 103 Balancing area 103 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 104 Balancing area 104 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 105 Balancing area 105 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 106 Balancing area 106 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 107 Balancing area 107 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 108 Balancing area 108 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 109 Balancing area 109 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 110 Balancing area 110 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 111 Balancing area 111 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 112 Balancing area 112 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 113 Balancing area 113 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 114 Balancing area 114 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 115 Balancing area 115 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 116 Balancing area 116 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 117 Balancing area 117 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 118 Balancing area 118 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 119 Balancing area 119 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 120 Balancing area 120 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 121 Balancing area 121 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 122 Balancing area 122 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 123 Balancing area 123 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 124 Balancing area 124 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 125 Balancing area 125 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 126 Balancing area 126 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 127 Balancing area 127 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 128 Balancing area 128 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 129 Balancing area 129 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 130 Balancing area 130 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 131 Balancing area 131 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 132 Balancing area 132 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 133 Balancing area 133 of the Regional Energy Deployment System Model Version 2019 +in.reeds_balancing_area 134 Balancing area 134 of the Regional Energy Deployment System Model Version 2019 in.reeds_balancing_area None No information on the balancing area of the Regional Energy Deployment System Model in.refrigerator EF 10.2 Refrigerator with energy factor 10.2 in.refrigerator EF 10.5 Refrigerator with energy factor 10.5 @@ -58391,23 +58391,23 @@ upgrade.duct_leakage_and_insulation "5% Leakage to Outside, R-8" "Duct leakage a upgrade.duct_leakage_and_insulation None No duct leakage and insulation upgrade upgrade.electric_vehicle_charger Level 1 charger The dwelling unit installs a Level 1 electric vehicle charger in the upgrade upgrade.electric_vehicle_charger Level 2 charger The dwelling unit installs a Level 2 electric vehicle charger in the upgrade -upgrade.electric_vehicle_charger None No electric vehicle charger +upgrade.electric_vehicle_charger None No change to electric vehicle charger upgrade.electric_vehicle_efficiency_increase 15% The efficiency of the electric vehicle is increased by 15% in the upgrade upgrade.electric_vehicle_efficiency_increase None No increase of the efficiency of the electric vehicle -upgrade.electric_vehicle_ownership None No electric vehicle +upgrade.electric_vehicle_ownership None No change to electric vehicle ownership upgrade.electric_vehicle_ownership Yes The dwelling unit has one electric vehicle in the upgrade upgrade.heating_fuel Natural Gas Heating fuel is changed to natural gas in the upgrade -upgrade.heating_fuel None No change on heating fuel +upgrade.heating_fuel None No change to heating fuel upgrade.hvac_cooling_efficiency "AC, SEER 15" "Cooling efficiency is changed to AC, SEER 15 in the upgrade" upgrade.hvac_cooling_efficiency "AC, SEER2 13.4" "Cooling efficiency is changed to AC, SEER2 13.4 in the upgrade" upgrade.hvac_cooling_efficiency "AC, SEER2 14.3" "Cooling efficiency is changed to AC, SEER2 14.3 in the upgrade" upgrade.hvac_cooling_efficiency Ducted Heat Pump Cooling efficiency is changed to Ducted Heat Pump in the upgrade -upgrade.hvac_cooling_efficiency None No change on cooling efficiency +upgrade.hvac_cooling_efficiency None No change to cooling efficiency upgrade.hvac_cooling_efficiency "Room AC, EER 12.0" "Cooling efficiency is changed to Room AC, EER 12.0 in the upgrade" upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% conditioned for cooling in the upgrade -upgrade.hvac_cooling_partial_space_conditioning None No change on cooling partial space conditioning +upgrade.hvac_cooling_partial_space_conditioning None No change to cooling partial space conditioning upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted HVAC system upgraded to Cold Climate Heat Pump Ducted -upgrade.hvac_detailed_performance_data None No change on HVAC system +upgrade.hvac_detailed_performance_data None No change to HVAC system upgrade.hvac_heating_efficiency "ASHP, SEER2 14.3, 7.5 HSPF2" "Heating efficiency is upgraded to ASHP, SEER2 14.3, 7.5 HSPF2" upgrade.hvac_heating_efficiency "ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" "Heating efficiency is upgraded to ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" @@ -58429,30 +58429,30 @@ upgrade.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 68% AFUE" "Heating eff upgrade.hvac_heating_efficiency "GSHP, EER 18.6, COP 3.8" "Heating efficiency is upgraded to GSHP, EER 18.6, COP 3.8" upgrade.hvac_heating_efficiency "GSHP, EER 20.5, COP 4.0" "Heating efficiency is upgraded to GSHP, EER 20.5, COP 4.0" upgrade.hvac_heating_efficiency "GSHP, EER 30.9, COP 4.4" "Heating efficiency is upgraded to GSHP, EER 30.9, COP 4.4" -upgrade.hvac_heating_efficiency None No change on heating efficiency +upgrade.hvac_heating_efficiency None No change to heating efficiency upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Heating type and fuel is upgraded to Natural Gas Fuel Furnace -upgrade.hvac_heating_type_and_fuel None No change on heating type and fuel +upgrade.hvac_heating_type_and_fuel None No change to heating type and fuel upgrade.infiltration 5 ACH50 The infiltration rate is upgraded to 5ACH50 -upgrade.infiltration None No change on infiltration rate +upgrade.infiltration None No change to infiltration rate upgrade.infiltration_reduction 13% The infiltration rate is reduced by 13% upgrade.infiltration_reduction 30% The infiltration rate is reduced by 30% -upgrade.infiltration_reduction None No infiltration rate reduction -upgrade.insulation_ceiling None No ceiling insulation upgrade +upgrade.infiltration_reduction None No change to infiltration rate +upgrade.insulation_ceiling None No change to ceiling insulation upgrade.insulation_ceiling R-49 The ceiling insulation is upgraded to R-49 upgrade.insulation_ceiling R-60 The ceiling insulation is upgraded to R-60 -upgrade.insulation_wall None No wall insulation upgrade +upgrade.insulation_wall None No change to wall insulation upgrade.insulation_wall "Wood Stud, R-13" "The wall insulation is upgraded to Wood Stud, R-13" upgrade.water_heater_efficiency "Electric Heat Pump, 50 gal, 3.78 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 50 gal, 3.78 UEF" upgrade.water_heater_efficiency "Electric Heat Pump, 66 gal, 3.95 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 66 gal, 3.95 UEF" upgrade.water_heater_efficiency "Electric Heat Pump, 80 gal, 3.98 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 80 gal, 3.98 UEF" upgrade.water_heater_efficiency "High Efficiency Natural Gas Tankless, Condensing" "Water heater efficiency is upgraded to High Efficiency Natural Gas Tankless, Condensing" -upgrade.water_heater_efficiency None No water heater efficiency upgrade +upgrade.water_heater_efficiency None No change to water heater efficiency upgrade.water_heater_fuel Electricity Water heater fuel is changed to Electricity upgrade.water_heater_fuel Natural Gas Water heater fuel is changed to Natural Gas -upgrade.water_heater_fuel None No change on water heater fuel +upgrade.water_heater_fuel None No change to water heater fuel upgrade.windows "EnergyStar, North-Central" "Windows is upgraded to EnergyStar, North-Central" upgrade.windows "EnergyStar, Northern" "Windows is upgraded to EnergyStar, Northern" upgrade.windows "EnergyStar, South-Central" "Windows is upgraded to EnergyStar, South-Central" upgrade.windows "EnergyStar, Southern" "Windows is upgraded to EnergyStar, Southern" -upgrade.windows None No windows upgrade +upgrade.windows None No change to windows weight 253.9036727 One dwelling unit simulation results represents 253.903672727272 dwelling units From 89405be098e1aa9a2906054d3ad9fb2cec70b97e Mon Sep 17 00:00:00 2001 From: Elaina Present <46542418+ekpresent@users.noreply.github.com> Date: Fri, 17 Oct 2025 11:40:10 -0600 Subject: [PATCH 31/82] Create col in sdr_column_definitions with ResStock 2024.2 equivalents --- ...umn_definitions_with_2024-2_equivalents.xlsx | Bin 0 -> 88707 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..3d980ea9bb8f6de640fc66fce492dbbad842dc07 GIT binary patch literal 88707 zcmeFYgHngmei=cQ-1H(#@v3ySqa|36XB;ln{{aj!kXyU7O$Y zocEmTobUSw&dYVNSbEKxHFMA0_sm*slw^^RpCh0mpdlb2P$86JoAY=hA|O0LK|sJq zKzpJqW@GJWV(n@gvTE>j((YZP1k+F1=;qJ@_u@VX&RV@mmJ>?(J<` zz|$Jv7}u4UA74CB7rOt7zH=Crj{EL}X!w0*C#Ip{Ju1@EYmBTh{p+{4osn4s8_VjE zNUy*gDIBY)5u-8X#BV<|%TmP|zg=1Kd_db6(|?cH*-hx(%i#8KDY|Bx|B@5@)2X$C z&IV|?hX*7CrT@a)H)Ns1uK?aI0<^>gcxz~H^4Wov1%CX0eEnZc(*KltdEB@R(is4ypnPx1iN-*jI)*&Ri#R-tw9=X&t99=yhzq-WrG+L;3w_AtCGDG|*o*TkGGd0`kv8K)xYq31U z2fj^hrt@_F@Uqhv4Ykew8tZ?el%x7{1~McBgnLv31Z)6D*UzjjHuhE@ZEURIW3WJ7 z-)4^Oxo39mLyWek{2H>9j9SUSOjxb_)b+VvK*T5FuThz^3b|$1OD<$+cShLy;q5Ee zI=x#4*=wZP<(MlA9AAFM2|g$Pxc)|3{ny49Y<+!&Tk3TpS>yKsapl3}DWdduRfbWT zGE2+}jZg%UH1dH8=HHZToMtF*g3FBY*kubbKT=KB`!aG-r}h)o1fso)Sj(Z*%X{{& zY{@@2NmgN2YP`&7!diqAzx#=2JamH79K{n`PxMS*{aTHHR)p#2@K&yT@0ky%L_j1H9_PV4XkD7jT1S`5o>B)QH6Di} zw!JdF6vhNc-&W1O;dm1>BU?=ANawmyi0|$Hlqm6TUiZ_tDcFmxzLmgmQF-F#_mY3) zr-?Q;ElwGM2UqS_dnG%>*%FevchApU?1g3wekB#)UEl@$ZSQ(VTF2%L7JXUV$<7>V zB1X%+ZL2$D#-;fQ+W`gR(yK<8VCHEA%C(=)2O3UVOb3O}hw3_KV{DoFL=4`)+O<&4 zhlmYRW?igD%X*$}Myj7#YrOs>Tfxx1yuSe9IG|H2q!I*w4P35$JGmd&-QSvhFSZ`g zID#_PDDRg3U^9=VzFUiX+Au|an;qrV{=p!|gGUEP>4($(^AVQM!?aTtF84g2v46dc z{wPfBh~JhO(R-gGNO~<9?}`_xQ{1I6;qLd*F+)Y-b-IoET8>A_GrU>ZJDNQ@{MFjk zS&m4_=DVvyn5ntFVx^Ibuz|x5_R(wm-1^oPc2%&_lrjWaU6AuT#e1B}-Th~ypAVmh z%{Mi0{IYS#A$7*9$B9@kIUieNuy{t#V*z9PaeI*yf9226>6H+{|KWvutYafr;WA3` z^=nk?^WX7xo^nN7YN2H@4#$Ye&8^xiWXqKYjeC8+OXpP;Yvy=GkyNY9QfsJuT0?$} zLF;0ARv?|39`C#3P~HqR#N*kGw~MLsjD8iCVah{Hf!|QB`nYP1O*bAI z#O5zhv;EvC#-T*$(gM%i5XQGBslZnq5*KKv&9|oVZX;G5`PWZ3NWaRGmvIR~f*dJ> z`y?s68RHx_@=}}Bk5(Mt-3&0c&7U$2o*kL4_xDaM0hRvmEyJ-nq$oOxfFKS<;R27qqVu=VOUA$Y14plA9f5WFejAa~V6VYy{PPHUWdYa@zz5XtZ*soiNHHOtz zf1>4Mi)3M4Y|}j~a36d2=@(LvLUPHQB12@~qG$NxH`QijkkUfD?)I;9$c>s2YFIRL zlo(x1H~}u^Mp`9|q}7$YCSd7$KPOX4<#Jlo)tP5U=Y4eB&-p|ryMAOVGrH$!L6g$` zsU@;Kkv&cbuh&;;MKjCkWc zQ+U!t-oU)fp?>xw#@2l`EUSN&JI;ij-6~n@Wm30dJJGyO`0lrlY3~&MnhwVpOZSV(sHKDG@@KKVk7?$OR;h*T(TeH zcM>u{m$O`MtHVaF?6z8L5y#8>1#S?-qyTMXUhd|y z6v3Jidn2APJ-I*AZfp#fP=R!8ayet7;rc0xXXuiWboL^vVl-@S9yFf>PaH&lyT1Fv zruDXO^nua4DDYSdji1P)isv`P*J`2dv1K0*8J-8#pXy`Rzw(?R;Ei(gQh`4@mReVH zRhul*+e(EU-@f$dI(2th^1@th@Qh6riF@|&eZlSPZcdrf77Yev>)oAA+ucPK)bQba z=BV{{bt4RHplzTnjvJYP3xFdXxFg(>P7O6VSu7g zv~yS6&$1}$`yTqcaQyq8XoBci)rYUA^y^dEuf5+{->GgW_EmXT-lFqfYz<_`m_4Y# z@a+#O0E77%nJm)eOW|ue_FIQE$q35fhl{1Q`|J57hoU(M%O`%N?N(4s-o7HZO#jC$7@@w`-cJvC-5h#~7!`iwFfjTNe|9e+$!lpLX=jB2?Fq zxuSZ1t3fn2Lz0q)Naxd-{m%X?lEr>Y(Ej_B1+z7S-;>BbdyS?QImUAbxQEQ@lRn_Q z=#(}x4$_}E*}sHPU~%oPi4{6uf+t&CBUX9v8DVx7OCULiheX8rt&cG@?tSP;mbr$W zEG#quu*N%^iwVdu;9nrM|H6&bXYIV)fJ}cM!_X1C@H9@1mDM6)-Lwo_Glu@Sm&;q| zJ5)44c3{Ccbw@S7{BtH1TEi$+ig}oqp&wFkyRVs&Ec7xMZyiT(LZold7=|%`-ki8B z_j~!glJpkFg3ai;e`eO_d9fw;{k|2sCmSACfg`$%Oc&Dl`aK%uaDuEo;`@(9jCLq) z1DA>jDy9#vFIXYQO;oA4~e#23tYoRX|=JSi8L zcf$mnZ0=$SOT|t1?2(wywr9md+)rH@>IQpX<>^f`yQ8WJVlElq+M~<{ewBY$`j<)1 zS_vtaTfCIGFvq!0P_k@i9{y_Lb~09Mk!|%C@1) zcSxHatn_3|j1qvc1!G^?67w6B*~DZuJQ*j`4K9Mo_VCvsr)2|`6u0-4h;AdKo=mqBGw=Z&evfa;}ELVacba>}G>O>KeZy3Bb9l%=$!+- za!OmO=A3WoDDf;{5vP#vEG;v%CH0-KMw$U1KLU8;++Lh^i8&u-HnMCR+h_NMe5qT! zOn$dhybKa?!34tV#P^}*xfFMcgW{@NBkN5Yc?@6}RzSSwsHn!B!GN`jSwaPH5b>W( z#S@gtR94X0?mbij(2!LqyQ31}T~bcE!z%d^A~U?|5+i7zDa|l-Nj*a}+3tj@T*=XN zU)}oRdi38fFKlTgTtvqq>AT+obrpy{;cf)8v&45^I^=Zq2*7Vq>zKG{ zKDU)(mn5&1dRI5Em0l-L@{oC>2LZ= zxQUSZ2m<4}5v^Ys)%0oLWC5+Sn^4VPN=TP{I2(!I^}Tm4-w98r8vNqZ`4v`jwZN_s zqu!HvTb0ryAnHxP zZlgn`)d8P`>v-U0UNifTJy2V{bJN-B)cC179BV@q?O~TeP0AZY#Q=r41T?!Vu@ofNi$Qiicr@)T*#$YY` zPPO|4%66@5Kg?p(w~*>L?(ydY**xXH@nplmJ4R2!kK3O*bNh~X&mfLuyEA^q``l)U zYqF(#_OyhDLfKi!l02nrb9}YQ`DIFX9G2;KWRA!Mc^@by{`Rc_Ilne}cnQzasTSZ` zmpt4VL|2WzIYg1tABQzd6zY}O66=D0CHah<|2%G%#+-dAPCH>ET25pNmNb;N={x(G zoY_q1xAuf6fCXJ`6S||9|F}X+#9MUYE&h>fzv@-Ua(VUA47<+cP;ArscpMZ~=t)Z^ zXNhjA(Uk53b9>!*tmWeFc3|wroTuW#RE44~?>T5S&SInAMw7BP(l?ak$W}+2(r{q? zM5T?*cjSn+KAyHdBnerMmvc>)KaB|Q# zKBtsFs;f1pe3ESW8{oc6VwhU>uYgV&f3+Ej6B~p&h4Ik(NrvHe`_NJ0&-lWhAu^k~ zVVKoA&P+WLP57#RksUUnS##i>WkE`0j-Cbi94JYXNRdHUIIW|OMAH+5#UFAN{0 z!C(Q+)F51O>9#UEb;8|Dmpt9ECHP&&m-K4NuOmMM2oFYvK0$G2XNNvXgP>Y|slBVe z>oXT*KbXmW0Az2zhzTx{ff7v+rL{Pt`?Odj%mRN#rVhCeF8FM-I%b5M2B-iifp(E#j1s;jcCAUKV8T;##+{AHCp$){vTPiG7J%j-&&u>5`i#dpQh%VGK(IA`!PGY} z^VBja9@DLMA7c8gz@LbzW5~z_XirrCf15rfH0gmQb@-L@QS1+#1PbWbw`Lf&7sn$# zMdt8_ceAeK%f}ERp=6StqS|&swrX_BKx&{S`yi_5q|8xy9SEP$nk{t-(Z2PQ%q635 z4y^w0vLtonmGc0>0{!o=&)XLxIXGg58m?H+?oa#wZ#wv&OeM6UIQHqrV9!vS&e;C| z15qgNw$uVB;Ax#d1C()+2}FEq-Vd|S^L1qVm*0#fzR7P8Tz`4*F9Oy?Oau0fNU!OM z5E30Fhna3;jTTws1lti;RK)p8rXiAA|29lV)6t2j z#uIJQBr@jmGfKu5fQWb5YtVZ5yy^o{RC3ye_0Zd_zMqggv~@gCdQ{NGa)0v7 zL`+^F!t2o7CHeOj&4dN5)fw=w)3ovtmq+3rDxFTjP0{>7pb zH{!yNPGm={8H0&*6D!i6CHlO|ou z==~3Ecq`w&Fi90eEE@^_5DK*$`>QsTZ?ff}8oLjC8@XT4EFcR>esb8KYvSMqlu>s# z3{V1DeNm0YihxtMQJ|ZJZ2q>zVHwa1P~}*+gntyT|CW+@y9gu}_1`(RuzGx0xzizAVs~XV~<=9sp!i_XRM4q)bxFHvw^Wv(_Jf(giQtAzeEx5Q~W) zu$_w26ffN8vGhRIrmFHOgZj=z$r;46C6mGW-D=z6x?cs?{rsAr7eAbU=?alGRn}l{ zOHkjMkL=HJBTXIJ9Jk+u+6(O%vCFc>&pv8^ww}j)qx2ZhQk*Va1Aedo0sHUwt-pm+ zb)As;_{Tj-XY;2AC-_|B_BAO^Ua3r4dG*?)mt8Mrs)}sTRyoPr_dd>ug}>PbC}heC z-q2GQZp0B*IUi`fK@d>J)My6&C7_RbU?J@N?;Jk{rAx}Dj^12U0RqF)F=YEFFkK7o zL;!Rn^-o`zH0&dkJ)XemFIXS7=;!~JDWF9we&v%8aoD#`xHA72x68Mk$Vr(7K~360 z;Ux(`sG=GiOYC|HnW-yuDORm|Y$E>-7bqUv--_fFI?;H*VP3g$tI1Ewuc_G892~%u z8iAPpH1~D6T|zSr`qxaGhR-xRz={D3j}#~!B|k^ka6au8wDlgWV|4YNjpOeEGEdvs zBV^Y90U1FYN(mpu%frs6+~^LoE1q|nkEJvH`8cvytXqKpPaA@xKnp$iWdaw&&vu}> zyE8NRfalPwZJ)olLFVXs9Dz?=_Dp`liw7h{u%#P>S-lI1VfMO#xU~MTkzAbdmcV?v zgtJL@S2de^6+c;s4)oDemzt+9lo|QqxOp9D1%+3GFKzLMOoA`Z0p;P)^GjVhq@x6u zlI7b^tX=Yc2SbtxnKpo~tU|<7S6(%;16dYUcimk7*YXKou>XZOGZD*x{Vbvy>r3D+ z#*(cmE5INgF$bS$CX}|I!{=U;XtYiUk z1(%{a^ABskm^fz{IXCHh7=NQ}LaX(3oq1ITB?yw94TpO$x@HV-9OKussvYvi;VA zT+@~EonM#(>gD*TUJG&BF;jA^CiJcS@J>n{F(zb^1JTtWbEGcF8x?W8|JPVd0I)|` zO^T69TOW5^p?X9YBb)r1SU56Uop?`E8&?8p{A z-hW_-ZtL~oiKUmGJE6((PWJY&_u>U_hu)qbr%ARQkn}K{M$ze2NtrG^Rp{9SdUx4+_p;A8BT*4;q6!zvsBYDG$#K z_(|PEza%-@eVa@w;KEA!n^!yO9Y8Ncji*ZWEN!)Yi?*^n5S?Xh$abk*gcJj;7VO^i z!>%IR;~7plZ9ls~Lgf%>&`sHWl^Gj17-MfEA0Ib(qObcZ(r&ZGMuQD2^8UbfyRc1r zVi+XrBdxRLU)au|pNcKwN55DCq2L?^nRb{Puc{K_f@(Vju7)vw<%$Lbi?QO5#Iax{ zVaC_~>ZtyZP}z-m#b$Ve1APn$^!lTa58*FrtPl=bubL-z47E!7cq*i=WYLDb^cOX4 zVQ)y8gz2=v2_}6E`lU)q)cI%KniAsTubEO6wZ+9{sPWfual2FL+q64EI73ctjfy^N zib1oRc8t*3rS}}a$r~nA%7G~RA?e#7wnADT-a=)tEn2laq)%V4A)E$xh&7H;D3FJ7bNKTWO4gja(J6V*ABj%feHq5-0Q?HVBb}g17Z9PUk8F zGaFh1(Wo2&SvU!`$LopMQ7}$XHTe2v`JRxhou-Ci&sK_waXTo)u^?yh=GQi3AWUDf zb*cm-WUUj2QDLWvQ5u#M1d?!R4|=2>uSCwk%U;1cnVZf_FZ}{EnxU+-ww%f#rCIdk zb9@pB<7%t9C+%S3b6C~l9g~X+8;fB{6G4dBo<`V*ZPO9yiJlJSwdBv2`Z{X}lPTVO z=!IZAgb{GE>R*sN)VC`8XI`vyWwDW7t89(cPK%zoXc3zu#}>`bDsT@OD^dXm)Eya8 zpWg$51Y+czy`nc-4HkQI%Qbb<`*NQ068`HDn>OHl{XZK97tIfR{S1kZl{ z)j2UmSv#%_+!V9ncY7&d_+CpmQNR#&XTW0)Y7&#Rei3%NeVh4uMspc~9%z^LWY~~o zbMa9*>FQWx$H$lM{DbheRLqRmzw|nuBq{(y5v7RpoR~!Oe-L6BR+E=%3^?uOY zp6p=j`wW@|$TzYr#KQAC1bve`gKBv*HKCJ+|K-&H1r)QoW!cwiBw@5?O+K zJ*^HH+l6%zd0as#QYSkF6Xg8{ABBj{9$q_sc1(lu!L3)!jqouM-7lL6%*2t(!bUao zTpma0&N$Q}fD0?iT9Q=eCmzVBkj3|mhTGrx01veCyFlWKb7kU0nx|@yOc&z5zxi7l zNPVfLmh~tC+0AfVBW|2Rwg> ze9RyeeiVdiXAH*JhCW6ENwZz~-2^ZSh{g#X%_d;N!0d#+EJG@gjk=Q>y&+CoD=b(O zYjywivJq(8;8QBo%BU(Ecszt@*h9s4UM>Cc<^fK4u6WNT2(~5~e0zqbH#9;MU|MPk!!fExGt7xDBJ(!;7SgrRO?zXFBffL3@Y29>4@!zFGh8h*i% z6EOr4mT68N4?Eu4*SS_;t{wAeNEcSj5~eP%G9S$rZ9EOT0P-+v zKsS-%Y0GnK`wXE-d~XULJeb~#70VFwldZ>Fa8tlz%EX2zVIqW3lPIeU@F)%29xU?@ zvfYRkXuuUBq&hG1pE_`RKbCnA^6i*cc-rid+-nHOOqcn8LBn>-OA8%lDX=GrK&i89 ztV&r3biT0+FWmAU<$4;0?NTju|Ah@t9j%keJKAy@51FsBZsBVT7hWu&}~^hRk*XW1he03En!Dl_ug~> z;$z}Tu&jNk(m&V0ak3<<6CxxpY6PYz=ZwzBh7ZPS?J&J)-Khz@O|I#!&i9`bcw@lW)2M+Ef(%MN& zfJOj7JD}#e8bJ-|ijQLrP_{LIeNvjM2y&V%x()EAf)E2Gcc)$T0qo6YCT?=a-Z_<~ zD~`e=f!`*kvbk6gV21XgJ`vuCQ>bEb_YL9|`x-8&8_sK6q1vmnzr)4x1?kvXiutu8 zfPRWLvQzl%3=l8@(`*>j;7|K7<)Qyk;PDoZAz5h!6~aTp2L+f2Xs_5$qpXds{+5Ny1`7aZKCmpolNbUm|F$<9i~-5p#mMTO8n(>PHq-^$!NmZW zr&YQ|;bCoweHCs2CK6l$Z+ZD7az7`hvp2#fp?+f6P`6y7pp0G1;#{wYRBg*31@2!5Nef|3wha+1z z^r&!Mr%bkj-{2o`fi>p8)VtFCKi7K^+g#$x(V4k7x310OU%BIMCL;o}Ba(71cmU&M z$ljPv{+t2h%vNYvr5=fpB=u2*HYB8AyG&y_m5#kT+OZaDaRnydDUW2mf3F+-445&o zm`2skVO_7d+m|{1H7xKIoJuGC?6lym%LzsN5b7T|iqt-^hLgmD(A-zYrriV}#A$&m zB>(da5c2OV%soUe!^F6=4d7H-Ti$l=&J6&N(pppM4A;YtuagBjq>F>eUiqoeTIZIA z!BY8h4bX-IkhvqUg7+bvFa0SK_A3WS%{UQzD;>nPIm+h0Fp z%t^&O3{U2Uv*QaeeYZv#DyZPO0eY|qm+7-S?jahzP5%slOZGx( zw!|MNX*Wh??NEbOfgMj1zT@$@-anlHHlvp5M&uz4n-u9eUM%;nrvhD_u9LKn``r_0 zu3Oj8G#u7aSu|NvCI~sgboL>t7O<&>FS5mheqL@KxQDMUbi?XX&S=ZQEPHa}AQfPR6P10g+E!wWPD!WU*40Qz5*Qi>9DD zh7f&thRCKZsQF|S)6mIYV$W~srH$8`qr>vBgHga#eblR98`%_ZPW}N5CF67EZ<>PO zxNcaw;b@poti)&-4vUpT6G6#NAmO@!E;mRauCn=toL$PnH;U(qygKpTXCgd{0P!SH z(N{bwc^V~}6x8f?)HgkB6<+|YpsqY2J4&&*n!XIIaJ(XXS)BDineo!%ig3fE7-OZv zCiWAzrhMG5dNkQP1T84xhuIsWLgA+ftnNkrwzHnACnS3|6*Ck~Fta$v*7IBZ0&pvH zVWPLr&N1_(m|(H!&+-sA0Z91u5b#1Ma54OjJcU^;lo^ZZ zno0DJhE}MsAL;buf{Nl=R!?w5VFpM$GK+kGzhiMhMbV%8x5utmgy;1aX=F_vrP31{ z6~(@k`u)0!NN{K7Ia#rkdK&oxaD*@1g}lU+P5$ zOk{TknuZ*Blv=l8$ekw2eQSVy$Z!)&ROeu)p`q(n=ZTf(eIjC+!6&5c0||)JC_Fwd z1U+Md6){C2jg+knAspuwW1r?&2p#YE zfrYw&fAodzXZ@)#BGoYrD7H>Yf$xX1;ufW{2*BW{QPDUSaUcH;dK@`n1rpARI0~O! z$((_wlj)hY(sX4y_!BS#uqr6YXs#}E-};@ZD^jeBej?Qn^c2wv(8ObDqIU+Hkjj9s zym*{yM&V>^N&p5L1Mt{;ypNwy1q2UYEl3k;`wr3n34U$t`n8}F#}wQ+^|jQVCSzwc zyE(j>0BaxH4`t+S-|tN;c1+9YN7ZnrU8=0WznW$^)C1}^lPA8Cvml(PM-#XTKrpY< z>s2!vQ!V2h-S$#n%UInp6ei01I&L%-B^baa+j|ka>nJij-)#g|{R|l;=X{r)oZTE7 zf*m$U9(qTWbImzQn$gH>7w4#amhrNXD=Z5i*nqGefV@A$e-yL6Qn(-uP z&%TleQ&OLOAXRpJ4}{TtibBz0bBK*dQ0JucQQ++Kj%l{C1li#^{3Taj$Tu~$08Jt0 z6I{E{)dl)9gM_Zx2X#Dyo%j{Uq*N48j3_nKPB7zqa!Evt4 zXl~}|mx^qF!zG`~p2$3pSL6w6j_G)h_7A#OuB-F121mXt3~#4-fq3~O;qmT~GBEFv zB18Ftlka_w2a3gCg>BTR=V^6<4Xy1>&c*Rwc`0~yV^2YY4n3q8yn0xauK38XTdWwh zCwfMm@01(y+Eg0ZF&AXyy0NGEt{kPitGdA_NOru=?{~S&Zhh{HmFBejKeIx8FR(a(G^aDj0^cRxGD45FteoJofrz7Ga*KbyA z$ly=5{Fr`k{&2kv02?xXYweKKc*XAg40R>3N;7mIWOwJ2uxXOM=ZBMDp^YbFO_g!9 z3mM-%h?E-H&5TyWm$aSrQ4*^-S_oJoRObTrJ`DTQs~Zb0SLiCi>jvP^>NH5i%AkMp zg;C!v`_B}XS}Tj%cj~TLn@Ar9ZgoS`k!Z~YSu)f z!!*ifmNP~Ou=5F(z{H0V>yD2E*;uS_X6r`1?4B)H;lP*aD$$(UV{-VDlNAnS3(J`_ ziCqa3`*CPW2vRv7o7X2j4P0k1GxOC3zhl)a8bBA?!Vo5ON)e`IObUe~5UL;!Lz3O+ zgQ4AS;R0XjZ{sy7PW;dPr{x*f##-28X!MP52N0w*U#)4PmOF~0YF)}uWa1LFv5Tx$ z(=DHbL>S^zo=jiwj16DJ7lcQc-7r+teNCvGWbrvCdjfGU+$FCAKTBJrg4okrzOYR}m&o>Z8v= z&V^?8VF|tpq$H--;+)NOa8m+6(S9xH_w4L z9L-BB@OLS&FN1pX_isCRT>T=y@lh1iy+nKRA9t#0NTe0>Nn4xsc0g@B` z1VYwlGN0JIj!b8fY^BS*mZA}$tzj>)B^OSZNS0-G#oAhVWX}g5KUTSliB6u0p)eFN zko80;;W-CVWZxVGac(H|6W+t&ytj9+hpTplM$LeM|8yjH?a%OJ{Q4HtrpM2=(Xe4; zBnzy2qQb;fpW62?mJ<~@J;e{~5ib_#IUlY%6Tz>w!#~OM1`5UEhFS}J;%YqGKRrl7 zdVkyIRAfoo1oMt_96!IMC;*Q$7lPqu2~`l(*Lj%HEDqc^0eOR+!bEcPC}zH6$wK@3OQchMc$rBoXF4 zStR2Ub$roB*qS426Flnshjj_K*SCBg3m^Lj(IyhNuj`%zz7|#7*M8IB>bp8dRX}Ep7 zxR#*w0oM^thZsu`7jW}Z`~Cv!Nza751^xc6*Zhu9Ik~CgPSRh4tKVIynq`Y# z^|_ZGc!l(G1qIxkE@0{Ki7b4*fWKOpY-G`8@8y#8^!L^bDq6BlOk$(R+Q3ojcD`uD zX(^;;`EGroybJlm_C6lTG>TOjoht<&#R%25mEHi&1~$Q#p>%YNuc_xd*AyI z8x!>K%Zp#P63l$w6^S7>pPq%E?cP?De;{a!SA^DkJhM8r(gI#cRV`s7Pb6L?O(eoF z_e7fOxq(c+;SK%PtiSh*i}cyVx6}g#EZw+$O#t{1uLpkXr4PU`Q2(*`s5KdhLO)+uyJMBPMmg<6X{dLJP~M*A zwO4sWOrW(q5J^xkxX3OKVVU@1fdcC_bdJxH_XHzp=^^Rpz!r=}> zZ+R(vM%!H>Pq~sZr4)V`Ay{8fk2J5Yuf^W~?M5<+41R359)xLEgyxfr+2|6_-_i5? z=hYCQBUF7{*)YAy}mV@jIeHO9f8ujbz` z1>x$H2sRQV+Rg@q@z}6O=J=dVVtOrg{iAz48A3Dy>fVje-qK z_(a5l(%Z}D;a23qa1r%YI#)kp1=3%K%RJ3EN2i_&ONmpM1gj6&sYhD!w4*xKx=Xw{ z4w5Lrx)3a_VXPcr8>UpS>^Z&{`n-E(O!8d;lX=u--Ze2*c} zUKDLsVLBRgQ8a!ngl6*5`1Nwn;_*;Qp4ObNc#)0(`_yi<+?R5(ID=W~WQS;uI%(&v z!@xecZ&qdSL z1=SYiQB{;ORB=tM#+GV$8(V&oNF*)bQrA@L{q)^cj7vR9t*zNj@TN!I2YlPfS_ybJ z%XD1-j85TpW4+GAWTauQp{W_&*pggs?t}tP%xGb)5{j+iA+4x1mvSK7*x|yR0$kT< zc&~r{l$mm7>D1EHaQiVjed`fTyNdpX=`QO{!d%kR&25y-sys zQqXF>k7`s+1w04RE&=!?hh_Jvkw$4~au%e9o$BZ_lc!pqOBTJIZtfS=(Lb^-lJoS2 zlvOT-FV+~Iq5gcgzfkRj+rlg24nzZhkT9O2OSx_&%-!!vs)<%bIyAgOevkts`f9En03!#N181_mw zYtT6<-!lkDk80G)b>5H3U@U5GWJ`&XMkPse7BGgK>d-NhGn$`EV!WNhe2&T-KW7l~ z!kt64t-Oux=Ke{0;@R09N=#)zaeUMn(+c&`+vvHFI}opTw(YJkX+twe@*P-*szZiW z@aQg-egglQMWDD?S{6gqQaWMuS?x8oAW0;leT-9Y&|G$bRr3|cwX$6M647*k9+cnHI>@-dZPo>Fd-AePxqe*)VUhYJbe%Y_2YpJ-r ze8pVAYA7zlr$>BkiYEo;0{v8B^W;D;h`yCQRc6cO&kLY$3dW#2s)_c~w&XphtU zjEfk38{ZcLaagr|je<|1hFR1@O+>*N|D@`L+~ijj=weO2-|QT?*^xUwu3%7YN$v^2 z06>xD&WCA~ye3=jeP%F<-o{5Y&SaOH&vuhX)C!8-_iOT(o1UPLxz-7r(~bLE&Whg! zNEQj1(;Xnij_}VWj*ez{OvqUtwCWV3PAcnr>N2KYWlSWFDua4uTLZwndj)H>hMkgk z6;AC|ykEZ*=4TmFg0Fe6b1I&nDsD1iNq*h)|A8l1qMr~yG zhGk}`UO~m#zy6YC!r%XA9xfLp*EVedBEkmjO*D$+MEUO(@=7?ui)L8T_BTM zY;gy|b4#a++C+und3r(%u+w_E4I3>!iy0Xy?;eSqh8y5b{%mFevC0#d=29th<2N|A z##~}=-~X*@pKxl8xfJ{qU$A6ad$P*uLNpzSbCYRziqFG^cza+Su64tE*MY75gP|Ni2v{;Q1~ZBI77cKQWjRGN;=qw1z% zWD*Kp;Q`nZtI|}-mX;WP-SJOS+xBLc9FNiX4Ps^#juEcOuT2v&mp(umC+*p?W-hEW zbgrepYbcFG09Vx?yCG|FjL3M4>`+rQ!a`gN-FRkuAtzt$E0z`y|_qvO1s*Tl_TYOy&#n-`aOGhp4J?j=VaZiKI@p>m@d9h(iO^ zlDVSYW+AU6b8YhW8TbS36CCyjGz#A4CCWqz&70<}NPVFZn=pOl2Aeo@UEc;^UY<(y zoB$i9HKp5`wDCBH8m4`9%+K=lrk74GZ3UrBG*)BV7N%X31BjlB;4jx%y4ysx`_+@1 zzXErzjmyxgW*>;gQdJcFkUT4nU9U@fR}}&xPQA_n5x5G%0sXCmUG`Hqh`p`}R0nuz zPfXiwlu}mp#2$DZorb|%1WH4wGO;WK^$7b>a1m6P%X^ObW5DQ_Zp@{ucKykp1GQJ1 zWL-+%X1TAtlC>9yJDr|vN-r(?@s_=6!r#5I=z2s|<@0nZ6KU!$zoG^oJAn?ldk*@s zPLT$mqI*tgIozik;FE(OIG^iWbPH%vtJk|PE}{<0j4jth@MoveboK-Yf^SQUoL#as zmfW6b%{B#6tIBR9)_bGxjnep>Nk_jyG#H#zxs%3bi}k7~!gg1ndN7V!^*8789COG6 zO<7ukh>z|-g2kSc19?g|@h!3(J3H(8o?nsK8Yv5?k4<3!0+rb0z`b|AFVT!E=b z*F@?{lv7bC!+N%y5N84WG=y9Yvw+N;X32kZTnI;AXmWnHp=yG_oeu_KWngqZGGD?3 z)M>-vaga=Oz4w`kQ}hs}Z|$T~!KpC6^BBVf@>IonW&uA1!nzK=KDRm*Wi_V=DWcq+ zs_K_vEzyJKyEwYAnxD4-4@MRsLYt$X1(5ie~l5x(JXpaih6 zv@j3faOC)RNLOjOOI|afY`Eli$Qb4vC@(e4{oJa04%6}gOS{QKRC=OE z2*mlbdRJQ}`z!`8WQLuK7e!N0(On9?Hsk6(SS!_g3>Qwro)vg)aDhP6!mjIzgtpND z#>h#u=%^l9(*-TgjW#<`sLRCBsUl9x)xl|FRR&+$=mpD=R}>}OU`|^Oh4RZPA{!IdjpfvQ-s{T+z zCC+h2t20q&d$}Z#R!>@zo@@tA@Tm~a8SaS=U!K5JBjr|zYG{~A0Z6`}JzGwaQ+&x( zc-;TkNi;Uf8NTUD@(G#0IzV!xBRi4S5w@;zx(tsiknP2*EXen#CX@Xc7p1^AflEx_ z-t=_2&QaX0%quo3M0GsO5i-UIbh@LsnA+VdGQ_Had@`wm{2ppDJIcl~H;O)v9kir0 zP{5DFBBg&qbab>W$hW~jEZ2=d5IV_xt4x+Vn5(-YZSa-ak^ibF8Teq;LC#}{1yi`k zGC=UpXeP#2W23O=L~lg0q$O)7%c6P@M-<~YchJ5S<-?zobjT{sKncJnw6dc^G|Q+< zgijiBzN9XHpJ}m@#})%uTzTIM8l7-Ka72KTvS{4KB0h=iiCuKNViCfga}F_DKbcd zbf+|e0s=~>fOK~ZARW@(HAo{R-Td~9dhdO`zVGk*$333|_w04nUh8?Dwf3GpG9O>= z+36ATO2@rY;x8BTO2hpcm3Qk#FW+ORitGAJarbc^J4}XMX3f8b=SUDonzn{q*kH?RMHs5uucUJ`B zzCI1jSa{T3G58{p8~0L1;JPr&)h2EU3)E;47Q^Qn;pT*H=4yvYi#p1cyR5J%pM;xa zmee$&o5x5&DPj1QdhT>j%^mQ}s43%g$b=mnPR zsi|o~6{)2dRP;yQ%x3osJWDLP?lj%P;Vmgq+8z>Xm!LlEnlUD4)?%w2mSNpC&ivdqF%+J4v*eRvwbx ziDw1{ZJE2WIK%Nht!%H-xK_5y)R;&<8cjh>St;XUkY{rUp4uR5W7Z6iih8gcQC@!C zs`wORGyVll@PNr3k|c`IYZ212`6Pz`GMxU+!4eWQj9bELKL;aj^RE$ z-=xZO*q+)Ha(_9-b0T7n+oRc@-rQxpPAOd}fjp~!ABFeA-*d;}&fO&RP*}KhcWq!x z%GJgro~wi~Go`fh!cLD!#g#MCtxb<)a)lRzW_sFHYJrvdT>ddw=NisLT-iC|&9G;q z3S03t{74pe9tYabX?}iviCB1>_kz0!A4U4%GY-BB?#eLxp(9le$Dz`vX&{!U+7b(= zCoZQAwI=0j8?gjAv&0eC2G>qWV`pw@&(JyefBIoP?mrdXeAR5?1#%CA?G%ZZKDK32alCZE&no(mxwr@JkUI(;k9ok8)k z_7$zuY~8!(;f2p|_RW~@U5lu>c~SGgZFWW(BX;fbGjj9VMt;5Lk17n2-^IAzy&hZN zq=pnQy*c)(cA!HN$tKw&&|Y17S@Y$wmQ!3XDGs(1ZGAQN>+5_JJXAM@3gd$=yD$^y zkk|L*z~+{o8Ps)V?zUe&JUlui?!X^ZhMUZT8~ znEBo{IhRRKkq{S56TD+}=k4tt>en=(J66eWSMFE|Mqqch2GZ{T0K(E7vgAa6?$rAl zi{WlxLoaqeng)`YTVJZ4Dd?>;JEJx*4=%gX30GY2A(v~WT+7yJn`54Q`|``ZE81=I z%##@}kDuf)_TAJ{o?L!up&RYVepNgl)6)l?9;d-XHGMO7p=>sqGH#bsn76}h5K>^d zjrLk?sIPYF5(bZTESlwcI5t4kq%ZbQY)uZoyDWv#20NYjVg}3sfq%}lJI&K!)_5<8 zgF#1F-?(L*vcs&8G(+#f;|u;9@?&4jg3~`WIos=m3&`dGO9G*zVbbuswBRN`Wsbw` zvJVq*a>~f2x_4tVJ#RA$NR}gT zUPpFaE~K>p$A8FbW5v*vbJsEtwm8T+j7XIY;~DA`tyxLis{C7JpDhTdd<~yJVUERW zrs6_v=vYK)001yhZr$|wAOheCJ7q%au4R78chTK$#!t93BW^x`)LrXT00VcTC-cOQ z*8_GeXv(KlW!K0Y)ECO$Eb%)+$LeBZXRL}nd0y2nEuM9ozbo|g9zmhsiSgvf*JIDs zDUrLIudlGEkE$tPt9vv^>@r-q{B`!*Gv~!2C6j}epsHN{ageBx2pVU1&(G@~tUN>+ z()FH_gvM)MZ;~oygds_0Mu;#dbKqyhDfKdkDlmdycIqNC79-0`WF`CICc6eHunb8y z!z%6>nQlKGqWE|vTxuv8);@@x_s;7k&xD4B`Sj+RB;1%@TZ_538ro7jvriyWD1<@7 zDz8%^%1&7|GagyKP1hN;#TT0UAYV{>%k5{fx%1&1*N&&4qE z^JwD31x3BtTZ2=?ir8^?i(9yk@A}EK&A*H0VtqwjiLs9D(UoK6daI+;0fLqs&`U?J zO!-XnwfRs*P*sMNRWSjw^}V-T#*i`6gja-5*Svsd*WCP>w=-NB;7~!>gHvTU25wI_ zKSU$|X}i-u_N$8X3<6CqMP16bZ9d{Lfeb4z%?Lc(vKX$Y3DWm< zrwQKyg8Y56J$ho!JR5(1OB$xJdaJpCo6Flh8Na2gxgny2@bub8PaY|4GKyt~MZm*q zwM(SLwDnBUaZbe;!-1D4SlVEnv0?@JfQM}9&nNkANZxwbQ0B9)kj!p}B@|FWUqzVh zHHfXm8jB?IJA?8RUoFaKT{3#Xim;nx1cUvGHt~mI%i)Tg?Cyq;dNp1X zh-NFI3Nb^BAxukGgHO6hMz*l8r5PB`j-GDx<<5BB$9lYZuoigPgTF<2_f=w`ACU~=7b#yNf%hL;qTrvEXRajt9AZFgZrLT8Ww@=f4q|-id?TW}) zFw2Ggy?mF0*oFMrXe6mm{#L9`_m>oGkVo;!JW>}wYuwTG#w-AWuC-1Qy>PcXHRw?0 z%XKZh0uHJBXFoY4vTJc>Bh(Ea~hW=$ZBn#P3QR+id>$3C_a&p6V)*_nh@thN{oX{ zds{l##NC?ET#s`-tGGbVl5nw*_jS5H=SqME!7H!+u(uWu@Cc`wlh-3dp42y_MDe~> zyhj-a%-Yj<#T>k1w@%W?8s~x%x3N%;>De8p| za@;Z`|KUgFPZK$+>yhK4o_Ha&WHgz?^li=rTtxKRYE60OR)?50bD7KKZ=Oh+hF%3U|{hPv*roKJBJSp&+1lGG-0JBlfV7z{U=Hg0zGe`SK-_S4bCLm!K5q zAS97migR8gQEx>f@iiAxm4|K07J($A-{RK*+O|2!!y<9dkn~4$^dIWFY3{PiHz2PC z^)%L1%onA3z3T{15o@i@bRkv;w@$M2F<_feT~hA$|;e@|=>{y3yfZV(=G<`dktN$z^Z7|H1* z$9n7YjN?<(*rC?q-XZU^TNVhU(H3-ix3HZhlEHr!c;7$JY(1*I=*I9ioy}ZXGZw2lB*t3~@4BP}?J&5&G zTlm_dGuAP)(zuAXvn8ExmWAT(Ky5*%Ys^Z^8yUrS_~POak2b13bzf07*giq?_M=X= zNd3JK^hH(dd8yzd*Wsv@U`7GqL%JOT$wNOJ|A8AZkjjfTj<@wow2hH7&TQ@|BPjQm z1f&kP$@6X<@R{b_zS{G;40d>lEkHNT^>ip8PFUvQFhu`BVtM94? zj#e1X?x*YQ$IMibH^X5?@yOz_MTPsa7cVR9G_gJUqL6R8e*3JgRLS~{o;`!e&+7Hc z1o{g{TbmDu?*p0!AGrr}rlJ(dfb}fI0l9M? zM@wNx#3I^5Ak+Fe(vI3q8eHCGF>EBo?JwKpb=2Oj$ercmo7?%cu4i>pmUKO-B72^Z zNU|Ttkm}wMBXt&8p9MT1qU+Izm1OpY*r2vS33SbrtYmKM;HWJ04BA&HAH^jgtGwC%P!P9lO; zZ%wLR-WU0ww8{4cyY&4?2AG4+$%S4$G5Of&mfPUsnA;%GIWW11dC!T6v<0F~yZOmj z40_cW89Be;=HVnE!J>CU-U#nGrW94eL^ABdQ*oGW5TJ}uO&nLl|OQJH4Dkhp+$q{)w)7nvVw)4(hPDIPkoWXzGMA*X6 zt8UaW#T2{mFRr$>7R#e;-RmQ1B^Gw3vca&eCdh#*eIH0hoykHTZq)3oJM#Sa6!xZT z2&S8drfBmW=Sj1U3#v6&R1DT7OPYsr8r~G6iNeB9aRry3=73$L9x`tVYbwe_=8W?; zDs{eOKkT<(L<_PS*b4~Gbub_y4~!+sX5T>G-0FJ>W#UG?CAH~AVSOvYn_{;by;tNM z{XrL&8$D(rx=?PmRU8HNhw5hG){#4T={w(DgvjzUI0VimR;Iv|W&xjDj z4?-s5s)$!%L*PZ@^&T}!23yY#*+3Wd0VVF5V0L`f%-(1?L}3xdo+k1pQWai3ZY&R4 zLe(r%RcIr!ed;}v*p*}zlcl6+tnxdSRH}?qS1N?_Kx-b;Mk-~)O14U&atT@_B9dpC zh;E83bNBsqq?nKfqdm2~IM1|sJaQDy9ZMt`KT3*ixp?Hn=r^b@WpUAa!@6Bwt^08C zsG0>sjitJpv)G3;kh}D4kh>tI3zKgGj4*ZNg+l|aQcYue9N!f&0&B_ zYrOPDeJOcq1v@bs2T6vzHyA0AkB>|^RFtK=0h6<|e=uJx64wqWh!4+mKB%%8f#RN zDq7rSiRMG&{x=Hd<+d=VB|^bW^0!#aRz&x;Ln!*7To!&_|0{3o2dt z&CZo$W{ELh53XUP8O#ViExuu~>*hW`iT>cp>1PsNFD@_kRdgxs159c!iv%rp%+?!W z+40vKPBTfndxq8T8zwTWNvqt8W4qHlXzAA1&761s{UNMGZS3a9D=}(gpz6gOvAgb~ zajLx?nxplgCB^Rz!zg0D#MxZ;Qd#k4Zi5zKOq^8k0!oY%uSeP=_UC5Ug6f#+IGrF% z^WBi)GP(4w5hSpNHi%IEQsn`zpLi16bbQHO(KyEv!3fJ?d{jdjiP_%M<4CM=wi?`4 zwR=}VhNt;W3{Zu^ZO)JEl7_wTVd{^MtJYH#@iYxR?ApXd9}c)xZ_0B6gx!M z9jKYieaR5Ih~8b>YH>zl&w%0<7LFq*`C7ElHAW>tkJmYh$Yc=M#E^vwkUhY~Ztv0| zDY&02D3P(ZK47r75;jC<%$gWIM7NE&b_Y_7+B_RXqVW5)mg;a?7TMol>|ISO# zLb10dC|hE5U^&qXF%*ye)m~b&J`lng?rf}os7%ERa#8@^(FL*_r<5R@pDEWUFnc#! zZeAltwD=hRb0Kc(WQCr&QnU{VtWZ9|vS&n|!7q-z7=o%Kn=QvrPuGctx`9skjg=mz_b{0)cUcgMsZzs4`_4THe%QW~v({*LoLnXnB= zUTvBn&d%#r;7GXz$lRg7;hvwj?!`+-e1hh(onXTxeU~$_gR75a=3j%LzGV-PjPO0h zyW)^WCG7`$9gQO#6%U*tODs}M_(GX0s;QXJt>*e^QRjPfQzoDjt5$5aNOI1n<@$on z=EUbNL54{ML!|T`xzyGi>w|QUqI`1a5qImkp_wU`;CJa`0Q2$3kI=4^#SW$0z~Llp z3E)%(zw#bDb>}C?*chY>gqbKsnC#+qJeHcBNH^M(;7=~sC=drW17TqujeVNB=nM9% zH?R%L<;aX(PfFBW`N7O$uwEkA2*27;>>aEkcfp}kBd!lMC`5N8b4KO_JVYxlVT8u1 z+~1RUGgrdM0KWquNF0*bTd7ua1^dF#7&uwVhQDwQWWjZ}O3qZ?EP-*aZBx*Q z3a%;-U#pE49nU)?#E2wGGhTPO0ye7C5b3KcgQu@(X5{*AfjLTOwrt zaqUSH+GU{nxlf1c0GLPjub_pF4nf4BU6yWT=sIE93~;Es5Hrx0|G@XyzwzBn2)9DO zNdv5K`SfL_S-u494e8hv9+u0w z9Z1~Z(*{tX>iiV)F#dEy@gDs(z%;v;x=0Oc2snnr;b?U0IOf>4ZS@8hQ9uuZw-Y&n zRvV!+t~%bBWj@EY+f{Ng2q^){D#Kq*anFLK>)xZUQ=#IGHb8|(*Z@>n@FHUBQFE09 zRya*i>Jc*o*RPXwi12tx+~zx)qLY~oiv>~{3<#&O@ovV|*cWw8@>2SwDbgAM$C{NbH!RIq@8ON*<0v5P45+yzhv7C=Kib9Sp2k~XI0Vpwm5Og1s zlqx2al*?v^G>l{*(hpaHN>jLud%=|(R8*COPdsIEVJ84AqlsQ=kGA4J-{ds`&L6X5 z$#gFO2+ewM(RdXba3g`=0*8>gfJ56c$DExv$cv93O*ii|WXtuDI;Q-b7kO*(`}Khz zPy{drP*iG9jAI8Jd-d%#0|WdHa7YMOCW>i3(2!Z;w~;Zo>Ic`bkd5sxft{qo zvtzN5eMG$BpdR`G>Sulw{|(ebbXQ8V1T{eYZM-Lf@JJY3`$&6#&F;U0x>XJV>O}d3 z_d0|zgVBvZv#0(|4(o(dI3z(E)D16_Kx&s8nN1{F4dMEP{xt_ghzk*++AnKlD(+63 z0F1vvT?2shmFeRU9j+U|psD;UsFAY&0qfE`wI_qvn6DYGo8B6~>GAJagN*%(bscxM zT-?vRo23fEu{aNp>05Rz^$6c?*|ZR;jB5oyVqNgNT$}tZ*C64AB0gFwx`a}v<#@Ge zmhA}DZ)SC9LGT{z4k?;*gWVc<_UkrMeg>z6_6xjVn+(EBW6o1GsqgTKi6~MXk|<-t z_4tZwluz2c^>bj&mGXBa19tr}t65d# z;?S4|$y4^Iro2Utb~E3d;s@7~Au`%w6WB`~PwuLHjg-$`9WaCUFE=>h{JadV_@9ww z2-SZ9uS|RhUpzaeA&C#PhOBVFfM$F4a4Nk8R{V$_QL7h0et_!z-no?ihzuY>aoR7H z=!gmFPy^k}t|zaFBqkijF}J$eIPQO29au-S#RBj`?0N!lrz(&wM|O%(ng-pUi2K!S zVA}0h$#o?PN8!~ECj}y70E<9HmEbCxVz&&k#F8xsc5gsr!IVtl@$LCbCC2_)_Y^XU z5h^kIBfvn1;i5Gm>q_N)X#&I-VTY0zt~T&%+{qeT`5v+}P#e~sq%g!;Bl`2gj(C8? zE=vy$KUi2Sj>i!1K`M~T>?b!vaADeR=Y>)@k1Fr;MsX4<4Ur4B^X{+bWXyC z(wA`r6gI%jL5&IqH43;B^W_Q%;{U&)C`YU`4iOZ97d)$JkV_!Le|h3XM zgX!8Ix1xSD)@rW)({*>U=@DEO_!SSZ)BswU5heof*FyJ)uYl};JCGfZb~uqsa9w3w zE8%T^K(isdk9p<-@ADC0Q!2KK;Aw|QUHMot=5olv6%X$2&jDBY89FU5cUl>*IXv=kxF1*+j*mCOJ34=V~xiK|Wq zanMIW0|OmH8U?>y0lSJes{=;m%C63iY3qtg38PidlEwEJUg-u(LfPyOB(UL&4b5bK z&jI6P!9c;zhlv(PBE7-uDK+3xaUwFE%_)NCSJ3-I;QSH+=HV57%+O?D;Uv+qaV)|$SGocda5ie+uN-OsSM{>cZA!Cqo+D#pU$m!-z>oaAx6)gkk%dG2ejyDg# znPjsB+4N!YMyYMIsV#1`YReaw@M7N8GGDnq*^^zIr9Z{|Y2Ah;GA2MR)$3#EcF_^z z<^+Wtesz>`p7iQ1!cInF$ijoBl%U5+6w}4FsQKCRA9$k%qtI=RbC!-z7{OT~_H-$4 z(I~~-H{3RrIr;?InUG6U=>{$@BfFa8SYreD7D7Hw;m&TI=*YGv7x0x@-?;kKy3G0p z=}Yp?mEvowHtndrCzMf&&Pdv_rSC^Ojq=DhGR3Kr&v4z_Tnqh*iW?>&1r}KkY9e8g z0Rs1`(;;z0~)0~-8!a^ z*7l;ySlOwl0~>G2y0jVZ>W)I^s^q!^+1_eHejI;}$JOU{#^5vA81a(2x9;(qptX~xrA>ZWY8njOesf(aQl}UVRayFJ;Js!m@BJS; zs@j-=?JczKQW{)0=$Nq|PL^7(u@sLwixHJNi=W8%yga2y&Z69iFO;9N^M}H5p?RS7 z20;t|QWZ4>QT;j@8Jin1niw}akg3Z4 z+auv%c3=$XF;y~is4ktHH$mAPZj0wc97a7ae4d3V<)F!8b+)vTO~Y_at@PT1OjRko zF;%J1@YF_=@Ko)O!*$T2N7FBS0J&9c^!>awPrp1MRoXOGe!hL@Am)pzl)~J$nnosz z)qFO2L94M*QJJk{ZW(9iK+fVgI67Gjq}70HB!c(QZYeu8uWZ+mu%S-%!5A)D8n5bu zB3!f$V=4BG8D+nzS==JvTFoN>}SDrP*ek9)hTY2^)$+^Y3f2*p;RN zM5zslZaS*+^-UW~naZ!5su)X=z^7T7I%iUviujP;wG=;gCO%_qM%j2@Z2>m&86M-q zJi(7XU0JyioFCvnMk(J6+sqO#8^ROv+B;kQ4tMuL#o(InVWVHHOtD{A)R4aA$SfRD ztK-UYE*D!E`J|EGrfs=5Qixr`L|zb73*mY@_gB1eetV)CM8?h9IwJYFQQ)&b)b`P| zYynWNaSq43MqwwbCn2r!dolw90~E58ZQ0}jEh$!?box~oMM=hn`Ssq@u9vp=-c|L@ zfWmqp#9+4l*7|R4G_TrAYTq1mW4=z_fR>QMYq32-mKr{c0>5pGksT=0g%U%@EHI7ULvYcuJAb%u5j&- zv@9b^fL7kjEnG5k-eH_J^nK_zddvoxF({Bwp8`8E? z8q&soHB=mI!TNP=$_}o9+jE&YnCgRy)5bg1axuz}ID=RoHPy{<-V6&(`(Spv;SMDK zZQP6Ox7a(JMn@$$PA9SAAR{c^M4>HvXb+;_Nig9KK-ODVC=6!&1yzNdI+N)Msn|2< z0$(jZ4rZ`^ww>^EFqG=yG#L0fK%#@-Io24 zdGv)+X556}gJRxWc^i@7AHx>>F_vmp+jOL#D_{Ta-AK~PNTnk$JuWHs=+4B$*Vz3j zpH;5&frq$2x|ygzCZ6ZLwcN-iCu>PjCb%v{#B6m6DL}yMI)KSF1Wc44$pYhWc==<% zVZuZOV6x_R2yY#dC|DTXLi>J($=f^ zIjSU!>gyYOCu~)r5+=0f6hsWz9?>#U(dE9Cp24B`xRTn@e0_VExbBqYv&KRY`~b51 z-cHrL`%pQ~PKVf4p^9v@n&(NYK~&4FAGA%ea1Z7-?MKdV4WsOX-4*T~hT4g#un85` zYdFvgsUu}xc3H(1EcQ$~>=-Frb9>YGt{$?XdGUSo_UWfg!pDY394CH~f{tN38J$B3 z*AFMkdz74wS>>VNWK(oDf`4AMLLWqYBw4$cH+AMZSkY>}Cv7Wxwi~LwLuQ4L zyY)w4V=5UV-LM&~Ya;80Wjs0|Q?*Wuy-4FC#?Kf;YG_HAH=5eL^v#f)zGB;q`35A@ z^{5P0Cr?1JZ-Yi@@puY@tRf@^ONsR}7WnDbQq2nT^roDid{T&<$$Ac1HgOJF2Qj9S zAl9n~s>ZZq1ZPdUneq&}ADYqRqj5aiQ$>8*^WCF9ElA4jt(y@kDJX9Pt0)V6MD&?Z z;f4MxVSQG4>y6k1KN@e$@WG>43g2*Sx0@07@H1RgSn1>$G(MnU$wN6aV=8s#c(1aH_9yWuJHi-vIZghO@%}xwiZD&j3 zh>YsV^gW#dwfaW{@a`?u7&*GsN1hWfX72C^9cB@mmN&u!VA69VBP?&!{0)aP$W+-x zU*TJDcvmhP2Ieo4{5W-2->zKLXD3oV+GKf2i5i_zk>KA61))T#V#_zlY{@q)6dX-u_Ir=VtH7!$XXL-S#@E zj83Y0zJN=E5KDMeX>Ku=*oefPq@BYg`zfnmWFotiizZhcF+A&*Pu$KVmrhjRI5Ic< zhsE6z%)HZM!@JH(l37DjxDpg#_Suw6F05g{=5CV|cVb^c>Y*oZMPqlKW@uI)uA`-T z!7J+74!+ptDcLq(6%X<)c?DJ#Z;GT8Lam&*{Y|rJ`6)xDio^Ys_3GE{IqPx7Wuje| z8H>wqe14jrGRgDc5HpW@Ar%H6b?ffd6s|tKJYV+u@-vt6;!cpC%2kB1?PoduLHlD5 zDpH<{Ef|iZuYJV6XBH)21|TxOKWwagnt z+K=2B6h6ER&h0n34WO@wX6P-5$i*pF$K8P%>@DRmp)=OBC#fd%Fq zg!Ud#v(5XnKeGJT%lj`APQ6UBEG()Lt&7WS+QxCYz{&JgZ24$}{Wd%=@iH}wpN+wlP-!vVvLMt%nQqFXTpS2v#8I$S1>?QV$Y0^Dq}Kd9a4ly zb|^opl7ZP9fTN<W6U(!yjzX#}9$y&GP^j^2u zW3I`I8@8t&ax?pxostRQpA!)PnL}Y-=Q!@=nVHi;He#i!Tf>y6gZTyp?biUk5vH=S z;c`kGpzO=(y#nJPe7sOnb|+Is?(7A($$j`&CQR;wgQ4KsNBYV#;u^vXVC_R6nB-md zTX8^r;)d)wLswux=oBiA`6~?AZ$VnVW*{5_L@rjFfa-x61+Y0P7;atefyYe~7}_XW zZ6t~t^w-f~K(6MX27kXz=Rwm*c=0%{Q0v4LlW1Vsof}E5zJ+-yg_A=_-#{QlPSz?z zC?>v!B;+vtjg?e~`f#<0Bp67a>h=se?S(%RI0Tq_lUEg>)|p+6I7GTT9AQi-8w*5n z30QI>?U2@gqL3R;TxmLN56*aaDH6|YtiMMC%=6lf=<7^c}1-e`1ODm}Y#bLgC(6^lc9M;c$|=Zfq{Jgd;0Lx-sxAllt%& z<6pLJFlN59fJjVVW{d>?0Xe8YaB!uoK@`A^>T~%mblig4Z%BfYz9=AYLGQ$_QeHGg zGb*(|TkCvpaP23`+JMDe4)Ea|pzUi(1#GgP@e1Xs2(kH=zmEdK1E0@(l4tsFf8|rz z_e8&oks#_eOC|zx26pg932lRqNEID)7{{BeUc=wic2DL=}Q@|q37l|BB zsNr$y?hQm4Z~@Y)y2bUQ5CNnr?t{}#^M$;svL^SBA*v4dV@u;rhV8*Q4NxaW*8z&XUVT=u{gs|{3$pMZU<$bx&bnRsLwMGKagdry|C?k%eQ=&)VT%y(zu54TQWjei=u}+WhPxDv9HiFXVt)xaNC_ z7<8$5<2YBkw0NlXm{sy0oy=D%DCSO~*RqtxkHDvSo%e6?4VjQTgSTgZ_0QPl8UDpC zi5^U$nrTj;(6Stk6f_m$ufO;jejD&r zqQ`hC-Hppz8MFZ1;REAAY0n4hEu_qrxWM!bFUkIezR`90oo={y&Ea@;ww7I5{JcME z%M)6mJt@EjC+6egCRn@aUux;CQ}`&{Zb4zf2?t0K)QUKv78C3xKu6b^LF)`c=)Fn! z_+xDz6R4*9Fnss)R^RWJiBR*gxyEr(q&MnmLREc9%pO;*hTm?ZL=)CeUat<+H@MoJ zSdqJ74-g}~@b8Z?>g~bD7|mV!*s%-s|fP*^ua!%6h&4t)J3!&E2i<4D-nGL1)0&en39)>+?7r2g@F z-_@NN!BgB<#`dGFh)ucLhR0pFC#_G``qVw+lh<&?lP4uk8VhSJdG1y{46gMTaom6Y zt~<;oovN_@V@!Zy0_LFOK0c%Z7CZ?NIJt}WYTsVKGX&N)_WcsqdpFn^Ta_P15ocpD zo%hyS>HN6BD@LE=;vT!;H>9F%P#rVB9Z^|FMI_p}w8aH1sAlgMSB0sMW>Oh29#Nh({)=Fv_o-uw6<9Lp!e^F&FeshHx<)5&k+*LyyOlEvFJ3DaNh zd4WAYgtE~_DR9!YP<&E^uOKbTn((2#=ti2S*MvW4XpV`!i;M~gu09^SW!9XG*1#Ht z#wxP{)t3f7b}GayyGzEMd<~}juCkJ+pSmccHcao&0Cq}0nA#}@Gkk&xie*N;R`uwh zb0#Oe-jW-~LcF=r9Fq(&@nscXYl8=qsUP2^I`2GbdOuxu|#a7DU7r+VIF z`C=o^)%vKN>av~(GQit&Aw$EGohSBWE2?*QkqFhO1Lk!&>nhz*@8P_v zoZ7kMOI=sS<++KA{aW50@gmm0q zq=7;zo2y?hi1UbFCrU~Q3JtA(M2eqe+aVQZ?&QZWE4z(ngi-lmiH6iRz^QHF+D-_B zbxP+&gLN`#^4ow#8jhLu@^`=^-+r@@$YKL#!3yCHo-EJLG4H5YV|BmJ|(|jO&uY`dWna^qv%`9_N8;vb$`28y!;OuliY*Xrjz*JDjehA>w%NniP0E%$yjc2`6=enXM0P z#7y^v^<-q^yZsdPZYlPu;H^}ZT9c57&!THSC|W9jL@8Hhv;@o$(!fVDaI*` zgz~Y8K>GsKnvI>VEZv{_ftYf&7oTwQCR(cJE7;hG*Ntl7A?b4a;YO75@{aO1UcL^g z6cG@U>PIWw9a1I#ZH}FcyAI)!z#tWvA{@Sd+17j1c5&o>z9+Z0&^vb#v(%n^=RcwY zMlR*RqcdnHAx=MKE&BI+-jP1FU*;b7Hm5&1VnHN#CJ>%nk%Skg(OX>y&=QgBHJv0i z-4TZdIBBFa&ELL-=xe^<7!QSKs$`SLs|tRzYu)=sJkp%6^H2;9{5xLUVdlkv1d#GT zr?w*a%q7a>BDE^}5LwtK-NAbmap1GlwU@#<8obVcczp9`zSQ>rm0mD`w&l_p5P44e zhwJ|lC}xm^zK=iiYW>1%MV!Zg;5gtdJf$Dd#OSBC@&3+k(b~VD5Tz{epnKcO`xTrf z{I&Y8`&oGY?K}Qkm&#w>+v=($IY_`KOaFV4^~U~UJ0j z{SB9Y^c=E&LKC-X+wp_0KX3`?I`A7^e`eI3Zsp!=Rkfbime_S$zx-mF8a2Syku82U zzV*MtvVSISIRa183tZI`H$Tq911VaJRMNR?8lP-q7ih+Tcyvn1{vLCK+Pm2Wn)@}D zHGHy?-c)ea>;Id7e_Q{>KLC7-Yr|I75s^>+Z%^m5j*f|k)=P_#|{!P%Ca zhwkp5;lB1Kg1Ef+Uv49yg6{=)_5bF_O00^jU++xq>HS8zxIf|B zJR;JvX5g1f{|aSb{TBe&PXb|i@R)oi`{)*NoS#rD;k`t2<8^;RfJ2*zf>&l-%8!dxUmmVYmxVVefpuq`k&Y{U;U?u zm!DYi{#{J}ssNjR;rnj{PQpb!UH$ju{K@0pHg~(YPHk}wIfLKi!Rb%R+?D4>u#1P1vVK0W+b03)WxEWK{sP|6?JI{C6tf zbCT_;e9}IvwBHo();IL*?(H{C5HR#d_bA*^JGV4>6f1EKRR3@0J0=VJ6&ACqr{*&Wke7HZGs6H@nnwY#*J z@0@dnXF~g#;Q9i8^ zOES9)ycl+{-1!=1k4#~)>QFnoa6;9+VaQrUMzC~`l!SOepS~_~3{%tYa_Cdl_t^`Y z`aUO$IjsC9y+s;JaZrfOB3?)8y*iDhFzD%SRGwxGVf^J(TiSM=Na2^uw%tgnHsOvgN^?~7emI<*!Ve2L<@qQ>%Ux?kpj?=Ua)^BHo|^PD(UGYqJ8=cL}ViD)*@ zd?cD~gGL{3Bf4@r*}KAwWDQ}9C!QDZ+4xk9#y4Tt9o@}k$X^KIUy?>&5MTP9CT%F8 zAZ2KN7%FD}&lmH@Ul#7q?2oSRQ5l zf^3SuAmhY$6DQhss7H+V-Irplg zV%gJ$6lD$$B>pi&&6mr1ok%pg=Jdn~r2NEJEF)~h&6H@R`9Yv?@#;rzlyl0?AH_$_#LRSBROBdD{JJe# zRYu6vlX4VXDx0iV;&iilH4N3o1q}moOX_u)z)U+ZQRFd~d=(t=)EVlsM_2dlO}S`A zO?`?e-s>LCJ+utCC%+$f?5J4zl#NjRN_(^5k+|rcxl1stnHK9of|{bFv5ZQuW);&4 zA=j8MfzGe)myv`@ERm^ej|)*zR(u0*Y>nlJXDMr-N(GOBj4pP_d-U`1gms6GN+L6t z=`^0L3_R{TS|44F&}9mXJ&RMw9q-{Qdk7ut(J#29a5>SLX3L!`bkH!fvp@bFyEiqn?g z@b{Na-2b#QQ8>iXszT4hpRSZ`+l?@wVVZh1hc!O>%2DWtzTTBMWXYvTd44$^rppDR z{x}C62RADI@w%RYt|Puy6(kEd{CawhD<=D++ujR}5&R85>S_ffzS2`hrb)ILwug_F z$_H}QWy=9zWoK2_m*UKmCYL8u)sHKB`lI_k2u0)lW8@SblIugA73P&;hb3lylgd&) zBXD8(`<)~OMJ3^mw)gRZk?$n;2 zyPwToxSoC&a=&O53ctgDdbYyjen#GPQ8Q@`VpV)!F-tjXVH9)0z`?#ST+l7IM3;8H z=jfqmx&|8ky0xegk6$i+oemRsbr78eK$I>Aban}Zm@%>&o~S-R_y-fKbIFp1;!@{v zRR4(fmL&4L?t6YrU7wQyq7Fy=n%a2tz_!GD?RhrL?hp*~O!W4=ojIAz?&GbP1n3uQ zuujy97B_SvK935QXjH9vO*^H4Bvn3Y>3+Qb5yZXHu4jc1p5{}=c;pTKC0i5e3AbSj zf$;7}-f&RA{|3_cXxM4DGfvHJK$&izS!Mscdz{i zhMA|%eeQGabKc>d@splMy^fy8? zuw)50U4all0P=*E1uZO%_ggqO^lYKJ(!EcvJ!!HQp~akG6lJ8waeHIoC7o&eHw`63 zQjeMAQ&S>Y;G=@eQ}hy+p54-Nz608p;TE>@;0~);NnsVAx`Jz{tY1i@(VNj(J>R-?MKv+J#?w3cJ;-cp^vR*dnNtM z_&Jajcrjj^e`J-#z0_y;Wpf0S1Bg!j4ZJe`Y3;lITcz;XuDA1LElO-}=Ob-DV8wqB z7Y}3FKihsU&Rb5#jJn5=-R^;*R|JqEx*}mDV5g8+>QrjDb=Im#X3+9UBJ)aFJJW5M zJdw)2bQKbpT<)fC=I1zOAc>!2y;C|x|gY;y9N}c*ttjhUv;-|9HMM{3#aQyt1R4|`4)D~5Hj#} zchK+PtA)uytRz>4(iiLuP~xIv;iGA@1#0l;9kq5&Wm(+HpkyFykv^hcG00Xr2la7v z6x&p?g@4q`gUZZdm)Ds%owzPbHpJPwCT}x5BW#vK)9*j{D16z&hn*t-2tKNzJmpSL z=3BU`K;qFxV217k^PxKu!y+M>Z@nO}oKi7fw4*5_2vIlA$>}KU;0(O5?sG(Wae^Os z;cXl8R>iCEQb&5xDcysWFLxlLV8Oeet^ilFrha74)O@yU$8r**X=5NrqjiH8)>aTX zcJCg%lQZ$Y1reA;hp5@c7D>um4jIV`?|#d(!o$?k!5FVtP2B2apd|Dnc#qJ91}I)C z>Rj_V<;MJU!a7Tw16l3y-O^bbl>3zqdUax6%^j)<6`uCr}! z+Q^8v$>{Ym^@G>_Z@enKSO{GtRR>%LdfUp|3KQ4}bp&bdMv@}Z64(m1$EK0P_Zf*1 zZp+ZXSA;B1_V>l2f^hUlIivX%eByg(E3@3H=%mp1*^iUU#ndsC*?jd0fp|xq>oj|n zXZCf6oxn?2&<(j)Ie+bJ+cADb_sjyj)8nbHF@GA?lzk5!W<6dtUd!g zN?H=U^>ra_|KQl+jFoy&L~54)bYJPnaxlb;^P+yDTSWg$Do1&Y*TDN)u?9csI#gM> z6+bL1tTWoWAWcf;Fw0dg-3Q2Rd5dcg8Ph?qwz=3Do-S3HJD$Xy<2Jx;c!uYUSb(n| zlsvokcBGmpOw#t(Xu-9~@*Yf0{D{r~Po-xT(rl*;A`ywx~5@$m_L&c2LR zpYhS)Vofby%L~niCe)}N;KFT^@8etVOD)@O9SsIq;^nrM%BQl#-EO06%Vaf?4nW$5 zaApW0Xzs7<$;A@%G|K@R@K+5L86^g*@loh{27((C2k7Bj)3lW+q-BG&P>zqF7nah@ z1aV8*(KsnT)1030t@lUzz-}3uL{ad&liCBA&S9i)Y-4@bS32nYpITSsCd4kSnXiA$ zXH$yx{h5WasDUcx{`#>)EF07##?Oe2ZDWP3_y<<*uYXH7OH+yU6^_;i-$zDE4DJfN z^Ii`i_addF91Kb%ATqc3%AduQHhy3suoD?aZ!0(}z?!;x6vm;?HF*^Lx^RtmHu>Zp zVImETCX#IOrI^~m3&s2$g7sUt)X-W4J_RT$vhahWYjTgl>`U{yX*VX)8u1l9M9CkX8wi8=@SL z1x!LN0@lavKuEScWdmw0DX4wn9{@#U11}jtRfk9lP#uw_yNbl%XO%|cmXCqLo@n}N zv+or@u-TouR66#lWIlXcfO6^4L{dP#bH+2B-~^R#Ba`ech_WZHW3xoIC5!UoSANol zD>ApPWd}=^&TGc&F8!3u?CeWmTOaTe0?P7AQ;?acgI=POtq)GUDL?C@0Z^YQjl@fR zMWeMlK$~J^LHmkk97v?6NrSr%Y!9g;7XkaydEZf#Sq>p+z&*gL=yXG-MZ=X!Nx{Ak zALUh^f{-92f9vbLcPcZX=`BE-`Y4*LAjts-H-*>*AcI$ZP=%nUXICnF>qk1Aql}XC zQuOZ|oQxa1YQX&alrEHzE#O+#lOI(xxX7IJ4pJ)!_A4*OjTQi;(>rCX?BW=T7k&}{*XPt48>aMKxO_a#KzV=vH@s=ss2ht6ci23&e z(2g?l#=ohoUQh0!V+874fY_s){!gLgRE6?7awbG=^6j%QHO%vd3LtKs5=)+}^B_mw zscWDFd{Dzk$5l&AooEy5Yh(LZTJz;+c$?di6i&o%U_D%1EXFiF9?lRlNWwiSjnqek zy=Dt?B*NVA-M1ry0IOpqK@XRC!O!H&5fA_{iKsEp_V;PuU1DPF(NvF?mCy>3%%)!J z#T=!GoYxLf+if>)Dz4=yBz+ll9q25SSRilYtk_gSoEl3n>uu zcQ^rh+u`{Db7So~w6U({hV;N3ohLMYC@9%53&+w}uqpKS$un9Dopd6&@tvb|bY2%1 z+1Xb7wH0p{_Z?P%tb?d=U(rYN~JUXEseU*h4Vt%nGc9k9mUi=X`n zG=?{1ff$|!H=Mh9aK9sr6flf(=WpF@6}Ot~rLF9_$~~hguc5o|y

#fdM}A!=eS8 zCkUHTUMj7apC?!_@8NM^3%^>5oy`(w*Mp3keqJU8aDzrEjN>EMq+q=wgWNqOA82^p zczzXLd1h;NxG)m=Wew-+PZJB1XQlIdIP0NJ7iT?CBPRe0nYWs|vK)@L6E?@^>1SV_dz~?xeX6~K zQb;Wk)z@pepDVKsNv9ucY;2UkNST$c=;2&{QjU4*T!G0&qYh)~3p7)&N>*Rz32~0w zHjP_t`WhsCL;|M)rOWwLA2K71jTz)&HrbQf#MgByun z<|$4AQ(rbI*7!>sQELRsK3Vm{It4mx6&MCA*J>Z6oN%QJ#4g*OdRdF1ZchCA^Qr{f ze3q@rF`N4gg$esNHhbx31v8jznS^QWZ3QzSQ+=8AFu18X`HSaDEno_PwuEZMP3nx;bP&Iz;x+i zo^5EYtc7pSH@tdx(CRVJ!LWO{?oTJs+j6~HH>kB=kK%>6QgyT^op<}`(!dYWR99CpDSwzB?tP`k#?#SS(N9t) zI$rvi!8047l+mlu_R@*QMZlzYafPC@J*log&0%% zZRDM?B}HDm4KB?TR4-pKOpwLA1S8_7t_? zTe22qGK0;%$JEoEQRLPl$t7{!Dgz@EJE?eOG1rxrIT-~clFzS=`Od=78cZ!mRj{K-(+JR zH*T>}w>HcOuvv8A%E;uP!m};*K7G8Ra~mx$PW9-dsh=dbNA_@uLw!WnIPw33JZerj`OdjsCl-H95H&Us6e@R*`B|Wc6Wv9 z%T%YI!I1?j%!oT|osmq80w+ve@l8zxM`!IS^%-iIM;lU&_EtAKl#{*Hb{7DXZ}~KH zRQR$*RXGPl#1IJDZVL;JRYM;5Jv2n6<*4K^LX<)q_T5sgb&*FIePSAoRvjGq_*{A09x8NEc&jxtpaW*1>rzMx;QDH@L}T z$a^Ox5-)Et+p+xGSoG=g7-fkf*M5wp=@@V}r>Q`BIENu4u&3<^a4|vy@*FOR!O-&! z%d8*`vqr1(jyIz-(A=Pqa5<0nZO(*v_f;@s5N@qc#lw?Ja;(k}A!%2X+gQM*6!CY& z(i(b3v1sbiFk__^c?f@4>PDktHu|!pZ!!$b%pA7YGx`GrVliLUm|o(~Q~Hp^3cPRIan#oyG-|D}^y&(w#E%LCP-DLzd2qWs6DK`> zI$oY$lH=woHJA&M78YQ0C`!5q>`1}Fwc(yeWobd{Y?z6ISutJ70v!+d2!%t3zzvOJ}66^}_fmG$xgd(fxqVGA|nh0CPaAYWi zIqK}Hn7k5>F5=gXV=j!0Nr{?iSJ_?hi*Srqc?!^$BVA$CJ#*MdW_M-i)?jxzFela` zH=%N23{2`NpuWv1jC32P?9&ayW<>`i8O{M`(`O0{<8cKMR11B2lypIY>A8z+V zt6V`EHNdS@n_cM3eode5ZGAx?!c6QtGjX6vArq%weI`LA#8@KdETvmXj}syoe*%OC zf%v+6)^`fLWn-&!)HSi6j8O?WEOv#u(ctLH&iZm-nsT=gC#2}z2@uY}tn>Uoh_iJ~ z94H`5P}YH*Ter6&hUf^wrBHSFu$q{*mUj<-|2r&7sj139zNX?k>Q# z`_pZ})%}hQbSvtPaniXiyz%xZcecQ4{L5xg3vIWz|0)5`17BAlc|MB zoqN{M8A(!O+I0CE&srcj0uT0`AxM%gXMW40D6f&;4VvMRi?SaPjW^i@ zytxaCif?>|H-22*39zHO)5u6jizLmFX;k`+pJG^bmFc@ebzh=v)VW&XoOiZQ?!_Q+ zDhZThrl2TTIADXG^?3NR5E5d>zFRwQrt)E{aXn0FepfHM{pv19c0K zpL<(fUfMnDoO`^pz-ZEM)hA;gq_P4h(_bW8$&6RFss^*{H*p7a2h550xID$73OjAY z!jih9JS93;!_tz;WW8NezOpxRwunZwJcV8PFqPfaCJJN%u*`(<8M(M9we(cN|4<#kB}aJnU~AQdleaK8dy`hk~K zfvB2oc!v?C&WQoqY1Zxl#;56nZto59cf!#ilSPi32veCM2H#k=hB|f--Bu_V!Aj|n ztmTZuyh~tB6Hi_tlr|edbDP%(iXcX^&TiP00xvxGCC6tH{v&6@;x8|Ucd_?Ihd#Fk zaSk3}gb;V4f&0gh%Pxl-Sk`+LdD74G6l4QcPILWK*z7#PXT_%v!IgYDH6*F(x&S^C z4`Cfm=6w<-T5{DlW5~9j}8kh2;{ProgwPz{UHTYvY_c$0F`gp1FgmKSr)-T z#Y56lv1AA)j^za#@0JWt61@`DhNuHbuzWRPm%@8^JI4U-1Zo1DCT8rA@=pTfUJJ>pMu zp~gTIf50X2?}(S^argmDchE&}1Y8Fil+Gz<`4#Q|-%cMLN;)hr=qH)N?~pbJ-r_^H z7)sr=*!(6v6tXT8>#;&X3|33G)-}80OvWFaxiC4v6Azk*0}bA={f8k}w3?^|#@u}Z z^#-^8zXSE>7Jt$*>hJvYlXQuHIQvi1$^W|>9Xfsn&Nb<5b(Mf@u+s7xNPVj<(&Hg1 zQ?l{X`1OfEbhQ-An_8d(xu9nXA5%l#b>^Qa>Bs?GN&Xec)&Bu<3$GQZus7SDWkSz=UCtEt| zhB>BMbS1s47v?f4mt1TayYdIqA4Z-Jf7#>b(=7NU4XOVJBmN^Y9oqjL=08vH3nQ*z zruui7EB_;J#QZ^&KVkmcv~?8@^AEurd>p`kYJ&vFGl3?OzCJ`HYB~hCCQ-rSZZ>Sl zH1MobpOB-)4=NZX2ETjzP%%s9<2{pRvvJE_qnGaNe?RIv$z2RX>3?PHyMK3j&L7_T z6RZEfP6wbIb+<4pzRBTNC=YZ~iasDPZ6(OH3fo>c>pY#}*}K{2dV+s(GWQQF&xa@E zse#xAbmvEw9Q_Zs{s$83{~SG6(rWr2siXVfIsK;vfBNa+e{lK_GX0{3PEuRu$so{H zeMrjYP|I%X+c^=&j_nqp-Jg!-6^{$D8?uRO2`RX$AEy5ZTmZieNzWRc@Mx8juU&sp zj`2Uv@*i?j`X7#n{&zPro7sPm8;7Fame&JrK+yhx z@(;d1vZ_fvj<-C|j~gvLFBj2kFDv;kw>gskVCm6+fRpqe;QX=cpWwLu3phCy1)h*2 z{}7D|%t5Z72{-q+D%xDFy79wJO2_A$?->lg=+L;*M>9K??=w5x2PV~e;W!Lo zn;X(hrn&C&C+E^`eAFor)Yb9i9w)IrwTY4F(z&^}G0%P85IXU0Yg5nPRt7hH>?z5| zF@f<*hr-7BeU~>mikn&`QYyQQv4wvU1Q3q3{B>Q6wv>O8EzQ8}Dc<=~` zJqHyeHm%WG`0Eh_0>70k#DYT?Shgs?kgMS;AH=QJiVKoGLu+)vN^=Aj4^aGhJ2ZgH8m_ki+Hd5Q{3NiKYZzdX-LK|P3{Adu$C!CIKE*)OSKo~ec_dVX% zuN%O(be^{s6E7a@l!*af=C#o3WPF^9`;@0<>sE{2v4qh0)8OSWP=_={=V8pTll*Rf zbH!MA672>>N?+dYy(CQErqb?4miU`dAgo3II~#^xT!(W=nCIl9;*?SP1& zdEjk6YccS3e~e|^%TjZjbZ?ojqx(iz3?$ZqU8`n_bg%?g#-Y4dcqB6MR`L9D=G<22 zxo*vrDB!P_OXxvXI?n;uo@RRCozw8+h&4JQoJhD$;t&ycAD2cHQtoxQr`5QDGO>IGOu)%q zM9Io_sAZKtz`v7XZTZ#-j}(=|u_Iv3Iv`3oAOeTF8Uz>}cBiG-(vaKID*S*!)AZ~B zs5KTQSG3z#V1e_Tg~O$Tu!@}V2c=WpKhy~;oZBB#STBm+>YOCel}z7C;FqhjD@r_h zOM0?-?q>{%SWPpd)Yxo#5_OTi62W_;qgzww5I@%90;{MMx>mB15jm5G zj({N9H}kLpy)bVZ!G%4$y%_vj0Xul7y_iQcQAtX`fRw?q;{Zf7@21k6wul_04zz&w z%pof25()+gRgaUr2y`K_zZPmOFt!0~7`G_!V@WC(5lpvfK-dwA||lcxC~=n^ht5l=5XXZiMuV57Q$udp(kD~pJ_s3g%Yt5a)_elHqZ1w7##v?#8T ztk&N8GQ@!@nMC_yS2v(HxyK?`(`DOAt@ca_PT%%?Agg!r^qX^|df0t6tz1oszPpkd zz>8JQ*5?*7xwDIL;*}mUVfQ^x0@_x4TM<`Imt%_7*d66~Ec&_WNM01r3bh_AriET_ zUHg4&4`A!l>14Iq*2M&e^CS}OCG9TFvdERz2g&Q@o!>NdJQ!XUo-kutIvt4bB3fPU z7A~qaBCd#+An=YZA-2BlQYBK{ZP$%6xf3^*#2bCG8K#fx-+zXXK5!v}5mKMAtNrx^ z8MUK@?08>y@MYH*WK@nabC);9s%ruU2M8-;4Im!E{en5o6XgB4p4wqJ*Ya2*CPmMoh|7(NrB!;`4Nvs~ zH?`d4`4yYxRr$Lw`tr_oNEfl7RuCQlJfFd)N(KM^sUQxO)n)p z60ka3mpj7bWk(d%UPPC&s$LdSSlFn&aQ@hBZgC!@dyz(kP+a6s5_8rHLmPjIwMz%v=%i#UI9cl(89xSG+8VnW7_YQ@`uae{;-|uP zwXbd_d900D%g9^3g#z&%Hz&-T0Gz^N`nLS~pr=$S-seeFxgdhw>T1ayZ;@p;ip(Z9 zDhf$4>mvkJULIRydP+0S@^2t}PnKm0KY7euRA5@d5`{Klri(fXg1aHN4IZA}0Uup- zznBHF7syu@vQQ%wvw|uOfX?@QH+zefaQqDFWx&`kAlB~`6$F!RKiy@4*6=bW&U-Oqy8jYTbkeRAyN z=>+op1vR^$)aFpGSunD;i6Of~H?Tz91f^-~5OiC~oPq+^%g|C?6FSwE(XromoWyUm zHz^8vQ95JV+>#%VIPo@wh5UWu_}Ifq{Ei#u5nx>t%v=C~Ul071Xv-XWk}13E$)NBsly~ws|g_#HUn|W?oqU?|2<6Rl9|BK zmzWFl`MYrfJcXOjG&kZ|8U|@TTrA1GPCmMp1$5U$j#!9&h=q znxSBZ8ef)aj)FRYXTHf-RG^ZS&b~gf1FAUC=mbb-zIjIJZUQ+d7edYYC*!tnGK!poAOdtxg z9Cam;i~uV40#p|Gc|2kIzmU2jDeo0YOa9kgJffA|X4%pH*l-$tWaG>B{F?hYzilZ*-HShZaA8382A~Y)g zB!n=*FY)`wF#{E%U;(N@S^WR-)E5MA7Nn8rL5*Q2XXufKrQsoooyp0j%DBblXTuHL zD$&g?B*{WOV08kOz*KXTeYHtkp2UfBb3NVFU0-O_ZsO`20e+qsTa2_TKG#fztWdA` z_2E7$&Kn=QU@t7Nb$$Xe51zik_*|x61mx<5B`{fg9LE1rxYCJZ1gl{v)XdB?h`j~S z5h0N2)k5QpM-vw^m&Edw`2{6)Qd_1wE!XE79BOgY-DH;s&4v_APMIc#s8@!7?>OeE zk10t28MUzBoN)rb)4(Jx1ZceH%ixh5DGNSRJS_naszti#?fMN67eD$P36cU+w^uQ&yMa-rq8Foi+jWEscXRpPd82P?rP9JY}E;sQyAz#?E!-1p=B2 zSm=8OAG>}XS`qw7<=>>p^*S&9LpGTCJstz0+VGR;N55yhpSc3SvlS{n|0nQt*ZV2! zvp{hmX?`i1RqJTBkRFXf1XUniXn`PQUczFxQ63FVSwN+7IyAF9jn7_Sq`31P1JWND zTqU)Qp~K5^<5p^1#u962)^zUza(D(HlztXau=~un!96V=XM6LWe1ckmm7{+ZJcr>w z+#w$i2&%ow@3oBR?^@Xpm9HQN{cDN2n*8!Fb^BAFel-+W83$Ut00ywP_<8|8ygENn z9eo$ipXvnYcrUbSv3l}YxxZz1w8u&ys4xiw5TI2cai_;(!{Nn#Po9vj-x7Q0kcDOK z#V&vC`Dv%;#o

Kl4viZT}Wkiyw;GFa!{X6%a)OKx)1pD)D!v;Je}mwKDfMfT%3{ zk&2HD_<2GKk>R! zbHjgflT+y71E>=9fUlK^08pY4?1q!4OKSA&Eq8Qv)wH6#ui{+&XDtaW{{S84epK@d zEuqT*h0z~^&h(?GfNBuapQMD+WpA3*Rh4X(cM$igs{KiS6sa$lRec&jDfwHFN&J&7 zS5-~>Z!Z5s%dhtTJ5pVNMD`oAWxAKlhp^8afnUo}4eSR>{Bp!MI8@4Dal%jjP!e;!fS_;Dphbim@@ zkYfW)&U~+fWcBBKpn(Ie>wl>wCATVnv^vZ+psR`$$Ywh&ebenge|(j*dRk_hTVfZ| zud>na4U9BUDt#}e9ZdepIDc&MGkISD`%8QCH>LLPvGE6Cp%v^^8~eAw{%i4R@lU}1 z)y+H_P5mj*y%c)kIu(f!C2sdX?3h*`ea>kPLW01`64< z3AFM%nZA;f!+E~+=t3~qAN6tu@6*}?@?ScdzohXxdtEmxf73Vpt_9!Qjlbsp5t!Tm zWaq#4B3FTF_){-`4@@X;{!NjgEy!<)@45sx1(a02OVzLBaW7a6>ia*6{LUc{Xxicc zn|llV)_9vghXn(Kzlb;^?gFlS_mY4p&p9(a9 zz0d~Gmhq|qbokK#Ugdf^liW5rqT4*WdYyJ?<@RL z3|_a8nr|8qS3;Qnu0Q$%xqmJ6{-uw zRZrOL?Y-MN$)wLKTB}-+*C(%}8BP|~w22gIF!JTLja^ZaC7CF<>wYJ`W@QrCy^H7w z2Y1)h&p{~U&Q<}Rv`tj;2y^tv9@^5Hv8P88U;8MNi8(2{bBYP?U8!BMk?D=szOMDE-Dd2cHF zpc}jzI0!~?rnDEeDy~p)e3LeM;0Dk6ZaPhq+!1UFacV;;-ypbk5_5TxS9^I*s_6-7 zo%Mid!oa{>US9n$lkK#4c^~5p$8_gTU?#R6qFVPG&RU|_I;XPnHK?Tqxz z^{;=jFgcl~(jWoyD;21$dnB zSh6=VOR(E6;d1K&;CqJmgO`buA`m=OtuS>FOLdeJQQVMSbQRFtYn4M-qACZ+I+JdL*7+S!bW#5rgIr?Z?CV5E_!h5!v(F`=*t`rcr6n=4wH?`96tEE zA_5-cmXF!2Mr`K}vAV$BX#**hgSSlBYd+MLG;*%7LA0j_EFZ^RoNlv*a;IrGHh^UP zEH~#|J;rv17^-0Pk5_Kj@O=R{gumi=|GIz44R6{EJlRcD{fglcw_O8wcls>h%2znV z{`?Ro-ew;f6V2@AV*)%~7$dUAKx(lZ`NBHZ*9#h-%Y+2)$@`6xh+8*Mp+dAV97*30t)$F0zU%CMAmbd%YIg6dK^XJ{H7XPth4um7a;3M{VJtOP z-Mn=H%X9trUhRvk-@A!fV3hPAfwqbg`I*>dOE0oD&$MBbiUV&tYdw`F?LL99yJRAD zTwf-R*sDJBka}iQJOL}Pe*9v_r{1`YO#h_@k%q#$E&-1xvHC3#r;k>fa-8)n^q@1O ztTy3YGe!gbDY1KB_ap9yir7+olvoM(T4m%sC--Ywv4gOvwzA97x@-?P`*Jeh^*?jN zn15t%lm7I1i^siQav>J3SV_10TAW_5w=H64-nObH+G*rbK*3nX2||^{tL^7?I(D*7O$Mv_ zbI7lD(HEMHqeQXnqI_J7Wj2g`bE+j~B^;}AUoF>iDC_1kB~RO_`=FK=pi&-klyoDo zn)*;^QOBm^y(_#!a*5M ztwePZa~_dKmd)Y3$189*MqY$G++@4OLItC_g#>8lvZi>vG};p7-K5V-$$RT+ANMyt z>7TUUSJA2PrhmiU*@7_8>KdAKw}rFikRsVpW8^48uR5W=<@YWB&OFc8B#|n;VgQ< z6UvM~D*pW3&!S{kpxaV#I$!;r!iJw$bTx9ofF66myO%SN_IpH6DsE| zFSyfTOjPsgTseG74{}F883w<~!AY1S?Ai53HnL4sq$(GK(Na_-q^RbW~j{loQ*Pnoh8@qMca0_bh(GH5*C1 zQpPrHx+LCr5X-Xi;N{f8r(y1<^n5mN%iBGjhLdims1dCg(wK@2+*=07Q*i?icyU@v z<@q#MV_q)hvTRn^UMVckw?s>_g>LWBM1ruaDYr%0hcg_rj}hiCEXnG^AJY>d9^~WQzV}kQ zFMFs_yJ)~-*yXLj7?B_ESaJN~%qmI6{kix2M4_!A`2$2Sx!XsCZ#8P!Ke0`wc|5u; za*%>P=LRYFDaB8;wNn2x$J|6Brn@YoWKbb2ihrg-U#rnzH30 zJB9~y-z6E+T3Xs<3EZUcrqCALq@A}^f6cwZ%}@Q>V!OH1sh8EPLjnV$k~D?Lx*WKS z9;^wLj|4+Q`+MUl6>45NW9qLfJ+!cUfjmeSFS>4%eerGS!0)qMln2+*A_H3M7j}lB zWE%d9`}aD`i9Fnq8|7eM7vpC!>z7vy7Xu%Ng z49XEn^&Qgy(vK#utl|+U$O4jUa}}$}BosUdctx$BTOdb&rmWw}(0{jlVT=0N0(BBS zDx|+xN^9tGv^kS;9Zbaenu^>N6OYH?FemO}erfB}9EVaD(v+&5 zjh2`L8PXy_42&pLZ6n6WdT{o7#ie=1hr9=0IgD~-;)4S{qbxm88T~#>i3s2tmdn98 zYHOhK^6v7;JB2q5mQa;T2a8`%LYj;KLv*H|+=0ewR<#1psqNw3@}ANG4-%nY zE~!p|?PWGq1uLn*{_+1zQ}dQe|zB@DwDiOKM()^>(@6SDEDl+Po^i--mAA_w5 za%NH0Mu`c}=dIQzqO~WR+IqpFqU$_UzIz1|J6)0x!bk7DP0^-nkOS8a-@LB)d;^#E zzEwhsZdp3orC3u<)eZH@p=bI<9Y$mUFGS#Q3 zMI@d#J@?YQDHRCNC=0}IF%tK@pjCg`^J9pKVNfp@T;+f=bo{-vdVggq5cyayui*)i z__6uCqJQ=CVRnM%`BYyiI}%3CuaFHfZVKb9$@gc-gp zP^l5Br$<`+5;ja&iDgZPY;KotJ#3C{=B~wUP&+YZN6Ce}+Rrsks!k6f^VAY4-dgu& zWp5gA*KcrHmDnI8+*KT;8G9)!6^pwG!`ENts};u7A{OMCs;lSnIwX9Z?2$;isHg^8 z?}*hylNhaD&=;<8;>0axf7scQm3BVJAtt&j zl3_Ph@!aQ(55LHw$K6F*Jf?5it;IDz_3CKWD^{jm=lT}0i+zW2F7>`f zr)kZTgPaSMkAYucM|Z#~X%$^+oVg$))xyi%t?&JC z48Iu&a)m+6maqLN6GMW`T_yrgCg67?f6|Bz<|rx!Hai%ERws~o<9!cE<6F41mX=l) zJoYgR4)QKD6_!qyKsX-Ja=}*=!I};`j#wv@Q0Z>en=ude3NYyDo9-7kN~TeJy)1p? zl|3od!5Z4^W_&~2hiUCGBb@demqvS&+8esN3oO#!DPkqJ-iMmuP=3^W`3*5xp|G2b z4!-E3?c-eOOQ9GPas@;tD$QqzBLrn`RIR9LHE+^<&W?>b0>gq?>z2*N!|S7P$l{12 zuAj?hZ9{*Po(Xv!1%$-imV)sk3uvl4qSLD-sLBh^U?!#F7FK~l)+aULDD>rE{;4X)UVV7tnXcf?g zxh3QyE+RljneQM?cyOfdl33nyaeMWoe9@gaNeQFS@zoRM#p)@n{oPxycAFukjBB$v zxAX(U?v-dg&y+RlTFNm+QE~jz8~>@3JDAQWB98Rt27Xe_D}U+uq4r9YZF%AJrcEkT zjkg4pJGift(PKq~y-3)0J_74t0uK=eK0I8U=^M zE6e8G@ne)$>xyl?InZ&LdcBQl;CDQaKYiuAzhyS}@?LJTkQU#^Ec;FjQVACOpvP{Z z1EW?wuD30<8L(cH@%n8%I8wcwL{{?gb8d3QQ$ghudZUWzFd7_YmGxvJja%UkTm8;P z1k2rWugA7jBcFvtF7Ldxa+G5Y0KWGlCfJv(Fyb~bam3T{uXkcGT9Q4I7R=_;w?o57 z2r#E3>c4o_q#PAsRK^@L!PxjqRFcB%^)$Y!4eiW0Y%LJ4y%gDoz#D$7@5~S+V8FPDFcA{1%Zgd9`2Z{79S2YKN4kh+`N&oh}gLY|*Ap?8I?i!C(e3#xL zyEMb2b8XA9(uAZ{{1x}vB)&&UjceOgd)0^)2Kd7u3|Z&Zl3<{%8t}{VBQL=b^J(O` zk@8T|Xn*TY+}E(iG#u!`%5^#~5kb=s-?GWiz9=_@hJ>dl+0Zbz2Mj;humedh$~S$?Mqr`^Xw z?GMzO+q;j@Jx;7njx|YMS0P2dD3gj@gWNoNb}={Wah!L#T*Qv{ktt7F5{*XRv-+w6i=uF1E&x7H`^mEr5&{scrZHm-`qLg9<)rF z6ZEINSS7D`@H{7sd#VTF%6n(HuDpV}amE=ZMa^rd^8 zQUwG}Jy9yg;)VYt!vPA&IyR7>GHY~ml0CJ9bnc{`eHM#JZt{QLn{x_dkAY{LI^tV~ z8YBD;?Efi6_nqU`s&_d$>htc};XdS-xC9oDin-8qzfm)$-oC3r4H3NQWR}E^<{Yk_ z1-^XuVXIb+bb-;lgG|HTV=?l|@MSqZk0=dKby@|k>ULl(?b2bgqTP1s}%E>O0N4;s31PV3luaI*`MZ_AuiGOW_@)Vo$X7o z&DgBo{O2O=PerFs`v=wuwvQ$uj~}Xh^1KnCeboGPr`KKGvwp-gVJA%=xH({qh>Zv4 z7D_?ju0F2jq7qpZ8-e+okx91A{A6c*q2$FXGU*50xLB)mOsTxnBrRv791-qXaxZIz zo+Z#T8DfS`@rVbiH3ihISK>@M5!?4wA(cw#yckkfFs=w`_#lNs`oguQ_hk%bPAO4N@gn>?Nl_dFc*k~ z68fA|GmVa#TE%O$kETQfP?e`}=>4l2b7H36%rCs?gDGpYcY95>Q*Aw)4^y-H(2~b* zLgLZXk^t^Bj8dcTCV$cnnMRB@g~kW}gxi@}f)1c*-GTwxh1)0rheXoYe1S&f=7Us> z!#!@n-1NbXl;ig|r0m8$-OEdI`U%mBfu52xAZE@aHX%vyp69I;R1AppGJjLhSEk@^ zSx!zDyJy|;cwtU-NDKj#j6^hoC{B3&91KBlJj*X;CSOOtf5UhmRz(%A70J5_7CTj{ zLOsB)oM&?EyD~ z7Q;vJ^2~~u!4t)XC@!%m@%UlI9%ec{p>9&*po(FGHKoKu?=V!k*RbRMm(~;-iL6F3 zdD2ZXt2F-y0Czx$zv3MKBt7Ew75_uASaRg)z;KtZxX+81Zm3^}#U@MB9gt0n;1*&o z!20cIsestA<&SDW%s4Gz4<$vc^p{l_Z|_NqfsH}ma3-*bvW|R|1etyz#Yal)Wpo1l z={Nj;KJ9Q6N?4;cRFN3Q**&dq942X!$3+C`SkQptAQ+Qq_e^n;F{SpItxxoF zJN%tal*z(q88r_*1Ia^8h)SqyF;t=?4#o2%%5LtVPV9DZPUidU6hp;>n!4`lfTTV| z)?eST;< zY4^P*{|dY>ovGtYNTHEr#YQ~5czXg%@kG4-a3X%e|33ch5%V)o5A^f--%rGw*ZAMB zT?5g0hN$UU)x_T4jU0PFlbX0R*fF%g4Syy&B%zOC2F5oDDWif~&aiB@DVT$Go!xhj zWum9=_onp7n5;@(Ncpio!1yoVK-21x8d2~US)FYudrk*)gRX%0d9aOcqmHMoJ%_%w z7jm+Sw8k02V+*(!iWpi|8zYCS8Hn08EFP;=df- z+Oob9SWgg|&9dVJ5!|BHjn#_Wp2nKjioQ9Rou;2ia%Ew1)A2B|>D%*rgVo(VBZn3| zv?Gh_)C_G9*R~gRI+{Xu{qX8h{V>p~I*gkWQlx z%yW>uhe42b9AZ86nmh2x$wRTCqZm*A$BxPJfB)k@|JVQd&;R`&d1pck@hn=05KhVy z2meWUPpf-P*HeEDcjSEddcWgO=&=)W{ZgZ+Pw)#G{3YDEaxu%|Rrh*^CvX0VuFxba zRvea_VQu%QETGc)Bl1sGE_Ti>JkQd~J z!6lDT()Rp(E|&Z&&fIOZn6O#L6X89OjL^EK&0-o^jcj* zh!w6>a4B=3Q6Oj3Akt{RgKx9!Pn>d_*(%x`cJYeWfnh!M{j87a6LE*hWN>Kj(py}> zkm4wHaXBUsSG5S;WmEF0nu7CWR?0q3hD7Y@q; zW?1+MZWliEVmKwFN7F=&d+TRQw1qCGM`P;LhiI$9J&@x7mGX`RCk1DabBb;&(UtYU z18yG5OECC;!lmE5=oZNA`k_w*+HcyP=_}Pw(;}`|`E)}x!Wm-HhK+xJ7VV)vV#@HF zV&PC%$FI;)2>)iV50hvc;1>E8_s_6o=*GA`A6$zWn8~N9ZHUFfBpiFYv_J7&kq99I z5^;htiFBE@3qRvb&oYQlI!@@S1&8tZ4l6f;%gE7F)Jsfo9h*FUgMCKK+w>{lxr5rA zmceKYZlg`Sgej(+{C(^mXi5jZ_Wo$NaM8iT^Cs5!2p*_+aW=)U`{IRn#8l7;kcXp~a0HMLLx_*Mq= zcBu3`6f}`g&*3R7GMp>hZs3Lq=KdbEHmchiZc7(Ton->eah2g-JELzz;cPR&he#L_c>Gtyq=4eA`ytug`hb*gGtVc%bvM~=3eTvn-qq}$Ot1 zWk5lgT|<#9DG(I};^9xvVRoy?A@;Rggu83HStO>pt+ty8GONh$A-)P|U?eOJi_D=F z(cX$Zp%Gd9dXiFJV{g(dMr=!g<)hWxV7Kn0&$DY?Ii^FCZ&F<;RFFA+IP z)wRC5&7)V9Q|gMhqXF zQuPpyG8B_SVrY5Y>xj~a=NDI_*DDjdF@|SDwX;ml+@9u#Si`>xyugrNW@x-+91nad zyFL3#R3Pj_ir#qCLD3eBIU^kbaR-I)|m#>45WyjlmaCi&J4 z)-fDT^u7qLnt#Fd8neU`9+K3h;{aD@Gu-8xB@#85h{Q?Z3W%Gk8>}cMD<*gERc3lh^?ZE&F5RJ?4nsD!d z2-faZJE38>^)$oDi#}>F9~o8fsF; zYL(=uxUWgETJ5j)$7*@BZpLbLX!Z$w>U>pp?v2&*?(gE+L9DY~~DW6BU2|yG9 z{={YmAIDV~gYNEV8RM7?IGzPhFREx8)4}J|P{*Ow2h-7@GU9=rFXL{8CtRpdnti;N z*UCEn!12T^Nm|FBivu30^wMo>^a3xeWJr%{0oeyj!IcK}z><#`3Rj}50NkEH5inBY z-kijV)B8bm-vlaxBN0;VmeX5E(!m9*Pu3kbF60N*zJ# z+^Yl4P6v*LaRxK?PTdC}aD==(In)T2pq#2g$Li{*=0wnANfCv&ZPFEVLp+@FdoO3a z8)?j=dT(LkW_`x?mQpWJ3!k4)H6Hzu$4jdX%>e2VjG`DogcsonCBkp2xAB&fsZPIp zPj)I~V2g?Xq6wJ1B%E1+er$z>FX?j2Q7LXP!=lCyw&^fHhfGX{o%B-O)Yl8+& zI*iJL;WTiLzzoXR!2wTw6!bQ1Q$la|e?7m@$F}TSJ{MMRbXs>|KHMbAap{FcS_WSz zA>KCyw;px=VQg`!+*yGKvspvZp`r23zg!)-L3w3eVY+Uq|Y z9&M{ro(LYxJdemR0K?T|DfslE3DlmtbI5(|(PBANX*bU>gFe)|w3}LAX;j1uwNWqW zxux;-NSnWQ)uQ`tf1y2PjJEjJ>m13A$httbmK9wz9fc=-8@4+qQ|lgFr8F#;nb`%+ z=ZBJqeN7#XF(nym!qR8Q@tGIIIiBLf6K@Role7*sY|C#t!|DPY?<7c%4)Hplo-maf zvX6j}+mWaxwcLeRbG!P(l_rgFP*c(}ct9y_;cr-j@IA7k$p0~gYI%PSl^EFwaGM<{ zX=^)?)m$BWU2#;2Om#rd$l(Q*!Tpq6L*P^Fa+L|H5WKi7D61g-nJpeNqLh3BHS}kX-q~ey5657hDIgl2iyOL;FWQiJZh;Ra`?A6cGb(NIASQ2Qw~!3alx6MZ`(A0^1=G4%9Q zjp(?M@-)Z_{Lhw~Gwy9b)&kx{L`dgNFXFYAj~=3ihycOEoU6Bp1)%rMl&}-$Cg1Dp zY-Gs$9VYQ_QtNy8{sY=}GJ8%7y6w41v;A~gb4HifXT)yD-KP5>2d82nZfOksb!zug zjZt0X$uwzML@#ym48R-ieBV@(z}J3wW8F)qwNd#fnf8MW@;VZ|>UFMt zxt0$f%nSNLrV}W$o6nU;b{9e6PAEK{Gfk?*kOro^HGEwT*T^$jo;j8C%Wao)%7#5I z-;kxBeTX|sNumEhsSqgNG*M4!9gJin=fmg$=#=0n?AMe!LJcFXs?Vy#7_YDJKnI5f zC(P(+M#NLo$r%@M4lOC(EDN!s)_8*=k1Z1bZY?{09$U(U${$w$up>8#mUR|IzZuh% z@uVz2JJA=`syQGkfWPBG*$r-F)-jS)Z*gg8gR-|#GcE>AaUrP2Tl~-Vh(;G4V?f`y z$&fI-j|gLfE&<%k6NDbwQ_^Q^)3|!lIUfiK-NAzvipnUEWf*$D4T+v6oh73^yqx%q z6U3l560TgMghxnkY{}H<&n<4}*&ZPRHX=>GwcV8=9y_Lxg43zsy9@gUqt95H5KV26 z2ot7^en3>Cd=d@go>JfQFCGl#Z&RpbA5xU%sMDa4xlYHSGhNi$g9IuXVf+HzG`zU2 z4eBeK8p)VXx&>L`Z6%2z6+a{WW^Ob={W;LH*;-a+12zt=t|-mb0V##BuvPPh2<9Lu z^$ggNGM8C7iLRjgKHiAH7LSqC>Bru*&T2Ja8T6(vEY zI}l^ow?nIU7zoeAaG6&QRLiW&Rwqn9PLvR?R!F&kd_-&@gVQv;?2Ft)aF+qn5ULv@ z++|F@E&$_bSe4Y8@U{O~%|Mz?(lK_2tR@>eeTiauN7+uL%!!f7r1??j{brM!{_M7a zEP3Wkf2M8238y{s#!a(~i3(JU=uI9s*oMd+q_}QN@%!7gG;mbl*@On>I^vbS2-ZtLh@3es>LvNX-15cnaHcByvY8w zP46i)hRQI8l*4$8`7?UZt3NECh|cu}eZb1?``OvF)!{?_hHbsaKxRPKrtfQJ z{T$f=$pMZ>6*BFfL8I&a{XJ!R8~X;$mOs<@cVZTMT*%4d7<|qHDTy#tMaa1=5u(!J z=Laea#tB5}Ji^JrwS`#oud863{*Mm4D$%HexWJ=#mgrP03iZK|loOA~XnV27PQx)2 z;x*StLa9gkxSJR+q6E(Y49qtFKvTvqI5!YL&dHCY1Drg$<-0hyQc6y~j{YR;J-_~< z3vTSff580W3T$L&S%pc88l!+ly^n03BlDDE%`Bee(j~HsazokY@IM9 zM?$GWnba2{dNhaGb7jcaK+@?E^acbwwxm^2FIz!Aag{K)_DGWLCU&&QPrGgO1__pc z&%riCpnL$NTs>uhfDuH*2`9lZtk4D>mS$9M?lxXgj97!By)65vip!~*Qk1dPP}7c| zUF0b9NENOqoKu;_s_x|&M_+?Q`LTY@-Ei9i=@`=1o)rre{Uk z5Bb$LzCI=8hiobeQbaH$zkDCwA3{@`2{nJb3p-*XuDd7D@+(gGgZx6Xs38p={CbEm7;!s1V>)5MhQ;% z^b8F3YG3k+I4ToOsJzYeVzSDih}}W498|lVUE|V|$I*yX?GS>26RqY8@s0lx!FJQ{=MxbX%f+KFFo(M| zUAe5eo^~HG#2;?8Rk|gmSHNZ5HpmVM<@|t;DY!<|Y(h2mP)04-;dhe~KXnNBMUmwJ z?*ga{nYt6_TGsS8{-}7!>J}7NoI=PENG@Cc;ZgZ|RY_>juKi>5cngZZo1W`3hbi+n z_AMtaC#j5phfl@#;^zY50+aD5C(84>CxV*rJ+D?BtfBiRc z2R9t4ZEPjrc{zJ=sSX32@$ksY)uZW?B-|lJ4}}zwkv8H?asNso82m@Fl@Pvw0(J;5 zr+36OoO(aUbt3uohxS~xKR?IX15(pA;Lrfi;iPMBKJ@s*Y(1iW+{Ux^#Dvwc@(0*) z1w8uj5t$ekCV z*WZJkx0L@M0za>6BMeGg#GMXz`bDajh;xB-eTTA&wa@VD=Px8(K`iRlt?-&QkouLI zXm#w?o~6ENIBd74$X$+5b^7>Y3XPCz7t8g9;JX;U%Z16T>KmFsq6qV^E-}Q*MCxr{ zeHl#*(`U17drwc`pogVM>d!CN2~F$GL_<3nGe#RvMT8(C=)O)7L8y+u3G>%j`lsTu zVS3Q)boT(^%Wa|r)hF4e;%H{RP{Y$#sz!+t!rLu{s_@R@@+vNfOdGI`5k{kcPxw74 zyO_N1ljKqHcP5WjTz&L-ZNN8Cfv3kj_Ltj#uK3J}_25!;g&FH|G{WU;G#rRSoaFNn zIm@%hSNdY>3vp=hcBgR`I$rQJbf4qj@ia+{cYBn9c6J%Tzt!8m>oAf%{y%UR@hy^< zhCJMZub=)Xx-paMrx-hQF--BxsKn~df!BUO`Q8nVm%%m{6t7dh7I^;dW8*5rF?d&A zen>(n3a&V;O!4InVr=bRss8g4m7-*}6IHf`uk;U7>C!os>osZyi+>C^*4cGyE!CZ* z8xM7r0w=QE8(+xc2he)MTR8W_YlJAt*>=b}>~HYQjuP(Y2o-TT-{XWV?N7DHf^Qmj1Z8@b`ACsEUPjWo5!>H=a0(;7{tSJ@ zFLjEk_$SByo*UBMG^bmuj3{eA4=|(MerQ5Y0B0Wesz41bqYY^NSbVpm{Sq!{4qWk8jU6@bIL}Q?0{~ z*9-bEVJ6g4Y`)jvIrE{G7}9;O)(V0S9HO;FIq;?W466*2&hsdfw7JisOcLZihu*K$ zXYfi@lp3TTbu#fD2R;W=YP4Xv-nBru8>bgn8eI_n5^A-i_*Mh+h%O zV#)BxlfodRUfIR)w+{l}gc|Uabe8g6rZCbmHtjadFEY zsn;{+V)2Q_gt8ZGI-y*(6+VV6GqqQkAi^}2#(Bj#|HV65OtPP2Oam$AoZJcd50;+} z`(OZ^_8e^ey@2o~Le80#e`F*<711A=bkA9nZ`5r;nC9H=?LA|60;>6v$8;2rYagr1 zWmq=Az9S;^6h45 zX-XB!jm!bU>@J5S*{3;0+SClObtm0)_b>H%4US01a^K-Mh9u7C{0>feo(G8(o(P>= zr54!FQZBU2!k{i%n?Uqh%!30AiKB58a5iaW#npxC#EHA=6lS7z?{QP^{kCnsZc0Q& z?lm6l-YErYKp8f6a-Z7JmufTmk%*FN(ZFi0-kJ}oL$!D3gES9}s-CHvlp;K4O|v4X z#kt~4*u$U1m4d3$+{h!B?gOMSj8IiJ3Xl*l!L#ora^?4(3F8N;3Qg;8;-wpoxH9nG zST)>I<7?U^5h#CCY{0Ib!_R4=a-e}@)MF$ANviOS#tdl(h<116#A_6EiuZ`2M4Wx~ zBD&%MS1RMj@oF}0P^?%}EI2q=mT2TaXSmTKl!)7r3fms(HPmerK3_ETuzZJE(%x|G`@{~ILKX!{d)s*Bb0{t8dJo~d+aCChKs~Vof>omY(Z3@1=Z#DaUv)(WQQf=aZ1!TB zs!@U}V~Lq@ZIo*r#xkmZh&I?}&gl9mmtoTBPSx3^z=l)kt>*w(;Rf zhXPjr#^+3}+K&dU{Nm_k_^ceFHFxoOxBZsuntlI(vzsAN*@GW!CqZp4ViJg2pG4ky zB%g$Bq_r%!r5GU&8!3?RVCZHnsQp8@Ekq3yE;e`;;zAMSx+*mccy1;Km`B-ErAOSb z)OAWmS_Ag(ZWvyg%duEx5fb{Z!Y%SZ=>jVg&%qm-Hwnqt>g zR((>u>6$oUa*r|^cX%?27aX`}H)J005-d76$yaIW_8SYa(@1Vu>yW4~qBL#pS17N5 zG9GmWi*ilcv?(>wY1))Vt8;DSq+XT1;pf7I*Ho6F0Iy{jKYq1uvs||dO-HJ*@&XTe zS~?n7yUlDWnUxb`w~|5=PKTNJVjgK4YsBxjw@S05&C+>xl+Om5$e_`Rp*rAv_6KJ$ z;hXVe+9$a5-yvNVsxLr0RrR9WM0B_3Sa6+2a$Ehlu9MRdSE%)6zOA(CJm@jYQQw>o z8IfZU<$_luwZ$$4qgQSdQF3UwE@G;-W~|!fr{|zJoV?O@+vmFZ=$+m(fa3{_L_vI8 zKFJ28nsqWMwscZd5)vtB;RurAlae+g|81C2;vp=3S*>g_&1$4#dlGW_DH&?x2R~J$ z2bIBiRi#73_`_E-1et#sI>RdVGtevMd_iU~p996`Q9RKjOx_zo&q$t|L|pOmMV4b; zzFr4RW8t?q%tE|LlgB7Qnj)PsE)7wlCQ)g?%EUqs6D$q+YV1*KAH@l7nmfK*ucNCB zSuKMPoc2(s+gNtF4CKZw9aC!!tF+0~GMl-k<%G(rNMCFD8*c4m%H?J)9XbwmS?JkK z^p;S`PLmP04&#aUPk1@gEdXLeThBu0n^RP@zc~)hvRb&`BG%m|L)tTtC#bq+xvL_h zzdX|drGRrT1nRal%jRPd>>I!hIf^aksB%}ts+jslaZ;(t)Qo+&!j;B-ihotNR+E-% z1#UHO~O-7}CU?uZh$p<_D>EG(cHnF^U{26zK&?NxC)9XdT{!J0@Itt6If zoUm4tnYi2)*7Mkux?ZZ|-FQ`QbhK4oesR3*NcB};p*E}Y9e7!h6`90KmmnetBV-Ul zhSdUkoRnS&N2=NimG`+U*W9h`=q2-NwX+>9_o~?TXt;ZaaP)pqX>mWNN3G`fw8NmR z`R#$&Bo_zaWf{N&EgyTsUWeRobs_bUDWh>pw)_^wtD#aX&Tf_bBYxRB0$n)B&&7Xy;b|MtFLziHy}ThM7yrO z+D9jCRuaV?KB}_$Sg`sAaKq{&DCU=Wu27ZQ#x%is$B!1c-l}`pa;wv5)SBNOt>}HE zal{LhO^fKB(HTMR##868N8cwBI&8npWxI3>W!CK%jrKkuI*(vodz@JJZM^+fT=YdS z)4SgG7-df0MmYGikmg$QV<oVRL@EOF4nl8fd zQA4^` z-sr0X=4bcSCqF3?$af$&I9*IX8?;BV{u;++6)57S0o9^e#!8|7Aso*|dvJ=&Laha= zOw^2AEa>{m8fQd1kKl%$-IR6#Z>nXji_SS()vEb;i`sPnD|V{>-GC*ntK`+KX!U6^ z)q<`{5)N9=dbXo1XP3^yFj+0;K8PmVr)hK?jAT8*Q3kS0=V5fLhOr%;W#oIG)+S>x zrmV!U|2D0Jz}FBS>ga%*$pG$KQ6q2DG!p(cub$%sd)Ix4VZdDNToZ=VZQM4D*6WSd zlzp^{;jYdowHx*=EO%RW^fs(sO%CHW#@s5A8}mR_Ve>6wbj*)af9OSTx_PD7*05=% z=Q+l#a_Bp}ylm!FA422JC=HCC38g1G_2$fToMG@>j3*P2M>3o=x-L4u#$uel@6>x3 zKf9i9LTy~EFsGxXbhlgq)E0`4{H{od%eiY8Xy|ju4|nYX!9nJnvKGZq+dqHctiCj? zkQ9|sNFqO67g@M0a+LCHXIP?Gb;PK1Y9Ez;%IDg@#Hpaq+l}q|bh+tRtZbe8&|+xZ z@v6PQCA?HVU!fDCoz^n(I!i*nFK(w#?p<5;Jjb4EYq)EhZoX^oCPTI^v)UKNFEe)s zq!GP=6;}trd&RkQcEqq}@tIIO>f$RSBnGf6qZ_<|8|-OEjn^PY`}ROa;|mJ-(*B4V zUSH`Szd8}+zl*1h|2k{@*Pk2z_4VmD^xvP54k5=8ihrj#i?3F3gzD8_`ET{QM{)r0 zx+lyVbC=F`*tKtrgDQHES6`8#6P%~rC%(1Z!CKoG07R<_-e3%Mv;(1(hi^p>2x|1U zgmqpUl>wyPgerflr3OvezVs8SWYV^xHP#M>50rLJdNcw%)bTD384~ah zBBon9;8Zs4UnH06+isZT8%kh`r`dU&e8N9Sgg}GbxGU9ML1Y>3Ln?w@mbf!kv@`yZ z-pK0i3!UYB(OxKXQ0Uff%~AVuX{oU7vYV_P*Ipa6 zD*L-pfyH(&)88mr0wk79Pya2IG?wJH`?46|M1f)MJ4v+tQ0)&o7!8Z?{~K z#obV0Aho016-XV;;t8a+n;kUeJ0AsF(>**tXk|2xGi+@quj>k|BxMKj9_X}FcpP}` zOoe5JFKASy?9FL$qQt@hL0bejIB#akcn(EL}nW< zS)5YBAZTDAr=w0tcVzZaNKhChhAKSTDKaEW?-~o|HiQC=Jy?CT+kc99KY8;B}>h4ZKox>J#4`rAChdIP?LpyvGedd=Gzmosx-AeDg%? zNcBg3P=P}&PCcH)GE_AeS%A`TJ5-2~o`bv2`Zj4C|4idX!ML4deXt7S?L7*xVkOH_ zvFJJ@wv)}MmW+P4b@wlNoyi(*fZ^vua{BXOdwPzPPY-dhKZ};9KZnWbWpu3#q#Peb zn$H9wuDdwj<6k3>L`@yYP=pdv#0D8n&;cPihzmlhr3Il59`*SX9(8<_!8i?%LxQ@r z0g@+Vd8yuZj|p=@?^@r=igIsCA8oJ5Ux*w^0g=)BC8@x++f;=!nQThQnni3oms)F7 z>{IYn#JNbISCENa;D0{uxH>Q>KeNi>Te4S%r&l#zEWBEq@MzDq*uV@!X|LzMQpL+m zEW?B*NYnv>6qUR9A2EtVuGjH0MzS+`D-+T7(RCM{HKRHR`ZOM%lRi=%rmve0t_7u+ zyRU`vJf2}K&_P2vduWRUXF(KfGdgBbkqag}Za~kzZq)pwORMd5o7C=K`1I66HxA*> z_zP^Xvncp-gSS25lGmhRmFpKF4!|K6UV_UEhjub;mUUdO8oIn`D*P@^lDW+wg8 zB_$fDI#RYtT`i*|geb&{#+9ik;pYOO^;DIVlKB|dK@JRWT@(#*x4iZ7V{PlQ$eFJW zTpYMe>SJL^m1R|x{A+Sfe~~k3JD))gyy#vd4Y8wsA>_xA?p4y9Oc}mv>f=kDHb2(X zzB@a2n)g{loGF8^+DB~f5!k%bnv)~_cV2zm&@}mRLI>#3(KhEEkv72)`mIA-i??3v zLuBEh6CrOO`DJel0uG0ir*!cZD8Gm7c#V|d0Np`hI|<?05Vlibo<(X7z}qV| zCqX+-Y7(piQgaHV6GY$ukOLxc5|myd(EcS~;5PBi2IZGv@#ck_fjcC#S|g5HYHyIU_&uC9UAb07sEvZP=$tF(1f{l5AGIoduc^?73xH8|gXZnh)MK*)}WW zJ|fPD`VpjD8~7=b&IfRlw3`)dSD|MFdSDKei+U@Uuz65q96KVEdVWEufDn2?6p%NjS<9oE2OrgRp_=T#|5` z-py+gHU}JK5w?c#6N9hPyOH*wykfw|l@P=g@G%^kEySl;gC1xbMc|B3dkVlN&U4GZ z7RYmmKM$yFcHoR?`^&y2;71UBEzGA#J`b!-Cg6-X`-#0K#xqO37QX&M&jVGn^*1A~ zP7<#U=P?A{ES6s#l#zyCYlyJ|Z=BgzfqW#ZuQ|JkMxO`Tg96Xn79%XaCeFtc zcr)319#FdoyoqQ}5qL+s+iNZCxdh$_OK-*lWURnD!bM*T-)RDGl#w?huATyKzFWWg z9N1_@$n!pnQOC_G#&zfluy6Ru)?b@m&%l=Qye41Wo1fmPS&xZwDNk=ADY+>DJhp|{ z;n;lkVh7y5faF18dMs9rH7nbEI;OzwFllak(~DIu!uVL+njody3_G%g+Tqz;;@gW? zL)PoD_%u?=w|R6#3%A3cY2x3DE5p|BvH0SrB{bP_3=6qA&)Mze_V6<+4C76X7d3@p zqFG&M(igC>I~+Tf!Z4svdnyd`v1$&5;TQq8c18IJ_PW=`@>dw<&o2VLlH7&rQb_(=j)%hoNuy=@G{* zdObZ1v`yr7GkguxJPb5VdGidCj_hIR<=8ZZVKldl3PbN`W8>pmtnySCtbCf=!_dp5 z*#o-T`=HMmWK$Tv1h=LHeYG~$vBSUGN8xO-U_QJuc^JL~pT@?EwRm*Q$gwtmCWevu zaK$0I`bdJwGt{iXj-!NMH|9BiEOu-7nH2_aL&&HwOpVvBG3iT0ZnrshEQMi=hrxcd z&Bv-a6ozAX82aWue+0PC#`0Gf=Hu2(3d4~+481%%j>0g)!|)|`)eH*55j+gN{Fzf> z80BI35_}o2FwEg$2$7VlG0X7w#vwD8J!-);pr=w`9KzKYJxAuPN(l(gZ*Tm<5%kAZ zkUGIJZw!JF@v$P_8|{`CV0NgTWw#0E`7C@R$kS|kZ>YOMd3LmYWUmSESuJ!U=Ho=H zH`Yxne0H2&Wv2<_*(_`$zCI$-8`ZWIJv*)gvabv0bPKsNhlZX#yYy?1K2;QU#v3OW zUsc}pi4wAA8-D>=*y9@{0+K^mM~_VthD4AK9y^Y`TVHKmX3Zrf{TMYMGmpikal*92qT|Wc zE`R2gvVL3|mbu4b)M#Pc;nh*)a+h86NNGPd^~>yIv1pVq@37}+a=pu%DN^2#Awx3% zSS;~T23nk$M=vO=G0mX{)CU_O^&8!NguE`ZG)k`Ht6XL2IHJ6P?-a@HjIBXX&jYNN zC~lxSuk>v|I$hX018bJ8^I+>MJsa@OE-)JikC%_m$aclyJgE8zyauAP%D4uaz9P*T zLz4uX2So=NRReE8EFFq?8yEM%b-YFCBmG|)YEtLHI{u8}@VBU87hZ3pMhKFG?U1k9 z#hw0}skC47BlS|R^x4J2Fb+jCNt)_)0SyhyDs8ACc|e&xrc70f%(>KFeE>@>Di0J| zGQ&c8bHK8X!*t8DdDL8~w@Blyt;(~n;wH)yLSViR#YNm#}s7(xz*!5ZTmWYSnS)J304)NvNZYGle0es(dRfX zsIKkmF4}JCU$|`fHA;Q1bf#pgV{WYcybrT*moI8#Dw%*D3m!g+mc5@?EGz?q$^{oO z_a3n`VCN4k1%!qKHQrI%d>L++hb_+T73%5&2L9_~hC!er@g`l#15v>x2re|ssbsgH zsS4;ls1S=|RM#iPzh0!P$i0T&Hd+=)IyHtz%WxkqNf?DDA=2ejx?CRiF<7iSy0XhM ze#x$}19!&NC<q9GOw5N4(0?bXP*|%BxPt zxp*~pU^iar(Hp#qld{aQTIMKXeM{-(pf}OBd)#K{YzxX>^~135mfI9H=5tj2zDG#8 zo(n|HoZZU8=?(zQ_SQR^Etoiy|_&yuaC3CmLJ&Qq1m9VV$74o@$~j*f(? z;Jy%-D0UAPsEyw^qjAih@Nc{Dvj8x<(l>hO0`RE&j`HZM6R!S#4PH*#+^aa>+=V&H z%)8=K^%#bz)^-@Bs_~>5mHNPKw27CnP?no8yCL!KxYkkRUUwOuVZHJ26idOZXp


M4kt80sgEwn=N7q?R-5xbg6mWV6n6 z-qNR3JKhgO3^#{Z&ySMM?aqBH5GPhsEVQUB&v~mx@)tg2?~}P>ySoZooCI-e{t{f>faYdEqNv4kgu4mX;}Z!%NA1T1AH%ONjwqMi zbY<}owp4Mw@5hkRwmq*eaqDlx8Lf-d$ZrVqj687T+`=)_Hq((Mf(D^G$U?8_Gu5Qp z5Tek6Wpm9a#28_jQEem@JX08~IcTo}CQoFBDWni!1`6@o43f%a1{I6&nE~TTjCnW< zS8%*T4Mr?x**q*^^t)%OkvXglJ&#uy2mfYR>}s)%QO4}%aUQ)$wCKjKeP~f`SO7jl zi~$b^t-%CiG=r=BEVhwIc`YarqCbs%Z2~P?!L>qs>|(JT>`{ymi)c{_*Nj@5L=SIp zZF0e2$HG`L>=9xb0%q?pg{#q!bPCPB8*;x4SEqz%kIRgiWJucVqO zDykA}gn)UWA~Wpi5F311%mOV86QVzje7!KV_zc$qQ?w@0448s6Ar>G}uMIFoZ@Bs+ zB`=nFUUMHHW0t>s_6r7Vhb`$@u2aO>Zzw&-iHmV5 z?i3cW6l@DQ*s=Nlax$X?5HV}Es_q$G(Wc6%xt($v~c0L z^rtCp@mG7=qT_4cECa>eTAJiFZ>+L1PZO8zZUYaluT3mCj+T|&VO} z1;;t2-#W%>lE^heSsGwpy4Tmzl&RCyW zJ|G3hL8jlEw$VZUD|Sm*9CC=wF(1GNBF+lph8e{Ou@|(5yB2B*?^>w6%=ZO9vbUh; zPTnOs%U&pY_7+9YzAaW&SdPz`#i*nm=X^ZYj~N&$dtOu>mNG%*Ka@8g|-B zd4kT`IdO;$x##R`#8Atryi#sLfvlb7CKRmb2&Q@qHG!}WSqTNpah3)edH%;F6i7$$ z5(=ahSP2DlB94Ek2?eteD4x06gaYLjRziW&pOa89Ct|sUm{2eqf#jBJO(>9VVI~wv z1Mm_G7E~P1kP`~#V^Dl^y$J=%IiU#!${2wO1y*{N>-Y%;ws9%$yxN2U>CK>o0%?(u zgaRWi$Aip-0@HXD&s}>$!Q{Z8go4Q|AqfQ*YMvXJ2?gdcDXzTQgo2e1SqTLzgK!cG z%)~(sBqkIXN2Iv#S`!MS_t*&q(h}T+f)yRdU5tc+0 zl+|#(2?cT?@Dd7?6*vh6b0U_9hzSL=5h#AS+Jpk>mZ*dRX^xnL0w)iS4+9elT;r2s zzbbp-8WRfEZst94tgXX(y6J6evrG+yLUs^_+<1Dq=#x zYy^^9g#1^SP$1pHODK@~vl0sCL>#wJ6AES{#9q)s6AF|N^MnNI`?QUmWiNI@fn`+E z)c*4l3e@BcPbg4|2PYIbIIw&cl2BkDJ9_qy_6R#|gAxjs%8*m{-pW_<-$om9&sk?e z!3xYx;1Nu{LGr%1M?``@uj|NWlwj%e0f(_TAVeL4)l0xHk;em#N4gRcZ~;+Z-?ayT zH_i|m`SuZdjuid5D@A(|)b%2*NX%AUbzI;Y_hLOls5VxpmzuF<$B^qXxCIAvoJ%}h zr8yp`%~tQuha14{hMBm)!gNo><+NT+9fZb!f?g=>?S1uE9NW5W<3Sq;uE8M?B)AjY zX(T`+K|8oZaCet9-bt`Pkl^kF2yVgM9fC`vmwnEAcb~oAet*He^+VMfRW;{YW7Vwn zRjpC=P4i1Amy7Je$H>jF>HPP7r>HO9q&!~EQ@UP^Aq<9#agPc}#$6PWQKvA~!aF_? z)CEkA#ZU%{^?lfEwO%Qc`69Z|(Z-=S*8X0|0WP`lIqINoZ+yA(tsGhEm<4yFxh7NS zq6p$=wYt~=EEi=ht9XQF76}CjJ=BHkjQ6rhcsT<02y73vp(!fe)?U5>)HtK}NAdV$ z+3H&;2j#tYWK+>j_N!2@%hK+NpH5)WTYB%yH|O%|kEq;7+xdQ7ZOv5Vv?|Es)HGjQ zZ-i-g%4S5kXRQSyPcvQWSTl!EwcCmM?*X36k7l9TNm}o2(&8dl8{9*T5zlS|C7KcV z#-8E8jd4RLn%099T$qCP?Z$!5LY5&mEZvI!c{xi(l1f%HS1SxRFn&dOW;vG!=G2)? zRhP1NHrm7UJ8f)LHg_uL$3e`RGd1KnHb1v4MhmwlRD`L%dO=6j;A75=vSk{V-Yd+W z`ev=|-TL`d)2cE6S$0?$gY7&s(W=FDS57CVh}g>)v6Ca87$ZKC``9Y1BvISh2oLxI@9GlFeSI~n;Bgh zPnaGDRi9UTKwIciQf>LD>#FHfk0A_#Asj5-G?s!2doy3FS2{lw=Kw#SB}pCoq+%se zAS8ji2tqk^(}8j$`7CgEyHD?$J7f%3CFw`$-kIQko0lPJXx$BQO7M%}U!mP&`66i- zDb#p)fS@^ln`qmQo;YDkVdc>TE%|Y3bMq@ctQ9>X+c{C$k1RF1NqJ8bl`-CMV?#KY*AQhP@ z51QHE3p5!Kw%rmua-#+mO`;{@_Sa$*x{!M_|Cc~t?T5HUf~@%Mh908PDpIYhGoiXFx1iPSo}mbZ-`yN5p)*(2f=5%{6N_Rjy##^mB{d*b4S zLPv_9X-bPezZ6SG&%unC#3jl?s&qbdn&r}+DK0K=y0~Db_lSxnJg=~pJAt_?LXTFm zkMdpEfKT-3sR@xO{cR@2yd-n7r3Q47K;L8gwyS)b!@pAynMlt@%^xo+lN$H2diF%} z3q~VXp$*feTx|@bY9WhBT0p_7r`wrS5Yf`r#>D zxEG^T?tEfPzWCv^K}^}VCs*7bk*>eQdE1%Hw$k11jKzGiIw18S0j*5oMek+>}eWXv>4IZsL~|*VH*uoEx(s*4^z%8Zc4e_ZMTYrDIA)7Y4vU zW$6c$>RNJgF^?;5r6B2q+9?Xm+ER^|qmI2-l$HEGw;3Am)3fpN;^>Bgzb9??>mkUP+y3jkVKAc|KhNHNBuL@wCDre{k6ud` z5MN!)sgb1AkGkS}+XGI?8=Z}44H_XcWZ7&|RrYq;l9XELy8{U#zCqk(J8pr=$a{6O zXU;B7aC%K&u+cR~;Qp0L%GB_-dh6Vb2FX1NJb!6_|22BlEBB&-q8((F#_v>b`w5kF zHFHviY6tT6FN&!wEVnaX%(rN^nU}e%SedYO4EX9SN@j-$?g|XKePGPHs%=#Ttut>Z zJD7P(u5amE6o&}JJ=qNk)s9;0pAAzf-B2o>%4E9-)uGW4npPvxinKOkeF>3;EWrK6 zM0;n0`G|eI+4oDn@4CqB8f6m+d+WUS7WTk=uAyuVfTxQ60UcQ&Rchm6|-mq0_F4V(Ex_ouDkYp zupSq&<6I0D#6z>`^=ra4)Nw|+V>&A%I8-lWIOdfJ6fmImvXYxZQ1_1IDCR9Q*buC5 z-Vj-6Btpry+_N5@voEE{($nT3B##bf+ye6~@Nku4Ojd5$k~&OPju67CEi%dJ16E&Y zZO5%+_o>mHVLfsRyAN?x40l<@(bDvAD4=)GlmTv8(ld@JH$w?5s(1@v>p8Oxs=74v zSI_eOrje;;!VWG1xaW(W?LxVGC47@z6Y?wlH}J%iz&%WPs6o<#8*>|8F|phOIZI66 zKO;uMjy`fLxj4|Nu9?T_y;F*Dmo_B$J=rCbsff8PBSZW`U`NRmKUekI5K^mqeWC{R zd`TSnZ4DRm;%MMbKebc_1dVqs!ToJAd`h$&C-XhF;?rH5>#HB8d)%|%hD(Cuk za%i}Smi@0GD=xl^DRY`=UatH6jf|J9cj$YFjtDx)hpz_~aL?Xz#P+o)&+M4CtTapX zzA;0jB%sPx3^Ah2)4DsGQY9@4-R2$A__&?9{h%Q>&qf`l1W6ohY~F zAf7Jo`@+yG#<$X<*^0%i=jfI+boE}9IX|VA)S7`t+-8m;SXH!dr3u%}`YiHk=Ru)8 za>8lvv-~jM_q}JxYpNIcgwUfVeQgjeZBM~=5+iLsCTqQ2B83GGFbtt@L3cCNnF@H1 zUjGGS#qI25%axCGNrC;F?fz9KU@)4*FX9W!AT2*R1Axdm_D5_Pt!CKjyiuE7pZc|kt>dMt~7YTD-Lqv#O{LQH*zF&R2mGG)Vi*)tMZIDo_p59QkN-p;_W6t zJ+T#Zi?m@If4c;!rEHCI?upb;w`Y^u8Zc1!olhrWQ$>4wG*XGgD5(SJ#;`A%`_!lM zXkScAXa=sc*~8$Ez{INDx0n8&#T6+A$_V-nwPK^Jn@BfnsgeISC-11{F2texutOBuIr zkhAzcDv=XM$?D1Ag1DbP2vd6}&53Aa$p!vUWzn*ZL^#R`?Sn^-AS4nSdsqNZB%5 z>7wzC4&=cp`Qbqp|0#5UMrd0LC%)^q*^y1>lR5gPzK;`pO+q#B28CI&Q*{2WCNJ#M za$>qvKkI9-lHFVtc8RufNg*$dWQ=_xUGH56vw@s$SAfHU81eHAlCTCw7{>F}Ppin1+XUS1o(MwJ-Rfh*9rk zvx5@>k2l*_FJfndm75H!pI_qT<2c7TUD(S9Q+}M(%|Z9Rx)>~qb+Ol@U~Wx4o5-Dh z_jQ?qbS_;-Uucniy|VplesQ;v)yDz$@=>CklWFiDdtX-odFnve26n+mIgLrIVcD#> zq`Y++r5hGsG`9rAje3#QxDfD5RvIqx_Q78O#P8-<(=}BC%o*!PQP6cH4{$h}RM|*h zy9eyE~HU4o{Ns;%jMkLmC5P(h70aDh=lqnZcNvFEkqO@VWZ*Dv(5 z^BCBsZWaMhXxCRkyKkeB9zz}GBKDTI+P&8y>z>$kH1lRZ%0Io*eYk~-(p;uCkh<{~ zl0)XZt^M;;-a0t_8gV&J?ORbLu|2F*~R;lQP zbJvtngr;JtDDm?UY9lwnpn82U6PiBytN@R*d*Fu&Wn0hVesn1q{SfA(=2y z-U{GRhl-tfY=gQxE!@H1tLFUUx>_;cB*TF=uHzV)MLc}AVGn*tF|fGfy^;K_udYA| zQ{7Z!#Njg@ZHB*atkOC;OL5Jz{5R2UtdH{HXCHsv!YovbMlvLjN-|?DBQ^Uxe$FP( zaejh;yv>p%zOx+8fblc*DdA%$pQ-(nW-`!4W!;`p7bb^&@376}DL$g`Ej^**!s^&&$ zwcaJoL7llRSAal?-^i8FYj6U#974Zr!>>BtLf{blWAhs ze4lT>yFN@bD;Rf6L?yni7=LAXl#QS9VlvmWdq~{$5t3r_U4SsKF~fLvT_+OhKoq3P zr04bev(v-nmDT&FNdzG7w?fPsQ9`BGLoE`~KDqo@{TKr)F?z|h7f6Bv zWAJDC(J17h2R_Y*QHBlahlB%zfk&B!HKB2?_W=G&4>qo3lc|qy?lwmev2abpVhr3t z?X7*Sg?QugK|S)SDy;rB{ga^AHHUJ8lDJL0>iL26@3az^Iw zsUH06LRc-63vlgm*~AIzRNRD)6zd}PEOrd(C{C(BPaJm8 zB{trrVQ7SQ82d!Dlu6bAGUX+@ma8+h2R`pc7_OC_paMI@j%5p--A#}O^XVhTYHTcp z*9ROQDn4NqNCBTQ43+Ls$&gbwT7&L6>?%t7=3f8^tpzxeSR{y#LTo>O#^;wdv~w7@C;CGgXtJwaOc|E zp)y$Y4FJLOV+MI;znMVE&r3iP-irv`XsWdS?#@mV)80&p5~(}tva@h*iV_k7n$qE*RRc;zRo&`5*FC?>yCJVf!X(@u#Bd)jdXV;{A>AWkLn~o zsX3*3Kb;_3$Ki?1BSI*ziTcE8zk|`sNh%4CM6vN5t~C%vyc-Iicui4;g732!`R}y& z#+Y(hUw+mj0dkKr+F-~7ayE`XvQTemR9#nN3-F0e>6p z{d!nhpptSisRq-8FDLs`1c*$a_T3z)7K+=acsJ{So3S zJ~L-uL}Sl2p)O03Jil2&G|>)`pq34rokr$+s@G6HIYJz!8k7u)(htS%6 z!Wc~*lt4$s?f2bAlXl*NOH$NicL={S>93Ir1h>S9GaCJ$j`nl~sv#=yCLPZeDC@qJVZ_TvY+i%;$6NtskFC^ldLEcY0}g`xCcR|A=ZnXUU#Q5#aXY&Xv@I4XhX^yc4APMOq4mbSLLlLVbb`$e_diRif%0p7&XCJyu;?ye&K@ z90x0GLYz;^X3YKtlY8K+)WRynlz~CRqNm?1I9N8FD+{WTofY?yl=^bryJsy`but%ROW&*W?nAIW0lz z@r?BE)ukWUQ9Lk3Om=aLb*~@DlaQ*n?2eGACO?o3V!ei7I@bVMxOhHV@J+fm9btCW^hGlzEc#Aldhi$!E|wsS?*0a$gSfh?nKU}*cuQc7Ce*4#j7?$ z5-`@|7jX7{LJ!5%yuN4{n;GPN8p@dNc!h zK5njxVb}2{aOxXj_R4TllM`{IW&>IH)0XcN#YTaOLYTvBI*pU-K3N7f8``Dx??!V3 z!fuq@vf{LjHEPYZk4ImqvS?`nj{|Ef5b2$Gomcdn!QZJDk&?MPSe-(_qP5)SCoAk4 z(kF=Ym1!YlUAOhaoKeFAVHoo2{WssJn3b;G0)oPNCVLU}dLSRoUGlSAon)ftJWGJv zSlgOe!_0~eCVjdTw7<3A<#EKl$i59Bmx`th1Rh3J`#z16he$kd8~kMV{&KTDV#aWs z%jxdIY;({c|8DU|nLr-kf$Nr2Aj5E`dOJ6nVeHH_%eMUP4``oJNw0GO7WmyY;Xt8g z&M{m!{k@9B4)=xWVBqI1xX($X3QR_jh8H(fg3C-D81) zfw}nM5{JF2d79oY?MY$|CFi zINfcZ5pklP4Ww`m*7)%dS>vL9C=k#jf!>xPt_-eCkg-yuv%xNKh`bbIgHw5oc`N#H z*$@Tj=#hIq_G3RYJG;_#1|yib>aZXL!nDOCOg4~5>R$OT;=i$pfcAa6WBn^1PITR(DXlppC z@|~tah7K=R9i2QP9$XDI%p;uQWbMQH4-Jtx*Lbr|d7dT+jeU9UD-Kl=`#8w=XdbEj z&FXmHGx1)(v&}VlH%u;)p578g4eQ-lYa7rY^>Vn>lKo9CmK=RcVCt-3!64}?+8MdQ z0jO;K+=Q77yoe4M8i7OFx3=JtS*K^dEFic?8%b|Wb1IOCNq?5#EMKpU{#%eo8LGML z0|(|y)@9P3yHP#B5QQqz}JPOsI@p5K7E_ zmn7AtJ|fNM{E$HVtIY-hUdM_+UaO@B97RAe=CJ@iZ{>h~dlvj~Az-l~ko!?Vx|IhS z!GX=e9dXIXDM?qStOn{~oE8SCh<|q2!#E!QfUMKPN}bYnV|oTRZ%y^}zuEieEc_aU z=f@XM+4rTMa`clvZOt9bR3NS<<|eKt9Lgr95L*TN_YQwJ3u%pxSa-d^MLpJe`W3sB z+y+01?Oc22^9{0WPwdJU2G!J*U+!hQg)P2VgYgdU8-2P)MT|Mb3esVEs$}wv`d{q1 zJ>}%Qe-TXd?Ik=P+<1=B!1fW{h9vkMje&1RK5b!4k0T@bny-0D8g>r5-TC_w24P#3 zI5y#JY|ai8i?QXh@MDZ`-(^)EDr4)o;ba@f^oK84o{X6akPC{FkVG5KW?d0WDsOHr zOQr#CtI`?I>Nm-j{gjSspHjhcgy%Or4}L2lSNdu~#oCMNW@^?}jyoF~0DS8SoPj;ddlb<10R2|Gu(SBf?Pq;jC zO5#IKMp5$Kq8c#})IWd_`UF`zJ+Pm1W{17=g2sD zCUU9h+8NtfWB)`i4`gCdN*f*<7F6M^wM9#si*#q^u(zfwJd>;H&Zq=7qQIob2$US5 znsQEKp&A`se&wJyZ2HJ(lYoA{3aBkC)LXMNyEJtcP%Q%Hm$Mq zM!jZnkGK{P5xQMi-fn~kA_1w`Ep0ddlZ5_X(+s^lX~O6yec>Ph0J#4tK@&&E|5f0h zcO5Lr$Y!3CpnDnZ7Dx6d7G@8{Gf)0ye{NzHn73%A{&inhD<$T4tit84yWRK%_^P_@ zcH8lMJaOV88(RiQ>Km1;%dV&{QQZfxFYfBRobM)9f04eUERXln37KH}W*x0&xG-3m zs@ym_BH1#cF&Sz}Zi&tALFuVkut2uPcVu2<x-GV0Rg{L5Wtm2`<)|98rA1C zIsTZ@XpSc4vp^+`I<=R-A5<51opKXiCumYsc$7@C@lvm>a z^)3h-ke$Sq7G@?mJ#6y`=8!`m-u}^HjJVn@xHhE;xC57|(b3*V~~6zWF1MsDOX@Mqv;J{KuPkAMFS59o@*3@5nH&TI{5 zp?K@w)C1nL>%G4@nRBOgnmhbnvDMf7{>hB?-vUNJeD&n;@_&tL3xSpb{!bD{MESQ- z?VlIzkCMKWgS{)n-qlFU(-Gog_=l!JN`EEbqKq7(eIi(T8iq0df_{4O1sFL)Y+X3m z|5*PW==zp`neyqB2UGyy4-?%#7tE)&J{jh^J2=~zIyl(;Q>}qw(A2XhMB`JfWPc)` zN^dd#1^#!%|4H$Wjo{uIRC_Z407##q0!aSC6M^;Ljc~DqKwMoo{ Date: Mon, 20 Oct 2025 14:23:49 -0600 Subject: [PATCH 32/82] Adds missing HP backup fuel use and modifies exported columns Also removes EV energy consumption from energy burden calculation. --- .../resstockpostproc/process_metadata.py | 15 ++- .../publication/sdr_column_definitions.csv | 94 +++++++++++-------- 2 files changed, 68 insertions(+), 41 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 1fa0bebc58..adaec1beab 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -246,9 +246,20 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: adj_income = pl.when(pl.col(income_col) <= 0).then(pl.lit(1)).otherwise(pl.col(income_col)).alias(income_col) # Calculate burden only when income is not null and positive + # Subtract out the EV portion of the utility bill, otherwise this skews the + # energy burden values for all EV-owning households. + # Removing transportation aligns with the DOE definition + # https://www.energy.gov/scep/low-income-energy-affordability-data-lead-tool + dol_per_kwh = "in.utility_bill_electricity_marginal_rates" + ev_kwh = "out.electricity.ev_charging.energy_consumption..kwh" burden = ( pl.when(adj_income.is_not_null()) - .then(pl.col("out.utility_bills.total_bill..usd") / adj_income * 100) + .then( + ( + pl.col("out.utility_bills.total_bill..usd") - + ((pl.col(dol_per_kwh).cast(pl.Float64))*pl.col(ev_kwh)) + ) + / adj_income * 100) .otherwise(None) .alias("out.energy_burden..percentage") ) @@ -262,7 +273,6 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( "out.params" in col or - "out.hot_water" in col or "out.panel" in col or "out.capacity" in col or "out.unmet_hours.ev" in col @@ -356,6 +366,7 @@ def col_name_to_savings(col_name: str) -> str: '.peak_': '.peak_savings_', '.energy_burden': '.energy_burden_savings', '.unmet_hours': '.unmet_hours_reduction', + 'out.hot_water': 'out.hot_water_savings', '.load.cooling.peak': '.load.cooling.peak_savings', '.load.heating.peak': '.load.heating.peak_savings', '.energy_delivered': '.energy_delivered_savings', diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index d7b08039b3..0c0deb3029 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -30,7 +30,7 @@ Input,yes,yes,string,no,build_existing_model.clothes_washer_presence,,in.clothes Input,yes,yes,string,no,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. Input,yes,yes,string,no,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. Input,yes,yes,string,no,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Number of days in a year the cooling system is unavailable. +Input,yes,yes,string,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Length of time in a year the cooling system is unavailable. Input,yes,yes,string,no,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. Input,yes,yes,boolean,no,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. @@ -58,7 +58,7 @@ Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_outlet_access,,in Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,If the dwelling unit owns an EV. Input,yes,yes,string,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per 2023 ENERGYSTAR guidelines." Input,yes,yes,string,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment (GEA) region from Cambium 2023. +Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment (GEA) region from Cambium 2023 and 2024. Input,yes,yes,string,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the multi-family attached unit horizontally within the building (left, middle, right)." Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." @@ -81,7 +81,7 @@ Input,yes,yes,string,no,build_existing_model.geometry_wall_type,,in.geometry_wal Input,yes,yes,float,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (Btu/hr-ft-F) of the ground used for foundation and geothermal heat pump heat transfer calculations. Input,yes,yes,boolean,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,If the dwelling unit has a rooftop photovoltaic system. Input,yes,yes,string,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary heating fuel. -Input,yes,yes,string,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Number of days in a year the heating system is unavailable. +Input,yes,yes,string,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Length of time in a year the heating system is unavailable. Input,yes,yes,string,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. Input,yes,yes,boolean,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. @@ -172,27 +172,27 @@ Input,yes,yes,string,no,build_existing_model.water_heater_location,,in.water_hea Input,yes,yes,string,no,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." Input,yes,yes,string,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. Input,yes,yes,float,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,yes,yes,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,yes,no,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,no,no,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,no,no,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,"The number of dwelling units this simulation represents, which is different than the weight field. Should always be one." -Input,yes,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,yes,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,yes,no,string,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,yes,no,float,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,no,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,no,no,string,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,no,no,float,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,Starting day of the starting month (must be valid for month) for the annual run period desired. Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"Starting month number (1 = January, 2 = February, etc.) for the annual run period desired." Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"Calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,Ending day of the ending month (must be valid for month) for the annual run period desired. Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"End month number (1 = January, 2 = February, etc.) for the annual run period desired." Input,yes,yes,integer,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,yes,no,string,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,string,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,no,no,string,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,float,no,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." @@ -201,21 +201,21 @@ Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_fixed_charg Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,float,no,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." Input,yes,yes,float,no,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,yes,no,string,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,yes,yes,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." -Input,yes,yes,string,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,yes,no,float,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,no,float,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." +Input,no,no,string,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,no,no,float,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,no,no,float,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." Input,yes,yes,string,no,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. Input,yes,yes,float,no,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. Input,yes,yes,float,no,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,yes,yes,string,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. -Input,yes,yes,string,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Input,yes,yes,string,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Date range when the heating system is unavailable. +Input,yes,yes,string,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Date range when the cooling system is unavailable. Output,yes,yes,float,no,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area Output,yes,yes,float,no,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area Output,yes,yes,float,no,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" @@ -277,7 +277,7 @@ Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_ Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil fireplace. Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil generator. Positive value for any fuel consumed. Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil grill. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by heat pump backup. Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,"Fuel oil consumed by fuel oil heating systems, excludes heat pump backup." Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by fuel oil hot water systems Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil lighting. @@ -287,7 +287,7 @@ Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_clothes_dr Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas fireplaces. Output,no,no,float,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas generator. Positive value for any fuel consumed. Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas grills. -Output,no,no,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by heat pump backup. Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,"Natural gas consumed by natural gas heating systems, excludes heat pump backup." Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by spa heating. Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas hot water systems. @@ -299,7 +299,7 @@ Output,yes,yes,float,yes,report_simulation_output.end_use_propane_clothes_dryer_ Output,no,no,float,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane fireplace. Output,no,no,float,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propance generator. Positive value for any fuel consumed Output,no,no,float,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane grill. -Output,no,no,float,no,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Propane consumed by heat pump backup. +Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Propane consumed by heat pump backup. Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,"Propane consumed by propane heating systems, excludes heat pump backup" Output,yes,yes,float,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane hot water systems. Output,no,no,float,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane lighting. @@ -316,9 +316,9 @@ Output,yes,yes,float,no,report_simulation_output.hot_water_clothes_washer_gal,ga Output,yes,yes,float,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,,Hot water consumed by dishwasher Output,yes,yes,float,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,,Hot water consumed by water distribution system (water remaining in the pipe) Output,yes,yes,float,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,"Hot water consumed by showers, sinks, and baths" -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,,Cooling Capacity +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,,Cooling capacity at rated conditions which vary based on the type of equipment. Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,,Heat pump backup Capacity -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,,Heating Capacity +Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,,Heating capacity at rated conditions which vary based on the type of equipment. Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Total energy delivered by cooling system includes HVAC distribution losses. Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heating system includes HVAC distribution losses. Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems @@ -326,8 +326,8 @@ Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m Output,yes,yes,float,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum cooling load delivered by cooling system includes HVAC distribution losses. Output,yes,yes,float,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period. -Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). -Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). +Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum 15-minute electric demand value in Jun/Jul/Aug not including impacts of onsite generation. +Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum 15-minute electric demand value in Dec/Jan/Feb not including impacts of onsite generation. Output,yes,yes,float,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. Output,yes,yes,float,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. Output,yes,yes,float,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. @@ -605,7 +605,7 @@ Calculated,no,no,float,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.f Calculated,no,no,float,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,,Fuel oil savings from oil fireplace. Calculated,no,no,float,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,,Fuel oil savings from oil generator. Positive value for any fuel consumed. Calculated,no,no,float,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,,Fuel oil savings from oil grill. -Calculated,no,no,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,,Fuel oil savings from heat pump backup. +Calculated,yes,yes,float,yes,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,,Fuel oil savings from heat pump backup. Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,,"Fuel oil savings from fuel oil heating systems, excludes heat pump backup." Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,,Fuel oil savings from fuel oil hot water systems Calculated,no,no,float,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,,Fuel oil savings from oil lighting. @@ -615,7 +615,7 @@ Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh, Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,,Natural gas savings from natural gas fireplaces. Calculated,no,no,float,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,,Natural gas savings from natural gas generator. Positive value for any fuel consumed. Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,,Natural gas savings from natural gas grills. -Calculated,no,no,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,,Natural gas savings from heat pump backup. +Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,,Natural gas savings from heat pump backup. Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,,"Natural gas savings from natural gas heating systems, excludes heat pump backup." Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,,Natural gas savings from spa heating. Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,,Natural gas savings from natural gas hot water systems. @@ -627,7 +627,7 @@ Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings..kwh,out. Calculated,no,no,float,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,,Propane savings from propane fireplace. Calculated,no,no,float,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,,Propane savings from propance generator. Positive value for any fuel consumed Calculated,no,no,float,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,,Propane savings from propane grill. -Calculated,no,no,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,,Propane savings from heat pump backup. +Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,,Propane savings from heat pump backup. Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,,"Propane savings from propane heating systems, excludes heat pump backup" Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,,Propane savings from propane hot water systems. Calculated,no,no,float,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,,Propane savings from propane lighting. @@ -640,6 +640,10 @@ Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings..kwh,out.elec Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,,Total fuel oil savings Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,,Total natural gas savings. Calculated,yes,yes,float,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,,Total propane savings. +Calculated,yes,yes,float,no,,,out.hot_water_savings.clothes_washer..gal,out.hot_water_savings.clothes_washer..gal,gal,,,,,,,,Hot water savings from clothes washer. +Calculated,yes,yes,float,no,,,out.hot_water_savings.dishwasher..gal,out.hot_water_savings.dishwasher..gal,gal,,,,,,,,Hot water savings from dishwasher. +Calculated,yes,yes,float,no,,,out.hot_water_savings.distribution_waste..gal,out.hot_water_savings.distribution_waste..gal,gal,,,,,,,,Hot water savings from hot water distribution. +Calculated,yes,yes,float,no,,,out.hot_water_savings.fixtures..gal,out.hot_water_savings.fixtures..gal,gal,,,,,,,,Hot water savings from fixtures such as faucets and showers. Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by cooling system includes HVAC distribution losses. Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heating system includes HVAC distribution losses. Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems @@ -755,6 +759,8 @@ Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_consumption_inten Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area @@ -767,6 +773,8 @@ Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_consumption_intensity Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area @@ -783,6 +791,8 @@ Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_consumption_inten Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area @@ -870,12 +880,14 @@ Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_consum Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. @@ -884,6 +896,7 @@ Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_consum Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,, Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. @@ -971,12 +984,14 @@ Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_saving Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. @@ -985,6 +1000,7 @@ Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_saving Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,, Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. From b3eed8808d14faa5070258023b9d7f0c6b71a0e8 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 21 Oct 2025 10:38:30 -0600 Subject: [PATCH 33/82] Fixes metadata postprocessing Fixed an issue where the metadata was not including the non-applicable buildings for the upgrades due to mis-arranged deletion calls. --- .../resstockpostproc/process_metadata.py | 52 ++++++++----------- 1 file changed, 22 insertions(+), 30 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index adaec1beab..310faa458c 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -53,10 +53,10 @@ def process_simulation_outputs( df = upgrade_raw_df df = set_baseline_applicability(df) if is_baseline else df df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df) if not is_baseline else df - df = replace_missing_buildings_with_baseline(df, base_raw_df, upgrade_num) if not is_baseline else df + df = remove_failed_baseline_buildings(df, baseline_failed_bldgs) + df = remove_na_or_failed_buildings(df) + df = replace_missing_buildings_with_baseline(df, base_raw_df) if not is_baseline else df df = downselect_and_rename_cols(df, col_maps) # Per sdr_column_definitions.csv - df = remove_failed_buildings(df) if is_baseline else df - df = remove_failed_baseline_buildings_and_replace_missing_with_baseline(df, baseline_failed_bldgs) if not is_baseline else df df = add_income_and_burden(df) df = add_county_column(df) df = add_puma_column(df) @@ -97,8 +97,16 @@ def set_baseline_applicability(df: pl.LazyFrame) -> pl.LazyFrame: return df -def remove_failed_buildings(df: pl.LazyFrame) -> pl.LazyFrame: - print('Removing failed buildings') +def remove_failed_baseline_buildings(df: pl.LazyFrame, baseline_failed_bldgs: set[int],) -> pl.LazyFrame: + print('Removing buildings that failed in the baseline') + df = df.filter( + ~pl.col("building_id").is_in(baseline_failed_bldgs) + ) + return df + + +def remove_na_or_failed_buildings(df: pl.LazyFrame) -> pl.LazyFrame: + print('Removing buildings that failed in this upgrade or where the upgrade was not applicable') df = df.filter(pl.col("completed_status") == "Success") return df @@ -106,7 +114,7 @@ def remove_failed_buildings(df: pl.LazyFrame) -> pl.LazyFrame: def get_failed_building_list(df: pl.LazyFrame, ) -> list[int]: print('Getting failed building list') failed_bldgs = ( - df.filter(pl.col("completed_status") == "Fail") + df.filter(pl.col("completed_status") != "Success") .select(pl.col("building_id")) .collect()["building_id"] .to_list() @@ -114,28 +122,6 @@ def get_failed_building_list(df: pl.LazyFrame, ) -> list[int]: return failed_bldgs -def remove_failed_baseline_buildings_and_replace_missing_with_baseline( - df: pl.LazyFrame, failed_bldgs: set[int]) -> pl.LazyFrame: - print('Removing failed buildings') - df = df.filter( - (~pl.col("bldg_id").is_in(failed_bldgs)) & (pl.col("completed_status") == "Success") - ) - failed_bldgs = ( - df.filter( - (pl.col("completed_status") == "Fail") & (~pl.col("bldg_id").is_in(failed_bldgs)) - ) - .select(pl.col("bldg_id")) - .collect()["bldg_id"] - .to_list() - ) - if failed_bldgs: - print( - f"Replacing {len(failed_bldgs)} buildings that failed " - f"with results from baseline: {failed_bldgs}" - ) - return df - - def add_upgrade_id_col(df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: df = df.with_columns([pl.lit(upgrade_id).alias("upgrade")]) return df @@ -155,12 +141,14 @@ def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline return upgrade_df -def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: +def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: print('Replacing buildings missing from the upgrade with baseline data') # All buildings present in the upgrade_df are there because the upgrade was applicable to them upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) upgrade_name_df = upgrade_df.select(pl.col("apply_upgrade.upgrade_name").first()) - missing_bldgs_df = baseline_df.join( + # Keep only successful buildings from the baseline + baseline_successful_df = baseline_df.filter(pl.col("completed_status") == "Success") + missing_bldgs_df = baseline_successful_df.join( upgrade_df, on="building_id", how="anti", # Keep rows from 'base' with no match in 'upgrade' @@ -172,6 +160,10 @@ def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_d ).drop("apply_upgrade.upgrade_name") missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") + base_ids = set(baseline_successful_df.select('building_id').collect().to_series().to_list()) + up_ids = set(upgrade_df.select('building_id').collect().to_series().to_list()) + assert base_ids == up_ids, f"{len(base_ids)} buildings in baseline, {len(up_ids)} in upgrade" + print(f"{len(base_ids)} buildings in baseline, {len(up_ids)} in upgrade") return upgrade_df From 90460124c1f4541d0d1133c5b1186f1cde3379f4 Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 21 Oct 2025 17:30:39 -0600 Subject: [PATCH 34/82] update enumeration dict --- .../resources/publication/enumeration_dictionary.tsv | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv index 06897afbd0..d54af6c4af 100644 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv @@ -58396,8 +58396,8 @@ upgrade.electric_vehicle_efficiency_increase 15% The efficiency of the electric upgrade.electric_vehicle_efficiency_increase None No increase of the efficiency of the electric vehicle upgrade.electric_vehicle_ownership None No change to electric vehicle ownership upgrade.electric_vehicle_ownership Yes The dwelling unit has one electric vehicle in the upgrade -upgrade.heating_fuel Natural Gas Heating fuel is changed to natural gas in the upgrade -upgrade.heating_fuel None No change to heating fuel +upgrade.heating_fuel Natural Gas Heating fuel is changed to natural gas in the Natural Gas Furnace upgrade +upgrade.heating_fuel None No change to heating fuel in the Natural Gas Furnace upgrade upgrade.hvac_cooling_efficiency "AC, SEER 15" "Cooling efficiency is changed to AC, SEER 15 in the upgrade" upgrade.hvac_cooling_efficiency "AC, SEER2 13.4" "Cooling efficiency is changed to AC, SEER2 13.4 in the upgrade" upgrade.hvac_cooling_efficiency "AC, SEER2 14.3" "Cooling efficiency is changed to AC, SEER2 14.3 in the upgrade" @@ -58406,8 +58406,8 @@ upgrade.hvac_cooling_efficiency None No change to cooling efficiency upgrade.hvac_cooling_efficiency "Room AC, EER 12.0" "Cooling efficiency is changed to Room AC, EER 12.0 in the upgrade" upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% conditioned for cooling in the upgrade upgrade.hvac_cooling_partial_space_conditioning None No change to cooling partial space conditioning -upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted HVAC system upgraded to Cold Climate Heat Pump Ducted -upgrade.hvac_detailed_performance_data None No change to HVAC system +upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted HVAC system upgraded to Cold Climate Heat Pump Ducted in the Cold Climate Ducted Air Source Heat Pump upgrade +upgrade.hvac_detailed_performance_data None No change to HVAC system in the Cold Climate Ducted Air Source Heat Pump upgrade upgrade.hvac_heating_efficiency "ASHP, SEER2 14.3, 7.5 HSPF2" "Heating efficiency is upgraded to ASHP, SEER2 14.3, 7.5 HSPF2" upgrade.hvac_heating_efficiency "ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" "Heating efficiency is upgraded to ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" @@ -58430,8 +58430,8 @@ upgrade.hvac_heating_efficiency "GSHP, EER 18.6, COP 3.8" "Heating efficiency is upgrade.hvac_heating_efficiency "GSHP, EER 20.5, COP 4.0" "Heating efficiency is upgraded to GSHP, EER 20.5, COP 4.0" upgrade.hvac_heating_efficiency "GSHP, EER 30.9, COP 4.4" "Heating efficiency is upgraded to GSHP, EER 30.9, COP 4.4" upgrade.hvac_heating_efficiency None No change to heating efficiency -upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Heating type and fuel is upgraded to Natural Gas Fuel Furnace -upgrade.hvac_heating_type_and_fuel None No change to heating type and fuel +upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Heating type and fuel is upgraded to Natural Gas Fuel Furnace in the Natural Gas Furnace upgrade +upgrade.hvac_heating_type_and_fuel None No change to heating type and fuel in the Natural Gas Furnace upgrade upgrade.infiltration 5 ACH50 The infiltration rate is upgraded to 5ACH50 upgrade.infiltration None No change to infiltration rate upgrade.infiltration_reduction 13% The infiltration rate is reduced by 13% From ea13bad0c26f1b3e205bfa1bddac5d50df195434 Mon Sep 17 00:00:00 2001 From: Elaina Present <46542418+ekpresent@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:39:27 -0700 Subject: [PATCH 35/82] Create column name crosswalk Compares published annual and timeseries names for 2025.1 with published names for 2024.2. --- .../publication/Column Name Crosswalk.csv | 814 ++++++++++++++++++ 1 file changed, 814 insertions(+) create mode 100644 postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv diff --git a/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv b/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv new file mode 100644 index 0000000000..fb0d9f0971 --- /dev/null +++ b/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv @@ -0,0 +1,814 @@ +Published Annual Name,Published Timeseries Name,ResStock 2024 Release 2 Equivalent +bldg_id,bldg_id,bldg_id +upgrade,,upgrade +weight,,weight +,timestamp,timestamp +applicability,,applicability +in.ahs_region,,in.ahs_region +in.aiannh_area,,in.aiannh_area +in.air_leakage_to_outside_ach50,,New in ResStock 2025 Release 1 +in.area_median_income,,in.area_median_income +in.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004 +in.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_2_a_split +in.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour +in.battery,,in.battery +in.bedrooms,,in.bedrooms +in.building_america_climate_zone,,in.building_america_climate_zone +in.cec_climate_zone,,in.cec_climate_zone +in.ceiling_fan,,in.ceiling_fan +in.census_division,,in.census_division +in.census_division_recs,,in.census_division_recs +in.census_region,,in.census_region +in.city,,in.city +in.clothes_dryer,,in.clothes_dryer +in.clothes_dryer_usage_level,,in.clothes_dryer_usage_level +in.clothes_washer,,in.clothes_washer +in.clothes_washer_presence,,in.clothes_washer_presence +in.clothes_washer_usage_level,,in.clothes_washer_usage_level +in.cooking_range,,in.cooking_range +in.cooking_range_usage_level,,in.cooking_range_usage_level +in.cooling_setpoint,,in.cooling_setpoint +in.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset +in.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude +in.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period +in.cooling_unavailable_days,,New in ResStock 2025 Release 1 +in.cooling_unavailable_period,,New in ResStock 2025 Release 1 +in.corridor,,in.corridor +in.county,,in.county +in.county_and_puma,,in.county_and_puma +in.county_metro_status,,New in ResStock 2025 Release 1 +in.county_name,,in.county_name +in.custom_state,,New in ResStock 2025 Release 1 +in.dehumidifier,,in.dehumidifier +in.dishwasher,,in.dishwasher +in.dishwasher_usage_level,,in.dishwasher_usage_level +in.door_area,,in.door_area +in.doors,,in.doors +in.duct_leakage_and_insulation,,in.duct_leakage_and_insulation +in.duct_location,,in.duct_location +in.eaves,,in.eaves +in.electric_panel_breaker_space_total_count,,New in ResStock 2025 Release 1 +in.electric_panel_service_rating..a,,New in ResStock 2025 Release 1 +in.electric_panel_service_rating_bin..a,,New in ResStock 2025 Release 1 +in.electric_vehicle_battery,,New in ResStock 2025 Release 1 +in.electric_vehicle_charge_at_home,,New in ResStock 2025 Release 1 +in.electric_vehicle_charger,,New in ResStock 2025 Release 1 +in.electric_vehicle_miles_traveled,,New in ResStock 2025 Release 1 +in.electric_vehicle_outlet_access,,New in ResStock 2025 Release 1 +in.electric_vehicle_ownership,,New in ResStock 2025 Release 1 +in.energystar_climate_zone_2023,,in.energystar_climate_zone_2023 +in.federal_poverty_level,,in.federal_poverty_level +in.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region +in.geometry_attic_type,,in.geometry_attic_type +in.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf +in.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa +in.geometry_building_level_mf,,in.geometry_building_level_mf +in.geometry_building_number_units_mf,,in.geometry_building_number_units_mf +in.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa +in.geometry_building_type_acs,,in.geometry_building_type_acs +in.geometry_building_type_height,,in.geometry_building_type_height +in.geometry_building_type_recs,,in.geometry_building_type_recs +in.geometry_floor_area,,in.geometry_floor_area +in.geometry_floor_area_bin,,in.geometry_floor_area_bin +in.geometry_foundation_type,,in.geometry_foundation_type +in.geometry_garage,,in.geometry_garage +in.geometry_space_combination,,in.geometry_space_combination +in.geometry_stories,,in.geometry_stories +in.geometry_stories_low_rise,,in.geometry_stories_low_rise +in.geometry_story_bin,,in.geometry_story_bin +in.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish +in.geometry_wall_type,,in.geometry_wall_type +in.ground_thermal_conductivity,,in.ground_thermal_conductivity +in.has_pv,,in.has_pv +in.heating_fuel,,in.heating_fuel +in.heating_setpoint,,in.heating_setpoint +in.heating_setpoint_has_offset,,in.heating_setpoint_has_offset +in.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude +in.heating_setpoint_offset_period,,in.heating_setpoint_offset_period +in.heating_unavailable_days,,New in ResStock 2025 Release 1 +in.heating_unavailable_period,,New in ResStock 2025 Release 1 +in.holiday_lighting,,in.holiday_lighting +in.hot_water_distribution,,in.hot_water_distribution +in.hot_water_fixtures,,in.hot_water_fixtures +in.household_has_tribal_persons,,in.household_has_tribal_persons +in.hvac_cooling_autosizing_factor,,New in ResStock 2025 Release 1 +in.hvac_cooling_efficiency,,in.hvac_cooling_efficiency +in.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning +in.hvac_cooling_type,,in.hvac_cooling_type +in.hvac_has_ducts,,in.hvac_has_ducts +in.hvac_has_shared_system,,in.hvac_has_shared_system +in.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating +in.hvac_heating_autosizing_factor,,New in ResStock 2025 Release 1 +in.hvac_heating_efficiency,,in.hvac_heating_efficiency +in.hvac_heating_type,,in.hvac_heating_type +in.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel +in.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency +in.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel +in.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning +in.hvac_secondary_heating_type,,New in ResStock 2025 Release 1 +in.hvac_shared_efficiencies,,in.hvac_shared_efficiencies +in.hvac_system_is_faulted,,in.hvac_system_is_faulted +in.hvac_system_is_scaled,,New in ResStock 2025 Release 1 +in.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow +in.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge +in.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow +in.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge +in.income,,in.income +in.income_recs_2015,,in.income_recs_2015 +in.income_recs_2020,,in.income_recs_2020 +in.infiltration,,in.infiltration +in.insulation_ceiling,,in.insulation_ceiling +in.insulation_floor,,in.insulation_floor +in.insulation_foundation_wall,,in.insulation_foundation_wall +in.insulation_rim_joist,,in.insulation_rim_joist +in.insulation_roof,,in.insulation_roof +in.insulation_slab,,in.insulation_slab +in.insulation_wall,,in.insulation_wall +in.interior_shading,,in.interior_shading +in.iso_rto_region,,in.iso_rto_region +in.lighting,,in.lighting +in.lighting_interior_use,,in.lighting_interior_use +in.lighting_other_use,,in.lighting_other_use +in.location_region,,in.location_region +in.mechanical_ventilation,,in.mechanical_ventilation +in.metropolitan_and_micropolitan_statistical_area,,New in ResStock 2025 Release 1 +in.misc_extra_refrigerator,,in.misc_extra_refrigerator +in.misc_freezer,,in.misc_freezer +in.misc_gas_fireplace,,in.misc_gas_fireplace +in.misc_gas_grill,,in.misc_gas_grill +in.misc_gas_lighting,,in.misc_gas_lighting +in.misc_hot_tub_spa,,in.misc_hot_tub_spa +in.misc_pool,,in.misc_pool +in.misc_pool_heater,,in.misc_pool_heater +in.misc_pool_pump,,in.misc_pool_pump +in.misc_well_pump,,in.misc_well_pump +in.natural_ventilation,,in.natural_ventilation +in.neighbors,,in.neighbors +in.occupants,,in.occupants +in.orientation,,in.orientation +in.overhangs,,in.overhangs +in.plug_load_diversity,,in.plug_load_diversity +in.plug_loads,,in.plug_loads +in.puma,,in.puma +in.puma_metro_status,,in.puma_metro_status +in.pv_orientation,,in.pv_orientation +in.pv_system_size,,in.pv_system_size +in.radiant_barrier,,in.radiant_barrier +in.range_spot_vent_hour,,in.range_spot_vent_hour +in.reeds_balancing_area,,in.reeds_balancing_area +in.refrigerator,,in.refrigerator +in.refrigerator_usage_level,,in.refrigerator_usage_level +in.representative_income,,in.representative_income +in.roof_material,,in.roof_material +in.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month +in.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month +in.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year +in.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month +in.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month +in.simulation_control_timestep,,in.simulation_control_timestep +in.sqft..ft2,in.sqft,in.sqft +in.state,,in.state +in.state_metro_median_income,,New in ResStock 2025 Release 1 +in.tenure,,in.tenure +in.units_represented,,in.units_represented +in.upgrade_name,,upgrade_name +in.usage_level,,in.usage_level +in.utility_bill_electricity_fixed_charges,,in.utility_bill_electricity_fixed_charges +in.utility_bill_electricity_marginal_rates,,in.utility_bill_electricity_marginal_rates +in.utility_bill_fuel_oil_fixed_charges,,in.utility_bill_fuel_oil_fixed_charges +in.utility_bill_fuel_oil_marginal_rates,,in.utility_bill_fuel_oil_marginal_rates +in.utility_bill_natural_gas_fixed_charges,,in.utility_bill_natural_gas_fixed_charges +in.utility_bill_natural_gas_marginal_rates,,in.utility_bill_natural_gas_marginal_rates +in.utility_bill_propane_fixed_charges,,in.utility_bill_propane_fixed_charges +in.utility_bill_propane_marginal_rates,,in.utility_bill_propane_marginal_rates +in.vacancy_status,,in.vacancy_status +in.vintage,,in.vintage +in.vintage_acs,,in.vintage_acs +in.water_heater_efficiency,,in.water_heater_efficiency +in.water_heater_fuel,,in.water_heater_fuel +in.water_heater_in_unit,,in.water_heater_in_unit +in.water_heater_location,,in.water_heater_location +in.weather_file_city,,in.weather_file_city +in.weather_file_latitude,,in.weather_file_latitude +in.weather_file_longitude,,in.weather_file_longitude +in.window_areas,,in.window_areas +in.windows,,in.windows +out.capacity.cooling..btu_per_hr,,New in ResStock 2025 Release 1 +out.capacity.heat_pump_backup..btu_per_hr,,New in ResStock 2025 Release 1 +out.capacity.heating..btu_per_hr,,New in ResStock 2025 Release 1 +out.params.door_area..ft2,,out.params.door_area_ft_2 +out.params.duct_unconditioned_surface_area..ft2,,out.params.duct_unconditioned_surface_area_ft_2 +out.params.floor_area_attic..ft2,,out.params.floor_area_attic_ft_2 +out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value +out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50 +out.params.floor_area_foundation..ft2,,out.params.floor_area_foundation_ft_2 +out.params.floor_area_lighting..ft2,,out.params.floor_area_lighting_ft_2 +out.params.flow_rate_mechanical_ventilation..cfm,,out.params.flow_rate_mechanical_ventilation_cfm +out.params.hvac_geothermal_loop_borehole_trench_count,,New in ResStock 2025 Release 1 +out.params.hvac_geothermal_loop_borehole_trench_length..ft,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_clothes_dryer_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_cooling_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_dishwasher_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_ev_charging_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_headroom_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_heating_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_hot_water_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_mech_vent_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_occupied_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_occupied_savings_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_other_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_permanent_spa_heat_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_permanent_spa_pump_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_pool_heater_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_pool_pump_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_range_oven_count,,New in ResStock 2025 Release 1 +out.params.panel_breaker_space_well_pump_count,,New in ResStock 2025 Release 1 +out.params.panel_constraint_breaker_space,,New in ResStock 2025 Release 1 +out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,,New in ResStock 2025 Release 1 +out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,,New in ResStock 2025 Release 1 +out.params.panel_load_clothes_dryer..w,,New in ResStock 2025 Release 1 +out.params.panel_load_cooling..w,,New in ResStock 2025 Release 1 +out.params.panel_load_dishwasher..w,,New in ResStock 2025 Release 1 +out.params.panel_load_ev_charging..w,,New in ResStock 2025 Release 1 +out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 +out.params.panel_load_heating..w,,New in ResStock 2025 Release 1 +out.params.panel_load_hot_water..w,,New in ResStock 2025 Release 1 +out.params.panel_load_mech_vent..w,,New in ResStock 2025 Release 1 +out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 +out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 +out.params.panel_load_other..w,,New in ResStock 2025 Release 1 +out.params.panel_load_permanent_spa_heat..w,,New in ResStock 2025 Release 1 +out.params.panel_load_permanent_spa_pump..w,,New in ResStock 2025 Release 1 +out.params.panel_load_pool_heater..w,,New in ResStock 2025 Release 1 +out.params.panel_load_pool_pump..w,,New in ResStock 2025 Release 1 +out.params.panel_load_range_oven..w,,New in ResStock 2025 Release 1 +out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,,New in ResStock 2025 Release 1 +out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,,New in ResStock 2025 Release 1 +out.params.panel_load_well_pump..w,,New in ResStock 2025 Release 1 +out.params.rim_joist_area_above_grade_exterior..ft2,,out.params.rim_joist_area_above_grade_exterior_ft_2 +out.params.roof_area..ft2,,out.params.roof_area_ft_2 +out.params.size_cooling_system_primary..kbtu_per_hr,,out.params.size_cooling_system_primary_k_btu_h +out.params.size_heat_pump_backup_primary..kbtu_per_hr,,out.params.size_heat_pump_backup_primary_k_btu_h +out.params.size_heating_system_primary..kbtu_per_hr,,out.params.size_heating_system_primary_k_btu_h +out.params.size_heating_system_secondary..kbtu_per_hr,,out.params.size_heating_system_secondary_k_btu_h +out.params.size_water_heater..gal,,out.params.size_water_heater_gal +out.params.slab_perimeter_exposed_conditioned..ft,,out.params.slab_perimeter_exposed_conditioned_ft +out.params.wall_area_above_grade_conditioned..ft2,,out.params.wall_area_above_grade_conditioned_ft_2 +out.params.wall_area_above_grade_exterior..ft2,,out.params.wall_area_above_grade_exterior_ft_2 +out.params.wall_area_below_grade..ft2,,out.params.wall_area_below_grade_ft_2 +out.params.window_area..ft2,,out.params.window_area_ft_2 +,out.indoor_airflow.infiltration..cfm,Not published in ResStock 2024 Release 2 +,out.indoor_airflow.mechanical_ventilation..cfm,Not published in ResStock 2024 Release 2 +,out.indoor_airflow.natural_ventilation..cfm,Not published in ResStock 2024 Release 2 +,out.indoor_dewpoint_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 +,out.indoor_humidity_ratio.conditioned_space..kgwater_per_kgdryair,Not published in ResStock 2024 Release 2 +,out.indoor_operative_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 +,out.indoor_radiant_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 +,out.indoor_relative_humidity.conditioned_space..percentage,Not published in ResStock 2024 Release 2 +,out.indoor_temperature.conditioned_space..c,out.zone_mean_air_temp.conditioned_space.c +upgrade.demand_flexibility_electric_vehicle,,No direct equivalent in ResStock 2024 Release 2 +upgrade.demand_flexibility_hvac,,No direct equivalent in ResStock 2024 Release 2 +upgrade.demand_flexibility_random_shift,,No direct equivalent in ResStock 2024 Release 2 +upgrade.duct_leakage_and_insulation,,No direct equivalent in ResStock 2024 Release 2 +upgrade.electric_vehicle_charger,,No direct equivalent in ResStock 2024 Release 2 +upgrade.electric_vehicle_efficiency_increase,,No direct equivalent in ResStock 2024 Release 2 +upgrade.electric_vehicle_ownership,,No direct equivalent in ResStock 2024 Release 2 +upgrade.heating_fuel,,No direct equivalent in ResStock 2024 Release 2 +upgrade.hvac_cooling_efficiency,,upgrade.hvac_cooling_efficiency +upgrade.hvac_cooling_partial_space_conditioning,,upgrade.hvac_cooling_partial_space_conditioning +upgrade.hvac_detailed_performance_data,,No direct equivalent in ResStock 2024 Release 2 +upgrade.hvac_heating_efficiency,,upgrade.hvac_heating_efficiency +upgrade.hvac_heating_type_and_fuel,,No direct equivalent in ResStock 2024 Release 2 +upgrade.infiltration,,No direct equivalent in ResStock 2024 Release 2 +upgrade.infiltration_reduction,,upgrade.infiltration_reduction +upgrade.insulation_ceiling,,upgrade.insulation_ceiling +upgrade.insulation_wall,,No direct equivalent in ResStock 2024 Release 2 +upgrade.water_heater_efficiency,,upgrade.water_heater_efficiency +upgrade.water_heater_fuel,,upgrade.water_heater_fuel +upgrade.windows,,No direct equivalent in ResStock 2024 Release 2 +out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal +out.hot_water.dishwasher..gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal +out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal +out.hot_water.fixtures..gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal +out.hot_water_savings.clothes_washer..gal,,out.hot_water.clothes_washer.gal.savings +out.hot_water_savings.dishwasher..gal,,out.hot_water.dishwasher.gal.savings +out.hot_water_savings.distribution_waste..gal,,out.hot_water.distribution_waste.gal.savings +out.hot_water_savings.fixtures..gal,,out.hot_water.fixtures.gal.savings +out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu +out.load.cooling.energy_delivered_savings..kbtu,,out.load.cooling.energy_delivered.kbtu.savings +out.load.cooling.peak..kbtu_per_hr,,out.load.cooling.peak.kbtu_hr +out.load.cooling.peak_savings..kbtu_per_hr,,out.load.cooling.peak.kbtu_hr.savings +out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu +out.load.heating.energy_delivered_savings..kbtu,,out.load.heating.energy_delivered.kbtu.savings +out.load.heating.peak..kbtu_per_hr,,out.load.heating.peak.kbtu_hr +out.load.heating.peak_savings..kbtu_per_hr,,out.load.heating.peak.kbtu_hr.savings +out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu +out.load.hot_water.energy_delivered_savings..kbtu,,out.load.hot_water.energy_delivered.kbtu.savings +out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water_solar_thermal..kbtu,New in ResStock 2025 Release 1 +out.load.hot_water.energy_solar_thermal_savings..kbtu,,New in ResStock 2025 Release 1 +out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water_tank_losses..kbtu,New in ResStock 2025 Release 1 +out.load.hot_water.energy_tank_losses_savings..kbtu,,New in ResStock 2025 Release 1 +out.unmet_hours.cooling..hr,out.unmet_hours.cooling..hour,out.unmet_hours.cooling.hour +out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving..hour,New in ResStock 2025 Release 1 +out.unmet_hours.heating..hr,out.unmet_hours.heating..hour,out.unmet_hours.heating.hour +out.unmet_hours_reduction.cooling..hr,,out.unmet_hours.cooling.hour.savings +out.unmet_hours_reduction.heating..hr,,out.unmet_hours.heating.hour.savings +out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption.kwh +out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.ceiling_fan.energy_savings..kwh,,out.electricity.ceiling_fan.energy_consumption.kwh.savings +out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption.kwh +out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.clothes_dryer.energy_savings..kwh,,out.electricity.clothes_dryer.energy_consumption.kwh.savings +out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption.kwh +out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.clothes_washer.energy_savings..kwh,,out.electricity.clothes_washer.energy_consumption.kwh.savings +out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption.kwh +out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.cooling.energy_savings..kwh,,out.electricity.cooling.energy_consumption.kwh.savings +out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption.kwh +out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.cooling_fans_pumps.energy_savings..kwh,,out.electricity.cooling_fans_pumps.energy_consumption.kwh.savings +out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption.kwh +out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.dishwasher.energy_savings..kwh,,out.electricity.dishwasher.energy_consumption.kwh.savings +out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,New in ResStock 2025 Release 1 +out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.ev_charging.energy_savings..kwh,,New in ResStock 2025 Release 1 +out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption.kwh +out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.freezer.energy_savings..kwh,,out.electricity.freezer.energy_consumption.kwh.savings +out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption.kwh +out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.heating.energy_savings..kwh,,out.electricity.heating.energy_consumption.kwh.savings +out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption.kwh +out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.heating_fans_pumps.energy_savings..kwh,,out.electricity.heating_fans_pumps.energy_consumption.kwh.savings +out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption.kwh +out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.heating_hp_bkup.energy_savings..kwh,,out.electricity.heating_hp_bkup.energy_consumption.kwh.savings +out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh +out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.heating_hp_bkup_fa.energy_savings..kwh,,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh.savings +out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption.kwh +out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.hot_water.energy_savings..kwh,,out.electricity.hot_water.energy_consumption.kwh.savings +out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,New in ResStock 2025 Release 1 +out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.hot_water_solar_th.energy_savings..kwh,,New in ResStock 2025 Release 1 +out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption.kwh +out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.lighting_exterior.energy_savings..kwh,,out.electricity.lighting_exterior.energy_consumption.kwh.savings +out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption.kwh +out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.lighting_garage.energy_savings..kwh,,out.electricity.lighting_garage.energy_consumption.kwh.savings +out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption.kwh +out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.lighting_interior.energy_savings..kwh,,out.electricity.lighting_interior.energy_consumption.kwh.savings +out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption.kwh +out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.mech_vent.energy_savings..kwh,,out.electricity.mech_vent.energy_consumption.kwh.savings +out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption.kwh +out.electricity.net.energy_consumption_intensity..kwh_per_ft2,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.net.energy_savings..kwh,,out.electricity.net.energy_consumption.kwh.savings +out.electricity.net.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption.kwh +out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.permanent_spa_heat.energy_savings..kwh,,out.electricity.permanent_spa_heat.energy_consumption.kwh.savings +out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption.kwh +out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.permanent_spa_pump.energy_savings..kwh,,out.electricity.permanent_spa_pump.energy_consumption.kwh.savings +out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption.kwh +out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.plug_loads.energy_savings..kwh,,out.electricity.plug_loads.energy_consumption.kwh.savings +out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption.kwh +out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.pool_heater.energy_savings..kwh,,out.electricity.pool_heater.energy_consumption.kwh.savings +out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption.kwh +out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.pool_pump.energy_savings..kwh,,out.electricity.pool_pump.energy_consumption.kwh.savings +out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption.kwh +out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.pv.energy_savings..kwh,,out.electricity.pv.energy_consumption.kwh.savings +out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption.kwh +out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.range_oven.energy_savings..kwh,,out.electricity.range_oven.energy_consumption.kwh.savings +out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption.kwh +out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.refrigerator.energy_savings..kwh,,out.electricity.refrigerator.energy_consumption.kwh.savings +out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,New in ResStock 2025 Release 1 +out.electricity.television.energy_consumption_intensity..kwh_per_ft2,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.television.energy_savings..kwh,,New in ResStock 2025 Release 1 +out.electricity.television.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption.kwh +out.electricity.total.energy_consumption_intensity..kwh_per_ft2,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.total.energy_savings..kwh,,out.electricity.total.energy_consumption.kwh.savings +out.electricity.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption.kwh +out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.electricity.well_pump.energy_savings..kwh,,out.electricity.well_pump.energy_consumption.kwh.savings +out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption.kwh +out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.fuel_oil.heating.energy_savings..kwh,,out.fuel_oil.heating.energy_consumption.kwh.savings +out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh +out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.fuel_oil.heating_hp_bkup.energy_savings..kwh,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh.savings +out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption.kwh +out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.fuel_oil.hot_water.energy_savings..kwh,,out.fuel_oil.hot_water.energy_consumption.kwh.savings +out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption.kwh +out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.fuel_oil.total.energy_savings..kwh,,out.fuel_oil.total.energy_consumption.kwh.savings +out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption.kwh +out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.clothes_dryer.energy_savings..kwh,,out.natural_gas.clothes_dryer.energy_consumption.kwh.savings +out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption.kwh +out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.fireplace.energy_savings..kwh,,out.natural_gas.fireplace.energy_consumption.kwh.savings +out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption.kwh +out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.grill.energy_savings..kwh,,out.natural_gas.grill.energy_consumption.kwh.savings +out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption.kwh +out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.heating.energy_savings..kwh,,out.natural_gas.heating.energy_consumption.kwh.savings +out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating.energy_consumption.kwh +out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.heating_hp_bkup.energy_savings..kwh,,out.natural_gas.heating_hp_bkup.energy_consumption.kwh.savings +out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption.kwh +out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.hot_water.energy_savings..kwh,,out.natural_gas.hot_water.energy_consumption.kwh.savings +out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption.kwh +out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.lighting.energy_savings..kwh,,out.natural_gas.lighting.energy_consumption.kwh.savings +out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.kwh +out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.permanent_spa_heat.energy_savings..kwh,,out.natural_gas.permanent_spa_heat.energy_consumption.kwh.savings +out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption.kwh +out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.pool_heater.energy_savings..kwh,,out.natural_gas.pool_heater.energy_consumption.kwh.savings +out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption.kwh +out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.range_oven.energy_savings..kwh,,out.natural_gas.range_oven.energy_consumption.kwh.savings +out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption.kwh +out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.natural_gas.total.energy_savings..kwh,,out.natural_gas.total.energy_consumption.kwh.savings +out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption.kwh +out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.propane.clothes_dryer.energy_savings..kwh,,out.propane.clothes_dryer.energy_consumption.kwh.savings +out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption.kwh +out.propane.heating.energy_consumption_intensity..kwh_per_ft2,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.propane.heating.energy_savings..kwh,,out.propane.heating.energy_consumption.kwh.savings +out.propane.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.heating_hp_bkup.energy_consumption..kwh,,out.propane.heating_hp_bkup.energy_consumption.kwh +out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.heating_hp_bkup.energy_savings..kwh,,out.propane.heating_hp_bkup.energy_consumption.kwh.savings +out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption.kwh +out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.propane.hot_water.energy_savings..kwh,,out.propane.hot_water.energy_consumption.kwh.savings +out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption.kwh +out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.propane.range_oven.energy_savings..kwh,,out.propane.range_oven.energy_consumption.kwh.savings +out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption.kwh +out.propane.total.energy_consumption_intensity..kwh_per_ft2,out.propane.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.propane.total.energy_savings..kwh,,out.propane.total.energy_consumption.kwh.savings +out.propane.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.qoi.electricity.maximum_daily_peak_savings_summer..kw,,New in ResStock 2025 Release 1 +out.qoi.electricity.maximum_daily_peak_savings_winter..kw,,New in ResStock 2025 Release 1 +out.qoi.electricity.maximum_daily_peak_summer..kw,,out.electricity.summer.peak.kw +out.qoi.electricity.maximum_daily_peak_winter..kw,,out.electricity.winter.peak.kw +out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption.kwh +out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.site_energy.net.energy_savings..kwh,,out.site_energy.net.energy_consumption.kwh.savings +out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption.kwh +out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 +out.site_energy.total.energy_savings..kwh,,out.site_energy.total.energy_consumption.kwh.savings +out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 +out.utility_bills.electricity_bill..usd,,out.bills.electricity.usd +out.utility_bills.electricity_bill_savings..usd,,out.bills.electricity.usd.savings +out.utility_bills.fuel_oil_bill..usd,,out.bills.fuel_oil.usd +out.utility_bills.fuel_oil_bill_savings..usd,,out.bills.fuel_oil.usd.savings +out.utility_bills.natural_gas_bill..usd,,out.bills.natural_gas.usd +out.utility_bills.natural_gas_bill_savings..usd,,out.bills.natural_gas.usd.savings +out.utility_bills.propane_bill..usd,,out.bills.propane.usd +out.utility_bills.propane_bill_savings..usd,,out.bills.propane.usd.savings +out.utility_bills.total_bill..usd,,out.bills.all_fuels.usd +out.utility_bills.total_bill_savings..usd,,out.bills.all_fuels.usd.savings +out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.emissions.electricity.total.aer_highrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.emissions.electricity.total.aer_midcase_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.emissions.electricity.total.lrmer_midcase_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.emissions.electricity.total.lrmer_midcase_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.emissions.total.aer_highrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.emissions.total.aer_lowrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.aer_mid_case_avg..co2e_kg,out.emissions.total.aer_midcase_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.emissions.total.lrmer_highrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.emissions.total.lrmer_highrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.emissions.total.lrmer_lowrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.emissions.total.lrmer_lowrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_mid_case_15..co2e_kg,out.emissions.total.lrmer_midcase_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions.total.lrmer_mid_case_25..co2e_kg,out.emissions.total.lrmer_midcase_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.fuel_oil.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.natural_gas.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.propane.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 +out.energy_burden..percentage,,out.energy_burden.percentage +out.energy_burden_savings..percentage,,out.energy_burden.percentage.savings +,out.outdoor_air_drybulb_temp..c,out.outdoor_air_dryblub_temp.c +,out.outdoor_air_relative_humidity..percentage,Not published in ResStock 2024 Release 2 +,out.outdoor_air_wetbulb_temp..c,Not published in ResStock 2024 Release 2 +,out.outdoor_humidity_ratio..kgwater_per_kgdryair,Not published in ResStock 2024 Release 2 +,out.weather.diffuse_solar_radiation..watt_per_m2,Not published in ResStock 2024 Release 2 +,out.weather.direct_normal_solar_radiation..watt_per_m2,Not published in ResStock 2024 Release 2 +,out.weather.wind_speed..meter_per_second,Not published in ResStock 2024 Release 2 +,out.people.sensible_heating_rate..watt,Not published in ResStock 2024 Release 2 +,out.people.total_heating_rate..watt,Not published in ResStock 2024 Release 2 +,out.schedules.ceiling_fan,Not published in ResStock 2024 Release 2 +,out.schedules.clothes_dryer,Not published in ResStock 2024 Release 2 +,out.schedules.clothes_washer,Not published in ResStock 2024 Release 2 +,out.schedules.cooking_range,Not published in ResStock 2024 Release 2 +,out.schedules.cooling_setpoint..c,Not published in ResStock 2024 Release 2 +,out.schedules.dishwasher,Not published in ResStock 2024 Release 2 +,out.schedules.electric_vehicle_charging,Not published in ResStock 2024 Release 2 +,out.schedules.electric_vehicle_discharging,Not published in ResStock 2024 Release 2 +,out.schedules.heating_setpoint..c,Not published in ResStock 2024 Release 2 +,out.schedules.hot_water_clothes_washer,Not published in ResStock 2024 Release 2 +,out.schedules.hot_water_dishwasher,Not published in ResStock 2024 Release 2 +,out.schedules.hot_water_fixtures,Not published in ResStock 2024 Release 2 +,out.schedules.lighting_garage,Not published in ResStock 2024 Release 2 +,out.schedules.lighting_interior,Not published in ResStock 2024 Release 2 +,out.schedules.no_space_cooling,Not published in ResStock 2024 Release 2 +,out.schedules.no_space_heating,Not published in ResStock 2024 Release 2 +,out.schedules.occupants,Not published in ResStock 2024 Release 2 +,out.schedules.peak_period,Not published in ResStock 2024 Release 2 +,out.schedules.plug_loads_other,Not published in ResStock 2024 Release 2 +,out.schedules.plug_loads_tv,Not published in ResStock 2024 Release 2 +,out.schedules.power_outage,Not published in ResStock 2024 Release 2 +,out.schedules.pre_peak_period,Not published in ResStock 2024 Release 2 +,out.schedules.vacancy,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.cooling.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.cooling.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.dishwasher.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.ev_charging.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.freezer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.freezer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.mech_vent.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.net.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.net.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.plug_loads.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pool_heater.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pool_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pv.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.pv.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.refrigerator.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.television.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.television.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.well_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.electricity.well_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.fuel_oil.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.natural_gas.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.propane.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.propane.total..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.fuel_oil.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.grill.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.grill.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.lighting.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.natural_gas.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.propane.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.site_energy.net.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.site_energy.net.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.site_energy.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 +calc.weighted.site_energy.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 +completed_status,,Not published in ResStock 2024 Release 2 From 6ba0dab8b837dc5c9fc4524172d8ab7961a88278 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Thu, 6 Nov 2025 15:21:40 -0700 Subject: [PATCH 36/82] Adds missing hp backup load variables --- .../resources/publication/sdr_column_definitions.csv | 3 +++ 1 file changed, 3 insertions(+) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 0c0deb3029..00c1964562 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -321,7 +321,9 @@ Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_ Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,,Heating capacity at rated conditions which vary based on the type of equipment. Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Total energy delivered by cooling system includes HVAC distribution losses. Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heating system includes HVAC distribution losses. +Output,yes,yes,float,yes,report_simulation_output.load_heating_heat_pump_backup_m_btu,MBtu,out.load.heating_hp_bkup.energy_delivered..kbtu,out.load.heating_hp_bkup.energy_delivered..kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heat pump backup. Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems +Output,no,no,float,no,report_simulation_output.load_hot_water_desuperheater_m_btu,MBtu,out.load.hot_water_desuperheater.energy_delivered..kbtu,out.load.hot_water_desuperheater.energy_delivered..kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water desuperheater Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Total energy delivered by solar thermal water heater. Output,yes,yes,float,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum cooling load delivered by cooling system includes HVAC distribution losses. @@ -646,6 +648,7 @@ Calculated,yes,yes,float,no,,,out.hot_water_savings.distribution_waste..gal,out. Calculated,yes,yes,float,no,,,out.hot_water_savings.fixtures..gal,out.hot_water_savings.fixtures..gal,gal,,,,,,,,Hot water savings from fixtures such as faucets and showers. Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by cooling system includes HVAC distribution losses. Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heating system includes HVAC distribution losses. +Calculated,yes,yes,float,no,,,out.load.heating_hp_bkup.energy_delivered_savings..kbtu,out.load.heating_hp_backup.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating_hp_backup.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heat pump backup. Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems Calculated,yes,yes,float,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,,Savings on the total energy delivered by solar thermal water heater. Calculated,yes,yes,float,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,,Savings on the water heater tank losses energy. From 26a49aaf5cffb25bbda0b0b70dded61db3559611 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Tue, 25 Nov 2025 12:54:48 -0700 Subject: [PATCH 37/82] Adds process_metadata and Windows uv install to README --- postprocessing/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/postprocessing/README.md b/postprocessing/README.md index ef3d78251a..dae5dfb358 100644 --- a/postprocessing/README.md +++ b/postprocessing/README.md @@ -10,7 +10,11 @@ To install the package, we recommend using `uv` for Python package management. 1. Install `uv` if you don't have it already: ```bash + # Mac wget -qO- https://astral.sh/uv/install.sh | sh + + # Windows Powershell + powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" ``` (More info: https://docs.astral.sh/uv/getting-started/installation/) @@ -22,5 +26,16 @@ To install the package, we recommend using `uv` for Python package management. 3. Run the scripts as desired ```bash + # Output the failure log uv run resstockpostproc/get_failures.py --verbose + + # Export metadata and annual results from files on S3 + uv run resstockpostproc/process_bsb_results.py "s3://res-sdr/testing-sdr-fy25/a_run" "C:/path/to/bsb/output/a_run_output" + + # Export metdata and annual results from local files + # (It is faster to download the /baseline and /upgrades directories from S3 once instead of reading from S3 each time) + uv run resstockpostproc/process_bsb_results.py "C:/path/to/bsb/output/a_run" "C:/path/to/bsb/output/a_run_output" + + # Export metdata and annual results to OEDI + uv run resstockpostproc/process_bsb_results.py "C:/path/to/bsb/output/a_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" ``` \ No newline at end of file From 36205e62edb3d9b5e2bbd94b520e1ebf5911ea4f Mon Sep 17 00:00:00 2001 From: "Philip R. White" Date: Tue, 25 Nov 2025 14:14:15 -0700 Subject: [PATCH 38/82] component load related changes - adding component loads to definitions file and postprocessing pys --- .../resstockpostproc/process_bsb_results.py | 2 +- .../resstockpostproc/process_metadata.py | 3 +- .../publication/sdr_column_definitions.csv | 121 ++++++++++++------ 3 files changed, 84 insertions(+), 42 deletions(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index 473c30e95a..f7cd5c0a6d 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -4,7 +4,7 @@ Example usage: uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results /path/to/output_dir -uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "C:/Scratch/ResStock/efforts/full_550k_run_output" +uv run resstockpostproc/process_bsb_results.py "C:/Users/pwhite2/Documents/sdr_2025_final_run_data/AMY2012" "C:/Users/pwhite2/Documents/sdr_2025_final_run_data/AMY2012_output" uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 310faa458c..a11278d4ba 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -367,7 +367,8 @@ def col_name_to_savings(col_name: str) -> str: '.emissions.': '.emissions_reduction.', 'panel_load_total_load': 'panel_load_total_load_savings', 'panel_load_occupied_capacity': 'panel_load_occupied_capacity_savings', - 'panel_breaker_space_occupied': 'panel_breaker_space_occupied_savings' + 'panel_breaker_space_occupied': 'panel_breaker_space_occupied_savings', + "component_load": "component_load_savings" } for bef, aft in svg_renames.items(): converted_col_name = converted_col_name.replace(bef, aft) diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index 00c1964562..f9922de79e 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -447,46 +447,46 @@ Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,no,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107,Cooling consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107,Cooling consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107,Cooling consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107,Cooling consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107,Cooling consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107,Cooling consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107,Cooling consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107,Cooling consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107,Cooling consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107,Cooling consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107,Cooling consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107,Cooling consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) -Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107,Heating consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107,Heating consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107,Heating consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107,Heating consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107,Heating consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107,Heating consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107,Heating consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107,Heating consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107,Heating consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107,Heating consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107,Heating consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107,Heating consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) -Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,no,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107,Cooling consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107,Cooling consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107,Cooling consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107,Cooling consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107,Cooling consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107,Cooling consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107,Cooling consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107,Cooling consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107,Cooling consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107,Cooling consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107,Cooling consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107,Cooling consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107,Heating consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107,Heating consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107,Heating consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107,Heating consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107,Heating consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107,Heating consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107,Heating consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107,Heating consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107,Heating consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107,Heating consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107,Heating consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107,Heating consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) +Output,yes,yes,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging +Output,yes,yes,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging Calculated,yes,yes,float,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,integer,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code Calculated,yes,yes,integer,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure @@ -1024,3 +1024,44 @@ Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrme Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.ceilings..kwh,,kwh,,,,,,,,Energy savings from ceiling cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.doors..kwh,,kwh,,,,,,,,Energy savings from doors cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.ducts..kwh,,kwh,,,,,,,,Energy savings from ducts cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.floors..kwh,,kwh,,,,,,,,Energy savings from floors cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.foundation_walls..kwh,,kwh,,,,,,,,Energy savings from foundation walls cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.infiltration..kwh,,kwh,,,,,,,,Energy savings from infiltration cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.internal_gains..kwh,,kwh,,,,,,,,Energy savings from internal gains cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.internal_mass..kwh,,kwh,,,,,,,,Energy savings from internal mass cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.lighting..kwh,,kwh,,,,,,,,Energy savings from lighting cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.mechanical_ventilation..kwh,,kwh,,,,,,,,Energy savings from mechanical ventilation cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.natural_ventilation..kwh,,kwh,,,,,,,,Energy savings from natural ventilation cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.rim_joists..kwh,,kwh,,,,,,,,Energy savings from rim joists cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.roofs..kwh,,kwh,,,,,,,,Energy savings from roofs cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.skylights_conduction..kwh,,kwh,,,,,,,,Energy savings from skylights conduction cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.skylights_solar..kwh,,kwh,,,,,,,,Energy savings from skylights solar cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.slabs..kwh,,kwh,,,,,,,,Energy savings from slabs cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.walls..kwh,,kwh,,,,,,,,Energy savings from walls cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.whole_house_fan..kwh,,kwh,,,,,,,,Energy savings from whole house fan cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.windows_conduction..kwh,,kwh,,,,,,,,Energy savings from windows conduction cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.windows_solar..kwh,,kwh,,,,,,,,Energy savings from windows solar cooling load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.ceilings..kwh,,kwh,,,,,,,,Energy savings from ceiling heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.doors..kwh,,kwh,,,,,,,,Energy savings from doors heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.ducts..kwh,,kwh,,,,,,,,Energy savings from ducts heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.floors..kwh,,kwh,,,,,,,,Energy savings from floors heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.foundation_walls..kwh,,kwh,,,,,,,,Energy savings from foundation walls heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.infiltration..kwh,,kwh,,,,,,,,Energy savings from infiltration heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.internal_gains..kwh,,kwh,,,,,,,,Energy savings from internal gains heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.internal_mass..kwh,,kwh,,,,,,,,Energy savings from internal mass heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.lighting..kwh,,kwh,,,,,,,,Energy savings from lighting heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.mechanical_ventilation..kwh,,kwh,,,,,,,,Energy savings from mechanical ventilation heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.natural_ventilation..kwh,,kwh,,,,,,,,Energy savings from natural ventilation heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.rim_joists..kwh,,kwh,,,,,,,,Energy savings from rim joists heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.roofs..kwh,,kwh,,,,,,,,Energy savings from roofs heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.skylights_conduction..kwh,,kwh,,,,,,,,Energy savings from skylights conduction heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.skylights_solar..kwh,,kwh,,,,,,,,Energy savings from skylights solar heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.slabs..kwh,,kwh,,,,,,,,Energy savings from slabs heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.walls..kwh,,kwh,,,,,,,,Energy savings from walls heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.whole_house_fan..kwh,,kwh,,,,,,,,Energy savings from whole house fan heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.windows_conduction..kwh,,kwh,,,,,,,,Energy savings from windows conduction heating load. +Calculated,yes,yes,float,no,,,out.component_load_savings.heating.windows_solar..kwh,,kwh,,,,,,,,Energy savings from windows solar heating load. +,,,,,,,,,,,,,,,,,Energy savings from ceiling heating load. From e8d7623d5f819cb6c9fe9b0249e62c86675ca369 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Mon, 1 Dec 2025 11:33:53 -0700 Subject: [PATCH 39/82] Adds GISJOIN lookups for AK and HI --- .../resources/gisdata/county_lookup_table.csv | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv b/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv index 1b016fde7f..07b314b79d 100644 --- a/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv +++ b/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv @@ -1,4 +1,33 @@ long_name,original_FIP +"AK, Aleutians East Borough",G0200130 +"AK, Aleutians West Census Area",G0200160 +"AK, Anchorage Municipality",G0200200 +"AK, Bethel Census Area",G0200500 +"AK, Bristol Bay Borough",G0200600 +"AK, Denali Borough",G0200680 +"AK, Dillingham Census Area",G0200700 +"AK, Fairbanks North Star Borough",G0200900 +"AK, Haines Borough",G0201000 +"AK, Hoonah-Angoon Census Area",G0201050 +"AK, Juneau City and Borough",G0201100 +"AK, Kenai Peninsula Borough",G0201220 +"AK, Ketchikan Gateway Borough",G0201300 +"AK, Kodiak Island Borough",G0201500 +"AK, Kusilvak Census Area",G0201580 +"AK, Lake and Peninsula Borough",G0201640 +"AK, Matanuska-Susitna Borough",G0201700 +"AK, Nome Census Area",G0201800 +"AK, North Slope Borough",G0201850 +"AK, Northwest Arctic Borough",G0201880 +"AK, Petersburg Borough",G0201950 +"AK, Prince of Wales-Hyder Census Area",G0201980 +"AK, Sitka City and Borough",G0202200 +"AK, Skagway Municipality",G0202300 +"AK, Southeast Fairbanks Census Area",G0202400 +"AK, Valdez-Cordova Census Area",G0202610 +"AK, Wrangell City and Borough",G0202750 +"AK, Yakutat City and Borough",G0202820 +"AK, Yukon-Koyukuk Census Area",G0202900 "AL, Autauga County",G0100010 "AL, Baldwin County",G0100030 "AL, Barbour County",G0100050 @@ -516,6 +545,11 @@ "GA, Wilkes County",G1303170 "GA, Wilkinson County",G1303190 "GA, Worth County",G1303210 +"HI, Hawaii County",G1500010 +"HI, Honolulu County",G1500030 +"HI, Kalawao County",G1500050 +"HI, Kauai County",G1500070 +"HI, Maui County",G1500090 "ID, Ada County",G1600010 "ID, Adams County",G1600030 "ID, Bannock County",G1600050 From ee378da6c238a40a9c8f5fa3924b615f28c36612 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Mon, 1 Dec 2025 11:34:26 -0700 Subject: [PATCH 40/82] Simplify calls to process simulation outputs --- .../resstockpostproc/process_bsb_results.py | 69 +++++-------------- .../resstockpostproc/process_metadata.py | 15 +++- 2 files changed, 33 insertions(+), 51 deletions(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index f7cd5c0a6d..d28b56ebab 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -4,20 +4,14 @@ Example usage: uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results /path/to/output_dir -uv run resstockpostproc/process_bsb_results.py "C:/Users/pwhite2/Documents/sdr_2025_final_run_data/AMY2012" "C:/Users/pwhite2/Documents/sdr_2025_final_run_data/AMY2012_output" uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" - - - Note: bsb_raw_results folder must contain both baseline and upgrade files. Baseline file should be named results_up00.parquet and upgrade files should be named results_upXX.parquet where XX is the upgrade number. The can either be in their own folders (baseline and upgrades) or all be in the same folder. """ import re -import sys -import s3fs import polars as pl from pathlib import Path from resstockpostproc.process_metadata import ( @@ -25,7 +19,8 @@ get_upgrade_rename_dict, get_failed_building_list, process_simulation_outputs, - export_metadata_and_annual_results_for_upgrade + export_metadata_and_annual_results_for_upgrade, + cache_simulation_outputs_file ) from resstockpostproc.utils import ( setup_fsspec_filesystem @@ -41,40 +36,24 @@ def export_metadata_and_annual_results(raw_results_dir: str, # Find the raw results files pqt_glob = f'{raw_results_dir["fs_path"]}/**/*.parquet' result_files = raw_results_dir['fs'].glob(pqt_glob) - baseline_files = [f for f in result_files if "up00" in Path(f).name.lower()] - upgrade_files = [f for f in result_files if "up00" not in Path(f).name.lower()] + baseline_file = [f for f in result_files if "up00" in Path(f).name.lower()][0] + upgrade_ids = [int(re.search(r'up(\d+)', p).group(1)) for p in result_files] + upgrade_ids.sort() # Information used across upgrades upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) - upgrade_foo_col_schema = get_upgrade_foo_col_schema(upgrade_files, raw_results_dir) + upgrade_foo_col_schema = get_upgrade_foo_col_schema(result_files, raw_results_dir) sim_out_cache_dir = Path(f"{output_dir['fs_path']}/cached_simulation_outputs") - # Process and cache the baseline simulation outputs - upgrade_id = 0 - baseline_file = baseline_files[0] - print(f"Processing baseline file: {baseline_file}") + # Process and cache the simulation outputs, starting with the baseline baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) failed_bldgs = get_failed_building_list(baseline_df) - bs_pub_df = process_simulation_outputs( - failed_bldgs, - baseline_df, - None, - baseline_df, - upgrade_id, - upgrade_renamer, - upgrade_foo_col_schema - ) - cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, bs_pub_df) - base_cols = set(sorted(bs_pub_df.collect_schema().names())) + bs_pub_df = None + for upgrade_id in upgrade_ids: + upgrade_file = f'{raw_results_dir["fs_path"]}/upgrades/upgrade={upgrade_id}/results_up{upgrade_id:02d}.parquet' + if upgrade_id == 0: + upgrade_file = f'{raw_results_dir["fs_path"]}/baseline/results_up{upgrade_id:02d}.parquet' - # Process and cache the upgrade simulation outputs - upgrade_ids = [0] - for upgrade_file in upgrade_files: - up_info = re.search(r"up(\d+)", Path(upgrade_file).name) - if up_info is None: - continue - upgrade_id = int(up_info.group(1)) - upgrade_ids.append(upgrade_id) print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id} {'*'*100}") upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) up_df = process_simulation_outputs( @@ -88,11 +67,15 @@ def export_metadata_and_annual_results(raw_results_dir: str, ) cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, up_df) up_cols = set(sorted(up_df.collect_schema().names())) + + if upgrade_id == 0: + bs_pub_df = up_df + base_cols = set(sorted(bs_pub_df.collect_schema().names())) + if not base_cols == up_cols: - raise ValueError(f"Column set in baseline and upgrade don't match") - upgrade_ids.sort() + raise ValueError("Column set in baseline and upgrade don't match") - # Define the geographic partitions to export + # Export files to specified geographic partitions geo_exports = [ { 'geo_top_dir': 'national', @@ -109,7 +92,6 @@ def export_metadata_and_annual_results(raw_results_dir: str, 'file_types': ['csv', 'parquet'], } ] - for upgrade_id in upgrade_ids: export_metadata_and_annual_results_for_upgrade( output_dir, @@ -117,19 +99,6 @@ def export_metadata_and_annual_results(raw_results_dir: str, geo_exports) -def cache_simulation_outputs_file(output_dir, sim_out_cache_dir: Path, upgrade_id: int, df: pl.LazyFrame): - file_name = f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - upgrade_cache_dir = Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - file_path = upgrade_cache_dir / file_name - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - file_path = f's3://{file_path.as_posix()}' - else: - upgrade_cache_dir.mkdir(parents=True, exist_ok=True) - with output_dir['fs'].open(str(file_path), "wb") as f: - df.sink_parquet(f) - print(f"Cached simulation outputs for upgrade {upgrade_id} to {file_path}") - - if __name__ == "__main__": import argparse diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index a11278d4ba..9bff906893 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -710,4 +710,17 @@ def get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, # Write the file, depending on filetype file_path = f'{geo_level_dir}/{file_name}' - return file_path \ No newline at end of file + return file_path + + +def cache_simulation_outputs_file(output_dir, sim_out_cache_dir: pathlib.Path, upgrade_id: int, df: pl.LazyFrame): + file_name = f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" + upgrade_cache_dir = pathlib.Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") + file_path = upgrade_cache_dir / file_name + if isinstance(output_dir['fs'], s3fs.S3FileSystem): + file_path = f's3://{file_path.as_posix()}' + else: + upgrade_cache_dir.mkdir(parents=True, exist_ok=True) + with output_dir['fs'].open(str(file_path), "wb") as f: + df.sink_parquet(f) + print(f"Cached simulation outputs for upgrade {upgrade_id} to {file_path}") From c5c2b66f3028b202962976fbe2115b1ca3cec69a Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Mon, 1 Dec 2025 11:38:34 -0700 Subject: [PATCH 41/82] Formatting fixes --- postprocessing/resstockpostproc/process_metadata.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index 9bff906893..a4de7e613b 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -191,6 +191,7 @@ def downselect_and_rename_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl transformed_cols.extend([pl.col(col).alias(col) for col in upgrade_cols]) return df.select(transformed_cols) + def get_upgrade_rename_dict(raw_results_dir): file_path = pathlib.Path(raw_results_dir["fs_path"]) / "rename_upgrades.json" if not raw_results_dir["fs"].exists(file_path): @@ -199,6 +200,7 @@ def get_upgrade_rename_dict(raw_results_dir): upgrade_renamer = json.load(f) return upgrade_renamer + def rename_upgrades(df: pl.LazyFrame, upgrade_renamer: dict) -> pl.LazyFrame: """ Renames the upgrades in the in.upgrade_name column from values used in the YML file @@ -222,7 +224,7 @@ def rename_upgrades(df: pl.LazyFrame, upgrade_renamer: dict) -> pl.LazyFrame: # Check that each upgrade name is present in the upgrade renamer dict up_names = df.select(pl.col("in.upgrade_name")).unique().collect().to_series().to_list() for up_name in up_names: - if not up_name in upgrade_renamer: + if up_name not in upgrade_renamer: raise ValueError(f"No upgrade rename supplied for: {up_name}") df = df.with_columns((pl.col("in.upgrade_name").replace(upgrade_renamer)).alias("in.upgrade_name")) @@ -233,7 +235,6 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: df = assign_representative_income(df) income_col = "in.representative_income" - new_cols = [] # Reassign negative or zero dollar income to 1 dollar adj_income = pl.when(pl.col(income_col) <= 0).then(pl.lit(1)).otherwise(pl.col(income_col)).alias(income_col) @@ -260,7 +261,7 @@ def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: - print(f"Adding savings columns") + print("Adding savings columns") savings_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( @@ -473,6 +474,7 @@ def add_puma_column(df: pl.LazyFrame): df = df.with_columns([pl.col("in.puma").replace(puma_map).alias("in.puma")]) return df + def get_upgrade_columns(lf: pl.LazyFrame) -> list: upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] if not upgrade_cols: @@ -596,12 +598,12 @@ def downselect_and_order_pub_cols(lf: pl.LazyFrame, col_maps: Sequence[dict]): all_defined_cols = [col_map["published_name"] for col_map in col_maps if "yes" in col_map["publish_in_full"]] extra_cols = all_df_cols - set(all_defined_cols) if extra_cols: - print(f"Extra columns in output data not defined in publication column definition:") + print("Extra columns in output data not defined in publication column definition:") for c in sorted(extra_cols): print(f"Extra column: {c}") missing_cols = [col for col in set(all_defined_cols) - all_df_cols if not col.startswith("upgrade.")] if missing_cols: - print(f"Missing columns in output data that are defined in publication column definition:") + print("Missing columns in output data that are defined in publication column definition:") for c in sorted(missing_cols): if 'out.component_load' in c: # TODO ANDREW WUZ HERE remove this - temporarily suppressing known missing cols continue @@ -688,6 +690,7 @@ def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_e input_args = (up_df, output_dir, file_type, file_path) write_geo_data(input_args) + def get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id): """ Builds a file path for each aggregate based on name, file type, and aggregation level From 96f774178e8b4d573662ff6860c3182ba06ff313 Mon Sep 17 00:00:00 2001 From: Andrew Parker Date: Wed, 3 Dec 2025 07:03:09 -0700 Subject: [PATCH 42/82] Code cleanup --- .../resstockpostproc/process_bsb_results.py | 24 +++++------ .../resstockpostproc/process_metadata.py | 43 +++++++++++-------- 2 files changed, 38 insertions(+), 29 deletions(-) diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index d28b56ebab..8ada7d2dcb 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -15,7 +15,7 @@ import polars as pl from pathlib import Path from resstockpostproc.process_metadata import ( - get_upgrade_foo_col_schema, + get_schema_superset, get_upgrade_rename_dict, get_failed_building_list, process_simulation_outputs, @@ -42,35 +42,35 @@ def export_metadata_and_annual_results(raw_results_dir: str, # Information used across upgrades upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) - upgrade_foo_col_schema = get_upgrade_foo_col_schema(result_files, raw_results_dir) + col_schema = get_schema_superset(result_files, raw_results_dir) sim_out_cache_dir = Path(f"{output_dir['fs_path']}/cached_simulation_outputs") # Process and cache the simulation outputs, starting with the baseline baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) failed_bldgs = get_failed_building_list(baseline_df) - bs_pub_df = None + processed_baseline_df = None for upgrade_id in upgrade_ids: upgrade_file = f'{raw_results_dir["fs_path"]}/upgrades/upgrade={upgrade_id}/results_up{upgrade_id:02d}.parquet' if upgrade_id == 0: upgrade_file = f'{raw_results_dir["fs_path"]}/baseline/results_up{upgrade_id:02d}.parquet' print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id} {'*'*100}") - upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) - up_df = process_simulation_outputs( + raw_upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) + processed_upgrade_df = process_simulation_outputs( failed_bldgs, baseline_df, - bs_pub_df, - upgrade_df, + processed_baseline_df, + raw_upgrade_df, upgrade_id, upgrade_renamer, - upgrade_foo_col_schema + col_schema ) - cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, up_df) - up_cols = set(sorted(up_df.collect_schema().names())) + cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, processed_upgrade_df) + up_cols = set(sorted(processed_upgrade_df.collect_schema().names())) if upgrade_id == 0: - bs_pub_df = up_df - base_cols = set(sorted(bs_pub_df.collect_schema().names())) + processed_baseline_df = processed_upgrade_df + base_cols = set(sorted(processed_baseline_df.collect_schema().names())) if not base_cols == up_cols: raise ValueError("Column set in baseline and upgrade don't match") diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index a4de7e613b..cd058f4b07 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -28,7 +28,7 @@ def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: def process_simulation_outputs( baseline_failed_bldgs: set[int], base_raw_df: pl.LazyFrame, - base_pub_df: pl.LazyFrame, + base_proc_df: pl.LazyFrame, upgrade_raw_df: pl.LazyFrame, upgrade_num: int, upgrade_renamer: dict[str, str], @@ -39,7 +39,7 @@ def process_simulation_outputs( Args: baseline_failed_bldgs: Set of failed building IDs in baseline. - base_pub_df: LazyFrame containing baseline results already passed through process_baseline_simulation_outputs. + base_proc_df: LazyFrame containing baseline results already passed through process_baseline_simulation_outputs. upgrade_raw_df: LazyFrame containing upgrade results from raw BuildStockBatch results. upgrade_num: Integer representing the upgrade number. Returns: @@ -49,18 +49,17 @@ def process_simulation_outputs( is_baseline = (upgrade_num == 0) col_maps = get_col_maps() - # TODO move no-op functionality for baseline vs. upgrade inside functions, add is_baseline as argument df = upgrade_raw_df - df = set_baseline_applicability(df) if is_baseline else df - df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df) if not is_baseline else df + df = set_baseline_applicability(df, is_baseline) + df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df, is_baseline) df = remove_failed_baseline_buildings(df, baseline_failed_bldgs) df = remove_na_or_failed_buildings(df) - df = replace_missing_buildings_with_baseline(df, base_raw_df) if not is_baseline else df + df = replace_missing_buildings_with_baseline(df, base_raw_df, is_baseline) df = downselect_and_rename_cols(df, col_maps) # Per sdr_column_definitions.csv df = add_income_and_burden(df) df = add_county_column(df) df = add_puma_column(df) - df = add_baseline_upgrade_name_col(df) if is_baseline else df + df = add_baseline_upgrade_name_col(df, is_baseline) df = add_upgrade_id_col(df, upgrade_num) df = rename_upgrades(df, upgrade_renamer) df = fix_site_energy_total(df) @@ -72,7 +71,7 @@ def process_simulation_outputs( if is_baseline: df = add_saving_cols(df, df) # Intentionally calculate savings = baseline - baseline = 0 else: - df = add_saving_cols(df, base_pub_df) + df = add_saving_cols(df, base_proc_df) df = add_intensity_cols(df) df = add_weighted_cols(df) @@ -83,7 +82,7 @@ def process_simulation_outputs( return df -def get_upgrade_foo_col_schema(upgrade_files: list, files_dir) -> dict: +def get_schema_superset(upgrade_files: list, files_dir) -> dict: upgrade_col_schema = {} for upgrade_file in upgrade_files: upgrade_df = pl.scan_parquet(upgrade_file, storage_options=files_dir['storage_options']) @@ -91,7 +90,10 @@ def get_upgrade_foo_col_schema(upgrade_files: list, files_dir) -> dict: return upgrade_col_schema -def set_baseline_applicability(df: pl.LazyFrame) -> pl.LazyFrame: +def set_baseline_applicability(df: pl.LazyFrame, is_baseline: bool) -> pl.LazyFrame: + if not is_baseline: + # Non-baseline upgrades already have an applicability column + return df print('Setting applicability to True for all baseline buildings') df = df.with_columns(pl.lit(True).alias("applicability")) return df @@ -127,12 +129,19 @@ def add_upgrade_id_col(df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: return df -def add_baseline_upgrade_name_col(df: pl.LazyFrame) -> pl.LazyFrame: +def add_baseline_upgrade_name_col(df: pl.LazyFrame, is_baseline: bool) -> pl.LazyFrame: + if not is_baseline: + # Upgrades already have an upgrade name column + return df df = df.with_columns([pl.lit("Baseline").alias("in.upgrade_name")]) return df -def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: +def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, + is_baseline: bool) -> pl.LazyFrame: + if is_baseline: + # Baseline already has all the columns, no need to add + return upgrade_df print('Adding missing columns from baseline to upgrade') base_cols = baseline_df.collect_schema().names() upgrade_cols = upgrade_df.collect_schema().names() @@ -141,7 +150,11 @@ def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline return upgrade_df -def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: +def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, + is_baseline: bool) -> pl.LazyFrame: + if is_baseline: + # Baseline determines the full set of buildings, will never be missing any by definition + return upgrade_df print('Replacing buildings missing from the upgrade with baseline data') # All buildings present in the upgrade_df are there because the upgrade was applicable to them upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) @@ -294,8 +307,6 @@ def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame savings_cols.append(saving_col) df = df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) - all_cols = df.collect_schema().names() # TODO remove - return df @@ -605,8 +616,6 @@ def downselect_and_order_pub_cols(lf: pl.LazyFrame, col_maps: Sequence[dict]): if missing_cols: print("Missing columns in output data that are defined in publication column definition:") for c in sorted(missing_cols): - if 'out.component_load' in c: # TODO ANDREW WUZ HERE remove this - temporarily suppressing known missing cols - continue print(f"Missing column: {c}") available_cols = [col for col in all_defined_cols if col in all_df_cols] return lf.select(available_cols) From cf30c83903c8eb6a0f63690143ff5fac8052b5e4 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 17:07:39 -0700 Subject: [PATCH 43/82] Stub new AddSharedSystem measure. --- measures/AddSharedSystem/measure.rb | 59 ++++++++++++++++++++++++ measures/AddSharedSystem/measure.xml | 69 ++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+) create mode 100644 measures/AddSharedSystem/measure.rb create mode 100644 measures/AddSharedSystem/measure.xml diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb new file mode 100644 index 0000000000..37953140a2 --- /dev/null +++ b/measures/AddSharedSystem/measure.rb @@ -0,0 +1,59 @@ +# frozen_string_literal: true + +require 'openstudio' +require 'openstudio-standards' +require_relative '../../resources/buildstock' + +# start the measure +class AddSharedSystem < OpenStudio::Measure::ModelMeasure + # human readable name + def name + # Measure name should be the title case of the class name. + return 'AddSharedSystem' + end + + # human readable description + def description + return 'TODO' + end + + # human readable description of modeling approach + def modeler_description + return 'TODO' + end + + # define the arguments that the user will input + def arguments(model) # rubocop:disable Lint/UnusedMethodArgument + args = OpenStudio::Measure::OSArgumentVector.new + + arg = OpenStudio::Measure::OSArgument::makeStringArgument('add_shared_system_argument', false) + arg.setDisplayName('Argument Name') + arg.setDescription('TODO.') + arg.setDefaultValue('None') + args << arg + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Assign the user inputs to variables + args = runner.getArgumentValues(arguments(model), user_arguments) + + return true if args[:add_shared_system_argument] == 'None' + + register_value(runner, 'add_shared_system_argument', args[:add_shared_system_argument]) + + return true + end +end + +# register the measure to be used by the application +AddSharedSystem.new.registerWithApplication diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml new file mode 100644 index 0000000000..275adc611f --- /dev/null +++ b/measures/AddSharedSystem/measure.xml @@ -0,0 +1,69 @@ + + + 3.1 + add_shared_system + 8ee9fa41-2685-42dd-acb4-8ed721810134 + b83d3d48-57b5-4406-85bd-e40eb01e1dc8 + 2025-12-16T00:04:14Z + BED8DECF + AddSharedSystem + Add Shared System + TODO + TODO + + + add_shared_system_argument + Argument Name + TODO. + String + false + false + None + + + + + + Envelope.Form + + + + Measure Type + ModelMeasure + string + + + Measure Language + Ruby + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 3.10.0 + 3.10.0 + + measure.rb + rb + script + FFD12C3C + + + From d931f261511be788cc34519a68d9f71c5844f0ce Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 17:08:03 -0700 Subject: [PATCH 44/82] Refactor run_analysis for HPXMLtoOpenStudio removal. --- workflow/run_analysis.rb | 37 +++++++++---------------------------- 1 file changed, 9 insertions(+), 28 deletions(-) diff --git a/workflow/run_analysis.rb b/workflow/run_analysis.rb index 12001ab898..210390c054 100644 --- a/workflow/run_analysis.rb +++ b/workflow/run_analysis.rb @@ -121,12 +121,6 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ bld_exist_model_args.update(sim_ctl_args) bld_exist_model_args.update(workflow_args['build_existing_model']) - add_component_loads = false - if bld_exist_model_args.keys.include?('add_component_loads') - add_component_loads = bld_exist_model_args['add_component_loads'] - bld_exist_model_args.delete('add_component_loads') - end - if workflow_args.keys.include?('emissions') emissions = workflow_args['emissions'] bld_exist_model_args['emissions_scenario_names'] = emissions.collect { |s| s['scenario_name'] }.join(',') @@ -241,6 +235,13 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ scenario_xml_dir = File.join(results_dir, 'xml', upgrade_name) Dir.mkdir(scenario_xml_dir) + debug = false + if workflow_args.keys.include?('debug') + debug = workflow_args['debug'] + end + + bld_exist_model_args['debug'] = debug + osw = { 'steps' => [ { @@ -258,11 +259,6 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ } } - debug = false - if workflow_args.keys.include?('debug') - debug = workflow_args['debug'] - end - server_dir_cleanup_args = { 'retain_in_osm' => false, 'retain_in_idf' => true, @@ -287,16 +283,6 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ server_dir_cleanup_args.update(workflow_args['server_directory_cleanup']) osw['steps'] += [ - { - 'measure_dir_name' => 'HPXMLtoOpenStudio', - 'arguments' => { - 'hpxml_path' => '', - 'output_dir' => '', - 'debug' => debug, - 'add_component_loads' => add_component_loads, - 'skip_validation' => true - } - }, { 'measure_dir_name' => 'UpgradeCosts', 'arguments' => { 'debug' => debug } @@ -519,9 +505,7 @@ def samples_osw(results_dir, upgrade_name, workflow, building_id, job_id, folder FileUtils.cp(workflow, worker_dir) osw = File.join(worker_dir, File.basename(workflow)) - output_dir = File.join(worker_dir, 'run') - hpxml_path = File.join(output_dir, 'home.xml') - change_arguments(osw, building_id, hpxml_path, output_dir) + change_arguments(osw, building_id) worker_folder_ = job_id worker_folder_ = worker_folder if keep_run_folders @@ -575,14 +559,11 @@ def create_timestamp(time_str) return Time.parse(time_str).iso8601.delete('Z') end -def change_arguments(osw, building_id, hpxml_path, output_dir) +def change_arguments(osw, building_id) json = JSON.parse(File.read(osw), symbolize_names: true) json[:steps].each do |measure| if measure[:measure_dir_name] == 'BuildExistingModel' measure[:arguments][:building_id] = "#{building_id}" - elsif measure[:measure_dir_name] == 'HPXMLtoOpenStudio' - measure[:arguments][:hpxml_path] = hpxml_path - measure[:arguments][:output_dir] = output_dir end end File.open(osw, 'w') do |f| From 97869aacf684e8e5bf65981ba84df8de79842242 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 17:08:42 -0700 Subject: [PATCH 45/82] Stub new AddSharedSystem argument in the lookup. --- measures/ApplyUpgrade/measure.rb | 40 ++++++++-- measures/ApplyUpgrade/measure.xml | 6 +- measures/BuildExistingModel/README.md | 22 ++++++ measures/BuildExistingModel/measure.rb | 73 +++++++++++++++---- measures/BuildExistingModel/measure.xml | 46 +++++++++++- measures/ResStockArguments/README.md | 11 +++ measures/ResStockArguments/measure.rb | 5 ++ measures/ResStockArguments/measure.xml | 16 +++- .../ResStockArgumentsPostHPXML/measure.rb | 73 ++++++++++--------- .../ResStockArgumentsPostHPXML/measure.xml | 15 +++- resources/options_lookup.tsv | 2 +- 11 files changed, 240 insertions(+), 69 deletions(-) diff --git a/measures/ApplyUpgrade/measure.rb b/measures/ApplyUpgrade/measure.rb index f9666e1bff..a9be605999 100644 --- a/measures/ApplyUpgrade/measure.rb +++ b/measures/ApplyUpgrade/measure.rb @@ -301,6 +301,7 @@ def run(model, runner, user_arguments) # Run the ResStockArguments measure measures['ResStockArguments'][0]['building_id'] = values['building_id'] + add_shared_system_argument = measures['ResStockArguments'][0].delete('add_shared_system_argument') if not apply_measures(measures_dir, { 'ResStockArguments' => measures['ResStockArguments'] }, resstock_arguments_runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'upgraded.osw') register_logs(runner, resstock_arguments_runner) return false @@ -323,11 +324,7 @@ def run(model, runner, user_arguments) set_battery(measures, hpxml) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - hpxml.buildings.each_with_index do |hpxml_bldg, unit_number| - if unit_number > 0 - measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path - end - + hpxml.buildings.each do |hpxml_bldg| set_resstock_arguments(measures, resstock_arguments_runner) set_building_construction(measures, hpxml_bldg) set_dehumidifier(measures, hpxml_bldg) @@ -388,6 +385,37 @@ def run(model, runner, user_arguments) in_path = File.expand_path('../home.xml') FileUtils.cp(hpxml_path, in_path) + measures['HPXMLtoOpenStudio'] = [{}] + measures['HPXMLtoOpenStudio'][0]['hpxml_path'] = in_path + measures['HPXMLtoOpenStudio'][0]['output_dir'] = File.dirname(hpxml_path) + measures['HPXMLtoOpenStudio'][0]['debug'] = values['debug'] + measures['HPXMLtoOpenStudio'][0]['add_component_loads'] = values['add_component_loads'] + measures['HPXMLtoOpenStudio'][0]['skip_validation'] = true + measures_hash = { 'HPXMLtoOpenStudio' => measures['HPXMLtoOpenStudio'] } + if not apply_measures(hpxml_measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false + end + + if not add_shared_system_argument.nil? + measures['AddSharedSystem'] = [{}] + measures['AddSharedSystem'][0]['add_shared_system_argument'] = add_shared_system_argument + measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } + if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false + end + + # Report values from AddSharedSystem + ['add_shared_system_argument'].each do |key_lookup| + new_runner.result.stepValues.each do |step_value| + next if step_value.name != key_lookup + + register_value(runner, key_lookup, get_value_from_workflow_step_value(step_value)) + end + end + end + register_logs(runner, resstock_arguments_runner) register_logs(runner, new_runner) @@ -454,7 +482,7 @@ def set_resstock_arguments(measures, child_runner) def set_building_construction(measures, hpxml_bldg) if hpxml_bldg.building_construction.number_of_units > 1 - measures['BuildResidentialHPXML'][0]['unit_multiplier'] = hpxml_bldg.building_construction.number_of_units + measures['ResStockArgumentsPostHPXML'][0]['unit_multiplier'] = hpxml_bldg.building_construction.number_of_units end end diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml index 5b610bd44e..b87d950fe2 100644 --- a/measures/ApplyUpgrade/measure.xml +++ b/measures/ApplyUpgrade/measure.xml @@ -3,8 +3,8 @@ 3.1 apply_upgrade 33f1654c-f734-43d1-b35d-9d2856e41b5a - 38811145-936a-4100-b962-e026d266c9d5 - 2025-12-08T23:23:42Z + e2bb4ab8-08b7-420c-b293-da2288c54269 + 2025-12-16T00:01:08Z 9339BE01 ApplyUpgrade Apply Upgrade @@ -25016,7 +25016,7 @@ measure.rb rb script - 067F1CF5 + DC2A9134 constants.rb diff --git a/measures/BuildExistingModel/README.md b/measures/BuildExistingModel/README.md index 7e929c675c..de478cf084 100644 --- a/measures/BuildExistingModel/README.md +++ b/measures/BuildExistingModel/README.md @@ -441,6 +441,28 @@ Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma
+**Add component loads?** + +If true, adds the calculation of heating/cooling component loads (not enabled by default for faster performance). + +- **Name:** ``add_component_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Debug Mode?** + +If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files. + +- **Name:** ``debug`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index e38ba20e0e..21b9a33def 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -225,6 +225,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list.') args << arg + arg = OpenStudio::Measure::OSArgument.makeBoolArgument('add_component_loads', false) + arg.setDisplayName('Add component loads?') + arg.setDescription('If true, adds the calculation of heating/cooling component loads (not enabled by default for faster performance).') + arg.setDefaultValue(false) + args << arg + + arg = OpenStudio::Measure::OSArgument.makeBoolArgument('debug', false) + arg.setDisplayName('Debug Mode?') + arg.setDescription('If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files.') + arg.setDefaultValue(false) + args << arg + return args end @@ -335,28 +347,25 @@ def run(model, runner, user_arguments) # Run the ResStockArguments measure resstock_arguments_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) # we want only ResStockArguments registered argument values measures['ResStockArguments'][0]['building_id'] = args[:building_id] + add_shared_system_argument = measures['ResStockArguments'][0].delete('add_shared_system_argument') if not apply_measures(measures_dir, { 'ResStockArguments' => measures['ResStockArguments'] }, resstock_arguments_runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'existing.osw') register_logs(runner, resstock_arguments_runner) return false end # Optional whole SFA/MF building simulation - whole_sfa_or_mf_building_sim = false - geometry_building_num_units = 1 + whole_sfa_or_mf_building_sim = true + n_units = 1 if whole_sfa_or_mf_building_sim - resstock_arguments_runner.result.stepValues.each do |step_value| - if step_value.name == 'geometry_building_num_units' - geometry_building_num_units = Integer(get_value_from_workflow_step_value(step_value)) - end - end + n_units = Integer(measures['ResStockArguments'][0]['geometry_building_num_units']) end num_units_modeled = 1 max_num_units_modeled = 5 unit_multipliers = [] - if whole_sfa_or_mf_building_sim && geometry_building_num_units > 1 - num_units_modeled = [geometry_building_num_units, max_num_units_modeled].min - unit_multipliers = split_into(geometry_building_num_units, num_units_modeled) + if whole_sfa_or_mf_building_sim && n_units > 1 + num_units_modeled = [n_units, max_num_units_modeled].min + unit_multipliers = split_into(n_units, num_units_modeled) end # Set arguments for the BuildResidentialHPXML measure @@ -369,10 +378,6 @@ def run(model, runner, user_arguments) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) (1..num_units_modeled).each do |unit_number| - if unit_number > 1 - measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path - end - set_resstock_arguments(measures, resstock_arguments_runner) if not unit_multipliers.empty? unit_multiplier = unit_multipliers[unit_number] @@ -461,6 +466,44 @@ def run(model, runner, user_arguments) register_value(runner, 'sample_weight', bldg_data['sample_weight'].to_s) end + workflow_measures = [] + runner.workflow.workflowSteps.each do |workflow_step| + workflow_measures << workflow_step.toJSON[:measure_dir_name] + end + + if not workflow_measures.include?('ApplyUpgrade') + measures['HPXMLtoOpenStudio'] = [{}] + measures['HPXMLtoOpenStudio'][0]['hpxml_path'] = in_path + measures['HPXMLtoOpenStudio'][0]['output_dir'] = File.dirname(hpxml_path) + measures['HPXMLtoOpenStudio'][0]['debug'] = args[:debug] + measures['HPXMLtoOpenStudio'][0]['add_component_loads'] = args[:add_component_loads] + measures['HPXMLtoOpenStudio'][0]['skip_validation'] = true + measures_hash = { 'HPXMLtoOpenStudio' => measures['HPXMLtoOpenStudio'] } + if not apply_measures(hpxml_measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false + end + + if not add_shared_system_argument.nil? + measures['AddSharedSystem'] = [{}] + measures['AddSharedSystem'][0]['add_shared_system_argument'] = add_shared_system_argument + measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } + if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false + end + + # Report values from AddSharedSystem + ['add_shared_system_argument'].each do |key_lookup| + new_runner.result.stepValues.each do |step_value| + next if step_value.name != key_lookup + + register_value(runner, key_lookup, get_value_from_workflow_step_value(step_value)) + end + end + end + end + register_logs(runner, resstock_arguments_runner) register_logs(runner, new_runner) @@ -619,7 +662,7 @@ def set_building_header(measures) def set_building_construction(measures, unit_multiplier) if not unit_multiplier.nil? - measures['BuildResidentialHPXML'][0]['unit_multiplier'] = unit_multiplier + measures['ResStockArgumentsPostHPXML'][0]['unit_multiplier'] = unit_multiplier end end diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 44cb9c0895..adb255aa21 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 1c0604a5-5715-4dd3-8c9d-945fcd9732cf - 2025-10-06T19:01:30Z + 6e2b3272-a90d-4f4a-bb75-d7474e1d14df + 2025-12-16T00:01:09Z 2C38F48B BuildExistingModel Build Existing Model @@ -322,6 +322,44 @@ false false + + add_component_loads + Add component loads? + If true, adds the calculation of heating/cooling component loads (not enabled by default for faster performance). + Boolean + false + false + false + + + true + true + + + false + false + + + + + debug + Debug Mode? + If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files. + Boolean + false + false + false + + + true + true + + + false + false + + + @@ -340,7 +378,7 @@ README.md md readme - DA3A75A2 + 86B2EC16
README.md.erb @@ -357,7 +395,7 @@ measure.rb rb script - 59E06656 + FAD60667 diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index 5bd9dddff9..1ae311bb57 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -1753,6 +1753,17 @@ The building vintage, used for informational purposes only.
+**Building Construction: Unit Multiplier** + +The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + +- **Name:** ``unit_multiplier`` +- **Type:** ``Integer`` + +- **Required:** ``false`` + +
+ **Enclosure: Ceiling Insulation Nominal R-value** Nominal R-value for the ceiling (attic floor). diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 8b7b05fa06..8dbbf15b47 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -166,6 +166,11 @@ def arguments(model) arg.setDescription('The building vintage, used for informational purposes only.') args << arg + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('unit_multiplier', false) + arg.setDisplayName('Building Construction: Unit Multiplier') + arg.setDescription('The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1.') + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ceiling_insulation_r', true) arg.setDisplayName('Enclosure: Ceiling Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 75c7714a27..1775e3a2b4 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - a6023c53-cc1b-43ef-9417-983cba0f67b5 - 2025-12-08T21:48:54Z + 187259db-0095-4e65-8099-0ade4cc899e6 + 2025-12-16T00:01:11Z 2C38F48B ResStockArguments ResStock Arguments @@ -11469,6 +11469,14 @@ false false + + unit_multiplier + Building Construction: Unit Multiplier + The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + Integer + false + false + ceiling_insulation_r Enclosure: Ceiling Insulation Nominal R-value @@ -12418,7 +12426,7 @@ README.md md readme - 7D9F548E + 9A86062D README.md.erb @@ -12435,7 +12443,7 @@ measure.rb rb script - B145C290 + 5D6BE922 constants.rb diff --git a/measures/ResStockArgumentsPostHPXML/measure.rb b/measures/ResStockArgumentsPostHPXML/measure.rb index 40027cbb6c..ab0bc3540b 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.rb +++ b/measures/ResStockArgumentsPostHPXML/measure.rb @@ -271,11 +271,6 @@ def run(model, runner, user_arguments) end @hpxml.buildings.each_with_index do |hpxml_bldg, unit_number| - # Existing Building - if not @hpxml_existing.nil? - hpxml_bldg_existing = @hpxml_existing.buildings[unit_number] - end - # Site if not args[:site_iecc_zone].nil? hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(zone: args[:site_iecc_zone], @@ -295,6 +290,9 @@ def run(model, runner, user_arguments) # default end end + if not args[:unit_multiplier].nil? + hpxml_bldg.building_construction.number_of_units = args[:unit_multiplier] + end # Usage Multipliers hpxml_bldg.plug_loads.each do |plug_load| @@ -478,14 +476,19 @@ def run(model, runner, user_arguments) water_heater.jacket_r_value = args[:dhw_water_heater_jacket_rvalue] unless args[:dhw_water_heater_jacket_rvalue].to_f == 0 end + # Existing Building + if not @hpxml_existing.nil? + hpxml_bldg_existing = @hpxml_existing.buildings[unit_number] + end + # HVAC systems - retain_existing_hvac_capacities_and_autosizing_factors(args, hpxml_bldg_existing, hpxml_bldg) + retain_existing_hvac_capacities_and_autosizing_factors(hpxml_bldg_existing, hpxml_bldg, args) # Use existing system as heat pump backup set_existing_system_as_heat_pump_backup(runner, hpxml_bldg_existing, hpxml_bldg, args) # Electric Panel - set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) + set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args, unit_number) end # Apply defaults @@ -710,7 +713,7 @@ def get_existing_schedule_filepath(hpxml_bldg) end # Retain HVAC capacities and autosizing factors for HVAC system(s) if the upgrade is not related to the HVAC system(s). - def retain_existing_hvac_capacities_and_autosizing_factors(args, hpxml_bldg_existing, hpxml_bldg) + def retain_existing_hvac_capacities_and_autosizing_factors(hpxml_bldg_existing, hpxml_bldg, args) return if hpxml_bldg_existing.nil? heating_system_existing = hpxml_bldg_existing.heating_systems.find { |hs| hs.primary_system } @@ -760,7 +763,7 @@ def retain_existing_hvac_capacities_and_autosizing_factors(args, hpxml_bldg_exis end end - def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) + def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args, unit_number) # Assign miscellaneous permanently connected appliance loads if hpxml_bldg_existing.nil? # this is nil when hpxml_bldg is the existing building @@ -815,7 +818,11 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) electric_panel_load_other_power_rating += garage_door_power # Assign ElectricPanels objects - hpxml_bldg.electric_panels.add(id: "ElectricPanel#{hpxml_bldg.electric_panels.size + 1}", + bldg_no = '' + if unit_number > 0 + bldg_no = "_#{unit_number + 1}" + end + hpxml_bldg.electric_panels.add(id: "ElectricPanel#{hpxml_bldg.electric_panels.size + 1}#{bldg_no}", max_current_rating: cap_value, headroom_spaces: headroom_spaces, rated_total_spaces: total_spaces) @@ -832,12 +839,12 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) next if heating_system.fraction_heat_load_served == 0 if heating_system.primary_system - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeHeating, is_new_load: args[:electric_panel_load_heating_system_new_load], component_idrefs: [heating_system.id]) else - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeHeating, is_new_load: args[:electric_panel_load_heating_system_2_new_load], component_idrefs: [heating_system.id]) @@ -848,7 +855,7 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) next if cooling_system.is_shared_system next if cooling_system.fraction_cool_load_served == 0 - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeCooling, is_new_load: args[:electric_panel_load_cooling_system_new_load], component_idrefs: [cooling_system.id]) @@ -858,14 +865,14 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) next if heat_pump.is_shared_system if heat_pump.fraction_heat_load_served != 0 - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeHeating, is_new_load: args[:electric_panel_load_heat_pump_new_load], component_idrefs: [heat_pump.id]) end next unless heat_pump.fraction_cool_load_served != 0 - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeCooling, is_new_load: args[:electric_panel_load_heat_pump_new_load], component_idrefs: [heat_pump.id]) @@ -874,7 +881,7 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) hpxml_bldg.water_heating_systems.each do |water_heating_system| next if water_heating_system.fuel_type != HPXML::FuelTypeElectricity - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeWaterHeater, is_new_load: args[:electric_panel_load_electric_water_heater_new_load], component_idrefs: [water_heating_system.id]) @@ -883,14 +890,14 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) hpxml_bldg.clothes_dryers.each do |clothes_dryer| next if clothes_dryer.fuel_type != HPXML::FuelTypeElectricity - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeClothesDryer, is_new_load: args[:electric_panel_load_electric_clothes_dryer_new_load], component_idrefs: [clothes_dryer.id]) end hpxml_bldg.dishwashers.each do |dishwasher| - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeDishwasher, is_new_load: args[:electric_panel_load_dishwasher_new_load], component_idrefs: [dishwasher.id]) @@ -899,7 +906,7 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) hpxml_bldg.cooking_ranges.each do |cooking_range| next if cooking_range.fuel_type != HPXML::FuelTypeElectricity - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeRangeOven, is_new_load: args[:electric_panel_load_electric_cooking_range_new_load], component_idrefs: [cooking_range.id]) @@ -907,24 +914,24 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) hpxml_bldg.ventilation_fans.each do |ventilation_fan| if ventilation_fan.used_for_whole_building_ventilation - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeMechVent, is_new_load: args[:electric_panel_load_mech_vent_fan_new_load], component_idrefs: [ventilation_fan.id]) elsif ventilation_fan.used_for_local_ventilation # Kitchen / Bathroom Fans if ventilation_fan.fan_location == HPXML::LocationKitchen - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeMechVent, is_new_load: args[:electric_panel_load_kitchen_fans_new_load], component_idrefs: [ventilation_fan.id]) elsif ventilation_fan.fan_location == HPXML::LocationBath - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeMechVent, is_new_load: args[:electric_panel_load_bathroom_fans_new_load], component_idrefs: [ventilation_fan.id]) end elsif ventilation_fan.used_for_seasonal_cooling_load_reduction # Whole House Fan - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeMechVent, is_new_load: args[:electric_panel_load_whole_house_fan_new_load], component_idrefs: [ventilation_fan.id]) @@ -932,28 +939,28 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) end hpxml_bldg.permanent_spas.each do |permanent_spa| - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypePermanentSpaPump, is_new_load: args[:electric_panel_load_permanent_spa_pump_new_load], component_idrefs: [permanent_spa.pump_id]) next unless [HPXML::HeaterTypeElectricResistance, HPXML::HeaterTypeHeatPump].include?(permanent_spa.heater_type) - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypePermanentSpaHeater, is_new_load: args[:electric_panel_load_electric_permanent_spa_heater_new_load], component_idrefs: [permanent_spa.heater_id]) end hpxml_bldg.pools.each do |pool| - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypePoolPump, is_new_load: args[:electric_panel_load_pool_pump_new_load], component_idrefs: [pool.pump_id]) next unless [HPXML::HeaterTypeElectricResistance, HPXML::HeaterTypeHeatPump].include?(pool.heater_type) - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypePoolHeater, is_new_load: args[:electric_panel_load_electric_pool_heater_new_load], component_idrefs: [pool.heater_id]) @@ -961,12 +968,12 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) hpxml_bldg.plug_loads.each do |plug_load| if plug_load.plug_load_type == HPXML::PlugLoadTypeWellPump - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeWellPump, is_new_load: args[:electric_panel_load_misc_plug_loads_well_pump_new_load], component_idrefs: [plug_load.id]) elsif plug_load.plug_load_type == HPXML::PlugLoadTypeElectricVehicleCharging - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeElectricVehicleCharging, is_new_load: args[:electric_panel_load_misc_plug_loads_vehicle_new_load], component_idrefs: [plug_load.id]) @@ -985,22 +992,22 @@ def set_electric_panel(runner, hpxml_bldg_existing, hpxml_bldg, args) end if not voltage.nil? - branch_circuits.add(id: "BranchCircuit#{branch_circuits.size + 1}", + branch_circuits.add(id: "BranchCircuit#{branch_circuits.size + 1}#{bldg_no}", voltage: voltage, component_idrefs: [ev_charger.id]) end - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeElectricVehicleCharging, power: power, is_new_load: args[:electric_panel_load_misc_plug_loads_vehicle_new_load], component_idrefs: [ev_charger.id]) end - branch_circuits.add(id: "BranchCircuit#{branch_circuits.size + 1}", + branch_circuits.add(id: "BranchCircuit#{branch_circuits.size + 1}#{bldg_no}", occupied_spaces: 1, component_idrefs: []) - service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}", + service_feeders.add(id: "ServiceFeeder#{service_feeders.size + 1}#{bldg_no}", type: HPXML::ElectricPanelLoadTypeOther, power: electric_panel_load_other_power_rating, is_new_load: args[:electric_panel_load_other_new_load], diff --git a/measures/ResStockArgumentsPostHPXML/measure.xml b/measures/ResStockArgumentsPostHPXML/measure.xml index aa2c29b81b..672ce3267a 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.xml +++ b/measures/ResStockArgumentsPostHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments_post_hpxml db102ce5-ac96-4ef9-90d3-abbe53478716 - 9617f420-8425-4908-8c4f-761225b3723d - 2025-12-08T21:48:56Z + b6eae1bb-d02c-4882-b549-738ba285c27c + 2025-12-16T00:01:13Z 2C38F48B ResStockArgumentsPostHPXML ResStock Arguments Post-HPXML @@ -11595,6 +11595,15 @@ false false + + unit_multiplier + Building Construction: Unit Multiplier + The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + Integer + + false + false + ceiling_insulation_r Enclosure: Ceiling Insulation Nominal R-value @@ -12625,7 +12634,7 @@ measure.rb rb script - 28AEA834 + 6B9A9F0F common/README.md diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index a3bf6e2f72..12e3d86f1a 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9701,7 +9701,7 @@ HVAC Heating Efficiency Dual-Fuel ASHP, SEER2 15, 7.6 HSPF2, Integrated Backup, HVAC Heating Efficiency Dual-Fuel ASHP, SEER2 15, 7.6 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover ResStockArguments hvac_heating_system=None hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=Central HP, SEER2 15.0, HSPF2 7.6 hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=35F Min Compressor Temp, 35F Max HP Backup Temp hvac_heat_pump_backup=Integrated, Natural Gas, 95% AFUE hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Electric Baseboard, 100% Efficiency ResStockArguments hvac_heating_system=Electric Resistance hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Electric Boiler, 100% AFUE ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Heating Efficiency Electric Furnace, 100% AFUE ResStockArguments hvac_heating_system=Central Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Heating Efficiency Electric Furnace, 100% AFUE ResStockArguments hvac_heating_system=Central Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None add_shared_system_argument=Test Value HVAC Heating Efficiency Electric Wall Furnace, 100% AFUE ResStockArguments hvac_heating_system=Wall Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Fuel Boiler, 76% AFUE ResStockArguments hvac_heating_system=Boiler, 76% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Fuel Boiler, 80% AFUE ResStockArguments hvac_heating_system=Boiler, 80% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None From 594383c807789a08ab23d17d01b14fa7cc68cc57 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 21:15:26 -0700 Subject: [PATCH 46/82] Update ApplyUpgrade test file after method refactor. --- measures/ApplyUpgrade/measure.xml | 6 +++--- measures/ApplyUpgrade/tests/apply_upgrade_test.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml index b87d950fe2..015448c363 100644 --- a/measures/ApplyUpgrade/measure.xml +++ b/measures/ApplyUpgrade/measure.xml @@ -3,8 +3,8 @@ 3.1 apply_upgrade 33f1654c-f734-43d1-b35d-9d2856e41b5a - e2bb4ab8-08b7-420c-b293-da2288c54269 - 2025-12-16T00:01:08Z + 0c3325d7-d5b3-4461-8bcf-4cfdaee5a793 + 2025-12-16T04:01:06Z 9339BE01 ApplyUpgrade Apply Upgrade @@ -25028,7 +25028,7 @@ apply_upgrade_test.rb rb test - DDA72B46 + 12D85E9A diff --git a/measures/ApplyUpgrade/tests/apply_upgrade_test.rb b/measures/ApplyUpgrade/tests/apply_upgrade_test.rb index 9da2adc48a..07f24df054 100644 --- a/measures/ApplyUpgrade/tests/apply_upgrade_test.rb +++ b/measures/ApplyUpgrade/tests/apply_upgrade_test.rb @@ -491,7 +491,7 @@ def _test_retaining_hvac_system_values(upgrade, expected_values, hvac_existing) hpxml_existing.buildings.each do |hpxml_bldg_existing| # Check for correct capacity and autosizing factor values - measure.retain_existing_hvac_capacities_and_autosizing_factors(args, hpxml_bldg_existing, hpxml_bldg) + measure.retain_existing_hvac_capacities_and_autosizing_factors(hpxml_bldg_existing, hpxml_bldg, args) actual_values = {} if hpxml_bldg.heating_systems.count { |hs| hs.primary_system } > 0 From 287de81b83516b7cb07c50a4e535bb82053888b1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 21:15:57 -0700 Subject: [PATCH 47/82] Make AddSharedSystem arguments into ResStockArguments arguments. --- measures/ResStockArguments/README.md | 11 +++++++++++ measures/ResStockArguments/measure.rb | 17 ++++++++++++----- measures/ResStockArguments/measure.xml | 17 +++++++++++++---- 3 files changed, 36 insertions(+), 9 deletions(-) diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index 1ae311bb57..bba246e2ae 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -1561,6 +1561,17 @@ If true, validates the HPXML output file. Set to false for faster performance. N
+**Argument Name** + +TODO. + +- **Name:** ``add_shared_system_argument`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ **Building Unit ID** The building unit number (between 1 and the number of samples). diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 8dbbf15b47..1ac5d5b098 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -29,10 +29,11 @@ def modeler_description def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new - # BuildResidentialHPXML + measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../measures')) + hpxml_measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) - measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) - full_measure_path = File.join(measures_dir, 'BuildResidentialHPXML', 'measure.rb') + # BuildResidentialHPXML + full_measure_path = File.join(hpxml_measures_dir, 'BuildResidentialHPXML', 'measure.rb') @build_residential_hpxml_measure_arguments = get_measure_instance(full_measure_path).arguments(model) @build_residential_hpxml_measure_arguments.each do |arg| next if Constants::BuildResidentialHPXMLExcludes.include? arg.name @@ -41,8 +42,7 @@ def arguments(model) end # BuildResidentialScheduleFile - - full_measure_path = File.join(measures_dir, 'BuildResidentialScheduleFile', 'measure.rb') + full_measure_path = File.join(hpxml_measures_dir, 'BuildResidentialScheduleFile', 'measure.rb') @build_residential_schedule_file_measure_arguments = get_measure_instance(full_measure_path).arguments(model) @build_residential_schedule_file_measure_arguments.each do |arg| next if Constants::BuildResidentialScheduleFileExcludes.include? arg.name @@ -50,6 +50,13 @@ def arguments(model) args << arg end + # AddSharedSystem + full_measure_path = File.join(measures_dir, 'AddSharedSystem', 'measure.rb') + @add_shared_system_measure_arguments = get_measure_instance(full_measure_path).arguments(model) + @add_shared_system_measure_arguments.each do |arg| + args << arg + end + # Additional arguments arg = OpenStudio::Measure::OSArgument.makeIntegerArgument('building_id', false) diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 1775e3a2b4..110951adcd 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 187259db-0095-4e65-8099-0ade4cc899e6 - 2025-12-16T00:01:11Z + b0371fe7-238f-42d1-b31d-8ed56cdee89d + 2025-12-16T04:01:10Z 2C38F48B ResStockArguments ResStock Arguments @@ -11186,6 +11186,15 @@
+ + add_shared_system_argument + Argument Name + TODO. + String + false + false + None + building_id Building Unit ID @@ -12426,7 +12435,7 @@ README.md md readme - 9A86062D + 80F56FBF README.md.erb @@ -12443,7 +12452,7 @@ measure.rb rb script - 5D6BE922 + 735845AE constants.rb From 0735873eb8e8170e73ad0a66db3e23e1dcdd8c61 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Dec 2025 04:21:26 +0000 Subject: [PATCH 48/82] Update documentation. --- .../workflow_inputs/characteristics.rst | 25 +++++++++++++++++++ .../options/HVAC Heating Efficiency.tex | 1 + .../properties/HVAC Heating Efficiency.tex | 1 + 3 files changed, 27 insertions(+) diff --git a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst index 2fdda950ae..041a032d57 100644 --- a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst +++ b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst @@ -30603,6 +30603,28 @@ From ``project_national`` the list of options, option stock saturation, and opti - - - + * - ``add_shared_system_argument`` + - + - + - + - + - + - Test Value + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - * - ``hvac_heating_shared_system`` - None - None @@ -30681,6 +30703,9 @@ Properties * - ``hvac_heat_pump_backup_heating_efficiency`` - Frac - The rated heating efficiency of the integrated backup. + * - ``add_shared_system_argument`` + - + - TODO. * - ``hvac_heating_shared_system`` - - The type of shared system. diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex index 8b10467718..1135c2b8f3 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex @@ -30,6 +30,7 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & 1.0 & 1.0 & 1.0 \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & 1.0 \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & none \\ \hline +\texttt{add\_shared\_system\_argument} & & & Test Value \\ \hline \texttt{hvac\_heating\_shared\_system} & None & None & None \\ \hline \hline Option name & Electric Wall Furnace, 100\% AFUE & Fuel Boiler, 76\% AFUE & Fuel Boiler, 80\% AFUE \\ \hline diff --git a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex index e007860e0c..0322ab9868 100644 --- a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex @@ -16,6 +16,7 @@ \texttt{hvac\_heat\_pump\_backup\_type} & & The backup type. Use 'integrated' to represent e.g. built-in electric strip heat or dual-fuel integrated furnace. Use 'separate' to represent e.g. electric baseboard or boiler (based on Heating System 2). \\ \hline \texttt{hvac\_heat\_pump\_backup\_fuel} & & The fuel type of the integrated backup. \\ \hline \texttt{hvac\_heat\_pump\_backup\_heating\_efficiency} & Frac & The rated heating efficiency of the integrated backup. \\ \hline +\texttt{add\_shared\_system\_argument} & & TODO. \\ \hline \texttt{hvac\_heating\_shared\_system} & & The type of shared system. \\ \hline \texttt{hvac\_heat\_pump\_backup\_use\_existing\_system} & & Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat\_pump\_backup\_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating\_system\_2\_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. \\ \hline \texttt{hvac\_heat\_pump\_sizing\_is\_duct\_limited} & & Whether the (ducted) heat pump has an upper limit for autosized heating/cooling capacity and an adjusted blower fan efficiency (W/CFM) value. This argument is only applicable for heat pump upgrades. \\ From 493b7c18fe4b634432947bfa4935c49bba0accd9 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 22:16:17 -0700 Subject: [PATCH 49/82] Like ResStockArgumentsPostHPXML, allow same arguments for AddSharedSystem. --- measures/AddSharedSystem/measure.rb | 56 +- measures/AddSharedSystem/measure.xml | 12615 +++++++++++++++++++++- measures/ApplyUpgrade/measure.rb | 25 +- measures/ApplyUpgrade/measure.xml | 6 +- measures/BuildExistingModel/measure.rb | 29 +- measures/BuildExistingModel/measure.xml | 6 +- measures/ResStockArguments/README.md | 22 +- measures/ResStockArguments/measure.rb | 14 +- measures/ResStockArguments/measure.xml | 26 +- 9 files changed, 12717 insertions(+), 82 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index 37953140a2..72b2f18c45 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -26,10 +26,41 @@ def modeler_description def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args = OpenStudio::Measure::OSArgumentVector.new - arg = OpenStudio::Measure::OSArgument::makeStringArgument('add_shared_system_argument', false) - arg.setDisplayName('Argument Name') - arg.setDescription('TODO.') - arg.setDefaultValue('None') + # Allow same arguments as ResStockArguments measure + + full_measure_path = File.join(File.dirname(__FILE__), '..', 'ResStockArguments', 'measure.rb') + measure_arguments = get_measure_instance(full_measure_path).arguments(model) + measure_arguments.each do |arg| + # Convert to optional argument for the unit test + # Replace all of this if https://github.com/NREL/OpenStudio/issues/5469 is addressed + case arg.type.valueName.downcase + when 'choice' + new_arg = OpenStudio::Measure::OSArgument.makeChoiceArgument(arg.name, arg.choiceValues, false) + new_arg.setDefaultValue(arg.defaultValueAsString) if arg.hasDefaultValue + when 'boolean' + new_arg = OpenStudio::Measure::OSArgument.makeBoolArgument(arg.name, false) + new_arg.setDefaultValue(arg.defaultValueAsBool) if arg.hasDefaultValue + when 'string' + new_arg = OpenStudio::Measure::OSArgument.makeStringArgument(arg.name, false) + new_arg.setDefaultValue(arg.defaultValueAsString) if arg.hasDefaultValue + when 'double' + new_arg = OpenStudio::Measure::OSArgument.makeDoubleArgument(arg.name, false) + new_arg.setDefaultValue(arg.defaultValueAsDouble) if arg.hasDefaultValue + when 'integer' + new_arg = OpenStudio::Measure::OSArgument.makeIntegerArgument(arg.name, false) + new_arg.setDefaultValue(arg.defaultValueAsInteger) if arg.hasDefaultValue + else + fail "Unhandled argument type: #{arg.type.valueName.downcase}" + end + new_arg.setDisplayName(arg.displayName.to_s) + new_arg.setDescription(arg.description.to_s) + new_arg.setUnits(arg.units.to_s) + args << new_arg + end + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_path', false) + arg.setDisplayName('HPXML File Path') + arg.setDescription('Absolute/relative path of the HPXML file.') args << arg return args @@ -46,6 +77,7 @@ def run(model, runner, user_arguments) # Assign the user inputs to variables args = runner.getArgumentValues(arguments(model), user_arguments) + args = convert_args(arguments(model), args) return true if args[:add_shared_system_argument] == 'None' @@ -53,6 +85,22 @@ def run(model, runner, user_arguments) return true end + + def convert_args(measure_arguments, args) + measure_arguments.each do |arg| + arg_name = arg.name.to_sym + value = args[arg_name] + next if value.nil? + + case arg.type.valueName.downcase + when 'double' + args[arg_name] = Float(value) + when 'integer' + args[arg_name] = Integer(value) + end + end + return args + end end # register the measure to be used by the application diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 275adc611f..1998c87892 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,22 +3,12623 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - b83d3d48-57b5-4406-85bd-e40eb01e1dc8 - 2025-12-16T00:04:14Z + 6b65301d-059d-4d54-bc4e-2e7117f7f07b + 2025-12-16T05:14:58Z BED8DECF AddSharedSystem - Add Shared System + AddSharedSystem TODO TODO - add_shared_system_argument - Argument Name - TODO. + simulation_control_timestep + Simulation Control: Timestep + The timestep for the simulation; defaults to hourly calculations for fastest runtime. + Choice + min + false + false + 60 + + + 60 + 60 + + + 30 + 30 + + + 20 + 20 + + + 15 + 15 + + + 12 + 12 + + + 10 + 10 + + + 6 + 6 + + + 5 + 5 + + + 4 + 4 + + + 3 + 3 + + + 2 + 2 + + + 1 + 1 + + + + + simulation_control_run_period + Simulation Control: Run Period + Enter a date range like 'Mar 1 - May 31'. Defaults to the entire year. + String + + false + false + Jan 1 - Dec 31 + + + location_zip_code + Location: Zip Code + Zip code of the home address. Either this or the EnergyPlus Weather (EPW) File Path input below must be provided. + String + + false + false + + + location_epw_path + Location: EnergyPlus Weather (EPW) File Path + Path to the EPW file. Either this or the Zip Code input above must be provided. + String + + false + false + + + location_site_type + Location: Site Type + The terrain/shielding of the home, for the infiltration model. Defaults to 'Suburban, Normal' for single-family detached and manufactured home and 'Suburban, Well-Shielded' for single-family attached and apartment units. + Choice + + false + false + Default + + + Default + Default + + + Suburban, Normal + Suburban, Normal + + + Suburban, Well-Shielded + Suburban, Well-Shielded + + + Suburban, Exposed + Suburban, Exposed + + + Urban, Normal + Urban, Normal + + + Urban, Well-Shielded + Urban, Well-Shielded + + + Urban, Exposed + Urban, Exposed + + + Rural, Normal + Rural, Normal + + + Rural, Well-Shielded + Rural, Well-Shielded + + + Rural, Exposed + Rural, Exposed + + + + + location_soil_type + Location: Soil Type + The soil and moisture type. + Choice + + false + false + Unknown + + + Unknown + Unknown + + + Clay, Dry + Clay, Dry + + + Clay, Mixed + Clay, Mixed + + + Clay, Wet + Clay, Wet + + + Gravel, Dry + Gravel, Dry + + + Gravel, Mixed + Gravel, Mixed + + + Gravel, Wet + Gravel, Wet + + + Loam, Dry + Loam, Dry + + + Loam, Mixed + Loam, Mixed + + + Loam, Wet + Loam, Wet + + + Sand, Dry + Sand, Dry + + + Sand, Mixed + Sand, Mixed + + + Sand, Wet + Sand, Wet + + + Silt, Dry + Silt, Dry + + + Silt, Mixed + Silt, Mixed + + + Silt, Wet + Silt, Wet + + + 0.5 Btu/hr-ft-F + 0.5 Btu/hr-ft-F + + + 0.8 Btu/hr-ft-F + 0.8 Btu/hr-ft-F + + + 1.1 Btu/hr-ft-F + 1.1 Btu/hr-ft-F + + + 1.4 Btu/hr-ft-F + 1.4 Btu/hr-ft-F + + + 1.7 Btu/hr-ft-F + 1.7 Btu/hr-ft-F + + + 2.0 Btu/hr-ft-F + 2.0 Btu/hr-ft-F + + + 2.3 Btu/hr-ft-F + 2.3 Btu/hr-ft-F + + + 2.6 Btu/hr-ft-F + 2.6 Btu/hr-ft-F + + + Detailed Example: Sand, Dry, 0.03 Diffusivity + Detailed Example: Sand, Dry, 0.03 Diffusivity + + + + + building_year_built + Building Construction: Year Built + The year the building was built. + Integer + + false + false + 2025 + + + geometry_attached_walls + Geometry: Unit Attached Walls + For single-family attached and apartment units, the location(s) of the attached walls. + Choice + + false + false + None + + + None + None + + + 1 Side: Front + 1 Side: Front + + + 1 Side: Back + 1 Side: Back + + + 1 Side: Left + 1 Side: Left + + + 1 Side: Right + 1 Side: Right + + + 2 Sides: Front, Left + 2 Sides: Front, Left + + + 2 Sides: Front, Right + 2 Sides: Front, Right + + + 2 Sides: Back, Left + 2 Sides: Back, Left + + + 2 Sides: Back, Right + 2 Sides: Back, Right + + + 2 Sides: Front, Back + 2 Sides: Front, Back + + + 2 Sides: Left, Right + 2 Sides: Left, Right + + + 3 Sides: Front, Back, Left + 3 Sides: Front, Back, Left + + + 3 Sides: Front, Back, Right + 3 Sides: Front, Back, Right + + + 3 Sides: Front, Left, Right + 3 Sides: Front, Left, Right + + + 3 Sides: Back, Left, Right + 3 Sides: Back, Left, Right + + + + + geometry_unit_aspect_ratio + Geometry: Unit Aspect Ratio + The ratio of front/back wall length to left/right wall length for the unit, excluding any protruding garage wall area. + Double + Frac + false + false + 2 + + + geometry_unit_direction + Geometry: Unit Direction + Direction of the front of the unit. + Choice + + false + false + South + + + North + North + + + North-Northeast + North-Northeast + + + Northeast + Northeast + + + East-Northeast + East-Northeast + + + East + East + + + East-Southeast + East-Southeast + + + Southeast + Southeast + + + South-Southeast + South-Southeast + + + South + South + + + South-Southwest + South-Southwest + + + Southwest + Southwest + + + West-Southwest + West-Southwest + + + West + West + + + West-Northwest + West-Northwest + + + Northwest + Northwest + + + North-Northwest + North-Northwest + + + + + geometry_unit_num_bedrooms + Geometry: Unit Number of Bedrooms + The number of bedrooms in the unit. + Choice + + false + false + 3 + + + 0 + 0 + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + 6 + 6 + + + 7 + 7 + + + 8 + 8 + + + 9 + 9 + + + 10 + 10 + + + 11 + 11 + + + 12 + 12 + + + + + geometry_unit_num_bathrooms + Geometry: Unit Number of Bathrooms + The number of bathrooms in the unit. Defaults to NumberofBedrooms/2 + 0.5. + Choice + + false + false + Default + + + Default + Default + + + 0 + 0 + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + 6 + 6 + + + 7 + 7 + + + 8 + 8 + + + 9 + 9 + + + 10 + 10 + + + 11 + 11 + + + 12 + 12 + + + + + geometry_unit_num_occupants + Geometry: Unit Number of Occupants + The number of occupants in the unit. Defaults to an *asset* calculation assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on Number of Bedrooms and Conditioned Floor Area. If provided, an *operational* calculation is instead performed in which the end use defaults reflect real-world data (where possible). + Choice + + false + false + Default + + + Default + Default + + + 0 + 0 + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + 6 + 6 + + + 7 + 7 + + + 8 + 8 + + + 9 + 9 + + + 10 + 10 + + + 11 + 11 + + + 12 + 12 + + + + + geometry_ceiling_height + Geometry: Ceiling Height + Average distance from the floor to the ceiling. + Choice + + false + false + 8.0 ft + + + 6.0 ft + 6.0 ft + + + 6.5 ft + 6.5 ft + + + 7.0 ft + 7.0 ft + + + 7.5 ft + 7.5 ft + + + 8.0 ft + 8.0 ft + + + 8.5 ft + 8.5 ft + + + 9.0 ft + 9.0 ft + + + 9.5 ft + 9.5 ft + + + 10.0 ft + 10.0 ft + + + 10.5 ft + 10.5 ft + + + 11.0 ft + 11.0 ft + + + 11.5 ft + 11.5 ft + + + 12.0 ft + 12.0 ft + + + 12.5 ft + 12.5 ft + + + 13.0 ft + 13.0 ft + + + 13.5 ft + 13.5 ft + + + 14.0 ft + 14.0 ft + + + 14.5 ft + 14.5 ft + + + 15.0 ft + 15.0 ft + + + + + geometry_garage_type + Geometry: Attached Garage + The type of attached garage. Only applies to single-family detached units. + Choice + + false + false + None + + + None + None + + + 1 Car, Left, Fully Inset + 1 Car, Left, Fully Inset + + + 1 Car, Left, Half Protruding + 1 Car, Left, Half Protruding + + + 1 Car, Left, Fully Protruding + 1 Car, Left, Fully Protruding + + + 1 Car, Right, Fully Inset + 1 Car, Right, Fully Inset + + + 1 Car, Right, Half Protruding + 1 Car, Right, Half Protruding + + + 1 Car, Right, Fully Protruding + 1 Car, Right, Fully Protruding + + + 2 Car, Left, Fully Inset + 2 Car, Left, Fully Inset + + + 2 Car, Left, Half Protruding + 2 Car, Left, Half Protruding + + + 2 Car, Left, Fully Protruding + 2 Car, Left, Fully Protruding + + + 2 Car, Right, Fully Inset + 2 Car, Right, Fully Inset + + + 2 Car, Right, Half Protruding + 2 Car, Right, Half Protruding + + + 2 Car, Right, Fully Protruding + 2 Car, Right, Fully Protruding + + + 3 Car, Left, Fully Inset + 3 Car, Left, Fully Inset + + + 3 Car, Left, Half Protruding + 3 Car, Left, Half Protruding + + + 3 Car, Left, Fully Protruding + 3 Car, Left, Fully Protruding + + + 3 Car, Right, Fully Inset + 3 Car, Right, Fully Inset + + + 3 Car, Right, Half Protruding + 3 Car, Right, Half Protruding + + + 3 Car, Right, Fully Protruding + 3 Car, Right, Fully Protruding + + + + + geometry_foundation_type + Geometry: Foundation Type + The foundation type of the building. Garages are assumed to be over slab-on-grade. + Choice + + false + false + Crawlspace, Vented + + + Slab-on-Grade + Slab-on-Grade + + + Crawlspace, Vented + Crawlspace, Vented + + + Crawlspace, Unvented + Crawlspace, Unvented + + + Crawlspace, Conditioned + Crawlspace, Conditioned + + + Basement, Unconditioned + Basement, Unconditioned + + + Basement, Unconditioned, Half Above-Grade + Basement, Unconditioned, Half Above-Grade + + + Basement, Conditioned + Basement, Conditioned + + + Basement, Conditioned, Half Above-Grade + Basement, Conditioned, Half Above-Grade + + + Ambient + Ambient + + + Above Apartment + Above Apartment + + + Belly and Wing, With Skirt + Belly and Wing, With Skirt + + + Belly and Wing, No Skirt + Belly and Wing, No Skirt + + + Detailed Example: Basement, Unconditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + Detailed Example: Basement, Unconditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + + + Detailed Example: Basement, Conditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + Detailed Example: Basement, Conditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + + + Detailed Example: Basement, Conditioned, 5 ft Height + Detailed Example: Basement, Conditioned, 5 ft Height + + + Detailed Example: Crawlspace, Vented, Above-Grade + Detailed Example: Crawlspace, Vented, Above-Grade + + + + + geometry_attic_type + Geometry: Attic Type + The attic/roof type of the building. + Choice + + false + false + Attic, Vented, Gable + + + Flat Roof + Flat Roof + + + Attic, Vented, Gable + Attic, Vented, Gable + + + Attic, Vented, Hip + Attic, Vented, Hip + + + Attic, Unvented, Gable + Attic, Unvented, Gable + + + Attic, Unvented, Hip + Attic, Unvented, Hip + + + Attic, Conditioned, Gable + Attic, Conditioned, Gable + + + Attic, Conditioned, Hip + Attic, Conditioned, Hip + + + Below Apartment + Below Apartment + + + + + geometry_roof_pitch + Geometry: Roof Pitch + The roof pitch of the attic. Ignored if the building has a flat roof. + Choice + + false + false + 6:12 + + + 1:12 + 1:12 + + + 2:12 + 2:12 + + + 3:12 + 3:12 + + + 4:12 + 4:12 + + + 5:12 + 5:12 + + + 6:12 + 6:12 + + + 7:12 + 7:12 + + + 8:12 + 8:12 + + + 9:12 + 9:12 + + + 10:12 + 10:12 + + + 11:12 + 11:12 + + + 12:12 + 12:12 + + + 13:12 + 13:12 + + + 14:12 + 14:12 + + + 15:12 + 15:12 + + + 16:12 + 16:12 + + + + + geometry_eaves + Geometry: Eaves + The type of eaves extending from the roof. + Choice + + false + false + 2 ft + + + None + None + + + 1 ft + 1 ft + + + 2 ft + 2 ft + + + 3 ft + 3 ft + + + 4 ft + 4 ft + + + 5 ft + 5 ft + + + + + geometry_neighbor_buildings + Geometry: Neighbor Buildings + The presence and geometry of neighboring buildings, for shading purposes. + Choice + + false + false + None + + + None + None + + + Left/Right at 2ft + Left/Right at 2ft + + + Left/Right at 4ft + Left/Right at 4ft + + + Left/Right at 5ft + Left/Right at 5ft + + + Left/Right at 7ft + Left/Right at 7ft + + + Left/Right at 10ft + Left/Right at 10ft + + + Left/Right at 12ft + Left/Right at 12ft + + + Left/Right at 15ft + Left/Right at 15ft + + + Left/Right at 20ft + Left/Right at 20ft + + + Left/Right at 25ft + Left/Right at 25ft + + + Left/Right at 27ft + Left/Right at 27ft + + + Left at 2ft + Left at 2ft + + + Left at 4ft + Left at 4ft + + + Left at 5ft + Left at 5ft + + + Left at 7ft + Left at 7ft + + + Left at 10ft + Left at 10ft + + + Left at 12ft + Left at 12ft + + + Left at 15ft + Left at 15ft + + + Left at 20ft + Left at 20ft + + + Left at 25ft + Left at 25ft + + + Left at 27ft + Left at 27ft + + + Right at 2ft + Right at 2ft + + + Right at 4ft + Right at 4ft + + + Right at 5ft + Right at 5ft + + + Right at 7ft + Right at 7ft + + + Right at 10ft + Right at 10ft + + + Right at 12ft + Right at 12ft + + + Right at 15ft + Right at 15ft + + + Right at 20ft + Right at 20ft + + + Right at 25ft + Right at 25ft + + + Right at 27ft + Right at 27ft + + + Detailed Example: Left/Right at 25ft, Front/Back at 80ft, 12ft Height + Detailed Example: Left/Right at 25ft, Front/Back at 80ft, 12ft Height + + + + + geometry_window_areas_or_wwrs + Geometry: Window Areas or WWRs + The amount of window area on the unit's front/back/left/right facades. Use a comma-separated list like '0.2, 0.2, 0.1, 0.1' to specify Window-to-Wall Ratios (WWR) or '108, 108, 72, 72' to specify absolute areas. If a facade is adiabatic, the value will be ignored. + String + ft2 or frac + false + false + 0.15, 0.15, 0.15, 0.15 + + + geometry_skylight_areas + Geometry: Skylight Areas + The amount of skylight area on the unit's front/back/left/right roofs. Use a comma-separated list like '50, 0, 0, 0'. String + ft2 + false + false + 0, 0, 0, 0 + + + geometry_door_area + Geometry: Doors Area + The area of the opaque door(s). Any door glazing (e.g., sliding glass doors) should be captured as window area. + Double + ft2 + false + false + 20 + + + enclosure_floor_over_foundation + Enclosure: Floor Over Foundation + The type and insulation level of the floor over the foundation (e.g., crawlspace or basement). + Choice + + false + false + Wood Frame, Uninsulated + + + Wood Frame, Uninsulated + Wood Frame, Uninsulated + + + Wood Frame, R-11 + Wood Frame, R-11 + + + Wood Frame, R-13 + Wood Frame, R-13 + + + Wood Frame, R-15 + Wood Frame, R-15 + + + Wood Frame, R-19 + Wood Frame, R-19 + + + Wood Frame, R-21 + Wood Frame, R-21 + + + Wood Frame, R-25 + Wood Frame, R-25 + + + Wood Frame, R-30 + Wood Frame, R-30 + + + Wood Frame, R-35 + Wood Frame, R-35 + + + Wood Frame, R-38 + Wood Frame, R-38 + + + Wood Frame, IECC U-0.064 + Wood Frame, IECC U-0.064 + + + Wood Frame, IECC U-0.047 + Wood Frame, IECC U-0.047 + + + Wood Frame, IECC U-0.033 + Wood Frame, IECC U-0.033 + + + Wood Frame, IECC U-0.028 + Wood Frame, IECC U-0.028 + + + Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + + + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor + + + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + + + + + enclosure_floor_over_garage + Enclosure: Floor Over Garage + The type and insulation level of the floor over the garage. + Choice + + false + false + Wood Frame, Uninsulated + + + Wood Frame, Uninsulated + Wood Frame, Uninsulated + + + Wood Frame, R-11 + Wood Frame, R-11 + + + Wood Frame, R-13 + Wood Frame, R-13 + + + Wood Frame, R-15 + Wood Frame, R-15 + + + Wood Frame, R-19 + Wood Frame, R-19 + + + Wood Frame, R-21 + Wood Frame, R-21 + + + Wood Frame, R-25 + Wood Frame, R-25 + + + Wood Frame, R-30 + Wood Frame, R-30 + + + Wood Frame, R-35 + Wood Frame, R-35 + + + Wood Frame, R-38 + Wood Frame, R-38 + + + Wood Frame, IECC U-0.064 + Wood Frame, IECC U-0.064 + + + Wood Frame, IECC U-0.047 + Wood Frame, IECC U-0.047 + + + Wood Frame, IECC U-0.033 + Wood Frame, IECC U-0.033 + + + Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + + + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor + + + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + + + + + enclosure_foundation_wall + Enclosure: Foundation Wall + The type and insulation level of the foundation walls. + Choice + + false + false + Solid Concrete, Uninsulated + + + Solid Concrete, Uninsulated + Solid Concrete, Uninsulated + + + Solid Concrete, Half Wall, R-5 + Solid Concrete, Half Wall, R-5 + + + Solid Concrete, Half Wall, R-10 + Solid Concrete, Half Wall, R-10 + + + Solid Concrete, Half Wall, R-15 + Solid Concrete, Half Wall, R-15 + + + Solid Concrete, Half Wall, R-20 + Solid Concrete, Half Wall, R-20 + + + Solid Concrete, Whole Wall, R-5 + Solid Concrete, Whole Wall, R-5 + + + Solid Concrete, Whole Wall, R-10 + Solid Concrete, Whole Wall, R-10 + + + Solid Concrete, Whole Wall, R-10.2, Interior + Solid Concrete, Whole Wall, R-10.2, Interior + + + Solid Concrete, Whole Wall, R-15 + Solid Concrete, Whole Wall, R-15 + + + Solid Concrete, Whole Wall, R-20 + Solid Concrete, Whole Wall, R-20 + + + Solid Concrete, Assembly R-10.69 + Solid Concrete, Assembly R-10.69 + + + Concrete Block Foam Core, Whole Wall, R-18.9 + Concrete Block Foam Core, Whole Wall, R-18.9 + + + + + enclosure_rim_joist + Enclosure: Rim Joists + The type and insulation level of the rim joists. + Choice + + false + false + Uninsulated + + + Uninsulated + Uninsulated + + + Interior, R-7 + Interior, R-7 + + + Interior, R-11 + Interior, R-11 + + + Interior, R-13 + Interior, R-13 + + + Interior, R-15 + Interior, R-15 + + + Interior, R-19 + Interior, R-19 + + + Interior, R-21 + Interior, R-21 + + + Exterior, R-5 + Exterior, R-5 + + + Exterior, R-10 + Exterior, R-10 + + + Exterior, R-15 + Exterior, R-15 + + + Exterior, R-20 + Exterior, R-20 + + + Detailed Example: Uninsulated, Fiberboard Sheathing, Hardboard Siding + Detailed Example: Uninsulated, Fiberboard Sheathing, Hardboard Siding + + + Detailed Example: R-11, Fiberboard Sheathing, Hardboard Siding + Detailed Example: R-11, Fiberboard Sheathing, Hardboard Siding + + + + + enclosure_slab + Enclosure: Slab + The type and insulation level of the slab. Applies to slab-on-grade as well as basement/crawlspace foundations. Under Slab insulation is placed horizontally from the edge of the slab inward. Perimeter insulation is placed vertically from the top of the slab downward. Whole Slab insulation is placed horizontally below the entire slab area. + Choice + + false + false + Uninsulated + + + Uninsulated + Uninsulated + + + Under Slab, 2ft, R-5 + Under Slab, 2ft, R-5 + + + Under Slab, 2ft, R-10 + Under Slab, 2ft, R-10 + + + Under Slab, 2ft, R-15 + Under Slab, 2ft, R-15 + + + Under Slab, 2ft, R-20 + Under Slab, 2ft, R-20 + + + Under Slab, 4ft, R-5 + Under Slab, 4ft, R-5 + + + Under Slab, 4ft, R-10 + Under Slab, 4ft, R-10 + + + Under Slab, 4ft, R-15 + Under Slab, 4ft, R-15 + + + Under Slab, 4ft, R-20 + Under Slab, 4ft, R-20 + + + Perimeter, 2ft, R-5 + Perimeter, 2ft, R-5 + + + Perimeter, 2ft, R-10 + Perimeter, 2ft, R-10 + + + Perimeter, 2ft, R-15 + Perimeter, 2ft, R-15 + + + Perimeter, 2ft, R-20 + Perimeter, 2ft, R-20 + + + Perimeter, 4ft, R-5 + Perimeter, 4ft, R-5 + + + Perimeter, 4ft, R-10 + Perimeter, 4ft, R-10 + + + Perimeter, 4ft, R-15 + Perimeter, 4ft, R-15 + + + Perimeter, 4ft, R-20 + Perimeter, 4ft, R-20 + + + Whole Slab, R-5 + Whole Slab, R-5 + + + Whole Slab, R-10 + Whole Slab, R-10 + + + Whole Slab, R-15 + Whole Slab, R-15 + + + Whole Slab, R-20 + Whole Slab, R-20 + + + Whole Slab, R-30 + Whole Slab, R-30 + + + Whole Slab, R-40 + Whole Slab, R-40 + + + Detailed Example: Uninsulated, No Carpet + Detailed Example: Uninsulated, No Carpet + + + Detailed Example: Uninsulated, 100% R-2.08 Carpet + Detailed Example: Uninsulated, 100% R-2.08 Carpet + + + Detailed Example: Uninsulated, 100% R-2.50 Carpet + Detailed Example: Uninsulated, 100% R-2.50 Carpet + + + Detailed Example: Perimeter, 2ft, R-5, 100% R-2.08 Carpet + Detailed Example: Perimeter, 2ft, R-5, 100% R-2.08 Carpet + + + Detailed Example: Whole Slab, R-5, 100% R-2.5 Carpet + Detailed Example: Whole Slab, R-5, 100% R-2.5 Carpet + + + + + enclosure_ceiling + Enclosure: Ceiling + The type and insulation level of the ceiling (attic floor). + Choice + + false + false + R-30 + + + Uninsulated + Uninsulated + + + R-7 + R-7 + + + R-13 + R-13 + + + R-19 + R-19 + + + R-30 + R-30 + + + R-38 + R-38 + + + R-49 + R-49 + + + R-60 + R-60 + + + IECC U-0.035 + IECC U-0.035 + + + IECC U-0.030 + IECC U-0.030 + + + IECC U-0.026 + IECC U-0.026 + + + IECC U-0.024 + IECC U-0.024 + + + Detailed Example: R-11, 2x6, 24 in o.c., 10% Framing + Detailed Example: R-11, 2x6, 24 in o.c., 10% Framing + + + Detailed Example: R-19, 2x6, 24 in o.c., 10% Framing + Detailed Example: R-19, 2x6, 24 in o.c., 10% Framing + + + Detailed Example: R-19 + R-38, 2x6, 24 in o.c., 10% Framing + Detailed Example: R-19 + R-38, 2x6, 24 in o.c., 10% Framing + + + + + enclosure_roof + Enclosure: Roof + The type and insulation level of the roof. + Choice + + false + false + Uninsulated + + + Uninsulated + Uninsulated + + + R-7 + R-7 + + + R-13 + R-13 + + + R-19 + R-19 + + + R-30 + R-30 + + + R-38 + R-38 + + + R-49 + R-49 + + + IECC U-0.035 + IECC U-0.035 + + + IECC U-0.030 + IECC U-0.030 + + + IECC U-0.026 + IECC U-0.026 + + + IECC U-0.024 + IECC U-0.024 + + + Detailed Example: Uninsulated, 0.5 in plywood, 0.25 in asphalt shingle + Detailed Example: Uninsulated, 0.5 in plywood, 0.25 in asphalt shingle + + + + + enclosure_roof_material + Enclosure: Roof Material + The material type and color of the roof. + Choice + + false + false + Asphalt/Fiberglass Shingles, Medium + + + Asphalt/Fiberglass Shingles, Dark + Asphalt/Fiberglass Shingles, Dark + + + Asphalt/Fiberglass Shingles, Medium Dark + Asphalt/Fiberglass Shingles, Medium Dark + + + Asphalt/Fiberglass Shingles, Medium + Asphalt/Fiberglass Shingles, Medium + + + Asphalt/Fiberglass Shingles, Light + Asphalt/Fiberglass Shingles, Light + + + Asphalt/Fiberglass Shingles, Reflective + Asphalt/Fiberglass Shingles, Reflective + + + Tile/Slate, Dark + Tile/Slate, Dark + + + Tile/Slate, Medium Dark + Tile/Slate, Medium Dark + + + Tile/Slate, Medium + Tile/Slate, Medium + + + Tile/Slate, Light + Tile/Slate, Light + + + Tile/Slate, Reflective + Tile/Slate, Reflective + + + Metal, Dark + Metal, Dark + + + Metal, Medium Dark + Metal, Medium Dark + + + Metal, Medium + Metal, Medium + + + Metal, Light + Metal, Light + + + Metal, Reflective + Metal, Reflective + + + Wood Shingles/Shakes, Dark + Wood Shingles/Shakes, Dark + + + Wood Shingles/Shakes, Medium Dark + Wood Shingles/Shakes, Medium Dark + + + Wood Shingles/Shakes, Medium + Wood Shingles/Shakes, Medium + + + Wood Shingles/Shakes, Light + Wood Shingles/Shakes, Light + + + Wood Shingles/Shakes, Reflective + Wood Shingles/Shakes, Reflective + + + Shingles, Dark + Shingles, Dark + + + Shingles, Medium Dark + Shingles, Medium Dark + + + Shingles, Medium + Shingles, Medium + + + Shingles, Light + Shingles, Light + + + Shingles, Reflective + Shingles, Reflective + + + Synthetic Sheeting, Dark + Synthetic Sheeting, Dark + + + Synthetic Sheeting, Medium Dark + Synthetic Sheeting, Medium Dark + + + Synthetic Sheeting, Medium + Synthetic Sheeting, Medium + + + Synthetic Sheeting, Light + Synthetic Sheeting, Light + + + Synthetic Sheeting, Reflective + Synthetic Sheeting, Reflective + + + EPS Sheathing, Dark + EPS Sheathing, Dark + + + EPS Sheathing, Medium Dark + EPS Sheathing, Medium Dark + + + EPS Sheathing, Medium + EPS Sheathing, Medium + + + EPS Sheathing, Light + EPS Sheathing, Light + + + EPS Sheathing, Reflective + EPS Sheathing, Reflective + + + Concrete, Dark + Concrete, Dark + + + Concrete, Medium Dark + Concrete, Medium Dark + + + Concrete, Medium + Concrete, Medium + + + Concrete, Light + Concrete, Light + + + Concrete, Reflective + Concrete, Reflective + + + Cool Roof + Cool Roof + + + Detailed Example: 0.2 Solar Absorptance + Detailed Example: 0.2 Solar Absorptance + + + Detailed Example: 0.4 Solar Absorptance + Detailed Example: 0.4 Solar Absorptance + + + Detailed Example: 0.6 Solar Absorptance + Detailed Example: 0.6 Solar Absorptance + + + Detailed Example: 0.75 Solar Absorptance + Detailed Example: 0.75 Solar Absorptance + + + + + enclosure_radiant_barrier + Enclosure: Radiant Barrier + The type of radiant barrier in the attic. + Choice + + false + false + None + + + None + None + + + Attic Roof Only + Attic Roof Only + + + Attic Roof and Gable Walls + Attic Roof and Gable Walls + + + Attic Floor + Attic Floor + + + + + enclosure_wall + Enclosure: Walls + The type and insulation level of the walls. + Choice + + false + false + Wood Stud, R-13 + + + Wood Stud, Uninsulated + Wood Stud, Uninsulated + + + Wood Stud, R-7 + Wood Stud, R-7 + + + Wood Stud, R-11 + Wood Stud, R-11 + + + Wood Stud, R-13 + Wood Stud, R-13 + + + Wood Stud, R-15 + Wood Stud, R-15 + + + Wood Stud, R-19 + Wood Stud, R-19 + + + Wood Stud, R-21 + Wood Stud, R-21 + + + Double Wood Stud, R-33 + Double Wood Stud, R-33 + + + Double Wood Stud, R-39 + Double Wood Stud, R-39 + + + Double Wood Stud, R-45 + Double Wood Stud, R-45 + + + Steel Stud, Uninsulated + Steel Stud, Uninsulated + + + Steel Stud, R-11 + Steel Stud, R-11 + + + Steel Stud, R-13 + Steel Stud, R-13 + + + Steel Stud, R-15 + Steel Stud, R-15 + + + Steel Stud, R-19 + Steel Stud, R-19 + + + Steel Stud, R-21 + Steel Stud, R-21 + + + Steel Stud, R-25 + Steel Stud, R-25 + + + Concrete Masonry Unit, Hollow or Concrete Filled, Uninsulated + Concrete Masonry Unit, Hollow or Concrete Filled, Uninsulated + + + Concrete Masonry Unit, Hollow or Concrete Filled, R-7 + Concrete Masonry Unit, Hollow or Concrete Filled, R-7 + + + Concrete Masonry Unit, Hollow or Concrete Filled, R-11 + Concrete Masonry Unit, Hollow or Concrete Filled, R-11 + + + Concrete Masonry Unit, Hollow or Concrete Filled, R-13 + Concrete Masonry Unit, Hollow or Concrete Filled, R-13 + + + Concrete Masonry Unit, Hollow or Concrete Filled, R-15 + Concrete Masonry Unit, Hollow or Concrete Filled, R-15 + + + Concrete Masonry Unit, Hollow or Concrete Filled, R-19 + Concrete Masonry Unit, Hollow or Concrete Filled, R-19 + + + Concrete Masonry Unit, Perlite Filled, Uninsulated + Concrete Masonry Unit, Perlite Filled, Uninsulated + + + Concrete Masonry Unit, Perlite Filled, R-7 + Concrete Masonry Unit, Perlite Filled, R-7 + + + Concrete Masonry Unit, Perlite Filled, R-11 + Concrete Masonry Unit, Perlite Filled, R-11 + + + Concrete Masonry Unit, Perlite Filled, R-13 + Concrete Masonry Unit, Perlite Filled, R-13 + + + Concrete Masonry Unit, Perlite Filled, R-15 + Concrete Masonry Unit, Perlite Filled, R-15 + + + Concrete Masonry Unit, Perlite Filled, R-19 + Concrete Masonry Unit, Perlite Filled, R-19 + + + Structural Insulated Panel, R-17.5 + Structural Insulated Panel, R-17.5 + + + Structural Insulated Panel, R-27.5 + Structural Insulated Panel, R-27.5 + + + Structural Insulated Panel, R-37.5 + Structural Insulated Panel, R-37.5 + + + Structural Insulated Panel, R-47.5 + Structural Insulated Panel, R-47.5 + + + Insulated Concrete Forms, R-5 per side + Insulated Concrete Forms, R-5 per side + + + Insulated Concrete Forms, R-10 per side + Insulated Concrete Forms, R-10 per side + + + Insulated Concrete Forms, R-15 per side + Insulated Concrete Forms, R-15 per side + + + Insulated Concrete Forms, R-20 per side + Insulated Concrete Forms, R-20 per side + + + Structural Brick, Uninsulated + Structural Brick, Uninsulated + + + Structural Brick, R-7 + Structural Brick, R-7 + + + Structural Brick, R-11 + Structural Brick, R-11 + + + Structural Brick, R-15 + Structural Brick, R-15 + + + Structural Brick, R-19 + Structural Brick, R-19 + + + Wood Stud, IECC U-0.084 + Wood Stud, IECC U-0.084 + + + Wood Stud, IECC U-0.082 + Wood Stud, IECC U-0.082 + + + Wood Stud, IECC U-0.060 + Wood Stud, IECC U-0.060 + + + Wood Stud, IECC U-0.057 + Wood Stud, IECC U-0.057 + + + Wood Stud, IECC U-0.048 + Wood Stud, IECC U-0.048 + + + Wood Stud, IECC U-0.045 + Wood Stud, IECC U-0.045 + + + Detailed Example: Wood Stud, Uninsulated, 2x4, 16 in o.c., 25% Framing + Detailed Example: Wood Stud, Uninsulated, 2x4, 16 in o.c., 25% Framing + + + Detailed Example: Wood Stud, R-11, 2x4, 16 in o.c., 25% Framing + Detailed Example: Wood Stud, R-11, 2x4, 16 in o.c., 25% Framing + + + Detailed Example: Wood Stud, R-18, 2x6, 24 in o.c., 25% Framing + Detailed Example: Wood Stud, R-18, 2x6, 24 in o.c., 25% Framing + + + + + enclosure_wall_continuous_insulation + Enclosure: Wall Continuous Insulation + The insulation level of the wall continuous insulation. The R-value of the continuous insulation will be ignored if a wall option with an IECC U-factor is selected. + Choice + + false + false + Uninsulated + + + Uninsulated + Uninsulated + + + R-5 + R-5 + + + R-6 + R-6 + + + R-7 + R-7 + + + R-10 + R-10 + + + R-12 + R-12 + + + R-14 + R-14 + + + R-15 + R-15 + + + R-18 + R-18 + + + R-20 + R-20 + + + R-21 + R-21 + + + Detailed Example: R-7.2 + Detailed Example: R-7.2 + + + + + enclosure_wall_siding + Enclosure: Wall Siding + The type, color, and insulation level of the wall siding. The R-value of the siding will be ignored if a wall option with an IECC U-factor is selected. + Choice + + false + false + Wood, Medium + + + None + None + + + Aluminum, Dark + Aluminum, Dark + + + Aluminum, Medium + Aluminum, Medium + + + Aluminum, Medium Dark + Aluminum, Medium Dark + + + Aluminum, Light + Aluminum, Light + + + Aluminum, Reflective + Aluminum, Reflective + + + Brick, Dark + Brick, Dark + + + Brick, Medium + Brick, Medium + + + Brick, Medium Dark + Brick, Medium Dark + + + Brick, Light + Brick, Light + + + Brick, Reflective + Brick, Reflective + + + Fiber-Cement, Dark + Fiber-Cement, Dark + + + Fiber-Cement, Medium + Fiber-Cement, Medium + + + Fiber-Cement, Medium Dark + Fiber-Cement, Medium Dark + + + Fiber-Cement, Light + Fiber-Cement, Light + + + Fiber-Cement, Reflective + Fiber-Cement, Reflective + + + Asbestos, Dark + Asbestos, Dark + + + Asbestos, Medium + Asbestos, Medium + + + Asbestos, Medium Dark + Asbestos, Medium Dark + + + Asbestos, Light + Asbestos, Light + + + Asbestos, Reflective + Asbestos, Reflective + + + Composition Shingle, Dark + Composition Shingle, Dark + + + Composition Shingle, Medium + Composition Shingle, Medium + + + Composition Shingle, Medium Dark + Composition Shingle, Medium Dark + + + Composition Shingle, Light + Composition Shingle, Light + + + Composition Shingle, Reflective + Composition Shingle, Reflective + + + Stucco, Dark + Stucco, Dark + + + Stucco, Medium + Stucco, Medium + + + Stucco, Medium Dark + Stucco, Medium Dark + + + Stucco, Light + Stucco, Light + + + Stucco, Reflective + Stucco, Reflective + + + Vinyl, Dark + Vinyl, Dark + + + Vinyl, Medium + Vinyl, Medium + + + Vinyl, Medium Dark + Vinyl, Medium Dark + + + Vinyl, Light + Vinyl, Light + + + Vinyl, Reflective + Vinyl, Reflective + + + Wood, Dark + Wood, Dark + + + Wood, Medium + Wood, Medium + + + Wood, Medium Dark + Wood, Medium Dark + + + Wood, Light + Wood, Light + + + Wood, Reflective + Wood, Reflective + + + Synthetic Stucco, Dark + Synthetic Stucco, Dark + + + Synthetic Stucco, Medium + Synthetic Stucco, Medium + + + Synthetic Stucco, Medium Dark + Synthetic Stucco, Medium Dark + + + Synthetic Stucco, Light + Synthetic Stucco, Light + + + Synthetic Stucco, Reflective + Synthetic Stucco, Reflective + + + Masonite, Dark + Masonite, Dark + + + Masonite, Medium + Masonite, Medium + + + Masonite, Medium Dark + Masonite, Medium Dark + + + Masonite, Light + Masonite, Light + + + Masonite, Reflective + Masonite, Reflective + + + Detailed Example: 0.2 Solar Absorptance + Detailed Example: 0.2 Solar Absorptance + + + Detailed Example: 0.4 Solar Absorptance + Detailed Example: 0.4 Solar Absorptance + + + Detailed Example: 0.6 Solar Absorptance + Detailed Example: 0.6 Solar Absorptance + + + Detailed Example: 0.75 Solar Absorptance + Detailed Example: 0.75 Solar Absorptance + + + + + enclosure_window + Enclosure: Windows + The type of windows. + Choice + + false + false + Double, Clear, Metal, Air + + + Single, Clear, Metal + Single, Clear, Metal + + + Single, Clear, Non-Metal + Single, Clear, Non-Metal + + + Double, Clear, Metal, Air + Double, Clear, Metal, Air + + + Double, Clear, Thermal-Break, Air + Double, Clear, Thermal-Break, Air + + + Double, Clear, Non-Metal, Air + Double, Clear, Non-Metal, Air + + + Double, Low-E, Non-Metal, Air, High Gain + Double, Low-E, Non-Metal, Air, High Gain + + + Double, Low-E, Non-Metal, Air, Med Gain + Double, Low-E, Non-Metal, Air, Med Gain + + + Double, Low-E, Non-Metal, Air, Low Gain + Double, Low-E, Non-Metal, Air, Low Gain + + + Double, Low-E, Non-Metal, Gas, High Gain + Double, Low-E, Non-Metal, Gas, High Gain + + + Double, Low-E, Non-Metal, Gas, Med Gain + Double, Low-E, Non-Metal, Gas, Med Gain + + + Double, Low-E, Non-Metal, Gas, Low Gain + Double, Low-E, Non-Metal, Gas, Low Gain + + + Double, Low-E, Insulated, Air, High Gain + Double, Low-E, Insulated, Air, High Gain + + + Double, Low-E, Insulated, Air, Med Gain + Double, Low-E, Insulated, Air, Med Gain + + + Double, Low-E, Insulated, Air, Low Gain + Double, Low-E, Insulated, Air, Low Gain + + + Double, Low-E, Insulated, Gas, High Gain + Double, Low-E, Insulated, Gas, High Gain + + + Double, Low-E, Insulated, Gas, Med Gain + Double, Low-E, Insulated, Gas, Med Gain + + + Double, Low-E, Insulated, Gas, Low Gain + Double, Low-E, Insulated, Gas, Low Gain + + + Triple, Low-E, Non-Metal, Air, High Gain + Triple, Low-E, Non-Metal, Air, High Gain + + + Triple, Low-E, Non-Metal, Air, Low Gain + Triple, Low-E, Non-Metal, Air, Low Gain + + + Triple, Low-E, Non-Metal, Gas, High Gain + Triple, Low-E, Non-Metal, Gas, High Gain + + + Triple, Low-E, Non-Metal, Gas, Low Gain + Triple, Low-E, Non-Metal, Gas, Low Gain + + + Triple, Low-E, Insulated, Air, High Gain + Triple, Low-E, Insulated, Air, High Gain + + + Triple, Low-E, Insulated, Air, Low Gain + Triple, Low-E, Insulated, Air, Low Gain + + + Triple, Low-E, Insulated, Gas, High Gain + Triple, Low-E, Insulated, Gas, High Gain + + + Triple, Low-E, Insulated, Gas, Low Gain + Triple, Low-E, Insulated, Gas, Low Gain + + + IECC U-1.20, SHGC 0.40 + IECC U-1.20, SHGC 0.40 + + + IECC U-1.20, SHGC 0.30 + IECC U-1.20, SHGC 0.30 + + + IECC U-1.20, SHGC 0.25 + IECC U-1.20, SHGC 0.25 + + + IECC U-0.75, SHGC 0.40 + IECC U-0.75, SHGC 0.40 + + + IECC U-0.65, SHGC 0.40 + IECC U-0.65, SHGC 0.40 + + + IECC U-0.65, SHGC 0.30 + IECC U-0.65, SHGC 0.30 + + + IECC U-0.50, SHGC 0.30 + IECC U-0.50, SHGC 0.30 + + + IECC U-0.50, SHGC 0.25 + IECC U-0.50, SHGC 0.25 + + + IECC U-0.40, SHGC 0.40 + IECC U-0.40, SHGC 0.40 + + + IECC U-0.40, SHGC 0.25 + IECC U-0.40, SHGC 0.25 + + + IECC U-0.35, SHGC 0.40 + IECC U-0.35, SHGC 0.40 + + + IECC U-0.35, SHGC 0.30 + IECC U-0.35, SHGC 0.30 + + + IECC U-0.35, SHGC 0.25 + IECC U-0.35, SHGC 0.25 + + + IECC U-0.32, SHGC 0.25 + IECC U-0.32, SHGC 0.25 + + + IECC U-0.30, SHGC 0.25 + IECC U-0.30, SHGC 0.25 + + + EnergyStar, North-Central + EnergyStar, North-Central + + + EnergyStar, Northern + EnergyStar, Northern + + + EnergyStar, South-Central + EnergyStar, South-Central + + + EnergyStar, Southern + EnergyStar, Southern + + + Detailed Example: Single, Clear, Aluminum w/ Thermal Break + Detailed Example: Single, Clear, Aluminum w/ Thermal Break + + + Detailed Example: Double, Low-E, Wood, Argon, Insulated Spacer + Detailed Example: Double, Low-E, Wood, Argon, Insulated Spacer + + + + + enclosure_window_natural_ventilation + Enclosure: Window Natural Ventilation + The amount of natural ventilation from occupants opening operable windows when outdoor conditions are favorable. + Choice + + false + false + 67% Operable Windows + + + None + None + + + 33% Operable Windows + 33% Operable Windows + + + 50% Operable Windows + 50% Operable Windows + + + 67% Operable Windows + 67% Operable Windows + + + 100% Operable Windows + 100% Operable Windows + + + Detailed Example: 67% Operable Windows, 7 Days/Week + Detailed Example: 67% Operable Windows, 7 Days/Week + + + + + enclosure_window_interior_shading + Enclosure: Window Interior Shading + The type of window interior shading. If shading coefficients are selected, note they indicate the reduction in solar gain (e.g., 0.7 indicates 30% reduction). + Choice + + false + false + Curtains, Light + + + None + None + + + Curtains, Light + Curtains, Light + + + Curtains, Medium + Curtains, Medium + + + Curtains, Dark + Curtains, Dark + + + Shades, Light + Shades, Light + + + Shades, Medium + Shades, Medium + + + Shades, Dark + Shades, Dark + + + Blinds, Light + Blinds, Light + + + Blinds, Medium + Blinds, Medium + + + Blinds, Dark + Blinds, Dark + + + Summer 0.5, Winter 0.5 + Summer 0.5, Winter 0.5 + + + Summer 0.5, Winter 0.6 + Summer 0.5, Winter 0.6 + + + Summer 0.5, Winter 0.7 + Summer 0.5, Winter 0.7 + + + Summer 0.5, Winter 0.8 + Summer 0.5, Winter 0.8 + + + Summer 0.5, Winter 0.9 + Summer 0.5, Winter 0.9 + + + Summer 0.6, Winter 0.6 + Summer 0.6, Winter 0.6 + + + Summer 0.6, Winter 0.7 + Summer 0.6, Winter 0.7 + + + Summer 0.6, Winter 0.8 + Summer 0.6, Winter 0.8 + + + Summer 0.6, Winter 0.9 + Summer 0.6, Winter 0.9 + + + Summer 0.7, Winter 0.7 + Summer 0.7, Winter 0.7 + + + Summer 0.7, Winter 0.8 + Summer 0.7, Winter 0.8 + + + Summer 0.7, Winter 0.9 + Summer 0.7, Winter 0.9 + + + Summer 0.8, Winter 0.8 + Summer 0.8, Winter 0.8 + + + Summer 0.8, Winter 0.9 + Summer 0.8, Winter 0.9 + + + Summer 0.9, Winter 0.9 + Summer 0.9, Winter 0.9 + + + + + enclosure_window_exterior_shading + Enclosure: Window Exterior Shading + The type of window exterior shading. If shading coefficients are selected, note they indicate the reduction in solar gain (e.g., 0.7 indicates 30% reduction). + Choice + + false + false + None + + + None + None + + + Solar Film + Solar Film + + + Solar Screen + Solar Screen + + + Summer 0.25, Winter 0.25 + Summer 0.25, Winter 0.25 + + + Summer 0.25, Winter 0.50 + Summer 0.25, Winter 0.50 + + + Summer 0.25, Winter 0.75 + Summer 0.25, Winter 0.75 + + + Summer 0.25, Winter 1.00 + Summer 0.25, Winter 1.00 + + + Summer 0.50, Winter 0.25 + Summer 0.50, Winter 0.25 + + + Summer 0.50, Winter 0.50 + Summer 0.50, Winter 0.50 + + + Summer 0.50, Winter 0.75 + Summer 0.50, Winter 0.75 + + + Summer 0.50, Winter 1.00 + Summer 0.50, Winter 1.00 + + + Summer 0.75, Winter 0.25 + Summer 0.75, Winter 0.25 + + + Summer 0.75, Winter 0.50 + Summer 0.75, Winter 0.50 + + + Summer 0.75, Winter 0.75 + Summer 0.75, Winter 0.75 + + + Summer 0.75, Winter 1.00 + Summer 0.75, Winter 1.00 + + + Summer 1.00, Winter 0.25 + Summer 1.00, Winter 0.25 + + + Summer 1.00, Winter 0.50 + Summer 1.00, Winter 0.50 + + + Summer 1.00, Winter 0.75 + Summer 1.00, Winter 0.75 + + + Summer 1.00, Winter 1.00 + Summer 1.00, Winter 1.00 + + + + + enclosure_window_insect_screens + Enclosure: Window Insect Screens + The type of window insect screens. + Choice + + false + false + None + + + None + None + + + Exterior + Exterior + + + Interior + Interior + + + + + enclosure_window_storm + Enclosure: Window Storm + The type of storm window. + Choice + + false + false + None + + + None + None + + + Clear + Clear + + + Low-E + Low-E + + + + + enclosure_overhangs + Enclosure: Window Overhangs + The type of window overhangs. + Choice + + false + false + None + + + None + None + + + 1ft, All Windows + 1ft, All Windows + + + 2ft, All Windows + 2ft, All Windows + + + 3ft, All Windows + 3ft, All Windows + + + 4ft, All Windows + 4ft, All Windows + + + 5ft, All Windows + 5ft, All Windows + + + 10ft, All Windows + 10ft, All Windows + + + 1ft, Front Windows + 1ft, Front Windows + + + 2ft, Front Windows + 2ft, Front Windows + + + 3ft, Front Windows + 3ft, Front Windows + + + 4ft, Front Windows + 4ft, Front Windows + + + 5ft, Front Windows + 5ft, Front Windows + + + 10ft, Front Windows + 10ft, Front Windows + + + 1ft, Back Windows + 1ft, Back Windows + + + 2ft, Back Windows + 2ft, Back Windows + + + 3ft, Back Windows + 3ft, Back Windows + + + 4ft, Back Windows + 4ft, Back Windows + + + 5ft, Back Windows + 5ft, Back Windows + + + 10ft, Back Windows + 10ft, Back Windows + + + 1ft, Left Windows + 1ft, Left Windows + + + 2ft, Left Windows + 2ft, Left Windows + + + 3ft, Left Windows + 3ft, Left Windows + + + 4ft, Left Windows + 4ft, Left Windows + + + 5ft, Left Windows + 5ft, Left Windows + + + 10ft, Left Windows + 10ft, Left Windows + + + 1ft, Right Windows + 1ft, Right Windows + + + 2ft, Right Windows + 2ft, Right Windows + + + 3ft, Right Windows + 3ft, Right Windows + + + 4ft, Right Windows + 4ft, Right Windows + + + 5ft, Right Windows + 5ft, Right Windows + + + 10ft, Right Windows + 10ft, Right Windows + + + Detailed Example: 1.5ft, Back/Left/Right Windows, 2ft Offset, 4ft Window Height + Detailed Example: 1.5ft, Back/Left/Right Windows, 2ft Offset, 4ft Window Height + + + Detailed Example: 2.5ft, Front Windows, 1ft Offset, 5ft Window Height + Detailed Example: 2.5ft, Front Windows, 1ft Offset, 5ft Window Height + + + + + enclosure_skylight + Enclosure: Skylights + The type of skylights. + Choice + + false + false + Single, Clear, Metal + + + Single, Clear, Metal + Single, Clear, Metal + + + Single, Clear, Non-Metal + Single, Clear, Non-Metal + + + Double, Clear, Metal + Double, Clear, Metal + + + Double, Clear, Non-Metal + Double, Clear, Non-Metal + + + Double, Low-E, Metal, High Gain + Double, Low-E, Metal, High Gain + + + Double, Low-E, Non-Metal, High Gain + Double, Low-E, Non-Metal, High Gain + + + Double, Low-E, Metal, Med Gain + Double, Low-E, Metal, Med Gain + + + Double, Low-E, Non-Metal, Med Gain + Double, Low-E, Non-Metal, Med Gain + + + Double, Low-E, Metal, Low Gain + Double, Low-E, Metal, Low Gain + + + Double, Low-E, Non-Metal, Low Gain + Double, Low-E, Non-Metal, Low Gain + + + Triple, Clear, Metal + Triple, Clear, Metal + + + Triple, Clear, Non-Metal + Triple, Clear, Non-Metal + + + IECC U-0.75, SHGC 0.40 + IECC U-0.75, SHGC 0.40 + + + IECC U-0.75, SHGC 0.30 + IECC U-0.75, SHGC 0.30 + + + IECC U-0.75, SHGC 0.25 + IECC U-0.75, SHGC 0.25 + + + IECC U-0.65, SHGC 0.40 + IECC U-0.65, SHGC 0.40 + + + IECC U-0.65, SHGC 0.30 + IECC U-0.65, SHGC 0.30 + + + IECC U-0.65, SHGC 0.25 + IECC U-0.65, SHGC 0.25 + + + IECC U-0.60, SHGC 0.40 + IECC U-0.60, SHGC 0.40 + + + IECC U-0.60, SHGC 0.30 + IECC U-0.60, SHGC 0.30 + + + IECC U-0.55, SHGC 0.40 + IECC U-0.55, SHGC 0.40 + + + IECC U-0.55, SHGC 0.25 + IECC U-0.55, SHGC 0.25 + + + + + enclosure_door + Enclosure: Doors + The type of doors. + Choice + + false + false + Solid Wood, R-2 + + + Solid Wood, R-2 + Solid Wood, R-2 + + + Solid Wood, R-3 + Solid Wood, R-3 + + + Insulated Fiberglass/Steel, R-4 + Insulated Fiberglass/Steel, R-4 + + + Insulated Fiberglass/Steel, R-5 + Insulated Fiberglass/Steel, R-5 + + + Insulated Fiberglass/Steel, R-6 + Insulated Fiberglass/Steel, R-6 + + + Insulated Fiberglass/Steel, R-7 + Insulated Fiberglass/Steel, R-7 + + + IECC U-1.20 + IECC U-1.20 + + + IECC U-0.75 + IECC U-0.75 + + + IECC U-0.65 + IECC U-0.65 + + + IECC U-0.50 + IECC U-0.50 + + + IECC U-0.40 + IECC U-0.40 + + + IECC U-0.35 + IECC U-0.35 + + + IECC U-0.32 + IECC U-0.32 + + + IECC U-0.30 + IECC U-0.30 + + + Detailed Example: Solid Wood, R-3.04 + Detailed Example: Solid Wood, R-3.04 + + + Detailed Example: Insulated Fiberglass/Steel, R-4.4 + Detailed Example: Insulated Fiberglass/Steel, R-4.4 + + + + + enclosure_air_leakage + Enclosure: Air Leakage + The amount of air leakage coming from outside. If a qualitative leakiness description (e.g., 'Average') is selected, the Year Built of the home is also required. + Choice + + false + false + Average + + + Very Tight + Very Tight + + + Tight + Tight + + + Average + Average + + + Leaky + Leaky + + + Very Leaky + Very Leaky + + + 1 ACH50 + 1 ACH50 + + + 2 ACH50 + 2 ACH50 + + + 3 ACH50 + 3 ACH50 + + + 4 ACH50 + 4 ACH50 + + + 5 ACH50 + 5 ACH50 + + + 6 ACH50 + 6 ACH50 + + + 7 ACH50 + 7 ACH50 + + + 8 ACH50 + 8 ACH50 + + + 9 ACH50 + 9 ACH50 + + + 10 ACH50 + 10 ACH50 + + + 11 ACH50 + 11 ACH50 + + + 12 ACH50 + 12 ACH50 + + + 13 ACH50 + 13 ACH50 + + + 14 ACH50 + 14 ACH50 + + + 15 ACH50 + 15 ACH50 + + + 16 ACH50 + 16 ACH50 + + + 17 ACH50 + 17 ACH50 + + + 18 ACH50 + 18 ACH50 + + + 19 ACH50 + 19 ACH50 + + + 20 ACH50 + 20 ACH50 + + + 25 ACH50 + 25 ACH50 + + + 30 ACH50 + 30 ACH50 + + + 35 ACH50 + 35 ACH50 + + + 40 ACH50 + 40 ACH50 + + + 45 ACH50 + 45 ACH50 + + + 50 ACH50 + 50 ACH50 + + + 0.2 nACH + 0.2 nACH + + + 0.3 nACH + 0.3 nACH + + + 0.335 nACH + 0.335 nACH + + + 0.5 nACH + 0.5 nACH + + + 0.67 nACH + 0.67 nACH + + + 1.0 nACH + 1.0 nACH + + + 1.5 nACH + 1.5 nACH + + + Detailed Example: 3.57 ACH50 + Detailed Example: 3.57 ACH50 + + + Detailed Example: 12.16 ACH50 + Detailed Example: 12.16 ACH50 + + + Detailed Example: 2.8 ACH45 + Detailed Example: 2.8 ACH45 + + + Detailed Example: 0.375 nACH + Detailed Example: 0.375 nACH + + + Detailed Example: 72 nCFM + Detailed Example: 72 nCFM + + + Detailed Example: 79.8 sq. in. ELA + Detailed Example: 79.8 sq. in. ELA + + + Detailed Example: 123 sq. in. ELA + Detailed Example: 123 sq. in. ELA + + + Detailed Example: 1080 CFM50 + Detailed Example: 1080 CFM50 + + + Detailed Example: 1010 CFM45 + Detailed Example: 1010 CFM45 + + + + + hvac_heating_system + HVAC: Heating System + The type and efficiency of the heating system. Use 'None' if there is no heating system or if there is a heat pump serving a heating load. + Choice + + false + false + Central Furnace, 78% AFUE + + + None + None + + + Electric Resistance + Electric Resistance + + + Central Furnace, 60% AFUE + Central Furnace, 60% AFUE + + + Central Furnace, 64% AFUE + Central Furnace, 64% AFUE + + + Central Furnace, 68% AFUE + Central Furnace, 68% AFUE + + + Central Furnace, 72% AFUE + Central Furnace, 72% AFUE + + + Central Furnace, 76% AFUE + Central Furnace, 76% AFUE + + + Central Furnace, 78% AFUE + Central Furnace, 78% AFUE + + + Central Furnace, 80% AFUE + Central Furnace, 80% AFUE + + + Central Furnace, 83% AFUE + Central Furnace, 83% AFUE + + + Central Furnace, 85% AFUE + Central Furnace, 85% AFUE + + + Central Furnace, 88% AFUE + Central Furnace, 88% AFUE + + + Central Furnace, 90% AFUE + Central Furnace, 90% AFUE + + + Central Furnace, 92% AFUE + Central Furnace, 92% AFUE + + + Central Furnace, 92.5% AFUE + Central Furnace, 92.5% AFUE + + + Central Furnace, 95% AFUE + Central Furnace, 95% AFUE + + + Central Furnace, 96% AFUE + Central Furnace, 96% AFUE + + + Central Furnace, 98% AFUE + Central Furnace, 98% AFUE + + + Central Furnace, 100% AFUE + Central Furnace, 100% AFUE + + + Wall Furnace, 60% AFUE + Wall Furnace, 60% AFUE + + + Wall Furnace, 68% AFUE + Wall Furnace, 68% AFUE + + + Wall Furnace, 82% AFUE + Wall Furnace, 82% AFUE + + + Wall Furnace, 98% AFUE + Wall Furnace, 98% AFUE + + + Wall Furnace, 100% AFUE + Wall Furnace, 100% AFUE + + + Floor Furnace, 60% AFUE + Floor Furnace, 60% AFUE + + + Floor Furnace, 70% AFUE + Floor Furnace, 70% AFUE + + + Floor Furnace, 80% AFUE + Floor Furnace, 80% AFUE + + + Boiler, 60% AFUE + Boiler, 60% AFUE + + + Boiler, 72% AFUE + Boiler, 72% AFUE + + + Boiler, 76% AFUE + Boiler, 76% AFUE + + + Boiler, 78% AFUE + Boiler, 78% AFUE + + + Boiler, 80% AFUE + Boiler, 80% AFUE + + + Boiler, 83% AFUE + Boiler, 83% AFUE + + + Boiler, 85% AFUE + Boiler, 85% AFUE + + + Boiler, 88% AFUE + Boiler, 88% AFUE + + + Boiler, 90% AFUE + Boiler, 90% AFUE + + + Boiler, 92% AFUE + Boiler, 92% AFUE + + + Boiler, 92.5% AFUE + Boiler, 92.5% AFUE + + + Boiler, 95% AFUE + Boiler, 95% AFUE + + + Boiler, 96% AFUE + Boiler, 96% AFUE + + + Boiler, 98% AFUE + Boiler, 98% AFUE + + + Boiler, 100% AFUE + Boiler, 100% AFUE + + + Stove, 60% Efficiency + Stove, 60% Efficiency + + + Stove, 70% Efficiency + Stove, 70% Efficiency + + + Stove, 80% Efficiency + Stove, 80% Efficiency + + + Space Heater, 60% Efficiency + Space Heater, 60% Efficiency + + + Space Heater, 70% Efficiency + Space Heater, 70% Efficiency + + + Space Heater, 80% Efficiency + Space Heater, 80% Efficiency + + + Space Heater, 92% Efficiency + Space Heater, 92% Efficiency + + + Space Heater, 100% Efficiency + Space Heater, 100% Efficiency + + + Fireplace, 60% Efficiency + Fireplace, 60% Efficiency + + + Fireplace, 70% Efficiency + Fireplace, 70% Efficiency + + + Fireplace, 80% Efficiency + Fireplace, 80% Efficiency + + + Fireplace, 100% Efficiency + Fireplace, 100% Efficiency + + + Detailed Example: Central Furnace, 92% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Central Furnace, 92% AFUE, 600 Btu/hr Pilot Light + + + Detailed Example: Floor Furnace, 80% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Floor Furnace, 80% AFUE, 600 Btu/hr Pilot Light + + + Detailed Example: Boiler, 92% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Boiler, 92% AFUE, 600 Btu/hr Pilot Light + + + + + hvac_heating_system_fuel + HVAC: Heating System Fuel Type + The fuel type of the heating system. Ignored for ElectricResistance. + Choice + + false + false + Natural Gas + + + Electricity + Electricity + + + Natural Gas + Natural Gas + + + Fuel Oil + Fuel Oil + + + Propane + Propane + + + Wood Cord + Wood Cord + + + Wood Pellets + Wood Pellets + + + Coal + Coal + + + + + hvac_heating_system_capacity + HVAC: Heating System Capacity + The output capacity of the heating system. + Choice + + false + false + Autosize + + + Autosize + Autosize + + + 5 kBtu/hr + 5 kBtu/hr + + + 10 kBtu/hr + 10 kBtu/hr + + + 15 kBtu/hr + 15 kBtu/hr + + + 20 kBtu/hr + 20 kBtu/hr + + + 25 kBtu/hr + 25 kBtu/hr + + + 30 kBtu/hr + 30 kBtu/hr + + + 35 kBtu/hr + 35 kBtu/hr + + + 40 kBtu/hr + 40 kBtu/hr + + + 45 kBtu/hr + 45 kBtu/hr + + + 50 kBtu/hr + 50 kBtu/hr + + + 55 kBtu/hr + 55 kBtu/hr + + + 60 kBtu/hr + 60 kBtu/hr + + + 65 kBtu/hr + 65 kBtu/hr + + + 70 kBtu/hr + 70 kBtu/hr + + + 75 kBtu/hr + 75 kBtu/hr + + + 80 kBtu/hr + 80 kBtu/hr + + + 85 kBtu/hr + 85 kBtu/hr + + + 90 kBtu/hr + 90 kBtu/hr + + + 95 kBtu/hr + 95 kBtu/hr + + + 100 kBtu/hr + 100 kBtu/hr + + + 105 kBtu/hr + 105 kBtu/hr + + + 110 kBtu/hr + 110 kBtu/hr + + + 115 kBtu/hr + 115 kBtu/hr + + + 120 kBtu/hr + 120 kBtu/hr + + + 125 kBtu/hr + 125 kBtu/hr + + + 130 kBtu/hr + 130 kBtu/hr + + + 135 kBtu/hr + 135 kBtu/hr + + + 140 kBtu/hr + 140 kBtu/hr + + + 145 kBtu/hr + 145 kBtu/hr + + + 150 kBtu/hr + 150 kBtu/hr + + + Detailed Example: Autosize, 140% Multiplier + Detailed Example: Autosize, 140% Multiplier + + + Detailed Example: Autosize, 170% Multiplier + Detailed Example: Autosize, 170% Multiplier + + + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + + + Detailed Example: Autosize, 140% Multiplier, 45 kBtu/hr Limit + Detailed Example: Autosize, 140% Multiplier, 45 kBtu/hr Limit + + + + + hvac_heating_system_heating_load_served + HVAC: Heating System Fraction Heat Load Served + The fraction of the heating load served by the heating system. + Choice + + false + false + 100% + + + 100% + 100% + + + 95% + 95% + + + 90% + 90% + + + 85% + 85% + + + 80% + 80% + + + 75% + 75% + + + 70% + 70% + + + 65% + 65% + + + 60% + 60% + + + 55% + 55% + + + 50% + 50% + + + 45% + 45% + + + 40% + 40% + + + 35% + 35% + + + 30% + 30% + + + 25% + 25% + + + 20% + 20% + + + 15% + 15% + + + 10% + 10% + + + 5% + 5% + + + 0% + 0% + + + + + hvac_cooling_system + HVAC: Cooling System + The type and efficiency of the cooling system. Use 'None' if there is no cooling system or if there is a heat pump serving a cooling load. + Choice + + false + false + Central AC, SEER2 13.4 + + + None + None + + + Central AC, SEER2 7.6 + Central AC, SEER2 7.6 + + + Central AC, SEER2 9.5 + Central AC, SEER2 9.5 + + + Central AC, SEER2 12.4 + Central AC, SEER2 12.4 + + + Central AC, SEER2 13.4 + Central AC, SEER2 13.4 + + + Central AC, SEER2 13.8 + Central AC, SEER2 13.8 + + + Central AC, SEER2 14.0 + Central AC, SEER2 14.0 + + + Central AC, SEER2 14.3 + Central AC, SEER2 14.3 + + + Central AC, SEER2 15.0 + Central AC, SEER2 15.0 + + + Central AC, SEER2 16.0 + Central AC, SEER2 16.0 + + + Central AC, SEER2 17.0 + Central AC, SEER2 17.0 + + + Central AC, SEER2 18.0 + Central AC, SEER2 18.0 + + + Central AC, SEER2 19.0 + Central AC, SEER2 19.0 + + + Central AC, SEER2 20.0 + Central AC, SEER2 20.0 + + + Central AC, SEER2 21.0 + Central AC, SEER2 21.0 + + + Central AC, SEER2 22.0 + Central AC, SEER2 22.0 + + + Central AC, SEER2 23.0 + Central AC, SEER2 23.0 + + + Central AC, SEER2 24.0 + Central AC, SEER2 24.0 + + + Central AC, SEER2 25.0 + Central AC, SEER2 25.0 + + + Ductless Mini-Split AC, SEER2 14.5 + Ductless Mini-Split AC, SEER2 14.5 + + + Ductless Mini-Split AC, SEER2 16.0 + Ductless Mini-Split AC, SEER2 16.0 + + + Ductless Mini-Split AC, SEER2 17.0 + Ductless Mini-Split AC, SEER2 17.0 + + + Ductless Mini-Split AC, SEER2 18.0 + Ductless Mini-Split AC, SEER2 18.0 + + + Ductless Mini-Split AC, SEER2 19.0 + Ductless Mini-Split AC, SEER2 19.0 + + + Ductless Mini-Split AC, SEER2 20.0 + Ductless Mini-Split AC, SEER2 20.0 + + + Ductless Mini-Split AC, SEER2 21.0 + Ductless Mini-Split AC, SEER2 21.0 + + + Ductless Mini-Split AC, SEER2 22.0 + Ductless Mini-Split AC, SEER2 22.0 + + + Ductless Mini-Split AC, SEER2 23.0 + Ductless Mini-Split AC, SEER2 23.0 + + + Ductless Mini-Split AC, SEER2 24.0 + Ductless Mini-Split AC, SEER2 24.0 + + + Ductless Mini-Split AC, SEER2 25.0 + Ductless Mini-Split AC, SEER2 25.0 + + + Ductless Mini-Split AC, SEER2 26.0 + Ductless Mini-Split AC, SEER2 26.0 + + + Ductless Mini-Split AC, SEER2 27.0 + Ductless Mini-Split AC, SEER2 27.0 + + + Ductless Mini-Split AC, SEER2 28.0 + Ductless Mini-Split AC, SEER2 28.0 + + + Room AC, CEER 8.4 + Room AC, CEER 8.4 + + + Room AC, CEER 9.7 + Room AC, CEER 9.7 + + + Room AC, CEER 10.6 + Room AC, CEER 10.6 + + + Room AC, CEER 11.0 + Room AC, CEER 11.0 + + + Room AC, CEER 11.9 + Room AC, CEER 11.9 + + + Room AC, CEER 13.1 + Room AC, CEER 13.1 + + + Packaged Terminal AC, EER 8.5 + Packaged Terminal AC, EER 8.5 + + + Packaged Terminal AC, EER 9.8 + Packaged Terminal AC, EER 9.8 + + + Packaged Terminal AC, EER 10.7 + Packaged Terminal AC, EER 10.7 + + + Packaged Terminal AC, EER 11.9 + Packaged Terminal AC, EER 11.9 + + + Packaged Terminal AC, EER 13.2 + Packaged Terminal AC, EER 13.2 + + + Evaporative Cooler + Evaporative Cooler + + + Detailed Example: Central AC, SEER2 13.4, Absolute Detailed Performance + Detailed Example: Central AC, SEER2 13.4, Absolute Detailed Performance + + + Detailed Example: Central AC, SEER2 17.1, Absolute Detailed Performance + Detailed Example: Central AC, SEER2 17.1, Absolute Detailed Performance + + + Detailed Example: Central AC, SEER 17.5, Absolute Detailed Performance + Detailed Example: Central AC, SEER 17.5, Absolute Detailed Performance + + + Detailed Example: Central AC, SEER 17.5, Normalized Detailed Performance + Detailed Example: Central AC, SEER 17.5, Normalized Detailed Performance + + + Detailed Example: Ductless Mini-Split AC, SEER2 19.0, Absolute Detailed Performance + Detailed Example: Ductless Mini-Split AC, SEER2 19.0, Absolute Detailed Performance + + + Detailed Example: Ductless Mini-Split AC, SEER2 19.0, Normalized Detailed Performance + Detailed Example: Ductless Mini-Split AC, SEER2 19.0, Normalized Detailed Performance + + + + + hvac_cooling_system_capacity + HVAC: Cooling System Capacity + The output capacity of the cooling system. + Choice + + false + false + Autosize + + + Autosize + Autosize + + + 0.5 tons + 0.5 tons + + + 0.75 tons + 0.75 tons + + + 1.0 tons + 1.0 tons + + + 1.5 tons + 1.5 tons + + + 2.0 tons + 2.0 tons + + + 2.5 tons + 2.5 tons + + + 3.0 tons + 3.0 tons + + + 3.5 tons + 3.5 tons + + + 4.0 tons + 4.0 tons + + + 4.5 tons + 4.5 tons + + + 5.0 tons + 5.0 tons + + + 5.5 tons + 5.5 tons + + + 6.0 tons + 6.0 tons + + + 6.5 tons + 6.5 tons + + + 7.0 tons + 7.0 tons + + + 7.5 tons + 7.5 tons + + + 8.0 tons + 8.0 tons + + + 8.5 tons + 8.5 tons + + + 9.0 tons + 9.0 tons + + + 9.5 tons + 9.5 tons + + + 10.0 tons + 10.0 tons + + + Detailed Example: Autosize, 140% Multiplier + Detailed Example: Autosize, 140% Multiplier + + + Detailed Example: Autosize, 170% Multiplier + Detailed Example: Autosize, 170% Multiplier + + + Detailed Example: Autosize, 170% Multiplier, 3.0 tons Limit + Detailed Example: Autosize, 170% Multiplier, 3.0 tons Limit + + + + + hvac_cooling_system_cooling_load_served + HVAC: Cooling System Fraction Cool Load Served + The fraction of the cooling load served by the cooling system. + Choice + + false + false + 100% + + + 100% + 100% + + + 95% + 95% + + + 90% + 90% + + + 85% + 85% + + + 80% + 80% + + + 75% + 75% + + + 70% + 70% + + + 65% + 65% + + + 60% + 60% + + + 55% + 55% + + + 50% + 50% + + + 45% + 45% + + + 40% + 40% + + + 35% + 35% + + + 30% + 30% + + + 25% + 25% + + + 20% + 20% + + + 15% + 15% + + + 10% + 10% + + + 5% + 5% + + + 0% + 0% + + + + + hvac_heat_pump + HVAC: Heat Pump + The type and efficiency of the heat pump. + Choice + + false + false + None + + + None + None + + + Central HP, SEER2 7.6, HSPF2 5.1 + Central HP, SEER2 7.6, HSPF2 5.1 + + + Central HP, SEER2 9.5, HSPF2 5.8 + Central HP, SEER2 9.5, HSPF2 5.8 + + + Central HP, SEER2 12.4, HSPF2 6.6 + Central HP, SEER2 12.4, HSPF2 6.6 + + + Central HP, SEER2 13.4, HSPF2 7.0 + Central HP, SEER2 13.4, HSPF2 7.0 + + + Central HP, SEER2 13.8, HSPF2 7.2 + Central HP, SEER2 13.8, HSPF2 7.2 + + + Central HP, SEER2 14.0, HSPF2 7.3 + Central HP, SEER2 14.0, HSPF2 7.3 + + + Central HP, SEER2 14.3, HSPF2 7.4 + Central HP, SEER2 14.3, HSPF2 7.4 + + + Central HP, SEER2 15.0, HSPF2 7.6 + Central HP, SEER2 15.0, HSPF2 7.6 + + + Central HP, SEER2 16.0, HSPF2 7.9 + Central HP, SEER2 16.0, HSPF2 7.9 + + + Central HP, SEER2 17.0, HSPF2 8.2 + Central HP, SEER2 17.0, HSPF2 8.2 + + + Central HP, SEER2 18.0, HSPF2 8.5 + Central HP, SEER2 18.0, HSPF2 8.5 + + + Central HP, SEER2 19.0, HSPF2 8.7 + Central HP, SEER2 19.0, HSPF2 8.7 + + + Central HP, SEER2 20.0, HSPF2 9.0 + Central HP, SEER2 20.0, HSPF2 9.0 + + + Central HP, SEER2 21.0, HSPF2 9.2 + Central HP, SEER2 21.0, HSPF2 9.2 + + + Central HP, SEER2 22.0, HSPF2 9.5 + Central HP, SEER2 22.0, HSPF2 9.5 + + + Ductless Mini-Split HP, SEER2 13.7, HSPF2 7.4 + Ductless Mini-Split HP, SEER2 13.7, HSPF2 7.4 + + + Ductless Mini-Split HP, SEER2 14.5, HSPF2 7.7 + Ductless Mini-Split HP, SEER2 14.5, HSPF2 7.7 + + + Ductless Mini-Split HP, SEER2 16.0, HSPF2 8.1 + Ductless Mini-Split HP, SEER2 16.0, HSPF2 8.1 + + + Ductless Mini-Split HP, SEER2 17.0, HSPF2 8.5 + Ductless Mini-Split HP, SEER2 17.0, HSPF2 8.5 + + + Ductless Mini-Split HP, SEER2 18.0, HSPF2 8.8 + Ductless Mini-Split HP, SEER2 18.0, HSPF2 8.8 + + + Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0 + Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0 + + + Ductless Mini-Split HP, SEER2 20.0, HSPF2 9.4 + Ductless Mini-Split HP, SEER2 20.0, HSPF2 9.4 + + + Ductless Mini-Split HP, SEER2 21.0, HSPF2 9.7 + Ductless Mini-Split HP, SEER2 21.0, HSPF2 9.7 + + + Ductless Mini-Split HP, SEER2 22.0, HSPF2 10.1 + Ductless Mini-Split HP, SEER2 22.0, HSPF2 10.1 + + + Ductless Mini-Split HP, SEER2 23.0, HSPF2 10.4 + Ductless Mini-Split HP, SEER2 23.0, HSPF2 10.4 + + + Ductless Mini-Split HP, SEER2 24.0, HSPF2 10.7 + Ductless Mini-Split HP, SEER2 24.0, HSPF2 10.7 + + + Ductless Mini-Split HP, SEER2 25.0, HSPF2 11.0 + Ductless Mini-Split HP, SEER2 25.0, HSPF2 11.0 + + + Ductless Mini-Split HP, SEER2 26.0, HSPF2 11.4 + Ductless Mini-Split HP, SEER2 26.0, HSPF2 11.4 + + + Ductless Mini-Split HP, SEER2 27.0, HSPF2 11.7 + Ductless Mini-Split HP, SEER2 27.0, HSPF2 11.7 + + + Ductless Mini-Split HP, SEER2 28.0, HSPF2 12.0 + Ductless Mini-Split HP, SEER2 28.0, HSPF2 12.0 + + + Ductless Mini-Split HP, SEER2 29.0, HSPF2 12.3 + Ductless Mini-Split HP, SEER2 29.0, HSPF2 12.3 + + + Ductless Mini-Split HP, SEER2 30.0, HSPF2 12.7 + Ductless Mini-Split HP, SEER2 30.0, HSPF2 12.7 + + + Ductless Mini-Split HP, SEER2 32.0, HSPF2 13.3 + Ductless Mini-Split HP, SEER2 32.0, HSPF2 13.3 + + + Geothermal HP, EER 16.6, COP 3.6 + Geothermal HP, EER 16.6, COP 3.6 + + + Geothermal HP, EER 18.6, COP 3.8 + Geothermal HP, EER 18.6, COP 3.8 + + + Geothermal HP, EER 20.5, COP 4.0 + Geothermal HP, EER 20.5, COP 4.0 + + + Geothermal HP, EER 30.9, COP 4.4 + Geothermal HP, EER 30.9, COP 4.4 + + + Room HP, CEER 8.4, COP 2.7 + Room HP, CEER 8.4, COP 2.7 + + + Room HP, CEER 9.7, COP 3.0 + Room HP, CEER 9.7, COP 3.0 + + + Room HP, CEER 10.6, COP 3.3 + Room HP, CEER 10.6, COP 3.3 + + + Room HP, CEER 11.8, COP 3.6 + Room HP, CEER 11.8, COP 3.6 + + + Room HP, CEER 13.1, COP 3.9 + Room HP, CEER 13.1, COP 3.9 + + + Packaged Terminal HP, EER 8.5, COP 2.7 + Packaged Terminal HP, EER 8.5, COP 2.7 + + + Packaged Terminal HP, EER 9.8, COP 3.0 + Packaged Terminal HP, EER 9.8, COP 3.0 + + + Packaged Terminal HP, EER 10.7, COP 3.3 + Packaged Terminal HP, EER 10.7, COP 3.3 + + + Packaged Terminal HP, EER 11.9, COP 3.6 + Packaged Terminal HP, EER 11.9, COP 3.6 + + + Packaged Terminal HP, EER 13.2, COP 3.9 + Packaged Terminal HP, EER 13.2, COP 3.9 + + + Detailed Example: Central HP, SEER2 12.4, HSPF2 8.4 + Detailed Example: Central HP, SEER2 12.4, HSPF2 8.4 + + + Detailed Example: Central HP, SEER2 13.4, HSPF2 7.0, Absolute Detailed Performance + Detailed Example: Central HP, SEER2 13.4, HSPF2 7.0, Absolute Detailed Performance + + + Detailed Example: Central HP, SEER2 17.1, HSPF2 7.9, Absolute Detailed Performance + Detailed Example: Central HP, SEER2 17.1, HSPF2 7.9, Absolute Detailed Performance + + + Detailed Example: Central HP, SEER 17.5, HSPF 9.5, Absolute Detailed Performance + Detailed Example: Central HP, SEER 17.5, HSPF 9.5, Absolute Detailed Performance + + + Detailed Example: Central HP, SEER 17.5, HSPF 9.5, Normalized Detailed Performance + Detailed Example: Central HP, SEER 17.5, HSPF 9.5, Normalized Detailed Performance + + + Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Absolute Detailed Performance + Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Absolute Detailed Performance + + + Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Normalized Detailed Performance + Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Normalized Detailed Performance + + + + + hvac_heat_pump_capacity + HVAC: Heat Pump Capacity + The output capacity of the heat pump. + Choice + + false + false + Autosize + + + Autosize + Autosize + + + Autosize (ACCA) + Autosize (ACCA) + + + Autosize (MaxLoad) + Autosize (MaxLoad) + + + 0.5 tons + 0.5 tons + + + 0.75 tons + 0.75 tons + + + 1.0 tons + 1.0 tons + + + 1.5 tons + 1.5 tons + + + 2.0 tons + 2.0 tons + + + 2.5 tons + 2.5 tons + + + 3.0 tons + 3.0 tons + + + 3.5 tons + 3.5 tons + + + 4.0 tons + 4.0 tons + + + 4.5 tons + 4.5 tons + + + 5.0 tons + 5.0 tons + + + 5.5 tons + 5.5 tons + + + 6.0 tons + 6.0 tons + + + 6.5 tons + 6.5 tons + + + 7.0 tons + 7.0 tons + + + 7.5 tons + 7.5 tons + + + 8.0 tons + 8.0 tons + + + 8.5 tons + 8.5 tons + + + 9.0 tons + 9.0 tons + + + 9.5 tons + 9.5 tons + + + 10.0 tons + 10.0 tons + + + Detailed Example: Autosize, 140% Multiplier + Detailed Example: Autosize, 140% Multiplier + + + Detailed Example: Autosize, 170% Multiplier + Detailed Example: Autosize, 170% Multiplier + + + Detailed Example: Autosize, 170% Multiplier, 3.0 tons Limit + Detailed Example: Autosize, 170% Multiplier, 3.0 tons Limit + + + + + hvac_heat_pump_heating_load_served + HVAC: Heat Pump Fraction Heat Load Served + The fraction of the heating load served by the heat pump. + Choice + + false + false + 100% + + + 100% + 100% + + + 95% + 95% + + + 90% + 90% + + + 85% + 85% + + + 80% + 80% + + + 75% + 75% + + + 70% + 70% + + + 65% + 65% + + + 60% + 60% + + + 55% + 55% + + + 50% + 50% + + + 45% + 45% + + + 40% + 40% + + + 35% + 35% + + + 30% + 30% + + + 25% + 25% + + + 20% + 20% + + + 15% + 15% + + + 10% + 10% + + + 5% + 5% + + + 0% + 0% + + + + + hvac_heat_pump_cooling_load_served + HVAC: Heat Pump Fraction Cool Load Served + The fraction of the cooling load served by the heat pump. + Choice + + false + false + 100% + + + 100% + 100% + + + 95% + 95% + + + 90% + 90% + + + 85% + 85% + + + 80% + 80% + + + 75% + 75% + + + 70% + 70% + + + 65% + 65% + + + 60% + 60% + + + 55% + 55% + + + 50% + 50% + + + 45% + 45% + + + 40% + 40% + + + 35% + 35% + + + 30% + 30% + + + 25% + 25% + + + 20% + 20% + + + 15% + 15% + + + 10% + 10% + + + 5% + 5% + + + 0% + 0% + + + + + hvac_heat_pump_temperatures + HVAC: Heat Pump Temperatures + Specifies the minimum compressor temperature and/or maximum HP backup temperature. If both are the same, a binary switchover temperature is used. + Choice + + false + false + Default + + + Default + Default + + + -20F Min Compressor Temp + -20F Min Compressor Temp + + + -15F Min Compressor Temp + -15F Min Compressor Temp + + + -10F Min Compressor Temp + -10F Min Compressor Temp + + + -5F Min Compressor Temp + -5F Min Compressor Temp + + + 0F Min Compressor Temp + 0F Min Compressor Temp + + + 5F Min Compressor Temp + 5F Min Compressor Temp + + + 10F Min Compressor Temp + 10F Min Compressor Temp + + + 15F Min Compressor Temp + 15F Min Compressor Temp + + + 20F Min Compressor Temp + 20F Min Compressor Temp + + + 25F Min Compressor Temp + 25F Min Compressor Temp + + + 30F Min Compressor Temp + 30F Min Compressor Temp + + + 35F Min Compressor Temp + 35F Min Compressor Temp + + + 40F Min Compressor Temp + 40F Min Compressor Temp + + + 30F Min Compressor Temp, 30F Max HP Backup Temp + 30F Min Compressor Temp, 30F Max HP Backup Temp + + + 35F Min Compressor Temp, 35F Max HP Backup Temp + 35F Min Compressor Temp, 35F Max HP Backup Temp + + + 40F Min Compressor Temp, 40F Max HP Backup Temp + 40F Min Compressor Temp, 40F Max HP Backup Temp + + + Detailed Example: 5F Min Compressor Temp, 35F Max HP Backup Temp + Detailed Example: 5F Min Compressor Temp, 35F Max HP Backup Temp + + + Detailed Example: 25F Min Compressor Temp, 45F Max HP Backup Temp + Detailed Example: 25F Min Compressor Temp, 45F Max HP Backup Temp + + + + + hvac_heat_pump_backup + HVAC: Heat Pump Backup Type + The type and efficiency of the heat pump backup. Use 'None' if there is no backup heating. If Backup Type is Separate Heating System, Heating System 2 is used to specify the backup. + Choice + + false + false + Integrated, Electricity, 100% Efficiency + + + None + None + + + Integrated, Electricity, 100% Efficiency + Integrated, Electricity, 100% Efficiency + + + Integrated, Natural Gas, 60% AFUE + Integrated, Natural Gas, 60% AFUE + + + Integrated, Natural Gas, 76% AFUE + Integrated, Natural Gas, 76% AFUE + + + Integrated, Natural Gas, 80% AFUE + Integrated, Natural Gas, 80% AFUE + + + Integrated, Natural Gas, 92.5% AFUE + Integrated, Natural Gas, 92.5% AFUE + + + Integrated, Natural Gas, 95% AFUE + Integrated, Natural Gas, 95% AFUE + + + Integrated, Fuel Oil, 60% AFUE + Integrated, Fuel Oil, 60% AFUE + + + Integrated, Fuel Oil, 76% AFUE + Integrated, Fuel Oil, 76% AFUE + + + Integrated, Fuel Oil, 80% AFUE + Integrated, Fuel Oil, 80% AFUE + + + Integrated, Fuel Oil, 92.5% AFUE + Integrated, Fuel Oil, 92.5% AFUE + + + Integrated, Fuel Oil, 95% AFUE + Integrated, Fuel Oil, 95% AFUE + + + Integrated, Propane, 60% AFUE + Integrated, Propane, 60% AFUE + + + Integrated, Propane, 76% AFUE + Integrated, Propane, 76% AFUE + + + Integrated, Propane, 80% AFUE + Integrated, Propane, 80% AFUE + + + Integrated, Propane, 92.5% AFUE + Integrated, Propane, 92.5% AFUE + + + Integrated, Propane, 95% AFUE + Integrated, Propane, 95% AFUE + + + Separate Heating System + Separate Heating System + + + + + hvac_heat_pump_backup_capacity + HVAC: Heat Pump Backup Capacity + The output capacity of the heat pump backup if there is integrated backup heating. + Choice + + false + false + Autosize + + + Autosize + Autosize + + + Autosize (Supplemental) + Autosize (Supplemental) + + + 5 kW + 5 kW + + + 10 kW + 10 kW + + + 15 kW + 15 kW + + + 20 kW + 20 kW + + + 25 kW + 25 kW + + + 5 kBtu/hr + 5 kBtu/hr + + + 10 kBtu/hr + 10 kBtu/hr + + + 15 kBtu/hr + 15 kBtu/hr + + + 20 kBtu/hr + 20 kBtu/hr + + + 25 kBtu/hr + 25 kBtu/hr + + + 30 kBtu/hr + 30 kBtu/hr + + + 35 kBtu/hr + 35 kBtu/hr + + + 40 kBtu/hr + 40 kBtu/hr + + + 45 kBtu/hr + 45 kBtu/hr + + + 50 kBtu/hr + 50 kBtu/hr + + + 55 kBtu/hr + 55 kBtu/hr + + + 60 kBtu/hr + 60 kBtu/hr + + + 65 kBtu/hr + 65 kBtu/hr + + + 70 kBtu/hr + 70 kBtu/hr + + + 75 kBtu/hr + 75 kBtu/hr + + + 80 kBtu/hr + 80 kBtu/hr + + + 85 kBtu/hr + 85 kBtu/hr + + + 90 kBtu/hr + 90 kBtu/hr + + + 95 kBtu/hr + 95 kBtu/hr + + + 100 kBtu/hr + 100 kBtu/hr + + + 105 kBtu/hr + 105 kBtu/hr + + + 110 kBtu/hr + 110 kBtu/hr + + + 115 kBtu/hr + 115 kBtu/hr + + + 120 kBtu/hr + 120 kBtu/hr + + + 125 kBtu/hr + 125 kBtu/hr + + + 130 kBtu/hr + 130 kBtu/hr + + + 135 kBtu/hr + 135 kBtu/hr + + + 140 kBtu/hr + 140 kBtu/hr + + + 145 kBtu/hr + 145 kBtu/hr + + + 150 kBtu/hr + 150 kBtu/hr + + + Detailed Example: Autosize, 140% Multiplier + Detailed Example: Autosize, 140% Multiplier + + + Detailed Example: Autosize, 170% Multiplier + Detailed Example: Autosize, 170% Multiplier + + + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + + + + + hvac_geothermal_loop + HVAC: Geothermal Loop + The geothermal loop configuration if there's a ground-to-air heat pump. + Choice + + false + false + Default + + + Default + Default + + + Vertical Loop, Enhanced Grout + Vertical Loop, Enhanced Grout + + + Vertical Loop, Enhanced Pipe + Vertical Loop, Enhanced Pipe + + + Vertical Loop, Enhanced Grout & Pipe + Vertical Loop, Enhanced Grout & Pipe + + + Detailed Example: Lopsided U Configuration, 10 Boreholes + Detailed Example: Lopsided U Configuration, 10 Boreholes + + + + + hvac_heating_system_2 + HVAC: Heating System 2 + The type and efficiency of the second heating system. If a heat pump is specified and the backup type is 'separate', this heating system represents the 'separate' backup heating. + Choice + false false None + + + None + None + + + Electric Resistance + Electric Resistance + + + Central Furnace, 60% AFUE + Central Furnace, 60% AFUE + + + Central Furnace, 64% AFUE + Central Furnace, 64% AFUE + + + Central Furnace, 68% AFUE + Central Furnace, 68% AFUE + + + Central Furnace, 72% AFUE + Central Furnace, 72% AFUE + + + Central Furnace, 76% AFUE + Central Furnace, 76% AFUE + + + Central Furnace, 78% AFUE + Central Furnace, 78% AFUE + + + Central Furnace, 80% AFUE + Central Furnace, 80% AFUE + + + Central Furnace, 83% AFUE + Central Furnace, 83% AFUE + + + Central Furnace, 85% AFUE + Central Furnace, 85% AFUE + + + Central Furnace, 88% AFUE + Central Furnace, 88% AFUE + + + Central Furnace, 90% AFUE + Central Furnace, 90% AFUE + + + Central Furnace, 92% AFUE + Central Furnace, 92% AFUE + + + Central Furnace, 92.5% AFUE + Central Furnace, 92.5% AFUE + + + Central Furnace, 95% AFUE + Central Furnace, 95% AFUE + + + Central Furnace, 96% AFUE + Central Furnace, 96% AFUE + + + Central Furnace, 98% AFUE + Central Furnace, 98% AFUE + + + Central Furnace, 100% AFUE + Central Furnace, 100% AFUE + + + Wall Furnace, 60% AFUE + Wall Furnace, 60% AFUE + + + Wall Furnace, 68% AFUE + Wall Furnace, 68% AFUE + + + Wall Furnace, 82% AFUE + Wall Furnace, 82% AFUE + + + Wall Furnace, 98% AFUE + Wall Furnace, 98% AFUE + + + Wall Furnace, 100% AFUE + Wall Furnace, 100% AFUE + + + Floor Furnace, 60% AFUE + Floor Furnace, 60% AFUE + + + Floor Furnace, 70% AFUE + Floor Furnace, 70% AFUE + + + Floor Furnace, 80% AFUE + Floor Furnace, 80% AFUE + + + Boiler, 60% AFUE + Boiler, 60% AFUE + + + Boiler, 72% AFUE + Boiler, 72% AFUE + + + Boiler, 76% AFUE + Boiler, 76% AFUE + + + Boiler, 78% AFUE + Boiler, 78% AFUE + + + Boiler, 80% AFUE + Boiler, 80% AFUE + + + Boiler, 83% AFUE + Boiler, 83% AFUE + + + Boiler, 85% AFUE + Boiler, 85% AFUE + + + Boiler, 88% AFUE + Boiler, 88% AFUE + + + Boiler, 90% AFUE + Boiler, 90% AFUE + + + Boiler, 92% AFUE + Boiler, 92% AFUE + + + Boiler, 92.5% AFUE + Boiler, 92.5% AFUE + + + Boiler, 95% AFUE + Boiler, 95% AFUE + + + Boiler, 96% AFUE + Boiler, 96% AFUE + + + Boiler, 98% AFUE + Boiler, 98% AFUE + + + Boiler, 100% AFUE + Boiler, 100% AFUE + + + Stove, 60% Efficiency + Stove, 60% Efficiency + + + Stove, 70% Efficiency + Stove, 70% Efficiency + + + Stove, 80% Efficiency + Stove, 80% Efficiency + + + Space Heater, 60% Efficiency + Space Heater, 60% Efficiency + + + Space Heater, 70% Efficiency + Space Heater, 70% Efficiency + + + Space Heater, 80% Efficiency + Space Heater, 80% Efficiency + + + Space Heater, 92% Efficiency + Space Heater, 92% Efficiency + + + Space Heater, 100% Efficiency + Space Heater, 100% Efficiency + + + Fireplace, 60% Efficiency + Fireplace, 60% Efficiency + + + Fireplace, 70% Efficiency + Fireplace, 70% Efficiency + + + Fireplace, 80% Efficiency + Fireplace, 80% Efficiency + + + Fireplace, 100% Efficiency + Fireplace, 100% Efficiency + + + Detailed Example: Central Furnace, 92% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Central Furnace, 92% AFUE, 600 Btu/hr Pilot Light + + + Detailed Example: Floor Furnace, 80% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Floor Furnace, 80% AFUE, 600 Btu/hr Pilot Light + + + Detailed Example: Boiler, 92% AFUE, 600 Btu/hr Pilot Light + Detailed Example: Boiler, 92% AFUE, 600 Btu/hr Pilot Light + + + + + hvac_heating_system_2_fuel + HVAC: Heating System 2 Fuel Type + The fuel type of the second heating system. Ignored for ElectricResistance. + Choice + + false + false + Electricity + + + Electricity + Electricity + + + Natural Gas + Natural Gas + + + Fuel Oil + Fuel Oil + + + Propane + Propane + + + Wood Cord + Wood Cord + + + Wood Pellets + Wood Pellets + + + Coal + Coal + + + + + hvac_heating_system_2_capacity + HVAC: Heating System 2 Capacity + The output capacity of the second heating system. + Choice + + false + false + Autosize + + + Autosize + Autosize + + + 5 kBtu/hr + 5 kBtu/hr + + + 10 kBtu/hr + 10 kBtu/hr + + + 15 kBtu/hr + 15 kBtu/hr + + + 20 kBtu/hr + 20 kBtu/hr + + + 25 kBtu/hr + 25 kBtu/hr + + + 30 kBtu/hr + 30 kBtu/hr + + + 35 kBtu/hr + 35 kBtu/hr + + + 40 kBtu/hr + 40 kBtu/hr + + + 45 kBtu/hr + 45 kBtu/hr + + + 50 kBtu/hr + 50 kBtu/hr + + + 55 kBtu/hr + 55 kBtu/hr + + + 60 kBtu/hr + 60 kBtu/hr + + + 65 kBtu/hr + 65 kBtu/hr + + + 70 kBtu/hr + 70 kBtu/hr + + + 75 kBtu/hr + 75 kBtu/hr + + + 80 kBtu/hr + 80 kBtu/hr + + + 85 kBtu/hr + 85 kBtu/hr + + + 90 kBtu/hr + 90 kBtu/hr + + + 95 kBtu/hr + 95 kBtu/hr + + + 100 kBtu/hr + 100 kBtu/hr + + + 105 kBtu/hr + 105 kBtu/hr + + + 110 kBtu/hr + 110 kBtu/hr + + + 115 kBtu/hr + 115 kBtu/hr + + + 120 kBtu/hr + 120 kBtu/hr + + + 125 kBtu/hr + 125 kBtu/hr + + + 130 kBtu/hr + 130 kBtu/hr + + + 135 kBtu/hr + 135 kBtu/hr + + + 140 kBtu/hr + 140 kBtu/hr + + + 145 kBtu/hr + 145 kBtu/hr + + + 150 kBtu/hr + 150 kBtu/hr + + + Detailed Example: Autosize, 140% Multiplier + Detailed Example: Autosize, 140% Multiplier + + + Detailed Example: Autosize, 170% Multiplier + Detailed Example: Autosize, 170% Multiplier + + + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + Detailed Example: Autosize, 90% Multiplier, 45 kBtu/hr Limit + + + Detailed Example: Autosize, 140% Multiplier, 45 kBtu/hr Limit + Detailed Example: Autosize, 140% Multiplier, 45 kBtu/hr Limit + + + + + hvac_heating_system_2_heating_load_served + HVAC: Heating System 2 Fraction Heat Load Served + The fraction of the heating load served by the second heating system. + Choice + + false + false + 25% + + + 100% + 100% + + + 95% + 95% + + + 90% + 90% + + + 85% + 85% + + + 80% + 80% + + + 75% + 75% + + + 70% + 70% + + + 65% + 65% + + + 60% + 60% + + + 55% + 55% + + + 50% + 50% + + + 45% + 45% + + + 40% + 40% + + + 35% + 35% + + + 30% + 30% + + + 25% + 25% + + + 20% + 20% + + + 15% + 15% + + + 10% + 10% + + + 5% + 5% + + + 0% + 0% + + + + + hvac_control_heating_weekday_setpoint + HVAC Control: Heating Weekday Setpoint Schedule + Specify the constant or 24-hour comma-separated weekday heating setpoint schedule. + String + F + false + false + 68 + + + hvac_control_heating_weekend_setpoint + HVAC Control: Heating Weekend Setpoint Schedule + Specify the constant or 24-hour comma-separated weekend heating setpoint schedule. + String + F + false + false + 68 + + + hvac_control_cooling_weekday_setpoint + HVAC Control: Cooling Weekday Setpoint Schedule + Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule. + String + F + false + false + 78 + + + hvac_control_cooling_weekend_setpoint + HVAC Control: Cooling Weekend Setpoint Schedule + Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule. + String + F + false + false + 78 + + + hvac_control_heating_season_period + HVAC Control: Heating Season Period + Enter a date range like 'Nov 1 - Jun 30'. Defaults to year-round heating availability. + String + + false + false + Jan 1 - Dec 31 + + + hvac_control_cooling_season_period + HVAC Control: Cooling Season Period + Enter a date range like 'Jun 1 - Oct 31'. Defaults to year-round cooling availability. + String + + false + false + Jan 1 - Dec 31 + + + hvac_ducts + HVAC Ducts + The leakage to outside and insulation level of the ducts. + Choice + + false + false + 15% Leakage, Uninsulated + + + None + None + + + 0% Leakage, Uninsulated + 0% Leakage, Uninsulated + + + 0% Leakage, R-4 + 0% Leakage, R-4 + + + 0% Leakage, R-6 + 0% Leakage, R-6 + + + 0% Leakage, R-8 + 0% Leakage, R-8 + + + 5% Leakage, Uninsulated + 5% Leakage, Uninsulated + + + 5% Leakage, R-4 + 5% Leakage, R-4 + + + 5% Leakage, R-6 + 5% Leakage, R-6 + + + 5% Leakage, R-8 + 5% Leakage, R-8 + + + 10% Leakage, Uninsulated + 10% Leakage, Uninsulated + + + 10% Leakage, R-4 + 10% Leakage, R-4 + + + 10% Leakage, R-6 + 10% Leakage, R-6 + + + 10% Leakage, R-8 + 10% Leakage, R-8 + + + 15% Leakage, Uninsulated + 15% Leakage, Uninsulated + + + 15% Leakage, R-4 + 15% Leakage, R-4 + + + 15% Leakage, R-6 + 15% Leakage, R-6 + + + 15% Leakage, R-8 + 15% Leakage, R-8 + + + 20% Leakage, Uninsulated + 20% Leakage, Uninsulated + + + 20% Leakage, R-4 + 20% Leakage, R-4 + + + 20% Leakage, R-6 + 20% Leakage, R-6 + + + 20% Leakage, R-8 + 20% Leakage, R-8 + + + 25% Leakage, Uninsulated + 25% Leakage, Uninsulated + + + 25% Leakage, R-4 + 25% Leakage, R-4 + + + 25% Leakage, R-6 + 25% Leakage, R-6 + + + 25% Leakage, R-8 + 25% Leakage, R-8 + + + 30% Leakage, Uninsulated + 30% Leakage, Uninsulated + + + 30% Leakage, R-4 + 30% Leakage, R-4 + + + 30% Leakage, R-6 + 30% Leakage, R-6 + + + 30% Leakage, R-8 + 30% Leakage, R-8 + + + 35% Leakage, Uninsulated + 35% Leakage, Uninsulated + + + 35% Leakage, R-4 + 35% Leakage, R-4 + + + 35% Leakage, R-6 + 35% Leakage, R-6 + + + 35% Leakage, R-8 + 35% Leakage, R-8 + + + 0 CFM25 per 100ft2, Uninsulated + 0 CFM25 per 100ft2, Uninsulated + + + 0 CFM25 per 100ft2, R-4 + 0 CFM25 per 100ft2, R-4 + + + 0 CFM25 per 100ft2, R-6 + 0 CFM25 per 100ft2, R-6 + + + 0 CFM25 per 100ft2, R-8 + 0 CFM25 per 100ft2, R-8 + + + 1 CFM25 per 100ft2, Uninsulated + 1 CFM25 per 100ft2, Uninsulated + + + 1 CFM25 per 100ft2, R-4 + 1 CFM25 per 100ft2, R-4 + + + 1 CFM25 per 100ft2, R-6 + 1 CFM25 per 100ft2, R-6 + + + 1 CFM25 per 100ft2, R-8 + 1 CFM25 per 100ft2, R-8 + + + 2 CFM25 per 100ft2, Uninsulated + 2 CFM25 per 100ft2, Uninsulated + + + 2 CFM25 per 100ft2, R-4 + 2 CFM25 per 100ft2, R-4 + + + 2 CFM25 per 100ft2, R-6 + 2 CFM25 per 100ft2, R-6 + + + 2 CFM25 per 100ft2, R-8 + 2 CFM25 per 100ft2, R-8 + + + 4 CFM25 per 100ft2, Uninsulated + 4 CFM25 per 100ft2, Uninsulated + + + 4 CFM25 per 100ft2, R-4 + 4 CFM25 per 100ft2, R-4 + + + 4 CFM25 per 100ft2, R-6 + 4 CFM25 per 100ft2, R-6 + + + 4 CFM25 per 100ft2, R-8 + 4 CFM25 per 100ft2, R-8 + + + 6 CFM25 per 100ft2, Uninsulated + 6 CFM25 per 100ft2, Uninsulated + + + 6 CFM25 per 100ft2, R-4 + 6 CFM25 per 100ft2, R-4 + + + 6 CFM25 per 100ft2, R-6 + 6 CFM25 per 100ft2, R-6 + + + 6 CFM25 per 100ft2, R-8 + 6 CFM25 per 100ft2, R-8 + + + 8 CFM25 per 100ft2, Uninsulated + 8 CFM25 per 100ft2, Uninsulated + + + 8 CFM25 per 100ft2, R-4 + 8 CFM25 per 100ft2, R-4 + + + 8 CFM25 per 100ft2, R-6 + 8 CFM25 per 100ft2, R-6 + + + 8 CFM25 per 100ft2, R-8 + 8 CFM25 per 100ft2, R-8 + + + 12 CFM25 per 100ft2, Uninsulated + 12 CFM25 per 100ft2, Uninsulated + + + 12 CFM25 per 100ft2, R-4 + 12 CFM25 per 100ft2, R-4 + + + 12 CFM25 per 100ft2, R-6 + 12 CFM25 per 100ft2, R-6 + + + 12 CFM25 per 100ft2, R-8 + 12 CFM25 per 100ft2, R-8 + + + Detailed Example: 4 CFM25 per 100ft2 (75% Supply), R-4 + Detailed Example: 4 CFM25 per 100ft2 (75% Supply), R-4 + + + Detailed Example: 5 CFM50 per 100ft2 (75% Supply), R-4 + Detailed Example: 5 CFM50 per 100ft2 (75% Supply), R-4 + + + Detailed Example: 250 CFM25, R-6 + Detailed Example: 250 CFM25, R-6 + + + Detailed Example: 400 CFM50 (75% Supply), R-6 + Detailed Example: 400 CFM50 (75% Supply), R-6 + + + + + hvac_ducts_supply_location + HVAC Ducts: Supply Location + The primary location of the supply ducts. The remainder of the supply ducts are assumed to be in conditioned space. Defaults based on the foundation/attic/garage type. + Choice + + false + false + Default + + + Default + Default + + + Conditioned Space + Conditioned Space + + + Basement + Basement + + + Crawlspace + Crawlspace + + + Attic + Attic + + + Garage + Garage + + + Outside + Outside + + + Exterior Wall + Exterior Wall + + + Under Slab + Under Slab + + + Roof Deck + Roof Deck + + + Manufactured Home Belly + Manufactured Home Belly + + + Detailed Example: Attic, 75% + Detailed Example: Attic, 75% + + + + + hvac_ducts_return_location + HVAC Ducts: Return Location + The primary location of the return ducts. The remainder of the return ducts are assumed to be in conditioned space. Defaults based on the foundation/attic/garage type. + Choice + + false + false + Default + + + Default + Default + + + Conditioned Space + Conditioned Space + + + Basement + Basement + + + Crawlspace + Crawlspace + + + Attic + Attic + + + Garage + Garage + + + Outside + Outside + + + Exterior Wall + Exterior Wall + + + Under Slab + Under Slab + + + Roof Deck + Roof Deck + + + Manufactured Home Belly + Manufactured Home Belly + + + Detailed Example: Attic, 75% + Detailed Example: Attic, 75% + + + + + ventilation_mechanical + Ventilation Fans: Mechanical Ventilation + The type of mechanical ventilation system used for whole building ventilation. + Choice + + false + false + None + + + None + None + + + Exhaust Only + Exhaust Only + + + Supply Only + Supply Only + + + Balanced + Balanced + + + CFIS + CFIS + + + HRV, 55% + HRV, 55% + + + HRV, 60% + HRV, 60% + + + HRV, 65% + HRV, 65% + + + HRV, 70% + HRV, 70% + + + HRV, 75% + HRV, 75% + + + HRV, 80% + HRV, 80% + + + HRV, 85% + HRV, 85% + + + ERV, 55% + ERV, 55% + + + ERV, 60% + ERV, 60% + + + ERV, 65% + ERV, 65% + + + ERV, 70% + ERV, 70% + + + ERV, 75% + ERV, 75% + + + ERV, 80% + ERV, 80% + + + ERV, 85% + ERV, 85% + + + + + ventilation_kitchen + Ventilation Fans: Kitchen Exhaust Fan + The type of kitchen exhaust fan used for local ventilation. + Choice + + false + false + None + + + None + None + + + Default + Default + + + 100 cfm, 1 hr/day + 100 cfm, 1 hr/day + + + 100 cfm, 2 hrs/day + 100 cfm, 2 hrs/day + + + 200 cfm, 1 hr/day + 200 cfm, 1 hr/day + + + 200 cfm, 2 hrs/day + 200 cfm, 2 hrs/day + + + 300 cfm, 1 hr/day + 300 cfm, 1 hr/day + + + 300 cfm, 2 hrs/day + 300 cfm, 2 hrs/day + + + Detailed Example: 100 cfm, 1.5 hrs/day @ 6pm, 30 W + Detailed Example: 100 cfm, 1.5 hrs/day @ 6pm, 30 W + + + + + ventilation_bathroom + Ventilation Fans: Bathroom Exhaust Fans + The type of bathroom exhaust fans used for local ventilation. + Choice + + false + false + None + + + None + None + + + Default + Default + + + 50 cfm/bathroom, 1 hr/day + 50 cfm/bathroom, 1 hr/day + + + 50 cfm/bathroom, 2 hrs/day + 50 cfm/bathroom, 2 hrs/day + + + 80 cfm/bathroom, 1 hr/day + 80 cfm/bathroom, 1 hr/day + + + 80 cfm/bathroom, 2 hrs/day + 80 cfm/bathroom, 2 hrs/day + + + 100 cfm/bathroom, 1 hr/day + 100 cfm/bathroom, 1 hr/day + + + 100 cfm/bathroom, 2 hrs/day + 100 cfm/bathroom, 2 hrs/day + + + Detailed Example: 50 cfm/bathroom, 1.5 hrs/day @ 7am, 15 W + Detailed Example: 50 cfm/bathroom, 1.5 hrs/day @ 7am, 15 W + + + + + ventilation_whole_house_fan + Ventilation Fans: Whole House Fan + The type of whole house fans used for seasonal cooling load reduction. + Choice + + false + false + None + + + None + None + + + 1000 cfm + 1000 cfm + + + 1500 cfm + 1500 cfm + + + 2000 cfm + 2000 cfm + + + 2500 cfm + 2500 cfm + + + 3000 cfm + 3000 cfm + + + 3500 cfm + 3500 cfm + + + 4000 cfm + 4000 cfm + + + 4500 cfm + 4500 cfm + + + 5000 cfm + 5000 cfm + + + 5500 cfm + 5500 cfm + + + 6000 cfm + 6000 cfm + + + Detailed Example: 4500 cfm, 300 W + Detailed Example: 4500 cfm, 300 W + + + + + dhw_water_heater + DHW: Water Heater + The type and efficiency of the water heater. + Choice + + false + false + Electricity, Tank, UEF 0.92 + + + None + None + + + Electricity, Tank, UEF 0.90 + Electricity, Tank, UEF 0.90 + + + Electricity, Tank, UEF 0.92 + Electricity, Tank, UEF 0.92 + + + Electricity, Tank, UEF 0.94 + Electricity, Tank, UEF 0.94 + + + Electricity, Tankless, UEF 0.94 + Electricity, Tankless, UEF 0.94 + + + Electricity, Tankless, UEF 0.98 + Electricity, Tankless, UEF 0.98 + + + Electricity, Heat Pump, UEF 3.50 + Electricity, Heat Pump, UEF 3.50 + + + Electricity, Heat Pump, UEF 3.75 + Electricity, Heat Pump, UEF 3.75 + + + Electricity, Heat Pump, UEF 4.00 + Electricity, Heat Pump, UEF 4.00 + + + Natural Gas, Tank, UEF 0.57 + Natural Gas, Tank, UEF 0.57 + + + Natural Gas, Tank, UEF 0.60 + Natural Gas, Tank, UEF 0.60 + + + Natural Gas, Tank, UEF 0.64 + Natural Gas, Tank, UEF 0.64 + + + Natural Gas, Tank, UEF 0.67 + Natural Gas, Tank, UEF 0.67 + + + Natural Gas, Tank, UEF 0.70 + Natural Gas, Tank, UEF 0.70 + + + Natural Gas, Tank, UEF 0.80 + Natural Gas, Tank, UEF 0.80 + + + Natural Gas, Tank, UEF 0.90 + Natural Gas, Tank, UEF 0.90 + + + Natural Gas, Tankless, UEF 0.82 + Natural Gas, Tankless, UEF 0.82 + + + Natural Gas, Tankless, UEF 0.93 + Natural Gas, Tankless, UEF 0.93 + + + Natural Gas, Tankless, UEF 0.96 + Natural Gas, Tankless, UEF 0.96 + + + Natural Gas, Tankless, UEF 0.98 + Natural Gas, Tankless, UEF 0.98 + + + Fuel Oil, Tank, UEF 0.61 + Fuel Oil, Tank, UEF 0.61 + + + Fuel Oil, Tank, UEF 0.64 + Fuel Oil, Tank, UEF 0.64 + + + Fuel Oil, Tank, UEF 0.67 + Fuel Oil, Tank, UEF 0.67 + + + Propane, Tank, UEF 0.57 + Propane, Tank, UEF 0.57 + + + Propane, Tank, UEF 0.60 + Propane, Tank, UEF 0.60 + + + Propane, Tank, UEF 0.64 + Propane, Tank, UEF 0.64 + + + Propane, Tank, UEF 0.67 + Propane, Tank, UEF 0.67 + + + Propane, Tank, UEF 0.70 + Propane, Tank, UEF 0.70 + + + Propane, Tank, UEF 0.80 + Propane, Tank, UEF 0.80 + + + Propane, Tank, UEF 0.90 + Propane, Tank, UEF 0.90 + + + Propane, Tankless, UEF 0.82 + Propane, Tankless, UEF 0.82 + + + Propane, Tankless, UEF 0.93 + Propane, Tankless, UEF 0.93 + + + Propane, Tankless, UEF 0.96 + Propane, Tankless, UEF 0.96 + + + Wood, Tank, UEF 0.60 + Wood, Tank, UEF 0.60 + + + Coal, Tank, UEF 0.60 + Coal, Tank, UEF 0.60 + + + Space-Heating Boiler w/ Storage Tank + Space-Heating Boiler w/ Storage Tank + + + Space-Heating Boiler w/ Tankless Coil + Space-Heating Boiler w/ Tankless Coil + + + Detailed Example: Electricity, Tank, 40 gal, EF 0.93 + Detailed Example: Electricity, Tank, 40 gal, EF 0.93 + + + Detailed Example: Electricity, Tank, UEF 0.94, 135F + Detailed Example: Electricity, Tank, UEF 0.94, 135F + + + Detailed Example: Electricity, Tankless, EF 0.96 + Detailed Example: Electricity, Tankless, EF 0.96 + + + Detailed Example: Electricity, Heat Pump, 80 gal, EF 3.1 + Detailed Example: Electricity, Heat Pump, 80 gal, EF 3.1 + + + Detailed Example: Natural Gas, Tank, 40 gal, EF 0.56, RE 0.78 + Detailed Example: Natural Gas, Tank, 40 gal, EF 0.56, RE 0.78 + + + Detailed Example: Natural Gas, Tank, 40 gal, EF 0.62, RE 0.78 + Detailed Example: Natural Gas, Tank, 40 gal, EF 0.62, RE 0.78 + + + Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59, RE 0.76 + Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59, RE 0.76 + + + Detailed Example: Natural Gas, Tankless, EF 0.95 + Detailed Example: Natural Gas, Tankless, EF 0.95 + + + + + dhw_water_heater_location + DHW: Water Heater Location + The location of the water heater. Defaults based on the foundation/garage type. + Choice + + false + false + Default + + + Default + Default + + + Conditioned Space + Conditioned Space + + + Basement + Basement + + + Garage + Garage + + + Crawlspace + Crawlspace + + + Attic + Attic + + + Other Heated Space + Other Heated Space + + + Outside + Outside + + + + + dhw_distribution + DHW: Hot Water Distribution + The type of domestic hot water distrubtion. + Choice + + false + false + Uninsulated, Standard + + + Uninsulated, Standard + Uninsulated, Standard + + + Uninsulated, Recirc, Uncontrolled + Uninsulated, Recirc, Uncontrolled + + + Uninsulated, Recirc, Timer Control + Uninsulated, Recirc, Timer Control + + + Uninsulated, Recirc, Temperature Control + Uninsulated, Recirc, Temperature Control + + + Uninsulated, Recirc, Presence Sensor Demand Control + Uninsulated, Recirc, Presence Sensor Demand Control + + + Uninsulated, Recirc, Manual Demand Control + Uninsulated, Recirc, Manual Demand Control + + + Insulated, Standard + Insulated, Standard + + + Insulated, Recirc, Uncontrolled + Insulated, Recirc, Uncontrolled + + + Insulated, Recirc, Timer Control + Insulated, Recirc, Timer Control + + + Insulated, Recirc, Temperature Control + Insulated, Recirc, Temperature Control + + + Insulated, Recirc, Presence Sensor Demand Control + Insulated, Recirc, Presence Sensor Demand Control + + + Insulated, Recirc, Manual Demand Control + Insulated, Recirc, Manual Demand Control + + + Detailed Example: Insulated, Recirc, Uncontrolled, 156.9ft Loop, 10ft Branch, 50 W + Detailed Example: Insulated, Recirc, Uncontrolled, 156.9ft Loop, 10ft Branch, 50 W + + + Detailed Example: Insulated, Recirc, Manual Demand Control, 156.9ft Loop, 10ft Branch, 50 W + Detailed Example: Insulated, Recirc, Manual Demand Control, 156.9ft Loop, 10ft Branch, 50 W + + + + + dhw_fixtures + DHW: Hot Water Fixtures + The type and usage of domestic hot water fixtures. + Choice + + false + false + Standard, 100% Usage + + + Standard, 25% Usage + Standard, 25% Usage + + + Standard, 50% Usage + Standard, 50% Usage + + + Standard, 75% Usage + Standard, 75% Usage + + + Standard, 100% Usage + Standard, 100% Usage + + + Standard, 125% Usage + Standard, 125% Usage + + + Standard, 150% Usage + Standard, 150% Usage + + + Standard, 175% Usage + Standard, 175% Usage + + + Standard, 200% Usage + Standard, 200% Usage + + + Standard, 400% Usage + Standard, 400% Usage + + + Low Flow, 25% Usage + Low Flow, 25% Usage + + + Low Flow, 50% Usage + Low Flow, 50% Usage + + + Low Flow, 75% Usage + Low Flow, 75% Usage + + + Low Flow, 100% Usage + Low Flow, 100% Usage + + + Low Flow, 125% Usage + Low Flow, 125% Usage + + + Low Flow, 150% Usage + Low Flow, 150% Usage + + + Low Flow, 175% Usage + Low Flow, 175% Usage + + + Low Flow, 200% Usage + Low Flow, 200% Usage + + + Low Flow, 400% Usage + Low Flow, 400% Usage + + + + + dhw_drain_water_heat_recovery + DHW: Drain Water Heat Reovery + The type of drain water heater recovery. + Choice + + false + false + None + + + None + None + + + 25% Efficient, Preheats Hot Only, All Showers + 25% Efficient, Preheats Hot Only, All Showers + + + 25% Efficient, Preheats Hot Only, 1 Shower + 25% Efficient, Preheats Hot Only, 1 Shower + + + 25% Efficient, Preheats Hot and Cold, All Showers + 25% Efficient, Preheats Hot and Cold, All Showers + + + 25% Efficient, Preheats Hot and Cold, 1 Shower + 25% Efficient, Preheats Hot and Cold, 1 Shower + + + 35% Efficient, Preheats Hot Only, All Showers + 35% Efficient, Preheats Hot Only, All Showers + + + 35% Efficient, Preheats Hot Only, 1 Shower + 35% Efficient, Preheats Hot Only, 1 Shower + + + 35% Efficient, Preheats Hot and Cold, All Showers + 35% Efficient, Preheats Hot and Cold, All Showers + + + 35% Efficient, Preheats Hot and Cold, 1 Shower + 35% Efficient, Preheats Hot and Cold, 1 Shower + + + 45% Efficient, Preheats Hot Only, All Showers + 45% Efficient, Preheats Hot Only, All Showers + + + 45% Efficient, Preheats Hot Only, 1 Shower + 45% Efficient, Preheats Hot Only, 1 Shower + + + 45% Efficient, Preheats Hot and Cold, All Showers + 45% Efficient, Preheats Hot and Cold, All Showers + + + 45% Efficient, Preheats Hot and Cold, 1 Shower + 45% Efficient, Preheats Hot and Cold, 1 Shower + + + 55% Efficient, Preheats Hot Only, All Showers + 55% Efficient, Preheats Hot Only, All Showers + + + 55% Efficient, Preheats Hot Only, 1 Shower + 55% Efficient, Preheats Hot Only, 1 Shower + + + 55% Efficient, Preheats Hot and Cold, All Showers + 55% Efficient, Preheats Hot and Cold, All Showers + + + 55% Efficient, Preheats Hot and Cold, 1 Shower + 55% Efficient, Preheats Hot and Cold, 1 Shower + + + Detailed Example: 54% Efficient, Preheats Hot and Cold, All Showers + Detailed Example: 54% Efficient, Preheats Hot and Cold, All Showers + + + + + dhw_solar_thermal + DHW: Solar Thermal + The size and type of the solar thermal system for domestic hot water. + Choice + + false + false + None + + + None + None + + + Indirect, Flat Plate, 40 sqft + Indirect, Flat Plate, 40 sqft + + + Indirect, Flat Plate, 64 sqft + Indirect, Flat Plate, 64 sqft + + + Direct, Flat Plate, 40 sqft + Direct, Flat Plate, 40 sqft + + + Direct. Flat Plate, 64 sqft + Direct. Flat Plate, 64 sqft + + + Direct, Integrated Collector Storage, 40 sqft + Direct, Integrated Collector Storage, 40 sqft + + + Direct, Integrated Collector Storage, 64 sqft + Direct, Integrated Collector Storage, 64 sqft + + + Direct, Evacuated Tube, 40 sqft + Direct, Evacuated Tube, 40 sqft + + + Direct, Evacuated Tube, 64 sqft + Direct, Evacuated Tube, 64 sqft + + + Thermosyphon, Flat Plate, 40 sqft + Thermosyphon, Flat Plate, 40 sqft + + + Thermosyphon, Flat Plate, 64 sqft + Thermosyphon, Flat Plate, 64 sqft + + + 60% Solar Fraction + 60% Solar Fraction + + + 65% Solar Fraction + 65% Solar Fraction + + + 70% Solar Fraction + 70% Solar Fraction + + + 75% Solar Fraction + 75% Solar Fraction + + + 80% Solar Fraction + 80% Solar Fraction + + + 85% Solar Fraction + 85% Solar Fraction + + + 90% Solar Fraction + 90% Solar Fraction + + + 95% Solar Fraction + 95% Solar Fraction + + + + + dhw_solar_thermal_direction + DHW: Solar Thermal Direction + The azimuth and tilt of the solar thermal system collectors. + Choice + + false + false + Roof Pitch, South + + + Roof Pitch, West + Roof Pitch, West + + + Roof Pitch, Southwest + Roof Pitch, Southwest + + + Roof Pitch, South + Roof Pitch, South + + + Roof Pitch, Southeast + Roof Pitch, Southeast + + + Roof Pitch, East + Roof Pitch, East + + + Roof Pitch, Northeast + Roof Pitch, Northeast + + + Roof Pitch, North + Roof Pitch, North + + + Roof Pitch, Northwest + Roof Pitch, Northwest + + + 0 Degrees + 0 Degrees + + + 5 Degrees, West + 5 Degrees, West + + + 5 Degrees, Southwest + 5 Degrees, Southwest + + + 5 Degrees, South + 5 Degrees, South + + + 5 Degrees, Southeast + 5 Degrees, Southeast + + + 5 Degrees, East + 5 Degrees, East + + + 10 Degrees, West + 10 Degrees, West + + + 10 Degrees, Southwest + 10 Degrees, Southwest + + + 10 Degrees, South + 10 Degrees, South + + + 10 Degrees, Southeast + 10 Degrees, Southeast + + + 10 Degrees, East + 10 Degrees, East + + + 15 Degrees, West + 15 Degrees, West + + + 15 Degrees, Southwest + 15 Degrees, Southwest + + + 15 Degrees, South + 15 Degrees, South + + + 15 Degrees, Southeast + 15 Degrees, Southeast + + + 15 Degrees, East + 15 Degrees, East + + + 20 Degrees, West + 20 Degrees, West + + + 20 Degrees, Southwest + 20 Degrees, Southwest + + + 20 Degrees, South + 20 Degrees, South + + + 20 Degrees, Southeast + 20 Degrees, Southeast + + + 20 Degrees, East + 20 Degrees, East + + + 25 Degrees, West + 25 Degrees, West + + + 25 Degrees, Southwest + 25 Degrees, Southwest + + + 25 Degrees, South + 25 Degrees, South + + + 25 Degrees, Southeast + 25 Degrees, Southeast + + + 25 Degrees, East + 25 Degrees, East + + + 30 Degrees, West + 30 Degrees, West + + + 30 Degrees, Southwest + 30 Degrees, Southwest + + + 30 Degrees, South + 30 Degrees, South + + + 30 Degrees, Southeast + 30 Degrees, Southeast + + + 30 Degrees, East + 30 Degrees, East + + + 35 Degrees, West + 35 Degrees, West + + + 35 Degrees, Southwest + 35 Degrees, Southwest + + + 35 Degrees, South + 35 Degrees, South + + + 35 Degrees, Southeast + 35 Degrees, Southeast + + + 35 Degrees, East + 35 Degrees, East + + + 40 Degrees, West + 40 Degrees, West + + + 40 Degrees, Southwest + 40 Degrees, Southwest + + + 40 Degrees, South + 40 Degrees, South + + + 40 Degrees, Southeast + 40 Degrees, Southeast + + + 40 Degrees, East + 40 Degrees, East + + + 45 Degrees, West + 45 Degrees, West + + + 45 Degrees, Southwest + 45 Degrees, Southwest + + + 45 Degrees, South + 45 Degrees, South + + + 45 Degrees, Southeast + 45 Degrees, Southeast + + + 45 Degrees, East + 45 Degrees, East + + + 50 Degrees, West + 50 Degrees, West + + + 50 Degrees, Southwest + 50 Degrees, Southwest + + + 50 Degrees, South + 50 Degrees, South + + + 50 Degrees, Southeast + 50 Degrees, Southeast + + + 50 Degrees, East + 50 Degrees, East + + + + + pv_system + PV: System + The size and type of the PV system. + Choice + + false + false + None + + + None + None + + + 0.5 kW + 0.5 kW + + + 1.0 kW + 1.0 kW + + + 1.5 kW + 1.5 kW + + + 2.0 kW + 2.0 kW + + + 2.5 kW + 2.5 kW + + + 3.0 kW + 3.0 kW + + + 3.5 kW + 3.5 kW + + + 4.0 kW + 4.0 kW + + + 4.5 kW + 4.5 kW + + + 5.0 kW + 5.0 kW + + + 5.5 kW + 5.5 kW + + + 6.0 kW + 6.0 kW + + + 6.5 kW + 6.5 kW + + + 7.0 kW + 7.0 kW + + + 7.5 kW + 7.5 kW + + + 8.0 kW + 8.0 kW + + + 8.5 kW + 8.5 kW + + + 9.0 kW + 9.0 kW + + + 9.5 kW + 9.5 kW + + + 10.0 kW + 10.0 kW + + + 10.5 kW + 10.5 kW + + + 11.0 kW + 11.0 kW + + + 11.5 kW + 11.5 kW + + + 12.0 kW + 12.0 kW + + + 12.5 kW + 12.5 kW + + + 13.0 kW + 13.0 kW + + + 13.5 kW + 13.5 kW + + + 14.0 kW + 14.0 kW + + + 14.5 kW + 14.5 kW + + + 15.0 kW + 15.0 kW + + + Detailed Example: 10.0 kW, Standard, 14% System Losses, 96% Inverter Efficiency + Detailed Example: 10.0 kW, Standard, 14% System Losses, 96% Inverter Efficiency + + + Detailed Example: 1.5 kW, Premium + Detailed Example: 1.5 kW, Premium + + + Detailed Example: 1.5 kW, Thin Film + Detailed Example: 1.5 kW, Thin Film + + + + + pv_system_direction + PV: System Direction + The azimuth and tilt of the PV system array. + Choice + + false + false + Roof Pitch, South + + + Roof Pitch, West + Roof Pitch, West + + + Roof Pitch, Southwest + Roof Pitch, Southwest + + + Roof Pitch, South + Roof Pitch, South + + + Roof Pitch, Southeast + Roof Pitch, Southeast + + + Roof Pitch, East + Roof Pitch, East + + + Roof Pitch, Northeast + Roof Pitch, Northeast + + + Roof Pitch, North + Roof Pitch, North + + + Roof Pitch, Northwest + Roof Pitch, Northwest + + + 0 Degrees + 0 Degrees + + + 5 Degrees, West + 5 Degrees, West + + + 5 Degrees, Southwest + 5 Degrees, Southwest + + + 5 Degrees, South + 5 Degrees, South + + + 5 Degrees, Southeast + 5 Degrees, Southeast + + + 5 Degrees, East + 5 Degrees, East + + + 10 Degrees, West + 10 Degrees, West + + + 10 Degrees, Southwest + 10 Degrees, Southwest + + + 10 Degrees, South + 10 Degrees, South + + + 10 Degrees, Southeast + 10 Degrees, Southeast + + + 10 Degrees, East + 10 Degrees, East + + + 15 Degrees, West + 15 Degrees, West + + + 15 Degrees, Southwest + 15 Degrees, Southwest + + + 15 Degrees, South + 15 Degrees, South + + + 15 Degrees, Southeast + 15 Degrees, Southeast + + + 15 Degrees, East + 15 Degrees, East + + + 20 Degrees, West + 20 Degrees, West + + + 20 Degrees, Southwest + 20 Degrees, Southwest + + + 20 Degrees, South + 20 Degrees, South + + + 20 Degrees, Southeast + 20 Degrees, Southeast + + + 20 Degrees, East + 20 Degrees, East + + + 25 Degrees, West + 25 Degrees, West + + + 25 Degrees, Southwest + 25 Degrees, Southwest + + + 25 Degrees, South + 25 Degrees, South + + + 25 Degrees, Southeast + 25 Degrees, Southeast + + + 25 Degrees, East + 25 Degrees, East + + + 30 Degrees, West + 30 Degrees, West + + + 30 Degrees, Southwest + 30 Degrees, Southwest + + + 30 Degrees, South + 30 Degrees, South + + + 30 Degrees, Southeast + 30 Degrees, Southeast + + + 30 Degrees, East + 30 Degrees, East + + + 35 Degrees, West + 35 Degrees, West + + + 35 Degrees, Southwest + 35 Degrees, Southwest + + + 35 Degrees, South + 35 Degrees, South + + + 35 Degrees, Southeast + 35 Degrees, Southeast + + + 35 Degrees, East + 35 Degrees, East + + + 40 Degrees, West + 40 Degrees, West + + + 40 Degrees, Southwest + 40 Degrees, Southwest + + + 40 Degrees, South + 40 Degrees, South + + + 40 Degrees, Southeast + 40 Degrees, Southeast + + + 40 Degrees, East + 40 Degrees, East + + + 45 Degrees, West + 45 Degrees, West + + + 45 Degrees, Southwest + 45 Degrees, Southwest + + + 45 Degrees, South + 45 Degrees, South + + + 45 Degrees, Southeast + 45 Degrees, Southeast + + + 45 Degrees, East + 45 Degrees, East + + + 50 Degrees, West + 50 Degrees, West + + + 50 Degrees, Southwest + 50 Degrees, Southwest + + + 50 Degrees, South + 50 Degrees, South + + + 50 Degrees, Southeast + 50 Degrees, Southeast + + + 50 Degrees, East + 50 Degrees, East + + + + + pv_system_2 + PV: System 2 + The size and type of the second PV system. + Choice + + false + false + None + + + None + None + + + 0.5 kW + 0.5 kW + + + 1.0 kW + 1.0 kW + + + 1.5 kW + 1.5 kW + + + 2.0 kW + 2.0 kW + + + 2.5 kW + 2.5 kW + + + 3.0 kW + 3.0 kW + + + 3.5 kW + 3.5 kW + + + 4.0 kW + 4.0 kW + + + 4.5 kW + 4.5 kW + + + 5.0 kW + 5.0 kW + + + 5.5 kW + 5.5 kW + + + 6.0 kW + 6.0 kW + + + 6.5 kW + 6.5 kW + + + 7.0 kW + 7.0 kW + + + 7.5 kW + 7.5 kW + + + 8.0 kW + 8.0 kW + + + 8.5 kW + 8.5 kW + + + 9.0 kW + 9.0 kW + + + 9.5 kW + 9.5 kW + + + 10.0 kW + 10.0 kW + + + 10.5 kW + 10.5 kW + + + 11.0 kW + 11.0 kW + + + 11.5 kW + 11.5 kW + + + 12.0 kW + 12.0 kW + + + 12.5 kW + 12.5 kW + + + 13.0 kW + 13.0 kW + + + 13.5 kW + 13.5 kW + + + 14.0 kW + 14.0 kW + + + 14.5 kW + 14.5 kW + + + 15.0 kW + 15.0 kW + + + Detailed Example: 10.0 kW, Standard, 14% System Losses + Detailed Example: 10.0 kW, Standard, 14% System Losses + + + Detailed Example: 1.5 kW, Premium + Detailed Example: 1.5 kW, Premium + + + Detailed Example: 1.5 kW, Thin Film + Detailed Example: 1.5 kW, Thin Film + + + + + pv_system_2_direction + PV: System 2 Direction + The azimuth and tilt of the second PV system array. + Choice + + false + false + Roof Pitch, South + + + Roof Pitch, West + Roof Pitch, West + + + Roof Pitch, Southwest + Roof Pitch, Southwest + + + Roof Pitch, South + Roof Pitch, South + + + Roof Pitch, Southeast + Roof Pitch, Southeast + + + Roof Pitch, East + Roof Pitch, East + + + Roof Pitch, Northeast + Roof Pitch, Northeast + + + Roof Pitch, North + Roof Pitch, North + + + Roof Pitch, Northwest + Roof Pitch, Northwest + + + 0 Degrees + 0 Degrees + + + 5 Degrees, West + 5 Degrees, West + + + 5 Degrees, Southwest + 5 Degrees, Southwest + + + 5 Degrees, South + 5 Degrees, South + + + 5 Degrees, Southeast + 5 Degrees, Southeast + + + 5 Degrees, East + 5 Degrees, East + + + 10 Degrees, West + 10 Degrees, West + + + 10 Degrees, Southwest + 10 Degrees, Southwest + + + 10 Degrees, South + 10 Degrees, South + + + 10 Degrees, Southeast + 10 Degrees, Southeast + + + 10 Degrees, East + 10 Degrees, East + + + 15 Degrees, West + 15 Degrees, West + + + 15 Degrees, Southwest + 15 Degrees, Southwest + + + 15 Degrees, South + 15 Degrees, South + + + 15 Degrees, Southeast + 15 Degrees, Southeast + + + 15 Degrees, East + 15 Degrees, East + + + 20 Degrees, West + 20 Degrees, West + + + 20 Degrees, Southwest + 20 Degrees, Southwest + + + 20 Degrees, South + 20 Degrees, South + + + 20 Degrees, Southeast + 20 Degrees, Southeast + + + 20 Degrees, East + 20 Degrees, East + + + 25 Degrees, West + 25 Degrees, West + + + 25 Degrees, Southwest + 25 Degrees, Southwest + + + 25 Degrees, South + 25 Degrees, South + + + 25 Degrees, Southeast + 25 Degrees, Southeast + + + 25 Degrees, East + 25 Degrees, East + + + 30 Degrees, West + 30 Degrees, West + + + 30 Degrees, Southwest + 30 Degrees, Southwest + + + 30 Degrees, South + 30 Degrees, South + + + 30 Degrees, Southeast + 30 Degrees, Southeast + + + 30 Degrees, East + 30 Degrees, East + + + 35 Degrees, West + 35 Degrees, West + + + 35 Degrees, Southwest + 35 Degrees, Southwest + + + 35 Degrees, South + 35 Degrees, South + + + 35 Degrees, Southeast + 35 Degrees, Southeast + + + 35 Degrees, East + 35 Degrees, East + + + 40 Degrees, West + 40 Degrees, West + + + 40 Degrees, Southwest + 40 Degrees, Southwest + + + 40 Degrees, South + 40 Degrees, South + + + 40 Degrees, Southeast + 40 Degrees, Southeast + + + 40 Degrees, East + 40 Degrees, East + + + 45 Degrees, West + 45 Degrees, West + + + 45 Degrees, Southwest + 45 Degrees, Southwest + + + 45 Degrees, South + 45 Degrees, South + + + 45 Degrees, Southeast + 45 Degrees, Southeast + + + 45 Degrees, East + 45 Degrees, East + + + 50 Degrees, West + 50 Degrees, West + + + 50 Degrees, Southwest + 50 Degrees, Southwest + + + 50 Degrees, South + 50 Degrees, South + + + 50 Degrees, Southeast + 50 Degrees, Southeast + + + 50 Degrees, East + 50 Degrees, East + + + + + battery + Battery + The size and type of battery storage. + Choice + + false + false + None + + + None + None + + + 5.0 kWh + 5.0 kWh + + + 7.5 kWh + 7.5 kWh + + + 10.0 kWh + 10.0 kWh + + + 12.5 kWh + 12.5 kWh + + + 15.0 kWh + 15.0 kWh + + + 17.5 kWh + 17.5 kWh + + + 20.0 kWh + 20.0 kWh + + + Detailed Example: 20.0 kWh, 6 kW, Garage + Detailed Example: 20.0 kWh, 6 kW, Garage + + + Detailed Example: 20.0 kWh, 6 kW, Outside + Detailed Example: 20.0 kWh, 6 kW, Outside + + + Detailed Example: 20.0 kWh, 6 kW, Outside, 80% Efficiency + Detailed Example: 20.0 kWh, 6 kW, Outside, 80% Efficiency + + + + + electric_vehicle + Electric Vehicle + The type of battery electric vehicle. + Choice + + false + false + None + + + None + None + + + Compact, 200 Mile Range, 1000 miles/yr + Compact, 200 Mile Range, 1000 miles/yr + + + Compact, 200 Mile Range, 3000 miles/yr + Compact, 200 Mile Range, 3000 miles/yr + + + Compact, 200 Mile Range, 5000 miles/yr + Compact, 200 Mile Range, 5000 miles/yr + + + Compact, 200 Mile Range, 7000 miles/yr + Compact, 200 Mile Range, 7000 miles/yr + + + Compact, 200 Mile Range, 9000 miles/yr + Compact, 200 Mile Range, 9000 miles/yr + + + Compact, 200 Mile Range, 11000 miles/yr + Compact, 200 Mile Range, 11000 miles/yr + + + Compact, 200 Mile Range, 13000 miles/yr + Compact, 200 Mile Range, 13000 miles/yr + + + Compact, 200 Mile Range, 15000 miles/yr + Compact, 200 Mile Range, 15000 miles/yr + + + Compact, 200 Mile Range, 17000 miles/yr + Compact, 200 Mile Range, 17000 miles/yr + + + Compact, 200 Mile Range, 19000 miles/yr + Compact, 200 Mile Range, 19000 miles/yr + + + Compact, 200 Mile Range, 22500 miles/yr + Compact, 200 Mile Range, 22500 miles/yr + + + Compact, 300 Mile Range, 1000 miles/yr + Compact, 300 Mile Range, 1000 miles/yr + + + Compact, 300 Mile Range, 3000 miles/yr + Compact, 300 Mile Range, 3000 miles/yr + + + Compact, 300 Mile Range, 5000 miles/yr + Compact, 300 Mile Range, 5000 miles/yr + + + Compact, 300 Mile Range, 7000 miles/yr + Compact, 300 Mile Range, 7000 miles/yr + + + Compact, 300 Mile Range, 9000 miles/yr + Compact, 300 Mile Range, 9000 miles/yr + + + Compact, 300 Mile Range, 11000 miles/yr + Compact, 300 Mile Range, 11000 miles/yr + + + Compact, 300 Mile Range, 13000 miles/yr + Compact, 300 Mile Range, 13000 miles/yr + + + Compact, 300 Mile Range, 15000 miles/yr + Compact, 300 Mile Range, 15000 miles/yr + + + Compact, 300 Mile Range, 17000 miles/yr + Compact, 300 Mile Range, 17000 miles/yr + + + Compact, 300 Mile Range, 19000 miles/yr + Compact, 300 Mile Range, 19000 miles/yr + + + Compact, 300 Mile Range, 22500 miles/yr + Compact, 300 Mile Range, 22500 miles/yr + + + Midsize, 200 Mile Range, 1000 miles/yr + Midsize, 200 Mile Range, 1000 miles/yr + + + Midsize, 200 Mile Range, 3000 miles/yr + Midsize, 200 Mile Range, 3000 miles/yr + + + Midsize, 200 Mile Range, 5000 miles/yr + Midsize, 200 Mile Range, 5000 miles/yr + + + Midsize, 200 Mile Range, 7000 miles/yr + Midsize, 200 Mile Range, 7000 miles/yr + + + Midsize, 200 Mile Range, 9000 miles/yr + Midsize, 200 Mile Range, 9000 miles/yr + + + Midsize, 200 Mile Range, 11000 miles/yr + Midsize, 200 Mile Range, 11000 miles/yr + + + Midsize, 200 Mile Range, 13000 miles/yr + Midsize, 200 Mile Range, 13000 miles/yr + + + Midsize, 200 Mile Range, 15000 miles/yr + Midsize, 200 Mile Range, 15000 miles/yr + + + Midsize, 200 Mile Range, 17000 miles/yr + Midsize, 200 Mile Range, 17000 miles/yr + + + Midsize, 200 Mile Range, 19000 miles/yr + Midsize, 200 Mile Range, 19000 miles/yr + + + Midsize, 200 Mile Range, 22500 miles/yr + Midsize, 200 Mile Range, 22500 miles/yr + + + Midsize, 300 Mile Range, 1000 miles/yr + Midsize, 300 Mile Range, 1000 miles/yr + + + Midsize, 300 Mile Range, 3000 miles/yr + Midsize, 300 Mile Range, 3000 miles/yr + + + Midsize, 300 Mile Range, 5000 miles/yr + Midsize, 300 Mile Range, 5000 miles/yr + + + Midsize, 300 Mile Range, 7000 miles/yr + Midsize, 300 Mile Range, 7000 miles/yr + + + Midsize, 300 Mile Range, 9000 miles/yr + Midsize, 300 Mile Range, 9000 miles/yr + + + Midsize, 300 Mile Range, 11000 miles/yr + Midsize, 300 Mile Range, 11000 miles/yr + + + Midsize, 300 Mile Range, 13000 miles/yr + Midsize, 300 Mile Range, 13000 miles/yr + + + Midsize, 300 Mile Range, 15000 miles/yr + Midsize, 300 Mile Range, 15000 miles/yr + + + Midsize, 300 Mile Range, 17000 miles/yr + Midsize, 300 Mile Range, 17000 miles/yr + + + Midsize, 300 Mile Range, 19000 miles/yr + Midsize, 300 Mile Range, 19000 miles/yr + + + Midsize, 300 Mile Range, 22500 miles/yr + Midsize, 300 Mile Range, 22500 miles/yr + + + Pickup, 200 Mile Range, 1000 miles/yr + Pickup, 200 Mile Range, 1000 miles/yr + + + Pickup, 200 Mile Range, 3000 miles/yr + Pickup, 200 Mile Range, 3000 miles/yr + + + Pickup, 200 Mile Range, 5000 miles/yr + Pickup, 200 Mile Range, 5000 miles/yr + + + Pickup, 200 Mile Range, 7000 miles/yr + Pickup, 200 Mile Range, 7000 miles/yr + + + Pickup, 200 Mile Range, 9000 miles/yr + Pickup, 200 Mile Range, 9000 miles/yr + + + Pickup, 200 Mile Range, 11000 miles/yr + Pickup, 200 Mile Range, 11000 miles/yr + + + Pickup, 200 Mile Range, 13000 miles/yr + Pickup, 200 Mile Range, 13000 miles/yr + + + Pickup, 200 Mile Range, 15000 miles/yr + Pickup, 200 Mile Range, 15000 miles/yr + + + Pickup, 200 Mile Range, 17000 miles/yr + Pickup, 200 Mile Range, 17000 miles/yr + + + Pickup, 200 Mile Range, 19000 miles/yr + Pickup, 200 Mile Range, 19000 miles/yr + + + Pickup, 200 Mile Range, 22500 miles/yr + Pickup, 200 Mile Range, 22500 miles/yr + + + Pickup, 300 Mile Range, 1000 miles/yr + Pickup, 300 Mile Range, 1000 miles/yr + + + Pickup, 300 Mile Range, 3000 miles/yr + Pickup, 300 Mile Range, 3000 miles/yr + + + Pickup, 300 Mile Range, 5000 miles/yr + Pickup, 300 Mile Range, 5000 miles/yr + + + Pickup, 300 Mile Range, 7000 miles/yr + Pickup, 300 Mile Range, 7000 miles/yr + + + Pickup, 300 Mile Range, 9000 miles/yr + Pickup, 300 Mile Range, 9000 miles/yr + + + Pickup, 300 Mile Range, 11000 miles/yr + Pickup, 300 Mile Range, 11000 miles/yr + + + Pickup, 300 Mile Range, 13000 miles/yr + Pickup, 300 Mile Range, 13000 miles/yr + + + Pickup, 300 Mile Range, 15000 miles/yr + Pickup, 300 Mile Range, 15000 miles/yr + + + Pickup, 300 Mile Range, 17000 miles/yr + Pickup, 300 Mile Range, 17000 miles/yr + + + Pickup, 300 Mile Range, 19000 miles/yr + Pickup, 300 Mile Range, 19000 miles/yr + + + Pickup, 300 Mile Range, 22500 miles/yr + Pickup, 300 Mile Range, 22500 miles/yr + + + SUV, 200 Mile Range, 1000 miles/yr + SUV, 200 Mile Range, 1000 miles/yr + + + SUV, 200 Mile Range, 3000 miles/yr + SUV, 200 Mile Range, 3000 miles/yr + + + SUV, 200 Mile Range, 5000 miles/yr + SUV, 200 Mile Range, 5000 miles/yr + + + SUV, 200 Mile Range, 7000 miles/yr + SUV, 200 Mile Range, 7000 miles/yr + + + SUV, 200 Mile Range, 9000 miles/yr + SUV, 200 Mile Range, 9000 miles/yr + + + SUV, 200 Mile Range, 11000 miles/yr + SUV, 200 Mile Range, 11000 miles/yr + + + SUV, 200 Mile Range, 13000 miles/yr + SUV, 200 Mile Range, 13000 miles/yr + + + SUV, 200 Mile Range, 15000 miles/yr + SUV, 200 Mile Range, 15000 miles/yr + + + SUV, 200 Mile Range, 17000 miles/yr + SUV, 200 Mile Range, 17000 miles/yr + + + SUV, 200 Mile Range, 19000 miles/yr + SUV, 200 Mile Range, 19000 miles/yr + + + SUV, 200 Mile Range, 22500 miles/yr + SUV, 200 Mile Range, 22500 miles/yr + + + SUV, 300 Mile Range, 1000 miles/yr + SUV, 300 Mile Range, 1000 miles/yr + + + SUV, 300 Mile Range, 3000 miles/yr + SUV, 300 Mile Range, 3000 miles/yr + + + SUV, 300 Mile Range, 5000 miles/yr + SUV, 300 Mile Range, 5000 miles/yr + + + SUV, 300 Mile Range, 7000 miles/yr + SUV, 300 Mile Range, 7000 miles/yr + + + SUV, 300 Mile Range, 9000 miles/yr + SUV, 300 Mile Range, 9000 miles/yr + + + SUV, 300 Mile Range, 11000 miles/yr + SUV, 300 Mile Range, 11000 miles/yr + + + SUV, 300 Mile Range, 13000 miles/yr + SUV, 300 Mile Range, 13000 miles/yr + + + SUV, 300 Mile Range, 15000 miles/yr + SUV, 300 Mile Range, 15000 miles/yr + + + SUV, 300 Mile Range, 17000 miles/yr + SUV, 300 Mile Range, 17000 miles/yr + + + SUV, 300 Mile Range, 19000 miles/yr + SUV, 300 Mile Range, 19000 miles/yr + + + SUV, 300 Mile Range, 22500 miles/yr + SUV, 300 Mile Range, 22500 miles/yr + + + Detailed Example: 100 kWh battery, 0.25 kWh/mile + Detailed Example: 100 kWh battery, 0.25 kWh/mile + + + Detailed Example: 100 kWh battery, 4.0 miles/kWh + Detailed Example: 100 kWh battery, 4.0 miles/kWh + + + Detailed Example: 100 kWh battery, 135.0 mpge + Detailed Example: 100 kWh battery, 135.0 mpge + + + + + electric_vehicle_charger + Electric Vehicle: Charger + The type and usage of electric vehicle charger. + Choice + + false + false + None + + + None + None + + + Level 1, 10% Charging at Home + Level 1, 10% Charging at Home + + + Level 1, 30% Charging at Home + Level 1, 30% Charging at Home + + + Level 1, 50% Charging at Home + Level 1, 50% Charging at Home + + + Level 1, 70% Charging at Home + Level 1, 70% Charging at Home + + + Level 1, 90% Charging at Home + Level 1, 90% Charging at Home + + + Level 1, 100% Charging at Home + Level 1, 100% Charging at Home + + + Level 2, 10% Charging at Home + Level 2, 10% Charging at Home + + + Level 2, 30% Charging at Home + Level 2, 30% Charging at Home + + + Level 2, 50% Charging at Home + Level 2, 50% Charging at Home + + + Level 2, 70% Charging at Home + Level 2, 70% Charging at Home + + + Level 2, 90% Charging at Home + Level 2, 90% Charging at Home + + + Level 2, 100% Charging at Home + Level 2, 100% Charging at Home + + + Detailed Example: Level 2, 7000 W, 75% Charging at Home + Detailed Example: Level 2, 7000 W, 75% Charging at Home + + + + + appliance_clothes_washer + Appliances: Clothes Washer + The type and usage of clothes washer. + Choice + + false + false + Standard, 2008-2017, 100% Usage + + + None + None + + + Standard, 2008-2017, 50% Usage + Standard, 2008-2017, 50% Usage + + + Standard, 2008-2017, 75% Usage + Standard, 2008-2017, 75% Usage + + + Standard, 2008-2017, 100% Usage + Standard, 2008-2017, 100% Usage + + + Standard, 2008-2017, 150% Usage + Standard, 2008-2017, 150% Usage + + + Standard, 2008-2017, 200% Usage + Standard, 2008-2017, 200% Usage + + + Standard, 2018-present, 50% Usage + Standard, 2018-present, 50% Usage + + + Standard, 2018-present, 75% Usage + Standard, 2018-present, 75% Usage + + + Standard, 2018-present, 100% Usage + Standard, 2018-present, 100% Usage + + + Standard, 2018-present, 150% Usage + Standard, 2018-present, 150% Usage + + + Standard, 2018-present, 200% Usage + Standard, 2018-present, 200% Usage + + + EnergyStar, 2006-2017, 50% Usage + EnergyStar, 2006-2017, 50% Usage + + + EnergyStar, 2006-2017, 75% Usage + EnergyStar, 2006-2017, 75% Usage + + + EnergyStar, 2006-2017, 100% Usage + EnergyStar, 2006-2017, 100% Usage + + + EnergyStar, 2006-2017, 150% Usage + EnergyStar, 2006-2017, 150% Usage + + + EnergyStar, 2006-2017, 200% Usage + EnergyStar, 2006-2017, 200% Usage + + + EnergyStar, 2018-present, 50% Usage + EnergyStar, 2018-present, 50% Usage + + + EnergyStar, 2018-present, 75% Usage + EnergyStar, 2018-present, 75% Usage + + + EnergyStar, 2018-present, 100% Usage + EnergyStar, 2018-present, 100% Usage + + + EnergyStar, 2018-present, 150% Usage + EnergyStar, 2018-present, 150% Usage + + + EnergyStar, 2018-present, 200% Usage + EnergyStar, 2018-present, 200% Usage + + + CEE Tier II, 2018, 50% Usage + CEE Tier II, 2018, 50% Usage + + + CEE Tier II, 2018, 75% Usage + CEE Tier II, 2018, 75% Usage + + + CEE Tier II, 2018, 100% Usage + CEE Tier II, 2018, 100% Usage + + + CEE Tier II, 2018, 150% Usage + CEE Tier II, 2018, 150% Usage + + + CEE Tier II, 2018, 200% Usage + CEE Tier II, 2018, 200% Usage + + + Detailed Example: ERI Reference 2006 + Detailed Example: ERI Reference 2006 + + + Detailed Example: MEF 1.65 + Detailed Example: MEF 1.65 + + + Detailed Example: Standard, 2008-2017, Conditioned Basement + Detailed Example: Standard, 2008-2017, Conditioned Basement + + + Detailed Example: Standard, 2008-2017, Unconditioned Basement + Detailed Example: Standard, 2008-2017, Unconditioned Basement + + + Detailed Example: Standard, 2008-2017, Garage + Detailed Example: Standard, 2008-2017, Garage + + + + + appliance_clothes_dryer + Appliances: Clothes Dryer + The type and usage of clothes dryer. + Choice + + false + false + Electricity, Standard, 100% Usage + + + None + None + + + Electricity, Standard, 50% Usage + Electricity, Standard, 50% Usage + + + Electricity, Standard, 75% Usage + Electricity, Standard, 75% Usage + + + Electricity, Standard, 100% Usage + Electricity, Standard, 100% Usage + + + Electricity, Standard, 150% Usage + Electricity, Standard, 150% Usage + + + Electricity, Standard, 200% Usage + Electricity, Standard, 200% Usage + + + Electricity, Premium, 50% Usage + Electricity, Premium, 50% Usage + + + Electricity, Premium, 75% Usage + Electricity, Premium, 75% Usage + + + Electricity, Premium, 100% Usage + Electricity, Premium, 100% Usage + + + Electricity, Premium, 150% Usage + Electricity, Premium, 150% Usage + + + Electricity, Premium, 200% Usage + Electricity, Premium, 200% Usage + + + Electricity, Heat Pump, 50% Usage + Electricity, Heat Pump, 50% Usage + + + Electricity, Heat Pump, 75% Usage + Electricity, Heat Pump, 75% Usage + + + Electricity, Heat Pump, 100% Usage + Electricity, Heat Pump, 100% Usage + + + Electricity, Heat Pump, 150% Usage + Electricity, Heat Pump, 150% Usage + + + Electricity, Heat Pump, 200% Usage + Electricity, Heat Pump, 200% Usage + + + Natural Gas, Standard, 50% Usage + Natural Gas, Standard, 50% Usage + + + Natural Gas, Standard, 75% Usage + Natural Gas, Standard, 75% Usage + + + Natural Gas, Standard, 100% Usage + Natural Gas, Standard, 100% Usage + + + Natural Gas, Standard, 150% Usage + Natural Gas, Standard, 150% Usage + + + Natural Gas, Standard, 200% Usage + Natural Gas, Standard, 200% Usage + + + Natural Gas, Premium, 50% Usage + Natural Gas, Premium, 50% Usage + + + Natural Gas, Premium, 75% Usage + Natural Gas, Premium, 75% Usage + + + Natural Gas, Premium, 100% Usage + Natural Gas, Premium, 100% Usage + + + Natural Gas, Premium, 150% Usage + Natural Gas, Premium, 150% Usage + + + Natural Gas, Premium, 200% Usage + Natural Gas, Premium, 200% Usage + + + Propane, Standard, 50% Usage + Propane, Standard, 50% Usage + + + Propane, Standard, 75% Usage + Propane, Standard, 75% Usage + + + Propane, Standard, 100% Usage + Propane, Standard, 100% Usage + + + Propane, Standard, 150% Usage + Propane, Standard, 150% Usage + + + Propane, Standard, 200% Usage + Propane, Standard, 200% Usage + + + Detailed Example: Electricity, ERI Reference 2006 + Detailed Example: Electricity, ERI Reference 2006 + + + Detailed Example: Natural Gas, ERI Reference 2006 + Detailed Example: Natural Gas, ERI Reference 2006 + + + Detailed Example: Electricity, EF 4.29 + Detailed Example: Electricity, EF 4.29 + + + Detailed Example: Electricity, Standard, Conditioned Basement + Detailed Example: Electricity, Standard, Conditioned Basement + + + Detailed Example: Electricity, Standard, Unconditioned Basement + Detailed Example: Electricity, Standard, Unconditioned Basement + + + Detailed Example: Electricity, Standard, Garage + Detailed Example: Electricity, Standard, Garage + + + + + appliance_dishwasher + Appliances: Dishwasher + The type and usage of dishwasher. + Choice + + false + false + Federal Minimum, Standard, 100% Usage + + + None + None + + + Federal Minimum, Standard, 50% Usage + Federal Minimum, Standard, 50% Usage + + + Federal Minimum, Standard, 75% Usage + Federal Minimum, Standard, 75% Usage + + + Federal Minimum, Standard, 100% Usage + Federal Minimum, Standard, 100% Usage + + + Federal Minimum, Standard, 150% Usage + Federal Minimum, Standard, 150% Usage + + + Federal Minimum, Standard, 200% Usage + Federal Minimum, Standard, 200% Usage + + + EnergyStar, Standard, 50% Usage + EnergyStar, Standard, 50% Usage + + + EnergyStar, Standard, 75% Usage + EnergyStar, Standard, 75% Usage + + + EnergyStar, Standard, 100% Usage + EnergyStar, Standard, 100% Usage + + + EnergyStar, Standard, 150% Usage + EnergyStar, Standard, 150% Usage + + + EnergyStar, Standard, 200% Usage + EnergyStar, Standard, 200% Usage + + + EnergyStar, Compact, 50% Usage + EnergyStar, Compact, 50% Usage + + + EnergyStar, Compact, 75% Usage + EnergyStar, Compact, 75% Usage + + + EnergyStar, Compact, 100% Usage + EnergyStar, Compact, 100% Usage + + + EnergyStar, Compact, 150% Usage + EnergyStar, Compact, 150% Usage + + + EnergyStar, Compact, 200% Usage + EnergyStar, Compact, 200% Usage + + + Detailed Example: ERI Reference 2006 + Detailed Example: ERI Reference 2006 + + + Detailed Example: EF 0.7, Compact + Detailed Example: EF 0.7, Compact + + + Detailed Example: Federal Minimum, Standard, Conditioned Basement + Detailed Example: Federal Minimum, Standard, Conditioned Basement + + + Detailed Example: Federal Minimum, Standard, Unconditioned Basement + Detailed Example: Federal Minimum, Standard, Unconditioned Basement + + + Detailed Example: Federal Minimum, Standard, Garage + Detailed Example: Federal Minimum, Standard, Garage + + + + + appliance_refrigerator + Appliances: Refrigerator + The type and usage of refrigerator. + Choice + + false + false + 434 kWh/yr, 100% Usage + + + None + None + + + 1139 kWh/yr, 90% Usage + 1139 kWh/yr, 90% Usage + + + 1139 kWh/yr, 100% Usage + 1139 kWh/yr, 100% Usage + + + 1139 kWh/yr, 110% Usage + 1139 kWh/yr, 110% Usage + + + 748 kWh/yr, 90% Usage + 748 kWh/yr, 90% Usage + + + 748 kWh/yr, 100% Usage + 748 kWh/yr, 100% Usage + + + 748 kWh/yr, 110% Usage + 748 kWh/yr, 110% Usage + + + 727 kWh/yr, 90% Usage + 727 kWh/yr, 90% Usage + + + 727 kWh/yr, 100% Usage + 727 kWh/yr, 100% Usage + + + 727 kWh/yr, 110% Usage + 727 kWh/yr, 110% Usage + + + 650 kWh/yr, 90% Usage + 650 kWh/yr, 90% Usage + + + 650 kWh/yr, 100% Usage + 650 kWh/yr, 100% Usage + + + 650 kWh/yr, 110% Usage + 650 kWh/yr, 110% Usage + + + 574 kWh/yr, 90% Usage + 574 kWh/yr, 90% Usage + + + 574 kWh/yr, 100% Usage + 574 kWh/yr, 100% Usage + + + 574 kWh/yr, 110% Usage + 574 kWh/yr, 110% Usage + + + 547 kWh/yr, 90% Usage + 547 kWh/yr, 90% Usage + + + 547 kWh/yr, 100% Usage + 547 kWh/yr, 100% Usage + + + 547 kWh/yr, 110% Usage + 547 kWh/yr, 110% Usage + + + 480 kWh/yr, 90% Usage + 480 kWh/yr, 90% Usage + + + 480 kWh/yr, 100% Usage + 480 kWh/yr, 100% Usage + + + 480 kWh/yr, 110% Usage + 480 kWh/yr, 110% Usage + + + 458 kWh/yr, 90% Usage + 458 kWh/yr, 90% Usage + + + 458 kWh/yr, 100% Usage + 458 kWh/yr, 100% Usage + + + 458 kWh/yr, 110% Usage + 458 kWh/yr, 110% Usage + + + 434 kWh/yr, 90% Usage + 434 kWh/yr, 90% Usage + + + 434 kWh/yr, 100% Usage + 434 kWh/yr, 100% Usage + + + 434 kWh/yr, 110% Usage + 434 kWh/yr, 110% Usage + + + 384 kWh/yr, 90% Usage + 384 kWh/yr, 90% Usage + + + 384 kWh/yr, 100% Usage + 384 kWh/yr, 100% Usage + + + 384 kWh/yr, 110% Usage + 384 kWh/yr, 110% Usage + + + 348 kWh/yr, 90% Usage + 348 kWh/yr, 90% Usage + + + 348 kWh/yr, 100% Usage + 348 kWh/yr, 100% Usage + + + 348 kWh/yr, 110% Usage + 348 kWh/yr, 110% Usage + + + Detailed Example: ERI Reference 2006, 2-Bedroom Home + Detailed Example: ERI Reference 2006, 2-Bedroom Home + + + Detailed Example: ERI Reference 2006, 3-Bedroom Home + Detailed Example: ERI Reference 2006, 3-Bedroom Home + + + Detailed Example: ERI Reference 2006, 4-Bedroom Home + Detailed Example: ERI Reference 2006, 4-Bedroom Home + + + Detailed Example: 650 kWh/yr, Conditioned Basement + Detailed Example: 650 kWh/yr, Conditioned Basement + + + Detailed Example: 650 kWh/yr, Unconditioned Basement + Detailed Example: 650 kWh/yr, Unconditioned Basement + + + Detailed Example: 650 kWh/yr, Garage + Detailed Example: 650 kWh/yr, Garage + + + + + appliance_extra_refrigerator + Appliances: Extra Refrigerator + The type and usage of extra refrigerator. + Choice + + false + false + None + + + None + None + + + 1139 kWh/yr, 90% Usage + 1139 kWh/yr, 90% Usage + + + 1139 kWh/yr, 100% Usage + 1139 kWh/yr, 100% Usage + + + 1139 kWh/yr, 110% Usage + 1139 kWh/yr, 110% Usage + + + 748 kWh/yr, 90% Usage + 748 kWh/yr, 90% Usage + + + 748 kWh/yr, 100% Usage + 748 kWh/yr, 100% Usage + + + 748 kWh/yr, 110% Usage + 748 kWh/yr, 110% Usage + + + 727 kWh/yr, 90% Usage + 727 kWh/yr, 90% Usage + + + 727 kWh/yr, 100% Usage + 727 kWh/yr, 100% Usage + + + 727 kWh/yr, 110% Usage + 727 kWh/yr, 110% Usage + + + 650 kWh/yr, 90% Usage + 650 kWh/yr, 90% Usage + + + 650 kWh/yr, 100% Usage + 650 kWh/yr, 100% Usage + + + 650 kWh/yr, 110% Usage + 650 kWh/yr, 110% Usage + + + 574 kWh/yr, 90% Usage + 574 kWh/yr, 90% Usage + + + 574 kWh/yr, 100% Usage + 574 kWh/yr, 100% Usage + + + 574 kWh/yr, 110% Usage + 574 kWh/yr, 110% Usage + + + 547 kWh/yr, 90% Usage + 547 kWh/yr, 90% Usage + + + 547 kWh/yr, 100% Usage + 547 kWh/yr, 100% Usage + + + 547 kWh/yr, 110% Usage + 547 kWh/yr, 110% Usage + + + 480 kWh/yr, 90% Usage + 480 kWh/yr, 90% Usage + + + 480 kWh/yr, 100% Usage + 480 kWh/yr, 100% Usage + + + 480 kWh/yr, 110% Usage + 480 kWh/yr, 110% Usage + + + 458 kWh/yr, 90% Usage + 458 kWh/yr, 90% Usage + + + 458 kWh/yr, 100% Usage + 458 kWh/yr, 100% Usage + + + 458 kWh/yr, 110% Usage + 458 kWh/yr, 110% Usage + + + 434 kWh/yr, 90% Usage + 434 kWh/yr, 90% Usage + + + 434 kWh/yr, 100% Usage + 434 kWh/yr, 100% Usage + + + 434 kWh/yr, 110% Usage + 434 kWh/yr, 110% Usage + + + 384 kWh/yr, 90% Usage + 384 kWh/yr, 90% Usage + + + 384 kWh/yr, 100% Usage + 384 kWh/yr, 100% Usage + + + 384 kWh/yr, 110% Usage + 384 kWh/yr, 110% Usage + + + 348 kWh/yr, 90% Usage + 348 kWh/yr, 90% Usage + + + 348 kWh/yr, 100% Usage + 348 kWh/yr, 100% Usage + + + 348 kWh/yr, 110% Usage + 348 kWh/yr, 110% Usage + + + Detailed Example: 748 kWh/yr, Conditioned Basement + Detailed Example: 748 kWh/yr, Conditioned Basement + + + Detailed Example: 748 kWh/yr, Unconditioned Basement + Detailed Example: 748 kWh/yr, Unconditioned Basement + + + Detailed Example: 748 kWh/yr, Garage + Detailed Example: 748 kWh/yr, Garage + + + + + appliance_freezer + Appliances: Freezer + The type and usage of freezer. + Choice + + false + false + None + + + None + None + + + 935 kWh/yr, 90% Usage + 935 kWh/yr, 90% Usage + + + 935 kWh/yr, 100% Usage + 935 kWh/yr, 100% Usage + + + 935 kWh/yr, 110% Usage + 935 kWh/yr, 110% Usage + + + 712 kWh/yr, 90% Usage + 712 kWh/yr, 90% Usage + + + 712 kWh/yr, 100% Usage + 712 kWh/yr, 100% Usage + + + 712 kWh/yr, 110% Usage + 712 kWh/yr, 110% Usage + + + 641 kWh/yr, 90% Usage + 641 kWh/yr, 90% Usage + + + 641 kWh/yr, 100% Usage + 641 kWh/yr, 100% Usage + + + 641 kWh/yr, 110% Usage + 641 kWh/yr, 110% Usage + + + 568 kWh/yr, 90% Usage + 568 kWh/yr, 90% Usage + + + 568 kWh/yr, 100% Usage + 568 kWh/yr, 100% Usage + + + 568 kWh/yr, 110% Usage + 568 kWh/yr, 110% Usage + + + 417 kWh/yr, 90% Usage + 417 kWh/yr, 90% Usage + + + 417 kWh/yr, 100% Usage + 417 kWh/yr, 100% Usage + + + 417 kWh/yr, 110% Usage + 417 kWh/yr, 110% Usage + + + 375 kWh/yr, 90% Usage + 375 kWh/yr, 90% Usage + + + 375 kWh/yr, 100% Usage + 375 kWh/yr, 100% Usage + + + 375 kWh/yr, 110% Usage + 375 kWh/yr, 110% Usage + + + 354 kWh/yr, 90% Usage + 354 kWh/yr, 90% Usage + + + 354 kWh/yr, 100% Usage + 354 kWh/yr, 100% Usage + + + 354 kWh/yr, 110% Usage + 354 kWh/yr, 110% Usage + + + Detailed Example: 712 kWh/yr, Conditioned Basement + Detailed Example: 712 kWh/yr, Conditioned Basement + + + Detailed Example: 712 kWh/yr, Unconditioned Basement + Detailed Example: 712 kWh/yr, Unconditioned Basement + + + Detailed Example: 712 kWh/yr, Garage + Detailed Example: 712 kWh/yr, Garage + + + + + appliance_cooking_range_oven + Appliances: Cooking Range/Oven + The type and usage of cooking range/oven. + Choice + + false + false + Electricity, Standard, Non-Convection, 100% Usage + + + None + None + + + Electricity, Standard, Non-Convection, 50% Usage + Electricity, Standard, Non-Convection, 50% Usage + + + Electricity, Standard, Non-Convection, 75% Usage + Electricity, Standard, Non-Convection, 75% Usage + + + Electricity, Standard, Non-Convection, 100% Usage + Electricity, Standard, Non-Convection, 100% Usage + + + Electricity, Standard, Non-Convection, 150% Usage + Electricity, Standard, Non-Convection, 150% Usage + + + Electricity, Standard, Non-Convection, 200% Usage + Electricity, Standard, Non-Convection, 200% Usage + + + Electricity, Standard, Convection, 50% Usage + Electricity, Standard, Convection, 50% Usage + + + Electricity, Standard, Convection, 75% Usage + Electricity, Standard, Convection, 75% Usage + + + Electricity, Standard, Convection, 100% Usage + Electricity, Standard, Convection, 100% Usage + + + Electricity, Standard, Convection, 150% Usage + Electricity, Standard, Convection, 150% Usage + + + Electricity, Standard, Convection, 200% Usage + Electricity, Standard, Convection, 200% Usage + + + Electricity, Induction, Non-Convection, 50% Usage + Electricity, Induction, Non-Convection, 50% Usage + + + Electricity, Induction, Non-Convection, 75% Usage + Electricity, Induction, Non-Convection, 75% Usage + + + Electricity, Induction, Non-Convection, 100% Usage + Electricity, Induction, Non-Convection, 100% Usage + + + Electricity, Induction, Non-Convection, 150% Usage + Electricity, Induction, Non-Convection, 150% Usage + + + Electricity, Induction, Non-Convection, 200% Usage + Electricity, Induction, Non-Convection, 200% Usage + + + Electricity, Induction, Convection, 50% Usage + Electricity, Induction, Convection, 50% Usage + + + Electricity, Induction, Convection, 75% Usage + Electricity, Induction, Convection, 75% Usage + + + Electricity, Induction, Convection, 100% Usage + Electricity, Induction, Convection, 100% Usage + + + Electricity, Induction, Convection, 150% Usage + Electricity, Induction, Convection, 150% Usage + + + Electricity, Induction, Convection, 200% Usage + Electricity, Induction, Convection, 200% Usage + + + Natural Gas, Non-Convection, 50% Usage + Natural Gas, Non-Convection, 50% Usage + + + Natural Gas, Non-Convection, 75% Usage + Natural Gas, Non-Convection, 75% Usage + + + Natural Gas, Non-Convection, 100% Usage + Natural Gas, Non-Convection, 100% Usage + + + Natural Gas, Non-Convection, 150% Usage + Natural Gas, Non-Convection, 150% Usage + + + Natural Gas, Non-Convection, 200% Usage + Natural Gas, Non-Convection, 200% Usage + + + Natural Gas, Convection, 50% Usage + Natural Gas, Convection, 50% Usage + + + Natural Gas, Convection, 75% Usage + Natural Gas, Convection, 75% Usage + + + Natural Gas, Convection, 100% Usage + Natural Gas, Convection, 100% Usage + + + Natural Gas, Convection, 150% Usage + Natural Gas, Convection, 150% Usage + + + Natural Gas, Convection, 200% Usage + Natural Gas, Convection, 200% Usage + + + Propane, Non-Convection, 50% Usage + Propane, Non-Convection, 50% Usage + + + Propane, Non-Convection, 75% Usage + Propane, Non-Convection, 75% Usage + + + Propane, Non-Convection, 100% Usage + Propane, Non-Convection, 100% Usage + + + Propane, Non-Convection, 150% Usage + Propane, Non-Convection, 150% Usage + + + Propane, Non-Convection, 200% Usage + Propane, Non-Convection, 200% Usage + + + Propane, Convection, 50% Usage + Propane, Convection, 50% Usage + + + Propane, Convection, 75% Usage + Propane, Convection, 75% Usage + + + Propane, Convection, 100% Usage + Propane, Convection, 100% Usage + + + Propane, Convection, 150% Usage + Propane, Convection, 150% Usage + + + Propane, Convection, 200% Usage + Propane, Convection, 200% Usage + + + Detailed Example: Electricity, Standard, Non-Convection, Conditioned Basement + Detailed Example: Electricity, Standard, Non-Convection, Conditioned Basement + + + Detailed Example: Electricity, Standard, Non-Convection, Unconditioned Basement + Detailed Example: Electricity, Standard, Non-Convection, Unconditioned Basement + + + Detailed Example: Electricity, Standard, Non-Convection, Garage + Detailed Example: Electricity, Standard, Non-Convection, Garage + + + + + appliance_dehumidifier + Appliances: Dehumidifier + The type of dehumidifier. + Choice + + false + false + None + + + None + None + + + Portable, 15 pints/day + Portable, 15 pints/day + + + Portable, 20 pints/day + Portable, 20 pints/day + + + Portable, 30 pints/day + Portable, 30 pints/day + + + Portable, 40 pints/day + Portable, 40 pints/day + + + Whole-Home, 60 pints/day + Whole-Home, 60 pints/day + + + Whole-Home, 75 pints/day + Whole-Home, 75 pints/day + + + Whole-Home, 95 pints/day + Whole-Home, 95 pints/day + + + Whole-Home, 125 pints/day + Whole-Home, 125 pints/day + + + Detailed Example: Portable, 40 pints/day, EF 1.8 + Detailed Example: Portable, 40 pints/day, EF 1.8 + + + Detailed Example: Whole-Home, 60 pints/day, EF 2.3 + Detailed Example: Whole-Home, 60 pints/day, EF 2.3 + + + Detailed Example: Portable, 40 pints/day, IEF 1.4 + Detailed Example: Portable, 40 pints/day, IEF 1.4 + + + + + appliance_dehumidifier_setpoint + Appliances: Dehumidifier Setpoint + The dehumidifier's relative humidity (RH) setpoint. + Choice + + false + false + 50% RH + + + 40% RH + 40% RH + + + 45% RH + 45% RH + + + 50% RH + 50% RH + + + 55% RH + 55% RH + + + 60% RH + 60% RH + + + 65% RH + 65% RH + + + + + lighting + Lighting + The type and usage of interior, exterior, and garage lighting. + Choice + + false + false + 50% LED, 100% Usage + + + None + None + + + 100% Incandescent, 50% Usage + 100% Incandescent, 50% Usage + + + 100% Incandescent, 75% Usage + 100% Incandescent, 75% Usage + + + 100% Incandescent, 100% Usage + 100% Incandescent, 100% Usage + + + 100% Incandescent, 150% Usage + 100% Incandescent, 150% Usage + + + 100% Incandescent, 200% Usage + 100% Incandescent, 200% Usage + + + 25% LED, 50% Usage + 25% LED, 50% Usage + + + 25% LED, 75% Usage + 25% LED, 75% Usage + + + 25% LED, 100% Usage + 25% LED, 100% Usage + + + 25% LED, 150% Usage + 25% LED, 150% Usage + + + 25% LED, 200% Usage + 25% LED, 200% Usage + + + 50% LED, 50% Usage + 50% LED, 50% Usage + + + 50% LED, 75% Usage + 50% LED, 75% Usage + + + 50% LED, 100% Usage + 50% LED, 100% Usage + + + 50% LED, 150% Usage + 50% LED, 150% Usage + + + 50% LED, 200% Usage + 50% LED, 200% Usage + + + 75% LED, 50% Usage + 75% LED, 50% Usage + + + 75% LED, 75% Usage + 75% LED, 75% Usage + + + 75% LED, 100% Usage + 75% LED, 100% Usage + + + 75% LED, 150% Usage + 75% LED, 150% Usage + + + 75% LED, 200% Usage + 75% LED, 200% Usage + + + 100% LED, 50% Usage + 100% LED, 50% Usage + + + 100% LED, 75% Usage + 100% LED, 75% Usage + + + 100% LED, 100% Usage + 100% LED, 100% Usage + + + 100% LED, 150% Usage + 100% LED, 150% Usage + + + 100% LED, 200% Usage + 100% LED, 200% Usage + + + 25% CFL, 50% Usage + 25% CFL, 50% Usage + + + 25% CFL, 75% Usage + 25% CFL, 75% Usage + + + 25% CFL, 100% Usage + 25% CFL, 100% Usage + + + 25% CFL, 150% Usage + 25% CFL, 150% Usage + + + 25% CFL, 200% Usage + 25% CFL, 200% Usage + + + 50% CFL, 50% Usage + 50% CFL, 50% Usage + + + 50% CFL, 75% Usage + 50% CFL, 75% Usage + + + 50% CFL, 100% Usage + 50% CFL, 100% Usage + + + 50% CFL, 150% Usage + 50% CFL, 150% Usage + + + 50% CFL, 200% Usage + 50% CFL, 200% Usage + + + 75% CFL, 50% Usage + 75% CFL, 50% Usage + + + 75% CFL, 75% Usage + 75% CFL, 75% Usage + + + 75% CFL, 100% Usage + 75% CFL, 100% Usage + + + 75% CFL, 150% Usage + 75% CFL, 150% Usage + + + 75% CFL, 200% Usage + 75% CFL, 200% Usage + + + 100% CFL, 50% Usage + 100% CFL, 50% Usage + + + 100% CFL, 75% Usage + 100% CFL, 75% Usage + + + 100% CFL, 100% Usage + 100% CFL, 100% Usage + + + 100% CFL, 150% Usage + 100% CFL, 150% Usage + + + 100% CFL, 200% Usage + 100% CFL, 200% Usage + + + Detailed Example: 10% CFL + Detailed Example: 10% CFL + + + Detailed Example: 40% CFL, 10% LFL, 25% LED + Detailed Example: 40% CFL, 10% LFL, 25% LED + + + + + ceiling_fans + Ceiling Fans + The type of ceiling fans. + Choice + + false + false + None + + + None + None + + + NumBedrooms+1 Fans, 45.0 W + NumBedrooms+1 Fans, 45.0 W + + + NumBedrooms+1 Fans, 37.5 W + NumBedrooms+1 Fans, 37.5 W + + + NumBedrooms+1 Fans, 30.0 W + NumBedrooms+1 Fans, 30.0 W + + + NumBedrooms+1 Fans, 22.5 W + NumBedrooms+1 Fans, 22.5 W + + + NumBedrooms+1 Fans, 15.0 W + NumBedrooms+1 Fans, 15.0 W + + + 1 Fan, 45.0 W + 1 Fan, 45.0 W + + + 1 Fan, 37.5 W + 1 Fan, 37.5 W + + + 1 Fan, 30.0 W + 1 Fan, 30.0 W + + + 1 Fan, 22.5 W + 1 Fan, 22.5 W + + + 1 Fan, 15.0 W + 1 Fan, 15.0 W + + + 2 Fans, 45.0 W + 2 Fans, 45.0 W + + + 2 Fans, 37.5 W + 2 Fans, 37.5 W + + + 2 Fans, 30.0 W + 2 Fans, 30.0 W + + + 2 Fans, 22.5 W + 2 Fans, 22.5 W + + + 2 Fans, 15.0 W + 2 Fans, 15.0 W + + + 3 Fans, 45.0 W + 3 Fans, 45.0 W + + + 3 Fans, 37.5 W + 3 Fans, 37.5 W + + + 3 Fans, 30.0 W + 3 Fans, 30.0 W + + + 3 Fans, 22.5 W + 3 Fans, 22.5 W + + + 3 Fans, 15.0 W + 3 Fans, 15.0 W + + + 4 Fans, 45.0 W + 4 Fans, 45.0 W + + + 4 Fans, 37.5 W + 4 Fans, 37.5 W + + + 4 Fans, 30.0 W + 4 Fans, 30.0 W + + + 4 Fans, 22.5 W + 4 Fans, 22.5 W + + + 4 Fans, 15.0 W + 4 Fans, 15.0 W + + + 5 Fans, 45.0 W + 5 Fans, 45.0 W + + + 5 Fans, 37.5 W + 5 Fans, 37.5 W + + + 5 Fans, 30.0 W + 5 Fans, 30.0 W + + + 5 Fans, 22.5 W + 5 Fans, 22.5 W + + + 5 Fans, 15.0 W + 5 Fans, 15.0 W + + + Detailed Example: 4 Fans, 39 W, 0.5 deg-F Setpoint Offset + Detailed Example: 4 Fans, 39 W, 0.5 deg-F Setpoint Offset + + + Detailed Example: 4 Fans, 100 cfm/W, 0.5 deg-F Setpoint Offset + Detailed Example: 4 Fans, 100 cfm/W, 0.5 deg-F Setpoint Offset + + + + + misc_television + Misc: Television + The amount of television usage, relative to the national average. + Choice + + false + false + 100% Usage + + + None + None + + + 25% Usage + 25% Usage + + + 33% Usage + 33% Usage + + + 50% Usage + 50% Usage + + + 75% Usage + 75% Usage + + + 80% Usage + 80% Usage + + + 90% Usage + 90% Usage + + + 100% Usage + 100% Usage + + + 110% Usage + 110% Usage + + + 125% Usage + 125% Usage + + + 150% Usage + 150% Usage + + + 200% Usage + 200% Usage + + + 300% Usage + 300% Usage + + + 400% Usage + 400% Usage + + + Detailed Example: 620 kWh/yr + Detailed Example: 620 kWh/yr + + + + + misc_plug_loads + Misc: Plug Loads + The amount of additional plug load usage, relative to the national average. + Choice + + false + false + 100% Usage + + + None + None + + + 25% Usage + 25% Usage + + + 33% Usage + 33% Usage + + + 50% Usage + 50% Usage + + + 75% Usage + 75% Usage + + + 80% Usage + 80% Usage + + + 90% Usage + 90% Usage + + + 100% Usage + 100% Usage + + + 110% Usage + 110% Usage + + + 125% Usage + 125% Usage + + + 150% Usage + 150% Usage + + + 200% Usage + 200% Usage + + + 300% Usage + 300% Usage + + + 400% Usage + 400% Usage + + + Detailed Example: 2457 kWh/yr, 85.5% Sensible, 4.5% Latent + Detailed Example: 2457 kWh/yr, 85.5% Sensible, 4.5% Latent + + + Detailed Example: 7302 kWh/yr, 82.2% Sensible, 17.8% Latent + Detailed Example: 7302 kWh/yr, 82.2% Sensible, 17.8% Latent + + + + + misc_well_pump + Misc: Well Pump + The amount of well pump usage, relative to the national average. + Choice + + false + false + None + + + None + None + + + Typical Efficiency + Typical Efficiency + + + High Efficiency + High Efficiency + + + Detailed Example: 475 kWh/yr + Detailed Example: 475 kWh/yr + + + + + misc_electric_vehicle_charging + Misc: Electric Vehicle Charging + The amount of EV charging usage, relative to the national average. Only use this if a detailed EV & EV charger were not otherwise specified. + Choice + + false + false + None + + + None + None + + + 25% Usage + 25% Usage + + + 33% Usage + 33% Usage + + + 50% Usage + 50% Usage + + + 75% Usage + 75% Usage + + + 80% Usage + 80% Usage + + + 90% Usage + 90% Usage + + + 100% Usage + 100% Usage + + + 110% Usage + 110% Usage + + + 125% Usage + 125% Usage + + + 150% Usage + 150% Usage + + + 200% Usage + 200% Usage + + + 300% Usage + 300% Usage + + + 400% Usage + 400% Usage + + + Detailed Example: 1500 kWh/yr + Detailed Example: 1500 kWh/yr + + + Detailed Example: 3000 kWh/yr + Detailed Example: 3000 kWh/yr + + + + + misc_grill + Misc: Gas Grill + The amount of outdoor gas grill usage, relative to the national average. + Choice + + false + false + None + + + None + None + + + Natural Gas, 25% Usage + Natural Gas, 25% Usage + + + Natural Gas, 50% Usage + Natural Gas, 50% Usage + + + Natural Gas, 75% Usage + Natural Gas, 75% Usage + + + Natural Gas, 100% Usage + Natural Gas, 100% Usage + + + Natural Gas, 150% Usage + Natural Gas, 150% Usage + + + Natural Gas, 200% Usage + Natural Gas, 200% Usage + + + Natural Gas, 400% Usage + Natural Gas, 400% Usage + + + Propane, 25% Usage + Propane, 25% Usage + + + Propane, 50% Usage + Propane, 50% Usage + + + Propane, 75% Usage + Propane, 75% Usage + + + Propane, 100% Usage + Propane, 100% Usage + + + Propane, 150% Usage + Propane, 150% Usage + + + Propane, 200% Usage + Propane, 200% Usage + + + Propane, 400% Usage + Propane, 400% Usage + + + Detailed Example: Propane, 25 therm/yr + Detailed Example: Propane, 25 therm/yr + + + + + misc_gas_lighting + Misc: Gas Lighting + The amount of gas lighting usage, relative to the national average. + Choice + + false + false + None + + + None + None + + + Natural Gas, 25% Usage + Natural Gas, 25% Usage + + + Natural Gas, 50% Usage + Natural Gas, 50% Usage + + + Natural Gas, 75% Usage + Natural Gas, 75% Usage + + + Natural Gas, 100% Usage + Natural Gas, 100% Usage + + + Natural Gas, 150% Usage + Natural Gas, 150% Usage + + + Natural Gas, 200% Usage + Natural Gas, 200% Usage + + + Natural Gas, 400% Usage + Natural Gas, 400% Usage + + + Detailed Example: Natural Gas, 28 therm/yr + Detailed Example: Natural Gas, 28 therm/yr + + + + + misc_fireplace + Misc: Fireplace + The amount of fireplace usage, relative to the national average. Fireplaces can also be specified as heating systems that meet a portion of the heating load. + Choice + + false + false + None + + + None + None + + + Natural Gas, 25% Usage + Natural Gas, 25% Usage + + + Natural Gas, 50% Usage + Natural Gas, 50% Usage + + + Natural Gas, 75% Usage + Natural Gas, 75% Usage + + + Natural Gas, 100% Usage + Natural Gas, 100% Usage + + + Natural Gas, 150% Usage + Natural Gas, 150% Usage + + + Natural Gas, 200% Usage + Natural Gas, 200% Usage + + + Natural Gas, 400% Usage + Natural Gas, 400% Usage + + + Propane, 25% Usage + Propane, 25% Usage + + + Propane, 50% Usage + Propane, 50% Usage + + + Propane, 75% Usage + Propane, 75% Usage + + + Propane, 100% Usage + Propane, 100% Usage + + + Propane, 150% Usage + Propane, 150% Usage + + + Propane, 200% Usage + Propane, 200% Usage + + + Propane, 400% Usage + Propane, 400% Usage + + + Wood, 25% Usage + Wood, 25% Usage + + + Wood, 50% Usage + Wood, 50% Usage + + + Wood, 75% Usage + Wood, 75% Usage + + + Wood, 100% Usage + Wood, 100% Usage + + + Wood, 150% Usage + Wood, 150% Usage + + + Wood, 200% Usage + Wood, 200% Usage + + + Wood, 400% Usage + Wood, 400% Usage + + + Electric, 25% Usage + Electric, 25% Usage + + + Electric, 50% Usage + Electric, 50% Usage + + + Electric, 75% Usage + Electric, 75% Usage + + + Electric, 100% Usage + Electric, 100% Usage + + + Electric, 150% Usage + Electric, 150% Usage + + + Electric, 200% Usage + Electric, 200% Usage + + + Electric, 400% Usage + Electric, 400% Usage + + + Detailed Example: Wood, 55 therm/yr + Detailed Example: Wood, 55 therm/yr + + + + + misc_pool + Misc: Pool + The type of pool (pump & heater). + Choice + + false + false + None + + + None + None + + + Unheated, 25% Usage + Unheated, 25% Usage + + + Unheated, 50% Usage + Unheated, 50% Usage + + + Unheated, 75% Usage + Unheated, 75% Usage + + + Unheated, 100% Usage + Unheated, 100% Usage + + + Unheated, 150% Usage + Unheated, 150% Usage + + + Unheated, 200% Usage + Unheated, 200% Usage + + + Unheated, 400% Usage + Unheated, 400% Usage + + + Electric Resistance Heater, 25% Usage + Electric Resistance Heater, 25% Usage + + + Electric Resistance Heater, 50% Usage + Electric Resistance Heater, 50% Usage + + + Electric Resistance Heater, 75% Usage + Electric Resistance Heater, 75% Usage + + + Electric Resistance Heater, 100% Usage + Electric Resistance Heater, 100% Usage + + + Electric Resistance Heater, 150% Usage + Electric Resistance Heater, 150% Usage + + + Electric Resistance Heater, 200% Usage + Electric Resistance Heater, 200% Usage + + + Electric Resistance Heater, 400% Usage + Electric Resistance Heater, 400% Usage + + + Heat Pump Heater, 25% Usage + Heat Pump Heater, 25% Usage + + + Heat Pump Heater, 50% Usage + Heat Pump Heater, 50% Usage + + + Heat Pump Heater, 75% Usage + Heat Pump Heater, 75% Usage + + + Heat Pump Heater, 100% Usage + Heat Pump Heater, 100% Usage + + + Heat Pump Heater, 150% Usage + Heat Pump Heater, 150% Usage + + + Heat Pump Heater, 200% Usage + Heat Pump Heater, 200% Usage + + + Heat Pump Heater, 400% Usage + Heat Pump Heater, 400% Usage + + + Natural Gas Heater, 25% Usage + Natural Gas Heater, 25% Usage + + + Natural Gas Heater, 50% Usage + Natural Gas Heater, 50% Usage + + + Natural Gas Heater, 75% Usage + Natural Gas Heater, 75% Usage + + + Natural Gas Heater, 100% Usage + Natural Gas Heater, 100% Usage + + + Natural Gas Heater, 150% Usage + Natural Gas Heater, 150% Usage + + + Natural Gas Heater, 200% Usage + Natural Gas Heater, 200% Usage + + + Natural Gas Heater, 400% Usage + Natural Gas Heater, 400% Usage + + + Detailed Example: 2700 kWh/yr Pump, Unheated + Detailed Example: 2700 kWh/yr Pump, Unheated + + + Detailed Example: 2700 kWh/yr Pump, 500 therms/yr Natural Gas Heater + Detailed Example: 2700 kWh/yr Pump, 500 therms/yr Natural Gas Heater + + + + + misc_permanent_spa + Misc: Permanent Spa + The type of permanent spa (pump & heater). + Choice + + false + false + None + + + None + None + + + Unheated, 25% Usage + Unheated, 25% Usage + + + Unheated, 50% Usage + Unheated, 50% Usage + + + Unheated, 75% Usage + Unheated, 75% Usage + + + Unheated, 100% Usage + Unheated, 100% Usage + + + Unheated, 150% Usage + Unheated, 150% Usage + + + Unheated, 200% Usage + Unheated, 200% Usage + + + Unheated, 400% Usage + Unheated, 400% Usage + + + Electric Resistance Heater, 25% Usage + Electric Resistance Heater, 25% Usage + + + Electric Resistance Heater, 50% Usage + Electric Resistance Heater, 50% Usage + + + Electric Resistance Heater, 75% Usage + Electric Resistance Heater, 75% Usage + + + Electric Resistance Heater, 100% Usage + Electric Resistance Heater, 100% Usage + + + Electric Resistance Heater, 150% Usage + Electric Resistance Heater, 150% Usage + + + Electric Resistance Heater, 200% Usage + Electric Resistance Heater, 200% Usage + + + Electric Resistance Heater, 400% Usage + Electric Resistance Heater, 400% Usage + + + Heat Pump Heater, 25% Usage + Heat Pump Heater, 25% Usage + + + Heat Pump Heater, 50% Usage + Heat Pump Heater, 50% Usage + + + Heat Pump Heater, 75% Usage + Heat Pump Heater, 75% Usage + + + Heat Pump Heater, 100% Usage + Heat Pump Heater, 100% Usage + + + Heat Pump Heater, 150% Usage + Heat Pump Heater, 150% Usage + + + Heat Pump Heater, 200% Usage + Heat Pump Heater, 200% Usage + + + Heat Pump Heater, 400% Usage + Heat Pump Heater, 400% Usage + + + Natural Gas Heater, 25% Usage + Natural Gas Heater, 25% Usage + + + Natural Gas Heater, 50% Usage + Natural Gas Heater, 50% Usage + + + Natural Gas Heater, 75% Usage + Natural Gas Heater, 75% Usage + + + Natural Gas Heater, 100% Usage + Natural Gas Heater, 100% Usage + + + Natural Gas Heater, 150% Usage + Natural Gas Heater, 150% Usage + + + Natural Gas Heater, 200% Usage + Natural Gas Heater, 200% Usage + + + Natural Gas Heater, 400% Usage + Natural Gas Heater, 400% Usage + + + Detailed Example: 1000 kWh/yr Pump, 1300 kWh/yr Electric Resistance Heater + Detailed Example: 1000 kWh/yr Pump, 1300 kWh/yr Electric Resistance Heater + + + Detailed Example: 1000 kWh/yr Pump, 260 kWh/yr Heat Pump Heater + Detailed Example: 1000 kWh/yr Pump, 260 kWh/yr Heat Pump Heater + + + + + schedules_paths + Schedules: CSV File Paths + Absolute/relative paths of csv files containing user-specified detailed schedules, if desired. Use a comma-separated list for multiple files. + String + + false + false + + + advanced_feature + Advanced Feature + Select an advanced research feature to use in the model, if desired. + Choice + + false + false + None + + + None + None + + + Temperature Capacitance Multiplier, 1 + Temperature Capacitance Multiplier, 1 + + + Temperature Capacitance Multiplier, 4 + Temperature Capacitance Multiplier, 4 + + + Temperature Capacitance Multiplier, 10 + Temperature Capacitance Multiplier, 10 + + + Temperature Capacitance Multiplier, 15 + Temperature Capacitance Multiplier, 15 + + + On/Off Thermostat Deadband, 1F + On/Off Thermostat Deadband, 1F + + + On/Off Thermostat Deadband, 2F + On/Off Thermostat Deadband, 2F + + + On/Off Thermostat Deadband, 3F + On/Off Thermostat Deadband, 3F + + + Heat Pump Backup Staging, 5 kW + Heat Pump Backup Staging, 5 kW + + + Heat Pump Backup Staging, 10 kW + Heat Pump Backup Staging, 10 kW + + + Experimental Ground-to-Air Heat Pump Model + Experimental Ground-to-Air Heat Pump Model + + + HVAC Allow Increased Fixed Capacities + HVAC Allow Increased Fixed Capacities + + + + + advanced_feature_2 + Advanced Feature 2 + Select a second advanced research feature to use in the model, if desired. + Choice + + false + false + None + + + None + None + + + Temperature Capacitance Multiplier, 1 + Temperature Capacitance Multiplier, 1 + + + Temperature Capacitance Multiplier, 4 + Temperature Capacitance Multiplier, 4 + + + Temperature Capacitance Multiplier, 10 + Temperature Capacitance Multiplier, 10 + + + Temperature Capacitance Multiplier, 15 + Temperature Capacitance Multiplier, 15 + + + On/Off Thermostat Deadband, 1F + On/Off Thermostat Deadband, 1F + + + On/Off Thermostat Deadband, 2F + On/Off Thermostat Deadband, 2F + + + On/Off Thermostat Deadband, 3F + On/Off Thermostat Deadband, 3F + + + Heat Pump Backup Staging, 5 kW + Heat Pump Backup Staging, 5 kW + + + Heat Pump Backup Staging, 10 kW + Heat Pump Backup Staging, 10 kW + + + Experimental Ground-to-Air Heat Pump Model + Experimental Ground-to-Air Heat Pump Model + + + HVAC Allow Increased Fixed Capacities + HVAC Allow Increased Fixed Capacities + + + + + utility_bill_scenario + Utility Bill Scenario + The type of utility bill calculations to perform. + Choice + + false + false + Default (EIA Average Rates) + + + None + None + + + Default (EIA Average Rates) + Default (EIA Average Rates) + + + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + + + Detailed Example: Sample Tiered Rate + Detailed Example: Sample Tiered Rate + + + Detailed Example: Sample Time-of-Use Rate + Detailed Example: Sample Time-of-Use Rate + + + Detailed Example: Sample Tiered and Time-of-Use Rate + Detailed Example: Sample Tiered and Time-of-Use Rate + + + Detailed Example: Sample Real-Time Pricing + Detailed Example: Sample Real-Time Pricing + + + Detailed Example: Net Metering w/ Wholesale Excess Rate + Detailed Example: Net Metering w/ Wholesale Excess Rate + + + Detailed Example: Net Metering w/ Retail Excess Rate + Detailed Example: Net Metering w/ Retail Excess Rate + + + Detailed Example: Feed-in Tariff + Detailed Example: Feed-in Tariff + + + + + utility_bill_scenario_2 + Utility Bill Scenario 2 + The second type of utility bill calculations to perform, if desired. + Choice + + false + false + None + + + None + None + + + Default (EIA Average Rates) + Default (EIA Average Rates) + + + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + + + Detailed Example: Sample Tiered Rate + Detailed Example: Sample Tiered Rate + + + Detailed Example: Sample Time-of-Use Rate + Detailed Example: Sample Time-of-Use Rate + + + Detailed Example: Sample Tiered and Time-of-Use Rate + Detailed Example: Sample Tiered and Time-of-Use Rate + + + Detailed Example: Sample Real-Time Pricing + Detailed Example: Sample Real-Time Pricing + + + Detailed Example: Net Metering w/ Wholesale Excess Rate + Detailed Example: Net Metering w/ Wholesale Excess Rate + + + Detailed Example: Net Metering w/ Retail Excess Rate + Detailed Example: Net Metering w/ Retail Excess Rate + + + Detailed Example: Feed-in Tariff + Detailed Example: Feed-in Tariff + + + + + utility_bill_scenario_3 + Utility Bill Scenario 3 + The third type of utility bill calculations to perform, if desired. + Choice + + false + false + None + + + None + None + + + Default (EIA Average Rates) + Default (EIA Average Rates) + + + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + Detailed Example: $0.12/kWh, $1.1/therm, $12/month + + + Detailed Example: Sample Tiered Rate + Detailed Example: Sample Tiered Rate + + + Detailed Example: Sample Time-of-Use Rate + Detailed Example: Sample Time-of-Use Rate + + + Detailed Example: Sample Tiered and Time-of-Use Rate + Detailed Example: Sample Tiered and Time-of-Use Rate + + + Detailed Example: Sample Real-Time Pricing + Detailed Example: Sample Real-Time Pricing + + + Detailed Example: Net Metering w/ Wholesale Excess Rate + Detailed Example: Net Metering w/ Wholesale Excess Rate + + + Detailed Example: Net Metering w/ Retail Excess Rate + Detailed Example: Net Metering w/ Retail Excess Rate + + + Detailed Example: Feed-in Tariff + Detailed Example: Feed-in Tariff + + + + + additional_properties + Additional Properties + Additional properties specified as key-value pairs (i.e., key=value). If multiple additional properties, use a |-separated list. For example, 'LowIncome=false|Remodeled|Description=2-story home in Denver'. These properties will be stored in the HPXML file under /HPXML/SoftwareInfo/extension/AdditionalProperties. + String + + false + false + + + whole_sfa_or_mf_building_sim + Whole SFA/MF Building Simulation? + Set true if creating an HPXML file to simulate a whole single-family attached or multifamily building with multiple dwelling units within. If an HPXML file already exists at the specified HPXML File Path, a new HPXML Building element describing the current dwelling unit will be appended to this HPXML file. + Boolean + + false + false + false + + + true + true + + + false + false + + + + + combine_like_surfaces + Combine like surfaces? + If true, combines like surfaces to simplify the HPXML file generated. + Boolean + + false + false + false + + + true + true + + + false + false + + + + + apply_defaults + Apply Default Values? + If true, applies OS-HPXML default values to the HPXML output file. Setting to true will also force validation of the HPXML output file before applying OS-HPXML default values. + Boolean + + false + false + false + + + true + true + + + false + false + + + + + apply_validation + Apply Validation? + If true, validates the HPXML output file. Set to false for faster performance. Note that validation is not needed if the HPXML file will be validated downstream (e.g., via the HPXMLtoOpenStudio measure). + Boolean + + false + false + false + + + true + true + + + false + false + + + + + building_id + Building Unit ID + The building unit number (between 1 and the number of samples). + Integer + + false + false + + + site_iecc_zone + Site: IECC Zone + IECC zone of the home address. + Choice + + false + false + + + 1A + 1A + + + 1B + 1B + + + 1C + 1C + + + 2A + 2A + + + 2B + 2B + + + 2C + 2C + + + 3A + 3A + + + 3B + 3B + + + 3C + 3C + + + 4A + 4A + + + 4B + 4B + + + 4C + 4C + + + 5A + 5A + + + 5B + 5B + + + 5C + 5C + + + 6A + 6A + + + 6B + 6B + + + 6C + 6C + + + 7 + 7 + + + 8 + 8 + + + + + simulation_control_run_period_calendar_year + Simulation Control: Run Period Calendar Year + This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. + Integer + year + false + false + + + schedules_vacancy_periods + Schedules: Vacancy Periods + Specifies the vacancy periods. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). If multiple periods, use a comma-separated list. + String + + false + false + + + schedules_power_outage_periods + Schedules: Power Outage Periods + Specifies the power outage periods. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). If multiple periods, use a comma-separated list. + String + + false + false + + + schedules_power_outage_periods_window_natvent_availability + Schedules: Power Outage Periods Window Natural Ventilation Availability + The availability of the natural ventilation schedule during the power outage periods. Valid choices are 'regular schedule', 'always available', 'always unavailable'. If multiple periods, use a comma-separated list. + String + + false + false + + + schedules_space_heating_unavailable_days + Schedules: Space Heating Unavailability + Number of days space heating equipment is unavailable. + Integer + + false + false + + + schedules_space_cooling_unavailable_days + Schedules: Space Cooling Unavailability + Number of days space cooling equipment is unavailable. + Integer + + false + false + + + geometry_facility_type + Geometry: Facility Type + The facility type of the dwelling unit. + Choice + + false + false + + + single-family detached + single-family detached + + + single-family attached + single-family attached + + + apartment unit + apartment unit + + + manufactured home + manufactured home + + + + + geometry_unit_cfa_bin + Geometry: Unit Conditioned Floor Area Bin + E.g., '2000-2499'. + String + + false + false + 2000-2499 + + + geometry_building_num_units + Geometry: Building Number of Units + The number of units in the building. + Integer + # + false + false + + + geometry_unit_level + Geometry: Unit Level + The level of the unit. This is required for apartment units. + Choice + + false + false + + + Bottom + Bottom + + + Middle + Middle + + + Top + Top + + + + + geometry_unit_horizontal_location + Geometry: Unit Horizontal Location + The horizontal location of the unit when viewing the front of the building. This is required for single-family attached and apartment units. + Choice + + false + false + + + None + None + + + Left + Left + + + Middle + Middle + + + Right + Right + + + + + geometry_num_floors_above_grade + Geometry: Number of Floors Above Grade + The number of floors above grade (in the unit if single-family detached or single-family attached, and in the building if apartment unit). Conditioned attics are included. + Integer + # + false + false + 2 + + + geometry_corridor_position + Geometry: Corridor Position + The position of the corridor. Only applies to single-family attached and apartment units. Exterior corridors are shaded, but not enclosed. Interior corridors are enclosed and conditioned. + Choice + + false + false + + + Double-Loaded Interior + Double-Loaded Interior + + + Double Exterior + Double Exterior + + + Single Exterior Front + Single Exterior Front + + + None + None + + + + + vintage + Building Construction: Vintage + The building vintage, used for informational purposes only. + String + + false + false + + + unit_multiplier + Building Construction: Unit Multiplier + The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + Integer + + false + false + + + ceiling_insulation_r + Enclosure: Ceiling Insulation Nominal R-value + Nominal R-value for the ceiling (attic floor). + Double + h-ft^2-R/Btu + false + false + 0 + + + air_leakage_percent_reduction + Enclosure: Air Leakage Value Reduction + Reduction (%) on the air exchange rate value. + Double + + false + false + + + dhw_water_heater_jacket_rvalue + Water Heater: Jacket R-value + The jacket R-value of the storage water heater. + Double + h-ft^2-R/Btu + false + false + + + hvac_control_heating_weekday_setpoint_temp + HVAC Control: Heating Setpoint Weekday Temperature + Specify the weekday heating setpoint temperature. + Double + deg-F + false + false + 71 + + + hvac_control_heating_weekend_setpoint_temp + HVAC Control: Heating Setpoint Weekend Temperature + Specify the weekend heating setpoint temperature. + Double + deg-F + false + false + 71 + + + hvac_control_heating_weekday_setpoint_offset_magnitude + HVAC Control: Heating Setpoint Weekday Offset Magnitude + Specify the weekday heating offset magnitude. + Double + deg-F + false + false + 0 + + + hvac_control_heating_weekend_setpoint_offset_magnitude + HVAC Control: Heating Setpoint Weekend Offset Magnitude + Specify the weekend heating offset magnitude. + Double + deg-F + false + false + 0 + + + hvac_control_heating_weekday_setpoint_schedule + HVAC Control: Heating Setpoint Weekday Schedule + Specify the 24-hour comma-separated weekday heating schedule of 0s and 1s. + String + + false + false + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + + + hvac_control_heating_weekend_setpoint_schedule + HVAC Control: Heating Setpoint Weekend Schedule + Specify the 24-hour comma-separated weekend heating schedule of 0s and 1s. + String + + false + false + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + + + hvac_control_cooling_weekday_setpoint_temp + HVAC Control: Cooling Setpoint Weekday Temperature + Specify the weekday cooling setpoint temperature. + Double + deg-F + false + false + 76 + + + hvac_control_cooling_weekend_setpoint_temp + HVAC Control: Cooling Setpoint Weekend Temperature + Specify the weekend cooling setpoint temperature. + Double + deg-F + false + false + 76 + + + hvac_control_cooling_weekday_setpoint_offset_magnitude + HVAC Control: Cooling Setpoint Weekday Offset Magnitude + Specify the weekday cooling offset magnitude. + Double + deg-F + false + false + 0 + + + hvac_control_cooling_weekend_setpoint_offset_magnitude + HVAC Control: Cooling Setpoint Weekend Offset Magnitude + Specify the weekend cooling offset magnitude. + Double + deg-F + false + false + 0 + + + hvac_control_cooling_weekday_setpoint_schedule + HVAC Control: Cooling Setpoint Weekday Schedule + Specify the 24-hour comma-separated weekday cooling schedule of 0s and 1s. + String + + false + false + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + + + hvac_control_cooling_weekend_setpoint_schedule + HVAC Control: Cooling Setpoint Weekend Schedule + Specify the 24-hour comma-separated weekend cooling schedule of 0s and 1s. + String + + false + false + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + + + hvac_heating_system_existing + HVAC: Existing Heating System + The type and efficiency of the existing heating system. + String + + false + false + + + hvac_heating_shared_system + HVAC: Heating Shared System Type + The type of shared system. + Choice + + false + false + + + None + None + + + Baseboard + Baseboard + + + FanCoil + FanCoil + + + + + add_shared_system_argument + Argument Name + TODO. + String + + false + false + None + + + heating_system_heating_autosizing_factor + HVAC: Heating System Heating Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + + false + false + + + heating_system_rated_cfm_per_ton + HVAC: Heating System Rated CFM Per Ton + The rated cfm per ton of the heating system. + Double + cfm/ton + false + false + + + heating_system_actual_cfm_per_ton + HVAC: Heating System Actual CFM Per Ton + The actual cfm per ton of the heating system. + Double + cfm/ton + false + false + + + heating_system_2_heating_autosizing_factor + HVAC: Heating System 2 Heating Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + + false + false + + + hvac_cooling_system_existing + HVAC: Existing Cooling System + The type and efficiency of the existing cooling system. + String + + false + false + + + cooling_system_cooling_autosizing_factor + HVAC: Cooling System Cooling Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + + false + false + + + cooling_system_rated_cfm_per_ton + HVAC: Cooling System Rated CFM Per Ton + The rated cfm per ton of the cooling system. + Double + cfm/ton + false + false + + + cooling_system_actual_cfm_per_ton + HVAC: Cooling System Actual CFM Per Ton + The actual cfm per ton of the cooling system. + Double + cfm/ton + false + false + + + cooling_system_frac_manufacturer_charge + HVAC: Cooling System Fraction of Manufacturer Recommended Charge + The fraction of manufacturer recommended charge of the cooling system. + Double + Frac + false + false + + + hvac_heat_pump_existing + HVAC: Existing Heat Pump + The type and efficiency of the existing heat pump. + String + + false + false + + + heat_pump_heating_autosizing_factor + HVAC: Heat Pump Heating Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + + false + false + + + heat_pump_cooling_autosizing_factor + HVAC: Heat Pump Cooling Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + + false + false + + + heat_pump_backup_heating_autosizing_factor + HVAC: Heat Pump Backup Heating Autosizing Factor + The capacity scaling factor applied to the auto-sizing methodology if Backup Type is integrated. + Double + + false + false + + + heat_pump_rated_cfm_per_ton + HVAC: Heat Pump Rated CFM Per Ton + The rated cfm per ton of the heat pump. + Double + cfm/ton + false + false + + + heat_pump_actual_cfm_per_ton + HVAC: Heat Pump Actual CFM Per Ton + The actual cfm per ton of the heat pump. + Double + cfm/ton + false + false + + + heat_pump_frac_manufacturer_charge + HVAC: Heat Pump Fraction of Manufacturer Recommended Charge + The fraction of manufacturer recommended charge of the heat pump. + Double + Frac + false + false + + + hvac_heat_pump_backup_use_existing_system + HVAC: Heat Pump Backup Use Existing System + Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat_pump_backup_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating_system_2_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. + Boolean + + false + false + + + true + true + + + false + false + + + + + hvac_heat_pump_sizing_is_duct_limited + HVAC: Heat Pump Sizing Is Duct Limited + Whether the (ducted) heat pump has an upper limit for autosized heating/cooling capacity and an adjusted blower fan efficiency (W/CFM) value. This argument is only applicable for heat pump upgrades. + Boolean + + false + false + + + true + true + + + false + false + + + + + hvac_perf_data_heating_outdoor_temperatures + HVAC Detailed Performance Data: Heating Outdoor Temperatures + Outdoor temperatures of heating detailed performance data if available. Applies only to air-source HVAC systems (air-to-air and mini-split heat pumps). Only certain outdoor temperatures are allowed, see the OS-HPXML documentation. + String + F + false + false + + + hvac_perf_data_heating_min_speed_capacities + HVAC Detailed Performance Data: Heating Minimum Speed Capacities + Minimum speed capacities of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to two stage and variable speed air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_heating_nom_speed_capacities + HVAC Detailed Performance Data: Heating Nominal Speed Capacities + Nominal speed capacities of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_heating_max_speed_capacities + HVAC Detailed Performance Data: Heating Maximum Speed Capacities + Maximum speed capacities of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to variable speed air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_heating_min_speed_cops + HVAC Detailed Performance Data: Heating Minimum Speed COPs + Minimum speed efficiency COP values of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to two stage and variable speed air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_perf_data_heating_nom_speed_cops + HVAC Detailed Performance Data: Heating Nominal Speed COPs + Nominal speed efficiency COP values of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_perf_data_heating_max_speed_cops + HVAC Detailed Performance Data: Heating Maximum Speed COPs + Maximum speed efficiency COP values of heating detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to variable speed air-source HVAC systems (air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_perf_data_cooling_outdoor_temperatures + HVAC Detailed Performance Data: Cooling Outdoor Temperatures + Outdoor temperatures of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Only certain outdoor temperatures are allowed, see the OS-HPXML documentation. + String + F + false + false + + + hvac_perf_data_cooling_min_speed_capacities + HVAC Detailed Performance Data: Cooling Minimum Speed Capacities + Minimum speed capacities of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to two stage and variable speed air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_cooling_nom_speed_capacities + HVAC Detailed Performance Data: Cooling Nominal Speed Capacities + Nominal speed capacities of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_cooling_max_speed_capacities + HVAC Detailed Performance Data: Cooling Maximum Speed Capacities + Maximum speed capacities of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to variable speed air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_cooling_min_speed_cops + HVAC Detailed Performance Data: Cooling Minimum Speed COPs + Minimum speed efficiency COP values of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to two stage and variable speed air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_perf_data_cooling_nom_speed_cops + HVAC Detailed Performance Data: Cooling Nominal Speed COPs + Nominal speed efficiency COP values of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_perf_data_cooling_max_speed_cops + HVAC Detailed Performance Data: Cooling Maximum Speed COPs + Maximum speed efficiency COP values of cooling detailed performance data if available, corresponding to the above outdoor temperatures. Applies only to variable speed air-source HVAC systems (central and mini-split air conditioners, air-to-air and mini-split heat pumps). Not all values are required, see the OS-HPXML documentation. + String + W/W + false + false + + + hvac_heating_system_2_existing + HVAC: Existing Heating System 2 + The type and efficiency of the existing second heating system. + String + + false + false + + + hvac_flex_peak_offset + HVAC Load Flexibility: Peak Offset (deg F) + Offset of the peak period in degrees Fahrenheit. + Integer + + false + false + 0 + + + hvac_flex_pre_peak_duration_hours + HVAC Load Flexibility: Pre-Peak Duration (hours) + Duration of the pre-peak period in hours. + Double + + false + false + 0 + + + hvac_flex_pre_peak_offset + HVAC Load Flexibility: Pre-Peak Offset (deg F) + Offset of the pre-peak period in degrees Fahrenheit. + Integer + + false + false + 0 + + + flex_random_shift_minutes + Load Flexibility: Random Shift (minutes) + Number of minutes to randomly shift the peak period. If minutes is less than timestep, it will be assumed to be 0. + Integer + + false + false + 0 + + + ev_flex_enabled + EV Flexibility Enabled + Whether to enable EV flexibility. + Boolean + + false + false + false + + + true + true + + + false + false + + + + + vehicle_miles_driven_per_year + Electric Vehicle: Miles Driven Per Year + The annual miles the vehicle is driven. + Double + miles + false + false + + + ev_fraction_charged_home + Electric Vehicle: Fraction Charged at Home + The fraction of charging energy provided by the at-home charger to the electric vehicle. + Double + + false + false + + + ev_efficiency_percent_increase + Electric Vehicle: Efficiency Improvement + The increase (fraction) in efficiency of the electric vehicle. + Double + Frac + false + false + + + refrigerator_usage_multiplier + Appliances: Refrigerator Usage Multiplier + Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + clothes_dryer_usage_multiplier + Appliances: Clothes Dryer Usage Multiplier + Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + clothes_washer_usage_multiplier + Appliances: Clothes Washer Usage Multiplier + Multiplier on the clothes washer energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + cooking_range_oven_usage_multiplier + Appliances: Cooking Range/Oven Usage Multiplier + Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + dishwasher_usage_multiplier + Appliances: Dishwasher Usage Multiplier + Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + extra_refrigerator_usage_multiplier + Appliances: Extra Refrigerator Usage Multiplier + Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + freezer_usage_multiplier + Appliances: Freezer Usage Multiplier + Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + pool_pump_usage_multiplier + Pool: Pump Usage Multiplier + Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + bathroom_fans_start_hour + Ventilation: Bathroom Fans Start Hour + The hour of the day when the bathroom fans run. + Integer + + false + false + + + kitchen_fans_start_hour + Ventilation: Kitchen Fans Start Hour + The hour of the day when the kitchen fans run. + Integer + + false + false + + + interior_lighting_usage_multiplier + Lighting: Interior Usage Multiplier + Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + exterior_lighting_usage_multiplier + Lighting: Exterior Usage Multiplier + Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + garage_lighting_usage_multiplier + Lighting: Garage Usage Multiplier + Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + water_fixtures_usage_multiplier + Hot Water Fixtures: Usage Multiplier + Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + misc_plug_loads_television_usage_multiplier + Plug Loads: Television Usage Multiplier + Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + misc_plug_loads_other_usage_multiplier + Plug Loads: Other Usage Multiplier + Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. + Double + + false + false + + + misc_has_pool + Misc: Has Pool + Whether a pool is present. + Boolean + + false + false + + + true + true + + + false + false + + + + + electric_panel_load_other_power_rating + Electric Panel: Other Power Rating + Specifies the panel load other power rating. This represents the total of all other electric loads that are fastened in place, permanently connected, or located on a specific circuit. For example, garbage disposal, built-in microwave. + Double + W + false + false + + + emissions_scenario_names + Emissions: Scenario Names + Names of emissions scenarios. If multiple scenarios, use a comma-separated list. If not provided, no emissions scenarios are calculated. + String + + false + false + + + emissions_types + Emissions: Types + Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list. + String + + false + false + + + emissions_electricity_units + Emissions: Electricity Units + Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed. + String + + false + false + + + emissions_electricity_filepaths + Emissions: Electricity File Paths + Electricity emissions factors values, specified as an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list. + String + + false + false + + + emissions_fossil_fuel_units + Emissions: Fossil Fuel Units + Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed. + String + + false + false + + + emissions_natural_gas_values + Emissions: Natural Gas Values + Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + String + + false + false + + + emissions_propane_values + Emissions: Propane Values + Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + String + + false + false + + + emissions_fuel_oil_values + Emissions: Fuel Oil Values + Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + String + + false + false + + + emissions_wood_values + Emissions: Wood Values + Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_scenario_names + Utility Bills: Scenario Names + Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If not provided, no utility bills scenarios are calculated. + String + + false + false + + + utility_bill_electricity_filepaths + Utility Bills: Electricity File Paths + Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_electricity_fixed_charges + Utility Bills: Electricity Fixed Charges + Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_natural_gas_fixed_charges + Utility Bills: Natural Gas Fixed Charges + Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_propane_fixed_charges + Utility Bills: Propane Fixed Charges + Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_fuel_oil_fixed_charges + Utility Bills: Fuel Oil Fixed Charges + Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_wood_fixed_charges + Utility Bills: Wood Fixed Charges + Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_electricity_marginal_rates + Utility Bills: Electricity Marginal Rates + Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_natural_gas_marginal_rates + Utility Bills: Natural Gas Marginal Rates + Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_propane_marginal_rates + Utility Bills: Propane Marginal Rates + Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_fuel_oil_marginal_rates + Utility Bills: Fuel Oil Marginal Rates + Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_wood_marginal_rates + Utility Bills: Wood Marginal Rates + Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_compensation_types + Utility Bills: PV Compensation Types + Utility bill PV compensation types. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_net_metering_annual_excess_sellback_rate_types + Utility Bills: PV Net Metering Annual Excess Sellback Rate Types + Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_net_metering_annual_excess_sellback_rates + Utility Bills: PV Net Metering Annual Excess Sellback Rates + Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_feed_in_tariff_rates + Utility Bills: PV Feed-In Tariff Rates + Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_monthly_grid_connection_fee_units + Utility Bills: PV Monthly Grid Connection Fee Units + Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list. + String + + false + false + + + utility_bill_pv_monthly_grid_connection_fees + Utility Bills: PV Monthly Grid Connection Fees + Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list. + String + + false + false + + + hpxml_path + HPXML File Path + Absolute/relative path of the HPXML file. + String + false + false @@ -63,7 +12664,7 @@ measure.rb rb script - FFD12C3C + 5F1A3413 diff --git a/measures/ApplyUpgrade/measure.rb b/measures/ApplyUpgrade/measure.rb index a9be605999..41b3ac4b4b 100644 --- a/measures/ApplyUpgrade/measure.rb +++ b/measures/ApplyUpgrade/measure.rb @@ -295,13 +295,13 @@ def run(model, runner, user_arguments) end update_args_hash(measures, measure_subdir, new_args_hash) update_args_hash(measures, 'ResStockArgumentsPostHPXML', new_args_hash) if measure_subdir == 'ResStockArguments' + update_args_hash(measures, 'AddSharedSystem', new_args_hash) if measure_subdir == 'ResStockArguments' end end end # Run the ResStockArguments measure measures['ResStockArguments'][0]['building_id'] = values['building_id'] - add_shared_system_argument = measures['ResStockArguments'][0].delete('add_shared_system_argument') if not apply_measures(measures_dir, { 'ResStockArguments' => measures['ResStockArguments'] }, resstock_arguments_runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'upgraded.osw') register_logs(runner, resstock_arguments_runner) return false @@ -385,6 +385,7 @@ def run(model, runner, user_arguments) in_path = File.expand_path('../home.xml') FileUtils.cp(hpxml_path, in_path) + # Set arguments for the HPXMLtoOpenStudio measure measures['HPXMLtoOpenStudio'] = [{}] measures['HPXMLtoOpenStudio'][0]['hpxml_path'] = in_path measures['HPXMLtoOpenStudio'][0]['output_dir'] = File.dirname(hpxml_path) @@ -397,23 +398,11 @@ def run(model, runner, user_arguments) return false end - if not add_shared_system_argument.nil? - measures['AddSharedSystem'] = [{}] - measures['AddSharedSystem'][0]['add_shared_system_argument'] = add_shared_system_argument - measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } - if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) - register_logs(runner, new_runner) - return false - end - - # Report values from AddSharedSystem - ['add_shared_system_argument'].each do |key_lookup| - new_runner.result.stepValues.each do |step_value| - next if step_value.name != key_lookup - - register_value(runner, key_lookup, get_value_from_workflow_step_value(step_value)) - end - end + # Set arguments for the AddSharedSystem measure + measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } + if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false end register_logs(runner, resstock_arguments_runner) diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml index 015448c363..663f62b5c0 100644 --- a/measures/ApplyUpgrade/measure.xml +++ b/measures/ApplyUpgrade/measure.xml @@ -3,8 +3,8 @@ 3.1 apply_upgrade 33f1654c-f734-43d1-b35d-9d2856e41b5a - 0c3325d7-d5b3-4461-8bcf-4cfdaee5a793 - 2025-12-16T04:01:06Z + 6102b2ba-0d28-488c-a2bd-a869de7e258b + 2025-12-16T05:14:59Z 9339BE01 ApplyUpgrade Apply Upgrade @@ -25016,7 +25016,7 @@ measure.rb rb script - DC2A9134 + 55B70AE3 constants.rb diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 21b9a33def..c926a37a5b 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -341,13 +341,13 @@ def run(model, runner, user_arguments) options_measure_args[option_name].each do |measure_subdir, args_hash| update_args_hash(measures, measure_subdir, args_hash) update_args_hash(measures, 'ResStockArgumentsPostHPXML', args_hash) if measure_subdir == 'ResStockArguments' + update_args_hash(measures, 'AddSharedSystem', args_hash) if measure_subdir == 'ResStockArguments' end end # Run the ResStockArguments measure resstock_arguments_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) # we want only ResStockArguments registered argument values measures['ResStockArguments'][0]['building_id'] = args[:building_id] - add_shared_system_argument = measures['ResStockArguments'][0].delete('add_shared_system_argument') if not apply_measures(measures_dir, { 'ResStockArguments' => measures['ResStockArguments'] }, resstock_arguments_runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'existing.osw') register_logs(runner, resstock_arguments_runner) return false @@ -472,6 +472,7 @@ def run(model, runner, user_arguments) end if not workflow_measures.include?('ApplyUpgrade') + # Set arguments for the HPXMLtoOpenStudio measure measures['HPXMLtoOpenStudio'] = [{}] measures['HPXMLtoOpenStudio'][0]['hpxml_path'] = in_path measures['HPXMLtoOpenStudio'][0]['output_dir'] = File.dirname(hpxml_path) @@ -484,22 +485,20 @@ def run(model, runner, user_arguments) return false end - if not add_shared_system_argument.nil? - measures['AddSharedSystem'] = [{}] - measures['AddSharedSystem'][0]['add_shared_system_argument'] = add_shared_system_argument - measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } - if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) - register_logs(runner, new_runner) - return false - end + # Set arguments for the AddSharedSystem measure + measures['AddSharedSystem'] = [{}] if !measures.keys.include?('AddSharedSystem') + measures_hash = { 'AddSharedSystem' => measures['AddSharedSystem'] } + if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) + register_logs(runner, new_runner) + return false + end - # Report values from AddSharedSystem - ['add_shared_system_argument'].each do |key_lookup| - new_runner.result.stepValues.each do |step_value| - next if step_value.name != key_lookup + # Report values from AddSharedSystem + ['add_shared_system_argument'].each do |key_lookup| + new_runner.result.stepValues.each do |step_value| + next if step_value.name != key_lookup - register_value(runner, key_lookup, get_value_from_workflow_step_value(step_value)) - end + register_value(runner, key_lookup, get_value_from_workflow_step_value(step_value)) end end end diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index adb255aa21..a5c67303a9 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 6e2b3272-a90d-4f4a-bb75-d7474e1d14df - 2025-12-16T00:01:09Z + b83fd844-a3a2-456d-892d-926d66f317d2 + 2025-12-16T05:14:59Z 2C38F48B BuildExistingModel Build Existing Model @@ -395,7 +395,7 @@ measure.rb rb script - FAD60667 + A2B15293 diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index bba246e2ae..eee2855f03 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -1561,17 +1561,6 @@ If true, validates the HPXML output file. Set to false for faster performance. N
-**Argument Name** - -TODO. - -- **Name:** ``add_shared_system_argument`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- **Building Unit ID** The building unit number (between 1 and the number of samples). @@ -1984,6 +1973,17 @@ The type of shared system.
+**Argument Name** + +TODO. + +- **Name:** ``add_shared_system_argument`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ **HVAC: Heating System Heating Autosizing Factor** The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 1ac5d5b098..6a3f96cf4a 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -29,7 +29,6 @@ def modeler_description def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new - measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../measures')) hpxml_measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) # BuildResidentialHPXML @@ -50,13 +49,6 @@ def arguments(model) args << arg end - # AddSharedSystem - full_measure_path = File.join(measures_dir, 'AddSharedSystem', 'measure.rb') - @add_shared_system_measure_arguments = get_measure_instance(full_measure_path).arguments(model) - @add_shared_system_measure_arguments.each do |arg| - args << arg - end - # Additional arguments arg = OpenStudio::Measure::OSArgument.makeIntegerArgument('building_id', false) @@ -291,6 +283,12 @@ def arguments(model) arg.setDescription('The type of shared system.') args << arg + arg = OpenStudio::Measure::OSArgument::makeStringArgument('add_shared_system_argument', false) + arg.setDisplayName('Argument Name') + arg.setDescription('TODO.') + arg.setDefaultValue('None') + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_autosizing_factor', false) arg.setDisplayName('HVAC: Heating System Heating Autosizing Factor') arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 110951adcd..668ead6e18 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - b0371fe7-238f-42d1-b31d-8ed56cdee89d - 2025-12-16T04:01:10Z + 56edaa6b-a3ef-4c84-b871-4657137639fc + 2025-12-16T04:36:40Z 2C38F48B ResStockArguments ResStock Arguments @@ -11186,15 +11186,6 @@
- - add_shared_system_argument - Argument Name - TODO. - String - false - false - None - building_id Building Unit ID @@ -11659,6 +11650,15 @@ + + add_shared_system_argument + Argument Name + TODO. + String + false + false + None + heating_system_heating_autosizing_factor HVAC: Heating System Heating Autosizing Factor @@ -12435,7 +12435,7 @@ README.md md readme - 80F56FBF + CAD2F1CA README.md.erb @@ -12452,7 +12452,7 @@ measure.rb rb script - 735845AE + 3640C634 constants.rb From 1482b6f9605f75a752c9032e46ae39d5f807ecd3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 16 Dec 2025 05:21:58 +0000 Subject: [PATCH 50/82] Update documentation. --- .../workflow_inputs/characteristics.rst | 50 +++++++++---------- .../options/HVAC Heating Efficiency.tex | 2 +- .../properties/HVAC Heating Efficiency.tex | 2 +- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst index 041a032d57..3bbe598ca2 100644 --- a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst +++ b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst @@ -30603,28 +30603,6 @@ From ``project_national`` the list of options, option stock saturation, and opti - - - - * - ``add_shared_system_argument`` - - - - - - - - - - - - Test Value - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * - ``hvac_heating_shared_system`` - None - None @@ -30647,6 +30625,28 @@ From ``project_national`` the list of options, option stock saturation, and opti - None - - + * - ``add_shared_system_argument`` + - + - + - + - + - + - Test Value + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - Properties ********** @@ -30703,12 +30703,12 @@ Properties * - ``hvac_heat_pump_backup_heating_efficiency`` - Frac - The rated heating efficiency of the integrated backup. - * - ``add_shared_system_argument`` - - - - TODO. * - ``hvac_heating_shared_system`` - - The type of shared system. + * - ``add_shared_system_argument`` + - + - TODO. * - ``hvac_heat_pump_backup_use_existing_system`` - - Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat_pump_backup_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating_system_2_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex index 1135c2b8f3..fdf1a8e35f 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex @@ -30,8 +30,8 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & 1.0 & 1.0 & 1.0 \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & 1.0 \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & none \\ \hline -\texttt{add\_shared\_system\_argument} & & & Test Value \\ \hline \texttt{hvac\_heating\_shared\_system} & None & None & None \\ \hline +\texttt{add\_shared\_system\_argument} & & & Test Value \\ \hline \hline Option name & Electric Wall Furnace, 100\% AFUE & Fuel Boiler, 76\% AFUE & Fuel Boiler, 80\% AFUE \\ \hline Stock saturation & 1.1\% & 0.89\% & 3.3\% \\ \hline diff --git a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex index 0322ab9868..47eef5e0f2 100644 --- a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex @@ -16,8 +16,8 @@ \texttt{hvac\_heat\_pump\_backup\_type} & & The backup type. Use 'integrated' to represent e.g. built-in electric strip heat or dual-fuel integrated furnace. Use 'separate' to represent e.g. electric baseboard or boiler (based on Heating System 2). \\ \hline \texttt{hvac\_heat\_pump\_backup\_fuel} & & The fuel type of the integrated backup. \\ \hline \texttt{hvac\_heat\_pump\_backup\_heating\_efficiency} & Frac & The rated heating efficiency of the integrated backup. \\ \hline -\texttt{add\_shared\_system\_argument} & & TODO. \\ \hline \texttt{hvac\_heating\_shared\_system} & & The type of shared system. \\ \hline +\texttt{add\_shared\_system\_argument} & & TODO. \\ \hline \texttt{hvac\_heat\_pump\_backup\_use\_existing\_system} & & Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat\_pump\_backup\_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating\_system\_2\_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. \\ \hline \texttt{hvac\_heat\_pump\_sizing\_is\_duct\_limited} & & Whether the (ducted) heat pump has an upper limit for autosized heating/cooling capacity and an adjusted blower fan efficiency (W/CFM) value. This argument is only applicable for heat pump upgrades. \\ \end{customLongTable} From 1a434f9f5a2c756963833bc764bb3208f97b02ec Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 Dec 2025 22:26:12 -0700 Subject: [PATCH 51/82] Update the resstock architecture page in RTD. --- .../basic_tutorial/resstock_architecture.rst | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst b/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst index 4cc0b600a7..5100137c4d 100644 --- a/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst +++ b/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst @@ -43,13 +43,12 @@ The following depicts the order in which workflow measure steps are applied: ===== ============================= ================== ========= ============= ========================== 1 BuildExistingModel Model No Meta measure ResStock 2 ApplyUpgrade Model Yes [#]_ Meta measure ResStock - 3 HPXMLtoOpenStudio Model No OS-HPXML [#]_ - 4 UpgradeCosts Model No ResStock - 5 *Other Model Measures* Model Yes Any [#]_ - 6 ReportSimulationOutput Reporting No OS-HPXML - 7 ReportUtilityBills Reporting No OS-HPXML - 8 *Other Reporting Measures* Reporting Yes Any [#]_ - 9 ServerDirectoryCleanup Reporting No ResStock + 3 UpgradeCosts Model No ResStock + 4 *Other Model Measures* Model Yes Any [#]_ + 5 ReportSimulationOutput Reporting No OS-HPXML [#]_ + 6 ReportUtilityBills Reporting No OS-HPXML + 7 *Other Reporting Measures* Reporting Yes Any [#]_ + 8 ServerDirectoryCleanup Reporting No ResStock ===== ============================= ================== ========= ============= ========================== .. [#] Baseline models with no upgrades do not have the ApplyUpgrade measure applied. @@ -66,6 +65,8 @@ The BuildExistingModel and ApplyUpgrade meta measures call the following model m 2 BuildResidentialHPXML Model No OS-HPXML 3 BuildResidentialScheduleFile Model No OS-HPXML 4 ResStockArgumentsPostHPXML Model No ResStock + 5 HPXMLtoOpenStudio Model No OS-HPXML + 6 AddSharedSystem Model No ResStock ===== ============================= ================== ========= ============= ========================== .. _model-measures: From 58f065afdfda59e8b3922462c267fcf3bf423fa2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 10:12:59 -0700 Subject: [PATCH 52/82] Fix geometry_building_num_units lookup for single-family detached. --- measures/BuildExistingModel/measure.rb | 6 ++---- measures/BuildExistingModel/measure.xml | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 0f1e491e4d..a4f99e9e99 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -356,10 +356,8 @@ def run(model, runner, user_arguments) # Optional whole SFA/MF building simulation whole_sfa_or_mf_building_sim = true - n_units = 1 - if whole_sfa_or_mf_building_sim - n_units = Integer(measures['ResStockArguments'][0]['geometry_building_num_units']) - end + n_units = measures['ResStockArguments'][0]['geometry_building_num_units'] + n_units = 1 if n_units.nil? num_units_modeled = 1 max_num_units_modeled = 5 diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 6ce96cb5e0..1c0c5cefa8 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 36f672a1-fb7b-4067-8146-e55815447385 - 2025-12-16T16:55:19Z + b9d4a4fa-3090-49c9-aa2e-f4033b9d004b + 2025-12-16T17:09:55Z 2C38F48B BuildExistingModel Build Existing Model @@ -395,7 +395,7 @@ measure.rb rb script - 82940FD0 + 1E999060 From 6f18efc2827bab618fdedbddec680193a74d7cc1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 10:20:29 -0700 Subject: [PATCH 53/82] Always set whole_sfa_or_mf_building_sim=false for single-family detached, otherwise downstream errors in reporting measure. --- measures/BuildExistingModel/measure.rb | 5 ++++- measures/BuildExistingModel/measure.xml | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index a4f99e9e99..1144bb1c35 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -357,7 +357,10 @@ def run(model, runner, user_arguments) # Optional whole SFA/MF building simulation whole_sfa_or_mf_building_sim = true n_units = measures['ResStockArguments'][0]['geometry_building_num_units'] - n_units = 1 if n_units.nil? + if n_units.nil? + whole_sfa_or_mf_building_sim = false + n_units = 1 + end num_units_modeled = 1 max_num_units_modeled = 5 diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 1c0c5cefa8..eae3776697 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - b9d4a4fa-3090-49c9-aa2e-f4033b9d004b - 2025-12-16T17:09:55Z + b6762e15-55ee-4ce2-983c-51870f2d7b87 + 2025-12-16T17:19:53Z 2C38F48B BuildExistingModel Build Existing Model @@ -395,7 +395,7 @@ measure.rb rb script - 1E999060 + 711BAA5A From f76fbd0877f7010019b68809c90188a08184fd09 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 10:30:54 -0700 Subject: [PATCH 54/82] Remove HPXMLtoOpenStudio from expected measure order. --- measures/BuildExistingModel/measure.rb | 4 +++- measures/BuildExistingModel/measure.xml | 6 +++--- test/test_run_analysis.rb | 1 - 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 1144bb1c35..1e269fdc5a 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -360,12 +360,14 @@ def run(model, runner, user_arguments) if n_units.nil? whole_sfa_or_mf_building_sim = false n_units = 1 + else + n_units = Integer(n_units) end num_units_modeled = 1 max_num_units_modeled = 5 unit_multipliers = [] - if whole_sfa_or_mf_building_sim && n_units > 1 + if whole_sfa_or_mf_building_sim && (n_units > 1) num_units_modeled = [n_units, max_num_units_modeled].min unit_multipliers = split_into(n_units, num_units_modeled) end diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index eae3776697..c06c78ec79 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - b6762e15-55ee-4ce2-983c-51870f2d7b87 - 2025-12-16T17:19:53Z + 0c24b3a3-a79b-456e-a4a0-2e4a142609f4 + 2025-12-16T17:30:00Z 2C38F48B BuildExistingModel Build Existing Model @@ -395,7 +395,7 @@ measure.rb rb script - 711BAA5A + 4E32DB0A diff --git a/test/test_run_analysis.rb b/test/test_run_analysis.rb index 988fe11107..8c8b4ad6b1 100644 --- a/test/test_run_analysis.rb +++ b/test/test_run_analysis.rb @@ -347,7 +347,6 @@ def test_national_baseline def _test_measure_order(osw) expected_order = ['BuildExistingModel', 'ApplyUpgrade', - 'HPXMLtoOpenStudio', 'UpgradeCosts', 'ReportSimulationOutput', 'ReportUtilityBills', From 20cb490ff8fc68466cc21f8d00c30d498128c79f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 10:34:32 -0700 Subject: [PATCH 55/82] Revert postprocessing changes on develop. --- postprocessing/README.md | 14 +- postprocessing/resstockpostproc/__init__.py | 7 +- .../resstockpostproc/income_mapper.py | 2 +- .../resstockpostproc/process_bsb_results.py | 152 +- .../resstockpostproc/process_metadata.py | 644 +----- .../resources/gisdata/county_lookup_table.csv | 34 - .../publication/sdr_column_definitions.csv | 1919 ++++++++--------- postprocessing/resstockpostproc/utils.py | 214 +- 8 files changed, 1059 insertions(+), 1927 deletions(-) diff --git a/postprocessing/README.md b/postprocessing/README.md index 4b14590b62..9005df2d47 100644 --- a/postprocessing/README.md +++ b/postprocessing/README.md @@ -35,19 +35,11 @@ To install the package, we recommend using `uv` for Python package management. uv run --group dev pre-commit install ``` +# Usage + + 4. Run the scripts as desired ```bash - # Output the failure log cd path/to/postprocessing uv run resstockpostproc/get_failures.py --verbose - - # Export metadata and annual results from files on S3 - uv run resstockpostproc/process_bsb_results.py "s3://res-sdr/testing-sdr-fy25/a_run" "C:/path/to/bsb/output/a_run_output" - - # Export metdata and annual results from local files - # (It is faster to download the /baseline and /upgrades directories from S3 once instead of reading from S3 each time) - uv run resstockpostproc/process_bsb_results.py "C:/path/to/bsb/output/a_run" "C:/path/to/bsb/output/a_run_output" - - # Export metdata and annual results to OEDI - uv run resstockpostproc/process_bsb_results.py "C:/path/to/bsb/output/a_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" ``` diff --git a/postprocessing/resstockpostproc/__init__.py b/postprocessing/resstockpostproc/__init__.py index 0a73c819a2..bf44060fab 100644 --- a/postprocessing/resstockpostproc/__init__.py +++ b/postprocessing/resstockpostproc/__init__.py @@ -1 +1,6 @@ -from .process_metadata import process_simulation_outputs \ No newline at end of file +from resstockpostproc.process_metadata import publish_baseline_annual_results, publish_upgrade_annual_results + +__all__ = [ + "publish_baseline_annual_results", + "publish_upgrade_annual_results", +] diff --git a/postprocessing/resstockpostproc/income_mapper.py b/postprocessing/resstockpostproc/income_mapper.py index d08ab95100..5116bab221 100644 --- a/postprocessing/resstockpostproc/income_mapper.py +++ b/postprocessing/resstockpostproc/income_mapper.py @@ -108,7 +108,7 @@ def assign_representative_income(df: pl.LazyFrame | pl.DataFrame, return_map_onl check_df = check_df.collect() if lazy else check_df assert len(check_df) == 0, f"rep_income could not be mapped for {len(check_df)} rows\n{check_df}" - # print(f"Note: {rep_inc} is not available for vacant units, which have 'Not Available' for in.income") + print(f"Note: {rep_inc} is not available for vacant units, which have 'Not Available' for in.income") df3 = df2.select([bldg_id, rep_inc]) if return_map_only: diff --git a/postprocessing/resstockpostproc/process_bsb_results.py b/postprocessing/resstockpostproc/process_bsb_results.py index f31d181981..0bf0a5b8f5 100644 --- a/postprocessing/resstockpostproc/process_bsb_results.py +++ b/postprocessing/resstockpostproc/process_bsb_results.py @@ -4,99 +4,87 @@ Example usage: uv run resstockpostproc/process_bsb_results.py /path/to/bsb_raw_results /path/to/output_dir -uv run resstockpostproc/process_bsb_results.py "C:/Scratch/ResStock/efforts/full_550k_run" "s3://oedi-data-lake/nrel-pds-building-stock/end-use-load-profiles-for-us-building-stock/2025/resstock_amy2018_release_1" Note: bsb_raw_results folder must contain both baseline and upgrade files. Baseline file should be named results_up00.parquet and upgrade files should be named results_upXX.parquet where XX is the upgrade number. The can either be in their own folders (baseline and upgrades) or all be in the same folder. """ -import re +import sys import polars as pl from pathlib import Path from resstockpostproc.process_metadata import ( - get_schema_superset, - get_upgrade_rename_dict, - get_failed_building_list, - process_simulation_outputs, - export_metadata_and_annual_results_for_upgrade, - cache_simulation_outputs_file -) -from resstockpostproc.utils import ( - setup_fsspec_filesystem + publish_baseline_annual_results, + publish_upgrade_annual_results, ) +import re + + +def process_results(raw_results_dir: str, output_dir: str) -> None: + output_path = Path(output_dir) + output_path.mkdir(parents=True, exist_ok=True) + result_files = list(Path(raw_results_dir).rglob("*")) + baseline_files = [f for f in result_files if "up00" in f.name.lower()] + upgrade_files = [f for f in result_files if "up00" not in f.name.lower()] + + if not baseline_files: + print("Error: No baseline or upgrade files found") + sys.exit(1) + if len(baseline_files) > 1: + print("Error: More than one baseline file found") + sys.exit(1) + + baseline_file = baseline_files[0] + print(f"Processing baseline file: {baseline_file}") + baseline_df = read_file(baseline_file) -def export_metadata_and_annual_results(raw_results_dir: str, - output_dir: str, - aws_profile_name = None) -> None: - # Set up filesystem objects for raw results and output directories - raw_results_dir = setup_fsspec_filesystem(raw_results_dir, aws_profile_name) - output_dir = setup_fsspec_filesystem(output_dir, aws_profile_name) - - # Find the raw results files - pqt_glob = f'{raw_results_dir["fs_path"]}/**/*.parquet' - result_files = raw_results_dir['fs'].glob(pqt_glob) - baseline_file = [f for f in result_files if "up00" in Path(f).name.lower()][0] - upgrade_ids = [int(re.search(r'up(\d+)', p).group(1)) for p in result_files] - upgrade_ids.sort() - - # Information used across upgrades - upgrade_renamer = get_upgrade_rename_dict(raw_results_dir) - col_schema = get_schema_superset(result_files, raw_results_dir) - sim_out_cache_dir = Path(f"{output_dir['fs_path']}/cached_simulation_outputs") - - # Process and cache the simulation outputs, starting with the baseline - baseline_df = pl.scan_parquet(baseline_file, storage_options=raw_results_dir['storage_options']) - failed_bldgs = get_failed_building_list(baseline_df) - processed_baseline_df = None - for upgrade_id in upgrade_ids: - upgrade_file = f'{raw_results_dir["fs_path"]}/upgrades/upgrade={upgrade_id}/results_up{upgrade_id:02d}.parquet' - if upgrade_id == 0: - upgrade_file = f'{raw_results_dir["fs_path"]}/baseline/results_up{upgrade_id:02d}.parquet' - - print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_id} {'*'*100}") - raw_upgrade_df = pl.scan_parquet(upgrade_file, storage_options=raw_results_dir['storage_options']) - processed_upgrade_df = process_simulation_outputs( - failed_bldgs, - baseline_df, - processed_baseline_df, - raw_upgrade_df, - upgrade_id, - upgrade_renamer, - col_schema + failed_bldgs = ( + baseline_df.filter(pl.col("completed_status") == "Fail") + .select(pl.col("building_id")) + .collect()["building_id"] + .to_list() + ) + print(f"Removing {len(failed_bldgs)} buildings that failed in baseline") + bs_pub_df = publish_baseline_annual_results(baseline_df) + write_file(bs_pub_df, output_path, upgrade=0) + + for upgrade_file in upgrade_files: + up_info = re.search(r"up(\d+)", upgrade_file.name) + if up_info is None: + continue + upgrade_num = int(up_info.group(1)) + + print(f"Processing upgrade file: {upgrade_file}, upgrade number: {upgrade_num}") + upgrade_df = read_file(upgrade_file) + up_up_df = publish_upgrade_annual_results( + failed_bldgs, bs_pub_df, upgrade_df, upgrade_num ) - cache_simulation_outputs_file(output_dir, sim_out_cache_dir, upgrade_id, processed_upgrade_df) - up_cols = set(sorted(processed_upgrade_df.collect_schema().names())) - - if upgrade_id == 0: - processed_baseline_df = processed_upgrade_df - base_cols = set(sorted(processed_baseline_df.collect_schema().names())) - - if not base_cols == up_cols: - raise ValueError("Column set in baseline and upgrade don't match") - - # Export files to specified geographic partitions - geo_exports = [ - { - 'geo_top_dir': 'national', - 'partition_cols': {}, - 'data_types': ['full'], # TODO add basic - 'file_types': [ 'csv', 'parquet'], - }, - { - 'geo_top_dir': 'by_state', - 'partition_cols': { - 'in.state': 'state' - }, - 'data_types': ['full'], # TODO add basic - 'file_types': ['csv', 'parquet'], - } - ] - for upgrade_id in upgrade_ids: - export_metadata_and_annual_results_for_upgrade( - output_dir, - upgrade_id, - geo_exports) + write_file(up_up_df, output_path, upgrade_num) + + +def read_file(file: Path) -> pl.LazyFrame: + match file.suffix: + case ".parquet": + return pl.scan_parquet(file) + case ".csv": + return pl.scan_csv(file) + case ".gz": + assert file.stem.endswith(".csv"), f"gz file is not a csv: {file}" + return pl.scan_csv(file) + case _: + raise ValueError(f"Unsupported file type: {file}") + + +def write_file(df: pl.LazyFrame, output_path: Path, upgrade: int): + parquet_file_dir = output_path / "parquet" / f"upgrade={upgrade}" + parquet_file_dir.mkdir(parents=True, exist_ok=True) + csv_file_dir = output_path / "results_csvs_pub" + csv_file_dir.mkdir(parents=True, exist_ok=True) + csv_file = csv_file_dir / f"results_up{upgrade:02d}.csv" + parquet_file = parquet_file_dir / f"results_up{upgrade:02d}.parquet" + df.sink_parquet(parquet_file) + df.sink_csv(csv_file) + print(f"Wrote {upgrade} to {parquet_file} and {csv_file}") if __name__ == "__main__": @@ -116,4 +104,4 @@ def export_metadata_and_annual_results(raw_results_dir: str, help="Directory to write transformed results", ) args = parser.parse_args() - export_metadata_and_annual_results(args.raw_results_dir, args.output_dir) + process_results(args.raw_results_dir, args.output_dir) diff --git a/postprocessing/resstockpostproc/process_metadata.py b/postprocessing/resstockpostproc/process_metadata.py index cd058f4b07..8719cc4db9 100644 --- a/postprocessing/resstockpostproc/process_metadata.py +++ b/postprocessing/resstockpostproc/process_metadata.py @@ -1,23 +1,20 @@ import polars as pl import pathlib +from collections.abc import Sequence + import geopandas as gpd -import logging -import s3fs -import json -import re -from collections import defaultdict -from typing import Sequence +import polars as pl + +from resstockpostproc.utils import fix_all_fuels_emissions, fix_site_energy_total, get_col_maps + from resstockpostproc.utils import ( fix_site_energy_total, fix_all_fuels_emissions, get_col_maps, - write_geo_data, - conversion_factor ) from resstockpostproc.income_mapper import assign_representative_income -logger = logging.getLogger(__name__) def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: failed_bldgs = metadata_df.filter(pl.col("completed_status") == "Fail") @@ -25,170 +22,112 @@ def get_failed_bldgs(metadata_df: pl.LazyFrame) -> set[int]: return set(failed_bldgs.collect()["building_id"].to_list()) -def process_simulation_outputs( +def publish_baseline_annual_results(base_raw_df: pl.LazyFrame) -> pl.LazyFrame: + """ + Publishes the annual results for the baseline. + + Args: + base_raw_df: LazyFrame containing baseline results from raw BuildStockBatch results. + Returns: + LazyFrame containing published baseline results. + """ + col_maps = get_col_maps() + base_df = base_raw_df.filter(pl.col("completed_status") == "Success") + base_df = get_transformed_cols(base_df, col_maps) + base_df = base_df.with_columns(pl.lit(True).alias("applicability")) + base_df = base_df.with_columns([pl.lit(0).alias("upgrade"), pl.lit("Baseline").alias("upgrade_name")]) + base_df = add_income_and_burden(base_df) + base_df = add_county_column(base_df) + base_df = add_puma_column(base_df) + + all_cols = base_df.collect_schema().names() + print("Fixing site energy and site emission total for baseline ...") + base_df = fix_site_energy_total(base_df, all_cols) + base_df = fix_all_fuels_emissions(base_df, all_cols) + base_df = add_panel_contraint_cols(base_df) + base_df = add_upgrade_columns(base_df) + base_df = reorder_columns(base_df, col_maps, is_baseline=True) + base_df = base_df.sort("bldg_id") + return base_df + + +def publish_upgrade_annual_results( baseline_failed_bldgs: set[int], - base_raw_df: pl.LazyFrame, - base_proc_df: pl.LazyFrame, + base_pub_df: pl.LazyFrame, upgrade_raw_df: pl.LazyFrame, upgrade_num: int, - upgrade_renamer: dict[str, str], - upgrade_col_schema: dict[str, str] ) -> pl.LazyFrame: """ Publishes the annual results for a specific upgrade. Args: baseline_failed_bldgs: Set of failed building IDs in baseline. - base_proc_df: LazyFrame containing baseline results already passed through process_baseline_simulation_outputs. + base_pub_df: LazyFrame containing baseline results already passed through publish_baseline_annual_results. upgrade_raw_df: LazyFrame containing upgrade results from raw BuildStockBatch results. upgrade_num: Integer representing the upgrade number. Returns: LazyFrame containing published upgrade results. """ - is_baseline = (upgrade_num == 0) col_maps = get_col_maps() - - df = upgrade_raw_df - df = set_baseline_applicability(df, is_baseline) - df = add_missing_cols_from_baseline_to_upgrade(df, base_raw_df, is_baseline) - df = remove_failed_baseline_buildings(df, baseline_failed_bldgs) - df = remove_na_or_failed_buildings(df) - df = replace_missing_buildings_with_baseline(df, base_raw_df, is_baseline) - df = downselect_and_rename_cols(df, col_maps) # Per sdr_column_definitions.csv - df = add_income_and_burden(df) - df = add_county_column(df) - df = add_puma_column(df) - df = add_baseline_upgrade_name_col(df, is_baseline) - df = add_upgrade_id_col(df, upgrade_num) - df = rename_upgrades(df, upgrade_renamer) - df = fix_site_energy_total(df) - df = add_upgrade_foo_cols(df) - df = add_panel_contraint_cols(df) - df = fix_all_fuels_emissions(df) - df = downselect_fuel_emissions_cols(df) - - if is_baseline: - df = add_saving_cols(df, df) # Intentionally calculate savings = baseline - baseline = 0 - else: - df = add_saving_cols(df, base_proc_df) - - df = add_intensity_cols(df) - df = add_weighted_cols(df) - df = add_missing_upgrade_cols(df, upgrade_col_schema) - df = adjust_col_dtypes(df) - df = downselect_and_order_pub_cols(df, col_maps) # Per sdr_column_definitions.csv - df = df.sort("bldg_id") - return df - - -def get_schema_superset(upgrade_files: list, files_dir) -> dict: - upgrade_col_schema = {} - for upgrade_file in upgrade_files: - upgrade_df = pl.scan_parquet(upgrade_file, storage_options=files_dir['storage_options']) - upgrade_col_schema.update(get_upgrade_columns(upgrade_df)) - return upgrade_col_schema - - -def set_baseline_applicability(df: pl.LazyFrame, is_baseline: bool) -> pl.LazyFrame: - if not is_baseline: - # Non-baseline upgrades already have an applicability column - return df - print('Setting applicability to True for all baseline buildings') - df = df.with_columns(pl.lit(True).alias("applicability")) - return df - - -def remove_failed_baseline_buildings(df: pl.LazyFrame, baseline_failed_bldgs: set[int],) -> pl.LazyFrame: - print('Removing buildings that failed in the baseline') - df = df.filter( - ~pl.col("building_id").is_in(baseline_failed_bldgs) + upgrade_df = upgrade_raw_df.filter( + (~pl.col("building_id").is_in(baseline_failed_bldgs)) & (pl.col("completed_status") == "Success") ) - return df - - -def remove_na_or_failed_buildings(df: pl.LazyFrame) -> pl.LazyFrame: - print('Removing buildings that failed in this upgrade or where the upgrade was not applicable') - df = df.filter(pl.col("completed_status") == "Success") - return df - - -def get_failed_building_list(df: pl.LazyFrame, ) -> list[int]: - print('Getting failed building list') failed_bldgs = ( - df.filter(pl.col("completed_status") != "Success") + upgrade_raw_df.filter( + (pl.col("completed_status") == "Fail") & (~pl.col("building_id").is_in(baseline_failed_bldgs)) + ) .select(pl.col("building_id")) .collect()["building_id"] .to_list() ) - return failed_bldgs - - -def add_upgrade_id_col(df: pl.LazyFrame, upgrade_id: int) -> pl.LazyFrame: - df = df.with_columns([pl.lit(upgrade_id).alias("upgrade")]) - return df - - -def add_baseline_upgrade_name_col(df: pl.LazyFrame, is_baseline: bool) -> pl.LazyFrame: - if not is_baseline: - # Upgrades already have an upgrade name column - return df - df = df.with_columns([pl.lit("Baseline").alias("in.upgrade_name")]) - return df - + if failed_bldgs: + print( + f"Replacig these {len(failed_bldgs)} buildings that only failed in " + f"upgrade {upgrade_num} with baseline: {failed_bldgs}" + ) -def add_missing_cols_from_baseline_to_upgrade(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, - is_baseline: bool) -> pl.LazyFrame: - if is_baseline: - # Baseline already has all the columns, no need to add - return upgrade_df - print('Adding missing columns from baseline to upgrade') - base_cols = baseline_df.collect_schema().names() + upgrade_df = get_transformed_cols(upgrade_df, col_maps) + upgrade_df = upgrade_df.with_columns([pl.lit(upgrade_num).alias("upgrade")]) + base_cols = base_pub_df.collect_schema().names() upgrade_cols = upgrade_df.collect_schema().names() - missing_cols = [c for c in list(set(base_cols) - set(upgrade_cols)) + ["building_id"]] - upgrade_df = upgrade_df.join(baseline_df.select(missing_cols), on="building_id", how="left") - return upgrade_df - - -def replace_missing_buildings_with_baseline(upgrade_df: pl.LazyFrame, baseline_df: pl.LazyFrame, - is_baseline: bool) -> pl.LazyFrame: - if is_baseline: - # Baseline determines the full set of buildings, will never be missing any by definition - return upgrade_df - print('Replacing buildings missing from the upgrade with baseline data') - # All buildings present in the upgrade_df are there because the upgrade was applicable to them + missing_cols = list(set(base_cols) - set(upgrade_cols)) + ["bldg_id"] + upgrade_df = upgrade_df.join(base_pub_df.select(missing_cols), on="bldg_id", how="left") + all_cols = upgrade_df.collect_schema().names() + print("Fixing site energy and site emission total for upgrade ...") + upgrade_df = fix_site_energy_total(upgrade_df, all_cols) + upgrade_df = fix_all_fuels_emissions(upgrade_df, all_cols) + upgrade_df = add_upgrade_columns(upgrade_df) upgrade_df = upgrade_df.with_columns(pl.lit(True).alias("applicability")) - upgrade_name_df = upgrade_df.select(pl.col("apply_upgrade.upgrade_name").first()) - # Keep only successful buildings from the baseline - baseline_successful_df = baseline_df.filter(pl.col("completed_status") == "Success") - missing_bldgs_df = baseline_successful_df.join( + # get upgrade_name + upgrade_name_df = upgrade_df.select(pl.col("upgrade_name").first()) + missing_bldgs_df = base_pub_df.join( upgrade_df, - on="building_id", + on="bldg_id", how="anti", # Keep rows from 'base' with no match in 'upgrade' ) missing_bldgs_df = missing_bldgs_df.with_columns( [ - pl.lit(False).alias("applicability"), # Missing buildings are missing b/c upgrade wasn't applicable + pl.lit(False).alias("applicability"), + pl.lit(upgrade_num).alias("upgrade"), ] - ).drop("apply_upgrade.upgrade_name") + ).drop("upgrade_name") + upgrade_cols = upgrade_df.collect_schema().names() missing_bldgs_df = missing_bldgs_df.join(upgrade_name_df, how="cross") upgrade_df = pl.concat([upgrade_df, missing_bldgs_df], how="diagonal_relaxed") - base_ids = set(baseline_successful_df.select('building_id').collect().to_series().to_list()) - up_ids = set(upgrade_df.select('building_id').collect().to_series().to_list()) - assert base_ids == up_ids, f"{len(base_ids)} buildings in baseline, {len(up_ids)} in upgrade" - print(f"{len(base_ids)} buildings in baseline, {len(up_ids)} in upgrade") + upgrade_df = add_saving_cols(upgrade_df, base_pub_df) + upgrade_df = add_panel_contraint_cols(upgrade_df) + upgrade_df = reorder_columns(upgrade_df, col_maps, is_baseline=False) + upgrade_df = upgrade_df.sort("bldg_id") return upgrade_df -def downselect_and_rename_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyFrame: - print('Downselecting and renaming columns from raw simulation outputs per sdr_column_definitions.csv') - transformed_cols = ['applicability'] # Special case +def get_transformed_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl.LazyFrame: + transformed_cols = [] all_cols = df.collect_schema().names() for col_map in col_maps: if col_map["column_type"] not in ["Input", "Output"]: continue - if not col_map["import_from_raw"] == 'yes': - continue assert col_map["column_name"] is not None, "ResStock column name must be provided for Input or Output columns" if col_map["column_name"] not in all_cols: continue @@ -205,240 +144,77 @@ def downselect_and_rename_cols(df: pl.LazyFrame, col_maps: Sequence[dict]) -> pl return df.select(transformed_cols) -def get_upgrade_rename_dict(raw_results_dir): - file_path = pathlib.Path(raw_results_dir["fs_path"]) / "rename_upgrades.json" - if not raw_results_dir["fs"].exists(file_path): - return dict() - with raw_results_dir['fs'].open(file_path, "r") as f: - upgrade_renamer = json.load(f) - return upgrade_renamer - - -def rename_upgrades(df: pl.LazyFrame, upgrade_renamer: dict) -> pl.LazyFrame: - """ - Renames the upgrades in the in.upgrade_name column from values used in the YML file - to new values more appropriate for publication. If an empty dict is supplied, no - renaming is performed. - - Args: - base_raw_df: LazyFrame containing the results. - upgrade_renamer: Map of upgrade names from YML to new names for publication. - Returns: - LazyFrame containing results with modified in.upgrade_name column values. - """ - if not upgrade_renamer: - print("No upgrade renamer was supplied, upgrades not renamed.") - return df - else: - print("Renaming upgrades") - # for old, new in upgrade_renamer.items(): - # print(f'{old} -> {new}') - - # Check that each upgrade name is present in the upgrade renamer dict - up_names = df.select(pl.col("in.upgrade_name")).unique().collect().to_series().to_list() - for up_name in up_names: - if up_name not in upgrade_renamer: - raise ValueError(f"No upgrade rename supplied for: {up_name}") - - df = df.with_columns((pl.col("in.upgrade_name").replace(upgrade_renamer)).alias("in.upgrade_name")) - return df - - def add_income_and_burden(df: pl.LazyFrame) -> pl.LazyFrame: df = assign_representative_income(df) income_col = "in.representative_income" + new_cols = [] # Reassign negative or zero dollar income to 1 dollar adj_income = pl.when(pl.col(income_col) <= 0).then(pl.lit(1)).otherwise(pl.col(income_col)).alias(income_col) # Calculate burden only when income is not null and positive - # Subtract out the EV portion of the utility bill, otherwise this skews the - # energy burden values for all EV-owning households. - # Removing transportation aligns with the DOE definition - # https://www.energy.gov/scep/low-income-energy-affordability-data-lead-tool - dol_per_kwh = "in.utility_bill_electricity_marginal_rates" - ev_kwh = "out.electricity.ev_charging.energy_consumption..kwh" burden = ( pl.when(adj_income.is_not_null()) - .then( - ( - pl.col("out.utility_bills.total_bill..usd") - - ((pl.col(dol_per_kwh).cast(pl.Float64))*pl.col(ev_kwh)) - ) - / adj_income * 100) + .then(pl.col("out.bills.all_fuels.usd") / adj_income * 100) .otherwise(None) - .alias("out.energy_burden..percentage") + .alias("out.energy_burden.percentage") ) return df.with_columns([adj_income, burden]) + def add_saving_cols(df: pl.LazyFrame, baseline_df: pl.LazyFrame) -> pl.LazyFrame: - print("Adding savings columns") savings_cols = [] all_cols = df.collect_schema().names() out_cols = [col for col in all_cols if 'out.' in col and not ( "out.params" in col or + "out.hot_water" in col or "out.panel" in col or "out.capacity" in col or - "out.unmet_hours.ev" in col + "out.unmet_hours.ev_driving" in col or + "out.component_load" in col )] - # Selectively include the following for params + # Selectively include the following for panels out_panel_cols = [col for col in all_cols if - "out.params.panel_load_total_load" in col - or "out.params.panel_load_occupied_capacity" in col - or "out.params.panel_breaker_space_occupied" in col + "out.panel.load.total_load." in col + or "out.panel.load.occupied_capacity." in col + or "out.panel.breaker_space.occupied." in col ] out_cols += out_panel_cols - # print("Columns to calculate savings for (from up_df):") - # for c in sorted(out_cols): - # print(c) - all_base_cols = baseline_df.collect_schema().names() - for c in out_cols: - if c not in all_base_cols: - print(f'ERROR: {c} is in upgrade but not baseline df, cannot calc savings for this column') + baseline_df_with_renamed = baseline_df.select( [pl.col(col).alias(f"baseline_{col}") for col in out_cols] + ["bldg_id"] ) df_with_baseline = df.join(baseline_df_with_renamed, on="bldg_id", how="left") for col in out_cols: - new_col = col_name_to_savings(col) - saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias(new_col) + if col.startswith("out.emissions"): + saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias( + col.replace("out.emissions", "out.emissions_reduction") + ) + else: + saving_col = (pl.col(f"baseline_{col}") - pl.col(col)).alias(f"{col}.savings") savings_cols.append(saving_col) - df = df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) - - return df - - -def col_name_to_intensity(col_name: str, new_units=None) -> str: - col_name = col_name.replace('energy_consumption', 'energy_consumption_intensity') - col_name = col_name.replace('energy_savings', 'energy_savings_intensity') - if new_units is not None: - old_units = units_from_col_name(col_name) - col_name = col_name.replace(f'..{old_units}', f'..{new_units}') - - return col_name - - -def add_intensity_cols(df: pl.LazyFrame) -> pl.LazyFrame: - print("Adding intensity columns") - all_cols = df.collect_schema().names() - int_cols = [col for col in all_cols if 'out.' in col and ( - ".energy_consumption" in col or - ".energy_savings" in col - )] - - for col in int_cols: - new_units = "kwh_per_ft2" - wtd_col_name = col_name_to_intensity(col, new_units) - df = df.with_columns( - pl.col(col) - .truediv(pl.col("in.sqft..ft2")) - .alias(wtd_col_name) - ) - - return df - - -def col_name_to_weighted(col_name: str, new_units=None) -> str: - col_name = col_name.replace('out.', 'calc.') - col_name = col_name.replace('calc.', 'calc.weighted.') - if new_units is not None: - old_units = units_from_col_name(col_name) - col_name = col_name.replace(f'..{old_units}', f'..{new_units}') - - return col_name - - -def units_from_col_name(col_name: str) -> str: - # Extract the units from the column name - match = re.search('\.\.(.*)', col_name) - if match: - units = match.group(1) - else: - units = '' - - return units - - -def col_name_to_savings(col_name: str) -> str: - converted_col_name = str(col_name) - svg_renames = { - '.energy_consumption': '.energy_savings', - '_bill..': '_bill_savings..', - '_daily_peak_': '_daily_peak_savings_', - '.peak_': '.peak_savings_', - '.energy_burden': '.energy_burden_savings', - '.unmet_hours': '.unmet_hours_reduction', - 'out.hot_water': 'out.hot_water_savings', - '.load.cooling.peak': '.load.cooling.peak_savings', - '.load.heating.peak': '.load.heating.peak_savings', - '.energy_delivered': '.energy_delivered_savings', - '.energy_solar_thermal': '.energy_solar_thermal_savings', - '.energy_tank_losses': '.energy_tank_losses_savings', - '.emissions.': '.emissions_reduction.', - 'panel_load_total_load': 'panel_load_total_load_savings', - 'panel_load_occupied_capacity': 'panel_load_occupied_capacity_savings', - 'panel_breaker_space_occupied': 'panel_breaker_space_occupied_savings', - "component_load": "component_load_savings" - } - for bef, aft in svg_renames.items(): - converted_col_name = converted_col_name.replace(bef, aft) - - if converted_col_name == col_name: - raise ValueError(f"Cannot convert column name {col_name} to savings column") - - return converted_col_name - - -def add_weighted_cols(df: pl.LazyFrame) -> pl.LazyFrame: - print("Adding weighted columns") - all_cols = df.collect_schema().names() - wtd_cols = [col for col in all_cols if 'out.' in col and ( - ".energy_consumption." in col or - ".energy_savings." in col or - ".emissions." in col or - ".emissions_reduction." in col - )] - - wtd_col_unit_convs = { - 'kwh': 'tbtu', - 'co2e_kg': 'co2e_mmt' - } - - for col in wtd_cols: - old_units = units_from_col_name(col) - new_units = wtd_col_unit_convs[old_units] - conv_fact = conversion_factor(old_units, new_units) - wtd_col_name = col_name_to_weighted(col, new_units) - df = df.with_columns( - pl.col(col) - .mul(pl.col("weight")) - .mul(conv_fact) - .alias(wtd_col_name) - ) - - return df + return df_with_baseline.with_columns(savings_cols).drop([f"baseline_{col}" for col in out_cols]) def add_panel_contraint_cols(df: pl.LazyFrame) -> pl.LazyFrame: - print("Adding panel constraint columns") all_cols = df.collect_schema().names() - amp_prefix = "out.params.panel_load_headroom_capacity." + amp_prefix = "out.panel.load.headroom_capacity." amp_cols = [col for col in all_cols if amp_prefix in col] - space_col = "out.params.panel_breaker_space_headroom_count" + space_col = "out.panel.breaker_space.headroom.count" - out_space_col = "out.params.panel_constraint_breaker_space" + out_space_col = "out.panel.constraint.breaker_space" space_constraint = pl.when(pl.col(space_col) < 0).then(True).otherwise(False).alias(out_space_col) ind_constraints = [space_constraint] overall_constraint = None for amp_col in amp_cols: - nec_method = amp_col.removeprefix(amp_prefix).removesuffix("..a") - out_amp_col = "out.params.panel_constraint_capacity." + nec_method + nec_method = amp_col.removeprefix(amp_prefix).removesuffix(".a") + out_amp_col = "out.panel.constraint.capacity." + nec_method amp_constraint = pl.when(pl.col(amp_col) < 0).then(True).otherwise(False).alias(out_amp_col) ind_constraints.append(amp_constraint) - out_overall_col = "out.params.panel_constraint_overall." + nec_method + out_overall_col = "out.panel.constraint.overall." + nec_method overall_constraint = pl.coalesce( pl.when(pl.col(out_amp_col) & pl.col(out_space_col)).then(pl.lit("Capacity and Space Constrained")), pl.when(pl.col(out_amp_col) & ~pl.col(out_space_col)).then(pl.lit("Capacity Constrained Only")), @@ -457,7 +233,6 @@ def add_county_column(df: pl.LazyFrame): """ Changes the county column to the FIPS code and adds a county name column. """ - print("Adding county column") here = pathlib.Path(__file__).resolve().parent county_map_df = pl.read_csv( here / "resources" / "gisdata" / "county_lookup_table.csv", @@ -478,7 +253,6 @@ def add_puma_column(df: pl.LazyFrame): """ Changes the puma column to the GISJOIN code. """ - print("Adding PUMA column") here = pathlib.Path(__file__).resolve().parent pumas = gpd.read_file(here / "resources" / "gisdata" / "ipums_pums_2010_simple_t100_area_us_puma.geojson") puma_map = pumas[["GISJOIN", "puma_tsv"]].set_index("puma_tsv")["GISJOIN"].to_dict() @@ -486,37 +260,7 @@ def add_puma_column(df: pl.LazyFrame): return df -def get_upgrade_columns(lf: pl.LazyFrame) -> list: - upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] - if not upgrade_cols: - return [] - upgrade_lf = lf.select(["building_id"] + upgrade_cols) - upgrade_df = ( - upgrade_lf.unpivot( - index="building_id", - on=upgrade_cols, - variable_name="in.upgrade_name", - value_name="upgrade_value", - ) - .drop_nulls("upgrade_value") - .filter(pl.col("upgrade_value") != "") - .with_columns( - pl.col("upgrade_value").str.split_exact("|", 1).struct.rename_fields(["upgrade_key", "upgrade_value"]) - ) - .unnest("upgrade_value") - .collect() - .group_by(["building_id", "upgrade_key"]) - .agg(pl.col("upgrade_value").first()) - .pivot(index="building_id", columns="upgrade_key", values="upgrade_value") - ) - upgrade_df = upgrade_df.rename( - {c: f"upgrade.{c.lower().replace(' ', '_')}" for c in upgrade_df.columns if c != "building_id"} - ) - return upgrade_df.drop("building_id").schema - - -def add_upgrade_foo_cols(lf: pl.LazyFrame) -> pl.LazyFrame: - print("Adding upgrade columns from this upgrade") +def add_upgrade_columns(lf: pl.LazyFrame) -> pl.LazyFrame: upgrade_cols = [c for c in lf.collect_schema().names() if c.startswith("upgrade_costs.") and c.endswith("_name")] if not upgrade_cols: return lf @@ -525,7 +269,7 @@ def add_upgrade_foo_cols(lf: pl.LazyFrame) -> pl.LazyFrame: upgrade_lf.unpivot( index="bldg_id", on=upgrade_cols, - variable_name="in.upgrade_name", + variable_name="upgrade_name", value_name="upgrade_value", ) .drop_nulls("upgrade_value") @@ -539,200 +283,24 @@ def add_upgrade_foo_cols(lf: pl.LazyFrame) -> pl.LazyFrame: .agg(pl.col("upgrade_value").first()) .pivot(index="bldg_id", columns="upgrade_key", values="upgrade_value") ) + print("Done adding upgrade columns") upgrade_df = upgrade_df.rename( {c: f"upgrade.{c.lower().replace(' ', '_')}" for c in upgrade_df.columns if c != "bldg_id"} ) return lf.drop(upgrade_cols).join(upgrade_df.lazy(), on="bldg_id", how="left") -def add_missing_upgrade_cols(df: pl.LazyFrame, upgrade_col_schema: dict) -> pl.LazyFrame: - print("Adding upgrade columns from superset across all upgrades") - all_cols = df.collect_schema().names() - for col_name, col_dtype in upgrade_col_schema.items(): - if col_name in all_cols: - continue - df = df.with_columns( - pl.lit(None).cast(col_dtype).alias(col_name) - ) - return df - - -def adjust_col_dtypes(df: pl.LazyFrame) -> pl.LazyFrame: - print("Adjusting column dtypes") - # Upgrade ID must be Athena bigint (np.int64) - df = df.with_columns(pl.col("upgrade").cast(pl.Int64)) - return df - - -def downselect_fuel_emissions_cols(df: pl.LazyFrame): - """ - - for each scenario - out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg (This actually uses the net column from the raw result) - out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg - - Downselect to just one column for natural gas, propane, and fuel oil emissions - because - out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.natural_gas.total..co2e_kg - out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.fuel_oil.total..co2e_kg - out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg --> out.emissions.propane.total..co2e_kg - - out.emissions.total.lrmer_midcase_15..co2e_kg (total for a scenario) - """ - print("Downselecting fuel emissions to one scenario") - all_cols = df.collect_schema().names() - - fuel_emissions_re = re.compile(r"^out\.emissions\.(natural_gas|fuel_oil|propane).(\w+)..co2e_kg") - scenario2cols = defaultdict(list) - for col in all_cols: - if (match := re.search(fuel_emissions_re, col)): - scenario2cols[match[2]].append(col) - - for i, s2c in enumerate(scenario2cols.items()): - scenario, cols = s2c - if i == 0: - # Keep the first scenario's columns and rename them - df = df.rename({col: col.replace(scenario, "total") for col in cols}) - # for col in cols: - # print(f'Renaming {col} to {col.replace(scenario, "total")}') - else: - # Delete the fuel emissions columns for all other scenarios - df = df.drop(cols) - # print(f'Dropping: {cols}') - return df - - -def downselect_and_order_pub_cols(lf: pl.LazyFrame, col_maps: Sequence[dict]): - print("Reordering columns and checking for missing/extra columns") +def reorder_columns(lf: pl.LazyFrame, col_maps: Sequence[dict], is_baseline: bool): # verify that all the columns in lf are one published_name in col_maps all_df_cols = set(lf.collect_schema().names()) - all_defined_cols = [col_map["published_name"] for col_map in col_maps if "yes" in col_map["publish_in_full"]] + all_defined_cols = [col_map["published_name"] for col_map in col_maps] extra_cols = all_df_cols - set(all_defined_cols) if extra_cols: - print("Extra columns in output data not defined in publication column definition:") - for c in sorted(extra_cols): - print(f"Extra column: {c}") + print(f"Extra columns in output data not defined in publication column definition: {extra_cols}") missing_cols = [col for col in set(all_defined_cols) - all_df_cols if not col.startswith("upgrade.")] + if is_baseline: + missing_cols = [col for col in missing_cols if not ("savings" in col or "reduction" in col)] if missing_cols: - print("Missing columns in output data that are defined in publication column definition:") - for c in sorted(missing_cols): - print(f"Missing column: {c}") + print(f"Missing columns in output data that is defined in publication column definition: {missing_cols}") available_cols = [col for col in all_defined_cols if col in all_df_cols] return lf.select(available_cols) - - -def export_metadata_and_annual_results_for_upgrade(output_dir, upgrade_id, geo_exports): - """ - Subdivides the annual results by geography and writes to OEDI. - Creates .parquet and .csv.gz files. - - Args: - output_dir: Dict of filesystem object information - upgrade_id: Integer ID for the upgrade to process - geo_exports: List of Dicts of export definitions - Returns: - None - - """ - - print(f"Exporting metadata and annual results for upgrade {upgrade_id}") - - # Read the cached simulation results - sim_out_cache_dir = f"{output_dir['fs_path']}/cached_simulation_outputs" - parquet_file_dir = pathlib.Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - parquet_file = parquet_file_dir / f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - parquet_file = f's3://{parquet_file.as_posix()}' - if not output_dir['fs'].exists(parquet_file): - raise FileNotFoundError( - f'Cannot load upgrade data from {parquet_file}, call process_upgrade_simulation_outputs() first.') - up_df = pl.read_parquet(parquet_file, storage_options=output_dir['storage_options'] ) - - # Export each geo export level - for ge in geo_exports: - geo_top_dir = ge['geo_top_dir'] - partition_cols = ge['partition_cols'] - data_types = ge['data_types'] - file_types = ge['file_types'] - print(f"Exporting {geo_top_dir} by {partition_cols} {data_types} {file_types}") - - # geo_col_names = list(partition_cols.keys()) - - # Name the top-level directory - full_geo_dir = f"{output_dir['fs_path']}/metadata_and_annual_results/{geo_top_dir}" - - # Make a directory for the geography type - if not isinstance(output_dir['fs'], s3fs.S3FileSystem): - output_dir['fs'].mkdirs(full_geo_dir, exist_ok=True) - - # Make a directory for each data type X file type combo - if not isinstance(output_dir['fs'], s3fs.S3FileSystem): - for data_type in data_types: - for file_type in file_types: - output_dir['fs'].mkdirs(f'{full_geo_dir}/{data_type}/{file_type}', exist_ok=True) - - # Export by various geographies - if partition_cols: - for by_col, by_dir_name in partition_cols.items(): - for by_val, geo_df in up_df.group_by(by_col): - by_val = by_val[0] - geo_levels = [f'{by_dir_name}={by_val}'] - geo_prefixes = [by_val] - for data_type in data_types: - # TODO Downselect the DF to fewer columns for basic version - - for file_type in file_types: - file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) - print(f"Writing {file_path}") - input_args = (geo_df, output_dir, file_type, file_path) - write_geo_data(input_args) - else: - # National level is not partitioned - geo_levels = [] - geo_prefixes = [] - for data_type in data_types: - # TODO Downselect the DF to fewer columns for basic version - - for file_type in file_types: - file_path = get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id) - print(f"Writing {file_path}") - input_args = (up_df, output_dir, file_type, file_path) - write_geo_data(input_args) - - -def get_file_path(output_dir, full_geo_dir, geo_prefixes, geo_levels, file_type, data_type, upgrade_id): - """ - Builds a file path for each aggregate based on name, file type, and aggregation level - """ - geo_level_dir = f'{full_geo_dir}/{data_type}/{file_type}' - if len(geo_levels) > 0: - geo_level_dir = f'{geo_level_dir}/' + '/'.join(geo_levels) - if not isinstance(output_dir['fs'], s3fs.S3FileSystem): - output_dir['fs'].mkdirs(geo_level_dir, exist_ok=True) - file_name = f'upgrade{upgrade_id}' - # Add geography prefix to filename - if len(geo_prefixes) > 0: - geo_prefix = '_'.join(geo_prefixes) - file_name = f'{geo_prefix}_{file_name}' - # Add data_type suffix to filename - if data_type == 'basic': - file_name = f'{file_name}_{data_type}' - # Add the filetype extension to filename - file_name = f'{file_name}.{file_type}' - # Write the file, depending on filetype - file_path = f'{geo_level_dir}/{file_name}' - - return file_path - - -def cache_simulation_outputs_file(output_dir, sim_out_cache_dir: pathlib.Path, upgrade_id: int, df: pl.LazyFrame): - file_name = f"cached_simulation_outputs_upgrade{upgrade_id}.parquet" - upgrade_cache_dir = pathlib.Path(f"{sim_out_cache_dir}/upgrade={upgrade_id}") - file_path = upgrade_cache_dir / file_name - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - file_path = f's3://{file_path.as_posix()}' - else: - upgrade_cache_dir.mkdir(parents=True, exist_ok=True) - with output_dir['fs'].open(str(file_path), "wb") as f: - df.sink_parquet(f) - print(f"Cached simulation outputs for upgrade {upgrade_id} to {file_path}") diff --git a/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv b/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv index 0a1da0deb7..6f03574629 100644 --- a/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv +++ b/postprocessing/resstockpostproc/resources/gisdata/county_lookup_table.csv @@ -1,33 +1,4 @@ long_name,original_FIP -"AK, Aleutians East Borough",G0200130 -"AK, Aleutians West Census Area",G0200160 -"AK, Anchorage Municipality",G0200200 -"AK, Bethel Census Area",G0200500 -"AK, Bristol Bay Borough",G0200600 -"AK, Denali Borough",G0200680 -"AK, Dillingham Census Area",G0200700 -"AK, Fairbanks North Star Borough",G0200900 -"AK, Haines Borough",G0201000 -"AK, Hoonah-Angoon Census Area",G0201050 -"AK, Juneau City and Borough",G0201100 -"AK, Kenai Peninsula Borough",G0201220 -"AK, Ketchikan Gateway Borough",G0201300 -"AK, Kodiak Island Borough",G0201500 -"AK, Kusilvak Census Area",G0201580 -"AK, Lake and Peninsula Borough",G0201640 -"AK, Matanuska-Susitna Borough",G0201700 -"AK, Nome Census Area",G0201800 -"AK, North Slope Borough",G0201850 -"AK, Northwest Arctic Borough",G0201880 -"AK, Petersburg Borough",G0201950 -"AK, Prince of Wales-Hyder Census Area",G0201980 -"AK, Sitka City and Borough",G0202200 -"AK, Skagway Municipality",G0202300 -"AK, Southeast Fairbanks Census Area",G0202400 -"AK, Valdez-Cordova Census Area",G0202610 -"AK, Wrangell City and Borough",G0202750 -"AK, Yakutat City and Borough",G0202820 -"AK, Yukon-Koyukuk Census Area",G0202900 "AL, Autauga County",G0100010 "AL, Baldwin County",G0100030 "AL, Barbour County",G0100050 @@ -545,11 +516,6 @@ long_name,original_FIP "GA, Wilkes County",G1303170 "GA, Wilkinson County",G1303190 "GA, Worth County",G1303210 -"HI, Hawaii County",G1500010 -"HI, Honolulu County",G1500030 -"HI, Kalawao County",G1500050 -"HI, Kauai County",G1500070 -"HI, Maui County",G1500090 "ID, Ada County",G1600010 "ID, Adams County",G1600030 "ID, Bannock County",G1600050 diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv index f9922de79e..b3ef092469 100644 --- a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv +++ b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions.csv @@ -1,1067 +1,852 @@ -Column Type,Import From Raw,Publish In Full,Data Type,Timeseries Publish In Full,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes -Input,yes,yes,string,no,building_id,,bldg_id,bldg_id,,,,,,,,,The dwelling unit model ID number (between 1 and the number of samples). -Input,yes,yes,string,no,completed_status,,completed_status,,,,,,,,,,The simulation status. -Input,yes,yes,string,no,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number. -Input,yes,yes,string,no,apply_upgrade.upgrade_name,,in.upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. -Input,yes,yes,float,no,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of dwelling units this model represents in real life. -Calculated,yes,yes,boolean,no,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. -Output,yes,yes,float,no,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft..ft2,in.sqft,ft2,1,,,,,,,"Floor Area, Conditioned" -Calculated,yes,yes,float,no,,,in.representative_income,in.representative_income,usd,,,,,,,,Income for this dwelling unit. -Calculated,yes,yes,string,no,,,in.county_name,in.county_name,,,,,,,,,County name -Input,yes,yes,string,no,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,American Housing Survey region where the sample is located. -Input,yes,yes,boolean,no,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,If the dwelling unit model is located in an American Indian/Alaska Native/Native Hawaiian (AIANNH) Area or not. -Input,yes,yes,string,no,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,Area median income of the household occupying the dwelling unit. Zero for vacant units. -Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. -Input,yes,yes,string,no,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,"Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. Climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MS and climate zone 1A is split between counties in FL and HI." -Input,yes,yes,string,no,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,Bathroom spot ventilation daily start hour. -Input,yes,yes,string,no,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,"The presence, size, location, and efficiency of an onsite battery (not used in baseline models)." -Input,yes,yes,integer,no,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,The number of bedrooms in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,The Building America Climate Zone where the sample is located. -Input,yes,yes,string,no,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,The California Energy Commission Climate Zone where the sample is located. -Input,yes,yes,string,no,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,Presence and energy usage of ceiling fans at medium speed. -Input,yes,yes,string,no,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,The 2010 U.S. Census Division where the sample is located. -Input,yes,yes,string,no,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,"Census Division as used in RECS 2015 where the sample is located. RECS 2015 split the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV)." -Input,yes,yes,string,no,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,The 2010 U.S. Census Region where the sample is located. -Input,yes,yes,string,no,build_existing_model.city,,in.city,in.city,,,,,,,,,The census-designated city where the sample is located. -Input,yes,yes,string,no,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,"The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit." -Input,yes,yes,string,no,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,Clothes dryer energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,Presence and rated efficiency of the clothes washer. -Input,yes,yes,string,no,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,The presence of a clothes washer in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,Clothes washer energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,Presence and fuel type of the cooking range. -Input,yes,yes,string,no,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,Cooking range energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,Length of time in a year the cooling system is unavailable. -Input,yes,yes,string,no,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,Baseline cooling setpoint with no offset applied. -Input,yes,yes,boolean,no,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,Presence of a cooling setpoint offset. -Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,The magnitude of cooling setpoint offset. -Input,yes,yes,string,no,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,string,no,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,Type of corridor attached to multi-family units. -Input,yes,yes,string,no,build_existing_model.county,,in.county,in.county,,,,,,,,,The U.S. County where the sample is located. -Input,yes,yes,string,no,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,The GISJOIN identifier for the County and the Public Use Microdata Area (PUMA) where the sample is located. -Input,yes,yes,string,no,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,Whether the county is part of a census-defined metro area. -Input,yes,yes,string,no,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -Input,yes,yes,string,no,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,"Presence, water removal rate, and humidity setpoint of the dehumidifier." -Input,yes,yes,string,no,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,The presence and rated efficiency of the dishwasher. -Input,yes,yes,string,no,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,Dishwasher energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,Area of exterior doors. -Input,yes,yes,string,no,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,Exterior door material and properties. -Input,yes,yes,string,no,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,Dcuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -Input,yes,yes,string,no,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,Location of duct System. -Input,yes,yes,string,no,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,Depth of roof eaves. -Input,yes,yes,integer,no,build_existing_model.electric_panel_service_rating,amp,in.electric_panel_service_rating..a,in.electric_panel_service_rating,amp,1,,,,,,,Electric panel service or max current rating in Ampere (A). -Input,yes,yes,string,no,build_existing_model.electric_panel_service_rating_bin,amp,in.electric_panel_service_rating_bin..a,in.electric_panel_service_rating_bin,amp,,,,,,,,Electric panel service or max current rating in bins of Ampere (A). -Input,yes,yes,string,no,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,The type of electric vehicle and battery range. -Input,yes,yes,string,no,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,Percentage of EV charging that occurs at the dwelling units. -Input,yes,yes,string,no,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,Type of EV charger used at the dwelling unit. -Input,yes,yes,integer,no,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,"The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. EVs are driven fewer miles than internal combustine engine (ICE) cars, so the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean." -Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,If the dwelling unit has an electric outlet within 20 feet of EV parking. -Input,yes,yes,boolean,no,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,If the dwelling unit owns an EV. -Input,yes,yes,string,no,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,"Climate zones for windows, doors, and skylights per 2023 ENERGYSTAR guidelines." -Input,yes,yes,string,no,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,Federal poverty level of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,The generation and carbon emissions assessment (GEA) region from Cambium 2023 and 2024. -Input,yes,yes,string,no,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,The dwelling unit attic type. -Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,"Location of the multi-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,string,no,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,"Location of the single-family attached unit horizontally within the building (left, middle, right)." -Input,yes,yes,string,no,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,"Location of the multi-family unit vertically within the building (bottom, middle, top)." -Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,The number of dwelling units in the multi-family building where the dwelling unit is located. -Input,yes,yes,integer,no,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,Number of dwelling units in the single-family attached building where the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,The building type classification according to the U.S. Census American Community Survey (ACS). -Input,yes,yes,string,no,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,"The 2009 Residential Energy Consumption Survey (RECS) building type, with multi-family buildings split out by low-rise, mid-rise, and high-rise." -Input,yes,yes,string,no,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,The building type classification according to the Residential Energy Consumption Survey (RECS). -Input,yes,yes,string,no,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -Input,yes,yes,string,no,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,The finished floor area bin from Residential Energy Consumption Survey (RECS). -Input,yes,yes,string,no,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,The type of foundation. -Input,yes,yes,string,no,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,The size of an attached garage. -Input,yes,yes,string,no,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,"Valid combinations of building type, building level if it is multi-family, foundation, attic, and garage." -Input,yes,yes,integer,no,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,The number of building stories. -Input,yes,yes,string,no,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,Number of building stories for low-rise buildings. -Input,yes,yes,string,no,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,Binned height of the dwelling unit's building of more or less than 8 stories. -Input,yes,yes,string,no,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,Wall siding material and color. -Input,yes,yes,string,no,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,The wall material used for thermal mass calculations of exterior walls. -Input,yes,yes,float,no,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,The thermal conductivity (Btu/hr-ft-F) of the ground used for foundation and geothermal heat pump heat transfer calculations. -Input,yes,yes,boolean,no,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,If the dwelling unit has a rooftop photovoltaic system. -Input,yes,yes,string,no,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,The primary heating fuel. -Input,yes,yes,string,no,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,Length of time in a year the heating system is unavailable. -Input,yes,yes,string,no,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,Baseline heating setpoint with no offset applied. -Input,yes,yes,boolean,no,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,Presence of a heating setpoint offset. -Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,Magnitude of the heating setpoint offset. -Input,yes,yes,string,no,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -Input,yes,yes,string,no,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,Use of holiday lighting (not currently modeled separately from other exterior lighting). -Input,yes,yes,string,no,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,Type of distribution system and presence of hot water piping insulation. -Input,yes,yes,string,no,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,Hot water fixture usage. -Input,yes,yes,string,no,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,The household occupying the dwelling unit has at least one tribal person in the household. -Input,yes,yes,string,no,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -Input,yes,yes,string,no,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,The presence and efficiency of the primary cooling system. -Input,yes,yes,string,no,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,The fraction of the finished floor area that the cooling system covers. -Input,yes,yes,string,no,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,The presence and type of primary cooling system. -Input,yes,yes,boolean,no,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,The presence of ducts. -Input,yes,yes,string,no,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,The presence of an HVAC system shared between multiple dwelling units. -Input,yes,yes,boolean,no,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,Presence of electric baseboard heating. -Input,yes,yes,string,no,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -Input,yes,yes,string,no,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,The presence and efficiency of the primary heating system. -Input,yes,yes,string,no,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,The presence and type of the primary heating system. -Input,yes,yes,string,no,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,"The presence, type, and fuel of primary heating system." -Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,Secondary Heating Fuel for the dwelling unit -Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,The fraction of heating load served by secondary heating system. -Input,yes,yes,string,no,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,The efficiency and type of the secondary heating system. -Input,yes,yes,string,no,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,The presence and efficiency of the shared HVAC system. -Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,The presence of the HVAC system having a fault (not used). -Input,yes,yes,boolean,no,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,Whether the HVAC system has been undersized or oversized (not used). -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,Single speed central and room air conditioner actual air flow rates (not used). -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,Central and room air conditioner deviation between design/installed charge (not used). -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,Single speed air source heat pump actual air flow rates (not used). -Input,yes,yes,string,no,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,Air source heat pump deviation between design/installed charge (not used). -Input,yes,yes,string,no,build_existing_model.income,,in.income,in.income,,,,,,,,,Income bin of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,Income bin of the household occupying the dwelling unit that are aligned with the 2015 Residential Energy Consumption Survey (RECS). -Input,yes,yes,string,no,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,Income bin of the household occupying the dwelling unit that are aligned with the 2020 Residential Energy Consumption Survey (RECS). -Input,yes,yes,string,no,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,Total infiltration to the dwelling unit. -Input,yes,yes,string,no,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,Ceiling insulation level (between the living space and unconditioned attic). -Input,yes,yes,string,no,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,Floor insulation level. -Input,yes,yes,string,no,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,Foundation walls insulation level. -Input,yes,yes,string,no,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,Insulation level for rim joists. -Input,yes,yes,string,no,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,Finished roof insulation level. -Input,yes,yes,string,no,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,Slab insulation level. -Input,yes,yes,string,no,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,Wall construction type and insulation level. -Input,yes,yes,string,no,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,Type of window interior shading. -Input,yes,yes,string,no,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,The independent system operator (ISO) or regional transmission organization (RTO) region where the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,Fraction of lighting types. -Input,yes,yes,string,no,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,Interior lighting usage relative to the national average. -Input,yes,yes,string,no,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,Exterior and garage lighting usage relative to the national average. -Input,yes,yes,string,no,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,Custom ResStock region where the sample is located. -Input,yes,yes,string,no,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,Mechanical ventilation type and efficiency. -Input,yes,yes,string,no,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) where the sample is located. -Input,yes,yes,string,no,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,The presence and rated efficiency of the secondary refrigerator. -Input,yes,yes,string,no,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,The presence and rated efficiency of a standalone freezer. -Input,yes,yes,string,no,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,Presence of a gas fireplace.` -Input,yes,yes,string,no,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,Presence of a gas grill. -Input,yes,yes,string,no,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,Presence of exterior gas lighting. -Input,yes,yes,string,no,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,The presence and heating fuel of a hot tub/spa at the dwelling unit. -Input,yes,yes,string,no,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,The presence of a pool at the dwelling unit. -Input,yes,yes,string,no,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,The heating fuel of the pool heater if there is a pool. -Input,yes,yes,string,no,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,Presence and size of pool pump. -Input,yes,yes,string,no,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,Presence of well pump for domestic water source. -Input,yes,yes,string,no,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,Schedule of natural ventilation from windows. -Input,yes,yes,string,no,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -Input,yes,yes,string,no,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,The number of occupants living in the dwelling unit. -Input,yes,yes,string,no,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,Orientation of the front of the dwelling unit as it faces the street. -Input,yes,yes,string,no,build_existing_model.overhangs,,in.overhangs,in.overhangs,,,,,,,,,"Presence, depth, and location of window overhangs" -Input,yes,yes,string,no,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -Input,yes,yes,string,no,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,Plug load usage level which is varied by Census Division RECS and Building Type RECS. -Input,yes,yes,string,no,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,The 2010 Public Use Microdata Area (PUMA) where the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,The Public Use Microdata Area (PUMA) metropolitan status where the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,The presence and orientation of the photovoltaic system. -Input,yes,yes,string,no,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,The size of the photovoltaic system. -Input,yes,yes,string,no,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,Presence of radiant barrier in the attic (not modeled). -Input,yes,yes,string,no,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,Range spot ventilation daily start hour. -Input,yes,yes,string,no,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,The Regional Energy Deployment System Model (ReEDS) balancing area where the dwelling unit is located. -Input,yes,yes,string,no,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,The presence and rated efficiency of the primary refrigerator. -Input,yes,yes,string,no,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,Refrigerator energy usage level multiplier. -Input,yes,yes,string,no,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,Roof material and color. -Input,yes,yes,string,no,build_existing_model.state,,in.state,in.state,,,,,,,,,The U.S. State. -Input,yes,yes,string,no,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,"The census-supplied median income for dwelling units in the metro area where the dwelling unit is located, which can be different from the State Median Income." -Input,yes,yes,string,no,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,The tenancy (owner or renter) of the household occupying the dwelling unit. -Input,yes,yes,string,no,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,Usage of major appliances relative to the national average. -Input,yes,yes,string,no,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,The vacancy status (occupied or vacant) of the dwelling unit. -Input,yes,yes,string,no,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,Time period bin in which the building was constructed. -Input,yes,yes,string,no,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,Time period bin in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey (ACS). -Input,yes,yes,string,no,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,"The efficiency, type, and heating fuel of water heater." -Input,yes,yes,string,no,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,The water heater fuel type. -Input,yes,yes,boolean,no,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -Input,yes,yes,string,no,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,location of water heater. -Input,yes,yes,string,no,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,"Window to wall ratios of the front, back, left, and right walls." -Input,yes,yes,string,no,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,Construction type and efficiency levels of windows. -Input,yes,yes,float,no,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -Input,no,no,boolean,no,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. -Input,no,no,string,no,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. -Input,yes,yes,integer,no,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,"The number of dwelling units this simulation represents, which is different than the weight field. Should always be one." -Input,no,no,string,no,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." -Input,no,no,string,no,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." -Input,no,no,string,no,build_existing_model.emissions_electricity_values_or_filepaths,,in.emissions_electricity_values_or_filepaths,in.emissions_electricity_values_or_filepaths,,,,,,,,,"Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." -Input,no,no,float,no,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,Starting day of the starting month (must be valid for month) for the annual run period desired. -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"Starting month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"Calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,Ending day of the ending month (must be valid for month) for the annual run period desired. -Input,yes,yes,integer,no,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"End month number (1 = January, 2 = February, etc.) for the annual run period desired." -Input,yes,yes,integer,no,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. -Input,no,no,string,no,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,no,no,string,no,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,yes,yes,float,no,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." -Input,no,no,string,no,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." -Input,no,no,float,no,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." -Input,no,no,float,no,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." -Input,yes,yes,string,no,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. -Input,yes,yes,float,no,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. -Input,yes,yes,float,no,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. -Input,yes,yes,string,no,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Date range when the heating system is unavailable. -Input,yes,yes,string,no,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Date range when the cooling system is unavailable. -Output,yes,yes,float,no,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area..ft2,out.params.door_area_ft_2,ft2,1,,,,,,,Door Area -Output,yes,yes,float,no,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area..ft2,out.params.duct_unconditioned_surface_area_ft_2,ft2,1,,,,,,,Duct Unconditioned Surface Area -Output,yes,yes,float,no,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic..ft2,out.params.floor_area_attic_ft_2,ft2,1,,,,,,,"Floor Area, Attic" -Output,yes,yes,float,no,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" -Output,yes,yes,float,no,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" -Output,yes,yes,float,no,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation..ft2,out.params.floor_area_foundation_ft_2,ft2,1,,,,,,,"Floor Area, Foundation" -Output,yes,yes,float,no,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting..ft2,out.params.floor_area_lighting_ft_2,ft2,1,,,,,,,"Floor Area, Lighting" -Output,yes,yes,float,no,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation..cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" -Output,yes,yes,float,no,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior..ft2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" -Output,yes,yes,float,no,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area..ft2,out.params.roof_area_ft_2,ft2,1,,,,,,,Roof Area -Output,yes,yes,float,no,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary..kbtu_per_hr,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" -Output,yes,yes,float,no,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary..kbtu_per_hr,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" -Output,yes,yes,float,no,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary..kbtu_per_hr,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" -Output,yes,yes,float,no,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary..kbtu_per_hr,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" -Output,yes,yes,float,no,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater..gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" -Output,yes,yes,float,no,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned..ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" -Output,yes,yes,float,no,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned..ft2,out.params.wall_area_above_grade_conditioned_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" -Output,yes,yes,float,no,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior..ft2,out.params.wall_area_above_grade_exterior_ft_2,ft2,1,,,,,,,"Wall Area, Above-Grade, Exterior" -Output,yes,yes,float,no,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade..ft2,out.params.wall_area_below_grade_ft_2,ft2,1,,,,,,,"Wall Area, Below-Grade" -Output,yes,yes,float,no,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area..ft2,out.params.window_area_ft_2,ft2,1,,,,,,,Window Area -Output,yes,yes,integer,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. -Output,yes,yes,float,no,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length..ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -Output,no,no,float,no,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption..kwh,out.electricity.battery.energy_consumption..kwh,kWh,1,Electricity consumed by battery. Positive value for charging (including efficiency losses); negative value for discharging. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,kWh,1,Electricity consumed by ceiling fan. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,kWh,1,Electricity consumed by clothes dryer. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,kWh,1,Electricity consumed by clothes washer. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,kWh,1,Electricity consumed by cooling systems excludes usage by fans/pumps. -Output,no,no,float,no,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption..kwh,out.electricity.dehumidifier.energy_consumption..kwh,kWh,1,Electricity consumed by dehumidifier. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,kWh,1,Electricity consumed by dishwasher. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,kWh,1,Electricity consumed by electric vehicle charging. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,kWh,1,Electricity consumed by standalone freezers. -Output,no,no,float,no,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption..kwh,out.electricity.generator.energy_consumption..kwh,kWh,1,Electricity consumed by generator. Negative value for any power produced. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,kWh,1,"Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps." -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,kWh,1,Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,kWh,1,Electricity consumed by heating systems excludes usage by fans/pumps. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,kWh,1,Electricity consumed by spa heating. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,kWh,1,Electricity consumed by spa pump. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,kWh,1,Electricity consumed by hot water system excludes recirc pump and solar thermal pump. -Output,no,no,float,no,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,out.electricity.hot_water_recirc_p.energy_consumption..kwh,kWh,1,Electricity consumed by hot water recirc pump and solar thermal pump. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,kWh,1,Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,kWh,1,"Electricity consumed by exterior lighting, includes exterior holiday lighting." -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,kWh,1,Electricity consumed by lighting in the garage. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,kWh,1,Electricity consumed by interior lighting. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,kWh,1,"Electricity consumed by mechanical ventilation system, excludes preheating/precooling" -Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption..kwh,out.electricity.mech_vent_precool.energy_consumption..kwh,kWh,1,Electricity consumed by mechanical ventilation for precooling. -Output,no,no,float,no,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption..kwh,out.electricity.mech_vent_preheat.energy_consumption..kwh,kWh,1,Electricity consumed by mechanical ventilation for preheating. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,kWh,1,"Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump)." -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,kWh,1,Electricity consumed by pool heater. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,kWh,1,Electricity consumed by pool pump. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,kWh,1,Energy produced by rooftop PV systems. Negative value for any power produced -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,kWh,1,Electricity consumed by range oven. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,kWh,1,Electricity consumed by refrigerator. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,kWh,1,Electricity consumed by television. -Output,yes,yes,float,yes,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,kWh,1,Electricity consumed by well pump. -Output,no,no,float,no,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption..kwh,out.electricity.whole_house_fan.energy_consumption..kwh,kWh,1,Electricity consumed by whole house fan system. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption..kwh,out.fuel_oil.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by clothes dryer. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption..kwh,out.fuel_oil.fireplace.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil fireplace. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption..kwh,out.fuel_oil.generator.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil generator. Positive value for any fuel consumed. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption..kwh,out.fuel_oil.grill.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil grill. -Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by heat pump backup. -Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,kWh,0.29307107,"Fuel oil consumed by fuel oil heating systems, excludes heat pump backup." -Output,yes,yes,float,yes,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by fuel oil hot water systems -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption..kwh,out.fuel_oil.lighting.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by oil lighting. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by mechanical ventilation for preheating. -Output,no,no,float,no,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption..kwh,out.fuel_oil.range_oven.energy_consumption..kwh,kWh,0.29307107,Fuel oil consumed by range and oven. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas clothes dryers. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas fireplaces. -Output,no,no,float,no,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption..kwh,out.natural_gas.generator.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas generator. Positive value for any fuel consumed. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas grills. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by heat pump backup. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,kWh,0.29307107,"Natural gas consumed by natural gas heating systems, excludes heat pump backup." -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by spa heating. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas hot water systems. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas lighting. -Output,no,no,float,no,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,out.natural_gas.mech_vent_preheat.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by mechanical ventilation for preheating. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas pool heaters. -Output,yes,yes,float,yes,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,kWh,0.29307107,Natural gas consumed by natural gas range and oven. -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane clothes dryers. -Output,no,no,float,no,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption..kwh,out.propane.fireplace.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane fireplace. -Output,no,no,float,no,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption..kwh,out.propane.generator.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propance generator. Positive value for any fuel consumed -Output,no,no,float,no,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption..kwh,out.propane.grill.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane grill. -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption..kwh,out.propane.heating_hp_bkup.energy_consumption..kwh,kWh,0.29307107,Propane consumed by heat pump backup. -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,kWh,0.29307107,"Propane consumed by propane heating systems, excludes heat pump backup" -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane hot water systems. -Output,no,no,float,no,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption..kwh,out.propane.lighting.energy_consumption..kwh,kWh,0.29307107,Propane consumed by propane lighting. -Output,no,no,float,no,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption..kwh,out.propane.mech_vent_preheating.energy_consumption..kwh,kWh,0.29307107,Propane consumed by mechanical ventilation for preheating. -Output,yes,yes,float,yes,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,kWh,0.29307107,Propane consumed by range oven. -Output,yes,yes,float,yes,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,kWh,0.29307107,Total site energy consumed subtracts any power produced by PV or generators -Output,yes,yes,float,yes,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,kWh,0.29307107,"Total site energy consumed, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,kWh,1,Total electricity consumed subtracts any power produced by PV or generators. -Output,yes,yes,float,yes,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,kWh,1,"Total electricity consumed, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,kWh,0.29307107,"Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" -Output,yes,yes,float,yes,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,kWh,0.29307107,Total natural gas consumed. -Output,yes,yes,float,yes,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,kWh,0.29307107,Total propane energy consumed -Output,yes,yes,float,no,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,,Hot water consumed by clothes washer -Output,yes,yes,float,no,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,,Hot water consumed by dishwasher -Output,yes,yes,float,no,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,,Hot water consumed by water distribution system (water remaining in the pipe) -Output,yes,yes,float,no,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,"Hot water consumed by showers, sinks, and baths" -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling..btu_per_hr,out.capacity.cooling.btu_h,btu_h,1,,,,,,,Cooling capacity at rated conditions which vary based on the type of equipment. -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup..btu_per_hr,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,,Heat pump backup Capacity -Output,yes,yes,float,no,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating..btu_per_hr,out.capacity.heating.btu_h,btu_h,1,,,,,,,Heating capacity at rated conditions which vary based on the type of equipment. -Output,yes,yes,float,yes,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,kBtu,1,Total energy delivered by cooling system includes HVAC distribution losses. -Output,yes,yes,float,yes,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heating system includes HVAC distribution losses. -Output,yes,yes,float,yes,report_simulation_output.load_heating_heat_pump_backup_m_btu,MBtu,out.load.heating_hp_bkup.energy_delivered..kbtu,out.load.heating_hp_bkup.energy_delivered..kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,kBtu,1,Total energy delivered by heat pump backup. -Output,yes,yes,float,yes,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems -Output,no,no,float,no,report_simulation_output.load_hot_water_desuperheater_m_btu,MBtu,out.load.hot_water_desuperheater.energy_delivered..kbtu,out.load.hot_water_desuperheater.energy_delivered..kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,kBtu,1,Total energy delivered by hot water desuperheater -Output,yes,yes,float,yes,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water.energy_solar_thermal..kbtu,kBtu,1,Total energy delivered by solar thermal water heater. -Output,yes,yes,float,yes,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water.energy_tank_losses..kbtu,kBtu,1,Water heater tank losses energy. -Output,yes,yes,float,no,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak..kbtu_per_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum cooling load delivered by cooling system includes HVAC distribution losses. -Output,yes,yes,float,no,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak..kbtu_per_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period. -Output,yes,yes,float,no,report_simulation_output.peak_electricity_summer_total_w,W,out.qoi.electricity.maximum_daily_peak_summer..kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum 15-minute electric demand value in Jun/Jul/Aug not including impacts of onsite generation. -Output,yes,yes,float,no,report_simulation_output.peak_electricity_winter_total_w,W,out.qoi.electricity.maximum_daily_peak_winter..kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum 15-minute electric demand value in Dec/Jan/Feb not including impacts of onsite generation. -Output,yes,yes,float,no,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling..hr,out.unmet_hours.cooling.hour,hr,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. -Output,yes,yes,float,no,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving.hour,hr,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. -Output,yes,yes,float,no,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating..hr,out.unmet_hours.heating.hour,hr,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25..co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25..co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25..co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15..co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15..co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15..co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25..co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15..co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25..co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15..co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_net_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg..co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg..co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_net_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_net_lb,lb,out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg..co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg..co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only -Output,yes,no,float,no,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg..co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only -Output,yes,yes,float,yes,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" -Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.utility_bills.electricity_bill..usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. -Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.utility_bills.fuel_oil_bill..usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. -Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.utility_bills.natural_gas_bill..usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. -Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.utility_bills.propane_bill..usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. -Output,yes,yes,float,no,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.utility_bills.total_bill..usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -Output,yes,yes,integer,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" -Output,yes,yes,integer,no,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.params.panel_load_clothes_dryer..w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_cooling_w,W,out.params.panel_load_cooling..w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_dishwasher_w,W,out.params.panel_load_dishwasher..w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.params.panel_load_ev_charging..w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_heating_w,W,out.params.panel_load_heating..w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_hot_water_w,W,out.params.panel_load_hot_water..w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_mech_vent_w,W,out.params.panel_load_mech_vent..w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_other_w,W,out.params.panel_load_other..w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.params.panel_load_permanent_spa_heat..w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.params.panel_load_permanent_spa_pump..w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_pool_heater_w,W,out.params.panel_load_pool_heater..w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_pool_pump_w,W,out.params.panel_load_pool_pump..w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_range_oven_w,W,out.params.panel_load_range_oven..w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" -Output,yes,yes,float,no,report_simulation_output.electric_panel_load_well_pump_w,W,out.params.panel_load_well_pump..w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump -Input,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_total_count,,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_occupied_count,,out.params.panel_breaker_space_occupied_count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_headroom_count,,out.params.panel_breaker_space_headroom_count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,,out.params.panel_breaker_space_clothes_dryer_count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_cooling_count,,out.params.panel_breaker_space_cooling_count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,,out.params.panel_breaker_space_dishwasher_count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,,out.params.panel_breaker_space_ev_charging_count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_heating_count,,out.params.panel_breaker_space_heating_count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,,out.params.panel_breaker_space_hot_water_count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,,out.params.panel_breaker_space_mech_vent_count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_other_count,,out.params.panel_breaker_space_other_count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,,out.params.panel_breaker_space_permanent_spa_heat_count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,,out.params.panel_breaker_space_permanent_spa_pump_count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,,out.params.panel_breaker_space_pool_heater_count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,,out.params.panel_breaker_space_pool_pump_count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,,out.params.panel_breaker_space_range_oven_count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven -Output,yes,yes,integer,no,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,,out.params.panel_breaker_space_well_pump_count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings..kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107,Cooling consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors..kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107,Cooling consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts..kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107,Cooling consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors..kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107,Cooling consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls..kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration..kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107,Cooling consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains..kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107,Cooling consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass..kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107,Cooling consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting..kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107,Cooling consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation..kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation..kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107,Cooling consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists..kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107,Cooling consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs..kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107,Cooling consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction..kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar..kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs..kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107,Cooling consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls..kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107,Cooling consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan..kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107,Cooling consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction..kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107,Cooling consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar..kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107,Cooling consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings..kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107,Heating consumed by ceilings. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors..kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107,Heating consumed by doors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts..kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107,Heating consumed by ducts. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors..kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107,Heating consumed by floors. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls..kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration..kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107,Heating consumed by infiltration. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains..kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107,Heating consumed by gains. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass..kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107,Heating consumed by mass. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting..kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107,Heating consumed by lighting. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation..kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation..kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107,Heating consumed by ventilation. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists..kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107,Heating consumed by joists. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs..kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107,Heating consumed by roofs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction..kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar..kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs..kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107,Heating consumed by slabs. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls..kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107,Heating consumed by walls. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan..kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107,Heating consumed by supply hou (air distribution) or circulating fan_ (geothermal loop) -Output,yes,yes,float,no,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction..kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107,Heating consumed by conduction. Positive value for charging (including efficiency losoads); negative value for discharging -Output,yes,yes,float,no,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar..kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107,Heating consumed by solar. Positive value for charging (including efficiency losoads); negative value for discharging -Calculated,yes,yes,float,no,,,out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,integer,no,,,out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -Calculated,yes,yes,integer,no,,,out.params.panel_breaker_space_occupied_savings_count,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure -Calculated,yes,yes,boolean,no,,,out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" -Calculated,yes,yes,boolean,no,,,out.params.panel_constraint_breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" -Calculated,yes,yes,string,no,,,out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -Calculated,yes,yes,float,no,,,out.energy_burden..percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy -Calculated,yes,yes,float,no,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,no,no,float,no,,,out.electricity.battery.energy_savings..kwh,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,,Electricity savings from battery. Positive value for charging (including efficiency losses); negative value for discharging. -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings..kwh,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,,Electricity savings from ceiling fan. -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings..kwh,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,,Electricity savings from clothes dryer. -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings..kwh,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,,Electricity savings from clothes washer. -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings..kwh,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (geothermal loop) during cooling. -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings..kwh,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,,Electricity savings from cooling systems excludes usage by fans/pumps. -Calculated,no,no,float,no,,,out.electricity.dehumidifier.energy_savings..kwh,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,,Electricity savings from dehumidifier. -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings..kwh,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,,Electricity savings from dishwasher. -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings..kwh,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,,Electricity savings from electric vehicle charging. -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings..kwh,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,,Electricity savings from standalone freezers. -Calculated,no,no,float,no,,,out.electricity.generator.energy_savings..kwh,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,,Electricity savings from generator. Negative value for any power produced. -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings..kwh,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings..kwh,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,,"Electricity savings from heat pump backup, excludes usage by heat pump backup fans/pumps." -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,,Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings..kwh,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,,Electricity savings from heating systems excludes usage by fans/pumps. -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings..kwh,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,,Electricity savings from spa heating. -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings..kwh,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,,Electricity savings from spa pump. -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings..kwh,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,,Electricity savings from hot water system excludes recirc pump and solar thermal pump. -Calculated,no,no,float,no,,,out.electricity.hot_water_recirc_p.energy_savings..kwh,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,,Electricity savings from hot water recirc pump and solar thermal pump. -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings..kwh,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,,Electricity savings from solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings..kwh,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,,"Electricity savings from exterior lighting, includes exterior holiday lighting." -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings..kwh,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,,Electricity savings from lighting in the garage. -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings..kwh,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,,Electricity savings from interior lighting. -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings..kwh,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,,"Electricity savings from mechanical ventilation system, excludes preheating/precooling" -Calculated,no,no,float,no,,,out.electricity.mech_vent_precool.energy_savings..kwh,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,,Electricity savings from mechanical ventilation for precooling. -Calculated,no,no,float,no,,,out.electricity.mech_vent_preheat.energy_savings..kwh,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,,Electricity savings from mechanical ventilation for preheating. -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings..kwh,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,,"Electricity savings from plug loads, excludes independently reported plug loads (e.g., well pump)." -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings..kwh,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,,Electricity savings from pool heater. -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings..kwh,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,,Electricity savings from pool pump. -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings..kwh,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,,Energy produced by rooftop PV systems. Negative value for any power produced -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings..kwh,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,,Electricity savings from range oven. -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings..kwh,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,,Electricity savings from refrigerator. -Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings..kwh,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,,Electricity savings from television. -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings..kwh,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,,Electricity savings from well pump. -Calculated,no,no,float,no,,,out.electricity.whole_house_fan.energy_savings..kwh,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,,Electricity savings from whole house fan system. -Calculated,no,no,float,no,,,out.fuel_oil.clothes_dryer.energy_savings..kwh,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,,Fuel oil savings from clothes dryer. -Calculated,no,no,float,no,,,out.fuel_oil.fireplace.energy_savings..kwh,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,,Fuel oil savings from oil fireplace. -Calculated,no,no,float,no,,,out.fuel_oil.generator.energy_savings..kwh,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,,Fuel oil savings from oil generator. Positive value for any fuel consumed. -Calculated,no,no,float,no,,,out.fuel_oil.grill.energy_savings..kwh,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,,Fuel oil savings from oil grill. -Calculated,yes,yes,float,yes,,,out.fuel_oil.heating_hp_bkup.energy_savings..kwh,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,,Fuel oil savings from heat pump backup. -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings..kwh,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,,"Fuel oil savings from fuel oil heating systems, excludes heat pump backup." -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings..kwh,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,,Fuel oil savings from fuel oil hot water systems -Calculated,no,no,float,no,,,out.fuel_oil.lighting.energy_savings..kwh,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,,Fuel oil savings from oil lighting. -Calculated,no,no,float,no,,,out.fuel_oil.mech_vent_preheating.energy_savings..kwh,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,,Fuel oil savings from mechanical ventilation for preheating. -Calculated,no,no,float,no,,,out.fuel_oil.range_oven.energy_savings..kwh,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,,Fuel oil savings from range and oven. -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings..kwh,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,,Natural gas savings from natural gas clothes dryers. -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings..kwh,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,,Natural gas savings from natural gas fireplaces. -Calculated,no,no,float,no,,,out.natural_gas.generator.energy_savings..kwh,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,,Natural gas savings from natural gas generator. Positive value for any fuel consumed. -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings..kwh,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,,Natural gas savings from natural gas grills. -Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings..kwh,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,,Natural gas savings from heat pump backup. -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings..kwh,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,,"Natural gas savings from natural gas heating systems, excludes heat pump backup." -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,,Natural gas savings from spa heating. -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings..kwh,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,,Natural gas savings from natural gas hot water systems. -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings..kwh,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,,Natural gas savings from natural gas lighting. -Calculated,no,no,float,no,,,out.natural_gas.mech_vent_preheat.energy_savings..kwh,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,,Natural gas savings from mechanical ventilation for preheating. -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings..kwh,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,,Natural gas savings from natural gas pool heaters. -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings..kwh,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,,Natural gas savings from natural gas range and oven. -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings..kwh,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,,Propane savings from propane clothes dryers. -Calculated,no,no,float,no,,,out.propane.fireplace.energy_savings..kwh,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,,Propane savings from propane fireplace. -Calculated,no,no,float,no,,,out.propane.generator.energy_savings..kwh,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,,Propane savings from propance generator. Positive value for any fuel consumed -Calculated,no,no,float,no,,,out.propane.grill.energy_savings..kwh,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,,Propane savings from propane grill. -Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_savings..kwh,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,,Propane savings from heat pump backup. -Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings..kwh,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,,"Propane savings from propane heating systems, excludes heat pump backup" -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings..kwh,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,,Propane savings from propane hot water systems. -Calculated,no,no,float,no,,,out.propane.lighting.energy_savings..kwh,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,,Propane savings from propane lighting. -Calculated,no,no,float,no,,,out.propane.mech_vent_preheating.energy_savings..kwh,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,,Propane savings from mechanical ventilation for preheating. -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings..kwh,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,,Propane savings from range oven. -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings..kwh,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,,Total net site energy savings. -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings..kwh,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,,Total site energy savings. -Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings..kwh,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,,Total net electricity savings. -Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings..kwh,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,,Total electricity savings. -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings..kwh,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,,Total fuel oil savings -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings..kwh,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,,Total natural gas savings. -Calculated,yes,yes,float,no,,,out.propane.total.energy_savings..kwh,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,,Total propane savings. -Calculated,yes,yes,float,no,,,out.hot_water_savings.clothes_washer..gal,out.hot_water_savings.clothes_washer..gal,gal,,,,,,,,Hot water savings from clothes washer. -Calculated,yes,yes,float,no,,,out.hot_water_savings.dishwasher..gal,out.hot_water_savings.dishwasher..gal,gal,,,,,,,,Hot water savings from dishwasher. -Calculated,yes,yes,float,no,,,out.hot_water_savings.distribution_waste..gal,out.hot_water_savings.distribution_waste..gal,gal,,,,,,,,Hot water savings from hot water distribution. -Calculated,yes,yes,float,no,,,out.hot_water_savings.fixtures..gal,out.hot_water_savings.fixtures..gal,gal,,,,,,,,Hot water savings from fixtures such as faucets and showers. -Calculated,yes,yes,float,no,,,out.load.cooling.energy_delivered_savings..kbtu,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by cooling system includes HVAC distribution losses. -Calculated,yes,yes,float,no,,,out.load.heating.energy_delivered_savings..kbtu,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heating system includes HVAC distribution losses. -Calculated,yes,yes,float,no,,,out.load.heating_hp_bkup.energy_delivered_savings..kbtu,out.load.heating_hp_backup.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating_hp_backup.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by heat pump backup. -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_delivered_savings..kbtu,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,,Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_solar_thermal_savings..kbtu,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,,Savings on the total energy delivered by solar thermal water heater. -Calculated,yes,yes,float,no,,,out.load.hot_water.energy_tank_losses_savings..kbtu,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,,Savings on the water heater tank losses energy. -Calculated,yes,yes,float,no,,,out.load.cooling.peak_savings..kbtu_per_hr,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,,Reduction on the maximum cooling load delivered by cooling system includes HVAC distribution losses. -Calculated,yes,yes,float,no,,,out.load.heating.peak_savings..kbtu_per_hr,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,,Reduction on the maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period -Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_summer..kw,out.electricity.summer.peak.kw.savings,kw,,,,,,,,Reduction on the maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). -Calculated,yes,yes,float,no,,,out.qoi.electricity.maximum_daily_peak_savings_winter..kw,out.electricity.winter.peak.kw.savings,kw,,,,,,,,Reduction on the maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). -Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.cooling..hr,out.unmet_hours.cooling.hour.savings,hour,,,,,,,,Reduction on the number of hours where the cooling setpoint is not maintained. -Calculated,yes,yes,float,no,,,out.unmet_hours_reduction.heating..hr,out.unmet_hours.heating.hour.savings,hour,,,,,,,,Reduction on the number of hours where the heating setpoint is not maintained. -Calculated,yes,yes,float,yes,,,out.emissions.fuel_oil.total..co2e_kg,,,,,,out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,,,Emissions from on-site fuel oil consumption. -Calculated,yes,yes,float,yes,,,out.emissions.natural_gas.total..co2e_kg,,,,,,out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,,,Emissions from on-site natural gas consumption. -Calculated,yes,yes,float,yes,,,out.emissions.propane.total..co2e_kg,,,,,,out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,,,Emissions from on-site propane consumption. -Calculated,yes,yes,float,no,,,out.emissions_reduction.fuel_oil.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site fuel oil consumption. -Calculated,yes,yes,float,no,,,out.emissions_reduction.natural_gas.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site natural gas consumption. -Calculated,yes,yes,float,no,,,out.emissions_reduction.propane.total..co2e_kg,,,,,,,,,,Emissions reduction from on-site propane consumption. -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,,"Scenario total emissions for Electricity only, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,,"Scenario total emissions reduction, includes any battery charging/discharging" -Calculated,yes,yes,float,no,,,out.utility_bills.electricity_bill_savings..usd,out.bills.electricity.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for electricity. -Calculated,yes,yes,float,no,,,out.utility_bills.fuel_oil_bill_savings..usd,out.bills.fuel_oil.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for fuel oil. -Calculated,yes,yes,float,no,,,out.utility_bills.natural_gas_bill_savings..usd,out.bills.natural_gas.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for natural gas. -Calculated,yes,yes,float,no,,,out.utility_bills.propane_bill_savings..usd,out.bills.propane.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges for propane. -Calculated,yes,yes,float,no,,,out.utility_bills.total_bill_savings..usd,out.bills.all_fuels.usd.savings,usd,,,,,,,,Savigns on the scenario annual total charges. -Calculated,yes,yes,float,no,,,out.energy_burden_savings..percentage,out.energy_burden.percentage.savings,percentage,,,,,,,,Reduction on the percentage of income spent on energy -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.television.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.heating.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.propane.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy consumption by dividing by conditioned floor area -Calculated,yes,yes,float,no,,,out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,kwh_per_ft2,,,,,,,,Calculated from annual energy savings by dividing by conditioned floor area -Calculated,yes,no,string,no,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,no,string,no,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -Calculated,yes,yes,string,no,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. -Output,yes,yes,float,no,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, -Output,yes,yes,float,no,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_consumption..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions.propane.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.propane.total..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.dishwasher.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.ev_charging.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.freezer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.mech_vent.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.net.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.plug_loads.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pool_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.pv.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.refrigerator.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.television.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.electricity.well_pump.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.fuel_oil.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.grill.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.lighting.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.natural_gas.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,tbtu,,,,,,,, -Calculated,yes,yes,float,no,,,calc.weighted.propane.hot_water.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.range_oven.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.propane.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.net.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.site_energy.total.energy_savings..tbtu,,tbtu,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,co2e_mmt,,,,,,,,Calculated from annual results by multiplying by weight. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.ceilings..kwh,,kwh,,,,,,,,Energy savings from ceiling cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.doors..kwh,,kwh,,,,,,,,Energy savings from doors cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.ducts..kwh,,kwh,,,,,,,,Energy savings from ducts cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.floors..kwh,,kwh,,,,,,,,Energy savings from floors cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.foundation_walls..kwh,,kwh,,,,,,,,Energy savings from foundation walls cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.infiltration..kwh,,kwh,,,,,,,,Energy savings from infiltration cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.internal_gains..kwh,,kwh,,,,,,,,Energy savings from internal gains cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.internal_mass..kwh,,kwh,,,,,,,,Energy savings from internal mass cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.lighting..kwh,,kwh,,,,,,,,Energy savings from lighting cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.mechanical_ventilation..kwh,,kwh,,,,,,,,Energy savings from mechanical ventilation cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.natural_ventilation..kwh,,kwh,,,,,,,,Energy savings from natural ventilation cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.rim_joists..kwh,,kwh,,,,,,,,Energy savings from rim joists cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.roofs..kwh,,kwh,,,,,,,,Energy savings from roofs cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.skylights_conduction..kwh,,kwh,,,,,,,,Energy savings from skylights conduction cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.skylights_solar..kwh,,kwh,,,,,,,,Energy savings from skylights solar cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.slabs..kwh,,kwh,,,,,,,,Energy savings from slabs cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.walls..kwh,,kwh,,,,,,,,Energy savings from walls cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.whole_house_fan..kwh,,kwh,,,,,,,,Energy savings from whole house fan cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.windows_conduction..kwh,,kwh,,,,,,,,Energy savings from windows conduction cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.cooling.windows_solar..kwh,,kwh,,,,,,,,Energy savings from windows solar cooling load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.ceilings..kwh,,kwh,,,,,,,,Energy savings from ceiling heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.doors..kwh,,kwh,,,,,,,,Energy savings from doors heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.ducts..kwh,,kwh,,,,,,,,Energy savings from ducts heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.floors..kwh,,kwh,,,,,,,,Energy savings from floors heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.foundation_walls..kwh,,kwh,,,,,,,,Energy savings from foundation walls heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.infiltration..kwh,,kwh,,,,,,,,Energy savings from infiltration heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.internal_gains..kwh,,kwh,,,,,,,,Energy savings from internal gains heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.internal_mass..kwh,,kwh,,,,,,,,Energy savings from internal mass heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.lighting..kwh,,kwh,,,,,,,,Energy savings from lighting heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.mechanical_ventilation..kwh,,kwh,,,,,,,,Energy savings from mechanical ventilation heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.natural_ventilation..kwh,,kwh,,,,,,,,Energy savings from natural ventilation heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.rim_joists..kwh,,kwh,,,,,,,,Energy savings from rim joists heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.roofs..kwh,,kwh,,,,,,,,Energy savings from roofs heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.skylights_conduction..kwh,,kwh,,,,,,,,Energy savings from skylights conduction heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.skylights_solar..kwh,,kwh,,,,,,,,Energy savings from skylights solar heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.slabs..kwh,,kwh,,,,,,,,Energy savings from slabs heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.walls..kwh,,kwh,,,,,,,,Energy savings from walls heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.whole_house_fan..kwh,,kwh,,,,,,,,Energy savings from whole house fan heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.windows_conduction..kwh,,kwh,,,,,,,,Energy savings from windows conduction heating load. -Calculated,yes,yes,float,no,,,out.component_load_savings.heating.windows_solar..kwh,,kwh,,,,,,,,Energy savings from windows solar heating load. -,,,,,,,,,,,,,,,,,Energy savings from ceiling heating load. +Column Type,Annual Name,Annual Units,Published Annual Name,Published Annual Name Sightglass,Published Annual Unit,ResStock To Published Annual Unit Conversion Factor,Timeseries Name,Timeseries Units,Published Timeseries Name,Published Timeseries Name Sightglass,Published Timeseries Unit,ResStock To Published Timeseries Unit Conversion Factor,Notes +Input,building_id,,bldg_id,bldg_id,,,,,,,,,The building unit number (between 1 and the number of samples). +Input,upgrade,,upgrade,upgrade,,,,,,,,,The upgrade number +Input,apply_upgrade.upgrade_name,,upgrade_name,upgrade_name,,,,,,,,,User-specificed name that describes the upgrade. +Input,build_existing_model.sample_weight,,weight,weight,,1,,,,,,,Number of buildings this simulation represents. +Calculated,,,applicability,applicability,,,,,,,,,Whether the upgrade is applicable to the building. Will be always True for baseline. +Output,upgrade_costs.floor_area_conditioned_ft_2,ft^2,in.sqft,in.sqft,ft_2,1,,,,,,,"Floor Area, Conditioned" +Calculated,,,in.representative_income,in.representative_income,usd,,,,,,,,Average representative income of the country +Calculated,,,in.county_name,in.county_name,,,,,,,,,County name +Input,build_existing_model.ahs_region,,in.ahs_region,in.ahs_region,,,,,,,,,:ref:`ahs_region` +Input,build_existing_model.aiannh_area,,in.aiannh_area,in.aiannh_area,,,,,,,,,:ref:`aiannh_area` +Input,build_existing_model.area_median_income,,in.area_median_income,in.area_median_income,,,,,,,,,:ref:`area_median_income` +Input,build_existing_model.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004,in.ashrae_iecc_climate_zone_2004,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004` +Input,build_existing_model.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_sub_cz_split,in.ashrae_iecc_climate_zone_2004_sub_cz_split,,,,,,,,,:ref:`ashrae_iecc_climate_zone_2004___2_a_split` +Input,build_existing_model.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour,in.bathroom_spot_vent_hour,,,,,,,,,:ref:`bathroom_spot_vent_hour` +Input,build_existing_model.battery,,in.battery,in.battery,,,,,,,,,:ref:`battery` +Input,build_existing_model.bedrooms,,in.bedrooms,in.bedrooms,,,,,,,,,:ref:`bedrooms` +Input,build_existing_model.building_america_climate_zone,,in.building_america_climate_zone,in.building_america_climate_zone,,,,,,,,,:ref:`building_america_climate_zone` +Input,build_existing_model.cec_climate_zone,,in.cec_climate_zone,in.cec_climate_zone,,,,,,,,,:ref:`cec_climate_zone` +Input,build_existing_model.ceiling_fan,,in.ceiling_fan,in.ceiling_fan,,,,,,,,,:ref:`ceiling_fan` +Input,build_existing_model.census_division,,in.census_division,in.census_division,,,,,,,,,:ref:`census_division` +Input,build_existing_model.census_division_recs,,in.census_division_recs,in.census_division_recs,,,,,,,,,:ref:`census_division_recs` +Input,build_existing_model.census_region,,in.census_region,in.census_region,,,,,,,,,:ref:`census_region` +Input,build_existing_model.city,,in.city,in.city,,,,,,,,,:ref:`city` +Input,build_existing_model.clothes_dryer,,in.clothes_dryer,in.clothes_dryer,,,,,,,,,:ref:`clothes_dryer` +Input,build_existing_model.clothes_dryer_usage_level,,in.clothes_dryer_usage_level,in.clothes_dryer_usage_level,,,,,,,,,:ref:`clothes_dryer_usage_level` +Input,build_existing_model.clothes_washer,,in.clothes_washer,in.clothes_washer,,,,,,,,,:ref:`clothes_washer` +Input,build_existing_model.clothes_washer_presence,,in.clothes_washer_presence,in.clothes_washer_presence,,,,,,,,,:ref:`clothes_washer_presence` +Input,build_existing_model.clothes_washer_usage_level,,in.clothes_washer_usage_level,in.clothes_washer_usage_level,,,,,,,,,:ref:`clothes_washer_usage_level` +Input,build_existing_model.cooking_range,,in.cooking_range,in.cooking_range,,,,,,,,,:ref:`cooking_range` +Input,build_existing_model.cooking_range_usage_level,,in.cooking_range_usage_level,in.cooking_range_usage_level,,,,,,,,,:ref:`cooking_range_usage_level` +Input,build_existing_model.cooling_unavailable_days,,in.cooling_unavailable_days,in.cooling_unavailable_days,,,,,,,,,:ref:`cooling_unavailable_days` +Input,build_existing_model.cooling_setpoint,,in.cooling_setpoint,in.cooling_setpoint,,,,,,,,,:ref:`cooling_setpoint` +Input,build_existing_model.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset,in.cooling_setpoint_has_offset,,,,,,,,,:ref:`cooling_setpoint_has_offset` +Input,build_existing_model.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude,in.cooling_setpoint_offset_magnitude,,,,,,,,,:ref:`cooling_setpoint_offset_magnitude` +Input,build_existing_model.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period,in.cooling_setpoint_offset_period,,,,,,,,,:ref:`cooling_setpoint_offset_period` +Input,build_existing_model.corridor,,in.corridor,in.corridor,,,,,,,,,:ref:`corridor` +Input,build_existing_model.county,,in.county,in.county,,,,,,,,,:ref:`county` +Input,build_existing_model.county_and_puma,,in.county_and_puma,in.county_and_puma,,,,,,,,,:ref:`county_and_puma` +Input,build_existing_model.county_metro_status,,in.county_metro_status,in.county_metro_status,,,,,,,,,:ref:`county_metro_status` +Input,build_existing_model.custom_state,,in.custom_state,in.custom_state,,,,,,,,,:ref:`custom_state` +Input,build_existing_model.dehumidifier,,in.dehumidifier,in.dehumidifier,,,,,,,,,:ref:`dehumidifier` +Input,build_existing_model.dishwasher,,in.dishwasher,in.dishwasher,,,,,,,,,:ref:`dishwasher` +Input,build_existing_model.dishwasher_usage_level,,in.dishwasher_usage_level,in.dishwasher_usage_level,,,,,,,,,:ref:`dishwasher_usage_level` +Input,build_existing_model.door_area,,in.door_area,in.door_area,,,,,,,,,:ref:`door_area` +Input,build_existing_model.doors,,in.doors,in.doors,,,,,,,,,:ref:`doors` +Input,build_existing_model.duct_leakage_and_insulation,,in.duct_leakage_and_insulation,in.duct_leakage_and_insulation,,,,,,,,,:ref:`duct_leakage_and_insulation` +Input,build_existing_model.duct_location,,in.duct_location,in.duct_location,,,,,,,,,:ref:`duct_location` +Input,build_existing_model.eaves,,in.eaves,in.eaves,,,,,,,,,:ref:`eaves` +Input,build_existing_model.electric_panel_service_max_current_rating,amp,in.electric_panel_service_max_current_rating,in.electric_panel_service_max_current_rating,amp,1,,,,,,,:ref:`electric_panel_service_max_current_rating` +Input,build_existing_model.electric_panel_service_max_current_rating_bin,amp,in.electric_panel_service_max_current_rating_bin,in.electric_panel_service_max_current_rating_bin,amp,,,,,,,,:ref:`electric_panel_service_max_current_rating_bin` +Input,build_existing_model.electric_vehicle_battery,,in.electric_vehicle_battery,in.electric_vehicle_battery,,,,,,,,,:ref:`electric_vehicle_battery` +Input,build_existing_model.electric_vehicle_charge_at_home,,in.electric_vehicle_charge_at_home,in.electric_vehicle_charge_at_home,,,,,,,,,:ref:`electric_vehicle_charge_at_home` +Input,build_existing_model.electric_vehicle_charger,,in.electric_vehicle_charger,in.electric_vehicle_charger,,,,,,,,,:ref:`electric_vehicle_charger` +Input,build_existing_model.electric_vehicle_miles_traveled,,in.electric_vehicle_miles_traveled,in.electric_vehicle_miles_traveled,,,,,,,,,:ref:`electric_vehicle_miles_traveled` +Input,build_existing_model.electric_vehicle_outlet_access,,in.electric_vehicle_outlet_access,in.electric_vehicle_outlet_access,,,,,,,,,:ref:`electric_vehicle_outlet_access` +Input,build_existing_model.electric_vehicle_ownership,,in.electric_vehicle_ownership,in.electric_vehicle_ownership,,,,,,,,,:ref:`electric_vehicle_ownership` +Input,build_existing_model.energystar_climate_zone_2023,,in.energystar_climate_zone_2023,in.energystar_climate_zone_2023,,,,,,,,,:ref:`energystar_climate_zone_2023` +Input,build_existing_model.federal_poverty_level,,in.federal_poverty_level,in.federal_poverty_level,,,,,,,,,:ref:`federal_poverty_level` +Input,build_existing_model.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region,in.generation_and_emissions_assessment_region,,,,,,,,,:ref:`generation_and_emissions_assessment_region` +Input,build_existing_model.geometry_attic_type,,in.geometry_attic_type,in.geometry_attic_type,,,,,,,,,:ref:`geometry_attic_type` +Input,build_existing_model.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf,in.geometry_building_horizontal_location_mf,,,,,,,,,:ref:`geometry_building_horizontal_location_mf` +Input,build_existing_model.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa,in.geometry_building_horizontal_location_sfa,,,,,,,,,:ref:`geometry_building_horizontal_location_sfa` +Input,build_existing_model.geometry_building_level_mf,,in.geometry_building_level_mf,in.geometry_building_level_mf,,,,,,,,,:ref:`geometry_building_level_mf` +Input,build_existing_model.geometry_building_number_units_mf,,in.geometry_building_number_units_mf,in.geometry_building_number_units_mf,,,,,,,,,:ref:`geometry_building_number_units_mf` +Input,build_existing_model.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa,in.geometry_building_number_units_sfa,,,,,,,,,:ref:`geometry_building_number_units_sfa` +Input,build_existing_model.geometry_building_type_acs,,in.geometry_building_type_acs,in.geometry_building_type_acs,,,,,,,,,:ref:`geometry_building_type_acs` +Input,build_existing_model.geometry_building_type_height,,in.geometry_building_type_height,in.geometry_building_type_height,,,,,,,,,:ref:`geometry_building_type_height` +Input,build_existing_model.geometry_building_type_recs,,in.geometry_building_type_recs,in.geometry_building_type_recs,,,,,,,,,:ref:`geometry_building_type_recs` +Input,build_existing_model.geometry_floor_area,,in.geometry_floor_area,in.geometry_floor_area,,,,,,,,,:ref:`geometry_floor_area` +Input,build_existing_model.geometry_floor_area_bin,,in.geometry_floor_area_bin,in.geometry_floor_area_bin,,,,,,,,,:ref:`geometry_floor_area_bin` +Input,build_existing_model.geometry_foundation_type,,in.geometry_foundation_type,in.geometry_foundation_type,,,,,,,,,:ref:`geometry_foundation_type` +Input,build_existing_model.geometry_garage,,in.geometry_garage,in.geometry_garage,,,,,,,,,:ref:`geometry_garage` +Input,build_existing_model.geometry_space_combination,,in.geometry_space_combination,in.geometry_space_combination,,,,,,,,,:ref:`geometry_space_combination` +Input,build_existing_model.geometry_stories,,in.geometry_stories,in.geometry_stories,,,,,,,,,:ref:`geometry_stories` +Input,build_existing_model.geometry_stories_low_rise,,in.geometry_stories_low_rise,in.geometry_stories_low_rise,,,,,,,,,:ref:`geometry_stories_low_rise` +Input,build_existing_model.geometry_story_bin,,in.geometry_story_bin,in.geometry_story_bin,,,,,,,,,:ref:`geometry_story_bin` +Input,build_existing_model.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish,in.geometry_wall_exterior_finish,,,,,,,,,:ref:`geometry_wall_exterior_finish` +Input,build_existing_model.geometry_wall_type,,in.geometry_wall_type,in.geometry_wall_type,,,,,,,,,:ref:`geometry_wall_type` +Input,build_existing_model.ground_thermal_conductivity,,in.ground_thermal_conductivity,in.ground_thermal_conductivity,,,,,,,,,:ref:`ground_thermal_conductivity` +Input,build_existing_model.has_pv,,in.has_pv,in.has_pv,,,,,,,,,:ref:`has_pv` +Input,build_existing_model.heating_fuel,,in.heating_fuel,in.heating_fuel,,,,,,,,,:ref:`heating_fuel` +Input,build_existing_model.heating_unavailable_days,,in.heating_unavailable_days,in.heating_unavailable_days,,,,,,,,,:ref:`heating_unavailable_days` +Input,build_existing_model.heating_setpoint,,in.heating_setpoint,in.heating_setpoint,,,,,,,,,:ref:`heating_setpoint` +Input,build_existing_model.heating_setpoint_has_offset,,in.heating_setpoint_has_offset,in.heating_setpoint_has_offset,,,,,,,,,:ref:`heating_setpoint_has_offset` +Input,build_existing_model.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude,in.heating_setpoint_offset_magnitude,,,,,,,,,:ref:`heating_setpoint_offset_magnitude` +Input,build_existing_model.heating_setpoint_offset_period,,in.heating_setpoint_offset_period,in.heating_setpoint_offset_period,,,,,,,,,:ref:`heating_setpoint_offset_period` +Input,build_existing_model.holiday_lighting,,in.holiday_lighting,in.holiday_lighting,,,,,,,,,:ref:`holiday_lighting` +Input,build_existing_model.hot_water_distribution,,in.hot_water_distribution,in.hot_water_distribution,,,,,,,,,:ref:`hot_water_distribution` +Input,build_existing_model.hot_water_fixtures,,in.hot_water_fixtures,in.hot_water_fixtures,,,,,,,,,:ref:`hot_water_fixtures` +Input,build_existing_model.household_has_tribal_persons,,in.household_has_tribal_persons,in.household_has_tribal_persons,,,,,,,,,:ref:`household_has_tribal_persons` +Input,build_existing_model.hvac_cooling_autosizing_factor,,in.hvac_cooling_autosizing_factor,in.hvac_cooling_autosizing_factor,,,,,,,,,:ref:`hvac_cooling_autosizing_factor` +Input,build_existing_model.hvac_cooling_efficiency,,in.hvac_cooling_efficiency,in.hvac_cooling_efficiency,,,,,,,,,:ref:`hvac_cooling_efficiency` +Input,build_existing_model.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning,in.hvac_cooling_partial_space_conditioning,,,,,,,,,:ref:`hvac_cooling_partial_space_conditioning` +Input,build_existing_model.hvac_cooling_type,,in.hvac_cooling_type,in.hvac_cooling_type,,,,,,,,,:ref:`hvac_cooling_type` +Input,build_existing_model.hvac_has_ducts,,in.hvac_has_ducts,in.hvac_has_ducts,,,,,,,,,:ref:`hvac_has_ducts` +Input,build_existing_model.hvac_has_shared_system,,in.hvac_has_shared_system,in.hvac_has_shared_system,,,,,,,,,:ref:`hvac_has_shared_system` +Input,build_existing_model.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating,in.hvac_has_zonal_electric_heating,,,,,,,,,:ref:`hvac_has_zonal_electric_heating` +Input,build_existing_model.hvac_heating_autosizing_factor,,in.hvac_heating_autosizing_factor,in.hvac_heating_autosizing_factor,,,,,,,,,:ref:`hvac_heating_autosizing_factor` +Input,build_existing_model.hvac_heating_efficiency,,in.hvac_heating_efficiency,in.hvac_heating_efficiency,,,,,,,,,:ref:`hvac_heating_efficiency` +Input,build_existing_model.hvac_heating_type,,in.hvac_heating_type,in.hvac_heating_type,,,,,,,,,:ref:`hvac_heating_type` +Input,build_existing_model.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel,in.hvac_heating_type_and_fuel,,,,,,,,,:ref:`hvac_heating_type_and_fuel` +Input,build_existing_model.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency,in.hvac_secondary_heating_efficiency,,,,,,,,,:ref:`hvac_secondary_heating_efficiency` +Input,build_existing_model.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel,in.hvac_secondary_heating_fuel,,,,,,,,,:ref:`hvac_secondary_heating_fuel` +Input,build_existing_model.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning,in.hvac_secondary_heating_partial_space_conditioning,,,,,,,,,:ref:`hvac_secondary_heating_partial_space_conditioning` +Input,build_existing_model.hvac_secondary_heating_type,,in.hvac_secondary_heating_type,in.hvac_secondary_heating_type,,,,,,,,,:ref:`hvac_secondary_heating_type` +Input,build_existing_model.hvac_shared_efficiencies,,in.hvac_shared_efficiencies,in.hvac_shared_efficiencies,,,,,,,,,:ref:`hvac_shared_efficiencies` +Input,build_existing_model.hvac_system_is_faulted,,in.hvac_system_is_faulted,in.hvac_system_is_faulted,,,,,,,,,:ref:`hvac_system_is_faulted` +Input,build_existing_model.hvac_system_is_scaled,,in.hvac_system_is_scaled,in.hvac_system_is_scaled,,,,,,,,,:ref:`hvac_system_is_scaled` +Input,build_existing_model.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow,in.hvac_system_single_speed_ac_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ac_airflow` +Input,build_existing_model.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge,in.hvac_system_single_speed_ac_charge,,,,,,,,,:ref:`hvac_system_single_speed_ac_charge` +Input,build_existing_model.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow,in.hvac_system_single_speed_ashp_airflow,,,,,,,,,:ref:`hvac_system_single_speed_ashp_airflow` +Input,build_existing_model.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge,in.hvac_system_single_speed_ashp_charge,,,,,,,,,:ref:`hvac_system_single_speed_ashp_charge` +Input,build_existing_model.income,,in.income,in.income,,,,,,,,,:ref:`income` +Input,build_existing_model.income_recs_2015,,in.income_recs_2015,in.income_recs_2015,,,,,,,,,:ref:`income_recs2015` +Input,build_existing_model.income_recs_2020,,in.income_recs_2020,in.income_recs_2020,,,,,,,,,:ref:`income_recs2020` +Input,build_existing_model.infiltration,,in.infiltration,in.infiltration,,,,,,,,,:ref:`infiltration` +Input,build_existing_model.insulation_ceiling,,in.insulation_ceiling,in.insulation_ceiling,,,,,,,,,:ref:`insulation_ceiling` +Input,build_existing_model.insulation_floor,,in.insulation_floor,in.insulation_floor,,,,,,,,,:ref:`insulation_floor` +Input,build_existing_model.insulation_foundation_wall,,in.insulation_foundation_wall,in.insulation_foundation_wall,,,,,,,,,:ref:`insulation_foundation_wall` +Input,build_existing_model.insulation_rim_joist,,in.insulation_rim_joist,in.insulation_rim_joist,,,,,,,,,:ref:`insulation_rim_joist` +Input,build_existing_model.insulation_roof,,in.insulation_roof,in.insulation_roof,,,,,,,,,:ref:`insulation_roof` +Input,build_existing_model.insulation_slab,,in.insulation_slab,in.insulation_slab,,,,,,,,,:ref:`insulation_slab` +Input,build_existing_model.insulation_wall,,in.insulation_wall,in.insulation_wall,,,,,,,,,:ref:`insulation_wall` +Input,build_existing_model.interior_shading,,in.interior_shading,in.interior_shading,,,,,,,,,:ref:`interior_shading` +Input,build_existing_model.iso_rto_region,,in.iso_rto_region,in.iso_rto_region,,,,,,,,,:ref:`iso_rto_region` +Input,build_existing_model.lighting,,in.lighting,in.lighting,,,,,,,,,:ref:`lighting` +Input,build_existing_model.lighting_interior_use,,in.lighting_interior_use,in.lighting_interior_use,,,,,,,,,:ref:`lighting_interior_use` +Input,build_existing_model.lighting_other_use,,in.lighting_other_use,in.lighting_other_use,,,,,,,,,:ref:`lighting_other_use` +Input,build_existing_model.location_region,,in.location_region,in.location_region,,,,,,,,,:ref:`location_region` +Input,build_existing_model.mechanical_ventilation,,in.mechanical_ventilation,in.mechanical_ventilation,,,,,,,,,:ref:`mechanical_ventilation` +Input,build_existing_model.metropolitan_and_micropolitan_statistical_area,,in.metropolitan_and_micropolitan_statistical_area,in.metropolitan_and_micropolitan_statistical_area,,,,,,,,,:ref:`metropolitan_and_micropolitan_statistical_area` +Input,build_existing_model.misc_extra_refrigerator,,in.misc_extra_refrigerator,in.misc_extra_refrigerator,,,,,,,,,:ref:`misc_extra_refrigerator` +Input,build_existing_model.misc_freezer,,in.misc_freezer,in.misc_freezer,,,,,,,,,:ref:`misc_freezer` +Input,build_existing_model.misc_gas_fireplace,,in.misc_gas_fireplace,in.misc_gas_fireplace,,,,,,,,,:ref:`misc_gas_fireplace` +Input,build_existing_model.misc_gas_grill,,in.misc_gas_grill,in.misc_gas_grill,,,,,,,,,:ref:`misc_gas_grill` +Input,build_existing_model.misc_gas_lighting,,in.misc_gas_lighting,in.misc_gas_lighting,,,,,,,,,:ref:`misc_gas_lighting` +Input,build_existing_model.misc_hot_tub_spa,,in.misc_hot_tub_spa,in.misc_hot_tub_spa,,,,,,,,,:ref:`misc_hot_tub_spa` +Input,build_existing_model.misc_pool,,in.misc_pool,in.misc_pool,,,,,,,,,:ref:`misc_pool` +Input,build_existing_model.misc_pool_heater,,in.misc_pool_heater,in.misc_pool_heater,,,,,,,,,:ref:`misc_pool_heater` +Input,build_existing_model.misc_pool_pump,,in.misc_pool_pump,in.misc_pool_pump,,,,,,,,,:ref:`misc_pool_pump` +Input,build_existing_model.misc_well_pump,,in.misc_well_pump,in.misc_well_pump,,,,,,,,,:ref:`misc_well_pump` +Input,build_existing_model.natural_ventilation,,in.natural_ventilation,in.natural_ventilation,,,,,,,,,:ref:`natural_ventilation` +Input,build_existing_model.neighbors,,in.neighbors,in.neighbors,,,,,,,,,:ref:`neighbors` +Input,build_existing_model.occupants,,in.occupants,in.occupants,,,,,,,,,:ref:`occupants` +Input,build_existing_model.orientation,,in.orientation,in.orientation,,,,,,,,,:ref:`orientation` +Input,build_existing_model.plug_load_diversity,,in.plug_load_diversity,in.plug_load_diversity,,,,,,,,,:ref:`plug_load_diversity` +Input,build_existing_model.plug_loads,,in.plug_loads,in.plug_loads,,,,,,,,,:ref:`plug_loads` +Input,build_existing_model.puma,,in.puma,in.puma,,,,,,,,,:ref:`puma` +Input,build_existing_model.puma_metro_status,,in.puma_metro_status,in.puma_metro_status,,,,,,,,,:ref:`puma_metro_status` +Input,build_existing_model.pv_orientation,,in.pv_orientation,in.pv_orientation,,,,,,,,,:ref:`pv_orientation` +Input,build_existing_model.pv_system_size,,in.pv_system_size,in.pv_system_size,,,,,,,,,:ref:`pv_system_size` +Input,build_existing_model.radiant_barrier,,in.radiant_barrier,in.radiant_barrier,,,,,,,,,:ref:`radiant_barrier` +Input,build_existing_model.range_spot_vent_hour,,in.range_spot_vent_hour,in.range_spot_vent_hour,,,,,,,,,:ref:`range_spot_vent_hour` +Input,build_existing_model.reeds_balancing_area,,in.reeds_balancing_area,in.reeds_balancing_area,,,,,,,,,:ref:`reeds_balancing_area` +Input,build_existing_model.refrigerator,,in.refrigerator,in.refrigerator,,,,,,,,,:ref:`refrigerator` +Input,build_existing_model.refrigerator_usage_level,,in.refrigerator_usage_level,in.refrigerator_usage_level,,,,,,,,,:ref:`refrigerator_usage_level` +Input,build_existing_model.roof_material,,in.roof_material,in.roof_material,,,,,,,,,:ref:`roof_material` +Input,build_existing_model.state,,in.state,in.state,,,,,,,,,:ref:`state` +Input,build_existing_model.state_metro_median_income,,in.state_metro_median_income,in.state_metro_median_income,,,,,,,,,:ref:`state_metro_median_income` +Input,build_existing_model.tenure,,in.tenure,in.tenure,,,,,,,,,:ref:`tenure` +Input,build_existing_model.usage_level,,in.usage_level,in.usage_level,,,,,,,,,:ref:`usage_level` +Input,build_existing_model.vacancy_status,,in.vacancy_status,in.vacancy_status,,,,,,,,,:ref:`vacancy_status` +Input,build_existing_model.vintage,,in.vintage,in.vintage,,,,,,,,,:ref:`vintage` +Input,build_existing_model.vintage_acs,,in.vintage_acs,in.vintage_acs,,,,,,,,,:ref:`vintage_acs` +Input,build_existing_model.water_heater_efficiency,,in.water_heater_efficiency,in.water_heater_efficiency,,,,,,,,,:ref:`water_heater_efficiency` +Input,build_existing_model.water_heater_fuel,,in.water_heater_fuel,in.water_heater_fuel,,,,,,,,,:ref:`water_heater_fuel` +Input,build_existing_model.water_heater_in_unit,,in.water_heater_in_unit,in.water_heater_in_unit,,,,,,,,,:ref:`water_heater_in_unit` +Input,build_existing_model.water_heater_location,,in.water_heater_location,in.water_heater_location,,,,,,,,,:ref:`water_heater_location` +Input,build_existing_model.window_areas,,in.window_areas,in.window_areas,,,,,,,,,:ref:`window_areas` +Input,build_existing_model.windows,,in.windows,in.windows,,,,,,,,,:ref:`windows` +Input,build_existing_model.air_leakage_to_outside_ach_50,,in.air_leakage_to_outside_ach_50,in.air_leakage_to_outside_ach_50,,,,,,,,,Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. +Input,build_existing_model.applicable,,in.applicable,in.applicable,,,,,,,,,The measure was applied to the workflow. +Input,build_existing_model.buildstock_csv_path,,in.buildstock_csv_path,in.buildstock_csv_path,,,,,,,,,Absolute/relative path of the buildstock CSV file. Relative is compared to the 'lib/housing_characteristics' directory. +Input,build_existing_model.units_represented,,in.units_represented,in.units_represented,,,,,,,,,The number of dwelling units this simulation represents. Should always be one. +Input,build_existing_model.emissions_electricity_folders,,in.emissions_electricity_folders,in.emissions_electricity_folders,,,,,,,,,"Relative paths of electricity emissions factor schedule files with hourly values. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. File names must contain GEA region names." +Input,build_existing_model.emissions_electricity_units,,in.emissions_electricity_units,in.emissions_electricity_units,,,,,,,,,"Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed." +Input,build_existing_model.emissions_electricity_filepaths,,in.emissions_electricity_filepaths,in.emissions_electricity_filepaths,,,,,,,,,"Electricity emissions factors values, specified as an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_fossil_fuel_units,,in.emissions_fossil_fuel_units,in.emissions_fossil_fuel_units,,,,,,,,,"Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed." +Input,build_existing_model.emissions_fuel_oil_values,,in.emissions_fuel_oil_values,in.emissions_fuel_oil_values,,,,,,,,,"Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_natural_gas_values,,in.emissions_natural_gas_values,in.emissions_natural_gas_values,,,,,,,,,"Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_propane_values,,in.emissions_propane_values,in.emissions_propane_values,,,,,,,,,"Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_scenario_names,,in.emissions_scenario_names,in.emissions_scenario_names,,,,,,,,,"Names of emissions scenarios. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_types,,in.emissions_types,in.emissions_types,,,,,,,,,"Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list." +Input,build_existing_model.emissions_wood_values,,in.emissions_wood_values,in.emissions_wood_values,,,,,,,,,"Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month,in.simulation_control_run_period_begin_day_of_month,,,,,,,,,This numeric field should contain the starting day of the starting month (must be valid for month) for the annual run period desired. +Input,build_existing_model.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month,in.simulation_control_run_period_begin_month,,,,,,,,,"This numeric field should contain the starting month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,build_existing_model.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year,in.simulation_control_run_period_calendar_year,,,,,,,,,"This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file." +Input,build_existing_model.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month,in.simulation_control_run_period_end_day_of_month,,,,,,,,,This numeric field should contain the ending day of the ending month (must be valid for month) for the annual run period desired. +Input,build_existing_model.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month,in.simulation_control_run_period_end_month,,,,,,,,,"This numeric field should contain the end month number (1 = January, 2 = February, etc.) for the annual run period desired." +Input,build_existing_model.simulation_control_timestep,,in.simulation_control_timestep,in.simulation_control_timestep,,,,,,,,,Value must be a divisor of 60. +Input,build_existing_model.utility_bill_detailed_filepaths,,in.utility_bill_detailed_filepaths,in.utility_bill_detailed_filepaths,,,,,,,,,"Relative paths of detailed utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,build_existing_model.utility_bill_electricity_filepaths,,in.utility_bill_electricity_filepaths,in.utility_bill_electricity_filepaths,,,,,,,,,"Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_electricity_fixed_charges,usd,in.utility_bill_electricity_fixed_charges,in.utility_bill_electricity_fixed_charges,usd,,,,,,,,"Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_electricity_marginal_rates,usd,in.utility_bill_electricity_marginal_rates,in.utility_bill_electricity_marginal_rates,usd,,,,,,,,"Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_fuel_oil_fixed_charges,usd,in.utility_bill_fuel_oil_fixed_charges,in.utility_bill_fuel_oil_fixed_charges,usd,,,,,,,,"Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_fuel_oil_marginal_rates,usd,in.utility_bill_fuel_oil_marginal_rates,in.utility_bill_fuel_oil_marginal_rates,usd,,,,,,,,"Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_natural_gas_fixed_charges,usd,in.utility_bill_natural_gas_fixed_charges,in.utility_bill_natural_gas_fixed_charges,usd,,,,,,,,"Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_natural_gas_marginal_rates,usd,in.utility_bill_natural_gas_marginal_rates,in.utility_bill_natural_gas_marginal_rates,usd,,,,,,,,"Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_propane_fixed_charges,usd,in.utility_bill_propane_fixed_charges,in.utility_bill_propane_fixed_charges,usd,,,,,,,,"Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_propane_marginal_rates,usd,in.utility_bill_propane_marginal_rates,in.utility_bill_propane_marginal_rates,usd,,,,,,,,"Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_compensation_types,usd,in.utility_bill_pv_compensation_types,in.utility_bill_pv_compensation_types,usd,,,,,,,,"Utility bill PV compensation types. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_feed_in_tariff_rates,usd,in.utility_bill_pv_feed_in_tariff_rates,in.utility_bill_pv_feed_in_tariff_rates,usd,,,,,,,,"Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,usd,in.utility_bill_pv_monthly_grid_connection_fee_units,in.utility_bill_pv_monthly_grid_connection_fee_units,usd,,,,,,,,"Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_monthly_grid_connection_fees,usd,in.utility_bill_pv_monthly_grid_connection_fees,in.utility_bill_pv_monthly_grid_connection_fees,usd,,,,,,,,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,in.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,,,,,,,,,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,in.utility_bill_pv_net_metering_annual_excess_sellback_rates,usd,,,,,,,,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_scenario_names,,in.utility_bill_scenario_names,in.utility_bill_scenario_names,,,,,,,,,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_simple_filepaths,,in.utility_bill_simple_filepaths,in.utility_bill_simple_filepaths,,,,,,,,,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." +Input,build_existing_model.utility_bill_wood_fixed_charges,usd,in.utility_bill_wood_fixed_charges,in.utility_bill_wood_fixed_charges,usd,,,,,,,,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.utility_bill_wood_marginal_rates,usd,in.utility_bill_wood_marginal_rates,in.utility_bill_wood_marginal_rates,usd,,,,,,,,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." +Input,build_existing_model.weather_file_city,,in.weather_file_city,in.weather_file_city,,,,,,,,,City from the EPW weather file. +Input,build_existing_model.weather_file_latitude,,in.weather_file_latitude,in.weather_file_latitude,,,,,,,,,Latitude from the EPW weather file. +Input,build_existing_model.weather_file_longitude,,in.weather_file_longitude,in.weather_file_longitude,,,,,,,,,Longitude from the EPW weather file. +Input,build_existing_model.heating_unavailable_period,,in.heating_unavailable_period,in.heating_unavailable_period,,,,,,,,,Heating unavailable period. +Input,build_existing_model.cooling_unavailable_period,,in.cooling_unavailable_period,in.cooling_unavailable_period,,,,,,,,,Cooling unavailable period. +Output,upgrade_costs.door_area_ft_2,ft^2,out.params.door_area_ft_2,out.params.door_area_ft_2,ft_2,1,,,,,,,Door Area +Output,upgrade_costs.duct_unconditioned_surface_area_ft_2,ft^2,out.params.duct_unconditioned_surface_area_ft_2,out.params.duct_unconditioned_surface_area_ft_2,ft_2,1,,,,,,,Duct Unconditioned Surface Area +Output,upgrade_costs.floor_area_attic_ft_2,ft^2,out.params.floor_area_attic_ft_2,out.params.floor_area_attic_ft_2,ft_2,1,,,,,,,"Floor Area, Attic" +Output,upgrade_costs.floor_area_attic_insulation_increase_ft_2_delta_r_value,ft^2 * Delta R-value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value,r_value,1,,,,,,,"Floor Area, Attic * Insulation Increase" +Output,upgrade_costs.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ft^2 * Delta ACH50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50,ach_50,1,,,,,,,"Floor Area, Conditioned * Infiltration Reduction" +Output,upgrade_costs.floor_area_foundation_ft_2,ft^2,out.params.floor_area_foundation_ft_2,out.params.floor_area_foundation_ft_2,ft_2,1,,,,,,,"Floor Area, Foundation" +Output,upgrade_costs.floor_area_lighting_ft_2,ft^2,out.params.floor_area_lighting_ft_2,out.params.floor_area_lighting_ft_2,ft_2,1,,,,,,,"Floor Area, Lighting" +Output,upgrade_costs.flow_rate_mechanical_ventilation_cfm,cfm,out.params.flow_rate_mechanical_ventilation_cfm,out.params.flow_rate_mechanical_ventilation_cfm,cfm,1,,,,,,,"Flow Rate, Mechanical Ventilation" +Output,upgrade_costs.rim_joist_area_above_grade_exterior_ft_2,ft^2,out.params.rim_joist_area_above_grade_exterior_ft_2,out.params.rim_joist_area_above_grade_exterior_ft_2,ft_2,1,,,,,,,"Rim Joist Area, Above-Grade, Exterior" +Output,upgrade_costs.roof_area_ft_2,ft^2,out.params.roof_area_ft_2,out.params.roof_area_ft_2,ft_2,1,,,,,,,Roof Area +Output,upgrade_costs.size_cooling_system_primary_k_btu_h,kBtu/h,out.params.size_cooling_system_primary_k_btu_h,out.params.size_cooling_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Cooling System Primary" +Output,upgrade_costs.size_heat_pump_backup_primary_k_btu_h,kBtu/h,out.params.size_heat_pump_backup_primary_k_btu_h,out.params.size_heat_pump_backup_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heat Pump Backup Primary" +Output,upgrade_costs.size_heating_system_primary_k_btu_h,kBtu/h,out.params.size_heating_system_primary_k_btu_h,out.params.size_heating_system_primary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Primary" +Output,upgrade_costs.size_heating_system_secondary_k_btu_h,kBtu/h,out.params.size_heating_system_secondary_k_btu_h,out.params.size_heating_system_secondary_k_btu_h,k_btu_h,1,,,,,,,"Size, Heating System Secondary" +Output,upgrade_costs.size_water_heater_gal,gal,out.params.size_water_heater_gal,out.params.size_water_heater_gal,gal,1,,,,,,,"Size, Water Heater" +Output,upgrade_costs.slab_perimeter_exposed_conditioned_ft,ft,out.params.slab_perimeter_exposed_conditioned_ft,out.params.slab_perimeter_exposed_conditioned_ft,ft,1,,,,,,,"Slab Perimeter, Exposed, Conditioned" +Output,upgrade_costs.wall_area_above_grade_conditioned_ft_2,ft^2,out.params.wall_area_above_grade_conditioned_ft_2,out.params.wall_area_above_grade_conditioned_ft_2,ft_2,1,,,,,,,"Wall Area, Above-Grade, Conditioned" +Output,upgrade_costs.wall_area_above_grade_exterior_ft_2,ft^2,out.params.wall_area_above_grade_exterior_ft_2,out.params.wall_area_above_grade_exterior_ft_2,ft_2,1,,,,,,,"Wall Area, Above-Grade, Exterior" +Output,upgrade_costs.wall_area_below_grade_ft_2,ft^2,out.params.wall_area_below_grade_ft_2,out.params.wall_area_below_grade_ft_2,ft_2,1,,,,,,,"Wall Area, Below-Grade" +Output,upgrade_costs.window_area_ft_2,ft^2,out.params.window_area_ft_2,out.params.window_area_ft_2,ft_2,1,,,,,,,Window Area +Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_count,,out.params.hvac_geothermal_loop_borehole_trench_count,out.params.hvac_geothermal_loop_borehole_trench_count,,1,,,,,,,Number of boreholes used for the geothermal heat pump system. +Output,report_simulation_output.hvac_geothermal_loop_borehole_trench_length_ft,ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,out.params.hvac_geothermal_loop_borehole_trench_length_ft,ft,1,,,,,,,Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. +Output,report_simulation_output.end_use_electricity_battery_m_btu,MBtu,out.electricity.battery.energy_consumption.kwh,out.electricity.battery.energy_consumption,kwh,293.0710702,End Use: Electricity: Battery,kWh,out.electricity.battery.energy_consumption,out.electricity.battery.energy_consumption,kWh,1,Positive value for charging (including efficiency losses); negative value for discharging +Output,report_simulation_output.end_use_electricity_ceiling_fan_m_btu,MBtu,out.electricity.ceiling_fan.energy_consumption.kwh,out.electricity.ceiling_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Ceiling Fan,kWh,out.electricity.ceiling_fan.energy_consumption,out.electricity.ceiling_fan.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_clothes_dryer_m_btu,MBtu,out.electricity.clothes_dryer.energy_consumption.kwh,out.electricity.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Dryer,kWh,out.electricity.clothes_dryer.energy_consumption,out.electricity.clothes_dryer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_clothes_washer_m_btu,MBtu,out.electricity.clothes_washer.energy_consumption.kwh,out.electricity.clothes_washer.energy_consumption,kwh,293.0710702,End Use: Electricity: Clothes Washer,kWh,out.electricity.clothes_washer.energy_consumption,out.electricity.clothes_washer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_cooling_fans_pumps_m_btu,MBtu,out.electricity.cooling_fans_pumps.energy_consumption.kwh,out.electricity.cooling_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling Fans/Pumps,kWh,out.electricity.cooling_fans_pumps.energy_consumption,out.electricity.cooling_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (geothermal loop) +Output,report_simulation_output.end_use_electricity_cooling_m_btu,MBtu,out.electricity.cooling.energy_consumption.kwh,out.electricity.cooling.energy_consumption,kwh,293.0710702,End Use: Electricity: Cooling,kWh,out.electricity.cooling.energy_consumption,out.electricity.cooling.energy_consumption,kWh,1,Excludes fans/pumps +Output,report_simulation_output.end_use_electricity_dehumidifier_m_btu,MBtu,out.electricity.dehumidifier.energy_consumption.kwh,out.electricity.dehumidifier.energy_consumption,kwh,293.0710702,End Use: Electricity: Dehumidifier,kWh,out.electricity.dehumidifier.energy_consumption,out.electricity.dehumidifier.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_dishwasher_m_btu,MBtu,out.electricity.dishwasher.energy_consumption.kwh,out.electricity.dishwasher.energy_consumption,kwh,293.0710702,End Use: Electricity: Dishwasher,kWh,out.electricity.dishwasher.energy_consumption,out.electricity.dishwasher.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_electric_vehicle_charging_m_btu,MBtu,out.electricity.ev_charging.energy_consumption.kwh,out.electricity.ev_charging.energy_consumption,kwh,293.0710702,End Use: Electricity: Electric Vehicle Charging,kWh,out.electricity.ev_charging.energy_consumption,out.electricity.ev_charging.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_freezer_m_btu,MBtu,out.electricity.freezer.energy_consumption.kwh,out.electricity.freezer.energy_consumption,kwh,293.0710702,End Use: Electricity: Freezer,kWh,out.electricity.freezer.energy_consumption,out.electricity.freezer.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_generator_m_btu,MBtu,out.electricity.generator.energy_consumption.kwh,out.electricity.generator.energy_consumption,kwh,293.0710702,End Use: Electricity: Generator,kWh,out.electricity.generator.energy_consumption,out.electricity.generator.energy_consumption,kWh,1,Negative value for any power produced +Output,report_simulation_output.end_use_electricity_heating_fans_pumps_m_btu,MBtu,out.electricity.heating_fans_pumps.energy_consumption.kwh,out.electricity.heating_fans_pumps.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Fans/Pumps,kWh,out.electricity.heating_fans_pumps.energy_consumption,out.electricity.heating_fans_pumps.energy_consumption,kWh,1,Supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) +Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_m_btu,MBtu,out.electricity.heating_hp_bkup.energy_consumption.kwh,out.electricity.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup,kWh,out.electricity.heating_hp_bkup.energy_consumption,out.electricity.heating_hp_bkup.energy_consumption,kWh,1,Excludes heat pump backup fans/pumps +Output,report_simulation_output.end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu,MBtu,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh,out.electricity.heating_hp_bkup_fa.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating Heat Pump Backup Fans/Pumps,kWh,out.electricity.heating_hp_bkup_fa.energy_consumption,out.electricity.heating_hp_bkup_fa.energy_consumption,kWh,1,Includes supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup +Output,report_simulation_output.end_use_electricity_heating_m_btu,MBtu,out.electricity.heating.energy_consumption.kwh,out.electricity.heating.energy_consumption,kwh,293.0710702,End Use: Electricity: Heating,kWh,out.electricity.heating.energy_consumption,out.electricity.heating.energy_consumption,kWh,1,Excludes heat pump backup and fans/pumps +Output,report_simulation_output.end_use_electricity_permanent_spa_heater_m_btu,MBtu,out.electricity.permanent_spa_heat.energy_consumption.kwh,out.electricity.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Heater,kWh,out.electricity.permanent_spa_heat.energy_consumption,out.electricity.permanent_spa_heat.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_permanent_spa_pump_m_btu,MBtu,out.electricity.permanent_spa_pump.energy_consumption.kwh,out.electricity.permanent_spa_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Permanent Spa Pump,kWh,out.electricity.permanent_spa_pump.energy_consumption,out.electricity.permanent_spa_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_hot_water_m_btu,MBtu,out.electricity.hot_water.energy_consumption.kwh,out.electricity.hot_water.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water,kWh,out.electricity.hot_water.energy_consumption,out.electricity.hot_water.energy_consumption,kWh,1,Excludes recirc pump and solar thermal pump +Output,report_simulation_output.end_use_electricity_hot_water_recirc_pump_m_btu,MBtu,out.electricity.hot_water_recirc_p.energy_consumption.kwh,out.electricity.hot_water_recirc_p.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Recirc Pump,kWh,out.electricity.hot_water_recirc_p.energy_consumption,out.electricity.hot_water_recirc_p.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_hot_water_solar_thermal_pump_m_btu,MBtu,out.electricity.hot_water_solar_th.energy_consumption.kwh,out.electricity.hot_water_solar_th.energy_consumption,kwh,293.0710702,End Use: Electricity: Hot Water Solar Thermal Pump,kWh,out.electricity.hot_water_solar_th.energy_consumption,out.electricity.hot_water_solar_th.energy_consumption,kWh,1,Non-zero only when using detailed (not simple) solar thermal inputs +Output,report_simulation_output.end_use_electricity_lighting_exterior_m_btu,MBtu,out.electricity.lighting_exterior.energy_consumption.kwh,out.electricity.lighting_exterior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Exterior,kWh,out.electricity.lighting_exterior.energy_consumption,out.electricity.lighting_exterior.energy_consumption,kWh,1,Includes exterior holiday lighting +Output,report_simulation_output.end_use_electricity_lighting_garage_m_btu,MBtu,out.electricity.lighting_garage.energy_consumption.kwh,out.electricity.lighting_garage.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Garage,kWh,out.electricity.lighting_garage.energy_consumption,out.electricity.lighting_garage.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_lighting_interior_m_btu,MBtu,out.electricity.lighting_interior.energy_consumption.kwh,out.electricity.lighting_interior.energy_consumption,kwh,293.0710702,End Use: Electricity: Lighting Interior,kWh,out.electricity.lighting_interior.energy_consumption,out.electricity.lighting_interior.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_mech_vent_m_btu,MBtu,out.electricity.mech_vent.energy_consumption.kwh,out.electricity.mech_vent.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent,kWh,out.electricity.mech_vent.energy_consumption,out.electricity.mech_vent.energy_consumption,kWh,1,Excludes preheating/precooling +Output,report_simulation_output.end_use_electricity_mech_vent_precooling_m_btu,MBtu,out.electricity.mech_vent_precool.energy_consumption.kwh,out.electricity.mech_vent_precool.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Precooling,kWh,out.electricity.mech_vent_precool.energy_consumption,out.electricity.mech_vent_precool.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_mech_vent_preheating_m_btu,MBtu,out.electricity.mech_vent_preheat.energy_consumption.kwh,out.electricity.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Electricity: Mech Vent Preheating,kWh,out.electricity.mech_vent_preheat.energy_consumption,out.electricity.mech_vent_preheat.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_plug_loads_m_btu,MBtu,out.electricity.plug_loads.energy_consumption.kwh,out.electricity.plug_loads.energy_consumption,kwh,293.0710702,End Use: Electricity: Plug Loads,kWh,out.electricity.plug_loads.energy_consumption,out.electricity.plug_loads.energy_consumption,kWh,1,"Excludes independently reported plug loads (e.g., well pump)" +Output,report_simulation_output.end_use_electricity_pool_heater_m_btu,MBtu,out.electricity.pool_heater.energy_consumption.kwh,out.electricity.pool_heater.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Heater,kWh,out.electricity.pool_heater.energy_consumption,out.electricity.pool_heater.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_pool_pump_m_btu,MBtu,out.electricity.pool_pump.energy_consumption.kwh,out.electricity.pool_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Pool Pump,kWh,out.electricity.pool_pump.energy_consumption,out.electricity.pool_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_pv_m_btu,MBtu,out.electricity.pv.energy_consumption.kwh,out.electricity.pv.energy_consumption,kwh,293.0710702,End Use: Electricity: PV,kWh,out.electricity.pv.energy_consumption,out.electricity.pv.energy_consumption,kWh,1,Negative value for any power produced +Output,report_simulation_output.end_use_electricity_range_oven_m_btu,MBtu,out.electricity.range_oven.energy_consumption.kwh,out.electricity.range_oven.energy_consumption,kwh,293.0710702,End Use: Electricity: Range/Oven,kWh,out.electricity.range_oven.energy_consumption,out.electricity.range_oven.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_refrigerator_m_btu,MBtu,out.electricity.refrigerator.energy_consumption.kwh,out.electricity.refrigerator.energy_consumption,kwh,293.0710702,End Use: Electricity: Refrigerator,kWh,out.electricity.refrigerator.energy_consumption,out.electricity.refrigerator.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_television_m_btu,MBtu,out.electricity.television.energy_consumption.kwh,out.electricity.television.energy_consumption,kwh,293.0710702,End Use: Electricity: Television,kWh,out.electricity.television.energy_consumption,out.electricity.television.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_well_pump_m_btu,MBtu,out.electricity.well_pump.energy_consumption.kwh,out.electricity.well_pump.energy_consumption,kwh,293.0710702,End Use: Electricity: Well Pump,kWh,out.electricity.well_pump.energy_consumption,out.electricity.well_pump.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_electricity_whole_house_fan_m_btu,MBtu,out.electricity.whole_house_fan.energy_consumption.kwh,out.electricity.whole_house_fan.energy_consumption,kwh,293.0710702,End Use: Electricity: Whole House Fan,kWh,out.electricity.whole_house_fan.energy_consumption,out.electricity.whole_house_fan.energy_consumption,kWh,1, +Output,report_simulation_output.end_use_fuel_oil_clothes_dryer_m_btu,MBtu,out.fuel_oil.clothes_dryer.energy_consumption.kwh,out.fuel_oil.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Clothes Dryer,kBtu,out.fuel_oil.clothes_dryer.energy_consumption,out.fuel_oil.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_fireplace_m_btu,MBtu,out.fuel_oil.fireplace.energy_consumption.kwh,out.fuel_oil.fireplace.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Fireplace,kBtu,out.fuel_oil.fireplace.energy_consumption,out.fuel_oil.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_generator_m_btu,MBtu,out.fuel_oil.generator.energy_consumption.kwh,out.fuel_oil.generator.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Generator,kBtu,out.fuel_oil.generator.energy_consumption,out.fuel_oil.generator.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_grill_m_btu,MBtu,out.fuel_oil.grill.energy_consumption.kwh,out.fuel_oil.grill.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Grill,kBtu,out.fuel_oil.grill.energy_consumption,out.fuel_oil.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_heating_heat_pump_backup_m_btu,MBtu,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh,out.fuel_oil.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating Heat Pump Backup,kBtu,out.fuel_oil.heating_hp_bkup.energy_consumption,out.fuel_oil.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_heating_m_btu,MBtu,out.fuel_oil.heating.energy_consumption.kwh,out.fuel_oil.heating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Heating,kBtu,out.fuel_oil.heating.energy_consumption,out.fuel_oil.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_fuel_oil_hot_water_m_btu,MBtu,out.fuel_oil.hot_water.energy_consumption.kwh,out.fuel_oil.hot_water.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Hot Water,kBtu,out.fuel_oil.hot_water.energy_consumption,out.fuel_oil.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_lighting_m_btu,MBtu,out.fuel_oil.lighting.energy_consumption.kwh,out.fuel_oil.lighting.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Lighting,kBtu,out.fuel_oil.lighting.energy_consumption,out.fuel_oil.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_mech_vent_preheating_m_btu,MBtu,out.fuel_oil.mech_vent_preheating.energy_consumption.kwh,out.fuel_oil.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Mech Vent Preheating,kBtu,out.fuel_oil.mech_vent_preheating.energy_consumption,out.fuel_oil.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_fuel_oil_range_oven_m_btu,MBtu,out.fuel_oil.range_oven.energy_consumption.kwh,out.fuel_oil.range_oven.energy_consumption,kwh,293.0710702,End Use: Fuel Oil: Range/Oven,kBtu,out.fuel_oil.range_oven.energy_consumption,out.fuel_oil.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_clothes_dryer_m_btu,MBtu,out.natural_gas.clothes_dryer.energy_consumption.kwh,out.natural_gas.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Clothes Dryer,kBtu,out.natural_gas.clothes_dryer.energy_consumption,out.natural_gas.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_fireplace_m_btu,MBtu,out.natural_gas.fireplace.energy_consumption.kwh,out.natural_gas.fireplace.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Fireplace,kBtu,out.natural_gas.fireplace.energy_consumption,out.natural_gas.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_generator_m_btu,MBtu,out.natural_gas.generator.energy_consumption.kwh,out.natural_gas.generator.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Generator,kBtu,out.natural_gas.generator.energy_consumption,out.natural_gas.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,report_simulation_output.end_use_natural_gas_grill_m_btu,MBtu,out.natural_gas.grill.energy_consumption.kwh,out.natural_gas.grill.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Grill,kBtu,out.natural_gas.grill.energy_consumption,out.natural_gas.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_heating_heat_pump_backup_m_btu,MBtu,out.natural_gas.heating_hp_bkup.energy_consumption.kwh,out.natural_gas.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating Heat Pump Backup,kBtu,out.natural_gas.heating_hp_bkup.energy_consumption,out.natural_gas.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_heating_m_btu,MBtu,out.natural_gas.heating.energy_consumption.kwh,out.natural_gas.heating.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Heating,kBtu,out.natural_gas.heating.energy_consumption,out.natural_gas.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_natural_gas_permanent_spa_heater_m_btu,MBtu,out.natural_gas.permanent_spa_heat.energy_consumption.kwh,out.natural_gas.permanent_spa_heat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Permanent Spa Heater,kBtu,out.natural_gas.permanent_spa_heat.energy_consumption,out.natural_gas.permanent_spa_heat.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_hot_water_m_btu,MBtu,out.natural_gas.hot_water.energy_consumption.kwh,out.natural_gas.hot_water.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Hot Water,kBtu,out.natural_gas.hot_water.energy_consumption,out.natural_gas.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_lighting_m_btu,MBtu,out.natural_gas.lighting.energy_consumption.kwh,out.natural_gas.lighting.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Lighting,kBtu,out.natural_gas.lighting.energy_consumption,out.natural_gas.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_mech_vent_preheating_m_btu,MBtu,out.natural_gas.mech_vent_preheat.energy_consumption.kwh,out.natural_gas.mech_vent_preheat.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Mech Vent Preheating,kBtu,out.natural_gas.mech_vent_preheat.energy_consumption,out.natural_gas.mech_vent_preheat.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_pool_heater_m_btu,MBtu,out.natural_gas.pool_heater.energy_consumption.kwh,out.natural_gas.pool_heater.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Pool Heater,kBtu,out.natural_gas.pool_heater.energy_consumption,out.natural_gas.pool_heater.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_natural_gas_range_oven_m_btu,MBtu,out.natural_gas.range_oven.energy_consumption.kwh,out.natural_gas.range_oven.energy_consumption,kwh,293.0710702,End Use: Natural Gas: Range/Oven,kBtu,out.natural_gas.range_oven.energy_consumption,out.natural_gas.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_clothes_dryer_m_btu,MBtu,out.propane.clothes_dryer.energy_consumption.kwh,out.propane.clothes_dryer.energy_consumption,kwh,293.0710702,End Use: Propane: Clothes Dryer,kBtu,out.propane.clothes_dryer.energy_consumption,out.propane.clothes_dryer.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_fireplace_m_btu,MBtu,out.propane.fireplace.energy_consumption.kwh,out.propane.fireplace.energy_consumption,kwh,293.0710702,End Use: Propane: Fireplace,kBtu,out.propane.fireplace.energy_consumption,out.propane.fireplace.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_generator_m_btu,MBtu,out.propane.generator.energy_consumption.kwh,out.propane.generator.energy_consumption,kwh,293.0710702,End Use: Propane: Generator,kBtu,out.propane.generator.energy_consumption,out.propane.generator.energy_consumption,kWh,0.29307107,Positive value for any fuel consumed +Output,report_simulation_output.end_use_propane_grill_m_btu,MBtu,out.propane.grill.energy_consumption.kwh,out.propane.grill.energy_consumption,kwh,293.0710702,End Use: Propane: Grill,kBtu,out.propane.grill.energy_consumption,out.propane.grill.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_heating_heat_pump_backup_m_btu,MBtu,out.propane.heating_hp_bkup.energy_consumption.kwh,out.propane.heating_hp_bkup.energy_consumption,kwh,293.0710702,End Use: Propane: Heating Heat Pump Backup,kBtu,out.propane.heating_hp_bkup.energy_consumption,out.propane.heating_hp_bkup.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_heating_m_btu,MBtu,out.propane.heating.energy_consumption.kwh,out.propane.heating.energy_consumption,kwh,293.0710702,End Use: Propane: Heating,kBtu,out.propane.heating.energy_consumption,out.propane.heating.energy_consumption,kWh,0.29307107,Excludes heat pump backup +Output,report_simulation_output.end_use_propane_hot_water_m_btu,MBtu,out.propane.hot_water.energy_consumption.kwh,out.propane.hot_water.energy_consumption,kwh,293.0710702,End Use: Propane: Hot Water,kBtu,out.propane.hot_water.energy_consumption,out.propane.hot_water.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_lighting_m_btu,MBtu,out.propane.lighting.energy_consumption.kwh,out.propane.lighting.energy_consumption,kwh,293.0710702,End Use: Propane: Lighting,kBtu,out.propane.lighting.energy_consumption,out.propane.lighting.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_mech_vent_preheating_m_btu,MBtu,out.propane.mech_vent_preheating.energy_consumption.kwh,out.propane.mech_vent_preheating.energy_consumption,kwh,293.0710702,End Use: Propane: Mech Vent Preheating,kBtu,out.propane.mech_vent_preheating.energy_consumption,out.propane.mech_vent_preheating.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.end_use_propane_range_oven_m_btu,MBtu,out.propane.range_oven.energy_consumption.kwh,out.propane.range_oven.energy_consumption,kwh,293.0710702,End Use: Propane: Range/Oven,kBtu,out.propane.range_oven.energy_consumption,out.propane.range_oven.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.energy_use_net_m_btu,MBtu,out.site_energy.net.energy_consumption.kwh,out.site_energy.net.energy_consumption,kwh,293.0710702,Energy Use: Net,kBtu,out.site_energy.net.energy_consumption,out.site_energy.net.energy_consumption,kWh,0.29307107,Subtracts any power produced by PV or generators. +Output,report_simulation_output.energy_use_total_m_btu,MBtu,out.site_energy.total.energy_consumption.kwh,out.site_energy.total.energy_consumption,kwh,293.0710702,Energy Use: Total,kBtu,out.site_energy.total.energy_consumption,out.site_energy.total.energy_consumption,kWh,0.29307107,Includes any battery charging/discharging +Output,report_simulation_output.fuel_use_electricity_net_m_btu,MBtu,out.electricity.net.energy_consumption.kwh,out.electricity.net.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Net,kWh,out.electricity.net.energy_consumption,out.electricity.net.energy_consumption,kWh,1,Subtracts any power produced by PV or generators. +Output,report_simulation_output.fuel_use_electricity_total_m_btu,MBtu,out.electricity.total.energy_consumption.kwh,out.electricity.total.energy_consumption,kwh,293.0710702,Fuel Use: Electricity: Total,kWh,out.electricity.total.energy_consumption,out.electricity.total.energy_consumption,kWh,1,Includes any battery charging/discharging +Output,report_simulation_output.fuel_use_fuel_oil_total_m_btu,MBtu,out.fuel_oil.total.energy_consumption.kwh,out.fuel_oil.total.energy_consumption,kwh,293.0710702,Fuel Use: Fuel Oil: Total,kBtu,out.fuel_oil.total.energy_consumption,out.fuel_oil.total.energy_consumption,kWh,0.29307107,"Includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel'" +Output,report_simulation_output.fuel_use_natural_gas_total_m_btu,MBtu,out.natural_gas.total.energy_consumption.kwh,out.natural_gas.total.energy_consumption,kwh,293.0710702,Fuel Use: Natural Gas: Total,kBtu,out.natural_gas.total.energy_consumption,out.natural_gas.total.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.fuel_use_propane_total_m_btu,MBtu,out.propane.total.energy_consumption.kwh,out.propane.total.energy_consumption,kwh,293.0710702,Fuel Use: Propane: Total,kBtu,out.propane.total.energy_consumption,out.propane.total.energy_consumption,kWh,0.29307107, +Output,report_simulation_output.hot_water_clothes_washer_gal,gal,out.hot_water.clothes_washer.gal,out.hot_water.clothes_washer.gal,gal,1,Hot Water: Clothes Washer,gal,,,,, +Output,report_simulation_output.hot_water_dishwasher_gal,gal,out.hot_water.dishwasher.gal,out.hot_water.dishwasher.gal,gal,1,Hot Water: Dishwasher,gal,,,,, +Output,report_simulation_output.hot_water_distribution_waste_gal,gal,out.hot_water.distribution_waste.gal,out.hot_water.distribution_waste.gal,gal,1,Hot Water: Distribution Waste,gal,,,,, +Output,report_simulation_output.hot_water_fixtures_gal,gal,out.hot_water.fixtures.gal,out.hot_water.fixtures.gal,gal,1,Hot Water: Fixtures,gal,,,,,Showers and faucets. +Output,report_simulation_output.hvac_capacity_cooling_btu_h,btu_h,out.capacity.cooling.btu_h,out.capacity.cooling.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.hvac_capacity_heat_pump_backup_btu_h,btu_h,out.capacity.heat_pump_backup.btu_h,out.capacity.heat_pump_backup.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.hvac_capacity_heating_btu_h,btu_h,out.capacity.heating.btu_h,out.capacity.heating.btu_h,btu_h,1,,,,,,, +Output,report_simulation_output.load_cooling_delivered_m_btu,MBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kbtu,1000,Load: Cooling: Delivered,kBtu,out.load.cooling.energy_delivered.kbtu,out.load.cooling.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,report_simulation_output.load_heating_delivered_m_btu,MBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kbtu,1000,Load: Heating: Delivered,kBtu,out.load.heating.energy_delivered.kbtu,out.load.heating.energy_delivered.kbtu,kBtu,1,Includes HVAC distribution losses. +Output,report_simulation_output.load_hot_water_delivered_m_btu,MBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kbtu,1000,Load: Hot Water: Delivered,kBtu,out.load.hot_water.energy_delivered.kbtu,out.load.hot_water.energy_delivered.kbtu,kBtu,1,Includes contributions by desuperheaters or solar thermal systems. +Output,report_simulation_output.load_hot_water_solar_thermal_m_btu,MBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kbtu,1000,Load: Hot Water: Solar Thermal,kBtu,out.load.hot_water.energy_solar_thermal.kbtu,out.load.hot_water.energy_solar_thermal.kbtu,kBtu,1,Water heater solar thermal energy. +Output,report_simulation_output.load_hot_water_tank_losses_m_btu,MBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kbtu,1000,Load: Hot Water: Tank Losses,kBtu,out.load.hot_water.energy_tank_losses.kbtu,out.load.hot_water.energy_tank_losses.kbtu,kBtu,1,Water heater tank losses energy. +Output,report_simulation_output.peak_load_cooling_delivered_k_btu_hr,kBtu/hr,out.load.cooling.peak.kbtu_hr,out.load.cooling.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,report_simulation_output.peak_load_heating_delivered_k_btu_hr,kBtu/hr,out.load.heating.peak.kbtu_hr,out.load.heating.peak.kbtu_hr,kbtu_hr,1,,,,,,,Includes HVAC distribution losses. +Output,report_simulation_output.peak_electricity_summer_total_w,W,out.electricity.summer.peak.kw,out.electricity.summer.peak.kw,kw,0.001,,,,,,,Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) +Output,report_simulation_output.peak_electricity_winter_total_w,W,out.electricity.winter.peak.kw,out.electricity.winter.peak.kw,kw,0.001,,,,,,,Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) +Output,report_simulation_output.unmet_hours_cooling_hr,hr,out.unmet_hours.cooling.hour,out.unmet_hours.cooling.hour,hour,1,Unmet Hours: Cooling,hr,,,,,Number of hours where the cooling setpoint is not maintained. +Output,report_simulation_output.unmet_hours_ev_driving_hr,hr,out.unmet_hours.ev_driving.hour,out.unmet_hours.ev_driving.hour,hour,1,,hr,,,,,Number of hours that an EV user cannot drive to due to insufficient charge in battery. +Output,report_simulation_output.unmet_hours_heating_hr,hr,out.unmet_hours.heating.hour,out.unmet_hours.heating.hour,hour,1,Unmet Hours: Heating,hr,,,,,Number of hours where the heating setpoint is not maintained. +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_25.co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Electricity: Total,lb,out.total.lrmer_midcase_25__electricity.co2e_kg,out.total.lrmer_midcase_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_25.co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Fuel Oil: Total,lb,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,out.total.lrmer_midcase_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_25.co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Natural Gas: Total,lb,out.total.lrmer_midcase_25__natural_gas.co2e_kg,out.total.lrmer_midcase_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_25.co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Propane: Total,lb,out.total.lrmer_midcase_25__propane.co2e_kg,out.total.lrmer_midcase_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_25_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_25.co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_25: Total,lb,out.total.lrmer_midcase_25.co2e_kg,out.total.lrmer_midcase_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_mid_case_15.co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Electricity: Total,lb,out.total.lrmer_midcase_15__electricity.co2e_kg,out.total.lrmer_midcase_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_mid_case_15.co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Fuel Oil: Total,lb,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,out.total.lrmer_midcase_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_mid_case_15.co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Natural Gas: Total,lb,out.total.lrmer_midcase_15__natural_gas.co2e_kg,out.total.lrmer_midcase_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_propane_total_lb,lb,out.emissions.propane.lrmer_mid_case_15.co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Propane: Total,lb,out.total.lrmer_midcase_15__propane.co2e_kg,out.total.lrmer_midcase_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb,lb,out.emissions.all_fuels.lrmer_mid_case_15.co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_MidCase_15: Total,lb,out.total.lrmer_midcase_15.co2e_kg,out.total.lrmer_midcase_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Electricity: Total,lb,out.total.LRMER_HighRECost_25__electricity.co2e_kg,out.total.LRMER_HighRECost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Fuel Oil: Total,lb,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Natural Gas: Total,lb,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_25.co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Propane: Total,lb,out.total.LRMER_HighRECost_25__propane.co2e_kg,out.total.LRMER_HighRECost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_25: Total,lb,out.total.LRMER_HighRECost_25.co2e_kg,out.total.LRMER_HighRECost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Electricity: Total,lb,out.total.lrmer_highrecost_15__electricity.co2e_kg,out.total.lrmer_highrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Fuel Oil: Total,lb,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Natural Gas: Total,lb,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,out.total.lrmer_highrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_15.co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Propane: Total,lb,out.total.lrmer_highrecost_15__propane.co2e_kg,out.total.lrmer_highrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECost_15: Total,lb,out.total.lrmer_highrecost_15.co2e_kg,out.total.lrmer_highrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Electricity: Total,lb,out.total.lrmer_lowrecost_25__electricity.co2e_kg,out.total.lrmer_lowrecost_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Natural Gas: Total,lb,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_25.co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Propane: Total,lb,out.total.lrmer_lowrecost_25__propane.co2e_kg,out.total.lrmer_lowrecost_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_25: Total,lb,out.total.lrmer_lowrecost_25.co2e_kg,out.total.lrmer_lowrecost_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Electricity: Total,lb,out.total.lrmer_lowrecost_15__electricity.co2e_kg,out.total.lrmer_lowrecost_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Natural Gas: Total,lb,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_15.co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Propane: Total,lb,out.total.lrmer_lowrecost_15__propane.co2e_kg,out.total.lrmer_lowrecost_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECost_15: Total,lb,out.total.lrmer_lowrecost_15.co2e_kg,out.total.lrmer_lowrecost_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_25: Total,lb,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,out.total.lrmer_lowrecosthighngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Electricity: Total,lb,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Propane: Total,lb,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_low_re_cost_high_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_LowRECostHighNGPrice_15: Total,lb,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,out.total.lrmer_lowrecosthighngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_25_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_25: Total,lb,out.total.lrmer_highrecostlowngprice_25.co2e_kg,out.total.lrmer_highrecostlowngprice_25.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_electricity_total_lb,lb,out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Electricity: Total,lb,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_fuel_oil_total_lb,lb,out.emissions.fuel_oil.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Fuel Oil: Total,lb,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_natural_gas_total_lb,lb,out.emissions.natural_gas.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Natural Gas: Total,lb,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_propane_total_lb,lb,out.emissions.propane.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Propane: Total,lb,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_lrmer_high_re_cost_low_ng_price_15_total_lb,lb,out.emissions.all_fuels.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg,kg,0.45359237,Emissions: CO2e: LRMER_HighRECostLowNGPrice_15: Total,lb,out.total.lrmer_highrecostlowngprice_15.co2e_kg,out.total.lrmer_highrecostlowngprice_15.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_avg.co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Electricity: Total,lb,out.total.aer_highrecost_avg__electricity.co2e_kg,out.total.aer_highrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Fuel Oil: Total,lb,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,out.total.aer_highrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Natural Gas: Total,lb,out.total.aer_highrecost_avg__natural_gas.co2e_kg,out.total.aer_highrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_avg.co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Propane: Total,lb,out.total.aer_highrecost_avg__propane.co2e_kg,out.total.aer_highrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECost_Avg: Total,lb,out.total.aer_highrecost_avg.co2e_kg,out.total.aer_highrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Electricity: Total,lb,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Propane: Total,lb,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_high_re_cost_low_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_HighRECostLowNGPrice_Avg: Total,lb,out.total.aer_highrecostlowngprice_avg.co2e_kg,out.total.aer_highrecostlowngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_avg.co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Electricity: Total,lb,out.total.aer_lowrecost_avg__electricity.co2e_kg,out.total.aer_lowrecost_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Natural Gas: Total,lb,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,out.total.aer_lowrecost_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_avg.co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Propane: Total,lb,out.total.aer_lowrecost_avg__propane.co2e_kg,out.total.aer_lowrecost_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECost_Avg: Total,lb,out.total.aer_lowrecost_avg.co2e_kg,out.total.aer_lowrecost_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_electricity_total_lb,lb,out.emissions.electricity.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Electricity: Total,lb,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Fuel Oil: Total,lb,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Natural Gas: Total,lb,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_propane_total_lb,lb,out.emissions.propane.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Propane: Total,lb,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_low_re_cost_high_ng_price_avg_total_lb,lb,out.emissions.all_fuels.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_LowRECostHighNGPrice_Avg: Total,lb,out.total.aer_lowrecosthighngprice_avg.co2e_kg,out.total.aer_lowrecosthighngprice_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_electricity_total_lb,lb,out.emissions.electricity.aer_mid_case_avg.co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Electricity: Total,lb,out.total.aer_midcase_avg__electricity.co2e_kg,out.total.aer_midcase_avg__electricity.co2e_kg,kg,0.45359237,"Scenario total emissions for Electricity only, includes any battery charging/discharging" +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_fuel_oil_total_lb,lb,out.emissions.fuel_oil.aer_mid_case_avg.co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Fuel Oil: Total,lb,out.total.aer_midcase_avg__fuel_oil.co2e_kg,out.total.aer_midcase_avg__fuel_oil.co2e_kg,kg,0.45359237,Scenario emissions for Fuel Oil only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_natural_gas_total_lb,lb,out.emissions.natural_gas.aer_mid_case_avg.co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Natural Gas: Total,lb,out.total.aer_midcase_avg__natural_gas.co2e_kg,out.total.aer_midcase_avg__natural_gas.co2e_kg,kg,0.45359237,Scenario emissions for Natural Gas only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_propane_total_lb,lb,out.emissions.propane.aer_mid_case_avg.co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Propane: Total,lb,out.total.aer_midcase_avg__propane.co2e_kg,out.total.aer_midcase_avg__propane.co2e_kg,kg,0.45359237,Scenario emissions for Propane only +Output,report_simulation_output.emissions_co_2_e_aer_mid_case_avg_total_lb,lb,out.emissions.all_fuels.aer_mid_case_avg.co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg,kg,0.45359237,Emissions: CO2e: AER_MidCase_Avg: Total,lb,out.total.aer_midcase_avg.co2e_kg,out.total.aer_midcase_avg.co2e_kg,kg,0.45359237,"Scenario total emissions, includes any battery charging/discharging" +Output,report_utility_bills.utility_rates_fixed_variable_electricity_total_usd,$,out.bills.electricity.usd,out.bills.electricity.usd,usd,1,,,,,,,Scenario annual total charges for electricity. +Output,report_utility_bills.utility_rates_fixed_variable_fuel_oil_total_usd,$,out.bills.fuel_oil.usd,out.bills.fuel_oil.usd,usd,1,,,,,,,Scenario annual total charges for fuel oil. +Output,report_utility_bills.utility_rates_fixed_variable_natural_gas_total_usd,$,out.bills.natural_gas.usd,out.bills.natural_gas.usd,usd,1,,,,,,,Scenario annual total charges for natural gas. +Output,report_utility_bills.utility_rates_fixed_variable_propane_total_usd,$,out.bills.propane.usd,out.bills.propane.usd,usd,1,,,,,,,Scenario annual total charges for propane. +Output,report_utility_bills.utility_rates_fixed_variable_total_usd,$,out.bills.all_fuels.usd,out.bills.all_fuels.usd,usd,1,,,,,,,Scenario annual total charges. +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_load_w,W,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w,w,1,,,,,,,Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_total_capacity_a,amp,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240" +Output,report_simulation_output.electric_panel_load_2023_existing_dwelling_load_based_headroom_capacity_a,amp,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a,amp,1,,,,,,,"Electric panel total headroom capacity, = in.electric_panel_service_max_current_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a" +Output,report_simulation_output.electric_panel_load_clothes_dryer_w,W,out.panel.load.clothes_dryer.w,out.panel.load.clothes_dryer.w,w,1,,,,,,,"Electric load of clothes dryer, for electric only" +Output,report_simulation_output.electric_panel_load_cooling_w,W,out.panel.load.cooling.w,out.panel.load.cooling.w,w,1,,,,,,,"Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both" +Output,report_simulation_output.electric_panel_load_dishwasher_w,W,out.panel.load.dishwasher.w,out.panel.load.dishwasher.w,w,1,,,,,,,Electric load of dishwasher +Output,report_simulation_output.electric_panel_load_electric_vehicle_charging_w,W,out.panel.load.ev_charging.w,out.panel.load.ev_charging.w,w,1,,,,,,,Electric load of electric vehicle charging equipment +Output,report_simulation_output.electric_panel_load_heating_w,W,out.panel.load.heating.w,out.panel.load.heating.w,w,1,,,,,,,"Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both" +Output,report_simulation_output.electric_panel_load_hot_water_w,W,out.panel.load.hot_water.w,out.panel.load.hot_water.w,w,1,,,,,,,"Electric load of water heater, for electric only" +Output,report_simulation_output.electric_panel_load_mech_vent_w,W,out.panel.load.mech_vent.w,out.panel.load.mech_vent.w,w,1,,,,,,,Electric load of mechanical ventilation +Output,report_simulation_output.electric_panel_load_other_w,W,out.panel.load.other.w,out.panel.load.other.w,w,1,,,,,,,"Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal." +Output,report_simulation_output.electric_panel_load_permanent_spa_heater_w,W,out.panel.load.permanent_spa_heat.w,out.panel.load.permanent_spa_heat.w,w,1,,,,,,,"Electric load of permanent spa heater, for electric only" +Output,report_simulation_output.electric_panel_load_permanent_spa_pump_w,W,out.panel.load.permanent_spa_pump.w,out.panel.load.permanent_spa_pump.w,w,1,,,,,,,Electric load of permanent spa pump +Output,report_simulation_output.electric_panel_load_pool_heater_w,W,out.panel.load.pool_heater.w,out.panel.load.pool_heater.w,w,1,,,,,,,"Electric load of pool heater, for electric only" +Output,report_simulation_output.electric_panel_load_pool_pump_w,W,out.panel.load.pool_pump.w,out.panel.load.pool_pump.w,w,1,,,,,,,Electric load of pool pump +Output,report_simulation_output.electric_panel_load_range_oven_w,W,out.panel.load.range_oven.w,out.panel.load.range_oven.w,w,1,,,,,,,"Electric load of range oven, for electric only" +Output,report_simulation_output.electric_panel_load_well_pump_w,W,out.panel.load.well_pump.w,out.panel.load.well_pump.w,w,1,,,,,,,Electric load of well pump +Input,report_simulation_output.electric_panel_breaker_spaces_total_count,count,in.electric_panel_breaker_space_total_count,in.electric_panel_breaker_space_total_count,count,1,,,,,,,Total breaker spaces on electric panel +Output,report_simulation_output.electric_panel_breaker_spaces_occupied_count,count,out.panel.breaker_space.occupied.count,out.panel.breaker_space.occupied.count,count,1,,,,,,,Total occupied breaker spaces on electric panel +Output,report_simulation_output.electric_panel_breaker_spaces_headroom_count,count,out.panel.breaker_space.headroom.count,out.panel.breaker_space.headroom.count,count,1,,,,,,,"Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count" +Output,report_simulation_output.electric_panel_breaker_spaces_clothes_dryer_count,count,out.panel.breaker_space.clothes_dryer.count,out.panel.breaker_space.clothes_dryer.count,count,1,,,,,,,Breaker spaces occupied by clothes dryer +Output,report_simulation_output.electric_panel_breaker_spaces_cooling_count,count,out.panel.breaker_space.cooling.count,out.panel.breaker_space.cooling.count,count,1,,,,,,,Breaker spaces occupied by space cooling +Output,report_simulation_output.electric_panel_breaker_spaces_dishwasher_count,count,out.panel.breaker_space.dishwasher.count,out.panel.breaker_space.dishwasher.count,count,1,,,,,,,Breaker spaces occupied by dishwasher +Output,report_simulation_output.electric_panel_breaker_spaces_electric_vehicle_charging_count,count,out.panel.breaker_space.ev_charging.count,out.panel.breaker_space.ev_charging.count,count,1,,,,,,,Breaker spaces occupied by electric vehicle charging equipment +Output,report_simulation_output.electric_panel_breaker_spaces_heating_count,count,out.panel.breaker_space.heating.count,out.panel.breaker_space.heating.count,count,1,,,,,,,Breaker spaces occupied by space heating +Output,report_simulation_output.electric_panel_breaker_spaces_hot_water_count,count,out.panel.breaker_space.hot_water.count,out.panel.breaker_space.hot_water.count,count,1,,,,,,,Breaker spaces occupied by water heater +Output,report_simulation_output.electric_panel_breaker_spaces_mech_vent_count,count,out.panel.breaker_space.mech_vent.count,out.panel.breaker_space.mech_vent.count,count,1,,,,,,,Breaker spaces occupied by mechanical ventilation +Output,report_simulation_output.electric_panel_breaker_spaces_other_count,count,out.panel.breaker_space.other.count,out.panel.breaker_space.other.count,count,1,,,,,,,Breaker spaces occupied by other loads +Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_heater_count,count,out.panel.breaker_space.permanent_spa_heat.count,out.panel.breaker_space.permanent_spa_heat.count,count,1,,,,,,,Breaker spaces occupied by permanent spa heater +Output,report_simulation_output.electric_panel_breaker_spaces_permanent_spa_pump_count,count,out.panel.breaker_space.permanent_spa_pump.count,out.panel.breaker_space.permanent_spa_pump.count,count,1,,,,,,,Breaker spaces occupied by permanent spa pump +Output,report_simulation_output.electric_panel_breaker_spaces_pool_heater_count,count,out.panel.breaker_space.pool_heater.count,out.panel.breaker_space.pool_heater.count,count,1,,,,,,,Breaker spaces occupied by pool heater +Output,report_simulation_output.electric_panel_breaker_spaces_pool_pump_count,count,out.panel.breaker_space.pool_pump.count,out.panel.breaker_space.pool_pump.count,count,1,,,,,,,Breaker spaces occupied by pool pump +Output,report_simulation_output.electric_panel_breaker_spaces_range_oven_count,count,out.panel.breaker_space.range_oven.count,out.panel.breaker_space.range_oven.count,count,1,,,,,,,Breaker spaces occupied by range oven +Output,report_simulation_output.electric_panel_breaker_spaces_well_pump_count,count,out.panel.breaker_space.well_pump.count,out.panel.breaker_space.well_pump.count,count,1,,,,,,,Breaker spaces occupied by well pump +Output,report_simulation_output.component_load_cooling_ceilings_m_btu,MBtu,out.component_load.cooling.ceilings.kwh,out.component_load.cooling.ceilings.kwh,kwh,293.0710702,Component Load: Cooling: Ceilings,kBtu,out.component_load.cooling.ceilings,out.component_load.cooling.ceilings,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_doors_m_btu,MBtu,out.component_load.cooling.doors.kwh,out.component_load.cooling.doors.kwh,kwh,293.0710702,Component Load: Cooling: Doors,kBtu,out.component_load.cooling.doors,out.component_load.cooling.doors,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_ducts_m_btu,MBtu,out.component_load.cooling.ducts.kwh,out.component_load.cooling.ducts.kwh,kwh,293.0710702,Component Load: Cooling: Ducts,kBtu,out.component_load.cooling.ducts,out.component_load.cooling.ducts,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_floors_m_btu,MBtu,out.component_load.cooling.floors.kwh,out.component_load.cooling.floors.kwh,kwh,293.0710702,Component Load: Cooling: Floors,kBtu,out.component_load.cooling.floors,out.component_load.cooling.floors,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_foundation_walls_m_btu,MBtu,out.component_load.cooling.foundation_walls.kwh,out.component_load.cooling.foundation_walls.kwh,kwh,293.0710702,Component Load: Cooling: Foundation Walls,kBtu,out.component_load.cooling.foundation_walls,out.component_load.cooling.foundation_walls,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_infiltration_m_btu,MBtu,out.component_load.cooling.infiltration.kwh,out.component_load.cooling.infiltration.kwh,kwh,293.0710702,Component Load: Cooling: Infiltration,kBtu,out.component_load.cooling.infiltration,out.component_load.cooling.infiltration,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_internal_gains_m_btu,MBtu,out.component_load.cooling.internal_gains.kwh,out.component_load.cooling.internal_gains.kwh,kwh,293.0710702,Component Load: Cooling: Internal Gains,kBtu,out.component_load.cooling.internal_gains,out.component_load.cooling.internal_gains,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_internal_mass_m_btu,MBtu,out.component_load.cooling.internal_mass.kwh,out.component_load.cooling.internal_mass.kwh,kwh,293.0710702,Component Load: Cooling: Internal Mass,kBtu,out.component_load.cooling.internal_mass,out.component_load.cooling.internal_mass,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_lighting_m_btu,MBtu,out.component_load.cooling.lighting.kwh,out.component_load.cooling.lighting.kwh,kwh,293.0710702,Component Load: Cooling: Lighting,kBtu,out.component_load.cooling.lighting,out.component_load.cooling.lighting,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_mechanical_ventilation_m_btu,MBtu,out.component_load.cooling.mechanical_ventilation.kwh,out.component_load.cooling.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Mechanical Ventilation,kBtu,out.component_load.cooling.mechanical_ventilation,out.component_load.cooling.mechanical_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_natural_ventilation_m_btu,MBtu,out.component_load.cooling.natural_ventilation.kwh,out.component_load.cooling.natural_ventilation.kwh,kwh,293.0710702,Component Load: Cooling: Natural Ventilation,kBtu,out.component_load.cooling.natural_ventilation,out.component_load.cooling.natural_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_rim_joists_m_btu,MBtu,out.component_load.cooling.rim_joists.kwh,out.component_load.cooling.rim_joists.kwh,kwh,293.0710702,Component Load: Cooling: Rim Joists,kBtu,out.component_load.cooling.rim_joists,out.component_load.cooling.rim_joists,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_roofs_m_btu,MBtu,out.component_load.cooling.roofs.kwh,out.component_load.cooling.roofs.kwh,kwh,293.0710702,Component Load: Cooling: Roofs,kBtu,out.component_load.cooling.roofs,out.component_load.cooling.roofs,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_skylights_conduction_m_btu,MBtu,out.component_load.cooling.skylights_conduction.kwh,out.component_load.cooling.skylights_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Conduction,kBtu,out.component_load.cooling.skylights_conduction,out.component_load.cooling.skylights_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_skylights_solar_m_btu,MBtu,out.component_load.cooling.skylights_solar.kwh,out.component_load.cooling.skylights_solar.kwh,kwh,293.0710702,Component Load: Cooling: Skylights Solar,kBtu,out.component_load.cooling.skylights_solar,out.component_load.cooling.skylights_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_slabs_m_btu,MBtu,out.component_load.cooling.slabs.kwh,out.component_load.cooling.slabs.kwh,kwh,293.0710702,Component Load: Cooling: Slabs,kBtu,out.component_load.cooling.slabs,out.component_load.cooling.slabs,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_walls_m_btu,MBtu,out.component_load.cooling.walls.kwh,out.component_load.cooling.walls.kwh,kwh,293.0710702,Component Load: Cooling: Walls,kBtu,out.component_load.cooling.walls,out.component_load.cooling.walls,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_whole_house_fan_m_btu,MBtu,out.component_load.cooling.whole_house_fan.kwh,out.component_load.cooling.whole_house_fan.kwh,kwh,293.0710702,Component Load: Cooling: Whole House Fan,kBtu,out.component_load.cooling.whole_house_fan,out.component_load.cooling.whole_house_fan,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_windows_conduction_m_btu,MBtu,out.component_load.cooling.windows_conduction.kwh,out.component_load.cooling.windows_conduction.kwh,kwh,293.0710702,Component Load: Cooling: Windows Conduction,kBtu,out.component_load.cooling.windows_conduction,out.component_load.cooling.windows_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_cooling_windows_solar_m_btu,MBtu,out.component_load.cooling.windows_solar.kwh,out.component_load.cooling.windows_solar.kwh,kwh,293.0710702,Component Load: Cooling: Windows Solar,kBtu,out.component_load.cooling.windows_solar,out.component_load.cooling.windows_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_ceilings_m_btu,MBtu,out.component_load.heating.ceilings.kwh,out.component_load.heating.ceilings.kwh,kwh,293.0710702,Component Load: Heating: Ceilings,kBtu,out.component_load.heating.ceilings,out.component_load.heating.ceilings,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_doors_m_btu,MBtu,out.component_load.heating.doors.kwh,out.component_load.heating.doors.kwh,kwh,293.0710702,Component Load: Heating: Doors,kBtu,out.component_load.heating.doors,out.component_load.heating.doors,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_ducts_m_btu,MBtu,out.component_load.heating.ducts.kwh,out.component_load.heating.ducts.kwh,kwh,293.0710702,Component Load: Heating: Ducts,kBtu,out.component_load.heating.ducts,out.component_load.heating.ducts,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_floors_m_btu,MBtu,out.component_load.heating.floors.kwh,out.component_load.heating.floors.kwh,kwh,293.0710702,Component Load: Heating: Floors,kBtu,out.component_load.heating.floors,out.component_load.heating.floors,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_foundation_walls_m_btu,MBtu,out.component_load.heating.foundation_walls.kwh,out.component_load.heating.foundation_walls.kwh,kwh,293.0710702,Component Load: Heating: Foundation Walls,kBtu,out.component_load.heating.foundation_walls,out.component_load.heating.foundation_walls,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_infiltration_m_btu,MBtu,out.component_load.heating.infiltration.kwh,out.component_load.heating.infiltration.kwh,kwh,293.0710702,Component Load: Heating: Infiltration,kBtu,out.component_load.heating.infiltration,out.component_load.heating.infiltration,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_internal_gains_m_btu,MBtu,out.component_load.heating.internal_gains.kwh,out.component_load.heating.internal_gains.kwh,kwh,293.0710702,Component Load: Heating: Internal Gains,kBtu,out.component_load.heating.internal_gains,out.component_load.heating.internal_gains,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_internal_mass_m_btu,MBtu,out.component_load.heating.internal_mass.kwh,out.component_load.heating.internal_mass.kwh,kwh,293.0710702,Component Load: Heating: Internal Mass,kBtu,out.component_load.heating.internal_mass,out.component_load.heating.internal_mass,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_lighting_m_btu,MBtu,out.component_load.heating.lighting.kwh,out.component_load.heating.lighting.kwh,kwh,293.0710702,Component Load: Heating: Lighting,kBtu,out.component_load.heating.lighting,out.component_load.heating.lighting,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_mechanical_ventilation_m_btu,MBtu,out.component_load.heating.mechanical_ventilation.kwh,out.component_load.heating.mechanical_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Mechanical Ventilation,kBtu,out.component_load.heating.mechanical_ventilation,out.component_load.heating.mechanical_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_natural_ventilation_m_btu,MBtu,out.component_load.heating.natural_ventilation.kwh,out.component_load.heating.natural_ventilation.kwh,kwh,293.0710702,Component Load: Heating: Natural Ventilation,kBtu,out.component_load.heating.natural_ventilation,out.component_load.heating.natural_ventilation,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_rim_joists_m_btu,MBtu,out.component_load.heating.rim_joists.kwh,out.component_load.heating.rim_joists.kwh,kwh,293.0710702,Component Load: Heating: Rim Joists,kBtu,out.component_load.heating.rim_joists,out.component_load.heating.rim_joists,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_roofs_m_btu,MBtu,out.component_load.heating.roofs.kwh,out.component_load.heating.roofs.kwh,kwh,293.0710702,Component Load: Heating: Roofs,kBtu,out.component_load.heating.roofs,out.component_load.heating.roofs,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_skylights_conduction_m_btu,MBtu,out.component_load.heating.skylights_conduction.kwh,out.component_load.heating.skylights_conduction.kwh,kwh,293.0710702,Component Load: Heating: Skylights Conduction,kBtu,out.component_load.heating.skylights_conduction,out.component_load.heating.skylights_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_skylights_solar_m_btu,MBtu,out.component_load.heating.skylights_solar.kwh,out.component_load.heating.skylights_solar.kwh,kwh,293.0710702,Component Load: Heating: Skylights Solar,kBtu,out.component_load.heating.skylights_solar,out.component_load.heating.skylights_solar,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_slabs_m_btu,MBtu,out.component_load.heating.slabs.kwh,out.component_load.heating.slabs.kwh,kwh,293.0710702,Component Load: Heating: Slabs,kBtu,out.component_load.heating.slabs,out.component_load.heating.slabs,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_walls_m_btu,MBtu,out.component_load.heating.walls.kwh,out.component_load.heating.walls.kwh,kwh,293.0710702,Component Load: Heating: Walls,kBtu,out.component_load.heating.walls,out.component_load.heating.walls,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_whole_house_fan_m_btu,MBtu,out.component_load.heating.whole_house_fan.kwh,out.component_load.heating.whole_house_fan.kwh,kwh,293.0710702,Component Load: Heating: Whole House Fan,kBtu,out.component_load.heating.whole_house_fan,out.component_load.heating.whole_house_fan,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_windows_conduction_m_btu,MBtu,out.component_load.heating.windows_conduction.kwh,out.component_load.heating.windows_conduction.kwh,kwh,293.0710702,Component Load: Heating: Windows Conduction,kBtu,out.component_load.heating.windows_conduction,out.component_load.heating.windows_conduction,kWh,0.29307107, +Output,report_simulation_output.component_load_heating_windows_solar_m_btu,MBtu,out.component_load.heating.windows_solar.kwh,out.component_load.heating.windows_solar.kwh,kwh,293.0710702,Component Load: Heating: Windows Solar,kBtu,out.component_load.heating.windows_solar,out.component_load.heating.windows_solar,kWh,0.29307107, +Calculated,,,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w.savings,w,,,,,,,,Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,,,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a.savings,amp,,,,,,,,Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code +Calculated,,,out.panel.breaker_space.occupied.count.savings,out.panel.breaker_space.occupied.count.savings,count,,,,,,,,Number of breaker spaces reduced from an energy measure +Calculated,,,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,out.panel.constraint.capacity.2023_nec_existing_dwelling_load_based,bool,,,,,,,,"Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0" +Calculated,,,out.panel.constraint.breaker_space,out.panel.constraint.breaker_space,bool,,,,,,,,"Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0" +Calculated,,,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,out.panel.constraint.overall.2023_nec_existing_dwelling_load_based,categorical,,,,,,,,"Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" +Calculated,,,out.energy_burden.percentage,out.energy_burden.percentage,percentage,,,,,,,,Percentage of income spent on energy +Calculated,,,,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity,out.electricity.battery.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity,out.electricity.ceiling_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity,out.electricity.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity,out.electricity.clothes_washer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity,out.electricity.cooling_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity,out.electricity.cooling.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity,out.electricity.dehumidifier.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity,out.electricity.dishwasher.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity,out.electricity.ev_charging.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity,out.electricity.freezer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity,out.electricity.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity,out.electricity.heating_fans_pumps.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity,out.electricity.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity,out.electricity.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity,out.electricity.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity,out.electricity.permanent_spa_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity,out.electricity.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity,out.electricity.hot_water_recirc_p.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity,out.electricity.hot_water_solar_th.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity,out.electricity.lighting_exterior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity,out.electricity.lighting_garage.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity,out.electricity.lighting_interior.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity,out.electricity.mech_vent.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity,out.electricity.mech_vent_precool.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity,out.electricity.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity,out.electricity.plug_loads.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity,out.electricity.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity,out.electricity.pool_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity,out.electricity.pv.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity,out.electricity.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity,out.electricity.refrigerator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.television.energy_consumption_intensity,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity,out.electricity.television.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity,out.electricity.well_pump.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity,out.electricity.whole_house_fan.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity,out.fuel_oil.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity,out.fuel_oil.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity,out.fuel_oil.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity,out.fuel_oil.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity,out.fuel_oil.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity,out.fuel_oil.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity,out.fuel_oil.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity,out.fuel_oil.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity,out.natural_gas.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity,out.natural_gas.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity,out.natural_gas.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity,out.natural_gas.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,out.natural_gas.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity,out.natural_gas.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,out.natural_gas.permanent_spa_heat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity,out.natural_gas.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity,out.natural_gas.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,out.natural_gas.mech_vent_preheat.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity,out.natural_gas.pool_heater.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity,out.natural_gas.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity,out.propane.clothes_dryer.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity,out.propane.fireplace.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.generator.energy_consumption_intensity,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity,out.propane.generator.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.grill.energy_consumption_intensity,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity,out.propane.grill.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity,out.propane.heating_hp_bkup.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.heating.energy_consumption_intensity,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity,out.propane.heating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity,out.propane.hot_water.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity,out.propane.lighting.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity,out.propane.mech_vent_preheating.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity,out.propane.range_oven.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity,out.site_energy.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity,out.site_energy.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.net.energy_consumption_intensity,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity,out.electricity.net.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.electricity.total.energy_consumption_intensity,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity,out.electricity.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity,out.fuel_oil.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity,out.natural_gas.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,,out.propane.total.energy_consumption_intensity,kwh/sqft,,,,out.propane.total.energy_consumption_intensity,out.propane.total.energy_consumption_intensity,kwh/sqft,,Calculated from annual energy consumption by dividing by conditioned floor area +Calculated,,,out.electricity.battery.energy_consumption.kwh.savings,out.electricity.battery.energy_consumption.savings,kwh,,,,out.electricity.battery.energy_consumption.savings,out.electricity.battery.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.ceiling_fan.energy_consumption.kwh.savings,out.electricity.ceiling_fan.energy_consumption.savings,kwh,,,,out.electricity.ceiling_fan.energy_consumption.savings,out.electricity.ceiling_fan.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.clothes_dryer.energy_consumption.kwh.savings,out.electricity.clothes_dryer.energy_consumption.savings,kwh,,,,out.electricity.clothes_dryer.energy_consumption.savings,out.electricity.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.clothes_washer.energy_consumption.kwh.savings,out.electricity.clothes_washer.energy_consumption.savings,kwh,,,,out.electricity.clothes_washer.energy_consumption.savings,out.electricity.clothes_washer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.cooling_fans_pumps.energy_consumption.kwh.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.cooling_fans_pumps.energy_consumption.savings,out.electricity.cooling_fans_pumps.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.cooling.energy_consumption.kwh.savings,out.electricity.cooling.energy_consumption.savings,kwh,,,,out.electricity.cooling.energy_consumption.savings,out.electricity.cooling.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.dehumidifier.energy_consumption.kwh.savings,out.electricity.dehumidifier.energy_consumption.savings,kwh,,,,out.electricity.dehumidifier.energy_consumption.savings,out.electricity.dehumidifier.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.dishwasher.energy_consumption.kwh.savings,out.electricity.dishwasher.energy_consumption.savings,kwh,,,,out.electricity.dishwasher.energy_consumption.savings,out.electricity.dishwasher.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.ev_charging.energy_consumption.kwh.savings,out.electricity.ev_charging.energy_consumption.savings,kwh,,,,out.electricity.ev_charging.energy_consumption.savings,out.electricity.ev_charging.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.freezer.energy_consumption.kwh.savings,out.electricity.freezer.energy_consumption.savings,kwh,,,,out.electricity.freezer.energy_consumption.savings,out.electricity.freezer.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.generator.energy_consumption.kwh.savings,out.electricity.generator.energy_consumption.savings,kwh,,,,out.electricity.generator.energy_consumption.savings,out.electricity.generator.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_fans_pumps.energy_consumption.kwh.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kwh,,,,out.electricity.heating_fans_pumps.energy_consumption.savings,out.electricity.heating_fans_pumps.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_hp_bkup.energy_consumption.kwh.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup.energy_consumption.savings,out.electricity.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kwh,,,,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,out.electricity.heating_hp_bkup_fa.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.heating.energy_consumption.kwh.savings,out.electricity.heating.energy_consumption.savings,kwh,,,,out.electricity.heating.energy_consumption.savings,out.electricity.heating.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.permanent_spa_heat.energy_consumption.kwh.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_heat.energy_consumption.savings,out.electricity.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.permanent_spa_pump.energy_consumption.kwh.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kwh,,,,out.electricity.permanent_spa_pump.energy_consumption.savings,out.electricity.permanent_spa_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water.energy_consumption.kwh.savings,out.electricity.hot_water.energy_consumption.savings,kwh,,,,out.electricity.hot_water.energy_consumption.savings,out.electricity.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water_recirc_p.energy_consumption.kwh.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kwh,,,,out.electricity.hot_water_recirc_p.energy_consumption.savings,out.electricity.hot_water_recirc_p.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.hot_water_solar_th.energy_consumption.kwh.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kwh,,,,out.electricity.hot_water_solar_th.energy_consumption.savings,out.electricity.hot_water_solar_th.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_exterior.energy_consumption.kwh.savings,out.electricity.lighting_exterior.energy_consumption.savings,kwh,,,,out.electricity.lighting_exterior.energy_consumption.savings,out.electricity.lighting_exterior.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_garage.energy_consumption.kwh.savings,out.electricity.lighting_garage.energy_consumption.savings,kwh,,,,out.electricity.lighting_garage.energy_consumption.savings,out.electricity.lighting_garage.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.lighting_interior.energy_consumption.kwh.savings,out.electricity.lighting_interior.energy_consumption.savings,kwh,,,,out.electricity.lighting_interior.energy_consumption.savings,out.electricity.lighting_interior.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent.energy_consumption.kwh.savings,out.electricity.mech_vent.energy_consumption.savings,kwh,,,,out.electricity.mech_vent.energy_consumption.savings,out.electricity.mech_vent.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent_precool.energy_consumption.kwh.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_precool.energy_consumption.savings,out.electricity.mech_vent_precool.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.mech_vent_preheat.energy_consumption.kwh.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.electricity.mech_vent_preheat.energy_consumption.savings,out.electricity.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.plug_loads.energy_consumption.kwh.savings,out.electricity.plug_loads.energy_consumption.savings,kwh,,,,out.electricity.plug_loads.energy_consumption.savings,out.electricity.plug_loads.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pool_heater.energy_consumption.kwh.savings,out.electricity.pool_heater.energy_consumption.savings,kwh,,,,out.electricity.pool_heater.energy_consumption.savings,out.electricity.pool_heater.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pool_pump.energy_consumption.kwh.savings,out.electricity.pool_pump.energy_consumption.savings,kwh,,,,out.electricity.pool_pump.energy_consumption.savings,out.electricity.pool_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.pv.energy_consumption.kwh.savings,out.electricity.pv.energy_consumption.savings,kwh,,,,out.electricity.pv.energy_consumption.savings,out.electricity.pv.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.range_oven.energy_consumption.kwh.savings,out.electricity.range_oven.energy_consumption.savings,kwh,,,,out.electricity.range_oven.energy_consumption.savings,out.electricity.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.refrigerator.energy_consumption.kwh.savings,out.electricity.refrigerator.energy_consumption.savings,kwh,,,,out.electricity.refrigerator.energy_consumption.savings,out.electricity.refrigerator.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.television.energy_consumption.kwh.savings,out.electricity.television.energy_consumption.savings,kwh,,,,out.electricity.television.energy_consumption.savings,out.electricity.television.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.well_pump.energy_consumption.kwh.savings,out.electricity.well_pump.energy_consumption.savings,kwh,,,,out.electricity.well_pump.energy_consumption.savings,out.electricity.well_pump.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.whole_house_fan.energy_consumption.kwh.savings,out.electricity.whole_house_fan.energy_consumption.savings,kwh,,,,out.electricity.whole_house_fan.energy_consumption.savings,out.electricity.whole_house_fan.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.clothes_dryer.energy_consumption.kwh.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kwh,,,,out.fuel_oil.clothes_dryer.energy_consumption.savings,out.fuel_oil.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.fireplace.energy_consumption.kwh.savings,out.fuel_oil.fireplace.energy_consumption.savings,kwh,,,,out.fuel_oil.fireplace.energy_consumption.savings,out.fuel_oil.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.generator.energy_consumption.kwh.savings,out.fuel_oil.generator.energy_consumption.savings,kwh,,,,out.fuel_oil.generator.energy_consumption.savings,out.fuel_oil.generator.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.grill.energy_consumption.kwh.savings,out.fuel_oil.grill.energy_consumption.savings,kwh,,,,out.fuel_oil.grill.energy_consumption.savings,out.fuel_oil.grill.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,out.fuel_oil.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.heating.energy_consumption.kwh.savings,out.fuel_oil.heating.energy_consumption.savings,kwh,,,,out.fuel_oil.heating.energy_consumption.savings,out.fuel_oil.heating.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.hot_water.energy_consumption.kwh.savings,out.fuel_oil.hot_water.energy_consumption.savings,kwh,,,,out.fuel_oil.hot_water.energy_consumption.savings,out.fuel_oil.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.lighting.energy_consumption.kwh.savings,out.fuel_oil.lighting.energy_consumption.savings,kwh,,,,out.fuel_oil.lighting.energy_consumption.savings,out.fuel_oil.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.mech_vent_preheating.energy_consumption.kwh.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,out.fuel_oil.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.range_oven.energy_consumption.kwh.savings,out.fuel_oil.range_oven.energy_consumption.savings,kwh,,,,out.fuel_oil.range_oven.energy_consumption.savings,out.fuel_oil.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.clothes_dryer.energy_consumption.kwh.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kwh,,,,out.natural_gas.clothes_dryer.energy_consumption.savings,out.natural_gas.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.fireplace.energy_consumption.kwh.savings,out.natural_gas.fireplace.energy_consumption.savings,kwh,,,,out.natural_gas.fireplace.energy_consumption.savings,out.natural_gas.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.generator.energy_consumption.kwh.savings,out.natural_gas.generator.energy_consumption.savings,kwh,,,,out.natural_gas.generator.energy_consumption.savings,out.natural_gas.generator.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.grill.energy_consumption.kwh.savings,out.natural_gas.grill.energy_consumption.savings,kwh,,,,out.natural_gas.grill.energy_consumption.savings,out.natural_gas.grill.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.heating_hp_bkup.energy_consumption.kwh.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.natural_gas.heating_hp_bkup.energy_consumption.savings,out.natural_gas.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.heating.energy_consumption.kwh.savings,out.natural_gas.heating.energy_consumption.savings,kwh,,,,out.natural_gas.heating.energy_consumption.savings,out.natural_gas.heating.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.permanent_spa_heat.energy_consumption.kwh.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kwh,,,,out.natural_gas.permanent_spa_heat.energy_consumption.savings,out.natural_gas.permanent_spa_heat.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.hot_water.energy_consumption.kwh.savings,out.natural_gas.hot_water.energy_consumption.savings,kwh,,,,out.natural_gas.hot_water.energy_consumption.savings,out.natural_gas.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.lighting.energy_consumption.kwh.savings,out.natural_gas.lighting.energy_consumption.savings,kwh,,,,out.natural_gas.lighting.energy_consumption.savings,out.natural_gas.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.mech_vent_preheat.energy_consumption.kwh.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kwh,,,,out.natural_gas.mech_vent_preheat.energy_consumption.savings,out.natural_gas.mech_vent_preheat.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.pool_heater.energy_consumption.kwh.savings,out.natural_gas.pool_heater.energy_consumption.savings,kwh,,,,out.natural_gas.pool_heater.energy_consumption.savings,out.natural_gas.pool_heater.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.range_oven.energy_consumption.kwh.savings,out.natural_gas.range_oven.energy_consumption.savings,kwh,,,,out.natural_gas.range_oven.energy_consumption.savings,out.natural_gas.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.propane.clothes_dryer.energy_consumption.kwh.savings,out.propane.clothes_dryer.energy_consumption.savings,kwh,,,,out.propane.clothes_dryer.energy_consumption.savings,out.propane.clothes_dryer.energy_consumption.savings,kWh,, +Calculated,,,out.propane.fireplace.energy_consumption.kwh.savings,out.propane.fireplace.energy_consumption.savings,kwh,,,,out.propane.fireplace.energy_consumption.savings,out.propane.fireplace.energy_consumption.savings,kWh,, +Calculated,,,out.propane.generator.energy_consumption.kwh.savings,out.propane.generator.energy_consumption.savings,kwh,,,,out.propane.generator.energy_consumption.savings,out.propane.generator.energy_consumption.savings,kWh,, +Calculated,,,out.propane.grill.energy_consumption.kwh.savings,out.propane.grill.energy_consumption.savings,kwh,,,,out.propane.grill.energy_consumption.savings,out.propane.grill.energy_consumption.savings,kWh,, +Calculated,,,out.propane.heating_hp_bkup.energy_consumption.kwh.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kwh,,,,out.propane.heating_hp_bkup.energy_consumption.savings,out.propane.heating_hp_bkup.energy_consumption.savings,kWh,, +Calculated,,,out.propane.heating.energy_consumption.kwh.savings,out.propane.heating.energy_consumption.savings,kwh,,,,out.propane.heating.energy_consumption.savings,out.propane.heating.energy_consumption.savings,kWh,, +Calculated,,,out.propane.hot_water.energy_consumption.kwh.savings,out.propane.hot_water.energy_consumption.savings,kwh,,,,out.propane.hot_water.energy_consumption.savings,out.propane.hot_water.energy_consumption.savings,kWh,, +Calculated,,,out.propane.lighting.energy_consumption.kwh.savings,out.propane.lighting.energy_consumption.savings,kwh,,,,out.propane.lighting.energy_consumption.savings,out.propane.lighting.energy_consumption.savings,kWh,, +Calculated,,,out.propane.mech_vent_preheating.energy_consumption.kwh.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kwh,,,,out.propane.mech_vent_preheating.energy_consumption.savings,out.propane.mech_vent_preheating.energy_consumption.savings,kWh,, +Calculated,,,out.propane.range_oven.energy_consumption.kwh.savings,out.propane.range_oven.energy_consumption.savings,kwh,,,,out.propane.range_oven.energy_consumption.savings,out.propane.range_oven.energy_consumption.savings,kWh,, +Calculated,,,out.site_energy.net.energy_consumption.kwh.savings,out.site_energy.net.energy_consumption.savings,kwh,,,,out.site_energy.net.energy_consumption.savings,out.site_energy.net.energy_consumption.savings,kWh,, +Calculated,,,out.site_energy.total.energy_consumption.kwh.savings,out.site_energy.total.energy_consumption.savings,kwh,,,,out.site_energy.total.energy_consumption.savings,out.site_energy.total.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.net.energy_consumption.kwh.savings,out.electricity.net.energy_consumption.savings,kwh,,,,out.electricity.net.energy_consumption.savings,out.electricity.net.energy_consumption.savings,kWh,, +Calculated,,,out.electricity.total.energy_consumption.kwh.savings,out.electricity.total.energy_consumption.savings,kwh,,,,out.electricity.total.energy_consumption.savings,out.electricity.total.energy_consumption.savings,kWh,, +Calculated,,,out.fuel_oil.total.energy_consumption.kwh.savings,out.fuel_oil.total.energy_consumption.savings,kwh,,,,out.fuel_oil.total.energy_consumption.savings,out.fuel_oil.total.energy_consumption.savings,kWh,, +Calculated,,,out.natural_gas.total.energy_consumption.kwh.savings,out.natural_gas.total.energy_consumption.savings,kwh,,,,out.natural_gas.total.energy_consumption.savings,out.natural_gas.total.energy_consumption.savings,kWh,, +Calculated,,,out.propane.total.energy_consumption.kwh.savings,out.propane.total.energy_consumption.savings,kwh,,,,out.propane.total.energy_consumption.savings,out.propane.total.energy_consumption.savings,kWh,, +Calculated,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kbtu,,,,out.load.cooling.energy_delivered.kbtu.savings,out.load.cooling.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kbtu,,,,out.load.heating.energy_delivered.kbtu.savings,out.load.heating.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kbtu,,,,out.load.hot_water.energy_delivered.kbtu.savings,out.load.hot_water.energy_delivered.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kbtu,,,,out.load.hot_water.energy_solar_thermal.kbtu.savings,out.load.hot_water.energy_solar_thermal.kbtu.savings,kBtu,, +Calculated,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kbtu,,,,out.load.hot_water.energy_tank_losses.kbtu.savings,out.load.hot_water.energy_tank_losses.kbtu.savings,kBtu,, +Calculated,,,out.load.cooling.peak.kbtu_hr.savings,out.load.cooling.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,,,out.load.heating.peak.kbtu_hr.savings,out.load.heating.peak.kbtu_hr.savings,kbtu_hr,,,,,,,, +Calculated,,,out.electricity.summer.peak.kw.savings,out.electricity.summer.peak.kw.savings,kw,,,,,,,, +Calculated,,,out.electricity.winter.peak.kw.savings,out.electricity.winter.peak.kw.savings,kw,,,,,,,, +Calculated,,,out.unmet_hours.cooling.hour.savings,out.unmet_hours.cooling.hour.savings,hour,,,,,,,, +Calculated,,,out.unmet_hours.heating.hour.savings,out.unmet_hours.heating.hour.savings,hour,,,,,,,, +Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_25.co2e_kg,out.electricity.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,out.total.lrmer_midcase_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_25.co2e_kg,out.fuel_oil.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_25.co2e_kg,out.natural_gas.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_25.co2e_kg,out.propane.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25__propane.co2e_kg.savings,out.total.lrmer_midcase_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_25.co2e_kg,out.all_fuels.total.lrmer_mid_case_25.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_25.co2e_kg.savings,out.total.lrmer_midcase_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_mid_case_15.co2e_kg,out.electricity.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,out.total.lrmer_midcase_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_mid_case_15.co2e_kg,out.fuel_oil.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,out.total.lrmer_midcase_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_mid_case_15.co2e_kg,out.natural_gas.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,out.total.lrmer_midcase_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_mid_case_15.co2e_kg,out.propane.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15__propane.co2e_kg.savings,out.total.lrmer_midcase_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_mid_case_15.co2e_kg,out.all_fuels.total.lrmer_mid_case_15.co2e_kg.savings,kg,,,,out.total.lrmer_midcase_15.co2e_kg.savings,out.total.lrmer_midcase_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,out.total.LRMER_HighRECost_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,out.total.LRMER_HighRECost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,out.total.LRMER_HighRECost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_25.co2e_kg,out.propane.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,out.total.LRMER_HighRECost_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_25.co2e_kg.savings,kg,,,,out.total.LRMER_HighRECost_25.co2e_kg.savings,out.total.LRMER_HighRECost_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,out.total.lrmer_highrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_15.co2e_kg,out.propane.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,out.total.lrmer_highrecost_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecost_15.co2e_kg.savings,out.total.lrmer_highrecost_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_25.co2e_kg,out.propane.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,out.total.lrmer_lowrecost_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_25.co2e_kg.savings,out.total.lrmer_lowrecost_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecost_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecost_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecost_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_15.co2e_kg,out.propane.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,out.total.lrmer_lowrecost_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecost_15.co2e_kg.savings,out.total.lrmer_lowrecost_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.electricity.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.propane.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_low_re_cost_high_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_low_re_cost_high_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,out.total.lrmer_lowrecosthighngprice_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_25.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_25.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_25.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.electricity.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.fuel_oil.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.natural_gas.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.propane.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.lrmer_high_re_cost_low_ng_price_15.co2e_kg,out.all_fuels.total.lrmer_high_re_cost_low_ng_price_15.co2e_kg.savings,kg,,,,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,out.total.lrmer_highrecostlowngprice_15.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_avg.co2e_kg,out.electricity.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,out.total.aer_highrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_avg.co2e_kg,out.propane.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg__propane.co2e_kg.savings,out.total.aer_highrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecost_avg.co2e_kg.savings,out.total.aer_highrecost_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.electricity.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.natural_gas.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.propane.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_high_re_cost_low_ng_price_avg.co2e_kg,out.all_fuels.total.aer_high_re_cost_low_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,out.total.aer_highrecostlowngprice_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_avg.co2e_kg,out.electricity.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,out.total.aer_lowrecost_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecost_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecost_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_avg.co2e_kg,out.propane.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,out.total.aer_lowrecost_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecost_avg.co2e_kg.savings,out.total.aer_lowrecost_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.electricity.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.fuel_oil.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.natural_gas.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.propane.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_low_re_cost_high_ng_price_avg.co2e_kg,out.all_fuels.total.aer_low_re_cost_high_ng_price_avg.co2e_kg.savings,kg,,,,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,out.total.aer_lowrecosthighngprice_avg.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.electricity.aer_mid_case_avg.co2e_kg,out.electricity.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__electricity.co2e_kg.savings,out.total.aer_midcase_avg__electricity.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.fuel_oil.aer_mid_case_avg.co2e_kg,out.fuel_oil.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,out.total.aer_midcase_avg__fuel_oil.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.natural_gas.aer_mid_case_avg.co2e_kg,out.natural_gas.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,out.total.aer_midcase_avg__natural_gas.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.propane.aer_mid_case_avg.co2e_kg,out.propane.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg__propane.co2e_kg.savings,out.total.aer_midcase_avg__propane.co2e_kg.savings,kg,, +Calculated,,,out.emissions_reduction.all_fuels.aer_mid_case_avg.co2e_kg,out.all_fuels.total.aer_mid_case_avg.co2e_kg.savings,kg,,,,out.total.aer_midcase_avg.co2e_kg.savings,out.total.aer_midcase_avg.co2e_kg.savings,kg,, +Calculated,,,out.bills.electricity.usd.savings,out.bills.electricity.usd.savings,usd,,,,,,,, +Calculated,,,out.bills.fuel_oil.usd.savings,out.bills.fuel_oil.usd.savings,usd,,,,,,,, +Calculated,,,out.bills.natural_gas.usd.savings,out.bills.natural_gas.usd.savings,usd,,,,,,,, +Calculated,,,out.bills.propane.usd.savings,out.bills.propane.usd.savings,usd,,,,,,,, +Calculated,,,out.bills.all_fuels.usd.savings,out.bills.all_fuels.usd.savings,usd,,,,,,,, +Calculated,,,out.energy_burden.percentage.savings,out.energy_burden.percentage.savings,percentage,,,,,,,, +Calculated,,,,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.battery.energy_consumption_intensity.savings,out.electricity.battery.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ceiling_fan.energy_consumption_intensity.savings,out.electricity.ceiling_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_dryer.energy_consumption_intensity.savings,out.electricity.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.clothes_washer.energy_consumption_intensity.savings,out.electricity.clothes_washer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,out.electricity.cooling_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.cooling.energy_consumption_intensity.savings,out.electricity.cooling.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dehumidifier.energy_consumption_intensity.savings,out.electricity.dehumidifier.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.dishwasher.energy_consumption_intensity.savings,out.electricity.dishwasher.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.ev_charging.energy_consumption_intensity.savings,out.electricity.ev_charging.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.freezer.energy_consumption_intensity.savings,out.electricity.freezer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.generator.energy_consumption_intensity.savings,out.electricity.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,out.electricity.heating_fans_pumps.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.heating.energy_consumption_intensity.savings,out.electricity.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,out.electricity.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,out.electricity.permanent_spa_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water.energy_consumption_intensity.savings,out.electricity.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,out.electricity.hot_water_recirc_p.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,out.electricity.hot_water_solar_th.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_exterior.energy_consumption_intensity.savings,out.electricity.lighting_exterior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_garage.energy_consumption_intensity.savings,out.electricity.lighting_garage.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.lighting_interior.energy_consumption_intensity.savings,out.electricity.lighting_interior.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent.energy_consumption_intensity.savings,out.electricity.mech_vent.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,out.electricity.mech_vent_precool.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,out.electricity.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.plug_loads.energy_consumption_intensity.savings,out.electricity.plug_loads.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_heater.energy_consumption_intensity.savings,out.electricity.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pool_pump.energy_consumption_intensity.savings,out.electricity.pool_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.pv.energy_consumption_intensity.savings,out.electricity.pv.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.range_oven.energy_consumption_intensity.savings,out.electricity.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.refrigerator.energy_consumption_intensity.savings,out.electricity.refrigerator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.television.energy_consumption_intensity.savings,out.electricity.television.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.well_pump.energy_consumption_intensity.savings,out.electricity.well_pump.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.whole_house_fan.energy_consumption_intensity.savings,out.electricity.whole_house_fan.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,out.fuel_oil.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.fireplace.energy_consumption_intensity.savings,out.fuel_oil.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.generator.energy_consumption_intensity.savings,out.fuel_oil.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.grill.energy_consumption_intensity.savings,out.fuel_oil.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,out.fuel_oil.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.heating.energy_consumption_intensity.savings,out.fuel_oil.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.hot_water.energy_consumption_intensity.savings,out.fuel_oil.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.lighting.energy_consumption_intensity.savings,out.fuel_oil.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,out.fuel_oil.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.range_oven.energy_consumption_intensity.savings,out.fuel_oil.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,out.natural_gas.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.fireplace.energy_consumption_intensity.savings,out.natural_gas.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.generator.energy_consumption_intensity.savings,out.natural_gas.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.grill.energy_consumption_intensity.savings,out.natural_gas.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,out.natural_gas.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.heating.energy_consumption_intensity.savings,out.natural_gas.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,out.natural_gas.permanent_spa_heat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.hot_water.energy_consumption_intensity.savings,out.natural_gas.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.lighting.energy_consumption_intensity.savings,out.natural_gas.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,out.natural_gas.mech_vent_preheat.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.pool_heater.energy_consumption_intensity.savings,out.natural_gas.pool_heater.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.range_oven.energy_consumption_intensity.savings,out.natural_gas.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.clothes_dryer.energy_consumption_intensity.savings,out.propane.clothes_dryer.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.fireplace.energy_consumption_intensity.savings,out.propane.fireplace.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.generator.energy_consumption_intensity.savings,out.propane.generator.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.grill.energy_consumption_intensity.savings,out.propane.grill.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,out.propane.heating_hp_bkup.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.heating.energy_consumption_intensity.savings,out.propane.heating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.hot_water.energy_consumption_intensity.savings,out.propane.hot_water.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.lighting.energy_consumption_intensity.savings,out.propane.lighting.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,out.propane.mech_vent_preheating.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.range_oven.energy_consumption_intensity.savings,out.propane.range_oven.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.net.energy_consumption_intensity.savings,out.site_energy.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.site_energy.total.energy_consumption_intensity.savings,out.site_energy.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.net.energy_consumption_intensity.savings,out.electricity.net.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.electricity.total.energy_consumption_intensity.savings,out.electricity.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.fuel_oil.total.energy_consumption_intensity.savings,out.fuel_oil.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.natural_gas.total.energy_consumption_intensity.savings,out.natural_gas.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,,,,out.propane.total.energy_consumption_intensity.savings,out.propane.total.energy_consumption_intensity.savings,kwh/sqft,, +Calculated,,,upgrade.clothes_dryer,,,,,,,,,,Indicates the type of clothes dryer the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.cooking_range,,,,,,,,,,Indicates the type of cooking range the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.cooling_setpoint_has_offset,,,,,,,,,,Indicates the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.cooling_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.cooling_setpoint_offset_period,,,,,,,,,,Indicates the period of the cooling setpoint the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.electric_vehicle_charger,,,,,,,,,,Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.electric_vehicle_efficiency_increase,,,,,,,,,,Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.electric_vehicle_ownership,,,,,,,,,,Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.heating_fuel,,,,,,,,,,Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.heating_setpoint_has_offset,,,,,,,,,,Indicates the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.heating_setpoint_offset_magnitude,,,,,,,,,,Indicates the magnitude of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.heating_setpoint_offset_period,,,,,,,,,,Indicates the period of the heating setpoint offset the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_cooling_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_cooling_partial_space_conditioning,,,,,,,,,,Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_heating_type_and_fuel,,,,,,,,,,Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_secondary_heating_efficiency,,,,,,,,,,Indicates the efficiency of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_secondary_heating_fuel,,,,,,,,,,Indicates the fuel of the HVAC secondary heating the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.infiltration_reduction,,,,,,,,,,Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.insulation_ceiling,,,,,,,,,,Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.misc_hot_tub_spa,,,,,,,,,,Indicates the hot tub or spa the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.misc_pool_heater,,,,,,,,,,Indicates the pool heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.water_heater_efficiency,,,,,,,,,,Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.water_heater_fuel,,,,,,,,,,Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.hvac_detailed_performance_data,,,,,,,,,,Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. +Calculated,,,upgrade.demand_flexibility_electric_vehicle,,,,,,,,,,Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.demand_flexibility_hvac,,,,,,,,,,Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.demand_flexibility_random_shift,,,,,,,,,,Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.duct_leakage_and_insulation,,,,,,,,,,Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.infiltration,,,,,,,,,,Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.insulation_wall,,,,,,,,,,Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. +Calculated,,,upgrade.windows,,,,,,,,,,Only appears when at least one building has this upgrade. +Output,,,,,,,Site Outdoor Air Drybulb Temperature: Environment,C,out.outdoor_air_dryblub_temp.c,out.outdoor_air_dryblub_temp.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Air Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.air_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Attic - Vented,C,out.zone_mean_air_temp.attic_vented.c,out.zone_mean_air_temp.attic_vented.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Attic - Unvented,C,out.zone_mean_air_temp.attic_unvented.c,out.zone_mean_air_temp.attic_unvented.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Basement - Unconditioned,C,out.zone_mean_air_temp.basement_unconditioned.c,out.zone_mean_air_temp.basement_unconditioned.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Basement - Conditioned,C,out.zone_mean_air_temp.basement_conditioned.c,out.zone_mean_air_temp.basement_conditioned.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Central AC Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_airloop_ret_air_zone.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Central AC And Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.central_ac_and_furnace_airloop_ret_air_zone.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Furnace Airloop Ret Air Zone,C,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,out.zone_mean_air_temp.furnace_airloop_ret_air_zone.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Garage,C,out.zone_mean_air_temp.garage.c,out.zone_mean_air_temp.garage.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Ground Source Heat Pump Airloop Ret Air Zone,C,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,out.zone_mean_air_temp.ground_source_heat_pump_airloop_ret_air_zone.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Unvented,C,out.zone_mean_air_temp.crawlspace_unvented.c,out.zone_mean_air_temp.crawlspace_unvented.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Crawlspace - Vented,C,out.zone_mean_air_temp.crawlspace_vented.c,out.zone_mean_air_temp.crawlspace_vented.c,C,1, +Output,,,,,,,Zone Mean Air Temperature: Conditioned Space,C,out.zone_mean_air_temp.conditioned_space.c,out.zone_mean_air_temp.conditioned_space.c,C,1, diff --git a/postprocessing/resstockpostproc/utils.py b/postprocessing/resstockpostproc/utils.py index 9e4e662739..1c4bc898e8 100644 --- a/postprocessing/resstockpostproc/utils.py +++ b/postprocessing/resstockpostproc/utils.py @@ -4,20 +4,7 @@ import polars as pl import polars.selectors as cs -from collections import defaultdict -import re -import pathlib -import logging -import pathlib -import boto3 -import s3fs -import gzip -import tarfile -from io import BytesIO -from fsspec import register_implementation -from fsspec.core import url_to_fs -logger = logging.getLogger(__name__) def remove_all_empty_cols(df: pl.DataFrame): """ @@ -37,37 +24,35 @@ def remove_all_empty_cols(df: pl.DataFrame): cleaned_base = df.drop(all_empty_cols) return cleaned_base -def fix_site_energy_total(df: pl.LazyFrame): + +def fix_site_energy_total(df: pl.LazyFrame, all_cols: list[str]): """ We need to do this because normally site energy total includes coal and wood but we don't want to include those. """ - print("Removing coal and wood from energy totals") - all_cols = df.collect_schema().names() updated_cols = [] - for suffix in ['', '_intensity', 'energy_consumption..kwh', 'energy_savings..kwh']: - if f'out.electricity.total.{suffix}' not in df: + for suffix in ["", "_intensity", ".kwh", ".kwh.savings"]: + if f"out.electricity.total.energy_consumption{suffix}" not in df: continue total_energy_col = pl.lit(0) - for fuel in ['electricity','natural_gas', 'fuel_oil', 'propane']: # exclude other fuel types - if (col := f'out.{fuel}.total.{suffix}') in all_cols: + for fuel in ["electricity", "natural_gas", "fuel_oil", "propane"]: # exclude other fuel types + if (col := f"out.{fuel}.total.energy_consumption{suffix}") in all_cols: total_energy_col += pl.col(col) - updated_cols.append(total_energy_col.alias(f'out.site_energy.total.{suffix}')) - if (pvcol := f'out.electricity.pv.{suffix}'): + updated_cols.append(total_energy_col.alias(f"out.site_energy.total.energy_consumption{suffix}")) + if pvcol := f"out.electricity.pv.energy_consumption{suffix}": net_energy_col = total_energy_col + pl.col(pvcol) - net_electricity_col = pl.col(f'out.electricity.total.{suffix}') + pl.col(pvcol) - updated_cols.append(net_energy_col.alias(f'out.site_energy.net.{suffix}')) - updated_cols.append(net_electricity_col.alias(f'out.electricity.net.{suffix}')) + net_electricity_col = pl.col(f"out.electricity.total.energy_consumption{suffix}") + pl.col(pvcol) + updated_cols.append(net_energy_col.alias(f"out.site_energy.net.energy_consumption{suffix}")) + updated_cols.append(net_electricity_col.alias(f"out.electricity.net.energy_consumption{suffix}")) return df.with_columns(updated_cols) -def fix_all_fuels_emissions(df: pl.LazyFrame): + +def fix_all_fuels_emissions(df: pl.LazyFrame, all_cols: list[str]): """ Recalculate out.all_fuels.total..co2e_kg columns using only the subset of fuel total columns. Basically, exclude wood from the all_fuel emissions. """ - print("Removing coal and wood from emissions totals") - all_cols = df.collect_schema().names() all_fuel_cols = [] - emissions_re = re.compile(r"^out\.emissions\.(electricity|natural_gas|fuel_oil|propane).(\w+)..co2e_kg") + emissions_re = re.compile(r"^out\.(electricity|natural_gas|fuel_oil|propane).total.(\w+).co2e_kg$") scenario2cols = defaultdict(list) for col in all_cols: @@ -75,7 +60,7 @@ def fix_all_fuels_emissions(df: pl.LazyFrame): scenario2cols[match[2]].append(col) for scenario, cols in scenario2cols.items(): - new_col = f'out.emissions.total.{scenario}..co2e_kg' + new_col = f"out.all_fuels.total.{scenario}.co2e_kg" all_fuel_cols.append(pl.sum_horizontal(cols).alias(new_col)) return df.with_columns(all_fuel_cols) @@ -87,168 +72,11 @@ def get_col_maps(): """ resources_path = pathlib.Path(__file__).parent / "resources" col_def_df = pl.read_csv(resources_path / "publication" / "sdr_column_definitions.csv", infer_schema_length=0) - col_map_df = col_def_df.filter( - pl.col("Published Annual Name").is_not_null() - ).select( - pl.col('Column Type').alias('column_type'), - pl.col('Import From Raw').alias('import_from_raw'), - pl.col('Publish In Full').alias('publish_in_full'), - pl.col("Annual Name").alias('column_name'), - pl.col("Published Annual Name").alias('published_name'), - pl.col("ResStock To Published Annual Unit Conversion Factor").alias("conversion_factor") - ) + col_map_df = col_def_df.filter(pl.col("Published Annual Name").is_not_null()).select( + pl.col("Column Type").alias("column_type"), + pl.col("Annual Name").alias("column_name"), + pl.col("Published Annual Name").alias("published_name"), + pl.col("ResStock To Published Annual Unit Conversion Factor").alias("conversion_factor"), + ) col_maps = col_map_df.to_dicts() return col_maps - -def setup_fsspec_filesystem(output_dir, aws_profile_name): - """ - Creates fsspec filesystem to handle local or S3 output locations - """ - # Use fsspec to enable local or S3 directories - # if output_dir is None: - # current_dir = pathlib.Path(__file__).resolve().parent - # output_dir = current_dir.parent / "output" / self.dataset_name - - # PyAthena >2.18.0 implements an s3 filesystem that replaces s3fs but does not implement file.open() - # Make fsspec use the s3fs s3 filesystem implementation for writing files to S3 - # This is necessary for import into SightGlassDataProcessing - register_implementation("s3", s3fs.S3FileSystem, clobber=True) - out_fs, out_fs_path = url_to_fs(output_dir, profile=aws_profile_name) - output_dir = { - 'fs': out_fs, - 'fs_path': out_fs_path - } - if isinstance(output_dir['fs'], s3fs.S3FileSystem): - if aws_profile_name is None: - logger.info(f'Accessing AWS using profile: None, which uses the [default] profile in .aws/config file') - else: - logger.info(f'Accessing AWS using profile: {aws_profile_name}') - session = boto3.Session(aws_profile_name) - credentials = session.get_credentials().get_frozen_credentials() - output_dir['storage_options'] = { - "aws_access_key_id": credentials.access_key, - "aws_secret_access_key": credentials.secret_key, - "aws_region": "us-west-2", - } - if credentials.token: - output_dir['storage_options']["aws_session_token"] = credentials.token - else: - output_dir['storage_options'] = None - - return output_dir - - -def write_geo_data(combo): - """ - Writes the data to the desired location and file format. - This function must be a global static function in order to work with parallel processing. - """ - geo_data, out_location, file_type, file_path = combo - if isinstance(geo_data, pl.LazyFrame): - geo_data = geo_data.collect() - if file_type == 'csv': - write_polars_csv_to_s3_or_local(geo_data, out_location['fs'], file_path) - elif file_type == 'parquet': - with out_location['fs'].open(file_path, "wb") as f: - geo_data.write_parquet(f, use_pyarrow=True) - else: - raise RuntimeError(f'Unknown file type {file_type} requested in export_metadata_and_annual_results()') - - -def write_polars_csv_to_s3_or_local(data: pl.DataFrame, out_fs, out_path): - """ - Writes the data to the desired location and file format. - This function must be a global static function in order to work with parallel processing - """ - # If local, write uncompressed CSV - if not isinstance(out_fs, s3fs.S3FileSystem): - data.write_csv(out_path) - return True - - # Get filename from full path - file_name = out_path.split('/')[-1] - - # Create a tar archive in memory that contains the CSV - tar_buffer = BytesIO() - with tarfile.open(mode='w', fileobj=tar_buffer) as tar: - # Get CSV data - csv_buffer = BytesIO() - data.write_csv(csv_buffer) - csv_buffer.seek(0) - - # Create a TarInfo object with file metadata - tarinfo = tarfile.TarInfo(name=file_name) - tarinfo.size = len(csv_buffer.getvalue()) - - # Add the CSV data to the tar archive - tar.addfile(tarinfo, csv_buffer) - - # Compress the in memory tar archive with gzip - tar_buffer.seek(0) - gzip_buffer = BytesIO() - with gzip.GzipFile(filename=f'{file_name}', mode='wb', fileobj=gzip_buffer, compresslevel=9) as gz: - gz.write(tar_buffer.getvalue()) - - # Upload directly to S3 - bucket_name = out_path.split('/')[0] - s3_key = '/'.join(out_path.split('/')[1:]) + '.gz' - s3_client = boto3.client('s3') - try: - gzip_buffer.seek(0) - s3_client.upload_fileobj( - gzip_buffer, # File-like object - bucket_name, # Bucket name - s3_key # S3 object key - ) - except Exception as e: - logger.error(f"S3 upload failed: {str(e)}") - finally: - # Clean up - csv_buffer.close() - tar_buffer.close() - gzip_buffer.close() - - # Clean up - csv_buffer.close() - tar_buffer.close() - gzip_buffer.close() - - -def conversion_factor(from_unit, to_unit): - - # Constants for unit conversion - # Created using OpenStudio unit conversion library - unit_conversions = { - 'kwh_to_kwh' : 1, - 'kwh_to_mwh' : 1e-3, - 'mwh_to_kwh' : 1e3, - 'twh_to_kwh' : 1e9, - 'mbtu_to_kbtu' : 1000, - 'kwh_to_kbtu' : 3.412141633127942, - 'kwh_to_tbtu' : ((1.0 / 1e9) * 3.412141633127942), - 'kbtu_to_kwh': (1.0 / 3.412141633127942), - 'therm_to_kbtu' : 100, - 'therm_to_kwh' : (100 / 3.412141633127942), - 'kbtu_to_tbtu' : (1.0 / 1e9), - 'tbtu_to_kbtu' : 1e9, - 'btu_to_kbtu' : (1.0 / 1e3), - 'million_btu_to_kbtu': (1e9 / 1e6), - 'million_btu_to_kwh': (1000 / 3.412141633127942), - 'gj_to_kbtu' : 947.8171203133173, - 'gj_to_kwh' : 277.77777777777777, - 'w_per_m2_k_to_btu_per_ft2_f_hr': 0.17611, - 'pa_to_inwc': 0.004015, - 'w_per_m2_to_w_per_ft2': (1.0/10.763910416709722), - 'co2e_kg_to_co2e_mmt': (0.000000001), - 'co2e_kg_to_co2e_metric_ton': 0.001, - 'usd_to_billion_usd': 0.000000001, - 'kw_to_gw': 0.000001, - 'percent_to_percent': 1, - } - conv_string = f'{from_unit}_to_{to_unit}' - - if conv_string in unit_conversions: - return unit_conversions[conv_string] - else: - raise KeyError(f'Conversion from {from_unit} to {to_unit} \ - not defined in unit_conversions, add it there.') From 539321a2f4cfffa279c86fb4da9f81e76382e657 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 10:36:19 -0700 Subject: [PATCH 56/82] Revert added files too. --- postprocessing/resstockpostproc/data_dict.py | 48 - postprocessing/resstockpostproc/enum_dict.py | 84 - .../publication/Column Name Crosswalk.csv | 814 - .../resources/publication/data_dictionary.tsv | 842 - .../publication/enumeration_dictionary.tsv | 58458 ---------------- ...n_definitions_with_2024-2_equivalents.xlsx | Bin 88707 -> 0 bytes 6 files changed, 60246 deletions(-) delete mode 100644 postprocessing/resstockpostproc/data_dict.py delete mode 100644 postprocessing/resstockpostproc/enum_dict.py delete mode 100644 postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv delete mode 100644 postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv delete mode 100644 postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv delete mode 100644 postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx diff --git a/postprocessing/resstockpostproc/data_dict.py b/postprocessing/resstockpostproc/data_dict.py deleted file mode 100644 index cd7b269d6e..0000000000 --- a/postprocessing/resstockpostproc/data_dict.py +++ /dev/null @@ -1,48 +0,0 @@ -import pandas as pd -import pathlib -def data_dictionary(df_sdr): - """ - generate data dictionary based on sdr_column_definitions.csv. - """ - df_sdr_meta = df_sdr[(df_sdr['Publish In Full'] == 'yes') & (df_sdr['Published Annual Name'].notnull())] - df_sdr_tsagg = df_sdr[(df_sdr['Timeseries Publish In Full'] == 'yes') & (df_sdr['Published Timeseries Name'].notnull())] - - # metadata_and_annual_results column names, units, and description - df_meta = df_sdr_meta[['Published Annual Name', - 'Data Type', - 'Published Annual Unit', - 'Notes']].rename(columns={ - 'Published Annual Name': 'field_name', - 'Data Type': 'data_type', - 'Published Annual Unit': 'units', - 'Notes': 'field_description' - }) - df_meta.insert(loc=0, column='field_location', value='metadata_and_annual') - - # timeseries_aggregates column names, units, and description - df_tsagg_sdr = df_sdr_tsagg[['Published Timeseries Name', - 'Data Type', - 'Published Timeseries Unit', - 'Notes']].rename(columns={ - 'Published Timeseries Name': 'field_name', - 'Data Type': 'data_type', - 'Published Timeseries Unit': 'units', - 'Notes': 'field_description' - }) - df_tsagg_sdr.insert(loc=0, column='field_location', value='timeseries_aggregates') - - #combine metadata_and_annual_results and timeseries_aggregates - df_data_dict = pd.concat([df_meta, df_tsagg_sdr], ignore_index=True) - df_data_dict['units'] = df_data_dict['units'].fillna('n/a') - - return df_data_dict - -def main(): - here = pathlib.Path(__file__).resolve().parent - df_sdr = pd.read_csv(here / "resources" / "publication" / "sdr_column_definitions.csv") - df_data_dict = data_dictionary(df_sdr) - df_data_dict.to_csv(here / "resources" / "publication" / "data_dictionary.tsv", sep='\t', index=None) - - -if __name__ == "__main__": - main() diff --git a/postprocessing/resstockpostproc/enum_dict.py b/postprocessing/resstockpostproc/enum_dict.py deleted file mode 100644 index 81ac97a509..0000000000 --- a/postprocessing/resstockpostproc/enum_dict.py +++ /dev/null @@ -1,84 +0,0 @@ -import pandas as pd -import pathlib - - -def enum(df): - """ - enumerations for a dataframe - """ - df_enum = ( - pd.concat( - [pd.DataFrame({'metadata_column': col, 'enumeration': df[col].unique()}) - for col in df.columns], - ignore_index=True - ) - ) - - return df_enum - - -def enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files): - #format buildstock.csv column names - df_bs_csv.columns = ['in.' + col.lower().replace(' ', '_') for col in df_bs_csv.columns] - df_bs_csv = df_bs_csv.drop('in.building', axis=1) - df_bs_csv = df_bs_csv.rename(columns={ - 'in.ashrae_iecc_climate_zone_2004_-_sub-cz_split': 'in.ashrae_iecc_climate_zone_2004_sub_cz_split', - 'in.income_recs2015': 'in.income_recs_2015', - 'in.income_recs2020': 'in.income_recs_2020' - }) - - #enumerations from buildstock.csv - df_enum_bs_csv = enum(df_bs_csv) - - df_data_dict_filter = df_data_dict[df_data_dict['field_location'] == 'metadata_and_annual'] - data_dict_columns = df_data_dict_filter['field_name'] - data_dict_columns = [x for x in data_dict_columns if not x.startswith(("out.", "calc.weighted", "bldg_id"))] - - bs_csv_columns = df_bs_csv.columns - leftover_columns = list(set(data_dict_columns) - set(bs_csv_columns)) - - #enumerations from released data - df_enum_meta = pd.DataFrame(columns=['metadata_column', 'enumeration']) - for up in up_files: - #Do not need the renaming for the released parquet file - df_meta_up[up] = df_meta_up[up].rename(columns={ - 'in.sqft': 'in.sqft..ft2', - 'in.air_leakage_to_outside_ach_50': 'in.air_leakage_to_outside_ach50', - 'upgrade_name': 'in.upgrade_name', - 'in.electric_panel_service_rating': 'in.electric_panel_service_rating..a', - 'in.electric_panel_service_rating_bin': 'in.electric_panel_service_rating_bin..a', - 'in.air_leakage_to_outside_ach_50': 'in.air_leakage_to_outside_ach50' - }) - existing_cols = [c for c in leftover_columns if c in df_meta_up[up].columns] - df_meta_filter = df_meta_up[up][existing_cols] - df_meta_filter_enum = enum(df_meta_filter) - df_enum_meta = pd.concat([df_enum_meta, df_meta_filter_enum]).drop_duplicates(keep='first') - - df_enum_dict = pd.concat([df_enum_bs_csv, df_enum_meta]).drop_duplicates(keep='first') - df_enum_dict['enumeration'] = df_enum_dict['enumeration'].fillna("None") - df_enum_dict = df_enum_dict.sort_values(by=['metadata_column', 'enumeration']) - - df_enum_dict_columns = df_enum_dict['metadata_column'].unique().tolist() - missing_cols = [c for c in data_dict_columns if c not in df_enum_dict_columns] - print("Missing columns:", missing_cols) - - return df_enum_dict - - -def main(): - here = pathlib.Path(__file__).resolve().parent - test_path = here.parent.parent - df_data_dict = pd.read_csv(here / "resources" / "publication" / "data_dictionary.tsv", sep='\t') - df_bs_csv = pd.read_csv(test_path / "test" / "base_results" / "baseline"/ "annual"/ "buildstock.csv") - df_meta_up = {} - up_path = (test_path / "test" / "base_results" / "upgrades"/ "sdr_annual") - up_files = [f.name for f in up_path.glob('*.csv')] - for up in up_files: - df_meta_up[up] = pd.read_csv(test_path / "test" / "base_results" / "upgrades"/ "sdr_annual"/ up) - - df_enum_dict = enum_dict(df_data_dict, df_bs_csv, df_meta_up, up_files) - df_enum_dict.to_csv(here / "resources" / "publication" / "enumeration_dictionary.tsv", sep='\t', index=None) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv b/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv deleted file mode 100644 index fb0d9f0971..0000000000 --- a/postprocessing/resstockpostproc/resources/publication/Column Name Crosswalk.csv +++ /dev/null @@ -1,814 +0,0 @@ -Published Annual Name,Published Timeseries Name,ResStock 2024 Release 2 Equivalent -bldg_id,bldg_id,bldg_id -upgrade,,upgrade -weight,,weight -,timestamp,timestamp -applicability,,applicability -in.ahs_region,,in.ahs_region -in.aiannh_area,,in.aiannh_area -in.air_leakage_to_outside_ach50,,New in ResStock 2025 Release 1 -in.area_median_income,,in.area_median_income -in.ashrae_iecc_climate_zone_2004,,in.ashrae_iecc_climate_zone_2004 -in.ashrae_iecc_climate_zone_2004_sub_cz_split,,in.ashrae_iecc_climate_zone_2004_2_a_split -in.bathroom_spot_vent_hour,,in.bathroom_spot_vent_hour -in.battery,,in.battery -in.bedrooms,,in.bedrooms -in.building_america_climate_zone,,in.building_america_climate_zone -in.cec_climate_zone,,in.cec_climate_zone -in.ceiling_fan,,in.ceiling_fan -in.census_division,,in.census_division -in.census_division_recs,,in.census_division_recs -in.census_region,,in.census_region -in.city,,in.city -in.clothes_dryer,,in.clothes_dryer -in.clothes_dryer_usage_level,,in.clothes_dryer_usage_level -in.clothes_washer,,in.clothes_washer -in.clothes_washer_presence,,in.clothes_washer_presence -in.clothes_washer_usage_level,,in.clothes_washer_usage_level -in.cooking_range,,in.cooking_range -in.cooking_range_usage_level,,in.cooking_range_usage_level -in.cooling_setpoint,,in.cooling_setpoint -in.cooling_setpoint_has_offset,,in.cooling_setpoint_has_offset -in.cooling_setpoint_offset_magnitude,,in.cooling_setpoint_offset_magnitude -in.cooling_setpoint_offset_period,,in.cooling_setpoint_offset_period -in.cooling_unavailable_days,,New in ResStock 2025 Release 1 -in.cooling_unavailable_period,,New in ResStock 2025 Release 1 -in.corridor,,in.corridor -in.county,,in.county -in.county_and_puma,,in.county_and_puma -in.county_metro_status,,New in ResStock 2025 Release 1 -in.county_name,,in.county_name -in.custom_state,,New in ResStock 2025 Release 1 -in.dehumidifier,,in.dehumidifier -in.dishwasher,,in.dishwasher -in.dishwasher_usage_level,,in.dishwasher_usage_level -in.door_area,,in.door_area -in.doors,,in.doors -in.duct_leakage_and_insulation,,in.duct_leakage_and_insulation -in.duct_location,,in.duct_location -in.eaves,,in.eaves -in.electric_panel_breaker_space_total_count,,New in ResStock 2025 Release 1 -in.electric_panel_service_rating..a,,New in ResStock 2025 Release 1 -in.electric_panel_service_rating_bin..a,,New in ResStock 2025 Release 1 -in.electric_vehicle_battery,,New in ResStock 2025 Release 1 -in.electric_vehicle_charge_at_home,,New in ResStock 2025 Release 1 -in.electric_vehicle_charger,,New in ResStock 2025 Release 1 -in.electric_vehicle_miles_traveled,,New in ResStock 2025 Release 1 -in.electric_vehicle_outlet_access,,New in ResStock 2025 Release 1 -in.electric_vehicle_ownership,,New in ResStock 2025 Release 1 -in.energystar_climate_zone_2023,,in.energystar_climate_zone_2023 -in.federal_poverty_level,,in.federal_poverty_level -in.generation_and_emissions_assessment_region,,in.generation_and_emissions_assessment_region -in.geometry_attic_type,,in.geometry_attic_type -in.geometry_building_horizontal_location_mf,,in.geometry_building_horizontal_location_mf -in.geometry_building_horizontal_location_sfa,,in.geometry_building_horizontal_location_sfa -in.geometry_building_level_mf,,in.geometry_building_level_mf -in.geometry_building_number_units_mf,,in.geometry_building_number_units_mf -in.geometry_building_number_units_sfa,,in.geometry_building_number_units_sfa -in.geometry_building_type_acs,,in.geometry_building_type_acs -in.geometry_building_type_height,,in.geometry_building_type_height -in.geometry_building_type_recs,,in.geometry_building_type_recs -in.geometry_floor_area,,in.geometry_floor_area -in.geometry_floor_area_bin,,in.geometry_floor_area_bin -in.geometry_foundation_type,,in.geometry_foundation_type -in.geometry_garage,,in.geometry_garage -in.geometry_space_combination,,in.geometry_space_combination -in.geometry_stories,,in.geometry_stories -in.geometry_stories_low_rise,,in.geometry_stories_low_rise -in.geometry_story_bin,,in.geometry_story_bin -in.geometry_wall_exterior_finish,,in.geometry_wall_exterior_finish -in.geometry_wall_type,,in.geometry_wall_type -in.ground_thermal_conductivity,,in.ground_thermal_conductivity -in.has_pv,,in.has_pv -in.heating_fuel,,in.heating_fuel -in.heating_setpoint,,in.heating_setpoint -in.heating_setpoint_has_offset,,in.heating_setpoint_has_offset -in.heating_setpoint_offset_magnitude,,in.heating_setpoint_offset_magnitude -in.heating_setpoint_offset_period,,in.heating_setpoint_offset_period -in.heating_unavailable_days,,New in ResStock 2025 Release 1 -in.heating_unavailable_period,,New in ResStock 2025 Release 1 -in.holiday_lighting,,in.holiday_lighting -in.hot_water_distribution,,in.hot_water_distribution -in.hot_water_fixtures,,in.hot_water_fixtures -in.household_has_tribal_persons,,in.household_has_tribal_persons -in.hvac_cooling_autosizing_factor,,New in ResStock 2025 Release 1 -in.hvac_cooling_efficiency,,in.hvac_cooling_efficiency -in.hvac_cooling_partial_space_conditioning,,in.hvac_cooling_partial_space_conditioning -in.hvac_cooling_type,,in.hvac_cooling_type -in.hvac_has_ducts,,in.hvac_has_ducts -in.hvac_has_shared_system,,in.hvac_has_shared_system -in.hvac_has_zonal_electric_heating,,in.hvac_has_zonal_electric_heating -in.hvac_heating_autosizing_factor,,New in ResStock 2025 Release 1 -in.hvac_heating_efficiency,,in.hvac_heating_efficiency -in.hvac_heating_type,,in.hvac_heating_type -in.hvac_heating_type_and_fuel,,in.hvac_heating_type_and_fuel -in.hvac_secondary_heating_efficiency,,in.hvac_secondary_heating_efficiency -in.hvac_secondary_heating_fuel,,in.hvac_secondary_heating_fuel -in.hvac_secondary_heating_partial_space_conditioning,,in.hvac_secondary_heating_partial_space_conditioning -in.hvac_secondary_heating_type,,New in ResStock 2025 Release 1 -in.hvac_shared_efficiencies,,in.hvac_shared_efficiencies -in.hvac_system_is_faulted,,in.hvac_system_is_faulted -in.hvac_system_is_scaled,,New in ResStock 2025 Release 1 -in.hvac_system_single_speed_ac_airflow,,in.hvac_system_single_speed_ac_airflow -in.hvac_system_single_speed_ac_charge,,in.hvac_system_single_speed_ac_charge -in.hvac_system_single_speed_ashp_airflow,,in.hvac_system_single_speed_ashp_airflow -in.hvac_system_single_speed_ashp_charge,,in.hvac_system_single_speed_ashp_charge -in.income,,in.income -in.income_recs_2015,,in.income_recs_2015 -in.income_recs_2020,,in.income_recs_2020 -in.infiltration,,in.infiltration -in.insulation_ceiling,,in.insulation_ceiling -in.insulation_floor,,in.insulation_floor -in.insulation_foundation_wall,,in.insulation_foundation_wall -in.insulation_rim_joist,,in.insulation_rim_joist -in.insulation_roof,,in.insulation_roof -in.insulation_slab,,in.insulation_slab -in.insulation_wall,,in.insulation_wall -in.interior_shading,,in.interior_shading -in.iso_rto_region,,in.iso_rto_region -in.lighting,,in.lighting -in.lighting_interior_use,,in.lighting_interior_use -in.lighting_other_use,,in.lighting_other_use -in.location_region,,in.location_region -in.mechanical_ventilation,,in.mechanical_ventilation -in.metropolitan_and_micropolitan_statistical_area,,New in ResStock 2025 Release 1 -in.misc_extra_refrigerator,,in.misc_extra_refrigerator -in.misc_freezer,,in.misc_freezer -in.misc_gas_fireplace,,in.misc_gas_fireplace -in.misc_gas_grill,,in.misc_gas_grill -in.misc_gas_lighting,,in.misc_gas_lighting -in.misc_hot_tub_spa,,in.misc_hot_tub_spa -in.misc_pool,,in.misc_pool -in.misc_pool_heater,,in.misc_pool_heater -in.misc_pool_pump,,in.misc_pool_pump -in.misc_well_pump,,in.misc_well_pump -in.natural_ventilation,,in.natural_ventilation -in.neighbors,,in.neighbors -in.occupants,,in.occupants -in.orientation,,in.orientation -in.overhangs,,in.overhangs -in.plug_load_diversity,,in.plug_load_diversity -in.plug_loads,,in.plug_loads -in.puma,,in.puma -in.puma_metro_status,,in.puma_metro_status -in.pv_orientation,,in.pv_orientation -in.pv_system_size,,in.pv_system_size -in.radiant_barrier,,in.radiant_barrier -in.range_spot_vent_hour,,in.range_spot_vent_hour -in.reeds_balancing_area,,in.reeds_balancing_area -in.refrigerator,,in.refrigerator -in.refrigerator_usage_level,,in.refrigerator_usage_level -in.representative_income,,in.representative_income -in.roof_material,,in.roof_material -in.simulation_control_run_period_begin_day_of_month,,in.simulation_control_run_period_begin_day_of_month -in.simulation_control_run_period_begin_month,,in.simulation_control_run_period_begin_month -in.simulation_control_run_period_calendar_year,,in.simulation_control_run_period_calendar_year -in.simulation_control_run_period_end_day_of_month,,in.simulation_control_run_period_end_day_of_month -in.simulation_control_run_period_end_month,,in.simulation_control_run_period_end_month -in.simulation_control_timestep,,in.simulation_control_timestep -in.sqft..ft2,in.sqft,in.sqft -in.state,,in.state -in.state_metro_median_income,,New in ResStock 2025 Release 1 -in.tenure,,in.tenure -in.units_represented,,in.units_represented -in.upgrade_name,,upgrade_name -in.usage_level,,in.usage_level -in.utility_bill_electricity_fixed_charges,,in.utility_bill_electricity_fixed_charges -in.utility_bill_electricity_marginal_rates,,in.utility_bill_electricity_marginal_rates -in.utility_bill_fuel_oil_fixed_charges,,in.utility_bill_fuel_oil_fixed_charges -in.utility_bill_fuel_oil_marginal_rates,,in.utility_bill_fuel_oil_marginal_rates -in.utility_bill_natural_gas_fixed_charges,,in.utility_bill_natural_gas_fixed_charges -in.utility_bill_natural_gas_marginal_rates,,in.utility_bill_natural_gas_marginal_rates -in.utility_bill_propane_fixed_charges,,in.utility_bill_propane_fixed_charges -in.utility_bill_propane_marginal_rates,,in.utility_bill_propane_marginal_rates -in.vacancy_status,,in.vacancy_status -in.vintage,,in.vintage -in.vintage_acs,,in.vintage_acs -in.water_heater_efficiency,,in.water_heater_efficiency -in.water_heater_fuel,,in.water_heater_fuel -in.water_heater_in_unit,,in.water_heater_in_unit -in.water_heater_location,,in.water_heater_location -in.weather_file_city,,in.weather_file_city -in.weather_file_latitude,,in.weather_file_latitude -in.weather_file_longitude,,in.weather_file_longitude -in.window_areas,,in.window_areas -in.windows,,in.windows -out.capacity.cooling..btu_per_hr,,New in ResStock 2025 Release 1 -out.capacity.heat_pump_backup..btu_per_hr,,New in ResStock 2025 Release 1 -out.capacity.heating..btu_per_hr,,New in ResStock 2025 Release 1 -out.params.door_area..ft2,,out.params.door_area_ft_2 -out.params.duct_unconditioned_surface_area..ft2,,out.params.duct_unconditioned_surface_area_ft_2 -out.params.floor_area_attic..ft2,,out.params.floor_area_attic_ft_2 -out.params.floor_area_attic_insulation_increase..ft2_delta_r_value,,out.params.floor_area_attic_insulation_increase_ft_2_delta_r_value -out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50,,out.params.floor_area_conditioned_infiltration_reduction_ft_2_delta_ach_50 -out.params.floor_area_foundation..ft2,,out.params.floor_area_foundation_ft_2 -out.params.floor_area_lighting..ft2,,out.params.floor_area_lighting_ft_2 -out.params.flow_rate_mechanical_ventilation..cfm,,out.params.flow_rate_mechanical_ventilation_cfm -out.params.hvac_geothermal_loop_borehole_trench_count,,New in ResStock 2025 Release 1 -out.params.hvac_geothermal_loop_borehole_trench_length..ft,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_clothes_dryer_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_cooling_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_dishwasher_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_ev_charging_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_headroom_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_heating_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_hot_water_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_mech_vent_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_occupied_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_occupied_savings_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_other_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_permanent_spa_heat_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_permanent_spa_pump_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_pool_heater_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_pool_pump_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_range_oven_count,,New in ResStock 2025 Release 1 -out.params.panel_breaker_space_well_pump_count,,New in ResStock 2025 Release 1 -out.params.panel_constraint_breaker_space,,New in ResStock 2025 Release 1 -out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based,,New in ResStock 2025 Release 1 -out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based,,New in ResStock 2025 Release 1 -out.params.panel_load_clothes_dryer..w,,New in ResStock 2025 Release 1 -out.params.panel_load_cooling..w,,New in ResStock 2025 Release 1 -out.params.panel_load_dishwasher..w,,New in ResStock 2025 Release 1 -out.params.panel_load_ev_charging..w,,New in ResStock 2025 Release 1 -out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 -out.params.panel_load_heating..w,,New in ResStock 2025 Release 1 -out.params.panel_load_hot_water..w,,New in ResStock 2025 Release 1 -out.params.panel_load_mech_vent..w,,New in ResStock 2025 Release 1 -out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 -out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a,,New in ResStock 2025 Release 1 -out.params.panel_load_other..w,,New in ResStock 2025 Release 1 -out.params.panel_load_permanent_spa_heat..w,,New in ResStock 2025 Release 1 -out.params.panel_load_permanent_spa_pump..w,,New in ResStock 2025 Release 1 -out.params.panel_load_pool_heater..w,,New in ResStock 2025 Release 1 -out.params.panel_load_pool_pump..w,,New in ResStock 2025 Release 1 -out.params.panel_load_range_oven..w,,New in ResStock 2025 Release 1 -out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w,,New in ResStock 2025 Release 1 -out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w,,New in ResStock 2025 Release 1 -out.params.panel_load_well_pump..w,,New in ResStock 2025 Release 1 -out.params.rim_joist_area_above_grade_exterior..ft2,,out.params.rim_joist_area_above_grade_exterior_ft_2 -out.params.roof_area..ft2,,out.params.roof_area_ft_2 -out.params.size_cooling_system_primary..kbtu_per_hr,,out.params.size_cooling_system_primary_k_btu_h -out.params.size_heat_pump_backup_primary..kbtu_per_hr,,out.params.size_heat_pump_backup_primary_k_btu_h -out.params.size_heating_system_primary..kbtu_per_hr,,out.params.size_heating_system_primary_k_btu_h -out.params.size_heating_system_secondary..kbtu_per_hr,,out.params.size_heating_system_secondary_k_btu_h -out.params.size_water_heater..gal,,out.params.size_water_heater_gal -out.params.slab_perimeter_exposed_conditioned..ft,,out.params.slab_perimeter_exposed_conditioned_ft -out.params.wall_area_above_grade_conditioned..ft2,,out.params.wall_area_above_grade_conditioned_ft_2 -out.params.wall_area_above_grade_exterior..ft2,,out.params.wall_area_above_grade_exterior_ft_2 -out.params.wall_area_below_grade..ft2,,out.params.wall_area_below_grade_ft_2 -out.params.window_area..ft2,,out.params.window_area_ft_2 -,out.indoor_airflow.infiltration..cfm,Not published in ResStock 2024 Release 2 -,out.indoor_airflow.mechanical_ventilation..cfm,Not published in ResStock 2024 Release 2 -,out.indoor_airflow.natural_ventilation..cfm,Not published in ResStock 2024 Release 2 -,out.indoor_dewpoint_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 -,out.indoor_humidity_ratio.conditioned_space..kgwater_per_kgdryair,Not published in ResStock 2024 Release 2 -,out.indoor_operative_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 -,out.indoor_radiant_temperature.conditioned_space..c,Not published in ResStock 2024 Release 2 -,out.indoor_relative_humidity.conditioned_space..percentage,Not published in ResStock 2024 Release 2 -,out.indoor_temperature.conditioned_space..c,out.zone_mean_air_temp.conditioned_space.c -upgrade.demand_flexibility_electric_vehicle,,No direct equivalent in ResStock 2024 Release 2 -upgrade.demand_flexibility_hvac,,No direct equivalent in ResStock 2024 Release 2 -upgrade.demand_flexibility_random_shift,,No direct equivalent in ResStock 2024 Release 2 -upgrade.duct_leakage_and_insulation,,No direct equivalent in ResStock 2024 Release 2 -upgrade.electric_vehicle_charger,,No direct equivalent in ResStock 2024 Release 2 -upgrade.electric_vehicle_efficiency_increase,,No direct equivalent in ResStock 2024 Release 2 -upgrade.electric_vehicle_ownership,,No direct equivalent in ResStock 2024 Release 2 -upgrade.heating_fuel,,No direct equivalent in ResStock 2024 Release 2 -upgrade.hvac_cooling_efficiency,,upgrade.hvac_cooling_efficiency -upgrade.hvac_cooling_partial_space_conditioning,,upgrade.hvac_cooling_partial_space_conditioning -upgrade.hvac_detailed_performance_data,,No direct equivalent in ResStock 2024 Release 2 -upgrade.hvac_heating_efficiency,,upgrade.hvac_heating_efficiency -upgrade.hvac_heating_type_and_fuel,,No direct equivalent in ResStock 2024 Release 2 -upgrade.infiltration,,No direct equivalent in ResStock 2024 Release 2 -upgrade.infiltration_reduction,,upgrade.infiltration_reduction -upgrade.insulation_ceiling,,upgrade.insulation_ceiling -upgrade.insulation_wall,,No direct equivalent in ResStock 2024 Release 2 -upgrade.water_heater_efficiency,,upgrade.water_heater_efficiency -upgrade.water_heater_fuel,,upgrade.water_heater_fuel -upgrade.windows,,No direct equivalent in ResStock 2024 Release 2 -out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer..gal,out.hot_water.clothes_washer.gal -out.hot_water.dishwasher..gal,out.hot_water.dishwasher..gal,out.hot_water.dishwasher.gal -out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste..gal,out.hot_water.distribution_waste.gal -out.hot_water.fixtures..gal,out.hot_water.fixtures..gal,out.hot_water.fixtures.gal -out.hot_water_savings.clothes_washer..gal,,out.hot_water.clothes_washer.gal.savings -out.hot_water_savings.dishwasher..gal,,out.hot_water.dishwasher.gal.savings -out.hot_water_savings.distribution_waste..gal,,out.hot_water.distribution_waste.gal.savings -out.hot_water_savings.fixtures..gal,,out.hot_water.fixtures.gal.savings -out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered..kbtu,out.load.cooling.energy_delivered.kbtu -out.load.cooling.energy_delivered_savings..kbtu,,out.load.cooling.energy_delivered.kbtu.savings -out.load.cooling.peak..kbtu_per_hr,,out.load.cooling.peak.kbtu_hr -out.load.cooling.peak_savings..kbtu_per_hr,,out.load.cooling.peak.kbtu_hr.savings -out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered..kbtu,out.load.heating.energy_delivered.kbtu -out.load.heating.energy_delivered_savings..kbtu,,out.load.heating.energy_delivered.kbtu.savings -out.load.heating.peak..kbtu_per_hr,,out.load.heating.peak.kbtu_hr -out.load.heating.peak_savings..kbtu_per_hr,,out.load.heating.peak.kbtu_hr.savings -out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered..kbtu,out.load.hot_water.energy_delivered.kbtu -out.load.hot_water.energy_delivered_savings..kbtu,,out.load.hot_water.energy_delivered.kbtu.savings -out.load.hot_water.energy_solar_thermal..kbtu,out.load.hot_water_solar_thermal..kbtu,New in ResStock 2025 Release 1 -out.load.hot_water.energy_solar_thermal_savings..kbtu,,New in ResStock 2025 Release 1 -out.load.hot_water.energy_tank_losses..kbtu,out.load.hot_water_tank_losses..kbtu,New in ResStock 2025 Release 1 -out.load.hot_water.energy_tank_losses_savings..kbtu,,New in ResStock 2025 Release 1 -out.unmet_hours.cooling..hr,out.unmet_hours.cooling..hour,out.unmet_hours.cooling.hour -out.unmet_hours.ev_driving..hr,out.unmet_hours.ev_driving..hour,New in ResStock 2025 Release 1 -out.unmet_hours.heating..hr,out.unmet_hours.heating..hour,out.unmet_hours.heating.hour -out.unmet_hours_reduction.cooling..hr,,out.unmet_hours.cooling.hour.savings -out.unmet_hours_reduction.heating..hr,,out.unmet_hours.heating.hour.savings -out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption..kwh,out.electricity.ceiling_fan.energy_consumption.kwh -out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.ceiling_fan.energy_savings..kwh,,out.electricity.ceiling_fan.energy_consumption.kwh.savings -out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption..kwh,out.electricity.clothes_dryer.energy_consumption.kwh -out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.clothes_dryer.energy_savings..kwh,,out.electricity.clothes_dryer.energy_consumption.kwh.savings -out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption..kwh,out.electricity.clothes_washer.energy_consumption.kwh -out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.clothes_washer.energy_savings..kwh,,out.electricity.clothes_washer.energy_consumption.kwh.savings -out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption..kwh,out.electricity.cooling.energy_consumption.kwh -out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.cooling.energy_savings..kwh,,out.electricity.cooling.energy_consumption.kwh.savings -out.electricity.cooling.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption..kwh,out.electricity.cooling_fans_pumps.energy_consumption.kwh -out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.cooling_fans_pumps.energy_savings..kwh,,out.electricity.cooling_fans_pumps.energy_consumption.kwh.savings -out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption..kwh,out.electricity.dishwasher.energy_consumption.kwh -out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.dishwasher.energy_savings..kwh,,out.electricity.dishwasher.energy_consumption.kwh.savings -out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.ev_charging.energy_consumption..kwh,out.electricity.ev_charging.energy_consumption..kwh,New in ResStock 2025 Release 1 -out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.ev_charging.energy_savings..kwh,,New in ResStock 2025 Release 1 -out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption..kwh,out.electricity.freezer.energy_consumption.kwh -out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.freezer.energy_savings..kwh,,out.electricity.freezer.energy_consumption.kwh.savings -out.electricity.freezer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption..kwh,out.electricity.heating.energy_consumption.kwh -out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.heating.energy_savings..kwh,,out.electricity.heating.energy_consumption.kwh.savings -out.electricity.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption..kwh,out.electricity.heating_fans_pumps.energy_consumption.kwh -out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.heating_fans_pumps.energy_savings..kwh,,out.electricity.heating_fans_pumps.energy_consumption.kwh.savings -out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption..kwh,out.electricity.heating_hp_bkup.energy_consumption.kwh -out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.heating_hp_bkup.energy_savings..kwh,,out.electricity.heating_hp_bkup.energy_consumption.kwh.savings -out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption..kwh,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh -out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.heating_hp_bkup_fa.energy_savings..kwh,,out.electricity.heating_hp_bkup_fa.energy_consumption.kwh.savings -out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption..kwh,out.electricity.hot_water.energy_consumption.kwh -out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.hot_water.energy_savings..kwh,,out.electricity.hot_water.energy_consumption.kwh.savings -out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.hot_water_solar_th.energy_consumption..kwh,out.electricity.hot_water_solar_th.energy_consumption..kwh,New in ResStock 2025 Release 1 -out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.hot_water_solar_th.energy_savings..kwh,,New in ResStock 2025 Release 1 -out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption..kwh,out.electricity.lighting_exterior.energy_consumption.kwh -out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.lighting_exterior.energy_savings..kwh,,out.electricity.lighting_exterior.energy_consumption.kwh.savings -out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption..kwh,out.electricity.lighting_garage.energy_consumption.kwh -out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.lighting_garage.energy_savings..kwh,,out.electricity.lighting_garage.energy_consumption.kwh.savings -out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption..kwh,out.electricity.lighting_interior.energy_consumption.kwh -out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.lighting_interior.energy_savings..kwh,,out.electricity.lighting_interior.energy_consumption.kwh.savings -out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption..kwh,out.electricity.mech_vent.energy_consumption.kwh -out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.mech_vent.energy_savings..kwh,,out.electricity.mech_vent.energy_consumption.kwh.savings -out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption..kwh,out.electricity.net.energy_consumption.kwh -out.electricity.net.energy_consumption_intensity..kwh_per_ft2,out.electricity.net.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.net.energy_savings..kwh,,out.electricity.net.energy_consumption.kwh.savings -out.electricity.net.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption..kwh,out.electricity.permanent_spa_heat.energy_consumption.kwh -out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.permanent_spa_heat.energy_savings..kwh,,out.electricity.permanent_spa_heat.energy_consumption.kwh.savings -out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption..kwh,out.electricity.permanent_spa_pump.energy_consumption.kwh -out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.permanent_spa_pump.energy_savings..kwh,,out.electricity.permanent_spa_pump.energy_consumption.kwh.savings -out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption..kwh,out.electricity.plug_loads.energy_consumption.kwh -out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.plug_loads.energy_savings..kwh,,out.electricity.plug_loads.energy_consumption.kwh.savings -out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption..kwh,out.electricity.pool_heater.energy_consumption.kwh -out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.pool_heater.energy_savings..kwh,,out.electricity.pool_heater.energy_consumption.kwh.savings -out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption..kwh,out.electricity.pool_pump.energy_consumption.kwh -out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.pool_pump.energy_savings..kwh,,out.electricity.pool_pump.energy_consumption.kwh.savings -out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption..kwh,out.electricity.pv.energy_consumption.kwh -out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,out.electricity.pv.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.pv.energy_savings..kwh,,out.electricity.pv.energy_consumption.kwh.savings -out.electricity.pv.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption..kwh,out.electricity.range_oven.energy_consumption.kwh -out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.range_oven.energy_savings..kwh,,out.electricity.range_oven.energy_consumption.kwh.savings -out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption..kwh,out.electricity.refrigerator.energy_consumption.kwh -out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.refrigerator.energy_savings..kwh,,out.electricity.refrigerator.energy_consumption.kwh.savings -out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.television.energy_consumption..kwh,out.electricity.television.energy_consumption..kwh,New in ResStock 2025 Release 1 -out.electricity.television.energy_consumption_intensity..kwh_per_ft2,out.electricity.television.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.television.energy_savings..kwh,,New in ResStock 2025 Release 1 -out.electricity.television.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption..kwh,out.electricity.total.energy_consumption.kwh -out.electricity.total.energy_consumption_intensity..kwh_per_ft2,out.electricity.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.total.energy_savings..kwh,,out.electricity.total.energy_consumption.kwh.savings -out.electricity.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption..kwh,out.electricity.well_pump.energy_consumption.kwh -out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.electricity.well_pump.energy_savings..kwh,,out.electricity.well_pump.energy_consumption.kwh.savings -out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption..kwh,out.fuel_oil.heating.energy_consumption.kwh -out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.fuel_oil.heating.energy_savings..kwh,,out.fuel_oil.heating.energy_consumption.kwh.savings -out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.fuel_oil.heating_hp_bkup.energy_consumption..kwh,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh -out.fuel_oil.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.fuel_oil.heating_hp_bkup.energy_savings..kwh,,out.fuel_oil.heating_hp_bkup.energy_consumption.kwh.savings -out.fuel_oil.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption..kwh,out.fuel_oil.hot_water.energy_consumption.kwh -out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.fuel_oil.hot_water.energy_savings..kwh,,out.fuel_oil.hot_water.energy_consumption.kwh.savings -out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption..kwh,out.fuel_oil.total.energy_consumption.kwh -out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.fuel_oil.total.energy_savings..kwh,,out.fuel_oil.total.energy_consumption.kwh.savings -out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption..kwh,out.natural_gas.clothes_dryer.energy_consumption.kwh -out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.clothes_dryer.energy_savings..kwh,,out.natural_gas.clothes_dryer.energy_consumption.kwh.savings -out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption..kwh,out.natural_gas.fireplace.energy_consumption.kwh -out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.fireplace.energy_savings..kwh,,out.natural_gas.fireplace.energy_consumption.kwh.savings -out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption..kwh,out.natural_gas.grill.energy_consumption.kwh -out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.grill.energy_savings..kwh,,out.natural_gas.grill.energy_consumption.kwh.savings -out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption..kwh,out.natural_gas.heating.energy_consumption.kwh -out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.heating.energy_savings..kwh,,out.natural_gas.heating.energy_consumption.kwh.savings -out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating_hp_bkup.energy_consumption..kwh,out.natural_gas.heating.energy_consumption.kwh -out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.heating_hp_bkup.energy_savings..kwh,,out.natural_gas.heating_hp_bkup.energy_consumption.kwh.savings -out.natural_gas.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption..kwh,out.natural_gas.hot_water.energy_consumption.kwh -out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.hot_water.energy_savings..kwh,,out.natural_gas.hot_water.energy_consumption.kwh.savings -out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption..kwh,out.natural_gas.lighting.energy_consumption.kwh -out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.lighting.energy_savings..kwh,,out.natural_gas.lighting.energy_consumption.kwh.savings -out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption..kwh,out.natural_gas.permanent_spa_heat.energy_consumption.kwh -out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.permanent_spa_heat.energy_savings..kwh,,out.natural_gas.permanent_spa_heat.energy_consumption.kwh.savings -out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption..kwh,out.natural_gas.pool_heater.energy_consumption.kwh -out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.pool_heater.energy_savings..kwh,,out.natural_gas.pool_heater.energy_consumption.kwh.savings -out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption..kwh,out.natural_gas.range_oven.energy_consumption.kwh -out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.range_oven.energy_savings..kwh,,out.natural_gas.range_oven.energy_consumption.kwh.savings -out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption..kwh,out.natural_gas.total.energy_consumption.kwh -out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.natural_gas.total.energy_savings..kwh,,out.natural_gas.total.energy_consumption.kwh.savings -out.natural_gas.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption..kwh,out.propane.clothes_dryer.energy_consumption.kwh -out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.propane.clothes_dryer.energy_savings..kwh,,out.propane.clothes_dryer.energy_consumption.kwh.savings -out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption..kwh,out.propane.heating.energy_consumption.kwh -out.propane.heating.energy_consumption_intensity..kwh_per_ft2,out.propane.heating.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.propane.heating.energy_savings..kwh,,out.propane.heating.energy_consumption.kwh.savings -out.propane.heating.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.heating_hp_bkup.energy_consumption..kwh,,out.propane.heating_hp_bkup.energy_consumption.kwh -out.propane.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.heating_hp_bkup.energy_savings..kwh,,out.propane.heating_hp_bkup.energy_consumption.kwh.savings -out.propane.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption..kwh,out.propane.hot_water.energy_consumption.kwh -out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.propane.hot_water.energy_savings..kwh,,out.propane.hot_water.energy_consumption.kwh.savings -out.propane.hot_water.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption..kwh,out.propane.range_oven.energy_consumption.kwh -out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.propane.range_oven.energy_savings..kwh,,out.propane.range_oven.energy_consumption.kwh.savings -out.propane.range_oven.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption..kwh,out.propane.total.energy_consumption.kwh -out.propane.total.energy_consumption_intensity..kwh_per_ft2,out.propane.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.propane.total.energy_savings..kwh,,out.propane.total.energy_consumption.kwh.savings -out.propane.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.qoi.electricity.maximum_daily_peak_savings_summer..kw,,New in ResStock 2025 Release 1 -out.qoi.electricity.maximum_daily_peak_savings_winter..kw,,New in ResStock 2025 Release 1 -out.qoi.electricity.maximum_daily_peak_summer..kw,,out.electricity.summer.peak.kw -out.qoi.electricity.maximum_daily_peak_winter..kw,,out.electricity.winter.peak.kw -out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption..kwh,out.site_energy.net.energy_consumption.kwh -out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,out.site_energy.net.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.site_energy.net.energy_savings..kwh,,out.site_energy.net.energy_consumption.kwh.savings -out.site_energy.net.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption..kwh,out.site_energy.total.energy_consumption.kwh -out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,out.site_energy.total.energy_consumption_intensity..kwh_per_ft2,Not published in ResStock 2024 Release 2 -out.site_energy.total.energy_savings..kwh,,out.site_energy.total.energy_consumption.kwh.savings -out.site_energy.total.energy_savings_intensity..kwh_per_ft2,,Not published in ResStock 2024 Release 2 -out.utility_bills.electricity_bill..usd,,out.bills.electricity.usd -out.utility_bills.electricity_bill_savings..usd,,out.bills.electricity.usd.savings -out.utility_bills.fuel_oil_bill..usd,,out.bills.fuel_oil.usd -out.utility_bills.fuel_oil_bill_savings..usd,,out.bills.fuel_oil.usd.savings -out.utility_bills.natural_gas_bill..usd,,out.bills.natural_gas.usd -out.utility_bills.natural_gas_bill_savings..usd,,out.bills.natural_gas.usd.savings -out.utility_bills.propane_bill..usd,,out.bills.propane.usd -out.utility_bills.propane_bill_savings..usd,,out.bills.propane.usd.savings -out.utility_bills.total_bill..usd,,out.bills.all_fuels.usd -out.utility_bills.total_bill_savings..usd,,out.bills.all_fuels.usd.savings -out.emissions.electricity.aer_high_re_cost_avg..co2e_kg,out.emissions.electricity.total.aer_highrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.emissions.electricity.total.aer_highrecostlowngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.aer_low_re_cost_avg..co2e_kg,out.emissions.electricity.total.aer_lowrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.emissions.electricity.total.aer_lowrecosthighngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.aer_mid_case_avg..co2e_kg,out.emissions.electricity.total.aer_midcase_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg,out.emissions.electricity.total.lrmer_highrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg,out.emissions.electricity.total.lrmer_highrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.emissions.electricity.total.lrmer_highrecostlowngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.emissions.electricity.total.lrmer_highrecostlowngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg,out.emissions.electricity.total.lrmer_lowrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg,out.emissions.electricity.total.lrmer_lowrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.emissions.electricity.total.lrmer_lowrecosthighngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.emissions.electricity.total.lrmer_lowrecosthighngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_mid_case_15..co2e_kg,out.emissions.electricity.total.lrmer_midcase_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.electricity.lrmer_mid_case_25..co2e_kg,out.emissions.electricity.total.lrmer_midcase_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.fuel_oil.total..co2e_kg,out.emissions.fuel_oil.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.natural_gas.total..co2e_kg,out.emissions.natural_gas.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.propane.total..co2e_kg,out.emissions.propane.total..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.aer_high_re_cost_avg..co2e_kg,out.emissions.total.aer_highrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,out.emissions.total.aer_highrecostlowngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.aer_low_re_cost_avg..co2e_kg,out.emissions.total.aer_lowrecost_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,out.emissions.total.aer_lowrecosthighngprice_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.aer_mid_case_avg..co2e_kg,out.emissions.total.aer_midcase_avg..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_high_re_cost_15..co2e_kg,out.emissions.total.lrmer_highrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_high_re_cost_25..co2e_kg,out.emissions.total.lrmer_highrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,out.emissions.total.lrmer_highrecostlowngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,out.emissions.total.lrmer_highrecostlowngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_low_re_cost_15..co2e_kg,out.emissions.total.lrmer_lowrecost_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_low_re_cost_25..co2e_kg,out.emissions.total.lrmer_lowrecost_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,out.emissions.total.lrmer_lowrecosthighngprice_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,out.emissions.total.lrmer_lowrecosthighngprice_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_mid_case_15..co2e_kg,out.emissions.total.lrmer_midcase_15..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions.total.lrmer_mid_case_25..co2e_kg,out.emissions.total.lrmer_midcase_25..co2e_kg,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.fuel_oil.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.natural_gas.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.propane.total..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.aer_mid_case_avg..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg,,No direct equivalent in ResStock 2024 Release 2 -out.energy_burden..percentage,,out.energy_burden.percentage -out.energy_burden_savings..percentage,,out.energy_burden.percentage.savings -,out.outdoor_air_drybulb_temp..c,out.outdoor_air_dryblub_temp.c -,out.outdoor_air_relative_humidity..percentage,Not published in ResStock 2024 Release 2 -,out.outdoor_air_wetbulb_temp..c,Not published in ResStock 2024 Release 2 -,out.outdoor_humidity_ratio..kgwater_per_kgdryair,Not published in ResStock 2024 Release 2 -,out.weather.diffuse_solar_radiation..watt_per_m2,Not published in ResStock 2024 Release 2 -,out.weather.direct_normal_solar_radiation..watt_per_m2,Not published in ResStock 2024 Release 2 -,out.weather.wind_speed..meter_per_second,Not published in ResStock 2024 Release 2 -,out.people.sensible_heating_rate..watt,Not published in ResStock 2024 Release 2 -,out.people.total_heating_rate..watt,Not published in ResStock 2024 Release 2 -,out.schedules.ceiling_fan,Not published in ResStock 2024 Release 2 -,out.schedules.clothes_dryer,Not published in ResStock 2024 Release 2 -,out.schedules.clothes_washer,Not published in ResStock 2024 Release 2 -,out.schedules.cooking_range,Not published in ResStock 2024 Release 2 -,out.schedules.cooling_setpoint..c,Not published in ResStock 2024 Release 2 -,out.schedules.dishwasher,Not published in ResStock 2024 Release 2 -,out.schedules.electric_vehicle_charging,Not published in ResStock 2024 Release 2 -,out.schedules.electric_vehicle_discharging,Not published in ResStock 2024 Release 2 -,out.schedules.heating_setpoint..c,Not published in ResStock 2024 Release 2 -,out.schedules.hot_water_clothes_washer,Not published in ResStock 2024 Release 2 -,out.schedules.hot_water_dishwasher,Not published in ResStock 2024 Release 2 -,out.schedules.hot_water_fixtures,Not published in ResStock 2024 Release 2 -,out.schedules.lighting_garage,Not published in ResStock 2024 Release 2 -,out.schedules.lighting_interior,Not published in ResStock 2024 Release 2 -,out.schedules.no_space_cooling,Not published in ResStock 2024 Release 2 -,out.schedules.no_space_heating,Not published in ResStock 2024 Release 2 -,out.schedules.occupants,Not published in ResStock 2024 Release 2 -,out.schedules.peak_period,Not published in ResStock 2024 Release 2 -,out.schedules.plug_loads_other,Not published in ResStock 2024 Release 2 -,out.schedules.plug_loads_tv,Not published in ResStock 2024 Release 2 -,out.schedules.power_outage,Not published in ResStock 2024 Release 2 -,out.schedules.pre_peak_period,Not published in ResStock 2024 Release 2 -,out.schedules.vacancy,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.ceiling_fan.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.clothes_washer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.clothes_washer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.cooling.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.cooling.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.dishwasher.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.dishwasher.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.ev_charging.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.ev_charging.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.freezer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.freezer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_exterior.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_garage.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_garage.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_interior.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.lighting_interior.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.mech_vent.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.mech_vent.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.net.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.net.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.plug_loads.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.plug_loads.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pool_heater.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pool_heater.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pool_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pool_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pv.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.pv.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.refrigerator.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.refrigerator.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.television.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.television.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.well_pump.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.electricity.well_pump.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.fuel_oil.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.natural_gas.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.propane.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.propane.total..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.fuel_oil.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.fireplace.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.fireplace.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.grill.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.grill.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.lighting.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.lighting.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.pool_heater.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.natural_gas.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.clothes_dryer.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.clothes_dryer.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.heating.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.heating.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.heating_hp_bkup.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.heating_hp_bkup.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.hot_water.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.hot_water.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.range_oven.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.range_oven.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.propane.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.site_energy.net.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.site_energy.net.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.site_energy.total.energy_consumption..tbtu,,Not published in ResStock 2024 Release 2 -calc.weighted.site_energy.total.energy_savings..tbtu,,Not published in ResStock 2024 Release 2 -completed_status,,Not published in ResStock 2024 Release 2 diff --git a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv deleted file mode 100644 index 075f3742fe..0000000000 --- a/postprocessing/resstockpostproc/resources/publication/data_dictionary.tsv +++ /dev/null @@ -1,842 +0,0 @@ -field_location field_name data_type units field_description -metadata_and_annual bldg_id string n/a The dwelling unit model ID number (between 1 and the number of samples). -metadata_and_annual completed_status string n/a The simulation status. -metadata_and_annual upgrade string n/a The upgrade number. -metadata_and_annual in.upgrade_name string n/a User-specificed name that describes the upgrade. -metadata_and_annual weight float n/a Number of dwelling units this model represents in real life. -metadata_and_annual applicability boolean n/a Whether the upgrade is applicable to the dwelling unit model. Will be always True for baseline. -metadata_and_annual in.sqft..ft2 float ft2 Floor Area, Conditioned -metadata_and_annual in.representative_income float usd Income for this dwelling unit. -metadata_and_annual in.county_name string n/a County name -metadata_and_annual in.ahs_region string n/a American Housing Survey region where the sample is located. -metadata_and_annual in.aiannh_area boolean n/a If the dwelling unit model is located in an American Indian/Alaska Native/Native Hawaiian (AIANNH) Area or not. -metadata_and_annual in.area_median_income string n/a Area median income of the household occupying the dwelling unit. Zero for vacant units. -metadata_and_annual in.ashrae_iecc_climate_zone_2004 string n/a Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. -metadata_and_annual in.ashrae_iecc_climate_zone_2004_sub_cz_split string n/a Climate zone of the dwelling unit according to ASHRAE 169 in 2004 and IECC in 2012. Climate zone 2A is split between counties in TX, LA and FL, GA, AL, and MS and climate zone 1A is split between counties in FL and HI. -metadata_and_annual in.bathroom_spot_vent_hour string n/a Bathroom spot ventilation daily start hour. -metadata_and_annual in.battery string n/a The presence, size, location, and efficiency of an onsite battery (not used in baseline models). -metadata_and_annual in.bedrooms integer n/a The number of bedrooms in the dwelling unit. -metadata_and_annual in.building_america_climate_zone string n/a The Building America Climate Zone where the sample is located. -metadata_and_annual in.cec_climate_zone string n/a The California Energy Commission Climate Zone where the sample is located. -metadata_and_annual in.ceiling_fan string n/a Presence and energy usage of ceiling fans at medium speed. -metadata_and_annual in.census_division string n/a The 2010 U.S. Census Division where the sample is located. -metadata_and_annual in.census_division_recs string n/a Census Division as used in RECS 2015 where the sample is located. RECS 2015 split the Mountain Census Division into north (CO, ID, MT, UT, WY) and south (AZ, NM, NV). -metadata_and_annual in.census_region string n/a The 2010 U.S. Census Region where the sample is located. -metadata_and_annual in.city string n/a The census-designated city where the sample is located. -metadata_and_annual in.clothes_dryer string n/a The presence, rated efficiency, and fuel type of the clothes dryer in a dwelling unit. -metadata_and_annual in.clothes_dryer_usage_level string n/a Clothes dryer energy usage level multiplier. -metadata_and_annual in.clothes_washer string n/a Presence and rated efficiency of the clothes washer. -metadata_and_annual in.clothes_washer_presence string n/a The presence of a clothes washer in the dwelling unit. -metadata_and_annual in.clothes_washer_usage_level string n/a Clothes washer energy usage level multiplier. -metadata_and_annual in.cooking_range string n/a Presence and fuel type of the cooking range. -metadata_and_annual in.cooking_range_usage_level string n/a Cooking range energy usage level multiplier. -metadata_and_annual in.cooling_unavailable_days string n/a Number of days in a year the cooling system is unavailable. -metadata_and_annual in.cooling_setpoint string n/a Baseline cooling setpoint with no offset applied. -metadata_and_annual in.cooling_setpoint_has_offset boolean n/a Presence of a cooling setpoint offset. -metadata_and_annual in.cooling_setpoint_offset_magnitude string n/a The magnitude of cooling setpoint offset. -metadata_and_annual in.cooling_setpoint_offset_period string n/a The period and offset for the dwelling unit’s cooling setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -metadata_and_annual in.corridor string n/a Type of corridor attached to multi-family units. -metadata_and_annual in.county string n/a The U.S. County where the sample is located. -metadata_and_annual in.county_and_puma string n/a The GISJOIN identifier for the County and the Public Use Microdata Area (PUMA) where the sample is located. -metadata_and_annual in.county_metro_status string n/a Whether the county is part of a census-defined metro area. -metadata_and_annual in.custom_state string n/a A custom selection of states to be able to have more fine tuned probability distributionin states where we have more data. -metadata_and_annual in.dehumidifier string n/a Presence, water removal rate, and humidity setpoint of the dehumidifier. -metadata_and_annual in.dishwasher string n/a The presence and rated efficiency of the dishwasher. -metadata_and_annual in.dishwasher_usage_level string n/a Dishwasher energy usage level multiplier. -metadata_and_annual in.door_area string n/a Area of exterior doors. -metadata_and_annual in.doors string n/a Exterior door material and properties. -metadata_and_annual in.duct_leakage_and_insulation string n/a Dcuct insulation and leakage to outside from the portion of ducts in unconditioned spaces. -metadata_and_annual in.duct_location string n/a Location of duct System. -metadata_and_annual in.eaves string n/a Depth of roof eaves. -metadata_and_annual in.electric_panel_service_rating..a integer amp Electric panel service or max current rating in Ampere (A). -metadata_and_annual in.electric_panel_service_rating_bin..a string amp Electric panel service or max current rating in bins of Ampere (A). -metadata_and_annual in.electric_vehicle_battery string n/a The type of electric vehicle and battery range. -metadata_and_annual in.electric_vehicle_charge_at_home string n/a Percentage of EV charging that occurs at the dwelling units. -metadata_and_annual in.electric_vehicle_charger string n/a Type of EV charger used at the dwelling unit. -metadata_and_annual in.electric_vehicle_miles_traveled integer n/a The number of miles an electric vehicle is driven in a year if the unit owns an electric vehicle. EVs are driven fewer miles than internal combustine engine (ICE) cars, so the max value is capped at 22,500 miles/yr and the distribution is shifted to reduce the mean. -metadata_and_annual in.electric_vehicle_outlet_access boolean n/a If the dwelling unit has an electric outlet within 20 feet of EV parking. -metadata_and_annual in.electric_vehicle_ownership boolean n/a If the dwelling unit owns an EV. -metadata_and_annual in.energystar_climate_zone_2023 string n/a Climate zones for windows, doors, and skylights per 2023 ENERGYSTAR guidelines. -metadata_and_annual in.federal_poverty_level string n/a Federal poverty level of the household occupying the dwelling unit. -metadata_and_annual in.generation_and_emissions_assessment_region string n/a The generation and carbon emissions assessment (GEA) region from Cambium 2023. -metadata_and_annual in.geometry_attic_type string n/a The dwelling unit attic type. -metadata_and_annual in.geometry_building_horizontal_location_mf string n/a Location of the multi-family attached unit horizontally within the building (left, middle, right). -metadata_and_annual in.geometry_building_horizontal_location_sfa string n/a Location of the single-family attached unit horizontally within the building (left, middle, right). -metadata_and_annual in.geometry_building_level_mf string n/a Location of the multi-family unit vertically within the building (bottom, middle, top). -metadata_and_annual in.geometry_building_number_units_mf integer n/a The number of dwelling units in the multi-family building where the dwelling unit is located. -metadata_and_annual in.geometry_building_number_units_sfa integer n/a Number of dwelling units in the single-family attached building where the dwelling unit is located. -metadata_and_annual in.geometry_building_type_acs string n/a The building type classification according to the U.S. Census American Community Survey (ACS). -metadata_and_annual in.geometry_building_type_height string n/a The 2009 Residential Energy Consumption Survey (RECS) building type, with multi-family buildings split out by low-rise, mid-rise, and high-rise. -metadata_and_annual in.geometry_building_type_recs string n/a The building type classification according to the Residential Energy Consumption Survey (RECS). -metadata_and_annual in.geometry_floor_area string n/a The finished floor area of the dwelling unit using bins from 2017-2019 AHS. -metadata_and_annual in.geometry_floor_area_bin string n/a The finished floor area bin from Residential Energy Consumption Survey (RECS). -metadata_and_annual in.geometry_foundation_type string n/a The type of foundation. -metadata_and_annual in.geometry_garage string n/a The size of an attached garage. -metadata_and_annual in.geometry_space_combination string n/a Valid combinations of building type, building level if it is multi-family, foundation, attic, and garage. -metadata_and_annual in.geometry_stories integer n/a The number of building stories. -metadata_and_annual in.geometry_stories_low_rise string n/a Number of building stories for low-rise buildings. -metadata_and_annual in.geometry_story_bin string n/a Binned height of the dwelling unit's building of more or less than 8 stories. -metadata_and_annual in.geometry_wall_exterior_finish string n/a Wall siding material and color. -metadata_and_annual in.geometry_wall_type string n/a The wall material used for thermal mass calculations of exterior walls. -metadata_and_annual in.ground_thermal_conductivity float n/a The thermal conductivity (Btu/hr-ft-F) of the ground used for foundation and geothermal heat pump heat transfer calculations. -metadata_and_annual in.has_pv boolean n/a If the dwelling unit has a rooftop photovoltaic system. -metadata_and_annual in.heating_fuel string n/a The primary heating fuel. -metadata_and_annual in.heating_unavailable_days string n/a Number of days in a year the heating system is unavailable. -metadata_and_annual in.heating_setpoint string n/a Baseline heating setpoint with no offset applied. -metadata_and_annual in.heating_setpoint_has_offset boolean n/a Presence of a heating setpoint offset. -metadata_and_annual in.heating_setpoint_offset_magnitude string n/a Magnitude of the heating setpoint offset. -metadata_and_annual in.heating_setpoint_offset_period string n/a The period and offset for the dwelling unit’s heating setpoint. Default for the day is from 9am to 5pm and for the night is 10pm to 7am. -metadata_and_annual in.holiday_lighting string n/a Use of holiday lighting (not currently modeled separately from other exterior lighting). -metadata_and_annual in.hot_water_distribution string n/a Type of distribution system and presence of hot water piping insulation. -metadata_and_annual in.hot_water_fixtures string n/a Hot water fixture usage. -metadata_and_annual in.household_has_tribal_persons string n/a The household occupying the dwelling unit has at least one tribal person in the household. -metadata_and_annual in.hvac_cooling_autosizing_factor string n/a The cooling airflow and capacity scaling factor applied to the auto-sizing methodology (not used in baseline models). -metadata_and_annual in.hvac_cooling_efficiency string n/a The presence and efficiency of the primary cooling system. -metadata_and_annual in.hvac_cooling_partial_space_conditioning string n/a The fraction of the finished floor area that the cooling system covers. -metadata_and_annual in.hvac_cooling_type string n/a The presence and type of primary cooling system. -metadata_and_annual in.hvac_has_ducts boolean n/a The presence of ducts. -metadata_and_annual in.hvac_has_shared_system string n/a The presence of an HVAC system shared between multiple dwelling units. -metadata_and_annual in.hvac_has_zonal_electric_heating boolean n/a Presence of electric baseboard heating. -metadata_and_annual in.hvac_heating_autosizing_factor string n/a The heating airflow and capacity scaling factor applied to the auto-sizing methodology (not used). -metadata_and_annual in.hvac_heating_efficiency string n/a The presence and efficiency of the primary heating system. -metadata_and_annual in.hvac_heating_type string n/a The presence and type of the primary heating system. -metadata_and_annual in.hvac_heating_type_and_fuel string n/a The presence, type, and fuel of primary heating system. -metadata_and_annual in.hvac_secondary_heating_efficiency string n/a The efficiency and type of the secondary heating system. -metadata_and_annual in.hvac_secondary_heating_fuel string n/a Secondary Heating Fuel for the dwelling unit -metadata_and_annual in.hvac_secondary_heating_partial_space_conditioning string n/a The fraction of heating load served by secondary heating system. -metadata_and_annual in.hvac_secondary_heating_type string n/a The efficiency and type of the secondary heating system. -metadata_and_annual in.hvac_shared_efficiencies string n/a The presence and efficiency of the shared HVAC system. -metadata_and_annual in.hvac_system_is_faulted boolean n/a The presence of the HVAC system having a fault (not used). -metadata_and_annual in.hvac_system_is_scaled boolean n/a Whether the HVAC system has been undersized or oversized (not used). -metadata_and_annual in.hvac_system_single_speed_ac_airflow string n/a Single speed central and room air conditioner actual air flow rates (not used). -metadata_and_annual in.hvac_system_single_speed_ac_charge string n/a Central and room air conditioner deviation between design/installed charge (not used). -metadata_and_annual in.hvac_system_single_speed_ashp_airflow string n/a Single speed air source heat pump actual air flow rates (not used). -metadata_and_annual in.hvac_system_single_speed_ashp_charge string n/a Air source heat pump deviation between design/installed charge (not used). -metadata_and_annual in.income string n/a Income bin of the household occupying the dwelling unit. -metadata_and_annual in.income_recs_2015 string n/a Income bin of the household occupying the dwelling unit that are aligned with the 2015 Residential Energy Consumption Survey (RECS). -metadata_and_annual in.income_recs_2020 string n/a Income bin of the household occupying the dwelling unit that are aligned with the 2020 Residential Energy Consumption Survey (RECS). -metadata_and_annual in.infiltration string n/a Total infiltration to the dwelling unit. -metadata_and_annual in.insulation_ceiling string n/a Ceiling insulation level (between the living space and unconditioned attic). -metadata_and_annual in.insulation_floor string n/a Floor insulation level. -metadata_and_annual in.insulation_foundation_wall string n/a Foundation walls insulation level. -metadata_and_annual in.insulation_rim_joist string n/a Insulation level for rim joists. -metadata_and_annual in.insulation_roof string n/a Finished roof insulation level. -metadata_and_annual in.insulation_slab string n/a Slab insulation level. -metadata_and_annual in.insulation_wall string n/a Wall construction type and insulation level. -metadata_and_annual in.interior_shading string n/a Type of window interior shading. -metadata_and_annual in.iso_rto_region string n/a The independent system operator (ISO) or regional transmission organization (RTO) region where the dwelling unit is located. -metadata_and_annual in.lighting string n/a Fraction of lighting types. -metadata_and_annual in.lighting_interior_use string n/a Interior lighting usage relative to the national average. -metadata_and_annual in.lighting_other_use string n/a Exterior and garage lighting usage relative to the national average. -metadata_and_annual in.location_region string n/a Custom ResStock region where the sample is located. -metadata_and_annual in.mechanical_ventilation string n/a Mechanical ventilation type and efficiency. -metadata_and_annual in.metropolitan_and_micropolitan_statistical_area string n/a The U.S. Metropolitan Statistical Area (MSA) or Micropolitan Statistical Area (MicroSA) where the sample is located. -metadata_and_annual in.misc_extra_refrigerator string n/a The presence and rated efficiency of the secondary refrigerator. -metadata_and_annual in.misc_freezer string n/a The presence and rated efficiency of a standalone freezer. -metadata_and_annual in.misc_gas_fireplace string n/a Presence of a gas fireplace.` -metadata_and_annual in.misc_gas_grill string n/a Presence of a gas grill. -metadata_and_annual in.misc_gas_lighting string n/a Presence of exterior gas lighting. -metadata_and_annual in.misc_hot_tub_spa string n/a The presence and heating fuel of a hot tub/spa at the dwelling unit. -metadata_and_annual in.misc_pool string n/a The presence of a pool at the dwelling unit. -metadata_and_annual in.misc_pool_heater string n/a The heating fuel of the pool heater if there is a pool. -metadata_and_annual in.misc_pool_pump string n/a Presence and size of pool pump. -metadata_and_annual in.misc_well_pump string n/a Presence of well pump for domestic water source. -metadata_and_annual in.natural_ventilation string n/a Schedule of natural ventilation from windows. -metadata_and_annual in.neighbors string n/a Presence and distance between the dwelling unit and the nearest neighbors to the left and right. -metadata_and_annual in.occupants string n/a The number of occupants living in the dwelling unit. -metadata_and_annual in.orientation string n/a Orientation of the front of the dwelling unit as it faces the street. -metadata_and_annual in.overhangs string n/a Presence, depth, and location of window overhangs -metadata_and_annual in.plug_load_diversity string n/a Plug load diversity multiplier intended to add variation in plug load profiles across all simulations. -metadata_and_annual in.plug_loads string n/a Plug load usage level which is varied by Census Division RECS and Building Type RECS. -metadata_and_annual in.puma string n/a The 2010 Public Use Microdata Area (PUMA) where the dwelling unit is located. -metadata_and_annual in.puma_metro_status string n/a The Public Use Microdata Area (PUMA) metropolitan status where the dwelling unit is located. -metadata_and_annual in.pv_orientation string n/a The presence and orientation of the photovoltaic system. -metadata_and_annual in.pv_system_size string n/a The size of the photovoltaic system. -metadata_and_annual in.radiant_barrier string n/a Presence of radiant barrier in the attic (not modeled). -metadata_and_annual in.range_spot_vent_hour string n/a Range spot ventilation daily start hour. -metadata_and_annual in.reeds_balancing_area string n/a The Regional Energy Deployment System Model (ReEDS) balancing area where the dwelling unit is located. -metadata_and_annual in.refrigerator string n/a The presence and rated efficiency of the primary refrigerator. -metadata_and_annual in.refrigerator_usage_level string n/a Refrigerator energy usage level multiplier. -metadata_and_annual in.roof_material string n/a Roof material and color. -metadata_and_annual in.state string n/a The U.S. State. -metadata_and_annual in.state_metro_median_income string n/a The census-supplied median income for dwelling units in the metro area where the dwelling unit is located, which can be different from the State Median Income. -metadata_and_annual in.tenure string n/a The tenancy (owner or renter) of the household occupying the dwelling unit. -metadata_and_annual in.usage_level string n/a Usage of major appliances relative to the national average. -metadata_and_annual in.vacancy_status string n/a The vacancy status (occupied or vacant) of the dwelling unit. -metadata_and_annual in.vintage string n/a Time period bin in which the building was constructed. -metadata_and_annual in.vintage_acs string n/a Time period bin in which the dwelling unit was constructed as defined by the U.S. Census American Community Survey (ACS). -metadata_and_annual in.water_heater_efficiency string n/a The efficiency, type, and heating fuel of water heater. -metadata_and_annual in.water_heater_fuel string n/a The water heater fuel type. -metadata_and_annual in.water_heater_in_unit boolean n/a Individual water heater present or not present in the dwelling unit that solely serves the specific dwelling unit. -metadata_and_annual in.water_heater_location string n/a location of water heater. -metadata_and_annual in.window_areas string n/a Window to wall ratios of the front, back, left, and right walls. -metadata_and_annual in.windows string n/a Construction type and efficiency levels of windows. -metadata_and_annual in.air_leakage_to_outside_ach50 float n/a Total infiltration to the dwelling unit adjusted by ratio of exterior envelope surface area to total envelope surface area. -metadata_and_annual in.applicable boolean n/a The measure was applied to the workflow. -metadata_and_annual in.units_represented integer n/a The number of dwelling units this simulation represents, which is different than the weight field. Should always be one. -metadata_and_annual in.simulation_control_run_period_begin_day_of_month integer n/a Starting day of the starting month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_begin_month integer n/a Starting month number (1 = January, 2 = February, etc.) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_calendar_year integer n/a Calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. -metadata_and_annual in.simulation_control_run_period_end_day_of_month integer n/a Ending day of the ending month (must be valid for month) for the annual run period desired. -metadata_and_annual in.simulation_control_run_period_end_month integer n/a End month number (1 = January, 2 = February, etc.) for the annual run period desired. -metadata_and_annual in.simulation_control_timestep integer n/a Value must be a divisor of 60. -metadata_and_annual in.utility_bill_electricity_fixed_charges float usd Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_electricity_marginal_rates float usd Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_fuel_oil_fixed_charges float usd Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_fuel_oil_marginal_rates float usd Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_natural_gas_fixed_charges float usd Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_natural_gas_marginal_rates float usd Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_propane_fixed_charges float usd Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_propane_marginal_rates float usd Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_scenario_names string n/a Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. -metadata_and_annual in.utility_bill_simple_filepaths string n/a Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header. -metadata_and_annual in.weather_file_city string n/a City from the EPW weather file. -metadata_and_annual in.weather_file_latitude float n/a Latitude from the EPW weather file. -metadata_and_annual in.weather_file_longitude float n/a Longitude from the EPW weather file. -metadata_and_annual in.heating_unavailable_period string n/a Heating unavailable period. -metadata_and_annual in.cooling_unavailable_period string n/a Cooling unavailable period. -metadata_and_annual out.params.door_area..ft2 float ft2 Door Area -metadata_and_annual out.params.duct_unconditioned_surface_area..ft2 float ft2 Duct Unconditioned Surface Area -metadata_and_annual out.params.floor_area_attic..ft2 float ft2 Floor Area, Attic -metadata_and_annual out.params.floor_area_attic_insulation_increase..ft2_delta_r_value float r_value Floor Area, Attic * Insulation Increase -metadata_and_annual out.params.floor_area_conditioned_infiltration_reduction..ft2_delta_ach50 float ach_50 Floor Area, Conditioned * Infiltration Reduction -metadata_and_annual out.params.floor_area_foundation..ft2 float ft2 Floor Area, Foundation -metadata_and_annual out.params.floor_area_lighting..ft2 float ft2 Floor Area, Lighting -metadata_and_annual out.params.flow_rate_mechanical_ventilation..cfm float cfm Flow Rate, Mechanical Ventilation -metadata_and_annual out.params.rim_joist_area_above_grade_exterior..ft2 float ft2 Rim Joist Area, Above-Grade, Exterior -metadata_and_annual out.params.roof_area..ft2 float ft2 Roof Area -metadata_and_annual out.params.size_cooling_system_primary..kbtu_per_hr float k_btu_h Size, Cooling System Primary -metadata_and_annual out.params.size_heat_pump_backup_primary..kbtu_per_hr float k_btu_h Size, Heat Pump Backup Primary -metadata_and_annual out.params.size_heating_system_primary..kbtu_per_hr float k_btu_h Size, Heating System Primary -metadata_and_annual out.params.size_heating_system_secondary..kbtu_per_hr float k_btu_h Size, Heating System Secondary -metadata_and_annual out.params.size_water_heater..gal float gal Size, Water Heater -metadata_and_annual out.params.slab_perimeter_exposed_conditioned..ft float ft Slab Perimeter, Exposed, Conditioned -metadata_and_annual out.params.wall_area_above_grade_conditioned..ft2 float ft2 Wall Area, Above-Grade, Conditioned -metadata_and_annual out.params.wall_area_above_grade_exterior..ft2 float ft2 Wall Area, Above-Grade, Exterior -metadata_and_annual out.params.wall_area_below_grade..ft2 float ft2 Wall Area, Below-Grade -metadata_and_annual out.params.window_area..ft2 float ft2 Window Area -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_count integer n/a Number of boreholes used for the geothermal heat pump system. -metadata_and_annual out.params.hvac_geothermal_loop_borehole_trench_length..ft float ft Single borehole length used for the geothermal heat pump system. Multiply by number of boreholes for total length. -metadata_and_annual out.electricity.ceiling_fan.energy_consumption..kwh float kwh Electricity consumed by ceiling fan. -metadata_and_annual out.electricity.clothes_dryer.energy_consumption..kwh float kwh Electricity consumed by clothes dryer. -metadata_and_annual out.electricity.clothes_washer.energy_consumption..kwh float kwh Electricity consumed by clothes washer. -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. -metadata_and_annual out.electricity.cooling.energy_consumption..kwh float kwh Electricity consumed by cooling systems excludes usage by fans/pumps. -metadata_and_annual out.electricity.dishwasher.energy_consumption..kwh float kwh Electricity consumed by dishwasher. -metadata_and_annual out.electricity.ev_charging.energy_consumption..kwh float kwh Electricity consumed by electric vehicle charging. -metadata_and_annual out.electricity.freezer.energy_consumption..kwh float kwh Electricity consumed by standalone freezers. -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption..kwh float kwh Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps. -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kwh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. -metadata_and_annual out.electricity.heating.energy_consumption..kwh float kwh Electricity consumed by heating systems excludes usage by fans/pumps. -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption..kwh float kwh Electricity consumed by spa heating. -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption..kwh float kwh Electricity consumed by spa pump. -metadata_and_annual out.electricity.hot_water.energy_consumption..kwh float kwh Electricity consumed by hot water system excludes recirc pump and solar thermal pump. -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption..kwh float kwh Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs -metadata_and_annual out.electricity.lighting_exterior.energy_consumption..kwh float kwh Electricity consumed by exterior lighting, includes exterior holiday lighting. -metadata_and_annual out.electricity.lighting_garage.energy_consumption..kwh float kwh Electricity consumed by lighting in the garage. -metadata_and_annual out.electricity.lighting_interior.energy_consumption..kwh float kwh Electricity consumed by interior lighting. -metadata_and_annual out.electricity.mech_vent.energy_consumption..kwh float kwh Electricity consumed by mechanical ventilation system, excludes preheating/precooling -metadata_and_annual out.electricity.plug_loads.energy_consumption..kwh float kwh Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump). -metadata_and_annual out.electricity.pool_heater.energy_consumption..kwh float kwh Electricity consumed by pool heater. -metadata_and_annual out.electricity.pool_pump.energy_consumption..kwh float kwh Electricity consumed by pool pump. -metadata_and_annual out.electricity.pv.energy_consumption..kwh float kwh Energy produced by rooftop PV systems. Negative value for any power produced -metadata_and_annual out.electricity.range_oven.energy_consumption..kwh float kwh Electricity consumed by range oven. -metadata_and_annual out.electricity.refrigerator.energy_consumption..kwh float kwh Electricity consumed by refrigerator. -metadata_and_annual out.electricity.television.energy_consumption..kwh float kwh Electricity consumed by television. -metadata_and_annual out.electricity.well_pump.energy_consumption..kwh float kwh Electricity consumed by well pump. -metadata_and_annual out.fuel_oil.heating.energy_consumption..kwh float kwh Fuel oil consumed by fuel oil heating systems, excludes heat pump backup. -metadata_and_annual out.fuel_oil.hot_water.energy_consumption..kwh float kwh Fuel oil consumed by fuel oil hot water systems -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption..kwh float kwh Natural gas consumed by natural gas clothes dryers. -metadata_and_annual out.natural_gas.fireplace.energy_consumption..kwh float kwh Natural gas consumed by natural gas fireplaces. -metadata_and_annual out.natural_gas.grill.energy_consumption..kwh float kwh Natural gas consumed by natural gas grills. -metadata_and_annual out.natural_gas.heating.energy_consumption..kwh float kwh Natural gas consumed by natural gas heating systems, excludes heat pump backup. -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kwh Natural gas consumed by spa heating. -metadata_and_annual out.natural_gas.hot_water.energy_consumption..kwh float kwh Natural gas consumed by natural gas hot water systems. -metadata_and_annual out.natural_gas.lighting.energy_consumption..kwh float kwh Natural gas consumed by natural gas lighting. -metadata_and_annual out.natural_gas.pool_heater.energy_consumption..kwh float kwh Natural gas consumed by natural gas pool heaters. -metadata_and_annual out.natural_gas.range_oven.energy_consumption..kwh float kwh Natural gas consumed by natural gas range and oven. -metadata_and_annual out.propane.clothes_dryer.energy_consumption..kwh float kwh Propane consumed by propane clothes dryers. -metadata_and_annual out.propane.heating.energy_consumption..kwh float kwh Propane consumed by propane heating systems, excludes heat pump backup -metadata_and_annual out.propane.hot_water.energy_consumption..kwh float kwh Propane consumed by propane hot water systems. -metadata_and_annual out.propane.range_oven.energy_consumption..kwh float kwh Propane consumed by range oven. -metadata_and_annual out.site_energy.net.energy_consumption..kwh float kwh Total site energy consumed subtracts any power produced by PV or generators -metadata_and_annual out.site_energy.total.energy_consumption..kwh float kwh Total site energy consumed, includes any battery charging/discharging -metadata_and_annual out.electricity.net.energy_consumption..kwh float kwh Total electricity consumed subtracts any power produced by PV or generators. -metadata_and_annual out.electricity.total.energy_consumption..kwh float kwh Total electricity consumed, includes any battery charging/discharging -metadata_and_annual out.fuel_oil.total.energy_consumption..kwh float kwh Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -metadata_and_annual out.natural_gas.total.energy_consumption..kwh float kwh Total natural gas consumed. -metadata_and_annual out.propane.total.energy_consumption..kwh float kwh Total propane energy consumed -metadata_and_annual out.hot_water.clothes_washer..gal float gal Hot water consumed by clothes washer -metadata_and_annual out.hot_water.dishwasher..gal float gal Hot water consumed by dishwasher -metadata_and_annual out.hot_water.distribution_waste..gal float gal Hot water consumed by water distribution system (water remaining in the pipe) -metadata_and_annual out.hot_water.fixtures..gal float gal Hot water consumed by showers, sinks, and baths -metadata_and_annual out.capacity.cooling..btu_per_hr float btu_h Cooling Capacity -metadata_and_annual out.capacity.heat_pump_backup..btu_per_hr float btu_h Heat pump backup Capacity -metadata_and_annual out.capacity.heating..btu_per_hr float btu_h Heating Capacity -metadata_and_annual out.load.cooling.energy_delivered..kbtu float kbtu Total energy delivered by cooling system includes HVAC distribution losses. -metadata_and_annual out.load.heating.energy_delivered..kbtu float kbtu Total energy delivered by heating system includes HVAC distribution losses. -metadata_and_annual out.load.hot_water.energy_delivered..kbtu float kbtu Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems -metadata_and_annual out.load.hot_water.energy_solar_thermal..kbtu float kbtu Total energy delivered by solar thermal water heater. -metadata_and_annual out.load.hot_water.energy_tank_losses..kbtu float kbtu Water heater tank losses energy. -metadata_and_annual out.load.cooling.peak..kbtu_per_hr float kbtu_hr Maximum cooling load delivered by cooling system includes HVAC distribution losses. -metadata_and_annual out.load.heating.peak..kbtu_per_hr float kbtu_hr Maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period. -metadata_and_annual out.qoi.electricity.maximum_daily_peak_summer..kw float kw Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). -metadata_and_annual out.qoi.electricity.maximum_daily_peak_winter..kw float kw Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). -metadata_and_annual out.unmet_hours.cooling..hr float hr Number of hours where the cooling setpoint is not maintained. -metadata_and_annual out.unmet_hours.ev_driving..hr float hr Number of hours that an EV user cannot drive to due to insufficient charge in battery. -metadata_and_annual out.unmet_hours.heating..hr float hr Number of hours where the heating setpoint is not maintained. -metadata_and_annual out.emissions.electricity.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.emissions.electricity.aer_mid_case_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions.total.aer_mid_case_avg..co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -metadata_and_annual out.utility_bills.electricity_bill..usd float usd Scenario annual total charges for electricity. -metadata_and_annual out.utility_bills.fuel_oil_bill..usd float usd Scenario annual total charges for fuel oil. -metadata_and_annual out.utility_bills.natural_gas_bill..usd float usd Scenario annual total charges for natural gas. -metadata_and_annual out.utility_bills.propane_bill..usd float usd Scenario annual total charges for propane. -metadata_and_annual out.utility_bills.total_bill..usd float usd Scenario annual total charges. -metadata_and_annual out.params.panel_load_total_load.2023_nec_existing_dwelling_load_based..w float w Total electric load calculated using load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_load_occupied_capacity.2023_nec_existing_dwelling_load_based..a integer amp Electric panel total occupied capacity, = out.panel.load.total_load.2023_nec_existing_dwelling_load_based.w / 240 -metadata_and_annual out.params.panel_load_headroom_capacity.2023_nec_existing_dwelling_load_based..a integer amp Electric panel total headroom capacity, = in.electric_panel_service_rating - out.panel.load.occupied_capacity.2023_nec_existing_dwelling_load_based.a -metadata_and_annual out.params.panel_load_clothes_dryer..w float w Electric load of clothes dryer, for electric only -metadata_and_annual out.params.panel_load_cooling..w float w Electric load of space cooling. For the total load calculation, the max of heating or cooling is used, not both -metadata_and_annual out.params.panel_load_dishwasher..w float w Electric load of dishwasher -metadata_and_annual out.params.panel_load_ev_charging..w float w Electric load of electric vehicle charging equipment -metadata_and_annual out.params.panel_load_heating..w float w Electric load of space heating. For the total load calculation, the max of heating or cooling is used, not both -metadata_and_annual out.params.panel_load_hot_water..w float w Electric load of water heater, for electric only -metadata_and_annual out.params.panel_load_mech_vent..w float w Electric load of mechanical ventilation -metadata_and_annual out.params.panel_load_other..w float w Other electric load, including but not limited to lighting/general receptacles at 3 W/sqft, refrigerator, microwave, and garbage disposal. -metadata_and_annual out.params.panel_load_permanent_spa_heat..w float w Electric load of permanent spa heater, for electric only -metadata_and_annual out.params.panel_load_permanent_spa_pump..w float w Electric load of permanent spa pump -metadata_and_annual out.params.panel_load_pool_heater..w float w Electric load of pool heater, for electric only -metadata_and_annual out.params.panel_load_pool_pump..w float w Electric load of pool pump -metadata_and_annual out.params.panel_load_range_oven..w float w Electric load of range oven, for electric only -metadata_and_annual out.params.panel_load_well_pump..w float w Electric load of well pump -metadata_and_annual in.electric_panel_breaker_space_total_count integer count Total breaker spaces on electric panel -metadata_and_annual out.params.panel_breaker_space_occupied_count integer count Total occupied breaker spaces on electric panel -metadata_and_annual out.params.panel_breaker_space_headroom_count integer count Total headroom breaker spaces on electric panel, = in.electric_panel_breaker_space_total_count - out.panel.breaker_space.occupied.count -metadata_and_annual out.params.panel_breaker_space_clothes_dryer_count integer count Breaker spaces occupied by clothes dryer -metadata_and_annual out.params.panel_breaker_space_cooling_count integer count Breaker spaces occupied by space cooling -metadata_and_annual out.params.panel_breaker_space_dishwasher_count integer count Breaker spaces occupied by dishwasher -metadata_and_annual out.params.panel_breaker_space_ev_charging_count integer count Breaker spaces occupied by electric vehicle charging equipment -metadata_and_annual out.params.panel_breaker_space_heating_count integer count Breaker spaces occupied by space heating -metadata_and_annual out.params.panel_breaker_space_hot_water_count integer count Breaker spaces occupied by water heater -metadata_and_annual out.params.panel_breaker_space_mech_vent_count integer count Breaker spaces occupied by mechanical ventilation -metadata_and_annual out.params.panel_breaker_space_other_count integer count Breaker spaces occupied by other loads -metadata_and_annual out.params.panel_breaker_space_permanent_spa_heat_count integer count Breaker spaces occupied by permanent spa heater -metadata_and_annual out.params.panel_breaker_space_permanent_spa_pump_count integer count Breaker spaces occupied by permanent spa pump -metadata_and_annual out.params.panel_breaker_space_pool_heater_count integer count Breaker spaces occupied by pool heater -metadata_and_annual out.params.panel_breaker_space_pool_pump_count integer count Breaker spaces occupied by pool pump -metadata_and_annual out.params.panel_breaker_space_range_oven_count integer count Breaker spaces occupied by range oven -metadata_and_annual out.params.panel_breaker_space_well_pump_count integer count Breaker spaces occupied by well pump -metadata_and_annual out.params.panel_load_total_load_savings.2023_nec_existing_dwelling_load_based..w float w Total amount of electrical load reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_load_occupied_capacity_savings.2023_nec_existing_dwelling_load_based..a integer amp Total amount of occupied electrical capacity reduced from an energy measure per load-based method for existing dwelings per 2023 National Electrical Code -metadata_and_annual out.params.panel_breaker_space_occupied_savings_count integer count Number of breaker spaces reduced from an energy measure -metadata_and_annual out.params.panel_constraint_capacity.2023_nec_existing_dwelling_load_based boolean bool Whether electric panel is capacity-constrained per the given method, defined as when out.panel.load.headroom_capacity.2023_nec_existing_dwelling_load_based.a < 0 -metadata_and_annual out.params.panel_constraint_breaker_space boolean bool Whether electric panel is space-constrained, defined as when out.panel.breaker_space.headroom.count < 0 -metadata_and_annual out.params.panel_constraint_overall.2023_nec_existing_dwelling_load_based string categorical "Summarize overall electric panel constraint per the given method as ""No Constraint"", ""Space Constrained Only"", ""Capacity Constrained Only"", or ""Capacity and Space Constrained""" -metadata_and_annual out.energy_burden..percentage float percentage Percentage of income spent on energy -metadata_and_annual out.electricity.ceiling_fan.energy_savings..kwh float kwh Electricity savings from ceiling fan. -metadata_and_annual out.electricity.clothes_dryer.energy_savings..kwh float kwh Electricity savings from clothes dryer. -metadata_and_annual out.electricity.clothes_washer.energy_savings..kwh float kwh Electricity savings from clothes washer. -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (geothermal loop) during cooling. -metadata_and_annual out.electricity.cooling.energy_savings..kwh float kwh Electricity savings from cooling systems excludes usage by fans/pumps. -metadata_and_annual out.electricity.dishwasher.energy_savings..kwh float kwh Electricity savings from dishwasher. -metadata_and_annual out.electricity.ev_charging.energy_savings..kwh float kwh Electricity savings from electric vehicle charging. -metadata_and_annual out.electricity.freezer.energy_savings..kwh float kwh Electricity savings from standalone freezers. -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings..kwh float kwh Electricity savings from heat pump backup, excludes usage by heat pump backup fans/pumps. -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings..kwh float kwh Electricity savings from supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. -metadata_and_annual out.electricity.heating.energy_savings..kwh float kwh Electricity savings from heating systems excludes usage by fans/pumps. -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings..kwh float kwh Electricity savings from spa heating. -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings..kwh float kwh Electricity savings from spa pump. -metadata_and_annual out.electricity.hot_water.energy_savings..kwh float kwh Electricity savings from hot water system excludes recirc pump and solar thermal pump. -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings..kwh float kwh Electricity savings from solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs -metadata_and_annual out.electricity.lighting_exterior.energy_savings..kwh float kwh Electricity savings from exterior lighting, includes exterior holiday lighting. -metadata_and_annual out.electricity.lighting_garage.energy_savings..kwh float kwh Electricity savings from lighting in the garage. -metadata_and_annual out.electricity.lighting_interior.energy_savings..kwh float kwh Electricity savings from interior lighting. -metadata_and_annual out.electricity.mech_vent.energy_savings..kwh float kwh Electricity savings from mechanical ventilation system, excludes preheating/precooling -metadata_and_annual out.electricity.plug_loads.energy_savings..kwh float kwh Electricity savings from plug loads, excludes independently reported plug loads (e.g., well pump). -metadata_and_annual out.electricity.pool_heater.energy_savings..kwh float kwh Electricity savings from pool heater. -metadata_and_annual out.electricity.pool_pump.energy_savings..kwh float kwh Electricity savings from pool pump. -metadata_and_annual out.electricity.pv.energy_savings..kwh float kwh Energy produced by rooftop PV systems. Negative value for any power produced -metadata_and_annual out.electricity.range_oven.energy_savings..kwh float kwh Electricity savings from range oven. -metadata_and_annual out.electricity.refrigerator.energy_savings..kwh float kwh Electricity savings from refrigerator. -metadata_and_annual out.electricity.television.energy_savings..kwh float kwh Electricity savings from television. -metadata_and_annual out.electricity.well_pump.energy_savings..kwh float kwh Electricity savings from well pump. -metadata_and_annual out.fuel_oil.heating.energy_savings..kwh float kwh Fuel oil savings from fuel oil heating systems, excludes heat pump backup. -metadata_and_annual out.fuel_oil.hot_water.energy_savings..kwh float kwh Fuel oil savings from fuel oil hot water systems -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings..kwh float kwh Natural gas savings from natural gas clothes dryers. -metadata_and_annual out.natural_gas.fireplace.energy_savings..kwh float kwh Natural gas savings from natural gas fireplaces. -metadata_and_annual out.natural_gas.grill.energy_savings..kwh float kwh Natural gas savings from natural gas grills. -metadata_and_annual out.natural_gas.heating.energy_savings..kwh float kwh Natural gas savings from natural gas heating systems, excludes heat pump backup. -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings..kwh float kwh Natural gas savings from spa heating. -metadata_and_annual out.natural_gas.hot_water.energy_savings..kwh float kwh Natural gas savings from natural gas hot water systems. -metadata_and_annual out.natural_gas.lighting.energy_savings..kwh float kwh Natural gas savings from natural gas lighting. -metadata_and_annual out.natural_gas.pool_heater.energy_savings..kwh float kwh Natural gas savings from natural gas pool heaters. -metadata_and_annual out.natural_gas.range_oven.energy_savings..kwh float kwh Natural gas savings from natural gas range and oven. -metadata_and_annual out.propane.clothes_dryer.energy_savings..kwh float kwh Propane savings from propane clothes dryers. -metadata_and_annual out.propane.heating.energy_savings..kwh float kwh Propane savings from propane heating systems, excludes heat pump backup -metadata_and_annual out.propane.hot_water.energy_savings..kwh float kwh Propane savings from propane hot water systems. -metadata_and_annual out.propane.range_oven.energy_savings..kwh float kwh Propane savings from range oven. -metadata_and_annual out.site_energy.net.energy_savings..kwh float kwh Total net site energy savings. -metadata_and_annual out.site_energy.total.energy_savings..kwh float kwh Total site energy savings. -metadata_and_annual out.electricity.net.energy_savings..kwh float kwh Total net electricity savings. -metadata_and_annual out.electricity.total.energy_savings..kwh float kwh Total electricity savings. -metadata_and_annual out.fuel_oil.total.energy_savings..kwh float kwh Total fuel oil savings -metadata_and_annual out.natural_gas.total.energy_savings..kwh float kwh Total natural gas savings. -metadata_and_annual out.propane.total.energy_savings..kwh float kwh Total propane savings. -metadata_and_annual out.load.cooling.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by cooling system includes HVAC distribution losses. -metadata_and_annual out.load.heating.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by heating system includes HVAC distribution losses. -metadata_and_annual out.load.hot_water.energy_delivered_savings..kbtu float kbtu Savings on the total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems -metadata_and_annual out.load.hot_water.energy_solar_thermal_savings..kbtu float kbtu Savings on the total energy delivered by solar thermal water heater. -metadata_and_annual out.load.hot_water.energy_tank_losses_savings..kbtu float kbtu Savings on the water heater tank losses energy. -metadata_and_annual out.load.cooling.peak_savings..kbtu_per_hr float kbtu_hr Reduction on the maximum cooling load delivered by cooling system includes HVAC distribution losses. -metadata_and_annual out.load.heating.peak_savings..kbtu_per_hr float kbtu_hr Reduction on the maximum heating energy delivered by heating system includes HVAC distribution losses over a 60 min time period -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_summer..kw float kw Reduction on the maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere). -metadata_and_annual out.qoi.electricity.maximum_daily_peak_savings_winter..kw float kw Reduction on the maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere). -metadata_and_annual out.unmet_hours_reduction.cooling..hr float hour Reduction on the number of hours where the cooling setpoint is not maintained. -metadata_and_annual out.unmet_hours_reduction.heating..hr float hour Reduction on the number of hours where the heating setpoint is not maintained. -metadata_and_annual out.emissions.fuel_oil.total..co2e_kg float n/a Emissions from on-site fuel oil consumption. -metadata_and_annual out.emissions.natural_gas.total..co2e_kg float n/a Emissions from on-site natural gas consumption. -metadata_and_annual out.emissions.propane.total..co2e_kg float n/a Emissions from on-site propane consumption. -metadata_and_annual out.emissions_reduction.fuel_oil.total..co2e_kg float n/a Emissions reduction from on-site fuel oil consumption. -metadata_and_annual out.emissions_reduction.natural_gas.total..co2e_kg float n/a Emissions reduction from on-site natural gas consumption. -metadata_and_annual out.emissions_reduction.propane.total..co2e_kg float n/a Emissions reduction from on-site propane consumption. -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_mid_case_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.electricity.aer_mid_case_avg..co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -metadata_and_annual out.emissions_reduction.total.aer_mid_case_avg..co2e_kg float kg Scenario total emissions reduction, includes any battery charging/discharging -metadata_and_annual out.utility_bills.electricity_bill_savings..usd float usd Savigns on the scenario annual total charges for electricity. -metadata_and_annual out.utility_bills.fuel_oil_bill_savings..usd float usd Savigns on the scenario annual total charges for fuel oil. -metadata_and_annual out.utility_bills.natural_gas_bill_savings..usd float usd Savigns on the scenario annual total charges for natural gas. -metadata_and_annual out.utility_bills.propane_bill_savings..usd float usd Savigns on the scenario annual total charges for propane. -metadata_and_annual out.utility_bills.total_bill_savings..usd float usd Savigns on the scenario annual total charges. -metadata_and_annual out.energy_burden_savings..percentage float percentage Reduction on the percentage of income spent on energy -metadata_and_annual out.electricity.ceiling_fan.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.ceiling_fan.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.clothes_washer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.clothes_washer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.cooling.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.cooling.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.cooling_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.cooling_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.dishwasher.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.dishwasher.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.ev_charging.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.ev_charging.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.freezer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.freezer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_fans_pumps.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_fans_pumps.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_hp_bkup.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_hp_bkup.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.heating_hp_bkup_fa.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.hot_water_solar_th.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.hot_water_solar_th.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_exterior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_exterior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_garage.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_garage.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_interior.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.lighting_interior.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.mech_vent.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.mech_vent.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.permanent_spa_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.permanent_spa_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.plug_loads.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.plug_loads.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.pool_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.pool_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.pv.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.pv.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.refrigerator.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.refrigerator.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.television.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.television.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.electricity.well_pump.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.electricity.well_pump.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.fuel_oil.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.fireplace.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.fireplace.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.grill.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.grill.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.lighting.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.lighting.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.permanent_spa_heat.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.pool_heater.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.pool_heater.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.natural_gas.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.natural_gas.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.propane.clothes_dryer.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.propane.clothes_dryer.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.propane.heating.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.propane.heating.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.propane.hot_water.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.propane.hot_water.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.propane.range_oven.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.propane.range_oven.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.propane.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.propane.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.site_energy.net.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.site_energy.net.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual out.site_energy.total.energy_consumption_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy consumption by dividing by conditioned floor area -metadata_and_annual out.site_energy.total.energy_savings_intensity..kwh_per_ft2 float kwh_per_ft2 Calculated from annual energy savings by dividing by conditioned floor area -metadata_and_annual upgrade.electric_vehicle_charger string n/a Indicates the electric vehicle charger the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.electric_vehicle_efficiency_increase string n/a Indicates the efficiency increase of the electric vehicle the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.electric_vehicle_ownership string n/a Indicates the electric vehicle ownership of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.heating_fuel string n/a Indicates the heating fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_cooling_efficiency string n/a Indicates the efficiency of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_cooling_partial_space_conditioning string n/a Indicates the partial space conditioning of the HVAC cooling the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_heating_efficiency string n/a Indicates the efficiency of the HVAC heating the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_heating_type_and_fuel string n/a Indicates the heating type and fuel the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.infiltration_reduction string n/a Indicates the infiltration reduction of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.insulation_ceiling string n/a Indicates the insulation ceiling of the building the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.water_heater_efficiency string n/a Indicates the efficiency of the water heater the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.water_heater_fuel string n/a Indicates which fuel is used for the water heater the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.hvac_detailed_performance_data string n/a Indicates the HVAC detailed performance data the model is upgraded to. Blank value indicates no upgrade. -metadata_and_annual upgrade.demand_flexibility_electric_vehicle string n/a Indicates if demand flexibility is applied to electric vehicle in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.demand_flexibility_hvac string n/a Indicates if demand flexibility is applied to HVAC in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.demand_flexibility_random_shift string n/a Indicates the number of minutes of random shift applied for demand flexibility in the model. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.duct_leakage_and_insulation string n/a Indicates the duct leakge to outside and duct insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.infiltration string n/a Indicates the infiltration rate the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.insulation_wall string n/a Indicates the wall type and insulation the model is upgraded to. Blank value indicates the upgrade didn't apply. -metadata_and_annual upgrade.windows string n/a Only appears when at least one building has this upgrade. -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.cooling.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.dishwasher.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.ev_charging.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.freezer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.mech_vent.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.net.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.plug_loads.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pool_heater.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pool_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pv.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.refrigerator.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.television.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.well_pump.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.grill.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.lighting.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.heating.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.hot_water.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.range_oven.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.site_energy.net.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.site_energy.total.energy_consumption..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.fuel_oil.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.natural_gas.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions.propane.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.total.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.fuel_oil.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.natural_gas.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.propane.total..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.ceiling_fan.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.clothes_washer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.cooling.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.cooling_fans_pumps.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.dishwasher.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.ev_charging.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.freezer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_fans_pumps.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_hp_bkup.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.heating_hp_bkup_fa.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.hot_water_solar_th.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_exterior.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_garage.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.lighting_interior.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.mech_vent.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.net.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.permanent_spa_heat.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.permanent_spa_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.plug_loads.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pool_heater.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pool_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.pv.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.refrigerator.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.television.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.electricity.well_pump.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.fuel_oil.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.fireplace.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.grill.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.lighting.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.permanent_spa_heat.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.pool_heater.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.natural_gas.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.clothes_dryer.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.heating.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.hot_water.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.range_oven.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.propane.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.site_energy.net.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.site_energy.total.energy_savings..tbtu float tbtu Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_high_re_cost_low_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_low_re_cost_high_ng_price_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.aer_mid_case_avg..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_high_re_cost_low_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_low_re_cost_high_ng_price_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_15..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -metadata_and_annual calc.weighted.emissions_reduction.electricity.lrmer_mid_case_25..co2e_mmt float co2e_mmt Calculated from annual results by multiplying by weight. -timeseries_aggregates out.electricity.ceiling_fan.energy_consumption..kwh float kWh Electricity consumed by ceiling fan. -timeseries_aggregates out.electricity.clothes_dryer.energy_consumption..kwh float kWh Electricity consumed by clothes dryer. -timeseries_aggregates out.electricity.clothes_washer.energy_consumption..kwh float kWh Electricity consumed by clothes washer. -timeseries_aggregates out.electricity.cooling_fans_pumps.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (geothermal loop) during cooling. -timeseries_aggregates out.electricity.cooling.energy_consumption..kwh float kWh Electricity consumed by cooling systems excludes usage by fans/pumps. -timeseries_aggregates out.electricity.dishwasher.energy_consumption..kwh float kWh Electricity consumed by dishwasher. -timeseries_aggregates out.electricity.ev_charging.energy_consumption..kwh float kWh Electricity consumed by electric vehicle charging. -timeseries_aggregates out.electricity.freezer.energy_consumption..kwh float kWh Electricity consumed by standalone freezers. -timeseries_aggregates out.electricity.heating_fans_pumps.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution or geothermal loop) during heating. -timeseries_aggregates out.electricity.heating_hp_bkup.energy_consumption..kwh float kWh Electricity consumed by heat pump backup, excludes usage by heat pump backup fans/pumps. -timeseries_aggregates out.electricity.heating_hp_bkup_fa.energy_consumption..kwh float kWh Electricity consumed by supply fan (air distribution) or circulating pump (hydronic distribution) during heat pump backup. -timeseries_aggregates out.electricity.heating.energy_consumption..kwh float kWh Electricity consumed by heating systems excludes usage by fans/pumps. -timeseries_aggregates out.electricity.permanent_spa_heat.energy_consumption..kwh float kWh Electricity consumed by spa heating. -timeseries_aggregates out.electricity.permanent_spa_pump.energy_consumption..kwh float kWh Electricity consumed by spa pump. -timeseries_aggregates out.electricity.hot_water.energy_consumption..kwh float kWh Electricity consumed by hot water system excludes recirc pump and solar thermal pump. -timeseries_aggregates out.electricity.hot_water_solar_th.energy_consumption..kwh float kWh Electricity consumed by solar thermal hot water system. Non-zero only when using detailed (not simple) solar thermal inputs -timeseries_aggregates out.electricity.lighting_exterior.energy_consumption..kwh float kWh Electricity consumed by exterior lighting, includes exterior holiday lighting. -timeseries_aggregates out.electricity.lighting_garage.energy_consumption..kwh float kWh Electricity consumed by lighting in the garage. -timeseries_aggregates out.electricity.lighting_interior.energy_consumption..kwh float kWh Electricity consumed by interior lighting. -timeseries_aggregates out.electricity.mech_vent.energy_consumption..kwh float kWh Electricity consumed by mechanical ventilation system, excludes preheating/precooling -timeseries_aggregates out.electricity.plug_loads.energy_consumption..kwh float kWh Electricity consumed by plug loads, excludes independently reported plug loads (e.g., well pump). -timeseries_aggregates out.electricity.pool_heater.energy_consumption..kwh float kWh Electricity consumed by pool heater. -timeseries_aggregates out.electricity.pool_pump.energy_consumption..kwh float kWh Electricity consumed by pool pump. -timeseries_aggregates out.electricity.pv.energy_consumption..kwh float kWh Energy produced by rooftop PV systems. Negative value for any power produced -timeseries_aggregates out.electricity.range_oven.energy_consumption..kwh float kWh Electricity consumed by range oven. -timeseries_aggregates out.electricity.refrigerator.energy_consumption..kwh float kWh Electricity consumed by refrigerator. -timeseries_aggregates out.electricity.television.energy_consumption..kwh float kWh Electricity consumed by television. -timeseries_aggregates out.electricity.well_pump.energy_consumption..kwh float kWh Electricity consumed by well pump. -timeseries_aggregates out.fuel_oil.heating.energy_consumption..kwh float kWh Fuel oil consumed by fuel oil heating systems, excludes heat pump backup. -timeseries_aggregates out.fuel_oil.hot_water.energy_consumption..kwh float kWh Fuel oil consumed by fuel oil hot water systems -timeseries_aggregates out.natural_gas.clothes_dryer.energy_consumption..kwh float kWh Natural gas consumed by natural gas clothes dryers. -timeseries_aggregates out.natural_gas.fireplace.energy_consumption..kwh float kWh Natural gas consumed by natural gas fireplaces. -timeseries_aggregates out.natural_gas.grill.energy_consumption..kwh float kWh Natural gas consumed by natural gas grills. -timeseries_aggregates out.natural_gas.heating_hp_bkup.energy_consumption..kwh float kWh Natural gas consumed by heat pump backup. -timeseries_aggregates out.natural_gas.heating.energy_consumption..kwh float kWh Natural gas consumed by natural gas heating systems, excludes heat pump backup. -timeseries_aggregates out.natural_gas.permanent_spa_heat.energy_consumption..kwh float kWh Natural gas consumed by spa heating. -timeseries_aggregates out.natural_gas.hot_water.energy_consumption..kwh float kWh Natural gas consumed by natural gas hot water systems. -timeseries_aggregates out.natural_gas.lighting.energy_consumption..kwh float kWh Natural gas consumed by natural gas lighting. -timeseries_aggregates out.natural_gas.pool_heater.energy_consumption..kwh float kWh Natural gas consumed by natural gas pool heaters. -timeseries_aggregates out.natural_gas.range_oven.energy_consumption..kwh float kWh Natural gas consumed by natural gas range and oven. -timeseries_aggregates out.propane.clothes_dryer.energy_consumption..kwh float kWh Propane consumed by propane clothes dryers. -timeseries_aggregates out.propane.heating.energy_consumption..kwh float kWh Propane consumed by propane heating systems, excludes heat pump backup -timeseries_aggregates out.propane.hot_water.energy_consumption..kwh float kWh Propane consumed by propane hot water systems. -timeseries_aggregates out.propane.range_oven.energy_consumption..kwh float kWh Propane consumed by range oven. -timeseries_aggregates out.site_energy.net.energy_consumption..kwh float kWh Total site energy consumed subtracts any power produced by PV or generators -timeseries_aggregates out.site_energy.total.energy_consumption..kwh float kWh Total site energy consumed, includes any battery charging/discharging -timeseries_aggregates out.electricity.net.energy_consumption..kwh float kWh Total electricity consumed subtracts any power produced by PV or generators. -timeseries_aggregates out.electricity.total.energy_consumption..kwh float kWh Total electricity consumed, includes any battery charging/discharging -timeseries_aggregates out.fuel_oil.total.energy_consumption..kwh float kWh Total fuel oil consumed, includes 'fuel oil', 'fuel oil 1', 'fuel oil 2', 'fuel oil 4', 'fuel oil 5/6', 'kerosene', and 'diesel' -timeseries_aggregates out.natural_gas.total.energy_consumption..kwh float kWh Total natural gas consumed. -timeseries_aggregates out.propane.total.energy_consumption..kwh float kWh Total propane energy consumed -timeseries_aggregates out.load.cooling.energy_delivered..kbtu float kBtu Total energy delivered by cooling system includes HVAC distribution losses. -timeseries_aggregates out.load.heating.energy_delivered..kbtu float kBtu Total energy delivered by heating system includes HVAC distribution losses. -timeseries_aggregates out.load.hot_water.energy_delivered..kbtu float kBtu Total energy delivered by hot water system includes contributions by desuperheaters or solar thermal systems -timeseries_aggregates out.load.hot_water.energy_solar_thermal..kbtu float kBtu Total energy delivered by solar thermal water heater. -timeseries_aggregates out.load.hot_water.energy_tank_losses..kbtu float kBtu Water heater tank losses energy. -timeseries_aggregates out.total.lrmer_midcase_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_midcase_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.LRMER_HighRECost_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.LRMER_HighRECost_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecost_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecost_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecost_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_lowrecosthighngprice_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_25.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.lrmer_highrecostlowngprice_15.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecost_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecost_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecostlowngprice_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_highrecostlowngprice_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecost_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecost_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_lowrecosthighngprice_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.total.aer_midcase_avg__electricity.co2e_kg float kg Scenario total emissions for Electricity only, includes any battery charging/discharging -timeseries_aggregates out.total.aer_midcase_avg.co2e_kg float kg Scenario total emissions, includes any battery charging/discharging -timeseries_aggregates out.emissions.fuel_oil.total..co2e_kg float n/a Emissions from on-site fuel oil consumption. -timeseries_aggregates out.emissions.natural_gas.total..co2e_kg float n/a Emissions from on-site natural gas consumption. -timeseries_aggregates out.emissions.propane.total..co2e_kg float n/a Emissions from on-site propane consumption. diff --git a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv b/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv deleted file mode 100644 index d54af6c4af..0000000000 --- a/postprocessing/resstockpostproc/resources/publication/enumeration_dictionary.tsv +++ /dev/null @@ -1,58458 +0,0 @@ -metadata_column enumeration enumeration_description -applicability TRUE The upgrade is applicable to the building -completed_status Success Simulation for the model was completed -in.ahs_region "CBSA Atlanta-Sandy Springs-Roswell, GA" "American Housing Survey region Atlanta-Sandy Springs-Roswell, GA" -in.ahs_region "CBSA Boston-Cambridge-Newton, MA-NH" "American Housing Survey region Boston-Cambridge-Newton, MA-NH" -in.ahs_region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" "American Housing Survey region Chicago-Naperville-Elgin, IL-IN-WI" -in.ahs_region "CBSA Dallas-Fort Worth-Arlington, TX" "American Housing Survey region Dallas-Fort Worth-Arlington, TX" -in.ahs_region "CBSA Detroit-Warren-Dearborn, MI" "American Housing Survey region Detroit-Warren-Dearborn, MI" -in.ahs_region "CBSA Houston-The Woodlands-Sugar Land, TX" "American Housing Survey region Houston-The Woodlands-Sugar Land, TX" -in.ahs_region "CBSA Los Angeles-Long Beach-Anaheim, CA" "American Housing Survey region Los Angeles-Long Beach-Anaheim, CA" -in.ahs_region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" "American Housing Survey region Miami-Fort Lauderdale-West Palm Beach, FL" -in.ahs_region "CBSA New York-Newark-Jersey City, NY-NJ-PA" "American Housing Survey region New York-Newark-Jersey City, NY-NJ-PA" -in.ahs_region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" "American Housing Survey region Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -in.ahs_region "CBSA Phoenix-Mesa-Scottsdale, AZ" "American Housing Survey region Phoenix-Mesa-Scottsdale, AZ" -in.ahs_region "CBSA Riverside-San Bernardino-Ontario, CA" "American Housing Survey region Riverside-San Bernardino-Ontario, CA" -in.ahs_region "CBSA San Francisco-Oakland-Hayward, CA" "American Housing Survey region San Francisco-Oakland-Hayward, CA" -in.ahs_region "CBSA Seattle-Tacoma-Bellevue, WA" "American Housing Survey region Seattle-Tacoma-Bellevue, WA" -in.ahs_region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" "American Housing Survey region Washington-Arlington-Alexandria, DC-VA-MD-WV" -in.ahs_region Non-CBSA East North Central American Housing Survey region BSA East North Central -in.ahs_region Non-CBSA East South Central American Housing Survey region BSA East South Central -in.ahs_region Non-CBSA Middle Atlantic American Housing Survey region BSA Middle Atlantic -in.ahs_region Non-CBSA Mountain American Housing Survey region BSA Mountain -in.ahs_region Non-CBSA New England American Housing Survey region BSA New England -in.ahs_region Non-CBSA Pacific American Housing Survey region BSA Pacific -in.ahs_region Non-CBSA South Atlantic American Housing Survey region BSA South Atlantic -in.ahs_region Non-CBSA West North Central American Housing Survey region BSA West North Central -in.ahs_region Non-CBSA West South Central American Housing Survey region BSA West South Central -in.aiannh_area No The sample is not located in American Indian/Alaska Native/Native Hawaiian Area -in.aiannh_area Yes The sample is located in American Indian/Alaska Native/Native Hawaiian Area -in.air_leakage_to_outside_ach50 0.03094 Total infiltration to the dwelling unit is 0.03094 ACH50 -in.air_leakage_to_outside_ach50 0.06188 Total infiltration to the dwelling unit is 0.06188 ACH50 -in.air_leakage_to_outside_ach50 0.09282 Total infiltration to the dwelling unit is 0.09282 ACH50 -in.air_leakage_to_outside_ach50 0.09512 Total infiltration to the dwelling unit is 0.09512 ACH50 -in.air_leakage_to_outside_ach50 0.11826 Total infiltration to the dwelling unit is 0.11826 ACH50 -in.air_leakage_to_outside_ach50 0.12252 Total infiltration to the dwelling unit is 0.12252 ACH50 -in.air_leakage_to_outside_ach50 0.12376 Total infiltration to the dwelling unit is 0.12376 ACH50 -in.air_leakage_to_outside_ach50 0.1299 Total infiltration to the dwelling unit is 0.1299 ACH50 -in.air_leakage_to_outside_ach50 0.13125 Total infiltration to the dwelling unit is 0.131249999999999 ACH50 -in.air_leakage_to_outside_ach50 0.1547 Total infiltration to the dwelling unit is 0.1547 ACH50 -in.air_leakage_to_outside_ach50 0.15501 Total infiltration to the dwelling unit is 0.15501 ACH50 -in.air_leakage_to_outside_ach50 0.16336 Total infiltration to the dwelling unit is 0.16336 ACH50 -in.air_leakage_to_outside_ach50 0.17324 Total infiltration to the dwelling unit is 0.17324 ACH50 -in.air_leakage_to_outside_ach50 0.175 Total infiltration to the dwelling unit is 0.175 ACH50 -in.air_leakage_to_outside_ach50 0.17739 Total infiltration to the dwelling unit is 0.17739 ACH50 -in.air_leakage_to_outside_ach50 0.18564 Total infiltration to the dwelling unit is 0.18564 ACH50 -in.air_leakage_to_outside_ach50 0.19024 Total infiltration to the dwelling unit is 0.19024 ACH50 -in.air_leakage_to_outside_ach50 0.19485 Total infiltration to the dwelling unit is 0.194849999999999 ACH50 -in.air_leakage_to_outside_ach50 0.2042 Total infiltration to the dwelling unit is 0.2042 ACH50 -in.air_leakage_to_outside_ach50 0.20668 Total infiltration to the dwelling unit is 0.20668 ACH50 -in.air_leakage_to_outside_ach50 0.21468 Total infiltration to the dwelling unit is 0.214679999999999 ACH50 -in.air_leakage_to_outside_ach50 0.21658 Total infiltration to the dwelling unit is 0.21658 ACH50 -in.air_leakage_to_outside_ach50 0.21875 Total infiltration to the dwelling unit is 0.21875 ACH50 -in.air_leakage_to_outside_ach50 0.23512 Total infiltration to the dwelling unit is 0.23512 ACH50 -in.air_leakage_to_outside_ach50 0.23652 Total infiltration to the dwelling unit is 0.23652 ACH50 -in.air_leakage_to_outside_ach50 0.2378 Total infiltration to the dwelling unit is 0.237799999999999 ACH50 -in.air_leakage_to_outside_ach50 0.24504 Total infiltration to the dwelling unit is 0.24504 ACH50 -in.air_leakage_to_outside_ach50 0.24752 Total infiltration to the dwelling unit is 0.24752 ACH50 -in.air_leakage_to_outside_ach50 0.25821 Total infiltration to the dwelling unit is 0.25821 ACH50 -in.air_leakage_to_outside_ach50 0.25835 Total infiltration to the dwelling unit is 0.25835 ACH50 -in.air_leakage_to_outside_ach50 0.2598 Total infiltration to the dwelling unit is 0.2598 ACH50 -in.air_leakage_to_outside_ach50 0.25986 Total infiltration to the dwelling unit is 0.25986 ACH50 -in.air_leakage_to_outside_ach50 0.2625 Total infiltration to the dwelling unit is 0.262499999999999 ACH50 -in.air_leakage_to_outside_ach50 0.28536 Total infiltration to the dwelling unit is 0.28536 ACH50 -in.air_leakage_to_outside_ach50 0.28588 Total infiltration to the dwelling unit is 0.28588 ACH50 -in.air_leakage_to_outside_ach50 0.28624 Total infiltration to the dwelling unit is 0.28624 ACH50 -in.air_leakage_to_outside_ach50 0.29565 Total infiltration to the dwelling unit is 0.29565 ACH50 -in.air_leakage_to_outside_ach50 0.30625 Total infiltration to the dwelling unit is 0.306249999999999 ACH50 -in.air_leakage_to_outside_ach50 0.3094 Total infiltration to the dwelling unit is 0.3094 ACH50 -in.air_leakage_to_outside_ach50 0.31002 Total infiltration to the dwelling unit is 0.31002 ACH50 -in.air_leakage_to_outside_ach50 0.32475 Total infiltration to the dwelling unit is 0.32475 ACH50 -in.air_leakage_to_outside_ach50 0.32672 Total infiltration to the dwelling unit is 0.32672 ACH50 -in.air_leakage_to_outside_ach50 0.3311 Total infiltration to the dwelling unit is 0.3311 ACH50 -in.air_leakage_to_outside_ach50 0.33292 Total infiltration to the dwelling unit is 0.33292 ACH50 -in.air_leakage_to_outside_ach50 0.34305 Total infiltration to the dwelling unit is 0.343049999999999 ACH50 -in.air_leakage_to_outside_ach50 0.34428 Total infiltration to the dwelling unit is 0.34428 ACH50 -in.air_leakage_to_outside_ach50 0.34648 Total infiltration to the dwelling unit is 0.34648 ACH50 -in.air_leakage_to_outside_ach50 0.35 Total infiltration to the dwelling unit is 0.35 ACH50 -in.air_leakage_to_outside_ach50 0.35268 Total infiltration to the dwelling unit is 0.35268 ACH50 -in.air_leakage_to_outside_ach50 0.35478 Total infiltration to the dwelling unit is 0.35478 ACH50 -in.air_leakage_to_outside_ach50 0.3578 Total infiltration to the dwelling unit is 0.3578 ACH50 -in.air_leakage_to_outside_ach50 0.36169 Total infiltration to the dwelling unit is 0.36169 ACH50 -in.air_leakage_to_outside_ach50 0.36358 Total infiltration to the dwelling unit is 0.36358 ACH50 -in.air_leakage_to_outside_ach50 0.36747 Total infiltration to the dwelling unit is 0.36747 ACH50 -in.air_leakage_to_outside_ach50 0.38048 Total infiltration to the dwelling unit is 0.38048 ACH50 -in.air_leakage_to_outside_ach50 0.3897 Total infiltration to the dwelling unit is 0.389699999999999 ACH50 -in.air_leakage_to_outside_ach50 0.4084 Total infiltration to the dwelling unit is 0.4084 ACH50 -in.air_leakage_to_outside_ach50 0.41336 Total infiltration to the dwelling unit is 0.41336 ACH50 -in.air_leakage_to_outside_ach50 0.41391 Total infiltration to the dwelling unit is 0.41391 ACH50 -in.air_leakage_to_outside_ach50 0.42936 Total infiltration to the dwelling unit is 0.429359999999999 ACH50 -in.air_leakage_to_outside_ach50 0.43035 Total infiltration to the dwelling unit is 0.430349999999999 ACH50 -in.air_leakage_to_outside_ach50 0.4331 Total infiltration to the dwelling unit is 0.4331 ACH50 -in.air_leakage_to_outside_ach50 0.43401 Total infiltration to the dwelling unit is 0.43401 ACH50 -in.air_leakage_to_outside_ach50 0.4375 Total infiltration to the dwelling unit is 0.4375 ACH50 -in.air_leakage_to_outside_ach50 0.44432 Total infiltration to the dwelling unit is 0.44432 ACH50 -in.air_leakage_to_outside_ach50 0.45465 Total infiltration to the dwelling unit is 0.454649999999999 ACH50 -in.air_leakage_to_outside_ach50 0.4574 Total infiltration to the dwelling unit is 0.4574 ACH50 -in.air_leakage_to_outside_ach50 0.4641 Total infiltration to the dwelling unit is 0.464099999999999 ACH50 -in.air_leakage_to_outside_ach50 0.47024 Total infiltration to the dwelling unit is 0.47024 ACH50 -in.air_leakage_to_outside_ach50 0.47304 Total infiltration to the dwelling unit is 0.47304 ACH50 -in.air_leakage_to_outside_ach50 0.4756 Total infiltration to the dwelling unit is 0.475599999999999 ACH50 -in.air_leakage_to_outside_ach50 0.48996 Total infiltration to the dwelling unit is 0.48996 ACH50 -in.air_leakage_to_outside_ach50 0.49008 Total infiltration to the dwelling unit is 0.49008 ACH50 -in.air_leakage_to_outside_ach50 0.49665 Total infiltration to the dwelling unit is 0.49665 ACH50 -in.air_leakage_to_outside_ach50 0.5 Total infiltration to the dwelling unit is 0.5 ACH50 -in.air_leakage_to_outside_ach50 0.50092 Total infiltration to the dwelling unit is 0.50092 ACH50 -in.air_leakage_to_outside_ach50 0.51642 Total infiltration to the dwelling unit is 0.51642 ACH50 -in.air_leakage_to_outside_ach50 0.5167 Total infiltration to the dwelling unit is 0.5167 ACH50 -in.air_leakage_to_outside_ach50 0.51675 Total infiltration to the dwelling unit is 0.51675 ACH50 -in.air_leakage_to_outside_ach50 0.51956 Total infiltration to the dwelling unit is 0.51956 ACH50 -in.air_leakage_to_outside_ach50 0.5196 Total infiltration to the dwelling unit is 0.5196 ACH50 -in.air_leakage_to_outside_ach50 0.51972 Total infiltration to the dwelling unit is 0.51972 ACH50 -in.air_leakage_to_outside_ach50 0.53268 Total infiltration to the dwelling unit is 0.53268 ACH50 -in.air_leakage_to_outside_ach50 0.54084 Total infiltration to the dwelling unit is 0.54084 ACH50 -in.air_leakage_to_outside_ach50 0.54219 Total infiltration to the dwelling unit is 0.54219 ACH50 -in.air_leakage_to_outside_ach50 0.54537 Total infiltration to the dwelling unit is 0.54537 ACH50 -in.air_leakage_to_outside_ach50 0.5458 Total infiltration to the dwelling unit is 0.5458 ACH50 -in.air_leakage_to_outside_ach50 0.55913 Total infiltration to the dwelling unit is 0.55913 ACH50 -in.air_leakage_to_outside_ach50 0.56495 Total infiltration to the dwelling unit is 0.56495 ACH50 -in.air_leakage_to_outside_ach50 0.57175 Total infiltration to the dwelling unit is 0.57175 ACH50 -in.air_leakage_to_outside_ach50 0.57248 Total infiltration to the dwelling unit is 0.57248 ACH50 -in.air_leakage_to_outside_ach50 0.57868 Total infiltration to the dwelling unit is 0.57868 ACH50 -in.air_leakage_to_outside_ach50 0.5878 Total infiltration to the dwelling unit is 0.5878 ACH50 -in.air_leakage_to_outside_ach50 0.5913 Total infiltration to the dwelling unit is 0.5913 ACH50 -in.air_leakage_to_outside_ach50 0.60117 Total infiltration to the dwelling unit is 0.60117 ACH50 -in.air_leakage_to_outside_ach50 0.60249 Total infiltration to the dwelling unit is 0.60249 ACH50 -in.air_leakage_to_outside_ach50 0.60634 Total infiltration to the dwelling unit is 0.60634 ACH50 -in.air_leakage_to_outside_ach50 0.61245 Total infiltration to the dwelling unit is 0.61245 ACH50 -in.air_leakage_to_outside_ach50 0.6126 Total infiltration to the dwelling unit is 0.6126 ACH50 -in.air_leakage_to_outside_ach50 0.61435 Total infiltration to the dwelling unit is 0.61435 ACH50 -in.air_leakage_to_outside_ach50 0.6188 Total infiltration to the dwelling unit is 0.6188 ACH50 -in.air_leakage_to_outside_ach50 0.6201 Total infiltration to the dwelling unit is 0.6201 ACH50 -in.air_leakage_to_outside_ach50 0.64945 Total infiltration to the dwelling unit is 0.64945 ACH50 -in.air_leakage_to_outside_ach50 0.6495 Total infiltration to the dwelling unit is 0.6495 ACH50 -in.air_leakage_to_outside_ach50 0.65625 Total infiltration to the dwelling unit is 0.65625 ACH50 -in.air_leakage_to_outside_ach50 0.6622 Total infiltration to the dwelling unit is 0.6622 ACH50 -in.air_leakage_to_outside_ach50 0.66555 Total infiltration to the dwelling unit is 0.66555 ACH50 -in.air_leakage_to_outside_ach50 0.66584 Total infiltration to the dwelling unit is 0.66584 ACH50 -in.air_leakage_to_outside_ach50 0.66585 Total infiltration to the dwelling unit is 0.66585 ACH50 -in.air_leakage_to_outside_ach50 0.67404 Total infiltration to the dwelling unit is 0.67404 ACH50 -in.air_leakage_to_outside_ach50 0.67738 Total infiltration to the dwelling unit is 0.67738 ACH50 -in.air_leakage_to_outside_ach50 0.6861 Total infiltration to the dwelling unit is 0.686099999999999 ACH50 -in.air_leakage_to_outside_ach50 0.68856 Total infiltration to the dwelling unit is 0.68856 ACH50 -in.air_leakage_to_outside_ach50 0.69296 Total infiltration to the dwelling unit is 0.69296 ACH50 -in.air_leakage_to_outside_ach50 0.70536 Total infiltration to the dwelling unit is 0.70536 ACH50 -in.air_leakage_to_outside_ach50 0.70956 Total infiltration to the dwelling unit is 0.70956 ACH50 -in.air_leakage_to_outside_ach50 0.7134 Total infiltration to the dwelling unit is 0.713399999999999 ACH50 -in.air_leakage_to_outside_ach50 0.7156 Total infiltration to the dwelling unit is 0.7156 ACH50 -in.air_leakage_to_outside_ach50 0.72292 Total infiltration to the dwelling unit is 0.72292 ACH50 -in.air_leakage_to_outside_ach50 0.72335 Total infiltration to the dwelling unit is 0.723349999999999 ACH50 -in.air_leakage_to_outside_ach50 0.72345 Total infiltration to the dwelling unit is 0.723449999999999 ACH50 -in.air_leakage_to_outside_ach50 0.72716 Total infiltration to the dwelling unit is 0.72716 ACH50 -in.air_leakage_to_outside_ach50 0.73494 Total infiltration to the dwelling unit is 0.73494 ACH50 -in.air_leakage_to_outside_ach50 0.76534 Total infiltration to the dwelling unit is 0.76534 ACH50 -in.air_leakage_to_outside_ach50 0.7663 Total infiltration to the dwelling unit is 0.7663 ACH50 -in.air_leakage_to_outside_ach50 0.77232 Total infiltration to the dwelling unit is 0.77232 ACH50 -in.air_leakage_to_outside_ach50 0.77505 Total infiltration to the dwelling unit is 0.77505 ACH50 -in.air_leakage_to_outside_ach50 0.77934 Total infiltration to the dwelling unit is 0.77934 ACH50 -in.air_leakage_to_outside_ach50 0.78536 Total infiltration to the dwelling unit is 0.78536 ACH50 -in.air_leakage_to_outside_ach50 0.78716 Total infiltration to the dwelling unit is 0.78716 ACH50 -in.air_leakage_to_outside_ach50 0.79134 Total infiltration to the dwelling unit is 0.79134 ACH50 -in.air_leakage_to_outside_ach50 0.79902 Total infiltration to the dwelling unit is 0.79902 ACH50 -in.air_leakage_to_outside_ach50 0.80045 Total infiltration to the dwelling unit is 0.80045 ACH50 -in.air_leakage_to_outside_ach50 0.80156 Total infiltration to the dwelling unit is 0.80156 ACH50 -in.air_leakage_to_outside_ach50 0.8168 Total infiltration to the dwelling unit is 0.8168 ACH50 -in.air_leakage_to_outside_ach50 0.8268 Total infiltration to the dwelling unit is 0.8268 ACH50 -in.air_leakage_to_outside_ach50 0.82775 Total infiltration to the dwelling unit is 0.82775 ACH50 -in.air_leakage_to_outside_ach50 0.82782 Total infiltration to the dwelling unit is 0.82782 ACH50 -in.air_leakage_to_outside_ach50 0.82878 Total infiltration to the dwelling unit is 0.82878 ACH50 -in.air_leakage_to_outside_ach50 0.8312 Total infiltration to the dwelling unit is 0.831199999999999 ACH50 -in.air_leakage_to_outside_ach50 0.84252 Total infiltration to the dwelling unit is 0.84252 ACH50 -in.air_leakage_to_outside_ach50 0.85743 Total infiltration to the dwelling unit is 0.85743 ACH50 -in.air_leakage_to_outside_ach50 0.85872 Total infiltration to the dwelling unit is 0.858719999999999 ACH50 -in.air_leakage_to_outside_ach50 0.8607 Total infiltration to the dwelling unit is 0.860699999999999 ACH50 -in.air_leakage_to_outside_ach50 0.8662 Total infiltration to the dwelling unit is 0.8662 ACH50 -in.air_leakage_to_outside_ach50 0.86802 Total infiltration to the dwelling unit is 0.86802 ACH50 -in.air_leakage_to_outside_ach50 0.875 Total infiltration to the dwelling unit is 0.875 ACH50 -in.air_leakage_to_outside_ach50 0.8751 Total infiltration to the dwelling unit is 0.8751 ACH50 -in.air_leakage_to_outside_ach50 0.88267 Total infiltration to the dwelling unit is 0.88267 ACH50 -in.air_leakage_to_outside_ach50 0.88695 Total infiltration to the dwelling unit is 0.88695 ACH50 -in.air_leakage_to_outside_ach50 0.88864 Total infiltration to the dwelling unit is 0.88864 ACH50 -in.air_leakage_to_outside_ach50 0.89872 Total infiltration to the dwelling unit is 0.89872 ACH50 -in.air_leakage_to_outside_ach50 0.90365 Total infiltration to the dwelling unit is 0.90365 ACH50 -in.air_leakage_to_outside_ach50 0.90895 Total infiltration to the dwelling unit is 0.90895 ACH50 -in.air_leakage_to_outside_ach50 0.90923 Total infiltration to the dwelling unit is 0.90923 ACH50 -in.air_leakage_to_outside_ach50 0.9148 Total infiltration to the dwelling unit is 0.9148 ACH50 -in.air_leakage_to_outside_ach50 0.93219 Total infiltration to the dwelling unit is 0.93219 ACH50 -in.air_leakage_to_outside_ach50 0.94048 Total infiltration to the dwelling unit is 0.94048 ACH50 -in.air_leakage_to_outside_ach50 0.94608 Total infiltration to the dwelling unit is 0.94608 ACH50 -in.air_leakage_to_outside_ach50 0.9512 Total infiltration to the dwelling unit is 0.951199999999999 ACH50 -in.air_leakage_to_outside_ach50 0.96396 Total infiltration to the dwelling unit is 0.96396 ACH50 -in.air_leakage_to_outside_ach50 0.97425 Total infiltration to the dwelling unit is 0.97425 ACH50 -in.air_leakage_to_outside_ach50 0.97992 Total infiltration to the dwelling unit is 0.97992 ACH50 -in.air_leakage_to_outside_ach50 0.9817 Total infiltration to the dwelling unit is 0.981699999999999 ACH50 -in.air_leakage_to_outside_ach50 0.98696 Total infiltration to the dwelling unit is 0.98696 ACH50 -in.air_leakage_to_outside_ach50 0.9933 Total infiltration to the dwelling unit is 0.9933 ACH50 -in.air_leakage_to_outside_ach50 1 Total infiltration to the dwelling unit is 1 ACH50 -in.air_leakage_to_outside_ach50 1.00184 Total infiltration to the dwelling unit is 1.00184 ACH50 -in.air_leakage_to_outside_ach50 1.00195 Total infiltration to the dwelling unit is 1.00195 ACH50 -in.air_leakage_to_outside_ach50 1.01269 Total infiltration to the dwelling unit is 1.01268999999999 ACH50 -in.air_leakage_to_outside_ach50 1.021 Total infiltration to the dwelling unit is 1.021 ACH50 -in.air_leakage_to_outside_ach50 1.0334 Total infiltration to the dwelling unit is 1.0334 ACH50 -in.air_leakage_to_outside_ach50 1.0335 Total infiltration to the dwelling unit is 1.0335 ACH50 -in.air_leakage_to_outside_ach50 1.03524 Total infiltration to the dwelling unit is 1.03524 ACH50 -in.air_leakage_to_outside_ach50 1.03912 Total infiltration to the dwelling unit is 1.03912 ACH50 -in.air_leakage_to_outside_ach50 1.03944 Total infiltration to the dwelling unit is 1.03944 ACH50 -in.air_leakage_to_outside_ach50 1.06188 Total infiltration to the dwelling unit is 1.06188 ACH50 -in.air_leakage_to_outside_ach50 1.06536 Total infiltration to the dwelling unit is 1.06536 ACH50 -in.air_leakage_to_outside_ach50 1.0734 Total infiltration to the dwelling unit is 1.0734 ACH50 -in.air_leakage_to_outside_ach50 1.0878 Total infiltration to the dwelling unit is 1.0878 ACH50 -in.air_leakage_to_outside_ach50 1.09074 Total infiltration to the dwelling unit is 1.09074 ACH50 -in.air_leakage_to_outside_ach50 1.09077 Total infiltration to the dwelling unit is 1.09077 ACH50 -in.air_leakage_to_outside_ach50 1.0916 Total infiltration to the dwelling unit is 1.0916 ACH50 -in.air_leakage_to_outside_ach50 1.09375 Total infiltration to the dwelling unit is 1.09375 ACH50 -in.air_leakage_to_outside_ach50 1.11348 Total infiltration to the dwelling unit is 1.11348 ACH50 -in.air_leakage_to_outside_ach50 1.11784 Total infiltration to the dwelling unit is 1.11784 ACH50 -in.air_leakage_to_outside_ach50 1.11826 Total infiltration to the dwelling unit is 1.11826 ACH50 -in.air_leakage_to_outside_ach50 1.1234 Total infiltration to the dwelling unit is 1.1234 ACH50 -in.air_leakage_to_outside_ach50 1.12668 Total infiltration to the dwelling unit is 1.12668 ACH50 -in.air_leakage_to_outside_ach50 1.1299 Total infiltration to the dwelling unit is 1.1299 ACH50 -in.air_leakage_to_outside_ach50 1.14312 Total infiltration to the dwelling unit is 1.14312 ACH50 -in.air_leakage_to_outside_ach50 1.14345 Total infiltration to the dwelling unit is 1.14345 ACH50 -in.air_leakage_to_outside_ach50 1.1435 Total infiltration to the dwelling unit is 1.1435 ACH50 -in.air_leakage_to_outside_ach50 1.14496 Total infiltration to the dwelling unit is 1.14496 ACH50 -in.air_leakage_to_outside_ach50 1.14945 Total infiltration to the dwelling unit is 1.14944999999999 ACH50 -in.air_leakage_to_outside_ach50 1.15306 Total infiltration to the dwelling unit is 1.15306 ACH50 -in.air_leakage_to_outside_ach50 1.15736 Total infiltration to the dwelling unit is 1.15736 ACH50 -in.air_leakage_to_outside_ach50 1.15885 Total infiltration to the dwelling unit is 1.15885 ACH50 -in.air_leakage_to_outside_ach50 1.16224 Total infiltration to the dwelling unit is 1.16224 ACH50 -in.air_leakage_to_outside_ach50 1.17324 Total infiltration to the dwelling unit is 1.17324 ACH50 -in.air_leakage_to_outside_ach50 1.1756 Total infiltration to the dwelling unit is 1.1756 ACH50 -in.air_leakage_to_outside_ach50 1.17804 Total infiltration to the dwelling unit is 1.17804 ACH50 -in.air_leakage_to_outside_ach50 1.18074 Total infiltration to the dwelling unit is 1.18074 ACH50 -in.air_leakage_to_outside_ach50 1.1826 Total infiltration to the dwelling unit is 1.1826 ACH50 -in.air_leakage_to_outside_ach50 1.189 Total infiltration to the dwelling unit is 1.189 ACH50 -in.air_leakage_to_outside_ach50 1.20234 Total infiltration to the dwelling unit is 1.20234 ACH50 -in.air_leakage_to_outside_ach50 1.20237 Total infiltration to the dwelling unit is 1.20237 ACH50 -in.air_leakage_to_outside_ach50 1.20495 Total infiltration to the dwelling unit is 1.20495 ACH50 -in.air_leakage_to_outside_ach50 1.20498 Total infiltration to the dwelling unit is 1.20498 ACH50 -in.air_leakage_to_outside_ach50 1.21098 Total infiltration to the dwelling unit is 1.21098 ACH50 -in.air_leakage_to_outside_ach50 1.21268 Total infiltration to the dwelling unit is 1.21268 ACH50 -in.air_leakage_to_outside_ach50 1.2134 Total infiltration to the dwelling unit is 1.2134 ACH50 -in.air_leakage_to_outside_ach50 1.22103 Total infiltration to the dwelling unit is 1.22102999999999 ACH50 -in.air_leakage_to_outside_ach50 1.2231 Total infiltration to the dwelling unit is 1.2231 ACH50 -in.air_leakage_to_outside_ach50 1.2249 Total infiltration to the dwelling unit is 1.2249 ACH50 -in.air_leakage_to_outside_ach50 1.2252 Total infiltration to the dwelling unit is 1.2252 ACH50 -in.air_leakage_to_outside_ach50 1.2287 Total infiltration to the dwelling unit is 1.2287 ACH50 -in.air_leakage_to_outside_ach50 1.2337 Total infiltration to the dwelling unit is 1.2337 ACH50 -in.air_leakage_to_outside_ach50 1.24317 Total infiltration to the dwelling unit is 1.24316999999999 ACH50 -in.air_leakage_to_outside_ach50 1.24498 Total infiltration to the dwelling unit is 1.24498 ACH50 -in.air_leakage_to_outside_ach50 1.2593 Total infiltration to the dwelling unit is 1.2593 ACH50 -in.air_leakage_to_outside_ach50 1.26378 Total infiltration to the dwelling unit is 1.26378 ACH50 -in.air_leakage_to_outside_ach50 1.26511 Total infiltration to the dwelling unit is 1.26511 ACH50 -in.air_leakage_to_outside_ach50 1.27253 Total infiltration to the dwelling unit is 1.27253 ACH50 -in.air_leakage_to_outside_ach50 1.27947 Total infiltration to the dwelling unit is 1.27946999999999 ACH50 -in.air_leakage_to_outside_ach50 1.28934 Total infiltration to the dwelling unit is 1.28934 ACH50 -in.air_leakage_to_outside_ach50 1.29105 Total infiltration to the dwelling unit is 1.29104999999999 ACH50 -in.air_leakage_to_outside_ach50 1.29175 Total infiltration to the dwelling unit is 1.29175 ACH50 -in.air_leakage_to_outside_ach50 1.29642 Total infiltration to the dwelling unit is 1.29642 ACH50 -in.air_leakage_to_outside_ach50 1.2989 Total infiltration to the dwelling unit is 1.2989 ACH50 -in.air_leakage_to_outside_ach50 1.299 Total infiltration to the dwelling unit is 1.299 ACH50 -in.air_leakage_to_outside_ach50 1.2993 Total infiltration to the dwelling unit is 1.2993 ACH50 -in.air_leakage_to_outside_ach50 1.31148 Total infiltration to the dwelling unit is 1.31148 ACH50 -in.air_leakage_to_outside_ach50 1.3125 Total infiltration to the dwelling unit is 1.3125 ACH50 -in.air_leakage_to_outside_ach50 1.3244 Total infiltration to the dwelling unit is 1.3244 ACH50 -in.air_leakage_to_outside_ach50 1.32816 Total infiltration to the dwelling unit is 1.32816 ACH50 -in.air_leakage_to_outside_ach50 1.32992 Total infiltration to the dwelling unit is 1.32992 ACH50 -in.air_leakage_to_outside_ach50 1.3311 Total infiltration to the dwelling unit is 1.3311 ACH50 -in.air_leakage_to_outside_ach50 1.3317 Total infiltration to the dwelling unit is 1.3317 ACH50 -in.air_leakage_to_outside_ach50 1.33296 Total infiltration to the dwelling unit is 1.33296 ACH50 -in.air_leakage_to_outside_ach50 1.3443 Total infiltration to the dwelling unit is 1.3443 ACH50 -in.air_leakage_to_outside_ach50 1.3446 Total infiltration to the dwelling unit is 1.3446 ACH50 -in.air_leakage_to_outside_ach50 1.34808 Total infiltration to the dwelling unit is 1.34808 ACH50 -in.air_leakage_to_outside_ach50 1.35144 Total infiltration to the dwelling unit is 1.35144 ACH50 -in.air_leakage_to_outside_ach50 1.35476 Total infiltration to the dwelling unit is 1.35476 ACH50 -in.air_leakage_to_outside_ach50 1.35813 Total infiltration to the dwelling unit is 1.35813 ACH50 -in.air_leakage_to_outside_ach50 1.35975 Total infiltration to the dwelling unit is 1.35975 ACH50 -in.air_leakage_to_outside_ach50 1.36358 Total infiltration to the dwelling unit is 1.36358 ACH50 -in.air_leakage_to_outside_ach50 1.37214 Total infiltration to the dwelling unit is 1.37214 ACH50 -in.air_leakage_to_outside_ach50 1.37438 Total infiltration to the dwelling unit is 1.37438 ACH50 -in.air_leakage_to_outside_ach50 1.37712 Total infiltration to the dwelling unit is 1.37712 ACH50 -in.air_leakage_to_outside_ach50 1.38032 Total infiltration to the dwelling unit is 1.38032 ACH50 -in.air_leakage_to_outside_ach50 1.38585 Total infiltration to the dwelling unit is 1.38585 ACH50 -in.air_leakage_to_outside_ach50 1.38592 Total infiltration to the dwelling unit is 1.38592 ACH50 -in.air_leakage_to_outside_ach50 1.39503 Total infiltration to the dwelling unit is 1.39503 ACH50 -in.air_leakage_to_outside_ach50 1.40144 Total infiltration to the dwelling unit is 1.40144 ACH50 -in.air_leakage_to_outside_ach50 1.40272 Total infiltration to the dwelling unit is 1.40272 ACH50 -in.air_leakage_to_outside_ach50 1.40273 Total infiltration to the dwelling unit is 1.40273 ACH50 -in.air_leakage_to_outside_ach50 1.41642 Total infiltration to the dwelling unit is 1.41642 ACH50 -in.air_leakage_to_outside_ach50 1.42575 Total infiltration to the dwelling unit is 1.42575 ACH50 -in.air_leakage_to_outside_ach50 1.4268 Total infiltration to the dwelling unit is 1.42679999999999 ACH50 -in.air_leakage_to_outside_ach50 1.4312 Total infiltration to the dwelling unit is 1.4312 ACH50 -in.air_leakage_to_outside_ach50 1.44584 Total infiltration to the dwelling unit is 1.44584 ACH50 -in.air_leakage_to_outside_ach50 1.44594 Total infiltration to the dwelling unit is 1.44594 ACH50 -in.air_leakage_to_outside_ach50 1.4467 Total infiltration to the dwelling unit is 1.44669999999999 ACH50 -in.air_leakage_to_outside_ach50 1.45432 Total infiltration to the dwelling unit is 1.45432 ACH50 -in.air_leakage_to_outside_ach50 1.45436 Total infiltration to the dwelling unit is 1.45436 ACH50 -in.air_leakage_to_outside_ach50 1.46988 Total infiltration to the dwelling unit is 1.46988 ACH50 -in.air_leakage_to_outside_ach50 1.47825 Total infiltration to the dwelling unit is 1.47825 ACH50 -in.air_leakage_to_outside_ach50 1.48044 Total infiltration to the dwelling unit is 1.48044 ACH50 -in.air_leakage_to_outside_ach50 1.48464 Total infiltration to the dwelling unit is 1.48464 ACH50 -in.air_leakage_to_outside_ach50 1.48498 Total infiltration to the dwelling unit is 1.48498 ACH50 -in.air_leakage_to_outside_ach50 1.5 Total infiltration to the dwelling unit is 1.5 ACH50 -in.air_leakage_to_outside_ach50 1.5159 Total infiltration to the dwelling unit is 1.51589999999999 ACH50 -in.air_leakage_to_outside_ach50 1.53068 Total infiltration to the dwelling unit is 1.53068 ACH50 -in.air_leakage_to_outside_ach50 1.5326 Total infiltration to the dwelling unit is 1.5326 ACH50 -in.air_leakage_to_outside_ach50 1.54464 Total infiltration to the dwelling unit is 1.54464 ACH50 -in.air_leakage_to_outside_ach50 1.5458 Total infiltration to the dwelling unit is 1.5458 ACH50 -in.air_leakage_to_outside_ach50 1.5501 Total infiltration to the dwelling unit is 1.5501 ACH50 -in.air_leakage_to_outside_ach50 1.55025 Total infiltration to the dwelling unit is 1.55025 ACH50 -in.air_leakage_to_outside_ach50 1.5519 Total infiltration to the dwelling unit is 1.55189999999999 ACH50 -in.air_leakage_to_outside_ach50 1.57072 Total infiltration to the dwelling unit is 1.57072 ACH50 -in.air_leakage_to_outside_ach50 1.57276 Total infiltration to the dwelling unit is 1.57276 ACH50 -in.air_leakage_to_outside_ach50 1.57432 Total infiltration to the dwelling unit is 1.57432 ACH50 -in.air_leakage_to_outside_ach50 1.58268 Total infiltration to the dwelling unit is 1.58268 ACH50 -in.air_leakage_to_outside_ach50 1.5922 Total infiltration to the dwelling unit is 1.5922 ACH50 -in.air_leakage_to_outside_ach50 1.59282 Total infiltration to the dwelling unit is 1.59282 ACH50 -in.air_leakage_to_outside_ach50 1.59804 Total infiltration to the dwelling unit is 1.59804 ACH50 -in.air_leakage_to_outside_ach50 1.60083 Total infiltration to the dwelling unit is 1.60083 ACH50 -in.air_leakage_to_outside_ach50 1.60312 Total infiltration to the dwelling unit is 1.60312 ACH50 -in.air_leakage_to_outside_ach50 1.60316 Total infiltration to the dwelling unit is 1.60316 ACH50 -in.air_leakage_to_outside_ach50 1.61049 Total infiltration to the dwelling unit is 1.61049 ACH50 -in.air_leakage_to_outside_ach50 1.62252 Total infiltration to the dwelling unit is 1.62252 ACH50 -in.air_leakage_to_outside_ach50 1.62375 Total infiltration to the dwelling unit is 1.62374999999999 ACH50 -in.air_leakage_to_outside_ach50 1.62804 Total infiltration to the dwelling unit is 1.62804 ACH50 -in.air_leakage_to_outside_ach50 1.62966 Total infiltration to the dwelling unit is 1.62966 ACH50 -in.air_leakage_to_outside_ach50 1.6317 Total infiltration to the dwelling unit is 1.6317 ACH50 -in.air_leakage_to_outside_ach50 1.6336 Total infiltration to the dwelling unit is 1.6336 ACH50 -in.air_leakage_to_outside_ach50 1.6353 Total infiltration to the dwelling unit is 1.6353 ACH50 -in.air_leakage_to_outside_ach50 1.63642 Total infiltration to the dwelling unit is 1.63642 ACH50 -in.air_leakage_to_outside_ach50 1.6374 Total infiltration to the dwelling unit is 1.6374 ACH50 -in.air_leakage_to_outside_ach50 1.64268 Total infiltration to the dwelling unit is 1.64268 ACH50 -in.air_leakage_to_outside_ach50 1.65501 Total infiltration to the dwelling unit is 1.65500999999999 ACH50 -in.air_leakage_to_outside_ach50 1.6555 Total infiltration to the dwelling unit is 1.6555 ACH50 -in.air_leakage_to_outside_ach50 1.65756 Total infiltration to the dwelling unit is 1.65756 ACH50 -in.air_leakage_to_outside_ach50 1.65974 Total infiltration to the dwelling unit is 1.65974 ACH50 -in.air_leakage_to_outside_ach50 1.6624 Total infiltration to the dwelling unit is 1.66239999999999 ACH50 -in.air_leakage_to_outside_ach50 1.66418 Total infiltration to the dwelling unit is 1.66418 ACH50 -in.air_leakage_to_outside_ach50 1.6723 Total infiltration to the dwelling unit is 1.6723 ACH50 -in.air_leakage_to_outside_ach50 1.67572 Total infiltration to the dwelling unit is 1.67572 ACH50 -in.air_leakage_to_outside_ach50 1.67676 Total infiltration to the dwelling unit is 1.67675999999999 ACH50 -in.air_leakage_to_outside_ach50 1.67738 Total infiltration to the dwelling unit is 1.67738 ACH50 -in.air_leakage_to_outside_ach50 1.67739 Total infiltration to the dwelling unit is 1.67739 ACH50 -in.air_leakage_to_outside_ach50 1.68504 Total infiltration to the dwelling unit is 1.68504 ACH50 -in.air_leakage_to_outside_ach50 1.68693 Total infiltration to the dwelling unit is 1.68693 ACH50 -in.air_leakage_to_outside_ach50 1.69002 Total infiltration to the dwelling unit is 1.69001999999999 ACH50 -in.air_leakage_to_outside_ach50 1.69485 Total infiltration to the dwelling unit is 1.69484999999999 ACH50 -in.air_leakage_to_outside_ach50 1.70596 Total infiltration to the dwelling unit is 1.70596 ACH50 -in.air_leakage_to_outside_ach50 1.71468 Total infiltration to the dwelling unit is 1.71468 ACH50 -in.air_leakage_to_outside_ach50 1.71486 Total infiltration to the dwelling unit is 1.71486 ACH50 -in.air_leakage_to_outside_ach50 1.71525 Total infiltration to the dwelling unit is 1.71525 ACH50 -in.air_leakage_to_outside_ach50 1.71538 Total infiltration to the dwelling unit is 1.71538 ACH50 -in.air_leakage_to_outside_ach50 1.7214 Total infiltration to the dwelling unit is 1.72139999999999 ACH50 -in.air_leakage_to_outside_ach50 1.72311 Total infiltration to the dwelling unit is 1.72311 ACH50 -in.air_leakage_to_outside_ach50 1.7246 Total infiltration to the dwelling unit is 1.7246 ACH50 -in.air_leakage_to_outside_ach50 1.7254 Total infiltration to the dwelling unit is 1.7254 ACH50 -in.air_leakage_to_outside_ach50 1.72718 Total infiltration to the dwelling unit is 1.72718 ACH50 -in.air_leakage_to_outside_ach50 1.72959 Total infiltration to the dwelling unit is 1.72959 ACH50 -in.air_leakage_to_outside_ach50 1.7324 Total infiltration to the dwelling unit is 1.7324 ACH50 -in.air_leakage_to_outside_ach50 1.73604 Total infiltration to the dwelling unit is 1.73604 ACH50 -in.air_leakage_to_outside_ach50 1.73892 Total infiltration to the dwelling unit is 1.73892 ACH50 -in.air_leakage_to_outside_ach50 1.74336 Total infiltration to the dwelling unit is 1.74336 ACH50 -in.air_leakage_to_outside_ach50 1.75 Total infiltration to the dwelling unit is 1.75 ACH50 -in.air_leakage_to_outside_ach50 1.7502 Total infiltration to the dwelling unit is 1.7502 ACH50 -in.air_leakage_to_outside_ach50 1.75821 Total infiltration to the dwelling unit is 1.75821 ACH50 -in.air_leakage_to_outside_ach50 1.75986 Total infiltration to the dwelling unit is 1.75986 ACH50 -in.air_leakage_to_outside_ach50 1.7634 Total infiltration to the dwelling unit is 1.76339999999999 ACH50 -in.air_leakage_to_outside_ach50 1.76534 Total infiltration to the dwelling unit is 1.76534 ACH50 -in.air_leakage_to_outside_ach50 1.77088 Total infiltration to the dwelling unit is 1.77088 ACH50 -in.air_leakage_to_outside_ach50 1.77232 Total infiltration to the dwelling unit is 1.77232 ACH50 -in.air_leakage_to_outside_ach50 1.7739 Total infiltration to the dwelling unit is 1.7739 ACH50 -in.air_leakage_to_outside_ach50 1.7766 Total infiltration to the dwelling unit is 1.77659999999999 ACH50 -in.air_leakage_to_outside_ach50 1.77728 Total infiltration to the dwelling unit is 1.77728 ACH50 -in.air_leakage_to_outside_ach50 1.78716 Total infiltration to the dwelling unit is 1.78716 ACH50 -in.air_leakage_to_outside_ach50 1.789 Total infiltration to the dwelling unit is 1.789 ACH50 -in.air_leakage_to_outside_ach50 1.79079 Total infiltration to the dwelling unit is 1.79078999999999 ACH50 -in.air_leakage_to_outside_ach50 1.7912 Total infiltration to the dwelling unit is 1.7912 ACH50 -in.air_leakage_to_outside_ach50 1.79208 Total infiltration to the dwelling unit is 1.79208 ACH50 -in.air_leakage_to_outside_ach50 1.7924 Total infiltration to the dwelling unit is 1.7924 ACH50 -in.air_leakage_to_outside_ach50 1.79744 Total infiltration to the dwelling unit is 1.79744 ACH50 -in.air_leakage_to_outside_ach50 1.8073 Total infiltration to the dwelling unit is 1.8073 ACH50 -in.air_leakage_to_outside_ach50 1.81084 Total infiltration to the dwelling unit is 1.81084 ACH50 -in.air_leakage_to_outside_ach50 1.81344 Total infiltration to the dwelling unit is 1.81344 ACH50 -in.air_leakage_to_outside_ach50 1.81647 Total infiltration to the dwelling unit is 1.81646999999999 ACH50 -in.air_leakage_to_outside_ach50 1.8179 Total infiltration to the dwelling unit is 1.8179 ACH50 -in.air_leakage_to_outside_ach50 1.81795 Total infiltration to the dwelling unit is 1.81795 ACH50 -in.air_leakage_to_outside_ach50 1.8201 Total infiltration to the dwelling unit is 1.8201 ACH50 -in.air_leakage_to_outside_ach50 1.82952 Total infiltration to the dwelling unit is 1.82952 ACH50 -in.air_leakage_to_outside_ach50 1.83465 Total infiltration to the dwelling unit is 1.83465 ACH50 -in.air_leakage_to_outside_ach50 1.83472 Total infiltration to the dwelling unit is 1.83472 ACH50 -in.air_leakage_to_outside_ach50 1.83735 Total infiltration to the dwelling unit is 1.83735 ACH50 -in.air_leakage_to_outside_ach50 1.84305 Total infiltration to the dwelling unit is 1.84304999999999 ACH50 -in.air_leakage_to_outside_ach50 1.8478 Total infiltration to the dwelling unit is 1.8478 ACH50 -in.air_leakage_to_outside_ach50 1.8558 Total infiltration to the dwelling unit is 1.8558 ACH50 -in.air_leakage_to_outside_ach50 1.86438 Total infiltration to the dwelling unit is 1.86438 ACH50 -in.air_leakage_to_outside_ach50 1.86675 Total infiltration to the dwelling unit is 1.86675 ACH50 -in.air_leakage_to_outside_ach50 1.86747 Total infiltration to the dwelling unit is 1.86747 ACH50 -in.air_leakage_to_outside_ach50 1.88864 Total infiltration to the dwelling unit is 1.88864 ACH50 -in.air_leakage_to_outside_ach50 1.88895 Total infiltration to the dwelling unit is 1.88895 ACH50 -in.air_leakage_to_outside_ach50 1.8956 Total infiltration to the dwelling unit is 1.8956 ACH50 -in.air_leakage_to_outside_ach50 1.89951 Total infiltration to the dwelling unit is 1.89951 ACH50 -in.air_leakage_to_outside_ach50 1.901 Total infiltration to the dwelling unit is 1.901 ACH50 -in.air_leakage_to_outside_ach50 1.9024 Total infiltration to the dwelling unit is 1.90239999999999 ACH50 -in.air_leakage_to_outside_ach50 1.90365 Total infiltration to the dwelling unit is 1.90365 ACH50 -in.air_leakage_to_outside_ach50 1.91575 Total infiltration to the dwelling unit is 1.91575 ACH50 -in.air_leakage_to_outside_ach50 1.92792 Total infiltration to the dwelling unit is 1.92792 ACH50 -in.air_leakage_to_outside_ach50 1.93401 Total infiltration to the dwelling unit is 1.93400999999999 ACH50 -in.air_leakage_to_outside_ach50 1.94463 Total infiltration to the dwelling unit is 1.94462999999999 ACH50 -in.air_leakage_to_outside_ach50 1.94835 Total infiltration to the dwelling unit is 1.94835 ACH50 -in.air_leakage_to_outside_ach50 1.9485 Total infiltration to the dwelling unit is 1.9485 ACH50 -in.air_leakage_to_outside_ach50 1.94968 Total infiltration to the dwelling unit is 1.94968 ACH50 -in.air_leakage_to_outside_ach50 1.95984 Total infiltration to the dwelling unit is 1.95984 ACH50 -in.air_leakage_to_outside_ach50 1.96236 Total infiltration to the dwelling unit is 1.96236 ACH50 -in.air_leakage_to_outside_ach50 1.9634 Total infiltration to the dwelling unit is 1.96339999999999 ACH50 -in.air_leakage_to_outside_ach50 1.96722 Total infiltration to the dwelling unit is 1.96722 ACH50 -in.air_leakage_to_outside_ach50 1.9679 Total infiltration to the dwelling unit is 1.9679 ACH50 -in.air_leakage_to_outside_ach50 1.97392 Total infiltration to the dwelling unit is 1.97392 ACH50 -in.air_leakage_to_outside_ach50 1.9866 Total infiltration to the dwelling unit is 1.9866 ACH50 -in.air_leakage_to_outside_ach50 1.99665 Total infiltration to the dwelling unit is 1.99664999999999 ACH50 -in.air_leakage_to_outside_ach50 1.99755 Total infiltration to the dwelling unit is 1.99755 ACH50 -in.air_leakage_to_outside_ach50 2 Total infiltration to the dwelling unit is 2 ACH50 -in.air_leakage_to_outside_ach50 2.0039 Total infiltration to the dwelling unit is 2.0039 ACH50 -in.air_leakage_to_outside_ach50 2.00395 Total infiltration to the dwelling unit is 2.00394999999999 ACH50 -in.air_leakage_to_outside_ach50 2.00442 Total infiltration to the dwelling unit is 2.00441999999999 ACH50 -in.air_leakage_to_outside_ach50 2.01231 Total infiltration to the dwelling unit is 2.01231 ACH50 -in.air_leakage_to_outside_ach50 2.0169 Total infiltration to the dwelling unit is 2.0169 ACH50 -in.air_leakage_to_outside_ach50 2.0212 Total infiltration to the dwelling unit is 2.0212 ACH50 -in.air_leakage_to_outside_ach50 2.02538 Total infiltration to the dwelling unit is 2.02537999999999 ACH50 -in.air_leakage_to_outside_ach50 2.02716 Total infiltration to the dwelling unit is 2.02716 ACH50 -in.air_leakage_to_outside_ach50 2.03214 Total infiltration to the dwelling unit is 2.03214 ACH50 -in.air_leakage_to_outside_ach50 2.03505 Total infiltration to the dwelling unit is 2.03505 ACH50 -in.air_leakage_to_outside_ach50 2.042 Total infiltration to the dwelling unit is 2.042 ACH50 -in.air_leakage_to_outside_ach50 2.04537 Total infiltration to the dwelling unit is 2.04537 ACH50 -in.air_leakage_to_outside_ach50 2.05593 Total infiltration to the dwelling unit is 2.05593 ACH50 -in.air_leakage_to_outside_ach50 2.0594 Total infiltration to the dwelling unit is 2.0594 ACH50 -in.air_leakage_to_outside_ach50 2.06636 Total infiltration to the dwelling unit is 2.06636 ACH50 -in.air_leakage_to_outside_ach50 2.0668 Total infiltration to the dwelling unit is 2.0668 ACH50 -in.air_leakage_to_outside_ach50 2.067 Total infiltration to the dwelling unit is 2.067 ACH50 -in.air_leakage_to_outside_ach50 2.07048 Total infiltration to the dwelling unit is 2.07048 ACH50 -in.air_leakage_to_outside_ach50 2.07195 Total infiltration to the dwelling unit is 2.07194999999999 ACH50 -in.air_leakage_to_outside_ach50 2.07224 Total infiltration to the dwelling unit is 2.07224 ACH50 -in.air_leakage_to_outside_ach50 2.07615 Total infiltration to the dwelling unit is 2.07615 ACH50 -in.air_leakage_to_outside_ach50 2.07846 Total infiltration to the dwelling unit is 2.07845999999999 ACH50 -in.air_leakage_to_outside_ach50 2.09496 Total infiltration to the dwelling unit is 2.09496 ACH50 -in.air_leakage_to_outside_ach50 2.10117 Total infiltration to the dwelling unit is 2.10116999999999 ACH50 -in.air_leakage_to_outside_ach50 2.10216 Total infiltration to the dwelling unit is 2.10216 ACH50 -in.air_leakage_to_outside_ach50 2.10408 Total infiltration to the dwelling unit is 2.10407999999999 ACH50 -in.air_leakage_to_outside_ach50 2.1063 Total infiltration to the dwelling unit is 2.1063 ACH50 -in.air_leakage_to_outside_ach50 2.12376 Total infiltration to the dwelling unit is 2.12376 ACH50 -in.air_leakage_to_outside_ach50 2.12463 Total infiltration to the dwelling unit is 2.12463 ACH50 -in.air_leakage_to_outside_ach50 2.13072 Total infiltration to the dwelling unit is 2.13072 ACH50 -in.air_leakage_to_outside_ach50 2.13245 Total infiltration to the dwelling unit is 2.13245 ACH50 -in.air_leakage_to_outside_ach50 2.13304 Total infiltration to the dwelling unit is 2.13304 ACH50 -in.air_leakage_to_outside_ach50 2.1468 Total infiltration to the dwelling unit is 2.1468 ACH50 -in.air_leakage_to_outside_ach50 2.14732 Total infiltration to the dwelling unit is 2.14732 ACH50 -in.air_leakage_to_outside_ach50 2.15175 Total infiltration to the dwelling unit is 2.15175 ACH50 -in.air_leakage_to_outside_ach50 2.15575 Total infiltration to the dwelling unit is 2.15575 ACH50 -in.air_leakage_to_outside_ach50 2.16336 Total infiltration to the dwelling unit is 2.16336 ACH50 -in.air_leakage_to_outside_ach50 2.16392 Total infiltration to the dwelling unit is 2.16392 ACH50 -in.air_leakage_to_outside_ach50 2.17005 Total infiltration to the dwelling unit is 2.17005 ACH50 -in.air_leakage_to_outside_ach50 2.175 Total infiltration to the dwelling unit is 2.175 ACH50 -in.air_leakage_to_outside_ach50 2.1756 Total infiltration to the dwelling unit is 2.1756 ACH50 -in.air_leakage_to_outside_ach50 2.18154 Total infiltration to the dwelling unit is 2.18154 ACH50 -in.air_leakage_to_outside_ach50 2.1832 Total infiltration to the dwelling unit is 2.1832 ACH50 -in.air_leakage_to_outside_ach50 2.18409 Total infiltration to the dwelling unit is 2.18409 ACH50 -in.air_leakage_to_outside_ach50 2.1875 Total infiltration to the dwelling unit is 2.1875 ACH50 -in.air_leakage_to_outside_ach50 2.18775 Total infiltration to the dwelling unit is 2.18775 ACH50 -in.air_leakage_to_outside_ach50 2.19024 Total infiltration to the dwelling unit is 2.19024 ACH50 -in.air_leakage_to_outside_ach50 2.20668 Total infiltration to the dwelling unit is 2.20668 ACH50 -in.air_leakage_to_outside_ach50 2.2136 Total infiltration to the dwelling unit is 2.2136 ACH50 -in.air_leakage_to_outside_ach50 2.2216 Total infiltration to the dwelling unit is 2.2216 ACH50 -in.air_leakage_to_outside_ach50 2.22297 Total infiltration to the dwelling unit is 2.22297 ACH50 -in.air_leakage_to_outside_ach50 2.22696 Total infiltration to the dwelling unit is 2.22696 ACH50 -in.air_leakage_to_outside_ach50 2.22747 Total infiltration to the dwelling unit is 2.22747 ACH50 -in.air_leakage_to_outside_ach50 2.23568 Total infiltration to the dwelling unit is 2.23568 ACH50 -in.air_leakage_to_outside_ach50 2.23652 Total infiltration to the dwelling unit is 2.23652 ACH50 -in.air_leakage_to_outside_ach50 2.2405 Total infiltration to the dwelling unit is 2.2405 ACH50 -in.air_leakage_to_outside_ach50 2.2468 Total infiltration to the dwelling unit is 2.2468 ACH50 -in.air_leakage_to_outside_ach50 2.25336 Total infiltration to the dwelling unit is 2.25336 ACH50 -in.air_leakage_to_outside_ach50 2.25795 Total infiltration to the dwelling unit is 2.25795 ACH50 -in.air_leakage_to_outside_ach50 2.2598 Total infiltration to the dwelling unit is 2.2598 ACH50 -in.air_leakage_to_outside_ach50 2.26355 Total infiltration to the dwelling unit is 2.26355 ACH50 -in.air_leakage_to_outside_ach50 2.28066 Total infiltration to the dwelling unit is 2.28066 ACH50 -in.air_leakage_to_outside_ach50 2.28624 Total infiltration to the dwelling unit is 2.28624 ACH50 -in.air_leakage_to_outside_ach50 2.2865 Total infiltration to the dwelling unit is 2.28649999999999 ACH50 -in.air_leakage_to_outside_ach50 2.2869 Total infiltration to the dwelling unit is 2.2869 ACH50 -in.air_leakage_to_outside_ach50 2.287 Total infiltration to the dwelling unit is 2.287 ACH50 -in.air_leakage_to_outside_ach50 2.28942 Total infiltration to the dwelling unit is 2.28942 ACH50 -in.air_leakage_to_outside_ach50 2.2934 Total infiltration to the dwelling unit is 2.2934 ACH50 -in.air_leakage_to_outside_ach50 2.29602 Total infiltration to the dwelling unit is 2.29602 ACH50 -in.air_leakage_to_outside_ach50 2.29748 Total infiltration to the dwelling unit is 2.29748 ACH50 -in.air_leakage_to_outside_ach50 2.2989 Total infiltration to the dwelling unit is 2.29889999999999 ACH50 -in.air_leakage_to_outside_ach50 2.30352 Total infiltration to the dwelling unit is 2.30352 ACH50 -in.air_leakage_to_outside_ach50 2.30523 Total infiltration to the dwelling unit is 2.30523 ACH50 -in.air_leakage_to_outside_ach50 2.30612 Total infiltration to the dwelling unit is 2.30612 ACH50 -in.air_leakage_to_outside_ach50 2.30975 Total infiltration to the dwelling unit is 2.30975 ACH50 -in.air_leakage_to_outside_ach50 2.31472 Total infiltration to the dwelling unit is 2.31472 ACH50 -in.air_leakage_to_outside_ach50 2.31696 Total infiltration to the dwelling unit is 2.31696 ACH50 -in.air_leakage_to_outside_ach50 2.3177 Total infiltration to the dwelling unit is 2.3177 ACH50 -in.air_leakage_to_outside_ach50 2.31856 Total infiltration to the dwelling unit is 2.31856 ACH50 -in.air_leakage_to_outside_ach50 2.3187 Total infiltration to the dwelling unit is 2.3187 ACH50 -in.air_leakage_to_outside_ach50 2.31956 Total infiltration to the dwelling unit is 2.31956 ACH50 -in.air_leakage_to_outside_ach50 2.32448 Total infiltration to the dwelling unit is 2.32448 ACH50 -in.air_leakage_to_outside_ach50 2.33838 Total infiltration to the dwelling unit is 2.33838 ACH50 -in.air_leakage_to_outside_ach50 2.34428 Total infiltration to the dwelling unit is 2.34428 ACH50 -in.air_leakage_to_outside_ach50 2.34501 Total infiltration to the dwelling unit is 2.34501 ACH50 -in.air_leakage_to_outside_ach50 2.34648 Total infiltration to the dwelling unit is 2.34648 ACH50 -in.air_leakage_to_outside_ach50 2.36148 Total infiltration to the dwelling unit is 2.36148 ACH50 -in.air_leakage_to_outside_ach50 2.36478 Total infiltration to the dwelling unit is 2.36477999999999 ACH50 -in.air_leakage_to_outside_ach50 2.3652 Total infiltration to the dwelling unit is 2.3652 ACH50 -in.air_leakage_to_outside_ach50 2.3688 Total infiltration to the dwelling unit is 2.3688 ACH50 -in.air_leakage_to_outside_ach50 2.36985 Total infiltration to the dwelling unit is 2.36985 ACH50 -in.air_leakage_to_outside_ach50 2.37168 Total infiltration to the dwelling unit is 2.37168 ACH50 -in.air_leakage_to_outside_ach50 2.37402 Total infiltration to the dwelling unit is 2.37402 ACH50 -in.air_leakage_to_outside_ach50 2.37625 Total infiltration to the dwelling unit is 2.37625 ACH50 -in.air_leakage_to_outside_ach50 2.3776 Total infiltration to the dwelling unit is 2.3776 ACH50 -in.air_leakage_to_outside_ach50 2.378 Total infiltration to the dwelling unit is 2.378 ACH50 -in.air_leakage_to_outside_ach50 2.38772 Total infiltration to the dwelling unit is 2.38772 ACH50 -in.air_leakage_to_outside_ach50 2.38944 Total infiltration to the dwelling unit is 2.38944 ACH50 -in.air_leakage_to_outside_ach50 2.39604 Total infiltration to the dwelling unit is 2.39603999999999 ACH50 -in.air_leakage_to_outside_ach50 2.39631 Total infiltration to the dwelling unit is 2.39630999999999 ACH50 -in.air_leakage_to_outside_ach50 2.40474 Total infiltration to the dwelling unit is 2.40474 ACH50 -in.air_leakage_to_outside_ach50 2.4099 Total infiltration to the dwelling unit is 2.4099 ACH50 -in.air_leakage_to_outside_ach50 2.41556 Total infiltration to the dwelling unit is 2.41556 ACH50 -in.air_leakage_to_outside_ach50 2.41636 Total infiltration to the dwelling unit is 2.41636 ACH50 -in.air_leakage_to_outside_ach50 2.41731 Total infiltration to the dwelling unit is 2.41731 ACH50 -in.air_leakage_to_outside_ach50 2.41792 Total infiltration to the dwelling unit is 2.41792 ACH50 -in.air_leakage_to_outside_ach50 2.42196 Total infiltration to the dwelling unit is 2.42196 ACH50 -in.air_leakage_to_outside_ach50 2.4268 Total infiltration to the dwelling unit is 2.4268 ACH50 -in.air_leakage_to_outside_ach50 2.43336 Total infiltration to the dwelling unit is 2.43336 ACH50 -in.air_leakage_to_outside_ach50 2.43645 Total infiltration to the dwelling unit is 2.43645 ACH50 -in.air_leakage_to_outside_ach50 2.44164 Total infiltration to the dwelling unit is 2.44164 ACH50 -in.air_leakage_to_outside_ach50 2.44206 Total infiltration to the dwelling unit is 2.44205999999999 ACH50 -in.air_leakage_to_outside_ach50 2.44449 Total infiltration to the dwelling unit is 2.44449 ACH50 -in.air_leakage_to_outside_ach50 2.4462 Total infiltration to the dwelling unit is 2.4462 ACH50 -in.air_leakage_to_outside_ach50 2.4498 Total infiltration to the dwelling unit is 2.4498 ACH50 -in.air_leakage_to_outside_ach50 2.45463 Total infiltration to the dwelling unit is 2.45463 ACH50 -in.air_leakage_to_outside_ach50 2.4574 Total infiltration to the dwelling unit is 2.4574 ACH50 -in.air_leakage_to_outside_ach50 2.4674 Total infiltration to the dwelling unit is 2.4674 ACH50 -in.air_leakage_to_outside_ach50 2.48325 Total infiltration to the dwelling unit is 2.48325 ACH50 -in.air_leakage_to_outside_ach50 2.48361 Total infiltration to the dwelling unit is 2.48361 ACH50 -in.air_leakage_to_outside_ach50 2.48634 Total infiltration to the dwelling unit is 2.48633999999999 ACH50 -in.air_leakage_to_outside_ach50 2.489 Total infiltration to the dwelling unit is 2.489 ACH50 -in.air_leakage_to_outside_ach50 2.48961 Total infiltration to the dwelling unit is 2.48961 ACH50 -in.air_leakage_to_outside_ach50 2.48996 Total infiltration to the dwelling unit is 2.48996 ACH50 -in.air_leakage_to_outside_ach50 2.4936 Total infiltration to the dwelling unit is 2.4936 ACH50 -in.air_leakage_to_outside_ach50 2.5 Total infiltration to the dwelling unit is 2.5 ACH50 -in.air_leakage_to_outside_ach50 2.50335 Total infiltration to the dwelling unit is 2.50335 ACH50 -in.air_leakage_to_outside_ach50 2.50845 Total infiltration to the dwelling unit is 2.50845 ACH50 -in.air_leakage_to_outside_ach50 2.51358 Total infiltration to the dwelling unit is 2.51358 ACH50 -in.air_leakage_to_outside_ach50 2.51607 Total infiltration to the dwelling unit is 2.51607 ACH50 -in.air_leakage_to_outside_ach50 2.5186 Total infiltration to the dwelling unit is 2.5186 ACH50 -in.air_leakage_to_outside_ach50 2.5265 Total infiltration to the dwelling unit is 2.5265 ACH50 -in.air_leakage_to_outside_ach50 2.52756 Total infiltration to the dwelling unit is 2.52756 ACH50 -in.air_leakage_to_outside_ach50 2.52798 Total infiltration to the dwelling unit is 2.52798 ACH50 -in.air_leakage_to_outside_ach50 2.52855 Total infiltration to the dwelling unit is 2.52855 ACH50 -in.air_leakage_to_outside_ach50 2.53268 Total infiltration to the dwelling unit is 2.53268 ACH50 -in.air_leakage_to_outside_ach50 2.53806 Total infiltration to the dwelling unit is 2.53805999999999 ACH50 -in.air_leakage_to_outside_ach50 2.54513 Total infiltration to the dwelling unit is 2.54513 ACH50 -in.air_leakage_to_outside_ach50 2.55108 Total infiltration to the dwelling unit is 2.55108 ACH50 -in.air_leakage_to_outside_ach50 2.55894 Total infiltration to the dwelling unit is 2.55893999999999 ACH50 -in.air_leakage_to_outside_ach50 2.562 Total infiltration to the dwelling unit is 2.562 ACH50 -in.air_leakage_to_outside_ach50 2.5623 Total infiltration to the dwelling unit is 2.5623 ACH50 -in.air_leakage_to_outside_ach50 2.56599 Total infiltration to the dwelling unit is 2.56599 ACH50 -in.air_leakage_to_outside_ach50 2.57307 Total infiltration to the dwelling unit is 2.57307 ACH50 -in.air_leakage_to_outside_ach50 2.57868 Total infiltration to the dwelling unit is 2.57868 ACH50 -in.air_leakage_to_outside_ach50 2.5821 Total infiltration to the dwelling unit is 2.58209999999999 ACH50 -in.air_leakage_to_outside_ach50 2.58295 Total infiltration to the dwelling unit is 2.58295 ACH50 -in.air_leakage_to_outside_ach50 2.5835 Total infiltration to the dwelling unit is 2.5835 ACH50 -in.air_leakage_to_outside_ach50 2.58375 Total infiltration to the dwelling unit is 2.58374999999999 ACH50 -in.air_leakage_to_outside_ach50 2.5869 Total infiltration to the dwelling unit is 2.5869 ACH50 -in.air_leakage_to_outside_ach50 2.5903 Total infiltration to the dwelling unit is 2.5903 ACH50 -in.air_leakage_to_outside_ach50 2.59284 Total infiltration to the dwelling unit is 2.59284 ACH50 -in.air_leakage_to_outside_ach50 2.5978 Total infiltration to the dwelling unit is 2.5978 ACH50 -in.air_leakage_to_outside_ach50 2.598 Total infiltration to the dwelling unit is 2.598 ACH50 -in.air_leakage_to_outside_ach50 2.59812 Total infiltration to the dwelling unit is 2.59811999999999 ACH50 -in.air_leakage_to_outside_ach50 2.5986 Total infiltration to the dwelling unit is 2.5986 ACH50 -in.air_leakage_to_outside_ach50 2.5998 Total infiltration to the dwelling unit is 2.5998 ACH50 -in.air_leakage_to_outside_ach50 2.61348 Total infiltration to the dwelling unit is 2.61348 ACH50 -in.air_leakage_to_outside_ach50 2.61372 Total infiltration to the dwelling unit is 2.61372 ACH50 -in.air_leakage_to_outside_ach50 2.61393 Total infiltration to the dwelling unit is 2.61393 ACH50 -in.air_leakage_to_outside_ach50 2.61648 Total infiltration to the dwelling unit is 2.61648 ACH50 -in.air_leakage_to_outside_ach50 2.6187 Total infiltration to the dwelling unit is 2.6187 ACH50 -in.air_leakage_to_outside_ach50 2.62296 Total infiltration to the dwelling unit is 2.62296 ACH50 -in.air_leakage_to_outside_ach50 2.63668 Total infiltration to the dwelling unit is 2.63668 ACH50 -in.air_leakage_to_outside_ach50 2.64801 Total infiltration to the dwelling unit is 2.64800999999999 ACH50 -in.air_leakage_to_outside_ach50 2.6488 Total infiltration to the dwelling unit is 2.6488 ACH50 -in.air_leakage_to_outside_ach50 2.64945 Total infiltration to the dwelling unit is 2.64945 ACH50 -in.air_leakage_to_outside_ach50 2.65188 Total infiltration to the dwelling unit is 2.65188 ACH50 -in.air_leakage_to_outside_ach50 2.6547 Total infiltration to the dwelling unit is 2.6547 ACH50 -in.air_leakage_to_outside_ach50 2.65632 Total infiltration to the dwelling unit is 2.65632 ACH50 -in.air_leakage_to_outside_ach50 2.65848 Total infiltration to the dwelling unit is 2.65848 ACH50 -in.air_leakage_to_outside_ach50 2.6622 Total infiltration to the dwelling unit is 2.6622 ACH50 -in.air_leakage_to_outside_ach50 2.6634 Total infiltration to the dwelling unit is 2.6634 ACH50 -in.air_leakage_to_outside_ach50 2.66592 Total infiltration to the dwelling unit is 2.66592 ACH50 -in.air_leakage_to_outside_ach50 2.6663 Total infiltration to the dwelling unit is 2.66629999999999 ACH50 -in.air_leakage_to_outside_ach50 2.67256 Total infiltration to the dwelling unit is 2.67256 ACH50 -in.air_leakage_to_outside_ach50 2.68205 Total infiltration to the dwelling unit is 2.68205 ACH50 -in.air_leakage_to_outside_ach50 2.68308 Total infiltration to the dwelling unit is 2.68308 ACH50 -in.air_leakage_to_outside_ach50 2.68415 Total infiltration to the dwelling unit is 2.68415 ACH50 -in.air_leakage_to_outside_ach50 2.6868 Total infiltration to the dwelling unit is 2.6868 ACH50 -in.air_leakage_to_outside_ach50 2.68701 Total infiltration to the dwelling unit is 2.68701 ACH50 -in.air_leakage_to_outside_ach50 2.6886 Total infiltration to the dwelling unit is 2.6886 ACH50 -in.air_leakage_to_outside_ach50 2.6892 Total infiltration to the dwelling unit is 2.6892 ACH50 -in.air_leakage_to_outside_ach50 2.70288 Total infiltration to the dwelling unit is 2.70288 ACH50 -in.air_leakage_to_outside_ach50 2.7042 Total infiltration to the dwelling unit is 2.7042 ACH50 -in.air_leakage_to_outside_ach50 2.7049 Total infiltration to the dwelling unit is 2.7049 ACH50 -in.air_leakage_to_outside_ach50 2.70772 Total infiltration to the dwelling unit is 2.70772 ACH50 -in.air_leakage_to_outside_ach50 2.70952 Total infiltration to the dwelling unit is 2.70952 ACH50 -in.air_leakage_to_outside_ach50 2.71095 Total infiltration to the dwelling unit is 2.71095 ACH50 -in.air_leakage_to_outside_ach50 2.71626 Total infiltration to the dwelling unit is 2.71626 ACH50 -in.air_leakage_to_outside_ach50 2.71875 Total infiltration to the dwelling unit is 2.71875 ACH50 -in.air_leakage_to_outside_ach50 2.7195 Total infiltration to the dwelling unit is 2.7195 ACH50 -in.air_leakage_to_outside_ach50 2.71964 Total infiltration to the dwelling unit is 2.71964 ACH50 -in.air_leakage_to_outside_ach50 2.72082 Total infiltration to the dwelling unit is 2.72082 ACH50 -in.air_leakage_to_outside_ach50 2.72685 Total infiltration to the dwelling unit is 2.72685 ACH50 -in.air_leakage_to_outside_ach50 2.72716 Total infiltration to the dwelling unit is 2.72716 ACH50 -in.air_leakage_to_outside_ach50 2.729 Total infiltration to the dwelling unit is 2.72899999999999 ACH50 -in.air_leakage_to_outside_ach50 2.7378 Total infiltration to the dwelling unit is 2.7378 ACH50 -in.air_leakage_to_outside_ach50 2.74014 Total infiltration to the dwelling unit is 2.74014 ACH50 -in.air_leakage_to_outside_ach50 2.74124 Total infiltration to the dwelling unit is 2.74124 ACH50 -in.air_leakage_to_outside_ach50 2.74479 Total infiltration to the dwelling unit is 2.74479 ACH50 -in.air_leakage_to_outside_ach50 2.75208 Total infiltration to the dwelling unit is 2.75208 ACH50 -in.air_leakage_to_outside_ach50 2.75506 Total infiltration to the dwelling unit is 2.75506 ACH50 -in.air_leakage_to_outside_ach50 2.75835 Total infiltration to the dwelling unit is 2.75835 ACH50 -in.air_leakage_to_outside_ach50 2.76064 Total infiltration to the dwelling unit is 2.76064 ACH50 -in.air_leakage_to_outside_ach50 2.7682 Total infiltration to the dwelling unit is 2.7682 ACH50 -in.air_leakage_to_outside_ach50 2.77128 Total infiltration to the dwelling unit is 2.77128 ACH50 -in.air_leakage_to_outside_ach50 2.7717 Total infiltration to the dwelling unit is 2.7717 ACH50 -in.air_leakage_to_outside_ach50 2.77685 Total infiltration to the dwelling unit is 2.77685 ACH50 -in.air_leakage_to_outside_ach50 2.781 Total infiltration to the dwelling unit is 2.781 ACH50 -in.air_leakage_to_outside_ach50 2.79006 Total infiltration to the dwelling unit is 2.79006 ACH50 -in.air_leakage_to_outside_ach50 2.7946 Total infiltration to the dwelling unit is 2.7946 ACH50 -in.air_leakage_to_outside_ach50 2.79565 Total infiltration to the dwelling unit is 2.79565 ACH50 -in.air_leakage_to_outside_ach50 2.80156 Total infiltration to the dwelling unit is 2.80156 ACH50 -in.air_leakage_to_outside_ach50 2.80288 Total infiltration to the dwelling unit is 2.80288 ACH50 -in.air_leakage_to_outside_ach50 2.80544 Total infiltration to the dwelling unit is 2.80544 ACH50 -in.air_leakage_to_outside_ach50 2.80553 Total infiltration to the dwelling unit is 2.80553 ACH50 -in.air_leakage_to_outside_ach50 2.8167 Total infiltration to the dwelling unit is 2.8167 ACH50 -in.air_leakage_to_outside_ach50 2.82475 Total infiltration to the dwelling unit is 2.82475 ACH50 -in.air_leakage_to_outside_ach50 2.83284 Total infiltration to the dwelling unit is 2.83284 ACH50 -in.air_leakage_to_outside_ach50 2.83296 Total infiltration to the dwelling unit is 2.83296 ACH50 -in.air_leakage_to_outside_ach50 2.8418 Total infiltration to the dwelling unit is 2.8418 ACH50 -in.air_leakage_to_outside_ach50 2.8434 Total infiltration to the dwelling unit is 2.8434 ACH50 -in.air_leakage_to_outside_ach50 2.84907 Total infiltration to the dwelling unit is 2.84906999999999 ACH50 -in.air_leakage_to_outside_ach50 2.8515 Total infiltration to the dwelling unit is 2.8515 ACH50 -in.air_leakage_to_outside_ach50 2.8578 Total infiltration to the dwelling unit is 2.85779999999999 ACH50 -in.air_leakage_to_outside_ach50 2.8624 Total infiltration to the dwelling unit is 2.8624 ACH50 -in.air_leakage_to_outside_ach50 2.87185 Total infiltration to the dwelling unit is 2.87185 ACH50 -in.air_leakage_to_outside_ach50 2.88265 Total infiltration to the dwelling unit is 2.88265 ACH50 -in.air_leakage_to_outside_ach50 2.8934 Total infiltration to the dwelling unit is 2.89339999999999 ACH50 -in.air_leakage_to_outside_ach50 2.8982 Total infiltration to the dwelling unit is 2.8982 ACH50 -in.air_leakage_to_outside_ach50 2.90073 Total infiltration to the dwelling unit is 2.90073 ACH50 -in.air_leakage_to_outside_ach50 2.9056 Total infiltration to the dwelling unit is 2.90559999999999 ACH50 -in.air_leakage_to_outside_ach50 2.90872 Total infiltration to the dwelling unit is 2.90872 ACH50 -in.air_leakage_to_outside_ach50 2.91212 Total infiltration to the dwelling unit is 2.91212 ACH50 -in.air_leakage_to_outside_ach50 2.92452 Total infiltration to the dwelling unit is 2.92452 ACH50 -in.air_leakage_to_outside_ach50 2.93035 Total infiltration to the dwelling unit is 2.93035 ACH50 -in.air_leakage_to_outside_ach50 2.9331 Total infiltration to the dwelling unit is 2.9331 ACH50 -in.air_leakage_to_outside_ach50 2.9451 Total infiltration to the dwelling unit is 2.94509999999999 ACH50 -in.air_leakage_to_outside_ach50 2.94882 Total infiltration to the dwelling unit is 2.94882 ACH50 -in.air_leakage_to_outside_ach50 2.9565 Total infiltration to the dwelling unit is 2.9565 ACH50 -in.air_leakage_to_outside_ach50 2.961 Total infiltration to the dwelling unit is 2.961 ACH50 -in.air_leakage_to_outside_ach50 2.96396 Total infiltration to the dwelling unit is 2.96396 ACH50 -in.air_leakage_to_outside_ach50 2.96928 Total infiltration to the dwelling unit is 2.96928 ACH50 -in.air_leakage_to_outside_ach50 2.96996 Total infiltration to the dwelling unit is 2.96996 ACH50 -in.air_leakage_to_outside_ach50 2.97044 Total infiltration to the dwelling unit is 2.97044 ACH50 -in.air_leakage_to_outside_ach50 2.98465 Total infiltration to the dwelling unit is 2.98465 ACH50 -in.air_leakage_to_outside_ach50 2.98494 Total infiltration to the dwelling unit is 2.98494 ACH50 -in.air_leakage_to_outside_ach50 2.98543 Total infiltration to the dwelling unit is 2.98543 ACH50 -in.air_leakage_to_outside_ach50 2.9868 Total infiltration to the dwelling unit is 2.9868 ACH50 -in.air_leakage_to_outside_ach50 3 Total infiltration to the dwelling unit is 3 ACH50 -in.air_leakage_to_outside_ach50 3.00582 Total infiltration to the dwelling unit is 3.00582 ACH50 -in.air_leakage_to_outside_ach50 3.00585 Total infiltration to the dwelling unit is 3.00585 ACH50 -in.air_leakage_to_outside_ach50 3.0106 Total infiltration to the dwelling unit is 3.0106 ACH50 -in.air_leakage_to_outside_ach50 3.01805 Total infiltration to the dwelling unit is 3.01804999999999 ACH50 -in.air_leakage_to_outside_ach50 3.02045 Total infiltration to the dwelling unit is 3.02045 ACH50 -in.air_leakage_to_outside_ach50 3.0224 Total infiltration to the dwelling unit is 3.0224 ACH50 -in.air_leakage_to_outside_ach50 3.0318 Total infiltration to the dwelling unit is 3.03179999999999 ACH50 -in.air_leakage_to_outside_ach50 3.0332 Total infiltration to the dwelling unit is 3.0332 ACH50 -in.air_leakage_to_outside_ach50 3.0335 Total infiltration to the dwelling unit is 3.0335 ACH50 -in.air_leakage_to_outside_ach50 3.03425 Total infiltration to the dwelling unit is 3.03425 ACH50 -in.air_leakage_to_outside_ach50 3.03604 Total infiltration to the dwelling unit is 3.03604 ACH50 -in.air_leakage_to_outside_ach50 3.05775 Total infiltration to the dwelling unit is 3.05775 ACH50 -in.air_leakage_to_outside_ach50 3.06136 Total infiltration to the dwelling unit is 3.06136 ACH50 -in.air_leakage_to_outside_ach50 3.06225 Total infiltration to the dwelling unit is 3.06225 ACH50 -in.air_leakage_to_outside_ach50 3.0652 Total infiltration to the dwelling unit is 3.0652 ACH50 -in.air_leakage_to_outside_ach50 3.07136 Total infiltration to the dwelling unit is 3.07136 ACH50 -in.air_leakage_to_outside_ach50 3.07175 Total infiltration to the dwelling unit is 3.07174999999999 ACH50 -in.air_leakage_to_outside_ach50 3.07364 Total infiltration to the dwelling unit is 3.07364 ACH50 -in.air_leakage_to_outside_ach50 3.08928 Total infiltration to the dwelling unit is 3.08928 ACH50 -in.air_leakage_to_outside_ach50 3.09904 Total infiltration to the dwelling unit is 3.09904 ACH50 -in.air_leakage_to_outside_ach50 3.09954 Total infiltration to the dwelling unit is 3.09954 ACH50 -in.air_leakage_to_outside_ach50 3.1005 Total infiltration to the dwelling unit is 3.1005 ACH50 -in.air_leakage_to_outside_ach50 3.1038 Total infiltration to the dwelling unit is 3.10379999999999 ACH50 -in.air_leakage_to_outside_ach50 3.11024 Total infiltration to the dwelling unit is 3.11024 ACH50 -in.air_leakage_to_outside_ach50 3.11125 Total infiltration to the dwelling unit is 3.11125 ACH50 -in.air_leakage_to_outside_ach50 3.11245 Total infiltration to the dwelling unit is 3.11245 ACH50 -in.air_leakage_to_outside_ach50 3.11784 Total infiltration to the dwelling unit is 3.11784 ACH50 -in.air_leakage_to_outside_ach50 3.11976 Total infiltration to the dwelling unit is 3.11976 ACH50 -in.air_leakage_to_outside_ach50 3.12264 Total infiltration to the dwelling unit is 3.12264 ACH50 -in.air_leakage_to_outside_ach50 3.12488 Total infiltration to the dwelling unit is 3.12488 ACH50 -in.air_leakage_to_outside_ach50 3.12668 Total infiltration to the dwelling unit is 3.12668 ACH50 -in.air_leakage_to_outside_ach50 3.1367 Total infiltration to the dwelling unit is 3.1367 ACH50 -in.air_leakage_to_outside_ach50 3.14244 Total infiltration to the dwelling unit is 3.14243999999999 ACH50 -in.air_leakage_to_outside_ach50 3.14825 Total infiltration to the dwelling unit is 3.14825 ACH50 -in.air_leakage_to_outside_ach50 3.14864 Total infiltration to the dwelling unit is 3.14864 ACH50 -in.air_leakage_to_outside_ach50 3.15304 Total infiltration to the dwelling unit is 3.15304 ACH50 -in.air_leakage_to_outside_ach50 3.15928 Total infiltration to the dwelling unit is 3.15928 ACH50 -in.air_leakage_to_outside_ach50 3.16224 Total infiltration to the dwelling unit is 3.16224 ACH50 -in.air_leakage_to_outside_ach50 3.16536 Total infiltration to the dwelling unit is 3.16536 ACH50 -in.air_leakage_to_outside_ach50 3.16585 Total infiltration to the dwelling unit is 3.16585 ACH50 -in.air_leakage_to_outside_ach50 3.16897 Total infiltration to the dwelling unit is 3.16897 ACH50 -in.air_leakage_to_outside_ach50 3.1844 Total infiltration to the dwelling unit is 3.1844 ACH50 -in.air_leakage_to_outside_ach50 3.18564 Total infiltration to the dwelling unit is 3.18564 ACH50 -in.air_leakage_to_outside_ach50 3.19388 Total infiltration to the dwelling unit is 3.19388 ACH50 -in.air_leakage_to_outside_ach50 3.19844 Total infiltration to the dwelling unit is 3.19844 ACH50 -in.air_leakage_to_outside_ach50 3.19956 Total infiltration to the dwelling unit is 3.19956 ACH50 -in.air_leakage_to_outside_ach50 3.2011 Total infiltration to the dwelling unit is 3.2011 ACH50 -in.air_leakage_to_outside_ach50 3.20632 Total infiltration to the dwelling unit is 3.20632 ACH50 -in.air_leakage_to_outside_ach50 3.21076 Total infiltration to the dwelling unit is 3.21075999999999 ACH50 -in.air_leakage_to_outside_ach50 3.211 Total infiltration to the dwelling unit is 3.211 ACH50 -in.air_leakage_to_outside_ach50 3.21368 Total infiltration to the dwelling unit is 3.21368 ACH50 -in.air_leakage_to_outside_ach50 3.22098 Total infiltration to the dwelling unit is 3.22098 ACH50 -in.air_leakage_to_outside_ach50 3.22284 Total infiltration to the dwelling unit is 3.22283999999999 ACH50 -in.air_leakage_to_outside_ach50 3.22335 Total infiltration to the dwelling unit is 3.22335 ACH50 -in.air_leakage_to_outside_ach50 3.22655 Total infiltration to the dwelling unit is 3.22655 ACH50 -in.air_leakage_to_outside_ach50 3.23365 Total infiltration to the dwelling unit is 3.23365 ACH50 -in.air_leakage_to_outside_ach50 3.24105 Total infiltration to the dwelling unit is 3.24104999999999 ACH50 -in.air_leakage_to_outside_ach50 3.24448 Total infiltration to the dwelling unit is 3.24448 ACH50 -in.air_leakage_to_outside_ach50 3.24504 Total infiltration to the dwelling unit is 3.24504 ACH50 -in.air_leakage_to_outside_ach50 3.24588 Total infiltration to the dwelling unit is 3.24588 ACH50 -in.air_leakage_to_outside_ach50 3.24725 Total infiltration to the dwelling unit is 3.24725 ACH50 -in.air_leakage_to_outside_ach50 3.2475 Total infiltration to the dwelling unit is 3.24749999999999 ACH50 -in.air_leakage_to_outside_ach50 3.2486 Total infiltration to the dwelling unit is 3.2486 ACH50 -in.air_leakage_to_outside_ach50 3.25552 Total infiltration to the dwelling unit is 3.25552 ACH50 -in.air_leakage_to_outside_ach50 3.25604 Total infiltration to the dwelling unit is 3.25604 ACH50 -in.air_leakage_to_outside_ach50 3.25608 Total infiltration to the dwelling unit is 3.25608 ACH50 -in.air_leakage_to_outside_ach50 3.25932 Total infiltration to the dwelling unit is 3.25932 ACH50 -in.air_leakage_to_outside_ach50 3.2625 Total infiltration to the dwelling unit is 3.26249999999999 ACH50 -in.air_leakage_to_outside_ach50 3.2706 Total infiltration to the dwelling unit is 3.2706 ACH50 -in.air_leakage_to_outside_ach50 3.27284 Total infiltration to the dwelling unit is 3.27284 ACH50 -in.air_leakage_to_outside_ach50 3.2748 Total infiltration to the dwelling unit is 3.2748 ACH50 -in.air_leakage_to_outside_ach50 3.2787 Total infiltration to the dwelling unit is 3.27869999999999 ACH50 -in.air_leakage_to_outside_ach50 3.28536 Total infiltration to the dwelling unit is 3.28536 ACH50 -in.air_leakage_to_outside_ach50 3.29585 Total infiltration to the dwelling unit is 3.29585 ACH50 -in.air_leakage_to_outside_ach50 3.2964 Total infiltration to the dwelling unit is 3.2964 ACH50 -in.air_leakage_to_outside_ach50 3.31002 Total infiltration to the dwelling unit is 3.31001999999999 ACH50 -in.air_leakage_to_outside_ach50 3.311 Total infiltration to the dwelling unit is 3.311 ACH50 -in.air_leakage_to_outside_ach50 3.31148 Total infiltration to the dwelling unit is 3.31148 ACH50 -in.air_leakage_to_outside_ach50 3.31485 Total infiltration to the dwelling unit is 3.31485 ACH50 -in.air_leakage_to_outside_ach50 3.31512 Total infiltration to the dwelling unit is 3.31512 ACH50 -in.air_leakage_to_outside_ach50 3.31948 Total infiltration to the dwelling unit is 3.31948 ACH50 -in.air_leakage_to_outside_ach50 3.3248 Total infiltration to the dwelling unit is 3.32479999999999 ACH50 -in.air_leakage_to_outside_ach50 3.32675 Total infiltration to the dwelling unit is 3.32675 ACH50 -in.air_leakage_to_outside_ach50 3.32775 Total infiltration to the dwelling unit is 3.32775 ACH50 -in.air_leakage_to_outside_ach50 3.32925 Total infiltration to the dwelling unit is 3.32925 ACH50 -in.air_leakage_to_outside_ach50 3.33222 Total infiltration to the dwelling unit is 3.33222 ACH50 -in.air_leakage_to_outside_ach50 3.33628 Total infiltration to the dwelling unit is 3.33628 ACH50 -in.air_leakage_to_outside_ach50 3.3378 Total infiltration to the dwelling unit is 3.3378 ACH50 -in.air_leakage_to_outside_ach50 3.3407 Total infiltration to the dwelling unit is 3.3407 ACH50 -in.air_leakage_to_outside_ach50 3.3446 Total infiltration to the dwelling unit is 3.3446 ACH50 -in.air_leakage_to_outside_ach50 3.35144 Total infiltration to the dwelling unit is 3.35144 ACH50 -in.air_leakage_to_outside_ach50 3.35352 Total infiltration to the dwelling unit is 3.35351999999999 ACH50 -in.air_leakage_to_outside_ach50 3.35385 Total infiltration to the dwelling unit is 3.35385 ACH50 -in.air_leakage_to_outside_ach50 3.35476 Total infiltration to the dwelling unit is 3.35476 ACH50 -in.air_leakage_to_outside_ach50 3.35478 Total infiltration to the dwelling unit is 3.35478 ACH50 -in.air_leakage_to_outside_ach50 3.3615 Total infiltration to the dwelling unit is 3.3615 ACH50 -in.air_leakage_to_outside_ach50 3.37008 Total infiltration to the dwelling unit is 3.37008 ACH50 -in.air_leakage_to_outside_ach50 3.3702 Total infiltration to the dwelling unit is 3.37019999999999 ACH50 -in.air_leakage_to_outside_ach50 3.37064 Total infiltration to the dwelling unit is 3.37064 ACH50 -in.air_leakage_to_outside_ach50 3.3714 Total infiltration to the dwelling unit is 3.3714 ACH50 -in.air_leakage_to_outside_ach50 3.3786 Total infiltration to the dwelling unit is 3.3786 ACH50 -in.air_leakage_to_outside_ach50 3.38004 Total infiltration to the dwelling unit is 3.38003999999999 ACH50 -in.air_leakage_to_outside_ach50 3.38465 Total infiltration to the dwelling unit is 3.38465 ACH50 -in.air_leakage_to_outside_ach50 3.38564 Total infiltration to the dwelling unit is 3.38564 ACH50 -in.air_leakage_to_outside_ach50 3.3869 Total infiltration to the dwelling unit is 3.3869 ACH50 -in.air_leakage_to_outside_ach50 3.3897 Total infiltration to the dwelling unit is 3.38969999999999 ACH50 -in.air_leakage_to_outside_ach50 3.39955 Total infiltration to the dwelling unit is 3.39955 ACH50 -in.air_leakage_to_outside_ach50 3.40144 Total infiltration to the dwelling unit is 3.40144 ACH50 -in.air_leakage_to_outside_ach50 3.40895 Total infiltration to the dwelling unit is 3.40895 ACH50 -in.air_leakage_to_outside_ach50 3.41192 Total infiltration to the dwelling unit is 3.41192 ACH50 -in.air_leakage_to_outside_ach50 3.416 Total infiltration to the dwelling unit is 3.416 ACH50 -in.air_leakage_to_outside_ach50 3.4164 Total infiltration to the dwelling unit is 3.4164 ACH50 -in.air_leakage_to_outside_ach50 3.42088 Total infiltration to the dwelling unit is 3.42088 ACH50 -in.air_leakage_to_outside_ach50 3.42132 Total infiltration to the dwelling unit is 3.42132 ACH50 -in.air_leakage_to_outside_ach50 3.42655 Total infiltration to the dwelling unit is 3.42654999999999 ACH50 -in.air_leakage_to_outside_ach50 3.42936 Total infiltration to the dwelling unit is 3.42936 ACH50 -in.air_leakage_to_outside_ach50 3.43035 Total infiltration to the dwelling unit is 3.43035 ACH50 -in.air_leakage_to_outside_ach50 3.4305 Total infiltration to the dwelling unit is 3.4305 ACH50 -in.air_leakage_to_outside_ach50 3.43076 Total infiltration to the dwelling unit is 3.43076 ACH50 -in.air_leakage_to_outside_ach50 3.43752 Total infiltration to the dwelling unit is 3.43752 ACH50 -in.air_leakage_to_outside_ach50 3.4428 Total infiltration to the dwelling unit is 3.44279999999999 ACH50 -in.air_leakage_to_outside_ach50 3.44622 Total infiltration to the dwelling unit is 3.44622 ACH50 -in.air_leakage_to_outside_ach50 3.4492 Total infiltration to the dwelling unit is 3.4492 ACH50 -in.air_leakage_to_outside_ach50 3.4508 Total infiltration to the dwelling unit is 3.4508 ACH50 -in.air_leakage_to_outside_ach50 3.45918 Total infiltration to the dwelling unit is 3.45918 ACH50 -in.air_leakage_to_outside_ach50 3.46025 Total infiltration to the dwelling unit is 3.46025 ACH50 -in.air_leakage_to_outside_ach50 3.4641 Total infiltration to the dwelling unit is 3.4641 ACH50 -in.air_leakage_to_outside_ach50 3.46732 Total infiltration to the dwelling unit is 3.46732 ACH50 -in.air_leakage_to_outside_ach50 3.47784 Total infiltration to the dwelling unit is 3.47784 ACH50 -in.air_leakage_to_outside_ach50 3.48243 Total infiltration to the dwelling unit is 3.48243 ACH50 -in.air_leakage_to_outside_ach50 3.48464 Total infiltration to the dwelling unit is 3.48464 ACH50 -in.air_leakage_to_outside_ach50 3.48524 Total infiltration to the dwelling unit is 3.48524 ACH50 -in.air_leakage_to_outside_ach50 3.48672 Total infiltration to the dwelling unit is 3.48672 ACH50 -in.air_leakage_to_outside_ach50 3.5 Total infiltration to the dwelling unit is 3.5 ACH50 -in.air_leakage_to_outside_ach50 3.50195 Total infiltration to the dwelling unit is 3.50195 ACH50 -in.air_leakage_to_outside_ach50 3.5036 Total infiltration to the dwelling unit is 3.5036 ACH50 -in.air_leakage_to_outside_ach50 3.5068 Total infiltration to the dwelling unit is 3.5068 ACH50 -in.air_leakage_to_outside_ach50 3.51642 Total infiltration to the dwelling unit is 3.51642 ACH50 -in.air_leakage_to_outside_ach50 3.51972 Total infiltration to the dwelling unit is 3.51972 ACH50 -in.air_leakage_to_outside_ach50 3.5326 Total infiltration to the dwelling unit is 3.5326 ACH50 -in.air_leakage_to_outside_ach50 3.5334 Total infiltration to the dwelling unit is 3.5334 ACH50 -in.air_leakage_to_outside_ach50 3.53568 Total infiltration to the dwelling unit is 3.53568 ACH50 -in.air_leakage_to_outside_ach50 3.5371 Total infiltration to the dwelling unit is 3.53709999999999 ACH50 -in.air_leakage_to_outside_ach50 3.54105 Total infiltration to the dwelling unit is 3.54105 ACH50 -in.air_leakage_to_outside_ach50 3.54176 Total infiltration to the dwelling unit is 3.54176 ACH50 -in.air_leakage_to_outside_ach50 3.54464 Total infiltration to the dwelling unit is 3.54464 ACH50 -in.air_leakage_to_outside_ach50 3.5478 Total infiltration to the dwelling unit is 3.5478 ACH50 -in.air_leakage_to_outside_ach50 3.55225 Total infiltration to the dwelling unit is 3.55225 ACH50 -in.air_leakage_to_outside_ach50 3.5532 Total infiltration to the dwelling unit is 3.55319999999999 ACH50 -in.air_leakage_to_outside_ach50 3.55456 Total infiltration to the dwelling unit is 3.55456 ACH50 -in.air_leakage_to_outside_ach50 3.5664 Total infiltration to the dwelling unit is 3.5664 ACH50 -in.air_leakage_to_outside_ach50 3.57432 Total infiltration to the dwelling unit is 3.57432 ACH50 -in.air_leakage_to_outside_ach50 3.578 Total infiltration to the dwelling unit is 3.578 ACH50 -in.air_leakage_to_outside_ach50 3.58158 Total infiltration to the dwelling unit is 3.58157999999999 ACH50 -in.air_leakage_to_outside_ach50 3.5824 Total infiltration to the dwelling unit is 3.5824 ACH50 -in.air_leakage_to_outside_ach50 3.58268 Total infiltration to the dwelling unit is 3.58268 ACH50 -in.air_leakage_to_outside_ach50 3.58416 Total infiltration to the dwelling unit is 3.58416 ACH50 -in.air_leakage_to_outside_ach50 3.5848 Total infiltration to the dwelling unit is 3.5848 ACH50 -in.air_leakage_to_outside_ach50 3.60816 Total infiltration to the dwelling unit is 3.60816 ACH50 -in.air_leakage_to_outside_ach50 3.6146 Total infiltration to the dwelling unit is 3.6146 ACH50 -in.air_leakage_to_outside_ach50 3.61485 Total infiltration to the dwelling unit is 3.61485 ACH50 -in.air_leakage_to_outside_ach50 3.61613 Total infiltration to the dwelling unit is 3.61613 ACH50 -in.air_leakage_to_outside_ach50 3.61675 Total infiltration to the dwelling unit is 3.61674999999999 ACH50 -in.air_leakage_to_outside_ach50 3.62168 Total infiltration to the dwelling unit is 3.62168 ACH50 -in.air_leakage_to_outside_ach50 3.62454 Total infiltration to the dwelling unit is 3.62454 ACH50 -in.air_leakage_to_outside_ach50 3.62642 Total infiltration to the dwelling unit is 3.62641999999999 ACH50 -in.air_leakage_to_outside_ach50 3.62688 Total infiltration to the dwelling unit is 3.62688 ACH50 -in.air_leakage_to_outside_ach50 3.62776 Total infiltration to the dwelling unit is 3.62776 ACH50 -in.air_leakage_to_outside_ach50 3.62804 Total infiltration to the dwelling unit is 3.62804 ACH50 -in.air_leakage_to_outside_ach50 3.63294 Total infiltration to the dwelling unit is 3.63293999999999 ACH50 -in.air_leakage_to_outside_ach50 3.6358 Total infiltration to the dwelling unit is 3.6358 ACH50 -in.air_leakage_to_outside_ach50 3.6359 Total infiltration to the dwelling unit is 3.6359 ACH50 -in.air_leakage_to_outside_ach50 3.63972 Total infiltration to the dwelling unit is 3.63971999999999 ACH50 -in.air_leakage_to_outside_ach50 3.64015 Total infiltration to the dwelling unit is 3.64014999999999 ACH50 -in.air_leakage_to_outside_ach50 3.6402 Total infiltration to the dwelling unit is 3.6402 ACH50 -in.air_leakage_to_outside_ach50 3.65352 Total infiltration to the dwelling unit is 3.65352 ACH50 -in.air_leakage_to_outside_ach50 3.65756 Total infiltration to the dwelling unit is 3.65756 ACH50 -in.air_leakage_to_outside_ach50 3.65972 Total infiltration to the dwelling unit is 3.65972 ACH50 -in.air_leakage_to_outside_ach50 3.66618 Total infiltration to the dwelling unit is 3.66617999999999 ACH50 -in.air_leakage_to_outside_ach50 3.6693 Total infiltration to the dwelling unit is 3.6693 ACH50 -in.air_leakage_to_outside_ach50 3.66944 Total infiltration to the dwelling unit is 3.66944 ACH50 -in.air_leakage_to_outside_ach50 3.6747 Total infiltration to the dwelling unit is 3.6747 ACH50 -in.air_leakage_to_outside_ach50 3.68568 Total infiltration to the dwelling unit is 3.68568 ACH50 -in.air_leakage_to_outside_ach50 3.6861 Total infiltration to the dwelling unit is 3.68609999999999 ACH50 -in.air_leakage_to_outside_ach50 3.6956 Total infiltration to the dwelling unit is 3.6956 ACH50 -in.air_leakage_to_outside_ach50 3.6967 Total infiltration to the dwelling unit is 3.6967 ACH50 -in.air_leakage_to_outside_ach50 3.7011 Total infiltration to the dwelling unit is 3.7011 ACH50 -in.air_leakage_to_outside_ach50 3.70495 Total infiltration to the dwelling unit is 3.70495 ACH50 -in.air_leakage_to_outside_ach50 3.70596 Total infiltration to the dwelling unit is 3.70596 ACH50 -in.air_leakage_to_outside_ach50 3.708 Total infiltration to the dwelling unit is 3.708 ACH50 -in.air_leakage_to_outside_ach50 3.7116 Total infiltration to the dwelling unit is 3.7116 ACH50 -in.air_leakage_to_outside_ach50 3.71165 Total infiltration to the dwelling unit is 3.71165 ACH50 -in.air_leakage_to_outside_ach50 3.71245 Total infiltration to the dwelling unit is 3.71245 ACH50 -in.air_leakage_to_outside_ach50 3.71305 Total infiltration to the dwelling unit is 3.71305 ACH50 -in.air_leakage_to_outside_ach50 3.71658 Total infiltration to the dwelling unit is 3.71657999999999 ACH50 -in.air_leakage_to_outside_ach50 3.73282 Total infiltration to the dwelling unit is 3.73282 ACH50 -in.air_leakage_to_outside_ach50 3.7335 Total infiltration to the dwelling unit is 3.7335 ACH50 -in.air_leakage_to_outside_ach50 3.73494 Total infiltration to the dwelling unit is 3.73494 ACH50 -in.air_leakage_to_outside_ach50 3.73864 Total infiltration to the dwelling unit is 3.73864 ACH50 -in.air_leakage_to_outside_ach50 3.75781 Total infiltration to the dwelling unit is 3.75781 ACH50 -in.air_leakage_to_outside_ach50 3.75998 Total infiltration to the dwelling unit is 3.75997999999999 ACH50 -in.air_leakage_to_outside_ach50 3.76325 Total infiltration to the dwelling unit is 3.76325 ACH50 -in.air_leakage_to_outside_ach50 3.77 Total infiltration to the dwelling unit is 3.77 ACH50 -in.air_leakage_to_outside_ach50 3.77728 Total infiltration to the dwelling unit is 3.77728 ACH50 -in.air_leakage_to_outside_ach50 3.7779 Total infiltration to the dwelling unit is 3.7779 ACH50 -in.air_leakage_to_outside_ach50 3.78588 Total infiltration to the dwelling unit is 3.78587999999999 ACH50 -in.air_leakage_to_outside_ach50 3.78686 Total infiltration to the dwelling unit is 3.78686 ACH50 -in.air_leakage_to_outside_ach50 3.7912 Total infiltration to the dwelling unit is 3.7912 ACH50 -in.air_leakage_to_outside_ach50 3.7915 Total infiltration to the dwelling unit is 3.7915 ACH50 -in.air_leakage_to_outside_ach50 3.79505 Total infiltration to the dwelling unit is 3.79505 ACH50 -in.air_leakage_to_outside_ach50 3.79902 Total infiltration to the dwelling unit is 3.79902 ACH50 -in.air_leakage_to_outside_ach50 3.8011 Total infiltration to the dwelling unit is 3.8011 ACH50 -in.air_leakage_to_outside_ach50 3.802 Total infiltration to the dwelling unit is 3.802 ACH50 -in.air_leakage_to_outside_ach50 3.8048 Total infiltration to the dwelling unit is 3.80479999999999 ACH50 -in.air_leakage_to_outside_ach50 3.80625 Total infiltration to the dwelling unit is 3.80624999999999 ACH50 -in.air_leakage_to_outside_ach50 3.8117 Total infiltration to the dwelling unit is 3.8117 ACH50 -in.air_leakage_to_outside_ach50 3.8206 Total infiltration to the dwelling unit is 3.82059999999999 ACH50 -in.air_leakage_to_outside_ach50 3.8267 Total infiltration to the dwelling unit is 3.8267 ACH50 -in.air_leakage_to_outside_ach50 3.8315 Total infiltration to the dwelling unit is 3.8315 ACH50 -in.air_leakage_to_outside_ach50 3.83292 Total infiltration to the dwelling unit is 3.83292 ACH50 -in.air_leakage_to_outside_ach50 3.83315 Total infiltration to the dwelling unit is 3.83315 ACH50 -in.air_leakage_to_outside_ach50 3.8392 Total infiltration to the dwelling unit is 3.8392 ACH50 -in.air_leakage_to_outside_ach50 3.84205 Total infiltration to the dwelling unit is 3.84205 ACH50 -in.air_leakage_to_outside_ach50 3.85584 Total infiltration to the dwelling unit is 3.85584 ACH50 -in.air_leakage_to_outside_ach50 3.8616 Total infiltration to the dwelling unit is 3.8616 ACH50 -in.air_leakage_to_outside_ach50 3.86169 Total infiltration to the dwelling unit is 3.86169 ACH50 -in.air_leakage_to_outside_ach50 3.8645 Total infiltration to the dwelling unit is 3.8645 ACH50 -in.air_leakage_to_outside_ach50 3.86802 Total infiltration to the dwelling unit is 3.86801999999999 ACH50 -in.air_leakage_to_outside_ach50 3.87975 Total infiltration to the dwelling unit is 3.87975 ACH50 -in.air_leakage_to_outside_ach50 3.88759 Total infiltration to the dwelling unit is 3.88759 ACH50 -in.air_leakage_to_outside_ach50 3.88926 Total infiltration to the dwelling unit is 3.88925999999999 ACH50 -in.air_leakage_to_outside_ach50 3.8967 Total infiltration to the dwelling unit is 3.8967 ACH50 -in.air_leakage_to_outside_ach50 3.8973 Total infiltration to the dwelling unit is 3.8973 ACH50 -in.air_leakage_to_outside_ach50 3.89936 Total infiltration to the dwelling unit is 3.89936 ACH50 -in.air_leakage_to_outside_ach50 3.9061 Total infiltration to the dwelling unit is 3.9061 ACH50 -in.air_leakage_to_outside_ach50 3.90835 Total infiltration to the dwelling unit is 3.90835 ACH50 -in.air_leakage_to_outside_ach50 3.91244 Total infiltration to the dwelling unit is 3.91243999999999 ACH50 -in.air_leakage_to_outside_ach50 3.91391 Total infiltration to the dwelling unit is 3.91391 ACH50 -in.air_leakage_to_outside_ach50 3.9268 Total infiltration to the dwelling unit is 3.92679999999999 ACH50 -in.air_leakage_to_outside_ach50 3.93444 Total infiltration to the dwelling unit is 3.93444 ACH50 -in.air_leakage_to_outside_ach50 3.9358 Total infiltration to the dwelling unit is 3.9358 ACH50 -in.air_leakage_to_outside_ach50 3.93595 Total infiltration to the dwelling unit is 3.93594999999999 ACH50 -in.air_leakage_to_outside_ach50 3.9413 Total infiltration to the dwelling unit is 3.9413 ACH50 -in.air_leakage_to_outside_ach50 3.94338 Total infiltration to the dwelling unit is 3.94337999999999 ACH50 -in.air_leakage_to_outside_ach50 3.9528 Total infiltration to the dwelling unit is 3.9528 ACH50 -in.air_leakage_to_outside_ach50 3.95465 Total infiltration to the dwelling unit is 3.95464999999999 ACH50 -in.air_leakage_to_outside_ach50 3.95502 Total infiltration to the dwelling unit is 3.95502 ACH50 -in.air_leakage_to_outside_ach50 3.9567 Total infiltration to the dwelling unit is 3.9567 ACH50 -in.air_leakage_to_outside_ach50 3.97782 Total infiltration to the dwelling unit is 3.97781999999999 ACH50 -in.air_leakage_to_outside_ach50 3.97992 Total infiltration to the dwelling unit is 3.97992 ACH50 -in.air_leakage_to_outside_ach50 3.9805 Total infiltration to the dwelling unit is 3.9805 ACH50 -in.air_leakage_to_outside_ach50 3.98502 Total infiltration to the dwelling unit is 3.98502 ACH50 -in.air_leakage_to_outside_ach50 3.99235 Total infiltration to the dwelling unit is 3.99235 ACH50 -in.air_leakage_to_outside_ach50 3.9933 Total infiltration to the dwelling unit is 3.99329999999999 ACH50 -in.air_leakage_to_outside_ach50 3.9934 Total infiltration to the dwelling unit is 3.9934 ACH50 -in.air_leakage_to_outside_ach50 3.99385 Total infiltration to the dwelling unit is 3.99385 ACH50 -in.air_leakage_to_outside_ach50 3.9951 Total infiltration to the dwelling unit is 3.9951 ACH50 -in.air_leakage_to_outside_ach50 3.997 Total infiltration to the dwelling unit is 3.997 ACH50 -in.air_leakage_to_outside_ach50 3.99805 Total infiltration to the dwelling unit is 3.99805 ACH50 -in.air_leakage_to_outside_ach50 4 Total infiltration to the dwelling unit is 4 ACH50 -in.air_leakage_to_outside_ach50 4.00092 Total infiltration to the dwelling unit is 4.00092 ACH50 -in.air_leakage_to_outside_ach50 4.0078 Total infiltration to the dwelling unit is 4.0078 ACH50 -in.air_leakage_to_outside_ach50 4.0079 Total infiltration to the dwelling unit is 4.00789999999999 ACH50 -in.air_leakage_to_outside_ach50 4.00884 Total infiltration to the dwelling unit is 4.00883999999999 ACH50 -in.air_leakage_to_outside_ach50 4.01044 Total infiltration to the dwelling unit is 4.01044 ACH50 -in.air_leakage_to_outside_ach50 4.0112 Total infiltration to the dwelling unit is 4.0112 ACH50 -in.air_leakage_to_outside_ach50 4.01675 Total infiltration to the dwelling unit is 4.01675 ACH50 -in.air_leakage_to_outside_ach50 4.02059 Total infiltration to the dwelling unit is 4.02059 ACH50 -in.air_leakage_to_outside_ach50 4.02462 Total infiltration to the dwelling unit is 4.02462 ACH50 -in.air_leakage_to_outside_ach50 4.02885 Total infiltration to the dwelling unit is 4.02885 ACH50 -in.air_leakage_to_outside_ach50 4.0338 Total infiltration to the dwelling unit is 4.0338 ACH50 -in.air_leakage_to_outside_ach50 4.03571 Total infiltration to the dwelling unit is 4.03571 ACH50 -in.air_leakage_to_outside_ach50 4.0424 Total infiltration to the dwelling unit is 4.0424 ACH50 -in.air_leakage_to_outside_ach50 4.05432 Total infiltration to the dwelling unit is 4.05432 ACH50 -in.air_leakage_to_outside_ach50 4.0556 Total infiltration to the dwelling unit is 4.0556 ACH50 -in.air_leakage_to_outside_ach50 4.05748 Total infiltration to the dwelling unit is 4.05748 ACH50 -in.air_leakage_to_outside_ach50 4.05923 Total infiltration to the dwelling unit is 4.05923 ACH50 -in.air_leakage_to_outside_ach50 4.06158 Total infiltration to the dwelling unit is 4.06158 ACH50 -in.air_leakage_to_outside_ach50 4.06428 Total infiltration to the dwelling unit is 4.06428 ACH50 -in.air_leakage_to_outside_ach50 4.06784 Total infiltration to the dwelling unit is 4.06783999999999 ACH50 -in.air_leakage_to_outside_ach50 4.0694 Total infiltration to the dwelling unit is 4.0694 ACH50 -in.air_leakage_to_outside_ach50 4.07005 Total infiltration to the dwelling unit is 4.07005 ACH50 -in.air_leakage_to_outside_ach50 4.0701 Total infiltration to the dwelling unit is 4.0701 ACH50 -in.air_leakage_to_outside_ach50 4.07415 Total infiltration to the dwelling unit is 4.07415 ACH50 -in.air_leakage_to_outside_ach50 4.07925 Total infiltration to the dwelling unit is 4.07925 ACH50 -in.air_leakage_to_outside_ach50 4.07946 Total infiltration to the dwelling unit is 4.07946 ACH50 -in.air_leakage_to_outside_ach50 4.084 Total infiltration to the dwelling unit is 4.084 ACH50 -in.air_leakage_to_outside_ach50 4.09074 Total infiltration to the dwelling unit is 4.09074 ACH50 -in.air_leakage_to_outside_ach50 4.09105 Total infiltration to the dwelling unit is 4.09105 ACH50 -in.air_leakage_to_outside_ach50 4.10249 Total infiltration to the dwelling unit is 4.10248999999999 ACH50 -in.air_leakage_to_outside_ach50 4.10634 Total infiltration to the dwelling unit is 4.10634 ACH50 -in.air_leakage_to_outside_ach50 4.11186 Total infiltration to the dwelling unit is 4.11186 ACH50 -in.air_leakage_to_outside_ach50 4.1133 Total infiltration to the dwelling unit is 4.1133 ACH50 -in.air_leakage_to_outside_ach50 4.1188 Total infiltration to the dwelling unit is 4.1188 ACH50 -in.air_leakage_to_outside_ach50 4.1205 Total infiltration to the dwelling unit is 4.1205 ACH50 -in.air_leakage_to_outside_ach50 4.1223 Total infiltration to the dwelling unit is 4.1223 ACH50 -in.air_leakage_to_outside_ach50 4.13272 Total infiltration to the dwelling unit is 4.13272 ACH50 -in.air_leakage_to_outside_ach50 4.134 Total infiltration to the dwelling unit is 4.134 ACH50 -in.air_leakage_to_outside_ach50 4.13875 Total infiltration to the dwelling unit is 4.13875 ACH50 -in.air_leakage_to_outside_ach50 4.13935 Total infiltration to the dwelling unit is 4.13935 ACH50 -in.air_leakage_to_outside_ach50 4.1439 Total infiltration to the dwelling unit is 4.14389999999999 ACH50 -in.air_leakage_to_outside_ach50 4.1454 Total infiltration to the dwelling unit is 4.14539999999999 ACH50 -in.air_leakage_to_outside_ach50 4.14935 Total infiltration to the dwelling unit is 4.14935 ACH50 -in.air_leakage_to_outside_ach50 4.1523 Total infiltration to the dwelling unit is 4.1523 ACH50 -in.air_leakage_to_outside_ach50 4.156 Total infiltration to the dwelling unit is 4.156 ACH50 -in.air_leakage_to_outside_ach50 4.15692 Total infiltration to the dwelling unit is 4.15691999999999 ACH50 -in.air_leakage_to_outside_ach50 4.15968 Total infiltration to the dwelling unit is 4.15968 ACH50 -in.air_leakage_to_outside_ach50 4.16045 Total infiltration to the dwelling unit is 4.16045 ACH50 -in.air_leakage_to_outside_ach50 4.17035 Total infiltration to the dwelling unit is 4.17035 ACH50 -in.air_leakage_to_outside_ach50 4.17225 Total infiltration to the dwelling unit is 4.17225 ACH50 -in.air_leakage_to_outside_ach50 4.17851 Total infiltration to the dwelling unit is 4.17850999999999 ACH50 -in.air_leakage_to_outside_ach50 4.18075 Total infiltration to the dwelling unit is 4.18075 ACH50 -in.air_leakage_to_outside_ach50 4.18152 Total infiltration to the dwelling unit is 4.18152 ACH50 -in.air_leakage_to_outside_ach50 4.1893 Total infiltration to the dwelling unit is 4.1893 ACH50 -in.air_leakage_to_outside_ach50 4.18992 Total infiltration to the dwelling unit is 4.18992 ACH50 -in.air_leakage_to_outside_ach50 4.19235 Total infiltration to the dwelling unit is 4.19235 ACH50 -in.air_leakage_to_outside_ach50 4.19345 Total infiltration to the dwelling unit is 4.19345 ACH50 -in.air_leakage_to_outside_ach50 4.19975 Total infiltration to the dwelling unit is 4.19975 ACH50 -in.air_leakage_to_outside_ach50 4.20234 Total infiltration to the dwelling unit is 4.20233999999999 ACH50 -in.air_leakage_to_outside_ach50 4.20432 Total infiltration to the dwelling unit is 4.20432 ACH50 -in.air_leakage_to_outside_ach50 4.20816 Total infiltration to the dwelling unit is 4.20815999999999 ACH50 -in.air_leakage_to_outside_ach50 4.2126 Total infiltration to the dwelling unit is 4.2126 ACH50 -in.air_leakage_to_outside_ach50 4.2133 Total infiltration to the dwelling unit is 4.2133 ACH50 -in.air_leakage_to_outside_ach50 4.21425 Total infiltration to the dwelling unit is 4.21425 ACH50 -in.air_leakage_to_outside_ach50 4.2248 Total infiltration to the dwelling unit is 4.2248 ACH50 -in.air_leakage_to_outside_ach50 4.2254 Total infiltration to the dwelling unit is 4.2254 ACH50 -in.air_leakage_to_outside_ach50 4.22863 Total infiltration to the dwelling unit is 4.22863 ACH50 -in.air_leakage_to_outside_ach50 4.2301 Total infiltration to the dwelling unit is 4.2301 ACH50 -in.air_leakage_to_outside_ach50 4.23136 Total infiltration to the dwelling unit is 4.23136 ACH50 -in.air_leakage_to_outside_ach50 4.23205 Total infiltration to the dwelling unit is 4.23205 ACH50 -in.air_leakage_to_outside_ach50 4.23843 Total infiltration to the dwelling unit is 4.23843 ACH50 -in.air_leakage_to_outside_ach50 4.2469 Total infiltration to the dwelling unit is 4.2469 ACH50 -in.air_leakage_to_outside_ach50 4.24752 Total infiltration to the dwelling unit is 4.24752 ACH50 -in.air_leakage_to_outside_ach50 4.24926 Total infiltration to the dwelling unit is 4.24926 ACH50 -in.air_leakage_to_outside_ach50 4.2518 Total infiltration to the dwelling unit is 4.2518 ACH50 -in.air_leakage_to_outside_ach50 4.2627 Total infiltration to the dwelling unit is 4.2627 ACH50 -in.air_leakage_to_outside_ach50 4.2649 Total infiltration to the dwelling unit is 4.2649 ACH50 -in.air_leakage_to_outside_ach50 4.26608 Total infiltration to the dwelling unit is 4.26608 ACH50 -in.air_leakage_to_outside_ach50 4.27 Total infiltration to the dwelling unit is 4.27 ACH50 -in.air_leakage_to_outside_ach50 4.2705 Total infiltration to the dwelling unit is 4.2705 ACH50 -in.air_leakage_to_outside_ach50 4.27665 Total infiltration to the dwelling unit is 4.27665 ACH50 -in.air_leakage_to_outside_ach50 4.28085 Total infiltration to the dwelling unit is 4.28085 ACH50 -in.air_leakage_to_outside_ach50 4.28785 Total infiltration to the dwelling unit is 4.28785 ACH50 -in.air_leakage_to_outside_ach50 4.28845 Total infiltration to the dwelling unit is 4.28845 ACH50 -in.air_leakage_to_outside_ach50 4.2936 Total infiltration to the dwelling unit is 4.2936 ACH50 -in.air_leakage_to_outside_ach50 4.29464 Total infiltration to the dwelling unit is 4.29464 ACH50 -in.air_leakage_to_outside_ach50 4.29712 Total infiltration to the dwelling unit is 4.29712 ACH50 -in.air_leakage_to_outside_ach50 4.30045 Total infiltration to the dwelling unit is 4.30045 ACH50 -in.air_leakage_to_outside_ach50 4.3035 Total infiltration to the dwelling unit is 4.3035 ACH50 -in.air_leakage_to_outside_ach50 4.3115 Total infiltration to the dwelling unit is 4.3115 ACH50 -in.air_leakage_to_outside_ach50 4.32672 Total infiltration to the dwelling unit is 4.32672 ACH50 -in.air_leakage_to_outside_ach50 4.32784 Total infiltration to the dwelling unit is 4.32784 ACH50 -in.air_leakage_to_outside_ach50 4.33415 Total infiltration to the dwelling unit is 4.33415 ACH50 -in.air_leakage_to_outside_ach50 4.3401 Total infiltration to the dwelling unit is 4.3401 ACH50 -in.air_leakage_to_outside_ach50 4.35 Total infiltration to the dwelling unit is 4.35 ACH50 -in.air_leakage_to_outside_ach50 4.35575 Total infiltration to the dwelling unit is 4.35575 ACH50 -in.air_leakage_to_outside_ach50 4.3558 Total infiltration to the dwelling unit is 4.3558 ACH50 -in.air_leakage_to_outside_ach50 4.3562 Total infiltration to the dwelling unit is 4.3562 ACH50 -in.air_leakage_to_outside_ach50 4.35655 Total infiltration to the dwelling unit is 4.35655 ACH50 -in.air_leakage_to_outside_ach50 4.35743 Total infiltration to the dwelling unit is 4.35743 ACH50 -in.air_leakage_to_outside_ach50 4.3664 Total infiltration to the dwelling unit is 4.3664 ACH50 -in.air_leakage_to_outside_ach50 4.36818 Total infiltration to the dwelling unit is 4.36818 ACH50 -in.air_leakage_to_outside_ach50 4.38048 Total infiltration to the dwelling unit is 4.38048 ACH50 -in.air_leakage_to_outside_ach50 4.40755 Total infiltration to the dwelling unit is 4.40755 ACH50 -in.air_leakage_to_outside_ach50 4.41336 Total infiltration to the dwelling unit is 4.41336 ACH50 -in.air_leakage_to_outside_ach50 4.41575 Total infiltration to the dwelling unit is 4.41575 ACH50 -in.air_leakage_to_outside_ach50 4.4196 Total infiltration to the dwelling unit is 4.4196 ACH50 -in.air_leakage_to_outside_ach50 4.4272 Total infiltration to the dwelling unit is 4.4272 ACH50 -in.air_leakage_to_outside_ach50 4.42825 Total infiltration to the dwelling unit is 4.42825 ACH50 -in.air_leakage_to_outside_ach50 4.4308 Total infiltration to the dwelling unit is 4.4308 ACH50 -in.air_leakage_to_outside_ach50 4.43219 Total infiltration to the dwelling unit is 4.43219 ACH50 -in.air_leakage_to_outside_ach50 4.44315 Total infiltration to the dwelling unit is 4.44315 ACH50 -in.air_leakage_to_outside_ach50 4.4432 Total infiltration to the dwelling unit is 4.4432 ACH50 -in.air_leakage_to_outside_ach50 4.44594 Total infiltration to the dwelling unit is 4.44594 ACH50 -in.air_leakage_to_outside_ach50 4.45398 Total infiltration to the dwelling unit is 4.45398 ACH50 -in.air_leakage_to_outside_ach50 4.45494 Total infiltration to the dwelling unit is 4.45494 ACH50 -in.air_leakage_to_outside_ach50 4.45566 Total infiltration to the dwelling unit is 4.45566 ACH50 -in.air_leakage_to_outside_ach50 4.46226 Total infiltration to the dwelling unit is 4.46226 ACH50 -in.air_leakage_to_outside_ach50 4.4679 Total infiltration to the dwelling unit is 4.4679 ACH50 -in.air_leakage_to_outside_ach50 4.47136 Total infiltration to the dwelling unit is 4.47136 ACH50 -in.air_leakage_to_outside_ach50 4.47304 Total infiltration to the dwelling unit is 4.47304 ACH50 -in.air_leakage_to_outside_ach50 4.478 Total infiltration to the dwelling unit is 4.478 ACH50 -in.air_leakage_to_outside_ach50 4.47835 Total infiltration to the dwelling unit is 4.47835 ACH50 -in.air_leakage_to_outside_ach50 4.481 Total infiltration to the dwelling unit is 4.481 ACH50 -in.air_leakage_to_outside_ach50 4.4936 Total infiltration to the dwelling unit is 4.4936 ACH50 -in.air_leakage_to_outside_ach50 4.50672 Total infiltration to the dwelling unit is 4.50672 ACH50 -in.air_leakage_to_outside_ach50 4.51269 Total infiltration to the dwelling unit is 4.51269 ACH50 -in.air_leakage_to_outside_ach50 4.5159 Total infiltration to the dwelling unit is 4.5159 ACH50 -in.air_leakage_to_outside_ach50 4.51825 Total infiltration to the dwelling unit is 4.51825 ACH50 -in.air_leakage_to_outside_ach50 4.5196 Total infiltration to the dwelling unit is 4.5196 ACH50 -in.air_leakage_to_outside_ach50 4.5271 Total infiltration to the dwelling unit is 4.5271 ACH50 -in.air_leakage_to_outside_ach50 4.5347 Total infiltration to the dwelling unit is 4.5347 ACH50 -in.air_leakage_to_outside_ach50 4.53505 Total infiltration to the dwelling unit is 4.53505 ACH50 -in.air_leakage_to_outside_ach50 4.53747 Total infiltration to the dwelling unit is 4.53747 ACH50 -in.air_leakage_to_outside_ach50 4.54475 Total infiltration to the dwelling unit is 4.54475 ACH50 -in.air_leakage_to_outside_ach50 4.5498 Total infiltration to the dwelling unit is 4.54979999999999 ACH50 -in.air_leakage_to_outside_ach50 4.55406 Total infiltration to the dwelling unit is 4.55406 ACH50 -in.air_leakage_to_outside_ach50 4.55418 Total infiltration to the dwelling unit is 4.55418 ACH50 -in.air_leakage_to_outside_ach50 4.55988 Total infiltration to the dwelling unit is 4.55988 ACH50 -in.air_leakage_to_outside_ach50 4.5669 Total infiltration to the dwelling unit is 4.56689999999999 ACH50 -in.air_leakage_to_outside_ach50 4.57122 Total infiltration to the dwelling unit is 4.57122 ACH50 -in.air_leakage_to_outside_ach50 4.57195 Total infiltration to the dwelling unit is 4.57195 ACH50 -in.air_leakage_to_outside_ach50 4.57248 Total infiltration to the dwelling unit is 4.57248 ACH50 -in.air_leakage_to_outside_ach50 4.573 Total infiltration to the dwelling unit is 4.57299999999999 ACH50 -in.air_leakage_to_outside_ach50 4.5738 Total infiltration to the dwelling unit is 4.5738 ACH50 -in.air_leakage_to_outside_ach50 4.574 Total infiltration to the dwelling unit is 4.574 ACH50 -in.air_leakage_to_outside_ach50 4.57404 Total infiltration to the dwelling unit is 4.57404 ACH50 -in.air_leakage_to_outside_ach50 4.57465 Total infiltration to the dwelling unit is 4.57465 ACH50 -in.air_leakage_to_outside_ach50 4.58336 Total infiltration to the dwelling unit is 4.58336 ACH50 -in.air_leakage_to_outside_ach50 4.5868 Total infiltration to the dwelling unit is 4.5868 ACH50 -in.air_leakage_to_outside_ach50 4.59018 Total infiltration to the dwelling unit is 4.59018 ACH50 -in.air_leakage_to_outside_ach50 4.59496 Total infiltration to the dwelling unit is 4.59496 ACH50 -in.air_leakage_to_outside_ach50 4.5978 Total infiltration to the dwelling unit is 4.59779999999999 ACH50 -in.air_leakage_to_outside_ach50 4.60704 Total infiltration to the dwelling unit is 4.60704 ACH50 -in.air_leakage_to_outside_ach50 4.6071 Total infiltration to the dwelling unit is 4.6071 ACH50 -in.air_leakage_to_outside_ach50 4.61046 Total infiltration to the dwelling unit is 4.61046 ACH50 -in.air_leakage_to_outside_ach50 4.61224 Total infiltration to the dwelling unit is 4.61224 ACH50 -in.air_leakage_to_outside_ach50 4.6195 Total infiltration to the dwelling unit is 4.6195 ACH50 -in.air_leakage_to_outside_ach50 4.62294 Total infiltration to the dwelling unit is 4.62294 ACH50 -in.air_leakage_to_outside_ach50 4.63245 Total infiltration to the dwelling unit is 4.63245 ACH50 -in.air_leakage_to_outside_ach50 4.63392 Total infiltration to the dwelling unit is 4.63392 ACH50 -in.air_leakage_to_outside_ach50 4.635 Total infiltration to the dwelling unit is 4.635 ACH50 -in.air_leakage_to_outside_ach50 4.63712 Total infiltration to the dwelling unit is 4.63712 ACH50 -in.air_leakage_to_outside_ach50 4.6374 Total infiltration to the dwelling unit is 4.6374 ACH50 -in.air_leakage_to_outside_ach50 4.64079 Total infiltration to the dwelling unit is 4.64079 ACH50 -in.air_leakage_to_outside_ach50 4.64896 Total infiltration to the dwelling unit is 4.64896 ACH50 -in.air_leakage_to_outside_ach50 4.6501 Total infiltration to the dwelling unit is 4.6501 ACH50 -in.air_leakage_to_outside_ach50 4.65885 Total infiltration to the dwelling unit is 4.65885 ACH50 -in.air_leakage_to_outside_ach50 4.6733 Total infiltration to the dwelling unit is 4.6733 ACH50 -in.air_leakage_to_outside_ach50 4.67676 Total infiltration to the dwelling unit is 4.67676 ACH50 -in.air_leakage_to_outside_ach50 4.67698 Total infiltration to the dwelling unit is 4.67697999999999 ACH50 -in.air_leakage_to_outside_ach50 4.68732 Total infiltration to the dwelling unit is 4.68732 ACH50 -in.air_leakage_to_outside_ach50 4.68856 Total infiltration to the dwelling unit is 4.68856 ACH50 -in.air_leakage_to_outside_ach50 4.69002 Total infiltration to the dwelling unit is 4.69002 ACH50 -in.air_leakage_to_outside_ach50 4.69296 Total infiltration to the dwelling unit is 4.69296 ACH50 -in.air_leakage_to_outside_ach50 4.69539 Total infiltration to the dwelling unit is 4.69539 ACH50 -in.air_leakage_to_outside_ach50 4.7061 Total infiltration to the dwelling unit is 4.7061 ACH50 -in.air_leakage_to_outside_ach50 4.7112 Total infiltration to the dwelling unit is 4.7112 ACH50 -in.air_leakage_to_outside_ach50 4.7125 Total infiltration to the dwelling unit is 4.7125 ACH50 -in.air_leakage_to_outside_ach50 4.71876 Total infiltration to the dwelling unit is 4.71876 ACH50 -in.air_leakage_to_outside_ach50 4.7216 Total infiltration to the dwelling unit is 4.7216 ACH50 -in.air_leakage_to_outside_ach50 4.72296 Total infiltration to the dwelling unit is 4.72296 ACH50 -in.air_leakage_to_outside_ach50 4.72956 Total infiltration to the dwelling unit is 4.72955999999999 ACH50 -in.air_leakage_to_outside_ach50 4.73004 Total infiltration to the dwelling unit is 4.73004 ACH50 -in.air_leakage_to_outside_ach50 4.7304 Total infiltration to the dwelling unit is 4.7304 ACH50 -in.air_leakage_to_outside_ach50 4.7376 Total infiltration to the dwelling unit is 4.7376 ACH50 -in.air_leakage_to_outside_ach50 4.73851 Total infiltration to the dwelling unit is 4.73851 ACH50 -in.air_leakage_to_outside_ach50 4.73892 Total infiltration to the dwelling unit is 4.73892 ACH50 -in.air_leakage_to_outside_ach50 4.739 Total infiltration to the dwelling unit is 4.739 ACH50 -in.air_leakage_to_outside_ach50 4.74166 Total infiltration to the dwelling unit is 4.74165999999999 ACH50 -in.air_leakage_to_outside_ach50 4.74336 Total infiltration to the dwelling unit is 4.74336 ACH50 -in.air_leakage_to_outside_ach50 4.74804 Total infiltration to the dwelling unit is 4.74804 ACH50 -in.air_leakage_to_outside_ach50 4.7525 Total infiltration to the dwelling unit is 4.7525 ACH50 -in.air_leakage_to_outside_ach50 4.75937 Total infiltration to the dwelling unit is 4.75937 ACH50 -in.air_leakage_to_outside_ach50 4.7667 Total infiltration to the dwelling unit is 4.7667 ACH50 -in.air_leakage_to_outside_ach50 4.77253 Total infiltration to the dwelling unit is 4.77253 ACH50 -in.air_leakage_to_outside_ach50 4.77544 Total infiltration to the dwelling unit is 4.77544 ACH50 -in.air_leakage_to_outside_ach50 4.7766 Total infiltration to the dwelling unit is 4.7766 ACH50 -in.air_leakage_to_outside_ach50 4.77888 Total infiltration to the dwelling unit is 4.77888 ACH50 -in.air_leakage_to_outside_ach50 4.7832 Total infiltration to the dwelling unit is 4.7832 ACH50 -in.air_leakage_to_outside_ach50 4.79082 Total infiltration to the dwelling unit is 4.79082 ACH50 -in.air_leakage_to_outside_ach50 4.79208 Total infiltration to the dwelling unit is 4.79207999999999 ACH50 -in.air_leakage_to_outside_ach50 4.79262 Total infiltration to the dwelling unit is 4.79261999999999 ACH50 -in.air_leakage_to_outside_ach50 4.79717 Total infiltration to the dwelling unit is 4.79716999999999 ACH50 -in.air_leakage_to_outside_ach50 4.79766 Total infiltration to the dwelling unit is 4.79766 ACH50 -in.air_leakage_to_outside_ach50 4.81344 Total infiltration to the dwelling unit is 4.81344 ACH50 -in.air_leakage_to_outside_ach50 4.8165 Total infiltration to the dwelling unit is 4.8165 ACH50 -in.air_leakage_to_outside_ach50 4.8198 Total infiltration to the dwelling unit is 4.8198 ACH50 -in.air_leakage_to_outside_ach50 4.8201 Total infiltration to the dwelling unit is 4.8201 ACH50 -in.air_leakage_to_outside_ach50 4.83105 Total infiltration to the dwelling unit is 4.83105 ACH50 -in.air_leakage_to_outside_ach50 4.83272 Total infiltration to the dwelling unit is 4.83272 ACH50 -in.air_leakage_to_outside_ach50 4.83462 Total infiltration to the dwelling unit is 4.83462 ACH50 -in.air_leakage_to_outside_ach50 4.83584 Total infiltration to the dwelling unit is 4.83584 ACH50 -in.air_leakage_to_outside_ach50 4.84392 Total infiltration to the dwelling unit is 4.84392 ACH50 -in.air_leakage_to_outside_ach50 4.84435 Total infiltration to the dwelling unit is 4.84435 ACH50 -in.air_leakage_to_outside_ach50 4.84974 Total infiltration to the dwelling unit is 4.84974 ACH50 -in.air_leakage_to_outside_ach50 4.8536 Total infiltration to the dwelling unit is 4.8536 ACH50 -in.air_leakage_to_outside_ach50 4.8548 Total infiltration to the dwelling unit is 4.8548 ACH50 -in.air_leakage_to_outside_ach50 4.86672 Total infiltration to the dwelling unit is 4.86672 ACH50 -in.air_leakage_to_outside_ach50 4.8742 Total infiltration to the dwelling unit is 4.8742 ACH50 -in.air_leakage_to_outside_ach50 4.88328 Total infiltration to the dwelling unit is 4.88328 ACH50 -in.air_leakage_to_outside_ach50 4.88406 Total infiltration to the dwelling unit is 4.88406 ACH50 -in.air_leakage_to_outside_ach50 4.88898 Total infiltration to the dwelling unit is 4.88898 ACH50 -in.air_leakage_to_outside_ach50 4.8924 Total infiltration to the dwelling unit is 4.8924 ACH50 -in.air_leakage_to_outside_ach50 4.8996 Total infiltration to the dwelling unit is 4.8996 ACH50 -in.air_leakage_to_outside_ach50 4.90273 Total infiltration to the dwelling unit is 4.90273 ACH50 -in.air_leakage_to_outside_ach50 4.90504 Total infiltration to the dwelling unit is 4.90504 ACH50 -in.air_leakage_to_outside_ach50 4.9059 Total infiltration to the dwelling unit is 4.9059 ACH50 -in.air_leakage_to_outside_ach50 4.9085 Total infiltration to the dwelling unit is 4.9085 ACH50 -in.air_leakage_to_outside_ach50 4.90926 Total infiltration to the dwelling unit is 4.90926 ACH50 -in.air_leakage_to_outside_ach50 4.90952 Total infiltration to the dwelling unit is 4.90952 ACH50 -in.air_leakage_to_outside_ach50 4.91344 Total infiltration to the dwelling unit is 4.91344 ACH50 -in.air_leakage_to_outside_ach50 4.9148 Total infiltration to the dwelling unit is 4.9148 ACH50 -in.air_leakage_to_outside_ach50 4.9348 Total infiltration to the dwelling unit is 4.9348 ACH50 -in.air_leakage_to_outside_ach50 4.94392 Total infiltration to the dwelling unit is 4.94392 ACH50 -in.air_leakage_to_outside_ach50 4.9446 Total infiltration to the dwelling unit is 4.9446 ACH50 -in.air_leakage_to_outside_ach50 4.95747 Total infiltration to the dwelling unit is 4.95747 ACH50 -in.air_leakage_to_outside_ach50 4.9665 Total infiltration to the dwelling unit is 4.9665 ACH50 -in.air_leakage_to_outside_ach50 4.96722 Total infiltration to the dwelling unit is 4.96722 ACH50 -in.air_leakage_to_outside_ach50 4.97268 Total infiltration to the dwelling unit is 4.97267999999999 ACH50 -in.air_leakage_to_outside_ach50 4.97315 Total infiltration to the dwelling unit is 4.97315 ACH50 -in.air_leakage_to_outside_ach50 4.9749 Total infiltration to the dwelling unit is 4.9749 ACH50 -in.air_leakage_to_outside_ach50 4.978 Total infiltration to the dwelling unit is 4.978 ACH50 -in.air_leakage_to_outside_ach50 4.97922 Total infiltration to the dwelling unit is 4.97922 ACH50 -in.air_leakage_to_outside_ach50 4.97992 Total infiltration to the dwelling unit is 4.97992 ACH50 -in.air_leakage_to_outside_ach50 4.9872 Total infiltration to the dwelling unit is 4.9872 ACH50 -in.air_leakage_to_outside_ach50 4.98888 Total infiltration to the dwelling unit is 4.98888 ACH50 -in.air_leakage_to_outside_ach50 5 Total infiltration to the dwelling unit is 5 ACH50 -in.air_leakage_to_outside_ach50 5.00442 Total infiltration to the dwelling unit is 5.00442 ACH50 -in.air_leakage_to_outside_ach50 5.0067 Total infiltration to the dwelling unit is 5.0067 ACH50 -in.air_leakage_to_outside_ach50 5.00975 Total infiltration to the dwelling unit is 5.00975 ACH50 -in.air_leakage_to_outside_ach50 5.01296 Total infiltration to the dwelling unit is 5.01296 ACH50 -in.air_leakage_to_outside_ach50 5.0169 Total infiltration to the dwelling unit is 5.0169 ACH50 -in.air_leakage_to_outside_ach50 5.02716 Total infiltration to the dwelling unit is 5.02716 ACH50 -in.air_leakage_to_outside_ach50 5.03214 Total infiltration to the dwelling unit is 5.03214 ACH50 -in.air_leakage_to_outside_ach50 5.0372 Total infiltration to the dwelling unit is 5.0372 ACH50 -in.air_leakage_to_outside_ach50 5.0397 Total infiltration to the dwelling unit is 5.0397 ACH50 -in.air_leakage_to_outside_ach50 5.053 Total infiltration to the dwelling unit is 5.053 ACH50 -in.air_leakage_to_outside_ach50 5.05596 Total infiltration to the dwelling unit is 5.05596 ACH50 -in.air_leakage_to_outside_ach50 5.0571 Total infiltration to the dwelling unit is 5.0571 ACH50 -in.air_leakage_to_outside_ach50 5.06536 Total infiltration to the dwelling unit is 5.06536 ACH50 -in.air_leakage_to_outside_ach50 5.07048 Total infiltration to the dwelling unit is 5.07048 ACH50 -in.air_leakage_to_outside_ach50 5.07846 Total infiltration to the dwelling unit is 5.07846 ACH50 -in.air_leakage_to_outside_ach50 5.09621 Total infiltration to the dwelling unit is 5.09620999999999 ACH50 -in.air_leakage_to_outside_ach50 5.10216 Total infiltration to the dwelling unit is 5.10216 ACH50 -in.air_leakage_to_outside_ach50 5.124 Total infiltration to the dwelling unit is 5.124 ACH50 -in.air_leakage_to_outside_ach50 5.1246 Total infiltration to the dwelling unit is 5.1246 ACH50 -in.air_leakage_to_outside_ach50 5.13198 Total infiltration to the dwelling unit is 5.13198 ACH50 -in.air_leakage_to_outside_ach50 5.14614 Total infiltration to the dwelling unit is 5.14614 ACH50 -in.air_leakage_to_outside_ach50 5.15736 Total infiltration to the dwelling unit is 5.15736 ACH50 -in.air_leakage_to_outside_ach50 5.16248 Total infiltration to the dwelling unit is 5.16248 ACH50 -in.air_leakage_to_outside_ach50 5.1642 Total infiltration to the dwelling unit is 5.16419999999999 ACH50 -in.air_leakage_to_outside_ach50 5.1659 Total infiltration to the dwelling unit is 5.1659 ACH50 -in.air_leakage_to_outside_ach50 5.1675 Total infiltration to the dwelling unit is 5.16749999999999 ACH50 -in.air_leakage_to_outside_ach50 5.1762 Total infiltration to the dwelling unit is 5.1762 ACH50 -in.air_leakage_to_outside_ach50 5.1806 Total infiltration to the dwelling unit is 5.1806 ACH50 -in.air_leakage_to_outside_ach50 5.18568 Total infiltration to the dwelling unit is 5.18568 ACH50 -in.air_leakage_to_outside_ach50 5.18693 Total infiltration to the dwelling unit is 5.18693 ACH50 -in.air_leakage_to_outside_ach50 5.1912 Total infiltration to the dwelling unit is 5.1912 ACH50 -in.air_leakage_to_outside_ach50 5.1956 Total infiltration to the dwelling unit is 5.1956 ACH50 -in.air_leakage_to_outside_ach50 5.19631 Total infiltration to the dwelling unit is 5.19631 ACH50 -in.air_leakage_to_outside_ach50 5.19743 Total infiltration to the dwelling unit is 5.19743 ACH50 -in.air_leakage_to_outside_ach50 5.19827 Total infiltration to the dwelling unit is 5.19827 ACH50 -in.air_leakage_to_outside_ach50 5.1996 Total infiltration to the dwelling unit is 5.1996 ACH50 -in.air_leakage_to_outside_ach50 5.20098 Total infiltration to the dwelling unit is 5.20097999999999 ACH50 -in.air_leakage_to_outside_ach50 5.2044 Total infiltration to the dwelling unit is 5.2044 ACH50 -in.air_leakage_to_outside_ach50 5.22696 Total infiltration to the dwelling unit is 5.22696 ACH50 -in.air_leakage_to_outside_ach50 5.22786 Total infiltration to the dwelling unit is 5.22786 ACH50 -in.air_leakage_to_outside_ach50 5.2374 Total infiltration to the dwelling unit is 5.2374 ACH50 -in.air_leakage_to_outside_ach50 5.24118 Total infiltration to the dwelling unit is 5.24118 ACH50 -in.air_leakage_to_outside_ach50 5.24592 Total infiltration to the dwelling unit is 5.24592 ACH50 -in.air_leakage_to_outside_ach50 5.26506 Total infiltration to the dwelling unit is 5.26506 ACH50 -in.air_leakage_to_outside_ach50 5.26855 Total infiltration to the dwelling unit is 5.26855 ACH50 -in.air_leakage_to_outside_ach50 5.2989 Total infiltration to the dwelling unit is 5.2989 ACH50 -in.air_leakage_to_outside_ach50 5.30201 Total infiltration to the dwelling unit is 5.30201 ACH50 -in.air_leakage_to_outside_ach50 5.30352 Total infiltration to the dwelling unit is 5.30352 ACH50 -in.air_leakage_to_outside_ach50 5.30376 Total infiltration to the dwelling unit is 5.30376 ACH50 -in.air_leakage_to_outside_ach50 5.3081 Total infiltration to the dwelling unit is 5.3081 ACH50 -in.air_leakage_to_outside_ach50 5.3094 Total infiltration to the dwelling unit is 5.3094 ACH50 -in.air_leakage_to_outside_ach50 5.31307 Total infiltration to the dwelling unit is 5.31307 ACH50 -in.air_leakage_to_outside_ach50 5.3139 Total infiltration to the dwelling unit is 5.3139 ACH50 -in.air_leakage_to_outside_ach50 5.31696 Total infiltration to the dwelling unit is 5.31696 ACH50 -in.air_leakage_to_outside_ach50 5.3244 Total infiltration to the dwelling unit is 5.3244 ACH50 -in.air_leakage_to_outside_ach50 5.3268 Total infiltration to the dwelling unit is 5.3268 ACH50 -in.air_leakage_to_outside_ach50 5.33178 Total infiltration to the dwelling unit is 5.33178 ACH50 -in.air_leakage_to_outside_ach50 5.33309 Total infiltration to the dwelling unit is 5.33309 ACH50 -in.air_leakage_to_outside_ach50 5.33638 Total infiltration to the dwelling unit is 5.33638 ACH50 -in.air_leakage_to_outside_ach50 5.34512 Total infiltration to the dwelling unit is 5.34512 ACH50 -in.air_leakage_to_outside_ach50 5.35738 Total infiltration to the dwelling unit is 5.35738 ACH50 -in.air_leakage_to_outside_ach50 5.36148 Total infiltration to the dwelling unit is 5.36148 ACH50 -in.air_leakage_to_outside_ach50 5.3641 Total infiltration to the dwelling unit is 5.3641 ACH50 -in.air_leakage_to_outside_ach50 5.36616 Total infiltration to the dwelling unit is 5.36616 ACH50 -in.air_leakage_to_outside_ach50 5.36641 Total infiltration to the dwelling unit is 5.36641 ACH50 -in.air_leakage_to_outside_ach50 5.3683 Total infiltration to the dwelling unit is 5.3683 ACH50 -in.air_leakage_to_outside_ach50 5.3714 Total infiltration to the dwelling unit is 5.37139999999999 ACH50 -in.air_leakage_to_outside_ach50 5.3736 Total infiltration to the dwelling unit is 5.3736 ACH50 -in.air_leakage_to_outside_ach50 5.37402 Total infiltration to the dwelling unit is 5.37402 ACH50 -in.air_leakage_to_outside_ach50 5.37488 Total infiltration to the dwelling unit is 5.37488 ACH50 -in.air_leakage_to_outside_ach50 5.3784 Total infiltration to the dwelling unit is 5.3784 ACH50 -in.air_leakage_to_outside_ach50 5.37887 Total infiltration to the dwelling unit is 5.37887 ACH50 -in.air_leakage_to_outside_ach50 5.39343 Total infiltration to the dwelling unit is 5.39343 ACH50 -in.air_leakage_to_outside_ach50 5.40576 Total infiltration to the dwelling unit is 5.40576 ACH50 -in.air_leakage_to_outside_ach50 5.40624 Total infiltration to the dwelling unit is 5.40624 ACH50 -in.air_leakage_to_outside_ach50 5.4084 Total infiltration to the dwelling unit is 5.4084 ACH50 -in.air_leakage_to_outside_ach50 5.4098 Total infiltration to the dwelling unit is 5.4098 ACH50 -in.air_leakage_to_outside_ach50 5.4103 Total infiltration to the dwelling unit is 5.4103 ACH50 -in.air_leakage_to_outside_ach50 5.41544 Total infiltration to the dwelling unit is 5.41544 ACH50 -in.air_leakage_to_outside_ach50 5.41904 Total infiltration to the dwelling unit is 5.41904 ACH50 -in.air_leakage_to_outside_ach50 5.4219 Total infiltration to the dwelling unit is 5.4219 ACH50 -in.air_leakage_to_outside_ach50 5.4375 Total infiltration to the dwelling unit is 5.4375 ACH50 -in.air_leakage_to_outside_ach50 5.439 Total infiltration to the dwelling unit is 5.439 ACH50 -in.air_leakage_to_outside_ach50 5.43928 Total infiltration to the dwelling unit is 5.43928 ACH50 -in.air_leakage_to_outside_ach50 5.44164 Total infiltration to the dwelling unit is 5.44164 ACH50 -in.air_leakage_to_outside_ach50 5.44206 Total infiltration to the dwelling unit is 5.44206 ACH50 -in.air_leakage_to_outside_ach50 5.4537 Total infiltration to the dwelling unit is 5.4537 ACH50 -in.air_leakage_to_outside_ach50 5.45385 Total infiltration to the dwelling unit is 5.45385 ACH50 -in.air_leakage_to_outside_ach50 5.45432 Total infiltration to the dwelling unit is 5.45432 ACH50 -in.air_leakage_to_outside_ach50 5.45622 Total infiltration to the dwelling unit is 5.45622 ACH50 -in.air_leakage_to_outside_ach50 5.458 Total infiltration to the dwelling unit is 5.45799999999999 ACH50 -in.air_leakage_to_outside_ach50 5.46854 Total infiltration to the dwelling unit is 5.46854 ACH50 -in.air_leakage_to_outside_ach50 5.47169 Total infiltration to the dwelling unit is 5.47169 ACH50 -in.air_leakage_to_outside_ach50 5.4756 Total infiltration to the dwelling unit is 5.4756 ACH50 -in.air_leakage_to_outside_ach50 5.48028 Total infiltration to the dwelling unit is 5.48028 ACH50 -in.air_leakage_to_outside_ach50 5.48248 Total infiltration to the dwelling unit is 5.48248 ACH50 -in.air_leakage_to_outside_ach50 5.48634 Total infiltration to the dwelling unit is 5.48634 ACH50 -in.air_leakage_to_outside_ach50 5.48958 Total infiltration to the dwelling unit is 5.48958 ACH50 -in.air_leakage_to_outside_ach50 5.51012 Total infiltration to the dwelling unit is 5.51012 ACH50 -in.air_leakage_to_outside_ach50 5.51033 Total infiltration to the dwelling unit is 5.51033 ACH50 -in.air_leakage_to_outside_ach50 5.5167 Total infiltration to the dwelling unit is 5.5167 ACH50 -in.air_leakage_to_outside_ach50 5.51782 Total infiltration to the dwelling unit is 5.51781999999999 ACH50 -in.air_leakage_to_outside_ach50 5.52756 Total infiltration to the dwelling unit is 5.52755999999999 ACH50 -in.air_leakage_to_outside_ach50 5.52852 Total infiltration to the dwelling unit is 5.52852 ACH50 -in.air_leakage_to_outside_ach50 5.52874 Total infiltration to the dwelling unit is 5.52874 ACH50 -in.air_leakage_to_outside_ach50 5.53392 Total infiltration to the dwelling unit is 5.53392 ACH50 -in.air_leakage_to_outside_ach50 5.5364 Total infiltration to the dwelling unit is 5.5364 ACH50 -in.air_leakage_to_outside_ach50 5.53938 Total infiltration to the dwelling unit is 5.53938 ACH50 -in.air_leakage_to_outside_ach50 5.54256 Total infiltration to the dwelling unit is 5.54256 ACH50 -in.air_leakage_to_outside_ach50 5.5537 Total infiltration to the dwelling unit is 5.5537 ACH50 -in.air_leakage_to_outside_ach50 5.55894 Total infiltration to the dwelling unit is 5.55894 ACH50 -in.air_leakage_to_outside_ach50 5.562 Total infiltration to the dwelling unit is 5.562 ACH50 -in.air_leakage_to_outside_ach50 5.5674 Total infiltration to the dwelling unit is 5.5674 ACH50 -in.air_leakage_to_outside_ach50 5.5892 Total infiltration to the dwelling unit is 5.5892 ACH50 -in.air_leakage_to_outside_ach50 5.58929 Total infiltration to the dwelling unit is 5.58929 ACH50 -in.air_leakage_to_outside_ach50 5.59076 Total infiltration to the dwelling unit is 5.59075999999999 ACH50 -in.air_leakage_to_outside_ach50 5.5913 Total infiltration to the dwelling unit is 5.5913 ACH50 -in.air_leakage_to_outside_ach50 5.59139 Total infiltration to the dwelling unit is 5.59139 ACH50 -in.air_leakage_to_outside_ach50 5.59727 Total infiltration to the dwelling unit is 5.59727 ACH50 -in.air_leakage_to_outside_ach50 5.60312 Total infiltration to the dwelling unit is 5.60312 ACH50 -in.air_leakage_to_outside_ach50 5.60576 Total infiltration to the dwelling unit is 5.60576 ACH50 -in.air_leakage_to_outside_ach50 5.61088 Total infiltration to the dwelling unit is 5.61088 ACH50 -in.air_leakage_to_outside_ach50 5.61536 Total infiltration to the dwelling unit is 5.61536 ACH50 -in.air_leakage_to_outside_ach50 5.61568 Total infiltration to the dwelling unit is 5.61567999999999 ACH50 -in.air_leakage_to_outside_ach50 5.617 Total infiltration to the dwelling unit is 5.617 ACH50 -in.air_leakage_to_outside_ach50 5.61925 Total infiltration to the dwelling unit is 5.61925 ACH50 -in.air_leakage_to_outside_ach50 5.62345 Total infiltration to the dwelling unit is 5.62345 ACH50 -in.air_leakage_to_outside_ach50 5.6334 Total infiltration to the dwelling unit is 5.6334 ACH50 -in.air_leakage_to_outside_ach50 5.64039 Total infiltration to the dwelling unit is 5.64039 ACH50 -in.air_leakage_to_outside_ach50 5.6495 Total infiltration to the dwelling unit is 5.6495 ACH50 -in.air_leakage_to_outside_ach50 5.66568 Total infiltration to the dwelling unit is 5.66568 ACH50 -in.air_leakage_to_outside_ach50 5.66592 Total infiltration to the dwelling unit is 5.66592 ACH50 -in.air_leakage_to_outside_ach50 5.67784 Total infiltration to the dwelling unit is 5.67784 ACH50 -in.air_leakage_to_outside_ach50 5.6836 Total infiltration to the dwelling unit is 5.6836 ACH50 -in.air_leakage_to_outside_ach50 5.6868 Total infiltration to the dwelling unit is 5.6868 ACH50 -in.air_leakage_to_outside_ach50 5.69716 Total infiltration to the dwelling unit is 5.69716 ACH50 -in.air_leakage_to_outside_ach50 5.69807 Total infiltration to the dwelling unit is 5.69807 ACH50 -in.air_leakage_to_outside_ach50 5.70381 Total infiltration to the dwelling unit is 5.70381 ACH50 -in.air_leakage_to_outside_ach50 5.7156 Total infiltration to the dwelling unit is 5.71559999999999 ACH50 -in.air_leakage_to_outside_ach50 5.71725 Total infiltration to the dwelling unit is 5.71725 ACH50 -in.air_leakage_to_outside_ach50 5.7248 Total infiltration to the dwelling unit is 5.7248 ACH50 -in.air_leakage_to_outside_ach50 5.72747 Total infiltration to the dwelling unit is 5.72747 ACH50 -in.air_leakage_to_outside_ach50 5.7292 Total infiltration to the dwelling unit is 5.7292 ACH50 -in.air_leakage_to_outside_ach50 5.7437 Total infiltration to the dwelling unit is 5.7437 ACH50 -in.air_leakage_to_outside_ach50 5.74725 Total infiltration to the dwelling unit is 5.74725 ACH50 -in.air_leakage_to_outside_ach50 5.75862 Total infiltration to the dwelling unit is 5.75862 ACH50 -in.air_leakage_to_outside_ach50 5.7653 Total infiltration to the dwelling unit is 5.7653 ACH50 -in.air_leakage_to_outside_ach50 5.7687 Total infiltration to the dwelling unit is 5.7687 ACH50 -in.air_leakage_to_outside_ach50 5.7851 Total infiltration to the dwelling unit is 5.7851 ACH50 -in.air_leakage_to_outside_ach50 5.7868 Total infiltration to the dwelling unit is 5.78679999999999 ACH50 -in.air_leakage_to_outside_ach50 5.79509 Total infiltration to the dwelling unit is 5.79509 ACH50 -in.air_leakage_to_outside_ach50 5.7964 Total infiltration to the dwelling unit is 5.7964 ACH50 -in.air_leakage_to_outside_ach50 5.80146 Total infiltration to the dwelling unit is 5.80146 ACH50 -in.air_leakage_to_outside_ach50 5.80909 Total infiltration to the dwelling unit is 5.80909 ACH50 -in.air_leakage_to_outside_ach50 5.8112 Total infiltration to the dwelling unit is 5.81119999999999 ACH50 -in.air_leakage_to_outside_ach50 5.82036 Total infiltration to the dwelling unit is 5.82036 ACH50 -in.air_leakage_to_outside_ach50 5.82424 Total infiltration to the dwelling unit is 5.82424 ACH50 -in.air_leakage_to_outside_ach50 5.83849 Total infiltration to the dwelling unit is 5.83849 ACH50 -in.air_leakage_to_outside_ach50 5.84115 Total infiltration to the dwelling unit is 5.84115 ACH50 -in.air_leakage_to_outside_ach50 5.85305 Total infiltration to the dwelling unit is 5.85305 ACH50 -in.air_leakage_to_outside_ach50 5.8607 Total infiltration to the dwelling unit is 5.8607 ACH50 -in.air_leakage_to_outside_ach50 5.86502 Total infiltration to the dwelling unit is 5.86502 ACH50 -in.air_leakage_to_outside_ach50 5.8662 Total infiltration to the dwelling unit is 5.8662 ACH50 -in.air_leakage_to_outside_ach50 5.87083 Total infiltration to the dwelling unit is 5.87083 ACH50 -in.air_leakage_to_outside_ach50 5.87965 Total infiltration to the dwelling unit is 5.87965 ACH50 -in.air_leakage_to_outside_ach50 5.889 Total infiltration to the dwelling unit is 5.88899999999999 ACH50 -in.air_leakage_to_outside_ach50 5.8902 Total infiltration to the dwelling unit is 5.89019999999999 ACH50 -in.air_leakage_to_outside_ach50 5.89995 Total infiltration to the dwelling unit is 5.89995 ACH50 -in.air_leakage_to_outside_ach50 5.9037 Total infiltration to the dwelling unit is 5.9037 ACH50 -in.air_leakage_to_outside_ach50 5.913 Total infiltration to the dwelling unit is 5.913 ACH50 -in.air_leakage_to_outside_ach50 5.91556 Total infiltration to the dwelling unit is 5.91556 ACH50 -in.air_leakage_to_outside_ach50 5.922 Total infiltration to the dwelling unit is 5.922 ACH50 -in.air_leakage_to_outside_ach50 5.92214 Total infiltration to the dwelling unit is 5.92214 ACH50 -in.air_leakage_to_outside_ach50 5.92487 Total infiltration to the dwelling unit is 5.92487 ACH50 -in.air_leakage_to_outside_ach50 5.92792 Total infiltration to the dwelling unit is 5.92792 ACH50 -in.air_leakage_to_outside_ach50 5.93864 Total infiltration to the dwelling unit is 5.93864 ACH50 -in.air_leakage_to_outside_ach50 5.93992 Total infiltration to the dwelling unit is 5.93992 ACH50 -in.air_leakage_to_outside_ach50 5.94088 Total infiltration to the dwelling unit is 5.94088 ACH50 -in.air_leakage_to_outside_ach50 5.944 Total infiltration to the dwelling unit is 5.944 ACH50 -in.air_leakage_to_outside_ach50 5.9693 Total infiltration to the dwelling unit is 5.9693 ACH50 -in.air_leakage_to_outside_ach50 5.9736 Total infiltration to the dwelling unit is 5.9736 ACH50 -in.air_leakage_to_outside_ach50 5.978 Total infiltration to the dwelling unit is 5.978 ACH50 -in.air_leakage_to_outside_ach50 5.9787 Total infiltration to the dwelling unit is 5.9787 ACH50 -in.air_leakage_to_outside_ach50 5.98731 Total infiltration to the dwelling unit is 5.98731 ACH50 -in.air_leakage_to_outside_ach50 6 Total infiltration to the dwelling unit is 6 ACH50 -in.air_leakage_to_outside_ach50 6.00383 Total infiltration to the dwelling unit is 6.00383 ACH50 -in.air_leakage_to_outside_ach50 6.0117 Total infiltration to the dwelling unit is 6.0117 ACH50 -in.air_leakage_to_outside_ach50 6.01185 Total infiltration to the dwelling unit is 6.01185 ACH50 -in.air_leakage_to_outside_ach50 6.0212 Total infiltration to the dwelling unit is 6.0212 ACH50 -in.air_leakage_to_outside_ach50 6.02475 Total infiltration to the dwelling unit is 6.02475 ACH50 -in.air_leakage_to_outside_ach50 6.0409 Total infiltration to the dwelling unit is 6.0409 ACH50 -in.air_leakage_to_outside_ach50 6.0448 Total infiltration to the dwelling unit is 6.0448 ACH50 -in.air_leakage_to_outside_ach50 6.0549 Total infiltration to the dwelling unit is 6.0549 ACH50 -in.air_leakage_to_outside_ach50 6.0664 Total infiltration to the dwelling unit is 6.0664 ACH50 -in.air_leakage_to_outside_ach50 6.067 Total infiltration to the dwelling unit is 6.067 ACH50 -in.air_leakage_to_outside_ach50 6.06781 Total infiltration to the dwelling unit is 6.06781 ACH50 -in.air_leakage_to_outside_ach50 6.0685 Total infiltration to the dwelling unit is 6.0685 ACH50 -in.air_leakage_to_outside_ach50 6.07208 Total infiltration to the dwelling unit is 6.07208 ACH50 -in.air_leakage_to_outside_ach50 6.09812 Total infiltration to the dwelling unit is 6.09812 ACH50 -in.air_leakage_to_outside_ach50 6.09872 Total infiltration to the dwelling unit is 6.09872 ACH50 -in.air_leakage_to_outside_ach50 6.09917 Total infiltration to the dwelling unit is 6.09917 ACH50 -in.air_leakage_to_outside_ach50 6.10515 Total infiltration to the dwelling unit is 6.10515 ACH50 -in.air_leakage_to_outside_ach50 6.1155 Total infiltration to the dwelling unit is 6.1155 ACH50 -in.air_leakage_to_outside_ach50 6.12272 Total infiltration to the dwelling unit is 6.12272 ACH50 -in.air_leakage_to_outside_ach50 6.1245 Total infiltration to the dwelling unit is 6.1245 ACH50 -in.air_leakage_to_outside_ach50 6.1304 Total infiltration to the dwelling unit is 6.1304 ACH50 -in.air_leakage_to_outside_ach50 6.13304 Total infiltration to the dwelling unit is 6.13304 ACH50 -in.air_leakage_to_outside_ach50 6.14257 Total infiltration to the dwelling unit is 6.14257 ACH50 -in.air_leakage_to_outside_ach50 6.14272 Total infiltration to the dwelling unit is 6.14272 ACH50 -in.air_leakage_to_outside_ach50 6.1435 Total infiltration to the dwelling unit is 6.14349999999999 ACH50 -in.air_leakage_to_outside_ach50 6.14728 Total infiltration to the dwelling unit is 6.14728 ACH50 -in.air_leakage_to_outside_ach50 6.1685 Total infiltration to the dwelling unit is 6.1685 ACH50 -in.air_leakage_to_outside_ach50 6.17856 Total infiltration to the dwelling unit is 6.17856 ACH50 -in.air_leakage_to_outside_ach50 6.18205 Total infiltration to the dwelling unit is 6.18205 ACH50 -in.air_leakage_to_outside_ach50 6.1832 Total infiltration to the dwelling unit is 6.1832 ACH50 -in.air_leakage_to_outside_ach50 6.18744 Total infiltration to the dwelling unit is 6.18744 ACH50 -in.air_leakage_to_outside_ach50 6.19955 Total infiltration to the dwelling unit is 6.19955 ACH50 -in.air_leakage_to_outside_ach50 6.20312 Total infiltration to the dwelling unit is 6.20311999999999 ACH50 -in.air_leakage_to_outside_ach50 6.21585 Total infiltration to the dwelling unit is 6.21585 ACH50 -in.air_leakage_to_outside_ach50 6.22152 Total infiltration to the dwelling unit is 6.22152 ACH50 -in.air_leakage_to_outside_ach50 6.2225 Total infiltration to the dwelling unit is 6.2225 ACH50 -in.air_leakage_to_outside_ach50 6.2249 Total infiltration to the dwelling unit is 6.2249 ACH50 -in.air_leakage_to_outside_ach50 6.23568 Total infiltration to the dwelling unit is 6.23568 ACH50 -in.air_leakage_to_outside_ach50 6.24976 Total infiltration to the dwelling unit is 6.24976 ACH50 -in.air_leakage_to_outside_ach50 6.25336 Total infiltration to the dwelling unit is 6.25336 ACH50 -in.air_leakage_to_outside_ach50 6.25506 Total infiltration to the dwelling unit is 6.25506 ACH50 -in.air_leakage_to_outside_ach50 6.2662 Total infiltration to the dwelling unit is 6.26619999999999 ACH50 -in.air_leakage_to_outside_ach50 6.2692 Total infiltration to the dwelling unit is 6.2692 ACH50 -in.air_leakage_to_outside_ach50 6.26969 Total infiltration to the dwelling unit is 6.26969 ACH50 -in.air_leakage_to_outside_ach50 6.29168 Total infiltration to the dwelling unit is 6.29168 ACH50 -in.air_leakage_to_outside_ach50 6.2965 Total infiltration to the dwelling unit is 6.2965 ACH50 -in.air_leakage_to_outside_ach50 6.29728 Total infiltration to the dwelling unit is 6.29728 ACH50 -in.air_leakage_to_outside_ach50 6.29752 Total infiltration to the dwelling unit is 6.29752 ACH50 -in.air_leakage_to_outside_ach50 6.30608 Total infiltration to the dwelling unit is 6.30608 ACH50 -in.air_leakage_to_outside_ach50 6.31856 Total infiltration to the dwelling unit is 6.31856 ACH50 -in.air_leakage_to_outside_ach50 6.3189 Total infiltration to the dwelling unit is 6.3189 ACH50 -in.air_leakage_to_outside_ach50 6.3196 Total infiltration to the dwelling unit is 6.3196 ACH50 -in.air_leakage_to_outside_ach50 6.32448 Total infiltration to the dwelling unit is 6.32448 ACH50 -in.air_leakage_to_outside_ach50 6.33072 Total infiltration to the dwelling unit is 6.33072 ACH50 -in.air_leakage_to_outside_ach50 6.3317 Total infiltration to the dwelling unit is 6.3317 ACH50 -in.air_leakage_to_outside_ach50 6.34858 Total infiltration to the dwelling unit is 6.34858 ACH50 -in.air_leakage_to_outside_ach50 6.34907 Total infiltration to the dwelling unit is 6.34907 ACH50 -in.air_leakage_to_outside_ach50 6.3556 Total infiltration to the dwelling unit is 6.3556 ACH50 -in.air_leakage_to_outside_ach50 6.3688 Total infiltration to the dwelling unit is 6.3688 ACH50 -in.air_leakage_to_outside_ach50 6.38776 Total infiltration to the dwelling unit is 6.38776 ACH50 -in.air_leakage_to_outside_ach50 6.38944 Total infiltration to the dwelling unit is 6.38944 ACH50 -in.air_leakage_to_outside_ach50 6.39016 Total infiltration to the dwelling unit is 6.39016 ACH50 -in.air_leakage_to_outside_ach50 6.39366 Total infiltration to the dwelling unit is 6.39366 ACH50 -in.air_leakage_to_outside_ach50 6.39688 Total infiltration to the dwelling unit is 6.39688 ACH50 -in.air_leakage_to_outside_ach50 6.39735 Total infiltration to the dwelling unit is 6.39734999999999 ACH50 -in.air_leakage_to_outside_ach50 6.40073 Total infiltration to the dwelling unit is 6.40073 ACH50 -in.air_leakage_to_outside_ach50 6.40451 Total infiltration to the dwelling unit is 6.40451 ACH50 -in.air_leakage_to_outside_ach50 6.41792 Total infiltration to the dwelling unit is 6.41792 ACH50 -in.air_leakage_to_outside_ach50 6.422 Total infiltration to the dwelling unit is 6.422 ACH50 -in.air_leakage_to_outside_ach50 6.4268 Total infiltration to the dwelling unit is 6.4268 ACH50 -in.air_leakage_to_outside_ach50 6.44616 Total infiltration to the dwelling unit is 6.44616 ACH50 -in.air_leakage_to_outside_ach50 6.4467 Total infiltration to the dwelling unit is 6.4467 ACH50 -in.air_leakage_to_outside_ach50 6.44882 Total infiltration to the dwelling unit is 6.44881999999999 ACH50 -in.air_leakage_to_outside_ach50 6.44994 Total infiltration to the dwelling unit is 6.44994 ACH50 -in.air_leakage_to_outside_ach50 6.46725 Total infiltration to the dwelling unit is 6.46725 ACH50 -in.air_leakage_to_outside_ach50 6.4821 Total infiltration to the dwelling unit is 6.48209999999999 ACH50 -in.air_leakage_to_outside_ach50 6.48543 Total infiltration to the dwelling unit is 6.48543 ACH50 -in.air_leakage_to_outside_ach50 6.48896 Total infiltration to the dwelling unit is 6.48896 ACH50 -in.air_leakage_to_outside_ach50 6.489 Total infiltration to the dwelling unit is 6.489 ACH50 -in.air_leakage_to_outside_ach50 6.4945 Total infiltration to the dwelling unit is 6.4945 ACH50 -in.air_leakage_to_outside_ach50 6.51104 Total infiltration to the dwelling unit is 6.51104 ACH50 -in.air_leakage_to_outside_ach50 6.51208 Total infiltration to the dwelling unit is 6.51208 ACH50 -in.air_leakage_to_outside_ach50 6.51864 Total infiltration to the dwelling unit is 6.51864 ACH50 -in.air_leakage_to_outside_ach50 6.5412 Total infiltration to the dwelling unit is 6.5412 ACH50 -in.air_leakage_to_outside_ach50 6.54568 Total infiltration to the dwelling unit is 6.54568 ACH50 -in.air_leakage_to_outside_ach50 6.5574 Total infiltration to the dwelling unit is 6.55739999999999 ACH50 -in.air_leakage_to_outside_ach50 6.58128 Total infiltration to the dwelling unit is 6.58128 ACH50 -in.air_leakage_to_outside_ach50 6.5917 Total infiltration to the dwelling unit is 6.5917 ACH50 -in.air_leakage_to_outside_ach50 6.5928 Total infiltration to the dwelling unit is 6.5928 ACH50 -in.air_leakage_to_outside_ach50 6.61024 Total infiltration to the dwelling unit is 6.61024 ACH50 -in.air_leakage_to_outside_ach50 6.622 Total infiltration to the dwelling unit is 6.622 ACH50 -in.air_leakage_to_outside_ach50 6.62296 Total infiltration to the dwelling unit is 6.62296 ACH50 -in.air_leakage_to_outside_ach50 6.6297 Total infiltration to the dwelling unit is 6.6297 ACH50 -in.air_leakage_to_outside_ach50 6.6346 Total infiltration to the dwelling unit is 6.6346 ACH50 -in.air_leakage_to_outside_ach50 6.63896 Total infiltration to the dwelling unit is 6.63896 ACH50 -in.air_leakage_to_outside_ach50 6.6408 Total infiltration to the dwelling unit is 6.6408 ACH50 -in.air_leakage_to_outside_ach50 6.6496 Total infiltration to the dwelling unit is 6.64959999999999 ACH50 -in.air_leakage_to_outside_ach50 6.65184 Total infiltration to the dwelling unit is 6.65184 ACH50 -in.air_leakage_to_outside_ach50 6.6555 Total infiltration to the dwelling unit is 6.6555 ACH50 -in.air_leakage_to_outside_ach50 6.6585 Total infiltration to the dwelling unit is 6.6585 ACH50 -in.air_leakage_to_outside_ach50 6.6648 Total infiltration to the dwelling unit is 6.6648 ACH50 -in.air_leakage_to_outside_ach50 6.67256 Total infiltration to the dwelling unit is 6.67256 ACH50 -in.air_leakage_to_outside_ach50 6.6756 Total infiltration to the dwelling unit is 6.6756 ACH50 -in.air_leakage_to_outside_ach50 6.6814 Total infiltration to the dwelling unit is 6.6814 ACH50 -in.air_leakage_to_outside_ach50 6.70288 Total infiltration to the dwelling unit is 6.70288 ACH50 -in.air_leakage_to_outside_ach50 6.7077 Total infiltration to the dwelling unit is 6.7077 ACH50 -in.air_leakage_to_outside_ach50 6.7196 Total infiltration to the dwelling unit is 6.7196 ACH50 -in.air_leakage_to_outside_ach50 6.7215 Total infiltration to the dwelling unit is 6.7215 ACH50 -in.air_leakage_to_outside_ach50 6.723 Total infiltration to the dwelling unit is 6.723 ACH50 -in.air_leakage_to_outside_ach50 6.7404 Total infiltration to the dwelling unit is 6.74039999999999 ACH50 -in.air_leakage_to_outside_ach50 6.74128 Total infiltration to the dwelling unit is 6.74128 ACH50 -in.air_leakage_to_outside_ach50 6.7428 Total infiltration to the dwelling unit is 6.7428 ACH50 -in.air_leakage_to_outside_ach50 6.7572 Total infiltration to the dwelling unit is 6.7572 ACH50 -in.air_leakage_to_outside_ach50 6.76064 Total infiltration to the dwelling unit is 6.76064 ACH50 -in.air_leakage_to_outside_ach50 6.76816 Total infiltration to the dwelling unit is 6.76816 ACH50 -in.air_leakage_to_outside_ach50 6.7693 Total infiltration to the dwelling unit is 6.7693 ACH50 -in.air_leakage_to_outside_ach50 6.77128 Total infiltration to the dwelling unit is 6.77128 ACH50 -in.air_leakage_to_outside_ach50 6.7738 Total infiltration to the dwelling unit is 6.7738 ACH50 -in.air_leakage_to_outside_ach50 6.79065 Total infiltration to the dwelling unit is 6.79065 ACH50 -in.air_leakage_to_outside_ach50 6.79875 Total infiltration to the dwelling unit is 6.79875 ACH50 -in.air_leakage_to_outside_ach50 6.7991 Total infiltration to the dwelling unit is 6.7991 ACH50 -in.air_leakage_to_outside_ach50 6.80288 Total infiltration to the dwelling unit is 6.80288 ACH50 -in.air_leakage_to_outside_ach50 6.8179 Total infiltration to the dwelling unit is 6.8179 ACH50 -in.air_leakage_to_outside_ach50 6.82392 Total infiltration to the dwelling unit is 6.82392 ACH50 -in.air_leakage_to_outside_ach50 6.832 Total infiltration to the dwelling unit is 6.832 ACH50 -in.air_leakage_to_outside_ach50 6.8328 Total infiltration to the dwelling unit is 6.8328 ACH50 -in.air_leakage_to_outside_ach50 6.84264 Total infiltration to the dwelling unit is 6.84264 ACH50 -in.air_leakage_to_outside_ach50 6.84735 Total infiltration to the dwelling unit is 6.84735 ACH50 -in.air_leakage_to_outside_ach50 6.8531 Total infiltration to the dwelling unit is 6.85309999999999 ACH50 -in.air_leakage_to_outside_ach50 6.8595 Total infiltration to the dwelling unit is 6.8595 ACH50 -in.air_leakage_to_outside_ach50 6.8607 Total infiltration to the dwelling unit is 6.8607 ACH50 -in.air_leakage_to_outside_ach50 6.8802 Total infiltration to the dwelling unit is 6.88019999999999 ACH50 -in.air_leakage_to_outside_ach50 6.8856 Total infiltration to the dwelling unit is 6.88559999999999 ACH50 -in.air_leakage_to_outside_ach50 6.9015 Total infiltration to the dwelling unit is 6.9015 ACH50 -in.air_leakage_to_outside_ach50 6.9016 Total infiltration to the dwelling unit is 6.9016 ACH50 -in.air_leakage_to_outside_ach50 6.9205 Total infiltration to the dwelling unit is 6.9205 ACH50 -in.air_leakage_to_outside_ach50 6.9282 Total infiltration to the dwelling unit is 6.9282 ACH50 -in.air_leakage_to_outside_ach50 6.92925 Total infiltration to the dwelling unit is 6.92925 ACH50 -in.air_leakage_to_outside_ach50 6.93464 Total infiltration to the dwelling unit is 6.93464 ACH50 -in.air_leakage_to_outside_ach50 6.96928 Total infiltration to the dwelling unit is 6.96928 ACH50 -in.air_leakage_to_outside_ach50 6.97048 Total infiltration to the dwelling unit is 6.97048 ACH50 -in.air_leakage_to_outside_ach50 6.97515 Total infiltration to the dwelling unit is 6.97514999999999 ACH50 -in.air_leakage_to_outside_ach50 7 Total infiltration to the dwelling unit is 7 ACH50 -in.air_leakage_to_outside_ach50 7.0039 Total infiltration to the dwelling unit is 7.0039 ACH50 -in.air_leakage_to_outside_ach50 7.0072 Total infiltration to the dwelling unit is 7.0072 ACH50 -in.air_leakage_to_outside_ach50 7.00995 Total infiltration to the dwelling unit is 7.00995 ACH50 -in.air_leakage_to_outside_ach50 7.0136 Total infiltration to the dwelling unit is 7.0136 ACH50 -in.air_leakage_to_outside_ach50 7.0192 Total infiltration to the dwelling unit is 7.0192 ACH50 -in.air_leakage_to_outside_ach50 7.02008 Total infiltration to the dwelling unit is 7.02008 ACH50 -in.air_leakage_to_outside_ach50 7.0652 Total infiltration to the dwelling unit is 7.0652 ACH50 -in.air_leakage_to_outside_ach50 7.07136 Total infiltration to the dwelling unit is 7.07136 ACH50 -in.air_leakage_to_outside_ach50 7.0821 Total infiltration to the dwelling unit is 7.0821 ACH50 -in.air_leakage_to_outside_ach50 7.0852 Total infiltration to the dwelling unit is 7.0852 ACH50 -in.air_leakage_to_outside_ach50 7.08928 Total infiltration to the dwelling unit is 7.08928 ACH50 -in.air_leakage_to_outside_ach50 7.12875 Total infiltration to the dwelling unit is 7.12875 ACH50 -in.air_leakage_to_outside_ach50 7.14864 Total infiltration to the dwelling unit is 7.14864 ACH50 -in.air_leakage_to_outside_ach50 7.156 Total infiltration to the dwelling unit is 7.156 ACH50 -in.air_leakage_to_outside_ach50 7.1648 Total infiltration to the dwelling unit is 7.1648 ACH50 -in.air_leakage_to_outside_ach50 7.16536 Total infiltration to the dwelling unit is 7.16536 ACH50 -in.air_leakage_to_outside_ach50 7.2292 Total infiltration to the dwelling unit is 7.2292 ACH50 -in.air_leakage_to_outside_ach50 7.2297 Total infiltration to the dwelling unit is 7.2297 ACH50 -in.air_leakage_to_outside_ach50 7.2335 Total infiltration to the dwelling unit is 7.23349999999999 ACH50 -in.air_leakage_to_outside_ach50 7.25552 Total infiltration to the dwelling unit is 7.25552 ACH50 -in.air_leakage_to_outside_ach50 7.25608 Total infiltration to the dwelling unit is 7.25608 ACH50 -in.air_leakage_to_outside_ach50 7.2716 Total infiltration to the dwelling unit is 7.2716 ACH50 -in.air_leakage_to_outside_ach50 7.2718 Total infiltration to the dwelling unit is 7.2718 ACH50 -in.air_leakage_to_outside_ach50 7.2803 Total infiltration to the dwelling unit is 7.28029999999999 ACH50 -in.air_leakage_to_outside_ach50 7.2865 Total infiltration to the dwelling unit is 7.2865 ACH50 -in.air_leakage_to_outside_ach50 7.30704 Total infiltration to the dwelling unit is 7.30704 ACH50 -in.air_leakage_to_outside_ach50 7.3113 Total infiltration to the dwelling unit is 7.3113 ACH50 -in.air_leakage_to_outside_ach50 7.31512 Total infiltration to the dwelling unit is 7.31512 ACH50 -in.air_leakage_to_outside_ach50 7.31944 Total infiltration to the dwelling unit is 7.31944 ACH50 -in.air_leakage_to_outside_ach50 7.3494 Total infiltration to the dwelling unit is 7.3494 ACH50 -in.air_leakage_to_outside_ach50 7.37008 Total infiltration to the dwelling unit is 7.37008 ACH50 -in.air_leakage_to_outside_ach50 7.37136 Total infiltration to the dwelling unit is 7.37136 ACH50 -in.air_leakage_to_outside_ach50 7.4022 Total infiltration to the dwelling unit is 7.4022 ACH50 -in.air_leakage_to_outside_ach50 7.4099 Total infiltration to the dwelling unit is 7.4099 ACH50 -in.air_leakage_to_outside_ach50 7.41192 Total infiltration to the dwelling unit is 7.41192 ACH50 -in.air_leakage_to_outside_ach50 7.416 Total infiltration to the dwelling unit is 7.416 ACH50 -in.air_leakage_to_outside_ach50 7.4232 Total infiltration to the dwelling unit is 7.4232 ACH50 -in.air_leakage_to_outside_ach50 7.4233 Total infiltration to the dwelling unit is 7.4233 ACH50 -in.air_leakage_to_outside_ach50 7.4261 Total infiltration to the dwelling unit is 7.4261 ACH50 -in.air_leakage_to_outside_ach50 7.46235 Total infiltration to the dwelling unit is 7.46235 ACH50 -in.air_leakage_to_outside_ach50 7.4874 Total infiltration to the dwelling unit is 7.48739999999999 ACH50 -in.air_leakage_to_outside_ach50 7.5 Total infiltration to the dwelling unit is 7.5 ACH50 -in.air_leakage_to_outside_ach50 7.51455 Total infiltration to the dwelling unit is 7.51455 ACH50 -in.air_leakage_to_outside_ach50 7.5265 Total infiltration to the dwelling unit is 7.5265 ACH50 -in.air_leakage_to_outside_ach50 7.55456 Total infiltration to the dwelling unit is 7.55456 ACH50 -in.air_leakage_to_outside_ach50 7.5795 Total infiltration to the dwelling unit is 7.57949999999999 ACH50 -in.air_leakage_to_outside_ach50 7.583 Total infiltration to the dwelling unit is 7.583 ACH50 -in.air_leakage_to_outside_ach50 7.5901 Total infiltration to the dwelling unit is 7.5901 ACH50 -in.air_leakage_to_outside_ach50 7.5998 Total infiltration to the dwelling unit is 7.5998 ACH50 -in.air_leakage_to_outside_ach50 7.6022 Total infiltration to the dwelling unit is 7.6022 ACH50 -in.air_leakage_to_outside_ach50 7.6187 Total infiltration to the dwelling unit is 7.6187 ACH50 -in.air_leakage_to_outside_ach50 7.6234 Total infiltration to the dwelling unit is 7.6234 ACH50 -in.air_leakage_to_outside_ach50 7.663 Total infiltration to the dwelling unit is 7.663 ACH50 -in.air_leakage_to_outside_ach50 7.6663 Total infiltration to the dwelling unit is 7.6663 ACH50 -in.air_leakage_to_outside_ach50 7.6784 Total infiltration to the dwelling unit is 7.6784 ACH50 -in.air_leakage_to_outside_ach50 7.6841 Total infiltration to the dwelling unit is 7.6841 ACH50 -in.air_leakage_to_outside_ach50 7.72275 Total infiltration to the dwelling unit is 7.72275 ACH50 -in.air_leakage_to_outside_ach50 7.7232 Total infiltration to the dwelling unit is 7.7232 ACH50 -in.air_leakage_to_outside_ach50 7.729 Total infiltration to the dwelling unit is 7.729 ACH50 -in.air_leakage_to_outside_ach50 7.74885 Total infiltration to the dwelling unit is 7.74885 ACH50 -in.air_leakage_to_outside_ach50 7.7709 Total infiltration to the dwelling unit is 7.77089999999999 ACH50 -in.air_leakage_to_outside_ach50 7.7868 Total infiltration to the dwelling unit is 7.7868 ACH50 -in.air_leakage_to_outside_ach50 7.7946 Total infiltration to the dwelling unit is 7.7946 ACH50 -in.air_leakage_to_outside_ach50 7.7994 Total infiltration to the dwelling unit is 7.79939999999999 ACH50 -in.air_leakage_to_outside_ach50 7.8066 Total infiltration to the dwelling unit is 7.8066 ACH50 -in.air_leakage_to_outside_ach50 7.8122 Total infiltration to the dwelling unit is 7.8122 ACH50 -in.air_leakage_to_outside_ach50 7.8167 Total infiltration to the dwelling unit is 7.8167 ACH50 -in.air_leakage_to_outside_ach50 7.8536 Total infiltration to the dwelling unit is 7.85359999999999 ACH50 -in.air_leakage_to_outside_ach50 7.8561 Total infiltration to the dwelling unit is 7.8561 ACH50 -in.air_leakage_to_outside_ach50 7.8646 Total infiltration to the dwelling unit is 7.8646 ACH50 -in.air_leakage_to_outside_ach50 7.8716 Total infiltration to the dwelling unit is 7.8716 ACH50 -in.air_leakage_to_outside_ach50 7.8719 Total infiltration to the dwelling unit is 7.87189999999999 ACH50 -in.air_leakage_to_outside_ach50 7.8826 Total infiltration to the dwelling unit is 7.8826 ACH50 -in.air_leakage_to_outside_ach50 7.8982 Total infiltration to the dwelling unit is 7.89819999999999 ACH50 -in.air_leakage_to_outside_ach50 7.9056 Total infiltration to the dwelling unit is 7.9056 ACH50 -in.air_leakage_to_outside_ach50 7.9134 Total infiltration to the dwelling unit is 7.9134 ACH50 -in.air_leakage_to_outside_ach50 7.9445 Total infiltration to the dwelling unit is 7.9445 ACH50 -in.air_leakage_to_outside_ach50 7.961 Total infiltration to the dwelling unit is 7.961 ACH50 -in.air_leakage_to_outside_ach50 7.9641 Total infiltration to the dwelling unit is 7.96409999999999 ACH50 -in.air_leakage_to_outside_ach50 7.9847 Total infiltration to the dwelling unit is 7.9847 ACH50 -in.air_leakage_to_outside_ach50 7.9868 Total infiltration to the dwelling unit is 7.9868 ACH50 -in.air_leakage_to_outside_ach50 7.9877 Total infiltration to the dwelling unit is 7.9877 ACH50 -in.air_leakage_to_outside_ach50 7.9902 Total infiltration to the dwelling unit is 7.9902 ACH50 -in.air_leakage_to_outside_ach50 7.9961 Total infiltration to the dwelling unit is 7.9961 ACH50 -in.air_leakage_to_outside_ach50 7.9989 Total infiltration to the dwelling unit is 7.99889999999999 ACH50 -in.air_leakage_to_outside_ach50 8 Total infiltration to the dwelling unit is 8 ACH50 -in.air_leakage_to_outside_ach50 8.0156 Total infiltration to the dwelling unit is 8.0156 ACH50 -in.air_leakage_to_outside_ach50 8.0158 Total infiltration to the dwelling unit is 8.01579999999999 ACH50 -in.air_leakage_to_outside_ach50 8.0224 Total infiltration to the dwelling unit is 8.0224 ACH50 -in.air_leakage_to_outside_ach50 8.0275 Total infiltration to the dwelling unit is 8.0275 ACH50 -in.air_leakage_to_outside_ach50 8.0335 Total infiltration to the dwelling unit is 8.0335 ACH50 -in.air_leakage_to_outside_ach50 8.05245 Total infiltration to the dwelling unit is 8.05245 ACH50 -in.air_leakage_to_outside_ach50 8.0571 Total infiltration to the dwelling unit is 8.05709999999999 ACH50 -in.air_leakage_to_outside_ach50 8.0577 Total infiltration to the dwelling unit is 8.0577 ACH50 -in.air_leakage_to_outside_ach50 8.0973 Total infiltration to the dwelling unit is 8.09729999999999 ACH50 -in.air_leakage_to_outside_ach50 8.1112 Total infiltration to the dwelling unit is 8.1112 ACH50 -in.air_leakage_to_outside_ach50 8.1126 Total infiltration to the dwelling unit is 8.1126 ACH50 -in.air_leakage_to_outside_ach50 8.1147 Total infiltration to the dwelling unit is 8.1147 ACH50 -in.air_leakage_to_outside_ach50 8.1388 Total infiltration to the dwelling unit is 8.1388 ACH50 -in.air_leakage_to_outside_ach50 8.1401 Total infiltration to the dwelling unit is 8.1401 ACH50 -in.air_leakage_to_outside_ach50 8.1402 Total infiltration to the dwelling unit is 8.1402 ACH50 -in.air_leakage_to_outside_ach50 8.1483 Total infiltration to the dwelling unit is 8.1483 ACH50 -in.air_leakage_to_outside_ach50 8.15625 Total infiltration to the dwelling unit is 8.15625 ACH50 -in.air_leakage_to_outside_ach50 8.1585 Total infiltration to the dwelling unit is 8.1585 ACH50 -in.air_leakage_to_outside_ach50 8.1765 Total infiltration to the dwelling unit is 8.1765 ACH50 -in.air_leakage_to_outside_ach50 8.1821 Total infiltration to the dwelling unit is 8.1821 ACH50 -in.air_leakage_to_outside_ach50 8.187 Total infiltration to the dwelling unit is 8.187 ACH50 -in.air_leakage_to_outside_ach50 8.2134 Total infiltration to the dwelling unit is 8.2134 ACH50 -in.air_leakage_to_outside_ach50 8.241 Total infiltration to the dwelling unit is 8.241 ACH50 -in.air_leakage_to_outside_ach50 8.259 Total infiltration to the dwelling unit is 8.259 ACH50 -in.air_leakage_to_outside_ach50 8.27505 Total infiltration to the dwelling unit is 8.27505 ACH50 -in.air_leakage_to_outside_ach50 8.2775 Total infiltration to the dwelling unit is 8.2775 ACH50 -in.air_leakage_to_outside_ach50 8.2787 Total infiltration to the dwelling unit is 8.2787 ACH50 -in.air_leakage_to_outside_ach50 8.2878 Total infiltration to the dwelling unit is 8.28779999999999 ACH50 -in.air_leakage_to_outside_ach50 8.2987 Total infiltration to the dwelling unit is 8.2987 ACH50 -in.air_leakage_to_outside_ach50 8.312 Total infiltration to the dwelling unit is 8.312 ACH50 -in.air_leakage_to_outside_ach50 8.3148 Total infiltration to the dwelling unit is 8.3148 ACH50 -in.air_leakage_to_outside_ach50 8.33055 Total infiltration to the dwelling unit is 8.33055 ACH50 -in.air_leakage_to_outside_ach50 8.3407 Total infiltration to the dwelling unit is 8.3407 ACH50 -in.air_leakage_to_outside_ach50 8.3445 Total infiltration to the dwelling unit is 8.3445 ACH50 -in.air_leakage_to_outside_ach50 8.3615 Total infiltration to the dwelling unit is 8.3615 ACH50 -in.air_leakage_to_outside_ach50 8.3786 Total infiltration to the dwelling unit is 8.3786 ACH50 -in.air_leakage_to_outside_ach50 8.3838 Total infiltration to the dwelling unit is 8.38379999999999 ACH50 -in.air_leakage_to_outside_ach50 8.3847 Total infiltration to the dwelling unit is 8.3847 ACH50 -in.air_leakage_to_outside_ach50 8.3869 Total infiltration to the dwelling unit is 8.3869 ACH50 -in.air_leakage_to_outside_ach50 8.38695 Total infiltration to the dwelling unit is 8.38695 ACH50 -in.air_leakage_to_outside_ach50 8.3995 Total infiltration to the dwelling unit is 8.3995 ACH50 -in.air_leakage_to_outside_ach50 8.4252 Total infiltration to the dwelling unit is 8.4252 ACH50 -in.air_leakage_to_outside_ach50 8.4266 Total infiltration to the dwelling unit is 8.4266 ACH50 -in.air_leakage_to_outside_ach50 8.4285 Total infiltration to the dwelling unit is 8.4285 ACH50 -in.air_leakage_to_outside_ach50 8.4501 Total infiltration to the dwelling unit is 8.45009999999999 ACH50 -in.air_leakage_to_outside_ach50 8.4508 Total infiltration to the dwelling unit is 8.4508 ACH50 -in.air_leakage_to_outside_ach50 8.4602 Total infiltration to the dwelling unit is 8.4602 ACH50 -in.air_leakage_to_outside_ach50 8.4641 Total infiltration to the dwelling unit is 8.4641 ACH50 -in.air_leakage_to_outside_ach50 8.47425 Total infiltration to the dwelling unit is 8.47425 ACH50 -in.air_leakage_to_outside_ach50 8.5036 Total infiltration to the dwelling unit is 8.5036 ACH50 -in.air_leakage_to_outside_ach50 8.5298 Total infiltration to the dwelling unit is 8.5298 ACH50 -in.air_leakage_to_outside_ach50 8.5299 Total infiltration to the dwelling unit is 8.5299 ACH50 -in.air_leakage_to_outside_ach50 8.54 Total infiltration to the dwelling unit is 8.54 ACH50 -in.air_leakage_to_outside_ach50 8.541 Total infiltration to the dwelling unit is 8.541 ACH50 -in.air_leakage_to_outside_ach50 8.5533 Total infiltration to the dwelling unit is 8.5533 ACH50 -in.air_leakage_to_outside_ach50 8.5734 Total infiltration to the dwelling unit is 8.5734 ACH50 -in.air_leakage_to_outside_ach50 8.5769 Total infiltration to the dwelling unit is 8.5769 ACH50 -in.air_leakage_to_outside_ach50 8.5938 Total infiltration to the dwelling unit is 8.5938 ACH50 -in.air_leakage_to_outside_ach50 8.607 Total infiltration to the dwelling unit is 8.607 ACH50 -in.air_leakage_to_outside_ach50 8.61555 Total infiltration to the dwelling unit is 8.61555 ACH50 -in.air_leakage_to_outside_ach50 8.623 Total infiltration to the dwelling unit is 8.623 ACH50 -in.air_leakage_to_outside_ach50 8.627 Total infiltration to the dwelling unit is 8.627 ACH50 -in.air_leakage_to_outside_ach50 8.64795 Total infiltration to the dwelling unit is 8.64795 ACH50 -in.air_leakage_to_outside_ach50 8.6683 Total infiltration to the dwelling unit is 8.6683 ACH50 -in.air_leakage_to_outside_ach50 8.67765 Total infiltration to the dwelling unit is 8.67765 ACH50 -in.air_leakage_to_outside_ach50 8.6802 Total infiltration to the dwelling unit is 8.6802 ACH50 -in.air_leakage_to_outside_ach50 8.6946 Total infiltration to the dwelling unit is 8.6946 ACH50 -in.air_leakage_to_outside_ach50 8.69835 Total infiltration to the dwelling unit is 8.69835 ACH50 -in.air_leakage_to_outside_ach50 8.7116 Total infiltration to the dwelling unit is 8.7116 ACH50 -in.air_leakage_to_outside_ach50 8.7131 Total infiltration to the dwelling unit is 8.7131 ACH50 -in.air_leakage_to_outside_ach50 8.7168 Total infiltration to the dwelling unit is 8.7168 ACH50 -in.air_leakage_to_outside_ach50 8.7751 Total infiltration to the dwelling unit is 8.7751 ACH50 -in.air_leakage_to_outside_ach50 8.79105 Total infiltration to the dwelling unit is 8.79105 ACH50 -in.air_leakage_to_outside_ach50 8.7993 Total infiltration to the dwelling unit is 8.7993 ACH50 -in.air_leakage_to_outside_ach50 8.8315 Total infiltration to the dwelling unit is 8.8315 ACH50 -in.air_leakage_to_outside_ach50 8.8335 Total infiltration to the dwelling unit is 8.83349999999999 ACH50 -in.air_leakage_to_outside_ach50 8.8392 Total infiltration to the dwelling unit is 8.8392 ACH50 -in.air_leakage_to_outside_ach50 8.8544 Total infiltration to the dwelling unit is 8.8544 ACH50 -in.air_leakage_to_outside_ach50 8.8565 Total infiltration to the dwelling unit is 8.8565 ACH50 -in.air_leakage_to_outside_ach50 8.8616 Total infiltration to the dwelling unit is 8.8616 ACH50 -in.air_leakage_to_outside_ach50 8.883 Total infiltration to the dwelling unit is 8.883 ACH50 -in.air_leakage_to_outside_ach50 8.8863 Total infiltration to the dwelling unit is 8.8863 ACH50 -in.air_leakage_to_outside_ach50 8.8864 Total infiltration to the dwelling unit is 8.8864 ACH50 -in.air_leakage_to_outside_ach50 8.916 Total infiltration to the dwelling unit is 8.916 ACH50 -in.air_leakage_to_outside_ach50 8.9358 Total infiltration to the dwelling unit is 8.9358 ACH50 -in.air_leakage_to_outside_ach50 8.95395 Total infiltration to the dwelling unit is 8.95394999999999 ACH50 -in.air_leakage_to_outside_ach50 8.956 Total infiltration to the dwelling unit is 8.956 ACH50 -in.air_leakage_to_outside_ach50 8.9567 Total infiltration to the dwelling unit is 8.9567 ACH50 -in.air_leakage_to_outside_ach50 8.9604 Total infiltration to the dwelling unit is 8.9604 ACH50 -in.air_leakage_to_outside_ach50 8.962 Total infiltration to the dwelling unit is 8.962 ACH50 -in.air_leakage_to_outside_ach50 8.98185 Total infiltration to the dwelling unit is 8.98185 ACH50 -in.air_leakage_to_outside_ach50 8.9872 Total infiltration to the dwelling unit is 8.9872 ACH50 -in.air_leakage_to_outside_ach50 9.0204 Total infiltration to the dwelling unit is 9.0204 ACH50 -in.air_leakage_to_outside_ach50 9.0365 Total infiltration to the dwelling unit is 9.0365 ACH50 -in.air_leakage_to_outside_ach50 9.0542 Total infiltration to the dwelling unit is 9.0542 ACH50 -in.air_leakage_to_outside_ach50 9.06135 Total infiltration to the dwelling unit is 9.06135 ACH50 -in.air_leakage_to_outside_ach50 9.0672 Total infiltration to the dwelling unit is 9.0672 ACH50 -in.air_leakage_to_outside_ach50 9.0694 Total infiltration to the dwelling unit is 9.0694 ACH50 -in.air_leakage_to_outside_ach50 9.0701 Total infiltration to the dwelling unit is 9.0701 ACH50 -in.air_leakage_to_outside_ach50 9.08235 Total infiltration to the dwelling unit is 9.08235 ACH50 -in.air_leakage_to_outside_ach50 9.0895 Total infiltration to the dwelling unit is 9.0895 ACH50 -in.air_leakage_to_outside_ach50 9.08975 Total infiltration to the dwelling unit is 9.08975 ACH50 -in.air_leakage_to_outside_ach50 9.1005 Total infiltration to the dwelling unit is 9.1005 ACH50 -in.air_leakage_to_outside_ach50 9.1439 Total infiltration to the dwelling unit is 9.1439 ACH50 -in.air_leakage_to_outside_ach50 9.146 Total infiltration to the dwelling unit is 9.14599999999999 ACH50 -in.air_leakage_to_outside_ach50 9.1476 Total infiltration to the dwelling unit is 9.1476 ACH50 -in.air_leakage_to_outside_ach50 9.1493 Total infiltration to the dwelling unit is 9.1493 ACH50 -in.air_leakage_to_outside_ach50 9.17325 Total infiltration to the dwelling unit is 9.17325 ACH50 -in.air_leakage_to_outside_ach50 9.1736 Total infiltration to the dwelling unit is 9.1736 ACH50 -in.air_leakage_to_outside_ach50 9.18825 Total infiltration to the dwelling unit is 9.18825 ACH50 -in.air_leakage_to_outside_ach50 9.2126 Total infiltration to the dwelling unit is 9.2126 ACH50 -in.air_leakage_to_outside_ach50 9.2142 Total infiltration to the dwelling unit is 9.2142 ACH50 -in.air_leakage_to_outside_ach50 9.21525 Total infiltration to the dwelling unit is 9.21525 ACH50 -in.air_leakage_to_outside_ach50 9.239 Total infiltration to the dwelling unit is 9.239 ACH50 -in.air_leakage_to_outside_ach50 9.2649 Total infiltration to the dwelling unit is 9.2649 ACH50 -in.air_leakage_to_outside_ach50 9.26985 Total infiltration to the dwelling unit is 9.26985 ACH50 -in.air_leakage_to_outside_ach50 9.27 Total infiltration to the dwelling unit is 9.27 ACH50 -in.air_leakage_to_outside_ach50 9.279 Total infiltration to the dwelling unit is 9.279 ACH50 -in.air_leakage_to_outside_ach50 9.3002 Total infiltration to the dwelling unit is 9.3002 ACH50 -in.air_leakage_to_outside_ach50 9.33375 Total infiltration to the dwelling unit is 9.33375 ACH50 -in.air_leakage_to_outside_ach50 9.33735 Total infiltration to the dwelling unit is 9.33735 ACH50 -in.air_leakage_to_outside_ach50 9.3466 Total infiltration to the dwelling unit is 9.3466 ACH50 -in.air_leakage_to_outside_ach50 9.3993 Total infiltration to the dwelling unit is 9.3993 ACH50 -in.air_leakage_to_outside_ach50 9.425 Total infiltration to the dwelling unit is 9.425 ACH50 -in.air_leakage_to_outside_ach50 9.4432 Total infiltration to the dwelling unit is 9.4432 ACH50 -in.air_leakage_to_outside_ach50 9.44475 Total infiltration to the dwelling unit is 9.44475 ACH50 -in.air_leakage_to_outside_ach50 9.49755 Total infiltration to the dwelling unit is 9.49755 ACH50 -in.air_leakage_to_outside_ach50 9.5676 Total infiltration to the dwelling unit is 9.5676 ACH50 -in.air_leakage_to_outside_ach50 9.57875 Total infiltration to the dwelling unit is 9.57875 ACH50 -in.air_leakage_to_outside_ach50 9.6396 Total infiltration to the dwelling unit is 9.6396 ACH50 -in.air_leakage_to_outside_ach50 9.67005 Total infiltration to the dwelling unit is 9.67005 ACH50 -in.air_leakage_to_outside_ach50 9.67965 Total infiltration to the dwelling unit is 9.67965 ACH50 -in.air_leakage_to_outside_ach50 9.72315 Total infiltration to the dwelling unit is 9.72314999999999 ACH50 -in.air_leakage_to_outside_ach50 9.7484 Total infiltration to the dwelling unit is 9.7484 ACH50 -in.air_leakage_to_outside_ach50 9.8118 Total infiltration to the dwelling unit is 9.8118 ACH50 -in.air_leakage_to_outside_ach50 9.817 Total infiltration to the dwelling unit is 9.817 ACH50 -in.air_leakage_to_outside_ach50 9.8361 Total infiltration to the dwelling unit is 9.8361 ACH50 -in.air_leakage_to_outside_ach50 9.8395 Total infiltration to the dwelling unit is 9.8395 ACH50 -in.air_leakage_to_outside_ach50 9.8696 Total infiltration to the dwelling unit is 9.8696 ACH50 -in.air_leakage_to_outside_ach50 9.88755 Total infiltration to the dwelling unit is 9.88755 ACH50 -in.air_leakage_to_outside_ach50 9.933 Total infiltration to the dwelling unit is 9.933 ACH50 -in.air_leakage_to_outside_ach50 9.94455 Total infiltration to the dwelling unit is 9.94455 ACH50 -in.air_leakage_to_outside_ach50 9.9498 Total infiltration to the dwelling unit is 9.9498 ACH50 -in.air_leakage_to_outside_ach50 9.96255 Total infiltration to the dwelling unit is 9.96255 ACH50 -in.air_leakage_to_outside_ach50 9.98325 Total infiltration to the dwelling unit is 9.98325 ACH50 -in.air_leakage_to_outside_ach50 10 Total infiltration to the dwelling unit is 10 ACH50 -in.air_leakage_to_outside_ach50 10.0195 Total infiltration to the dwelling unit is 10.0195 ACH50 -in.air_leakage_to_outside_ach50 10.01975 Total infiltration to the dwelling unit is 10.01975 ACH50 -in.air_leakage_to_outside_ach50 10.0221 Total infiltration to the dwelling unit is 10.0221 ACH50 -in.air_leakage_to_outside_ach50 10.06155 Total infiltration to the dwelling unit is 10.06155 ACH50 -in.air_leakage_to_outside_ach50 10.0845 Total infiltration to the dwelling unit is 10.0845 ACH50 -in.air_leakage_to_outside_ach50 10.106 Total infiltration to the dwelling unit is 10.106 ACH50 -in.air_leakage_to_outside_ach50 10.1358 Total infiltration to the dwelling unit is 10.1358 ACH50 -in.air_leakage_to_outside_ach50 10.15395 Total infiltration to the dwelling unit is 10.15395 ACH50 -in.air_leakage_to_outside_ach50 10.1607 Total infiltration to the dwelling unit is 10.1607 ACH50 -in.air_leakage_to_outside_ach50 10.17525 Total infiltration to the dwelling unit is 10.17525 ACH50 -in.air_leakage_to_outside_ach50 10.19865 Total infiltration to the dwelling unit is 10.19865 ACH50 -in.air_leakage_to_outside_ach50 10.22685 Total infiltration to the dwelling unit is 10.22685 ACH50 -in.air_leakage_to_outside_ach50 10.27965 Total infiltration to the dwelling unit is 10.27965 ACH50 -in.air_leakage_to_outside_ach50 10.3318 Total infiltration to the dwelling unit is 10.3318 ACH50 -in.air_leakage_to_outside_ach50 10.35225 Total infiltration to the dwelling unit is 10.35225 ACH50 -in.air_leakage_to_outside_ach50 10.3524 Total infiltration to the dwelling unit is 10.3524 ACH50 -in.air_leakage_to_outside_ach50 10.35975 Total infiltration to the dwelling unit is 10.35975 ACH50 -in.air_leakage_to_outside_ach50 10.3612 Total infiltration to the dwelling unit is 10.3612 ACH50 -in.air_leakage_to_outside_ach50 10.38075 Total infiltration to the dwelling unit is 10.38075 ACH50 -in.air_leakage_to_outside_ach50 10.3824 Total infiltration to the dwelling unit is 10.3824 ACH50 -in.air_leakage_to_outside_ach50 10.3923 Total infiltration to the dwelling unit is 10.3923 ACH50 -in.air_leakage_to_outside_ach50 10.3992 Total infiltration to the dwelling unit is 10.3992 ACH50 -in.air_leakage_to_outside_ach50 10.4088 Total infiltration to the dwelling unit is 10.4088 ACH50 -in.air_leakage_to_outside_ach50 10.4748 Total infiltration to the dwelling unit is 10.4748 ACH50 -in.air_leakage_to_outside_ach50 10.50585 Total infiltration to the dwelling unit is 10.5058499999999 ACH50 -in.air_leakage_to_outside_ach50 10.5108 Total infiltration to the dwelling unit is 10.5108 ACH50 -in.air_leakage_to_outside_ach50 10.5204 Total infiltration to the dwelling unit is 10.5204 ACH50 -in.air_leakage_to_outside_ach50 10.5288 Total infiltration to the dwelling unit is 10.5288 ACH50 -in.air_leakage_to_outside_ach50 10.5315 Total infiltration to the dwelling unit is 10.5315 ACH50 -in.air_leakage_to_outside_ach50 10.6188 Total infiltration to the dwelling unit is 10.6188 ACH50 -in.air_leakage_to_outside_ach50 10.62315 Total infiltration to the dwelling unit is 10.62315 ACH50 -in.air_leakage_to_outside_ach50 10.6536 Total infiltration to the dwelling unit is 10.6536 ACH50 -in.air_leakage_to_outside_ach50 10.65675 Total infiltration to the dwelling unit is 10.65675 ACH50 -in.air_leakage_to_outside_ach50 10.66225 Total infiltration to the dwelling unit is 10.66225 ACH50 -in.air_leakage_to_outside_ach50 10.6652 Total infiltration to the dwelling unit is 10.6651999999999 ACH50 -in.air_leakage_to_outside_ach50 10.7366 Total infiltration to the dwelling unit is 10.7366 ACH50 -in.air_leakage_to_outside_ach50 10.7428 Total infiltration to the dwelling unit is 10.7427999999999 ACH50 -in.air_leakage_to_outside_ach50 10.77875 Total infiltration to the dwelling unit is 10.7787499999999 ACH50 -in.air_leakage_to_outside_ach50 10.8168 Total infiltration to the dwelling unit is 10.8168 ACH50 -in.air_leakage_to_outside_ach50 10.8196 Total infiltration to the dwelling unit is 10.8196 ACH50 -in.air_leakage_to_outside_ach50 10.875 Total infiltration to the dwelling unit is 10.875 ACH50 -in.air_leakage_to_outside_ach50 10.878 Total infiltration to the dwelling unit is 10.878 ACH50 -in.air_leakage_to_outside_ach50 10.9077 Total infiltration to the dwelling unit is 10.9077 ACH50 -in.air_leakage_to_outside_ach50 10.916 Total infiltration to the dwelling unit is 10.9159999999999 ACH50 -in.air_leakage_to_outside_ach50 10.92045 Total infiltration to the dwelling unit is 10.9204499999999 ACH50 -in.air_leakage_to_outside_ach50 10.9512 Total infiltration to the dwelling unit is 10.9512 ACH50 -in.air_leakage_to_outside_ach50 11.0334 Total infiltration to the dwelling unit is 11.0334 ACH50 -in.air_leakage_to_outside_ach50 11.068 Total infiltration to the dwelling unit is 11.068 ACH50 -in.air_leakage_to_outside_ach50 11.1074 Total infiltration to the dwelling unit is 11.1074 ACH50 -in.air_leakage_to_outside_ach50 11.11485 Total infiltration to the dwelling unit is 11.11485 ACH50 -in.air_leakage_to_outside_ach50 11.1348 Total infiltration to the dwelling unit is 11.1348 ACH50 -in.air_leakage_to_outside_ach50 11.13495 Total infiltration to the dwelling unit is 11.13495 ACH50 -in.air_leakage_to_outside_ach50 11.13735 Total infiltration to the dwelling unit is 11.13735 ACH50 -in.air_leakage_to_outside_ach50 11.13915 Total infiltration to the dwelling unit is 11.13915 ACH50 -in.air_leakage_to_outside_ach50 11.15565 Total infiltration to the dwelling unit is 11.15565 ACH50 -in.air_leakage_to_outside_ach50 11.1784 Total infiltration to the dwelling unit is 11.1784 ACH50 -in.air_leakage_to_outside_ach50 11.1826 Total infiltration to the dwelling unit is 11.1826 ACH50 -in.air_leakage_to_outside_ach50 11.2025 Total infiltration to the dwelling unit is 11.2025 ACH50 -in.air_leakage_to_outside_ach50 11.215 Total infiltration to the dwelling unit is 11.215 ACH50 -in.air_leakage_to_outside_ach50 11.2311 Total infiltration to the dwelling unit is 11.2311 ACH50 -in.air_leakage_to_outside_ach50 11.234 Total infiltration to the dwelling unit is 11.234 ACH50 -in.air_leakage_to_outside_ach50 11.2572 Total infiltration to the dwelling unit is 11.2572 ACH50 -in.air_leakage_to_outside_ach50 11.2668 Total infiltration to the dwelling unit is 11.2668 ACH50 -in.air_leakage_to_outside_ach50 11.28975 Total infiltration to the dwelling unit is 11.28975 ACH50 -in.air_leakage_to_outside_ach50 11.299 Total infiltration to the dwelling unit is 11.299 ACH50 -in.air_leakage_to_outside_ach50 11.31775 Total infiltration to the dwelling unit is 11.31775 ACH50 -in.air_leakage_to_outside_ach50 11.3745 Total infiltration to the dwelling unit is 11.3745 ACH50 -in.air_leakage_to_outside_ach50 11.38515 Total infiltration to the dwelling unit is 11.38515 ACH50 -in.air_leakage_to_outside_ach50 11.38545 Total infiltration to the dwelling unit is 11.38545 ACH50 -in.air_leakage_to_outside_ach50 11.3934 Total infiltration to the dwelling unit is 11.3934 ACH50 -in.air_leakage_to_outside_ach50 11.3997 Total infiltration to the dwelling unit is 11.3997 ACH50 -in.air_leakage_to_outside_ach50 11.4033 Total infiltration to the dwelling unit is 11.4033 ACH50 -in.air_leakage_to_outside_ach50 11.42805 Total infiltration to the dwelling unit is 11.42805 ACH50 -in.air_leakage_to_outside_ach50 11.4312 Total infiltration to the dwelling unit is 11.4311999999999 ACH50 -in.air_leakage_to_outside_ach50 11.4325 Total infiltration to the dwelling unit is 11.4325 ACH50 -in.air_leakage_to_outside_ach50 11.4345 Total infiltration to the dwelling unit is 11.4345 ACH50 -in.air_leakage_to_outside_ach50 11.4351 Total infiltration to the dwelling unit is 11.4351 ACH50 -in.air_leakage_to_outside_ach50 11.4584 Total infiltration to the dwelling unit is 11.4584 ACH50 -in.air_leakage_to_outside_ach50 11.467 Total infiltration to the dwelling unit is 11.4669999999999 ACH50 -in.air_leakage_to_outside_ach50 11.4874 Total infiltration to the dwelling unit is 11.4874 ACH50 -in.air_leakage_to_outside_ach50 11.4945 Total infiltration to the dwelling unit is 11.4945 ACH50 -in.air_leakage_to_outside_ach50 11.49945 Total infiltration to the dwelling unit is 11.49945 ACH50 -in.air_leakage_to_outside_ach50 11.5176 Total infiltration to the dwelling unit is 11.5176 ACH50 -in.air_leakage_to_outside_ach50 11.52615 Total infiltration to the dwelling unit is 11.52615 ACH50 -in.air_leakage_to_outside_ach50 11.52855 Total infiltration to the dwelling unit is 11.52855 ACH50 -in.air_leakage_to_outside_ach50 11.5306 Total infiltration to the dwelling unit is 11.5306 ACH50 -in.air_leakage_to_outside_ach50 11.55735 Total infiltration to the dwelling unit is 11.55735 ACH50 -in.air_leakage_to_outside_ach50 11.5702 Total infiltration to the dwelling unit is 11.5702 ACH50 -in.air_leakage_to_outside_ach50 11.5736 Total infiltration to the dwelling unit is 11.5735999999999 ACH50 -in.air_leakage_to_outside_ach50 11.5848 Total infiltration to the dwelling unit is 11.5848 ACH50 -in.air_leakage_to_outside_ach50 11.5928 Total infiltration to the dwelling unit is 11.5928 ACH50 -in.air_leakage_to_outside_ach50 11.5935 Total infiltration to the dwelling unit is 11.5935 ACH50 -in.air_leakage_to_outside_ach50 11.5978 Total infiltration to the dwelling unit is 11.5978 ACH50 -in.air_leakage_to_outside_ach50 11.6224 Total infiltration to the dwelling unit is 11.6223999999999 ACH50 -in.air_leakage_to_outside_ach50 11.66535 Total infiltration to the dwelling unit is 11.66535 ACH50 -in.air_leakage_to_outside_ach50 11.6919 Total infiltration to the dwelling unit is 11.6919 ACH50 -in.air_leakage_to_outside_ach50 11.7183 Total infiltration to the dwelling unit is 11.7183 ACH50 -in.air_leakage_to_outside_ach50 11.7214 Total infiltration to the dwelling unit is 11.7214 ACH50 -in.air_leakage_to_outside_ach50 11.72505 Total infiltration to the dwelling unit is 11.72505 ACH50 -in.air_leakage_to_outside_ach50 11.7324 Total infiltration to the dwelling unit is 11.7324 ACH50 -in.air_leakage_to_outside_ach50 11.778 Total infiltration to the dwelling unit is 11.7779999999999 ACH50 -in.air_leakage_to_outside_ach50 11.7969 Total infiltration to the dwelling unit is 11.7969 ACH50 -in.air_leakage_to_outside_ach50 11.8074 Total infiltration to the dwelling unit is 11.8074 ACH50 -in.air_leakage_to_outside_ach50 11.80785 Total infiltration to the dwelling unit is 11.8078499999999 ACH50 -in.air_leakage_to_outside_ach50 11.8239 Total infiltration to the dwelling unit is 11.8239 ACH50 -in.air_leakage_to_outside_ach50 11.844 Total infiltration to the dwelling unit is 11.844 ACH50 -in.air_leakage_to_outside_ach50 11.8473 Total infiltration to the dwelling unit is 11.8472999999999 ACH50 -in.air_leakage_to_outside_ach50 11.8584 Total infiltration to the dwelling unit is 11.8584 ACH50 -in.air_leakage_to_outside_ach50 11.8701 Total infiltration to the dwelling unit is 11.8701 ACH50 -in.air_leakage_to_outside_ach50 11.888 Total infiltration to the dwelling unit is 11.888 ACH50 -in.air_leakage_to_outside_ach50 11.9386 Total infiltration to the dwelling unit is 11.9386 ACH50 -in.air_leakage_to_outside_ach50 11.9415 Total infiltration to the dwelling unit is 11.9415 ACH50 -in.air_leakage_to_outside_ach50 11.9472 Total infiltration to the dwelling unit is 11.9472 ACH50 -in.air_leakage_to_outside_ach50 11.9595 Total infiltration to the dwelling unit is 11.9595 ACH50 -in.air_leakage_to_outside_ach50 11.97705 Total infiltration to the dwelling unit is 11.97705 ACH50 -in.air_leakage_to_outside_ach50 11.9802 Total infiltration to the dwelling unit is 11.9802 ACH50 -in.air_leakage_to_outside_ach50 11.98155 Total infiltration to the dwelling unit is 11.98155 ACH50 -in.air_leakage_to_outside_ach50 11.99415 Total infiltration to the dwelling unit is 11.99415 ACH50 -in.air_leakage_to_outside_ach50 12.0237 Total infiltration to the dwelling unit is 12.0237 ACH50 -in.air_leakage_to_outside_ach50 12.0272 Total infiltration to the dwelling unit is 12.0272 ACH50 -in.air_leakage_to_outside_ach50 12.0336 Total infiltration to the dwelling unit is 12.0336 ACH50 -in.air_leakage_to_outside_ach50 12.0495 Total infiltration to the dwelling unit is 12.0495 ACH50 -in.air_leakage_to_outside_ach50 12.05025 Total infiltration to the dwelling unit is 12.05025 ACH50 -in.air_leakage_to_outside_ach50 12.0818 Total infiltration to the dwelling unit is 12.0818 ACH50 -in.air_leakage_to_outside_ach50 12.08655 Total infiltration to the dwelling unit is 12.0865499999999 ACH50 -in.air_leakage_to_outside_ach50 12.0896 Total infiltration to the dwelling unit is 12.0896 ACH50 -in.air_leakage_to_outside_ach50 12.134 Total infiltration to the dwelling unit is 12.134 ACH50 -in.air_leakage_to_outside_ach50 12.137 Total infiltration to the dwelling unit is 12.137 ACH50 -in.air_leakage_to_outside_ach50 12.1668 Total infiltration to the dwelling unit is 12.1667999999999 ACH50 -in.air_leakage_to_outside_ach50 12.18225 Total infiltration to the dwelling unit is 12.18225 ACH50 -in.air_leakage_to_outside_ach50 12.19965 Total infiltration to the dwelling unit is 12.19965 ACH50 -in.air_leakage_to_outside_ach50 12.2082 Total infiltration to the dwelling unit is 12.2082 ACH50 -in.air_leakage_to_outside_ach50 12.21015 Total infiltration to the dwelling unit is 12.21015 ACH50 -in.air_leakage_to_outside_ach50 12.2103 Total infiltration to the dwelling unit is 12.2103 ACH50 -in.air_leakage_to_outside_ach50 12.22245 Total infiltration to the dwelling unit is 12.22245 ACH50 -in.air_leakage_to_outside_ach50 12.231 Total infiltration to the dwelling unit is 12.231 ACH50 -in.air_leakage_to_outside_ach50 12.27315 Total infiltration to the dwelling unit is 12.27315 ACH50 -in.air_leakage_to_outside_ach50 12.287 Total infiltration to the dwelling unit is 12.2869999999999 ACH50 -in.air_leakage_to_outside_ach50 12.337 Total infiltration to the dwelling unit is 12.337 ACH50 -in.air_leakage_to_outside_ach50 12.3399 Total infiltration to the dwelling unit is 12.3399 ACH50 -in.air_leakage_to_outside_ach50 12.3598 Total infiltration to the dwelling unit is 12.3598 ACH50 -in.air_leakage_to_outside_ach50 12.3615 Total infiltration to the dwelling unit is 12.3615 ACH50 -in.air_leakage_to_outside_ach50 12.41805 Total infiltration to the dwelling unit is 12.41805 ACH50 -in.air_leakage_to_outside_ach50 12.4317 Total infiltration to the dwelling unit is 12.4317 ACH50 -in.air_leakage_to_outside_ach50 12.43725 Total infiltration to the dwelling unit is 12.4372499999999 ACH50 -in.air_leakage_to_outside_ach50 12.445 Total infiltration to the dwelling unit is 12.445 ACH50 -in.air_leakage_to_outside_ach50 12.44805 Total infiltration to the dwelling unit is 12.44805 ACH50 -in.air_leakage_to_outside_ach50 12.4498 Total infiltration to the dwelling unit is 12.4498 ACH50 -in.air_leakage_to_outside_ach50 12.4722 Total infiltration to the dwelling unit is 12.4722 ACH50 -in.air_leakage_to_outside_ach50 12.5 Total infiltration to the dwelling unit is 12.5 ACH50 -in.air_leakage_to_outside_ach50 12.51105 Total infiltration to the dwelling unit is 12.51105 ACH50 -in.air_leakage_to_outside_ach50 12.51675 Total infiltration to the dwelling unit is 12.51675 ACH50 -in.air_leakage_to_outside_ach50 12.52425 Total infiltration to the dwelling unit is 12.52425 ACH50 -in.air_leakage_to_outside_ach50 12.5324 Total infiltration to the dwelling unit is 12.5323999999999 ACH50 -in.air_leakage_to_outside_ach50 12.5679 Total infiltration to the dwelling unit is 12.5679 ACH50 -in.air_leakage_to_outside_ach50 12.57705 Total infiltration to the dwelling unit is 12.57705 ACH50 -in.air_leakage_to_outside_ach50 12.593 Total infiltration to the dwelling unit is 12.593 ACH50 -in.air_leakage_to_outside_ach50 12.59925 Total infiltration to the dwelling unit is 12.59925 ACH50 -in.air_leakage_to_outside_ach50 12.6325 Total infiltration to the dwelling unit is 12.6324999999999 ACH50 -in.air_leakage_to_outside_ach50 12.6378 Total infiltration to the dwelling unit is 12.6378 ACH50 -in.air_leakage_to_outside_ach50 12.6399 Total infiltration to the dwelling unit is 12.6398999999999 ACH50 -in.air_leakage_to_outside_ach50 12.64275 Total infiltration to the dwelling unit is 12.64275 ACH50 -in.air_leakage_to_outside_ach50 12.6634 Total infiltration to the dwelling unit is 12.6634 ACH50 -in.air_leakage_to_outside_ach50 12.6762 Total infiltration to the dwelling unit is 12.6762 ACH50 -in.air_leakage_to_outside_ach50 12.6903 Total infiltration to the dwelling unit is 12.6903 ACH50 -in.air_leakage_to_outside_ach50 12.69615 Total infiltration to the dwelling unit is 12.69615 ACH50 -in.air_leakage_to_outside_ach50 12.7554 Total infiltration to the dwelling unit is 12.7554 ACH50 -in.air_leakage_to_outside_ach50 12.7644 Total infiltration to the dwelling unit is 12.7644 ACH50 -in.air_leakage_to_outside_ach50 12.79485 Total infiltration to the dwelling unit is 12.79485 ACH50 -in.air_leakage_to_outside_ach50 12.81 Total infiltration to the dwelling unit is 12.81 ACH50 -in.air_leakage_to_outside_ach50 12.8115 Total infiltration to the dwelling unit is 12.8114999999999 ACH50 -in.air_leakage_to_outside_ach50 12.82995 Total infiltration to the dwelling unit is 12.82995 ACH50 -in.air_leakage_to_outside_ach50 12.8934 Total infiltration to the dwelling unit is 12.8934 ACH50 -in.air_leakage_to_outside_ach50 12.9062 Total infiltration to the dwelling unit is 12.9062 ACH50 -in.air_leakage_to_outside_ach50 12.91475 Total infiltration to the dwelling unit is 12.91475 ACH50 -in.air_leakage_to_outside_ach50 12.9345 Total infiltration to the dwelling unit is 12.9345 ACH50 -in.air_leakage_to_outside_ach50 12.9515 Total infiltration to the dwelling unit is 12.9515 ACH50 -in.air_leakage_to_outside_ach50 12.9642 Total infiltration to the dwelling unit is 12.9641999999999 ACH50 -in.air_leakage_to_outside_ach50 12.978 Total infiltration to the dwelling unit is 12.978 ACH50 -in.air_leakage_to_outside_ach50 12.999 Total infiltration to the dwelling unit is 12.9989999999999 ACH50 -in.air_leakage_to_outside_ach50 13.00245 Total infiltration to the dwelling unit is 13.00245 ACH50 -in.air_leakage_to_outside_ach50 13.0674 Total infiltration to the dwelling unit is 13.0674 ACH50 -in.air_leakage_to_outside_ach50 13.06965 Total infiltration to the dwelling unit is 13.06965 ACH50 -in.air_leakage_to_outside_ach50 13.0824 Total infiltration to the dwelling unit is 13.0824 ACH50 -in.air_leakage_to_outside_ach50 13.0935 Total infiltration to the dwelling unit is 13.0934999999999 ACH50 -in.air_leakage_to_outside_ach50 13.1148 Total infiltration to the dwelling unit is 13.1147999999999 ACH50 -in.air_leakage_to_outside_ach50 13.16265 Total infiltration to the dwelling unit is 13.16265 ACH50 -in.air_leakage_to_outside_ach50 13.244 Total infiltration to the dwelling unit is 13.244 ACH50 -in.air_leakage_to_outside_ach50 13.24725 Total infiltration to the dwelling unit is 13.24725 ACH50 -in.air_leakage_to_outside_ach50 13.2588 Total infiltration to the dwelling unit is 13.2588 ACH50 -in.air_leakage_to_outside_ach50 13.2594 Total infiltration to the dwelling unit is 13.2594 ACH50 -in.air_leakage_to_outside_ach50 13.2816 Total infiltration to the dwelling unit is 13.2816 ACH50 -in.air_leakage_to_outside_ach50 13.28475 Total infiltration to the dwelling unit is 13.28475 ACH50 -in.air_leakage_to_outside_ach50 13.2924 Total infiltration to the dwelling unit is 13.2923999999999 ACH50 -in.air_leakage_to_outside_ach50 13.311 Total infiltration to the dwelling unit is 13.311 ACH50 -in.air_leakage_to_outside_ach50 13.317 Total infiltration to the dwelling unit is 13.317 ACH50 -in.air_leakage_to_outside_ach50 13.3315 Total infiltration to the dwelling unit is 13.3314999999999 ACH50 -in.air_leakage_to_outside_ach50 13.3628 Total infiltration to the dwelling unit is 13.3628 ACH50 -in.air_leakage_to_outside_ach50 13.4037 Total infiltration to the dwelling unit is 13.4037 ACH50 -in.air_leakage_to_outside_ach50 13.4154 Total infiltration to the dwelling unit is 13.4154 ACH50 -in.air_leakage_to_outside_ach50 13.42075 Total infiltration to the dwelling unit is 13.42075 ACH50 -in.air_leakage_to_outside_ach50 13.434 Total infiltration to the dwelling unit is 13.434 ACH50 -in.air_leakage_to_outside_ach50 13.43505 Total infiltration to the dwelling unit is 13.43505 ACH50 -in.air_leakage_to_outside_ach50 13.443 Total infiltration to the dwelling unit is 13.443 ACH50 -in.air_leakage_to_outside_ach50 13.5144 Total infiltration to the dwelling unit is 13.5144 ACH50 -in.air_leakage_to_outside_ach50 13.521 Total infiltration to the dwelling unit is 13.5209999999999 ACH50 -in.air_leakage_to_outside_ach50 13.5245 Total infiltration to the dwelling unit is 13.5245 ACH50 -in.air_leakage_to_outside_ach50 13.5386 Total infiltration to the dwelling unit is 13.5386 ACH50 -in.air_leakage_to_outside_ach50 13.5813 Total infiltration to the dwelling unit is 13.5813 ACH50 -in.air_leakage_to_outside_ach50 13.59375 Total infiltration to the dwelling unit is 13.5937499999999 ACH50 -in.air_leakage_to_outside_ach50 13.5975 Total infiltration to the dwelling unit is 13.5975 ACH50 -in.air_leakage_to_outside_ach50 13.5982 Total infiltration to the dwelling unit is 13.5982 ACH50 -in.air_leakage_to_outside_ach50 13.6041 Total infiltration to the dwelling unit is 13.6040999999999 ACH50 -in.air_leakage_to_outside_ach50 13.60515 Total infiltration to the dwelling unit is 13.60515 ACH50 -in.air_leakage_to_outside_ach50 13.6358 Total infiltration to the dwelling unit is 13.6358 ACH50 -in.air_leakage_to_outside_ach50 13.645 Total infiltration to the dwelling unit is 13.645 ACH50 -in.air_leakage_to_outside_ach50 13.689 Total infiltration to the dwelling unit is 13.689 ACH50 -in.air_leakage_to_outside_ach50 13.7062 Total infiltration to the dwelling unit is 13.7061999999999 ACH50 -in.air_leakage_to_outside_ach50 13.71585 Total infiltration to the dwelling unit is 13.71585 ACH50 -in.air_leakage_to_outside_ach50 13.719 Total infiltration to the dwelling unit is 13.719 ACH50 -in.air_leakage_to_outside_ach50 13.72395 Total infiltration to the dwelling unit is 13.72395 ACH50 -in.air_leakage_to_outside_ach50 13.7604 Total infiltration to the dwelling unit is 13.7603999999999 ACH50 -in.air_leakage_to_outside_ach50 13.79175 Total infiltration to the dwelling unit is 13.79175 ACH50 -in.air_leakage_to_outside_ach50 13.803 Total infiltration to the dwelling unit is 13.803 ACH50 -in.air_leakage_to_outside_ach50 13.8032 Total infiltration to the dwelling unit is 13.8032 ACH50 -in.air_leakage_to_outside_ach50 13.8189 Total infiltration to the dwelling unit is 13.8189 ACH50 -in.air_leakage_to_outside_ach50 13.8213 Total infiltration to the dwelling unit is 13.8213 ACH50 -in.air_leakage_to_outside_ach50 13.841 Total infiltration to the dwelling unit is 13.841 ACH50 -in.air_leakage_to_outside_ach50 13.8564 Total infiltration to the dwelling unit is 13.8564 ACH50 -in.air_leakage_to_outside_ach50 13.88425 Total infiltration to the dwelling unit is 13.88425 ACH50 -in.air_leakage_to_outside_ach50 13.89735 Total infiltration to the dwelling unit is 13.89735 ACH50 -in.air_leakage_to_outside_ach50 13.905 Total infiltration to the dwelling unit is 13.905 ACH50 -in.air_leakage_to_outside_ach50 13.9503 Total infiltration to the dwelling unit is 13.9502999999999 ACH50 -in.air_leakage_to_outside_ach50 13.973 Total infiltration to the dwelling unit is 13.9729999999999 ACH50 -in.air_leakage_to_outside_ach50 13.97825 Total infiltration to the dwelling unit is 13.97825 ACH50 -in.air_leakage_to_outside_ach50 14.0078 Total infiltration to the dwelling unit is 14.0078 ACH50 -in.air_leakage_to_outside_ach50 14.0144 Total infiltration to the dwelling unit is 14.0144 ACH50 -in.air_leakage_to_outside_ach50 14.0272 Total infiltration to the dwelling unit is 14.0272 ACH50 -in.air_leakage_to_outside_ach50 14.0384 Total infiltration to the dwelling unit is 14.0384 ACH50 -in.air_leakage_to_outside_ach50 14.0835 Total infiltration to the dwelling unit is 14.0834999999999 ACH50 -in.air_leakage_to_outside_ach50 14.12375 Total infiltration to the dwelling unit is 14.12375 ACH50 -in.air_leakage_to_outside_ach50 14.1642 Total infiltration to the dwelling unit is 14.1642 ACH50 -in.air_leakage_to_outside_ach50 14.1648 Total infiltration to the dwelling unit is 14.1648 ACH50 -in.air_leakage_to_outside_ach50 14.209 Total infiltration to the dwelling unit is 14.209 ACH50 -in.air_leakage_to_outside_ach50 14.217 Total infiltration to the dwelling unit is 14.2169999999999 ACH50 -in.air_leakage_to_outside_ach50 14.289 Total infiltration to the dwelling unit is 14.289 ACH50 -in.air_leakage_to_outside_ach50 14.323 Total infiltration to the dwelling unit is 14.323 ACH50 -in.air_leakage_to_outside_ach50 14.3514 Total infiltration to the dwelling unit is 14.3514 ACH50 -in.air_leakage_to_outside_ach50 14.35925 Total infiltration to the dwelling unit is 14.35925 ACH50 -in.air_leakage_to_outside_ach50 14.41325 Total infiltration to the dwelling unit is 14.41325 ACH50 -in.air_leakage_to_outside_ach50 14.4594 Total infiltration to the dwelling unit is 14.4594 ACH50 -in.air_leakage_to_outside_ach50 14.46275 Total infiltration to the dwelling unit is 14.46275 ACH50 -in.air_leakage_to_outside_ach50 14.467 Total infiltration to the dwelling unit is 14.4669999999999 ACH50 -in.air_leakage_to_outside_ach50 14.491 Total infiltration to the dwelling unit is 14.491 ACH50 -in.air_leakage_to_outside_ach50 14.49725 Total infiltration to the dwelling unit is 14.49725 ACH50 -in.air_leakage_to_outside_ach50 14.528 Total infiltration to the dwelling unit is 14.5279999999999 ACH50 -in.air_leakage_to_outside_ach50 14.5436 Total infiltration to the dwelling unit is 14.5436 ACH50 -in.air_leakage_to_outside_ach50 14.5606 Total infiltration to the dwelling unit is 14.5605999999999 ACH50 -in.air_leakage_to_outside_ach50 14.6226 Total infiltration to the dwelling unit is 14.6226 ACH50 -in.air_leakage_to_outside_ach50 14.65175 Total infiltration to the dwelling unit is 14.65175 ACH50 -in.air_leakage_to_outside_ach50 14.7225 Total infiltration to the dwelling unit is 14.7225 ACH50 -in.air_leakage_to_outside_ach50 14.805 Total infiltration to the dwelling unit is 14.8049999999999 ACH50 -in.air_leakage_to_outside_ach50 14.8198 Total infiltration to the dwelling unit is 14.8198 ACH50 -in.air_leakage_to_outside_ach50 14.8464 Total infiltration to the dwelling unit is 14.8464 ACH50 -in.air_leakage_to_outside_ach50 14.8466 Total infiltration to the dwelling unit is 14.8466 ACH50 -in.air_leakage_to_outside_ach50 14.8522 Total infiltration to the dwelling unit is 14.8522 ACH50 -in.air_leakage_to_outside_ach50 14.86 Total infiltration to the dwelling unit is 14.86 ACH50 -in.air_leakage_to_outside_ach50 14.92325 Total infiltration to the dwelling unit is 14.92325 ACH50 -in.air_leakage_to_outside_ach50 14.9247 Total infiltration to the dwelling unit is 14.9247 ACH50 -in.air_leakage_to_outside_ach50 14.934 Total infiltration to the dwelling unit is 14.934 ACH50 -in.air_leakage_to_outside_ach50 14.9748 Total infiltration to the dwelling unit is 14.9747999999999 ACH50 -in.air_leakage_to_outside_ach50 15 Total infiltration to the dwelling unit is 15 ACH50 -in.air_leakage_to_outside_ach50 15.034 Total infiltration to the dwelling unit is 15.034 ACH50 -in.air_leakage_to_outside_ach50 15.053 Total infiltration to the dwelling unit is 15.053 ACH50 -in.air_leakage_to_outside_ach50 15.10225 Total infiltration to the dwelling unit is 15.10225 ACH50 -in.air_leakage_to_outside_ach50 15.112 Total infiltration to the dwelling unit is 15.112 ACH50 -in.air_leakage_to_outside_ach50 15.159 Total infiltration to the dwelling unit is 15.1589999999999 ACH50 -in.air_leakage_to_outside_ach50 15.166 Total infiltration to the dwelling unit is 15.166 ACH50 -in.air_leakage_to_outside_ach50 15.1675 Total infiltration to the dwelling unit is 15.1675 ACH50 -in.air_leakage_to_outside_ach50 15.17125 Total infiltration to the dwelling unit is 15.17125 ACH50 -in.air_leakage_to_outside_ach50 15.1802 Total infiltration to the dwelling unit is 15.1802 ACH50 -in.air_leakage_to_outside_ach50 15.1806 Total infiltration to the dwelling unit is 15.1806 ACH50 -in.air_leakage_to_outside_ach50 15.1912 Total infiltration to the dwelling unit is 15.1912 ACH50 -in.air_leakage_to_outside_ach50 15.1996 Total infiltration to the dwelling unit is 15.1996 ACH50 -in.air_leakage_to_outside_ach50 15.2374 Total infiltration to the dwelling unit is 15.2374 ACH50 -in.air_leakage_to_outside_ach50 15.2468 Total infiltration to the dwelling unit is 15.2468 ACH50 -in.air_leakage_to_outside_ach50 15.28875 Total infiltration to the dwelling unit is 15.28875 ACH50 -in.air_leakage_to_outside_ach50 15.326 Total infiltration to the dwelling unit is 15.326 ACH50 -in.air_leakage_to_outside_ach50 15.3326 Total infiltration to the dwelling unit is 15.3326 ACH50 -in.air_leakage_to_outside_ach50 15.3568 Total infiltration to the dwelling unit is 15.3568 ACH50 -in.air_leakage_to_outside_ach50 15.35875 Total infiltration to the dwelling unit is 15.3587499999999 ACH50 -in.air_leakage_to_outside_ach50 15.3682 Total infiltration to the dwelling unit is 15.3682 ACH50 -in.air_leakage_to_outside_ach50 15.3714 Total infiltration to the dwelling unit is 15.3714 ACH50 -in.air_leakage_to_outside_ach50 15.4098 Total infiltration to the dwelling unit is 15.4098 ACH50 -in.air_leakage_to_outside_ach50 15.4455 Total infiltration to the dwelling unit is 15.4455 ACH50 -in.air_leakage_to_outside_ach50 15.4464 Total infiltration to the dwelling unit is 15.4464 ACH50 -in.air_leakage_to_outside_ach50 15.44975 Total infiltration to the dwelling unit is 15.44975 ACH50 -in.air_leakage_to_outside_ach50 15.4977 Total infiltration to the dwelling unit is 15.4977 ACH50 -in.air_leakage_to_outside_ach50 15.5418 Total infiltration to the dwelling unit is 15.5417999999999 ACH50 -in.air_leakage_to_outside_ach50 15.5538 Total infiltration to the dwelling unit is 15.5537999999999 ACH50 -in.air_leakage_to_outside_ach50 15.55625 Total infiltration to the dwelling unit is 15.5562499999999 ACH50 -in.air_leakage_to_outside_ach50 15.56225 Total infiltration to the dwelling unit is 15.5622499999999 ACH50 -in.air_leakage_to_outside_ach50 15.5736 Total infiltration to the dwelling unit is 15.5736 ACH50 -in.air_leakage_to_outside_ach50 15.5892 Total infiltration to the dwelling unit is 15.5892 ACH50 -in.air_leakage_to_outside_ach50 15.5988 Total infiltration to the dwelling unit is 15.5987999999999 ACH50 -in.air_leakage_to_outside_ach50 15.6244 Total infiltration to the dwelling unit is 15.6244 ACH50 -in.air_leakage_to_outside_ach50 15.6334 Total infiltration to the dwelling unit is 15.6334 ACH50 -in.air_leakage_to_outside_ach50 15.6655 Total infiltration to the dwelling unit is 15.6654999999999 ACH50 -in.air_leakage_to_outside_ach50 15.7122 Total infiltration to the dwelling unit is 15.7122 ACH50 -in.air_leakage_to_outside_ach50 15.7292 Total infiltration to the dwelling unit is 15.7292 ACH50 -in.air_leakage_to_outside_ach50 15.74125 Total infiltration to the dwelling unit is 15.74125 ACH50 -in.air_leakage_to_outside_ach50 15.7432 Total infiltration to the dwelling unit is 15.7432 ACH50 -in.air_leakage_to_outside_ach50 15.7438 Total infiltration to the dwelling unit is 15.7437999999999 ACH50 -in.air_leakage_to_outside_ach50 15.7652 Total infiltration to the dwelling unit is 15.7652 ACH50 -in.air_leakage_to_outside_ach50 15.7964 Total infiltration to the dwelling unit is 15.7963999999999 ACH50 -in.air_leakage_to_outside_ach50 15.8112 Total infiltration to the dwelling unit is 15.8112 ACH50 -in.air_leakage_to_outside_ach50 15.8268 Total infiltration to the dwelling unit is 15.8268 ACH50 -in.air_leakage_to_outside_ach50 15.82925 Total infiltration to the dwelling unit is 15.82925 ACH50 -in.air_leakage_to_outside_ach50 15.922 Total infiltration to the dwelling unit is 15.922 ACH50 -in.air_leakage_to_outside_ach50 15.9694 Total infiltration to the dwelling unit is 15.9694 ACH50 -in.air_leakage_to_outside_ach50 15.9736 Total infiltration to the dwelling unit is 15.9736 ACH50 -in.air_leakage_to_outside_ach50 15.9754 Total infiltration to the dwelling unit is 15.9754 ACH50 -in.air_leakage_to_outside_ach50 15.9922 Total infiltration to the dwelling unit is 15.9922 ACH50 -in.air_leakage_to_outside_ach50 16.0316 Total infiltration to the dwelling unit is 16.0315999999999 ACH50 -in.air_leakage_to_outside_ach50 16.0448 Total infiltration to the dwelling unit is 16.0448 ACH50 -in.air_leakage_to_outside_ach50 16.067 Total infiltration to the dwelling unit is 16.067 ACH50 -in.air_leakage_to_outside_ach50 16.1049 Total infiltration to the dwelling unit is 16.1049 ACH50 -in.air_leakage_to_outside_ach50 16.1142 Total infiltration to the dwelling unit is 16.1141999999999 ACH50 -in.air_leakage_to_outside_ach50 16.11675 Total infiltration to the dwelling unit is 16.11675 ACH50 -in.air_leakage_to_outside_ach50 16.13275 Total infiltration to the dwelling unit is 16.13275 ACH50 -in.air_leakage_to_outside_ach50 16.20525 Total infiltration to the dwelling unit is 16.20525 ACH50 -in.air_leakage_to_outside_ach50 16.2224 Total infiltration to the dwelling unit is 16.2224 ACH50 -in.air_leakage_to_outside_ach50 16.2252 Total infiltration to the dwelling unit is 16.2252 ACH50 -in.air_leakage_to_outside_ach50 16.2294 Total infiltration to the dwelling unit is 16.2294 ACH50 -in.air_leakage_to_outside_ach50 16.2662 Total infiltration to the dwelling unit is 16.2661999999999 ACH50 -in.air_leakage_to_outside_ach50 16.2693 Total infiltration to the dwelling unit is 16.2692999999999 ACH50 -in.air_leakage_to_outside_ach50 16.2776 Total infiltration to the dwelling unit is 16.2776 ACH50 -in.air_leakage_to_outside_ach50 16.2802 Total infiltration to the dwelling unit is 16.2802 ACH50 -in.air_leakage_to_outside_ach50 16.2804 Total infiltration to the dwelling unit is 16.2804 ACH50 -in.air_leakage_to_outside_ach50 16.2966 Total infiltration to the dwelling unit is 16.2966 ACH50 -in.air_leakage_to_outside_ach50 16.3125 Total infiltration to the dwelling unit is 16.3125 ACH50 -in.air_leakage_to_outside_ach50 16.353 Total infiltration to the dwelling unit is 16.353 ACH50 -in.air_leakage_to_outside_ach50 16.3642 Total infiltration to the dwelling unit is 16.3642 ACH50 -in.air_leakage_to_outside_ach50 16.3935 Total infiltration to the dwelling unit is 16.3935 ACH50 -in.air_leakage_to_outside_ach50 16.4268 Total infiltration to the dwelling unit is 16.4268 ACH50 -in.air_leakage_to_outside_ach50 16.4532 Total infiltration to the dwelling unit is 16.4532 ACH50 -in.air_leakage_to_outside_ach50 16.482 Total infiltration to the dwelling unit is 16.482 ACH50 -in.air_leakage_to_outside_ach50 16.5501 Total infiltration to the dwelling unit is 16.5501 ACH50 -in.air_leakage_to_outside_ach50 16.555 Total infiltration to the dwelling unit is 16.555 ACH50 -in.air_leakage_to_outside_ach50 16.5574 Total infiltration to the dwelling unit is 16.5574 ACH50 -in.air_leakage_to_outside_ach50 16.57425 Total infiltration to the dwelling unit is 16.57425 ACH50 -in.air_leakage_to_outside_ach50 16.5756 Total infiltration to the dwelling unit is 16.5755999999999 ACH50 -in.air_leakage_to_outside_ach50 16.5974 Total infiltration to the dwelling unit is 16.5974 ACH50 -in.air_leakage_to_outside_ach50 16.6296 Total infiltration to the dwelling unit is 16.6296 ACH50 -in.air_leakage_to_outside_ach50 16.63875 Total infiltration to the dwelling unit is 16.6387499999999 ACH50 -in.air_leakage_to_outside_ach50 16.6611 Total infiltration to the dwelling unit is 16.6611 ACH50 -in.air_leakage_to_outside_ach50 16.6814 Total infiltration to the dwelling unit is 16.6814 ACH50 -in.air_leakage_to_outside_ach50 16.689 Total infiltration to the dwelling unit is 16.689 ACH50 -in.air_leakage_to_outside_ach50 16.7035 Total infiltration to the dwelling unit is 16.7035 ACH50 -in.air_leakage_to_outside_ach50 16.7572 Total infiltration to the dwelling unit is 16.7572 ACH50 -in.air_leakage_to_outside_ach50 16.7676 Total infiltration to the dwelling unit is 16.7675999999999 ACH50 -in.air_leakage_to_outside_ach50 16.76925 Total infiltration to the dwelling unit is 16.76925 ACH50 -in.air_leakage_to_outside_ach50 16.7694 Total infiltration to the dwelling unit is 16.7694 ACH50 -in.air_leakage_to_outside_ach50 16.7738 Total infiltration to the dwelling unit is 16.7738 ACH50 -in.air_leakage_to_outside_ach50 16.7739 Total infiltration to the dwelling unit is 16.7739 ACH50 -in.air_leakage_to_outside_ach50 16.799 Total infiltration to the dwelling unit is 16.799 ACH50 -in.air_leakage_to_outside_ach50 16.8504 Total infiltration to the dwelling unit is 16.8504 ACH50 -in.air_leakage_to_outside_ach50 16.8532 Total infiltration to the dwelling unit is 16.8532 ACH50 -in.air_leakage_to_outside_ach50 16.857 Total infiltration to the dwelling unit is 16.857 ACH50 -in.air_leakage_to_outside_ach50 16.893 Total infiltration to the dwelling unit is 16.893 ACH50 -in.air_leakage_to_outside_ach50 16.9002 Total infiltration to the dwelling unit is 16.9001999999999 ACH50 -in.air_leakage_to_outside_ach50 16.9016 Total infiltration to the dwelling unit is 16.9016 ACH50 -in.air_leakage_to_outside_ach50 16.9204 Total infiltration to the dwelling unit is 16.9204 ACH50 -in.air_leakage_to_outside_ach50 16.92325 Total infiltration to the dwelling unit is 16.92325 ACH50 -in.air_leakage_to_outside_ach50 16.9282 Total infiltration to the dwelling unit is 16.9282 ACH50 -in.air_leakage_to_outside_ach50 16.9485 Total infiltration to the dwelling unit is 16.9485 ACH50 -in.air_leakage_to_outside_ach50 16.99775 Total infiltration to the dwelling unit is 16.99775 ACH50 -in.air_leakage_to_outside_ach50 17.0072 Total infiltration to the dwelling unit is 17.0072 ACH50 -in.air_leakage_to_outside_ach50 17.04475 Total infiltration to the dwelling unit is 17.04475 ACH50 -in.air_leakage_to_outside_ach50 17.0596 Total infiltration to the dwelling unit is 17.0596 ACH50 -in.air_leakage_to_outside_ach50 17.08 Total infiltration to the dwelling unit is 17.08 ACH50 -in.air_leakage_to_outside_ach50 17.082 Total infiltration to the dwelling unit is 17.082 ACH50 -in.air_leakage_to_outside_ach50 17.1066 Total infiltration to the dwelling unit is 17.1066 ACH50 -in.air_leakage_to_outside_ach50 17.13275 Total infiltration to the dwelling unit is 17.1327499999999 ACH50 -in.air_leakage_to_outside_ach50 17.1468 Total infiltration to the dwelling unit is 17.1468 ACH50 -in.air_leakage_to_outside_ach50 17.1876 Total infiltration to the dwelling unit is 17.1876 ACH50 -in.air_leakage_to_outside_ach50 17.2311 Total infiltration to the dwelling unit is 17.2311 ACH50 -in.air_leakage_to_outside_ach50 17.246 Total infiltration to the dwelling unit is 17.246 ACH50 -in.air_leakage_to_outside_ach50 17.25375 Total infiltration to the dwelling unit is 17.25375 ACH50 -in.air_leakage_to_outside_ach50 17.254 Total infiltration to the dwelling unit is 17.254 ACH50 -in.air_leakage_to_outside_ach50 17.2959 Total infiltration to the dwelling unit is 17.2959 ACH50 -in.air_leakage_to_outside_ach50 17.30125 Total infiltration to the dwelling unit is 17.30125 ACH50 -in.air_leakage_to_outside_ach50 17.3205 Total infiltration to the dwelling unit is 17.3205 ACH50 -in.air_leakage_to_outside_ach50 17.3366 Total infiltration to the dwelling unit is 17.3366 ACH50 -in.air_leakage_to_outside_ach50 17.3553 Total infiltration to the dwelling unit is 17.3553 ACH50 -in.air_leakage_to_outside_ach50 17.3892 Total infiltration to the dwelling unit is 17.3892 ACH50 -in.air_leakage_to_outside_ach50 17.3967 Total infiltration to the dwelling unit is 17.3967 ACH50 -in.air_leakage_to_outside_ach50 17.4232 Total infiltration to the dwelling unit is 17.4232 ACH50 -in.air_leakage_to_outside_ach50 17.4262 Total infiltration to the dwelling unit is 17.4262 ACH50 -in.air_leakage_to_outside_ach50 17.4336 Total infiltration to the dwelling unit is 17.4336 ACH50 -in.air_leakage_to_outside_ach50 17.50975 Total infiltration to the dwelling unit is 17.50975 ACH50 -in.air_leakage_to_outside_ach50 17.534 Total infiltration to the dwelling unit is 17.534 ACH50 -in.air_leakage_to_outside_ach50 17.548 Total infiltration to the dwelling unit is 17.548 ACH50 -in.air_leakage_to_outside_ach50 17.5502 Total infiltration to the dwelling unit is 17.5502 ACH50 -in.air_leakage_to_outside_ach50 17.5821 Total infiltration to the dwelling unit is 17.5821 ACH50 -in.air_leakage_to_outside_ach50 17.663 Total infiltration to the dwelling unit is 17.663 ACH50 -in.air_leakage_to_outside_ach50 17.6784 Total infiltration to the dwelling unit is 17.6784 ACH50 -in.air_leakage_to_outside_ach50 17.70525 Total infiltration to the dwelling unit is 17.70525 ACH50 -in.air_leakage_to_outside_ach50 17.7088 Total infiltration to the dwelling unit is 17.7088 ACH50 -in.air_leakage_to_outside_ach50 17.713 Total infiltration to the dwelling unit is 17.713 ACH50 -in.air_leakage_to_outside_ach50 17.7232 Total infiltration to the dwelling unit is 17.7232 ACH50 -in.air_leakage_to_outside_ach50 17.76125 Total infiltration to the dwelling unit is 17.76125 ACH50 -in.air_leakage_to_outside_ach50 17.766 Total infiltration to the dwelling unit is 17.766 ACH50 -in.air_leakage_to_outside_ach50 17.8716 Total infiltration to the dwelling unit is 17.8716 ACH50 -in.air_leakage_to_outside_ach50 17.9079 Total infiltration to the dwelling unit is 17.9078999999999 ACH50 -in.air_leakage_to_outside_ach50 17.9134 Total infiltration to the dwelling unit is 17.9134 ACH50 -in.air_leakage_to_outside_ach50 17.9208 Total infiltration to the dwelling unit is 17.9208 ACH50 -in.air_leakage_to_outside_ach50 17.924 Total infiltration to the dwelling unit is 17.924 ACH50 -in.air_leakage_to_outside_ach50 18.0408 Total infiltration to the dwelling unit is 18.0408 ACH50 -in.air_leakage_to_outside_ach50 18.1084 Total infiltration to the dwelling unit is 18.1084 ACH50 -in.air_leakage_to_outside_ach50 18.1227 Total infiltration to the dwelling unit is 18.1227 ACH50 -in.air_leakage_to_outside_ach50 18.1344 Total infiltration to the dwelling unit is 18.1344 ACH50 -in.air_leakage_to_outside_ach50 18.1388 Total infiltration to the dwelling unit is 18.1388 ACH50 -in.air_leakage_to_outside_ach50 18.1402 Total infiltration to the dwelling unit is 18.1402 ACH50 -in.air_leakage_to_outside_ach50 18.1795 Total infiltration to the dwelling unit is 18.1795 ACH50 -in.air_leakage_to_outside_ach50 18.20075 Total infiltration to the dwelling unit is 18.20075 ACH50 -in.air_leakage_to_outside_ach50 18.201 Total infiltration to the dwelling unit is 18.201 ACH50 -in.air_leakage_to_outside_ach50 18.21625 Total infiltration to the dwelling unit is 18.21625 ACH50 -in.air_leakage_to_outside_ach50 18.2878 Total infiltration to the dwelling unit is 18.2878 ACH50 -in.air_leakage_to_outside_ach50 18.292 Total infiltration to the dwelling unit is 18.2919999999999 ACH50 -in.air_leakage_to_outside_ach50 18.2986 Total infiltration to the dwelling unit is 18.2986 ACH50 -in.air_leakage_to_outside_ach50 18.3465 Total infiltration to the dwelling unit is 18.3465 ACH50 -in.air_leakage_to_outside_ach50 18.3472 Total infiltration to the dwelling unit is 18.3472 ACH50 -in.air_leakage_to_outside_ach50 18.4252 Total infiltration to the dwelling unit is 18.4252 ACH50 -in.air_leakage_to_outside_ach50 18.4284 Total infiltration to the dwelling unit is 18.4284 ACH50 -in.air_leakage_to_outside_ach50 18.4305 Total infiltration to the dwelling unit is 18.4305 ACH50 -in.air_leakage_to_outside_ach50 18.478 Total infiltration to the dwelling unit is 18.478 ACH50 -in.air_leakage_to_outside_ach50 18.52475 Total infiltration to the dwelling unit is 18.52475 ACH50 -in.air_leakage_to_outside_ach50 18.5298 Total infiltration to the dwelling unit is 18.5298 ACH50 -in.air_leakage_to_outside_ach50 18.54 Total infiltration to the dwelling unit is 18.54 ACH50 -in.air_leakage_to_outside_ach50 18.558 Total infiltration to the dwelling unit is 18.558 ACH50 -in.air_leakage_to_outside_ach50 18.55825 Total infiltration to the dwelling unit is 18.55825 ACH50 -in.air_leakage_to_outside_ach50 18.56225 Total infiltration to the dwelling unit is 18.56225 ACH50 -in.air_leakage_to_outside_ach50 18.56525 Total infiltration to the dwelling unit is 18.56525 ACH50 -in.air_leakage_to_outside_ach50 18.6675 Total infiltration to the dwelling unit is 18.6675 ACH50 -in.air_leakage_to_outside_ach50 18.6747 Total infiltration to the dwelling unit is 18.6747 ACH50 -in.air_leakage_to_outside_ach50 18.7185 Total infiltration to the dwelling unit is 18.7185 ACH50 -in.air_leakage_to_outside_ach50 18.7986 Total infiltration to the dwelling unit is 18.7986 ACH50 -in.air_leakage_to_outside_ach50 18.81625 Total infiltration to the dwelling unit is 18.81625 ACH50 -in.air_leakage_to_outside_ach50 18.8895 Total infiltration to the dwelling unit is 18.8895 ACH50 -in.air_leakage_to_outside_ach50 18.9575 Total infiltration to the dwelling unit is 18.9575 ACH50 -in.air_leakage_to_outside_ach50 18.97525 Total infiltration to the dwelling unit is 18.97525 ACH50 -in.air_leakage_to_outside_ach50 18.97575 Total infiltration to the dwelling unit is 18.9757499999999 ACH50 -in.air_leakage_to_outside_ach50 18.9951 Total infiltration to the dwelling unit is 18.9951 ACH50 -in.air_leakage_to_outside_ach50 18.9995 Total infiltration to the dwelling unit is 18.9995 ACH50 -in.air_leakage_to_outside_ach50 19.04675 Total infiltration to the dwelling unit is 19.04675 ACH50 -in.air_leakage_to_outside_ach50 19.0585 Total infiltration to the dwelling unit is 19.0585 ACH50 -in.air_leakage_to_outside_ach50 19.1352 Total infiltration to the dwelling unit is 19.1352 ACH50 -in.air_leakage_to_outside_ach50 19.1575 Total infiltration to the dwelling unit is 19.1575 ACH50 -in.air_leakage_to_outside_ach50 19.16575 Total infiltration to the dwelling unit is 19.16575 ACH50 -in.air_leakage_to_outside_ach50 19.196 Total infiltration to the dwelling unit is 19.1959999999999 ACH50 -in.air_leakage_to_outside_ach50 19.21025 Total infiltration to the dwelling unit is 19.21025 ACH50 -in.air_leakage_to_outside_ach50 19.2792 Total infiltration to the dwelling unit is 19.2792 ACH50 -in.air_leakage_to_outside_ach50 19.308 Total infiltration to the dwelling unit is 19.308 ACH50 -in.air_leakage_to_outside_ach50 19.3401 Total infiltration to the dwelling unit is 19.3401 ACH50 -in.air_leakage_to_outside_ach50 19.3593 Total infiltration to the dwelling unit is 19.3593 ACH50 -in.air_leakage_to_outside_ach50 19.4463 Total infiltration to the dwelling unit is 19.4462999999999 ACH50 -in.air_leakage_to_outside_ach50 19.4865 Total infiltration to the dwelling unit is 19.4865 ACH50 -in.air_leakage_to_outside_ach50 19.5305 Total infiltration to the dwelling unit is 19.5305 ACH50 -in.air_leakage_to_outside_ach50 19.54175 Total infiltration to the dwelling unit is 19.54175 ACH50 -in.air_leakage_to_outside_ach50 19.6615 Total infiltration to the dwelling unit is 19.6615 ACH50 -in.air_leakage_to_outside_ach50 19.6722 Total infiltration to the dwelling unit is 19.6722 ACH50 -in.air_leakage_to_outside_ach50 19.679 Total infiltration to the dwelling unit is 19.679 ACH50 -in.air_leakage_to_outside_ach50 19.67975 Total infiltration to the dwelling unit is 19.67975 ACH50 -in.air_leakage_to_outside_ach50 19.7065 Total infiltration to the dwelling unit is 19.7065 ACH50 -in.air_leakage_to_outside_ach50 19.73125 Total infiltration to the dwelling unit is 19.73125 ACH50 -in.air_leakage_to_outside_ach50 19.7455 Total infiltration to the dwelling unit is 19.7455 ACH50 -in.air_leakage_to_outside_ach50 19.74875 Total infiltration to the dwelling unit is 19.74875 ACH50 -in.air_leakage_to_outside_ach50 19.764 Total infiltration to the dwelling unit is 19.764 ACH50 -in.air_leakage_to_outside_ach50 19.7835 Total infiltration to the dwelling unit is 19.7835 ACH50 -in.air_leakage_to_outside_ach50 19.86125 Total infiltration to the dwelling unit is 19.86125 ACH50 -in.air_leakage_to_outside_ach50 19.8891 Total infiltration to the dwelling unit is 19.8891 ACH50 -in.air_leakage_to_outside_ach50 19.8996 Total infiltration to the dwelling unit is 19.8996 ACH50 -in.air_leakage_to_outside_ach50 19.96175 Total infiltration to the dwelling unit is 19.96175 ACH50 -in.air_leakage_to_outside_ach50 19.9665 Total infiltration to the dwelling unit is 19.9665 ACH50 -in.air_leakage_to_outside_ach50 19.967 Total infiltration to the dwelling unit is 19.967 ACH50 -in.air_leakage_to_outside_ach50 19.99025 Total infiltration to the dwelling unit is 19.99025 ACH50 -in.air_leakage_to_outside_ach50 20 Total infiltration to the dwelling unit is 20 ACH50 -in.air_leakage_to_outside_ach50 20.0395 Total infiltration to the dwelling unit is 20.0395 ACH50 -in.air_leakage_to_outside_ach50 20.0442 Total infiltration to the dwelling unit is 20.0442 ACH50 -in.air_leakage_to_outside_ach50 20.056 Total infiltration to the dwelling unit is 20.0559999999999 ACH50 -in.air_leakage_to_outside_ach50 20.1231 Total infiltration to the dwelling unit is 20.1231 ACH50 -in.air_leakage_to_outside_ach50 20.14425 Total infiltration to the dwelling unit is 20.14425 ACH50 -in.air_leakage_to_outside_ach50 20.212 Total infiltration to the dwelling unit is 20.212 ACH50 -in.air_leakage_to_outside_ach50 20.2716 Total infiltration to the dwelling unit is 20.2716 ACH50 -in.air_leakage_to_outside_ach50 20.278 Total infiltration to the dwelling unit is 20.278 ACH50 -in.air_leakage_to_outside_ach50 20.30375 Total infiltration to the dwelling unit is 20.30375 ACH50 -in.air_leakage_to_outside_ach50 20.3079 Total infiltration to the dwelling unit is 20.3079 ACH50 -in.air_leakage_to_outside_ach50 20.347 Total infiltration to the dwelling unit is 20.347 ACH50 -in.air_leakage_to_outside_ach50 20.35025 Total infiltration to the dwelling unit is 20.35025 ACH50 -in.air_leakage_to_outside_ach50 20.3505 Total infiltration to the dwelling unit is 20.3505 ACH50 -in.air_leakage_to_outside_ach50 20.37075 Total infiltration to the dwelling unit is 20.37075 ACH50 -in.air_leakage_to_outside_ach50 20.3973 Total infiltration to the dwelling unit is 20.3973 ACH50 -in.air_leakage_to_outside_ach50 20.4537 Total infiltration to the dwelling unit is 20.4537 ACH50 -in.air_leakage_to_outside_ach50 20.45525 Total infiltration to the dwelling unit is 20.45525 ACH50 -in.air_leakage_to_outside_ach50 20.5593 Total infiltration to the dwelling unit is 20.5593 ACH50 -in.air_leakage_to_outside_ach50 20.5665 Total infiltration to the dwelling unit is 20.5664999999999 ACH50 -in.air_leakage_to_outside_ach50 20.594 Total infiltration to the dwelling unit is 20.594 ACH50 -in.air_leakage_to_outside_ach50 20.6025 Total infiltration to the dwelling unit is 20.6025 ACH50 -in.air_leakage_to_outside_ach50 20.6636 Total infiltration to the dwelling unit is 20.6636 ACH50 -in.air_leakage_to_outside_ach50 20.69675 Total infiltration to the dwelling unit is 20.69675 ACH50 -in.air_leakage_to_outside_ach50 20.7045 Total infiltration to the dwelling unit is 20.7045 ACH50 -in.air_leakage_to_outside_ach50 20.7195 Total infiltration to the dwelling unit is 20.7195 ACH50 -in.air_leakage_to_outside_ach50 20.7224 Total infiltration to the dwelling unit is 20.7224 ACH50 -in.air_leakage_to_outside_ach50 20.74675 Total infiltration to the dwelling unit is 20.74675 ACH50 -in.air_leakage_to_outside_ach50 20.7615 Total infiltration to the dwelling unit is 20.7615 ACH50 -in.air_leakage_to_outside_ach50 20.7846 Total infiltration to the dwelling unit is 20.7846 ACH50 -in.air_leakage_to_outside_ach50 20.787 Total infiltration to the dwelling unit is 20.787 ACH50 -in.air_leakage_to_outside_ach50 20.7984 Total infiltration to the dwelling unit is 20.7984 ACH50 -in.air_leakage_to_outside_ach50 20.85175 Total infiltration to the dwelling unit is 20.85175 ACH50 -in.air_leakage_to_outside_ach50 20.86125 Total infiltration to the dwelling unit is 20.86125 ACH50 -in.air_leakage_to_outside_ach50 20.9465 Total infiltration to the dwelling unit is 20.9465 ACH50 -in.air_leakage_to_outside_ach50 20.9496 Total infiltration to the dwelling unit is 20.9496 ACH50 -in.air_leakage_to_outside_ach50 20.96175 Total infiltration to the dwelling unit is 20.96175 ACH50 -in.air_leakage_to_outside_ach50 20.99875 Total infiltration to the dwelling unit is 20.99875 ACH50 -in.air_leakage_to_outside_ach50 21.0117 Total infiltration to the dwelling unit is 21.0116999999999 ACH50 -in.air_leakage_to_outside_ach50 21.0408 Total infiltration to the dwelling unit is 21.0408 ACH50 -in.air_leakage_to_outside_ach50 21.0576 Total infiltration to the dwelling unit is 21.0576 ACH50 -in.air_leakage_to_outside_ach50 21.0665 Total infiltration to the dwelling unit is 21.0664999999999 ACH50 -in.air_leakage_to_outside_ach50 21.07125 Total infiltration to the dwelling unit is 21.07125 ACH50 -in.air_leakage_to_outside_ach50 21.127 Total infiltration to the dwelling unit is 21.127 ACH50 -in.air_leakage_to_outside_ach50 21.1505 Total infiltration to the dwelling unit is 21.1505 ACH50 -in.air_leakage_to_outside_ach50 21.16025 Total infiltration to the dwelling unit is 21.16025 ACH50 -in.air_leakage_to_outside_ach50 21.2463 Total infiltration to the dwelling unit is 21.2463 ACH50 -in.air_leakage_to_outside_ach50 21.274 Total infiltration to the dwelling unit is 21.274 ACH50 -in.air_leakage_to_outside_ach50 21.3304 Total infiltration to the dwelling unit is 21.3303999999999 ACH50 -in.air_leakage_to_outside_ach50 21.35 Total infiltration to the dwelling unit is 21.3499999999999 ACH50 -in.air_leakage_to_outside_ach50 21.3525 Total infiltration to the dwelling unit is 21.3525 ACH50 -in.air_leakage_to_outside_ach50 21.38325 Total infiltration to the dwelling unit is 21.38325 ACH50 -in.air_leakage_to_outside_ach50 21.4732 Total infiltration to the dwelling unit is 21.4732 ACH50 -in.air_leakage_to_outside_ach50 21.4856 Total infiltration to the dwelling unit is 21.4855999999999 ACH50 -in.air_leakage_to_outside_ach50 21.5575 Total infiltration to the dwelling unit is 21.5574999999999 ACH50 -in.air_leakage_to_outside_ach50 21.6336 Total infiltration to the dwelling unit is 21.6336 ACH50 -in.air_leakage_to_outside_ach50 21.67075 Total infiltration to the dwelling unit is 21.6707499999999 ACH50 -in.air_leakage_to_outside_ach50 21.75 Total infiltration to the dwelling unit is 21.75 ACH50 -in.air_leakage_to_outside_ach50 21.779 Total infiltration to the dwelling unit is 21.779 ACH50 -in.air_leakage_to_outside_ach50 21.78275 Total infiltration to the dwelling unit is 21.78275 ACH50 -in.air_leakage_to_outside_ach50 21.8409 Total infiltration to the dwelling unit is 21.8408999999999 ACH50 -in.air_leakage_to_outside_ach50 21.8595 Total infiltration to the dwelling unit is 21.8595 ACH50 -in.air_leakage_to_outside_ach50 21.9024 Total infiltration to the dwelling unit is 21.9024 ACH50 -in.air_leakage_to_outside_ach50 22.0668 Total infiltration to the dwelling unit is 22.0668 ACH50 -in.air_leakage_to_outside_ach50 22.07875 Total infiltration to the dwelling unit is 22.07875 ACH50 -in.air_leakage_to_outside_ach50 22.098 Total infiltration to the dwelling unit is 22.098 ACH50 -in.air_leakage_to_outside_ach50 22.136 Total infiltration to the dwelling unit is 22.136 ACH50 -in.air_leakage_to_outside_ach50 22.14125 Total infiltration to the dwelling unit is 22.14125 ACH50 -in.air_leakage_to_outside_ach50 22.1757 Total infiltration to the dwelling unit is 22.1757 ACH50 -in.air_leakage_to_outside_ach50 22.2148 Total infiltration to the dwelling unit is 22.2148 ACH50 -in.air_leakage_to_outside_ach50 22.2297 Total infiltration to the dwelling unit is 22.2297 ACH50 -in.air_leakage_to_outside_ach50 22.2699 Total infiltration to the dwelling unit is 22.2699 ACH50 -in.air_leakage_to_outside_ach50 22.2747 Total infiltration to the dwelling unit is 22.2747 ACH50 -in.air_leakage_to_outside_ach50 22.2783 Total infiltration to the dwelling unit is 22.2783 ACH50 -in.air_leakage_to_outside_ach50 22.3395 Total infiltration to the dwelling unit is 22.3395 ACH50 -in.air_leakage_to_outside_ach50 22.3568 Total infiltration to the dwelling unit is 22.3568 ACH50 -in.air_leakage_to_outside_ach50 22.3652 Total infiltration to the dwelling unit is 22.3652 ACH50 -in.air_leakage_to_outside_ach50 22.39175 Total infiltration to the dwelling unit is 22.39175 ACH50 -in.air_leakage_to_outside_ach50 22.405 Total infiltration to the dwelling unit is 22.405 ACH50 -in.air_leakage_to_outside_ach50 22.4622 Total infiltration to the dwelling unit is 22.4622 ACH50 -in.air_leakage_to_outside_ach50 22.5336 Total infiltration to the dwelling unit is 22.5336 ACH50 -in.air_leakage_to_outside_ach50 22.5795 Total infiltration to the dwelling unit is 22.5795 ACH50 -in.air_leakage_to_outside_ach50 22.598 Total infiltration to the dwelling unit is 22.598 ACH50 -in.air_leakage_to_outside_ach50 22.6355 Total infiltration to the dwelling unit is 22.6355 ACH50 -in.air_leakage_to_outside_ach50 22.6735 Total infiltration to the dwelling unit is 22.6735 ACH50 -in.air_leakage_to_outside_ach50 22.67525 Total infiltration to the dwelling unit is 22.67525 ACH50 -in.air_leakage_to_outside_ach50 22.7229 Total infiltration to the dwelling unit is 22.7229 ACH50 -in.air_leakage_to_outside_ach50 22.749 Total infiltration to the dwelling unit is 22.749 ACH50 -in.air_leakage_to_outside_ach50 22.7703 Total infiltration to the dwelling unit is 22.7703 ACH50 -in.air_leakage_to_outside_ach50 22.7994 Total infiltration to the dwelling unit is 22.7994 ACH50 -in.air_leakage_to_outside_ach50 22.8561 Total infiltration to the dwelling unit is 22.8561 ACH50 -in.air_leakage_to_outside_ach50 22.85975 Total infiltration to the dwelling unit is 22.85975 ACH50 -in.air_leakage_to_outside_ach50 22.8624 Total infiltration to the dwelling unit is 22.8623999999999 ACH50 -in.air_leakage_to_outside_ach50 22.865 Total infiltration to the dwelling unit is 22.865 ACH50 -in.air_leakage_to_outside_ach50 22.8702 Total infiltration to the dwelling unit is 22.8702 ACH50 -in.air_leakage_to_outside_ach50 22.87325 Total infiltration to the dwelling unit is 22.87325 ACH50 -in.air_leakage_to_outside_ach50 22.9168 Total infiltration to the dwelling unit is 22.9168 ACH50 -in.air_leakage_to_outside_ach50 22.934 Total infiltration to the dwelling unit is 22.9339999999999 ACH50 -in.air_leakage_to_outside_ach50 22.9748 Total infiltration to the dwelling unit is 22.9748 ACH50 -in.air_leakage_to_outside_ach50 22.989 Total infiltration to the dwelling unit is 22.989 ACH50 -in.air_leakage_to_outside_ach50 23.0315 Total infiltration to the dwelling unit is 23.0314999999999 ACH50 -in.air_leakage_to_outside_ach50 23.0352 Total infiltration to the dwelling unit is 23.0352 ACH50 -in.air_leakage_to_outside_ach50 23.0355 Total infiltration to the dwelling unit is 23.0355 ACH50 -in.air_leakage_to_outside_ach50 23.0523 Total infiltration to the dwelling unit is 23.0523 ACH50 -in.air_leakage_to_outside_ach50 23.0571 Total infiltration to the dwelling unit is 23.0571 ACH50 -in.air_leakage_to_outside_ach50 23.0612 Total infiltration to the dwelling unit is 23.0612 ACH50 -in.air_leakage_to_outside_ach50 23.1147 Total infiltration to the dwelling unit is 23.1147 ACH50 -in.air_leakage_to_outside_ach50 23.1404 Total infiltration to the dwelling unit is 23.1404 ACH50 -in.air_leakage_to_outside_ach50 23.16225 Total infiltration to the dwelling unit is 23.16225 ACH50 -in.air_leakage_to_outside_ach50 23.175 Total infiltration to the dwelling unit is 23.175 ACH50 -in.air_leakage_to_outside_ach50 23.1856 Total infiltration to the dwelling unit is 23.1856 ACH50 -in.air_leakage_to_outside_ach50 23.1956 Total infiltration to the dwelling unit is 23.1956 ACH50 -in.air_leakage_to_outside_ach50 23.2448 Total infiltration to the dwelling unit is 23.2447999999999 ACH50 -in.air_leakage_to_outside_ach50 23.3838 Total infiltration to the dwelling unit is 23.3838 ACH50 -in.air_leakage_to_outside_ach50 23.4366 Total infiltration to the dwelling unit is 23.4366 ACH50 -in.air_leakage_to_outside_ach50 23.4428 Total infiltration to the dwelling unit is 23.4428 ACH50 -in.air_leakage_to_outside_ach50 23.4501 Total infiltration to the dwelling unit is 23.4501 ACH50 -in.air_leakage_to_outside_ach50 23.5938 Total infiltration to the dwelling unit is 23.5938 ACH50 -in.air_leakage_to_outside_ach50 23.6148 Total infiltration to the dwelling unit is 23.6148 ACH50 -in.air_leakage_to_outside_ach50 23.6157 Total infiltration to the dwelling unit is 23.6156999999999 ACH50 -in.air_leakage_to_outside_ach50 23.6478 Total infiltration to the dwelling unit is 23.6478 ACH50 -in.air_leakage_to_outside_ach50 23.688 Total infiltration to the dwelling unit is 23.688 ACH50 -in.air_leakage_to_outside_ach50 23.6946 Total infiltration to the dwelling unit is 23.6945999999999 ACH50 -in.air_leakage_to_outside_ach50 23.7402 Total infiltration to the dwelling unit is 23.7402 ACH50 -in.air_leakage_to_outside_ach50 23.776 Total infiltration to the dwelling unit is 23.776 ACH50 -in.air_leakage_to_outside_ach50 23.8772 Total infiltration to the dwelling unit is 23.8772 ACH50 -in.air_leakage_to_outside_ach50 23.883 Total infiltration to the dwelling unit is 23.883 ACH50 -in.air_leakage_to_outside_ach50 23.8944 Total infiltration to the dwelling unit is 23.8944 ACH50 -in.air_leakage_to_outside_ach50 23.9541 Total infiltration to the dwelling unit is 23.9541 ACH50 -in.air_leakage_to_outside_ach50 23.9604 Total infiltration to the dwelling unit is 23.9604 ACH50 -in.air_leakage_to_outside_ach50 23.9631 Total infiltration to the dwelling unit is 23.9631 ACH50 -in.air_leakage_to_outside_ach50 23.9883 Total infiltration to the dwelling unit is 23.9883 ACH50 -in.air_leakage_to_outside_ach50 24.0672 Total infiltration to the dwelling unit is 24.0672 ACH50 -in.air_leakage_to_outside_ach50 24.099 Total infiltration to the dwelling unit is 24.099 ACH50 -in.air_leakage_to_outside_ach50 24.1636 Total infiltration to the dwelling unit is 24.1636 ACH50 -in.air_leakage_to_outside_ach50 24.1792 Total infiltration to the dwelling unit is 24.1792 ACH50 -in.air_leakage_to_outside_ach50 24.268 Total infiltration to the dwelling unit is 24.268 ACH50 -in.air_leakage_to_outside_ach50 24.274 Total infiltration to the dwelling unit is 24.274 ACH50 -in.air_leakage_to_outside_ach50 24.3336 Total infiltration to the dwelling unit is 24.3335999999999 ACH50 -in.air_leakage_to_outside_ach50 24.3645 Total infiltration to the dwelling unit is 24.3645 ACH50 -in.air_leakage_to_outside_ach50 24.4164 Total infiltration to the dwelling unit is 24.4164 ACH50 -in.air_leakage_to_outside_ach50 24.4203 Total infiltration to the dwelling unit is 24.4203 ACH50 -in.air_leakage_to_outside_ach50 24.4449 Total infiltration to the dwelling unit is 24.4449 ACH50 -in.air_leakage_to_outside_ach50 24.5463 Total infiltration to the dwelling unit is 24.5463 ACH50 -in.air_leakage_to_outside_ach50 24.574 Total infiltration to the dwelling unit is 24.5739999999999 ACH50 -in.air_leakage_to_outside_ach50 24.6798 Total infiltration to the dwelling unit is 24.6798 ACH50 -in.air_leakage_to_outside_ach50 24.723 Total infiltration to the dwelling unit is 24.723 ACH50 -in.air_leakage_to_outside_ach50 24.8361 Total infiltration to the dwelling unit is 24.8361 ACH50 -in.air_leakage_to_outside_ach50 24.8634 Total infiltration to the dwelling unit is 24.8634 ACH50 -in.air_leakage_to_outside_ach50 24.8745 Total infiltration to the dwelling unit is 24.8744999999999 ACH50 -in.air_leakage_to_outside_ach50 24.89 Total infiltration to the dwelling unit is 24.89 ACH50 -in.air_leakage_to_outside_ach50 24.8961 Total infiltration to the dwelling unit is 24.8961 ACH50 -in.air_leakage_to_outside_ach50 24.8996 Total infiltration to the dwelling unit is 24.8996 ACH50 -in.air_leakage_to_outside_ach50 24.9444 Total infiltration to the dwelling unit is 24.9444 ACH50 -in.air_leakage_to_outside_ach50 25 Total infiltration to the dwelling unit is 25 ACH50 -in.air_leakage_to_outside_ach50 25.0335 Total infiltration to the dwelling unit is 25.0335 ACH50 -in.air_leakage_to_outside_ach50 25.0648 Total infiltration to the dwelling unit is 25.0647999999999 ACH50 -in.air_leakage_to_outside_ach50 25.1358 Total infiltration to the dwelling unit is 25.1358 ACH50 -in.air_leakage_to_outside_ach50 25.1541 Total infiltration to the dwelling unit is 25.1541 ACH50 -in.air_leakage_to_outside_ach50 25.186 Total infiltration to the dwelling unit is 25.186 ACH50 -in.air_leakage_to_outside_ach50 25.1985 Total infiltration to the dwelling unit is 25.1985 ACH50 -in.air_leakage_to_outside_ach50 25.265 Total infiltration to the dwelling unit is 25.2649999999999 ACH50 -in.air_leakage_to_outside_ach50 25.2798 Total infiltration to the dwelling unit is 25.2797999999999 ACH50 -in.air_leakage_to_outside_ach50 25.2855 Total infiltration to the dwelling unit is 25.2855 ACH50 -in.air_leakage_to_outside_ach50 25.3268 Total infiltration to the dwelling unit is 25.3268 ACH50 -in.air_leakage_to_outside_ach50 25.3524 Total infiltration to the dwelling unit is 25.3524 ACH50 -in.air_leakage_to_outside_ach50 25.3806 Total infiltration to the dwelling unit is 25.3806 ACH50 -in.air_leakage_to_outside_ach50 25.3923 Total infiltration to the dwelling unit is 25.3923 ACH50 -in.air_leakage_to_outside_ach50 25.5288 Total infiltration to the dwelling unit is 25.5288 ACH50 -in.air_leakage_to_outside_ach50 25.5897 Total infiltration to the dwelling unit is 25.5897 ACH50 -in.air_leakage_to_outside_ach50 25.62 Total infiltration to the dwelling unit is 25.62 ACH50 -in.air_leakage_to_outside_ach50 25.623 Total infiltration to the dwelling unit is 25.6229999999999 ACH50 -in.air_leakage_to_outside_ach50 25.6599 Total infiltration to the dwelling unit is 25.6599 ACH50 -in.air_leakage_to_outside_ach50 25.7868 Total infiltration to the dwelling unit is 25.7868 ACH50 -in.air_leakage_to_outside_ach50 25.8124 Total infiltration to the dwelling unit is 25.8124 ACH50 -in.air_leakage_to_outside_ach50 25.8295 Total infiltration to the dwelling unit is 25.8295 ACH50 -in.air_leakage_to_outside_ach50 25.903 Total infiltration to the dwelling unit is 25.903 ACH50 -in.air_leakage_to_outside_ach50 25.9284 Total infiltration to the dwelling unit is 25.9283999999999 ACH50 -in.air_leakage_to_outside_ach50 25.998 Total infiltration to the dwelling unit is 25.9979999999999 ACH50 -in.air_leakage_to_outside_ach50 26.0049 Total infiltration to the dwelling unit is 26.0049 ACH50 -in.air_leakage_to_outside_ach50 26.1348 Total infiltration to the dwelling unit is 26.1348 ACH50 -in.air_leakage_to_outside_ach50 26.1393 Total infiltration to the dwelling unit is 26.1393 ACH50 -in.air_leakage_to_outside_ach50 26.187 Total infiltration to the dwelling unit is 26.1869999999999 ACH50 -in.air_leakage_to_outside_ach50 26.2296 Total infiltration to the dwelling unit is 26.2295999999999 ACH50 -in.air_leakage_to_outside_ach50 26.4945 Total infiltration to the dwelling unit is 26.4945 ACH50 -in.air_leakage_to_outside_ach50 26.5176 Total infiltration to the dwelling unit is 26.5176 ACH50 -in.air_leakage_to_outside_ach50 26.5188 Total infiltration to the dwelling unit is 26.5188 ACH50 -in.air_leakage_to_outside_ach50 26.622 Total infiltration to the dwelling unit is 26.622 ACH50 -in.air_leakage_to_outside_ach50 26.7256 Total infiltration to the dwelling unit is 26.7256 ACH50 -in.air_leakage_to_outside_ach50 26.8074 Total infiltration to the dwelling unit is 26.8074 ACH50 -in.air_leakage_to_outside_ach50 26.8308 Total infiltration to the dwelling unit is 26.8308 ACH50 -in.air_leakage_to_outside_ach50 26.8415 Total infiltration to the dwelling unit is 26.8415 ACH50 -in.air_leakage_to_outside_ach50 26.857 Total infiltration to the dwelling unit is 26.857 ACH50 -in.air_leakage_to_outside_ach50 26.8701 Total infiltration to the dwelling unit is 26.8701 ACH50 -in.air_leakage_to_outside_ach50 27.0288 Total infiltration to the dwelling unit is 27.0288 ACH50 -in.air_leakage_to_outside_ach50 27.042 Total infiltration to the dwelling unit is 27.0419999999999 ACH50 -in.air_leakage_to_outside_ach50 27.0772 Total infiltration to the dwelling unit is 27.0772 ACH50 -in.air_leakage_to_outside_ach50 27.1875 Total infiltration to the dwelling unit is 27.1874999999999 ACH50 -in.air_leakage_to_outside_ach50 27.1964 Total infiltration to the dwelling unit is 27.1964 ACH50 -in.air_leakage_to_outside_ach50 27.2082 Total infiltration to the dwelling unit is 27.2081999999999 ACH50 -in.air_leakage_to_outside_ach50 27.2103 Total infiltration to the dwelling unit is 27.2103 ACH50 -in.air_leakage_to_outside_ach50 27.2716 Total infiltration to the dwelling unit is 27.2716 ACH50 -in.air_leakage_to_outside_ach50 27.378 Total infiltration to the dwelling unit is 27.378 ACH50 -in.air_leakage_to_outside_ach50 27.4124 Total infiltration to the dwelling unit is 27.4123999999999 ACH50 -in.air_leakage_to_outside_ach50 27.4317 Total infiltration to the dwelling unit is 27.4317 ACH50 -in.air_leakage_to_outside_ach50 27.4479 Total infiltration to the dwelling unit is 27.4479 ACH50 -in.air_leakage_to_outside_ach50 27.5835 Total infiltration to the dwelling unit is 27.5835 ACH50 -in.air_leakage_to_outside_ach50 27.606 Total infiltration to the dwelling unit is 27.606 ACH50 -in.air_leakage_to_outside_ach50 27.6378 Total infiltration to the dwelling unit is 27.6378 ACH50 -in.air_leakage_to_outside_ach50 27.6426 Total infiltration to the dwelling unit is 27.6426 ACH50 -in.air_leakage_to_outside_ach50 27.682 Total infiltration to the dwelling unit is 27.682 ACH50 -in.air_leakage_to_outside_ach50 27.7128 Total infiltration to the dwelling unit is 27.7128 ACH50 -in.air_leakage_to_outside_ach50 27.7685 Total infiltration to the dwelling unit is 27.7685 ACH50 -in.air_leakage_to_outside_ach50 27.946 Total infiltration to the dwelling unit is 27.9459999999999 ACH50 -in.air_leakage_to_outside_ach50 27.9565 Total infiltration to the dwelling unit is 27.9565 ACH50 -in.air_leakage_to_outside_ach50 28.0156 Total infiltration to the dwelling unit is 28.0156 ACH50 -in.air_leakage_to_outside_ach50 28.0544 Total infiltration to the dwelling unit is 28.0544 ACH50 -in.air_leakage_to_outside_ach50 28.0768 Total infiltration to the dwelling unit is 28.0768 ACH50 -in.air_leakage_to_outside_ach50 28.167 Total infiltration to the dwelling unit is 28.1669999999999 ACH50 -in.air_leakage_to_outside_ach50 28.2475 Total infiltration to the dwelling unit is 28.2475 ACH50 -in.air_leakage_to_outside_ach50 28.3284 Total infiltration to the dwelling unit is 28.3284 ACH50 -in.air_leakage_to_outside_ach50 28.578 Total infiltration to the dwelling unit is 28.578 ACH50 -in.air_leakage_to_outside_ach50 28.646 Total infiltration to the dwelling unit is 28.646 ACH50 -in.air_leakage_to_outside_ach50 28.7185 Total infiltration to the dwelling unit is 28.7185 ACH50 -in.air_leakage_to_outside_ach50 28.8265 Total infiltration to the dwelling unit is 28.8265 ACH50 -in.air_leakage_to_outside_ach50 28.982 Total infiltration to the dwelling unit is 28.982 ACH50 -in.air_leakage_to_outside_ach50 29.056 Total infiltration to the dwelling unit is 29.0559999999999 ACH50 -in.air_leakage_to_outside_ach50 29.1212 Total infiltration to the dwelling unit is 29.1211999999999 ACH50 -in.air_leakage_to_outside_ach50 29.146 Total infiltration to the dwelling unit is 29.146 ACH50 -in.air_leakage_to_outside_ach50 29.3035 Total infiltration to the dwelling unit is 29.3035 ACH50 -in.air_leakage_to_outside_ach50 29.445 Total infiltration to the dwelling unit is 29.445 ACH50 -in.air_leakage_to_outside_ach50 29.61 Total infiltration to the dwelling unit is 29.6099999999999 ACH50 -in.air_leakage_to_outside_ach50 29.6396 Total infiltration to the dwelling unit is 29.6396 ACH50 -in.air_leakage_to_outside_ach50 29.6932 Total infiltration to the dwelling unit is 29.6932 ACH50 -in.air_leakage_to_outside_ach50 29.7044 Total infiltration to the dwelling unit is 29.7044 ACH50 -in.air_leakage_to_outside_ach50 29.72 Total infiltration to the dwelling unit is 29.72 ACH50 -in.air_leakage_to_outside_ach50 29.8465 Total infiltration to the dwelling unit is 29.8465 ACH50 -in.air_leakage_to_outside_ach50 29.868 Total infiltration to the dwelling unit is 29.868 ACH50 -in.air_leakage_to_outside_ach50 29.9496 Total infiltration to the dwelling unit is 29.9495999999999 ACH50 -in.air_leakage_to_outside_ach50 30 Total infiltration to the dwelling unit is 30 ACH50 -in.air_leakage_to_outside_ach50 30.106 Total infiltration to the dwelling unit is 30.106 ACH50 -in.air_leakage_to_outside_ach50 30.2045 Total infiltration to the dwelling unit is 30.2045 ACH50 -in.air_leakage_to_outside_ach50 30.224 Total infiltration to the dwelling unit is 30.224 ACH50 -in.air_leakage_to_outside_ach50 30.332 Total infiltration to the dwelling unit is 30.332 ACH50 -in.air_leakage_to_outside_ach50 30.335 Total infiltration to the dwelling unit is 30.335 ACH50 -in.air_leakage_to_outside_ach50 30.3604 Total infiltration to the dwelling unit is 30.3604 ACH50 -in.air_leakage_to_outside_ach50 30.3612 Total infiltration to the dwelling unit is 30.3612 ACH50 -in.air_leakage_to_outside_ach50 30.4748 Total infiltration to the dwelling unit is 30.4748 ACH50 -in.air_leakage_to_outside_ach50 30.4936 Total infiltration to the dwelling unit is 30.4936 ACH50 -in.air_leakage_to_outside_ach50 30.5775 Total infiltration to the dwelling unit is 30.5775 ACH50 -in.air_leakage_to_outside_ach50 30.652 Total infiltration to the dwelling unit is 30.652 ACH50 -in.air_leakage_to_outside_ach50 30.7136 Total infiltration to the dwelling unit is 30.7136 ACH50 -in.air_leakage_to_outside_ach50 30.7364 Total infiltration to the dwelling unit is 30.7364 ACH50 -in.air_leakage_to_outside_ach50 30.7428 Total infiltration to the dwelling unit is 30.7428 ACH50 -in.air_leakage_to_outside_ach50 31.1125 Total infiltration to the dwelling unit is 31.1124999999999 ACH50 -in.air_leakage_to_outside_ach50 31.1245 Total infiltration to the dwelling unit is 31.1244999999999 ACH50 -in.air_leakage_to_outside_ach50 31.1784 Total infiltration to the dwelling unit is 31.1784 ACH50 -in.air_leakage_to_outside_ach50 31.2668 Total infiltration to the dwelling unit is 31.2668 ACH50 -in.air_leakage_to_outside_ach50 31.331 Total infiltration to the dwelling unit is 31.3309999999999 ACH50 -in.air_leakage_to_outside_ach50 31.4584 Total infiltration to the dwelling unit is 31.4584 ACH50 -in.air_leakage_to_outside_ach50 31.4825 Total infiltration to the dwelling unit is 31.4825 ACH50 -in.air_leakage_to_outside_ach50 31.4864 Total infiltration to the dwelling unit is 31.4864 ACH50 -in.air_leakage_to_outside_ach50 31.5304 Total infiltration to the dwelling unit is 31.5304 ACH50 -in.air_leakage_to_outside_ach50 31.57 Total infiltration to the dwelling unit is 31.57 ACH50 -in.air_leakage_to_outside_ach50 31.5928 Total infiltration to the dwelling unit is 31.5927999999999 ACH50 -in.air_leakage_to_outside_ach50 31.6224 Total infiltration to the dwelling unit is 31.6224 ACH50 -in.air_leakage_to_outside_ach50 31.6536 Total infiltration to the dwelling unit is 31.6536 ACH50 -in.air_leakage_to_outside_ach50 31.6585 Total infiltration to the dwelling unit is 31.6585 ACH50 -in.air_leakage_to_outside_ach50 31.778 Total infiltration to the dwelling unit is 31.778 ACH50 -in.air_leakage_to_outside_ach50 31.9388 Total infiltration to the dwelling unit is 31.9388 ACH50 -in.air_leakage_to_outside_ach50 31.9472 Total infiltration to the dwelling unit is 31.9472 ACH50 -in.air_leakage_to_outside_ach50 31.9844 Total infiltration to the dwelling unit is 31.9844 ACH50 -in.air_leakage_to_outside_ach50 32.0896 Total infiltration to the dwelling unit is 32.0896 ACH50 -in.air_leakage_to_outside_ach50 32.134 Total infiltration to the dwelling unit is 32.134 ACH50 -in.air_leakage_to_outside_ach50 32.2335 Total infiltration to the dwelling unit is 32.2335 ACH50 -in.air_leakage_to_outside_ach50 32.2655 Total infiltration to the dwelling unit is 32.2655 ACH50 -in.air_leakage_to_outside_ach50 32.4105 Total infiltration to the dwelling unit is 32.4105 ACH50 -in.air_leakage_to_outside_ach50 32.4448 Total infiltration to the dwelling unit is 32.4448 ACH50 -in.air_leakage_to_outside_ach50 32.486 Total infiltration to the dwelling unit is 32.486 ACH50 -in.air_leakage_to_outside_ach50 32.5552 Total infiltration to the dwelling unit is 32.5552 ACH50 -in.air_leakage_to_outside_ach50 32.5604 Total infiltration to the dwelling unit is 32.5604 ACH50 -in.air_leakage_to_outside_ach50 32.5932 Total infiltration to the dwelling unit is 32.5932 ACH50 -in.air_leakage_to_outside_ach50 32.7284 Total infiltration to the dwelling unit is 32.7284 ACH50 -in.air_leakage_to_outside_ach50 32.787 Total infiltration to the dwelling unit is 32.787 ACH50 -in.air_leakage_to_outside_ach50 32.9064 Total infiltration to the dwelling unit is 32.9064 ACH50 -in.air_leakage_to_outside_ach50 32.964 Total infiltration to the dwelling unit is 32.964 ACH50 -in.air_leakage_to_outside_ach50 33.1148 Total infiltration to the dwelling unit is 33.1148 ACH50 -in.air_leakage_to_outside_ach50 33.1485 Total infiltration to the dwelling unit is 33.1485 ACH50 -in.air_leakage_to_outside_ach50 33.1948 Total infiltration to the dwelling unit is 33.1948 ACH50 -in.air_leakage_to_outside_ach50 33.2592 Total infiltration to the dwelling unit is 33.2592 ACH50 -in.air_leakage_to_outside_ach50 33.2775 Total infiltration to the dwelling unit is 33.2774999999999 ACH50 -in.air_leakage_to_outside_ach50 33.3628 Total infiltration to the dwelling unit is 33.3628 ACH50 -in.air_leakage_to_outside_ach50 33.378 Total infiltration to the dwelling unit is 33.378 ACH50 -in.air_leakage_to_outside_ach50 33.407 Total infiltration to the dwelling unit is 33.407 ACH50 -in.air_leakage_to_outside_ach50 33.5144 Total infiltration to the dwelling unit is 33.5144 ACH50 -in.air_leakage_to_outside_ach50 33.5385 Total infiltration to the dwelling unit is 33.5385 ACH50 -in.air_leakage_to_outside_ach50 33.5388 Total infiltration to the dwelling unit is 33.5388 ACH50 -in.air_leakage_to_outside_ach50 33.714 Total infiltration to the dwelling unit is 33.714 ACH50 -in.air_leakage_to_outside_ach50 33.786 Total infiltration to the dwelling unit is 33.786 ACH50 -in.air_leakage_to_outside_ach50 33.8032 Total infiltration to the dwelling unit is 33.8032 ACH50 -in.air_leakage_to_outside_ach50 33.8465 Total infiltration to the dwelling unit is 33.8465 ACH50 -in.air_leakage_to_outside_ach50 33.9955 Total infiltration to the dwelling unit is 33.9955 ACH50 -in.air_leakage_to_outside_ach50 34.0895 Total infiltration to the dwelling unit is 34.0895 ACH50 -in.air_leakage_to_outside_ach50 34.16 Total infiltration to the dwelling unit is 34.16 ACH50 -in.air_leakage_to_outside_ach50 34.164 Total infiltration to the dwelling unit is 34.164 ACH50 -in.air_leakage_to_outside_ach50 34.2132 Total infiltration to the dwelling unit is 34.2132 ACH50 -in.air_leakage_to_outside_ach50 34.5075 Total infiltration to the dwelling unit is 34.5075 ACH50 -in.air_leakage_to_outside_ach50 34.6025 Total infiltration to the dwelling unit is 34.6025 ACH50 -in.air_leakage_to_outside_ach50 34.641 Total infiltration to the dwelling unit is 34.641 ACH50 -in.air_leakage_to_outside_ach50 34.6732 Total infiltration to the dwelling unit is 34.6732 ACH50 -in.air_leakage_to_outside_ach50 34.8464 Total infiltration to the dwelling unit is 34.8464 ACH50 -in.air_leakage_to_outside_ach50 34.8524 Total infiltration to the dwelling unit is 34.8524 ACH50 -in.air_leakage_to_outside_ach50 35.0195 Total infiltration to the dwelling unit is 35.0195 ACH50 -in.air_leakage_to_outside_ach50 35.068 Total infiltration to the dwelling unit is 35.068 ACH50 -in.air_leakage_to_outside_ach50 35.096 Total infiltration to the dwelling unit is 35.096 ACH50 -in.air_leakage_to_outside_ach50 35.1004 Total infiltration to the dwelling unit is 35.1004 ACH50 -in.air_leakage_to_outside_ach50 35.326 Total infiltration to the dwelling unit is 35.326 ACH50 -in.air_leakage_to_outside_ach50 35.3568 Total infiltration to the dwelling unit is 35.3568 ACH50 -in.air_leakage_to_outside_ach50 35.4105 Total infiltration to the dwelling unit is 35.4105 ACH50 -in.air_leakage_to_outside_ach50 35.426 Total infiltration to the dwelling unit is 35.426 ACH50 -in.air_leakage_to_outside_ach50 35.5225 Total infiltration to the dwelling unit is 35.5225 ACH50 -in.air_leakage_to_outside_ach50 35.7432 Total infiltration to the dwelling unit is 35.7432 ACH50 -in.air_leakage_to_outside_ach50 35.8268 Total infiltration to the dwelling unit is 35.8268 ACH50 -in.air_leakage_to_outside_ach50 36.2776 Total infiltration to the dwelling unit is 36.2776 ACH50 -in.air_leakage_to_outside_ach50 36.2804 Total infiltration to the dwelling unit is 36.2804 ACH50 -in.air_leakage_to_outside_ach50 36.4015 Total infiltration to the dwelling unit is 36.4015 ACH50 -in.air_leakage_to_outside_ach50 36.4325 Total infiltration to the dwelling unit is 36.4325 ACH50 -in.air_leakage_to_outside_ach50 36.5756 Total infiltration to the dwelling unit is 36.5756 ACH50 -in.air_leakage_to_outside_ach50 36.5972 Total infiltration to the dwelling unit is 36.5972 ACH50 -in.air_leakage_to_outside_ach50 36.8504 Total infiltration to the dwelling unit is 36.8504 ACH50 -in.air_leakage_to_outside_ach50 36.8568 Total infiltration to the dwelling unit is 36.8568 ACH50 -in.air_leakage_to_outside_ach50 37.0495 Total infiltration to the dwelling unit is 37.0495 ACH50 -in.air_leakage_to_outside_ach50 37.0596 Total infiltration to the dwelling unit is 37.0596 ACH50 -in.air_leakage_to_outside_ach50 37.08 Total infiltration to the dwelling unit is 37.08 ACH50 -in.air_leakage_to_outside_ach50 37.1165 Total infiltration to the dwelling unit is 37.1165 ACH50 -in.air_leakage_to_outside_ach50 37.1305 Total infiltration to the dwelling unit is 37.1305 ACH50 -in.air_leakage_to_outside_ach50 37.437 Total infiltration to the dwelling unit is 37.437 ACH50 -in.air_leakage_to_outside_ach50 37.915 Total infiltration to the dwelling unit is 37.915 ACH50 -in.air_leakage_to_outside_ach50 37.9505 Total infiltration to the dwelling unit is 37.9505 ACH50 -in.air_leakage_to_outside_ach50 37.9515 Total infiltration to the dwelling unit is 37.9514999999999 ACH50 -in.air_leakage_to_outside_ach50 38.0935 Total infiltration to the dwelling unit is 38.0935 ACH50 -in.air_leakage_to_outside_ach50 38.117 Total infiltration to the dwelling unit is 38.117 ACH50 -in.air_leakage_to_outside_ach50 38.315 Total infiltration to the dwelling unit is 38.315 ACH50 -in.air_leakage_to_outside_ach50 38.392 Total infiltration to the dwelling unit is 38.3919999999999 ACH50 -in.air_leakage_to_outside_ach50 38.4205 Total infiltration to the dwelling unit is 38.4205 ACH50 -in.air_leakage_to_outside_ach50 38.645 Total infiltration to the dwelling unit is 38.645 ACH50 -in.air_leakage_to_outside_ach50 38.973 Total infiltration to the dwelling unit is 38.973 ACH50 -in.air_leakage_to_outside_ach50 39.0835 Total infiltration to the dwelling unit is 39.0835 ACH50 -in.air_leakage_to_outside_ach50 39.323 Total infiltration to the dwelling unit is 39.323 ACH50 -in.air_leakage_to_outside_ach50 39.358 Total infiltration to the dwelling unit is 39.358 ACH50 -in.air_leakage_to_outside_ach50 39.3595 Total infiltration to the dwelling unit is 39.3595 ACH50 -in.air_leakage_to_outside_ach50 39.491 Total infiltration to the dwelling unit is 39.491 ACH50 -in.air_leakage_to_outside_ach50 39.528 Total infiltration to the dwelling unit is 39.528 ACH50 -in.air_leakage_to_outside_ach50 39.567 Total infiltration to the dwelling unit is 39.567 ACH50 -in.air_leakage_to_outside_ach50 39.9235 Total infiltration to the dwelling unit is 39.9235 ACH50 -in.air_leakage_to_outside_ach50 39.934 Total infiltration to the dwelling unit is 39.934 ACH50 -in.air_leakage_to_outside_ach50 39.9805 Total infiltration to the dwelling unit is 39.9805 ACH50 -in.air_leakage_to_outside_ach50 40 Total infiltration to the dwelling unit is 40 ACH50 -in.air_leakage_to_outside_ach50 40.112 Total infiltration to the dwelling unit is 40.1119999999999 ACH50 -in.air_leakage_to_outside_ach50 40.556 Total infiltration to the dwelling unit is 40.556 ACH50 -in.air_leakage_to_outside_ach50 40.694 Total infiltration to the dwelling unit is 40.694 ACH50 -in.air_leakage_to_outside_ach50 40.7005 Total infiltration to the dwelling unit is 40.7005 ACH50 -in.air_leakage_to_outside_ach50 40.7415 Total infiltration to the dwelling unit is 40.7415 ACH50 -in.air_leakage_to_outside_ach50 40.9105 Total infiltration to the dwelling unit is 40.9105 ACH50 -in.air_leakage_to_outside_ach50 41.205 Total infiltration to the dwelling unit is 41.205 ACH50 -in.air_leakage_to_outside_ach50 41.3935 Total infiltration to the dwelling unit is 41.3935 ACH50 -in.air_leakage_to_outside_ach50 41.439 Total infiltration to the dwelling unit is 41.439 ACH50 -in.air_leakage_to_outside_ach50 41.4935 Total infiltration to the dwelling unit is 41.4935 ACH50 -in.air_leakage_to_outside_ach50 41.574 Total infiltration to the dwelling unit is 41.574 ACH50 -in.air_leakage_to_outside_ach50 41.7225 Total infiltration to the dwelling unit is 41.7225 ACH50 -in.air_leakage_to_outside_ach50 41.893 Total infiltration to the dwelling unit is 41.893 ACH50 -in.air_leakage_to_outside_ach50 41.9235 Total infiltration to the dwelling unit is 41.9235 ACH50 -in.air_leakage_to_outside_ach50 42.1425 Total infiltration to the dwelling unit is 42.1425 ACH50 -in.air_leakage_to_outside_ach50 42.254 Total infiltration to the dwelling unit is 42.254 ACH50 -in.air_leakage_to_outside_ach50 42.7 Total infiltration to the dwelling unit is 42.6999999999999 ACH50 -in.air_leakage_to_outside_ach50 42.7665 Total infiltration to the dwelling unit is 42.7665 ACH50 -in.air_leakage_to_outside_ach50 43.3415 Total infiltration to the dwelling unit is 43.3414999999999 ACH50 -in.air_leakage_to_outside_ach50 43.558 Total infiltration to the dwelling unit is 43.558 ACH50 -in.air_leakage_to_outside_ach50 43.5655 Total infiltration to the dwelling unit is 43.5655 ACH50 -in.air_leakage_to_outside_ach50 44.1575 Total infiltration to the dwelling unit is 44.1575 ACH50 -in.air_leakage_to_outside_ach50 44.196 Total infiltration to the dwelling unit is 44.196 ACH50 -in.air_leakage_to_outside_ach50 44.679 Total infiltration to the dwelling unit is 44.679 ACH50 -in.air_leakage_to_outside_ach50 44.7835 Total infiltration to the dwelling unit is 44.7835 ACH50 -in.air_leakage_to_outside_ach50 45.347 Total infiltration to the dwelling unit is 45.347 ACH50 -in.air_leakage_to_outside_ach50 45.3505 Total infiltration to the dwelling unit is 45.3505 ACH50 -in.air_leakage_to_outside_ach50 45.7195 Total infiltration to the dwelling unit is 45.7195 ACH50 -in.air_leakage_to_outside_ach50 45.7465 Total infiltration to the dwelling unit is 45.7465 ACH50 -in.air_leakage_to_outside_ach50 46.063 Total infiltration to the dwelling unit is 46.0629999999999 ACH50 -in.air_leakage_to_outside_ach50 50 Total infiltration to the dwelling unit is 50 ACH50 -in.area_median_income 0-30% Area median income of the household occupying the dwelling unit is 0-30% -in.area_median_income 100-120% Area median income of the household occupying the dwelling unit is 100-120% -in.area_median_income 120-150% Area median income of the household occupying the dwelling unit is 120-150% -in.area_median_income 150%+ Area median income of the household occupying the dwelling unit is 150%+ -in.area_median_income 30-60% Area median income of the household occupying the dwelling unit is 30-60% -in.area_median_income 60-80% Area median income of the household occupying the dwelling unit is 60-80% -in.area_median_income 80-100% Area median income of the household occupying the dwelling unit is 80-100% -in.area_median_income Not Available Area median income of the household occupying the dwelling unit is Not Available -in.ashrae_iecc_climate_zone_2004 1A IECC Climate Zone 1A -in.ashrae_iecc_climate_zone_2004 2A IECC Climate Zone 2A -in.ashrae_iecc_climate_zone_2004 2B IECC Climate Zone 2B -in.ashrae_iecc_climate_zone_2004 3A IECC Climate Zone 3A -in.ashrae_iecc_climate_zone_2004 3B IECC Climate Zone 3B -in.ashrae_iecc_climate_zone_2004 3C IECC Climate Zone 3C -in.ashrae_iecc_climate_zone_2004 4A IECC Climate Zone 4A -in.ashrae_iecc_climate_zone_2004 4B IECC Climate Zone 4B -in.ashrae_iecc_climate_zone_2004 4C IECC Climate Zone 4C -in.ashrae_iecc_climate_zone_2004 5A IECC Climate Zone 5A -in.ashrae_iecc_climate_zone_2004 5B IECC Climate Zone 5B -in.ashrae_iecc_climate_zone_2004 6A IECC Climate Zone 6A -in.ashrae_iecc_climate_zone_2004 6B IECC Climate Zone 6B -in.ashrae_iecc_climate_zone_2004 7A IECC Climate Zone 7A -in.ashrae_iecc_climate_zone_2004 7AK IECC Climate Zone 7AK -in.ashrae_iecc_climate_zone_2004 7B IECC Climate Zone 7B -in.ashrae_iecc_climate_zone_2004 8AK IECC Climate Zone 8AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - FL IECC Climate Zone Split: 1A down selected to FL -in.ashrae_iecc_climate_zone_2004_sub_cz_split 1A - HI IECC Climate Zone Split: 1A down selected to HI -in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - FL, GA, AL, MS" "IECC Climate Zone Split: 2A down selected to FL, GA, AL, MS" -in.ashrae_iecc_climate_zone_2004_sub_cz_split "2A - TX, LA" "IECC Climate Zone Split: 2A down selected to TX, LA" -in.ashrae_iecc_climate_zone_2004_sub_cz_split 2B IECC Climate Zone Split: 2B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3A IECC Climate Zone Split: 3A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3B IECC Climate Zone Split: 3B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 3C IECC Climate Zone Split: 3C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4A IECC Climate Zone Split: 4A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4B IECC Climate Zone Split: 4B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 4C IECC Climate Zone Split: 4C -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5A IECC Climate Zone Split: 5A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 5B IECC Climate Zone Split: 5B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6A IECC Climate Zone Split: 6A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 6B IECC Climate Zone Split: 6B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7A IECC Climate Zone Split: 7A -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7AK IECC Climate Zone Split: 7AK -in.ashrae_iecc_climate_zone_2004_sub_cz_split 7B IECC Climate Zone Split: 7B -in.ashrae_iecc_climate_zone_2004_sub_cz_split 8AK IECC Climate Zone Split: 8AK -in.bathroom_spot_vent_hour Hour0 "Bathroom spot ventilation occurs at hour 0, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour1 "Bathroom spot ventilation occurs at hour 1, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour10 "Bathroom spot ventilation occurs at hour 10, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour11 "Bathroom spot ventilation occurs at hour 11, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour12 "Bathroom spot ventilation occurs at hour 12, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour13 "Bathroom spot ventilation occurs at hour 13, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour14 "Bathroom spot ventilation occurs at hour 14, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour15 "Bathroom spot ventilation occurs at hour 15, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour16 "Bathroom spot ventilation occurs at hour 16, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour17 "Bathroom spot ventilation occurs at hour 17, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour18 "Bathroom spot ventilation occurs at hour 18, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour19 "Bathroom spot ventilation occurs at hour 19, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour2 "Bathroom spot ventilation occurs at hour 2, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour20 "Bathroom spot ventilation occurs at hour 20, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour21 "Bathroom spot ventilation occurs at hour 21, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour22 "Bathroom spot ventilation occurs at hour 22, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour23 "Bathroom spot ventilation occurs at hour 23, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour3 "Bathroom spot ventilation occurs at hour 3, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour4 "Bathroom spot ventilation occurs at hour 4, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour5 "Bathroom spot ventilation occurs at hour 5, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour6 "Bathroom spot ventilation occurs at hour 6, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour7 "Bathroom spot ventilation occurs at hour 7, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour8 "Bathroom spot ventilation occurs at hour 8, and lasts for 1 hour" -in.bathroom_spot_vent_hour Hour9 "Bathroom spot ventilation occurs at hour 9, and lasts for 1 hour" -in.battery None No battery in the housing unit -in.bedrooms 1 1 bedroom in housing unit -in.bedrooms 2 2 bedroom in housing unit -in.bedrooms 3 3 bedroom in housing unit -in.bedrooms 4 4 bedroom in housing unit -in.bedrooms 5 5 bedroom in housing unit -in.building_america_climate_zone Cold Building America climate zone Cold -in.building_america_climate_zone Hot-Dry Building America climate zone Hot-Dry -in.building_america_climate_zone Hot-Humid Building America climate zone Hot-Humid -in.building_america_climate_zone Marine Building America climate zone Marine -in.building_america_climate_zone Mixed-Dry Building America climate zone Mixed-Dry -in.building_america_climate_zone Mixed-Humid Building America climate zone Mixed-Humid -in.building_america_climate_zone Subarctic Building America climate zone Subarctic -in.building_america_climate_zone Very Cold Building America climate zone Very Cold -in.buildstock_csv_path buildstock.csv The path of buildstock.csv is buildstock.csv -in.cec_climate_zone 1 California Energy Code climate zone 1 -in.cec_climate_zone 2 California Energy Code climate zone 2 -in.cec_climate_zone 3 California Energy Code climate zone 3 -in.cec_climate_zone 4 California Energy Code climate zone 4 -in.cec_climate_zone 5 California Energy Code climate zone 5 -in.cec_climate_zone 6 California Energy Code climate zone 6 -in.cec_climate_zone 7 California Energy Code climate zone 7 -in.cec_climate_zone 8 California Energy Code climate zone 8 -in.cec_climate_zone 9 California Energy Code climate zone 9 -in.cec_climate_zone 10 California Energy Code climate zone 10 -in.cec_climate_zone 11 California Energy Code climate zone 11 -in.cec_climate_zone 12 California Energy Code climate zone 12 -in.cec_climate_zone 13 California Energy Code climate zone 13 -in.cec_climate_zone 14 California Energy Code climate zone 14 -in.cec_climate_zone 15 California Energy Code climate zone 15 -in.cec_climate_zone 16 California Energy Code climate zone 16 -in.cec_climate_zone None No California Energy Code climate zone -in.ceiling_fan None No ceiling fan -in.ceiling_fan Standard Efficiency 42.6 W power consumption per fan at medium speed -in.ceiling_fan "Standard Efficiency, No usage" Standard efficiency fan applied but not used -in.census_division East North Central East North Central 2010 U.S. Census Division -in.census_division East South Central East South Central 2010 U.S. Census Division -in.census_division Middle Atlantic Middle Atlantic 2010 U.S. Census Division -in.census_division Mountain Mountain 2010 U.S. Census Division -in.census_division New England New England 2010 U.S. Census Division -in.census_division Pacific Pacific 2010 U.S. Census Division -in.census_division South Atlantic South Atlantic 2010 U.S. Census Division -in.census_division West North Central West North Central 2010 U.S. Census Division -in.census_division West South Central West South Central 2010 U.S. Census Division -in.census_division_recs East North Central East North Central Census Division as used in RECS 2015 -in.census_division_recs East South Central East South Central Census Division as used in RECS 2015 -in.census_division_recs Middle Atlantic Middle Atlantic Census Division as used in RECS 2015 -in.census_division_recs Mountain North Mountain North Census Division as used in RECS 2015 -in.census_division_recs Mountain South Mountain South Census Division as used in RECS 2015 -in.census_division_recs New England New England Census Division as used in RECS 2015 -in.census_division_recs Pacific Pacific Census Division as used in RECS 2015 -in.census_division_recs South Atlantic South Atlantic Census Division as used in RECS 2015 -in.census_division_recs West North Central West North Central Census Division as used in RECS 2015 -in.census_division_recs West South Central West South Central Census Division as used in RECS 2015 -in.census_region Midwest Midwest 2010 U.S. Census Division -in.census_region Northeast Northeast 2010 U.S. Census Division -in.census_region South South 2010 U.S. Census Division -in.census_region West West 2010 U.S. Census Division -in.city "AK, Anchorage" "AK, Anchorage census-designated city" -in.city "AL, Auburn" "AL, Auburn census-designated city" -in.city "AL, Birmingham" "AL, Birmingham census-designated city" -in.city "AL, Decatur" "AL, Decatur census-designated city" -in.city "AL, Dothan" "AL, Dothan census-designated city" -in.city "AL, Florence" "AL, Florence census-designated city" -in.city "AL, Gadsden" "AL, Gadsden census-designated city" -in.city "AL, Hoover" "AL, Hoover census-designated city" -in.city "AL, Huntsville" "AL, Huntsville census-designated city" -in.city "AL, Madison" "AL, Madison census-designated city" -in.city "AL, Mobile" "AL, Mobile census-designated city" -in.city "AL, Montgomery" "AL, Montgomery census-designated city" -in.city "AL, Phenix City" "AL, Phenix City census-designated city" -in.city "AL, Tuscaloosa" "AL, Tuscaloosa census-designated city" -in.city "AR, Bentonville" "AR, Bentonville census-designated city" -in.city "AR, Conway" "AR, Conway census-designated city" -in.city "AR, Fayetteville" "AR, Fayetteville census-designated city" -in.city "AR, Fort Smith" "AR, Fort Smith census-designated city" -in.city "AR, Hot Springs" "AR, Hot Springs census-designated city" -in.city "AR, Jonesboro" "AR, Jonesboro census-designated city" -in.city "AR, Little Rock" "AR, Little Rock census-designated city" -in.city "AR, North Little Rock" "AR, North Little Rock census-designated city" -in.city "AR, Pine Bluff" "AR, Pine Bluff census-designated city" -in.city "AR, Rogers" "AR, Rogers census-designated city" -in.city "AR, Springdale" "AR, Springdale census-designated city" -in.city "AZ, Apache Junction" "AZ, Apache Junction census-designated city" -in.city "AZ, Avondale" "AZ, Avondale census-designated city" -in.city "AZ, Buckeye" "AZ, Buckeye census-designated city" -in.city "AZ, Bullhead City" "AZ, Bullhead City census-designated city" -in.city "AZ, Casa Grande" "AZ, Casa Grande census-designated city" -in.city "AZ, Casas Adobes" "AZ, Casas Adobes census-designated city" -in.city "AZ, Catalina Foothills" "AZ, Catalina Foothills census-designated city" -in.city "AZ, Chandler" "AZ, Chandler census-designated city" -in.city "AZ, Flagstaff" "AZ, Flagstaff census-designated city" -in.city "AZ, Fortuna Foothills" "AZ, Fortuna Foothills census-designated city" -in.city "AZ, Gilbert" "AZ, Gilbert census-designated city" -in.city "AZ, Glendale" "AZ, Glendale census-designated city" -in.city "AZ, Goodyear" "AZ, Goodyear census-designated city" -in.city "AZ, Green Valley" "AZ, Green Valley census-designated city" -in.city "AZ, Lake Havasu City" "AZ, Lake Havasu City census-designated city" -in.city "AZ, Marana" "AZ, Marana census-designated city" -in.city "AZ, Maricopa" "AZ, Maricopa census-designated city" -in.city "AZ, Mesa" "AZ, Mesa census-designated city" -in.city "AZ, Oro Valley" "AZ, Oro Valley census-designated city" -in.city "AZ, Peoria" "AZ, Peoria census-designated city" -in.city "AZ, Phoenix" "AZ, Phoenix census-designated city" -in.city "AZ, Prescott" "AZ, Prescott census-designated city" -in.city "AZ, Prescott Valley" "AZ, Prescott Valley census-designated city" -in.city "AZ, San Tan Valley" "AZ, San Tan Valley census-designated city" -in.city "AZ, Scottsdale" "AZ, Scottsdale census-designated city" -in.city "AZ, Sierra Vista" "AZ, Sierra Vista census-designated city" -in.city "AZ, Sun City" "AZ, Sun City census-designated city" -in.city "AZ, Sun City West" "AZ, Sun City West census-designated city" -in.city "AZ, Surprise" "AZ, Surprise census-designated city" -in.city "AZ, Tempe" "AZ, Tempe census-designated city" -in.city "AZ, Tucson" "AZ, Tucson census-designated city" -in.city "AZ, Yuma" "AZ, Yuma census-designated city" -in.city "CA, Alameda" "CA, Alameda census-designated city" -in.city "CA, Alhambra" "CA, Alhambra census-designated city" -in.city "CA, Aliso Viejo" "CA, Aliso Viejo census-designated city" -in.city "CA, Altadena" "CA, Altadena census-designated city" -in.city "CA, Anaheim" "CA, Anaheim census-designated city" -in.city "CA, Antioch" "CA, Antioch census-designated city" -in.city "CA, Apple Valley" "CA, Apple Valley census-designated city" -in.city "CA, Arcadia" "CA, Arcadia census-designated city" -in.city "CA, Arden-Arcade" "CA, Arden-Arcade census-designated city" -in.city "CA, Bakersfield" "CA, Bakersfield census-designated city" -in.city "CA, Baldwin Park" "CA, Baldwin Park census-designated city" -in.city "CA, Bellflower" "CA, Bellflower census-designated city" -in.city "CA, Berkeley" "CA, Berkeley census-designated city" -in.city "CA, Beverly Hills" "CA, Beverly Hills census-designated city" -in.city "CA, Brea" "CA, Brea census-designated city" -in.city "CA, Brentwood" "CA, Brentwood census-designated city" -in.city "CA, Buena Park" "CA, Buena Park census-designated city" -in.city "CA, Burbank" "CA, Burbank census-designated city" -in.city "CA, Camarillo" "CA, Camarillo census-designated city" -in.city "CA, Campbell" "CA, Campbell census-designated city" -in.city "CA, Carlsbad" "CA, Carlsbad census-designated city" -in.city "CA, Carmichael" "CA, Carmichael census-designated city" -in.city "CA, Carson" "CA, Carson census-designated city" -in.city "CA, Castro Valley" "CA, Castro Valley census-designated city" -in.city "CA, Cathedral City" "CA, Cathedral City census-designated city" -in.city "CA, Cerritos" "CA, Cerritos census-designated city" -in.city "CA, Chico" "CA, Chico census-designated city" -in.city "CA, Chino" "CA, Chino census-designated city" -in.city "CA, Chino Hills" "CA, Chino Hills census-designated city" -in.city "CA, Chula Vista" "CA, Chula Vista census-designated city" -in.city "CA, Citrus Heights" "CA, Citrus Heights census-designated city" -in.city "CA, Clovis" "CA, Clovis census-designated city" -in.city "CA, Colton" "CA, Colton census-designated city" -in.city "CA, Compton" "CA, Compton census-designated city" -in.city "CA, Concord" "CA, Concord census-designated city" -in.city "CA, Corona" "CA, Corona census-designated city" -in.city "CA, Costa Mesa" "CA, Costa Mesa census-designated city" -in.city "CA, Covina" "CA, Covina census-designated city" -in.city "CA, Culver City" "CA, Culver City census-designated city" -in.city "CA, Cupertino" "CA, Cupertino census-designated city" -in.city "CA, Cypress" "CA, Cypress census-designated city" -in.city "CA, Daly City" "CA, Daly City census-designated city" -in.city "CA, Dana Point" "CA, Dana Point census-designated city" -in.city "CA, Danville" "CA, Danville census-designated city" -in.city "CA, Davis" "CA, Davis census-designated city" -in.city "CA, Diamond Bar" "CA, Diamond Bar census-designated city" -in.city "CA, Downey" "CA, Downey census-designated city" -in.city "CA, Dublin" "CA, Dublin census-designated city" -in.city "CA, East Los Angeles" "CA, East Los Angeles census-designated city" -in.city "CA, El Cajon" "CA, El Cajon census-designated city" -in.city "CA, El Dorado Hills" "CA, El Dorado Hills census-designated city" -in.city "CA, El Monte" "CA, El Monte census-designated city" -in.city "CA, Elk Grove" "CA, Elk Grove census-designated city" -in.city "CA, Encinitas" "CA, Encinitas census-designated city" -in.city "CA, Escondido" "CA, Escondido census-designated city" -in.city "CA, Fairfield" "CA, Fairfield census-designated city" -in.city "CA, Florence-Graham" "CA, Florence-Graham census-designated city" -in.city "CA, Florin" "CA, Florin census-designated city" -in.city "CA, Folsom" "CA, Folsom census-designated city" -in.city "CA, Fontana" "CA, Fontana census-designated city" -in.city "CA, Fountain Valley" "CA, Fountain Valley census-designated city" -in.city "CA, Fremont" "CA, Fremont census-designated city" -in.city "CA, Fresno" "CA, Fresno census-designated city" -in.city "CA, Fullerton" "CA, Fullerton census-designated city" -in.city "CA, Garden Grove" "CA, Garden Grove census-designated city" -in.city "CA, Gardena" "CA, Gardena census-designated city" -in.city "CA, Gilroy" "CA, Gilroy census-designated city" -in.city "CA, Glendale" "CA, Glendale census-designated city" -in.city "CA, Glendora" "CA, Glendora census-designated city" -in.city "CA, Hacienda Heights" "CA, Hacienda Heights census-designated city" -in.city "CA, Hanford" "CA, Hanford census-designated city" -in.city "CA, Hawthorne" "CA, Hawthorne census-designated city" -in.city "CA, Hayward" "CA, Hayward census-designated city" -in.city "CA, Hemet" "CA, Hemet census-designated city" -in.city "CA, Hesperia" "CA, Hesperia census-designated city" -in.city "CA, Highland" "CA, Highland census-designated city" -in.city "CA, Huntington Beach" "CA, Huntington Beach census-designated city" -in.city "CA, Huntington Park" "CA, Huntington Park census-designated city" -in.city "CA, Indio" "CA, Indio census-designated city" -in.city "CA, Inglewood" "CA, Inglewood census-designated city" -in.city "CA, Irvine" "CA, Irvine census-designated city" -in.city "CA, La Habra" "CA, La Habra census-designated city" -in.city "CA, La Mesa" "CA, La Mesa census-designated city" -in.city "CA, La Quinta" "CA, La Quinta census-designated city" -in.city "CA, Laguna Niguel" "CA, Laguna Niguel census-designated city" -in.city "CA, Lake Elsinore" "CA, Lake Elsinore census-designated city" -in.city "CA, Lake Forest" "CA, Lake Forest census-designated city" -in.city "CA, Lakewood" "CA, Lakewood census-designated city" -in.city "CA, Lancaster" "CA, Lancaster census-designated city" -in.city "CA, Lincoln" "CA, Lincoln census-designated city" -in.city "CA, Livermore" "CA, Livermore census-designated city" -in.city "CA, Lodi" "CA, Lodi census-designated city" -in.city "CA, Long Beach" "CA, Long Beach census-designated city" -in.city "CA, Los Angeles" "CA, Los Angeles census-designated city" -in.city "CA, Lynwood" "CA, Lynwood census-designated city" -in.city "CA, Madera" "CA, Madera census-designated city" -in.city "CA, Manhattan Beach" "CA, Manhattan Beach census-designated city" -in.city "CA, Manteca" "CA, Manteca census-designated city" -in.city "CA, Martinez" "CA, Martinez census-designated city" -in.city "CA, Menifee" "CA, Menifee census-designated city" -in.city "CA, Merced" "CA, Merced census-designated city" -in.city "CA, Milpitas" "CA, Milpitas census-designated city" -in.city "CA, Mission Viejo" "CA, Mission Viejo census-designated city" -in.city "CA, Modesto" "CA, Modesto census-designated city" -in.city "CA, Montebello" "CA, Montebello census-designated city" -in.city "CA, Monterey Park" "CA, Monterey Park census-designated city" -in.city "CA, Moreno Valley" "CA, Moreno Valley census-designated city" -in.city "CA, Mountain View" "CA, Mountain View census-designated city" -in.city "CA, Murrieta" "CA, Murrieta census-designated city" -in.city "CA, Napa" "CA, Napa census-designated city" -in.city "CA, National City" "CA, National City census-designated city" -in.city "CA, Newport Beach" "CA, Newport Beach census-designated city" -in.city "CA, North Highlands" "CA, North Highlands census-designated city" -in.city "CA, Norwalk" "CA, Norwalk census-designated city" -in.city "CA, Novato" "CA, Novato census-designated city" -in.city "CA, Oakland" "CA, Oakland census-designated city" -in.city "CA, Oceanside" "CA, Oceanside census-designated city" -in.city "CA, Ontario" "CA, Ontario census-designated city" -in.city "CA, Orange" "CA, Orange census-designated city" -in.city "CA, Oxnard" "CA, Oxnard census-designated city" -in.city "CA, Palm Desert" "CA, Palm Desert census-designated city" -in.city "CA, Palm Springs" "CA, Palm Springs census-designated city" -in.city "CA, Palmdale" "CA, Palmdale census-designated city" -in.city "CA, Palo Alto" "CA, Palo Alto census-designated city" -in.city "CA, Pasadena" "CA, Pasadena census-designated city" -in.city "CA, Perris" "CA, Perris census-designated city" -in.city "CA, Petaluma" "CA, Petaluma census-designated city" -in.city "CA, Pico Rivera" "CA, Pico Rivera census-designated city" -in.city "CA, Pittsburg" "CA, Pittsburg census-designated city" -in.city "CA, Placentia" "CA, Placentia census-designated city" -in.city "CA, Pleasanton" "CA, Pleasanton census-designated city" -in.city "CA, Pomona" "CA, Pomona census-designated city" -in.city "CA, Porterville" "CA, Porterville census-designated city" -in.city "CA, Poway" "CA, Poway census-designated city" -in.city "CA, Rancho Cordova" "CA, Rancho Cordova census-designated city" -in.city "CA, Rancho Cucamonga" "CA, Rancho Cucamonga census-designated city" -in.city "CA, Rancho Palos Verdes" "CA, Rancho Palos Verdes census-designated city" -in.city "CA, Rancho Santa Margarita" "CA, Rancho Santa Margarita census-designated city" -in.city "CA, Redding" "CA, Redding census-designated city" -in.city "CA, Redlands" "CA, Redlands census-designated city" -in.city "CA, Redondo Beach" "CA, Redondo Beach census-designated city" -in.city "CA, Redwood City" "CA, Redwood City census-designated city" -in.city "CA, Rialto" "CA, Rialto census-designated city" -in.city "CA, Richmond" "CA, Richmond census-designated city" -in.city "CA, Riverside" "CA, Riverside census-designated city" -in.city "CA, Rocklin" "CA, Rocklin census-designated city" -in.city "CA, Rohnert Park" "CA, Rohnert Park census-designated city" -in.city "CA, Rosemead" "CA, Rosemead census-designated city" -in.city "CA, Roseville" "CA, Roseville census-designated city" -in.city "CA, Rowland Heights" "CA, Rowland Heights census-designated city" -in.city "CA, Sacramento" "CA, Sacramento census-designated city" -in.city "CA, Salinas" "CA, Salinas census-designated city" -in.city "CA, San Bernardino" "CA, San Bernardino census-designated city" -in.city "CA, San Bruno" "CA, San Bruno census-designated city" -in.city "CA, San Buenaventura Ventura" "CA, San Buenaventura Ventura census-designated city" -in.city "CA, San Clemente" "CA, San Clemente census-designated city" -in.city "CA, San Diego" "CA, San Diego census-designated city" -in.city "CA, San Francisco" "CA, San Francisco census-designated city" -in.city "CA, San Jose" "CA, San Jose census-designated city" -in.city "CA, San Leandro" "CA, San Leandro census-designated city" -in.city "CA, San Luis Obispo" "CA, San Luis Obispo census-designated city" -in.city "CA, San Marcos" "CA, San Marcos census-designated city" -in.city "CA, San Mateo" "CA, San Mateo census-designated city" -in.city "CA, San Rafael" "CA, San Rafael census-designated city" -in.city "CA, San Ramon" "CA, San Ramon census-designated city" -in.city "CA, Santa Ana" "CA, Santa Ana census-designated city" -in.city "CA, Santa Barbara" "CA, Santa Barbara census-designated city" -in.city "CA, Santa Clara" "CA, Santa Clara census-designated city" -in.city "CA, Santa Clarita" "CA, Santa Clarita census-designated city" -in.city "CA, Santa Cruz" "CA, Santa Cruz census-designated city" -in.city "CA, Santa Maria" "CA, Santa Maria census-designated city" -in.city "CA, Santa Monica" "CA, Santa Monica census-designated city" -in.city "CA, Santa Rosa" "CA, Santa Rosa census-designated city" -in.city "CA, Santee" "CA, Santee census-designated city" -in.city "CA, Simi Valley" "CA, Simi Valley census-designated city" -in.city "CA, South Gate" "CA, South Gate census-designated city" -in.city "CA, South Lake Tahoe" "CA, South Lake Tahoe census-designated city" -in.city "CA, South San Francisco" "CA, South San Francisco census-designated city" -in.city "CA, South Whittier" "CA, South Whittier census-designated city" -in.city "CA, Stockton" "CA, Stockton census-designated city" -in.city "CA, Sunnyvale" "CA, Sunnyvale census-designated city" -in.city "CA, Temecula" "CA, Temecula census-designated city" -in.city "CA, Thousand Oaks" "CA, Thousand Oaks census-designated city" -in.city "CA, Torrance" "CA, Torrance census-designated city" -in.city "CA, Tracy" "CA, Tracy census-designated city" -in.city "CA, Tulare" "CA, Tulare census-designated city" -in.city "CA, Turlock" "CA, Turlock census-designated city" -in.city "CA, Tustin" "CA, Tustin census-designated city" -in.city "CA, Union City" "CA, Union City census-designated city" -in.city "CA, Upland" "CA, Upland census-designated city" -in.city "CA, Vacaville" "CA, Vacaville census-designated city" -in.city "CA, Vallejo" "CA, Vallejo census-designated city" -in.city "CA, Victorville" "CA, Victorville census-designated city" -in.city "CA, Visalia" "CA, Visalia census-designated city" -in.city "CA, Vista" "CA, Vista census-designated city" -in.city "CA, Walnut Creek" "CA, Walnut Creek census-designated city" -in.city "CA, West Covina" "CA, West Covina census-designated city" -in.city "CA, West Hollywood" "CA, West Hollywood census-designated city" -in.city "CA, West Sacramento" "CA, West Sacramento census-designated city" -in.city "CA, Westminster" "CA, Westminster census-designated city" -in.city "CA, Whittier" "CA, Whittier census-designated city" -in.city "CA, Woodland" "CA, Woodland census-designated city" -in.city "CA, Yorba Linda" "CA, Yorba Linda census-designated city" -in.city "CA, Yuba City" "CA, Yuba City census-designated city" -in.city "CA, Yucaipa" "CA, Yucaipa census-designated city" -in.city "CO, Arvada" "CO, Arvada census-designated city" -in.city "CO, Aurora" "CO, Aurora census-designated city" -in.city "CO, Boulder" "CO, Boulder census-designated city" -in.city "CO, Broomfield" "CO, Broomfield census-designated city" -in.city "CO, Castle Rock" "CO, Castle Rock census-designated city" -in.city "CO, Centennial" "CO, Centennial census-designated city" -in.city "CO, Colorado Springs" "CO, Colorado Springs census-designated city" -in.city "CO, Commerce City" "CO, Commerce City census-designated city" -in.city "CO, Denver" "CO, Denver census-designated city" -in.city "CO, Englewood" "CO, Englewood census-designated city" -in.city "CO, Fort Collins" "CO, Fort Collins census-designated city" -in.city "CO, Grand Junction" "CO, Grand Junction census-designated city" -in.city "CO, Greeley" "CO, Greeley census-designated city" -in.city "CO, Highlands Ranch" "CO, Highlands Ranch census-designated city" -in.city "CO, Lakewood" "CO, Lakewood census-designated city" -in.city "CO, Littleton" "CO, Littleton census-designated city" -in.city "CO, Longmont" "CO, Longmont census-designated city" -in.city "CO, Loveland" "CO, Loveland census-designated city" -in.city "CO, Parker" "CO, Parker census-designated city" -in.city "CO, Pueblo" "CO, Pueblo census-designated city" -in.city "CO, Thornton" "CO, Thornton census-designated city" -in.city "CO, Westminster" "CO, Westminster census-designated city" -in.city "CT, Bridgeport" "CT, Bridgeport census-designated city" -in.city "CT, Bristol" "CT, Bristol census-designated city" -in.city "CT, Danbury" "CT, Danbury census-designated city" -in.city "CT, East Hartford" "CT, East Hartford census-designated city" -in.city "CT, Hartford" "CT, Hartford census-designated city" -in.city "CT, Meriden" "CT, Meriden census-designated city" -in.city "CT, Middletown" "CT, Middletown census-designated city" -in.city "CT, Milford City Balance" "CT, Milford City Balance census-designated city" -in.city "CT, New Britain" "CT, New Britain census-designated city" -in.city "CT, New Haven" "CT, New Haven census-designated city" -in.city "CT, Norwalk" "CT, Norwalk census-designated city" -in.city "CT, Norwich" "CT, Norwich census-designated city" -in.city "CT, Shelton" "CT, Shelton census-designated city" -in.city "CT, Stamford" "CT, Stamford census-designated city" -in.city "CT, Stratford" "CT, Stratford census-designated city" -in.city "CT, Torrington" "CT, Torrington census-designated city" -in.city "CT, Waterbury" "CT, Waterbury census-designated city" -in.city "CT, West Hartford" "CT, West Hartford census-designated city" -in.city "CT, West Haven" "CT, West Haven census-designated city" -in.city "DC, Washington" "DC, Washington census-designated city" -in.city "DE, Dover" "DE, Dover census-designated city" -in.city "DE, Wilmington" "DE, Wilmington census-designated city" -in.city "FL, Alafaya" "FL, Alafaya census-designated city" -in.city "FL, Altamonte Springs" "FL, Altamonte Springs census-designated city" -in.city "FL, Apopka" "FL, Apopka census-designated city" -in.city "FL, Aventura" "FL, Aventura census-designated city" -in.city "FL, Boca Raton" "FL, Boca Raton census-designated city" -in.city "FL, Bonita Springs" "FL, Bonita Springs census-designated city" -in.city "FL, Boynton Beach" "FL, Boynton Beach census-designated city" -in.city "FL, Bradenton" "FL, Bradenton census-designated city" -in.city "FL, Brandon" "FL, Brandon census-designated city" -in.city "FL, Cape Coral" "FL, Cape Coral census-designated city" -in.city "FL, Carrollwood" "FL, Carrollwood census-designated city" -in.city "FL, Clearwater" "FL, Clearwater census-designated city" -in.city "FL, Coconut Creek" "FL, Coconut Creek census-designated city" -in.city "FL, Coral Gables" "FL, Coral Gables census-designated city" -in.city "FL, Coral Springs" "FL, Coral Springs census-designated city" -in.city "FL, Country Club" "FL, Country Club census-designated city" -in.city "FL, Dania Beach" "FL, Dania Beach census-designated city" -in.city "FL, Davie" "FL, Davie census-designated city" -in.city "FL, Daytona Beach" "FL, Daytona Beach census-designated city" -in.city "FL, Deerfield Beach" "FL, Deerfield Beach census-designated city" -in.city "FL, Delray Beach" "FL, Delray Beach census-designated city" -in.city "FL, Deltona" "FL, Deltona census-designated city" -in.city "FL, Doral" "FL, Doral census-designated city" -in.city "FL, Dunedin" "FL, Dunedin census-designated city" -in.city "FL, East Lake" "FL, East Lake census-designated city" -in.city "FL, Estero" "FL, Estero census-designated city" -in.city "FL, Fort Lauderdale" "FL, Fort Lauderdale census-designated city" -in.city "FL, Fort Myers" "FL, Fort Myers census-designated city" -in.city "FL, Fort Pierce" "FL, Fort Pierce census-designated city" -in.city "FL, Fountainebleau" "FL, Fountainebleau census-designated city" -in.city "FL, Four Corners" "FL, Four Corners census-designated city" -in.city "FL, Gainesville" "FL, Gainesville census-designated city" -in.city "FL, Greenacres" "FL, Greenacres census-designated city" -in.city "FL, Hallandale Beach" "FL, Hallandale Beach census-designated city" -in.city "FL, Hialeah" "FL, Hialeah census-designated city" -in.city "FL, Hollywood" "FL, Hollywood census-designated city" -in.city "FL, Homestead" "FL, Homestead census-designated city" -in.city "FL, Jacksonville" "FL, Jacksonville census-designated city" -in.city "FL, Jupiter" "FL, Jupiter census-designated city" -in.city "FL, Kendale Lakes" "FL, Kendale Lakes census-designated city" -in.city "FL, Kendall" "FL, Kendall census-designated city" -in.city "FL, Kissimmee" "FL, Kissimmee census-designated city" -in.city "FL, Lake Worth" "FL, Lake Worth census-designated city" -in.city "FL, Lakeland" "FL, Lakeland census-designated city" -in.city "FL, Largo" "FL, Largo census-designated city" -in.city "FL, Lauderhill" "FL, Lauderhill census-designated city" -in.city "FL, Lehigh Acres" "FL, Lehigh Acres census-designated city" -in.city "FL, Marco Island" "FL, Marco Island census-designated city" -in.city "FL, Margate" "FL, Margate census-designated city" -in.city "FL, Melbourne" "FL, Melbourne census-designated city" -in.city "FL, Merritt Island" "FL, Merritt Island census-designated city" -in.city "FL, Miami" "FL, Miami census-designated city" -in.city "FL, Miami Beach" "FL, Miami Beach census-designated city" -in.city "FL, Miami Gardens" "FL, Miami Gardens census-designated city" -in.city "FL, Miramar" "FL, Miramar census-designated city" -in.city "FL, Naples" "FL, Naples census-designated city" -in.city "FL, New Smyrna Beach" "FL, New Smyrna Beach census-designated city" -in.city "FL, North Fort Myers" "FL, North Fort Myers census-designated city" -in.city "FL, North Miami" "FL, North Miami census-designated city" -in.city "FL, North Miami Beach" "FL, North Miami Beach census-designated city" -in.city "FL, North Port" "FL, North Port census-designated city" -in.city "FL, Oakland Park" "FL, Oakland Park census-designated city" -in.city "FL, Ocala" "FL, Ocala census-designated city" -in.city "FL, Orlando" "FL, Orlando census-designated city" -in.city "FL, Ormond Beach" "FL, Ormond Beach census-designated city" -in.city "FL, Palm Bay" "FL, Palm Bay census-designated city" -in.city "FL, Palm Beach Gardens" "FL, Palm Beach Gardens census-designated city" -in.city "FL, Palm Coast" "FL, Palm Coast census-designated city" -in.city "FL, Palm Harbor" "FL, Palm Harbor census-designated city" -in.city "FL, Panama City" "FL, Panama City census-designated city" -in.city "FL, Panama City Beach" "FL, Panama City Beach census-designated city" -in.city "FL, Pembroke Pines" "FL, Pembroke Pines census-designated city" -in.city "FL, Pensacola" "FL, Pensacola census-designated city" -in.city "FL, Pine Hills" "FL, Pine Hills census-designated city" -in.city "FL, Pinellas Park" "FL, Pinellas Park census-designated city" -in.city "FL, Plantation" "FL, Plantation census-designated city" -in.city "FL, Poinciana" "FL, Poinciana census-designated city" -in.city "FL, Pompano Beach" "FL, Pompano Beach census-designated city" -in.city "FL, Port Charlotte" "FL, Port Charlotte census-designated city" -in.city "FL, Port Orange" "FL, Port Orange census-designated city" -in.city "FL, Port St Lucie" "FL, Port St Lucie census-designated city" -in.city "FL, Riverview" "FL, Riverview census-designated city" -in.city "FL, Riviera Beach" "FL, Riviera Beach census-designated city" -in.city "FL, Sanford" "FL, Sanford census-designated city" -in.city "FL, Sarasota" "FL, Sarasota census-designated city" -in.city "FL, Spring Hill" "FL, Spring Hill census-designated city" -in.city "FL, St Cloud" "FL, St Cloud census-designated city" -in.city "FL, St Petersburg" "FL, St Petersburg census-designated city" -in.city "FL, Sun City Center" "FL, Sun City Center census-designated city" -in.city "FL, Sunny Isles Beach" "FL, Sunny Isles Beach census-designated city" -in.city "FL, Sunrise" "FL, Sunrise census-designated city" -in.city "FL, Tallahassee" "FL, Tallahassee census-designated city" -in.city "FL, Tamarac" "FL, Tamarac census-designated city" -in.city "FL, Tamiami" "FL, Tamiami census-designated city" -in.city "FL, Tampa" "FL, Tampa census-designated city" -in.city "FL, The Hammocks" "FL, The Hammocks census-designated city" -in.city "FL, The Villages" "FL, The Villages census-designated city" -in.city "FL, Titusville" "FL, Titusville census-designated city" -in.city "FL, Town N Country" "FL, Town N Country census-designated city" -in.city "FL, University" "FL, University census-designated city" -in.city "FL, Venice" "FL, Venice census-designated city" -in.city "FL, Wellington" "FL, Wellington census-designated city" -in.city "FL, Wesley Chapel" "FL, Wesley Chapel census-designated city" -in.city "FL, West Palm Beach" "FL, West Palm Beach census-designated city" -in.city "FL, Weston" "FL, Weston census-designated city" -in.city "FL, Winter Haven" "FL, Winter Haven census-designated city" -in.city "GA, Albany" "GA, Albany census-designated city" -in.city "GA, Alpharetta" "GA, Alpharetta census-designated city" -in.city "GA, Athens-Clarke County Unified Government Balance" "GA, Athens-Clarke County Unified Government Balance census-designated city" -in.city "GA, Atlanta" "GA, Atlanta census-designated city" -in.city "GA, Augusta-Richmond County Consolidated Government Balance" "GA, Augusta-Richmond County Consolidated Government Balance census-designated city" -in.city "GA, Columbus" "GA, Columbus census-designated city" -in.city "GA, Dunwoody" "GA, Dunwoody census-designated city" -in.city "GA, East Point" "GA, East Point census-designated city" -in.city "GA, Hinesville" "GA, Hinesville census-designated city" -in.city "GA, Johns Creek" "GA, Johns Creek census-designated city" -in.city "GA, Mableton" "GA, Mableton census-designated city" -in.city "GA, Macon" "GA, Macon census-designated city" -in.city "GA, Marietta" "GA, Marietta census-designated city" -in.city "GA, Newnan" "GA, Newnan census-designated city" -in.city "GA, North Atlanta" "GA, North Atlanta census-designated city" -in.city "GA, Rome" "GA, Rome census-designated city" -in.city "GA, Roswell" "GA, Roswell census-designated city" -in.city "GA, Sandy Springs" "GA, Sandy Springs census-designated city" -in.city "GA, Savannah" "GA, Savannah census-designated city" -in.city "GA, Smyrna" "GA, Smyrna census-designated city" -in.city "GA, Valdosta" "GA, Valdosta census-designated city" -in.city "GA, Warner Robins" "GA, Warner Robins census-designated city" -in.city "HI, East Honolulu" "HI, East Honolulu census-designated city" -in.city "HI, Hilo" "HI, Hilo census-designated city" -in.city "HI, Kailua" "HI, Kailua census-designated city" -in.city "HI, Urban Honolulu" "HI, Urban Honolulu census-designated city" -in.city "IA, Ames" "IA, Ames census-designated city" -in.city "IA, Ankeny" "IA, Ankeny census-designated city" -in.city "IA, Cedar Falls" "IA, Cedar Falls census-designated city" -in.city "IA, Cedar Rapids" "IA, Cedar Rapids census-designated city" -in.city "IA, Council Bluffs" "IA, Council Bluffs census-designated city" -in.city "IA, Davenport" "IA, Davenport census-designated city" -in.city "IA, Des Moines" "IA, Des Moines census-designated city" -in.city "IA, Dubuque" "IA, Dubuque census-designated city" -in.city "IA, Iowa City" "IA, Iowa City census-designated city" -in.city "IA, Marion" "IA, Marion census-designated city" -in.city "IA, Sioux City" "IA, Sioux City census-designated city" -in.city "IA, Urbandale" "IA, Urbandale census-designated city" -in.city "IA, Waterloo" "IA, Waterloo census-designated city" -in.city "IA, West Des Moines" "IA, West Des Moines census-designated city" -in.city "ID, Boise City" "ID, Boise City census-designated city" -in.city "ID, Caldwell" "ID, Caldwell census-designated city" -in.city "ID, Coeur Dalene" "ID, Coeur Dalene census-designated city" -in.city "ID, Idaho Falls" "ID, Idaho Falls census-designated city" -in.city "ID, Meridian" "ID, Meridian census-designated city" -in.city "ID, Nampa" "ID, Nampa census-designated city" -in.city "ID, Pocatello" "ID, Pocatello census-designated city" -in.city "ID, Twin Falls" "ID, Twin Falls census-designated city" -in.city "IL, Arlington Heights" "IL, Arlington Heights census-designated city" -in.city "IL, Aurora" "IL, Aurora census-designated city" -in.city "IL, Belleville" "IL, Belleville census-designated city" -in.city "IL, Berwyn" "IL, Berwyn census-designated city" -in.city "IL, Bloomington" "IL, Bloomington census-designated city" -in.city "IL, Bolingbrook" "IL, Bolingbrook census-designated city" -in.city "IL, Buffalo Grove" "IL, Buffalo Grove census-designated city" -in.city "IL, Calumet City" "IL, Calumet City census-designated city" -in.city "IL, Carol Stream" "IL, Carol Stream census-designated city" -in.city "IL, Champaign" "IL, Champaign census-designated city" -in.city "IL, Chicago" "IL, Chicago census-designated city" -in.city "IL, Cicero" "IL, Cicero census-designated city" -in.city "IL, Crystal Lake" "IL, Crystal Lake census-designated city" -in.city "IL, Decatur" "IL, Decatur census-designated city" -in.city "IL, Dekalb" "IL, Dekalb census-designated city" -in.city "IL, Des Plaines" "IL, Des Plaines census-designated city" -in.city "IL, Downers Grove" "IL, Downers Grove census-designated city" -in.city "IL, Elgin" "IL, Elgin census-designated city" -in.city "IL, Elmhurst" "IL, Elmhurst census-designated city" -in.city "IL, Evanston" "IL, Evanston census-designated city" -in.city "IL, Glenview" "IL, Glenview census-designated city" -in.city "IL, Hoffman Estates" "IL, Hoffman Estates census-designated city" -in.city "IL, Joliet" "IL, Joliet census-designated city" -in.city "IL, Lombard" "IL, Lombard census-designated city" -in.city "IL, Moline" "IL, Moline census-designated city" -in.city "IL, Mount Prospect" "IL, Mount Prospect census-designated city" -in.city "IL, Naperville" "IL, Naperville census-designated city" -in.city "IL, Normal" "IL, Normal census-designated city" -in.city "IL, Oak Lawn" "IL, Oak Lawn census-designated city" -in.city "IL, Oak Park" "IL, Oak Park census-designated city" -in.city "IL, Orland Park" "IL, Orland Park census-designated city" -in.city "IL, Palatine" "IL, Palatine census-designated city" -in.city "IL, Peoria" "IL, Peoria census-designated city" -in.city "IL, Quincy" "IL, Quincy census-designated city" -in.city "IL, Rock Island" "IL, Rock Island census-designated city" -in.city "IL, Rockford" "IL, Rockford census-designated city" -in.city "IL, Schaumburg" "IL, Schaumburg census-designated city" -in.city "IL, Skokie" "IL, Skokie census-designated city" -in.city "IL, Springfield" "IL, Springfield census-designated city" -in.city "IL, Tinley Park" "IL, Tinley Park census-designated city" -in.city "IL, Urbana" "IL, Urbana census-designated city" -in.city "IL, Waukegan" "IL, Waukegan census-designated city" -in.city "IL, Wheaton" "IL, Wheaton census-designated city" -in.city "IL, Wheeling" "IL, Wheeling census-designated city" -in.city "IN, Anderson" "IN, Anderson census-designated city" -in.city "IN, Bloomington" "IN, Bloomington census-designated city" -in.city "IN, Carmel" "IN, Carmel census-designated city" -in.city "IN, Columbus" "IN, Columbus census-designated city" -in.city "IN, Elkhart" "IN, Elkhart census-designated city" -in.city "IN, Evansville" "IN, Evansville census-designated city" -in.city "IN, Fishers" "IN, Fishers census-designated city" -in.city "IN, Fort Wayne" "IN, Fort Wayne census-designated city" -in.city "IN, Gary" "IN, Gary census-designated city" -in.city "IN, Greenwood" "IN, Greenwood census-designated city" -in.city "IN, Hammond" "IN, Hammond census-designated city" -in.city "IN, Indianapolis City Balance" "IN, Indianapolis City Balance census-designated city" -in.city "IN, Jeffersonville" "IN, Jeffersonville census-designated city" -in.city "IN, Kokomo" "IN, Kokomo census-designated city" -in.city "IN, Lafayette" "IN, Lafayette census-designated city" -in.city "IN, Lawrence" "IN, Lawrence census-designated city" -in.city "IN, Mishawaka" "IN, Mishawaka census-designated city" -in.city "IN, Muncie" "IN, Muncie census-designated city" -in.city "IN, New Albany" "IN, New Albany census-designated city" -in.city "IN, Noblesville" "IN, Noblesville census-designated city" -in.city "IN, Portage" "IN, Portage census-designated city" -in.city "IN, Richmond" "IN, Richmond census-designated city" -in.city "IN, South Bend" "IN, South Bend census-designated city" -in.city "IN, Terre Haute" "IN, Terre Haute census-designated city" -in.city In another census Place In another census Place census-designated city -in.city "KS, Hutchinson" "KS, Hutchinson census-designated city" -in.city "KS, Kansas City" "KS, Kansas City census-designated city" -in.city "KS, Lawrence" "KS, Lawrence census-designated city" -in.city "KS, Lenexa" "KS, Lenexa census-designated city" -in.city "KS, Manhattan" "KS, Manhattan census-designated city" -in.city "KS, Olathe" "KS, Olathe census-designated city" -in.city "KS, Overland Park" "KS, Overland Park census-designated city" -in.city "KS, Salina" "KS, Salina census-designated city" -in.city "KS, Shawnee" "KS, Shawnee census-designated city" -in.city "KS, Topeka" "KS, Topeka census-designated city" -in.city "KS, Wichita" "KS, Wichita census-designated city" -in.city "KY, Bowling Green" "KY, Bowling Green census-designated city" -in.city "KY, Covington" "KY, Covington census-designated city" -in.city "KY, Lexington-Fayette" "KY, Lexington-Fayette census-designated city" -in.city "KY, Louisville Jefferson County Metro Government Balance" "KY, Louisville Jefferson County Metro Government Balance census-designated city" -in.city "KY, Owensboro" "KY, Owensboro census-designated city" -in.city "LA, Alexandria" "LA, Alexandria census-designated city" -in.city "LA, Baton Rouge" "LA, Baton Rouge census-designated city" -in.city "LA, Bossier City" "LA, Bossier City census-designated city" -in.city "LA, Kenner" "LA, Kenner census-designated city" -in.city "LA, Lafayette" "LA, Lafayette census-designated city" -in.city "LA, Lake Charles" "LA, Lake Charles census-designated city" -in.city "LA, Metairie" "LA, Metairie census-designated city" -in.city "LA, Monroe" "LA, Monroe census-designated city" -in.city "LA, New Orleans" "LA, New Orleans census-designated city" -in.city "LA, Shreveport" "LA, Shreveport census-designated city" -in.city "MA, Arlington" "MA, Arlington census-designated city" -in.city "MA, Attleboro" "MA, Attleboro census-designated city" -in.city "MA, Barnstable Town" "MA, Barnstable Town census-designated city" -in.city "MA, Beverly" "MA, Beverly census-designated city" -in.city "MA, Boston" "MA, Boston census-designated city" -in.city "MA, Brockton" "MA, Brockton census-designated city" -in.city "MA, Brookline" "MA, Brookline census-designated city" -in.city "MA, Cambridge" "MA, Cambridge census-designated city" -in.city "MA, Chicopee" "MA, Chicopee census-designated city" -in.city "MA, Everett" "MA, Everett census-designated city" -in.city "MA, Fall River" "MA, Fall River census-designated city" -in.city "MA, Fitchburg" "MA, Fitchburg census-designated city" -in.city "MA, Framingham" "MA, Framingham census-designated city" -in.city "MA, Haverhill" "MA, Haverhill census-designated city" -in.city "MA, Holyoke" "MA, Holyoke census-designated city" -in.city "MA, Lawrence" "MA, Lawrence census-designated city" -in.city "MA, Leominster" "MA, Leominster census-designated city" -in.city "MA, Lowell" "MA, Lowell census-designated city" -in.city "MA, Lynn" "MA, Lynn census-designated city" -in.city "MA, Malden" "MA, Malden census-designated city" -in.city "MA, Marlborough" "MA, Marlborough census-designated city" -in.city "MA, Medford" "MA, Medford census-designated city" -in.city "MA, Methuen Town" "MA, Methuen Town census-designated city" -in.city "MA, New Bedford" "MA, New Bedford census-designated city" -in.city "MA, Newton" "MA, Newton census-designated city" -in.city "MA, Peabody" "MA, Peabody census-designated city" -in.city "MA, Pittsfield" "MA, Pittsfield census-designated city" -in.city "MA, Quincy" "MA, Quincy census-designated city" -in.city "MA, Revere" "MA, Revere census-designated city" -in.city "MA, Salem" "MA, Salem census-designated city" -in.city "MA, Somerville" "MA, Somerville census-designated city" -in.city "MA, Springfield" "MA, Springfield census-designated city" -in.city "MA, Taunton" "MA, Taunton census-designated city" -in.city "MA, Waltham" "MA, Waltham census-designated city" -in.city "MA, Watertown Town" "MA, Watertown Town census-designated city" -in.city "MA, Westfield" "MA, Westfield census-designated city" -in.city "MA, Weymouth Town" "MA, Weymouth Town census-designated city" -in.city "MA, Woburn" "MA, Woburn census-designated city" -in.city "MA, Worcester" "MA, Worcester census-designated city" -in.city "MD, Annapolis" "MD, Annapolis census-designated city" -in.city "MD, Aspen Hill" "MD, Aspen Hill census-designated city" -in.city "MD, Baltimore" "MD, Baltimore census-designated city" -in.city "MD, Bel Air South" "MD, Bel Air South census-designated city" -in.city "MD, Bethesda" "MD, Bethesda census-designated city" -in.city "MD, Bowie" "MD, Bowie census-designated city" -in.city "MD, Catonsville" "MD, Catonsville census-designated city" -in.city "MD, Columbia" "MD, Columbia census-designated city" -in.city "MD, Dundalk" "MD, Dundalk census-designated city" -in.city "MD, Ellicott City" "MD, Ellicott City census-designated city" -in.city "MD, Essex" "MD, Essex census-designated city" -in.city "MD, Frederick" "MD, Frederick census-designated city" -in.city "MD, Gaithersburg" "MD, Gaithersburg census-designated city" -in.city "MD, Germantown" "MD, Germantown census-designated city" -in.city "MD, Glen Burnie" "MD, Glen Burnie census-designated city" -in.city "MD, Hagerstown" "MD, Hagerstown census-designated city" -in.city "MD, North Bethesda" "MD, North Bethesda census-designated city" -in.city "MD, Ocean City" "MD, Ocean City census-designated city" -in.city "MD, Odenton" "MD, Odenton census-designated city" -in.city "MD, Potomac" "MD, Potomac census-designated city" -in.city "MD, Rockville" "MD, Rockville census-designated city" -in.city "MD, Severn" "MD, Severn census-designated city" -in.city "MD, Silver Spring" "MD, Silver Spring census-designated city" -in.city "MD, Towson" "MD, Towson census-designated city" -in.city "MD, Waldorf" "MD, Waldorf census-designated city" -in.city "MD, Wheaton" "MD, Wheaton census-designated city" -in.city "MD, Woodlawn" "MD, Woodlawn census-designated city" -in.city "ME, Bangor" "ME, Bangor census-designated city" -in.city "ME, Lewiston" "ME, Lewiston census-designated city" -in.city "ME, Portland" "ME, Portland census-designated city" -in.city "MI, Ann Arbor" "MI, Ann Arbor census-designated city" -in.city "MI, Battle Creek" "MI, Battle Creek census-designated city" -in.city "MI, Bay City" "MI, Bay City census-designated city" -in.city "MI, Dearborn" "MI, Dearborn census-designated city" -in.city "MI, Dearborn Heights" "MI, Dearborn Heights census-designated city" -in.city "MI, Detroit" "MI, Detroit census-designated city" -in.city "MI, Farmington Hills" "MI, Farmington Hills census-designated city" -in.city "MI, Flint" "MI, Flint census-designated city" -in.city "MI, Grand Rapids" "MI, Grand Rapids census-designated city" -in.city "MI, Jackson" "MI, Jackson census-designated city" -in.city "MI, Kalamazoo" "MI, Kalamazoo census-designated city" -in.city "MI, Kentwood" "MI, Kentwood census-designated city" -in.city "MI, Lansing" "MI, Lansing census-designated city" -in.city "MI, Lincoln Park" "MI, Lincoln Park census-designated city" -in.city "MI, Livonia" "MI, Livonia census-designated city" -in.city "MI, Midland" "MI, Midland census-designated city" -in.city "MI, Muskegon" "MI, Muskegon census-designated city" -in.city "MI, Novi" "MI, Novi census-designated city" -in.city "MI, Pontiac" "MI, Pontiac census-designated city" -in.city "MI, Portage" "MI, Portage census-designated city" -in.city "MI, Rochester Hills" "MI, Rochester Hills census-designated city" -in.city "MI, Roseville" "MI, Roseville census-designated city" -in.city "MI, Royal Oak" "MI, Royal Oak census-designated city" -in.city "MI, Saginaw" "MI, Saginaw census-designated city" -in.city "MI, Southfield" "MI, Southfield census-designated city" -in.city "MI, St Clair Shores" "MI, St Clair Shores census-designated city" -in.city "MI, Sterling Heights" "MI, Sterling Heights census-designated city" -in.city "MI, Taylor" "MI, Taylor census-designated city" -in.city "MI, Troy" "MI, Troy census-designated city" -in.city "MI, Warren" "MI, Warren census-designated city" -in.city "MI, Westland" "MI, Westland census-designated city" -in.city "MI, Wyoming" "MI, Wyoming census-designated city" -in.city "MN, Apple Valley" "MN, Apple Valley census-designated city" -in.city "MN, Blaine" "MN, Blaine census-designated city" -in.city "MN, Bloomington" "MN, Bloomington census-designated city" -in.city "MN, Brooklyn Park" "MN, Brooklyn Park census-designated city" -in.city "MN, Burnsville" "MN, Burnsville census-designated city" -in.city "MN, Coon Rapids" "MN, Coon Rapids census-designated city" -in.city "MN, Duluth" "MN, Duluth census-designated city" -in.city "MN, Eagan" "MN, Eagan census-designated city" -in.city "MN, Eden Prairie" "MN, Eden Prairie census-designated city" -in.city "MN, Edina" "MN, Edina census-designated city" -in.city "MN, Lakeville" "MN, Lakeville census-designated city" -in.city "MN, Mankato" "MN, Mankato census-designated city" -in.city "MN, Maple Grove" "MN, Maple Grove census-designated city" -in.city "MN, Maplewood" "MN, Maplewood census-designated city" -in.city "MN, Minneapolis" "MN, Minneapolis census-designated city" -in.city "MN, Minnetonka" "MN, Minnetonka census-designated city" -in.city "MN, Moorhead" "MN, Moorhead census-designated city" -in.city "MN, Plymouth" "MN, Plymouth census-designated city" -in.city "MN, Richfield" "MN, Richfield census-designated city" -in.city "MN, Rochester" "MN, Rochester census-designated city" -in.city "MN, Roseville" "MN, Roseville census-designated city" -in.city "MN, St Cloud" "MN, St Cloud census-designated city" -in.city "MN, St Louis Park" "MN, St Louis Park census-designated city" -in.city "MN, St Paul" "MN, St Paul census-designated city" -in.city "MN, Woodbury" "MN, Woodbury census-designated city" -in.city "MO, Blue Springs" "MO, Blue Springs census-designated city" -in.city "MO, Cape Girardeau" "MO, Cape Girardeau census-designated city" -in.city "MO, Chesterfield" "MO, Chesterfield census-designated city" -in.city "MO, Columbia" "MO, Columbia census-designated city" -in.city "MO, Florissant" "MO, Florissant census-designated city" -in.city "MO, Independence" "MO, Independence census-designated city" -in.city "MO, Jefferson City" "MO, Jefferson City census-designated city" -in.city "MO, Joplin" "MO, Joplin census-designated city" -in.city "MO, Kansas City" "MO, Kansas City census-designated city" -in.city "MO, Lees Summit" "MO, Lees Summit census-designated city" -in.city "MO, Ofallon" "MO, Ofallon census-designated city" -in.city "MO, Springfield" "MO, Springfield census-designated city" -in.city "MO, St Charles" "MO, St Charles census-designated city" -in.city "MO, St Joseph" "MO, St Joseph census-designated city" -in.city "MO, St Louis" "MO, St Louis census-designated city" -in.city "MO, St Peters" "MO, St Peters census-designated city" -in.city "MO, University City" "MO, University City census-designated city" -in.city "MS, Biloxi" "MS, Biloxi census-designated city" -in.city "MS, Gulfport" "MS, Gulfport census-designated city" -in.city "MS, Hattiesburg" "MS, Hattiesburg census-designated city" -in.city "MS, Jackson" "MS, Jackson census-designated city" -in.city "MS, Meridian" "MS, Meridian census-designated city" -in.city "MS, Southaven" "MS, Southaven census-designated city" -in.city "MS, Tupelo" "MS, Tupelo census-designated city" -in.city "MT, Billings" "MT, Billings census-designated city" -in.city "MT, Bozeman" "MT, Bozeman census-designated city" -in.city "MT, Butte-Silver Bow Balance" "MT, Butte-Silver Bow Balance census-designated city" -in.city "MT, Great Falls" "MT, Great Falls census-designated city" -in.city "MT, Missoula" "MT, Missoula census-designated city" -in.city "NC, Asheville" "NC, Asheville census-designated city" -in.city "NC, Burlington" "NC, Burlington census-designated city" -in.city "NC, Cary" "NC, Cary census-designated city" -in.city "NC, Chapel Hill" "NC, Chapel Hill census-designated city" -in.city "NC, Charlotte" "NC, Charlotte census-designated city" -in.city "NC, Concord" "NC, Concord census-designated city" -in.city "NC, Durham" "NC, Durham census-designated city" -in.city "NC, Fayetteville" "NC, Fayetteville census-designated city" -in.city "NC, Gastonia" "NC, Gastonia census-designated city" -in.city "NC, Goldsboro" "NC, Goldsboro census-designated city" -in.city "NC, Greensboro" "NC, Greensboro census-designated city" -in.city "NC, Greenville" "NC, Greenville census-designated city" -in.city "NC, Hickory" "NC, Hickory census-designated city" -in.city "NC, High Point" "NC, High Point census-designated city" -in.city "NC, Huntersville" "NC, Huntersville census-designated city" -in.city "NC, Jacksonville" "NC, Jacksonville census-designated city" -in.city "NC, Kannapolis" "NC, Kannapolis census-designated city" -in.city "NC, Raleigh" "NC, Raleigh census-designated city" -in.city "NC, Rocky Mount" "NC, Rocky Mount census-designated city" -in.city "NC, Wilmington" "NC, Wilmington census-designated city" -in.city "NC, Wilson" "NC, Wilson census-designated city" -in.city "NC, Winston-Salem" "NC, Winston-Salem census-designated city" -in.city "ND, Bismarck" "ND, Bismarck census-designated city" -in.city "ND, Fargo" "ND, Fargo census-designated city" -in.city "ND, Grand Forks" "ND, Grand Forks census-designated city" -in.city "ND, Minot" "ND, Minot census-designated city" -in.city "NE, Bellevue" "NE, Bellevue census-designated city" -in.city "NE, Grand Island" "NE, Grand Island census-designated city" -in.city "NE, Lincoln" "NE, Lincoln census-designated city" -in.city "NE, Omaha" "NE, Omaha census-designated city" -in.city "NH, Concord" "NH, Concord census-designated city" -in.city "NH, Manchester" "NH, Manchester census-designated city" -in.city "NH, Nashua" "NH, Nashua census-designated city" -in.city "NJ, Atlantic City" "NJ, Atlantic City census-designated city" -in.city "NJ, Bayonne" "NJ, Bayonne census-designated city" -in.city "NJ, Camden" "NJ, Camden census-designated city" -in.city "NJ, Clifton" "NJ, Clifton census-designated city" -in.city "NJ, East Orange" "NJ, East Orange census-designated city" -in.city "NJ, Elizabeth" "NJ, Elizabeth census-designated city" -in.city "NJ, Fort Lee" "NJ, Fort Lee census-designated city" -in.city "NJ, Hackensack" "NJ, Hackensack census-designated city" -in.city "NJ, Hoboken" "NJ, Hoboken census-designated city" -in.city "NJ, Jersey City" "NJ, Jersey City census-designated city" -in.city "NJ, Linden" "NJ, Linden census-designated city" -in.city "NJ, New Brunswick" "NJ, New Brunswick census-designated city" -in.city "NJ, Newark" "NJ, Newark census-designated city" -in.city "NJ, Ocean City" "NJ, Ocean City census-designated city" -in.city "NJ, Passaic" "NJ, Passaic census-designated city" -in.city "NJ, Paterson" "NJ, Paterson census-designated city" -in.city "NJ, Perth Amboy" "NJ, Perth Amboy census-designated city" -in.city "NJ, Plainfield" "NJ, Plainfield census-designated city" -in.city "NJ, Sayreville" "NJ, Sayreville census-designated city" -in.city "NJ, Toms River" "NJ, Toms River census-designated city" -in.city "NJ, Trenton" "NJ, Trenton census-designated city" -in.city "NJ, Union City" "NJ, Union City census-designated city" -in.city "NJ, Vineland" "NJ, Vineland census-designated city" -in.city "NJ, West New York" "NJ, West New York census-designated city" -in.city "NM, Albuquerque" "NM, Albuquerque census-designated city" -in.city "NM, Clovis" "NM, Clovis census-designated city" -in.city "NM, Farmington" "NM, Farmington census-designated city" -in.city "NM, Las Cruces" "NM, Las Cruces census-designated city" -in.city "NM, Rio Rancho" "NM, Rio Rancho census-designated city" -in.city "NM, Roswell" "NM, Roswell census-designated city" -in.city "NM, Santa Fe" "NM, Santa Fe census-designated city" -in.city "NM, South Valley" "NM, South Valley census-designated city" -in.city "NV, Carson City" "NV, Carson City census-designated city" -in.city "NV, Enterprise" "NV, Enterprise census-designated city" -in.city "NV, Henderson" "NV, Henderson census-designated city" -in.city "NV, Las Vegas" "NV, Las Vegas census-designated city" -in.city "NV, North Las Vegas" "NV, North Las Vegas census-designated city" -in.city "NV, Pahrump" "NV, Pahrump census-designated city" -in.city "NV, Paradise" "NV, Paradise census-designated city" -in.city "NV, Reno" "NV, Reno census-designated city" -in.city "NV, Sparks" "NV, Sparks census-designated city" -in.city "NV, Spring Valley" "NV, Spring Valley census-designated city" -in.city "NV, Sunrise Manor" "NV, Sunrise Manor census-designated city" -in.city "NV, Whitney" "NV, Whitney census-designated city" -in.city "NY, Albany" "NY, Albany census-designated city" -in.city "NY, Binghamton" "NY, Binghamton census-designated city" -in.city "NY, Brighton" "NY, Brighton census-designated city" -in.city "NY, Buffalo" "NY, Buffalo census-designated city" -in.city "NY, Cheektowaga" "NY, Cheektowaga census-designated city" -in.city "NY, Coram" "NY, Coram census-designated city" -in.city "NY, Hempstead" "NY, Hempstead census-designated city" -in.city "NY, Irondequoit" "NY, Irondequoit census-designated city" -in.city "NY, Levittown" "NY, Levittown census-designated city" -in.city "NY, Long Beach" "NY, Long Beach census-designated city" -in.city "NY, Mount Vernon" "NY, Mount Vernon census-designated city" -in.city "NY, New Rochelle" "NY, New Rochelle census-designated city" -in.city "NY, New York" "NY, New York census-designated city" -in.city "NY, Niagara Falls" "NY, Niagara Falls census-designated city" -in.city "NY, Rochester" "NY, Rochester census-designated city" -in.city "NY, Rome" "NY, Rome census-designated city" -in.city "NY, Schenectady" "NY, Schenectady census-designated city" -in.city "NY, Syracuse" "NY, Syracuse census-designated city" -in.city "NY, Tonawanda" "NY, Tonawanda census-designated city" -in.city "NY, Troy" "NY, Troy census-designated city" -in.city "NY, Utica" "NY, Utica census-designated city" -in.city "NY, West Seneca" "NY, West Seneca census-designated city" -in.city "NY, White Plains" "NY, White Plains census-designated city" -in.city "NY, Yonkers" "NY, Yonkers census-designated city" -in.city Not in a census Place Not in a census Place census-designated city -in.city "OH, Akron" "OH, Akron census-designated city" -in.city "OH, Beavercreek" "OH, Beavercreek census-designated city" -in.city "OH, Boardman" "OH, Boardman census-designated city" -in.city "OH, Canton" "OH, Canton census-designated city" -in.city "OH, Cincinnati" "OH, Cincinnati census-designated city" -in.city "OH, Cleveland" "OH, Cleveland census-designated city" -in.city "OH, Cleveland Heights" "OH, Cleveland Heights census-designated city" -in.city "OH, Columbus" "OH, Columbus census-designated city" -in.city "OH, Cuyahoga Falls" "OH, Cuyahoga Falls census-designated city" -in.city "OH, Dayton" "OH, Dayton census-designated city" -in.city "OH, Delaware" "OH, Delaware census-designated city" -in.city "OH, Dublin" "OH, Dublin census-designated city" -in.city "OH, Elyria" "OH, Elyria census-designated city" -in.city "OH, Euclid" "OH, Euclid census-designated city" -in.city "OH, Fairborn" "OH, Fairborn census-designated city" -in.city "OH, Fairfield" "OH, Fairfield census-designated city" -in.city "OH, Findlay" "OH, Findlay census-designated city" -in.city "OH, Grove City" "OH, Grove City census-designated city" -in.city "OH, Hamilton" "OH, Hamilton census-designated city" -in.city "OH, Huber Heights" "OH, Huber Heights census-designated city" -in.city "OH, Kettering" "OH, Kettering census-designated city" -in.city "OH, Lakewood" "OH, Lakewood census-designated city" -in.city "OH, Lancaster" "OH, Lancaster census-designated city" -in.city "OH, Lima" "OH, Lima census-designated city" -in.city "OH, Lorain" "OH, Lorain census-designated city" -in.city "OH, Mansfield" "OH, Mansfield census-designated city" -in.city "OH, Marion" "OH, Marion census-designated city" -in.city "OH, Mentor" "OH, Mentor census-designated city" -in.city "OH, Middletown" "OH, Middletown census-designated city" -in.city "OH, Newark" "OH, Newark census-designated city" -in.city "OH, Parma" "OH, Parma census-designated city" -in.city "OH, Springfield" "OH, Springfield census-designated city" -in.city "OH, Stow" "OH, Stow census-designated city" -in.city "OH, Strongsville" "OH, Strongsville census-designated city" -in.city "OH, Toledo" "OH, Toledo census-designated city" -in.city "OH, Warren" "OH, Warren census-designated city" -in.city "OH, Youngstown" "OH, Youngstown census-designated city" -in.city "OK, Bartlesville" "OK, Bartlesville census-designated city" -in.city "OK, Broken Arrow" "OK, Broken Arrow census-designated city" -in.city "OK, Edmond" "OK, Edmond census-designated city" -in.city "OK, Enid" "OK, Enid census-designated city" -in.city "OK, Lawton" "OK, Lawton census-designated city" -in.city "OK, Midwest City" "OK, Midwest City census-designated city" -in.city "OK, Moore" "OK, Moore census-designated city" -in.city "OK, Muskogee" "OK, Muskogee census-designated city" -in.city "OK, Norman" "OK, Norman census-designated city" -in.city "OK, Oklahoma City" "OK, Oklahoma City census-designated city" -in.city "OK, Stillwater" "OK, Stillwater census-designated city" -in.city "OK, Tulsa" "OK, Tulsa census-designated city" -in.city "OR, Albany" "OR, Albany census-designated city" -in.city "OR, Aloha" "OR, Aloha census-designated city" -in.city "OR, Beaverton" "OR, Beaverton census-designated city" -in.city "OR, Bend" "OR, Bend census-designated city" -in.city "OR, Corvallis" "OR, Corvallis census-designated city" -in.city "OR, Eugene" "OR, Eugene census-designated city" -in.city "OR, Grants Pass" "OR, Grants Pass census-designated city" -in.city "OR, Gresham" "OR, Gresham census-designated city" -in.city "OR, Hillsboro" "OR, Hillsboro census-designated city" -in.city "OR, Lake Oswego" "OR, Lake Oswego census-designated city" -in.city "OR, Medford" "OR, Medford census-designated city" -in.city "OR, Portland" "OR, Portland census-designated city" -in.city "OR, Salem" "OR, Salem census-designated city" -in.city "OR, Springfield" "OR, Springfield census-designated city" -in.city "OR, Tigard" "OR, Tigard census-designated city" -in.city "PA, Allentown" "PA, Allentown census-designated city" -in.city "PA, Altoona" "PA, Altoona census-designated city" -in.city "PA, Bethlehem" "PA, Bethlehem census-designated city" -in.city "PA, Erie" "PA, Erie census-designated city" -in.city "PA, Harrisburg" "PA, Harrisburg census-designated city" -in.city "PA, Lancaster" "PA, Lancaster census-designated city" -in.city "PA, Levittown" "PA, Levittown census-designated city" -in.city "PA, Philadelphia" "PA, Philadelphia census-designated city" -in.city "PA, Pittsburgh" "PA, Pittsburgh census-designated city" -in.city "PA, Reading" "PA, Reading census-designated city" -in.city "PA, Scranton" "PA, Scranton census-designated city" -in.city "PA, Wilkes-Barre" "PA, Wilkes-Barre census-designated city" -in.city "PA, York" "PA, York census-designated city" -in.city "RI, Cranston" "RI, Cranston census-designated city" -in.city "RI, East Providence" "RI, East Providence census-designated city" -in.city "RI, Pawtucket" "RI, Pawtucket census-designated city" -in.city "RI, Providence" "RI, Providence census-designated city" -in.city "RI, Warwick" "RI, Warwick census-designated city" -in.city "RI, Woonsocket" "RI, Woonsocket census-designated city" -in.city "SC, Charleston" "SC, Charleston census-designated city" -in.city "SC, Columbia" "SC, Columbia census-designated city" -in.city "SC, Florence" "SC, Florence census-designated city" -in.city "SC, Goose Creek" "SC, Goose Creek census-designated city" -in.city "SC, Greenville" "SC, Greenville census-designated city" -in.city "SC, Hilton Head Island" "SC, Hilton Head Island census-designated city" -in.city "SC, Mount Pleasant" "SC, Mount Pleasant census-designated city" -in.city "SC, Myrtle Beach" "SC, Myrtle Beach census-designated city" -in.city "SC, North Charleston" "SC, North Charleston census-designated city" -in.city "SC, North Myrtle Beach" "SC, North Myrtle Beach census-designated city" -in.city "SC, Rock Hill" "SC, Rock Hill census-designated city" -in.city "SC, Spartanburg" "SC, Spartanburg census-designated city" -in.city "SC, Summerville" "SC, Summerville census-designated city" -in.city "SC, Sumter" "SC, Sumter census-designated city" -in.city "SD, Rapid City" "SD, Rapid City census-designated city" -in.city "SD, Sioux Falls" "SD, Sioux Falls census-designated city" -in.city "TN, Bartlett" "TN, Bartlett census-designated city" -in.city "TN, Chattanooga" "TN, Chattanooga census-designated city" -in.city "TN, Clarksville" "TN, Clarksville census-designated city" -in.city "TN, Cleveland" "TN, Cleveland census-designated city" -in.city "TN, Collierville" "TN, Collierville census-designated city" -in.city "TN, Columbia" "TN, Columbia census-designated city" -in.city "TN, Franklin" "TN, Franklin census-designated city" -in.city "TN, Germantown" "TN, Germantown census-designated city" -in.city "TN, Hendersonville" "TN, Hendersonville census-designated city" -in.city "TN, Jackson" "TN, Jackson census-designated city" -in.city "TN, Johnson City" "TN, Johnson City census-designated city" -in.city "TN, Kingsport" "TN, Kingsport census-designated city" -in.city "TN, Knoxville" "TN, Knoxville census-designated city" -in.city "TN, Memphis" "TN, Memphis census-designated city" -in.city "TN, Murfreesboro" "TN, Murfreesboro census-designated city" -in.city "TN, Nashville-Davidson Metropolitan Government Balance" "TN, Nashville-Davidson Metropolitan Government Balance census-designated city" -in.city "TN, Smyrna" "TN, Smyrna census-designated city" -in.city "TX, Abilene" "TX, Abilene census-designated city" -in.city "TX, Allen" "TX, Allen census-designated city" -in.city "TX, Amarillo" "TX, Amarillo census-designated city" -in.city "TX, Arlington" "TX, Arlington census-designated city" -in.city "TX, Atascocita" "TX, Atascocita census-designated city" -in.city "TX, Austin" "TX, Austin census-designated city" -in.city "TX, Baytown" "TX, Baytown census-designated city" -in.city "TX, Beaumont" "TX, Beaumont census-designated city" -in.city "TX, Bedford" "TX, Bedford census-designated city" -in.city "TX, Brownsville" "TX, Brownsville census-designated city" -in.city "TX, Bryan" "TX, Bryan census-designated city" -in.city "TX, Burleson" "TX, Burleson census-designated city" -in.city "TX, Carrollton" "TX, Carrollton census-designated city" -in.city "TX, Cedar Hill" "TX, Cedar Hill census-designated city" -in.city "TX, Cedar Park" "TX, Cedar Park census-designated city" -in.city "TX, College Station" "TX, College Station census-designated city" -in.city "TX, Conroe" "TX, Conroe census-designated city" -in.city "TX, Coppell" "TX, Coppell census-designated city" -in.city "TX, Corpus Christi" "TX, Corpus Christi census-designated city" -in.city "TX, Dallas" "TX, Dallas census-designated city" -in.city "TX, Denton" "TX, Denton census-designated city" -in.city "TX, Desoto" "TX, Desoto census-designated city" -in.city "TX, Edinburg" "TX, Edinburg census-designated city" -in.city "TX, El Paso" "TX, El Paso census-designated city" -in.city "TX, Euless" "TX, Euless census-designated city" -in.city "TX, Flower Mound" "TX, Flower Mound census-designated city" -in.city "TX, Fort Worth" "TX, Fort Worth census-designated city" -in.city "TX, Frisco" "TX, Frisco census-designated city" -in.city "TX, Galveston" "TX, Galveston census-designated city" -in.city "TX, Garland" "TX, Garland census-designated city" -in.city "TX, Georgetown" "TX, Georgetown census-designated city" -in.city "TX, Grand Prairie" "TX, Grand Prairie census-designated city" -in.city "TX, Grapevine" "TX, Grapevine census-designated city" -in.city "TX, Haltom City" "TX, Haltom City census-designated city" -in.city "TX, Harlingen" "TX, Harlingen census-designated city" -in.city "TX, Houston" "TX, Houston census-designated city" -in.city "TX, Hurst" "TX, Hurst census-designated city" -in.city "TX, Irving" "TX, Irving census-designated city" -in.city "TX, Keller" "TX, Keller census-designated city" -in.city "TX, Killeen" "TX, Killeen census-designated city" -in.city "TX, Laredo" "TX, Laredo census-designated city" -in.city "TX, League City" "TX, League City census-designated city" -in.city "TX, Lewisville" "TX, Lewisville census-designated city" -in.city "TX, Longview" "TX, Longview census-designated city" -in.city "TX, Lubbock" "TX, Lubbock census-designated city" -in.city "TX, Lufkin" "TX, Lufkin census-designated city" -in.city "TX, Mansfield" "TX, Mansfield census-designated city" -in.city "TX, Mcallen" "TX, Mcallen census-designated city" -in.city "TX, Mckinney" "TX, Mckinney census-designated city" -in.city "TX, Mesquite" "TX, Mesquite census-designated city" -in.city "TX, Midland" "TX, Midland census-designated city" -in.city "TX, Mission" "TX, Mission census-designated city" -in.city "TX, Missouri City" "TX, Missouri City census-designated city" -in.city "TX, New Braunfels" "TX, New Braunfels census-designated city" -in.city "TX, North Richland Hills" "TX, North Richland Hills census-designated city" -in.city "TX, Odessa" "TX, Odessa census-designated city" -in.city "TX, Pasadena" "TX, Pasadena census-designated city" -in.city "TX, Pearland" "TX, Pearland census-designated city" -in.city "TX, Pflugerville" "TX, Pflugerville census-designated city" -in.city "TX, Pharr" "TX, Pharr census-designated city" -in.city "TX, Plano" "TX, Plano census-designated city" -in.city "TX, Port Arthur" "TX, Port Arthur census-designated city" -in.city "TX, Richardson" "TX, Richardson census-designated city" -in.city "TX, Round Rock" "TX, Round Rock census-designated city" -in.city "TX, Rowlett" "TX, Rowlett census-designated city" -in.city "TX, San Angelo" "TX, San Angelo census-designated city" -in.city "TX, San Antonio" "TX, San Antonio census-designated city" -in.city "TX, San Marcos" "TX, San Marcos census-designated city" -in.city "TX, Sherman" "TX, Sherman census-designated city" -in.city "TX, Spring" "TX, Spring census-designated city" -in.city "TX, Sugar Land" "TX, Sugar Land census-designated city" -in.city "TX, Temple" "TX, Temple census-designated city" -in.city "TX, Texarkana" "TX, Texarkana census-designated city" -in.city "TX, Texas City" "TX, Texas City census-designated city" -in.city "TX, The Colony" "TX, The Colony census-designated city" -in.city "TX, The Woodlands" "TX, The Woodlands census-designated city" -in.city "TX, Tyler" "TX, Tyler census-designated city" -in.city "TX, Victoria" "TX, Victoria census-designated city" -in.city "TX, Waco" "TX, Waco census-designated city" -in.city "TX, Wichita Falls" "TX, Wichita Falls census-designated city" -in.city "TX, Wylie" "TX, Wylie census-designated city" -in.city "UT, Layton" "UT, Layton census-designated city" -in.city "UT, Lehi" "UT, Lehi census-designated city" -in.city "UT, Logan" "UT, Logan census-designated city" -in.city "UT, Millcreek" "UT, Millcreek census-designated city" -in.city "UT, Murray" "UT, Murray census-designated city" -in.city "UT, Ogden" "UT, Ogden census-designated city" -in.city "UT, Orem" "UT, Orem census-designated city" -in.city "UT, Provo" "UT, Provo census-designated city" -in.city "UT, Salt Lake City" "UT, Salt Lake City census-designated city" -in.city "UT, Sandy" "UT, Sandy census-designated city" -in.city "UT, South Jordan" "UT, South Jordan census-designated city" -in.city "UT, St George" "UT, St George census-designated city" -in.city "UT, Taylorsville" "UT, Taylorsville census-designated city" -in.city "UT, West Jordan" "UT, West Jordan census-designated city" -in.city "UT, West Valley City" "UT, West Valley City census-designated city" -in.city "VA, Alexandria" "VA, Alexandria census-designated city" -in.city "VA, Arlington" "VA, Arlington census-designated city" -in.city "VA, Ashburn" "VA, Ashburn census-designated city" -in.city "VA, Blacksburg" "VA, Blacksburg census-designated city" -in.city "VA, Centreville" "VA, Centreville census-designated city" -in.city "VA, Charlottesville" "VA, Charlottesville census-designated city" -in.city "VA, Chesapeake" "VA, Chesapeake census-designated city" -in.city "VA, Dale City" "VA, Dale City census-designated city" -in.city "VA, Danville" "VA, Danville census-designated city" -in.city "VA, Hampton" "VA, Hampton census-designated city" -in.city "VA, Harrisonburg" "VA, Harrisonburg census-designated city" -in.city "VA, Lake Ridge" "VA, Lake Ridge census-designated city" -in.city "VA, Leesburg" "VA, Leesburg census-designated city" -in.city "VA, Lynchburg" "VA, Lynchburg census-designated city" -in.city "VA, Mclean" "VA, Mclean census-designated city" -in.city "VA, Mechanicsville" "VA, Mechanicsville census-designated city" -in.city "VA, Newport News" "VA, Newport News census-designated city" -in.city "VA, Norfolk" "VA, Norfolk census-designated city" -in.city "VA, Petersburg" "VA, Petersburg census-designated city" -in.city "VA, Portsmouth" "VA, Portsmouth census-designated city" -in.city "VA, Reston" "VA, Reston census-designated city" -in.city "VA, Richmond" "VA, Richmond census-designated city" -in.city "VA, Roanoke" "VA, Roanoke census-designated city" -in.city "VA, Suffolk" "VA, Suffolk census-designated city" -in.city "VA, Tuckahoe" "VA, Tuckahoe census-designated city" -in.city "VA, Virginia Beach" "VA, Virginia Beach census-designated city" -in.city "VT, Burlington" "VT, Burlington census-designated city" -in.city "WA, Auburn" "WA, Auburn census-designated city" -in.city "WA, Bellevue" "WA, Bellevue census-designated city" -in.city "WA, Bellingham" "WA, Bellingham census-designated city" -in.city "WA, Bremerton" "WA, Bremerton census-designated city" -in.city "WA, Edmonds" "WA, Edmonds census-designated city" -in.city "WA, Everett" "WA, Everett census-designated city" -in.city "WA, Federal Way" "WA, Federal Way census-designated city" -in.city "WA, Kennewick" "WA, Kennewick census-designated city" -in.city "WA, Kent" "WA, Kent census-designated city" -in.city "WA, Kirkland" "WA, Kirkland census-designated city" -in.city "WA, Lacey" "WA, Lacey census-designated city" -in.city "WA, Lakewood" "WA, Lakewood census-designated city" -in.city "WA, Longview" "WA, Longview census-designated city" -in.city "WA, Marysville" "WA, Marysville census-designated city" -in.city "WA, Olympia" "WA, Olympia census-designated city" -in.city "WA, Pasco" "WA, Pasco census-designated city" -in.city "WA, Puyallup" "WA, Puyallup census-designated city" -in.city "WA, Redmond" "WA, Redmond census-designated city" -in.city "WA, Renton" "WA, Renton census-designated city" -in.city "WA, Richland" "WA, Richland census-designated city" -in.city "WA, Sammamish" "WA, Sammamish census-designated city" -in.city "WA, Seattle" "WA, Seattle census-designated city" -in.city "WA, Shoreline" "WA, Shoreline census-designated city" -in.city "WA, South Hill" "WA, South Hill census-designated city" -in.city "WA, Spokane" "WA, Spokane census-designated city" -in.city "WA, Spokane Valley" "WA, Spokane Valley census-designated city" -in.city "WA, Tacoma" "WA, Tacoma census-designated city" -in.city "WA, Vancouver" "WA, Vancouver census-designated city" -in.city "WA, Yakima" "WA, Yakima census-designated city" -in.city "WI, Appleton" "WI, Appleton census-designated city" -in.city "WI, Beloit" "WI, Beloit census-designated city" -in.city "WI, Eau Claire" "WI, Eau Claire census-designated city" -in.city "WI, Fond Du Lac" "WI, Fond Du Lac census-designated city" -in.city "WI, Green Bay" "WI, Green Bay census-designated city" -in.city "WI, Greenfield" "WI, Greenfield census-designated city" -in.city "WI, Janesville" "WI, Janesville census-designated city" -in.city "WI, Kenosha" "WI, Kenosha census-designated city" -in.city "WI, La Crosse" "WI, La Crosse census-designated city" -in.city "WI, Madison" "WI, Madison census-designated city" -in.city "WI, Manitowoc" "WI, Manitowoc census-designated city" -in.city "WI, Menomonee Falls" "WI, Menomonee Falls census-designated city" -in.city "WI, Milwaukee" "WI, Milwaukee census-designated city" -in.city "WI, New Berlin" "WI, New Berlin census-designated city" -in.city "WI, Oshkosh" "WI, Oshkosh census-designated city" -in.city "WI, Racine" "WI, Racine census-designated city" -in.city "WI, Sheboygan" "WI, Sheboygan census-designated city" -in.city "WI, Waukesha" "WI, Waukesha census-designated city" -in.city "WI, Wausau" "WI, Wausau census-designated city" -in.city "WI, Wauwatosa" "WI, Wauwatosa census-designated city" -in.city "WI, West Allis" "WI, West Allis census-designated city" -in.city "WV, Charleston" "WV, Charleston census-designated city" -in.city "WV, Huntington" "WV, Huntington census-designated city" -in.city "WV, Parkersburg" "WV, Parkersburg census-designated city" -in.city "WY, Casper" "WY, Casper census-designated city" -in.city "WY, Cheyenne" "WY, Cheyenne census-designated city" -in.clothes_dryer Electric Standard efficiency electric clothes dryer (2.7 CEF) -in.clothes_dryer Gas Standard efficiency gas clothes dryer (2.39 CEF) -in.clothes_dryer None No clothes dryer -in.clothes_dryer Propane Standard efficiency propane clothes dryer (2.39 CEF) -in.clothes_dryer_usage_level 100% Usage The usage of clothes dryer is at 100% the national average -in.clothes_dryer_usage_level 120% Usage The usage of clothes dryer is at 120% the national average -in.clothes_dryer_usage_level 80% Usage The usage of clothes dryer is at 80% the national average -in.clothes_washer EnergyStar EnergyStar clothes washer (2.07 IMEF) -in.clothes_washer None No clothes washer -in.clothes_washer Standard Standard efficiency clothes washer (0.95 IMEF) -in.clothes_washer_presence None Unit does not have a clothes washer -in.clothes_washer_presence Yes Unit has a clothes washer -in.clothes_washer_usage_level 100% Usage The usage of clothes washer is at 100% the national average -in.clothes_washer_usage_level 120% Usage The usage of clothes washer is at 120% the national average -in.clothes_washer_usage_level 80% Usage The usage of clothes washer is at 80% the national average -in.cooking_range Electric Induction Electric induction cooking range -in.cooking_range Electric Resistance Electric resistance cooking range -in.cooking_range Gas Gas resistance cooking range -in.cooking_range None No cooking range -in.cooking_range Propane Propane resistance cooking range -in.cooking_range_usage_level 100% Usage The usage of cooking range is at 100% the national average -in.cooking_range_usage_level 120% Usage The usage of cooking range is at 120% the national average -in.cooking_range_usage_level 80% Usage The usage of cooking range is at 80% the national average -in.cooling_setpoint 60F Base cooling setpoint is 60F before offset is applied -in.cooling_setpoint 62F Base cooling setpoint is 62F before offset is applied -in.cooling_setpoint 65F Base cooling setpoint is 65F before offset is applied -in.cooling_setpoint 67F Base cooling setpoint is 67F before offset is applied -in.cooling_setpoint 68F Base cooling setpoint is 68F before offset is applied -in.cooling_setpoint 70F Base cooling setpoint is 70F before offset is applied -in.cooling_setpoint 72F Base cooling setpoint is 72F before offset is applied -in.cooling_setpoint 75F Base cooling setpoint is 75F before offset is applied -in.cooling_setpoint 76F Base cooling setpoint is 76F before offset is applied -in.cooling_setpoint 78F Base cooling setpoint is 78F before offset is applied -in.cooling_setpoint 80F Base cooling setpoint is 80F before offset is applied -in.cooling_setpoint_has_offset No Cooling setpoint doesn't have offset -in.cooling_setpoint_has_offset Yes Cooling setpoint has offset -in.cooling_setpoint_offset_magnitude 0F The magnitude of cooling setpoint offset is 0F -in.cooling_setpoint_offset_magnitude 2F The magnitude of cooling setpoint offset is 2F -in.cooling_setpoint_offset_magnitude 5F The magnitude of cooling setpoint offset is 5F -in.cooling_setpoint_offset_magnitude 9F The magnitude of cooling setpoint offset is 9F -in.cooling_setpoint_offset_period Day Setup Cooling setpoint schedule is increased during the day (9am to 5pm) -in.cooling_setpoint_offset_period Day Setup +1h "Cooling setpoint schedule is increased during the day, shifted +1 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup +2h "Cooling setpoint schedule is increased during the day, shifted +2 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup +3h "Cooling setpoint schedule is increased during the day, shifted +3 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup +4h "Cooling setpoint schedule is increased during the day, shifted +4 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup +5h "Cooling setpoint schedule is increased during the day, shifted +5 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup -1h "Cooling setpoint schedule is increased during the day, shifted -1 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup -2h "Cooling setpoint schedule is increased during the day, shifted -2 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup -3h "Cooling setpoint schedule is increased during the day, shifted -3 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup -4h "Cooling setpoint schedule is increased during the day, shifted -4 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup -5h "Cooling setpoint schedule is increased during the day, shifted -5 hour from the Day Setup schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback Cooling setpoint schedule is increased during the day (9am to 5pm) and decreased at night (10pm to 7am) -in.cooling_setpoint_offset_period Day Setup and Night Setback +1h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +1 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback +2h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +2 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback +3h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +3 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback +4h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +4 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback +5h "Cooling setpoint schedule is increased during the day and decreased at night, shifted +5 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback -1h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -1 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback -2h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -2 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback -3h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -3 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback -4h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -4 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day Setup and Night Setback -5h "Cooling setpoint schedule is increased during the day and decreased at night, shifted -5 hour from the Day Setup and Night Setback schedule" -in.cooling_setpoint_offset_period Day and Night Setup Cooling setpoint schedule is increased during the day (9am to 5pm) and at night (10pm to 7am) -in.cooling_setpoint_offset_period Day and Night Setup +1h "Cooling setpoint schedule is increased during the day and at night, shifted +1 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup +2h "Cooling setpoint schedule is increased during the day and at night, shifted +2 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup +3h "Cooling setpoint schedule is increased during the day and at night, shifted +3 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup +4h "Cooling setpoint schedule is increased during the day and at night, shifted +4 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup +5h "Cooling setpoint schedule is increased during the day and at night, shifted +5 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup -1h "Cooling setpoint schedule is increased during the day and at night, shifted -1 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup -2h "Cooling setpoint schedule is increased during the day and at night, shifted -2 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup -3h "Cooling setpoint schedule is increased during the day and at night, shifted -3 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup -4h "Cooling setpoint schedule is increased during the day and at night, shifted -4 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Day and Night Setup -5h "Cooling setpoint schedule is increased during the day and at night, shifted -5 hour from the Day and Night Setup schedule" -in.cooling_setpoint_offset_period Night Setback Cooling setpoint schedule is decreased at night (10pm to 7am) -in.cooling_setpoint_offset_period Night Setback +1h "Cooling setpoint schedule is decreased at night, shifted +1 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback +2h "Cooling setpoint schedule is decreased at night, shifted +2 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback +3h "Cooling setpoint schedule is decreased at night, shifted +3 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback +4h "Cooling setpoint schedule is decreased at night, shifted +4 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback +5h "Cooling setpoint schedule is decreased at night, shifted +5 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback -1h "Cooling setpoint schedule is decreased at night, shifted -1 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback -2h "Cooling setpoint schedule is decreased at night, shifted -2 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback -3h "Cooling setpoint schedule is decreased at night, shifted -3 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback -4h "Cooling setpoint schedule is decreased at night, shifted -4 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setback -5h "Cooling setpoint schedule is decreased at night, shifted -5 hour from the Night Setback schedule" -in.cooling_setpoint_offset_period Night Setup Cooling setpoint schedule is increased at night (10pm to 7am) -in.cooling_setpoint_offset_period Night Setup +1h "Cooling setpoint schedule is increased at night, shifted +1 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup +2h "Cooling setpoint schedule is increased at night, shifted +2 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup +3h "Cooling setpoint schedule is increased at night, shifted +3 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup +4h "Cooling setpoint schedule is increased at night, shifted +4 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup +5h "Cooling setpoint schedule is increased at night, shifted +5 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup -1h "Cooling setpoint schedule is increased at night, shifted -1 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup -2h "Cooling setpoint schedule is increased at night, shifted -2 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup -3h "Cooling setpoint schedule is increased at night, shifted -3 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup -4h "Cooling setpoint schedule is increased at night, shifted -4 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period Night Setup -5h "Cooling setpoint schedule is increased at night, shifted -5 hour from the Night Setup schedule" -in.cooling_setpoint_offset_period None No cooling setpoint offset schedule applied -in.cooling_unavailable_days 1 day 1 day in a year cooling is unavailable -in.cooling_unavailable_days 1 month 1 month in a year cooling is unavailable -in.cooling_unavailable_days 1 week 1 week in a year cooling is unavailable -in.cooling_unavailable_days 2 weeks 2 weeks in a year cooling is unavailable -in.cooling_unavailable_days 3 days 3 days in a year cooling is unavailable -in.cooling_unavailable_days 3 months 3 months in a year cooling is unavailable -in.cooling_unavailable_days Never Cooling is available for the whole year -in.cooling_unavailable_days Year round Cooling is unavailable for the whole year -in.cooling_unavailable_period Apr 1 - Apr 1 Cooling is unavailable during Apr 1 - Apr 1 -in.cooling_unavailable_period Apr 1 - Apr 14 Cooling is unavailable during Apr 1 - Apr 14 -in.cooling_unavailable_period Apr 1 - Apr 3 Cooling is unavailable during Apr 1 - Apr 3 -in.cooling_unavailable_period Apr 1 - Apr 30 Cooling is unavailable during Apr 1 - Apr 30 -in.cooling_unavailable_period Apr 1 - Apr 7 Cooling is unavailable during Apr 1 - Apr 7 -in.cooling_unavailable_period Apr 1 - Jun 29 Cooling is unavailable during Apr 1 - Jun 29 -in.cooling_unavailable_period Apr 10 - Apr 10 Cooling is unavailable during Apr 10 - Apr 10 -in.cooling_unavailable_period Apr 10 - Apr 12 Cooling is unavailable during Apr 10 - Apr 12 -in.cooling_unavailable_period Apr 10 - Apr 16 Cooling is unavailable during Apr 10 - Apr 16 -in.cooling_unavailable_period Apr 10 - Apr 23 Cooling is unavailable during Apr 10 - Apr 23 -in.cooling_unavailable_period Apr 10 - Jul 8 Cooling is unavailable during Apr 10 - Jul 8 -in.cooling_unavailable_period Apr 10 - May 9 Cooling is unavailable during Apr 10 - May 9 -in.cooling_unavailable_period Apr 11 - Apr 11 Cooling is unavailable during Apr 11 - Apr 11 -in.cooling_unavailable_period Apr 11 - Apr 13 Cooling is unavailable during Apr 11 - Apr 13 -in.cooling_unavailable_period Apr 11 - Apr 17 Cooling is unavailable during Apr 11 - Apr 17 -in.cooling_unavailable_period Apr 11 - Apr 24 Cooling is unavailable during Apr 11 - Apr 24 -in.cooling_unavailable_period Apr 11 - Jul 9 Cooling is unavailable during Apr 11 - Jul 9 -in.cooling_unavailable_period Apr 11 - May 10 Cooling is unavailable during Apr 11 - May 10 -in.cooling_unavailable_period Apr 12 - Apr 12 Cooling is unavailable during Apr 12 - Apr 12 -in.cooling_unavailable_period Apr 12 - Apr 14 Cooling is unavailable during Apr 12 - Apr 14 -in.cooling_unavailable_period Apr 12 - Apr 18 Cooling is unavailable during Apr 12 - Apr 18 -in.cooling_unavailable_period Apr 12 - Apr 25 Cooling is unavailable during Apr 12 - Apr 25 -in.cooling_unavailable_period Apr 12 - Jul 10 Cooling is unavailable during Apr 12 - Jul 10 -in.cooling_unavailable_period Apr 12 - May 11 Cooling is unavailable during Apr 12 - May 11 -in.cooling_unavailable_period Apr 13 - Apr 13 Cooling is unavailable during Apr 13 - Apr 13 -in.cooling_unavailable_period Apr 13 - Apr 15 Cooling is unavailable during Apr 13 - Apr 15 -in.cooling_unavailable_period Apr 13 - Apr 19 Cooling is unavailable during Apr 13 - Apr 19 -in.cooling_unavailable_period Apr 13 - Apr 26 Cooling is unavailable during Apr 13 - Apr 26 -in.cooling_unavailable_period Apr 13 - Jul 11 Cooling is unavailable during Apr 13 - Jul 11 -in.cooling_unavailable_period Apr 13 - May 12 Cooling is unavailable during Apr 13 - May 12 -in.cooling_unavailable_period Apr 14 - Apr 14 Cooling is unavailable during Apr 14 - Apr 14 -in.cooling_unavailable_period Apr 14 - Apr 16 Cooling is unavailable during Apr 14 - Apr 16 -in.cooling_unavailable_period Apr 14 - Apr 20 Cooling is unavailable during Apr 14 - Apr 20 -in.cooling_unavailable_period Apr 14 - Apr 27 Cooling is unavailable during Apr 14 - Apr 27 -in.cooling_unavailable_period Apr 14 - Jul 12 Cooling is unavailable during Apr 14 - Jul 12 -in.cooling_unavailable_period Apr 14 - May 13 Cooling is unavailable during Apr 14 - May 13 -in.cooling_unavailable_period Apr 15 - Apr 15 Cooling is unavailable during Apr 15 - Apr 15 -in.cooling_unavailable_period Apr 15 - Apr 17 Cooling is unavailable during Apr 15 - Apr 17 -in.cooling_unavailable_period Apr 15 - Apr 21 Cooling is unavailable during Apr 15 - Apr 21 -in.cooling_unavailable_period Apr 15 - Apr 28 Cooling is unavailable during Apr 15 - Apr 28 -in.cooling_unavailable_period Apr 15 - Jul 13 Cooling is unavailable during Apr 15 - Jul 13 -in.cooling_unavailable_period Apr 15 - May 14 Cooling is unavailable during Apr 15 - May 14 -in.cooling_unavailable_period Apr 16 - Apr 16 Cooling is unavailable during Apr 16 - Apr 16 -in.cooling_unavailable_period Apr 16 - Apr 18 Cooling is unavailable during Apr 16 - Apr 18 -in.cooling_unavailable_period Apr 16 - Apr 22 Cooling is unavailable during Apr 16 - Apr 22 -in.cooling_unavailable_period Apr 16 - Apr 29 Cooling is unavailable during Apr 16 - Apr 29 -in.cooling_unavailable_period Apr 16 - Jul 14 Cooling is unavailable during Apr 16 - Jul 14 -in.cooling_unavailable_period Apr 16 - May 15 Cooling is unavailable during Apr 16 - May 15 -in.cooling_unavailable_period Apr 17 - Apr 17 Cooling is unavailable during Apr 17 - Apr 17 -in.cooling_unavailable_period Apr 17 - Apr 19 Cooling is unavailable during Apr 17 - Apr 19 -in.cooling_unavailable_period Apr 17 - Apr 23 Cooling is unavailable during Apr 17 - Apr 23 -in.cooling_unavailable_period Apr 17 - Apr 30 Cooling is unavailable during Apr 17 - Apr 30 -in.cooling_unavailable_period Apr 17 - Jul 15 Cooling is unavailable during Apr 17 - Jul 15 -in.cooling_unavailable_period Apr 17 - May 16 Cooling is unavailable during Apr 17 - May 16 -in.cooling_unavailable_period Apr 18 - Apr 18 Cooling is unavailable during Apr 18 - Apr 18 -in.cooling_unavailable_period Apr 18 - Apr 20 Cooling is unavailable during Apr 18 - Apr 20 -in.cooling_unavailable_period Apr 18 - Apr 24 Cooling is unavailable during Apr 18 - Apr 24 -in.cooling_unavailable_period Apr 18 - Jul 16 Cooling is unavailable during Apr 18 - Jul 16 -in.cooling_unavailable_period Apr 18 - May 1 Cooling is unavailable during Apr 18 - May 1 -in.cooling_unavailable_period Apr 18 - May 17 Cooling is unavailable during Apr 18 - May 17 -in.cooling_unavailable_period Apr 19 - Apr 19 Cooling is unavailable during Apr 19 - Apr 19 -in.cooling_unavailable_period Apr 19 - Apr 21 Cooling is unavailable during Apr 19 - Apr 21 -in.cooling_unavailable_period Apr 19 - Apr 25 Cooling is unavailable during Apr 19 - Apr 25 -in.cooling_unavailable_period Apr 19 - Jul 17 Cooling is unavailable during Apr 19 - Jul 17 -in.cooling_unavailable_period Apr 19 - May 18 Cooling is unavailable during Apr 19 - May 18 -in.cooling_unavailable_period Apr 19 - May 2 Cooling is unavailable during Apr 19 - May 2 -in.cooling_unavailable_period Apr 2 - Apr 15 Cooling is unavailable during Apr 2 - Apr 15 -in.cooling_unavailable_period Apr 2 - Apr 2 Cooling is unavailable during Apr 2 - Apr 2 -in.cooling_unavailable_period Apr 2 - Apr 4 Cooling is unavailable during Apr 2 - Apr 4 -in.cooling_unavailable_period Apr 2 - Apr 8 Cooling is unavailable during Apr 2 - Apr 8 -in.cooling_unavailable_period Apr 2 - Jun 30 Cooling is unavailable during Apr 2 - Jun 30 -in.cooling_unavailable_period Apr 2 - May 1 Cooling is unavailable during Apr 2 - May 1 -in.cooling_unavailable_period Apr 20 - Apr 20 Cooling is unavailable during Apr 20 - Apr 20 -in.cooling_unavailable_period Apr 20 - Apr 22 Cooling is unavailable during Apr 20 - Apr 22 -in.cooling_unavailable_period Apr 20 - Apr 26 Cooling is unavailable during Apr 20 - Apr 26 -in.cooling_unavailable_period Apr 20 - Jul 18 Cooling is unavailable during Apr 20 - Jul 18 -in.cooling_unavailable_period Apr 20 - May 19 Cooling is unavailable during Apr 20 - May 19 -in.cooling_unavailable_period Apr 20 - May 3 Cooling is unavailable during Apr 20 - May 3 -in.cooling_unavailable_period Apr 21 - Apr 21 Cooling is unavailable during Apr 21 - Apr 21 -in.cooling_unavailable_period Apr 21 - Apr 23 Cooling is unavailable during Apr 21 - Apr 23 -in.cooling_unavailable_period Apr 21 - Apr 27 Cooling is unavailable during Apr 21 - Apr 27 -in.cooling_unavailable_period Apr 21 - Jul 19 Cooling is unavailable during Apr 21 - Jul 19 -in.cooling_unavailable_period Apr 21 - May 20 Cooling is unavailable during Apr 21 - May 20 -in.cooling_unavailable_period Apr 21 - May 4 Cooling is unavailable during Apr 21 - May 4 -in.cooling_unavailable_period Apr 22 - Apr 22 Cooling is unavailable during Apr 22 - Apr 22 -in.cooling_unavailable_period Apr 22 - Apr 24 Cooling is unavailable during Apr 22 - Apr 24 -in.cooling_unavailable_period Apr 22 - Apr 28 Cooling is unavailable during Apr 22 - Apr 28 -in.cooling_unavailable_period Apr 22 - Jul 20 Cooling is unavailable during Apr 22 - Jul 20 -in.cooling_unavailable_period Apr 22 - May 21 Cooling is unavailable during Apr 22 - May 21 -in.cooling_unavailable_period Apr 22 - May 5 Cooling is unavailable during Apr 22 - May 5 -in.cooling_unavailable_period Apr 23 - Apr 23 Cooling is unavailable during Apr 23 - Apr 23 -in.cooling_unavailable_period Apr 23 - Apr 25 Cooling is unavailable during Apr 23 - Apr 25 -in.cooling_unavailable_period Apr 23 - Apr 29 Cooling is unavailable during Apr 23 - Apr 29 -in.cooling_unavailable_period Apr 23 - Jul 21 Cooling is unavailable during Apr 23 - Jul 21 -in.cooling_unavailable_period Apr 23 - May 22 Cooling is unavailable during Apr 23 - May 22 -in.cooling_unavailable_period Apr 23 - May 6 Cooling is unavailable during Apr 23 - May 6 -in.cooling_unavailable_period Apr 24 - Apr 24 Cooling is unavailable during Apr 24 - Apr 24 -in.cooling_unavailable_period Apr 24 - Apr 26 Cooling is unavailable during Apr 24 - Apr 26 -in.cooling_unavailable_period Apr 24 - Apr 30 Cooling is unavailable during Apr 24 - Apr 30 -in.cooling_unavailable_period Apr 24 - Jul 22 Cooling is unavailable during Apr 24 - Jul 22 -in.cooling_unavailable_period Apr 24 - May 23 Cooling is unavailable during Apr 24 - May 23 -in.cooling_unavailable_period Apr 24 - May 7 Cooling is unavailable during Apr 24 - May 7 -in.cooling_unavailable_period Apr 25 - Apr 25 Cooling is unavailable during Apr 25 - Apr 25 -in.cooling_unavailable_period Apr 25 - Apr 27 Cooling is unavailable during Apr 25 - Apr 27 -in.cooling_unavailable_period Apr 25 - Jul 23 Cooling is unavailable during Apr 25 - Jul 23 -in.cooling_unavailable_period Apr 25 - May 1 Cooling is unavailable during Apr 25 - May 1 -in.cooling_unavailable_period Apr 25 - May 24 Cooling is unavailable during Apr 25 - May 24 -in.cooling_unavailable_period Apr 25 - May 8 Cooling is unavailable during Apr 25 - May 8 -in.cooling_unavailable_period Apr 26 - Apr 26 Cooling is unavailable during Apr 26 - Apr 26 -in.cooling_unavailable_period Apr 26 - Apr 28 Cooling is unavailable during Apr 26 - Apr 28 -in.cooling_unavailable_period Apr 26 - Jul 24 Cooling is unavailable during Apr 26 - Jul 24 -in.cooling_unavailable_period Apr 26 - May 2 Cooling is unavailable during Apr 26 - May 2 -in.cooling_unavailable_period Apr 26 - May 25 Cooling is unavailable during Apr 26 - May 25 -in.cooling_unavailable_period Apr 26 - May 9 Cooling is unavailable during Apr 26 - May 9 -in.cooling_unavailable_period Apr 27 - Apr 27 Cooling is unavailable during Apr 27 - Apr 27 -in.cooling_unavailable_period Apr 27 - Apr 29 Cooling is unavailable during Apr 27 - Apr 29 -in.cooling_unavailable_period Apr 27 - Jul 25 Cooling is unavailable during Apr 27 - Jul 25 -in.cooling_unavailable_period Apr 27 - May 10 Cooling is unavailable during Apr 27 - May 10 -in.cooling_unavailable_period Apr 27 - May 26 Cooling is unavailable during Apr 27 - May 26 -in.cooling_unavailable_period Apr 27 - May 3 Cooling is unavailable during Apr 27 - May 3 -in.cooling_unavailable_period Apr 28 - Apr 28 Cooling is unavailable during Apr 28 - Apr 28 -in.cooling_unavailable_period Apr 28 - Apr 30 Cooling is unavailable during Apr 28 - Apr 30 -in.cooling_unavailable_period Apr 28 - Jul 26 Cooling is unavailable during Apr 28 - Jul 26 -in.cooling_unavailable_period Apr 28 - May 11 Cooling is unavailable during Apr 28 - May 11 -in.cooling_unavailable_period Apr 28 - May 27 Cooling is unavailable during Apr 28 - May 27 -in.cooling_unavailable_period Apr 28 - May 4 Cooling is unavailable during Apr 28 - May 4 -in.cooling_unavailable_period Apr 29 - Apr 29 Cooling is unavailable during Apr 29 - Apr 29 -in.cooling_unavailable_period Apr 29 - Jul 27 Cooling is unavailable during Apr 29 - Jul 27 -in.cooling_unavailable_period Apr 29 - May 1 Cooling is unavailable during Apr 29 - May 1 -in.cooling_unavailable_period Apr 29 - May 12 Cooling is unavailable during Apr 29 - May 12 -in.cooling_unavailable_period Apr 29 - May 28 Cooling is unavailable during Apr 29 - May 28 -in.cooling_unavailable_period Apr 29 - May 5 Cooling is unavailable during Apr 29 - May 5 -in.cooling_unavailable_period Apr 3 - Apr 16 Cooling is unavailable during Apr 3 - Apr 16 -in.cooling_unavailable_period Apr 3 - Apr 3 Cooling is unavailable during Apr 3 - Apr 3 -in.cooling_unavailable_period Apr 3 - Apr 5 Cooling is unavailable during Apr 3 - Apr 5 -in.cooling_unavailable_period Apr 3 - Apr 9 Cooling is unavailable during Apr 3 - Apr 9 -in.cooling_unavailable_period Apr 3 - Jul 1 Cooling is unavailable during Apr 3 - Jul 1 -in.cooling_unavailable_period Apr 3 - May 2 Cooling is unavailable during Apr 3 - May 2 -in.cooling_unavailable_period Apr 30 - Apr 30 Cooling is unavailable during Apr 30 - Apr 30 -in.cooling_unavailable_period Apr 30 - Jul 28 Cooling is unavailable during Apr 30 - Jul 28 -in.cooling_unavailable_period Apr 30 - May 13 Cooling is unavailable during Apr 30 - May 13 -in.cooling_unavailable_period Apr 30 - May 2 Cooling is unavailable during Apr 30 - May 2 -in.cooling_unavailable_period Apr 30 - May 29 Cooling is unavailable during Apr 30 - May 29 -in.cooling_unavailable_period Apr 30 - May 6 Cooling is unavailable during Apr 30 - May 6 -in.cooling_unavailable_period Apr 4 - Apr 10 Cooling is unavailable during Apr 4 - Apr 10 -in.cooling_unavailable_period Apr 4 - Apr 17 Cooling is unavailable during Apr 4 - Apr 17 -in.cooling_unavailable_period Apr 4 - Apr 4 Cooling is unavailable during Apr 4 - Apr 4 -in.cooling_unavailable_period Apr 4 - Apr 6 Cooling is unavailable during Apr 4 - Apr 6 -in.cooling_unavailable_period Apr 4 - Jul 2 Cooling is unavailable during Apr 4 - Jul 2 -in.cooling_unavailable_period Apr 4 - May 3 Cooling is unavailable during Apr 4 - May 3 -in.cooling_unavailable_period Apr 5 - Apr 11 Cooling is unavailable during Apr 5 - Apr 11 -in.cooling_unavailable_period Apr 5 - Apr 18 Cooling is unavailable during Apr 5 - Apr 18 -in.cooling_unavailable_period Apr 5 - Apr 5 Cooling is unavailable during Apr 5 - Apr 5 -in.cooling_unavailable_period Apr 5 - Apr 7 Cooling is unavailable during Apr 5 - Apr 7 -in.cooling_unavailable_period Apr 5 - Jul 3 Cooling is unavailable during Apr 5 - Jul 3 -in.cooling_unavailable_period Apr 5 - May 4 Cooling is unavailable during Apr 5 - May 4 -in.cooling_unavailable_period Apr 6 - Apr 12 Cooling is unavailable during Apr 6 - Apr 12 -in.cooling_unavailable_period Apr 6 - Apr 19 Cooling is unavailable during Apr 6 - Apr 19 -in.cooling_unavailable_period Apr 6 - Apr 6 Cooling is unavailable during Apr 6 - Apr 6 -in.cooling_unavailable_period Apr 6 - Apr 8 Cooling is unavailable during Apr 6 - Apr 8 -in.cooling_unavailable_period Apr 6 - Jul 4 Cooling is unavailable during Apr 6 - Jul 4 -in.cooling_unavailable_period Apr 6 - May 5 Cooling is unavailable during Apr 6 - May 5 -in.cooling_unavailable_period Apr 7 - Apr 13 Cooling is unavailable during Apr 7 - Apr 13 -in.cooling_unavailable_period Apr 7 - Apr 20 Cooling is unavailable during Apr 7 - Apr 20 -in.cooling_unavailable_period Apr 7 - Apr 7 Cooling is unavailable during Apr 7 - Apr 7 -in.cooling_unavailable_period Apr 7 - Apr 9 Cooling is unavailable during Apr 7 - Apr 9 -in.cooling_unavailable_period Apr 7 - Jul 5 Cooling is unavailable during Apr 7 - Jul 5 -in.cooling_unavailable_period Apr 7 - May 6 Cooling is unavailable during Apr 7 - May 6 -in.cooling_unavailable_period Apr 8 - Apr 10 Cooling is unavailable during Apr 8 - Apr 10 -in.cooling_unavailable_period Apr 8 - Apr 14 Cooling is unavailable during Apr 8 - Apr 14 -in.cooling_unavailable_period Apr 8 - Apr 21 Cooling is unavailable during Apr 8 - Apr 21 -in.cooling_unavailable_period Apr 8 - Apr 8 Cooling is unavailable during Apr 8 - Apr 8 -in.cooling_unavailable_period Apr 8 - Jul 6 Cooling is unavailable during Apr 8 - Jul 6 -in.cooling_unavailable_period Apr 8 - May 7 Cooling is unavailable during Apr 8 - May 7 -in.cooling_unavailable_period Apr 9 - Apr 11 Cooling is unavailable during Apr 9 - Apr 11 -in.cooling_unavailable_period Apr 9 - Apr 15 Cooling is unavailable during Apr 9 - Apr 15 -in.cooling_unavailable_period Apr 9 - Apr 22 Cooling is unavailable during Apr 9 - Apr 22 -in.cooling_unavailable_period Apr 9 - Apr 9 Cooling is unavailable during Apr 9 - Apr 9 -in.cooling_unavailable_period Apr 9 - Jul 7 Cooling is unavailable during Apr 9 - Jul 7 -in.cooling_unavailable_period Apr 9 - May 8 Cooling is unavailable during Apr 9 - May 8 -in.cooling_unavailable_period Aug 1 - Aug 1 Cooling is unavailable during Aug 1 - Aug 1 -in.cooling_unavailable_period Aug 1 - Aug 14 Cooling is unavailable during Aug 1 - Aug 14 -in.cooling_unavailable_period Aug 1 - Aug 3 Cooling is unavailable during Aug 1 - Aug 3 -in.cooling_unavailable_period Aug 1 - Aug 30 Cooling is unavailable during Aug 1 - Aug 30 -in.cooling_unavailable_period Aug 1 - Aug 7 Cooling is unavailable during Aug 1 - Aug 7 -in.cooling_unavailable_period Aug 1 - Oct 29 Cooling is unavailable during Aug 1 - Oct 29 -in.cooling_unavailable_period Aug 10 - Aug 10 Cooling is unavailable during Aug 10 - Aug 10 -in.cooling_unavailable_period Aug 10 - Aug 12 Cooling is unavailable during Aug 10 - Aug 12 -in.cooling_unavailable_period Aug 10 - Aug 16 Cooling is unavailable during Aug 10 - Aug 16 -in.cooling_unavailable_period Aug 10 - Aug 23 Cooling is unavailable during Aug 10 - Aug 23 -in.cooling_unavailable_period Aug 10 - Nov 7 Cooling is unavailable during Aug 10 - Nov 7 -in.cooling_unavailable_period Aug 10 - Sep 8 Cooling is unavailable during Aug 10 - Sep 8 -in.cooling_unavailable_period Aug 11 - Aug 11 Cooling is unavailable during Aug 11 - Aug 11 -in.cooling_unavailable_period Aug 11 - Aug 13 Cooling is unavailable during Aug 11 - Aug 13 -in.cooling_unavailable_period Aug 11 - Aug 17 Cooling is unavailable during Aug 11 - Aug 17 -in.cooling_unavailable_period Aug 11 - Aug 24 Cooling is unavailable during Aug 11 - Aug 24 -in.cooling_unavailable_period Aug 11 - Nov 8 Cooling is unavailable during Aug 11 - Nov 8 -in.cooling_unavailable_period Aug 11 - Sep 9 Cooling is unavailable during Aug 11 - Sep 9 -in.cooling_unavailable_period Aug 12 - Aug 12 Cooling is unavailable during Aug 12 - Aug 12 -in.cooling_unavailable_period Aug 12 - Aug 14 Cooling is unavailable during Aug 12 - Aug 14 -in.cooling_unavailable_period Aug 12 - Aug 18 Cooling is unavailable during Aug 12 - Aug 18 -in.cooling_unavailable_period Aug 12 - Aug 25 Cooling is unavailable during Aug 12 - Aug 25 -in.cooling_unavailable_period Aug 12 - Nov 9 Cooling is unavailable during Aug 12 - Nov 9 -in.cooling_unavailable_period Aug 12 - Sep 10 Cooling is unavailable during Aug 12 - Sep 10 -in.cooling_unavailable_period Aug 13 - Aug 13 Cooling is unavailable during Aug 13 - Aug 13 -in.cooling_unavailable_period Aug 13 - Aug 15 Cooling is unavailable during Aug 13 - Aug 15 -in.cooling_unavailable_period Aug 13 - Aug 19 Cooling is unavailable during Aug 13 - Aug 19 -in.cooling_unavailable_period Aug 13 - Aug 26 Cooling is unavailable during Aug 13 - Aug 26 -in.cooling_unavailable_period Aug 13 - Nov 10 Cooling is unavailable during Aug 13 - Nov 10 -in.cooling_unavailable_period Aug 13 - Sep 11 Cooling is unavailable during Aug 13 - Sep 11 -in.cooling_unavailable_period Aug 14 - Aug 14 Cooling is unavailable during Aug 14 - Aug 14 -in.cooling_unavailable_period Aug 14 - Aug 16 Cooling is unavailable during Aug 14 - Aug 16 -in.cooling_unavailable_period Aug 14 - Aug 20 Cooling is unavailable during Aug 14 - Aug 20 -in.cooling_unavailable_period Aug 14 - Aug 27 Cooling is unavailable during Aug 14 - Aug 27 -in.cooling_unavailable_period Aug 14 - Nov 11 Cooling is unavailable during Aug 14 - Nov 11 -in.cooling_unavailable_period Aug 14 - Sep 12 Cooling is unavailable during Aug 14 - Sep 12 -in.cooling_unavailable_period Aug 15 - Aug 15 Cooling is unavailable during Aug 15 - Aug 15 -in.cooling_unavailable_period Aug 15 - Aug 17 Cooling is unavailable during Aug 15 - Aug 17 -in.cooling_unavailable_period Aug 15 - Aug 21 Cooling is unavailable during Aug 15 - Aug 21 -in.cooling_unavailable_period Aug 15 - Aug 28 Cooling is unavailable during Aug 15 - Aug 28 -in.cooling_unavailable_period Aug 15 - Nov 12 Cooling is unavailable during Aug 15 - Nov 12 -in.cooling_unavailable_period Aug 15 - Sep 13 Cooling is unavailable during Aug 15 - Sep 13 -in.cooling_unavailable_period Aug 16 - Aug 16 Cooling is unavailable during Aug 16 - Aug 16 -in.cooling_unavailable_period Aug 16 - Aug 18 Cooling is unavailable during Aug 16 - Aug 18 -in.cooling_unavailable_period Aug 16 - Aug 22 Cooling is unavailable during Aug 16 - Aug 22 -in.cooling_unavailable_period Aug 16 - Aug 29 Cooling is unavailable during Aug 16 - Aug 29 -in.cooling_unavailable_period Aug 16 - Nov 13 Cooling is unavailable during Aug 16 - Nov 13 -in.cooling_unavailable_period Aug 16 - Sep 14 Cooling is unavailable during Aug 16 - Sep 14 -in.cooling_unavailable_period Aug 17 - Aug 17 Cooling is unavailable during Aug 17 - Aug 17 -in.cooling_unavailable_period Aug 17 - Aug 19 Cooling is unavailable during Aug 17 - Aug 19 -in.cooling_unavailable_period Aug 17 - Aug 23 Cooling is unavailable during Aug 17 - Aug 23 -in.cooling_unavailable_period Aug 17 - Aug 30 Cooling is unavailable during Aug 17 - Aug 30 -in.cooling_unavailable_period Aug 17 - Nov 14 Cooling is unavailable during Aug 17 - Nov 14 -in.cooling_unavailable_period Aug 17 - Sep 15 Cooling is unavailable during Aug 17 - Sep 15 -in.cooling_unavailable_period Aug 18 - Aug 18 Cooling is unavailable during Aug 18 - Aug 18 -in.cooling_unavailable_period Aug 18 - Aug 20 Cooling is unavailable during Aug 18 - Aug 20 -in.cooling_unavailable_period Aug 18 - Aug 24 Cooling is unavailable during Aug 18 - Aug 24 -in.cooling_unavailable_period Aug 18 - Aug 31 Cooling is unavailable during Aug 18 - Aug 31 -in.cooling_unavailable_period Aug 18 - Nov 15 Cooling is unavailable during Aug 18 - Nov 15 -in.cooling_unavailable_period Aug 18 - Sep 16 Cooling is unavailable during Aug 18 - Sep 16 -in.cooling_unavailable_period Aug 19 - Aug 19 Cooling is unavailable during Aug 19 - Aug 19 -in.cooling_unavailable_period Aug 19 - Aug 21 Cooling is unavailable during Aug 19 - Aug 21 -in.cooling_unavailable_period Aug 19 - Aug 25 Cooling is unavailable during Aug 19 - Aug 25 -in.cooling_unavailable_period Aug 19 - Nov 16 Cooling is unavailable during Aug 19 - Nov 16 -in.cooling_unavailable_period Aug 19 - Sep 1 Cooling is unavailable during Aug 19 - Sep 1 -in.cooling_unavailable_period Aug 19 - Sep 17 Cooling is unavailable during Aug 19 - Sep 17 -in.cooling_unavailable_period Aug 2 - Aug 15 Cooling is unavailable during Aug 2 - Aug 15 -in.cooling_unavailable_period Aug 2 - Aug 2 Cooling is unavailable during Aug 2 - Aug 2 -in.cooling_unavailable_period Aug 2 - Aug 31 Cooling is unavailable during Aug 2 - Aug 31 -in.cooling_unavailable_period Aug 2 - Aug 4 Cooling is unavailable during Aug 2 - Aug 4 -in.cooling_unavailable_period Aug 2 - Aug 8 Cooling is unavailable during Aug 2 - Aug 8 -in.cooling_unavailable_period Aug 2 - Oct 30 Cooling is unavailable during Aug 2 - Oct 30 -in.cooling_unavailable_period Aug 20 - Aug 20 Cooling is unavailable during Aug 20 - Aug 20 -in.cooling_unavailable_period Aug 20 - Aug 22 Cooling is unavailable during Aug 20 - Aug 22 -in.cooling_unavailable_period Aug 20 - Aug 26 Cooling is unavailable during Aug 20 - Aug 26 -in.cooling_unavailable_period Aug 20 - Nov 17 Cooling is unavailable during Aug 20 - Nov 17 -in.cooling_unavailable_period Aug 20 - Sep 18 Cooling is unavailable during Aug 20 - Sep 18 -in.cooling_unavailable_period Aug 20 - Sep 2 Cooling is unavailable during Aug 20 - Sep 2 -in.cooling_unavailable_period Aug 21 - Aug 21 Cooling is unavailable during Aug 21 - Aug 21 -in.cooling_unavailable_period Aug 21 - Aug 23 Cooling is unavailable during Aug 21 - Aug 23 -in.cooling_unavailable_period Aug 21 - Aug 27 Cooling is unavailable during Aug 21 - Aug 27 -in.cooling_unavailable_period Aug 21 - Nov 18 Cooling is unavailable during Aug 21 - Nov 18 -in.cooling_unavailable_period Aug 21 - Sep 19 Cooling is unavailable during Aug 21 - Sep 19 -in.cooling_unavailable_period Aug 21 - Sep 3 Cooling is unavailable during Aug 21 - Sep 3 -in.cooling_unavailable_period Aug 22 - Aug 22 Cooling is unavailable during Aug 22 - Aug 22 -in.cooling_unavailable_period Aug 22 - Aug 24 Cooling is unavailable during Aug 22 - Aug 24 -in.cooling_unavailable_period Aug 22 - Aug 28 Cooling is unavailable during Aug 22 - Aug 28 -in.cooling_unavailable_period Aug 22 - Nov 19 Cooling is unavailable during Aug 22 - Nov 19 -in.cooling_unavailable_period Aug 22 - Sep 20 Cooling is unavailable during Aug 22 - Sep 20 -in.cooling_unavailable_period Aug 22 - Sep 4 Cooling is unavailable during Aug 22 - Sep 4 -in.cooling_unavailable_period Aug 23 - Aug 23 Cooling is unavailable during Aug 23 - Aug 23 -in.cooling_unavailable_period Aug 23 - Aug 25 Cooling is unavailable during Aug 23 - Aug 25 -in.cooling_unavailable_period Aug 23 - Aug 29 Cooling is unavailable during Aug 23 - Aug 29 -in.cooling_unavailable_period Aug 23 - Nov 20 Cooling is unavailable during Aug 23 - Nov 20 -in.cooling_unavailable_period Aug 23 - Sep 21 Cooling is unavailable during Aug 23 - Sep 21 -in.cooling_unavailable_period Aug 23 - Sep 5 Cooling is unavailable during Aug 23 - Sep 5 -in.cooling_unavailable_period Aug 24 - Aug 24 Cooling is unavailable during Aug 24 - Aug 24 -in.cooling_unavailable_period Aug 24 - Aug 26 Cooling is unavailable during Aug 24 - Aug 26 -in.cooling_unavailable_period Aug 24 - Aug 30 Cooling is unavailable during Aug 24 - Aug 30 -in.cooling_unavailable_period Aug 24 - Nov 21 Cooling is unavailable during Aug 24 - Nov 21 -in.cooling_unavailable_period Aug 24 - Sep 22 Cooling is unavailable during Aug 24 - Sep 22 -in.cooling_unavailable_period Aug 24 - Sep 6 Cooling is unavailable during Aug 24 - Sep 6 -in.cooling_unavailable_period Aug 25 - Aug 25 Cooling is unavailable during Aug 25 - Aug 25 -in.cooling_unavailable_period Aug 25 - Aug 27 Cooling is unavailable during Aug 25 - Aug 27 -in.cooling_unavailable_period Aug 25 - Aug 31 Cooling is unavailable during Aug 25 - Aug 31 -in.cooling_unavailable_period Aug 25 - Nov 22 Cooling is unavailable during Aug 25 - Nov 22 -in.cooling_unavailable_period Aug 25 - Sep 23 Cooling is unavailable during Aug 25 - Sep 23 -in.cooling_unavailable_period Aug 25 - Sep 7 Cooling is unavailable during Aug 25 - Sep 7 -in.cooling_unavailable_period Aug 26 - Aug 26 Cooling is unavailable during Aug 26 - Aug 26 -in.cooling_unavailable_period Aug 26 - Aug 28 Cooling is unavailable during Aug 26 - Aug 28 -in.cooling_unavailable_period Aug 26 - Nov 23 Cooling is unavailable during Aug 26 - Nov 23 -in.cooling_unavailable_period Aug 26 - Sep 1 Cooling is unavailable during Aug 26 - Sep 1 -in.cooling_unavailable_period Aug 26 - Sep 24 Cooling is unavailable during Aug 26 - Sep 24 -in.cooling_unavailable_period Aug 26 - Sep 8 Cooling is unavailable during Aug 26 - Sep 8 -in.cooling_unavailable_period Aug 27 - Aug 27 Cooling is unavailable during Aug 27 - Aug 27 -in.cooling_unavailable_period Aug 27 - Aug 29 Cooling is unavailable during Aug 27 - Aug 29 -in.cooling_unavailable_period Aug 27 - Nov 24 Cooling is unavailable during Aug 27 - Nov 24 -in.cooling_unavailable_period Aug 27 - Sep 2 Cooling is unavailable during Aug 27 - Sep 2 -in.cooling_unavailable_period Aug 27 - Sep 25 Cooling is unavailable during Aug 27 - Sep 25 -in.cooling_unavailable_period Aug 27 - Sep 9 Cooling is unavailable during Aug 27 - Sep 9 -in.cooling_unavailable_period Aug 28 - Aug 28 Cooling is unavailable during Aug 28 - Aug 28 -in.cooling_unavailable_period Aug 28 - Aug 30 Cooling is unavailable during Aug 28 - Aug 30 -in.cooling_unavailable_period Aug 28 - Nov 25 Cooling is unavailable during Aug 28 - Nov 25 -in.cooling_unavailable_period Aug 28 - Sep 10 Cooling is unavailable during Aug 28 - Sep 10 -in.cooling_unavailable_period Aug 28 - Sep 26 Cooling is unavailable during Aug 28 - Sep 26 -in.cooling_unavailable_period Aug 28 - Sep 3 Cooling is unavailable during Aug 28 - Sep 3 -in.cooling_unavailable_period Aug 29 - Aug 29 Cooling is unavailable during Aug 29 - Aug 29 -in.cooling_unavailable_period Aug 29 - Aug 31 Cooling is unavailable during Aug 29 - Aug 31 -in.cooling_unavailable_period Aug 29 - Nov 26 Cooling is unavailable during Aug 29 - Nov 26 -in.cooling_unavailable_period Aug 29 - Sep 11 Cooling is unavailable during Aug 29 - Sep 11 -in.cooling_unavailable_period Aug 29 - Sep 27 Cooling is unavailable during Aug 29 - Sep 27 -in.cooling_unavailable_period Aug 29 - Sep 4 Cooling is unavailable during Aug 29 - Sep 4 -in.cooling_unavailable_period Aug 3 - Aug 16 Cooling is unavailable during Aug 3 - Aug 16 -in.cooling_unavailable_period Aug 3 - Aug 3 Cooling is unavailable during Aug 3 - Aug 3 -in.cooling_unavailable_period Aug 3 - Aug 5 Cooling is unavailable during Aug 3 - Aug 5 -in.cooling_unavailable_period Aug 3 - Aug 9 Cooling is unavailable during Aug 3 - Aug 9 -in.cooling_unavailable_period Aug 3 - Oct 31 Cooling is unavailable during Aug 3 - Oct 31 -in.cooling_unavailable_period Aug 3 - Sep 1 Cooling is unavailable during Aug 3 - Sep 1 -in.cooling_unavailable_period Aug 30 - Aug 30 Cooling is unavailable during Aug 30 - Aug 30 -in.cooling_unavailable_period Aug 30 - Nov 27 Cooling is unavailable during Aug 30 - Nov 27 -in.cooling_unavailable_period Aug 30 - Sep 1 Cooling is unavailable during Aug 30 - Sep 1 -in.cooling_unavailable_period Aug 30 - Sep 12 Cooling is unavailable during Aug 30 - Sep 12 -in.cooling_unavailable_period Aug 30 - Sep 28 Cooling is unavailable during Aug 30 - Sep 28 -in.cooling_unavailable_period Aug 30 - Sep 5 Cooling is unavailable during Aug 30 - Sep 5 -in.cooling_unavailable_period Aug 31 - Aug 31 Cooling is unavailable during Aug 31 - Aug 31 -in.cooling_unavailable_period Aug 31 - Nov 28 Cooling is unavailable during Aug 31 - Nov 28 -in.cooling_unavailable_period Aug 31 - Sep 13 Cooling is unavailable during Aug 31 - Sep 13 -in.cooling_unavailable_period Aug 31 - Sep 2 Cooling is unavailable during Aug 31 - Sep 2 -in.cooling_unavailable_period Aug 31 - Sep 29 Cooling is unavailable during Aug 31 - Sep 29 -in.cooling_unavailable_period Aug 31 - Sep 6 Cooling is unavailable during Aug 31 - Sep 6 -in.cooling_unavailable_period Aug 4 - Aug 10 Cooling is unavailable during Aug 4 - Aug 10 -in.cooling_unavailable_period Aug 4 - Aug 17 Cooling is unavailable during Aug 4 - Aug 17 -in.cooling_unavailable_period Aug 4 - Aug 4 Cooling is unavailable during Aug 4 - Aug 4 -in.cooling_unavailable_period Aug 4 - Aug 6 Cooling is unavailable during Aug 4 - Aug 6 -in.cooling_unavailable_period Aug 4 - Nov 1 Cooling is unavailable during Aug 4 - Nov 1 -in.cooling_unavailable_period Aug 4 - Sep 2 Cooling is unavailable during Aug 4 - Sep 2 -in.cooling_unavailable_period Aug 5 - Aug 11 Cooling is unavailable during Aug 5 - Aug 11 -in.cooling_unavailable_period Aug 5 - Aug 18 Cooling is unavailable during Aug 5 - Aug 18 -in.cooling_unavailable_period Aug 5 - Aug 5 Cooling is unavailable during Aug 5 - Aug 5 -in.cooling_unavailable_period Aug 5 - Aug 7 Cooling is unavailable during Aug 5 - Aug 7 -in.cooling_unavailable_period Aug 5 - Nov 2 Cooling is unavailable during Aug 5 - Nov 2 -in.cooling_unavailable_period Aug 5 - Sep 3 Cooling is unavailable during Aug 5 - Sep 3 -in.cooling_unavailable_period Aug 6 - Aug 12 Cooling is unavailable during Aug 6 - Aug 12 -in.cooling_unavailable_period Aug 6 - Aug 19 Cooling is unavailable during Aug 6 - Aug 19 -in.cooling_unavailable_period Aug 6 - Aug 6 Cooling is unavailable during Aug 6 - Aug 6 -in.cooling_unavailable_period Aug 6 - Aug 8 Cooling is unavailable during Aug 6 - Aug 8 -in.cooling_unavailable_period Aug 6 - Nov 3 Cooling is unavailable during Aug 6 - Nov 3 -in.cooling_unavailable_period Aug 6 - Sep 4 Cooling is unavailable during Aug 6 - Sep 4 -in.cooling_unavailable_period Aug 7 - Aug 13 Cooling is unavailable during Aug 7 - Aug 13 -in.cooling_unavailable_period Aug 7 - Aug 20 Cooling is unavailable during Aug 7 - Aug 20 -in.cooling_unavailable_period Aug 7 - Aug 7 Cooling is unavailable during Aug 7 - Aug 7 -in.cooling_unavailable_period Aug 7 - Aug 9 Cooling is unavailable during Aug 7 - Aug 9 -in.cooling_unavailable_period Aug 7 - Nov 4 Cooling is unavailable during Aug 7 - Nov 4 -in.cooling_unavailable_period Aug 7 - Sep 5 Cooling is unavailable during Aug 7 - Sep 5 -in.cooling_unavailable_period Aug 8 - Aug 10 Cooling is unavailable during Aug 8 - Aug 10 -in.cooling_unavailable_period Aug 8 - Aug 14 Cooling is unavailable during Aug 8 - Aug 14 -in.cooling_unavailable_period Aug 8 - Aug 21 Cooling is unavailable during Aug 8 - Aug 21 -in.cooling_unavailable_period Aug 8 - Aug 8 Cooling is unavailable during Aug 8 - Aug 8 -in.cooling_unavailable_period Aug 8 - Nov 5 Cooling is unavailable during Aug 8 - Nov 5 -in.cooling_unavailable_period Aug 8 - Sep 6 Cooling is unavailable during Aug 8 - Sep 6 -in.cooling_unavailable_period Aug 9 - Aug 11 Cooling is unavailable during Aug 9 - Aug 11 -in.cooling_unavailable_period Aug 9 - Aug 15 Cooling is unavailable during Aug 9 - Aug 15 -in.cooling_unavailable_period Aug 9 - Aug 22 Cooling is unavailable during Aug 9 - Aug 22 -in.cooling_unavailable_period Aug 9 - Aug 9 Cooling is unavailable during Aug 9 - Aug 9 -in.cooling_unavailable_period Aug 9 - Nov 6 Cooling is unavailable during Aug 9 - Nov 6 -in.cooling_unavailable_period Aug 9 - Sep 7 Cooling is unavailable during Aug 9 - Sep 7 -in.cooling_unavailable_period Dec 1 - Dec 1 Cooling is unavailable during Dec 1 - Dec 1 -in.cooling_unavailable_period Dec 1 - Dec 14 Cooling is unavailable during Dec 1 - Dec 14 -in.cooling_unavailable_period Dec 1 - Dec 3 Cooling is unavailable during Dec 1 - Dec 3 -in.cooling_unavailable_period Dec 1 - Dec 30 Cooling is unavailable during Dec 1 - Dec 30 -in.cooling_unavailable_period Dec 10 - Dec 12 Cooling is unavailable during Dec 10 - Dec 12 -in.cooling_unavailable_period Dec 10 - Mar 9 Cooling is unavailable during Dec 10 - Mar 9 -in.cooling_unavailable_period Dec 11 - Dec 11 Cooling is unavailable during Dec 11 - Dec 11 -in.cooling_unavailable_period Dec 11 - Dec 24 Cooling is unavailable during Dec 11 - Dec 24 -in.cooling_unavailable_period Dec 11 - Mar 10 Cooling is unavailable during Dec 11 - Mar 10 -in.cooling_unavailable_period Dec 12 - Dec 18 Cooling is unavailable during Dec 12 - Dec 18 -in.cooling_unavailable_period Dec 12 - Dec 25 Cooling is unavailable during Dec 12 - Dec 25 -in.cooling_unavailable_period Dec 12 - Jan 10 Cooling is unavailable during Dec 12 - Jan 10 -in.cooling_unavailable_period Dec 12 - Mar 11 Cooling is unavailable during Dec 12 - Mar 11 -in.cooling_unavailable_period Dec 13 - Dec 19 Cooling is unavailable during Dec 13 - Dec 19 -in.cooling_unavailable_period Dec 13 - Dec 26 Cooling is unavailable during Dec 13 - Dec 26 -in.cooling_unavailable_period Dec 14 - Dec 16 Cooling is unavailable during Dec 14 - Dec 16 -in.cooling_unavailable_period Dec 14 - Jan 12 Cooling is unavailable during Dec 14 - Jan 12 -in.cooling_unavailable_period Dec 15 - Dec 17 Cooling is unavailable during Dec 15 - Dec 17 -in.cooling_unavailable_period Dec 15 - Dec 21 Cooling is unavailable during Dec 15 - Dec 21 -in.cooling_unavailable_period Dec 15 - Mar 14 Cooling is unavailable during Dec 15 - Mar 14 -in.cooling_unavailable_period Dec 16 - Dec 22 Cooling is unavailable during Dec 16 - Dec 22 -in.cooling_unavailable_period Dec 17 - Dec 17 Cooling is unavailable during Dec 17 - Dec 17 -in.cooling_unavailable_period Dec 18 - Dec 31 Cooling is unavailable during Dec 18 - Dec 31 -in.cooling_unavailable_period Dec 18 - Jan 16 Cooling is unavailable during Dec 18 - Jan 16 -in.cooling_unavailable_period Dec 19 - Dec 21 Cooling is unavailable during Dec 19 - Dec 21 -in.cooling_unavailable_period Dec 19 - Jan 1 Cooling is unavailable during Dec 19 - Jan 1 -in.cooling_unavailable_period Dec 19 - Jan 17 Cooling is unavailable during Dec 19 - Jan 17 -in.cooling_unavailable_period Dec 2 - Dec 15 Cooling is unavailable during Dec 2 - Dec 15 -in.cooling_unavailable_period Dec 2 - Dec 31 Cooling is unavailable during Dec 2 - Dec 31 -in.cooling_unavailable_period Dec 2 - Dec 4 Cooling is unavailable during Dec 2 - Dec 4 -in.cooling_unavailable_period Dec 20 - Dec 22 Cooling is unavailable during Dec 20 - Dec 22 -in.cooling_unavailable_period Dec 20 - Jan 18 Cooling is unavailable during Dec 20 - Jan 18 -in.cooling_unavailable_period Dec 20 - Jan 2 Cooling is unavailable during Dec 20 - Jan 2 -in.cooling_unavailable_period Dec 21 - Dec 21 Cooling is unavailable during Dec 21 - Dec 21 -in.cooling_unavailable_period Dec 21 - Dec 23 Cooling is unavailable during Dec 21 - Dec 23 -in.cooling_unavailable_period Dec 21 - Dec 27 Cooling is unavailable during Dec 21 - Dec 27 -in.cooling_unavailable_period Dec 21 - Jan 19 Cooling is unavailable during Dec 21 - Jan 19 -in.cooling_unavailable_period Dec 22 - Jan 20 Cooling is unavailable during Dec 22 - Jan 20 -in.cooling_unavailable_period Dec 22 - Mar 21 Cooling is unavailable during Dec 22 - Mar 21 -in.cooling_unavailable_period Dec 23 - Jan 21 Cooling is unavailable during Dec 23 - Jan 21 -in.cooling_unavailable_period Dec 23 - Jan 5 Cooling is unavailable during Dec 23 - Jan 5 -in.cooling_unavailable_period Dec 24 - Dec 26 Cooling is unavailable during Dec 24 - Dec 26 -in.cooling_unavailable_period Dec 24 - Jan 22 Cooling is unavailable during Dec 24 - Jan 22 -in.cooling_unavailable_period Dec 24 - Jan 6 Cooling is unavailable during Dec 24 - Jan 6 -in.cooling_unavailable_period Dec 25 - Dec 25 Cooling is unavailable during Dec 25 - Dec 25 -in.cooling_unavailable_period Dec 25 - Dec 27 Cooling is unavailable during Dec 25 - Dec 27 -in.cooling_unavailable_period Dec 27 - Dec 27 Cooling is unavailable during Dec 27 - Dec 27 -in.cooling_unavailable_period Dec 27 - Jan 2 Cooling is unavailable during Dec 27 - Jan 2 -in.cooling_unavailable_period Dec 27 - Jan 25 Cooling is unavailable during Dec 27 - Jan 25 -in.cooling_unavailable_period Dec 28 - Dec 30 Cooling is unavailable during Dec 28 - Dec 30 -in.cooling_unavailable_period Dec 28 - Jan 10 Cooling is unavailable during Dec 28 - Jan 10 -in.cooling_unavailable_period Dec 28 - Jan 3 Cooling is unavailable during Dec 28 - Jan 3 -in.cooling_unavailable_period Dec 29 - Dec 29 Cooling is unavailable during Dec 29 - Dec 29 -in.cooling_unavailable_period Dec 29 - Jan 27 Cooling is unavailable during Dec 29 - Jan 27 -in.cooling_unavailable_period Dec 3 - Dec 16 Cooling is unavailable during Dec 3 - Dec 16 -in.cooling_unavailable_period Dec 3 - Dec 5 Cooling is unavailable during Dec 3 - Dec 5 -in.cooling_unavailable_period Dec 3 - Mar 2 Cooling is unavailable during Dec 3 - Mar 2 -in.cooling_unavailable_period Dec 30 - Dec 30 Cooling is unavailable during Dec 30 - Dec 30 -in.cooling_unavailable_period Dec 30 - Jan 1 Cooling is unavailable during Dec 30 - Jan 1 -in.cooling_unavailable_period Dec 30 - Jan 28 Cooling is unavailable during Dec 30 - Jan 28 -in.cooling_unavailable_period Dec 30 - Mar 29 Cooling is unavailable during Dec 30 - Mar 29 -in.cooling_unavailable_period Dec 31 - Dec 31 Cooling is unavailable during Dec 31 - Dec 31 -in.cooling_unavailable_period Dec 31 - Jan 13 Cooling is unavailable during Dec 31 - Jan 13 -in.cooling_unavailable_period Dec 31 - Jan 6 Cooling is unavailable during Dec 31 - Jan 6 -in.cooling_unavailable_period Dec 4 - Dec 10 Cooling is unavailable during Dec 4 - Dec 10 -in.cooling_unavailable_period Dec 4 - Dec 17 Cooling is unavailable during Dec 4 - Dec 17 -in.cooling_unavailable_period Dec 4 - Dec 4 Cooling is unavailable during Dec 4 - Dec 4 -in.cooling_unavailable_period Dec 4 - Mar 3 Cooling is unavailable during Dec 4 - Mar 3 -in.cooling_unavailable_period Dec 5 - Dec 11 Cooling is unavailable during Dec 5 - Dec 11 -in.cooling_unavailable_period Dec 5 - Dec 5 Cooling is unavailable during Dec 5 - Dec 5 -in.cooling_unavailable_period Dec 5 - Dec 7 Cooling is unavailable during Dec 5 - Dec 7 -in.cooling_unavailable_period Dec 5 - Mar 4 Cooling is unavailable during Dec 5 - Mar 4 -in.cooling_unavailable_period Dec 6 - Dec 12 Cooling is unavailable during Dec 6 - Dec 12 -in.cooling_unavailable_period Dec 6 - Dec 8 Cooling is unavailable during Dec 6 - Dec 8 -in.cooling_unavailable_period Dec 6 - Jan 4 Cooling is unavailable during Dec 6 - Jan 4 -in.cooling_unavailable_period Dec 7 - Dec 13 Cooling is unavailable during Dec 7 - Dec 13 -in.cooling_unavailable_period Dec 7 - Dec 20 Cooling is unavailable during Dec 7 - Dec 20 -in.cooling_unavailable_period Dec 7 - Dec 9 Cooling is unavailable during Dec 7 - Dec 9 -in.cooling_unavailable_period Dec 8 - Dec 10 Cooling is unavailable during Dec 8 - Dec 10 -in.cooling_unavailable_period Dec 8 - Dec 8 Cooling is unavailable during Dec 8 - Dec 8 -in.cooling_unavailable_period Dec 8 - Jan 6 Cooling is unavailable during Dec 8 - Jan 6 -in.cooling_unavailable_period Dec 9 - Dec 11 Cooling is unavailable during Dec 9 - Dec 11 -in.cooling_unavailable_period Dec 9 - Dec 9 Cooling is unavailable during Dec 9 - Dec 9 -in.cooling_unavailable_period Dec 9 - Jan 7 Cooling is unavailable during Dec 9 - Jan 7 -in.cooling_unavailable_period Dec 9 - Mar 8 Cooling is unavailable during Dec 9 - Mar 8 -in.cooling_unavailable_period Feb 1 - Feb 14 Cooling is unavailable during Feb 1 - Feb 14 -in.cooling_unavailable_period Feb 1 - Feb 3 Cooling is unavailable during Feb 1 - Feb 3 -in.cooling_unavailable_period Feb 1 - Feb 7 Cooling is unavailable during Feb 1 - Feb 7 -in.cooling_unavailable_period Feb 1 - Mar 2 Cooling is unavailable during Feb 1 - Mar 2 -in.cooling_unavailable_period Feb 10 - Feb 10 Cooling is unavailable during Feb 10 - Feb 10 -in.cooling_unavailable_period Feb 10 - Feb 12 Cooling is unavailable during Feb 10 - Feb 12 -in.cooling_unavailable_period Feb 10 - Feb 16 Cooling is unavailable during Feb 10 - Feb 16 -in.cooling_unavailable_period Feb 10 - Feb 23 Cooling is unavailable during Feb 10 - Feb 23 -in.cooling_unavailable_period Feb 10 - Mar 11 Cooling is unavailable during Feb 10 - Mar 11 -in.cooling_unavailable_period Feb 11 - Feb 11 Cooling is unavailable during Feb 11 - Feb 11 -in.cooling_unavailable_period Feb 11 - Feb 24 Cooling is unavailable during Feb 11 - Feb 24 -in.cooling_unavailable_period Feb 11 - Mar 12 Cooling is unavailable during Feb 11 - Mar 12 -in.cooling_unavailable_period Feb 11 - May 11 Cooling is unavailable during Feb 11 - May 11 -in.cooling_unavailable_period Feb 12 - Feb 12 Cooling is unavailable during Feb 12 - Feb 12 -in.cooling_unavailable_period Feb 12 - Feb 14 Cooling is unavailable during Feb 12 - Feb 14 -in.cooling_unavailable_period Feb 12 - Feb 25 Cooling is unavailable during Feb 12 - Feb 25 -in.cooling_unavailable_period Feb 12 - Mar 13 Cooling is unavailable during Feb 12 - Mar 13 -in.cooling_unavailable_period Feb 12 - May 12 Cooling is unavailable during Feb 12 - May 12 -in.cooling_unavailable_period Feb 13 - Feb 15 Cooling is unavailable during Feb 13 - Feb 15 -in.cooling_unavailable_period Feb 13 - Feb 26 Cooling is unavailable during Feb 13 - Feb 26 -in.cooling_unavailable_period Feb 13 - Mar 14 Cooling is unavailable during Feb 13 - Mar 14 -in.cooling_unavailable_period Feb 13 - May 13 Cooling is unavailable during Feb 13 - May 13 -in.cooling_unavailable_period Feb 14 - Feb 16 Cooling is unavailable during Feb 14 - Feb 16 -in.cooling_unavailable_period Feb 14 - Feb 20 Cooling is unavailable during Feb 14 - Feb 20 -in.cooling_unavailable_period Feb 14 - Feb 27 Cooling is unavailable during Feb 14 - Feb 27 -in.cooling_unavailable_period Feb 14 - Mar 15 Cooling is unavailable during Feb 14 - Mar 15 -in.cooling_unavailable_period Feb 14 - May 14 Cooling is unavailable during Feb 14 - May 14 -in.cooling_unavailable_period Feb 15 - Feb 17 Cooling is unavailable during Feb 15 - Feb 17 -in.cooling_unavailable_period Feb 15 - Feb 21 Cooling is unavailable during Feb 15 - Feb 21 -in.cooling_unavailable_period Feb 15 - Feb 28 Cooling is unavailable during Feb 15 - Feb 28 -in.cooling_unavailable_period Feb 15 - Mar 16 Cooling is unavailable during Feb 15 - Mar 16 -in.cooling_unavailable_period Feb 15 - May 15 Cooling is unavailable during Feb 15 - May 15 -in.cooling_unavailable_period Feb 16 - Feb 18 Cooling is unavailable during Feb 16 - Feb 18 -in.cooling_unavailable_period Feb 16 - Feb 22 Cooling is unavailable during Feb 16 - Feb 22 -in.cooling_unavailable_period Feb 16 - Mar 1 Cooling is unavailable during Feb 16 - Mar 1 -in.cooling_unavailable_period Feb 17 - Feb 17 Cooling is unavailable during Feb 17 - Feb 17 -in.cooling_unavailable_period Feb 17 - Feb 19 Cooling is unavailable during Feb 17 - Feb 19 -in.cooling_unavailable_period Feb 17 - Mar 18 Cooling is unavailable during Feb 17 - Mar 18 -in.cooling_unavailable_period Feb 17 - Mar 2 Cooling is unavailable during Feb 17 - Mar 2 -in.cooling_unavailable_period Feb 18 - Feb 18 Cooling is unavailable during Feb 18 - Feb 18 -in.cooling_unavailable_period Feb 18 - Feb 20 Cooling is unavailable during Feb 18 - Feb 20 -in.cooling_unavailable_period Feb 18 - Feb 24 Cooling is unavailable during Feb 18 - Feb 24 -in.cooling_unavailable_period Feb 18 - Mar 19 Cooling is unavailable during Feb 18 - Mar 19 -in.cooling_unavailable_period Feb 18 - Mar 3 Cooling is unavailable during Feb 18 - Mar 3 -in.cooling_unavailable_period Feb 18 - May 18 Cooling is unavailable during Feb 18 - May 18 -in.cooling_unavailable_period Feb 19 - Feb 19 Cooling is unavailable during Feb 19 - Feb 19 -in.cooling_unavailable_period Feb 19 - Feb 21 Cooling is unavailable during Feb 19 - Feb 21 -in.cooling_unavailable_period Feb 19 - Feb 25 Cooling is unavailable during Feb 19 - Feb 25 -in.cooling_unavailable_period Feb 19 - Mar 20 Cooling is unavailable during Feb 19 - Mar 20 -in.cooling_unavailable_period Feb 19 - Mar 4 Cooling is unavailable during Feb 19 - Mar 4 -in.cooling_unavailable_period Feb 2 - Feb 2 Cooling is unavailable during Feb 2 - Feb 2 -in.cooling_unavailable_period Feb 2 - Feb 4 Cooling is unavailable during Feb 2 - Feb 4 -in.cooling_unavailable_period Feb 2 - Feb 8 Cooling is unavailable during Feb 2 - Feb 8 -in.cooling_unavailable_period Feb 2 - Mar 3 Cooling is unavailable during Feb 2 - Mar 3 -in.cooling_unavailable_period Feb 20 - Feb 22 Cooling is unavailable during Feb 20 - Feb 22 -in.cooling_unavailable_period Feb 20 - Feb 26 Cooling is unavailable during Feb 20 - Feb 26 -in.cooling_unavailable_period Feb 20 - Mar 5 Cooling is unavailable during Feb 20 - Mar 5 -in.cooling_unavailable_period Feb 21 - Feb 21 Cooling is unavailable during Feb 21 - Feb 21 -in.cooling_unavailable_period Feb 21 - Feb 23 Cooling is unavailable during Feb 21 - Feb 23 -in.cooling_unavailable_period Feb 21 - Feb 27 Cooling is unavailable during Feb 21 - Feb 27 -in.cooling_unavailable_period Feb 21 - Mar 22 Cooling is unavailable during Feb 21 - Mar 22 -in.cooling_unavailable_period Feb 21 - Mar 6 Cooling is unavailable during Feb 21 - Mar 6 -in.cooling_unavailable_period Feb 21 - May 21 Cooling is unavailable during Feb 21 - May 21 -in.cooling_unavailable_period Feb 22 - Feb 22 Cooling is unavailable during Feb 22 - Feb 22 -in.cooling_unavailable_period Feb 22 - Feb 24 Cooling is unavailable during Feb 22 - Feb 24 -in.cooling_unavailable_period Feb 22 - Feb 28 Cooling is unavailable during Feb 22 - Feb 28 -in.cooling_unavailable_period Feb 22 - Mar 23 Cooling is unavailable during Feb 22 - Mar 23 -in.cooling_unavailable_period Feb 22 - Mar 7 Cooling is unavailable during Feb 22 - Mar 7 -in.cooling_unavailable_period Feb 22 - May 22 Cooling is unavailable during Feb 22 - May 22 -in.cooling_unavailable_period Feb 23 - Feb 25 Cooling is unavailable during Feb 23 - Feb 25 -in.cooling_unavailable_period Feb 23 - Mar 1 Cooling is unavailable during Feb 23 - Mar 1 -in.cooling_unavailable_period Feb 23 - Mar 8 Cooling is unavailable during Feb 23 - Mar 8 -in.cooling_unavailable_period Feb 23 - May 23 Cooling is unavailable during Feb 23 - May 23 -in.cooling_unavailable_period Feb 24 - Feb 24 Cooling is unavailable during Feb 24 - Feb 24 -in.cooling_unavailable_period Feb 24 - Feb 26 Cooling is unavailable during Feb 24 - Feb 26 -in.cooling_unavailable_period Feb 24 - Mar 2 Cooling is unavailable during Feb 24 - Mar 2 -in.cooling_unavailable_period Feb 24 - Mar 25 Cooling is unavailable during Feb 24 - Mar 25 -in.cooling_unavailable_period Feb 24 - Mar 9 Cooling is unavailable during Feb 24 - Mar 9 -in.cooling_unavailable_period Feb 24 - May 24 Cooling is unavailable during Feb 24 - May 24 -in.cooling_unavailable_period Feb 25 - Feb 27 Cooling is unavailable during Feb 25 - Feb 27 -in.cooling_unavailable_period Feb 25 - Mar 10 Cooling is unavailable during Feb 25 - Mar 10 -in.cooling_unavailable_period Feb 25 - Mar 26 Cooling is unavailable during Feb 25 - Mar 26 -in.cooling_unavailable_period Feb 25 - Mar 3 Cooling is unavailable during Feb 25 - Mar 3 -in.cooling_unavailable_period Feb 26 - Feb 26 Cooling is unavailable during Feb 26 - Feb 26 -in.cooling_unavailable_period Feb 26 - Feb 28 Cooling is unavailable during Feb 26 - Feb 28 -in.cooling_unavailable_period Feb 26 - Mar 11 Cooling is unavailable during Feb 26 - Mar 11 -in.cooling_unavailable_period Feb 26 - Mar 27 Cooling is unavailable during Feb 26 - Mar 27 -in.cooling_unavailable_period Feb 26 - Mar 4 Cooling is unavailable during Feb 26 - Mar 4 -in.cooling_unavailable_period Feb 26 - May 26 Cooling is unavailable during Feb 26 - May 26 -in.cooling_unavailable_period Feb 27 - Feb 27 Cooling is unavailable during Feb 27 - Feb 27 -in.cooling_unavailable_period Feb 27 - Mar 1 Cooling is unavailable during Feb 27 - Mar 1 -in.cooling_unavailable_period Feb 27 - Mar 12 Cooling is unavailable during Feb 27 - Mar 12 -in.cooling_unavailable_period Feb 27 - Mar 5 Cooling is unavailable during Feb 27 - Mar 5 -in.cooling_unavailable_period Feb 27 - May 27 Cooling is unavailable during Feb 27 - May 27 -in.cooling_unavailable_period Feb 28 - Mar 13 Cooling is unavailable during Feb 28 - Mar 13 -in.cooling_unavailable_period Feb 28 - Mar 2 Cooling is unavailable during Feb 28 - Mar 2 -in.cooling_unavailable_period Feb 28 - Mar 29 Cooling is unavailable during Feb 28 - Mar 29 -in.cooling_unavailable_period Feb 28 - Mar 6 Cooling is unavailable during Feb 28 - Mar 6 -in.cooling_unavailable_period Feb 28 - May 28 Cooling is unavailable during Feb 28 - May 28 -in.cooling_unavailable_period Feb 3 - Feb 16 Cooling is unavailable during Feb 3 - Feb 16 -in.cooling_unavailable_period Feb 3 - Feb 5 Cooling is unavailable during Feb 3 - Feb 5 -in.cooling_unavailable_period Feb 3 - Feb 9 Cooling is unavailable during Feb 3 - Feb 9 -in.cooling_unavailable_period Feb 3 - Mar 4 Cooling is unavailable during Feb 3 - Mar 4 -in.cooling_unavailable_period Feb 3 - May 3 Cooling is unavailable during Feb 3 - May 3 -in.cooling_unavailable_period Feb 4 - Feb 10 Cooling is unavailable during Feb 4 - Feb 10 -in.cooling_unavailable_period Feb 4 - Feb 17 Cooling is unavailable during Feb 4 - Feb 17 -in.cooling_unavailable_period Feb 4 - Feb 4 Cooling is unavailable during Feb 4 - Feb 4 -in.cooling_unavailable_period Feb 4 - Feb 6 Cooling is unavailable during Feb 4 - Feb 6 -in.cooling_unavailable_period Feb 4 - Mar 5 Cooling is unavailable during Feb 4 - Mar 5 -in.cooling_unavailable_period Feb 4 - May 4 Cooling is unavailable during Feb 4 - May 4 -in.cooling_unavailable_period Feb 5 - Feb 11 Cooling is unavailable during Feb 5 - Feb 11 -in.cooling_unavailable_period Feb 5 - Feb 18 Cooling is unavailable during Feb 5 - Feb 18 -in.cooling_unavailable_period Feb 5 - Feb 5 Cooling is unavailable during Feb 5 - Feb 5 -in.cooling_unavailable_period Feb 5 - Feb 7 Cooling is unavailable during Feb 5 - Feb 7 -in.cooling_unavailable_period Feb 5 - Mar 6 Cooling is unavailable during Feb 5 - Mar 6 -in.cooling_unavailable_period Feb 5 - May 5 Cooling is unavailable during Feb 5 - May 5 -in.cooling_unavailable_period Feb 6 - Feb 12 Cooling is unavailable during Feb 6 - Feb 12 -in.cooling_unavailable_period Feb 6 - Feb 19 Cooling is unavailable during Feb 6 - Feb 19 -in.cooling_unavailable_period Feb 6 - Feb 6 Cooling is unavailable during Feb 6 - Feb 6 -in.cooling_unavailable_period Feb 6 - Feb 8 Cooling is unavailable during Feb 6 - Feb 8 -in.cooling_unavailable_period Feb 6 - Mar 7 Cooling is unavailable during Feb 6 - Mar 7 -in.cooling_unavailable_period Feb 7 - Feb 13 Cooling is unavailable during Feb 7 - Feb 13 -in.cooling_unavailable_period Feb 7 - Feb 7 Cooling is unavailable during Feb 7 - Feb 7 -in.cooling_unavailable_period Feb 7 - Feb 9 Cooling is unavailable during Feb 7 - Feb 9 -in.cooling_unavailable_period Feb 7 - Mar 8 Cooling is unavailable during Feb 7 - Mar 8 -in.cooling_unavailable_period Feb 7 - May 7 Cooling is unavailable during Feb 7 - May 7 -in.cooling_unavailable_period Feb 8 - Feb 10 Cooling is unavailable during Feb 8 - Feb 10 -in.cooling_unavailable_period Feb 8 - Feb 14 Cooling is unavailable during Feb 8 - Feb 14 -in.cooling_unavailable_period Feb 8 - Feb 21 Cooling is unavailable during Feb 8 - Feb 21 -in.cooling_unavailable_period Feb 8 - Feb 8 Cooling is unavailable during Feb 8 - Feb 8 -in.cooling_unavailable_period Feb 8 - Mar 9 Cooling is unavailable during Feb 8 - Mar 9 -in.cooling_unavailable_period Feb 8 - May 8 Cooling is unavailable during Feb 8 - May 8 -in.cooling_unavailable_period Feb 9 - Feb 11 Cooling is unavailable during Feb 9 - Feb 11 -in.cooling_unavailable_period Feb 9 - Feb 22 Cooling is unavailable during Feb 9 - Feb 22 -in.cooling_unavailable_period Feb 9 - Feb 9 Cooling is unavailable during Feb 9 - Feb 9 -in.cooling_unavailable_period Feb 9 - Mar 10 Cooling is unavailable during Feb 9 - Mar 10 -in.cooling_unavailable_period Feb 9 - May 9 Cooling is unavailable during Feb 9 - May 9 -in.cooling_unavailable_period Jan 1 - Dec 31 Cooling is unavailable during Jan 1 - Dec 31 -in.cooling_unavailable_period Jan 1 - Jan 3 Cooling is unavailable during Jan 1 - Jan 3 -in.cooling_unavailable_period Jan 1 - Jan 30 Cooling is unavailable during Jan 1 - Jan 30 -in.cooling_unavailable_period Jan 1 - Jan 7 Cooling is unavailable during Jan 1 - Jan 7 -in.cooling_unavailable_period Jan 1 - Mar 31 Cooling is unavailable during Jan 1 - Mar 31 -in.cooling_unavailable_period Jan 10 - Feb 8 Cooling is unavailable during Jan 10 - Feb 8 -in.cooling_unavailable_period Jan 10 - Jan 12 Cooling is unavailable during Jan 10 - Jan 12 -in.cooling_unavailable_period Jan 10 - Jan 23 Cooling is unavailable during Jan 10 - Jan 23 -in.cooling_unavailable_period Jan 11 - Feb 9 Cooling is unavailable during Jan 11 - Feb 9 -in.cooling_unavailable_period Jan 11 - Jan 13 Cooling is unavailable during Jan 11 - Jan 13 -in.cooling_unavailable_period Jan 11 - Jan 17 Cooling is unavailable during Jan 11 - Jan 17 -in.cooling_unavailable_period Jan 12 - Feb 10 Cooling is unavailable during Jan 12 - Feb 10 -in.cooling_unavailable_period Jan 12 - Jan 12 Cooling is unavailable during Jan 12 - Jan 12 -in.cooling_unavailable_period Jan 12 - Jan 14 Cooling is unavailable during Jan 12 - Jan 14 -in.cooling_unavailable_period Jan 12 - Jan 25 Cooling is unavailable during Jan 12 - Jan 25 -in.cooling_unavailable_period Jan 13 - Apr 12 Cooling is unavailable during Jan 13 - Apr 12 -in.cooling_unavailable_period Jan 13 - Jan 13 Cooling is unavailable during Jan 13 - Jan 13 -in.cooling_unavailable_period Jan 13 - Jan 15 Cooling is unavailable during Jan 13 - Jan 15 -in.cooling_unavailable_period Jan 13 - Jan 19 Cooling is unavailable during Jan 13 - Jan 19 -in.cooling_unavailable_period Jan 14 - Apr 13 Cooling is unavailable during Jan 14 - Apr 13 -in.cooling_unavailable_period Jan 14 - Jan 14 Cooling is unavailable during Jan 14 - Jan 14 -in.cooling_unavailable_period Jan 14 - Jan 20 Cooling is unavailable during Jan 14 - Jan 20 -in.cooling_unavailable_period Jan 14 - Jan 27 Cooling is unavailable during Jan 14 - Jan 27 -in.cooling_unavailable_period Jan 15 - Apr 14 Cooling is unavailable during Jan 15 - Apr 14 -in.cooling_unavailable_period Jan 15 - Feb 13 Cooling is unavailable during Jan 15 - Feb 13 -in.cooling_unavailable_period Jan 15 - Jan 17 Cooling is unavailable during Jan 15 - Jan 17 -in.cooling_unavailable_period Jan 15 - Jan 21 Cooling is unavailable during Jan 15 - Jan 21 -in.cooling_unavailable_period Jan 15 - Jan 28 Cooling is unavailable during Jan 15 - Jan 28 -in.cooling_unavailable_period Jan 16 - Jan 18 Cooling is unavailable during Jan 16 - Jan 18 -in.cooling_unavailable_period Jan 16 - Jan 22 Cooling is unavailable during Jan 16 - Jan 22 -in.cooling_unavailable_period Jan 16 - Jan 29 Cooling is unavailable during Jan 16 - Jan 29 -in.cooling_unavailable_period Jan 17 - Apr 16 Cooling is unavailable during Jan 17 - Apr 16 -in.cooling_unavailable_period Jan 17 - Feb 15 Cooling is unavailable during Jan 17 - Feb 15 -in.cooling_unavailable_period Jan 17 - Jan 17 Cooling is unavailable during Jan 17 - Jan 17 -in.cooling_unavailable_period Jan 17 - Jan 19 Cooling is unavailable during Jan 17 - Jan 19 -in.cooling_unavailable_period Jan 17 - Jan 30 Cooling is unavailable during Jan 17 - Jan 30 -in.cooling_unavailable_period Jan 18 - Apr 17 Cooling is unavailable during Jan 18 - Apr 17 -in.cooling_unavailable_period Jan 18 - Feb 16 Cooling is unavailable during Jan 18 - Feb 16 -in.cooling_unavailable_period Jan 18 - Jan 18 Cooling is unavailable during Jan 18 - Jan 18 -in.cooling_unavailable_period Jan 18 - Jan 20 Cooling is unavailable during Jan 18 - Jan 20 -in.cooling_unavailable_period Jan 18 - Jan 24 Cooling is unavailable during Jan 18 - Jan 24 -in.cooling_unavailable_period Jan 19 - Feb 1 Cooling is unavailable during Jan 19 - Feb 1 -in.cooling_unavailable_period Jan 19 - Feb 17 Cooling is unavailable during Jan 19 - Feb 17 -in.cooling_unavailable_period Jan 19 - Jan 21 Cooling is unavailable during Jan 19 - Jan 21 -in.cooling_unavailable_period Jan 19 - Jan 25 Cooling is unavailable during Jan 19 - Jan 25 -in.cooling_unavailable_period Jan 2 - Jan 4 Cooling is unavailable during Jan 2 - Jan 4 -in.cooling_unavailable_period Jan 2 - Jan 8 Cooling is unavailable during Jan 2 - Jan 8 -in.cooling_unavailable_period Jan 20 - Feb 18 Cooling is unavailable during Jan 20 - Feb 18 -in.cooling_unavailable_period Jan 20 - Feb 2 Cooling is unavailable during Jan 20 - Feb 2 -in.cooling_unavailable_period Jan 20 - Jan 22 Cooling is unavailable during Jan 20 - Jan 22 -in.cooling_unavailable_period Jan 20 - Jan 26 Cooling is unavailable during Jan 20 - Jan 26 -in.cooling_unavailable_period Jan 21 - Feb 19 Cooling is unavailable during Jan 21 - Feb 19 -in.cooling_unavailable_period Jan 21 - Jan 27 Cooling is unavailable during Jan 21 - Jan 27 -in.cooling_unavailable_period Jan 22 - Feb 20 Cooling is unavailable during Jan 22 - Feb 20 -in.cooling_unavailable_period Jan 22 - Feb 4 Cooling is unavailable during Jan 22 - Feb 4 -in.cooling_unavailable_period Jan 22 - Jan 24 Cooling is unavailable during Jan 22 - Jan 24 -in.cooling_unavailable_period Jan 22 - Jan 28 Cooling is unavailable during Jan 22 - Jan 28 -in.cooling_unavailable_period Jan 23 - Feb 21 Cooling is unavailable during Jan 23 - Feb 21 -in.cooling_unavailable_period Jan 23 - Jan 23 Cooling is unavailable during Jan 23 - Jan 23 -in.cooling_unavailable_period Jan 23 - Jan 25 Cooling is unavailable during Jan 23 - Jan 25 -in.cooling_unavailable_period Jan 24 - Apr 23 Cooling is unavailable during Jan 24 - Apr 23 -in.cooling_unavailable_period Jan 25 - Apr 24 Cooling is unavailable during Jan 25 - Apr 24 -in.cooling_unavailable_period Jan 25 - Feb 23 Cooling is unavailable during Jan 25 - Feb 23 -in.cooling_unavailable_period Jan 25 - Jan 25 Cooling is unavailable during Jan 25 - Jan 25 -in.cooling_unavailable_period Jan 25 - Jan 27 Cooling is unavailable during Jan 25 - Jan 27 -in.cooling_unavailable_period Jan 26 - Feb 1 Cooling is unavailable during Jan 26 - Feb 1 -in.cooling_unavailable_period Jan 26 - Feb 8 Cooling is unavailable during Jan 26 - Feb 8 -in.cooling_unavailable_period Jan 27 - Apr 26 Cooling is unavailable during Jan 27 - Apr 26 -in.cooling_unavailable_period Jan 27 - Feb 2 Cooling is unavailable during Jan 27 - Feb 2 -in.cooling_unavailable_period Jan 27 - Feb 25 Cooling is unavailable during Jan 27 - Feb 25 -in.cooling_unavailable_period Jan 27 - Feb 9 Cooling is unavailable during Jan 27 - Feb 9 -in.cooling_unavailable_period Jan 28 - Feb 10 Cooling is unavailable during Jan 28 - Feb 10 -in.cooling_unavailable_period Jan 28 - Feb 26 Cooling is unavailable during Jan 28 - Feb 26 -in.cooling_unavailable_period Jan 28 - Feb 3 Cooling is unavailable during Jan 28 - Feb 3 -in.cooling_unavailable_period Jan 28 - Jan 30 Cooling is unavailable during Jan 28 - Jan 30 -in.cooling_unavailable_period Jan 29 - Apr 28 Cooling is unavailable during Jan 29 - Apr 28 -in.cooling_unavailable_period Jan 29 - Feb 11 Cooling is unavailable during Jan 29 - Feb 11 -in.cooling_unavailable_period Jan 29 - Feb 27 Cooling is unavailable during Jan 29 - Feb 27 -in.cooling_unavailable_period Jan 29 - Jan 31 Cooling is unavailable during Jan 29 - Jan 31 -in.cooling_unavailable_period Jan 3 - Apr 2 Cooling is unavailable during Jan 3 - Apr 2 -in.cooling_unavailable_period Jan 3 - Feb 1 Cooling is unavailable during Jan 3 - Feb 1 -in.cooling_unavailable_period Jan 3 - Jan 16 Cooling is unavailable during Jan 3 - Jan 16 -in.cooling_unavailable_period Jan 3 - Jan 5 Cooling is unavailable during Jan 3 - Jan 5 -in.cooling_unavailable_period Jan 30 - Feb 28 Cooling is unavailable during Jan 30 - Feb 28 -in.cooling_unavailable_period Jan 30 - Feb 5 Cooling is unavailable during Jan 30 - Feb 5 -in.cooling_unavailable_period Jan 31 - Apr 30 Cooling is unavailable during Jan 31 - Apr 30 -in.cooling_unavailable_period Jan 31 - Feb 6 Cooling is unavailable during Jan 31 - Feb 6 -in.cooling_unavailable_period Jan 31 - Jan 31 Cooling is unavailable during Jan 31 - Jan 31 -in.cooling_unavailable_period Jan 31 - Mar 1 Cooling is unavailable during Jan 31 - Mar 1 -in.cooling_unavailable_period Jan 4 - Apr 3 Cooling is unavailable during Jan 4 - Apr 3 -in.cooling_unavailable_period Jan 4 - Feb 2 Cooling is unavailable during Jan 4 - Feb 2 -in.cooling_unavailable_period Jan 4 - Jan 6 Cooling is unavailable during Jan 4 - Jan 6 -in.cooling_unavailable_period Jan 5 - Jan 11 Cooling is unavailable during Jan 5 - Jan 11 -in.cooling_unavailable_period Jan 5 - Jan 7 Cooling is unavailable during Jan 5 - Jan 7 -in.cooling_unavailable_period Jan 6 - Apr 5 Cooling is unavailable during Jan 6 - Apr 5 -in.cooling_unavailable_period Jan 6 - Feb 4 Cooling is unavailable during Jan 6 - Feb 4 -in.cooling_unavailable_period Jan 6 - Jan 12 Cooling is unavailable during Jan 6 - Jan 12 -in.cooling_unavailable_period Jan 6 - Jan 19 Cooling is unavailable during Jan 6 - Jan 19 -in.cooling_unavailable_period Jan 6 - Jan 6 Cooling is unavailable during Jan 6 - Jan 6 -in.cooling_unavailable_period Jan 6 - Jan 8 Cooling is unavailable during Jan 6 - Jan 8 -in.cooling_unavailable_period Jan 7 - Feb 5 Cooling is unavailable during Jan 7 - Feb 5 -in.cooling_unavailable_period Jan 7 - Jan 13 Cooling is unavailable during Jan 7 - Jan 13 -in.cooling_unavailable_period Jan 7 - Jan 7 Cooling is unavailable during Jan 7 - Jan 7 -in.cooling_unavailable_period Jan 7 - Jan 9 Cooling is unavailable during Jan 7 - Jan 9 -in.cooling_unavailable_period Jan 8 - Feb 6 Cooling is unavailable during Jan 8 - Feb 6 -in.cooling_unavailable_period Jan 8 - Jan 10 Cooling is unavailable during Jan 8 - Jan 10 -in.cooling_unavailable_period Jan 8 - Jan 21 Cooling is unavailable during Jan 8 - Jan 21 -in.cooling_unavailable_period Jan 8 - Jan 8 Cooling is unavailable during Jan 8 - Jan 8 -in.cooling_unavailable_period Jan 9 - Apr 8 Cooling is unavailable during Jan 9 - Apr 8 -in.cooling_unavailable_period Jan 9 - Jan 11 Cooling is unavailable during Jan 9 - Jan 11 -in.cooling_unavailable_period Jan 9 - Jan 22 Cooling is unavailable during Jan 9 - Jan 22 -in.cooling_unavailable_period Jul 1 - Jul 1 Cooling is unavailable during Jul 1 - Jul 1 -in.cooling_unavailable_period Jul 1 - Jul 14 Cooling is unavailable during Jul 1 - Jul 14 -in.cooling_unavailable_period Jul 1 - Jul 3 Cooling is unavailable during Jul 1 - Jul 3 -in.cooling_unavailable_period Jul 1 - Jul 30 Cooling is unavailable during Jul 1 - Jul 30 -in.cooling_unavailable_period Jul 1 - Jul 7 Cooling is unavailable during Jul 1 - Jul 7 -in.cooling_unavailable_period Jul 1 - Sep 28 Cooling is unavailable during Jul 1 - Sep 28 -in.cooling_unavailable_period Jul 10 - Aug 8 Cooling is unavailable during Jul 10 - Aug 8 -in.cooling_unavailable_period Jul 10 - Jul 10 Cooling is unavailable during Jul 10 - Jul 10 -in.cooling_unavailable_period Jul 10 - Jul 12 Cooling is unavailable during Jul 10 - Jul 12 -in.cooling_unavailable_period Jul 10 - Jul 16 Cooling is unavailable during Jul 10 - Jul 16 -in.cooling_unavailable_period Jul 10 - Jul 23 Cooling is unavailable during Jul 10 - Jul 23 -in.cooling_unavailable_period Jul 10 - Oct 7 Cooling is unavailable during Jul 10 - Oct 7 -in.cooling_unavailable_period Jul 11 - Aug 9 Cooling is unavailable during Jul 11 - Aug 9 -in.cooling_unavailable_period Jul 11 - Jul 11 Cooling is unavailable during Jul 11 - Jul 11 -in.cooling_unavailable_period Jul 11 - Jul 13 Cooling is unavailable during Jul 11 - Jul 13 -in.cooling_unavailable_period Jul 11 - Jul 17 Cooling is unavailable during Jul 11 - Jul 17 -in.cooling_unavailable_period Jul 11 - Jul 24 Cooling is unavailable during Jul 11 - Jul 24 -in.cooling_unavailable_period Jul 11 - Oct 8 Cooling is unavailable during Jul 11 - Oct 8 -in.cooling_unavailable_period Jul 12 - Aug 10 Cooling is unavailable during Jul 12 - Aug 10 -in.cooling_unavailable_period Jul 12 - Jul 12 Cooling is unavailable during Jul 12 - Jul 12 -in.cooling_unavailable_period Jul 12 - Jul 14 Cooling is unavailable during Jul 12 - Jul 14 -in.cooling_unavailable_period Jul 12 - Jul 18 Cooling is unavailable during Jul 12 - Jul 18 -in.cooling_unavailable_period Jul 12 - Jul 25 Cooling is unavailable during Jul 12 - Jul 25 -in.cooling_unavailable_period Jul 12 - Oct 9 Cooling is unavailable during Jul 12 - Oct 9 -in.cooling_unavailable_period Jul 13 - Aug 11 Cooling is unavailable during Jul 13 - Aug 11 -in.cooling_unavailable_period Jul 13 - Jul 13 Cooling is unavailable during Jul 13 - Jul 13 -in.cooling_unavailable_period Jul 13 - Jul 15 Cooling is unavailable during Jul 13 - Jul 15 -in.cooling_unavailable_period Jul 13 - Jul 19 Cooling is unavailable during Jul 13 - Jul 19 -in.cooling_unavailable_period Jul 13 - Jul 26 Cooling is unavailable during Jul 13 - Jul 26 -in.cooling_unavailable_period Jul 13 - Oct 10 Cooling is unavailable during Jul 13 - Oct 10 -in.cooling_unavailable_period Jul 14 - Aug 12 Cooling is unavailable during Jul 14 - Aug 12 -in.cooling_unavailable_period Jul 14 - Jul 14 Cooling is unavailable during Jul 14 - Jul 14 -in.cooling_unavailable_period Jul 14 - Jul 16 Cooling is unavailable during Jul 14 - Jul 16 -in.cooling_unavailable_period Jul 14 - Jul 20 Cooling is unavailable during Jul 14 - Jul 20 -in.cooling_unavailable_period Jul 14 - Jul 27 Cooling is unavailable during Jul 14 - Jul 27 -in.cooling_unavailable_period Jul 14 - Oct 11 Cooling is unavailable during Jul 14 - Oct 11 -in.cooling_unavailable_period Jul 15 - Aug 13 Cooling is unavailable during Jul 15 - Aug 13 -in.cooling_unavailable_period Jul 15 - Jul 15 Cooling is unavailable during Jul 15 - Jul 15 -in.cooling_unavailable_period Jul 15 - Jul 17 Cooling is unavailable during Jul 15 - Jul 17 -in.cooling_unavailable_period Jul 15 - Jul 21 Cooling is unavailable during Jul 15 - Jul 21 -in.cooling_unavailable_period Jul 15 - Jul 28 Cooling is unavailable during Jul 15 - Jul 28 -in.cooling_unavailable_period Jul 15 - Oct 12 Cooling is unavailable during Jul 15 - Oct 12 -in.cooling_unavailable_period Jul 16 - Aug 14 Cooling is unavailable during Jul 16 - Aug 14 -in.cooling_unavailable_period Jul 16 - Jul 16 Cooling is unavailable during Jul 16 - Jul 16 -in.cooling_unavailable_period Jul 16 - Jul 18 Cooling is unavailable during Jul 16 - Jul 18 -in.cooling_unavailable_period Jul 16 - Jul 22 Cooling is unavailable during Jul 16 - Jul 22 -in.cooling_unavailable_period Jul 16 - Jul 29 Cooling is unavailable during Jul 16 - Jul 29 -in.cooling_unavailable_period Jul 16 - Oct 13 Cooling is unavailable during Jul 16 - Oct 13 -in.cooling_unavailable_period Jul 17 - Aug 15 Cooling is unavailable during Jul 17 - Aug 15 -in.cooling_unavailable_period Jul 17 - Jul 17 Cooling is unavailable during Jul 17 - Jul 17 -in.cooling_unavailable_period Jul 17 - Jul 19 Cooling is unavailable during Jul 17 - Jul 19 -in.cooling_unavailable_period Jul 17 - Jul 23 Cooling is unavailable during Jul 17 - Jul 23 -in.cooling_unavailable_period Jul 17 - Jul 30 Cooling is unavailable during Jul 17 - Jul 30 -in.cooling_unavailable_period Jul 17 - Oct 14 Cooling is unavailable during Jul 17 - Oct 14 -in.cooling_unavailable_period Jul 18 - Aug 16 Cooling is unavailable during Jul 18 - Aug 16 -in.cooling_unavailable_period Jul 18 - Jul 18 Cooling is unavailable during Jul 18 - Jul 18 -in.cooling_unavailable_period Jul 18 - Jul 20 Cooling is unavailable during Jul 18 - Jul 20 -in.cooling_unavailable_period Jul 18 - Jul 24 Cooling is unavailable during Jul 18 - Jul 24 -in.cooling_unavailable_period Jul 18 - Jul 31 Cooling is unavailable during Jul 18 - Jul 31 -in.cooling_unavailable_period Jul 18 - Oct 15 Cooling is unavailable during Jul 18 - Oct 15 -in.cooling_unavailable_period Jul 19 - Aug 1 Cooling is unavailable during Jul 19 - Aug 1 -in.cooling_unavailable_period Jul 19 - Aug 17 Cooling is unavailable during Jul 19 - Aug 17 -in.cooling_unavailable_period Jul 19 - Jul 19 Cooling is unavailable during Jul 19 - Jul 19 -in.cooling_unavailable_period Jul 19 - Jul 21 Cooling is unavailable during Jul 19 - Jul 21 -in.cooling_unavailable_period Jul 19 - Jul 25 Cooling is unavailable during Jul 19 - Jul 25 -in.cooling_unavailable_period Jul 19 - Oct 16 Cooling is unavailable during Jul 19 - Oct 16 -in.cooling_unavailable_period Jul 2 - Jul 15 Cooling is unavailable during Jul 2 - Jul 15 -in.cooling_unavailable_period Jul 2 - Jul 2 Cooling is unavailable during Jul 2 - Jul 2 -in.cooling_unavailable_period Jul 2 - Jul 31 Cooling is unavailable during Jul 2 - Jul 31 -in.cooling_unavailable_period Jul 2 - Jul 4 Cooling is unavailable during Jul 2 - Jul 4 -in.cooling_unavailable_period Jul 2 - Jul 8 Cooling is unavailable during Jul 2 - Jul 8 -in.cooling_unavailable_period Jul 2 - Sep 29 Cooling is unavailable during Jul 2 - Sep 29 -in.cooling_unavailable_period Jul 20 - Aug 18 Cooling is unavailable during Jul 20 - Aug 18 -in.cooling_unavailable_period Jul 20 - Aug 2 Cooling is unavailable during Jul 20 - Aug 2 -in.cooling_unavailable_period Jul 20 - Jul 20 Cooling is unavailable during Jul 20 - Jul 20 -in.cooling_unavailable_period Jul 20 - Jul 22 Cooling is unavailable during Jul 20 - Jul 22 -in.cooling_unavailable_period Jul 20 - Jul 26 Cooling is unavailable during Jul 20 - Jul 26 -in.cooling_unavailable_period Jul 20 - Oct 17 Cooling is unavailable during Jul 20 - Oct 17 -in.cooling_unavailable_period Jul 21 - Aug 19 Cooling is unavailable during Jul 21 - Aug 19 -in.cooling_unavailable_period Jul 21 - Aug 3 Cooling is unavailable during Jul 21 - Aug 3 -in.cooling_unavailable_period Jul 21 - Jul 21 Cooling is unavailable during Jul 21 - Jul 21 -in.cooling_unavailable_period Jul 21 - Jul 23 Cooling is unavailable during Jul 21 - Jul 23 -in.cooling_unavailable_period Jul 21 - Jul 27 Cooling is unavailable during Jul 21 - Jul 27 -in.cooling_unavailable_period Jul 21 - Oct 18 Cooling is unavailable during Jul 21 - Oct 18 -in.cooling_unavailable_period Jul 22 - Aug 20 Cooling is unavailable during Jul 22 - Aug 20 -in.cooling_unavailable_period Jul 22 - Aug 4 Cooling is unavailable during Jul 22 - Aug 4 -in.cooling_unavailable_period Jul 22 - Jul 22 Cooling is unavailable during Jul 22 - Jul 22 -in.cooling_unavailable_period Jul 22 - Jul 24 Cooling is unavailable during Jul 22 - Jul 24 -in.cooling_unavailable_period Jul 22 - Jul 28 Cooling is unavailable during Jul 22 - Jul 28 -in.cooling_unavailable_period Jul 22 - Oct 19 Cooling is unavailable during Jul 22 - Oct 19 -in.cooling_unavailable_period Jul 23 - Aug 21 Cooling is unavailable during Jul 23 - Aug 21 -in.cooling_unavailable_period Jul 23 - Aug 5 Cooling is unavailable during Jul 23 - Aug 5 -in.cooling_unavailable_period Jul 23 - Jul 23 Cooling is unavailable during Jul 23 - Jul 23 -in.cooling_unavailable_period Jul 23 - Jul 25 Cooling is unavailable during Jul 23 - Jul 25 -in.cooling_unavailable_period Jul 23 - Jul 29 Cooling is unavailable during Jul 23 - Jul 29 -in.cooling_unavailable_period Jul 23 - Oct 20 Cooling is unavailable during Jul 23 - Oct 20 -in.cooling_unavailable_period Jul 24 - Aug 22 Cooling is unavailable during Jul 24 - Aug 22 -in.cooling_unavailable_period Jul 24 - Aug 6 Cooling is unavailable during Jul 24 - Aug 6 -in.cooling_unavailable_period Jul 24 - Jul 24 Cooling is unavailable during Jul 24 - Jul 24 -in.cooling_unavailable_period Jul 24 - Jul 26 Cooling is unavailable during Jul 24 - Jul 26 -in.cooling_unavailable_period Jul 24 - Jul 30 Cooling is unavailable during Jul 24 - Jul 30 -in.cooling_unavailable_period Jul 24 - Oct 21 Cooling is unavailable during Jul 24 - Oct 21 -in.cooling_unavailable_period Jul 25 - Aug 23 Cooling is unavailable during Jul 25 - Aug 23 -in.cooling_unavailable_period Jul 25 - Aug 7 Cooling is unavailable during Jul 25 - Aug 7 -in.cooling_unavailable_period Jul 25 - Jul 25 Cooling is unavailable during Jul 25 - Jul 25 -in.cooling_unavailable_period Jul 25 - Jul 27 Cooling is unavailable during Jul 25 - Jul 27 -in.cooling_unavailable_period Jul 25 - Jul 31 Cooling is unavailable during Jul 25 - Jul 31 -in.cooling_unavailable_period Jul 25 - Oct 22 Cooling is unavailable during Jul 25 - Oct 22 -in.cooling_unavailable_period Jul 26 - Aug 1 Cooling is unavailable during Jul 26 - Aug 1 -in.cooling_unavailable_period Jul 26 - Aug 24 Cooling is unavailable during Jul 26 - Aug 24 -in.cooling_unavailable_period Jul 26 - Aug 8 Cooling is unavailable during Jul 26 - Aug 8 -in.cooling_unavailable_period Jul 26 - Jul 26 Cooling is unavailable during Jul 26 - Jul 26 -in.cooling_unavailable_period Jul 26 - Jul 28 Cooling is unavailable during Jul 26 - Jul 28 -in.cooling_unavailable_period Jul 26 - Oct 23 Cooling is unavailable during Jul 26 - Oct 23 -in.cooling_unavailable_period Jul 27 - Aug 2 Cooling is unavailable during Jul 27 - Aug 2 -in.cooling_unavailable_period Jul 27 - Aug 25 Cooling is unavailable during Jul 27 - Aug 25 -in.cooling_unavailable_period Jul 27 - Aug 9 Cooling is unavailable during Jul 27 - Aug 9 -in.cooling_unavailable_period Jul 27 - Jul 27 Cooling is unavailable during Jul 27 - Jul 27 -in.cooling_unavailable_period Jul 27 - Jul 29 Cooling is unavailable during Jul 27 - Jul 29 -in.cooling_unavailable_period Jul 27 - Oct 24 Cooling is unavailable during Jul 27 - Oct 24 -in.cooling_unavailable_period Jul 28 - Aug 10 Cooling is unavailable during Jul 28 - Aug 10 -in.cooling_unavailable_period Jul 28 - Aug 26 Cooling is unavailable during Jul 28 - Aug 26 -in.cooling_unavailable_period Jul 28 - Aug 3 Cooling is unavailable during Jul 28 - Aug 3 -in.cooling_unavailable_period Jul 28 - Jul 28 Cooling is unavailable during Jul 28 - Jul 28 -in.cooling_unavailable_period Jul 28 - Jul 30 Cooling is unavailable during Jul 28 - Jul 30 -in.cooling_unavailable_period Jul 28 - Oct 25 Cooling is unavailable during Jul 28 - Oct 25 -in.cooling_unavailable_period Jul 29 - Aug 11 Cooling is unavailable during Jul 29 - Aug 11 -in.cooling_unavailable_period Jul 29 - Aug 27 Cooling is unavailable during Jul 29 - Aug 27 -in.cooling_unavailable_period Jul 29 - Aug 4 Cooling is unavailable during Jul 29 - Aug 4 -in.cooling_unavailable_period Jul 29 - Jul 29 Cooling is unavailable during Jul 29 - Jul 29 -in.cooling_unavailable_period Jul 29 - Jul 31 Cooling is unavailable during Jul 29 - Jul 31 -in.cooling_unavailable_period Jul 29 - Oct 26 Cooling is unavailable during Jul 29 - Oct 26 -in.cooling_unavailable_period Jul 3 - Aug 1 Cooling is unavailable during Jul 3 - Aug 1 -in.cooling_unavailable_period Jul 3 - Jul 16 Cooling is unavailable during Jul 3 - Jul 16 -in.cooling_unavailable_period Jul 3 - Jul 3 Cooling is unavailable during Jul 3 - Jul 3 -in.cooling_unavailable_period Jul 3 - Jul 5 Cooling is unavailable during Jul 3 - Jul 5 -in.cooling_unavailable_period Jul 3 - Jul 9 Cooling is unavailable during Jul 3 - Jul 9 -in.cooling_unavailable_period Jul 3 - Sep 30 Cooling is unavailable during Jul 3 - Sep 30 -in.cooling_unavailable_period Jul 30 - Aug 1 Cooling is unavailable during Jul 30 - Aug 1 -in.cooling_unavailable_period Jul 30 - Aug 12 Cooling is unavailable during Jul 30 - Aug 12 -in.cooling_unavailable_period Jul 30 - Aug 28 Cooling is unavailable during Jul 30 - Aug 28 -in.cooling_unavailable_period Jul 30 - Aug 5 Cooling is unavailable during Jul 30 - Aug 5 -in.cooling_unavailable_period Jul 30 - Jul 30 Cooling is unavailable during Jul 30 - Jul 30 -in.cooling_unavailable_period Jul 30 - Oct 27 Cooling is unavailable during Jul 30 - Oct 27 -in.cooling_unavailable_period Jul 31 - Aug 13 Cooling is unavailable during Jul 31 - Aug 13 -in.cooling_unavailable_period Jul 31 - Aug 2 Cooling is unavailable during Jul 31 - Aug 2 -in.cooling_unavailable_period Jul 31 - Aug 29 Cooling is unavailable during Jul 31 - Aug 29 -in.cooling_unavailable_period Jul 31 - Aug 6 Cooling is unavailable during Jul 31 - Aug 6 -in.cooling_unavailable_period Jul 31 - Jul 31 Cooling is unavailable during Jul 31 - Jul 31 -in.cooling_unavailable_period Jul 31 - Oct 28 Cooling is unavailable during Jul 31 - Oct 28 -in.cooling_unavailable_period Jul 4 - Aug 2 Cooling is unavailable during Jul 4 - Aug 2 -in.cooling_unavailable_period Jul 4 - Jul 10 Cooling is unavailable during Jul 4 - Jul 10 -in.cooling_unavailable_period Jul 4 - Jul 17 Cooling is unavailable during Jul 4 - Jul 17 -in.cooling_unavailable_period Jul 4 - Jul 4 Cooling is unavailable during Jul 4 - Jul 4 -in.cooling_unavailable_period Jul 4 - Jul 6 Cooling is unavailable during Jul 4 - Jul 6 -in.cooling_unavailable_period Jul 4 - Oct 1 Cooling is unavailable during Jul 4 - Oct 1 -in.cooling_unavailable_period Jul 5 - Aug 3 Cooling is unavailable during Jul 5 - Aug 3 -in.cooling_unavailable_period Jul 5 - Jul 11 Cooling is unavailable during Jul 5 - Jul 11 -in.cooling_unavailable_period Jul 5 - Jul 18 Cooling is unavailable during Jul 5 - Jul 18 -in.cooling_unavailable_period Jul 5 - Jul 5 Cooling is unavailable during Jul 5 - Jul 5 -in.cooling_unavailable_period Jul 5 - Jul 7 Cooling is unavailable during Jul 5 - Jul 7 -in.cooling_unavailable_period Jul 5 - Oct 2 Cooling is unavailable during Jul 5 - Oct 2 -in.cooling_unavailable_period Jul 6 - Aug 4 Cooling is unavailable during Jul 6 - Aug 4 -in.cooling_unavailable_period Jul 6 - Jul 12 Cooling is unavailable during Jul 6 - Jul 12 -in.cooling_unavailable_period Jul 6 - Jul 19 Cooling is unavailable during Jul 6 - Jul 19 -in.cooling_unavailable_period Jul 6 - Jul 6 Cooling is unavailable during Jul 6 - Jul 6 -in.cooling_unavailable_period Jul 6 - Jul 8 Cooling is unavailable during Jul 6 - Jul 8 -in.cooling_unavailable_period Jul 6 - Oct 3 Cooling is unavailable during Jul 6 - Oct 3 -in.cooling_unavailable_period Jul 7 - Aug 5 Cooling is unavailable during Jul 7 - Aug 5 -in.cooling_unavailable_period Jul 7 - Jul 13 Cooling is unavailable during Jul 7 - Jul 13 -in.cooling_unavailable_period Jul 7 - Jul 20 Cooling is unavailable during Jul 7 - Jul 20 -in.cooling_unavailable_period Jul 7 - Jul 7 Cooling is unavailable during Jul 7 - Jul 7 -in.cooling_unavailable_period Jul 7 - Jul 9 Cooling is unavailable during Jul 7 - Jul 9 -in.cooling_unavailable_period Jul 7 - Oct 4 Cooling is unavailable during Jul 7 - Oct 4 -in.cooling_unavailable_period Jul 8 - Aug 6 Cooling is unavailable during Jul 8 - Aug 6 -in.cooling_unavailable_period Jul 8 - Jul 10 Cooling is unavailable during Jul 8 - Jul 10 -in.cooling_unavailable_period Jul 8 - Jul 14 Cooling is unavailable during Jul 8 - Jul 14 -in.cooling_unavailable_period Jul 8 - Jul 21 Cooling is unavailable during Jul 8 - Jul 21 -in.cooling_unavailable_period Jul 8 - Jul 8 Cooling is unavailable during Jul 8 - Jul 8 -in.cooling_unavailable_period Jul 8 - Oct 5 Cooling is unavailable during Jul 8 - Oct 5 -in.cooling_unavailable_period Jul 9 - Aug 7 Cooling is unavailable during Jul 9 - Aug 7 -in.cooling_unavailable_period Jul 9 - Jul 11 Cooling is unavailable during Jul 9 - Jul 11 -in.cooling_unavailable_period Jul 9 - Jul 15 Cooling is unavailable during Jul 9 - Jul 15 -in.cooling_unavailable_period Jul 9 - Jul 22 Cooling is unavailable during Jul 9 - Jul 22 -in.cooling_unavailable_period Jul 9 - Jul 9 Cooling is unavailable during Jul 9 - Jul 9 -in.cooling_unavailable_period Jul 9 - Oct 6 Cooling is unavailable during Jul 9 - Oct 6 -in.cooling_unavailable_period Jun 1 - Aug 29 Cooling is unavailable during Jun 1 - Aug 29 -in.cooling_unavailable_period Jun 1 - Jun 1 Cooling is unavailable during Jun 1 - Jun 1 -in.cooling_unavailable_period Jun 1 - Jun 14 Cooling is unavailable during Jun 1 - Jun 14 -in.cooling_unavailable_period Jun 1 - Jun 3 Cooling is unavailable during Jun 1 - Jun 3 -in.cooling_unavailable_period Jun 1 - Jun 30 Cooling is unavailable during Jun 1 - Jun 30 -in.cooling_unavailable_period Jun 1 - Jun 7 Cooling is unavailable during Jun 1 - Jun 7 -in.cooling_unavailable_period Jun 10 - Jul 9 Cooling is unavailable during Jun 10 - Jul 9 -in.cooling_unavailable_period Jun 10 - Jun 10 Cooling is unavailable during Jun 10 - Jun 10 -in.cooling_unavailable_period Jun 10 - Jun 12 Cooling is unavailable during Jun 10 - Jun 12 -in.cooling_unavailable_period Jun 10 - Jun 16 Cooling is unavailable during Jun 10 - Jun 16 -in.cooling_unavailable_period Jun 10 - Jun 23 Cooling is unavailable during Jun 10 - Jun 23 -in.cooling_unavailable_period Jun 10 - Sep 7 Cooling is unavailable during Jun 10 - Sep 7 -in.cooling_unavailable_period Jun 11 - Jul 10 Cooling is unavailable during Jun 11 - Jul 10 -in.cooling_unavailable_period Jun 11 - Jun 11 Cooling is unavailable during Jun 11 - Jun 11 -in.cooling_unavailable_period Jun 11 - Jun 13 Cooling is unavailable during Jun 11 - Jun 13 -in.cooling_unavailable_period Jun 11 - Jun 17 Cooling is unavailable during Jun 11 - Jun 17 -in.cooling_unavailable_period Jun 11 - Jun 24 Cooling is unavailable during Jun 11 - Jun 24 -in.cooling_unavailable_period Jun 11 - Sep 8 Cooling is unavailable during Jun 11 - Sep 8 -in.cooling_unavailable_period Jun 12 - Jul 11 Cooling is unavailable during Jun 12 - Jul 11 -in.cooling_unavailable_period Jun 12 - Jun 12 Cooling is unavailable during Jun 12 - Jun 12 -in.cooling_unavailable_period Jun 12 - Jun 14 Cooling is unavailable during Jun 12 - Jun 14 -in.cooling_unavailable_period Jun 12 - Jun 18 Cooling is unavailable during Jun 12 - Jun 18 -in.cooling_unavailable_period Jun 12 - Jun 25 Cooling is unavailable during Jun 12 - Jun 25 -in.cooling_unavailable_period Jun 12 - Sep 9 Cooling is unavailable during Jun 12 - Sep 9 -in.cooling_unavailable_period Jun 13 - Jul 12 Cooling is unavailable during Jun 13 - Jul 12 -in.cooling_unavailable_period Jun 13 - Jun 13 Cooling is unavailable during Jun 13 - Jun 13 -in.cooling_unavailable_period Jun 13 - Jun 15 Cooling is unavailable during Jun 13 - Jun 15 -in.cooling_unavailable_period Jun 13 - Jun 19 Cooling is unavailable during Jun 13 - Jun 19 -in.cooling_unavailable_period Jun 13 - Jun 26 Cooling is unavailable during Jun 13 - Jun 26 -in.cooling_unavailable_period Jun 13 - Sep 10 Cooling is unavailable during Jun 13 - Sep 10 -in.cooling_unavailable_period Jun 14 - Jul 13 Cooling is unavailable during Jun 14 - Jul 13 -in.cooling_unavailable_period Jun 14 - Jun 14 Cooling is unavailable during Jun 14 - Jun 14 -in.cooling_unavailable_period Jun 14 - Jun 16 Cooling is unavailable during Jun 14 - Jun 16 -in.cooling_unavailable_period Jun 14 - Jun 20 Cooling is unavailable during Jun 14 - Jun 20 -in.cooling_unavailable_period Jun 14 - Jun 27 Cooling is unavailable during Jun 14 - Jun 27 -in.cooling_unavailable_period Jun 14 - Sep 11 Cooling is unavailable during Jun 14 - Sep 11 -in.cooling_unavailable_period Jun 15 - Jul 14 Cooling is unavailable during Jun 15 - Jul 14 -in.cooling_unavailable_period Jun 15 - Jun 15 Cooling is unavailable during Jun 15 - Jun 15 -in.cooling_unavailable_period Jun 15 - Jun 17 Cooling is unavailable during Jun 15 - Jun 17 -in.cooling_unavailable_period Jun 15 - Jun 21 Cooling is unavailable during Jun 15 - Jun 21 -in.cooling_unavailable_period Jun 15 - Jun 28 Cooling is unavailable during Jun 15 - Jun 28 -in.cooling_unavailable_period Jun 15 - Sep 12 Cooling is unavailable during Jun 15 - Sep 12 -in.cooling_unavailable_period Jun 16 - Jul 15 Cooling is unavailable during Jun 16 - Jul 15 -in.cooling_unavailable_period Jun 16 - Jun 16 Cooling is unavailable during Jun 16 - Jun 16 -in.cooling_unavailable_period Jun 16 - Jun 18 Cooling is unavailable during Jun 16 - Jun 18 -in.cooling_unavailable_period Jun 16 - Jun 22 Cooling is unavailable during Jun 16 - Jun 22 -in.cooling_unavailable_period Jun 16 - Jun 29 Cooling is unavailable during Jun 16 - Jun 29 -in.cooling_unavailable_period Jun 16 - Sep 13 Cooling is unavailable during Jun 16 - Sep 13 -in.cooling_unavailable_period Jun 17 - Jul 16 Cooling is unavailable during Jun 17 - Jul 16 -in.cooling_unavailable_period Jun 17 - Jun 17 Cooling is unavailable during Jun 17 - Jun 17 -in.cooling_unavailable_period Jun 17 - Jun 19 Cooling is unavailable during Jun 17 - Jun 19 -in.cooling_unavailable_period Jun 17 - Jun 23 Cooling is unavailable during Jun 17 - Jun 23 -in.cooling_unavailable_period Jun 17 - Jun 30 Cooling is unavailable during Jun 17 - Jun 30 -in.cooling_unavailable_period Jun 17 - Sep 14 Cooling is unavailable during Jun 17 - Sep 14 -in.cooling_unavailable_period Jun 18 - Jul 1 Cooling is unavailable during Jun 18 - Jul 1 -in.cooling_unavailable_period Jun 18 - Jul 17 Cooling is unavailable during Jun 18 - Jul 17 -in.cooling_unavailable_period Jun 18 - Jun 18 Cooling is unavailable during Jun 18 - Jun 18 -in.cooling_unavailable_period Jun 18 - Jun 20 Cooling is unavailable during Jun 18 - Jun 20 -in.cooling_unavailable_period Jun 18 - Jun 24 Cooling is unavailable during Jun 18 - Jun 24 -in.cooling_unavailable_period Jun 18 - Sep 15 Cooling is unavailable during Jun 18 - Sep 15 -in.cooling_unavailable_period Jun 19 - Jul 18 Cooling is unavailable during Jun 19 - Jul 18 -in.cooling_unavailable_period Jun 19 - Jul 2 Cooling is unavailable during Jun 19 - Jul 2 -in.cooling_unavailable_period Jun 19 - Jun 19 Cooling is unavailable during Jun 19 - Jun 19 -in.cooling_unavailable_period Jun 19 - Jun 21 Cooling is unavailable during Jun 19 - Jun 21 -in.cooling_unavailable_period Jun 19 - Jun 25 Cooling is unavailable during Jun 19 - Jun 25 -in.cooling_unavailable_period Jun 19 - Sep 16 Cooling is unavailable during Jun 19 - Sep 16 -in.cooling_unavailable_period Jun 2 - Aug 30 Cooling is unavailable during Jun 2 - Aug 30 -in.cooling_unavailable_period Jun 2 - Jul 1 Cooling is unavailable during Jun 2 - Jul 1 -in.cooling_unavailable_period Jun 2 - Jun 15 Cooling is unavailable during Jun 2 - Jun 15 -in.cooling_unavailable_period Jun 2 - Jun 2 Cooling is unavailable during Jun 2 - Jun 2 -in.cooling_unavailable_period Jun 2 - Jun 4 Cooling is unavailable during Jun 2 - Jun 4 -in.cooling_unavailable_period Jun 2 - Jun 8 Cooling is unavailable during Jun 2 - Jun 8 -in.cooling_unavailable_period Jun 20 - Jul 19 Cooling is unavailable during Jun 20 - Jul 19 -in.cooling_unavailable_period Jun 20 - Jul 3 Cooling is unavailable during Jun 20 - Jul 3 -in.cooling_unavailable_period Jun 20 - Jun 20 Cooling is unavailable during Jun 20 - Jun 20 -in.cooling_unavailable_period Jun 20 - Jun 22 Cooling is unavailable during Jun 20 - Jun 22 -in.cooling_unavailable_period Jun 20 - Jun 26 Cooling is unavailable during Jun 20 - Jun 26 -in.cooling_unavailable_period Jun 20 - Sep 17 Cooling is unavailable during Jun 20 - Sep 17 -in.cooling_unavailable_period Jun 21 - Jul 20 Cooling is unavailable during Jun 21 - Jul 20 -in.cooling_unavailable_period Jun 21 - Jul 4 Cooling is unavailable during Jun 21 - Jul 4 -in.cooling_unavailable_period Jun 21 - Jun 21 Cooling is unavailable during Jun 21 - Jun 21 -in.cooling_unavailable_period Jun 21 - Jun 23 Cooling is unavailable during Jun 21 - Jun 23 -in.cooling_unavailable_period Jun 21 - Jun 27 Cooling is unavailable during Jun 21 - Jun 27 -in.cooling_unavailable_period Jun 21 - Sep 18 Cooling is unavailable during Jun 21 - Sep 18 -in.cooling_unavailable_period Jun 22 - Jul 21 Cooling is unavailable during Jun 22 - Jul 21 -in.cooling_unavailable_period Jun 22 - Jul 5 Cooling is unavailable during Jun 22 - Jul 5 -in.cooling_unavailable_period Jun 22 - Jun 22 Cooling is unavailable during Jun 22 - Jun 22 -in.cooling_unavailable_period Jun 22 - Jun 24 Cooling is unavailable during Jun 22 - Jun 24 -in.cooling_unavailable_period Jun 22 - Jun 28 Cooling is unavailable during Jun 22 - Jun 28 -in.cooling_unavailable_period Jun 22 - Sep 19 Cooling is unavailable during Jun 22 - Sep 19 -in.cooling_unavailable_period Jun 23 - Jul 22 Cooling is unavailable during Jun 23 - Jul 22 -in.cooling_unavailable_period Jun 23 - Jul 6 Cooling is unavailable during Jun 23 - Jul 6 -in.cooling_unavailable_period Jun 23 - Jun 23 Cooling is unavailable during Jun 23 - Jun 23 -in.cooling_unavailable_period Jun 23 - Jun 25 Cooling is unavailable during Jun 23 - Jun 25 -in.cooling_unavailable_period Jun 23 - Jun 29 Cooling is unavailable during Jun 23 - Jun 29 -in.cooling_unavailable_period Jun 23 - Sep 20 Cooling is unavailable during Jun 23 - Sep 20 -in.cooling_unavailable_period Jun 24 - Jul 23 Cooling is unavailable during Jun 24 - Jul 23 -in.cooling_unavailable_period Jun 24 - Jul 7 Cooling is unavailable during Jun 24 - Jul 7 -in.cooling_unavailable_period Jun 24 - Jun 24 Cooling is unavailable during Jun 24 - Jun 24 -in.cooling_unavailable_period Jun 24 - Jun 26 Cooling is unavailable during Jun 24 - Jun 26 -in.cooling_unavailable_period Jun 24 - Jun 30 Cooling is unavailable during Jun 24 - Jun 30 -in.cooling_unavailable_period Jun 24 - Sep 21 Cooling is unavailable during Jun 24 - Sep 21 -in.cooling_unavailable_period Jun 25 - Jul 1 Cooling is unavailable during Jun 25 - Jul 1 -in.cooling_unavailable_period Jun 25 - Jul 24 Cooling is unavailable during Jun 25 - Jul 24 -in.cooling_unavailable_period Jun 25 - Jul 8 Cooling is unavailable during Jun 25 - Jul 8 -in.cooling_unavailable_period Jun 25 - Jun 25 Cooling is unavailable during Jun 25 - Jun 25 -in.cooling_unavailable_period Jun 25 - Jun 27 Cooling is unavailable during Jun 25 - Jun 27 -in.cooling_unavailable_period Jun 25 - Sep 22 Cooling is unavailable during Jun 25 - Sep 22 -in.cooling_unavailable_period Jun 26 - Jul 2 Cooling is unavailable during Jun 26 - Jul 2 -in.cooling_unavailable_period Jun 26 - Jul 25 Cooling is unavailable during Jun 26 - Jul 25 -in.cooling_unavailable_period Jun 26 - Jul 9 Cooling is unavailable during Jun 26 - Jul 9 -in.cooling_unavailable_period Jun 26 - Jun 26 Cooling is unavailable during Jun 26 - Jun 26 -in.cooling_unavailable_period Jun 26 - Jun 28 Cooling is unavailable during Jun 26 - Jun 28 -in.cooling_unavailable_period Jun 26 - Sep 23 Cooling is unavailable during Jun 26 - Sep 23 -in.cooling_unavailable_period Jun 27 - Jul 10 Cooling is unavailable during Jun 27 - Jul 10 -in.cooling_unavailable_period Jun 27 - Jul 26 Cooling is unavailable during Jun 27 - Jul 26 -in.cooling_unavailable_period Jun 27 - Jul 3 Cooling is unavailable during Jun 27 - Jul 3 -in.cooling_unavailable_period Jun 27 - Jun 27 Cooling is unavailable during Jun 27 - Jun 27 -in.cooling_unavailable_period Jun 27 - Jun 29 Cooling is unavailable during Jun 27 - Jun 29 -in.cooling_unavailable_period Jun 27 - Sep 24 Cooling is unavailable during Jun 27 - Sep 24 -in.cooling_unavailable_period Jun 28 - Jul 11 Cooling is unavailable during Jun 28 - Jul 11 -in.cooling_unavailable_period Jun 28 - Jul 27 Cooling is unavailable during Jun 28 - Jul 27 -in.cooling_unavailable_period Jun 28 - Jul 4 Cooling is unavailable during Jun 28 - Jul 4 -in.cooling_unavailable_period Jun 28 - Jun 28 Cooling is unavailable during Jun 28 - Jun 28 -in.cooling_unavailable_period Jun 28 - Jun 30 Cooling is unavailable during Jun 28 - Jun 30 -in.cooling_unavailable_period Jun 28 - Sep 25 Cooling is unavailable during Jun 28 - Sep 25 -in.cooling_unavailable_period Jun 29 - Jul 1 Cooling is unavailable during Jun 29 - Jul 1 -in.cooling_unavailable_period Jun 29 - Jul 12 Cooling is unavailable during Jun 29 - Jul 12 -in.cooling_unavailable_period Jun 29 - Jul 28 Cooling is unavailable during Jun 29 - Jul 28 -in.cooling_unavailable_period Jun 29 - Jul 5 Cooling is unavailable during Jun 29 - Jul 5 -in.cooling_unavailable_period Jun 29 - Jun 29 Cooling is unavailable during Jun 29 - Jun 29 -in.cooling_unavailable_period Jun 29 - Sep 26 Cooling is unavailable during Jun 29 - Sep 26 -in.cooling_unavailable_period Jun 3 - Aug 31 Cooling is unavailable during Jun 3 - Aug 31 -in.cooling_unavailable_period Jun 3 - Jul 2 Cooling is unavailable during Jun 3 - Jul 2 -in.cooling_unavailable_period Jun 3 - Jun 16 Cooling is unavailable during Jun 3 - Jun 16 -in.cooling_unavailable_period Jun 3 - Jun 3 Cooling is unavailable during Jun 3 - Jun 3 -in.cooling_unavailable_period Jun 3 - Jun 5 Cooling is unavailable during Jun 3 - Jun 5 -in.cooling_unavailable_period Jun 3 - Jun 9 Cooling is unavailable during Jun 3 - Jun 9 -in.cooling_unavailable_period Jun 30 - Jul 13 Cooling is unavailable during Jun 30 - Jul 13 -in.cooling_unavailable_period Jun 30 - Jul 2 Cooling is unavailable during Jun 30 - Jul 2 -in.cooling_unavailable_period Jun 30 - Jul 29 Cooling is unavailable during Jun 30 - Jul 29 -in.cooling_unavailable_period Jun 30 - Jul 6 Cooling is unavailable during Jun 30 - Jul 6 -in.cooling_unavailable_period Jun 30 - Jun 30 Cooling is unavailable during Jun 30 - Jun 30 -in.cooling_unavailable_period Jun 30 - Sep 27 Cooling is unavailable during Jun 30 - Sep 27 -in.cooling_unavailable_period Jun 4 - Jul 3 Cooling is unavailable during Jun 4 - Jul 3 -in.cooling_unavailable_period Jun 4 - Jun 10 Cooling is unavailable during Jun 4 - Jun 10 -in.cooling_unavailable_period Jun 4 - Jun 17 Cooling is unavailable during Jun 4 - Jun 17 -in.cooling_unavailable_period Jun 4 - Jun 4 Cooling is unavailable during Jun 4 - Jun 4 -in.cooling_unavailable_period Jun 4 - Jun 6 Cooling is unavailable during Jun 4 - Jun 6 -in.cooling_unavailable_period Jun 4 - Sep 1 Cooling is unavailable during Jun 4 - Sep 1 -in.cooling_unavailable_period Jun 5 - Jul 4 Cooling is unavailable during Jun 5 - Jul 4 -in.cooling_unavailable_period Jun 5 - Jun 11 Cooling is unavailable during Jun 5 - Jun 11 -in.cooling_unavailable_period Jun 5 - Jun 18 Cooling is unavailable during Jun 5 - Jun 18 -in.cooling_unavailable_period Jun 5 - Jun 5 Cooling is unavailable during Jun 5 - Jun 5 -in.cooling_unavailable_period Jun 5 - Jun 7 Cooling is unavailable during Jun 5 - Jun 7 -in.cooling_unavailable_period Jun 5 - Sep 2 Cooling is unavailable during Jun 5 - Sep 2 -in.cooling_unavailable_period Jun 6 - Jul 5 Cooling is unavailable during Jun 6 - Jul 5 -in.cooling_unavailable_period Jun 6 - Jun 12 Cooling is unavailable during Jun 6 - Jun 12 -in.cooling_unavailable_period Jun 6 - Jun 19 Cooling is unavailable during Jun 6 - Jun 19 -in.cooling_unavailable_period Jun 6 - Jun 6 Cooling is unavailable during Jun 6 - Jun 6 -in.cooling_unavailable_period Jun 6 - Jun 8 Cooling is unavailable during Jun 6 - Jun 8 -in.cooling_unavailable_period Jun 6 - Sep 3 Cooling is unavailable during Jun 6 - Sep 3 -in.cooling_unavailable_period Jun 7 - Jul 6 Cooling is unavailable during Jun 7 - Jul 6 -in.cooling_unavailable_period Jun 7 - Jun 13 Cooling is unavailable during Jun 7 - Jun 13 -in.cooling_unavailable_period Jun 7 - Jun 20 Cooling is unavailable during Jun 7 - Jun 20 -in.cooling_unavailable_period Jun 7 - Jun 7 Cooling is unavailable during Jun 7 - Jun 7 -in.cooling_unavailable_period Jun 7 - Jun 9 Cooling is unavailable during Jun 7 - Jun 9 -in.cooling_unavailable_period Jun 7 - Sep 4 Cooling is unavailable during Jun 7 - Sep 4 -in.cooling_unavailable_period Jun 8 - Jul 7 Cooling is unavailable during Jun 8 - Jul 7 -in.cooling_unavailable_period Jun 8 - Jun 10 Cooling is unavailable during Jun 8 - Jun 10 -in.cooling_unavailable_period Jun 8 - Jun 14 Cooling is unavailable during Jun 8 - Jun 14 -in.cooling_unavailable_period Jun 8 - Jun 21 Cooling is unavailable during Jun 8 - Jun 21 -in.cooling_unavailable_period Jun 8 - Jun 8 Cooling is unavailable during Jun 8 - Jun 8 -in.cooling_unavailable_period Jun 8 - Sep 5 Cooling is unavailable during Jun 8 - Sep 5 -in.cooling_unavailable_period Jun 9 - Jul 8 Cooling is unavailable during Jun 9 - Jul 8 -in.cooling_unavailable_period Jun 9 - Jun 11 Cooling is unavailable during Jun 9 - Jun 11 -in.cooling_unavailable_period Jun 9 - Jun 15 Cooling is unavailable during Jun 9 - Jun 15 -in.cooling_unavailable_period Jun 9 - Jun 22 Cooling is unavailable during Jun 9 - Jun 22 -in.cooling_unavailable_period Jun 9 - Jun 9 Cooling is unavailable during Jun 9 - Jun 9 -in.cooling_unavailable_period Jun 9 - Sep 6 Cooling is unavailable during Jun 9 - Sep 6 -in.cooling_unavailable_period Mar 1 - Mar 1 Cooling is unavailable during Mar 1 - Mar 1 -in.cooling_unavailable_period Mar 1 - Mar 14 Cooling is unavailable during Mar 1 - Mar 14 -in.cooling_unavailable_period Mar 1 - Mar 3 Cooling is unavailable during Mar 1 - Mar 3 -in.cooling_unavailable_period Mar 1 - Mar 30 Cooling is unavailable during Mar 1 - Mar 30 -in.cooling_unavailable_period Mar 1 - Mar 7 Cooling is unavailable during Mar 1 - Mar 7 -in.cooling_unavailable_period Mar 1 - May 29 Cooling is unavailable during Mar 1 - May 29 -in.cooling_unavailable_period Mar 10 - Apr 8 Cooling is unavailable during Mar 10 - Apr 8 -in.cooling_unavailable_period Mar 10 - Jun 7 Cooling is unavailable during Mar 10 - Jun 7 -in.cooling_unavailable_period Mar 10 - Mar 10 Cooling is unavailable during Mar 10 - Mar 10 -in.cooling_unavailable_period Mar 10 - Mar 12 Cooling is unavailable during Mar 10 - Mar 12 -in.cooling_unavailable_period Mar 10 - Mar 16 Cooling is unavailable during Mar 10 - Mar 16 -in.cooling_unavailable_period Mar 10 - Mar 23 Cooling is unavailable during Mar 10 - Mar 23 -in.cooling_unavailable_period Mar 11 - Apr 9 Cooling is unavailable during Mar 11 - Apr 9 -in.cooling_unavailable_period Mar 11 - Jun 8 Cooling is unavailable during Mar 11 - Jun 8 -in.cooling_unavailable_period Mar 11 - Mar 13 Cooling is unavailable during Mar 11 - Mar 13 -in.cooling_unavailable_period Mar 11 - Mar 24 Cooling is unavailable during Mar 11 - Mar 24 -in.cooling_unavailable_period Mar 12 - Apr 10 Cooling is unavailable during Mar 12 - Apr 10 -in.cooling_unavailable_period Mar 12 - Jun 9 Cooling is unavailable during Mar 12 - Jun 9 -in.cooling_unavailable_period Mar 12 - Mar 12 Cooling is unavailable during Mar 12 - Mar 12 -in.cooling_unavailable_period Mar 12 - Mar 14 Cooling is unavailable during Mar 12 - Mar 14 -in.cooling_unavailable_period Mar 12 - Mar 18 Cooling is unavailable during Mar 12 - Mar 18 -in.cooling_unavailable_period Mar 12 - Mar 25 Cooling is unavailable during Mar 12 - Mar 25 -in.cooling_unavailable_period Mar 13 - Apr 11 Cooling is unavailable during Mar 13 - Apr 11 -in.cooling_unavailable_period Mar 13 - Mar 13 Cooling is unavailable during Mar 13 - Mar 13 -in.cooling_unavailable_period Mar 13 - Mar 15 Cooling is unavailable during Mar 13 - Mar 15 -in.cooling_unavailable_period Mar 13 - Mar 19 Cooling is unavailable during Mar 13 - Mar 19 -in.cooling_unavailable_period Mar 13 - Mar 26 Cooling is unavailable during Mar 13 - Mar 26 -in.cooling_unavailable_period Mar 14 - Mar 14 Cooling is unavailable during Mar 14 - Mar 14 -in.cooling_unavailable_period Mar 14 - Mar 16 Cooling is unavailable during Mar 14 - Mar 16 -in.cooling_unavailable_period Mar 14 - Mar 20 Cooling is unavailable during Mar 14 - Mar 20 -in.cooling_unavailable_period Mar 14 - Mar 27 Cooling is unavailable during Mar 14 - Mar 27 -in.cooling_unavailable_period Mar 15 - Apr 13 Cooling is unavailable during Mar 15 - Apr 13 -in.cooling_unavailable_period Mar 15 - Jun 12 Cooling is unavailable during Mar 15 - Jun 12 -in.cooling_unavailable_period Mar 15 - Mar 15 Cooling is unavailable during Mar 15 - Mar 15 -in.cooling_unavailable_period Mar 15 - Mar 17 Cooling is unavailable during Mar 15 - Mar 17 -in.cooling_unavailable_period Mar 15 - Mar 21 Cooling is unavailable during Mar 15 - Mar 21 -in.cooling_unavailable_period Mar 16 - Apr 14 Cooling is unavailable during Mar 16 - Apr 14 -in.cooling_unavailable_period Mar 16 - Jun 13 Cooling is unavailable during Mar 16 - Jun 13 -in.cooling_unavailable_period Mar 16 - Mar 16 Cooling is unavailable during Mar 16 - Mar 16 -in.cooling_unavailable_period Mar 16 - Mar 18 Cooling is unavailable during Mar 16 - Mar 18 -in.cooling_unavailable_period Mar 16 - Mar 22 Cooling is unavailable during Mar 16 - Mar 22 -in.cooling_unavailable_period Mar 16 - Mar 29 Cooling is unavailable during Mar 16 - Mar 29 -in.cooling_unavailable_period Mar 17 - Apr 15 Cooling is unavailable during Mar 17 - Apr 15 -in.cooling_unavailable_period Mar 17 - Jun 14 Cooling is unavailable during Mar 17 - Jun 14 -in.cooling_unavailable_period Mar 17 - Mar 17 Cooling is unavailable during Mar 17 - Mar 17 -in.cooling_unavailable_period Mar 17 - Mar 19 Cooling is unavailable during Mar 17 - Mar 19 -in.cooling_unavailable_period Mar 17 - Mar 23 Cooling is unavailable during Mar 17 - Mar 23 -in.cooling_unavailable_period Mar 17 - Mar 30 Cooling is unavailable during Mar 17 - Mar 30 -in.cooling_unavailable_period Mar 18 - Apr 16 Cooling is unavailable during Mar 18 - Apr 16 -in.cooling_unavailable_period Mar 18 - Jun 15 Cooling is unavailable during Mar 18 - Jun 15 -in.cooling_unavailable_period Mar 18 - Mar 20 Cooling is unavailable during Mar 18 - Mar 20 -in.cooling_unavailable_period Mar 18 - Mar 24 Cooling is unavailable during Mar 18 - Mar 24 -in.cooling_unavailable_period Mar 18 - Mar 31 Cooling is unavailable during Mar 18 - Mar 31 -in.cooling_unavailable_period Mar 19 - Apr 1 Cooling is unavailable during Mar 19 - Apr 1 -in.cooling_unavailable_period Mar 19 - Apr 17 Cooling is unavailable during Mar 19 - Apr 17 -in.cooling_unavailable_period Mar 19 - Jun 16 Cooling is unavailable during Mar 19 - Jun 16 -in.cooling_unavailable_period Mar 19 - Mar 21 Cooling is unavailable during Mar 19 - Mar 21 -in.cooling_unavailable_period Mar 19 - Mar 25 Cooling is unavailable during Mar 19 - Mar 25 -in.cooling_unavailable_period Mar 2 - Mar 15 Cooling is unavailable during Mar 2 - Mar 15 -in.cooling_unavailable_period Mar 2 - Mar 2 Cooling is unavailable during Mar 2 - Mar 2 -in.cooling_unavailable_period Mar 2 - Mar 31 Cooling is unavailable during Mar 2 - Mar 31 -in.cooling_unavailable_period Mar 2 - Mar 4 Cooling is unavailable during Mar 2 - Mar 4 -in.cooling_unavailable_period Mar 2 - Mar 8 Cooling is unavailable during Mar 2 - Mar 8 -in.cooling_unavailable_period Mar 2 - May 30 Cooling is unavailable during Mar 2 - May 30 -in.cooling_unavailable_period Mar 20 - Apr 18 Cooling is unavailable during Mar 20 - Apr 18 -in.cooling_unavailable_period Mar 20 - Mar 20 Cooling is unavailable during Mar 20 - Mar 20 -in.cooling_unavailable_period Mar 20 - Mar 22 Cooling is unavailable during Mar 20 - Mar 22 -in.cooling_unavailable_period Mar 20 - Mar 26 Cooling is unavailable during Mar 20 - Mar 26 -in.cooling_unavailable_period Mar 21 - Apr 19 Cooling is unavailable during Mar 21 - Apr 19 -in.cooling_unavailable_period Mar 21 - Jun 18 Cooling is unavailable during Mar 21 - Jun 18 -in.cooling_unavailable_period Mar 21 - Mar 21 Cooling is unavailable during Mar 21 - Mar 21 -in.cooling_unavailable_period Mar 21 - Mar 23 Cooling is unavailable during Mar 21 - Mar 23 -in.cooling_unavailable_period Mar 21 - Mar 27 Cooling is unavailable during Mar 21 - Mar 27 -in.cooling_unavailable_period Mar 22 - Apr 4 Cooling is unavailable during Mar 22 - Apr 4 -in.cooling_unavailable_period Mar 22 - Jun 19 Cooling is unavailable during Mar 22 - Jun 19 -in.cooling_unavailable_period Mar 22 - Mar 22 Cooling is unavailable during Mar 22 - Mar 22 -in.cooling_unavailable_period Mar 22 - Mar 28 Cooling is unavailable during Mar 22 - Mar 28 -in.cooling_unavailable_period Mar 23 - Apr 21 Cooling is unavailable during Mar 23 - Apr 21 -in.cooling_unavailable_period Mar 23 - Apr 5 Cooling is unavailable during Mar 23 - Apr 5 -in.cooling_unavailable_period Mar 23 - Jun 20 Cooling is unavailable during Mar 23 - Jun 20 -in.cooling_unavailable_period Mar 23 - Mar 23 Cooling is unavailable during Mar 23 - Mar 23 -in.cooling_unavailable_period Mar 23 - Mar 25 Cooling is unavailable during Mar 23 - Mar 25 -in.cooling_unavailable_period Mar 23 - Mar 29 Cooling is unavailable during Mar 23 - Mar 29 -in.cooling_unavailable_period Mar 24 - Apr 22 Cooling is unavailable during Mar 24 - Apr 22 -in.cooling_unavailable_period Mar 24 - Apr 6 Cooling is unavailable during Mar 24 - Apr 6 -in.cooling_unavailable_period Mar 24 - Mar 26 Cooling is unavailable during Mar 24 - Mar 26 -in.cooling_unavailable_period Mar 24 - Mar 30 Cooling is unavailable during Mar 24 - Mar 30 -in.cooling_unavailable_period Mar 25 - Apr 23 Cooling is unavailable during Mar 25 - Apr 23 -in.cooling_unavailable_period Mar 25 - Jun 22 Cooling is unavailable during Mar 25 - Jun 22 -in.cooling_unavailable_period Mar 25 - Mar 25 Cooling is unavailable during Mar 25 - Mar 25 -in.cooling_unavailable_period Mar 25 - Mar 27 Cooling is unavailable during Mar 25 - Mar 27 -in.cooling_unavailable_period Mar 25 - Mar 31 Cooling is unavailable during Mar 25 - Mar 31 -in.cooling_unavailable_period Mar 26 - Apr 1 Cooling is unavailable during Mar 26 - Apr 1 -in.cooling_unavailable_period Mar 26 - Apr 24 Cooling is unavailable during Mar 26 - Apr 24 -in.cooling_unavailable_period Mar 26 - Jun 23 Cooling is unavailable during Mar 26 - Jun 23 -in.cooling_unavailable_period Mar 26 - Mar 26 Cooling is unavailable during Mar 26 - Mar 26 -in.cooling_unavailable_period Mar 26 - Mar 28 Cooling is unavailable during Mar 26 - Mar 28 -in.cooling_unavailable_period Mar 27 - Apr 25 Cooling is unavailable during Mar 27 - Apr 25 -in.cooling_unavailable_period Mar 27 - Apr 9 Cooling is unavailable during Mar 27 - Apr 9 -in.cooling_unavailable_period Mar 27 - Mar 27 Cooling is unavailable during Mar 27 - Mar 27 -in.cooling_unavailable_period Mar 27 - Mar 29 Cooling is unavailable during Mar 27 - Mar 29 -in.cooling_unavailable_period Mar 28 - Apr 10 Cooling is unavailable during Mar 28 - Apr 10 -in.cooling_unavailable_period Mar 28 - Apr 26 Cooling is unavailable during Mar 28 - Apr 26 -in.cooling_unavailable_period Mar 28 - Apr 3 Cooling is unavailable during Mar 28 - Apr 3 -in.cooling_unavailable_period Mar 28 - Mar 28 Cooling is unavailable during Mar 28 - Mar 28 -in.cooling_unavailable_period Mar 28 - Mar 30 Cooling is unavailable during Mar 28 - Mar 30 -in.cooling_unavailable_period Mar 29 - Apr 11 Cooling is unavailable during Mar 29 - Apr 11 -in.cooling_unavailable_period Mar 29 - Apr 27 Cooling is unavailable during Mar 29 - Apr 27 -in.cooling_unavailable_period Mar 29 - Jun 26 Cooling is unavailable during Mar 29 - Jun 26 -in.cooling_unavailable_period Mar 29 - Mar 31 Cooling is unavailable during Mar 29 - Mar 31 -in.cooling_unavailable_period Mar 3 - Apr 1 Cooling is unavailable during Mar 3 - Apr 1 -in.cooling_unavailable_period Mar 3 - Mar 16 Cooling is unavailable during Mar 3 - Mar 16 -in.cooling_unavailable_period Mar 3 - Mar 3 Cooling is unavailable during Mar 3 - Mar 3 -in.cooling_unavailable_period Mar 3 - Mar 5 Cooling is unavailable during Mar 3 - Mar 5 -in.cooling_unavailable_period Mar 3 - Mar 9 Cooling is unavailable during Mar 3 - Mar 9 -in.cooling_unavailable_period Mar 3 - May 31 Cooling is unavailable during Mar 3 - May 31 -in.cooling_unavailable_period Mar 30 - Apr 1 Cooling is unavailable during Mar 30 - Apr 1 -in.cooling_unavailable_period Mar 30 - Apr 12 Cooling is unavailable during Mar 30 - Apr 12 -in.cooling_unavailable_period Mar 30 - Apr 28 Cooling is unavailable during Mar 30 - Apr 28 -in.cooling_unavailable_period Mar 30 - Apr 5 Cooling is unavailable during Mar 30 - Apr 5 -in.cooling_unavailable_period Mar 30 - Jun 27 Cooling is unavailable during Mar 30 - Jun 27 -in.cooling_unavailable_period Mar 30 - Mar 30 Cooling is unavailable during Mar 30 - Mar 30 -in.cooling_unavailable_period Mar 31 - Apr 13 Cooling is unavailable during Mar 31 - Apr 13 -in.cooling_unavailable_period Mar 31 - Apr 2 Cooling is unavailable during Mar 31 - Apr 2 -in.cooling_unavailable_period Mar 31 - Apr 29 Cooling is unavailable during Mar 31 - Apr 29 -in.cooling_unavailable_period Mar 31 - Apr 6 Cooling is unavailable during Mar 31 - Apr 6 -in.cooling_unavailable_period Mar 31 - Jun 28 Cooling is unavailable during Mar 31 - Jun 28 -in.cooling_unavailable_period Mar 31 - Mar 31 Cooling is unavailable during Mar 31 - Mar 31 -in.cooling_unavailable_period Mar 4 - Apr 2 Cooling is unavailable during Mar 4 - Apr 2 -in.cooling_unavailable_period Mar 4 - Jun 1 Cooling is unavailable during Mar 4 - Jun 1 -in.cooling_unavailable_period Mar 4 - Mar 10 Cooling is unavailable during Mar 4 - Mar 10 -in.cooling_unavailable_period Mar 4 - Mar 17 Cooling is unavailable during Mar 4 - Mar 17 -in.cooling_unavailable_period Mar 4 - Mar 6 Cooling is unavailable during Mar 4 - Mar 6 -in.cooling_unavailable_period Mar 5 - Apr 3 Cooling is unavailable during Mar 5 - Apr 3 -in.cooling_unavailable_period Mar 5 - Jun 2 Cooling is unavailable during Mar 5 - Jun 2 -in.cooling_unavailable_period Mar 5 - Mar 11 Cooling is unavailable during Mar 5 - Mar 11 -in.cooling_unavailable_period Mar 5 - Mar 18 Cooling is unavailable during Mar 5 - Mar 18 -in.cooling_unavailable_period Mar 5 - Mar 5 Cooling is unavailable during Mar 5 - Mar 5 -in.cooling_unavailable_period Mar 5 - Mar 7 Cooling is unavailable during Mar 5 - Mar 7 -in.cooling_unavailable_period Mar 6 - Apr 4 Cooling is unavailable during Mar 6 - Apr 4 -in.cooling_unavailable_period Mar 6 - Jun 3 Cooling is unavailable during Mar 6 - Jun 3 -in.cooling_unavailable_period Mar 6 - Mar 12 Cooling is unavailable during Mar 6 - Mar 12 -in.cooling_unavailable_period Mar 6 - Mar 19 Cooling is unavailable during Mar 6 - Mar 19 -in.cooling_unavailable_period Mar 6 - Mar 6 Cooling is unavailable during Mar 6 - Mar 6 -in.cooling_unavailable_period Mar 6 - Mar 8 Cooling is unavailable during Mar 6 - Mar 8 -in.cooling_unavailable_period Mar 7 - Apr 5 Cooling is unavailable during Mar 7 - Apr 5 -in.cooling_unavailable_period Mar 7 - Jun 4 Cooling is unavailable during Mar 7 - Jun 4 -in.cooling_unavailable_period Mar 7 - Mar 13 Cooling is unavailable during Mar 7 - Mar 13 -in.cooling_unavailable_period Mar 7 - Mar 20 Cooling is unavailable during Mar 7 - Mar 20 -in.cooling_unavailable_period Mar 7 - Mar 7 Cooling is unavailable during Mar 7 - Mar 7 -in.cooling_unavailable_period Mar 7 - Mar 9 Cooling is unavailable during Mar 7 - Mar 9 -in.cooling_unavailable_period Mar 8 - Apr 6 Cooling is unavailable during Mar 8 - Apr 6 -in.cooling_unavailable_period Mar 8 - Jun 5 Cooling is unavailable during Mar 8 - Jun 5 -in.cooling_unavailable_period Mar 8 - Mar 10 Cooling is unavailable during Mar 8 - Mar 10 -in.cooling_unavailable_period Mar 8 - Mar 14 Cooling is unavailable during Mar 8 - Mar 14 -in.cooling_unavailable_period Mar 8 - Mar 21 Cooling is unavailable during Mar 8 - Mar 21 -in.cooling_unavailable_period Mar 8 - Mar 8 Cooling is unavailable during Mar 8 - Mar 8 -in.cooling_unavailable_period Mar 9 - Apr 7 Cooling is unavailable during Mar 9 - Apr 7 -in.cooling_unavailable_period Mar 9 - Jun 6 Cooling is unavailable during Mar 9 - Jun 6 -in.cooling_unavailable_period Mar 9 - Mar 15 Cooling is unavailable during Mar 9 - Mar 15 -in.cooling_unavailable_period Mar 9 - Mar 22 Cooling is unavailable during Mar 9 - Mar 22 -in.cooling_unavailable_period May 1 - Jul 29 Cooling is unavailable during May 1 - Jul 29 -in.cooling_unavailable_period May 1 - May 1 Cooling is unavailable during May 1 - May 1 -in.cooling_unavailable_period May 1 - May 14 Cooling is unavailable during May 1 - May 14 -in.cooling_unavailable_period May 1 - May 3 Cooling is unavailable during May 1 - May 3 -in.cooling_unavailable_period May 1 - May 30 Cooling is unavailable during May 1 - May 30 -in.cooling_unavailable_period May 1 - May 7 Cooling is unavailable during May 1 - May 7 -in.cooling_unavailable_period May 10 - Aug 7 Cooling is unavailable during May 10 - Aug 7 -in.cooling_unavailable_period May 10 - Jun 8 Cooling is unavailable during May 10 - Jun 8 -in.cooling_unavailable_period May 10 - May 10 Cooling is unavailable during May 10 - May 10 -in.cooling_unavailable_period May 10 - May 12 Cooling is unavailable during May 10 - May 12 -in.cooling_unavailable_period May 10 - May 16 Cooling is unavailable during May 10 - May 16 -in.cooling_unavailable_period May 10 - May 23 Cooling is unavailable during May 10 - May 23 -in.cooling_unavailable_period May 11 - Aug 8 Cooling is unavailable during May 11 - Aug 8 -in.cooling_unavailable_period May 11 - Jun 9 Cooling is unavailable during May 11 - Jun 9 -in.cooling_unavailable_period May 11 - May 11 Cooling is unavailable during May 11 - May 11 -in.cooling_unavailable_period May 11 - May 13 Cooling is unavailable during May 11 - May 13 -in.cooling_unavailable_period May 11 - May 17 Cooling is unavailable during May 11 - May 17 -in.cooling_unavailable_period May 11 - May 24 Cooling is unavailable during May 11 - May 24 -in.cooling_unavailable_period May 12 - Aug 9 Cooling is unavailable during May 12 - Aug 9 -in.cooling_unavailable_period May 12 - Jun 10 Cooling is unavailable during May 12 - Jun 10 -in.cooling_unavailable_period May 12 - May 12 Cooling is unavailable during May 12 - May 12 -in.cooling_unavailable_period May 12 - May 14 Cooling is unavailable during May 12 - May 14 -in.cooling_unavailable_period May 12 - May 18 Cooling is unavailable during May 12 - May 18 -in.cooling_unavailable_period May 12 - May 25 Cooling is unavailable during May 12 - May 25 -in.cooling_unavailable_period May 13 - Aug 10 Cooling is unavailable during May 13 - Aug 10 -in.cooling_unavailable_period May 13 - Jun 11 Cooling is unavailable during May 13 - Jun 11 -in.cooling_unavailable_period May 13 - May 13 Cooling is unavailable during May 13 - May 13 -in.cooling_unavailable_period May 13 - May 15 Cooling is unavailable during May 13 - May 15 -in.cooling_unavailable_period May 13 - May 19 Cooling is unavailable during May 13 - May 19 -in.cooling_unavailable_period May 13 - May 26 Cooling is unavailable during May 13 - May 26 -in.cooling_unavailable_period May 14 - Aug 11 Cooling is unavailable during May 14 - Aug 11 -in.cooling_unavailable_period May 14 - Jun 12 Cooling is unavailable during May 14 - Jun 12 -in.cooling_unavailable_period May 14 - May 14 Cooling is unavailable during May 14 - May 14 -in.cooling_unavailable_period May 14 - May 16 Cooling is unavailable during May 14 - May 16 -in.cooling_unavailable_period May 14 - May 20 Cooling is unavailable during May 14 - May 20 -in.cooling_unavailable_period May 14 - May 27 Cooling is unavailable during May 14 - May 27 -in.cooling_unavailable_period May 15 - Aug 12 Cooling is unavailable during May 15 - Aug 12 -in.cooling_unavailable_period May 15 - Jun 13 Cooling is unavailable during May 15 - Jun 13 -in.cooling_unavailable_period May 15 - May 15 Cooling is unavailable during May 15 - May 15 -in.cooling_unavailable_period May 15 - May 17 Cooling is unavailable during May 15 - May 17 -in.cooling_unavailable_period May 15 - May 21 Cooling is unavailable during May 15 - May 21 -in.cooling_unavailable_period May 15 - May 28 Cooling is unavailable during May 15 - May 28 -in.cooling_unavailable_period May 16 - Aug 13 Cooling is unavailable during May 16 - Aug 13 -in.cooling_unavailable_period May 16 - Jun 14 Cooling is unavailable during May 16 - Jun 14 -in.cooling_unavailable_period May 16 - May 16 Cooling is unavailable during May 16 - May 16 -in.cooling_unavailable_period May 16 - May 18 Cooling is unavailable during May 16 - May 18 -in.cooling_unavailable_period May 16 - May 22 Cooling is unavailable during May 16 - May 22 -in.cooling_unavailable_period May 16 - May 29 Cooling is unavailable during May 16 - May 29 -in.cooling_unavailable_period May 17 - Aug 14 Cooling is unavailable during May 17 - Aug 14 -in.cooling_unavailable_period May 17 - Jun 15 Cooling is unavailable during May 17 - Jun 15 -in.cooling_unavailable_period May 17 - May 17 Cooling is unavailable during May 17 - May 17 -in.cooling_unavailable_period May 17 - May 19 Cooling is unavailable during May 17 - May 19 -in.cooling_unavailable_period May 17 - May 23 Cooling is unavailable during May 17 - May 23 -in.cooling_unavailable_period May 17 - May 30 Cooling is unavailable during May 17 - May 30 -in.cooling_unavailable_period May 18 - Aug 15 Cooling is unavailable during May 18 - Aug 15 -in.cooling_unavailable_period May 18 - Jun 16 Cooling is unavailable during May 18 - Jun 16 -in.cooling_unavailable_period May 18 - May 18 Cooling is unavailable during May 18 - May 18 -in.cooling_unavailable_period May 18 - May 20 Cooling is unavailable during May 18 - May 20 -in.cooling_unavailable_period May 18 - May 24 Cooling is unavailable during May 18 - May 24 -in.cooling_unavailable_period May 18 - May 31 Cooling is unavailable during May 18 - May 31 -in.cooling_unavailable_period May 19 - Aug 16 Cooling is unavailable during May 19 - Aug 16 -in.cooling_unavailable_period May 19 - Jun 1 Cooling is unavailable during May 19 - Jun 1 -in.cooling_unavailable_period May 19 - Jun 17 Cooling is unavailable during May 19 - Jun 17 -in.cooling_unavailable_period May 19 - May 19 Cooling is unavailable during May 19 - May 19 -in.cooling_unavailable_period May 19 - May 21 Cooling is unavailable during May 19 - May 21 -in.cooling_unavailable_period May 19 - May 25 Cooling is unavailable during May 19 - May 25 -in.cooling_unavailable_period May 2 - Jul 30 Cooling is unavailable during May 2 - Jul 30 -in.cooling_unavailable_period May 2 - May 15 Cooling is unavailable during May 2 - May 15 -in.cooling_unavailable_period May 2 - May 2 Cooling is unavailable during May 2 - May 2 -in.cooling_unavailable_period May 2 - May 31 Cooling is unavailable during May 2 - May 31 -in.cooling_unavailable_period May 2 - May 4 Cooling is unavailable during May 2 - May 4 -in.cooling_unavailable_period May 2 - May 8 Cooling is unavailable during May 2 - May 8 -in.cooling_unavailable_period May 20 - Aug 17 Cooling is unavailable during May 20 - Aug 17 -in.cooling_unavailable_period May 20 - Jun 18 Cooling is unavailable during May 20 - Jun 18 -in.cooling_unavailable_period May 20 - Jun 2 Cooling is unavailable during May 20 - Jun 2 -in.cooling_unavailable_period May 20 - May 20 Cooling is unavailable during May 20 - May 20 -in.cooling_unavailable_period May 20 - May 22 Cooling is unavailable during May 20 - May 22 -in.cooling_unavailable_period May 20 - May 26 Cooling is unavailable during May 20 - May 26 -in.cooling_unavailable_period May 21 - Aug 18 Cooling is unavailable during May 21 - Aug 18 -in.cooling_unavailable_period May 21 - Jun 19 Cooling is unavailable during May 21 - Jun 19 -in.cooling_unavailable_period May 21 - Jun 3 Cooling is unavailable during May 21 - Jun 3 -in.cooling_unavailable_period May 21 - May 21 Cooling is unavailable during May 21 - May 21 -in.cooling_unavailable_period May 21 - May 23 Cooling is unavailable during May 21 - May 23 -in.cooling_unavailable_period May 21 - May 27 Cooling is unavailable during May 21 - May 27 -in.cooling_unavailable_period May 22 - Aug 19 Cooling is unavailable during May 22 - Aug 19 -in.cooling_unavailable_period May 22 - Jun 20 Cooling is unavailable during May 22 - Jun 20 -in.cooling_unavailable_period May 22 - Jun 4 Cooling is unavailable during May 22 - Jun 4 -in.cooling_unavailable_period May 22 - May 22 Cooling is unavailable during May 22 - May 22 -in.cooling_unavailable_period May 22 - May 24 Cooling is unavailable during May 22 - May 24 -in.cooling_unavailable_period May 22 - May 28 Cooling is unavailable during May 22 - May 28 -in.cooling_unavailable_period May 23 - Aug 20 Cooling is unavailable during May 23 - Aug 20 -in.cooling_unavailable_period May 23 - Jun 21 Cooling is unavailable during May 23 - Jun 21 -in.cooling_unavailable_period May 23 - Jun 5 Cooling is unavailable during May 23 - Jun 5 -in.cooling_unavailable_period May 23 - May 23 Cooling is unavailable during May 23 - May 23 -in.cooling_unavailable_period May 23 - May 25 Cooling is unavailable during May 23 - May 25 -in.cooling_unavailable_period May 23 - May 29 Cooling is unavailable during May 23 - May 29 -in.cooling_unavailable_period May 24 - Aug 21 Cooling is unavailable during May 24 - Aug 21 -in.cooling_unavailable_period May 24 - Jun 22 Cooling is unavailable during May 24 - Jun 22 -in.cooling_unavailable_period May 24 - Jun 6 Cooling is unavailable during May 24 - Jun 6 -in.cooling_unavailable_period May 24 - May 24 Cooling is unavailable during May 24 - May 24 -in.cooling_unavailable_period May 24 - May 26 Cooling is unavailable during May 24 - May 26 -in.cooling_unavailable_period May 24 - May 30 Cooling is unavailable during May 24 - May 30 -in.cooling_unavailable_period May 25 - Aug 22 Cooling is unavailable during May 25 - Aug 22 -in.cooling_unavailable_period May 25 - Jun 23 Cooling is unavailable during May 25 - Jun 23 -in.cooling_unavailable_period May 25 - Jun 7 Cooling is unavailable during May 25 - Jun 7 -in.cooling_unavailable_period May 25 - May 25 Cooling is unavailable during May 25 - May 25 -in.cooling_unavailable_period May 25 - May 27 Cooling is unavailable during May 25 - May 27 -in.cooling_unavailable_period May 25 - May 31 Cooling is unavailable during May 25 - May 31 -in.cooling_unavailable_period May 26 - Aug 23 Cooling is unavailable during May 26 - Aug 23 -in.cooling_unavailable_period May 26 - Jun 1 Cooling is unavailable during May 26 - Jun 1 -in.cooling_unavailable_period May 26 - Jun 24 Cooling is unavailable during May 26 - Jun 24 -in.cooling_unavailable_period May 26 - Jun 8 Cooling is unavailable during May 26 - Jun 8 -in.cooling_unavailable_period May 26 - May 26 Cooling is unavailable during May 26 - May 26 -in.cooling_unavailable_period May 26 - May 28 Cooling is unavailable during May 26 - May 28 -in.cooling_unavailable_period May 27 - Aug 24 Cooling is unavailable during May 27 - Aug 24 -in.cooling_unavailable_period May 27 - Jun 2 Cooling is unavailable during May 27 - Jun 2 -in.cooling_unavailable_period May 27 - Jun 25 Cooling is unavailable during May 27 - Jun 25 -in.cooling_unavailable_period May 27 - Jun 9 Cooling is unavailable during May 27 - Jun 9 -in.cooling_unavailable_period May 27 - May 27 Cooling is unavailable during May 27 - May 27 -in.cooling_unavailable_period May 27 - May 29 Cooling is unavailable during May 27 - May 29 -in.cooling_unavailable_period May 28 - Aug 25 Cooling is unavailable during May 28 - Aug 25 -in.cooling_unavailable_period May 28 - Jun 10 Cooling is unavailable during May 28 - Jun 10 -in.cooling_unavailable_period May 28 - Jun 26 Cooling is unavailable during May 28 - Jun 26 -in.cooling_unavailable_period May 28 - Jun 3 Cooling is unavailable during May 28 - Jun 3 -in.cooling_unavailable_period May 28 - May 28 Cooling is unavailable during May 28 - May 28 -in.cooling_unavailable_period May 28 - May 30 Cooling is unavailable during May 28 - May 30 -in.cooling_unavailable_period May 29 - Aug 26 Cooling is unavailable during May 29 - Aug 26 -in.cooling_unavailable_period May 29 - Jun 11 Cooling is unavailable during May 29 - Jun 11 -in.cooling_unavailable_period May 29 - Jun 27 Cooling is unavailable during May 29 - Jun 27 -in.cooling_unavailable_period May 29 - Jun 4 Cooling is unavailable during May 29 - Jun 4 -in.cooling_unavailable_period May 29 - May 29 Cooling is unavailable during May 29 - May 29 -in.cooling_unavailable_period May 29 - May 31 Cooling is unavailable during May 29 - May 31 -in.cooling_unavailable_period May 3 - Jul 31 Cooling is unavailable during May 3 - Jul 31 -in.cooling_unavailable_period May 3 - Jun 1 Cooling is unavailable during May 3 - Jun 1 -in.cooling_unavailable_period May 3 - May 16 Cooling is unavailable during May 3 - May 16 -in.cooling_unavailable_period May 3 - May 3 Cooling is unavailable during May 3 - May 3 -in.cooling_unavailable_period May 3 - May 5 Cooling is unavailable during May 3 - May 5 -in.cooling_unavailable_period May 3 - May 9 Cooling is unavailable during May 3 - May 9 -in.cooling_unavailable_period May 30 - Aug 27 Cooling is unavailable during May 30 - Aug 27 -in.cooling_unavailable_period May 30 - Jun 1 Cooling is unavailable during May 30 - Jun 1 -in.cooling_unavailable_period May 30 - Jun 12 Cooling is unavailable during May 30 - Jun 12 -in.cooling_unavailable_period May 30 - Jun 28 Cooling is unavailable during May 30 - Jun 28 -in.cooling_unavailable_period May 30 - Jun 5 Cooling is unavailable during May 30 - Jun 5 -in.cooling_unavailable_period May 30 - May 30 Cooling is unavailable during May 30 - May 30 -in.cooling_unavailable_period May 31 - Aug 28 Cooling is unavailable during May 31 - Aug 28 -in.cooling_unavailable_period May 31 - Jun 13 Cooling is unavailable during May 31 - Jun 13 -in.cooling_unavailable_period May 31 - Jun 2 Cooling is unavailable during May 31 - Jun 2 -in.cooling_unavailable_period May 31 - Jun 29 Cooling is unavailable during May 31 - Jun 29 -in.cooling_unavailable_period May 31 - Jun 6 Cooling is unavailable during May 31 - Jun 6 -in.cooling_unavailable_period May 31 - May 31 Cooling is unavailable during May 31 - May 31 -in.cooling_unavailable_period May 4 - Aug 1 Cooling is unavailable during May 4 - Aug 1 -in.cooling_unavailable_period May 4 - Jun 2 Cooling is unavailable during May 4 - Jun 2 -in.cooling_unavailable_period May 4 - May 10 Cooling is unavailable during May 4 - May 10 -in.cooling_unavailable_period May 4 - May 17 Cooling is unavailable during May 4 - May 17 -in.cooling_unavailable_period May 4 - May 4 Cooling is unavailable during May 4 - May 4 -in.cooling_unavailable_period May 4 - May 6 Cooling is unavailable during May 4 - May 6 -in.cooling_unavailable_period May 5 - Aug 2 Cooling is unavailable during May 5 - Aug 2 -in.cooling_unavailable_period May 5 - Jun 3 Cooling is unavailable during May 5 - Jun 3 -in.cooling_unavailable_period May 5 - May 11 Cooling is unavailable during May 5 - May 11 -in.cooling_unavailable_period May 5 - May 18 Cooling is unavailable during May 5 - May 18 -in.cooling_unavailable_period May 5 - May 5 Cooling is unavailable during May 5 - May 5 -in.cooling_unavailable_period May 5 - May 7 Cooling is unavailable during May 5 - May 7 -in.cooling_unavailable_period May 6 - Aug 3 Cooling is unavailable during May 6 - Aug 3 -in.cooling_unavailable_period May 6 - Jun 4 Cooling is unavailable during May 6 - Jun 4 -in.cooling_unavailable_period May 6 - May 12 Cooling is unavailable during May 6 - May 12 -in.cooling_unavailable_period May 6 - May 19 Cooling is unavailable during May 6 - May 19 -in.cooling_unavailable_period May 6 - May 6 Cooling is unavailable during May 6 - May 6 -in.cooling_unavailable_period May 6 - May 8 Cooling is unavailable during May 6 - May 8 -in.cooling_unavailable_period May 7 - Aug 4 Cooling is unavailable during May 7 - Aug 4 -in.cooling_unavailable_period May 7 - Jun 5 Cooling is unavailable during May 7 - Jun 5 -in.cooling_unavailable_period May 7 - May 13 Cooling is unavailable during May 7 - May 13 -in.cooling_unavailable_period May 7 - May 20 Cooling is unavailable during May 7 - May 20 -in.cooling_unavailable_period May 7 - May 7 Cooling is unavailable during May 7 - May 7 -in.cooling_unavailable_period May 7 - May 9 Cooling is unavailable during May 7 - May 9 -in.cooling_unavailable_period May 8 - Aug 5 Cooling is unavailable during May 8 - Aug 5 -in.cooling_unavailable_period May 8 - Jun 6 Cooling is unavailable during May 8 - Jun 6 -in.cooling_unavailable_period May 8 - May 10 Cooling is unavailable during May 8 - May 10 -in.cooling_unavailable_period May 8 - May 14 Cooling is unavailable during May 8 - May 14 -in.cooling_unavailable_period May 8 - May 21 Cooling is unavailable during May 8 - May 21 -in.cooling_unavailable_period May 8 - May 8 Cooling is unavailable during May 8 - May 8 -in.cooling_unavailable_period May 9 - Aug 6 Cooling is unavailable during May 9 - Aug 6 -in.cooling_unavailable_period May 9 - Jun 7 Cooling is unavailable during May 9 - Jun 7 -in.cooling_unavailable_period May 9 - May 11 Cooling is unavailable during May 9 - May 11 -in.cooling_unavailable_period May 9 - May 15 Cooling is unavailable during May 9 - May 15 -in.cooling_unavailable_period May 9 - May 22 Cooling is unavailable during May 9 - May 22 -in.cooling_unavailable_period May 9 - May 9 Cooling is unavailable during May 9 - May 9 -in.cooling_unavailable_period Never Cooling is unavailable during Never -in.cooling_unavailable_period Nov 1 - Jan 29 Cooling is unavailable during Nov 1 - Jan 29 -in.cooling_unavailable_period Nov 1 - Nov 1 Cooling is unavailable during Nov 1 - Nov 1 -in.cooling_unavailable_period Nov 1 - Nov 14 Cooling is unavailable during Nov 1 - Nov 14 -in.cooling_unavailable_period Nov 1 - Nov 3 Cooling is unavailable during Nov 1 - Nov 3 -in.cooling_unavailable_period Nov 1 - Nov 30 Cooling is unavailable during Nov 1 - Nov 30 -in.cooling_unavailable_period Nov 1 - Nov 7 Cooling is unavailable during Nov 1 - Nov 7 -in.cooling_unavailable_period Nov 10 - Dec 9 Cooling is unavailable during Nov 10 - Dec 9 -in.cooling_unavailable_period Nov 10 - Feb 7 Cooling is unavailable during Nov 10 - Feb 7 -in.cooling_unavailable_period Nov 10 - Nov 10 Cooling is unavailable during Nov 10 - Nov 10 -in.cooling_unavailable_period Nov 10 - Nov 12 Cooling is unavailable during Nov 10 - Nov 12 -in.cooling_unavailable_period Nov 10 - Nov 16 Cooling is unavailable during Nov 10 - Nov 16 -in.cooling_unavailable_period Nov 10 - Nov 23 Cooling is unavailable during Nov 10 - Nov 23 -in.cooling_unavailable_period Nov 11 - Dec 10 Cooling is unavailable during Nov 11 - Dec 10 -in.cooling_unavailable_period Nov 11 - Feb 8 Cooling is unavailable during Nov 11 - Feb 8 -in.cooling_unavailable_period Nov 11 - Nov 11 Cooling is unavailable during Nov 11 - Nov 11 -in.cooling_unavailable_period Nov 11 - Nov 13 Cooling is unavailable during Nov 11 - Nov 13 -in.cooling_unavailable_period Nov 11 - Nov 17 Cooling is unavailable during Nov 11 - Nov 17 -in.cooling_unavailable_period Nov 11 - Nov 24 Cooling is unavailable during Nov 11 - Nov 24 -in.cooling_unavailable_period Nov 12 - Dec 11 Cooling is unavailable during Nov 12 - Dec 11 -in.cooling_unavailable_period Nov 12 - Feb 9 Cooling is unavailable during Nov 12 - Feb 9 -in.cooling_unavailable_period Nov 12 - Nov 12 Cooling is unavailable during Nov 12 - Nov 12 -in.cooling_unavailable_period Nov 12 - Nov 14 Cooling is unavailable during Nov 12 - Nov 14 -in.cooling_unavailable_period Nov 12 - Nov 18 Cooling is unavailable during Nov 12 - Nov 18 -in.cooling_unavailable_period Nov 12 - Nov 25 Cooling is unavailable during Nov 12 - Nov 25 -in.cooling_unavailable_period Nov 13 - Dec 12 Cooling is unavailable during Nov 13 - Dec 12 -in.cooling_unavailable_period Nov 13 - Feb 10 Cooling is unavailable during Nov 13 - Feb 10 -in.cooling_unavailable_period Nov 13 - Nov 13 Cooling is unavailable during Nov 13 - Nov 13 -in.cooling_unavailable_period Nov 13 - Nov 15 Cooling is unavailable during Nov 13 - Nov 15 -in.cooling_unavailable_period Nov 13 - Nov 19 Cooling is unavailable during Nov 13 - Nov 19 -in.cooling_unavailable_period Nov 13 - Nov 26 Cooling is unavailable during Nov 13 - Nov 26 -in.cooling_unavailable_period Nov 14 - Dec 13 Cooling is unavailable during Nov 14 - Dec 13 -in.cooling_unavailable_period Nov 14 - Feb 11 Cooling is unavailable during Nov 14 - Feb 11 -in.cooling_unavailable_period Nov 14 - Nov 14 Cooling is unavailable during Nov 14 - Nov 14 -in.cooling_unavailable_period Nov 14 - Nov 16 Cooling is unavailable during Nov 14 - Nov 16 -in.cooling_unavailable_period Nov 14 - Nov 20 Cooling is unavailable during Nov 14 - Nov 20 -in.cooling_unavailable_period Nov 14 - Nov 27 Cooling is unavailable during Nov 14 - Nov 27 -in.cooling_unavailable_period Nov 15 - Dec 14 Cooling is unavailable during Nov 15 - Dec 14 -in.cooling_unavailable_period Nov 15 - Feb 12 Cooling is unavailable during Nov 15 - Feb 12 -in.cooling_unavailable_period Nov 15 - Nov 15 Cooling is unavailable during Nov 15 - Nov 15 -in.cooling_unavailable_period Nov 15 - Nov 17 Cooling is unavailable during Nov 15 - Nov 17 -in.cooling_unavailable_period Nov 15 - Nov 21 Cooling is unavailable during Nov 15 - Nov 21 -in.cooling_unavailable_period Nov 15 - Nov 28 Cooling is unavailable during Nov 15 - Nov 28 -in.cooling_unavailable_period Nov 16 - Dec 15 Cooling is unavailable during Nov 16 - Dec 15 -in.cooling_unavailable_period Nov 16 - Feb 13 Cooling is unavailable during Nov 16 - Feb 13 -in.cooling_unavailable_period Nov 16 - Nov 16 Cooling is unavailable during Nov 16 - Nov 16 -in.cooling_unavailable_period Nov 16 - Nov 18 Cooling is unavailable during Nov 16 - Nov 18 -in.cooling_unavailable_period Nov 16 - Nov 22 Cooling is unavailable during Nov 16 - Nov 22 -in.cooling_unavailable_period Nov 16 - Nov 29 Cooling is unavailable during Nov 16 - Nov 29 -in.cooling_unavailable_period Nov 17 - Dec 16 Cooling is unavailable during Nov 17 - Dec 16 -in.cooling_unavailable_period Nov 17 - Feb 14 Cooling is unavailable during Nov 17 - Feb 14 -in.cooling_unavailable_period Nov 17 - Nov 17 Cooling is unavailable during Nov 17 - Nov 17 -in.cooling_unavailable_period Nov 17 - Nov 19 Cooling is unavailable during Nov 17 - Nov 19 -in.cooling_unavailable_period Nov 17 - Nov 23 Cooling is unavailable during Nov 17 - Nov 23 -in.cooling_unavailable_period Nov 17 - Nov 30 Cooling is unavailable during Nov 17 - Nov 30 -in.cooling_unavailable_period Nov 18 - Dec 1 Cooling is unavailable during Nov 18 - Dec 1 -in.cooling_unavailable_period Nov 18 - Dec 17 Cooling is unavailable during Nov 18 - Dec 17 -in.cooling_unavailable_period Nov 18 - Feb 15 Cooling is unavailable during Nov 18 - Feb 15 -in.cooling_unavailable_period Nov 18 - Nov 18 Cooling is unavailable during Nov 18 - Nov 18 -in.cooling_unavailable_period Nov 18 - Nov 20 Cooling is unavailable during Nov 18 - Nov 20 -in.cooling_unavailable_period Nov 18 - Nov 24 Cooling is unavailable during Nov 18 - Nov 24 -in.cooling_unavailable_period Nov 19 - Dec 18 Cooling is unavailable during Nov 19 - Dec 18 -in.cooling_unavailable_period Nov 19 - Dec 2 Cooling is unavailable during Nov 19 - Dec 2 -in.cooling_unavailable_period Nov 19 - Feb 16 Cooling is unavailable during Nov 19 - Feb 16 -in.cooling_unavailable_period Nov 19 - Nov 19 Cooling is unavailable during Nov 19 - Nov 19 -in.cooling_unavailable_period Nov 19 - Nov 21 Cooling is unavailable during Nov 19 - Nov 21 -in.cooling_unavailable_period Nov 19 - Nov 25 Cooling is unavailable during Nov 19 - Nov 25 -in.cooling_unavailable_period Nov 2 - Dec 1 Cooling is unavailable during Nov 2 - Dec 1 -in.cooling_unavailable_period Nov 2 - Jan 30 Cooling is unavailable during Nov 2 - Jan 30 -in.cooling_unavailable_period Nov 2 - Nov 15 Cooling is unavailable during Nov 2 - Nov 15 -in.cooling_unavailable_period Nov 2 - Nov 2 Cooling is unavailable during Nov 2 - Nov 2 -in.cooling_unavailable_period Nov 2 - Nov 4 Cooling is unavailable during Nov 2 - Nov 4 -in.cooling_unavailable_period Nov 2 - Nov 8 Cooling is unavailable during Nov 2 - Nov 8 -in.cooling_unavailable_period Nov 20 - Dec 19 Cooling is unavailable during Nov 20 - Dec 19 -in.cooling_unavailable_period Nov 20 - Dec 3 Cooling is unavailable during Nov 20 - Dec 3 -in.cooling_unavailable_period Nov 20 - Feb 17 Cooling is unavailable during Nov 20 - Feb 17 -in.cooling_unavailable_period Nov 20 - Nov 20 Cooling is unavailable during Nov 20 - Nov 20 -in.cooling_unavailable_period Nov 20 - Nov 22 Cooling is unavailable during Nov 20 - Nov 22 -in.cooling_unavailable_period Nov 20 - Nov 26 Cooling is unavailable during Nov 20 - Nov 26 -in.cooling_unavailable_period Nov 21 - Dec 20 Cooling is unavailable during Nov 21 - Dec 20 -in.cooling_unavailable_period Nov 21 - Dec 4 Cooling is unavailable during Nov 21 - Dec 4 -in.cooling_unavailable_period Nov 21 - Feb 18 Cooling is unavailable during Nov 21 - Feb 18 -in.cooling_unavailable_period Nov 21 - Nov 21 Cooling is unavailable during Nov 21 - Nov 21 -in.cooling_unavailable_period Nov 21 - Nov 23 Cooling is unavailable during Nov 21 - Nov 23 -in.cooling_unavailable_period Nov 21 - Nov 27 Cooling is unavailable during Nov 21 - Nov 27 -in.cooling_unavailable_period Nov 22 - Dec 21 Cooling is unavailable during Nov 22 - Dec 21 -in.cooling_unavailable_period Nov 22 - Dec 5 Cooling is unavailable during Nov 22 - Dec 5 -in.cooling_unavailable_period Nov 22 - Feb 19 Cooling is unavailable during Nov 22 - Feb 19 -in.cooling_unavailable_period Nov 22 - Nov 22 Cooling is unavailable during Nov 22 - Nov 22 -in.cooling_unavailable_period Nov 22 - Nov 24 Cooling is unavailable during Nov 22 - Nov 24 -in.cooling_unavailable_period Nov 22 - Nov 28 Cooling is unavailable during Nov 22 - Nov 28 -in.cooling_unavailable_period Nov 23 - Dec 22 Cooling is unavailable during Nov 23 - Dec 22 -in.cooling_unavailable_period Nov 23 - Dec 6 Cooling is unavailable during Nov 23 - Dec 6 -in.cooling_unavailable_period Nov 23 - Feb 20 Cooling is unavailable during Nov 23 - Feb 20 -in.cooling_unavailable_period Nov 23 - Nov 23 Cooling is unavailable during Nov 23 - Nov 23 -in.cooling_unavailable_period Nov 23 - Nov 25 Cooling is unavailable during Nov 23 - Nov 25 -in.cooling_unavailable_period Nov 23 - Nov 29 Cooling is unavailable during Nov 23 - Nov 29 -in.cooling_unavailable_period Nov 24 - Dec 23 Cooling is unavailable during Nov 24 - Dec 23 -in.cooling_unavailable_period Nov 24 - Dec 7 Cooling is unavailable during Nov 24 - Dec 7 -in.cooling_unavailable_period Nov 24 - Feb 21 Cooling is unavailable during Nov 24 - Feb 21 -in.cooling_unavailable_period Nov 24 - Nov 24 Cooling is unavailable during Nov 24 - Nov 24 -in.cooling_unavailable_period Nov 24 - Nov 26 Cooling is unavailable during Nov 24 - Nov 26 -in.cooling_unavailable_period Nov 24 - Nov 30 Cooling is unavailable during Nov 24 - Nov 30 -in.cooling_unavailable_period Nov 25 - Dec 1 Cooling is unavailable during Nov 25 - Dec 1 -in.cooling_unavailable_period Nov 25 - Dec 24 Cooling is unavailable during Nov 25 - Dec 24 -in.cooling_unavailable_period Nov 25 - Dec 8 Cooling is unavailable during Nov 25 - Dec 8 -in.cooling_unavailable_period Nov 25 - Feb 22 Cooling is unavailable during Nov 25 - Feb 22 -in.cooling_unavailable_period Nov 25 - Nov 25 Cooling is unavailable during Nov 25 - Nov 25 -in.cooling_unavailable_period Nov 25 - Nov 27 Cooling is unavailable during Nov 25 - Nov 27 -in.cooling_unavailable_period Nov 26 - Dec 2 Cooling is unavailable during Nov 26 - Dec 2 -in.cooling_unavailable_period Nov 26 - Dec 25 Cooling is unavailable during Nov 26 - Dec 25 -in.cooling_unavailable_period Nov 26 - Dec 9 Cooling is unavailable during Nov 26 - Dec 9 -in.cooling_unavailable_period Nov 26 - Feb 23 Cooling is unavailable during Nov 26 - Feb 23 -in.cooling_unavailable_period Nov 26 - Nov 26 Cooling is unavailable during Nov 26 - Nov 26 -in.cooling_unavailable_period Nov 26 - Nov 28 Cooling is unavailable during Nov 26 - Nov 28 -in.cooling_unavailable_period Nov 27 - Dec 10 Cooling is unavailable during Nov 27 - Dec 10 -in.cooling_unavailable_period Nov 27 - Dec 26 Cooling is unavailable during Nov 27 - Dec 26 -in.cooling_unavailable_period Nov 27 - Dec 3 Cooling is unavailable during Nov 27 - Dec 3 -in.cooling_unavailable_period Nov 27 - Feb 24 Cooling is unavailable during Nov 27 - Feb 24 -in.cooling_unavailable_period Nov 27 - Nov 27 Cooling is unavailable during Nov 27 - Nov 27 -in.cooling_unavailable_period Nov 27 - Nov 29 Cooling is unavailable during Nov 27 - Nov 29 -in.cooling_unavailable_period Nov 28 - Dec 11 Cooling is unavailable during Nov 28 - Dec 11 -in.cooling_unavailable_period Nov 28 - Dec 27 Cooling is unavailable during Nov 28 - Dec 27 -in.cooling_unavailable_period Nov 28 - Dec 4 Cooling is unavailable during Nov 28 - Dec 4 -in.cooling_unavailable_period Nov 28 - Feb 25 Cooling is unavailable during Nov 28 - Feb 25 -in.cooling_unavailable_period Nov 28 - Nov 28 Cooling is unavailable during Nov 28 - Nov 28 -in.cooling_unavailable_period Nov 28 - Nov 30 Cooling is unavailable during Nov 28 - Nov 30 -in.cooling_unavailable_period Nov 29 - Dec 1 Cooling is unavailable during Nov 29 - Dec 1 -in.cooling_unavailable_period Nov 29 - Dec 12 Cooling is unavailable during Nov 29 - Dec 12 -in.cooling_unavailable_period Nov 29 - Dec 28 Cooling is unavailable during Nov 29 - Dec 28 -in.cooling_unavailable_period Nov 29 - Dec 5 Cooling is unavailable during Nov 29 - Dec 5 -in.cooling_unavailable_period Nov 29 - Feb 26 Cooling is unavailable during Nov 29 - Feb 26 -in.cooling_unavailable_period Nov 29 - Nov 29 Cooling is unavailable during Nov 29 - Nov 29 -in.cooling_unavailable_period Nov 3 - Dec 2 Cooling is unavailable during Nov 3 - Dec 2 -in.cooling_unavailable_period Nov 3 - Jan 31 Cooling is unavailable during Nov 3 - Jan 31 -in.cooling_unavailable_period Nov 3 - Nov 16 Cooling is unavailable during Nov 3 - Nov 16 -in.cooling_unavailable_period Nov 3 - Nov 3 Cooling is unavailable during Nov 3 - Nov 3 -in.cooling_unavailable_period Nov 3 - Nov 5 Cooling is unavailable during Nov 3 - Nov 5 -in.cooling_unavailable_period Nov 3 - Nov 9 Cooling is unavailable during Nov 3 - Nov 9 -in.cooling_unavailable_period Nov 30 - Dec 13 Cooling is unavailable during Nov 30 - Dec 13 -in.cooling_unavailable_period Nov 30 - Dec 2 Cooling is unavailable during Nov 30 - Dec 2 -in.cooling_unavailable_period Nov 30 - Dec 29 Cooling is unavailable during Nov 30 - Dec 29 -in.cooling_unavailable_period Nov 30 - Dec 6 Cooling is unavailable during Nov 30 - Dec 6 -in.cooling_unavailable_period Nov 30 - Feb 27 Cooling is unavailable during Nov 30 - Feb 27 -in.cooling_unavailable_period Nov 30 - Nov 30 Cooling is unavailable during Nov 30 - Nov 30 -in.cooling_unavailable_period Nov 4 - Dec 3 Cooling is unavailable during Nov 4 - Dec 3 -in.cooling_unavailable_period Nov 4 - Feb 1 Cooling is unavailable during Nov 4 - Feb 1 -in.cooling_unavailable_period Nov 4 - Nov 10 Cooling is unavailable during Nov 4 - Nov 10 -in.cooling_unavailable_period Nov 4 - Nov 17 Cooling is unavailable during Nov 4 - Nov 17 -in.cooling_unavailable_period Nov 4 - Nov 4 Cooling is unavailable during Nov 4 - Nov 4 -in.cooling_unavailable_period Nov 4 - Nov 6 Cooling is unavailable during Nov 4 - Nov 6 -in.cooling_unavailable_period Nov 5 - Dec 4 Cooling is unavailable during Nov 5 - Dec 4 -in.cooling_unavailable_period Nov 5 - Feb 2 Cooling is unavailable during Nov 5 - Feb 2 -in.cooling_unavailable_period Nov 5 - Nov 18 Cooling is unavailable during Nov 5 - Nov 18 -in.cooling_unavailable_period Nov 5 - Nov 5 Cooling is unavailable during Nov 5 - Nov 5 -in.cooling_unavailable_period Nov 5 - Nov 7 Cooling is unavailable during Nov 5 - Nov 7 -in.cooling_unavailable_period Nov 6 - Dec 5 Cooling is unavailable during Nov 6 - Dec 5 -in.cooling_unavailable_period Nov 6 - Feb 3 Cooling is unavailable during Nov 6 - Feb 3 -in.cooling_unavailable_period Nov 6 - Nov 12 Cooling is unavailable during Nov 6 - Nov 12 -in.cooling_unavailable_period Nov 6 - Nov 19 Cooling is unavailable during Nov 6 - Nov 19 -in.cooling_unavailable_period Nov 6 - Nov 6 Cooling is unavailable during Nov 6 - Nov 6 -in.cooling_unavailable_period Nov 6 - Nov 8 Cooling is unavailable during Nov 6 - Nov 8 -in.cooling_unavailable_period Nov 7 - Dec 6 Cooling is unavailable during Nov 7 - Dec 6 -in.cooling_unavailable_period Nov 7 - Feb 4 Cooling is unavailable during Nov 7 - Feb 4 -in.cooling_unavailable_period Nov 7 - Nov 13 Cooling is unavailable during Nov 7 - Nov 13 -in.cooling_unavailable_period Nov 7 - Nov 20 Cooling is unavailable during Nov 7 - Nov 20 -in.cooling_unavailable_period Nov 7 - Nov 7 Cooling is unavailable during Nov 7 - Nov 7 -in.cooling_unavailable_period Nov 7 - Nov 9 Cooling is unavailable during Nov 7 - Nov 9 -in.cooling_unavailable_period Nov 8 - Dec 7 Cooling is unavailable during Nov 8 - Dec 7 -in.cooling_unavailable_period Nov 8 - Feb 5 Cooling is unavailable during Nov 8 - Feb 5 -in.cooling_unavailable_period Nov 8 - Nov 10 Cooling is unavailable during Nov 8 - Nov 10 -in.cooling_unavailable_period Nov 8 - Nov 14 Cooling is unavailable during Nov 8 - Nov 14 -in.cooling_unavailable_period Nov 8 - Nov 21 Cooling is unavailable during Nov 8 - Nov 21 -in.cooling_unavailable_period Nov 8 - Nov 8 Cooling is unavailable during Nov 8 - Nov 8 -in.cooling_unavailable_period Nov 9 - Dec 8 Cooling is unavailable during Nov 9 - Dec 8 -in.cooling_unavailable_period Nov 9 - Feb 6 Cooling is unavailable during Nov 9 - Feb 6 -in.cooling_unavailable_period Nov 9 - Nov 11 Cooling is unavailable during Nov 9 - Nov 11 -in.cooling_unavailable_period Nov 9 - Nov 15 Cooling is unavailable during Nov 9 - Nov 15 -in.cooling_unavailable_period Nov 9 - Nov 22 Cooling is unavailable during Nov 9 - Nov 22 -in.cooling_unavailable_period Nov 9 - Nov 9 Cooling is unavailable during Nov 9 - Nov 9 -in.cooling_unavailable_period Oct 1 - Dec 29 Cooling is unavailable during Oct 1 - Dec 29 -in.cooling_unavailable_period Oct 1 - Oct 1 Cooling is unavailable during Oct 1 - Oct 1 -in.cooling_unavailable_period Oct 1 - Oct 14 Cooling is unavailable during Oct 1 - Oct 14 -in.cooling_unavailable_period Oct 1 - Oct 3 Cooling is unavailable during Oct 1 - Oct 3 -in.cooling_unavailable_period Oct 1 - Oct 30 Cooling is unavailable during Oct 1 - Oct 30 -in.cooling_unavailable_period Oct 1 - Oct 7 Cooling is unavailable during Oct 1 - Oct 7 -in.cooling_unavailable_period Oct 10 - Jan 7 Cooling is unavailable during Oct 10 - Jan 7 -in.cooling_unavailable_period Oct 10 - Nov 8 Cooling is unavailable during Oct 10 - Nov 8 -in.cooling_unavailable_period Oct 10 - Oct 10 Cooling is unavailable during Oct 10 - Oct 10 -in.cooling_unavailable_period Oct 10 - Oct 12 Cooling is unavailable during Oct 10 - Oct 12 -in.cooling_unavailable_period Oct 10 - Oct 16 Cooling is unavailable during Oct 10 - Oct 16 -in.cooling_unavailable_period Oct 10 - Oct 23 Cooling is unavailable during Oct 10 - Oct 23 -in.cooling_unavailable_period Oct 11 - Jan 8 Cooling is unavailable during Oct 11 - Jan 8 -in.cooling_unavailable_period Oct 11 - Nov 9 Cooling is unavailable during Oct 11 - Nov 9 -in.cooling_unavailable_period Oct 11 - Oct 11 Cooling is unavailable during Oct 11 - Oct 11 -in.cooling_unavailable_period Oct 11 - Oct 13 Cooling is unavailable during Oct 11 - Oct 13 -in.cooling_unavailable_period Oct 11 - Oct 17 Cooling is unavailable during Oct 11 - Oct 17 -in.cooling_unavailable_period Oct 11 - Oct 24 Cooling is unavailable during Oct 11 - Oct 24 -in.cooling_unavailable_period Oct 12 - Jan 9 Cooling is unavailable during Oct 12 - Jan 9 -in.cooling_unavailable_period Oct 12 - Nov 10 Cooling is unavailable during Oct 12 - Nov 10 -in.cooling_unavailable_period Oct 12 - Oct 12 Cooling is unavailable during Oct 12 - Oct 12 -in.cooling_unavailable_period Oct 12 - Oct 14 Cooling is unavailable during Oct 12 - Oct 14 -in.cooling_unavailable_period Oct 12 - Oct 18 Cooling is unavailable during Oct 12 - Oct 18 -in.cooling_unavailable_period Oct 12 - Oct 25 Cooling is unavailable during Oct 12 - Oct 25 -in.cooling_unavailable_period Oct 13 - Jan 10 Cooling is unavailable during Oct 13 - Jan 10 -in.cooling_unavailable_period Oct 13 - Nov 11 Cooling is unavailable during Oct 13 - Nov 11 -in.cooling_unavailable_period Oct 13 - Oct 13 Cooling is unavailable during Oct 13 - Oct 13 -in.cooling_unavailable_period Oct 13 - Oct 15 Cooling is unavailable during Oct 13 - Oct 15 -in.cooling_unavailable_period Oct 13 - Oct 19 Cooling is unavailable during Oct 13 - Oct 19 -in.cooling_unavailable_period Oct 13 - Oct 26 Cooling is unavailable during Oct 13 - Oct 26 -in.cooling_unavailable_period Oct 14 - Jan 11 Cooling is unavailable during Oct 14 - Jan 11 -in.cooling_unavailable_period Oct 14 - Nov 12 Cooling is unavailable during Oct 14 - Nov 12 -in.cooling_unavailable_period Oct 14 - Oct 14 Cooling is unavailable during Oct 14 - Oct 14 -in.cooling_unavailable_period Oct 14 - Oct 16 Cooling is unavailable during Oct 14 - Oct 16 -in.cooling_unavailable_period Oct 14 - Oct 20 Cooling is unavailable during Oct 14 - Oct 20 -in.cooling_unavailable_period Oct 14 - Oct 27 Cooling is unavailable during Oct 14 - Oct 27 -in.cooling_unavailable_period Oct 15 - Jan 12 Cooling is unavailable during Oct 15 - Jan 12 -in.cooling_unavailable_period Oct 15 - Nov 13 Cooling is unavailable during Oct 15 - Nov 13 -in.cooling_unavailable_period Oct 15 - Oct 15 Cooling is unavailable during Oct 15 - Oct 15 -in.cooling_unavailable_period Oct 15 - Oct 17 Cooling is unavailable during Oct 15 - Oct 17 -in.cooling_unavailable_period Oct 15 - Oct 21 Cooling is unavailable during Oct 15 - Oct 21 -in.cooling_unavailable_period Oct 15 - Oct 28 Cooling is unavailable during Oct 15 - Oct 28 -in.cooling_unavailable_period Oct 16 - Jan 13 Cooling is unavailable during Oct 16 - Jan 13 -in.cooling_unavailable_period Oct 16 - Nov 14 Cooling is unavailable during Oct 16 - Nov 14 -in.cooling_unavailable_period Oct 16 - Oct 16 Cooling is unavailable during Oct 16 - Oct 16 -in.cooling_unavailable_period Oct 16 - Oct 18 Cooling is unavailable during Oct 16 - Oct 18 -in.cooling_unavailable_period Oct 16 - Oct 22 Cooling is unavailable during Oct 16 - Oct 22 -in.cooling_unavailable_period Oct 16 - Oct 29 Cooling is unavailable during Oct 16 - Oct 29 -in.cooling_unavailable_period Oct 17 - Jan 14 Cooling is unavailable during Oct 17 - Jan 14 -in.cooling_unavailable_period Oct 17 - Nov 15 Cooling is unavailable during Oct 17 - Nov 15 -in.cooling_unavailable_period Oct 17 - Oct 17 Cooling is unavailable during Oct 17 - Oct 17 -in.cooling_unavailable_period Oct 17 - Oct 19 Cooling is unavailable during Oct 17 - Oct 19 -in.cooling_unavailable_period Oct 17 - Oct 23 Cooling is unavailable during Oct 17 - Oct 23 -in.cooling_unavailable_period Oct 17 - Oct 30 Cooling is unavailable during Oct 17 - Oct 30 -in.cooling_unavailable_period Oct 18 - Jan 15 Cooling is unavailable during Oct 18 - Jan 15 -in.cooling_unavailable_period Oct 18 - Nov 16 Cooling is unavailable during Oct 18 - Nov 16 -in.cooling_unavailable_period Oct 18 - Oct 18 Cooling is unavailable during Oct 18 - Oct 18 -in.cooling_unavailable_period Oct 18 - Oct 20 Cooling is unavailable during Oct 18 - Oct 20 -in.cooling_unavailable_period Oct 18 - Oct 24 Cooling is unavailable during Oct 18 - Oct 24 -in.cooling_unavailable_period Oct 18 - Oct 31 Cooling is unavailable during Oct 18 - Oct 31 -in.cooling_unavailable_period Oct 19 - Jan 16 Cooling is unavailable during Oct 19 - Jan 16 -in.cooling_unavailable_period Oct 19 - Nov 1 Cooling is unavailable during Oct 19 - Nov 1 -in.cooling_unavailable_period Oct 19 - Nov 17 Cooling is unavailable during Oct 19 - Nov 17 -in.cooling_unavailable_period Oct 19 - Oct 19 Cooling is unavailable during Oct 19 - Oct 19 -in.cooling_unavailable_period Oct 19 - Oct 21 Cooling is unavailable during Oct 19 - Oct 21 -in.cooling_unavailable_period Oct 19 - Oct 25 Cooling is unavailable during Oct 19 - Oct 25 -in.cooling_unavailable_period Oct 2 - Dec 30 Cooling is unavailable during Oct 2 - Dec 30 -in.cooling_unavailable_period Oct 2 - Oct 15 Cooling is unavailable during Oct 2 - Oct 15 -in.cooling_unavailable_period Oct 2 - Oct 2 Cooling is unavailable during Oct 2 - Oct 2 -in.cooling_unavailable_period Oct 2 - Oct 31 Cooling is unavailable during Oct 2 - Oct 31 -in.cooling_unavailable_period Oct 2 - Oct 4 Cooling is unavailable during Oct 2 - Oct 4 -in.cooling_unavailable_period Oct 2 - Oct 8 Cooling is unavailable during Oct 2 - Oct 8 -in.cooling_unavailable_period Oct 20 - Jan 17 Cooling is unavailable during Oct 20 - Jan 17 -in.cooling_unavailable_period Oct 20 - Nov 18 Cooling is unavailable during Oct 20 - Nov 18 -in.cooling_unavailable_period Oct 20 - Nov 2 Cooling is unavailable during Oct 20 - Nov 2 -in.cooling_unavailable_period Oct 20 - Oct 20 Cooling is unavailable during Oct 20 - Oct 20 -in.cooling_unavailable_period Oct 20 - Oct 22 Cooling is unavailable during Oct 20 - Oct 22 -in.cooling_unavailable_period Oct 20 - Oct 26 Cooling is unavailable during Oct 20 - Oct 26 -in.cooling_unavailable_period Oct 21 - Jan 18 Cooling is unavailable during Oct 21 - Jan 18 -in.cooling_unavailable_period Oct 21 - Nov 19 Cooling is unavailable during Oct 21 - Nov 19 -in.cooling_unavailable_period Oct 21 - Nov 3 Cooling is unavailable during Oct 21 - Nov 3 -in.cooling_unavailable_period Oct 21 - Oct 21 Cooling is unavailable during Oct 21 - Oct 21 -in.cooling_unavailable_period Oct 21 - Oct 23 Cooling is unavailable during Oct 21 - Oct 23 -in.cooling_unavailable_period Oct 21 - Oct 27 Cooling is unavailable during Oct 21 - Oct 27 -in.cooling_unavailable_period Oct 22 - Jan 19 Cooling is unavailable during Oct 22 - Jan 19 -in.cooling_unavailable_period Oct 22 - Nov 20 Cooling is unavailable during Oct 22 - Nov 20 -in.cooling_unavailable_period Oct 22 - Nov 4 Cooling is unavailable during Oct 22 - Nov 4 -in.cooling_unavailable_period Oct 22 - Oct 22 Cooling is unavailable during Oct 22 - Oct 22 -in.cooling_unavailable_period Oct 22 - Oct 24 Cooling is unavailable during Oct 22 - Oct 24 -in.cooling_unavailable_period Oct 22 - Oct 28 Cooling is unavailable during Oct 22 - Oct 28 -in.cooling_unavailable_period Oct 23 - Jan 20 Cooling is unavailable during Oct 23 - Jan 20 -in.cooling_unavailable_period Oct 23 - Nov 21 Cooling is unavailable during Oct 23 - Nov 21 -in.cooling_unavailable_period Oct 23 - Nov 5 Cooling is unavailable during Oct 23 - Nov 5 -in.cooling_unavailable_period Oct 23 - Oct 23 Cooling is unavailable during Oct 23 - Oct 23 -in.cooling_unavailable_period Oct 23 - Oct 25 Cooling is unavailable during Oct 23 - Oct 25 -in.cooling_unavailable_period Oct 23 - Oct 29 Cooling is unavailable during Oct 23 - Oct 29 -in.cooling_unavailable_period Oct 24 - Jan 21 Cooling is unavailable during Oct 24 - Jan 21 -in.cooling_unavailable_period Oct 24 - Nov 22 Cooling is unavailable during Oct 24 - Nov 22 -in.cooling_unavailable_period Oct 24 - Nov 6 Cooling is unavailable during Oct 24 - Nov 6 -in.cooling_unavailable_period Oct 24 - Oct 24 Cooling is unavailable during Oct 24 - Oct 24 -in.cooling_unavailable_period Oct 24 - Oct 26 Cooling is unavailable during Oct 24 - Oct 26 -in.cooling_unavailable_period Oct 24 - Oct 30 Cooling is unavailable during Oct 24 - Oct 30 -in.cooling_unavailable_period Oct 25 - Jan 22 Cooling is unavailable during Oct 25 - Jan 22 -in.cooling_unavailable_period Oct 25 - Nov 23 Cooling is unavailable during Oct 25 - Nov 23 -in.cooling_unavailable_period Oct 25 - Nov 7 Cooling is unavailable during Oct 25 - Nov 7 -in.cooling_unavailable_period Oct 25 - Oct 25 Cooling is unavailable during Oct 25 - Oct 25 -in.cooling_unavailable_period Oct 25 - Oct 27 Cooling is unavailable during Oct 25 - Oct 27 -in.cooling_unavailable_period Oct 25 - Oct 31 Cooling is unavailable during Oct 25 - Oct 31 -in.cooling_unavailable_period Oct 26 - Jan 23 Cooling is unavailable during Oct 26 - Jan 23 -in.cooling_unavailable_period Oct 26 - Nov 1 Cooling is unavailable during Oct 26 - Nov 1 -in.cooling_unavailable_period Oct 26 - Nov 24 Cooling is unavailable during Oct 26 - Nov 24 -in.cooling_unavailable_period Oct 26 - Nov 8 Cooling is unavailable during Oct 26 - Nov 8 -in.cooling_unavailable_period Oct 26 - Oct 26 Cooling is unavailable during Oct 26 - Oct 26 -in.cooling_unavailable_period Oct 26 - Oct 28 Cooling is unavailable during Oct 26 - Oct 28 -in.cooling_unavailable_period Oct 27 - Jan 24 Cooling is unavailable during Oct 27 - Jan 24 -in.cooling_unavailable_period Oct 27 - Nov 2 Cooling is unavailable during Oct 27 - Nov 2 -in.cooling_unavailable_period Oct 27 - Nov 25 Cooling is unavailable during Oct 27 - Nov 25 -in.cooling_unavailable_period Oct 27 - Nov 9 Cooling is unavailable during Oct 27 - Nov 9 -in.cooling_unavailable_period Oct 27 - Oct 27 Cooling is unavailable during Oct 27 - Oct 27 -in.cooling_unavailable_period Oct 27 - Oct 29 Cooling is unavailable during Oct 27 - Oct 29 -in.cooling_unavailable_period Oct 28 - Jan 25 Cooling is unavailable during Oct 28 - Jan 25 -in.cooling_unavailable_period Oct 28 - Nov 10 Cooling is unavailable during Oct 28 - Nov 10 -in.cooling_unavailable_period Oct 28 - Nov 26 Cooling is unavailable during Oct 28 - Nov 26 -in.cooling_unavailable_period Oct 28 - Nov 3 Cooling is unavailable during Oct 28 - Nov 3 -in.cooling_unavailable_period Oct 28 - Oct 28 Cooling is unavailable during Oct 28 - Oct 28 -in.cooling_unavailable_period Oct 28 - Oct 30 Cooling is unavailable during Oct 28 - Oct 30 -in.cooling_unavailable_period Oct 29 - Jan 26 Cooling is unavailable during Oct 29 - Jan 26 -in.cooling_unavailable_period Oct 29 - Nov 11 Cooling is unavailable during Oct 29 - Nov 11 -in.cooling_unavailable_period Oct 29 - Nov 27 Cooling is unavailable during Oct 29 - Nov 27 -in.cooling_unavailable_period Oct 29 - Nov 4 Cooling is unavailable during Oct 29 - Nov 4 -in.cooling_unavailable_period Oct 29 - Oct 29 Cooling is unavailable during Oct 29 - Oct 29 -in.cooling_unavailable_period Oct 29 - Oct 31 Cooling is unavailable during Oct 29 - Oct 31 -in.cooling_unavailable_period Oct 3 - Dec 31 Cooling is unavailable during Oct 3 - Dec 31 -in.cooling_unavailable_period Oct 3 - Nov 1 Cooling is unavailable during Oct 3 - Nov 1 -in.cooling_unavailable_period Oct 3 - Oct 16 Cooling is unavailable during Oct 3 - Oct 16 -in.cooling_unavailable_period Oct 3 - Oct 3 Cooling is unavailable during Oct 3 - Oct 3 -in.cooling_unavailable_period Oct 3 - Oct 5 Cooling is unavailable during Oct 3 - Oct 5 -in.cooling_unavailable_period Oct 3 - Oct 9 Cooling is unavailable during Oct 3 - Oct 9 -in.cooling_unavailable_period Oct 30 - Jan 27 Cooling is unavailable during Oct 30 - Jan 27 -in.cooling_unavailable_period Oct 30 - Nov 1 Cooling is unavailable during Oct 30 - Nov 1 -in.cooling_unavailable_period Oct 30 - Nov 12 Cooling is unavailable during Oct 30 - Nov 12 -in.cooling_unavailable_period Oct 30 - Nov 28 Cooling is unavailable during Oct 30 - Nov 28 -in.cooling_unavailable_period Oct 30 - Nov 5 Cooling is unavailable during Oct 30 - Nov 5 -in.cooling_unavailable_period Oct 30 - Oct 30 Cooling is unavailable during Oct 30 - Oct 30 -in.cooling_unavailable_period Oct 31 - Jan 28 Cooling is unavailable during Oct 31 - Jan 28 -in.cooling_unavailable_period Oct 31 - Nov 13 Cooling is unavailable during Oct 31 - Nov 13 -in.cooling_unavailable_period Oct 31 - Nov 2 Cooling is unavailable during Oct 31 - Nov 2 -in.cooling_unavailable_period Oct 31 - Nov 29 Cooling is unavailable during Oct 31 - Nov 29 -in.cooling_unavailable_period Oct 31 - Nov 6 Cooling is unavailable during Oct 31 - Nov 6 -in.cooling_unavailable_period Oct 31 - Oct 31 Cooling is unavailable during Oct 31 - Oct 31 -in.cooling_unavailable_period Oct 4 - Jan 1 Cooling is unavailable during Oct 4 - Jan 1 -in.cooling_unavailable_period Oct 4 - Nov 2 Cooling is unavailable during Oct 4 - Nov 2 -in.cooling_unavailable_period Oct 4 - Oct 10 Cooling is unavailable during Oct 4 - Oct 10 -in.cooling_unavailable_period Oct 4 - Oct 17 Cooling is unavailable during Oct 4 - Oct 17 -in.cooling_unavailable_period Oct 4 - Oct 4 Cooling is unavailable during Oct 4 - Oct 4 -in.cooling_unavailable_period Oct 4 - Oct 6 Cooling is unavailable during Oct 4 - Oct 6 -in.cooling_unavailable_period Oct 5 - Jan 2 Cooling is unavailable during Oct 5 - Jan 2 -in.cooling_unavailable_period Oct 5 - Nov 3 Cooling is unavailable during Oct 5 - Nov 3 -in.cooling_unavailable_period Oct 5 - Oct 11 Cooling is unavailable during Oct 5 - Oct 11 -in.cooling_unavailable_period Oct 5 - Oct 18 Cooling is unavailable during Oct 5 - Oct 18 -in.cooling_unavailable_period Oct 5 - Oct 5 Cooling is unavailable during Oct 5 - Oct 5 -in.cooling_unavailable_period Oct 5 - Oct 7 Cooling is unavailable during Oct 5 - Oct 7 -in.cooling_unavailable_period Oct 6 - Jan 3 Cooling is unavailable during Oct 6 - Jan 3 -in.cooling_unavailable_period Oct 6 - Nov 4 Cooling is unavailable during Oct 6 - Nov 4 -in.cooling_unavailable_period Oct 6 - Oct 12 Cooling is unavailable during Oct 6 - Oct 12 -in.cooling_unavailable_period Oct 6 - Oct 19 Cooling is unavailable during Oct 6 - Oct 19 -in.cooling_unavailable_period Oct 6 - Oct 6 Cooling is unavailable during Oct 6 - Oct 6 -in.cooling_unavailable_period Oct 6 - Oct 8 Cooling is unavailable during Oct 6 - Oct 8 -in.cooling_unavailable_period Oct 7 - Jan 4 Cooling is unavailable during Oct 7 - Jan 4 -in.cooling_unavailable_period Oct 7 - Nov 5 Cooling is unavailable during Oct 7 - Nov 5 -in.cooling_unavailable_period Oct 7 - Oct 13 Cooling is unavailable during Oct 7 - Oct 13 -in.cooling_unavailable_period Oct 7 - Oct 20 Cooling is unavailable during Oct 7 - Oct 20 -in.cooling_unavailable_period Oct 7 - Oct 7 Cooling is unavailable during Oct 7 - Oct 7 -in.cooling_unavailable_period Oct 7 - Oct 9 Cooling is unavailable during Oct 7 - Oct 9 -in.cooling_unavailable_period Oct 8 - Jan 5 Cooling is unavailable during Oct 8 - Jan 5 -in.cooling_unavailable_period Oct 8 - Nov 6 Cooling is unavailable during Oct 8 - Nov 6 -in.cooling_unavailable_period Oct 8 - Oct 10 Cooling is unavailable during Oct 8 - Oct 10 -in.cooling_unavailable_period Oct 8 - Oct 14 Cooling is unavailable during Oct 8 - Oct 14 -in.cooling_unavailable_period Oct 8 - Oct 21 Cooling is unavailable during Oct 8 - Oct 21 -in.cooling_unavailable_period Oct 8 - Oct 8 Cooling is unavailable during Oct 8 - Oct 8 -in.cooling_unavailable_period Oct 9 - Jan 6 Cooling is unavailable during Oct 9 - Jan 6 -in.cooling_unavailable_period Oct 9 - Nov 7 Cooling is unavailable during Oct 9 - Nov 7 -in.cooling_unavailable_period Oct 9 - Oct 11 Cooling is unavailable during Oct 9 - Oct 11 -in.cooling_unavailable_period Oct 9 - Oct 15 Cooling is unavailable during Oct 9 - Oct 15 -in.cooling_unavailable_period Oct 9 - Oct 22 Cooling is unavailable during Oct 9 - Oct 22 -in.cooling_unavailable_period Oct 9 - Oct 9 Cooling is unavailable during Oct 9 - Oct 9 -in.cooling_unavailable_period Sep 1 - Nov 29 Cooling is unavailable during Sep 1 - Nov 29 -in.cooling_unavailable_period Sep 1 - Sep 1 Cooling is unavailable during Sep 1 - Sep 1 -in.cooling_unavailable_period Sep 1 - Sep 14 Cooling is unavailable during Sep 1 - Sep 14 -in.cooling_unavailable_period Sep 1 - Sep 3 Cooling is unavailable during Sep 1 - Sep 3 -in.cooling_unavailable_period Sep 1 - Sep 30 Cooling is unavailable during Sep 1 - Sep 30 -in.cooling_unavailable_period Sep 1 - Sep 7 Cooling is unavailable during Sep 1 - Sep 7 -in.cooling_unavailable_period Sep 10 - Dec 8 Cooling is unavailable during Sep 10 - Dec 8 -in.cooling_unavailable_period Sep 10 - Oct 9 Cooling is unavailable during Sep 10 - Oct 9 -in.cooling_unavailable_period Sep 10 - Sep 10 Cooling is unavailable during Sep 10 - Sep 10 -in.cooling_unavailable_period Sep 10 - Sep 12 Cooling is unavailable during Sep 10 - Sep 12 -in.cooling_unavailable_period Sep 10 - Sep 16 Cooling is unavailable during Sep 10 - Sep 16 -in.cooling_unavailable_period Sep 10 - Sep 23 Cooling is unavailable during Sep 10 - Sep 23 -in.cooling_unavailable_period Sep 11 - Dec 9 Cooling is unavailable during Sep 11 - Dec 9 -in.cooling_unavailable_period Sep 11 - Oct 10 Cooling is unavailable during Sep 11 - Oct 10 -in.cooling_unavailable_period Sep 11 - Sep 11 Cooling is unavailable during Sep 11 - Sep 11 -in.cooling_unavailable_period Sep 11 - Sep 13 Cooling is unavailable during Sep 11 - Sep 13 -in.cooling_unavailable_period Sep 11 - Sep 17 Cooling is unavailable during Sep 11 - Sep 17 -in.cooling_unavailable_period Sep 11 - Sep 24 Cooling is unavailable during Sep 11 - Sep 24 -in.cooling_unavailable_period Sep 12 - Dec 10 Cooling is unavailable during Sep 12 - Dec 10 -in.cooling_unavailable_period Sep 12 - Oct 11 Cooling is unavailable during Sep 12 - Oct 11 -in.cooling_unavailable_period Sep 12 - Sep 12 Cooling is unavailable during Sep 12 - Sep 12 -in.cooling_unavailable_period Sep 12 - Sep 14 Cooling is unavailable during Sep 12 - Sep 14 -in.cooling_unavailable_period Sep 12 - Sep 18 Cooling is unavailable during Sep 12 - Sep 18 -in.cooling_unavailable_period Sep 12 - Sep 25 Cooling is unavailable during Sep 12 - Sep 25 -in.cooling_unavailable_period Sep 13 - Dec 11 Cooling is unavailable during Sep 13 - Dec 11 -in.cooling_unavailable_period Sep 13 - Oct 12 Cooling is unavailable during Sep 13 - Oct 12 -in.cooling_unavailable_period Sep 13 - Sep 13 Cooling is unavailable during Sep 13 - Sep 13 -in.cooling_unavailable_period Sep 13 - Sep 15 Cooling is unavailable during Sep 13 - Sep 15 -in.cooling_unavailable_period Sep 13 - Sep 19 Cooling is unavailable during Sep 13 - Sep 19 -in.cooling_unavailable_period Sep 13 - Sep 26 Cooling is unavailable during Sep 13 - Sep 26 -in.cooling_unavailable_period Sep 14 - Dec 12 Cooling is unavailable during Sep 14 - Dec 12 -in.cooling_unavailable_period Sep 14 - Oct 13 Cooling is unavailable during Sep 14 - Oct 13 -in.cooling_unavailable_period Sep 14 - Sep 14 Cooling is unavailable during Sep 14 - Sep 14 -in.cooling_unavailable_period Sep 14 - Sep 16 Cooling is unavailable during Sep 14 - Sep 16 -in.cooling_unavailable_period Sep 14 - Sep 20 Cooling is unavailable during Sep 14 - Sep 20 -in.cooling_unavailable_period Sep 14 - Sep 27 Cooling is unavailable during Sep 14 - Sep 27 -in.cooling_unavailable_period Sep 15 - Dec 13 Cooling is unavailable during Sep 15 - Dec 13 -in.cooling_unavailable_period Sep 15 - Oct 14 Cooling is unavailable during Sep 15 - Oct 14 -in.cooling_unavailable_period Sep 15 - Sep 15 Cooling is unavailable during Sep 15 - Sep 15 -in.cooling_unavailable_period Sep 15 - Sep 17 Cooling is unavailable during Sep 15 - Sep 17 -in.cooling_unavailable_period Sep 15 - Sep 21 Cooling is unavailable during Sep 15 - Sep 21 -in.cooling_unavailable_period Sep 15 - Sep 28 Cooling is unavailable during Sep 15 - Sep 28 -in.cooling_unavailable_period Sep 16 - Dec 14 Cooling is unavailable during Sep 16 - Dec 14 -in.cooling_unavailable_period Sep 16 - Oct 15 Cooling is unavailable during Sep 16 - Oct 15 -in.cooling_unavailable_period Sep 16 - Sep 16 Cooling is unavailable during Sep 16 - Sep 16 -in.cooling_unavailable_period Sep 16 - Sep 18 Cooling is unavailable during Sep 16 - Sep 18 -in.cooling_unavailable_period Sep 16 - Sep 22 Cooling is unavailable during Sep 16 - Sep 22 -in.cooling_unavailable_period Sep 16 - Sep 29 Cooling is unavailable during Sep 16 - Sep 29 -in.cooling_unavailable_period Sep 17 - Dec 15 Cooling is unavailable during Sep 17 - Dec 15 -in.cooling_unavailable_period Sep 17 - Oct 16 Cooling is unavailable during Sep 17 - Oct 16 -in.cooling_unavailable_period Sep 17 - Sep 17 Cooling is unavailable during Sep 17 - Sep 17 -in.cooling_unavailable_period Sep 17 - Sep 19 Cooling is unavailable during Sep 17 - Sep 19 -in.cooling_unavailable_period Sep 17 - Sep 23 Cooling is unavailable during Sep 17 - Sep 23 -in.cooling_unavailable_period Sep 17 - Sep 30 Cooling is unavailable during Sep 17 - Sep 30 -in.cooling_unavailable_period Sep 18 - Dec 16 Cooling is unavailable during Sep 18 - Dec 16 -in.cooling_unavailable_period Sep 18 - Oct 1 Cooling is unavailable during Sep 18 - Oct 1 -in.cooling_unavailable_period Sep 18 - Oct 17 Cooling is unavailable during Sep 18 - Oct 17 -in.cooling_unavailable_period Sep 18 - Sep 18 Cooling is unavailable during Sep 18 - Sep 18 -in.cooling_unavailable_period Sep 18 - Sep 20 Cooling is unavailable during Sep 18 - Sep 20 -in.cooling_unavailable_period Sep 18 - Sep 24 Cooling is unavailable during Sep 18 - Sep 24 -in.cooling_unavailable_period Sep 19 - Dec 17 Cooling is unavailable during Sep 19 - Dec 17 -in.cooling_unavailable_period Sep 19 - Oct 18 Cooling is unavailable during Sep 19 - Oct 18 -in.cooling_unavailable_period Sep 19 - Oct 2 Cooling is unavailable during Sep 19 - Oct 2 -in.cooling_unavailable_period Sep 19 - Sep 19 Cooling is unavailable during Sep 19 - Sep 19 -in.cooling_unavailable_period Sep 19 - Sep 21 Cooling is unavailable during Sep 19 - Sep 21 -in.cooling_unavailable_period Sep 19 - Sep 25 Cooling is unavailable during Sep 19 - Sep 25 -in.cooling_unavailable_period Sep 2 - Nov 30 Cooling is unavailable during Sep 2 - Nov 30 -in.cooling_unavailable_period Sep 2 - Oct 1 Cooling is unavailable during Sep 2 - Oct 1 -in.cooling_unavailable_period Sep 2 - Sep 15 Cooling is unavailable during Sep 2 - Sep 15 -in.cooling_unavailable_period Sep 2 - Sep 2 Cooling is unavailable during Sep 2 - Sep 2 -in.cooling_unavailable_period Sep 2 - Sep 4 Cooling is unavailable during Sep 2 - Sep 4 -in.cooling_unavailable_period Sep 2 - Sep 8 Cooling is unavailable during Sep 2 - Sep 8 -in.cooling_unavailable_period Sep 20 - Dec 18 Cooling is unavailable during Sep 20 - Dec 18 -in.cooling_unavailable_period Sep 20 - Oct 19 Cooling is unavailable during Sep 20 - Oct 19 -in.cooling_unavailable_period Sep 20 - Oct 3 Cooling is unavailable during Sep 20 - Oct 3 -in.cooling_unavailable_period Sep 20 - Sep 20 Cooling is unavailable during Sep 20 - Sep 20 -in.cooling_unavailable_period Sep 20 - Sep 22 Cooling is unavailable during Sep 20 - Sep 22 -in.cooling_unavailable_period Sep 20 - Sep 26 Cooling is unavailable during Sep 20 - Sep 26 -in.cooling_unavailable_period Sep 21 - Dec 19 Cooling is unavailable during Sep 21 - Dec 19 -in.cooling_unavailable_period Sep 21 - Oct 20 Cooling is unavailable during Sep 21 - Oct 20 -in.cooling_unavailable_period Sep 21 - Oct 4 Cooling is unavailable during Sep 21 - Oct 4 -in.cooling_unavailable_period Sep 21 - Sep 21 Cooling is unavailable during Sep 21 - Sep 21 -in.cooling_unavailable_period Sep 21 - Sep 23 Cooling is unavailable during Sep 21 - Sep 23 -in.cooling_unavailable_period Sep 21 - Sep 27 Cooling is unavailable during Sep 21 - Sep 27 -in.cooling_unavailable_period Sep 22 - Dec 20 Cooling is unavailable during Sep 22 - Dec 20 -in.cooling_unavailable_period Sep 22 - Oct 21 Cooling is unavailable during Sep 22 - Oct 21 -in.cooling_unavailable_period Sep 22 - Oct 5 Cooling is unavailable during Sep 22 - Oct 5 -in.cooling_unavailable_period Sep 22 - Sep 22 Cooling is unavailable during Sep 22 - Sep 22 -in.cooling_unavailable_period Sep 22 - Sep 24 Cooling is unavailable during Sep 22 - Sep 24 -in.cooling_unavailable_period Sep 22 - Sep 28 Cooling is unavailable during Sep 22 - Sep 28 -in.cooling_unavailable_period Sep 23 - Dec 21 Cooling is unavailable during Sep 23 - Dec 21 -in.cooling_unavailable_period Sep 23 - Oct 22 Cooling is unavailable during Sep 23 - Oct 22 -in.cooling_unavailable_period Sep 23 - Oct 6 Cooling is unavailable during Sep 23 - Oct 6 -in.cooling_unavailable_period Sep 23 - Sep 23 Cooling is unavailable during Sep 23 - Sep 23 -in.cooling_unavailable_period Sep 23 - Sep 25 Cooling is unavailable during Sep 23 - Sep 25 -in.cooling_unavailable_period Sep 23 - Sep 29 Cooling is unavailable during Sep 23 - Sep 29 -in.cooling_unavailable_period Sep 24 - Dec 22 Cooling is unavailable during Sep 24 - Dec 22 -in.cooling_unavailable_period Sep 24 - Oct 23 Cooling is unavailable during Sep 24 - Oct 23 -in.cooling_unavailable_period Sep 24 - Oct 7 Cooling is unavailable during Sep 24 - Oct 7 -in.cooling_unavailable_period Sep 24 - Sep 24 Cooling is unavailable during Sep 24 - Sep 24 -in.cooling_unavailable_period Sep 24 - Sep 26 Cooling is unavailable during Sep 24 - Sep 26 -in.cooling_unavailable_period Sep 24 - Sep 30 Cooling is unavailable during Sep 24 - Sep 30 -in.cooling_unavailable_period Sep 25 - Dec 23 Cooling is unavailable during Sep 25 - Dec 23 -in.cooling_unavailable_period Sep 25 - Oct 1 Cooling is unavailable during Sep 25 - Oct 1 -in.cooling_unavailable_period Sep 25 - Oct 24 Cooling is unavailable during Sep 25 - Oct 24 -in.cooling_unavailable_period Sep 25 - Oct 8 Cooling is unavailable during Sep 25 - Oct 8 -in.cooling_unavailable_period Sep 25 - Sep 25 Cooling is unavailable during Sep 25 - Sep 25 -in.cooling_unavailable_period Sep 25 - Sep 27 Cooling is unavailable during Sep 25 - Sep 27 -in.cooling_unavailable_period Sep 26 - Dec 24 Cooling is unavailable during Sep 26 - Dec 24 -in.cooling_unavailable_period Sep 26 - Oct 2 Cooling is unavailable during Sep 26 - Oct 2 -in.cooling_unavailable_period Sep 26 - Oct 25 Cooling is unavailable during Sep 26 - Oct 25 -in.cooling_unavailable_period Sep 26 - Oct 9 Cooling is unavailable during Sep 26 - Oct 9 -in.cooling_unavailable_period Sep 26 - Sep 26 Cooling is unavailable during Sep 26 - Sep 26 -in.cooling_unavailable_period Sep 26 - Sep 28 Cooling is unavailable during Sep 26 - Sep 28 -in.cooling_unavailable_period Sep 27 - Dec 25 Cooling is unavailable during Sep 27 - Dec 25 -in.cooling_unavailable_period Sep 27 - Oct 10 Cooling is unavailable during Sep 27 - Oct 10 -in.cooling_unavailable_period Sep 27 - Oct 26 Cooling is unavailable during Sep 27 - Oct 26 -in.cooling_unavailable_period Sep 27 - Oct 3 Cooling is unavailable during Sep 27 - Oct 3 -in.cooling_unavailable_period Sep 27 - Sep 27 Cooling is unavailable during Sep 27 - Sep 27 -in.cooling_unavailable_period Sep 27 - Sep 29 Cooling is unavailable during Sep 27 - Sep 29 -in.cooling_unavailable_period Sep 28 - Dec 26 Cooling is unavailable during Sep 28 - Dec 26 -in.cooling_unavailable_period Sep 28 - Oct 11 Cooling is unavailable during Sep 28 - Oct 11 -in.cooling_unavailable_period Sep 28 - Oct 27 Cooling is unavailable during Sep 28 - Oct 27 -in.cooling_unavailable_period Sep 28 - Oct 4 Cooling is unavailable during Sep 28 - Oct 4 -in.cooling_unavailable_period Sep 28 - Sep 28 Cooling is unavailable during Sep 28 - Sep 28 -in.cooling_unavailable_period Sep 28 - Sep 30 Cooling is unavailable during Sep 28 - Sep 30 -in.cooling_unavailable_period Sep 29 - Dec 27 Cooling is unavailable during Sep 29 - Dec 27 -in.cooling_unavailable_period Sep 29 - Oct 1 Cooling is unavailable during Sep 29 - Oct 1 -in.cooling_unavailable_period Sep 29 - Oct 12 Cooling is unavailable during Sep 29 - Oct 12 -in.cooling_unavailable_period Sep 29 - Oct 28 Cooling is unavailable during Sep 29 - Oct 28 -in.cooling_unavailable_period Sep 29 - Oct 5 Cooling is unavailable during Sep 29 - Oct 5 -in.cooling_unavailable_period Sep 29 - Sep 29 Cooling is unavailable during Sep 29 - Sep 29 -in.cooling_unavailable_period Sep 3 - Dec 1 Cooling is unavailable during Sep 3 - Dec 1 -in.cooling_unavailable_period Sep 3 - Oct 2 Cooling is unavailable during Sep 3 - Oct 2 -in.cooling_unavailable_period Sep 3 - Sep 16 Cooling is unavailable during Sep 3 - Sep 16 -in.cooling_unavailable_period Sep 3 - Sep 3 Cooling is unavailable during Sep 3 - Sep 3 -in.cooling_unavailable_period Sep 3 - Sep 5 Cooling is unavailable during Sep 3 - Sep 5 -in.cooling_unavailable_period Sep 3 - Sep 9 Cooling is unavailable during Sep 3 - Sep 9 -in.cooling_unavailable_period Sep 30 - Dec 28 Cooling is unavailable during Sep 30 - Dec 28 -in.cooling_unavailable_period Sep 30 - Oct 13 Cooling is unavailable during Sep 30 - Oct 13 -in.cooling_unavailable_period Sep 30 - Oct 2 Cooling is unavailable during Sep 30 - Oct 2 -in.cooling_unavailable_period Sep 30 - Oct 29 Cooling is unavailable during Sep 30 - Oct 29 -in.cooling_unavailable_period Sep 30 - Oct 6 Cooling is unavailable during Sep 30 - Oct 6 -in.cooling_unavailable_period Sep 30 - Sep 30 Cooling is unavailable during Sep 30 - Sep 30 -in.cooling_unavailable_period Sep 4 - Dec 2 Cooling is unavailable during Sep 4 - Dec 2 -in.cooling_unavailable_period Sep 4 - Oct 3 Cooling is unavailable during Sep 4 - Oct 3 -in.cooling_unavailable_period Sep 4 - Sep 10 Cooling is unavailable during Sep 4 - Sep 10 -in.cooling_unavailable_period Sep 4 - Sep 17 Cooling is unavailable during Sep 4 - Sep 17 -in.cooling_unavailable_period Sep 4 - Sep 4 Cooling is unavailable during Sep 4 - Sep 4 -in.cooling_unavailable_period Sep 4 - Sep 6 Cooling is unavailable during Sep 4 - Sep 6 -in.cooling_unavailable_period Sep 5 - Dec 3 Cooling is unavailable during Sep 5 - Dec 3 -in.cooling_unavailable_period Sep 5 - Oct 4 Cooling is unavailable during Sep 5 - Oct 4 -in.cooling_unavailable_period Sep 5 - Sep 11 Cooling is unavailable during Sep 5 - Sep 11 -in.cooling_unavailable_period Sep 5 - Sep 18 Cooling is unavailable during Sep 5 - Sep 18 -in.cooling_unavailable_period Sep 5 - Sep 5 Cooling is unavailable during Sep 5 - Sep 5 -in.cooling_unavailable_period Sep 5 - Sep 7 Cooling is unavailable during Sep 5 - Sep 7 -in.cooling_unavailable_period Sep 6 - Dec 4 Cooling is unavailable during Sep 6 - Dec 4 -in.cooling_unavailable_period Sep 6 - Oct 5 Cooling is unavailable during Sep 6 - Oct 5 -in.cooling_unavailable_period Sep 6 - Sep 12 Cooling is unavailable during Sep 6 - Sep 12 -in.cooling_unavailable_period Sep 6 - Sep 19 Cooling is unavailable during Sep 6 - Sep 19 -in.cooling_unavailable_period Sep 6 - Sep 6 Cooling is unavailable during Sep 6 - Sep 6 -in.cooling_unavailable_period Sep 6 - Sep 8 Cooling is unavailable during Sep 6 - Sep 8 -in.cooling_unavailable_period Sep 7 - Dec 5 Cooling is unavailable during Sep 7 - Dec 5 -in.cooling_unavailable_period Sep 7 - Oct 6 Cooling is unavailable during Sep 7 - Oct 6 -in.cooling_unavailable_period Sep 7 - Sep 13 Cooling is unavailable during Sep 7 - Sep 13 -in.cooling_unavailable_period Sep 7 - Sep 20 Cooling is unavailable during Sep 7 - Sep 20 -in.cooling_unavailable_period Sep 7 - Sep 7 Cooling is unavailable during Sep 7 - Sep 7 -in.cooling_unavailable_period Sep 7 - Sep 9 Cooling is unavailable during Sep 7 - Sep 9 -in.cooling_unavailable_period Sep 8 - Dec 6 Cooling is unavailable during Sep 8 - Dec 6 -in.cooling_unavailable_period Sep 8 - Oct 7 Cooling is unavailable during Sep 8 - Oct 7 -in.cooling_unavailable_period Sep 8 - Sep 10 Cooling is unavailable during Sep 8 - Sep 10 -in.cooling_unavailable_period Sep 8 - Sep 14 Cooling is unavailable during Sep 8 - Sep 14 -in.cooling_unavailable_period Sep 8 - Sep 21 Cooling is unavailable during Sep 8 - Sep 21 -in.cooling_unavailable_period Sep 8 - Sep 8 Cooling is unavailable during Sep 8 - Sep 8 -in.cooling_unavailable_period Sep 9 - Dec 7 Cooling is unavailable during Sep 9 - Dec 7 -in.cooling_unavailable_period Sep 9 - Oct 8 Cooling is unavailable during Sep 9 - Oct 8 -in.cooling_unavailable_period Sep 9 - Sep 11 Cooling is unavailable during Sep 9 - Sep 11 -in.cooling_unavailable_period Sep 9 - Sep 15 Cooling is unavailable during Sep 9 - Sep 15 -in.cooling_unavailable_period Sep 9 - Sep 22 Cooling is unavailable during Sep 9 - Sep 22 -in.cooling_unavailable_period Sep 9 - Sep 9 Cooling is unavailable during Sep 9 - Sep 9 -in.corridor Double-Loaded Interior Unit is adjacent to a shared corridor -in.corridor Not Applicable Corridor input is not applicable -in.county "AK, Aleutians East Borough" "The dwelling unit is in AK, Aleutians East Borough" -in.county "AK, Aleutians West Census Area" "The dwelling unit is in AK, Aleutians West Census Area" -in.county "AK, Anchorage Municipality" "The dwelling unit is in AK, Anchorage Municipality" -in.county "AK, Bethel Census Area" "The dwelling unit is in AK, Bethel Census Area" -in.county "AK, Bristol Bay Borough" "The dwelling unit is in AK, Bristol Bay Borough" -in.county "AK, Denali Borough" "The dwelling unit is in AK, Denali Borough" -in.county "AK, Dillingham Census Area" "The dwelling unit is in AK, Dillingham Census Area" -in.county "AK, Fairbanks North Star Borough" "The dwelling unit is in AK, Fairbanks North Star Borough" -in.county "AK, Haines Borough" "The dwelling unit is in AK, Haines Borough" -in.county "AK, Hoonah-Angoon Census Area" "The dwelling unit is in AK, Hoonah-Angoon Census Area" -in.county "AK, Juneau City and Borough" "The dwelling unit is in AK, Juneau City and Borough" -in.county "AK, Kenai Peninsula Borough" "The dwelling unit is in AK, Kenai Peninsula Borough" -in.county "AK, Ketchikan Gateway Borough" "The dwelling unit is in AK, Ketchikan Gateway Borough" -in.county "AK, Kodiak Island Borough" "The dwelling unit is in AK, Kodiak Island Borough" -in.county "AK, Kusilvak Census Area" "The dwelling unit is in AK, Kusilvak Census Area" -in.county "AK, Lake and Peninsula Borough" "The dwelling unit is in AK, Lake and Peninsula Borough" -in.county "AK, Matanuska-Susitna Borough" "The dwelling unit is in AK, Matanuska-Susitna Borough" -in.county "AK, Nome Census Area" "The dwelling unit is in AK, Nome Census Area" -in.county "AK, North Slope Borough" "The dwelling unit is in AK, North Slope Borough" -in.county "AK, Northwest Arctic Borough" "The dwelling unit is in AK, Northwest Arctic Borough" -in.county "AK, Petersburg Borough" "The dwelling unit is in AK, Petersburg Borough" -in.county "AK, Prince of Wales-Hyder Census Area" "The dwelling unit is in AK, Prince of Wales-Hyder Census Area" -in.county "AK, Sitka City and Borough" "The dwelling unit is in AK, Sitka City and Borough" -in.county "AK, Skagway Municipality" "The dwelling unit is in AK, Skagway Municipality" -in.county "AK, Southeast Fairbanks Census Area" "The dwelling unit is in AK, Southeast Fairbanks Census Area" -in.county "AK, Valdez-Cordova Census Area" "The dwelling unit is in AK, Valdez-Cordova Census Area" -in.county "AK, Wrangell City and Borough" "The dwelling unit is in AK, Wrangell City and Borough" -in.county "AK, Yakutat City and Borough" "The dwelling unit is in AK, Yakutat City and Borough" -in.county "AK, Yukon-Koyukuk Census Area" "The dwelling unit is in AK, Yukon-Koyukuk Census Area" -in.county "AL, Autauga County" "The dwelling unit is in AL, Autauga County" -in.county "AL, Baldwin County" "The dwelling unit is in AL, Baldwin County" -in.county "AL, Barbour County" "The dwelling unit is in AL, Barbour County" -in.county "AL, Bibb County" "The dwelling unit is in AL, Bibb County" -in.county "AL, Blount County" "The dwelling unit is in AL, Blount County" -in.county "AL, Bullock County" "The dwelling unit is in AL, Bullock County" -in.county "AL, Butler County" "The dwelling unit is in AL, Butler County" -in.county "AL, Calhoun County" "The dwelling unit is in AL, Calhoun County" -in.county "AL, Chambers County" "The dwelling unit is in AL, Chambers County" -in.county "AL, Cherokee County" "The dwelling unit is in AL, Cherokee County" -in.county "AL, Chilton County" "The dwelling unit is in AL, Chilton County" -in.county "AL, Choctaw County" "The dwelling unit is in AL, Choctaw County" -in.county "AL, Clarke County" "The dwelling unit is in AL, Clarke County" -in.county "AL, Clay County" "The dwelling unit is in AL, Clay County" -in.county "AL, Cleburne County" "The dwelling unit is in AL, Cleburne County" -in.county "AL, Coffee County" "The dwelling unit is in AL, Coffee County" -in.county "AL, Colbert County" "The dwelling unit is in AL, Colbert County" -in.county "AL, Conecuh County" "The dwelling unit is in AL, Conecuh County" -in.county "AL, Coosa County" "The dwelling unit is in AL, Coosa County" -in.county "AL, Covington County" "The dwelling unit is in AL, Covington County" -in.county "AL, Crenshaw County" "The dwelling unit is in AL, Crenshaw County" -in.county "AL, Cullman County" "The dwelling unit is in AL, Cullman County" -in.county "AL, Dale County" "The dwelling unit is in AL, Dale County" -in.county "AL, Dallas County" "The dwelling unit is in AL, Dallas County" -in.county "AL, DeKalb County" "The dwelling unit is in AL, DeKalb County" -in.county "AL, Elmore County" "The dwelling unit is in AL, Elmore County" -in.county "AL, Escambia County" "The dwelling unit is in AL, Escambia County" -in.county "AL, Etowah County" "The dwelling unit is in AL, Etowah County" -in.county "AL, Fayette County" "The dwelling unit is in AL, Fayette County" -in.county "AL, Franklin County" "The dwelling unit is in AL, Franklin County" -in.county "AL, Geneva County" "The dwelling unit is in AL, Geneva County" -in.county "AL, Greene County" "The dwelling unit is in AL, Greene County" -in.county "AL, Hale County" "The dwelling unit is in AL, Hale County" -in.county "AL, Henry County" "The dwelling unit is in AL, Henry County" -in.county "AL, Houston County" "The dwelling unit is in AL, Houston County" -in.county "AL, Jackson County" "The dwelling unit is in AL, Jackson County" -in.county "AL, Jefferson County" "The dwelling unit is in AL, Jefferson County" -in.county "AL, Lamar County" "The dwelling unit is in AL, Lamar County" -in.county "AL, Lauderdale County" "The dwelling unit is in AL, Lauderdale County" -in.county "AL, Lawrence County" "The dwelling unit is in AL, Lawrence County" -in.county "AL, Lee County" "The dwelling unit is in AL, Lee County" -in.county "AL, Limestone County" "The dwelling unit is in AL, Limestone County" -in.county "AL, Lowndes County" "The dwelling unit is in AL, Lowndes County" -in.county "AL, Macon County" "The dwelling unit is in AL, Macon County" -in.county "AL, Madison County" "The dwelling unit is in AL, Madison County" -in.county "AL, Marengo County" "The dwelling unit is in AL, Marengo County" -in.county "AL, Marion County" "The dwelling unit is in AL, Marion County" -in.county "AL, Marshall County" "The dwelling unit is in AL, Marshall County" -in.county "AL, Mobile County" "The dwelling unit is in AL, Mobile County" -in.county "AL, Monroe County" "The dwelling unit is in AL, Monroe County" -in.county "AL, Montgomery County" "The dwelling unit is in AL, Montgomery County" -in.county "AL, Morgan County" "The dwelling unit is in AL, Morgan County" -in.county "AL, Perry County" "The dwelling unit is in AL, Perry County" -in.county "AL, Pickens County" "The dwelling unit is in AL, Pickens County" -in.county "AL, Pike County" "The dwelling unit is in AL, Pike County" -in.county "AL, Randolph County" "The dwelling unit is in AL, Randolph County" -in.county "AL, Russell County" "The dwelling unit is in AL, Russell County" -in.county "AL, Shelby County" "The dwelling unit is in AL, Shelby County" -in.county "AL, St. Clair County" "The dwelling unit is in AL, St. Clair County" -in.county "AL, Sumter County" "The dwelling unit is in AL, Sumter County" -in.county "AL, Talladega County" "The dwelling unit is in AL, Talladega County" -in.county "AL, Tallapoosa County" "The dwelling unit is in AL, Tallapoosa County" -in.county "AL, Tuscaloosa County" "The dwelling unit is in AL, Tuscaloosa County" -in.county "AL, Walker County" "The dwelling unit is in AL, Walker County" -in.county "AL, Washington County" "The dwelling unit is in AL, Washington County" -in.county "AL, Wilcox County" "The dwelling unit is in AL, Wilcox County" -in.county "AL, Winston County" "The dwelling unit is in AL, Winston County" -in.county "AR, Arkansas County" "The dwelling unit is in AR, Arkansas County" -in.county "AR, Ashley County" "The dwelling unit is in AR, Ashley County" -in.county "AR, Baxter County" "The dwelling unit is in AR, Baxter County" -in.county "AR, Benton County" "The dwelling unit is in AR, Benton County" -in.county "AR, Boone County" "The dwelling unit is in AR, Boone County" -in.county "AR, Bradley County" "The dwelling unit is in AR, Bradley County" -in.county "AR, Calhoun County" "The dwelling unit is in AR, Calhoun County" -in.county "AR, Carroll County" "The dwelling unit is in AR, Carroll County" -in.county "AR, Chicot County" "The dwelling unit is in AR, Chicot County" -in.county "AR, Clark County" "The dwelling unit is in AR, Clark County" -in.county "AR, Clay County" "The dwelling unit is in AR, Clay County" -in.county "AR, Cleburne County" "The dwelling unit is in AR, Cleburne County" -in.county "AR, Cleveland County" "The dwelling unit is in AR, Cleveland County" -in.county "AR, Columbia County" "The dwelling unit is in AR, Columbia County" -in.county "AR, Conway County" "The dwelling unit is in AR, Conway County" -in.county "AR, Craighead County" "The dwelling unit is in AR, Craighead County" -in.county "AR, Crawford County" "The dwelling unit is in AR, Crawford County" -in.county "AR, Crittenden County" "The dwelling unit is in AR, Crittenden County" -in.county "AR, Cross County" "The dwelling unit is in AR, Cross County" -in.county "AR, Dallas County" "The dwelling unit is in AR, Dallas County" -in.county "AR, Desha County" "The dwelling unit is in AR, Desha County" -in.county "AR, Drew County" "The dwelling unit is in AR, Drew County" -in.county "AR, Faulkner County" "The dwelling unit is in AR, Faulkner County" -in.county "AR, Franklin County" "The dwelling unit is in AR, Franklin County" -in.county "AR, Fulton County" "The dwelling unit is in AR, Fulton County" -in.county "AR, Garland County" "The dwelling unit is in AR, Garland County" -in.county "AR, Grant County" "The dwelling unit is in AR, Grant County" -in.county "AR, Greene County" "The dwelling unit is in AR, Greene County" -in.county "AR, Hempstead County" "The dwelling unit is in AR, Hempstead County" -in.county "AR, Hot Spring County" "The dwelling unit is in AR, Hot Spring County" -in.county "AR, Howard County" "The dwelling unit is in AR, Howard County" -in.county "AR, Independence County" "The dwelling unit is in AR, Independence County" -in.county "AR, Izard County" "The dwelling unit is in AR, Izard County" -in.county "AR, Jackson County" "The dwelling unit is in AR, Jackson County" -in.county "AR, Jefferson County" "The dwelling unit is in AR, Jefferson County" -in.county "AR, Johnson County" "The dwelling unit is in AR, Johnson County" -in.county "AR, Lafayette County" "The dwelling unit is in AR, Lafayette County" -in.county "AR, Lawrence County" "The dwelling unit is in AR, Lawrence County" -in.county "AR, Lee County" "The dwelling unit is in AR, Lee County" -in.county "AR, Lincoln County" "The dwelling unit is in AR, Lincoln County" -in.county "AR, Little River County" "The dwelling unit is in AR, Little River County" -in.county "AR, Logan County" "The dwelling unit is in AR, Logan County" -in.county "AR, Lonoke County" "The dwelling unit is in AR, Lonoke County" -in.county "AR, Madison County" "The dwelling unit is in AR, Madison County" -in.county "AR, Marion County" "The dwelling unit is in AR, Marion County" -in.county "AR, Miller County" "The dwelling unit is in AR, Miller County" -in.county "AR, Mississippi County" "The dwelling unit is in AR, Mississippi County" -in.county "AR, Monroe County" "The dwelling unit is in AR, Monroe County" -in.county "AR, Montgomery County" "The dwelling unit is in AR, Montgomery County" -in.county "AR, Nevada County" "The dwelling unit is in AR, Nevada County" -in.county "AR, Newton County" "The dwelling unit is in AR, Newton County" -in.county "AR, Ouachita County" "The dwelling unit is in AR, Ouachita County" -in.county "AR, Perry County" "The dwelling unit is in AR, Perry County" -in.county "AR, Phillips County" "The dwelling unit is in AR, Phillips County" -in.county "AR, Pike County" "The dwelling unit is in AR, Pike County" -in.county "AR, Poinsett County" "The dwelling unit is in AR, Poinsett County" -in.county "AR, Polk County" "The dwelling unit is in AR, Polk County" -in.county "AR, Pope County" "The dwelling unit is in AR, Pope County" -in.county "AR, Prairie County" "The dwelling unit is in AR, Prairie County" -in.county "AR, Pulaski County" "The dwelling unit is in AR, Pulaski County" -in.county "AR, Randolph County" "The dwelling unit is in AR, Randolph County" -in.county "AR, Saline County" "The dwelling unit is in AR, Saline County" -in.county "AR, Scott County" "The dwelling unit is in AR, Scott County" -in.county "AR, Searcy County" "The dwelling unit is in AR, Searcy County" -in.county "AR, Sebastian County" "The dwelling unit is in AR, Sebastian County" -in.county "AR, Sevier County" "The dwelling unit is in AR, Sevier County" -in.county "AR, Sharp County" "The dwelling unit is in AR, Sharp County" -in.county "AR, St. Francis County" "The dwelling unit is in AR, St. Francis County" -in.county "AR, Stone County" "The dwelling unit is in AR, Stone County" -in.county "AR, Union County" "The dwelling unit is in AR, Union County" -in.county "AR, Van Buren County" "The dwelling unit is in AR, Van Buren County" -in.county "AR, Washington County" "The dwelling unit is in AR, Washington County" -in.county "AR, White County" "The dwelling unit is in AR, White County" -in.county "AR, Woodruff County" "The dwelling unit is in AR, Woodruff County" -in.county "AR, Yell County" "The dwelling unit is in AR, Yell County" -in.county "AZ, Apache County" "The dwelling unit is in AZ, Apache County" -in.county "AZ, Cochise County" "The dwelling unit is in AZ, Cochise County" -in.county "AZ, Coconino County" "The dwelling unit is in AZ, Coconino County" -in.county "AZ, Gila County" "The dwelling unit is in AZ, Gila County" -in.county "AZ, Graham County" "The dwelling unit is in AZ, Graham County" -in.county "AZ, Greenlee County" "The dwelling unit is in AZ, Greenlee County" -in.county "AZ, La Paz County" "The dwelling unit is in AZ, La Paz County" -in.county "AZ, Maricopa County" "The dwelling unit is in AZ, Maricopa County" -in.county "AZ, Mohave County" "The dwelling unit is in AZ, Mohave County" -in.county "AZ, Navajo County" "The dwelling unit is in AZ, Navajo County" -in.county "AZ, Pima County" "The dwelling unit is in AZ, Pima County" -in.county "AZ, Pinal County" "The dwelling unit is in AZ, Pinal County" -in.county "AZ, Santa Cruz County" "The dwelling unit is in AZ, Santa Cruz County" -in.county "AZ, Yavapai County" "The dwelling unit is in AZ, Yavapai County" -in.county "AZ, Yuma County" "The dwelling unit is in AZ, Yuma County" -in.county "CA, Alameda County" "The dwelling unit is in CA, Alameda County" -in.county "CA, Alpine County" "The dwelling unit is in CA, Alpine County" -in.county "CA, Amador County" "The dwelling unit is in CA, Amador County" -in.county "CA, Butte County" "The dwelling unit is in CA, Butte County" -in.county "CA, Calaveras County" "The dwelling unit is in CA, Calaveras County" -in.county "CA, Colusa County" "The dwelling unit is in CA, Colusa County" -in.county "CA, Contra Costa County" "The dwelling unit is in CA, Contra Costa County" -in.county "CA, Del Norte County" "The dwelling unit is in CA, Del Norte County" -in.county "CA, El Dorado County" "The dwelling unit is in CA, El Dorado County" -in.county "CA, Fresno County" "The dwelling unit is in CA, Fresno County" -in.county "CA, Glenn County" "The dwelling unit is in CA, Glenn County" -in.county "CA, Humboldt County" "The dwelling unit is in CA, Humboldt County" -in.county "CA, Imperial County" "The dwelling unit is in CA, Imperial County" -in.county "CA, Inyo County" "The dwelling unit is in CA, Inyo County" -in.county "CA, Kern County" "The dwelling unit is in CA, Kern County" -in.county "CA, Kings County" "The dwelling unit is in CA, Kings County" -in.county "CA, Lake County" "The dwelling unit is in CA, Lake County" -in.county "CA, Lassen County" "The dwelling unit is in CA, Lassen County" -in.county "CA, Los Angeles County" "The dwelling unit is in CA, Los Angeles County" -in.county "CA, Madera County" "The dwelling unit is in CA, Madera County" -in.county "CA, Marin County" "The dwelling unit is in CA, Marin County" -in.county "CA, Mariposa County" "The dwelling unit is in CA, Mariposa County" -in.county "CA, Mendocino County" "The dwelling unit is in CA, Mendocino County" -in.county "CA, Merced County" "The dwelling unit is in CA, Merced County" -in.county "CA, Modoc County" "The dwelling unit is in CA, Modoc County" -in.county "CA, Mono County" "The dwelling unit is in CA, Mono County" -in.county "CA, Monterey County" "The dwelling unit is in CA, Monterey County" -in.county "CA, Napa County" "The dwelling unit is in CA, Napa County" -in.county "CA, Nevada County" "The dwelling unit is in CA, Nevada County" -in.county "CA, Orange County" "The dwelling unit is in CA, Orange County" -in.county "CA, Placer County" "The dwelling unit is in CA, Placer County" -in.county "CA, Plumas County" "The dwelling unit is in CA, Plumas County" -in.county "CA, Riverside County" "The dwelling unit is in CA, Riverside County" -in.county "CA, Sacramento County" "The dwelling unit is in CA, Sacramento County" -in.county "CA, San Benito County" "The dwelling unit is in CA, San Benito County" -in.county "CA, San Bernardino County" "The dwelling unit is in CA, San Bernardino County" -in.county "CA, San Diego County" "The dwelling unit is in CA, San Diego County" -in.county "CA, San Francisco County" "The dwelling unit is in CA, San Francisco County" -in.county "CA, San Joaquin County" "The dwelling unit is in CA, San Joaquin County" -in.county "CA, San Luis Obispo County" "The dwelling unit is in CA, San Luis Obispo County" -in.county "CA, San Mateo County" "The dwelling unit is in CA, San Mateo County" -in.county "CA, Santa Barbara County" "The dwelling unit is in CA, Santa Barbara County" -in.county "CA, Santa Clara County" "The dwelling unit is in CA, Santa Clara County" -in.county "CA, Santa Cruz County" "The dwelling unit is in CA, Santa Cruz County" -in.county "CA, Shasta County" "The dwelling unit is in CA, Shasta County" -in.county "CA, Sierra County" "The dwelling unit is in CA, Sierra County" -in.county "CA, Siskiyou County" "The dwelling unit is in CA, Siskiyou County" -in.county "CA, Solano County" "The dwelling unit is in CA, Solano County" -in.county "CA, Sonoma County" "The dwelling unit is in CA, Sonoma County" -in.county "CA, Stanislaus County" "The dwelling unit is in CA, Stanislaus County" -in.county "CA, Sutter County" "The dwelling unit is in CA, Sutter County" -in.county "CA, Tehama County" "The dwelling unit is in CA, Tehama County" -in.county "CA, Trinity County" "The dwelling unit is in CA, Trinity County" -in.county "CA, Tulare County" "The dwelling unit is in CA, Tulare County" -in.county "CA, Tuolumne County" "The dwelling unit is in CA, Tuolumne County" -in.county "CA, Ventura County" "The dwelling unit is in CA, Ventura County" -in.county "CA, Yolo County" "The dwelling unit is in CA, Yolo County" -in.county "CA, Yuba County" "The dwelling unit is in CA, Yuba County" -in.county "CO, Adams County" "The dwelling unit is in CO, Adams County" -in.county "CO, Alamosa County" "The dwelling unit is in CO, Alamosa County" -in.county "CO, Arapahoe County" "The dwelling unit is in CO, Arapahoe County" -in.county "CO, Archuleta County" "The dwelling unit is in CO, Archuleta County" -in.county "CO, Baca County" "The dwelling unit is in CO, Baca County" -in.county "CO, Bent County" "The dwelling unit is in CO, Bent County" -in.county "CO, Boulder County" "The dwelling unit is in CO, Boulder County" -in.county "CO, Broomfield County" "The dwelling unit is in CO, Broomfield County" -in.county "CO, Chaffee County" "The dwelling unit is in CO, Chaffee County" -in.county "CO, Cheyenne County" "The dwelling unit is in CO, Cheyenne County" -in.county "CO, Clear Creek County" "The dwelling unit is in CO, Clear Creek County" -in.county "CO, Conejos County" "The dwelling unit is in CO, Conejos County" -in.county "CO, Costilla County" "The dwelling unit is in CO, Costilla County" -in.county "CO, Crowley County" "The dwelling unit is in CO, Crowley County" -in.county "CO, Custer County" "The dwelling unit is in CO, Custer County" -in.county "CO, Delta County" "The dwelling unit is in CO, Delta County" -in.county "CO, Denver County" "The dwelling unit is in CO, Denver County" -in.county "CO, Dolores County" "The dwelling unit is in CO, Dolores County" -in.county "CO, Douglas County" "The dwelling unit is in CO, Douglas County" -in.county "CO, Eagle County" "The dwelling unit is in CO, Eagle County" -in.county "CO, El Paso County" "The dwelling unit is in CO, El Paso County" -in.county "CO, Elbert County" "The dwelling unit is in CO, Elbert County" -in.county "CO, Fremont County" "The dwelling unit is in CO, Fremont County" -in.county "CO, Garfield County" "The dwelling unit is in CO, Garfield County" -in.county "CO, Gilpin County" "The dwelling unit is in CO, Gilpin County" -in.county "CO, Grand County" "The dwelling unit is in CO, Grand County" -in.county "CO, Gunnison County" "The dwelling unit is in CO, Gunnison County" -in.county "CO, Hinsdale County" "The dwelling unit is in CO, Hinsdale County" -in.county "CO, Huerfano County" "The dwelling unit is in CO, Huerfano County" -in.county "CO, Jackson County" "The dwelling unit is in CO, Jackson County" -in.county "CO, Jefferson County" "The dwelling unit is in CO, Jefferson County" -in.county "CO, Kiowa County" "The dwelling unit is in CO, Kiowa County" -in.county "CO, Kit Carson County" "The dwelling unit is in CO, Kit Carson County" -in.county "CO, La Plata County" "The dwelling unit is in CO, La Plata County" -in.county "CO, Lake County" "The dwelling unit is in CO, Lake County" -in.county "CO, Larimer County" "The dwelling unit is in CO, Larimer County" -in.county "CO, Las Animas County" "The dwelling unit is in CO, Las Animas County" -in.county "CO, Lincoln County" "The dwelling unit is in CO, Lincoln County" -in.county "CO, Logan County" "The dwelling unit is in CO, Logan County" -in.county "CO, Mesa County" "The dwelling unit is in CO, Mesa County" -in.county "CO, Mineral County" "The dwelling unit is in CO, Mineral County" -in.county "CO, Moffat County" "The dwelling unit is in CO, Moffat County" -in.county "CO, Montezuma County" "The dwelling unit is in CO, Montezuma County" -in.county "CO, Montrose County" "The dwelling unit is in CO, Montrose County" -in.county "CO, Morgan County" "The dwelling unit is in CO, Morgan County" -in.county "CO, Otero County" "The dwelling unit is in CO, Otero County" -in.county "CO, Ouray County" "The dwelling unit is in CO, Ouray County" -in.county "CO, Park County" "The dwelling unit is in CO, Park County" -in.county "CO, Phillips County" "The dwelling unit is in CO, Phillips County" -in.county "CO, Pitkin County" "The dwelling unit is in CO, Pitkin County" -in.county "CO, Prowers County" "The dwelling unit is in CO, Prowers County" -in.county "CO, Pueblo County" "The dwelling unit is in CO, Pueblo County" -in.county "CO, Rio Blanco County" "The dwelling unit is in CO, Rio Blanco County" -in.county "CO, Rio Grande County" "The dwelling unit is in CO, Rio Grande County" -in.county "CO, Routt County" "The dwelling unit is in CO, Routt County" -in.county "CO, Saguache County" "The dwelling unit is in CO, Saguache County" -in.county "CO, San Juan County" "The dwelling unit is in CO, San Juan County" -in.county "CO, San Miguel County" "The dwelling unit is in CO, San Miguel County" -in.county "CO, Sedgwick County" "The dwelling unit is in CO, Sedgwick County" -in.county "CO, Summit County" "The dwelling unit is in CO, Summit County" -in.county "CO, Teller County" "The dwelling unit is in CO, Teller County" -in.county "CO, Washington County" "The dwelling unit is in CO, Washington County" -in.county "CO, Weld County" "The dwelling unit is in CO, Weld County" -in.county "CO, Yuma County" "The dwelling unit is in CO, Yuma County" -in.county "CT, Fairfield County" "The dwelling unit is in CT, Fairfield County" -in.county "CT, Hartford County" "The dwelling unit is in CT, Hartford County" -in.county "CT, Litchfield County" "The dwelling unit is in CT, Litchfield County" -in.county "CT, Middlesex County" "The dwelling unit is in CT, Middlesex County" -in.county "CT, New Haven County" "The dwelling unit is in CT, New Haven County" -in.county "CT, New London County" "The dwelling unit is in CT, New London County" -in.county "CT, Tolland County" "The dwelling unit is in CT, Tolland County" -in.county "CT, Windham County" "The dwelling unit is in CT, Windham County" -in.county "DC, District of Columbia" "The dwelling unit is in DC, District of Columbia" -in.county "DE, Kent County" "The dwelling unit is in DE, Kent County" -in.county "DE, New Castle County" "The dwelling unit is in DE, New Castle County" -in.county "DE, Sussex County" "The dwelling unit is in DE, Sussex County" -in.county "FL, Alachua County" "The dwelling unit is in FL, Alachua County" -in.county "FL, Baker County" "The dwelling unit is in FL, Baker County" -in.county "FL, Bay County" "The dwelling unit is in FL, Bay County" -in.county "FL, Bradford County" "The dwelling unit is in FL, Bradford County" -in.county "FL, Brevard County" "The dwelling unit is in FL, Brevard County" -in.county "FL, Broward County" "The dwelling unit is in FL, Broward County" -in.county "FL, Calhoun County" "The dwelling unit is in FL, Calhoun County" -in.county "FL, Charlotte County" "The dwelling unit is in FL, Charlotte County" -in.county "FL, Citrus County" "The dwelling unit is in FL, Citrus County" -in.county "FL, Clay County" "The dwelling unit is in FL, Clay County" -in.county "FL, Collier County" "The dwelling unit is in FL, Collier County" -in.county "FL, Columbia County" "The dwelling unit is in FL, Columbia County" -in.county "FL, DeSoto County" "The dwelling unit is in FL, DeSoto County" -in.county "FL, Dixie County" "The dwelling unit is in FL, Dixie County" -in.county "FL, Duval County" "The dwelling unit is in FL, Duval County" -in.county "FL, Escambia County" "The dwelling unit is in FL, Escambia County" -in.county "FL, Flagler County" "The dwelling unit is in FL, Flagler County" -in.county "FL, Franklin County" "The dwelling unit is in FL, Franklin County" -in.county "FL, Gadsden County" "The dwelling unit is in FL, Gadsden County" -in.county "FL, Gilchrist County" "The dwelling unit is in FL, Gilchrist County" -in.county "FL, Glades County" "The dwelling unit is in FL, Glades County" -in.county "FL, Gulf County" "The dwelling unit is in FL, Gulf County" -in.county "FL, Hamilton County" "The dwelling unit is in FL, Hamilton County" -in.county "FL, Hardee County" "The dwelling unit is in FL, Hardee County" -in.county "FL, Hendry County" "The dwelling unit is in FL, Hendry County" -in.county "FL, Hernando County" "The dwelling unit is in FL, Hernando County" -in.county "FL, Highlands County" "The dwelling unit is in FL, Highlands County" -in.county "FL, Hillsborough County" "The dwelling unit is in FL, Hillsborough County" -in.county "FL, Holmes County" "The dwelling unit is in FL, Holmes County" -in.county "FL, Indian River County" "The dwelling unit is in FL, Indian River County" -in.county "FL, Jackson County" "The dwelling unit is in FL, Jackson County" -in.county "FL, Jefferson County" "The dwelling unit is in FL, Jefferson County" -in.county "FL, Lafayette County" "The dwelling unit is in FL, Lafayette County" -in.county "FL, Lake County" "The dwelling unit is in FL, Lake County" -in.county "FL, Lee County" "The dwelling unit is in FL, Lee County" -in.county "FL, Leon County" "The dwelling unit is in FL, Leon County" -in.county "FL, Levy County" "The dwelling unit is in FL, Levy County" -in.county "FL, Liberty County" "The dwelling unit is in FL, Liberty County" -in.county "FL, Madison County" "The dwelling unit is in FL, Madison County" -in.county "FL, Manatee County" "The dwelling unit is in FL, Manatee County" -in.county "FL, Marion County" "The dwelling unit is in FL, Marion County" -in.county "FL, Martin County" "The dwelling unit is in FL, Martin County" -in.county "FL, Miami-Dade County" "The dwelling unit is in FL, Miami-Dade County" -in.county "FL, Monroe County" "The dwelling unit is in FL, Monroe County" -in.county "FL, Nassau County" "The dwelling unit is in FL, Nassau County" -in.county "FL, Okaloosa County" "The dwelling unit is in FL, Okaloosa County" -in.county "FL, Okeechobee County" "The dwelling unit is in FL, Okeechobee County" -in.county "FL, Orange County" "The dwelling unit is in FL, Orange County" -in.county "FL, Osceola County" "The dwelling unit is in FL, Osceola County" -in.county "FL, Palm Beach County" "The dwelling unit is in FL, Palm Beach County" -in.county "FL, Pasco County" "The dwelling unit is in FL, Pasco County" -in.county "FL, Pinellas County" "The dwelling unit is in FL, Pinellas County" -in.county "FL, Polk County" "The dwelling unit is in FL, Polk County" -in.county "FL, Putnam County" "The dwelling unit is in FL, Putnam County" -in.county "FL, Santa Rosa County" "The dwelling unit is in FL, Santa Rosa County" -in.county "FL, Sarasota County" "The dwelling unit is in FL, Sarasota County" -in.county "FL, Seminole County" "The dwelling unit is in FL, Seminole County" -in.county "FL, St. Johns County" "The dwelling unit is in FL, St. Johns County" -in.county "FL, St. Lucie County" "The dwelling unit is in FL, St. Lucie County" -in.county "FL, Sumter County" "The dwelling unit is in FL, Sumter County" -in.county "FL, Suwannee County" "The dwelling unit is in FL, Suwannee County" -in.county "FL, Taylor County" "The dwelling unit is in FL, Taylor County" -in.county "FL, Union County" "The dwelling unit is in FL, Union County" -in.county "FL, Volusia County" "The dwelling unit is in FL, Volusia County" -in.county "FL, Wakulla County" "The dwelling unit is in FL, Wakulla County" -in.county "FL, Walton County" "The dwelling unit is in FL, Walton County" -in.county "FL, Washington County" "The dwelling unit is in FL, Washington County" -in.county "GA, Appling County" "The dwelling unit is in GA, Appling County" -in.county "GA, Atkinson County" "The dwelling unit is in GA, Atkinson County" -in.county "GA, Bacon County" "The dwelling unit is in GA, Bacon County" -in.county "GA, Baker County" "The dwelling unit is in GA, Baker County" -in.county "GA, Baldwin County" "The dwelling unit is in GA, Baldwin County" -in.county "GA, Banks County" "The dwelling unit is in GA, Banks County" -in.county "GA, Barrow County" "The dwelling unit is in GA, Barrow County" -in.county "GA, Bartow County" "The dwelling unit is in GA, Bartow County" -in.county "GA, Ben Hill County" "The dwelling unit is in GA, Ben Hill County" -in.county "GA, Berrien County" "The dwelling unit is in GA, Berrien County" -in.county "GA, Bibb County" "The dwelling unit is in GA, Bibb County" -in.county "GA, Bleckley County" "The dwelling unit is in GA, Bleckley County" -in.county "GA, Brantley County" "The dwelling unit is in GA, Brantley County" -in.county "GA, Brooks County" "The dwelling unit is in GA, Brooks County" -in.county "GA, Bryan County" "The dwelling unit is in GA, Bryan County" -in.county "GA, Bulloch County" "The dwelling unit is in GA, Bulloch County" -in.county "GA, Burke County" "The dwelling unit is in GA, Burke County" -in.county "GA, Butts County" "The dwelling unit is in GA, Butts County" -in.county "GA, Calhoun County" "The dwelling unit is in GA, Calhoun County" -in.county "GA, Camden County" "The dwelling unit is in GA, Camden County" -in.county "GA, Candler County" "The dwelling unit is in GA, Candler County" -in.county "GA, Carroll County" "The dwelling unit is in GA, Carroll County" -in.county "GA, Catoosa County" "The dwelling unit is in GA, Catoosa County" -in.county "GA, Charlton County" "The dwelling unit is in GA, Charlton County" -in.county "GA, Chatham County" "The dwelling unit is in GA, Chatham County" -in.county "GA, Chattahoochee County" "The dwelling unit is in GA, Chattahoochee County" -in.county "GA, Chattooga County" "The dwelling unit is in GA, Chattooga County" -in.county "GA, Cherokee County" "The dwelling unit is in GA, Cherokee County" -in.county "GA, Clarke County" "The dwelling unit is in GA, Clarke County" -in.county "GA, Clay County" "The dwelling unit is in GA, Clay County" -in.county "GA, Clayton County" "The dwelling unit is in GA, Clayton County" -in.county "GA, Clinch County" "The dwelling unit is in GA, Clinch County" -in.county "GA, Cobb County" "The dwelling unit is in GA, Cobb County" -in.county "GA, Coffee County" "The dwelling unit is in GA, Coffee County" -in.county "GA, Colquitt County" "The dwelling unit is in GA, Colquitt County" -in.county "GA, Columbia County" "The dwelling unit is in GA, Columbia County" -in.county "GA, Cook County" "The dwelling unit is in GA, Cook County" -in.county "GA, Coweta County" "The dwelling unit is in GA, Coweta County" -in.county "GA, Crawford County" "The dwelling unit is in GA, Crawford County" -in.county "GA, Crisp County" "The dwelling unit is in GA, Crisp County" -in.county "GA, Dade County" "The dwelling unit is in GA, Dade County" -in.county "GA, Dawson County" "The dwelling unit is in GA, Dawson County" -in.county "GA, DeKalb County" "The dwelling unit is in GA, DeKalb County" -in.county "GA, Decatur County" "The dwelling unit is in GA, Decatur County" -in.county "GA, Dodge County" "The dwelling unit is in GA, Dodge County" -in.county "GA, Dooly County" "The dwelling unit is in GA, Dooly County" -in.county "GA, Dougherty County" "The dwelling unit is in GA, Dougherty County" -in.county "GA, Douglas County" "The dwelling unit is in GA, Douglas County" -in.county "GA, Early County" "The dwelling unit is in GA, Early County" -in.county "GA, Echols County" "The dwelling unit is in GA, Echols County" -in.county "GA, Effingham County" "The dwelling unit is in GA, Effingham County" -in.county "GA, Elbert County" "The dwelling unit is in GA, Elbert County" -in.county "GA, Emanuel County" "The dwelling unit is in GA, Emanuel County" -in.county "GA, Evans County" "The dwelling unit is in GA, Evans County" -in.county "GA, Fannin County" "The dwelling unit is in GA, Fannin County" -in.county "GA, Fayette County" "The dwelling unit is in GA, Fayette County" -in.county "GA, Floyd County" "The dwelling unit is in GA, Floyd County" -in.county "GA, Forsyth County" "The dwelling unit is in GA, Forsyth County" -in.county "GA, Franklin County" "The dwelling unit is in GA, Franklin County" -in.county "GA, Fulton County" "The dwelling unit is in GA, Fulton County" -in.county "GA, Gilmer County" "The dwelling unit is in GA, Gilmer County" -in.county "GA, Glascock County" "The dwelling unit is in GA, Glascock County" -in.county "GA, Glynn County" "The dwelling unit is in GA, Glynn County" -in.county "GA, Gordon County" "The dwelling unit is in GA, Gordon County" -in.county "GA, Grady County" "The dwelling unit is in GA, Grady County" -in.county "GA, Greene County" "The dwelling unit is in GA, Greene County" -in.county "GA, Gwinnett County" "The dwelling unit is in GA, Gwinnett County" -in.county "GA, Habersham County" "The dwelling unit is in GA, Habersham County" -in.county "GA, Hall County" "The dwelling unit is in GA, Hall County" -in.county "GA, Hancock County" "The dwelling unit is in GA, Hancock County" -in.county "GA, Haralson County" "The dwelling unit is in GA, Haralson County" -in.county "GA, Harris County" "The dwelling unit is in GA, Harris County" -in.county "GA, Hart County" "The dwelling unit is in GA, Hart County" -in.county "GA, Heard County" "The dwelling unit is in GA, Heard County" -in.county "GA, Henry County" "The dwelling unit is in GA, Henry County" -in.county "GA, Houston County" "The dwelling unit is in GA, Houston County" -in.county "GA, Irwin County" "The dwelling unit is in GA, Irwin County" -in.county "GA, Jackson County" "The dwelling unit is in GA, Jackson County" -in.county "GA, Jasper County" "The dwelling unit is in GA, Jasper County" -in.county "GA, Jeff Davis County" "The dwelling unit is in GA, Jeff Davis County" -in.county "GA, Jefferson County" "The dwelling unit is in GA, Jefferson County" -in.county "GA, Jenkins County" "The dwelling unit is in GA, Jenkins County" -in.county "GA, Johnson County" "The dwelling unit is in GA, Johnson County" -in.county "GA, Jones County" "The dwelling unit is in GA, Jones County" -in.county "GA, Lamar County" "The dwelling unit is in GA, Lamar County" -in.county "GA, Lanier County" "The dwelling unit is in GA, Lanier County" -in.county "GA, Laurens County" "The dwelling unit is in GA, Laurens County" -in.county "GA, Lee County" "The dwelling unit is in GA, Lee County" -in.county "GA, Liberty County" "The dwelling unit is in GA, Liberty County" -in.county "GA, Lincoln County" "The dwelling unit is in GA, Lincoln County" -in.county "GA, Long County" "The dwelling unit is in GA, Long County" -in.county "GA, Lowndes County" "The dwelling unit is in GA, Lowndes County" -in.county "GA, Lumpkin County" "The dwelling unit is in GA, Lumpkin County" -in.county "GA, Macon County" "The dwelling unit is in GA, Macon County" -in.county "GA, Madison County" "The dwelling unit is in GA, Madison County" -in.county "GA, Marion County" "The dwelling unit is in GA, Marion County" -in.county "GA, McDuffie County" "The dwelling unit is in GA, McDuffie County" -in.county "GA, McIntosh County" "The dwelling unit is in GA, McIntosh County" -in.county "GA, Meriwether County" "The dwelling unit is in GA, Meriwether County" -in.county "GA, Miller County" "The dwelling unit is in GA, Miller County" -in.county "GA, Mitchell County" "The dwelling unit is in GA, Mitchell County" -in.county "GA, Monroe County" "The dwelling unit is in GA, Monroe County" -in.county "GA, Montgomery County" "The dwelling unit is in GA, Montgomery County" -in.county "GA, Morgan County" "The dwelling unit is in GA, Morgan County" -in.county "GA, Murray County" "The dwelling unit is in GA, Murray County" -in.county "GA, Muscogee County" "The dwelling unit is in GA, Muscogee County" -in.county "GA, Newton County" "The dwelling unit is in GA, Newton County" -in.county "GA, Oconee County" "The dwelling unit is in GA, Oconee County" -in.county "GA, Oglethorpe County" "The dwelling unit is in GA, Oglethorpe County" -in.county "GA, Paulding County" "The dwelling unit is in GA, Paulding County" -in.county "GA, Peach County" "The dwelling unit is in GA, Peach County" -in.county "GA, Pickens County" "The dwelling unit is in GA, Pickens County" -in.county "GA, Pierce County" "The dwelling unit is in GA, Pierce County" -in.county "GA, Pike County" "The dwelling unit is in GA, Pike County" -in.county "GA, Polk County" "The dwelling unit is in GA, Polk County" -in.county "GA, Pulaski County" "The dwelling unit is in GA, Pulaski County" -in.county "GA, Putnam County" "The dwelling unit is in GA, Putnam County" -in.county "GA, Quitman County" "The dwelling unit is in GA, Quitman County" -in.county "GA, Rabun County" "The dwelling unit is in GA, Rabun County" -in.county "GA, Randolph County" "The dwelling unit is in GA, Randolph County" -in.county "GA, Richmond County" "The dwelling unit is in GA, Richmond County" -in.county "GA, Rockdale County" "The dwelling unit is in GA, Rockdale County" -in.county "GA, Schley County" "The dwelling unit is in GA, Schley County" -in.county "GA, Screven County" "The dwelling unit is in GA, Screven County" -in.county "GA, Seminole County" "The dwelling unit is in GA, Seminole County" -in.county "GA, Spalding County" "The dwelling unit is in GA, Spalding County" -in.county "GA, Stephens County" "The dwelling unit is in GA, Stephens County" -in.county "GA, Stewart County" "The dwelling unit is in GA, Stewart County" -in.county "GA, Sumter County" "The dwelling unit is in GA, Sumter County" -in.county "GA, Talbot County" "The dwelling unit is in GA, Talbot County" -in.county "GA, Taliaferro County" "The dwelling unit is in GA, Taliaferro County" -in.county "GA, Tattnall County" "The dwelling unit is in GA, Tattnall County" -in.county "GA, Taylor County" "The dwelling unit is in GA, Taylor County" -in.county "GA, Telfair County" "The dwelling unit is in GA, Telfair County" -in.county "GA, Terrell County" "The dwelling unit is in GA, Terrell County" -in.county "GA, Thomas County" "The dwelling unit is in GA, Thomas County" -in.county "GA, Tift County" "The dwelling unit is in GA, Tift County" -in.county "GA, Toombs County" "The dwelling unit is in GA, Toombs County" -in.county "GA, Towns County" "The dwelling unit is in GA, Towns County" -in.county "GA, Treutlen County" "The dwelling unit is in GA, Treutlen County" -in.county "GA, Troup County" "The dwelling unit is in GA, Troup County" -in.county "GA, Turner County" "The dwelling unit is in GA, Turner County" -in.county "GA, Twiggs County" "The dwelling unit is in GA, Twiggs County" -in.county "GA, Union County" "The dwelling unit is in GA, Union County" -in.county "GA, Upson County" "The dwelling unit is in GA, Upson County" -in.county "GA, Walker County" "The dwelling unit is in GA, Walker County" -in.county "GA, Walton County" "The dwelling unit is in GA, Walton County" -in.county "GA, Ware County" "The dwelling unit is in GA, Ware County" -in.county "GA, Warren County" "The dwelling unit is in GA, Warren County" -in.county "GA, Washington County" "The dwelling unit is in GA, Washington County" -in.county "GA, Wayne County" "The dwelling unit is in GA, Wayne County" -in.county "GA, Webster County" "The dwelling unit is in GA, Webster County" -in.county "GA, Wheeler County" "The dwelling unit is in GA, Wheeler County" -in.county "GA, White County" "The dwelling unit is in GA, White County" -in.county "GA, Whitfield County" "The dwelling unit is in GA, Whitfield County" -in.county "GA, Wilcox County" "The dwelling unit is in GA, Wilcox County" -in.county "GA, Wilkes County" "The dwelling unit is in GA, Wilkes County" -in.county "GA, Wilkinson County" "The dwelling unit is in GA, Wilkinson County" -in.county "GA, Worth County" "The dwelling unit is in GA, Worth County" -in.county "HI, Hawaii County" "The dwelling unit is in HI, Hawaii County" -in.county "HI, Honolulu County" "The dwelling unit is in HI, Honolulu County" -in.county "HI, Kauai County" "The dwelling unit is in HI, Kauai County" -in.county "HI, Maui County" "The dwelling unit is in HI, Maui County" -in.county "IA, Adair County" "The dwelling unit is in IA, Adair County" -in.county "IA, Adams County" "The dwelling unit is in IA, Adams County" -in.county "IA, Allamakee County" "The dwelling unit is in IA, Allamakee County" -in.county "IA, Appanoose County" "The dwelling unit is in IA, Appanoose County" -in.county "IA, Audubon County" "The dwelling unit is in IA, Audubon County" -in.county "IA, Benton County" "The dwelling unit is in IA, Benton County" -in.county "IA, Black Hawk County" "The dwelling unit is in IA, Black Hawk County" -in.county "IA, Boone County" "The dwelling unit is in IA, Boone County" -in.county "IA, Bremer County" "The dwelling unit is in IA, Bremer County" -in.county "IA, Buchanan County" "The dwelling unit is in IA, Buchanan County" -in.county "IA, Buena Vista County" "The dwelling unit is in IA, Buena Vista County" -in.county "IA, Butler County" "The dwelling unit is in IA, Butler County" -in.county "IA, Calhoun County" "The dwelling unit is in IA, Calhoun County" -in.county "IA, Carroll County" "The dwelling unit is in IA, Carroll County" -in.county "IA, Cass County" "The dwelling unit is in IA, Cass County" -in.county "IA, Cedar County" "The dwelling unit is in IA, Cedar County" -in.county "IA, Cerro Gordo County" "The dwelling unit is in IA, Cerro Gordo County" -in.county "IA, Cherokee County" "The dwelling unit is in IA, Cherokee County" -in.county "IA, Chickasaw County" "The dwelling unit is in IA, Chickasaw County" -in.county "IA, Clarke County" "The dwelling unit is in IA, Clarke County" -in.county "IA, Clay County" "The dwelling unit is in IA, Clay County" -in.county "IA, Clayton County" "The dwelling unit is in IA, Clayton County" -in.county "IA, Clinton County" "The dwelling unit is in IA, Clinton County" -in.county "IA, Crawford County" "The dwelling unit is in IA, Crawford County" -in.county "IA, Dallas County" "The dwelling unit is in IA, Dallas County" -in.county "IA, Davis County" "The dwelling unit is in IA, Davis County" -in.county "IA, Decatur County" "The dwelling unit is in IA, Decatur County" -in.county "IA, Delaware County" "The dwelling unit is in IA, Delaware County" -in.county "IA, Des Moines County" "The dwelling unit is in IA, Des Moines County" -in.county "IA, Dickinson County" "The dwelling unit is in IA, Dickinson County" -in.county "IA, Dubuque County" "The dwelling unit is in IA, Dubuque County" -in.county "IA, Emmet County" "The dwelling unit is in IA, Emmet County" -in.county "IA, Fayette County" "The dwelling unit is in IA, Fayette County" -in.county "IA, Floyd County" "The dwelling unit is in IA, Floyd County" -in.county "IA, Franklin County" "The dwelling unit is in IA, Franklin County" -in.county "IA, Fremont County" "The dwelling unit is in IA, Fremont County" -in.county "IA, Greene County" "The dwelling unit is in IA, Greene County" -in.county "IA, Grundy County" "The dwelling unit is in IA, Grundy County" -in.county "IA, Guthrie County" "The dwelling unit is in IA, Guthrie County" -in.county "IA, Hamilton County" "The dwelling unit is in IA, Hamilton County" -in.county "IA, Hancock County" "The dwelling unit is in IA, Hancock County" -in.county "IA, Hardin County" "The dwelling unit is in IA, Hardin County" -in.county "IA, Harrison County" "The dwelling unit is in IA, Harrison County" -in.county "IA, Henry County" "The dwelling unit is in IA, Henry County" -in.county "IA, Howard County" "The dwelling unit is in IA, Howard County" -in.county "IA, Humboldt County" "The dwelling unit is in IA, Humboldt County" -in.county "IA, Ida County" "The dwelling unit is in IA, Ida County" -in.county "IA, Iowa County" "The dwelling unit is in IA, Iowa County" -in.county "IA, Jackson County" "The dwelling unit is in IA, Jackson County" -in.county "IA, Jasper County" "The dwelling unit is in IA, Jasper County" -in.county "IA, Jefferson County" "The dwelling unit is in IA, Jefferson County" -in.county "IA, Johnson County" "The dwelling unit is in IA, Johnson County" -in.county "IA, Jones County" "The dwelling unit is in IA, Jones County" -in.county "IA, Keokuk County" "The dwelling unit is in IA, Keokuk County" -in.county "IA, Kossuth County" "The dwelling unit is in IA, Kossuth County" -in.county "IA, Lee County" "The dwelling unit is in IA, Lee County" -in.county "IA, Linn County" "The dwelling unit is in IA, Linn County" -in.county "IA, Louisa County" "The dwelling unit is in IA, Louisa County" -in.county "IA, Lucas County" "The dwelling unit is in IA, Lucas County" -in.county "IA, Lyon County" "The dwelling unit is in IA, Lyon County" -in.county "IA, Madison County" "The dwelling unit is in IA, Madison County" -in.county "IA, Mahaska County" "The dwelling unit is in IA, Mahaska County" -in.county "IA, Marion County" "The dwelling unit is in IA, Marion County" -in.county "IA, Marshall County" "The dwelling unit is in IA, Marshall County" -in.county "IA, Mills County" "The dwelling unit is in IA, Mills County" -in.county "IA, Mitchell County" "The dwelling unit is in IA, Mitchell County" -in.county "IA, Monona County" "The dwelling unit is in IA, Monona County" -in.county "IA, Monroe County" "The dwelling unit is in IA, Monroe County" -in.county "IA, Montgomery County" "The dwelling unit is in IA, Montgomery County" -in.county "IA, Muscatine County" "The dwelling unit is in IA, Muscatine County" -in.county "IA, O'Brien County" "The dwelling unit is in IA, O'Brien County" -in.county "IA, Osceola County" "The dwelling unit is in IA, Osceola County" -in.county "IA, Page County" "The dwelling unit is in IA, Page County" -in.county "IA, Palo Alto County" "The dwelling unit is in IA, Palo Alto County" -in.county "IA, Plymouth County" "The dwelling unit is in IA, Plymouth County" -in.county "IA, Pocahontas County" "The dwelling unit is in IA, Pocahontas County" -in.county "IA, Polk County" "The dwelling unit is in IA, Polk County" -in.county "IA, Pottawattamie County" "The dwelling unit is in IA, Pottawattamie County" -in.county "IA, Poweshiek County" "The dwelling unit is in IA, Poweshiek County" -in.county "IA, Ringgold County" "The dwelling unit is in IA, Ringgold County" -in.county "IA, Sac County" "The dwelling unit is in IA, Sac County" -in.county "IA, Scott County" "The dwelling unit is in IA, Scott County" -in.county "IA, Shelby County" "The dwelling unit is in IA, Shelby County" -in.county "IA, Sioux County" "The dwelling unit is in IA, Sioux County" -in.county "IA, Story County" "The dwelling unit is in IA, Story County" -in.county "IA, Tama County" "The dwelling unit is in IA, Tama County" -in.county "IA, Taylor County" "The dwelling unit is in IA, Taylor County" -in.county "IA, Union County" "The dwelling unit is in IA, Union County" -in.county "IA, Van Buren County" "The dwelling unit is in IA, Van Buren County" -in.county "IA, Wapello County" "The dwelling unit is in IA, Wapello County" -in.county "IA, Warren County" "The dwelling unit is in IA, Warren County" -in.county "IA, Washington County" "The dwelling unit is in IA, Washington County" -in.county "IA, Wayne County" "The dwelling unit is in IA, Wayne County" -in.county "IA, Webster County" "The dwelling unit is in IA, Webster County" -in.county "IA, Winnebago County" "The dwelling unit is in IA, Winnebago County" -in.county "IA, Winneshiek County" "The dwelling unit is in IA, Winneshiek County" -in.county "IA, Woodbury County" "The dwelling unit is in IA, Woodbury County" -in.county "IA, Worth County" "The dwelling unit is in IA, Worth County" -in.county "IA, Wright County" "The dwelling unit is in IA, Wright County" -in.county "ID, Ada County" "The dwelling unit is in ID, Ada County" -in.county "ID, Adams County" "The dwelling unit is in ID, Adams County" -in.county "ID, Bannock County" "The dwelling unit is in ID, Bannock County" -in.county "ID, Bear Lake County" "The dwelling unit is in ID, Bear Lake County" -in.county "ID, Benewah County" "The dwelling unit is in ID, Benewah County" -in.county "ID, Bingham County" "The dwelling unit is in ID, Bingham County" -in.county "ID, Blaine County" "The dwelling unit is in ID, Blaine County" -in.county "ID, Boise County" "The dwelling unit is in ID, Boise County" -in.county "ID, Bonner County" "The dwelling unit is in ID, Bonner County" -in.county "ID, Bonneville County" "The dwelling unit is in ID, Bonneville County" -in.county "ID, Boundary County" "The dwelling unit is in ID, Boundary County" -in.county "ID, Butte County" "The dwelling unit is in ID, Butte County" -in.county "ID, Camas County" "The dwelling unit is in ID, Camas County" -in.county "ID, Canyon County" "The dwelling unit is in ID, Canyon County" -in.county "ID, Caribou County" "The dwelling unit is in ID, Caribou County" -in.county "ID, Cassia County" "The dwelling unit is in ID, Cassia County" -in.county "ID, Clark County" "The dwelling unit is in ID, Clark County" -in.county "ID, Clearwater County" "The dwelling unit is in ID, Clearwater County" -in.county "ID, Custer County" "The dwelling unit is in ID, Custer County" -in.county "ID, Elmore County" "The dwelling unit is in ID, Elmore County" -in.county "ID, Franklin County" "The dwelling unit is in ID, Franklin County" -in.county "ID, Fremont County" "The dwelling unit is in ID, Fremont County" -in.county "ID, Gem County" "The dwelling unit is in ID, Gem County" -in.county "ID, Gooding County" "The dwelling unit is in ID, Gooding County" -in.county "ID, Idaho County" "The dwelling unit is in ID, Idaho County" -in.county "ID, Jefferson County" "The dwelling unit is in ID, Jefferson County" -in.county "ID, Jerome County" "The dwelling unit is in ID, Jerome County" -in.county "ID, Kootenai County" "The dwelling unit is in ID, Kootenai County" -in.county "ID, Latah County" "The dwelling unit is in ID, Latah County" -in.county "ID, Lemhi County" "The dwelling unit is in ID, Lemhi County" -in.county "ID, Lewis County" "The dwelling unit is in ID, Lewis County" -in.county "ID, Lincoln County" "The dwelling unit is in ID, Lincoln County" -in.county "ID, Madison County" "The dwelling unit is in ID, Madison County" -in.county "ID, Minidoka County" "The dwelling unit is in ID, Minidoka County" -in.county "ID, Nez Perce County" "The dwelling unit is in ID, Nez Perce County" -in.county "ID, Oneida County" "The dwelling unit is in ID, Oneida County" -in.county "ID, Owyhee County" "The dwelling unit is in ID, Owyhee County" -in.county "ID, Payette County" "The dwelling unit is in ID, Payette County" -in.county "ID, Power County" "The dwelling unit is in ID, Power County" -in.county "ID, Shoshone County" "The dwelling unit is in ID, Shoshone County" -in.county "ID, Teton County" "The dwelling unit is in ID, Teton County" -in.county "ID, Twin Falls County" "The dwelling unit is in ID, Twin Falls County" -in.county "ID, Valley County" "The dwelling unit is in ID, Valley County" -in.county "ID, Washington County" "The dwelling unit is in ID, Washington County" -in.county "IL, Adams County" "The dwelling unit is in IL, Adams County" -in.county "IL, Alexander County" "The dwelling unit is in IL, Alexander County" -in.county "IL, Bond County" "The dwelling unit is in IL, Bond County" -in.county "IL, Boone County" "The dwelling unit is in IL, Boone County" -in.county "IL, Brown County" "The dwelling unit is in IL, Brown County" -in.county "IL, Bureau County" "The dwelling unit is in IL, Bureau County" -in.county "IL, Calhoun County" "The dwelling unit is in IL, Calhoun County" -in.county "IL, Carroll County" "The dwelling unit is in IL, Carroll County" -in.county "IL, Cass County" "The dwelling unit is in IL, Cass County" -in.county "IL, Champaign County" "The dwelling unit is in IL, Champaign County" -in.county "IL, Christian County" "The dwelling unit is in IL, Christian County" -in.county "IL, Clark County" "The dwelling unit is in IL, Clark County" -in.county "IL, Clay County" "The dwelling unit is in IL, Clay County" -in.county "IL, Clinton County" "The dwelling unit is in IL, Clinton County" -in.county "IL, Coles County" "The dwelling unit is in IL, Coles County" -in.county "IL, Cook County" "The dwelling unit is in IL, Cook County" -in.county "IL, Crawford County" "The dwelling unit is in IL, Crawford County" -in.county "IL, Cumberland County" "The dwelling unit is in IL, Cumberland County" -in.county "IL, De Witt County" "The dwelling unit is in IL, De Witt County" -in.county "IL, DeKalb County" "The dwelling unit is in IL, DeKalb County" -in.county "IL, Douglas County" "The dwelling unit is in IL, Douglas County" -in.county "IL, DuPage County" "The dwelling unit is in IL, DuPage County" -in.county "IL, Edgar County" "The dwelling unit is in IL, Edgar County" -in.county "IL, Edwards County" "The dwelling unit is in IL, Edwards County" -in.county "IL, Effingham County" "The dwelling unit is in IL, Effingham County" -in.county "IL, Fayette County" "The dwelling unit is in IL, Fayette County" -in.county "IL, Ford County" "The dwelling unit is in IL, Ford County" -in.county "IL, Franklin County" "The dwelling unit is in IL, Franklin County" -in.county "IL, Fulton County" "The dwelling unit is in IL, Fulton County" -in.county "IL, Gallatin County" "The dwelling unit is in IL, Gallatin County" -in.county "IL, Greene County" "The dwelling unit is in IL, Greene County" -in.county "IL, Grundy County" "The dwelling unit is in IL, Grundy County" -in.county "IL, Hamilton County" "The dwelling unit is in IL, Hamilton County" -in.county "IL, Hancock County" "The dwelling unit is in IL, Hancock County" -in.county "IL, Hardin County" "The dwelling unit is in IL, Hardin County" -in.county "IL, Henderson County" "The dwelling unit is in IL, Henderson County" -in.county "IL, Henry County" "The dwelling unit is in IL, Henry County" -in.county "IL, Iroquois County" "The dwelling unit is in IL, Iroquois County" -in.county "IL, Jackson County" "The dwelling unit is in IL, Jackson County" -in.county "IL, Jasper County" "The dwelling unit is in IL, Jasper County" -in.county "IL, Jefferson County" "The dwelling unit is in IL, Jefferson County" -in.county "IL, Jersey County" "The dwelling unit is in IL, Jersey County" -in.county "IL, Jo Daviess County" "The dwelling unit is in IL, Jo Daviess County" -in.county "IL, Johnson County" "The dwelling unit is in IL, Johnson County" -in.county "IL, Kane County" "The dwelling unit is in IL, Kane County" -in.county "IL, Kankakee County" "The dwelling unit is in IL, Kankakee County" -in.county "IL, Kendall County" "The dwelling unit is in IL, Kendall County" -in.county "IL, Knox County" "The dwelling unit is in IL, Knox County" -in.county "IL, LaSalle County" "The dwelling unit is in IL, LaSalle County" -in.county "IL, Lake County" "The dwelling unit is in IL, Lake County" -in.county "IL, Lawrence County" "The dwelling unit is in IL, Lawrence County" -in.county "IL, Lee County" "The dwelling unit is in IL, Lee County" -in.county "IL, Livingston County" "The dwelling unit is in IL, Livingston County" -in.county "IL, Logan County" "The dwelling unit is in IL, Logan County" -in.county "IL, Macon County" "The dwelling unit is in IL, Macon County" -in.county "IL, Macoupin County" "The dwelling unit is in IL, Macoupin County" -in.county "IL, Madison County" "The dwelling unit is in IL, Madison County" -in.county "IL, Marion County" "The dwelling unit is in IL, Marion County" -in.county "IL, Marshall County" "The dwelling unit is in IL, Marshall County" -in.county "IL, Mason County" "The dwelling unit is in IL, Mason County" -in.county "IL, Massac County" "The dwelling unit is in IL, Massac County" -in.county "IL, McDonough County" "The dwelling unit is in IL, McDonough County" -in.county "IL, McHenry County" "The dwelling unit is in IL, McHenry County" -in.county "IL, McLean County" "The dwelling unit is in IL, McLean County" -in.county "IL, Menard County" "The dwelling unit is in IL, Menard County" -in.county "IL, Mercer County" "The dwelling unit is in IL, Mercer County" -in.county "IL, Monroe County" "The dwelling unit is in IL, Monroe County" -in.county "IL, Montgomery County" "The dwelling unit is in IL, Montgomery County" -in.county "IL, Morgan County" "The dwelling unit is in IL, Morgan County" -in.county "IL, Moultrie County" "The dwelling unit is in IL, Moultrie County" -in.county "IL, Ogle County" "The dwelling unit is in IL, Ogle County" -in.county "IL, Peoria County" "The dwelling unit is in IL, Peoria County" -in.county "IL, Perry County" "The dwelling unit is in IL, Perry County" -in.county "IL, Piatt County" "The dwelling unit is in IL, Piatt County" -in.county "IL, Pike County" "The dwelling unit is in IL, Pike County" -in.county "IL, Pope County" "The dwelling unit is in IL, Pope County" -in.county "IL, Pulaski County" "The dwelling unit is in IL, Pulaski County" -in.county "IL, Putnam County" "The dwelling unit is in IL, Putnam County" -in.county "IL, Randolph County" "The dwelling unit is in IL, Randolph County" -in.county "IL, Richland County" "The dwelling unit is in IL, Richland County" -in.county "IL, Rock Island County" "The dwelling unit is in IL, Rock Island County" -in.county "IL, Saline County" "The dwelling unit is in IL, Saline County" -in.county "IL, Sangamon County" "The dwelling unit is in IL, Sangamon County" -in.county "IL, Schuyler County" "The dwelling unit is in IL, Schuyler County" -in.county "IL, Scott County" "The dwelling unit is in IL, Scott County" -in.county "IL, Shelby County" "The dwelling unit is in IL, Shelby County" -in.county "IL, St. Clair County" "The dwelling unit is in IL, St. Clair County" -in.county "IL, Stark County" "The dwelling unit is in IL, Stark County" -in.county "IL, Stephenson County" "The dwelling unit is in IL, Stephenson County" -in.county "IL, Tazewell County" "The dwelling unit is in IL, Tazewell County" -in.county "IL, Union County" "The dwelling unit is in IL, Union County" -in.county "IL, Vermilion County" "The dwelling unit is in IL, Vermilion County" -in.county "IL, Wabash County" "The dwelling unit is in IL, Wabash County" -in.county "IL, Warren County" "The dwelling unit is in IL, Warren County" -in.county "IL, Washington County" "The dwelling unit is in IL, Washington County" -in.county "IL, Wayne County" "The dwelling unit is in IL, Wayne County" -in.county "IL, White County" "The dwelling unit is in IL, White County" -in.county "IL, Whiteside County" "The dwelling unit is in IL, Whiteside County" -in.county "IL, Will County" "The dwelling unit is in IL, Will County" -in.county "IL, Williamson County" "The dwelling unit is in IL, Williamson County" -in.county "IL, Winnebago County" "The dwelling unit is in IL, Winnebago County" -in.county "IL, Woodford County" "The dwelling unit is in IL, Woodford County" -in.county "IN, Adams County" "The dwelling unit is in IN, Adams County" -in.county "IN, Allen County" "The dwelling unit is in IN, Allen County" -in.county "IN, Bartholomew County" "The dwelling unit is in IN, Bartholomew County" -in.county "IN, Benton County" "The dwelling unit is in IN, Benton County" -in.county "IN, Blackford County" "The dwelling unit is in IN, Blackford County" -in.county "IN, Boone County" "The dwelling unit is in IN, Boone County" -in.county "IN, Brown County" "The dwelling unit is in IN, Brown County" -in.county "IN, Carroll County" "The dwelling unit is in IN, Carroll County" -in.county "IN, Cass County" "The dwelling unit is in IN, Cass County" -in.county "IN, Clark County" "The dwelling unit is in IN, Clark County" -in.county "IN, Clay County" "The dwelling unit is in IN, Clay County" -in.county "IN, Clinton County" "The dwelling unit is in IN, Clinton County" -in.county "IN, Crawford County" "The dwelling unit is in IN, Crawford County" -in.county "IN, Daviess County" "The dwelling unit is in IN, Daviess County" -in.county "IN, DeKalb County" "The dwelling unit is in IN, DeKalb County" -in.county "IN, Dearborn County" "The dwelling unit is in IN, Dearborn County" -in.county "IN, Decatur County" "The dwelling unit is in IN, Decatur County" -in.county "IN, Delaware County" "The dwelling unit is in IN, Delaware County" -in.county "IN, Dubois County" "The dwelling unit is in IN, Dubois County" -in.county "IN, Elkhart County" "The dwelling unit is in IN, Elkhart County" -in.county "IN, Fayette County" "The dwelling unit is in IN, Fayette County" -in.county "IN, Floyd County" "The dwelling unit is in IN, Floyd County" -in.county "IN, Fountain County" "The dwelling unit is in IN, Fountain County" -in.county "IN, Franklin County" "The dwelling unit is in IN, Franklin County" -in.county "IN, Fulton County" "The dwelling unit is in IN, Fulton County" -in.county "IN, Gibson County" "The dwelling unit is in IN, Gibson County" -in.county "IN, Grant County" "The dwelling unit is in IN, Grant County" -in.county "IN, Greene County" "The dwelling unit is in IN, Greene County" -in.county "IN, Hamilton County" "The dwelling unit is in IN, Hamilton County" -in.county "IN, Hancock County" "The dwelling unit is in IN, Hancock County" -in.county "IN, Harrison County" "The dwelling unit is in IN, Harrison County" -in.county "IN, Hendricks County" "The dwelling unit is in IN, Hendricks County" -in.county "IN, Henry County" "The dwelling unit is in IN, Henry County" -in.county "IN, Howard County" "The dwelling unit is in IN, Howard County" -in.county "IN, Huntington County" "The dwelling unit is in IN, Huntington County" -in.county "IN, Jackson County" "The dwelling unit is in IN, Jackson County" -in.county "IN, Jasper County" "The dwelling unit is in IN, Jasper County" -in.county "IN, Jay County" "The dwelling unit is in IN, Jay County" -in.county "IN, Jefferson County" "The dwelling unit is in IN, Jefferson County" -in.county "IN, Jennings County" "The dwelling unit is in IN, Jennings County" -in.county "IN, Johnson County" "The dwelling unit is in IN, Johnson County" -in.county "IN, Knox County" "The dwelling unit is in IN, Knox County" -in.county "IN, Kosciusko County" "The dwelling unit is in IN, Kosciusko County" -in.county "IN, LaGrange County" "The dwelling unit is in IN, LaGrange County" -in.county "IN, LaPorte County" "The dwelling unit is in IN, LaPorte County" -in.county "IN, Lake County" "The dwelling unit is in IN, Lake County" -in.county "IN, Lawrence County" "The dwelling unit is in IN, Lawrence County" -in.county "IN, Madison County" "The dwelling unit is in IN, Madison County" -in.county "IN, Marion County" "The dwelling unit is in IN, Marion County" -in.county "IN, Marshall County" "The dwelling unit is in IN, Marshall County" -in.county "IN, Martin County" "The dwelling unit is in IN, Martin County" -in.county "IN, Miami County" "The dwelling unit is in IN, Miami County" -in.county "IN, Monroe County" "The dwelling unit is in IN, Monroe County" -in.county "IN, Montgomery County" "The dwelling unit is in IN, Montgomery County" -in.county "IN, Morgan County" "The dwelling unit is in IN, Morgan County" -in.county "IN, Newton County" "The dwelling unit is in IN, Newton County" -in.county "IN, Noble County" "The dwelling unit is in IN, Noble County" -in.county "IN, Ohio County" "The dwelling unit is in IN, Ohio County" -in.county "IN, Orange County" "The dwelling unit is in IN, Orange County" -in.county "IN, Owen County" "The dwelling unit is in IN, Owen County" -in.county "IN, Parke County" "The dwelling unit is in IN, Parke County" -in.county "IN, Perry County" "The dwelling unit is in IN, Perry County" -in.county "IN, Pike County" "The dwelling unit is in IN, Pike County" -in.county "IN, Porter County" "The dwelling unit is in IN, Porter County" -in.county "IN, Posey County" "The dwelling unit is in IN, Posey County" -in.county "IN, Pulaski County" "The dwelling unit is in IN, Pulaski County" -in.county "IN, Putnam County" "The dwelling unit is in IN, Putnam County" -in.county "IN, Randolph County" "The dwelling unit is in IN, Randolph County" -in.county "IN, Ripley County" "The dwelling unit is in IN, Ripley County" -in.county "IN, Rush County" "The dwelling unit is in IN, Rush County" -in.county "IN, Scott County" "The dwelling unit is in IN, Scott County" -in.county "IN, Shelby County" "The dwelling unit is in IN, Shelby County" -in.county "IN, Spencer County" "The dwelling unit is in IN, Spencer County" -in.county "IN, St. Joseph County" "The dwelling unit is in IN, St. Joseph County" -in.county "IN, Starke County" "The dwelling unit is in IN, Starke County" -in.county "IN, Steuben County" "The dwelling unit is in IN, Steuben County" -in.county "IN, Sullivan County" "The dwelling unit is in IN, Sullivan County" -in.county "IN, Switzerland County" "The dwelling unit is in IN, Switzerland County" -in.county "IN, Tippecanoe County" "The dwelling unit is in IN, Tippecanoe County" -in.county "IN, Tipton County" "The dwelling unit is in IN, Tipton County" -in.county "IN, Union County" "The dwelling unit is in IN, Union County" -in.county "IN, Vanderburgh County" "The dwelling unit is in IN, Vanderburgh County" -in.county "IN, Vermillion County" "The dwelling unit is in IN, Vermillion County" -in.county "IN, Vigo County" "The dwelling unit is in IN, Vigo County" -in.county "IN, Wabash County" "The dwelling unit is in IN, Wabash County" -in.county "IN, Warren County" "The dwelling unit is in IN, Warren County" -in.county "IN, Warrick County" "The dwelling unit is in IN, Warrick County" -in.county "IN, Washington County" "The dwelling unit is in IN, Washington County" -in.county "IN, Wayne County" "The dwelling unit is in IN, Wayne County" -in.county "IN, Wells County" "The dwelling unit is in IN, Wells County" -in.county "IN, White County" "The dwelling unit is in IN, White County" -in.county "IN, Whitley County" "The dwelling unit is in IN, Whitley County" -in.county "KS, Allen County" "The dwelling unit is in KS, Allen County" -in.county "KS, Anderson County" "The dwelling unit is in KS, Anderson County" -in.county "KS, Atchison County" "The dwelling unit is in KS, Atchison County" -in.county "KS, Barber County" "The dwelling unit is in KS, Barber County" -in.county "KS, Barton County" "The dwelling unit is in KS, Barton County" -in.county "KS, Bourbon County" "The dwelling unit is in KS, Bourbon County" -in.county "KS, Brown County" "The dwelling unit is in KS, Brown County" -in.county "KS, Butler County" "The dwelling unit is in KS, Butler County" -in.county "KS, Chase County" "The dwelling unit is in KS, Chase County" -in.county "KS, Chautauqua County" "The dwelling unit is in KS, Chautauqua County" -in.county "KS, Cherokee County" "The dwelling unit is in KS, Cherokee County" -in.county "KS, Cheyenne County" "The dwelling unit is in KS, Cheyenne County" -in.county "KS, Clark County" "The dwelling unit is in KS, Clark County" -in.county "KS, Clay County" "The dwelling unit is in KS, Clay County" -in.county "KS, Cloud County" "The dwelling unit is in KS, Cloud County" -in.county "KS, Coffey County" "The dwelling unit is in KS, Coffey County" -in.county "KS, Comanche County" "The dwelling unit is in KS, Comanche County" -in.county "KS, Cowley County" "The dwelling unit is in KS, Cowley County" -in.county "KS, Crawford County" "The dwelling unit is in KS, Crawford County" -in.county "KS, Decatur County" "The dwelling unit is in KS, Decatur County" -in.county "KS, Dickinson County" "The dwelling unit is in KS, Dickinson County" -in.county "KS, Doniphan County" "The dwelling unit is in KS, Doniphan County" -in.county "KS, Douglas County" "The dwelling unit is in KS, Douglas County" -in.county "KS, Edwards County" "The dwelling unit is in KS, Edwards County" -in.county "KS, Elk County" "The dwelling unit is in KS, Elk County" -in.county "KS, Ellis County" "The dwelling unit is in KS, Ellis County" -in.county "KS, Ellsworth County" "The dwelling unit is in KS, Ellsworth County" -in.county "KS, Finney County" "The dwelling unit is in KS, Finney County" -in.county "KS, Ford County" "The dwelling unit is in KS, Ford County" -in.county "KS, Franklin County" "The dwelling unit is in KS, Franklin County" -in.county "KS, Geary County" "The dwelling unit is in KS, Geary County" -in.county "KS, Gove County" "The dwelling unit is in KS, Gove County" -in.county "KS, Graham County" "The dwelling unit is in KS, Graham County" -in.county "KS, Grant County" "The dwelling unit is in KS, Grant County" -in.county "KS, Gray County" "The dwelling unit is in KS, Gray County" -in.county "KS, Greeley County" "The dwelling unit is in KS, Greeley County" -in.county "KS, Greenwood County" "The dwelling unit is in KS, Greenwood County" -in.county "KS, Hamilton County" "The dwelling unit is in KS, Hamilton County" -in.county "KS, Harper County" "The dwelling unit is in KS, Harper County" -in.county "KS, Harvey County" "The dwelling unit is in KS, Harvey County" -in.county "KS, Haskell County" "The dwelling unit is in KS, Haskell County" -in.county "KS, Hodgeman County" "The dwelling unit is in KS, Hodgeman County" -in.county "KS, Jackson County" "The dwelling unit is in KS, Jackson County" -in.county "KS, Jefferson County" "The dwelling unit is in KS, Jefferson County" -in.county "KS, Jewell County" "The dwelling unit is in KS, Jewell County" -in.county "KS, Johnson County" "The dwelling unit is in KS, Johnson County" -in.county "KS, Kearny County" "The dwelling unit is in KS, Kearny County" -in.county "KS, Kingman County" "The dwelling unit is in KS, Kingman County" -in.county "KS, Kiowa County" "The dwelling unit is in KS, Kiowa County" -in.county "KS, Labette County" "The dwelling unit is in KS, Labette County" -in.county "KS, Lane County" "The dwelling unit is in KS, Lane County" -in.county "KS, Leavenworth County" "The dwelling unit is in KS, Leavenworth County" -in.county "KS, Lincoln County" "The dwelling unit is in KS, Lincoln County" -in.county "KS, Linn County" "The dwelling unit is in KS, Linn County" -in.county "KS, Logan County" "The dwelling unit is in KS, Logan County" -in.county "KS, Lyon County" "The dwelling unit is in KS, Lyon County" -in.county "KS, Marion County" "The dwelling unit is in KS, Marion County" -in.county "KS, Marshall County" "The dwelling unit is in KS, Marshall County" -in.county "KS, McPherson County" "The dwelling unit is in KS, McPherson County" -in.county "KS, Meade County" "The dwelling unit is in KS, Meade County" -in.county "KS, Miami County" "The dwelling unit is in KS, Miami County" -in.county "KS, Mitchell County" "The dwelling unit is in KS, Mitchell County" -in.county "KS, Montgomery County" "The dwelling unit is in KS, Montgomery County" -in.county "KS, Morris County" "The dwelling unit is in KS, Morris County" -in.county "KS, Morton County" "The dwelling unit is in KS, Morton County" -in.county "KS, Nemaha County" "The dwelling unit is in KS, Nemaha County" -in.county "KS, Neosho County" "The dwelling unit is in KS, Neosho County" -in.county "KS, Ness County" "The dwelling unit is in KS, Ness County" -in.county "KS, Norton County" "The dwelling unit is in KS, Norton County" -in.county "KS, Osage County" "The dwelling unit is in KS, Osage County" -in.county "KS, Osborne County" "The dwelling unit is in KS, Osborne County" -in.county "KS, Ottawa County" "The dwelling unit is in KS, Ottawa County" -in.county "KS, Pawnee County" "The dwelling unit is in KS, Pawnee County" -in.county "KS, Phillips County" "The dwelling unit is in KS, Phillips County" -in.county "KS, Pottawatomie County" "The dwelling unit is in KS, Pottawatomie County" -in.county "KS, Pratt County" "The dwelling unit is in KS, Pratt County" -in.county "KS, Rawlins County" "The dwelling unit is in KS, Rawlins County" -in.county "KS, Reno County" "The dwelling unit is in KS, Reno County" -in.county "KS, Republic County" "The dwelling unit is in KS, Republic County" -in.county "KS, Rice County" "The dwelling unit is in KS, Rice County" -in.county "KS, Riley County" "The dwelling unit is in KS, Riley County" -in.county "KS, Rooks County" "The dwelling unit is in KS, Rooks County" -in.county "KS, Rush County" "The dwelling unit is in KS, Rush County" -in.county "KS, Russell County" "The dwelling unit is in KS, Russell County" -in.county "KS, Saline County" "The dwelling unit is in KS, Saline County" -in.county "KS, Scott County" "The dwelling unit is in KS, Scott County" -in.county "KS, Sedgwick County" "The dwelling unit is in KS, Sedgwick County" -in.county "KS, Seward County" "The dwelling unit is in KS, Seward County" -in.county "KS, Shawnee County" "The dwelling unit is in KS, Shawnee County" -in.county "KS, Sheridan County" "The dwelling unit is in KS, Sheridan County" -in.county "KS, Sherman County" "The dwelling unit is in KS, Sherman County" -in.county "KS, Smith County" "The dwelling unit is in KS, Smith County" -in.county "KS, Stafford County" "The dwelling unit is in KS, Stafford County" -in.county "KS, Stanton County" "The dwelling unit is in KS, Stanton County" -in.county "KS, Stevens County" "The dwelling unit is in KS, Stevens County" -in.county "KS, Sumner County" "The dwelling unit is in KS, Sumner County" -in.county "KS, Thomas County" "The dwelling unit is in KS, Thomas County" -in.county "KS, Trego County" "The dwelling unit is in KS, Trego County" -in.county "KS, Wabaunsee County" "The dwelling unit is in KS, Wabaunsee County" -in.county "KS, Wallace County" "The dwelling unit is in KS, Wallace County" -in.county "KS, Washington County" "The dwelling unit is in KS, Washington County" -in.county "KS, Wichita County" "The dwelling unit is in KS, Wichita County" -in.county "KS, Wilson County" "The dwelling unit is in KS, Wilson County" -in.county "KS, Woodson County" "The dwelling unit is in KS, Woodson County" -in.county "KS, Wyandotte County" "The dwelling unit is in KS, Wyandotte County" -in.county "KY, Adair County" "The dwelling unit is in KY, Adair County" -in.county "KY, Allen County" "The dwelling unit is in KY, Allen County" -in.county "KY, Anderson County" "The dwelling unit is in KY, Anderson County" -in.county "KY, Ballard County" "The dwelling unit is in KY, Ballard County" -in.county "KY, Barren County" "The dwelling unit is in KY, Barren County" -in.county "KY, Bath County" "The dwelling unit is in KY, Bath County" -in.county "KY, Bell County" "The dwelling unit is in KY, Bell County" -in.county "KY, Boone County" "The dwelling unit is in KY, Boone County" -in.county "KY, Bourbon County" "The dwelling unit is in KY, Bourbon County" -in.county "KY, Boyd County" "The dwelling unit is in KY, Boyd County" -in.county "KY, Boyle County" "The dwelling unit is in KY, Boyle County" -in.county "KY, Bracken County" "The dwelling unit is in KY, Bracken County" -in.county "KY, Breathitt County" "The dwelling unit is in KY, Breathitt County" -in.county "KY, Breckinridge County" "The dwelling unit is in KY, Breckinridge County" -in.county "KY, Bullitt County" "The dwelling unit is in KY, Bullitt County" -in.county "KY, Butler County" "The dwelling unit is in KY, Butler County" -in.county "KY, Caldwell County" "The dwelling unit is in KY, Caldwell County" -in.county "KY, Calloway County" "The dwelling unit is in KY, Calloway County" -in.county "KY, Campbell County" "The dwelling unit is in KY, Campbell County" -in.county "KY, Carlisle County" "The dwelling unit is in KY, Carlisle County" -in.county "KY, Carroll County" "The dwelling unit is in KY, Carroll County" -in.county "KY, Carter County" "The dwelling unit is in KY, Carter County" -in.county "KY, Casey County" "The dwelling unit is in KY, Casey County" -in.county "KY, Christian County" "The dwelling unit is in KY, Christian County" -in.county "KY, Clark County" "The dwelling unit is in KY, Clark County" -in.county "KY, Clay County" "The dwelling unit is in KY, Clay County" -in.county "KY, Clinton County" "The dwelling unit is in KY, Clinton County" -in.county "KY, Crittenden County" "The dwelling unit is in KY, Crittenden County" -in.county "KY, Cumberland County" "The dwelling unit is in KY, Cumberland County" -in.county "KY, Daviess County" "The dwelling unit is in KY, Daviess County" -in.county "KY, Edmonson County" "The dwelling unit is in KY, Edmonson County" -in.county "KY, Elliott County" "The dwelling unit is in KY, Elliott County" -in.county "KY, Estill County" "The dwelling unit is in KY, Estill County" -in.county "KY, Fayette County" "The dwelling unit is in KY, Fayette County" -in.county "KY, Fleming County" "The dwelling unit is in KY, Fleming County" -in.county "KY, Floyd County" "The dwelling unit is in KY, Floyd County" -in.county "KY, Franklin County" "The dwelling unit is in KY, Franklin County" -in.county "KY, Fulton County" "The dwelling unit is in KY, Fulton County" -in.county "KY, Gallatin County" "The dwelling unit is in KY, Gallatin County" -in.county "KY, Garrard County" "The dwelling unit is in KY, Garrard County" -in.county "KY, Grant County" "The dwelling unit is in KY, Grant County" -in.county "KY, Graves County" "The dwelling unit is in KY, Graves County" -in.county "KY, Grayson County" "The dwelling unit is in KY, Grayson County" -in.county "KY, Green County" "The dwelling unit is in KY, Green County" -in.county "KY, Greenup County" "The dwelling unit is in KY, Greenup County" -in.county "KY, Hancock County" "The dwelling unit is in KY, Hancock County" -in.county "KY, Hardin County" "The dwelling unit is in KY, Hardin County" -in.county "KY, Harlan County" "The dwelling unit is in KY, Harlan County" -in.county "KY, Harrison County" "The dwelling unit is in KY, Harrison County" -in.county "KY, Hart County" "The dwelling unit is in KY, Hart County" -in.county "KY, Henderson County" "The dwelling unit is in KY, Henderson County" -in.county "KY, Henry County" "The dwelling unit is in KY, Henry County" -in.county "KY, Hickman County" "The dwelling unit is in KY, Hickman County" -in.county "KY, Hopkins County" "The dwelling unit is in KY, Hopkins County" -in.county "KY, Jackson County" "The dwelling unit is in KY, Jackson County" -in.county "KY, Jefferson County" "The dwelling unit is in KY, Jefferson County" -in.county "KY, Jessamine County" "The dwelling unit is in KY, Jessamine County" -in.county "KY, Johnson County" "The dwelling unit is in KY, Johnson County" -in.county "KY, Kenton County" "The dwelling unit is in KY, Kenton County" -in.county "KY, Knott County" "The dwelling unit is in KY, Knott County" -in.county "KY, Knox County" "The dwelling unit is in KY, Knox County" -in.county "KY, Larue County" "The dwelling unit is in KY, Larue County" -in.county "KY, Laurel County" "The dwelling unit is in KY, Laurel County" -in.county "KY, Lawrence County" "The dwelling unit is in KY, Lawrence County" -in.county "KY, Lee County" "The dwelling unit is in KY, Lee County" -in.county "KY, Leslie County" "The dwelling unit is in KY, Leslie County" -in.county "KY, Letcher County" "The dwelling unit is in KY, Letcher County" -in.county "KY, Lewis County" "The dwelling unit is in KY, Lewis County" -in.county "KY, Lincoln County" "The dwelling unit is in KY, Lincoln County" -in.county "KY, Livingston County" "The dwelling unit is in KY, Livingston County" -in.county "KY, Logan County" "The dwelling unit is in KY, Logan County" -in.county "KY, Lyon County" "The dwelling unit is in KY, Lyon County" -in.county "KY, Madison County" "The dwelling unit is in KY, Madison County" -in.county "KY, Magoffin County" "The dwelling unit is in KY, Magoffin County" -in.county "KY, Marion County" "The dwelling unit is in KY, Marion County" -in.county "KY, Marshall County" "The dwelling unit is in KY, Marshall County" -in.county "KY, Martin County" "The dwelling unit is in KY, Martin County" -in.county "KY, Mason County" "The dwelling unit is in KY, Mason County" -in.county "KY, McCracken County" "The dwelling unit is in KY, McCracken County" -in.county "KY, McCreary County" "The dwelling unit is in KY, McCreary County" -in.county "KY, McLean County" "The dwelling unit is in KY, McLean County" -in.county "KY, Meade County" "The dwelling unit is in KY, Meade County" -in.county "KY, Menifee County" "The dwelling unit is in KY, Menifee County" -in.county "KY, Mercer County" "The dwelling unit is in KY, Mercer County" -in.county "KY, Metcalfe County" "The dwelling unit is in KY, Metcalfe County" -in.county "KY, Monroe County" "The dwelling unit is in KY, Monroe County" -in.county "KY, Montgomery County" "The dwelling unit is in KY, Montgomery County" -in.county "KY, Morgan County" "The dwelling unit is in KY, Morgan County" -in.county "KY, Muhlenberg County" "The dwelling unit is in KY, Muhlenberg County" -in.county "KY, Nelson County" "The dwelling unit is in KY, Nelson County" -in.county "KY, Nicholas County" "The dwelling unit is in KY, Nicholas County" -in.county "KY, Ohio County" "The dwelling unit is in KY, Ohio County" -in.county "KY, Oldham County" "The dwelling unit is in KY, Oldham County" -in.county "KY, Owen County" "The dwelling unit is in KY, Owen County" -in.county "KY, Owsley County" "The dwelling unit is in KY, Owsley County" -in.county "KY, Pendleton County" "The dwelling unit is in KY, Pendleton County" -in.county "KY, Perry County" "The dwelling unit is in KY, Perry County" -in.county "KY, Pike County" "The dwelling unit is in KY, Pike County" -in.county "KY, Powell County" "The dwelling unit is in KY, Powell County" -in.county "KY, Pulaski County" "The dwelling unit is in KY, Pulaski County" -in.county "KY, Robertson County" "The dwelling unit is in KY, Robertson County" -in.county "KY, Rockcastle County" "The dwelling unit is in KY, Rockcastle County" -in.county "KY, Rowan County" "The dwelling unit is in KY, Rowan County" -in.county "KY, Russell County" "The dwelling unit is in KY, Russell County" -in.county "KY, Scott County" "The dwelling unit is in KY, Scott County" -in.county "KY, Shelby County" "The dwelling unit is in KY, Shelby County" -in.county "KY, Simpson County" "The dwelling unit is in KY, Simpson County" -in.county "KY, Spencer County" "The dwelling unit is in KY, Spencer County" -in.county "KY, Taylor County" "The dwelling unit is in KY, Taylor County" -in.county "KY, Todd County" "The dwelling unit is in KY, Todd County" -in.county "KY, Trigg County" "The dwelling unit is in KY, Trigg County" -in.county "KY, Trimble County" "The dwelling unit is in KY, Trimble County" -in.county "KY, Union County" "The dwelling unit is in KY, Union County" -in.county "KY, Warren County" "The dwelling unit is in KY, Warren County" -in.county "KY, Washington County" "The dwelling unit is in KY, Washington County" -in.county "KY, Wayne County" "The dwelling unit is in KY, Wayne County" -in.county "KY, Webster County" "The dwelling unit is in KY, Webster County" -in.county "KY, Whitley County" "The dwelling unit is in KY, Whitley County" -in.county "KY, Wolfe County" "The dwelling unit is in KY, Wolfe County" -in.county "KY, Woodford County" "The dwelling unit is in KY, Woodford County" -in.county "LA, Acadia Parish" "The dwelling unit is in LA, Acadia Parish" -in.county "LA, Allen Parish" "The dwelling unit is in LA, Allen Parish" -in.county "LA, Ascension Parish" "The dwelling unit is in LA, Ascension Parish" -in.county "LA, Assumption Parish" "The dwelling unit is in LA, Assumption Parish" -in.county "LA, Avoyelles Parish" "The dwelling unit is in LA, Avoyelles Parish" -in.county "LA, Beauregard Parish" "The dwelling unit is in LA, Beauregard Parish" -in.county "LA, Bienville Parish" "The dwelling unit is in LA, Bienville Parish" -in.county "LA, Bossier Parish" "The dwelling unit is in LA, Bossier Parish" -in.county "LA, Caddo Parish" "The dwelling unit is in LA, Caddo Parish" -in.county "LA, Calcasieu Parish" "The dwelling unit is in LA, Calcasieu Parish" -in.county "LA, Caldwell Parish" "The dwelling unit is in LA, Caldwell Parish" -in.county "LA, Cameron Parish" "The dwelling unit is in LA, Cameron Parish" -in.county "LA, Catahoula Parish" "The dwelling unit is in LA, Catahoula Parish" -in.county "LA, Claiborne Parish" "The dwelling unit is in LA, Claiborne Parish" -in.county "LA, Concordia Parish" "The dwelling unit is in LA, Concordia Parish" -in.county "LA, De Soto Parish" "The dwelling unit is in LA, De Soto Parish" -in.county "LA, East Baton Rouge Parish" "The dwelling unit is in LA, East Baton Rouge Parish" -in.county "LA, East Carroll Parish" "The dwelling unit is in LA, East Carroll Parish" -in.county "LA, East Feliciana Parish" "The dwelling unit is in LA, East Feliciana Parish" -in.county "LA, Evangeline Parish" "The dwelling unit is in LA, Evangeline Parish" -in.county "LA, Franklin Parish" "The dwelling unit is in LA, Franklin Parish" -in.county "LA, Grant Parish" "The dwelling unit is in LA, Grant Parish" -in.county "LA, Iberia Parish" "The dwelling unit is in LA, Iberia Parish" -in.county "LA, Iberville Parish" "The dwelling unit is in LA, Iberville Parish" -in.county "LA, Jackson Parish" "The dwelling unit is in LA, Jackson Parish" -in.county "LA, Jefferson Davis Parish" "The dwelling unit is in LA, Jefferson Davis Parish" -in.county "LA, Jefferson Parish" "The dwelling unit is in LA, Jefferson Parish" -in.county "LA, La Salle Parish" "The dwelling unit is in LA, La Salle Parish" -in.county "LA, Lafayette Parish" "The dwelling unit is in LA, Lafayette Parish" -in.county "LA, Lafourche Parish" "The dwelling unit is in LA, Lafourche Parish" -in.county "LA, Lincoln Parish" "The dwelling unit is in LA, Lincoln Parish" -in.county "LA, Livingston Parish" "The dwelling unit is in LA, Livingston Parish" -in.county "LA, Madison Parish" "The dwelling unit is in LA, Madison Parish" -in.county "LA, Morehouse Parish" "The dwelling unit is in LA, Morehouse Parish" -in.county "LA, Natchitoches Parish" "The dwelling unit is in LA, Natchitoches Parish" -in.county "LA, Orleans Parish" "The dwelling unit is in LA, Orleans Parish" -in.county "LA, Ouachita Parish" "The dwelling unit is in LA, Ouachita Parish" -in.county "LA, Plaquemines Parish" "The dwelling unit is in LA, Plaquemines Parish" -in.county "LA, Pointe Coupee Parish" "The dwelling unit is in LA, Pointe Coupee Parish" -in.county "LA, Rapides Parish" "The dwelling unit is in LA, Rapides Parish" -in.county "LA, Red River Parish" "The dwelling unit is in LA, Red River Parish" -in.county "LA, Richland Parish" "The dwelling unit is in LA, Richland Parish" -in.county "LA, Sabine Parish" "The dwelling unit is in LA, Sabine Parish" -in.county "LA, St. Bernard Parish" "The dwelling unit is in LA, St. Bernard Parish" -in.county "LA, St. Charles Parish" "The dwelling unit is in LA, St. Charles Parish" -in.county "LA, St. Helena Parish" "The dwelling unit is in LA, St. Helena Parish" -in.county "LA, St. James Parish" "The dwelling unit is in LA, St. James Parish" -in.county "LA, St. John the Baptist Parish" "The dwelling unit is in LA, St. John the Baptist Parish" -in.county "LA, St. Landry Parish" "The dwelling unit is in LA, St. Landry Parish" -in.county "LA, St. Martin Parish" "The dwelling unit is in LA, St. Martin Parish" -in.county "LA, St. Mary Parish" "The dwelling unit is in LA, St. Mary Parish" -in.county "LA, St. Tammany Parish" "The dwelling unit is in LA, St. Tammany Parish" -in.county "LA, Tangipahoa Parish" "The dwelling unit is in LA, Tangipahoa Parish" -in.county "LA, Tensas Parish" "The dwelling unit is in LA, Tensas Parish" -in.county "LA, Terrebonne Parish" "The dwelling unit is in LA, Terrebonne Parish" -in.county "LA, Union Parish" "The dwelling unit is in LA, Union Parish" -in.county "LA, Vermilion Parish" "The dwelling unit is in LA, Vermilion Parish" -in.county "LA, Vernon Parish" "The dwelling unit is in LA, Vernon Parish" -in.county "LA, Washington Parish" "The dwelling unit is in LA, Washington Parish" -in.county "LA, Webster Parish" "The dwelling unit is in LA, Webster Parish" -in.county "LA, West Baton Rouge Parish" "The dwelling unit is in LA, West Baton Rouge Parish" -in.county "LA, West Carroll Parish" "The dwelling unit is in LA, West Carroll Parish" -in.county "LA, West Feliciana Parish" "The dwelling unit is in LA, West Feliciana Parish" -in.county "LA, Winn Parish" "The dwelling unit is in LA, Winn Parish" -in.county "MA, Barnstable County" "The dwelling unit is in MA, Barnstable County" -in.county "MA, Berkshire County" "The dwelling unit is in MA, Berkshire County" -in.county "MA, Bristol County" "The dwelling unit is in MA, Bristol County" -in.county "MA, Dukes County" "The dwelling unit is in MA, Dukes County" -in.county "MA, Essex County" "The dwelling unit is in MA, Essex County" -in.county "MA, Franklin County" "The dwelling unit is in MA, Franklin County" -in.county "MA, Hampden County" "The dwelling unit is in MA, Hampden County" -in.county "MA, Hampshire County" "The dwelling unit is in MA, Hampshire County" -in.county "MA, Middlesex County" "The dwelling unit is in MA, Middlesex County" -in.county "MA, Nantucket County" "The dwelling unit is in MA, Nantucket County" -in.county "MA, Norfolk County" "The dwelling unit is in MA, Norfolk County" -in.county "MA, Plymouth County" "The dwelling unit is in MA, Plymouth County" -in.county "MA, Suffolk County" "The dwelling unit is in MA, Suffolk County" -in.county "MA, Worcester County" "The dwelling unit is in MA, Worcester County" -in.county "MD, Allegany County" "The dwelling unit is in MD, Allegany County" -in.county "MD, Anne Arundel County" "The dwelling unit is in MD, Anne Arundel County" -in.county "MD, Baltimore County" "The dwelling unit is in MD, Baltimore County" -in.county "MD, Baltimore city" "The dwelling unit is in MD, Baltimore city" -in.county "MD, Calvert County" "The dwelling unit is in MD, Calvert County" -in.county "MD, Caroline County" "The dwelling unit is in MD, Caroline County" -in.county "MD, Carroll County" "The dwelling unit is in MD, Carroll County" -in.county "MD, Cecil County" "The dwelling unit is in MD, Cecil County" -in.county "MD, Charles County" "The dwelling unit is in MD, Charles County" -in.county "MD, Dorchester County" "The dwelling unit is in MD, Dorchester County" -in.county "MD, Frederick County" "The dwelling unit is in MD, Frederick County" -in.county "MD, Garrett County" "The dwelling unit is in MD, Garrett County" -in.county "MD, Harford County" "The dwelling unit is in MD, Harford County" -in.county "MD, Howard County" "The dwelling unit is in MD, Howard County" -in.county "MD, Kent County" "The dwelling unit is in MD, Kent County" -in.county "MD, Montgomery County" "The dwelling unit is in MD, Montgomery County" -in.county "MD, Prince George's County" "The dwelling unit is in MD, Prince George's County" -in.county "MD, Queen Anne's County" "The dwelling unit is in MD, Queen Anne's County" -in.county "MD, Somerset County" "The dwelling unit is in MD, Somerset County" -in.county "MD, St. Mary's County" "The dwelling unit is in MD, St. Mary's County" -in.county "MD, Talbot County" "The dwelling unit is in MD, Talbot County" -in.county "MD, Washington County" "The dwelling unit is in MD, Washington County" -in.county "MD, Wicomico County" "The dwelling unit is in MD, Wicomico County" -in.county "MD, Worcester County" "The dwelling unit is in MD, Worcester County" -in.county "ME, Androscoggin County" "The dwelling unit is in ME, Androscoggin County" -in.county "ME, Aroostook County" "The dwelling unit is in ME, Aroostook County" -in.county "ME, Cumberland County" "The dwelling unit is in ME, Cumberland County" -in.county "ME, Franklin County" "The dwelling unit is in ME, Franklin County" -in.county "ME, Hancock County" "The dwelling unit is in ME, Hancock County" -in.county "ME, Kennebec County" "The dwelling unit is in ME, Kennebec County" -in.county "ME, Knox County" "The dwelling unit is in ME, Knox County" -in.county "ME, Lincoln County" "The dwelling unit is in ME, Lincoln County" -in.county "ME, Oxford County" "The dwelling unit is in ME, Oxford County" -in.county "ME, Penobscot County" "The dwelling unit is in ME, Penobscot County" -in.county "ME, Piscataquis County" "The dwelling unit is in ME, Piscataquis County" -in.county "ME, Sagadahoc County" "The dwelling unit is in ME, Sagadahoc County" -in.county "ME, Somerset County" "The dwelling unit is in ME, Somerset County" -in.county "ME, Waldo County" "The dwelling unit is in ME, Waldo County" -in.county "ME, Washington County" "The dwelling unit is in ME, Washington County" -in.county "ME, York County" "The dwelling unit is in ME, York County" -in.county "MI, Alcona County" "The dwelling unit is in MI, Alcona County" -in.county "MI, Alger County" "The dwelling unit is in MI, Alger County" -in.county "MI, Allegan County" "The dwelling unit is in MI, Allegan County" -in.county "MI, Alpena County" "The dwelling unit is in MI, Alpena County" -in.county "MI, Antrim County" "The dwelling unit is in MI, Antrim County" -in.county "MI, Arenac County" "The dwelling unit is in MI, Arenac County" -in.county "MI, Baraga County" "The dwelling unit is in MI, Baraga County" -in.county "MI, Barry County" "The dwelling unit is in MI, Barry County" -in.county "MI, Bay County" "The dwelling unit is in MI, Bay County" -in.county "MI, Benzie County" "The dwelling unit is in MI, Benzie County" -in.county "MI, Berrien County" "The dwelling unit is in MI, Berrien County" -in.county "MI, Branch County" "The dwelling unit is in MI, Branch County" -in.county "MI, Calhoun County" "The dwelling unit is in MI, Calhoun County" -in.county "MI, Cass County" "The dwelling unit is in MI, Cass County" -in.county "MI, Charlevoix County" "The dwelling unit is in MI, Charlevoix County" -in.county "MI, Cheboygan County" "The dwelling unit is in MI, Cheboygan County" -in.county "MI, Chippewa County" "The dwelling unit is in MI, Chippewa County" -in.county "MI, Clare County" "The dwelling unit is in MI, Clare County" -in.county "MI, Clinton County" "The dwelling unit is in MI, Clinton County" -in.county "MI, Crawford County" "The dwelling unit is in MI, Crawford County" -in.county "MI, Delta County" "The dwelling unit is in MI, Delta County" -in.county "MI, Dickinson County" "The dwelling unit is in MI, Dickinson County" -in.county "MI, Eaton County" "The dwelling unit is in MI, Eaton County" -in.county "MI, Emmet County" "The dwelling unit is in MI, Emmet County" -in.county "MI, Genesee County" "The dwelling unit is in MI, Genesee County" -in.county "MI, Gladwin County" "The dwelling unit is in MI, Gladwin County" -in.county "MI, Gogebic County" "The dwelling unit is in MI, Gogebic County" -in.county "MI, Grand Traverse County" "The dwelling unit is in MI, Grand Traverse County" -in.county "MI, Gratiot County" "The dwelling unit is in MI, Gratiot County" -in.county "MI, Hillsdale County" "The dwelling unit is in MI, Hillsdale County" -in.county "MI, Houghton County" "The dwelling unit is in MI, Houghton County" -in.county "MI, Huron County" "The dwelling unit is in MI, Huron County" -in.county "MI, Ingham County" "The dwelling unit is in MI, Ingham County" -in.county "MI, Ionia County" "The dwelling unit is in MI, Ionia County" -in.county "MI, Iosco County" "The dwelling unit is in MI, Iosco County" -in.county "MI, Iron County" "The dwelling unit is in MI, Iron County" -in.county "MI, Isabella County" "The dwelling unit is in MI, Isabella County" -in.county "MI, Jackson County" "The dwelling unit is in MI, Jackson County" -in.county "MI, Kalamazoo County" "The dwelling unit is in MI, Kalamazoo County" -in.county "MI, Kalkaska County" "The dwelling unit is in MI, Kalkaska County" -in.county "MI, Kent County" "The dwelling unit is in MI, Kent County" -in.county "MI, Keweenaw County" "The dwelling unit is in MI, Keweenaw County" -in.county "MI, Lake County" "The dwelling unit is in MI, Lake County" -in.county "MI, Lapeer County" "The dwelling unit is in MI, Lapeer County" -in.county "MI, Leelanau County" "The dwelling unit is in MI, Leelanau County" -in.county "MI, Lenawee County" "The dwelling unit is in MI, Lenawee County" -in.county "MI, Livingston County" "The dwelling unit is in MI, Livingston County" -in.county "MI, Luce County" "The dwelling unit is in MI, Luce County" -in.county "MI, Mackinac County" "The dwelling unit is in MI, Mackinac County" -in.county "MI, Macomb County" "The dwelling unit is in MI, Macomb County" -in.county "MI, Manistee County" "The dwelling unit is in MI, Manistee County" -in.county "MI, Marquette County" "The dwelling unit is in MI, Marquette County" -in.county "MI, Mason County" "The dwelling unit is in MI, Mason County" -in.county "MI, Mecosta County" "The dwelling unit is in MI, Mecosta County" -in.county "MI, Menominee County" "The dwelling unit is in MI, Menominee County" -in.county "MI, Midland County" "The dwelling unit is in MI, Midland County" -in.county "MI, Missaukee County" "The dwelling unit is in MI, Missaukee County" -in.county "MI, Monroe County" "The dwelling unit is in MI, Monroe County" -in.county "MI, Montcalm County" "The dwelling unit is in MI, Montcalm County" -in.county "MI, Montmorency County" "The dwelling unit is in MI, Montmorency County" -in.county "MI, Muskegon County" "The dwelling unit is in MI, Muskegon County" -in.county "MI, Newaygo County" "The dwelling unit is in MI, Newaygo County" -in.county "MI, Oakland County" "The dwelling unit is in MI, Oakland County" -in.county "MI, Oceana County" "The dwelling unit is in MI, Oceana County" -in.county "MI, Ogemaw County" "The dwelling unit is in MI, Ogemaw County" -in.county "MI, Ontonagon County" "The dwelling unit is in MI, Ontonagon County" -in.county "MI, Osceola County" "The dwelling unit is in MI, Osceola County" -in.county "MI, Oscoda County" "The dwelling unit is in MI, Oscoda County" -in.county "MI, Otsego County" "The dwelling unit is in MI, Otsego County" -in.county "MI, Ottawa County" "The dwelling unit is in MI, Ottawa County" -in.county "MI, Presque Isle County" "The dwelling unit is in MI, Presque Isle County" -in.county "MI, Roscommon County" "The dwelling unit is in MI, Roscommon County" -in.county "MI, Saginaw County" "The dwelling unit is in MI, Saginaw County" -in.county "MI, Sanilac County" "The dwelling unit is in MI, Sanilac County" -in.county "MI, Schoolcraft County" "The dwelling unit is in MI, Schoolcraft County" -in.county "MI, Shiawassee County" "The dwelling unit is in MI, Shiawassee County" -in.county "MI, St. Clair County" "The dwelling unit is in MI, St. Clair County" -in.county "MI, St. Joseph County" "The dwelling unit is in MI, St. Joseph County" -in.county "MI, Tuscola County" "The dwelling unit is in MI, Tuscola County" -in.county "MI, Van Buren County" "The dwelling unit is in MI, Van Buren County" -in.county "MI, Washtenaw County" "The dwelling unit is in MI, Washtenaw County" -in.county "MI, Wayne County" "The dwelling unit is in MI, Wayne County" -in.county "MI, Wexford County" "The dwelling unit is in MI, Wexford County" -in.county "MN, Aitkin County" "The dwelling unit is in MN, Aitkin County" -in.county "MN, Anoka County" "The dwelling unit is in MN, Anoka County" -in.county "MN, Becker County" "The dwelling unit is in MN, Becker County" -in.county "MN, Beltrami County" "The dwelling unit is in MN, Beltrami County" -in.county "MN, Benton County" "The dwelling unit is in MN, Benton County" -in.county "MN, Big Stone County" "The dwelling unit is in MN, Big Stone County" -in.county "MN, Blue Earth County" "The dwelling unit is in MN, Blue Earth County" -in.county "MN, Brown County" "The dwelling unit is in MN, Brown County" -in.county "MN, Carlton County" "The dwelling unit is in MN, Carlton County" -in.county "MN, Carver County" "The dwelling unit is in MN, Carver County" -in.county "MN, Cass County" "The dwelling unit is in MN, Cass County" -in.county "MN, Chippewa County" "The dwelling unit is in MN, Chippewa County" -in.county "MN, Chisago County" "The dwelling unit is in MN, Chisago County" -in.county "MN, Clay County" "The dwelling unit is in MN, Clay County" -in.county "MN, Clearwater County" "The dwelling unit is in MN, Clearwater County" -in.county "MN, Cook County" "The dwelling unit is in MN, Cook County" -in.county "MN, Cottonwood County" "The dwelling unit is in MN, Cottonwood County" -in.county "MN, Crow Wing County" "The dwelling unit is in MN, Crow Wing County" -in.county "MN, Dakota County" "The dwelling unit is in MN, Dakota County" -in.county "MN, Dodge County" "The dwelling unit is in MN, Dodge County" -in.county "MN, Douglas County" "The dwelling unit is in MN, Douglas County" -in.county "MN, Faribault County" "The dwelling unit is in MN, Faribault County" -in.county "MN, Fillmore County" "The dwelling unit is in MN, Fillmore County" -in.county "MN, Freeborn County" "The dwelling unit is in MN, Freeborn County" -in.county "MN, Goodhue County" "The dwelling unit is in MN, Goodhue County" -in.county "MN, Grant County" "The dwelling unit is in MN, Grant County" -in.county "MN, Hennepin County" "The dwelling unit is in MN, Hennepin County" -in.county "MN, Houston County" "The dwelling unit is in MN, Houston County" -in.county "MN, Hubbard County" "The dwelling unit is in MN, Hubbard County" -in.county "MN, Isanti County" "The dwelling unit is in MN, Isanti County" -in.county "MN, Itasca County" "The dwelling unit is in MN, Itasca County" -in.county "MN, Jackson County" "The dwelling unit is in MN, Jackson County" -in.county "MN, Kanabec County" "The dwelling unit is in MN, Kanabec County" -in.county "MN, Kandiyohi County" "The dwelling unit is in MN, Kandiyohi County" -in.county "MN, Kittson County" "The dwelling unit is in MN, Kittson County" -in.county "MN, Koochiching County" "The dwelling unit is in MN, Koochiching County" -in.county "MN, Lac qui Parle County" "The dwelling unit is in MN, Lac qui Parle County" -in.county "MN, Lake County" "The dwelling unit is in MN, Lake County" -in.county "MN, Lake of the Woods County" "The dwelling unit is in MN, Lake of the Woods County" -in.county "MN, Le Sueur County" "The dwelling unit is in MN, Le Sueur County" -in.county "MN, Lincoln County" "The dwelling unit is in MN, Lincoln County" -in.county "MN, Lyon County" "The dwelling unit is in MN, Lyon County" -in.county "MN, Mahnomen County" "The dwelling unit is in MN, Mahnomen County" -in.county "MN, Marshall County" "The dwelling unit is in MN, Marshall County" -in.county "MN, Martin County" "The dwelling unit is in MN, Martin County" -in.county "MN, McLeod County" "The dwelling unit is in MN, McLeod County" -in.county "MN, Meeker County" "The dwelling unit is in MN, Meeker County" -in.county "MN, Mille Lacs County" "The dwelling unit is in MN, Mille Lacs County" -in.county "MN, Morrison County" "The dwelling unit is in MN, Morrison County" -in.county "MN, Mower County" "The dwelling unit is in MN, Mower County" -in.county "MN, Murray County" "The dwelling unit is in MN, Murray County" -in.county "MN, Nicollet County" "The dwelling unit is in MN, Nicollet County" -in.county "MN, Nobles County" "The dwelling unit is in MN, Nobles County" -in.county "MN, Norman County" "The dwelling unit is in MN, Norman County" -in.county "MN, Olmsted County" "The dwelling unit is in MN, Olmsted County" -in.county "MN, Otter Tail County" "The dwelling unit is in MN, Otter Tail County" -in.county "MN, Pennington County" "The dwelling unit is in MN, Pennington County" -in.county "MN, Pine County" "The dwelling unit is in MN, Pine County" -in.county "MN, Pipestone County" "The dwelling unit is in MN, Pipestone County" -in.county "MN, Polk County" "The dwelling unit is in MN, Polk County" -in.county "MN, Pope County" "The dwelling unit is in MN, Pope County" -in.county "MN, Ramsey County" "The dwelling unit is in MN, Ramsey County" -in.county "MN, Red Lake County" "The dwelling unit is in MN, Red Lake County" -in.county "MN, Redwood County" "The dwelling unit is in MN, Redwood County" -in.county "MN, Renville County" "The dwelling unit is in MN, Renville County" -in.county "MN, Rice County" "The dwelling unit is in MN, Rice County" -in.county "MN, Rock County" "The dwelling unit is in MN, Rock County" -in.county "MN, Roseau County" "The dwelling unit is in MN, Roseau County" -in.county "MN, Scott County" "The dwelling unit is in MN, Scott County" -in.county "MN, Sherburne County" "The dwelling unit is in MN, Sherburne County" -in.county "MN, Sibley County" "The dwelling unit is in MN, Sibley County" -in.county "MN, St. Louis County" "The dwelling unit is in MN, St. Louis County" -in.county "MN, Stearns County" "The dwelling unit is in MN, Stearns County" -in.county "MN, Steele County" "The dwelling unit is in MN, Steele County" -in.county "MN, Stevens County" "The dwelling unit is in MN, Stevens County" -in.county "MN, Swift County" "The dwelling unit is in MN, Swift County" -in.county "MN, Todd County" "The dwelling unit is in MN, Todd County" -in.county "MN, Traverse County" "The dwelling unit is in MN, Traverse County" -in.county "MN, Wabasha County" "The dwelling unit is in MN, Wabasha County" -in.county "MN, Wadena County" "The dwelling unit is in MN, Wadena County" -in.county "MN, Waseca County" "The dwelling unit is in MN, Waseca County" -in.county "MN, Washington County" "The dwelling unit is in MN, Washington County" -in.county "MN, Watonwan County" "The dwelling unit is in MN, Watonwan County" -in.county "MN, Wilkin County" "The dwelling unit is in MN, Wilkin County" -in.county "MN, Winona County" "The dwelling unit is in MN, Winona County" -in.county "MN, Wright County" "The dwelling unit is in MN, Wright County" -in.county "MN, Yellow Medicine County" "The dwelling unit is in MN, Yellow Medicine County" -in.county "MO, Adair County" "The dwelling unit is in MO, Adair County" -in.county "MO, Andrew County" "The dwelling unit is in MO, Andrew County" -in.county "MO, Atchison County" "The dwelling unit is in MO, Atchison County" -in.county "MO, Audrain County" "The dwelling unit is in MO, Audrain County" -in.county "MO, Barry County" "The dwelling unit is in MO, Barry County" -in.county "MO, Barton County" "The dwelling unit is in MO, Barton County" -in.county "MO, Bates County" "The dwelling unit is in MO, Bates County" -in.county "MO, Benton County" "The dwelling unit is in MO, Benton County" -in.county "MO, Bollinger County" "The dwelling unit is in MO, Bollinger County" -in.county "MO, Boone County" "The dwelling unit is in MO, Boone County" -in.county "MO, Buchanan County" "The dwelling unit is in MO, Buchanan County" -in.county "MO, Butler County" "The dwelling unit is in MO, Butler County" -in.county "MO, Caldwell County" "The dwelling unit is in MO, Caldwell County" -in.county "MO, Callaway County" "The dwelling unit is in MO, Callaway County" -in.county "MO, Camden County" "The dwelling unit is in MO, Camden County" -in.county "MO, Cape Girardeau County" "The dwelling unit is in MO, Cape Girardeau County" -in.county "MO, Carroll County" "The dwelling unit is in MO, Carroll County" -in.county "MO, Carter County" "The dwelling unit is in MO, Carter County" -in.county "MO, Cass County" "The dwelling unit is in MO, Cass County" -in.county "MO, Cedar County" "The dwelling unit is in MO, Cedar County" -in.county "MO, Chariton County" "The dwelling unit is in MO, Chariton County" -in.county "MO, Christian County" "The dwelling unit is in MO, Christian County" -in.county "MO, Clark County" "The dwelling unit is in MO, Clark County" -in.county "MO, Clay County" "The dwelling unit is in MO, Clay County" -in.county "MO, Clinton County" "The dwelling unit is in MO, Clinton County" -in.county "MO, Cole County" "The dwelling unit is in MO, Cole County" -in.county "MO, Cooper County" "The dwelling unit is in MO, Cooper County" -in.county "MO, Crawford County" "The dwelling unit is in MO, Crawford County" -in.county "MO, Dade County" "The dwelling unit is in MO, Dade County" -in.county "MO, Dallas County" "The dwelling unit is in MO, Dallas County" -in.county "MO, Daviess County" "The dwelling unit is in MO, Daviess County" -in.county "MO, DeKalb County" "The dwelling unit is in MO, DeKalb County" -in.county "MO, Dent County" "The dwelling unit is in MO, Dent County" -in.county "MO, Douglas County" "The dwelling unit is in MO, Douglas County" -in.county "MO, Dunklin County" "The dwelling unit is in MO, Dunklin County" -in.county "MO, Franklin County" "The dwelling unit is in MO, Franklin County" -in.county "MO, Gasconade County" "The dwelling unit is in MO, Gasconade County" -in.county "MO, Gentry County" "The dwelling unit is in MO, Gentry County" -in.county "MO, Greene County" "The dwelling unit is in MO, Greene County" -in.county "MO, Grundy County" "The dwelling unit is in MO, Grundy County" -in.county "MO, Harrison County" "The dwelling unit is in MO, Harrison County" -in.county "MO, Henry County" "The dwelling unit is in MO, Henry County" -in.county "MO, Hickory County" "The dwelling unit is in MO, Hickory County" -in.county "MO, Holt County" "The dwelling unit is in MO, Holt County" -in.county "MO, Howard County" "The dwelling unit is in MO, Howard County" -in.county "MO, Howell County" "The dwelling unit is in MO, Howell County" -in.county "MO, Iron County" "The dwelling unit is in MO, Iron County" -in.county "MO, Jackson County" "The dwelling unit is in MO, Jackson County" -in.county "MO, Jasper County" "The dwelling unit is in MO, Jasper County" -in.county "MO, Jefferson County" "The dwelling unit is in MO, Jefferson County" -in.county "MO, Johnson County" "The dwelling unit is in MO, Johnson County" -in.county "MO, Knox County" "The dwelling unit is in MO, Knox County" -in.county "MO, Laclede County" "The dwelling unit is in MO, Laclede County" -in.county "MO, Lafayette County" "The dwelling unit is in MO, Lafayette County" -in.county "MO, Lawrence County" "The dwelling unit is in MO, Lawrence County" -in.county "MO, Lewis County" "The dwelling unit is in MO, Lewis County" -in.county "MO, Lincoln County" "The dwelling unit is in MO, Lincoln County" -in.county "MO, Linn County" "The dwelling unit is in MO, Linn County" -in.county "MO, Livingston County" "The dwelling unit is in MO, Livingston County" -in.county "MO, Macon County" "The dwelling unit is in MO, Macon County" -in.county "MO, Madison County" "The dwelling unit is in MO, Madison County" -in.county "MO, Maries County" "The dwelling unit is in MO, Maries County" -in.county "MO, Marion County" "The dwelling unit is in MO, Marion County" -in.county "MO, McDonald County" "The dwelling unit is in MO, McDonald County" -in.county "MO, Mercer County" "The dwelling unit is in MO, Mercer County" -in.county "MO, Miller County" "The dwelling unit is in MO, Miller County" -in.county "MO, Mississippi County" "The dwelling unit is in MO, Mississippi County" -in.county "MO, Moniteau County" "The dwelling unit is in MO, Moniteau County" -in.county "MO, Monroe County" "The dwelling unit is in MO, Monroe County" -in.county "MO, Montgomery County" "The dwelling unit is in MO, Montgomery County" -in.county "MO, Morgan County" "The dwelling unit is in MO, Morgan County" -in.county "MO, New Madrid County" "The dwelling unit is in MO, New Madrid County" -in.county "MO, Newton County" "The dwelling unit is in MO, Newton County" -in.county "MO, Nodaway County" "The dwelling unit is in MO, Nodaway County" -in.county "MO, Oregon County" "The dwelling unit is in MO, Oregon County" -in.county "MO, Osage County" "The dwelling unit is in MO, Osage County" -in.county "MO, Ozark County" "The dwelling unit is in MO, Ozark County" -in.county "MO, Pemiscot County" "The dwelling unit is in MO, Pemiscot County" -in.county "MO, Perry County" "The dwelling unit is in MO, Perry County" -in.county "MO, Pettis County" "The dwelling unit is in MO, Pettis County" -in.county "MO, Phelps County" "The dwelling unit is in MO, Phelps County" -in.county "MO, Pike County" "The dwelling unit is in MO, Pike County" -in.county "MO, Platte County" "The dwelling unit is in MO, Platte County" -in.county "MO, Polk County" "The dwelling unit is in MO, Polk County" -in.county "MO, Pulaski County" "The dwelling unit is in MO, Pulaski County" -in.county "MO, Putnam County" "The dwelling unit is in MO, Putnam County" -in.county "MO, Ralls County" "The dwelling unit is in MO, Ralls County" -in.county "MO, Randolph County" "The dwelling unit is in MO, Randolph County" -in.county "MO, Ray County" "The dwelling unit is in MO, Ray County" -in.county "MO, Reynolds County" "The dwelling unit is in MO, Reynolds County" -in.county "MO, Ripley County" "The dwelling unit is in MO, Ripley County" -in.county "MO, Saline County" "The dwelling unit is in MO, Saline County" -in.county "MO, Schuyler County" "The dwelling unit is in MO, Schuyler County" -in.county "MO, Scotland County" "The dwelling unit is in MO, Scotland County" -in.county "MO, Scott County" "The dwelling unit is in MO, Scott County" -in.county "MO, Shannon County" "The dwelling unit is in MO, Shannon County" -in.county "MO, Shelby County" "The dwelling unit is in MO, Shelby County" -in.county "MO, St. Charles County" "The dwelling unit is in MO, St. Charles County" -in.county "MO, St. Clair County" "The dwelling unit is in MO, St. Clair County" -in.county "MO, St. Francois County" "The dwelling unit is in MO, St. Francois County" -in.county "MO, St. Louis County" "The dwelling unit is in MO, St. Louis County" -in.county "MO, St. Louis city" "The dwelling unit is in MO, St. Louis city" -in.county "MO, Ste. Genevieve County" "The dwelling unit is in MO, Ste. Genevieve County" -in.county "MO, Stoddard County" "The dwelling unit is in MO, Stoddard County" -in.county "MO, Stone County" "The dwelling unit is in MO, Stone County" -in.county "MO, Sullivan County" "The dwelling unit is in MO, Sullivan County" -in.county "MO, Taney County" "The dwelling unit is in MO, Taney County" -in.county "MO, Texas County" "The dwelling unit is in MO, Texas County" -in.county "MO, Vernon County" "The dwelling unit is in MO, Vernon County" -in.county "MO, Warren County" "The dwelling unit is in MO, Warren County" -in.county "MO, Washington County" "The dwelling unit is in MO, Washington County" -in.county "MO, Wayne County" "The dwelling unit is in MO, Wayne County" -in.county "MO, Webster County" "The dwelling unit is in MO, Webster County" -in.county "MO, Worth County" "The dwelling unit is in MO, Worth County" -in.county "MO, Wright County" "The dwelling unit is in MO, Wright County" -in.county "MS, Adams County" "The dwelling unit is in MS, Adams County" -in.county "MS, Alcorn County" "The dwelling unit is in MS, Alcorn County" -in.county "MS, Amite County" "The dwelling unit is in MS, Amite County" -in.county "MS, Attala County" "The dwelling unit is in MS, Attala County" -in.county "MS, Benton County" "The dwelling unit is in MS, Benton County" -in.county "MS, Bolivar County" "The dwelling unit is in MS, Bolivar County" -in.county "MS, Calhoun County" "The dwelling unit is in MS, Calhoun County" -in.county "MS, Carroll County" "The dwelling unit is in MS, Carroll County" -in.county "MS, Chickasaw County" "The dwelling unit is in MS, Chickasaw County" -in.county "MS, Choctaw County" "The dwelling unit is in MS, Choctaw County" -in.county "MS, Claiborne County" "The dwelling unit is in MS, Claiborne County" -in.county "MS, Clarke County" "The dwelling unit is in MS, Clarke County" -in.county "MS, Clay County" "The dwelling unit is in MS, Clay County" -in.county "MS, Coahoma County" "The dwelling unit is in MS, Coahoma County" -in.county "MS, Copiah County" "The dwelling unit is in MS, Copiah County" -in.county "MS, Covington County" "The dwelling unit is in MS, Covington County" -in.county "MS, DeSoto County" "The dwelling unit is in MS, DeSoto County" -in.county "MS, Forrest County" "The dwelling unit is in MS, Forrest County" -in.county "MS, Franklin County" "The dwelling unit is in MS, Franklin County" -in.county "MS, George County" "The dwelling unit is in MS, George County" -in.county "MS, Greene County" "The dwelling unit is in MS, Greene County" -in.county "MS, Grenada County" "The dwelling unit is in MS, Grenada County" -in.county "MS, Hancock County" "The dwelling unit is in MS, Hancock County" -in.county "MS, Harrison County" "The dwelling unit is in MS, Harrison County" -in.county "MS, Hinds County" "The dwelling unit is in MS, Hinds County" -in.county "MS, Holmes County" "The dwelling unit is in MS, Holmes County" -in.county "MS, Humphreys County" "The dwelling unit is in MS, Humphreys County" -in.county "MS, Issaquena County" "The dwelling unit is in MS, Issaquena County" -in.county "MS, Itawamba County" "The dwelling unit is in MS, Itawamba County" -in.county "MS, Jackson County" "The dwelling unit is in MS, Jackson County" -in.county "MS, Jasper County" "The dwelling unit is in MS, Jasper County" -in.county "MS, Jefferson County" "The dwelling unit is in MS, Jefferson County" -in.county "MS, Jefferson Davis County" "The dwelling unit is in MS, Jefferson Davis County" -in.county "MS, Jones County" "The dwelling unit is in MS, Jones County" -in.county "MS, Kemper County" "The dwelling unit is in MS, Kemper County" -in.county "MS, Lafayette County" "The dwelling unit is in MS, Lafayette County" -in.county "MS, Lamar County" "The dwelling unit is in MS, Lamar County" -in.county "MS, Lauderdale County" "The dwelling unit is in MS, Lauderdale County" -in.county "MS, Lawrence County" "The dwelling unit is in MS, Lawrence County" -in.county "MS, Leake County" "The dwelling unit is in MS, Leake County" -in.county "MS, Lee County" "The dwelling unit is in MS, Lee County" -in.county "MS, Leflore County" "The dwelling unit is in MS, Leflore County" -in.county "MS, Lincoln County" "The dwelling unit is in MS, Lincoln County" -in.county "MS, Lowndes County" "The dwelling unit is in MS, Lowndes County" -in.county "MS, Madison County" "The dwelling unit is in MS, Madison County" -in.county "MS, Marion County" "The dwelling unit is in MS, Marion County" -in.county "MS, Marshall County" "The dwelling unit is in MS, Marshall County" -in.county "MS, Monroe County" "The dwelling unit is in MS, Monroe County" -in.county "MS, Montgomery County" "The dwelling unit is in MS, Montgomery County" -in.county "MS, Neshoba County" "The dwelling unit is in MS, Neshoba County" -in.county "MS, Newton County" "The dwelling unit is in MS, Newton County" -in.county "MS, Noxubee County" "The dwelling unit is in MS, Noxubee County" -in.county "MS, Oktibbeha County" "The dwelling unit is in MS, Oktibbeha County" -in.county "MS, Panola County" "The dwelling unit is in MS, Panola County" -in.county "MS, Pearl River County" "The dwelling unit is in MS, Pearl River County" -in.county "MS, Perry County" "The dwelling unit is in MS, Perry County" -in.county "MS, Pike County" "The dwelling unit is in MS, Pike County" -in.county "MS, Pontotoc County" "The dwelling unit is in MS, Pontotoc County" -in.county "MS, Prentiss County" "The dwelling unit is in MS, Prentiss County" -in.county "MS, Quitman County" "The dwelling unit is in MS, Quitman County" -in.county "MS, Rankin County" "The dwelling unit is in MS, Rankin County" -in.county "MS, Scott County" "The dwelling unit is in MS, Scott County" -in.county "MS, Sharkey County" "The dwelling unit is in MS, Sharkey County" -in.county "MS, Simpson County" "The dwelling unit is in MS, Simpson County" -in.county "MS, Smith County" "The dwelling unit is in MS, Smith County" -in.county "MS, Stone County" "The dwelling unit is in MS, Stone County" -in.county "MS, Sunflower County" "The dwelling unit is in MS, Sunflower County" -in.county "MS, Tallahatchie County" "The dwelling unit is in MS, Tallahatchie County" -in.county "MS, Tate County" "The dwelling unit is in MS, Tate County" -in.county "MS, Tippah County" "The dwelling unit is in MS, Tippah County" -in.county "MS, Tishomingo County" "The dwelling unit is in MS, Tishomingo County" -in.county "MS, Tunica County" "The dwelling unit is in MS, Tunica County" -in.county "MS, Union County" "The dwelling unit is in MS, Union County" -in.county "MS, Walthall County" "The dwelling unit is in MS, Walthall County" -in.county "MS, Warren County" "The dwelling unit is in MS, Warren County" -in.county "MS, Washington County" "The dwelling unit is in MS, Washington County" -in.county "MS, Wayne County" "The dwelling unit is in MS, Wayne County" -in.county "MS, Webster County" "The dwelling unit is in MS, Webster County" -in.county "MS, Wilkinson County" "The dwelling unit is in MS, Wilkinson County" -in.county "MS, Winston County" "The dwelling unit is in MS, Winston County" -in.county "MS, Yalobusha County" "The dwelling unit is in MS, Yalobusha County" -in.county "MS, Yazoo County" "The dwelling unit is in MS, Yazoo County" -in.county "MT, Beaverhead County" "The dwelling unit is in MT, Beaverhead County" -in.county "MT, Big Horn County" "The dwelling unit is in MT, Big Horn County" -in.county "MT, Blaine County" "The dwelling unit is in MT, Blaine County" -in.county "MT, Broadwater County" "The dwelling unit is in MT, Broadwater County" -in.county "MT, Carbon County" "The dwelling unit is in MT, Carbon County" -in.county "MT, Carter County" "The dwelling unit is in MT, Carter County" -in.county "MT, Cascade County" "The dwelling unit is in MT, Cascade County" -in.county "MT, Chouteau County" "The dwelling unit is in MT, Chouteau County" -in.county "MT, Custer County" "The dwelling unit is in MT, Custer County" -in.county "MT, Daniels County" "The dwelling unit is in MT, Daniels County" -in.county "MT, Dawson County" "The dwelling unit is in MT, Dawson County" -in.county "MT, Deer Lodge County" "The dwelling unit is in MT, Deer Lodge County" -in.county "MT, Fallon County" "The dwelling unit is in MT, Fallon County" -in.county "MT, Fergus County" "The dwelling unit is in MT, Fergus County" -in.county "MT, Flathead County" "The dwelling unit is in MT, Flathead County" -in.county "MT, Gallatin County" "The dwelling unit is in MT, Gallatin County" -in.county "MT, Garfield County" "The dwelling unit is in MT, Garfield County" -in.county "MT, Glacier County" "The dwelling unit is in MT, Glacier County" -in.county "MT, Golden Valley County" "The dwelling unit is in MT, Golden Valley County" -in.county "MT, Granite County" "The dwelling unit is in MT, Granite County" -in.county "MT, Hill County" "The dwelling unit is in MT, Hill County" -in.county "MT, Jefferson County" "The dwelling unit is in MT, Jefferson County" -in.county "MT, Judith Basin County" "The dwelling unit is in MT, Judith Basin County" -in.county "MT, Lake County" "The dwelling unit is in MT, Lake County" -in.county "MT, Lewis and Clark County" "The dwelling unit is in MT, Lewis and Clark County" -in.county "MT, Liberty County" "The dwelling unit is in MT, Liberty County" -in.county "MT, Lincoln County" "The dwelling unit is in MT, Lincoln County" -in.county "MT, Madison County" "The dwelling unit is in MT, Madison County" -in.county "MT, McCone County" "The dwelling unit is in MT, McCone County" -in.county "MT, Meagher County" "The dwelling unit is in MT, Meagher County" -in.county "MT, Mineral County" "The dwelling unit is in MT, Mineral County" -in.county "MT, Missoula County" "The dwelling unit is in MT, Missoula County" -in.county "MT, Musselshell County" "The dwelling unit is in MT, Musselshell County" -in.county "MT, Park County" "The dwelling unit is in MT, Park County" -in.county "MT, Petroleum County" "The dwelling unit is in MT, Petroleum County" -in.county "MT, Phillips County" "The dwelling unit is in MT, Phillips County" -in.county "MT, Pondera County" "The dwelling unit is in MT, Pondera County" -in.county "MT, Powder River County" "The dwelling unit is in MT, Powder River County" -in.county "MT, Powell County" "The dwelling unit is in MT, Powell County" -in.county "MT, Prairie County" "The dwelling unit is in MT, Prairie County" -in.county "MT, Ravalli County" "The dwelling unit is in MT, Ravalli County" -in.county "MT, Richland County" "The dwelling unit is in MT, Richland County" -in.county "MT, Roosevelt County" "The dwelling unit is in MT, Roosevelt County" -in.county "MT, Rosebud County" "The dwelling unit is in MT, Rosebud County" -in.county "MT, Sanders County" "The dwelling unit is in MT, Sanders County" -in.county "MT, Sheridan County" "The dwelling unit is in MT, Sheridan County" -in.county "MT, Silver Bow County" "The dwelling unit is in MT, Silver Bow County" -in.county "MT, Stillwater County" "The dwelling unit is in MT, Stillwater County" -in.county "MT, Sweet Grass County" "The dwelling unit is in MT, Sweet Grass County" -in.county "MT, Teton County" "The dwelling unit is in MT, Teton County" -in.county "MT, Toole County" "The dwelling unit is in MT, Toole County" -in.county "MT, Treasure County" "The dwelling unit is in MT, Treasure County" -in.county "MT, Valley County" "The dwelling unit is in MT, Valley County" -in.county "MT, Wheatland County" "The dwelling unit is in MT, Wheatland County" -in.county "MT, Wibaux County" "The dwelling unit is in MT, Wibaux County" -in.county "MT, Yellowstone County" "The dwelling unit is in MT, Yellowstone County" -in.county "NC, Alamance County" "The dwelling unit is in NC, Alamance County" -in.county "NC, Alexander County" "The dwelling unit is in NC, Alexander County" -in.county "NC, Alleghany County" "The dwelling unit is in NC, Alleghany County" -in.county "NC, Anson County" "The dwelling unit is in NC, Anson County" -in.county "NC, Ashe County" "The dwelling unit is in NC, Ashe County" -in.county "NC, Avery County" "The dwelling unit is in NC, Avery County" -in.county "NC, Beaufort County" "The dwelling unit is in NC, Beaufort County" -in.county "NC, Bertie County" "The dwelling unit is in NC, Bertie County" -in.county "NC, Bladen County" "The dwelling unit is in NC, Bladen County" -in.county "NC, Brunswick County" "The dwelling unit is in NC, Brunswick County" -in.county "NC, Buncombe County" "The dwelling unit is in NC, Buncombe County" -in.county "NC, Burke County" "The dwelling unit is in NC, Burke County" -in.county "NC, Cabarrus County" "The dwelling unit is in NC, Cabarrus County" -in.county "NC, Caldwell County" "The dwelling unit is in NC, Caldwell County" -in.county "NC, Camden County" "The dwelling unit is in NC, Camden County" -in.county "NC, Carteret County" "The dwelling unit is in NC, Carteret County" -in.county "NC, Caswell County" "The dwelling unit is in NC, Caswell County" -in.county "NC, Catawba County" "The dwelling unit is in NC, Catawba County" -in.county "NC, Chatham County" "The dwelling unit is in NC, Chatham County" -in.county "NC, Cherokee County" "The dwelling unit is in NC, Cherokee County" -in.county "NC, Chowan County" "The dwelling unit is in NC, Chowan County" -in.county "NC, Clay County" "The dwelling unit is in NC, Clay County" -in.county "NC, Cleveland County" "The dwelling unit is in NC, Cleveland County" -in.county "NC, Columbus County" "The dwelling unit is in NC, Columbus County" -in.county "NC, Craven County" "The dwelling unit is in NC, Craven County" -in.county "NC, Cumberland County" "The dwelling unit is in NC, Cumberland County" -in.county "NC, Currituck County" "The dwelling unit is in NC, Currituck County" -in.county "NC, Dare County" "The dwelling unit is in NC, Dare County" -in.county "NC, Davidson County" "The dwelling unit is in NC, Davidson County" -in.county "NC, Davie County" "The dwelling unit is in NC, Davie County" -in.county "NC, Duplin County" "The dwelling unit is in NC, Duplin County" -in.county "NC, Durham County" "The dwelling unit is in NC, Durham County" -in.county "NC, Edgecombe County" "The dwelling unit is in NC, Edgecombe County" -in.county "NC, Forsyth County" "The dwelling unit is in NC, Forsyth County" -in.county "NC, Franklin County" "The dwelling unit is in NC, Franklin County" -in.county "NC, Gaston County" "The dwelling unit is in NC, Gaston County" -in.county "NC, Gates County" "The dwelling unit is in NC, Gates County" -in.county "NC, Graham County" "The dwelling unit is in NC, Graham County" -in.county "NC, Granville County" "The dwelling unit is in NC, Granville County" -in.county "NC, Greene County" "The dwelling unit is in NC, Greene County" -in.county "NC, Guilford County" "The dwelling unit is in NC, Guilford County" -in.county "NC, Halifax County" "The dwelling unit is in NC, Halifax County" -in.county "NC, Harnett County" "The dwelling unit is in NC, Harnett County" -in.county "NC, Haywood County" "The dwelling unit is in NC, Haywood County" -in.county "NC, Henderson County" "The dwelling unit is in NC, Henderson County" -in.county "NC, Hertford County" "The dwelling unit is in NC, Hertford County" -in.county "NC, Hoke County" "The dwelling unit is in NC, Hoke County" -in.county "NC, Hyde County" "The dwelling unit is in NC, Hyde County" -in.county "NC, Iredell County" "The dwelling unit is in NC, Iredell County" -in.county "NC, Jackson County" "The dwelling unit is in NC, Jackson County" -in.county "NC, Johnston County" "The dwelling unit is in NC, Johnston County" -in.county "NC, Jones County" "The dwelling unit is in NC, Jones County" -in.county "NC, Lee County" "The dwelling unit is in NC, Lee County" -in.county "NC, Lenoir County" "The dwelling unit is in NC, Lenoir County" -in.county "NC, Lincoln County" "The dwelling unit is in NC, Lincoln County" -in.county "NC, Macon County" "The dwelling unit is in NC, Macon County" -in.county "NC, Madison County" "The dwelling unit is in NC, Madison County" -in.county "NC, Martin County" "The dwelling unit is in NC, Martin County" -in.county "NC, McDowell County" "The dwelling unit is in NC, McDowell County" -in.county "NC, Mecklenburg County" "The dwelling unit is in NC, Mecklenburg County" -in.county "NC, Mitchell County" "The dwelling unit is in NC, Mitchell County" -in.county "NC, Montgomery County" "The dwelling unit is in NC, Montgomery County" -in.county "NC, Moore County" "The dwelling unit is in NC, Moore County" -in.county "NC, Nash County" "The dwelling unit is in NC, Nash County" -in.county "NC, New Hanover County" "The dwelling unit is in NC, New Hanover County" -in.county "NC, Northampton County" "The dwelling unit is in NC, Northampton County" -in.county "NC, Onslow County" "The dwelling unit is in NC, Onslow County" -in.county "NC, Orange County" "The dwelling unit is in NC, Orange County" -in.county "NC, Pamlico County" "The dwelling unit is in NC, Pamlico County" -in.county "NC, Pasquotank County" "The dwelling unit is in NC, Pasquotank County" -in.county "NC, Pender County" "The dwelling unit is in NC, Pender County" -in.county "NC, Perquimans County" "The dwelling unit is in NC, Perquimans County" -in.county "NC, Person County" "The dwelling unit is in NC, Person County" -in.county "NC, Pitt County" "The dwelling unit is in NC, Pitt County" -in.county "NC, Polk County" "The dwelling unit is in NC, Polk County" -in.county "NC, Randolph County" "The dwelling unit is in NC, Randolph County" -in.county "NC, Richmond County" "The dwelling unit is in NC, Richmond County" -in.county "NC, Robeson County" "The dwelling unit is in NC, Robeson County" -in.county "NC, Rockingham County" "The dwelling unit is in NC, Rockingham County" -in.county "NC, Rowan County" "The dwelling unit is in NC, Rowan County" -in.county "NC, Rutherford County" "The dwelling unit is in NC, Rutherford County" -in.county "NC, Sampson County" "The dwelling unit is in NC, Sampson County" -in.county "NC, Scotland County" "The dwelling unit is in NC, Scotland County" -in.county "NC, Stanly County" "The dwelling unit is in NC, Stanly County" -in.county "NC, Stokes County" "The dwelling unit is in NC, Stokes County" -in.county "NC, Surry County" "The dwelling unit is in NC, Surry County" -in.county "NC, Swain County" "The dwelling unit is in NC, Swain County" -in.county "NC, Transylvania County" "The dwelling unit is in NC, Transylvania County" -in.county "NC, Tyrrell County" "The dwelling unit is in NC, Tyrrell County" -in.county "NC, Union County" "The dwelling unit is in NC, Union County" -in.county "NC, Vance County" "The dwelling unit is in NC, Vance County" -in.county "NC, Wake County" "The dwelling unit is in NC, Wake County" -in.county "NC, Warren County" "The dwelling unit is in NC, Warren County" -in.county "NC, Washington County" "The dwelling unit is in NC, Washington County" -in.county "NC, Watauga County" "The dwelling unit is in NC, Watauga County" -in.county "NC, Wayne County" "The dwelling unit is in NC, Wayne County" -in.county "NC, Wilkes County" "The dwelling unit is in NC, Wilkes County" -in.county "NC, Wilson County" "The dwelling unit is in NC, Wilson County" -in.county "NC, Yadkin County" "The dwelling unit is in NC, Yadkin County" -in.county "NC, Yancey County" "The dwelling unit is in NC, Yancey County" -in.county "ND, Adams County" "The dwelling unit is in ND, Adams County" -in.county "ND, Barnes County" "The dwelling unit is in ND, Barnes County" -in.county "ND, Benson County" "The dwelling unit is in ND, Benson County" -in.county "ND, Billings County" "The dwelling unit is in ND, Billings County" -in.county "ND, Bottineau County" "The dwelling unit is in ND, Bottineau County" -in.county "ND, Bowman County" "The dwelling unit is in ND, Bowman County" -in.county "ND, Burke County" "The dwelling unit is in ND, Burke County" -in.county "ND, Burleigh County" "The dwelling unit is in ND, Burleigh County" -in.county "ND, Cass County" "The dwelling unit is in ND, Cass County" -in.county "ND, Cavalier County" "The dwelling unit is in ND, Cavalier County" -in.county "ND, Dickey County" "The dwelling unit is in ND, Dickey County" -in.county "ND, Divide County" "The dwelling unit is in ND, Divide County" -in.county "ND, Dunn County" "The dwelling unit is in ND, Dunn County" -in.county "ND, Eddy County" "The dwelling unit is in ND, Eddy County" -in.county "ND, Emmons County" "The dwelling unit is in ND, Emmons County" -in.county "ND, Foster County" "The dwelling unit is in ND, Foster County" -in.county "ND, Golden Valley County" "The dwelling unit is in ND, Golden Valley County" -in.county "ND, Grand Forks County" "The dwelling unit is in ND, Grand Forks County" -in.county "ND, Grant County" "The dwelling unit is in ND, Grant County" -in.county "ND, Griggs County" "The dwelling unit is in ND, Griggs County" -in.county "ND, Hettinger County" "The dwelling unit is in ND, Hettinger County" -in.county "ND, Kidder County" "The dwelling unit is in ND, Kidder County" -in.county "ND, LaMoure County" "The dwelling unit is in ND, LaMoure County" -in.county "ND, Logan County" "The dwelling unit is in ND, Logan County" -in.county "ND, McHenry County" "The dwelling unit is in ND, McHenry County" -in.county "ND, McIntosh County" "The dwelling unit is in ND, McIntosh County" -in.county "ND, McKenzie County" "The dwelling unit is in ND, McKenzie County" -in.county "ND, McLean County" "The dwelling unit is in ND, McLean County" -in.county "ND, Mercer County" "The dwelling unit is in ND, Mercer County" -in.county "ND, Morton County" "The dwelling unit is in ND, Morton County" -in.county "ND, Mountrail County" "The dwelling unit is in ND, Mountrail County" -in.county "ND, Nelson County" "The dwelling unit is in ND, Nelson County" -in.county "ND, Oliver County" "The dwelling unit is in ND, Oliver County" -in.county "ND, Pembina County" "The dwelling unit is in ND, Pembina County" -in.county "ND, Pierce County" "The dwelling unit is in ND, Pierce County" -in.county "ND, Ramsey County" "The dwelling unit is in ND, Ramsey County" -in.county "ND, Ransom County" "The dwelling unit is in ND, Ransom County" -in.county "ND, Renville County" "The dwelling unit is in ND, Renville County" -in.county "ND, Richland County" "The dwelling unit is in ND, Richland County" -in.county "ND, Rolette County" "The dwelling unit is in ND, Rolette County" -in.county "ND, Sargent County" "The dwelling unit is in ND, Sargent County" -in.county "ND, Sheridan County" "The dwelling unit is in ND, Sheridan County" -in.county "ND, Sioux County" "The dwelling unit is in ND, Sioux County" -in.county "ND, Slope County" "The dwelling unit is in ND, Slope County" -in.county "ND, Stark County" "The dwelling unit is in ND, Stark County" -in.county "ND, Steele County" "The dwelling unit is in ND, Steele County" -in.county "ND, Stutsman County" "The dwelling unit is in ND, Stutsman County" -in.county "ND, Towner County" "The dwelling unit is in ND, Towner County" -in.county "ND, Traill County" "The dwelling unit is in ND, Traill County" -in.county "ND, Walsh County" "The dwelling unit is in ND, Walsh County" -in.county "ND, Ward County" "The dwelling unit is in ND, Ward County" -in.county "ND, Wells County" "The dwelling unit is in ND, Wells County" -in.county "ND, Williams County" "The dwelling unit is in ND, Williams County" -in.county "NE, Adams County" "The dwelling unit is in NE, Adams County" -in.county "NE, Antelope County" "The dwelling unit is in NE, Antelope County" -in.county "NE, Arthur County" "The dwelling unit is in NE, Arthur County" -in.county "NE, Banner County" "The dwelling unit is in NE, Banner County" -in.county "NE, Blaine County" "The dwelling unit is in NE, Blaine County" -in.county "NE, Boone County" "The dwelling unit is in NE, Boone County" -in.county "NE, Box Butte County" "The dwelling unit is in NE, Box Butte County" -in.county "NE, Boyd County" "The dwelling unit is in NE, Boyd County" -in.county "NE, Brown County" "The dwelling unit is in NE, Brown County" -in.county "NE, Buffalo County" "The dwelling unit is in NE, Buffalo County" -in.county "NE, Burt County" "The dwelling unit is in NE, Burt County" -in.county "NE, Butler County" "The dwelling unit is in NE, Butler County" -in.county "NE, Cass County" "The dwelling unit is in NE, Cass County" -in.county "NE, Cedar County" "The dwelling unit is in NE, Cedar County" -in.county "NE, Chase County" "The dwelling unit is in NE, Chase County" -in.county "NE, Cherry County" "The dwelling unit is in NE, Cherry County" -in.county "NE, Cheyenne County" "The dwelling unit is in NE, Cheyenne County" -in.county "NE, Clay County" "The dwelling unit is in NE, Clay County" -in.county "NE, Colfax County" "The dwelling unit is in NE, Colfax County" -in.county "NE, Cuming County" "The dwelling unit is in NE, Cuming County" -in.county "NE, Custer County" "The dwelling unit is in NE, Custer County" -in.county "NE, Dakota County" "The dwelling unit is in NE, Dakota County" -in.county "NE, Dawes County" "The dwelling unit is in NE, Dawes County" -in.county "NE, Dawson County" "The dwelling unit is in NE, Dawson County" -in.county "NE, Deuel County" "The dwelling unit is in NE, Deuel County" -in.county "NE, Dixon County" "The dwelling unit is in NE, Dixon County" -in.county "NE, Dodge County" "The dwelling unit is in NE, Dodge County" -in.county "NE, Douglas County" "The dwelling unit is in NE, Douglas County" -in.county "NE, Dundy County" "The dwelling unit is in NE, Dundy County" -in.county "NE, Fillmore County" "The dwelling unit is in NE, Fillmore County" -in.county "NE, Franklin County" "The dwelling unit is in NE, Franklin County" -in.county "NE, Frontier County" "The dwelling unit is in NE, Frontier County" -in.county "NE, Furnas County" "The dwelling unit is in NE, Furnas County" -in.county "NE, Gage County" "The dwelling unit is in NE, Gage County" -in.county "NE, Garden County" "The dwelling unit is in NE, Garden County" -in.county "NE, Garfield County" "The dwelling unit is in NE, Garfield County" -in.county "NE, Gosper County" "The dwelling unit is in NE, Gosper County" -in.county "NE, Grant County" "The dwelling unit is in NE, Grant County" -in.county "NE, Greeley County" "The dwelling unit is in NE, Greeley County" -in.county "NE, Hall County" "The dwelling unit is in NE, Hall County" -in.county "NE, Hamilton County" "The dwelling unit is in NE, Hamilton County" -in.county "NE, Harlan County" "The dwelling unit is in NE, Harlan County" -in.county "NE, Hayes County" "The dwelling unit is in NE, Hayes County" -in.county "NE, Hitchcock County" "The dwelling unit is in NE, Hitchcock County" -in.county "NE, Holt County" "The dwelling unit is in NE, Holt County" -in.county "NE, Hooker County" "The dwelling unit is in NE, Hooker County" -in.county "NE, Howard County" "The dwelling unit is in NE, Howard County" -in.county "NE, Jefferson County" "The dwelling unit is in NE, Jefferson County" -in.county "NE, Johnson County" "The dwelling unit is in NE, Johnson County" -in.county "NE, Kearney County" "The dwelling unit is in NE, Kearney County" -in.county "NE, Keith County" "The dwelling unit is in NE, Keith County" -in.county "NE, Keya Paha County" "The dwelling unit is in NE, Keya Paha County" -in.county "NE, Kimball County" "The dwelling unit is in NE, Kimball County" -in.county "NE, Knox County" "The dwelling unit is in NE, Knox County" -in.county "NE, Lancaster County" "The dwelling unit is in NE, Lancaster County" -in.county "NE, Lincoln County" "The dwelling unit is in NE, Lincoln County" -in.county "NE, Logan County" "The dwelling unit is in NE, Logan County" -in.county "NE, Loup County" "The dwelling unit is in NE, Loup County" -in.county "NE, Madison County" "The dwelling unit is in NE, Madison County" -in.county "NE, McPherson County" "The dwelling unit is in NE, McPherson County" -in.county "NE, Merrick County" "The dwelling unit is in NE, Merrick County" -in.county "NE, Morrill County" "The dwelling unit is in NE, Morrill County" -in.county "NE, Nance County" "The dwelling unit is in NE, Nance County" -in.county "NE, Nemaha County" "The dwelling unit is in NE, Nemaha County" -in.county "NE, Nuckolls County" "The dwelling unit is in NE, Nuckolls County" -in.county "NE, Otoe County" "The dwelling unit is in NE, Otoe County" -in.county "NE, Pawnee County" "The dwelling unit is in NE, Pawnee County" -in.county "NE, Perkins County" "The dwelling unit is in NE, Perkins County" -in.county "NE, Phelps County" "The dwelling unit is in NE, Phelps County" -in.county "NE, Pierce County" "The dwelling unit is in NE, Pierce County" -in.county "NE, Platte County" "The dwelling unit is in NE, Platte County" -in.county "NE, Polk County" "The dwelling unit is in NE, Polk County" -in.county "NE, Red Willow County" "The dwelling unit is in NE, Red Willow County" -in.county "NE, Richardson County" "The dwelling unit is in NE, Richardson County" -in.county "NE, Rock County" "The dwelling unit is in NE, Rock County" -in.county "NE, Saline County" "The dwelling unit is in NE, Saline County" -in.county "NE, Sarpy County" "The dwelling unit is in NE, Sarpy County" -in.county "NE, Saunders County" "The dwelling unit is in NE, Saunders County" -in.county "NE, Scotts Bluff County" "The dwelling unit is in NE, Scotts Bluff County" -in.county "NE, Seward County" "The dwelling unit is in NE, Seward County" -in.county "NE, Sheridan County" "The dwelling unit is in NE, Sheridan County" -in.county "NE, Sherman County" "The dwelling unit is in NE, Sherman County" -in.county "NE, Sioux County" "The dwelling unit is in NE, Sioux County" -in.county "NE, Stanton County" "The dwelling unit is in NE, Stanton County" -in.county "NE, Thayer County" "The dwelling unit is in NE, Thayer County" -in.county "NE, Thomas County" "The dwelling unit is in NE, Thomas County" -in.county "NE, Thurston County" "The dwelling unit is in NE, Thurston County" -in.county "NE, Valley County" "The dwelling unit is in NE, Valley County" -in.county "NE, Washington County" "The dwelling unit is in NE, Washington County" -in.county "NE, Wayne County" "The dwelling unit is in NE, Wayne County" -in.county "NE, Webster County" "The dwelling unit is in NE, Webster County" -in.county "NE, Wheeler County" "The dwelling unit is in NE, Wheeler County" -in.county "NE, York County" "The dwelling unit is in NE, York County" -in.county "NH, Belknap County" "The dwelling unit is in NH, Belknap County" -in.county "NH, Carroll County" "The dwelling unit is in NH, Carroll County" -in.county "NH, Cheshire County" "The dwelling unit is in NH, Cheshire County" -in.county "NH, Coos County" "The dwelling unit is in NH, Coos County" -in.county "NH, Grafton County" "The dwelling unit is in NH, Grafton County" -in.county "NH, Hillsborough County" "The dwelling unit is in NH, Hillsborough County" -in.county "NH, Merrimack County" "The dwelling unit is in NH, Merrimack County" -in.county "NH, Rockingham County" "The dwelling unit is in NH, Rockingham County" -in.county "NH, Strafford County" "The dwelling unit is in NH, Strafford County" -in.county "NH, Sullivan County" "The dwelling unit is in NH, Sullivan County" -in.county "NJ, Atlantic County" "The dwelling unit is in NJ, Atlantic County" -in.county "NJ, Bergen County" "The dwelling unit is in NJ, Bergen County" -in.county "NJ, Burlington County" "The dwelling unit is in NJ, Burlington County" -in.county "NJ, Camden County" "The dwelling unit is in NJ, Camden County" -in.county "NJ, Cape May County" "The dwelling unit is in NJ, Cape May County" -in.county "NJ, Cumberland County" "The dwelling unit is in NJ, Cumberland County" -in.county "NJ, Essex County" "The dwelling unit is in NJ, Essex County" -in.county "NJ, Gloucester County" "The dwelling unit is in NJ, Gloucester County" -in.county "NJ, Hudson County" "The dwelling unit is in NJ, Hudson County" -in.county "NJ, Hunterdon County" "The dwelling unit is in NJ, Hunterdon County" -in.county "NJ, Mercer County" "The dwelling unit is in NJ, Mercer County" -in.county "NJ, Middlesex County" "The dwelling unit is in NJ, Middlesex County" -in.county "NJ, Monmouth County" "The dwelling unit is in NJ, Monmouth County" -in.county "NJ, Morris County" "The dwelling unit is in NJ, Morris County" -in.county "NJ, Ocean County" "The dwelling unit is in NJ, Ocean County" -in.county "NJ, Passaic County" "The dwelling unit is in NJ, Passaic County" -in.county "NJ, Salem County" "The dwelling unit is in NJ, Salem County" -in.county "NJ, Somerset County" "The dwelling unit is in NJ, Somerset County" -in.county "NJ, Sussex County" "The dwelling unit is in NJ, Sussex County" -in.county "NJ, Union County" "The dwelling unit is in NJ, Union County" -in.county "NJ, Warren County" "The dwelling unit is in NJ, Warren County" -in.county "NM, Bernalillo County" "The dwelling unit is in NM, Bernalillo County" -in.county "NM, Catron County" "The dwelling unit is in NM, Catron County" -in.county "NM, Chaves County" "The dwelling unit is in NM, Chaves County" -in.county "NM, Cibola County" "The dwelling unit is in NM, Cibola County" -in.county "NM, Colfax County" "The dwelling unit is in NM, Colfax County" -in.county "NM, Curry County" "The dwelling unit is in NM, Curry County" -in.county "NM, De Baca County" "The dwelling unit is in NM, De Baca County" -in.county "NM, Dona Ana County" "The dwelling unit is in NM, Dona Ana County" -in.county "NM, Eddy County" "The dwelling unit is in NM, Eddy County" -in.county "NM, Grant County" "The dwelling unit is in NM, Grant County" -in.county "NM, Guadalupe County" "The dwelling unit is in NM, Guadalupe County" -in.county "NM, Harding County" "The dwelling unit is in NM, Harding County" -in.county "NM, Hidalgo County" "The dwelling unit is in NM, Hidalgo County" -in.county "NM, Lea County" "The dwelling unit is in NM, Lea County" -in.county "NM, Lincoln County" "The dwelling unit is in NM, Lincoln County" -in.county "NM, Los Alamos County" "The dwelling unit is in NM, Los Alamos County" -in.county "NM, Luna County" "The dwelling unit is in NM, Luna County" -in.county "NM, McKinley County" "The dwelling unit is in NM, McKinley County" -in.county "NM, Mora County" "The dwelling unit is in NM, Mora County" -in.county "NM, Otero County" "The dwelling unit is in NM, Otero County" -in.county "NM, Quay County" "The dwelling unit is in NM, Quay County" -in.county "NM, Rio Arriba County" "The dwelling unit is in NM, Rio Arriba County" -in.county "NM, Roosevelt County" "The dwelling unit is in NM, Roosevelt County" -in.county "NM, San Juan County" "The dwelling unit is in NM, San Juan County" -in.county "NM, San Miguel County" "The dwelling unit is in NM, San Miguel County" -in.county "NM, Sandoval County" "The dwelling unit is in NM, Sandoval County" -in.county "NM, Santa Fe County" "The dwelling unit is in NM, Santa Fe County" -in.county "NM, Sierra County" "The dwelling unit is in NM, Sierra County" -in.county "NM, Socorro County" "The dwelling unit is in NM, Socorro County" -in.county "NM, Taos County" "The dwelling unit is in NM, Taos County" -in.county "NM, Torrance County" "The dwelling unit is in NM, Torrance County" -in.county "NM, Union County" "The dwelling unit is in NM, Union County" -in.county "NM, Valencia County" "The dwelling unit is in NM, Valencia County" -in.county "NV, Carson City" "The dwelling unit is in NV, Carson City" -in.county "NV, Churchill County" "The dwelling unit is in NV, Churchill County" -in.county "NV, Clark County" "The dwelling unit is in NV, Clark County" -in.county "NV, Douglas County" "The dwelling unit is in NV, Douglas County" -in.county "NV, Elko County" "The dwelling unit is in NV, Elko County" -in.county "NV, Esmeralda County" "The dwelling unit is in NV, Esmeralda County" -in.county "NV, Eureka County" "The dwelling unit is in NV, Eureka County" -in.county "NV, Humboldt County" "The dwelling unit is in NV, Humboldt County" -in.county "NV, Lander County" "The dwelling unit is in NV, Lander County" -in.county "NV, Lincoln County" "The dwelling unit is in NV, Lincoln County" -in.county "NV, Lyon County" "The dwelling unit is in NV, Lyon County" -in.county "NV, Mineral County" "The dwelling unit is in NV, Mineral County" -in.county "NV, Nye County" "The dwelling unit is in NV, Nye County" -in.county "NV, Pershing County" "The dwelling unit is in NV, Pershing County" -in.county "NV, Storey County" "The dwelling unit is in NV, Storey County" -in.county "NV, Washoe County" "The dwelling unit is in NV, Washoe County" -in.county "NV, White Pine County" "The dwelling unit is in NV, White Pine County" -in.county "NY, Albany County" "The dwelling unit is in NY, Albany County" -in.county "NY, Allegany County" "The dwelling unit is in NY, Allegany County" -in.county "NY, Bronx County" "The dwelling unit is in NY, Bronx County" -in.county "NY, Broome County" "The dwelling unit is in NY, Broome County" -in.county "NY, Cattaraugus County" "The dwelling unit is in NY, Cattaraugus County" -in.county "NY, Cayuga County" "The dwelling unit is in NY, Cayuga County" -in.county "NY, Chautauqua County" "The dwelling unit is in NY, Chautauqua County" -in.county "NY, Chemung County" "The dwelling unit is in NY, Chemung County" -in.county "NY, Chenango County" "The dwelling unit is in NY, Chenango County" -in.county "NY, Clinton County" "The dwelling unit is in NY, Clinton County" -in.county "NY, Columbia County" "The dwelling unit is in NY, Columbia County" -in.county "NY, Cortland County" "The dwelling unit is in NY, Cortland County" -in.county "NY, Delaware County" "The dwelling unit is in NY, Delaware County" -in.county "NY, Dutchess County" "The dwelling unit is in NY, Dutchess County" -in.county "NY, Erie County" "The dwelling unit is in NY, Erie County" -in.county "NY, Essex County" "The dwelling unit is in NY, Essex County" -in.county "NY, Franklin County" "The dwelling unit is in NY, Franklin County" -in.county "NY, Fulton County" "The dwelling unit is in NY, Fulton County" -in.county "NY, Genesee County" "The dwelling unit is in NY, Genesee County" -in.county "NY, Greene County" "The dwelling unit is in NY, Greene County" -in.county "NY, Hamilton County" "The dwelling unit is in NY, Hamilton County" -in.county "NY, Herkimer County" "The dwelling unit is in NY, Herkimer County" -in.county "NY, Jefferson County" "The dwelling unit is in NY, Jefferson County" -in.county "NY, Kings County" "The dwelling unit is in NY, Kings County" -in.county "NY, Lewis County" "The dwelling unit is in NY, Lewis County" -in.county "NY, Livingston County" "The dwelling unit is in NY, Livingston County" -in.county "NY, Madison County" "The dwelling unit is in NY, Madison County" -in.county "NY, Monroe County" "The dwelling unit is in NY, Monroe County" -in.county "NY, Montgomery County" "The dwelling unit is in NY, Montgomery County" -in.county "NY, Nassau County" "The dwelling unit is in NY, Nassau County" -in.county "NY, New York County" "The dwelling unit is in NY, New York County" -in.county "NY, Niagara County" "The dwelling unit is in NY, Niagara County" -in.county "NY, Oneida County" "The dwelling unit is in NY, Oneida County" -in.county "NY, Onondaga County" "The dwelling unit is in NY, Onondaga County" -in.county "NY, Ontario County" "The dwelling unit is in NY, Ontario County" -in.county "NY, Orange County" "The dwelling unit is in NY, Orange County" -in.county "NY, Orleans County" "The dwelling unit is in NY, Orleans County" -in.county "NY, Oswego County" "The dwelling unit is in NY, Oswego County" -in.county "NY, Otsego County" "The dwelling unit is in NY, Otsego County" -in.county "NY, Putnam County" "The dwelling unit is in NY, Putnam County" -in.county "NY, Queens County" "The dwelling unit is in NY, Queens County" -in.county "NY, Rensselaer County" "The dwelling unit is in NY, Rensselaer County" -in.county "NY, Richmond County" "The dwelling unit is in NY, Richmond County" -in.county "NY, Rockland County" "The dwelling unit is in NY, Rockland County" -in.county "NY, Saratoga County" "The dwelling unit is in NY, Saratoga County" -in.county "NY, Schenectady County" "The dwelling unit is in NY, Schenectady County" -in.county "NY, Schoharie County" "The dwelling unit is in NY, Schoharie County" -in.county "NY, Schuyler County" "The dwelling unit is in NY, Schuyler County" -in.county "NY, Seneca County" "The dwelling unit is in NY, Seneca County" -in.county "NY, St. Lawrence County" "The dwelling unit is in NY, St. Lawrence County" -in.county "NY, Steuben County" "The dwelling unit is in NY, Steuben County" -in.county "NY, Suffolk County" "The dwelling unit is in NY, Suffolk County" -in.county "NY, Sullivan County" "The dwelling unit is in NY, Sullivan County" -in.county "NY, Tioga County" "The dwelling unit is in NY, Tioga County" -in.county "NY, Tompkins County" "The dwelling unit is in NY, Tompkins County" -in.county "NY, Ulster County" "The dwelling unit is in NY, Ulster County" -in.county "NY, Warren County" "The dwelling unit is in NY, Warren County" -in.county "NY, Washington County" "The dwelling unit is in NY, Washington County" -in.county "NY, Wayne County" "The dwelling unit is in NY, Wayne County" -in.county "NY, Westchester County" "The dwelling unit is in NY, Westchester County" -in.county "NY, Wyoming County" "The dwelling unit is in NY, Wyoming County" -in.county "NY, Yates County" "The dwelling unit is in NY, Yates County" -in.county "OH, Adams County" "The dwelling unit is in OH, Adams County" -in.county "OH, Allen County" "The dwelling unit is in OH, Allen County" -in.county "OH, Ashland County" "The dwelling unit is in OH, Ashland County" -in.county "OH, Ashtabula County" "The dwelling unit is in OH, Ashtabula County" -in.county "OH, Athens County" "The dwelling unit is in OH, Athens County" -in.county "OH, Auglaize County" "The dwelling unit is in OH, Auglaize County" -in.county "OH, Belmont County" "The dwelling unit is in OH, Belmont County" -in.county "OH, Brown County" "The dwelling unit is in OH, Brown County" -in.county "OH, Butler County" "The dwelling unit is in OH, Butler County" -in.county "OH, Carroll County" "The dwelling unit is in OH, Carroll County" -in.county "OH, Champaign County" "The dwelling unit is in OH, Champaign County" -in.county "OH, Clark County" "The dwelling unit is in OH, Clark County" -in.county "OH, Clermont County" "The dwelling unit is in OH, Clermont County" -in.county "OH, Clinton County" "The dwelling unit is in OH, Clinton County" -in.county "OH, Columbiana County" "The dwelling unit is in OH, Columbiana County" -in.county "OH, Coshocton County" "The dwelling unit is in OH, Coshocton County" -in.county "OH, Crawford County" "The dwelling unit is in OH, Crawford County" -in.county "OH, Cuyahoga County" "The dwelling unit is in OH, Cuyahoga County" -in.county "OH, Darke County" "The dwelling unit is in OH, Darke County" -in.county "OH, Defiance County" "The dwelling unit is in OH, Defiance County" -in.county "OH, Delaware County" "The dwelling unit is in OH, Delaware County" -in.county "OH, Erie County" "The dwelling unit is in OH, Erie County" -in.county "OH, Fairfield County" "The dwelling unit is in OH, Fairfield County" -in.county "OH, Fayette County" "The dwelling unit is in OH, Fayette County" -in.county "OH, Franklin County" "The dwelling unit is in OH, Franklin County" -in.county "OH, Fulton County" "The dwelling unit is in OH, Fulton County" -in.county "OH, Gallia County" "The dwelling unit is in OH, Gallia County" -in.county "OH, Geauga County" "The dwelling unit is in OH, Geauga County" -in.county "OH, Greene County" "The dwelling unit is in OH, Greene County" -in.county "OH, Guernsey County" "The dwelling unit is in OH, Guernsey County" -in.county "OH, Hamilton County" "The dwelling unit is in OH, Hamilton County" -in.county "OH, Hancock County" "The dwelling unit is in OH, Hancock County" -in.county "OH, Hardin County" "The dwelling unit is in OH, Hardin County" -in.county "OH, Harrison County" "The dwelling unit is in OH, Harrison County" -in.county "OH, Henry County" "The dwelling unit is in OH, Henry County" -in.county "OH, Highland County" "The dwelling unit is in OH, Highland County" -in.county "OH, Hocking County" "The dwelling unit is in OH, Hocking County" -in.county "OH, Holmes County" "The dwelling unit is in OH, Holmes County" -in.county "OH, Huron County" "The dwelling unit is in OH, Huron County" -in.county "OH, Jackson County" "The dwelling unit is in OH, Jackson County" -in.county "OH, Jefferson County" "The dwelling unit is in OH, Jefferson County" -in.county "OH, Knox County" "The dwelling unit is in OH, Knox County" -in.county "OH, Lake County" "The dwelling unit is in OH, Lake County" -in.county "OH, Lawrence County" "The dwelling unit is in OH, Lawrence County" -in.county "OH, Licking County" "The dwelling unit is in OH, Licking County" -in.county "OH, Logan County" "The dwelling unit is in OH, Logan County" -in.county "OH, Lorain County" "The dwelling unit is in OH, Lorain County" -in.county "OH, Lucas County" "The dwelling unit is in OH, Lucas County" -in.county "OH, Madison County" "The dwelling unit is in OH, Madison County" -in.county "OH, Mahoning County" "The dwelling unit is in OH, Mahoning County" -in.county "OH, Marion County" "The dwelling unit is in OH, Marion County" -in.county "OH, Medina County" "The dwelling unit is in OH, Medina County" -in.county "OH, Meigs County" "The dwelling unit is in OH, Meigs County" -in.county "OH, Mercer County" "The dwelling unit is in OH, Mercer County" -in.county "OH, Miami County" "The dwelling unit is in OH, Miami County" -in.county "OH, Monroe County" "The dwelling unit is in OH, Monroe County" -in.county "OH, Montgomery County" "The dwelling unit is in OH, Montgomery County" -in.county "OH, Morgan County" "The dwelling unit is in OH, Morgan County" -in.county "OH, Morrow County" "The dwelling unit is in OH, Morrow County" -in.county "OH, Muskingum County" "The dwelling unit is in OH, Muskingum County" -in.county "OH, Noble County" "The dwelling unit is in OH, Noble County" -in.county "OH, Ottawa County" "The dwelling unit is in OH, Ottawa County" -in.county "OH, Paulding County" "The dwelling unit is in OH, Paulding County" -in.county "OH, Perry County" "The dwelling unit is in OH, Perry County" -in.county "OH, Pickaway County" "The dwelling unit is in OH, Pickaway County" -in.county "OH, Pike County" "The dwelling unit is in OH, Pike County" -in.county "OH, Portage County" "The dwelling unit is in OH, Portage County" -in.county "OH, Preble County" "The dwelling unit is in OH, Preble County" -in.county "OH, Putnam County" "The dwelling unit is in OH, Putnam County" -in.county "OH, Richland County" "The dwelling unit is in OH, Richland County" -in.county "OH, Ross County" "The dwelling unit is in OH, Ross County" -in.county "OH, Sandusky County" "The dwelling unit is in OH, Sandusky County" -in.county "OH, Scioto County" "The dwelling unit is in OH, Scioto County" -in.county "OH, Seneca County" "The dwelling unit is in OH, Seneca County" -in.county "OH, Shelby County" "The dwelling unit is in OH, Shelby County" -in.county "OH, Stark County" "The dwelling unit is in OH, Stark County" -in.county "OH, Summit County" "The dwelling unit is in OH, Summit County" -in.county "OH, Trumbull County" "The dwelling unit is in OH, Trumbull County" -in.county "OH, Tuscarawas County" "The dwelling unit is in OH, Tuscarawas County" -in.county "OH, Union County" "The dwelling unit is in OH, Union County" -in.county "OH, Van Wert County" "The dwelling unit is in OH, Van Wert County" -in.county "OH, Vinton County" "The dwelling unit is in OH, Vinton County" -in.county "OH, Warren County" "The dwelling unit is in OH, Warren County" -in.county "OH, Washington County" "The dwelling unit is in OH, Washington County" -in.county "OH, Wayne County" "The dwelling unit is in OH, Wayne County" -in.county "OH, Williams County" "The dwelling unit is in OH, Williams County" -in.county "OH, Wood County" "The dwelling unit is in OH, Wood County" -in.county "OH, Wyandot County" "The dwelling unit is in OH, Wyandot County" -in.county "OK, Adair County" "The dwelling unit is in OK, Adair County" -in.county "OK, Alfalfa County" "The dwelling unit is in OK, Alfalfa County" -in.county "OK, Atoka County" "The dwelling unit is in OK, Atoka County" -in.county "OK, Beaver County" "The dwelling unit is in OK, Beaver County" -in.county "OK, Beckham County" "The dwelling unit is in OK, Beckham County" -in.county "OK, Blaine County" "The dwelling unit is in OK, Blaine County" -in.county "OK, Bryan County" "The dwelling unit is in OK, Bryan County" -in.county "OK, Caddo County" "The dwelling unit is in OK, Caddo County" -in.county "OK, Canadian County" "The dwelling unit is in OK, Canadian County" -in.county "OK, Carter County" "The dwelling unit is in OK, Carter County" -in.county "OK, Cherokee County" "The dwelling unit is in OK, Cherokee County" -in.county "OK, Choctaw County" "The dwelling unit is in OK, Choctaw County" -in.county "OK, Cimarron County" "The dwelling unit is in OK, Cimarron County" -in.county "OK, Cleveland County" "The dwelling unit is in OK, Cleveland County" -in.county "OK, Coal County" "The dwelling unit is in OK, Coal County" -in.county "OK, Comanche County" "The dwelling unit is in OK, Comanche County" -in.county "OK, Cotton County" "The dwelling unit is in OK, Cotton County" -in.county "OK, Craig County" "The dwelling unit is in OK, Craig County" -in.county "OK, Creek County" "The dwelling unit is in OK, Creek County" -in.county "OK, Custer County" "The dwelling unit is in OK, Custer County" -in.county "OK, Delaware County" "The dwelling unit is in OK, Delaware County" -in.county "OK, Dewey County" "The dwelling unit is in OK, Dewey County" -in.county "OK, Ellis County" "The dwelling unit is in OK, Ellis County" -in.county "OK, Garfield County" "The dwelling unit is in OK, Garfield County" -in.county "OK, Garvin County" "The dwelling unit is in OK, Garvin County" -in.county "OK, Grady County" "The dwelling unit is in OK, Grady County" -in.county "OK, Grant County" "The dwelling unit is in OK, Grant County" -in.county "OK, Greer County" "The dwelling unit is in OK, Greer County" -in.county "OK, Harmon County" "The dwelling unit is in OK, Harmon County" -in.county "OK, Harper County" "The dwelling unit is in OK, Harper County" -in.county "OK, Haskell County" "The dwelling unit is in OK, Haskell County" -in.county "OK, Hughes County" "The dwelling unit is in OK, Hughes County" -in.county "OK, Jackson County" "The dwelling unit is in OK, Jackson County" -in.county "OK, Jefferson County" "The dwelling unit is in OK, Jefferson County" -in.county "OK, Johnston County" "The dwelling unit is in OK, Johnston County" -in.county "OK, Kay County" "The dwelling unit is in OK, Kay County" -in.county "OK, Kingfisher County" "The dwelling unit is in OK, Kingfisher County" -in.county "OK, Kiowa County" "The dwelling unit is in OK, Kiowa County" -in.county "OK, Latimer County" "The dwelling unit is in OK, Latimer County" -in.county "OK, Le Flore County" "The dwelling unit is in OK, Le Flore County" -in.county "OK, Lincoln County" "The dwelling unit is in OK, Lincoln County" -in.county "OK, Logan County" "The dwelling unit is in OK, Logan County" -in.county "OK, Love County" "The dwelling unit is in OK, Love County" -in.county "OK, Major County" "The dwelling unit is in OK, Major County" -in.county "OK, Marshall County" "The dwelling unit is in OK, Marshall County" -in.county "OK, Mayes County" "The dwelling unit is in OK, Mayes County" -in.county "OK, McClain County" "The dwelling unit is in OK, McClain County" -in.county "OK, McCurtain County" "The dwelling unit is in OK, McCurtain County" -in.county "OK, McIntosh County" "The dwelling unit is in OK, McIntosh County" -in.county "OK, Murray County" "The dwelling unit is in OK, Murray County" -in.county "OK, Muskogee County" "The dwelling unit is in OK, Muskogee County" -in.county "OK, Noble County" "The dwelling unit is in OK, Noble County" -in.county "OK, Nowata County" "The dwelling unit is in OK, Nowata County" -in.county "OK, Okfuskee County" "The dwelling unit is in OK, Okfuskee County" -in.county "OK, Oklahoma County" "The dwelling unit is in OK, Oklahoma County" -in.county "OK, Okmulgee County" "The dwelling unit is in OK, Okmulgee County" -in.county "OK, Osage County" "The dwelling unit is in OK, Osage County" -in.county "OK, Ottawa County" "The dwelling unit is in OK, Ottawa County" -in.county "OK, Pawnee County" "The dwelling unit is in OK, Pawnee County" -in.county "OK, Payne County" "The dwelling unit is in OK, Payne County" -in.county "OK, Pittsburg County" "The dwelling unit is in OK, Pittsburg County" -in.county "OK, Pontotoc County" "The dwelling unit is in OK, Pontotoc County" -in.county "OK, Pottawatomie County" "The dwelling unit is in OK, Pottawatomie County" -in.county "OK, Pushmataha County" "The dwelling unit is in OK, Pushmataha County" -in.county "OK, Roger Mills County" "The dwelling unit is in OK, Roger Mills County" -in.county "OK, Rogers County" "The dwelling unit is in OK, Rogers County" -in.county "OK, Seminole County" "The dwelling unit is in OK, Seminole County" -in.county "OK, Sequoyah County" "The dwelling unit is in OK, Sequoyah County" -in.county "OK, Stephens County" "The dwelling unit is in OK, Stephens County" -in.county "OK, Texas County" "The dwelling unit is in OK, Texas County" -in.county "OK, Tillman County" "The dwelling unit is in OK, Tillman County" -in.county "OK, Tulsa County" "The dwelling unit is in OK, Tulsa County" -in.county "OK, Wagoner County" "The dwelling unit is in OK, Wagoner County" -in.county "OK, Washington County" "The dwelling unit is in OK, Washington County" -in.county "OK, Washita County" "The dwelling unit is in OK, Washita County" -in.county "OK, Woods County" "The dwelling unit is in OK, Woods County" -in.county "OK, Woodward County" "The dwelling unit is in OK, Woodward County" -in.county "OR, Baker County" "The dwelling unit is in OR, Baker County" -in.county "OR, Benton County" "The dwelling unit is in OR, Benton County" -in.county "OR, Clackamas County" "The dwelling unit is in OR, Clackamas County" -in.county "OR, Clatsop County" "The dwelling unit is in OR, Clatsop County" -in.county "OR, Columbia County" "The dwelling unit is in OR, Columbia County" -in.county "OR, Coos County" "The dwelling unit is in OR, Coos County" -in.county "OR, Crook County" "The dwelling unit is in OR, Crook County" -in.county "OR, Curry County" "The dwelling unit is in OR, Curry County" -in.county "OR, Deschutes County" "The dwelling unit is in OR, Deschutes County" -in.county "OR, Douglas County" "The dwelling unit is in OR, Douglas County" -in.county "OR, Gilliam County" "The dwelling unit is in OR, Gilliam County" -in.county "OR, Grant County" "The dwelling unit is in OR, Grant County" -in.county "OR, Harney County" "The dwelling unit is in OR, Harney County" -in.county "OR, Hood River County" "The dwelling unit is in OR, Hood River County" -in.county "OR, Jackson County" "The dwelling unit is in OR, Jackson County" -in.county "OR, Jefferson County" "The dwelling unit is in OR, Jefferson County" -in.county "OR, Josephine County" "The dwelling unit is in OR, Josephine County" -in.county "OR, Klamath County" "The dwelling unit is in OR, Klamath County" -in.county "OR, Lake County" "The dwelling unit is in OR, Lake County" -in.county "OR, Lane County" "The dwelling unit is in OR, Lane County" -in.county "OR, Lincoln County" "The dwelling unit is in OR, Lincoln County" -in.county "OR, Linn County" "The dwelling unit is in OR, Linn County" -in.county "OR, Malheur County" "The dwelling unit is in OR, Malheur County" -in.county "OR, Marion County" "The dwelling unit is in OR, Marion County" -in.county "OR, Morrow County" "The dwelling unit is in OR, Morrow County" -in.county "OR, Multnomah County" "The dwelling unit is in OR, Multnomah County" -in.county "OR, Polk County" "The dwelling unit is in OR, Polk County" -in.county "OR, Sherman County" "The dwelling unit is in OR, Sherman County" -in.county "OR, Tillamook County" "The dwelling unit is in OR, Tillamook County" -in.county "OR, Umatilla County" "The dwelling unit is in OR, Umatilla County" -in.county "OR, Union County" "The dwelling unit is in OR, Union County" -in.county "OR, Wallowa County" "The dwelling unit is in OR, Wallowa County" -in.county "OR, Wasco County" "The dwelling unit is in OR, Wasco County" -in.county "OR, Washington County" "The dwelling unit is in OR, Washington County" -in.county "OR, Wheeler County" "The dwelling unit is in OR, Wheeler County" -in.county "OR, Yamhill County" "The dwelling unit is in OR, Yamhill County" -in.county "PA, Adams County" "The dwelling unit is in PA, Adams County" -in.county "PA, Allegheny County" "The dwelling unit is in PA, Allegheny County" -in.county "PA, Armstrong County" "The dwelling unit is in PA, Armstrong County" -in.county "PA, Beaver County" "The dwelling unit is in PA, Beaver County" -in.county "PA, Bedford County" "The dwelling unit is in PA, Bedford County" -in.county "PA, Berks County" "The dwelling unit is in PA, Berks County" -in.county "PA, Blair County" "The dwelling unit is in PA, Blair County" -in.county "PA, Bradford County" "The dwelling unit is in PA, Bradford County" -in.county "PA, Bucks County" "The dwelling unit is in PA, Bucks County" -in.county "PA, Butler County" "The dwelling unit is in PA, Butler County" -in.county "PA, Cambria County" "The dwelling unit is in PA, Cambria County" -in.county "PA, Cameron County" "The dwelling unit is in PA, Cameron County" -in.county "PA, Carbon County" "The dwelling unit is in PA, Carbon County" -in.county "PA, Centre County" "The dwelling unit is in PA, Centre County" -in.county "PA, Chester County" "The dwelling unit is in PA, Chester County" -in.county "PA, Clarion County" "The dwelling unit is in PA, Clarion County" -in.county "PA, Clearfield County" "The dwelling unit is in PA, Clearfield County" -in.county "PA, Clinton County" "The dwelling unit is in PA, Clinton County" -in.county "PA, Columbia County" "The dwelling unit is in PA, Columbia County" -in.county "PA, Crawford County" "The dwelling unit is in PA, Crawford County" -in.county "PA, Cumberland County" "The dwelling unit is in PA, Cumberland County" -in.county "PA, Dauphin County" "The dwelling unit is in PA, Dauphin County" -in.county "PA, Delaware County" "The dwelling unit is in PA, Delaware County" -in.county "PA, Elk County" "The dwelling unit is in PA, Elk County" -in.county "PA, Erie County" "The dwelling unit is in PA, Erie County" -in.county "PA, Fayette County" "The dwelling unit is in PA, Fayette County" -in.county "PA, Forest County" "The dwelling unit is in PA, Forest County" -in.county "PA, Franklin County" "The dwelling unit is in PA, Franklin County" -in.county "PA, Fulton County" "The dwelling unit is in PA, Fulton County" -in.county "PA, Greene County" "The dwelling unit is in PA, Greene County" -in.county "PA, Huntingdon County" "The dwelling unit is in PA, Huntingdon County" -in.county "PA, Indiana County" "The dwelling unit is in PA, Indiana County" -in.county "PA, Jefferson County" "The dwelling unit is in PA, Jefferson County" -in.county "PA, Juniata County" "The dwelling unit is in PA, Juniata County" -in.county "PA, Lackawanna County" "The dwelling unit is in PA, Lackawanna County" -in.county "PA, Lancaster County" "The dwelling unit is in PA, Lancaster County" -in.county "PA, Lawrence County" "The dwelling unit is in PA, Lawrence County" -in.county "PA, Lebanon County" "The dwelling unit is in PA, Lebanon County" -in.county "PA, Lehigh County" "The dwelling unit is in PA, Lehigh County" -in.county "PA, Luzerne County" "The dwelling unit is in PA, Luzerne County" -in.county "PA, Lycoming County" "The dwelling unit is in PA, Lycoming County" -in.county "PA, McKean County" "The dwelling unit is in PA, McKean County" -in.county "PA, Mercer County" "The dwelling unit is in PA, Mercer County" -in.county "PA, Mifflin County" "The dwelling unit is in PA, Mifflin County" -in.county "PA, Monroe County" "The dwelling unit is in PA, Monroe County" -in.county "PA, Montgomery County" "The dwelling unit is in PA, Montgomery County" -in.county "PA, Montour County" "The dwelling unit is in PA, Montour County" -in.county "PA, Northampton County" "The dwelling unit is in PA, Northampton County" -in.county "PA, Northumberland County" "The dwelling unit is in PA, Northumberland County" -in.county "PA, Perry County" "The dwelling unit is in PA, Perry County" -in.county "PA, Philadelphia County" "The dwelling unit is in PA, Philadelphia County" -in.county "PA, Pike County" "The dwelling unit is in PA, Pike County" -in.county "PA, Potter County" "The dwelling unit is in PA, Potter County" -in.county "PA, Schuylkill County" "The dwelling unit is in PA, Schuylkill County" -in.county "PA, Snyder County" "The dwelling unit is in PA, Snyder County" -in.county "PA, Somerset County" "The dwelling unit is in PA, Somerset County" -in.county "PA, Sullivan County" "The dwelling unit is in PA, Sullivan County" -in.county "PA, Susquehanna County" "The dwelling unit is in PA, Susquehanna County" -in.county "PA, Tioga County" "The dwelling unit is in PA, Tioga County" -in.county "PA, Union County" "The dwelling unit is in PA, Union County" -in.county "PA, Venango County" "The dwelling unit is in PA, Venango County" -in.county "PA, Warren County" "The dwelling unit is in PA, Warren County" -in.county "PA, Washington County" "The dwelling unit is in PA, Washington County" -in.county "PA, Wayne County" "The dwelling unit is in PA, Wayne County" -in.county "PA, Westmoreland County" "The dwelling unit is in PA, Westmoreland County" -in.county "PA, Wyoming County" "The dwelling unit is in PA, Wyoming County" -in.county "PA, York County" "The dwelling unit is in PA, York County" -in.county "RI, Bristol County" "The dwelling unit is in RI, Bristol County" -in.county "RI, Kent County" "The dwelling unit is in RI, Kent County" -in.county "RI, Newport County" "The dwelling unit is in RI, Newport County" -in.county "RI, Providence County" "The dwelling unit is in RI, Providence County" -in.county "RI, Washington County" "The dwelling unit is in RI, Washington County" -in.county "SC, Abbeville County" "The dwelling unit is in SC, Abbeville County" -in.county "SC, Aiken County" "The dwelling unit is in SC, Aiken County" -in.county "SC, Allendale County" "The dwelling unit is in SC, Allendale County" -in.county "SC, Anderson County" "The dwelling unit is in SC, Anderson County" -in.county "SC, Bamberg County" "The dwelling unit is in SC, Bamberg County" -in.county "SC, Barnwell County" "The dwelling unit is in SC, Barnwell County" -in.county "SC, Beaufort County" "The dwelling unit is in SC, Beaufort County" -in.county "SC, Berkeley County" "The dwelling unit is in SC, Berkeley County" -in.county "SC, Calhoun County" "The dwelling unit is in SC, Calhoun County" -in.county "SC, Charleston County" "The dwelling unit is in SC, Charleston County" -in.county "SC, Cherokee County" "The dwelling unit is in SC, Cherokee County" -in.county "SC, Chester County" "The dwelling unit is in SC, Chester County" -in.county "SC, Chesterfield County" "The dwelling unit is in SC, Chesterfield County" -in.county "SC, Clarendon County" "The dwelling unit is in SC, Clarendon County" -in.county "SC, Colleton County" "The dwelling unit is in SC, Colleton County" -in.county "SC, Darlington County" "The dwelling unit is in SC, Darlington County" -in.county "SC, Dillon County" "The dwelling unit is in SC, Dillon County" -in.county "SC, Dorchester County" "The dwelling unit is in SC, Dorchester County" -in.county "SC, Edgefield County" "The dwelling unit is in SC, Edgefield County" -in.county "SC, Fairfield County" "The dwelling unit is in SC, Fairfield County" -in.county "SC, Florence County" "The dwelling unit is in SC, Florence County" -in.county "SC, Georgetown County" "The dwelling unit is in SC, Georgetown County" -in.county "SC, Greenville County" "The dwelling unit is in SC, Greenville County" -in.county "SC, Greenwood County" "The dwelling unit is in SC, Greenwood County" -in.county "SC, Hampton County" "The dwelling unit is in SC, Hampton County" -in.county "SC, Horry County" "The dwelling unit is in SC, Horry County" -in.county "SC, Jasper County" "The dwelling unit is in SC, Jasper County" -in.county "SC, Kershaw County" "The dwelling unit is in SC, Kershaw County" -in.county "SC, Lancaster County" "The dwelling unit is in SC, Lancaster County" -in.county "SC, Laurens County" "The dwelling unit is in SC, Laurens County" -in.county "SC, Lee County" "The dwelling unit is in SC, Lee County" -in.county "SC, Lexington County" "The dwelling unit is in SC, Lexington County" -in.county "SC, Marion County" "The dwelling unit is in SC, Marion County" -in.county "SC, Marlboro County" "The dwelling unit is in SC, Marlboro County" -in.county "SC, McCormick County" "The dwelling unit is in SC, McCormick County" -in.county "SC, Newberry County" "The dwelling unit is in SC, Newberry County" -in.county "SC, Oconee County" "The dwelling unit is in SC, Oconee County" -in.county "SC, Orangeburg County" "The dwelling unit is in SC, Orangeburg County" -in.county "SC, Pickens County" "The dwelling unit is in SC, Pickens County" -in.county "SC, Richland County" "The dwelling unit is in SC, Richland County" -in.county "SC, Saluda County" "The dwelling unit is in SC, Saluda County" -in.county "SC, Spartanburg County" "The dwelling unit is in SC, Spartanburg County" -in.county "SC, Sumter County" "The dwelling unit is in SC, Sumter County" -in.county "SC, Union County" "The dwelling unit is in SC, Union County" -in.county "SC, Williamsburg County" "The dwelling unit is in SC, Williamsburg County" -in.county "SC, York County" "The dwelling unit is in SC, York County" -in.county "SD, Aurora County" "The dwelling unit is in SD, Aurora County" -in.county "SD, Beadle County" "The dwelling unit is in SD, Beadle County" -in.county "SD, Bennett County" "The dwelling unit is in SD, Bennett County" -in.county "SD, Bon Homme County" "The dwelling unit is in SD, Bon Homme County" -in.county "SD, Brookings County" "The dwelling unit is in SD, Brookings County" -in.county "SD, Brown County" "The dwelling unit is in SD, Brown County" -in.county "SD, Brule County" "The dwelling unit is in SD, Brule County" -in.county "SD, Buffalo County" "The dwelling unit is in SD, Buffalo County" -in.county "SD, Butte County" "The dwelling unit is in SD, Butte County" -in.county "SD, Campbell County" "The dwelling unit is in SD, Campbell County" -in.county "SD, Charles Mix County" "The dwelling unit is in SD, Charles Mix County" -in.county "SD, Clark County" "The dwelling unit is in SD, Clark County" -in.county "SD, Clay County" "The dwelling unit is in SD, Clay County" -in.county "SD, Codington County" "The dwelling unit is in SD, Codington County" -in.county "SD, Corson County" "The dwelling unit is in SD, Corson County" -in.county "SD, Custer County" "The dwelling unit is in SD, Custer County" -in.county "SD, Davison County" "The dwelling unit is in SD, Davison County" -in.county "SD, Day County" "The dwelling unit is in SD, Day County" -in.county "SD, Deuel County" "The dwelling unit is in SD, Deuel County" -in.county "SD, Dewey County" "The dwelling unit is in SD, Dewey County" -in.county "SD, Douglas County" "The dwelling unit is in SD, Douglas County" -in.county "SD, Edmunds County" "The dwelling unit is in SD, Edmunds County" -in.county "SD, Fall River County" "The dwelling unit is in SD, Fall River County" -in.county "SD, Faulk County" "The dwelling unit is in SD, Faulk County" -in.county "SD, Grant County" "The dwelling unit is in SD, Grant County" -in.county "SD, Gregory County" "The dwelling unit is in SD, Gregory County" -in.county "SD, Haakon County" "The dwelling unit is in SD, Haakon County" -in.county "SD, Hamlin County" "The dwelling unit is in SD, Hamlin County" -in.county "SD, Hand County" "The dwelling unit is in SD, Hand County" -in.county "SD, Hanson County" "The dwelling unit is in SD, Hanson County" -in.county "SD, Harding County" "The dwelling unit is in SD, Harding County" -in.county "SD, Hughes County" "The dwelling unit is in SD, Hughes County" -in.county "SD, Hutchinson County" "The dwelling unit is in SD, Hutchinson County" -in.county "SD, Hyde County" "The dwelling unit is in SD, Hyde County" -in.county "SD, Jackson County" "The dwelling unit is in SD, Jackson County" -in.county "SD, Jerauld County" "The dwelling unit is in SD, Jerauld County" -in.county "SD, Jones County" "The dwelling unit is in SD, Jones County" -in.county "SD, Kingsbury County" "The dwelling unit is in SD, Kingsbury County" -in.county "SD, Lake County" "The dwelling unit is in SD, Lake County" -in.county "SD, Lawrence County" "The dwelling unit is in SD, Lawrence County" -in.county "SD, Lincoln County" "The dwelling unit is in SD, Lincoln County" -in.county "SD, Lyman County" "The dwelling unit is in SD, Lyman County" -in.county "SD, Marshall County" "The dwelling unit is in SD, Marshall County" -in.county "SD, McCook County" "The dwelling unit is in SD, McCook County" -in.county "SD, McPherson County" "The dwelling unit is in SD, McPherson County" -in.county "SD, Meade County" "The dwelling unit is in SD, Meade County" -in.county "SD, Mellette County" "The dwelling unit is in SD, Mellette County" -in.county "SD, Miner County" "The dwelling unit is in SD, Miner County" -in.county "SD, Minnehaha County" "The dwelling unit is in SD, Minnehaha County" -in.county "SD, Moody County" "The dwelling unit is in SD, Moody County" -in.county "SD, Oglala Lakota County" "The dwelling unit is in SD, Oglala Lakota County" -in.county "SD, Pennington County" "The dwelling unit is in SD, Pennington County" -in.county "SD, Perkins County" "The dwelling unit is in SD, Perkins County" -in.county "SD, Potter County" "The dwelling unit is in SD, Potter County" -in.county "SD, Roberts County" "The dwelling unit is in SD, Roberts County" -in.county "SD, Sanborn County" "The dwelling unit is in SD, Sanborn County" -in.county "SD, Spink County" "The dwelling unit is in SD, Spink County" -in.county "SD, Stanley County" "The dwelling unit is in SD, Stanley County" -in.county "SD, Sully County" "The dwelling unit is in SD, Sully County" -in.county "SD, Todd County" "The dwelling unit is in SD, Todd County" -in.county "SD, Tripp County" "The dwelling unit is in SD, Tripp County" -in.county "SD, Turner County" "The dwelling unit is in SD, Turner County" -in.county "SD, Union County" "The dwelling unit is in SD, Union County" -in.county "SD, Walworth County" "The dwelling unit is in SD, Walworth County" -in.county "SD, Yankton County" "The dwelling unit is in SD, Yankton County" -in.county "SD, Ziebach County" "The dwelling unit is in SD, Ziebach County" -in.county "TN, Anderson County" "The dwelling unit is in TN, Anderson County" -in.county "TN, Bedford County" "The dwelling unit is in TN, Bedford County" -in.county "TN, Benton County" "The dwelling unit is in TN, Benton County" -in.county "TN, Bledsoe County" "The dwelling unit is in TN, Bledsoe County" -in.county "TN, Blount County" "The dwelling unit is in TN, Blount County" -in.county "TN, Bradley County" "The dwelling unit is in TN, Bradley County" -in.county "TN, Campbell County" "The dwelling unit is in TN, Campbell County" -in.county "TN, Cannon County" "The dwelling unit is in TN, Cannon County" -in.county "TN, Carroll County" "The dwelling unit is in TN, Carroll County" -in.county "TN, Carter County" "The dwelling unit is in TN, Carter County" -in.county "TN, Cheatham County" "The dwelling unit is in TN, Cheatham County" -in.county "TN, Chester County" "The dwelling unit is in TN, Chester County" -in.county "TN, Claiborne County" "The dwelling unit is in TN, Claiborne County" -in.county "TN, Clay County" "The dwelling unit is in TN, Clay County" -in.county "TN, Cocke County" "The dwelling unit is in TN, Cocke County" -in.county "TN, Coffee County" "The dwelling unit is in TN, Coffee County" -in.county "TN, Crockett County" "The dwelling unit is in TN, Crockett County" -in.county "TN, Cumberland County" "The dwelling unit is in TN, Cumberland County" -in.county "TN, Davidson County" "The dwelling unit is in TN, Davidson County" -in.county "TN, DeKalb County" "The dwelling unit is in TN, DeKalb County" -in.county "TN, Decatur County" "The dwelling unit is in TN, Decatur County" -in.county "TN, Dickson County" "The dwelling unit is in TN, Dickson County" -in.county "TN, Dyer County" "The dwelling unit is in TN, Dyer County" -in.county "TN, Fayette County" "The dwelling unit is in TN, Fayette County" -in.county "TN, Fentress County" "The dwelling unit is in TN, Fentress County" -in.county "TN, Franklin County" "The dwelling unit is in TN, Franklin County" -in.county "TN, Gibson County" "The dwelling unit is in TN, Gibson County" -in.county "TN, Giles County" "The dwelling unit is in TN, Giles County" -in.county "TN, Grainger County" "The dwelling unit is in TN, Grainger County" -in.county "TN, Greene County" "The dwelling unit is in TN, Greene County" -in.county "TN, Grundy County" "The dwelling unit is in TN, Grundy County" -in.county "TN, Hamblen County" "The dwelling unit is in TN, Hamblen County" -in.county "TN, Hamilton County" "The dwelling unit is in TN, Hamilton County" -in.county "TN, Hancock County" "The dwelling unit is in TN, Hancock County" -in.county "TN, Hardeman County" "The dwelling unit is in TN, Hardeman County" -in.county "TN, Hardin County" "The dwelling unit is in TN, Hardin County" -in.county "TN, Hawkins County" "The dwelling unit is in TN, Hawkins County" -in.county "TN, Haywood County" "The dwelling unit is in TN, Haywood County" -in.county "TN, Henderson County" "The dwelling unit is in TN, Henderson County" -in.county "TN, Henry County" "The dwelling unit is in TN, Henry County" -in.county "TN, Hickman County" "The dwelling unit is in TN, Hickman County" -in.county "TN, Houston County" "The dwelling unit is in TN, Houston County" -in.county "TN, Humphreys County" "The dwelling unit is in TN, Humphreys County" -in.county "TN, Jackson County" "The dwelling unit is in TN, Jackson County" -in.county "TN, Jefferson County" "The dwelling unit is in TN, Jefferson County" -in.county "TN, Johnson County" "The dwelling unit is in TN, Johnson County" -in.county "TN, Knox County" "The dwelling unit is in TN, Knox County" -in.county "TN, Lake County" "The dwelling unit is in TN, Lake County" -in.county "TN, Lauderdale County" "The dwelling unit is in TN, Lauderdale County" -in.county "TN, Lawrence County" "The dwelling unit is in TN, Lawrence County" -in.county "TN, Lewis County" "The dwelling unit is in TN, Lewis County" -in.county "TN, Lincoln County" "The dwelling unit is in TN, Lincoln County" -in.county "TN, Loudon County" "The dwelling unit is in TN, Loudon County" -in.county "TN, Macon County" "The dwelling unit is in TN, Macon County" -in.county "TN, Madison County" "The dwelling unit is in TN, Madison County" -in.county "TN, Marion County" "The dwelling unit is in TN, Marion County" -in.county "TN, Marshall County" "The dwelling unit is in TN, Marshall County" -in.county "TN, Maury County" "The dwelling unit is in TN, Maury County" -in.county "TN, McMinn County" "The dwelling unit is in TN, McMinn County" -in.county "TN, McNairy County" "The dwelling unit is in TN, McNairy County" -in.county "TN, Meigs County" "The dwelling unit is in TN, Meigs County" -in.county "TN, Monroe County" "The dwelling unit is in TN, Monroe County" -in.county "TN, Montgomery County" "The dwelling unit is in TN, Montgomery County" -in.county "TN, Moore County" "The dwelling unit is in TN, Moore County" -in.county "TN, Morgan County" "The dwelling unit is in TN, Morgan County" -in.county "TN, Obion County" "The dwelling unit is in TN, Obion County" -in.county "TN, Overton County" "The dwelling unit is in TN, Overton County" -in.county "TN, Perry County" "The dwelling unit is in TN, Perry County" -in.county "TN, Pickett County" "The dwelling unit is in TN, Pickett County" -in.county "TN, Polk County" "The dwelling unit is in TN, Polk County" -in.county "TN, Putnam County" "The dwelling unit is in TN, Putnam County" -in.county "TN, Rhea County" "The dwelling unit is in TN, Rhea County" -in.county "TN, Roane County" "The dwelling unit is in TN, Roane County" -in.county "TN, Robertson County" "The dwelling unit is in TN, Robertson County" -in.county "TN, Rutherford County" "The dwelling unit is in TN, Rutherford County" -in.county "TN, Scott County" "The dwelling unit is in TN, Scott County" -in.county "TN, Sequatchie County" "The dwelling unit is in TN, Sequatchie County" -in.county "TN, Sevier County" "The dwelling unit is in TN, Sevier County" -in.county "TN, Shelby County" "The dwelling unit is in TN, Shelby County" -in.county "TN, Smith County" "The dwelling unit is in TN, Smith County" -in.county "TN, Stewart County" "The dwelling unit is in TN, Stewart County" -in.county "TN, Sullivan County" "The dwelling unit is in TN, Sullivan County" -in.county "TN, Sumner County" "The dwelling unit is in TN, Sumner County" -in.county "TN, Tipton County" "The dwelling unit is in TN, Tipton County" -in.county "TN, Trousdale County" "The dwelling unit is in TN, Trousdale County" -in.county "TN, Unicoi County" "The dwelling unit is in TN, Unicoi County" -in.county "TN, Union County" "The dwelling unit is in TN, Union County" -in.county "TN, Van Buren County" "The dwelling unit is in TN, Van Buren County" -in.county "TN, Warren County" "The dwelling unit is in TN, Warren County" -in.county "TN, Washington County" "The dwelling unit is in TN, Washington County" -in.county "TN, Wayne County" "The dwelling unit is in TN, Wayne County" -in.county "TN, Weakley County" "The dwelling unit is in TN, Weakley County" -in.county "TN, White County" "The dwelling unit is in TN, White County" -in.county "TN, Williamson County" "The dwelling unit is in TN, Williamson County" -in.county "TN, Wilson County" "The dwelling unit is in TN, Wilson County" -in.county "TX, Anderson County" "The dwelling unit is in TX, Anderson County" -in.county "TX, Andrews County" "The dwelling unit is in TX, Andrews County" -in.county "TX, Angelina County" "The dwelling unit is in TX, Angelina County" -in.county "TX, Aransas County" "The dwelling unit is in TX, Aransas County" -in.county "TX, Archer County" "The dwelling unit is in TX, Archer County" -in.county "TX, Armstrong County" "The dwelling unit is in TX, Armstrong County" -in.county "TX, Atascosa County" "The dwelling unit is in TX, Atascosa County" -in.county "TX, Austin County" "The dwelling unit is in TX, Austin County" -in.county "TX, Bailey County" "The dwelling unit is in TX, Bailey County" -in.county "TX, Bandera County" "The dwelling unit is in TX, Bandera County" -in.county "TX, Bastrop County" "The dwelling unit is in TX, Bastrop County" -in.county "TX, Baylor County" "The dwelling unit is in TX, Baylor County" -in.county "TX, Bee County" "The dwelling unit is in TX, Bee County" -in.county "TX, Bell County" "The dwelling unit is in TX, Bell County" -in.county "TX, Bexar County" "The dwelling unit is in TX, Bexar County" -in.county "TX, Blanco County" "The dwelling unit is in TX, Blanco County" -in.county "TX, Borden County" "The dwelling unit is in TX, Borden County" -in.county "TX, Bosque County" "The dwelling unit is in TX, Bosque County" -in.county "TX, Bowie County" "The dwelling unit is in TX, Bowie County" -in.county "TX, Brazoria County" "The dwelling unit is in TX, Brazoria County" -in.county "TX, Brazos County" "The dwelling unit is in TX, Brazos County" -in.county "TX, Brewster County" "The dwelling unit is in TX, Brewster County" -in.county "TX, Briscoe County" "The dwelling unit is in TX, Briscoe County" -in.county "TX, Brooks County" "The dwelling unit is in TX, Brooks County" -in.county "TX, Brown County" "The dwelling unit is in TX, Brown County" -in.county "TX, Burleson County" "The dwelling unit is in TX, Burleson County" -in.county "TX, Burnet County" "The dwelling unit is in TX, Burnet County" -in.county "TX, Caldwell County" "The dwelling unit is in TX, Caldwell County" -in.county "TX, Calhoun County" "The dwelling unit is in TX, Calhoun County" -in.county "TX, Callahan County" "The dwelling unit is in TX, Callahan County" -in.county "TX, Cameron County" "The dwelling unit is in TX, Cameron County" -in.county "TX, Camp County" "The dwelling unit is in TX, Camp County" -in.county "TX, Carson County" "The dwelling unit is in TX, Carson County" -in.county "TX, Cass County" "The dwelling unit is in TX, Cass County" -in.county "TX, Castro County" "The dwelling unit is in TX, Castro County" -in.county "TX, Chambers County" "The dwelling unit is in TX, Chambers County" -in.county "TX, Cherokee County" "The dwelling unit is in TX, Cherokee County" -in.county "TX, Childress County" "The dwelling unit is in TX, Childress County" -in.county "TX, Clay County" "The dwelling unit is in TX, Clay County" -in.county "TX, Cochran County" "The dwelling unit is in TX, Cochran County" -in.county "TX, Coke County" "The dwelling unit is in TX, Coke County" -in.county "TX, Coleman County" "The dwelling unit is in TX, Coleman County" -in.county "TX, Collin County" "The dwelling unit is in TX, Collin County" -in.county "TX, Collingsworth County" "The dwelling unit is in TX, Collingsworth County" -in.county "TX, Colorado County" "The dwelling unit is in TX, Colorado County" -in.county "TX, Comal County" "The dwelling unit is in TX, Comal County" -in.county "TX, Comanche County" "The dwelling unit is in TX, Comanche County" -in.county "TX, Concho County" "The dwelling unit is in TX, Concho County" -in.county "TX, Cooke County" "The dwelling unit is in TX, Cooke County" -in.county "TX, Coryell County" "The dwelling unit is in TX, Coryell County" -in.county "TX, Cottle County" "The dwelling unit is in TX, Cottle County" -in.county "TX, Crane County" "The dwelling unit is in TX, Crane County" -in.county "TX, Crockett County" "The dwelling unit is in TX, Crockett County" -in.county "TX, Crosby County" "The dwelling unit is in TX, Crosby County" -in.county "TX, Culberson County" "The dwelling unit is in TX, Culberson County" -in.county "TX, Dallam County" "The dwelling unit is in TX, Dallam County" -in.county "TX, Dallas County" "The dwelling unit is in TX, Dallas County" -in.county "TX, Dawson County" "The dwelling unit is in TX, Dawson County" -in.county "TX, DeWitt County" "The dwelling unit is in TX, DeWitt County" -in.county "TX, Deaf Smith County" "The dwelling unit is in TX, Deaf Smith County" -in.county "TX, Delta County" "The dwelling unit is in TX, Delta County" -in.county "TX, Denton County" "The dwelling unit is in TX, Denton County" -in.county "TX, Dickens County" "The dwelling unit is in TX, Dickens County" -in.county "TX, Dimmit County" "The dwelling unit is in TX, Dimmit County" -in.county "TX, Donley County" "The dwelling unit is in TX, Donley County" -in.county "TX, Duval County" "The dwelling unit is in TX, Duval County" -in.county "TX, Eastland County" "The dwelling unit is in TX, Eastland County" -in.county "TX, Ector County" "The dwelling unit is in TX, Ector County" -in.county "TX, Edwards County" "The dwelling unit is in TX, Edwards County" -in.county "TX, El Paso County" "The dwelling unit is in TX, El Paso County" -in.county "TX, Ellis County" "The dwelling unit is in TX, Ellis County" -in.county "TX, Erath County" "The dwelling unit is in TX, Erath County" -in.county "TX, Falls County" "The dwelling unit is in TX, Falls County" -in.county "TX, Fannin County" "The dwelling unit is in TX, Fannin County" -in.county "TX, Fayette County" "The dwelling unit is in TX, Fayette County" -in.county "TX, Fisher County" "The dwelling unit is in TX, Fisher County" -in.county "TX, Floyd County" "The dwelling unit is in TX, Floyd County" -in.county "TX, Foard County" "The dwelling unit is in TX, Foard County" -in.county "TX, Fort Bend County" "The dwelling unit is in TX, Fort Bend County" -in.county "TX, Franklin County" "The dwelling unit is in TX, Franklin County" -in.county "TX, Freestone County" "The dwelling unit is in TX, Freestone County" -in.county "TX, Frio County" "The dwelling unit is in TX, Frio County" -in.county "TX, Gaines County" "The dwelling unit is in TX, Gaines County" -in.county "TX, Galveston County" "The dwelling unit is in TX, Galveston County" -in.county "TX, Garza County" "The dwelling unit is in TX, Garza County" -in.county "TX, Gillespie County" "The dwelling unit is in TX, Gillespie County" -in.county "TX, Glasscock County" "The dwelling unit is in TX, Glasscock County" -in.county "TX, Goliad County" "The dwelling unit is in TX, Goliad County" -in.county "TX, Gonzales County" "The dwelling unit is in TX, Gonzales County" -in.county "TX, Gray County" "The dwelling unit is in TX, Gray County" -in.county "TX, Grayson County" "The dwelling unit is in TX, Grayson County" -in.county "TX, Gregg County" "The dwelling unit is in TX, Gregg County" -in.county "TX, Grimes County" "The dwelling unit is in TX, Grimes County" -in.county "TX, Guadalupe County" "The dwelling unit is in TX, Guadalupe County" -in.county "TX, Hale County" "The dwelling unit is in TX, Hale County" -in.county "TX, Hall County" "The dwelling unit is in TX, Hall County" -in.county "TX, Hamilton County" "The dwelling unit is in TX, Hamilton County" -in.county "TX, Hansford County" "The dwelling unit is in TX, Hansford County" -in.county "TX, Hardeman County" "The dwelling unit is in TX, Hardeman County" -in.county "TX, Hardin County" "The dwelling unit is in TX, Hardin County" -in.county "TX, Harris County" "The dwelling unit is in TX, Harris County" -in.county "TX, Harrison County" "The dwelling unit is in TX, Harrison County" -in.county "TX, Hartley County" "The dwelling unit is in TX, Hartley County" -in.county "TX, Haskell County" "The dwelling unit is in TX, Haskell County" -in.county "TX, Hays County" "The dwelling unit is in TX, Hays County" -in.county "TX, Hemphill County" "The dwelling unit is in TX, Hemphill County" -in.county "TX, Henderson County" "The dwelling unit is in TX, Henderson County" -in.county "TX, Hidalgo County" "The dwelling unit is in TX, Hidalgo County" -in.county "TX, Hill County" "The dwelling unit is in TX, Hill County" -in.county "TX, Hockley County" "The dwelling unit is in TX, Hockley County" -in.county "TX, Hood County" "The dwelling unit is in TX, Hood County" -in.county "TX, Hopkins County" "The dwelling unit is in TX, Hopkins County" -in.county "TX, Houston County" "The dwelling unit is in TX, Houston County" -in.county "TX, Howard County" "The dwelling unit is in TX, Howard County" -in.county "TX, Hudspeth County" "The dwelling unit is in TX, Hudspeth County" -in.county "TX, Hunt County" "The dwelling unit is in TX, Hunt County" -in.county "TX, Hutchinson County" "The dwelling unit is in TX, Hutchinson County" -in.county "TX, Irion County" "The dwelling unit is in TX, Irion County" -in.county "TX, Jack County" "The dwelling unit is in TX, Jack County" -in.county "TX, Jackson County" "The dwelling unit is in TX, Jackson County" -in.county "TX, Jasper County" "The dwelling unit is in TX, Jasper County" -in.county "TX, Jeff Davis County" "The dwelling unit is in TX, Jeff Davis County" -in.county "TX, Jefferson County" "The dwelling unit is in TX, Jefferson County" -in.county "TX, Jim Hogg County" "The dwelling unit is in TX, Jim Hogg County" -in.county "TX, Jim Wells County" "The dwelling unit is in TX, Jim Wells County" -in.county "TX, Johnson County" "The dwelling unit is in TX, Johnson County" -in.county "TX, Jones County" "The dwelling unit is in TX, Jones County" -in.county "TX, Karnes County" "The dwelling unit is in TX, Karnes County" -in.county "TX, Kaufman County" "The dwelling unit is in TX, Kaufman County" -in.county "TX, Kendall County" "The dwelling unit is in TX, Kendall County" -in.county "TX, Kenedy County" "The dwelling unit is in TX, Kenedy County" -in.county "TX, Kent County" "The dwelling unit is in TX, Kent County" -in.county "TX, Kerr County" "The dwelling unit is in TX, Kerr County" -in.county "TX, Kimble County" "The dwelling unit is in TX, Kimble County" -in.county "TX, King County" "The dwelling unit is in TX, King County" -in.county "TX, Kinney County" "The dwelling unit is in TX, Kinney County" -in.county "TX, Kleberg County" "The dwelling unit is in TX, Kleberg County" -in.county "TX, Knox County" "The dwelling unit is in TX, Knox County" -in.county "TX, La Salle County" "The dwelling unit is in TX, La Salle County" -in.county "TX, Lamar County" "The dwelling unit is in TX, Lamar County" -in.county "TX, Lamb County" "The dwelling unit is in TX, Lamb County" -in.county "TX, Lampasas County" "The dwelling unit is in TX, Lampasas County" -in.county "TX, Lavaca County" "The dwelling unit is in TX, Lavaca County" -in.county "TX, Lee County" "The dwelling unit is in TX, Lee County" -in.county "TX, Leon County" "The dwelling unit is in TX, Leon County" -in.county "TX, Liberty County" "The dwelling unit is in TX, Liberty County" -in.county "TX, Limestone County" "The dwelling unit is in TX, Limestone County" -in.county "TX, Lipscomb County" "The dwelling unit is in TX, Lipscomb County" -in.county "TX, Live Oak County" "The dwelling unit is in TX, Live Oak County" -in.county "TX, Llano County" "The dwelling unit is in TX, Llano County" -in.county "TX, Lubbock County" "The dwelling unit is in TX, Lubbock County" -in.county "TX, Lynn County" "The dwelling unit is in TX, Lynn County" -in.county "TX, Madison County" "The dwelling unit is in TX, Madison County" -in.county "TX, Marion County" "The dwelling unit is in TX, Marion County" -in.county "TX, Martin County" "The dwelling unit is in TX, Martin County" -in.county "TX, Mason County" "The dwelling unit is in TX, Mason County" -in.county "TX, Matagorda County" "The dwelling unit is in TX, Matagorda County" -in.county "TX, Maverick County" "The dwelling unit is in TX, Maverick County" -in.county "TX, McCulloch County" "The dwelling unit is in TX, McCulloch County" -in.county "TX, McLennan County" "The dwelling unit is in TX, McLennan County" -in.county "TX, McMullen County" "The dwelling unit is in TX, McMullen County" -in.county "TX, Medina County" "The dwelling unit is in TX, Medina County" -in.county "TX, Menard County" "The dwelling unit is in TX, Menard County" -in.county "TX, Midland County" "The dwelling unit is in TX, Midland County" -in.county "TX, Milam County" "The dwelling unit is in TX, Milam County" -in.county "TX, Mills County" "The dwelling unit is in TX, Mills County" -in.county "TX, Mitchell County" "The dwelling unit is in TX, Mitchell County" -in.county "TX, Montague County" "The dwelling unit is in TX, Montague County" -in.county "TX, Montgomery County" "The dwelling unit is in TX, Montgomery County" -in.county "TX, Moore County" "The dwelling unit is in TX, Moore County" -in.county "TX, Morris County" "The dwelling unit is in TX, Morris County" -in.county "TX, Motley County" "The dwelling unit is in TX, Motley County" -in.county "TX, Nacogdoches County" "The dwelling unit is in TX, Nacogdoches County" -in.county "TX, Navarro County" "The dwelling unit is in TX, Navarro County" -in.county "TX, Newton County" "The dwelling unit is in TX, Newton County" -in.county "TX, Nolan County" "The dwelling unit is in TX, Nolan County" -in.county "TX, Nueces County" "The dwelling unit is in TX, Nueces County" -in.county "TX, Ochiltree County" "The dwelling unit is in TX, Ochiltree County" -in.county "TX, Oldham County" "The dwelling unit is in TX, Oldham County" -in.county "TX, Orange County" "The dwelling unit is in TX, Orange County" -in.county "TX, Palo Pinto County" "The dwelling unit is in TX, Palo Pinto County" -in.county "TX, Panola County" "The dwelling unit is in TX, Panola County" -in.county "TX, Parker County" "The dwelling unit is in TX, Parker County" -in.county "TX, Parmer County" "The dwelling unit is in TX, Parmer County" -in.county "TX, Pecos County" "The dwelling unit is in TX, Pecos County" -in.county "TX, Polk County" "The dwelling unit is in TX, Polk County" -in.county "TX, Potter County" "The dwelling unit is in TX, Potter County" -in.county "TX, Presidio County" "The dwelling unit is in TX, Presidio County" -in.county "TX, Rains County" "The dwelling unit is in TX, Rains County" -in.county "TX, Randall County" "The dwelling unit is in TX, Randall County" -in.county "TX, Reagan County" "The dwelling unit is in TX, Reagan County" -in.county "TX, Real County" "The dwelling unit is in TX, Real County" -in.county "TX, Red River County" "The dwelling unit is in TX, Red River County" -in.county "TX, Reeves County" "The dwelling unit is in TX, Reeves County" -in.county "TX, Refugio County" "The dwelling unit is in TX, Refugio County" -in.county "TX, Roberts County" "The dwelling unit is in TX, Roberts County" -in.county "TX, Robertson County" "The dwelling unit is in TX, Robertson County" -in.county "TX, Rockwall County" "The dwelling unit is in TX, Rockwall County" -in.county "TX, Runnels County" "The dwelling unit is in TX, Runnels County" -in.county "TX, Rusk County" "The dwelling unit is in TX, Rusk County" -in.county "TX, Sabine County" "The dwelling unit is in TX, Sabine County" -in.county "TX, San Augustine County" "The dwelling unit is in TX, San Augustine County" -in.county "TX, San Jacinto County" "The dwelling unit is in TX, San Jacinto County" -in.county "TX, San Patricio County" "The dwelling unit is in TX, San Patricio County" -in.county "TX, San Saba County" "The dwelling unit is in TX, San Saba County" -in.county "TX, Schleicher County" "The dwelling unit is in TX, Schleicher County" -in.county "TX, Scurry County" "The dwelling unit is in TX, Scurry County" -in.county "TX, Shackelford County" "The dwelling unit is in TX, Shackelford County" -in.county "TX, Shelby County" "The dwelling unit is in TX, Shelby County" -in.county "TX, Sherman County" "The dwelling unit is in TX, Sherman County" -in.county "TX, Smith County" "The dwelling unit is in TX, Smith County" -in.county "TX, Somervell County" "The dwelling unit is in TX, Somervell County" -in.county "TX, Starr County" "The dwelling unit is in TX, Starr County" -in.county "TX, Stephens County" "The dwelling unit is in TX, Stephens County" -in.county "TX, Sterling County" "The dwelling unit is in TX, Sterling County" -in.county "TX, Stonewall County" "The dwelling unit is in TX, Stonewall County" -in.county "TX, Sutton County" "The dwelling unit is in TX, Sutton County" -in.county "TX, Swisher County" "The dwelling unit is in TX, Swisher County" -in.county "TX, Tarrant County" "The dwelling unit is in TX, Tarrant County" -in.county "TX, Taylor County" "The dwelling unit is in TX, Taylor County" -in.county "TX, Terrell County" "The dwelling unit is in TX, Terrell County" -in.county "TX, Terry County" "The dwelling unit is in TX, Terry County" -in.county "TX, Throckmorton County" "The dwelling unit is in TX, Throckmorton County" -in.county "TX, Titus County" "The dwelling unit is in TX, Titus County" -in.county "TX, Tom Green County" "The dwelling unit is in TX, Tom Green County" -in.county "TX, Travis County" "The dwelling unit is in TX, Travis County" -in.county "TX, Trinity County" "The dwelling unit is in TX, Trinity County" -in.county "TX, Tyler County" "The dwelling unit is in TX, Tyler County" -in.county "TX, Upshur County" "The dwelling unit is in TX, Upshur County" -in.county "TX, Upton County" "The dwelling unit is in TX, Upton County" -in.county "TX, Uvalde County" "The dwelling unit is in TX, Uvalde County" -in.county "TX, Val Verde County" "The dwelling unit is in TX, Val Verde County" -in.county "TX, Van Zandt County" "The dwelling unit is in TX, Van Zandt County" -in.county "TX, Victoria County" "The dwelling unit is in TX, Victoria County" -in.county "TX, Walker County" "The dwelling unit is in TX, Walker County" -in.county "TX, Waller County" "The dwelling unit is in TX, Waller County" -in.county "TX, Ward County" "The dwelling unit is in TX, Ward County" -in.county "TX, Washington County" "The dwelling unit is in TX, Washington County" -in.county "TX, Webb County" "The dwelling unit is in TX, Webb County" -in.county "TX, Wharton County" "The dwelling unit is in TX, Wharton County" -in.county "TX, Wheeler County" "The dwelling unit is in TX, Wheeler County" -in.county "TX, Wichita County" "The dwelling unit is in TX, Wichita County" -in.county "TX, Wilbarger County" "The dwelling unit is in TX, Wilbarger County" -in.county "TX, Willacy County" "The dwelling unit is in TX, Willacy County" -in.county "TX, Williamson County" "The dwelling unit is in TX, Williamson County" -in.county "TX, Wilson County" "The dwelling unit is in TX, Wilson County" -in.county "TX, Winkler County" "The dwelling unit is in TX, Winkler County" -in.county "TX, Wise County" "The dwelling unit is in TX, Wise County" -in.county "TX, Wood County" "The dwelling unit is in TX, Wood County" -in.county "TX, Yoakum County" "The dwelling unit is in TX, Yoakum County" -in.county "TX, Young County" "The dwelling unit is in TX, Young County" -in.county "TX, Zapata County" "The dwelling unit is in TX, Zapata County" -in.county "TX, Zavala County" "The dwelling unit is in TX, Zavala County" -in.county "UT, Beaver County" "The dwelling unit is in UT, Beaver County" -in.county "UT, Box Elder County" "The dwelling unit is in UT, Box Elder County" -in.county "UT, Cache County" "The dwelling unit is in UT, Cache County" -in.county "UT, Carbon County" "The dwelling unit is in UT, Carbon County" -in.county "UT, Daggett County" "The dwelling unit is in UT, Daggett County" -in.county "UT, Davis County" "The dwelling unit is in UT, Davis County" -in.county "UT, Duchesne County" "The dwelling unit is in UT, Duchesne County" -in.county "UT, Emery County" "The dwelling unit is in UT, Emery County" -in.county "UT, Garfield County" "The dwelling unit is in UT, Garfield County" -in.county "UT, Grand County" "The dwelling unit is in UT, Grand County" -in.county "UT, Iron County" "The dwelling unit is in UT, Iron County" -in.county "UT, Juab County" "The dwelling unit is in UT, Juab County" -in.county "UT, Kane County" "The dwelling unit is in UT, Kane County" -in.county "UT, Millard County" "The dwelling unit is in UT, Millard County" -in.county "UT, Morgan County" "The dwelling unit is in UT, Morgan County" -in.county "UT, Piute County" "The dwelling unit is in UT, Piute County" -in.county "UT, Rich County" "The dwelling unit is in UT, Rich County" -in.county "UT, Salt Lake County" "The dwelling unit is in UT, Salt Lake County" -in.county "UT, San Juan County" "The dwelling unit is in UT, San Juan County" -in.county "UT, Sanpete County" "The dwelling unit is in UT, Sanpete County" -in.county "UT, Sevier County" "The dwelling unit is in UT, Sevier County" -in.county "UT, Summit County" "The dwelling unit is in UT, Summit County" -in.county "UT, Tooele County" "The dwelling unit is in UT, Tooele County" -in.county "UT, Uintah County" "The dwelling unit is in UT, Uintah County" -in.county "UT, Utah County" "The dwelling unit is in UT, Utah County" -in.county "UT, Wasatch County" "The dwelling unit is in UT, Wasatch County" -in.county "UT, Washington County" "The dwelling unit is in UT, Washington County" -in.county "UT, Wayne County" "The dwelling unit is in UT, Wayne County" -in.county "UT, Weber County" "The dwelling unit is in UT, Weber County" -in.county "VA, Accomack County" "The dwelling unit is in VA, Accomack County" -in.county "VA, Albemarle County" "The dwelling unit is in VA, Albemarle County" -in.county "VA, Alexandria city" "The dwelling unit is in VA, Alexandria city" -in.county "VA, Alleghany County" "The dwelling unit is in VA, Alleghany County" -in.county "VA, Amelia County" "The dwelling unit is in VA, Amelia County" -in.county "VA, Amherst County" "The dwelling unit is in VA, Amherst County" -in.county "VA, Appomattox County" "The dwelling unit is in VA, Appomattox County" -in.county "VA, Arlington County" "The dwelling unit is in VA, Arlington County" -in.county "VA, Augusta County" "The dwelling unit is in VA, Augusta County" -in.county "VA, Bath County" "The dwelling unit is in VA, Bath County" -in.county "VA, Bedford County" "The dwelling unit is in VA, Bedford County" -in.county "VA, Bland County" "The dwelling unit is in VA, Bland County" -in.county "VA, Botetourt County" "The dwelling unit is in VA, Botetourt County" -in.county "VA, Bristol city" "The dwelling unit is in VA, Bristol city" -in.county "VA, Brunswick County" "The dwelling unit is in VA, Brunswick County" -in.county "VA, Buchanan County" "The dwelling unit is in VA, Buchanan County" -in.county "VA, Buckingham County" "The dwelling unit is in VA, Buckingham County" -in.county "VA, Buena Vista city" "The dwelling unit is in VA, Buena Vista city" -in.county "VA, Campbell County" "The dwelling unit is in VA, Campbell County" -in.county "VA, Caroline County" "The dwelling unit is in VA, Caroline County" -in.county "VA, Carroll County" "The dwelling unit is in VA, Carroll County" -in.county "VA, Charles City County" "The dwelling unit is in VA, Charles City County" -in.county "VA, Charlotte County" "The dwelling unit is in VA, Charlotte County" -in.county "VA, Charlottesville city" "The dwelling unit is in VA, Charlottesville city" -in.county "VA, Chesapeake city" "The dwelling unit is in VA, Chesapeake city" -in.county "VA, Chesterfield County" "The dwelling unit is in VA, Chesterfield County" -in.county "VA, Clarke County" "The dwelling unit is in VA, Clarke County" -in.county "VA, Colonial Heights city" "The dwelling unit is in VA, Colonial Heights city" -in.county "VA, Covington city" "The dwelling unit is in VA, Covington city" -in.county "VA, Craig County" "The dwelling unit is in VA, Craig County" -in.county "VA, Culpeper County" "The dwelling unit is in VA, Culpeper County" -in.county "VA, Cumberland County" "The dwelling unit is in VA, Cumberland County" -in.county "VA, Danville city" "The dwelling unit is in VA, Danville city" -in.county "VA, Dickenson County" "The dwelling unit is in VA, Dickenson County" -in.county "VA, Dinwiddie County" "The dwelling unit is in VA, Dinwiddie County" -in.county "VA, Emporia city" "The dwelling unit is in VA, Emporia city" -in.county "VA, Essex County" "The dwelling unit is in VA, Essex County" -in.county "VA, Fairfax County" "The dwelling unit is in VA, Fairfax County" -in.county "VA, Fairfax city" "The dwelling unit is in VA, Fairfax city" -in.county "VA, Falls Church city" "The dwelling unit is in VA, Falls Church city" -in.county "VA, Fauquier County" "The dwelling unit is in VA, Fauquier County" -in.county "VA, Floyd County" "The dwelling unit is in VA, Floyd County" -in.county "VA, Fluvanna County" "The dwelling unit is in VA, Fluvanna County" -in.county "VA, Franklin County" "The dwelling unit is in VA, Franklin County" -in.county "VA, Franklin city" "The dwelling unit is in VA, Franklin city" -in.county "VA, Frederick County" "The dwelling unit is in VA, Frederick County" -in.county "VA, Fredericksburg city" "The dwelling unit is in VA, Fredericksburg city" -in.county "VA, Galax city" "The dwelling unit is in VA, Galax city" -in.county "VA, Giles County" "The dwelling unit is in VA, Giles County" -in.county "VA, Gloucester County" "The dwelling unit is in VA, Gloucester County" -in.county "VA, Goochland County" "The dwelling unit is in VA, Goochland County" -in.county "VA, Grayson County" "The dwelling unit is in VA, Grayson County" -in.county "VA, Greene County" "The dwelling unit is in VA, Greene County" -in.county "VA, Greensville County" "The dwelling unit is in VA, Greensville County" -in.county "VA, Halifax County" "The dwelling unit is in VA, Halifax County" -in.county "VA, Hampton city" "The dwelling unit is in VA, Hampton city" -in.county "VA, Hanover County" "The dwelling unit is in VA, Hanover County" -in.county "VA, Harrisonburg city" "The dwelling unit is in VA, Harrisonburg city" -in.county "VA, Henrico County" "The dwelling unit is in VA, Henrico County" -in.county "VA, Henry County" "The dwelling unit is in VA, Henry County" -in.county "VA, Highland County" "The dwelling unit is in VA, Highland County" -in.county "VA, Hopewell city" "The dwelling unit is in VA, Hopewell city" -in.county "VA, Isle of Wight County" "The dwelling unit is in VA, Isle of Wight County" -in.county "VA, James City County" "The dwelling unit is in VA, James City County" -in.county "VA, King George County" "The dwelling unit is in VA, King George County" -in.county "VA, King William County" "The dwelling unit is in VA, King William County" -in.county "VA, King and Queen County" "The dwelling unit is in VA, King and Queen County" -in.county "VA, Lancaster County" "The dwelling unit is in VA, Lancaster County" -in.county "VA, Lee County" "The dwelling unit is in VA, Lee County" -in.county "VA, Lexington city" "The dwelling unit is in VA, Lexington city" -in.county "VA, Loudoun County" "The dwelling unit is in VA, Loudoun County" -in.county "VA, Louisa County" "The dwelling unit is in VA, Louisa County" -in.county "VA, Lunenburg County" "The dwelling unit is in VA, Lunenburg County" -in.county "VA, Lynchburg city" "The dwelling unit is in VA, Lynchburg city" -in.county "VA, Madison County" "The dwelling unit is in VA, Madison County" -in.county "VA, Manassas Park city" "The dwelling unit is in VA, Manassas Park city" -in.county "VA, Manassas city" "The dwelling unit is in VA, Manassas city" -in.county "VA, Martinsville city" "The dwelling unit is in VA, Martinsville city" -in.county "VA, Mathews County" "The dwelling unit is in VA, Mathews County" -in.county "VA, Mecklenburg County" "The dwelling unit is in VA, Mecklenburg County" -in.county "VA, Middlesex County" "The dwelling unit is in VA, Middlesex County" -in.county "VA, Montgomery County" "The dwelling unit is in VA, Montgomery County" -in.county "VA, Nelson County" "The dwelling unit is in VA, Nelson County" -in.county "VA, New Kent County" "The dwelling unit is in VA, New Kent County" -in.county "VA, Newport News city" "The dwelling unit is in VA, Newport News city" -in.county "VA, Norfolk city" "The dwelling unit is in VA, Norfolk city" -in.county "VA, Northampton County" "The dwelling unit is in VA, Northampton County" -in.county "VA, Northumberland County" "The dwelling unit is in VA, Northumberland County" -in.county "VA, Norton city" "The dwelling unit is in VA, Norton city" -in.county "VA, Nottoway County" "The dwelling unit is in VA, Nottoway County" -in.county "VA, Orange County" "The dwelling unit is in VA, Orange County" -in.county "VA, Page County" "The dwelling unit is in VA, Page County" -in.county "VA, Patrick County" "The dwelling unit is in VA, Patrick County" -in.county "VA, Petersburg city" "The dwelling unit is in VA, Petersburg city" -in.county "VA, Pittsylvania County" "The dwelling unit is in VA, Pittsylvania County" -in.county "VA, Poquoson city" "The dwelling unit is in VA, Poquoson city" -in.county "VA, Portsmouth city" "The dwelling unit is in VA, Portsmouth city" -in.county "VA, Powhatan County" "The dwelling unit is in VA, Powhatan County" -in.county "VA, Prince Edward County" "The dwelling unit is in VA, Prince Edward County" -in.county "VA, Prince George County" "The dwelling unit is in VA, Prince George County" -in.county "VA, Prince William County" "The dwelling unit is in VA, Prince William County" -in.county "VA, Pulaski County" "The dwelling unit is in VA, Pulaski County" -in.county "VA, Radford city" "The dwelling unit is in VA, Radford city" -in.county "VA, Rappahannock County" "The dwelling unit is in VA, Rappahannock County" -in.county "VA, Richmond County" "The dwelling unit is in VA, Richmond County" -in.county "VA, Richmond city" "The dwelling unit is in VA, Richmond city" -in.county "VA, Roanoke County" "The dwelling unit is in VA, Roanoke County" -in.county "VA, Roanoke city" "The dwelling unit is in VA, Roanoke city" -in.county "VA, Rockbridge County" "The dwelling unit is in VA, Rockbridge County" -in.county "VA, Rockingham County" "The dwelling unit is in VA, Rockingham County" -in.county "VA, Russell County" "The dwelling unit is in VA, Russell County" -in.county "VA, Salem city" "The dwelling unit is in VA, Salem city" -in.county "VA, Scott County" "The dwelling unit is in VA, Scott County" -in.county "VA, Shenandoah County" "The dwelling unit is in VA, Shenandoah County" -in.county "VA, Smyth County" "The dwelling unit is in VA, Smyth County" -in.county "VA, Southampton County" "The dwelling unit is in VA, Southampton County" -in.county "VA, Spotsylvania County" "The dwelling unit is in VA, Spotsylvania County" -in.county "VA, Stafford County" "The dwelling unit is in VA, Stafford County" -in.county "VA, Staunton city" "The dwelling unit is in VA, Staunton city" -in.county "VA, Suffolk city" "The dwelling unit is in VA, Suffolk city" -in.county "VA, Surry County" "The dwelling unit is in VA, Surry County" -in.county "VA, Sussex County" "The dwelling unit is in VA, Sussex County" -in.county "VA, Tazewell County" "The dwelling unit is in VA, Tazewell County" -in.county "VA, Virginia Beach city" "The dwelling unit is in VA, Virginia Beach city" -in.county "VA, Warren County" "The dwelling unit is in VA, Warren County" -in.county "VA, Washington County" "The dwelling unit is in VA, Washington County" -in.county "VA, Waynesboro city" "The dwelling unit is in VA, Waynesboro city" -in.county "VA, Westmoreland County" "The dwelling unit is in VA, Westmoreland County" -in.county "VA, Williamsburg city" "The dwelling unit is in VA, Williamsburg city" -in.county "VA, Winchester city" "The dwelling unit is in VA, Winchester city" -in.county "VA, Wise County" "The dwelling unit is in VA, Wise County" -in.county "VA, Wythe County" "The dwelling unit is in VA, Wythe County" -in.county "VA, York County" "The dwelling unit is in VA, York County" -in.county "VT, Addison County" "The dwelling unit is in VT, Addison County" -in.county "VT, Bennington County" "The dwelling unit is in VT, Bennington County" -in.county "VT, Caledonia County" "The dwelling unit is in VT, Caledonia County" -in.county "VT, Chittenden County" "The dwelling unit is in VT, Chittenden County" -in.county "VT, Essex County" "The dwelling unit is in VT, Essex County" -in.county "VT, Franklin County" "The dwelling unit is in VT, Franklin County" -in.county "VT, Grand Isle County" "The dwelling unit is in VT, Grand Isle County" -in.county "VT, Lamoille County" "The dwelling unit is in VT, Lamoille County" -in.county "VT, Orange County" "The dwelling unit is in VT, Orange County" -in.county "VT, Orleans County" "The dwelling unit is in VT, Orleans County" -in.county "VT, Rutland County" "The dwelling unit is in VT, Rutland County" -in.county "VT, Washington County" "The dwelling unit is in VT, Washington County" -in.county "VT, Windham County" "The dwelling unit is in VT, Windham County" -in.county "VT, Windsor County" "The dwelling unit is in VT, Windsor County" -in.county "WA, Adams County" "The dwelling unit is in WA, Adams County" -in.county "WA, Asotin County" "The dwelling unit is in WA, Asotin County" -in.county "WA, Benton County" "The dwelling unit is in WA, Benton County" -in.county "WA, Chelan County" "The dwelling unit is in WA, Chelan County" -in.county "WA, Clallam County" "The dwelling unit is in WA, Clallam County" -in.county "WA, Clark County" "The dwelling unit is in WA, Clark County" -in.county "WA, Columbia County" "The dwelling unit is in WA, Columbia County" -in.county "WA, Cowlitz County" "The dwelling unit is in WA, Cowlitz County" -in.county "WA, Douglas County" "The dwelling unit is in WA, Douglas County" -in.county "WA, Ferry County" "The dwelling unit is in WA, Ferry County" -in.county "WA, Franklin County" "The dwelling unit is in WA, Franklin County" -in.county "WA, Garfield County" "The dwelling unit is in WA, Garfield County" -in.county "WA, Grant County" "The dwelling unit is in WA, Grant County" -in.county "WA, Grays Harbor County" "The dwelling unit is in WA, Grays Harbor County" -in.county "WA, Island County" "The dwelling unit is in WA, Island County" -in.county "WA, Jefferson County" "The dwelling unit is in WA, Jefferson County" -in.county "WA, King County" "The dwelling unit is in WA, King County" -in.county "WA, Kitsap County" "The dwelling unit is in WA, Kitsap County" -in.county "WA, Kittitas County" "The dwelling unit is in WA, Kittitas County" -in.county "WA, Klickitat County" "The dwelling unit is in WA, Klickitat County" -in.county "WA, Lewis County" "The dwelling unit is in WA, Lewis County" -in.county "WA, Lincoln County" "The dwelling unit is in WA, Lincoln County" -in.county "WA, Mason County" "The dwelling unit is in WA, Mason County" -in.county "WA, Okanogan County" "The dwelling unit is in WA, Okanogan County" -in.county "WA, Pacific County" "The dwelling unit is in WA, Pacific County" -in.county "WA, Pend Oreille County" "The dwelling unit is in WA, Pend Oreille County" -in.county "WA, Pierce County" "The dwelling unit is in WA, Pierce County" -in.county "WA, San Juan County" "The dwelling unit is in WA, San Juan County" -in.county "WA, Skagit County" "The dwelling unit is in WA, Skagit County" -in.county "WA, Skamania County" "The dwelling unit is in WA, Skamania County" -in.county "WA, Snohomish County" "The dwelling unit is in WA, Snohomish County" -in.county "WA, Spokane County" "The dwelling unit is in WA, Spokane County" -in.county "WA, Stevens County" "The dwelling unit is in WA, Stevens County" -in.county "WA, Thurston County" "The dwelling unit is in WA, Thurston County" -in.county "WA, Wahkiakum County" "The dwelling unit is in WA, Wahkiakum County" -in.county "WA, Walla Walla County" "The dwelling unit is in WA, Walla Walla County" -in.county "WA, Whatcom County" "The dwelling unit is in WA, Whatcom County" -in.county "WA, Whitman County" "The dwelling unit is in WA, Whitman County" -in.county "WA, Yakima County" "The dwelling unit is in WA, Yakima County" -in.county "WI, Adams County" "The dwelling unit is in WI, Adams County" -in.county "WI, Ashland County" "The dwelling unit is in WI, Ashland County" -in.county "WI, Barron County" "The dwelling unit is in WI, Barron County" -in.county "WI, Bayfield County" "The dwelling unit is in WI, Bayfield County" -in.county "WI, Brown County" "The dwelling unit is in WI, Brown County" -in.county "WI, Buffalo County" "The dwelling unit is in WI, Buffalo County" -in.county "WI, Burnett County" "The dwelling unit is in WI, Burnett County" -in.county "WI, Calumet County" "The dwelling unit is in WI, Calumet County" -in.county "WI, Chippewa County" "The dwelling unit is in WI, Chippewa County" -in.county "WI, Clark County" "The dwelling unit is in WI, Clark County" -in.county "WI, Columbia County" "The dwelling unit is in WI, Columbia County" -in.county "WI, Crawford County" "The dwelling unit is in WI, Crawford County" -in.county "WI, Dane County" "The dwelling unit is in WI, Dane County" -in.county "WI, Dodge County" "The dwelling unit is in WI, Dodge County" -in.county "WI, Door County" "The dwelling unit is in WI, Door County" -in.county "WI, Douglas County" "The dwelling unit is in WI, Douglas County" -in.county "WI, Dunn County" "The dwelling unit is in WI, Dunn County" -in.county "WI, Eau Claire County" "The dwelling unit is in WI, Eau Claire County" -in.county "WI, Florence County" "The dwelling unit is in WI, Florence County" -in.county "WI, Fond du Lac County" "The dwelling unit is in WI, Fond du Lac County" -in.county "WI, Forest County" "The dwelling unit is in WI, Forest County" -in.county "WI, Grant County" "The dwelling unit is in WI, Grant County" -in.county "WI, Green County" "The dwelling unit is in WI, Green County" -in.county "WI, Green Lake County" "The dwelling unit is in WI, Green Lake County" -in.county "WI, Iowa County" "The dwelling unit is in WI, Iowa County" -in.county "WI, Iron County" "The dwelling unit is in WI, Iron County" -in.county "WI, Jackson County" "The dwelling unit is in WI, Jackson County" -in.county "WI, Jefferson County" "The dwelling unit is in WI, Jefferson County" -in.county "WI, Juneau County" "The dwelling unit is in WI, Juneau County" -in.county "WI, Kenosha County" "The dwelling unit is in WI, Kenosha County" -in.county "WI, Kewaunee County" "The dwelling unit is in WI, Kewaunee County" -in.county "WI, La Crosse County" "The dwelling unit is in WI, La Crosse County" -in.county "WI, Lafayette County" "The dwelling unit is in WI, Lafayette County" -in.county "WI, Langlade County" "The dwelling unit is in WI, Langlade County" -in.county "WI, Lincoln County" "The dwelling unit is in WI, Lincoln County" -in.county "WI, Manitowoc County" "The dwelling unit is in WI, Manitowoc County" -in.county "WI, Marathon County" "The dwelling unit is in WI, Marathon County" -in.county "WI, Marinette County" "The dwelling unit is in WI, Marinette County" -in.county "WI, Marquette County" "The dwelling unit is in WI, Marquette County" -in.county "WI, Menominee County" "The dwelling unit is in WI, Menominee County" -in.county "WI, Milwaukee County" "The dwelling unit is in WI, Milwaukee County" -in.county "WI, Monroe County" "The dwelling unit is in WI, Monroe County" -in.county "WI, Oconto County" "The dwelling unit is in WI, Oconto County" -in.county "WI, Oneida County" "The dwelling unit is in WI, Oneida County" -in.county "WI, Outagamie County" "The dwelling unit is in WI, Outagamie County" -in.county "WI, Ozaukee County" "The dwelling unit is in WI, Ozaukee County" -in.county "WI, Pepin County" "The dwelling unit is in WI, Pepin County" -in.county "WI, Pierce County" "The dwelling unit is in WI, Pierce County" -in.county "WI, Polk County" "The dwelling unit is in WI, Polk County" -in.county "WI, Portage County" "The dwelling unit is in WI, Portage County" -in.county "WI, Price County" "The dwelling unit is in WI, Price County" -in.county "WI, Racine County" "The dwelling unit is in WI, Racine County" -in.county "WI, Richland County" "The dwelling unit is in WI, Richland County" -in.county "WI, Rock County" "The dwelling unit is in WI, Rock County" -in.county "WI, Rusk County" "The dwelling unit is in WI, Rusk County" -in.county "WI, Sauk County" "The dwelling unit is in WI, Sauk County" -in.county "WI, Sawyer County" "The dwelling unit is in WI, Sawyer County" -in.county "WI, Shawano County" "The dwelling unit is in WI, Shawano County" -in.county "WI, Sheboygan County" "The dwelling unit is in WI, Sheboygan County" -in.county "WI, St. Croix County" "The dwelling unit is in WI, St. Croix County" -in.county "WI, Taylor County" "The dwelling unit is in WI, Taylor County" -in.county "WI, Trempealeau County" "The dwelling unit is in WI, Trempealeau County" -in.county "WI, Vernon County" "The dwelling unit is in WI, Vernon County" -in.county "WI, Vilas County" "The dwelling unit is in WI, Vilas County" -in.county "WI, Walworth County" "The dwelling unit is in WI, Walworth County" -in.county "WI, Washburn County" "The dwelling unit is in WI, Washburn County" -in.county "WI, Washington County" "The dwelling unit is in WI, Washington County" -in.county "WI, Waukesha County" "The dwelling unit is in WI, Waukesha County" -in.county "WI, Waupaca County" "The dwelling unit is in WI, Waupaca County" -in.county "WI, Waushara County" "The dwelling unit is in WI, Waushara County" -in.county "WI, Winnebago County" "The dwelling unit is in WI, Winnebago County" -in.county "WI, Wood County" "The dwelling unit is in WI, Wood County" -in.county "WV, Barbour County" "The dwelling unit is in WV, Barbour County" -in.county "WV, Berkeley County" "The dwelling unit is in WV, Berkeley County" -in.county "WV, Boone County" "The dwelling unit is in WV, Boone County" -in.county "WV, Braxton County" "The dwelling unit is in WV, Braxton County" -in.county "WV, Brooke County" "The dwelling unit is in WV, Brooke County" -in.county "WV, Cabell County" "The dwelling unit is in WV, Cabell County" -in.county "WV, Calhoun County" "The dwelling unit is in WV, Calhoun County" -in.county "WV, Clay County" "The dwelling unit is in WV, Clay County" -in.county "WV, Doddridge County" "The dwelling unit is in WV, Doddridge County" -in.county "WV, Fayette County" "The dwelling unit is in WV, Fayette County" -in.county "WV, Gilmer County" "The dwelling unit is in WV, Gilmer County" -in.county "WV, Grant County" "The dwelling unit is in WV, Grant County" -in.county "WV, Greenbrier County" "The dwelling unit is in WV, Greenbrier County" -in.county "WV, Hampshire County" "The dwelling unit is in WV, Hampshire County" -in.county "WV, Hancock County" "The dwelling unit is in WV, Hancock County" -in.county "WV, Hardy County" "The dwelling unit is in WV, Hardy County" -in.county "WV, Harrison County" "The dwelling unit is in WV, Harrison County" -in.county "WV, Jackson County" "The dwelling unit is in WV, Jackson County" -in.county "WV, Jefferson County" "The dwelling unit is in WV, Jefferson County" -in.county "WV, Kanawha County" "The dwelling unit is in WV, Kanawha County" -in.county "WV, Lewis County" "The dwelling unit is in WV, Lewis County" -in.county "WV, Lincoln County" "The dwelling unit is in WV, Lincoln County" -in.county "WV, Logan County" "The dwelling unit is in WV, Logan County" -in.county "WV, Marion County" "The dwelling unit is in WV, Marion County" -in.county "WV, Marshall County" "The dwelling unit is in WV, Marshall County" -in.county "WV, Mason County" "The dwelling unit is in WV, Mason County" -in.county "WV, McDowell County" "The dwelling unit is in WV, McDowell County" -in.county "WV, Mercer County" "The dwelling unit is in WV, Mercer County" -in.county "WV, Mineral County" "The dwelling unit is in WV, Mineral County" -in.county "WV, Mingo County" "The dwelling unit is in WV, Mingo County" -in.county "WV, Monongalia County" "The dwelling unit is in WV, Monongalia County" -in.county "WV, Monroe County" "The dwelling unit is in WV, Monroe County" -in.county "WV, Morgan County" "The dwelling unit is in WV, Morgan County" -in.county "WV, Nicholas County" "The dwelling unit is in WV, Nicholas County" -in.county "WV, Ohio County" "The dwelling unit is in WV, Ohio County" -in.county "WV, Pendleton County" "The dwelling unit is in WV, Pendleton County" -in.county "WV, Pleasants County" "The dwelling unit is in WV, Pleasants County" -in.county "WV, Pocahontas County" "The dwelling unit is in WV, Pocahontas County" -in.county "WV, Preston County" "The dwelling unit is in WV, Preston County" -in.county "WV, Putnam County" "The dwelling unit is in WV, Putnam County" -in.county "WV, Raleigh County" "The dwelling unit is in WV, Raleigh County" -in.county "WV, Randolph County" "The dwelling unit is in WV, Randolph County" -in.county "WV, Ritchie County" "The dwelling unit is in WV, Ritchie County" -in.county "WV, Roane County" "The dwelling unit is in WV, Roane County" -in.county "WV, Summers County" "The dwelling unit is in WV, Summers County" -in.county "WV, Taylor County" "The dwelling unit is in WV, Taylor County" -in.county "WV, Tucker County" "The dwelling unit is in WV, Tucker County" -in.county "WV, Tyler County" "The dwelling unit is in WV, Tyler County" -in.county "WV, Upshur County" "The dwelling unit is in WV, Upshur County" -in.county "WV, Wayne County" "The dwelling unit is in WV, Wayne County" -in.county "WV, Webster County" "The dwelling unit is in WV, Webster County" -in.county "WV, Wetzel County" "The dwelling unit is in WV, Wetzel County" -in.county "WV, Wirt County" "The dwelling unit is in WV, Wirt County" -in.county "WV, Wood County" "The dwelling unit is in WV, Wood County" -in.county "WV, Wyoming County" "The dwelling unit is in WV, Wyoming County" -in.county "WY, Albany County" "The dwelling unit is in WY, Albany County" -in.county "WY, Big Horn County" "The dwelling unit is in WY, Big Horn County" -in.county "WY, Campbell County" "The dwelling unit is in WY, Campbell County" -in.county "WY, Carbon County" "The dwelling unit is in WY, Carbon County" -in.county "WY, Converse County" "The dwelling unit is in WY, Converse County" -in.county "WY, Crook County" "The dwelling unit is in WY, Crook County" -in.county "WY, Fremont County" "The dwelling unit is in WY, Fremont County" -in.county "WY, Goshen County" "The dwelling unit is in WY, Goshen County" -in.county "WY, Hot Springs County" "The dwelling unit is in WY, Hot Springs County" -in.county "WY, Johnson County" "The dwelling unit is in WY, Johnson County" -in.county "WY, Laramie County" "The dwelling unit is in WY, Laramie County" -in.county "WY, Lincoln County" "The dwelling unit is in WY, Lincoln County" -in.county "WY, Natrona County" "The dwelling unit is in WY, Natrona County" -in.county "WY, Niobrara County" "The dwelling unit is in WY, Niobrara County" -in.county "WY, Park County" "The dwelling unit is in WY, Park County" -in.county "WY, Platte County" "The dwelling unit is in WY, Platte County" -in.county "WY, Sheridan County" "The dwelling unit is in WY, Sheridan County" -in.county "WY, Sublette County" "The dwelling unit is in WY, Sublette County" -in.county "WY, Sweetwater County" "The dwelling unit is in WY, Sweetwater County" -in.county "WY, Teton County" "The dwelling unit is in WY, Teton County" -in.county "WY, Uinta County" "The dwelling unit is in WY, Uinta County" -in.county "WY, Washakie County" "The dwelling unit is in WY, Washakie County" -in.county "WY, Weston County" "The dwelling unit is in WY, Weston County" -in.county_and_puma "G0100010, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 001, the NHGIS PUMA code is 02100" -in.county_and_puma "G0100030, G01002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 003, the NHGIS PUMA code is 02600" -in.county_and_puma "G0100050, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 005, the NHGIS PUMA code is 02400" -in.county_and_puma "G0100070, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 007, the NHGIS PUMA code is 01700" -in.county_and_puma "G0100090, G01000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 009, the NHGIS PUMA code is 00800" -in.county_and_puma "G0100110, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 011, the NHGIS PUMA code is 02400" -in.county_and_puma "G0100130, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 013, the NHGIS PUMA code is 02300" -in.county_and_puma "G0100150, G01001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 015, the NHGIS PUMA code is 01100" -in.county_and_puma "G0100170, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 017, the NHGIS PUMA code is 01800" -in.county_and_puma "G0100190, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 019, the NHGIS PUMA code is 01000" -in.county_and_puma "G0100210, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 021, the NHGIS PUMA code is 01800" -in.county_and_puma "G0100230, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 023, the NHGIS PUMA code is 02200" -in.county_and_puma "G0100250, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 025, the NHGIS PUMA code is 02200" -in.county_and_puma "G0100270, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 027, the NHGIS PUMA code is 01000" -in.county_and_puma "G0100290, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 029, the NHGIS PUMA code is 01000" -in.county_and_puma "G0100310, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 031, the NHGIS PUMA code is 02300" -in.county_and_puma "G0100330, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G0100350, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 035, the NHGIS PUMA code is 02200" -in.county_and_puma "G0100370, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 037, the NHGIS PUMA code is 01800" -in.county_and_puma "G0100390, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 039, the NHGIS PUMA code is 02300" -in.county_and_puma "G0100410, G01002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 041, the NHGIS PUMA code is 02300" -in.county_and_puma "G0100430, G01000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 043, the NHGIS PUMA code is 00700" -in.county_and_puma "G0100450, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 045, the NHGIS PUMA code is 02500" -in.county_and_puma "G0100470, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 047, the NHGIS PUMA code is 01700" -in.county_and_puma "G0100490, G01000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 049, the NHGIS PUMA code is 00400" -in.county_and_puma "G0100510, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 051, the NHGIS PUMA code is 02100" -in.county_and_puma "G0100530, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 053, the NHGIS PUMA code is 02200" -in.county_and_puma "G0100550, G01000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 055, the NHGIS PUMA code is 00900" -in.county_and_puma "G0100570, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 057, the NHGIS PUMA code is 01400" -in.county_and_puma "G0100590, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 059, the NHGIS PUMA code is 00100" -in.county_and_puma "G0100610, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 061, the NHGIS PUMA code is 02500" -in.county_and_puma "G0100630, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 063, the NHGIS PUMA code is 01700" -in.county_and_puma "G0100650, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 065, the NHGIS PUMA code is 01700" -in.county_and_puma "G0100670, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 067, the NHGIS PUMA code is 02500" -in.county_and_puma "G0100690, G01002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 069, the NHGIS PUMA code is 02500" -in.county_and_puma "G0100710, G01000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 071, the NHGIS PUMA code is 00400" -in.county_and_puma "G0100730, G01001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01301" -in.county_and_puma "G0100730, G01001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01302" -in.county_and_puma "G0100730, G01001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01303" -in.county_and_puma "G0100730, G01001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01304" -in.county_and_puma "G0100730, G01001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 073, the NHGIS PUMA code is 01305" -in.county_and_puma "G0100750, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 075, the NHGIS PUMA code is 01400" -in.county_and_puma "G0100770, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 077, the NHGIS PUMA code is 00100" -in.county_and_puma "G0100790, G01000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 079, the NHGIS PUMA code is 00600" -in.county_and_puma "G0100810, G01001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 081, the NHGIS PUMA code is 01900" -in.county_and_puma "G0100830, G01000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 083, the NHGIS PUMA code is 00200" -in.county_and_puma "G0100850, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 085, the NHGIS PUMA code is 02100" -in.county_and_puma "G0100870, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 087, the NHGIS PUMA code is 02400" -in.county_and_puma "G0100890, G01000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00200" -in.county_and_puma "G0100890, G01000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00301" -in.county_and_puma "G0100890, G01000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00302" -in.county_and_puma "G0100890, G01000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 089, the NHGIS PUMA code is 00500" -in.county_and_puma "G0100910, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 091, the NHGIS PUMA code is 01700" -in.county_and_puma "G0100930, G01000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 093, the NHGIS PUMA code is 00100" -in.county_and_puma "G0100930, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 093, the NHGIS PUMA code is 01400" -in.county_and_puma "G0100950, G01000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 095, the NHGIS PUMA code is 00500" -in.county_and_puma "G0100970, G01002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02701" -in.county_and_puma "G0100970, G01002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02702" -in.county_and_puma "G0100970, G01002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 097, the NHGIS PUMA code is 02703" -in.county_and_puma "G0100990, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 099, the NHGIS PUMA code is 02200" -in.county_and_puma "G0101010, G01002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 101, the NHGIS PUMA code is 02000" -in.county_and_puma "G0101010, G01002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 101, the NHGIS PUMA code is 02100" -in.county_and_puma "G0101030, G01000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 103, the NHGIS PUMA code is 00600" -in.county_and_puma "G0101050, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 105, the NHGIS PUMA code is 01700" -in.county_and_puma "G0101070, G01001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 107, the NHGIS PUMA code is 01500" -in.county_and_puma "G0101090, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 109, the NHGIS PUMA code is 02400" -in.county_and_puma "G0101110, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 111, the NHGIS PUMA code is 01000" -in.county_and_puma "G0101130, G01002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 113, the NHGIS PUMA code is 02400" -in.county_and_puma "G0101150, G01000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 115, the NHGIS PUMA code is 00800" -in.county_and_puma "G0101170, G01001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 117, the NHGIS PUMA code is 01200" -in.county_and_puma "G0101190, G01001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 119, the NHGIS PUMA code is 01700" -in.county_and_puma "G0101210, G01001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 121, the NHGIS PUMA code is 01000" -in.county_and_puma "G0101230, G01001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 123, the NHGIS PUMA code is 01800" -in.county_and_puma "G0101250, G01001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 125, the NHGIS PUMA code is 01500" -in.county_and_puma "G0101250, G01001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 125, the NHGIS PUMA code is 01600" -in.county_and_puma "G0101270, G01001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 127, the NHGIS PUMA code is 01400" -in.county_and_puma "G0101290, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 129, the NHGIS PUMA code is 02200" -in.county_and_puma "G0101310, G01002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 131, the NHGIS PUMA code is 02200" -in.county_and_puma "G0101330, G01000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 01, the NHGIS county code is 133, the NHGIS PUMA code is 00700" -in.county_and_puma "G0200130, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 013, the NHGIS PUMA code is 00400" -in.county_and_puma "G0200160, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 016, the NHGIS PUMA code is 00400" -in.county_and_puma "G0200200, G02000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 020, the NHGIS PUMA code is 00101" -in.county_and_puma "G0200200, G02000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 020, the NHGIS PUMA code is 00102" -in.county_and_puma "G0200500, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 050, the NHGIS PUMA code is 00400" -in.county_and_puma "G0200600, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 060, the NHGIS PUMA code is 00400" -in.county_and_puma "G0200680, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 068, the NHGIS PUMA code is 00300" -in.county_and_puma "G0200700, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 070, the NHGIS PUMA code is 00400" -in.county_and_puma "G0200900, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 090, the NHGIS PUMA code is 00300" -in.county_and_puma "G0201000, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 100, the NHGIS PUMA code is 00300" -in.county_and_puma "G0201050, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 105, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201100, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 110, the NHGIS PUMA code is 00300" -in.county_and_puma "G0201220, G02000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 122, the NHGIS PUMA code is 00200" -in.county_and_puma "G0201300, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 130, the NHGIS PUMA code is 00300" -in.county_and_puma "G0201500, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 150, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201580, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 158, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201640, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 164, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201700, G02000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 170, the NHGIS PUMA code is 00200" -in.county_and_puma "G0201800, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 180, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201850, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 185, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201880, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 188, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201950, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 195, the NHGIS PUMA code is 00400" -in.county_and_puma "G0201980, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 198, the NHGIS PUMA code is 00400" -in.county_and_puma "G0202200, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 220, the NHGIS PUMA code is 00400" -in.county_and_puma "G0202300, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 230, the NHGIS PUMA code is 00300" -in.county_and_puma "G0202400, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 240, the NHGIS PUMA code is 00300" -in.county_and_puma "G0202610, G02000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 261, the NHGIS PUMA code is 00300" -in.county_and_puma "G0202750, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 275, the NHGIS PUMA code is 00400" -in.county_and_puma "G0202820, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 282, the NHGIS PUMA code is 00400" -in.county_and_puma "G0202900, G02000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 02, the NHGIS county code is 290, the NHGIS PUMA code is 00400" -in.county_and_puma "G0400010, G04000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G0400030, G04000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 003, the NHGIS PUMA code is 00900" -in.county_and_puma "G0400050, G04000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G0400070, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 007, the NHGIS PUMA code is 00800" -in.county_and_puma "G0400090, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 009, the NHGIS PUMA code is 00800" -in.county_and_puma "G0400110, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G0400120, G04000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 012, the NHGIS PUMA code is 00600" -in.county_and_puma "G0400130, G04000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G0400130, G04000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00101" -in.county_and_puma "G0400130, G04000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00102" -in.county_and_puma "G0400130, G04000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00103" -in.county_and_puma "G0400130, G04000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00104" -in.county_and_puma "G0400130, G04000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00105" -in.county_and_puma "G0400130, G04000106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00106" -in.county_and_puma "G0400130, G04000107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00107" -in.county_and_puma "G0400130, G04000108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00108" -in.county_and_puma "G0400130, G04000109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00109" -in.county_and_puma "G0400130, G04000110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00110" -in.county_and_puma "G0400130, G04000111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00111" -in.county_and_puma "G0400130, G04000112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00112" -in.county_and_puma "G0400130, G04000113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00113" -in.county_and_puma "G0400130, G04000114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00114" -in.county_and_puma "G0400130, G04000115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00115" -in.county_and_puma "G0400130, G04000116" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00116" -in.county_and_puma "G0400130, G04000117" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00117" -in.county_and_puma "G0400130, G04000118" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00118" -in.county_and_puma "G0400130, G04000119" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00119" -in.county_and_puma "G0400130, G04000120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00120" -in.county_and_puma "G0400130, G04000121" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00121" -in.county_and_puma "G0400130, G04000122" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00122" -in.county_and_puma "G0400130, G04000123" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00123" -in.county_and_puma "G0400130, G04000124" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00124" -in.county_and_puma "G0400130, G04000125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00125" -in.county_and_puma "G0400130, G04000126" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00126" -in.county_and_puma "G0400130, G04000127" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00127" -in.county_and_puma "G0400130, G04000128" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00128" -in.county_and_puma "G0400130, G04000129" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00129" -in.county_and_puma "G0400130, G04000130" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00130" -in.county_and_puma "G0400130, G04000131" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00131" -in.county_and_puma "G0400130, G04000132" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00132" -in.county_and_puma "G0400130, G04000133" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00133" -in.county_and_puma "G0400130, G04000134" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 013, the NHGIS PUMA code is 00134" -in.county_and_puma "G0400150, G04000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 015, the NHGIS PUMA code is 00600" -in.county_and_puma "G0400170, G04000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 017, the NHGIS PUMA code is 00300" -in.county_and_puma "G0400190, G04000201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00201" -in.county_and_puma "G0400190, G04000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00202" -in.county_and_puma "G0400190, G04000203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00203" -in.county_and_puma "G0400190, G04000204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00204" -in.county_and_puma "G0400190, G04000205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00205" -in.county_and_puma "G0400190, G04000206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00206" -in.county_and_puma "G0400190, G04000207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00207" -in.county_and_puma "G0400190, G04000208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00208" -in.county_and_puma "G0400190, G04000209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 019, the NHGIS PUMA code is 00209" -in.county_and_puma "G0400210, G04000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00800" -in.county_and_puma "G0400210, G04000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00803" -in.county_and_puma "G0400210, G04000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00805" -in.county_and_puma "G0400210, G04000807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 021, the NHGIS PUMA code is 00807" -in.county_and_puma "G0400230, G04000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 023, the NHGIS PUMA code is 00900" -in.county_and_puma "G0400250, G04000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 025, the NHGIS PUMA code is 00500" -in.county_and_puma "G0400270, G04000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 04, the NHGIS county code is 027, the NHGIS PUMA code is 00700" -in.county_and_puma "G0500010, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 001, the NHGIS PUMA code is 01700" -in.county_and_puma "G0500010, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 001, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500030, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 003, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500050, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 005, the NHGIS PUMA code is 00300" -in.county_and_puma "G0500070, G05000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G0500090, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G0500110, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 011, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500130, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 013, the NHGIS PUMA code is 01900" -in.county_and_puma "G0500150, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 015, the NHGIS PUMA code is 00300" -in.county_and_puma "G0500170, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 017, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500190, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 019, the NHGIS PUMA code is 01600" -in.county_and_puma "G0500210, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 021, the NHGIS PUMA code is 00500" -in.county_and_puma "G0500230, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 023, the NHGIS PUMA code is 00400" -in.county_and_puma "G0500250, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 025, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500270, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 027, the NHGIS PUMA code is 01900" -in.county_and_puma "G0500290, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 029, the NHGIS PUMA code is 01300" -in.county_and_puma "G0500310, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 031, the NHGIS PUMA code is 00500" -in.county_and_puma "G0500310, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 031, the NHGIS PUMA code is 00600" -in.county_and_puma "G0500330, G05001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 033, the NHGIS PUMA code is 01400" -in.county_and_puma "G0500350, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 035, the NHGIS PUMA code is 00600" -in.county_and_puma "G0500370, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 037, the NHGIS PUMA code is 00700" -in.county_and_puma "G0500390, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 039, the NHGIS PUMA code is 01900" -in.county_and_puma "G0500410, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 041, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500430, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 043, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500450, G05001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 045, the NHGIS PUMA code is 01100" -in.county_and_puma "G0500470, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 047, the NHGIS PUMA code is 01500" -in.county_and_puma "G0500490, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 049, the NHGIS PUMA code is 00400" -in.county_and_puma "G0500510, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 051, the NHGIS PUMA code is 01600" -in.county_and_puma "G0500530, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 053, the NHGIS PUMA code is 01700" -in.county_and_puma "G0500550, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 055, the NHGIS PUMA code is 00500" -in.county_and_puma "G0500570, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 057, the NHGIS PUMA code is 02000" -in.county_and_puma "G0500590, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 059, the NHGIS PUMA code is 01600" -in.county_and_puma "G0500610, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 061, the NHGIS PUMA code is 01500" -in.county_and_puma "G0500630, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 063, the NHGIS PUMA code is 00400" -in.county_and_puma "G0500650, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 065, the NHGIS PUMA code is 00400" -in.county_and_puma "G0500670, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 067, the NHGIS PUMA code is 00800" -in.county_and_puma "G0500690, G05001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 069, the NHGIS PUMA code is 01700" -in.county_and_puma "G0500710, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 071, the NHGIS PUMA code is 01300" -in.county_and_puma "G0500730, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 073, the NHGIS PUMA code is 02000" -in.county_and_puma "G0500750, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 075, the NHGIS PUMA code is 00500" -in.county_and_puma "G0500770, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 077, the NHGIS PUMA code is 00700" -in.county_and_puma "G0500790, G05001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 079, the NHGIS PUMA code is 01800" -in.county_and_puma "G0500810, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 081, the NHGIS PUMA code is 02000" -in.county_and_puma "G0500830, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 083, the NHGIS PUMA code is 01500" -in.county_and_puma "G0500850, G05001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 085, the NHGIS PUMA code is 01100" -in.county_and_puma "G0500870, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 087, the NHGIS PUMA code is 00300" -in.county_and_puma "G0500890, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 089, the NHGIS PUMA code is 00300" -in.county_and_puma "G0500910, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 091, the NHGIS PUMA code is 02000" -in.county_and_puma "G0500930, G05000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 093, the NHGIS PUMA code is 00600" -in.county_and_puma "G0500950, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 095, the NHGIS PUMA code is 00700" -in.county_and_puma "G0500970, G05001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 097, the NHGIS PUMA code is 01600" -in.county_and_puma "G0500990, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 099, the NHGIS PUMA code is 02000" -in.county_and_puma "G0501010, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 101, the NHGIS PUMA code is 00300" -in.county_and_puma "G0501030, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 103, the NHGIS PUMA code is 01900" -in.county_and_puma "G0501050, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 105, the NHGIS PUMA code is 01300" -in.county_and_puma "G0501070, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 107, the NHGIS PUMA code is 00700" -in.county_and_puma "G0501090, G05002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 109, the NHGIS PUMA code is 02000" -in.county_and_puma "G0501110, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 111, the NHGIS PUMA code is 00700" -in.county_and_puma "G0501130, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 113, the NHGIS PUMA code is 01500" -in.county_and_puma "G0501150, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 115, the NHGIS PUMA code is 01300" -in.county_and_puma "G0501170, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 117, the NHGIS PUMA code is 00800" -in.county_and_puma "G0501190, G05000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 119, the NHGIS PUMA code is 00900" -in.county_and_puma "G0501190, G05001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 119, the NHGIS PUMA code is 01000" -in.county_and_puma "G0501210, G05000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 121, the NHGIS PUMA code is 00500" -in.county_and_puma "G0501230, G05000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 123, the NHGIS PUMA code is 00700" -in.county_and_puma "G0501250, G05001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 125, the NHGIS PUMA code is 01200" -in.county_and_puma "G0501270, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 127, the NHGIS PUMA code is 01500" -in.county_and_puma "G0501290, G05000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 129, the NHGIS PUMA code is 00300" -in.county_and_puma "G0501310, G05001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 131, the NHGIS PUMA code is 01400" -in.county_and_puma "G0501330, G05001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 133, the NHGIS PUMA code is 01500" -in.county_and_puma "G0501350, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 135, the NHGIS PUMA code is 00400" -in.county_and_puma "G0501370, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 137, the NHGIS PUMA code is 00400" -in.county_and_puma "G0501390, G05001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 139, the NHGIS PUMA code is 01900" -in.county_and_puma "G0501410, G05000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 141, the NHGIS PUMA code is 00400" -in.county_and_puma "G0501430, G05000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 143, the NHGIS PUMA code is 00200" -in.county_and_puma "G0501450, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 145, the NHGIS PUMA code is 00800" -in.county_and_puma "G0501470, G05000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 147, the NHGIS PUMA code is 00800" -in.county_and_puma "G0501490, G05001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 05, the NHGIS county code is 149, the NHGIS PUMA code is 01300" -in.county_and_puma "G0600010, G06000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00101" -in.county_and_puma "G0600010, G06000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00102" -in.county_and_puma "G0600010, G06000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00103" -in.county_and_puma "G0600010, G06000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00104" -in.county_and_puma "G0600010, G06000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00105" -in.county_and_puma "G0600010, G06000106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00106" -in.county_and_puma "G0600010, G06000107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00107" -in.county_and_puma "G0600010, G06000108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00108" -in.county_and_puma "G0600010, G06000109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00109" -in.county_and_puma "G0600010, G06000110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 001, the NHGIS PUMA code is 00110" -in.county_and_puma "G0600030, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 003, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600050, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 005, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600070, G06000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 007, the NHGIS PUMA code is 00701" -in.county_and_puma "G0600070, G06000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 007, the NHGIS PUMA code is 00702" -in.county_and_puma "G0600090, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600110, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 011, the NHGIS PUMA code is 01100" -in.county_and_puma "G0600130, G06001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01301" -in.county_and_puma "G0600130, G06001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01302" -in.county_and_puma "G0600130, G06001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01303" -in.county_and_puma "G0600130, G06001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01304" -in.county_and_puma "G0600130, G06001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01305" -in.county_and_puma "G0600130, G06001306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01306" -in.county_and_puma "G0600130, G06001307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01307" -in.county_and_puma "G0600130, G06001308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01308" -in.county_and_puma "G0600130, G06001309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 013, the NHGIS PUMA code is 01309" -in.county_and_puma "G0600150, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 015, the NHGIS PUMA code is 01500" -in.county_and_puma "G0600170, G06001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 017, the NHGIS PUMA code is 01700" -in.county_and_puma "G0600190, G06001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01901" -in.county_and_puma "G0600190, G06001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01902" -in.county_and_puma "G0600190, G06001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01903" -in.county_and_puma "G0600190, G06001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01904" -in.county_and_puma "G0600190, G06001905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01905" -in.county_and_puma "G0600190, G06001906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01906" -in.county_and_puma "G0600190, G06001907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 019, the NHGIS PUMA code is 01907" -in.county_and_puma "G0600210, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 021, the NHGIS PUMA code is 01100" -in.county_and_puma "G0600230, G06002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 023, the NHGIS PUMA code is 02300" -in.county_and_puma "G0600250, G06002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 025, the NHGIS PUMA code is 02500" -in.county_and_puma "G0600270, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600290, G06002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02901" -in.county_and_puma "G0600290, G06002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02902" -in.county_and_puma "G0600290, G06002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02903" -in.county_and_puma "G0600290, G06002904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02904" -in.county_and_puma "G0600290, G06002905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 029, the NHGIS PUMA code is 02905" -in.county_and_puma "G0600310, G06003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 031, the NHGIS PUMA code is 03100" -in.county_and_puma "G0600330, G06003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 033, the NHGIS PUMA code is 03300" -in.county_and_puma "G0600350, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 035, the NHGIS PUMA code is 01500" -in.county_and_puma "G0600370, G06003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03701" -in.county_and_puma "G0600370, G06003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03702" -in.county_and_puma "G0600370, G06003703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03703" -in.county_and_puma "G0600370, G06003704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03704" -in.county_and_puma "G0600370, G06003705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03705" -in.county_and_puma "G0600370, G06003706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03706" -in.county_and_puma "G0600370, G06003707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03707" -in.county_and_puma "G0600370, G06003708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03708" -in.county_and_puma "G0600370, G06003709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03709" -in.county_and_puma "G0600370, G06003710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03710" -in.county_and_puma "G0600370, G06003711" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03711" -in.county_and_puma "G0600370, G06003712" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03712" -in.county_and_puma "G0600370, G06003713" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03713" -in.county_and_puma "G0600370, G06003714" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03714" -in.county_and_puma "G0600370, G06003715" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03715" -in.county_and_puma "G0600370, G06003716" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03716" -in.county_and_puma "G0600370, G06003717" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03717" -in.county_and_puma "G0600370, G06003718" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03718" -in.county_and_puma "G0600370, G06003719" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03719" -in.county_and_puma "G0600370, G06003720" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03720" -in.county_and_puma "G0600370, G06003721" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03721" -in.county_and_puma "G0600370, G06003722" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03722" -in.county_and_puma "G0600370, G06003723" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03723" -in.county_and_puma "G0600370, G06003724" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03724" -in.county_and_puma "G0600370, G06003725" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03725" -in.county_and_puma "G0600370, G06003726" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03726" -in.county_and_puma "G0600370, G06003727" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03727" -in.county_and_puma "G0600370, G06003728" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03728" -in.county_and_puma "G0600370, G06003729" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03729" -in.county_and_puma "G0600370, G06003730" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03730" -in.county_and_puma "G0600370, G06003731" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03731" -in.county_and_puma "G0600370, G06003732" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03732" -in.county_and_puma "G0600370, G06003733" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03733" -in.county_and_puma "G0600370, G06003734" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03734" -in.county_and_puma "G0600370, G06003735" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03735" -in.county_and_puma "G0600370, G06003736" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03736" -in.county_and_puma "G0600370, G06003737" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03737" -in.county_and_puma "G0600370, G06003738" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03738" -in.county_and_puma "G0600370, G06003739" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03739" -in.county_and_puma "G0600370, G06003740" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03740" -in.county_and_puma "G0600370, G06003741" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03741" -in.county_and_puma "G0600370, G06003742" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03742" -in.county_and_puma "G0600370, G06003743" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03743" -in.county_and_puma "G0600370, G06003744" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03744" -in.county_and_puma "G0600370, G06003745" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03745" -in.county_and_puma "G0600370, G06003746" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03746" -in.county_and_puma "G0600370, G06003747" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03747" -in.county_and_puma "G0600370, G06003748" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03748" -in.county_and_puma "G0600370, G06003749" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03749" -in.county_and_puma "G0600370, G06003750" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03750" -in.county_and_puma "G0600370, G06003751" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03751" -in.county_and_puma "G0600370, G06003752" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03752" -in.county_and_puma "G0600370, G06003753" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03753" -in.county_and_puma "G0600370, G06003754" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03754" -in.county_and_puma "G0600370, G06003755" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03755" -in.county_and_puma "G0600370, G06003756" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03756" -in.county_and_puma "G0600370, G06003757" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03757" -in.county_and_puma "G0600370, G06003758" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03758" -in.county_and_puma "G0600370, G06003759" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03759" -in.county_and_puma "G0600370, G06003760" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03760" -in.county_and_puma "G0600370, G06003761" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03761" -in.county_and_puma "G0600370, G06003762" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03762" -in.county_and_puma "G0600370, G06003763" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03763" -in.county_and_puma "G0600370, G06003764" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03764" -in.county_and_puma "G0600370, G06003765" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03765" -in.county_and_puma "G0600370, G06003766" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03766" -in.county_and_puma "G0600370, G06003767" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03767" -in.county_and_puma "G0600370, G06003768" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03768" -in.county_and_puma "G0600370, G06003769" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 037, the NHGIS PUMA code is 03769" -in.county_and_puma "G0600390, G06003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 039, the NHGIS PUMA code is 03900" -in.county_and_puma "G0600410, G06004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 041, the NHGIS PUMA code is 04101" -in.county_and_puma "G0600410, G06004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 041, the NHGIS PUMA code is 04102" -in.county_and_puma "G0600430, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 043, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600450, G06003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 045, the NHGIS PUMA code is 03300" -in.county_and_puma "G0600470, G06004701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 047, the NHGIS PUMA code is 04701" -in.county_and_puma "G0600470, G06004702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 047, the NHGIS PUMA code is 04702" -in.county_and_puma "G0600490, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 049, the NHGIS PUMA code is 01500" -in.county_and_puma "G0600510, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 051, the NHGIS PUMA code is 00300" -in.county_and_puma "G0600530, G06005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05301" -in.county_and_puma "G0600530, G06005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05302" -in.county_and_puma "G0600530, G06005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 053, the NHGIS PUMA code is 05303" -in.county_and_puma "G0600550, G06005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 055, the NHGIS PUMA code is 05500" -in.county_and_puma "G0600570, G06005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 057, the NHGIS PUMA code is 05700" -in.county_and_puma "G0600590, G06005901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05901" -in.county_and_puma "G0600590, G06005902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05902" -in.county_and_puma "G0600590, G06005903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05903" -in.county_and_puma "G0600590, G06005904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05904" -in.county_and_puma "G0600590, G06005905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05905" -in.county_and_puma "G0600590, G06005906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05906" -in.county_and_puma "G0600590, G06005907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05907" -in.county_and_puma "G0600590, G06005908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05908" -in.county_and_puma "G0600590, G06005909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05909" -in.county_and_puma "G0600590, G06005910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05910" -in.county_and_puma "G0600590, G06005911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05911" -in.county_and_puma "G0600590, G06005912" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05912" -in.county_and_puma "G0600590, G06005913" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05913" -in.county_and_puma "G0600590, G06005914" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05914" -in.county_and_puma "G0600590, G06005915" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05915" -in.county_and_puma "G0600590, G06005916" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05916" -in.county_and_puma "G0600590, G06005917" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05917" -in.county_and_puma "G0600590, G06005918" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 059, the NHGIS PUMA code is 05918" -in.county_and_puma "G0600610, G06006101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06101" -in.county_and_puma "G0600610, G06006102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06102" -in.county_and_puma "G0600610, G06006103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 061, the NHGIS PUMA code is 06103" -in.county_and_puma "G0600630, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 063, the NHGIS PUMA code is 01500" -in.county_and_puma "G0600650, G06006501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06501" -in.county_and_puma "G0600650, G06006502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06502" -in.county_and_puma "G0600650, G06006503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06503" -in.county_and_puma "G0600650, G06006504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06504" -in.county_and_puma "G0600650, G06006505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06505" -in.county_and_puma "G0600650, G06006506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06506" -in.county_and_puma "G0600650, G06006507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06507" -in.county_and_puma "G0600650, G06006508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06508" -in.county_and_puma "G0600650, G06006509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06509" -in.county_and_puma "G0600650, G06006510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06510" -in.county_and_puma "G0600650, G06006511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06511" -in.county_and_puma "G0600650, G06006512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06512" -in.county_and_puma "G0600650, G06006513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06513" -in.county_and_puma "G0600650, G06006514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06514" -in.county_and_puma "G0600650, G06006515" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 065, the NHGIS PUMA code is 06515" -in.county_and_puma "G0600670, G06006701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06701" -in.county_and_puma "G0600670, G06006702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06702" -in.county_and_puma "G0600670, G06006703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06703" -in.county_and_puma "G0600670, G06006704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06704" -in.county_and_puma "G0600670, G06006705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06705" -in.county_and_puma "G0600670, G06006706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06706" -in.county_and_puma "G0600670, G06006707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06707" -in.county_and_puma "G0600670, G06006708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06708" -in.county_and_puma "G0600670, G06006709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06709" -in.county_and_puma "G0600670, G06006710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06710" -in.county_and_puma "G0600670, G06006711" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06711" -in.county_and_puma "G0600670, G06006712" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 067, the NHGIS PUMA code is 06712" -in.county_and_puma "G0600690, G06005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 069, the NHGIS PUMA code is 05303" -in.county_and_puma "G0600710, G06007101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07101" -in.county_and_puma "G0600710, G06007102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07102" -in.county_and_puma "G0600710, G06007103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07103" -in.county_and_puma "G0600710, G06007104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07104" -in.county_and_puma "G0600710, G06007105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07105" -in.county_and_puma "G0600710, G06007106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07106" -in.county_and_puma "G0600710, G06007107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07107" -in.county_and_puma "G0600710, G06007108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07108" -in.county_and_puma "G0600710, G06007109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07109" -in.county_and_puma "G0600710, G06007110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07110" -in.county_and_puma "G0600710, G06007111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07111" -in.county_and_puma "G0600710, G06007112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07112" -in.county_and_puma "G0600710, G06007113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07113" -in.county_and_puma "G0600710, G06007114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07114" -in.county_and_puma "G0600710, G06007115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 071, the NHGIS PUMA code is 07115" -in.county_and_puma "G0600730, G06007301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07301" -in.county_and_puma "G0600730, G06007302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07302" -in.county_and_puma "G0600730, G06007303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07303" -in.county_and_puma "G0600730, G06007304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07304" -in.county_and_puma "G0600730, G06007305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07305" -in.county_and_puma "G0600730, G06007306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07306" -in.county_and_puma "G0600730, G06007307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07307" -in.county_and_puma "G0600730, G06007308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07308" -in.county_and_puma "G0600730, G06007309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07309" -in.county_and_puma "G0600730, G06007310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07310" -in.county_and_puma "G0600730, G06007311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07311" -in.county_and_puma "G0600730, G06007312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07312" -in.county_and_puma "G0600730, G06007313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07313" -in.county_and_puma "G0600730, G06007314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07314" -in.county_and_puma "G0600730, G06007315" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07315" -in.county_and_puma "G0600730, G06007316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07316" -in.county_and_puma "G0600730, G06007317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07317" -in.county_and_puma "G0600730, G06007318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07318" -in.county_and_puma "G0600730, G06007319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07319" -in.county_and_puma "G0600730, G06007320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07320" -in.county_and_puma "G0600730, G06007321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07321" -in.county_and_puma "G0600730, G06007322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 073, the NHGIS PUMA code is 07322" -in.county_and_puma "G0600750, G06007501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07501" -in.county_and_puma "G0600750, G06007502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07502" -in.county_and_puma "G0600750, G06007503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07503" -in.county_and_puma "G0600750, G06007504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07504" -in.county_and_puma "G0600750, G06007505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07505" -in.county_and_puma "G0600750, G06007506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07506" -in.county_and_puma "G0600750, G06007507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 075, the NHGIS PUMA code is 07507" -in.county_and_puma "G0600770, G06007701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07701" -in.county_and_puma "G0600770, G06007702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07702" -in.county_and_puma "G0600770, G06007703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07703" -in.county_and_puma "G0600770, G06007704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 077, the NHGIS PUMA code is 07704" -in.county_and_puma "G0600790, G06007901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 079, the NHGIS PUMA code is 07901" -in.county_and_puma "G0600790, G06007902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 079, the NHGIS PUMA code is 07902" -in.county_and_puma "G0600810, G06008101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08101" -in.county_and_puma "G0600810, G06008102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08102" -in.county_and_puma "G0600810, G06008103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08103" -in.county_and_puma "G0600810, G06008104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08104" -in.county_and_puma "G0600810, G06008105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08105" -in.county_and_puma "G0600810, G06008106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 081, the NHGIS PUMA code is 08106" -in.county_and_puma "G0600830, G06008301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08301" -in.county_and_puma "G0600830, G06008302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08302" -in.county_and_puma "G0600830, G06008303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 083, the NHGIS PUMA code is 08303" -in.county_and_puma "G0600850, G06008501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08501" -in.county_and_puma "G0600850, G06008502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08502" -in.county_and_puma "G0600850, G06008503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08503" -in.county_and_puma "G0600850, G06008504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08504" -in.county_and_puma "G0600850, G06008505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08505" -in.county_and_puma "G0600850, G06008506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08506" -in.county_and_puma "G0600850, G06008507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08507" -in.county_and_puma "G0600850, G06008508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08508" -in.county_and_puma "G0600850, G06008509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08509" -in.county_and_puma "G0600850, G06008510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08510" -in.county_and_puma "G0600850, G06008511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08511" -in.county_and_puma "G0600850, G06008512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08512" -in.county_and_puma "G0600850, G06008513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08513" -in.county_and_puma "G0600850, G06008514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 085, the NHGIS PUMA code is 08514" -in.county_and_puma "G0600870, G06008701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 087, the NHGIS PUMA code is 08701" -in.county_and_puma "G0600870, G06008702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 087, the NHGIS PUMA code is 08702" -in.county_and_puma "G0600890, G06008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 089, the NHGIS PUMA code is 08900" -in.county_and_puma "G0600910, G06005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 091, the NHGIS PUMA code is 05700" -in.county_and_puma "G0600930, G06001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 093, the NHGIS PUMA code is 01500" -in.county_and_puma "G0600950, G06009501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09501" -in.county_and_puma "G0600950, G06009502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09502" -in.county_and_puma "G0600950, G06009503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 095, the NHGIS PUMA code is 09503" -in.county_and_puma "G0600970, G06009701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09701" -in.county_and_puma "G0600970, G06009702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09702" -in.county_and_puma "G0600970, G06009703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 097, the NHGIS PUMA code is 09703" -in.county_and_puma "G0600990, G06009901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09901" -in.county_and_puma "G0600990, G06009902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09902" -in.county_and_puma "G0600990, G06009903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09903" -in.county_and_puma "G0600990, G06009904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 099, the NHGIS PUMA code is 09904" -in.county_and_puma "G0601010, G06010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 101, the NHGIS PUMA code is 10100" -in.county_and_puma "G0601030, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 103, the NHGIS PUMA code is 01100" -in.county_and_puma "G0601050, G06001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 105, the NHGIS PUMA code is 01100" -in.county_and_puma "G0601070, G06010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10701" -in.county_and_puma "G0601070, G06010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10702" -in.county_and_puma "G0601070, G06010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 107, the NHGIS PUMA code is 10703" -in.county_and_puma "G0601090, G06000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 109, the NHGIS PUMA code is 00300" -in.county_and_puma "G0601110, G06011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11101" -in.county_and_puma "G0601110, G06011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11102" -in.county_and_puma "G0601110, G06011103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11103" -in.county_and_puma "G0601110, G06011104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11104" -in.county_and_puma "G0601110, G06011105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11105" -in.county_and_puma "G0601110, G06011106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 111, the NHGIS PUMA code is 11106" -in.county_and_puma "G0601130, G06011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 113, the NHGIS PUMA code is 11300" -in.county_and_puma "G0601150, G06010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 06, the NHGIS county code is 115, the NHGIS PUMA code is 10100" -in.county_and_puma "G0800010, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00804" -in.county_and_puma "G0800010, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00805" -in.county_and_puma "G0800010, G08000806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00806" -in.county_and_puma "G0800010, G08000807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00807" -in.county_and_puma "G0800010, G08000809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00809" -in.county_and_puma "G0800010, G08000810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00810" -in.county_and_puma "G0800010, G08000817" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00817" -in.county_and_puma "G0800010, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 001, the NHGIS PUMA code is 00824" -in.county_and_puma "G0800030, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 003, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800050, G08000808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00808" -in.county_and_puma "G0800050, G08000809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00809" -in.county_and_puma "G0800050, G08000810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00810" -in.county_and_puma "G0800050, G08000811" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00811" -in.county_and_puma "G0800050, G08000815" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00815" -in.county_and_puma "G0800050, G08000820" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00820" -in.county_and_puma "G0800050, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 005, the NHGIS PUMA code is 00824" -in.county_and_puma "G0800070, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 007, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800090, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 009, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800110, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 011, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800130, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00801" -in.county_and_puma "G0800130, G08000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00802" -in.county_and_puma "G0800130, G08000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00803" -in.county_and_puma "G0800130, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 013, the NHGIS PUMA code is 00804" -in.county_and_puma "G0800140, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 014, the NHGIS PUMA code is 00804" -in.county_and_puma "G0800140, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 014, the NHGIS PUMA code is 00805" -in.county_and_puma "G0800150, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 015, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800170, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 017, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800190, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 019, the NHGIS PUMA code is 00801" -in.county_and_puma "G0800210, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 021, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800230, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 023, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800250, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 025, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800270, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 027, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800290, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 029, the NHGIS PUMA code is 01002" -in.county_and_puma "G0800310, G08000812" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00812" -in.county_and_puma "G0800310, G08000813" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00813" -in.county_and_puma "G0800310, G08000814" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00814" -in.county_and_puma "G0800310, G08000815" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00815" -in.county_and_puma "G0800310, G08000816" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 031, the NHGIS PUMA code is 00816" -in.county_and_puma "G0800330, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 033, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800350, G08000821" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00821" -in.county_and_puma "G0800350, G08000822" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00822" -in.county_and_puma "G0800350, G08000823" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 035, the NHGIS PUMA code is 00823" -in.county_and_puma "G0800370, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 037, the NHGIS PUMA code is 00400" -in.county_and_puma "G0800390, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800390, G08000823" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 039, the NHGIS PUMA code is 00823" -in.county_and_puma "G0800410, G08004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04101" -in.county_and_puma "G0800410, G08004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04102" -in.county_and_puma "G0800410, G08004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04103" -in.county_and_puma "G0800410, G08004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04104" -in.county_and_puma "G0800410, G08004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04105" -in.county_and_puma "G0800410, G08004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 041, the NHGIS PUMA code is 04106" -in.county_and_puma "G0800430, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 043, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800450, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 045, the NHGIS PUMA code is 00200" -in.county_and_puma "G0800470, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 047, the NHGIS PUMA code is 00801" -in.county_and_puma "G0800490, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 049, the NHGIS PUMA code is 00400" -in.county_and_puma "G0800510, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 051, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800530, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 053, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800550, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 055, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800570, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 057, the NHGIS PUMA code is 00400" -in.county_and_puma "G0800590, G08000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00801" -in.county_and_puma "G0800590, G08000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00804" -in.county_and_puma "G0800590, G08000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00805" -in.county_and_puma "G0800590, G08000817" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00817" -in.county_and_puma "G0800590, G08000818" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00818" -in.county_and_puma "G0800590, G08000819" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00819" -in.county_and_puma "G0800590, G08000820" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00820" -in.county_and_puma "G0800590, G08000821" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 059, the NHGIS PUMA code is 00821" -in.county_and_puma "G0800610, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 061, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800630, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 063, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800650, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 065, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800670, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 067, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800690, G08000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 069, the NHGIS PUMA code is 00102" -in.county_and_puma "G0800690, G08000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 069, the NHGIS PUMA code is 00103" -in.county_and_puma "G0800710, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 071, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800730, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 073, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800750, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 075, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800770, G08001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 077, the NHGIS PUMA code is 01001" -in.county_and_puma "G0800770, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 077, the NHGIS PUMA code is 01002" -in.county_and_puma "G0800790, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 079, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800810, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 081, the NHGIS PUMA code is 00200" -in.county_and_puma "G0800830, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 083, the NHGIS PUMA code is 00900" -in.county_and_puma "G0800850, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 085, the NHGIS PUMA code is 01002" -in.county_and_puma "G0800870, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 087, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800890, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 089, the NHGIS PUMA code is 00800" -in.county_and_puma "G0800910, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 091, the NHGIS PUMA code is 01002" -in.county_and_puma "G0800930, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 093, the NHGIS PUMA code is 00600" -in.county_and_puma "G0800950, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 095, the NHGIS PUMA code is 00100" -in.county_and_puma "G0800970, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 097, the NHGIS PUMA code is 00400" -in.county_and_puma "G0800990, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 099, the NHGIS PUMA code is 00800" -in.county_and_puma "G0801010, G08000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00600" -in.county_and_puma "G0801010, G08000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00700" -in.county_and_puma "G0801010, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 101, the NHGIS PUMA code is 00800" -in.county_and_puma "G0801030, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 103, the NHGIS PUMA code is 00200" -in.county_and_puma "G0801050, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 105, the NHGIS PUMA code is 00800" -in.county_and_puma "G0801070, G08000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 107, the NHGIS PUMA code is 00200" -in.county_and_puma "G0801090, G08000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 109, the NHGIS PUMA code is 00800" -in.county_and_puma "G0801110, G08000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 111, the NHGIS PUMA code is 00900" -in.county_and_puma "G0801130, G08001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 113, the NHGIS PUMA code is 01002" -in.county_and_puma "G0801150, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 115, the NHGIS PUMA code is 00100" -in.county_and_puma "G0801170, G08000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 117, the NHGIS PUMA code is 00400" -in.county_and_puma "G0801190, G08004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 119, the NHGIS PUMA code is 04101" -in.county_and_puma "G0801210, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 121, the NHGIS PUMA code is 00100" -in.county_and_puma "G0801230, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00100" -in.county_and_puma "G0801230, G08000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00300" -in.county_and_puma "G0801230, G08000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00802" -in.county_and_puma "G0801230, G08000824" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 123, the NHGIS PUMA code is 00824" -in.county_and_puma "G0801250, G08000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 08, the NHGIS county code is 125, the NHGIS PUMA code is 00100" -in.county_and_puma "G0900010, G09000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00100" -in.county_and_puma "G0900010, G09000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00101" -in.county_and_puma "G0900010, G09000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00102" -in.county_and_puma "G0900010, G09000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00103" -in.county_and_puma "G0900010, G09000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00104" -in.county_and_puma "G0900010, G09000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 001, the NHGIS PUMA code is 00105" -in.county_and_puma "G0900030, G09000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00300" -in.county_and_puma "G0900030, G09000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00301" -in.county_and_puma "G0900030, G09000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00302" -in.county_and_puma "G0900030, G09000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00303" -in.county_and_puma "G0900030, G09000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00304" -in.county_and_puma "G0900030, G09000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00305" -in.county_and_puma "G0900030, G09000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 003, the NHGIS PUMA code is 00306" -in.county_and_puma "G0900050, G09000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 005, the NHGIS PUMA code is 00500" -in.county_and_puma "G0900070, G09000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 007, the NHGIS PUMA code is 00700" -in.county_and_puma "G0900090, G09000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00900" -in.county_and_puma "G0900090, G09000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00901" -in.county_and_puma "G0900090, G09000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00902" -in.county_and_puma "G0900090, G09000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00903" -in.county_and_puma "G0900090, G09000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00904" -in.county_and_puma "G0900090, G09000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00905" -in.county_and_puma "G0900090, G09000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 009, the NHGIS PUMA code is 00906" -in.county_and_puma "G0900110, G09001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 011, the NHGIS PUMA code is 01100" -in.county_and_puma "G0900110, G09001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 011, the NHGIS PUMA code is 01101" -in.county_and_puma "G0900130, G09001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 013, the NHGIS PUMA code is 01300" -in.county_and_puma "G0900150, G09001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 09, the NHGIS county code is 015, the NHGIS PUMA code is 01500" -in.county_and_puma "G1000010, G10000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 001, the NHGIS PUMA code is 00200" -in.county_and_puma "G1000030, G10000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00101" -in.county_and_puma "G1000030, G10000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00102" -in.county_and_puma "G1000030, G10000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00103" -in.county_and_puma "G1000030, G10000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 003, the NHGIS PUMA code is 00104" -in.county_and_puma "G1000050, G10000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 10, the NHGIS county code is 005, the NHGIS PUMA code is 00300" -in.county_and_puma "G1100010, G11000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00101" -in.county_and_puma "G1100010, G11000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00102" -in.county_and_puma "G1100010, G11000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00103" -in.county_and_puma "G1100010, G11000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00104" -in.county_and_puma "G1100010, G11000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 11, the NHGIS county code is 001, the NHGIS PUMA code is 00105" -in.county_and_puma "G1200010, G12000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 001, the NHGIS PUMA code is 00101" -in.county_and_puma "G1200010, G12000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 001, the NHGIS PUMA code is 00102" -in.county_and_puma "G1200030, G12008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 003, the NHGIS PUMA code is 08900" -in.county_and_puma "G1200050, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 005, the NHGIS PUMA code is 00500" -in.county_and_puma "G1200070, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 007, the NHGIS PUMA code is 02300" -in.county_and_puma "G1200090, G12000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00901" -in.county_and_puma "G1200090, G12000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00902" -in.county_and_puma "G1200090, G12000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00903" -in.county_and_puma "G1200090, G12000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 009, the NHGIS PUMA code is 00904" -in.county_and_puma "G1200110, G12001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01101" -in.county_and_puma "G1200110, G12001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01102" -in.county_and_puma "G1200110, G12001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01103" -in.county_and_puma "G1200110, G12001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01104" -in.county_and_puma "G1200110, G12001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01105" -in.county_and_puma "G1200110, G12001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01106" -in.county_and_puma "G1200110, G12001107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01107" -in.county_and_puma "G1200110, G12001108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01108" -in.county_and_puma "G1200110, G12001109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01109" -in.county_and_puma "G1200110, G12001110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01110" -in.county_and_puma "G1200110, G12001111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01111" -in.county_and_puma "G1200110, G12001112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01112" -in.county_and_puma "G1200110, G12001113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01113" -in.county_and_puma "G1200110, G12001114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 011, the NHGIS PUMA code is 01114" -in.county_and_puma "G1200130, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 013, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200150, G12001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 015, the NHGIS PUMA code is 01500" -in.county_and_puma "G1200170, G12001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 017, the NHGIS PUMA code is 01701" -in.county_and_puma "G1200190, G12001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 019, the NHGIS PUMA code is 01900" -in.county_and_puma "G1200210, G12002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02101" -in.county_and_puma "G1200210, G12002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02102" -in.county_and_puma "G1200210, G12002103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 021, the NHGIS PUMA code is 02103" -in.county_and_puma "G1200230, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 023, the NHGIS PUMA code is 02300" -in.county_and_puma "G1200270, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 027, the NHGIS PUMA code is 02700" -in.county_and_puma "G1200290, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 029, the NHGIS PUMA code is 02300" -in.county_and_puma "G1200310, G12003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03101" -in.county_and_puma "G1200310, G12003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03102" -in.county_and_puma "G1200310, G12003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03103" -in.county_and_puma "G1200310, G12003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03104" -in.county_and_puma "G1200310, G12003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03105" -in.county_and_puma "G1200310, G12003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03106" -in.county_and_puma "G1200310, G12003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 031, the NHGIS PUMA code is 03107" -in.county_and_puma "G1200330, G12003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 033, the NHGIS PUMA code is 03301" -in.county_and_puma "G1200330, G12003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 033, the NHGIS PUMA code is 03302" -in.county_and_puma "G1200350, G12003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 035, the NHGIS PUMA code is 03500" -in.county_and_puma "G1200370, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 037, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200390, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 039, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200410, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 041, the NHGIS PUMA code is 02300" -in.county_and_puma "G1200430, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 043, the NHGIS PUMA code is 09300" -in.county_and_puma "G1200450, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 045, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200470, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 047, the NHGIS PUMA code is 12100" -in.county_and_puma "G1200490, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 049, the NHGIS PUMA code is 02700" -in.county_and_puma "G1200510, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 051, the NHGIS PUMA code is 09300" -in.county_and_puma "G1200530, G12005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 053, the NHGIS PUMA code is 05301" -in.county_and_puma "G1200550, G12002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 055, the NHGIS PUMA code is 02700" -in.county_and_puma "G1200550, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 055, the NHGIS PUMA code is 09300" -in.county_and_puma "G1200570, G12005701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05701" -in.county_and_puma "G1200570, G12005702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05702" -in.county_and_puma "G1200570, G12005703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05703" -in.county_and_puma "G1200570, G12005704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05704" -in.county_and_puma "G1200570, G12005705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05705" -in.county_and_puma "G1200570, G12005706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05706" -in.county_and_puma "G1200570, G12005707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05707" -in.county_and_puma "G1200570, G12005708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 057, the NHGIS PUMA code is 05708" -in.county_and_puma "G1200590, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 059, the NHGIS PUMA code is 00500" -in.county_and_puma "G1200610, G12006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 061, the NHGIS PUMA code is 06100" -in.county_and_puma "G1200630, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 063, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200650, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 065, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200670, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 067, the NHGIS PUMA code is 12100" -in.county_and_puma "G1200690, G12006901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06901" -in.county_and_puma "G1200690, G12006902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06902" -in.county_and_puma "G1200690, G12006903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 069, the NHGIS PUMA code is 06903" -in.county_and_puma "G1200710, G12007101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07101" -in.county_and_puma "G1200710, G12007102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07102" -in.county_and_puma "G1200710, G12007103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07103" -in.county_and_puma "G1200710, G12007104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07104" -in.county_and_puma "G1200710, G12007105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 071, the NHGIS PUMA code is 07105" -in.county_and_puma "G1200730, G12007300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 073, the NHGIS PUMA code is 07300" -in.county_and_puma "G1200730, G12007301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 073, the NHGIS PUMA code is 07301" -in.county_and_puma "G1200750, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 075, the NHGIS PUMA code is 02300" -in.county_and_puma "G1200770, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 077, the NHGIS PUMA code is 06300" -in.county_and_puma "G1200790, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 079, the NHGIS PUMA code is 12100" -in.county_and_puma "G1200810, G12008101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08101" -in.county_and_puma "G1200810, G12008102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08102" -in.county_and_puma "G1200810, G12008103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 081, the NHGIS PUMA code is 08103" -in.county_and_puma "G1200830, G12008301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08301" -in.county_and_puma "G1200830, G12008302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08302" -in.county_and_puma "G1200830, G12008303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 083, the NHGIS PUMA code is 08303" -in.county_and_puma "G1200850, G12008500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 085, the NHGIS PUMA code is 08500" -in.county_and_puma "G1200860, G12008601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08601" -in.county_and_puma "G1200860, G12008602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08602" -in.county_and_puma "G1200860, G12008603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08603" -in.county_and_puma "G1200860, G12008604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08604" -in.county_and_puma "G1200860, G12008605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08605" -in.county_and_puma "G1200860, G12008606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08606" -in.county_and_puma "G1200860, G12008607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08607" -in.county_and_puma "G1200860, G12008608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08608" -in.county_and_puma "G1200860, G12008609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08609" -in.county_and_puma "G1200860, G12008610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08610" -in.county_and_puma "G1200860, G12008611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08611" -in.county_and_puma "G1200860, G12008612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08612" -in.county_and_puma "G1200860, G12008613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08613" -in.county_and_puma "G1200860, G12008614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08614" -in.county_and_puma "G1200860, G12008615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08615" -in.county_and_puma "G1200860, G12008616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08616" -in.county_and_puma "G1200860, G12008617" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08617" -in.county_and_puma "G1200860, G12008618" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08618" -in.county_and_puma "G1200860, G12008619" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08619" -in.county_and_puma "G1200860, G12008620" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08620" -in.county_and_puma "G1200860, G12008621" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08621" -in.county_and_puma "G1200860, G12008622" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08622" -in.county_and_puma "G1200860, G12008623" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08623" -in.county_and_puma "G1200860, G12008624" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08624" -in.county_and_puma "G1200860, G12008700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 086, the NHGIS PUMA code is 08700" -in.county_and_puma "G1200870, G12008700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 087, the NHGIS PUMA code is 08700" -in.county_and_puma "G1200890, G12008900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 089, the NHGIS PUMA code is 08900" -in.county_and_puma "G1200910, G12009100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 091, the NHGIS PUMA code is 09100" -in.county_and_puma "G1200930, G12009300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 093, the NHGIS PUMA code is 09300" -in.county_and_puma "G1200950, G12009501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09501" -in.county_and_puma "G1200950, G12009502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09502" -in.county_and_puma "G1200950, G12009503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09503" -in.county_and_puma "G1200950, G12009504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09504" -in.county_and_puma "G1200950, G12009505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09505" -in.county_and_puma "G1200950, G12009506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09506" -in.county_and_puma "G1200950, G12009507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09507" -in.county_and_puma "G1200950, G12009508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09508" -in.county_and_puma "G1200950, G12009509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09509" -in.county_and_puma "G1200950, G12009510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 095, the NHGIS PUMA code is 09510" -in.county_and_puma "G1200970, G12009701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 097, the NHGIS PUMA code is 09701" -in.county_and_puma "G1200970, G12009702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 097, the NHGIS PUMA code is 09702" -in.county_and_puma "G1200990, G12009901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09901" -in.county_and_puma "G1200990, G12009902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09902" -in.county_and_puma "G1200990, G12009903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09903" -in.county_and_puma "G1200990, G12009904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09904" -in.county_and_puma "G1200990, G12009905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09905" -in.county_and_puma "G1200990, G12009906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09906" -in.county_and_puma "G1200990, G12009907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09907" -in.county_and_puma "G1200990, G12009908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09908" -in.county_and_puma "G1200990, G12009909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09909" -in.county_and_puma "G1200990, G12009910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09910" -in.county_and_puma "G1200990, G12009911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 099, the NHGIS PUMA code is 09911" -in.county_and_puma "G1201010, G12010101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10101" -in.county_and_puma "G1201010, G12010102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10102" -in.county_and_puma "G1201010, G12010103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10103" -in.county_and_puma "G1201010, G12010104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 101, the NHGIS PUMA code is 10104" -in.county_and_puma "G1201030, G12010301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10301" -in.county_and_puma "G1201030, G12010302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10302" -in.county_and_puma "G1201030, G12010303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10303" -in.county_and_puma "G1201030, G12010304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10304" -in.county_and_puma "G1201030, G12010305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10305" -in.county_and_puma "G1201030, G12010306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10306" -in.county_and_puma "G1201030, G12010307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10307" -in.county_and_puma "G1201030, G12010308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 103, the NHGIS PUMA code is 10308" -in.county_and_puma "G1201050, G12010501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10501" -in.county_and_puma "G1201050, G12010502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10502" -in.county_and_puma "G1201050, G12010503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10503" -in.county_and_puma "G1201050, G12010504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 105, the NHGIS PUMA code is 10504" -in.county_and_puma "G1201070, G12010700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 107, the NHGIS PUMA code is 10700" -in.county_and_puma "G1201090, G12010700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 109, the NHGIS PUMA code is 10700" -in.county_and_puma "G1201090, G12010900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 109, the NHGIS PUMA code is 10900" -in.county_and_puma "G1201110, G12011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 111, the NHGIS PUMA code is 11101" -in.county_and_puma "G1201110, G12011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 111, the NHGIS PUMA code is 11102" -in.county_and_puma "G1201130, G12011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 113, the NHGIS PUMA code is 11300" -in.county_and_puma "G1201150, G12011501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11501" -in.county_and_puma "G1201150, G12011502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11502" -in.county_and_puma "G1201150, G12011503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 115, the NHGIS PUMA code is 11503" -in.county_and_puma "G1201170, G12011701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11701" -in.county_and_puma "G1201170, G12011702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11702" -in.county_and_puma "G1201170, G12011703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11703" -in.county_and_puma "G1201170, G12011704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 117, the NHGIS PUMA code is 11704" -in.county_and_puma "G1201190, G12006902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 119, the NHGIS PUMA code is 06902" -in.county_and_puma "G1201190, G12006903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 119, the NHGIS PUMA code is 06903" -in.county_and_puma "G1201210, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 121, the NHGIS PUMA code is 12100" -in.county_and_puma "G1201230, G12012100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 123, the NHGIS PUMA code is 12100" -in.county_and_puma "G1201250, G12002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 125, the NHGIS PUMA code is 02300" -in.county_and_puma "G1201270, G12003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 03500" -in.county_and_puma "G1201270, G12012701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12701" -in.county_and_puma "G1201270, G12012702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12702" -in.county_and_puma "G1201270, G12012703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12703" -in.county_and_puma "G1201270, G12012704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 127, the NHGIS PUMA code is 12704" -in.county_and_puma "G1201290, G12006300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 129, the NHGIS PUMA code is 06300" -in.county_and_puma "G1201310, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 131, the NHGIS PUMA code is 00500" -in.county_and_puma "G1201330, G12000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 12, the NHGIS county code is 133, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300010, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 001, the NHGIS PUMA code is 01200" -in.county_and_puma "G1300030, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 003, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300050, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 005, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300070, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 007, the NHGIS PUMA code is 01100" -in.county_and_puma "G1300090, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 009, the NHGIS PUMA code is 01600" -in.county_and_puma "G1300110, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 011, the NHGIS PUMA code is 03500" -in.county_and_puma "G1300130, G13003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 013, the NHGIS PUMA code is 03800" -in.county_and_puma "G1300150, G13002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 015, the NHGIS PUMA code is 02900" -in.county_and_puma "G1300170, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 017, the NHGIS PUMA code is 00700" -in.county_and_puma "G1300190, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 019, the NHGIS PUMA code is 00700" -in.county_and_puma "G1300210, G13001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 021, the NHGIS PUMA code is 01400" -in.county_and_puma "G1300230, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 023, the NHGIS PUMA code is 01300" -in.county_and_puma "G1300250, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 025, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300270, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 027, the NHGIS PUMA code is 00700" -in.county_and_puma "G1300290, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 029, the NHGIS PUMA code is 00200" -in.county_and_puma "G1300310, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 031, the NHGIS PUMA code is 00300" -in.county_and_puma "G1300330, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 033, the NHGIS PUMA code is 04200" -in.county_and_puma "G1300350, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 035, the NHGIS PUMA code is 01900" -in.county_and_puma "G1300370, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 037, the NHGIS PUMA code is 01100" -in.county_and_puma "G1300390, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G1300430, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 043, the NHGIS PUMA code is 01300" -in.county_and_puma "G1300450, G13002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 045, the NHGIS PUMA code is 02300" -in.county_and_puma "G1300470, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 047, the NHGIS PUMA code is 02600" -in.county_and_puma "G1300490, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 049, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300510, G13000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 051, the NHGIS PUMA code is 00401" -in.county_and_puma "G1300510, G13000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 051, the NHGIS PUMA code is 00402" -in.county_and_puma "G1300530, G13001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 053, the NHGIS PUMA code is 01700" -in.county_and_puma "G1300550, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 055, the NHGIS PUMA code is 02600" -in.county_and_puma "G1300570, G13003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 057, the NHGIS PUMA code is 03101" -in.county_and_puma "G1300570, G13003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 057, the NHGIS PUMA code is 03102" -in.county_and_puma "G1300590, G13003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 059, the NHGIS PUMA code is 03600" -in.county_and_puma "G1300610, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 061, the NHGIS PUMA code is 01800" -in.county_and_puma "G1300630, G13005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 063, the NHGIS PUMA code is 05001" -in.county_and_puma "G1300630, G13005002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 063, the NHGIS PUMA code is 05002" -in.county_and_puma "G1300650, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 065, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300670, G13003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03001" -in.county_and_puma "G1300670, G13003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03002" -in.county_and_puma "G1300670, G13003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03003" -in.county_and_puma "G1300670, G13003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03004" -in.county_and_puma "G1300670, G13003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 067, the NHGIS PUMA code is 03005" -in.county_and_puma "G1300690, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 069, the NHGIS PUMA code is 00500" -in.county_and_puma "G1300710, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 071, the NHGIS PUMA code is 00800" -in.county_and_puma "G1300730, G13004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 073, the NHGIS PUMA code is 04100" -in.county_and_puma "G1300750, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 075, the NHGIS PUMA code is 00700" -in.county_and_puma "G1300770, G13002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 077, the NHGIS PUMA code is 02100" -in.county_and_puma "G1300790, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 079, the NHGIS PUMA code is 01600" -in.county_and_puma "G1300810, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 081, the NHGIS PUMA code is 01800" -in.county_and_puma "G1300830, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 083, the NHGIS PUMA code is 02600" -in.county_and_puma "G1300850, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 085, the NHGIS PUMA code is 03200" -in.county_and_puma "G1300870, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 087, the NHGIS PUMA code is 01100" -in.county_and_puma "G1300890, G13001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 01007" -in.county_and_puma "G1300890, G13001008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 01008" -in.county_and_puma "G1300890, G13002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02001" -in.county_and_puma "G1300890, G13002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02002" -in.county_and_puma "G1300890, G13002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02003" -in.county_and_puma "G1300890, G13002004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 089, the NHGIS PUMA code is 02004" -in.county_and_puma "G1300910, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 091, the NHGIS PUMA code is 01300" -in.county_and_puma "G1300930, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 093, the NHGIS PUMA code is 01800" -in.county_and_puma "G1300950, G13000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 095, the NHGIS PUMA code is 00900" -in.county_and_puma "G1300970, G13004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 097, the NHGIS PUMA code is 04400" -in.county_and_puma "G1300990, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 099, the NHGIS PUMA code is 01100" -in.county_and_puma "G1301010, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 101, the NHGIS PUMA code is 00500" -in.county_and_puma "G1301030, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 103, the NHGIS PUMA code is 00300" -in.county_and_puma "G1301050, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 105, the NHGIS PUMA code is 03700" -in.county_and_puma "G1301070, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 107, the NHGIS PUMA code is 01300" -in.county_and_puma "G1301090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 109, the NHGIS PUMA code is 01200" -in.county_and_puma "G1301110, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 111, the NHGIS PUMA code is 02800" -in.county_and_puma "G1301130, G13002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 113, the NHGIS PUMA code is 02400" -in.county_and_puma "G1301150, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 115, the NHGIS PUMA code is 02500" -in.county_and_puma "G1301170, G13003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 117, the NHGIS PUMA code is 03300" -in.county_and_puma "G1301190, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 119, the NHGIS PUMA code is 03500" -in.county_and_puma "G1301210, G13001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01001" -in.county_and_puma "G1301210, G13001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01002" -in.county_and_puma "G1301210, G13001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01003" -in.county_and_puma "G1301210, G13001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01004" -in.county_and_puma "G1301210, G13001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01005" -in.county_and_puma "G1301210, G13001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01006" -in.county_and_puma "G1301210, G13001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 01007" -in.county_and_puma "G1301210, G13004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 121, the NHGIS PUMA code is 04600" -in.county_and_puma "G1301230, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 123, the NHGIS PUMA code is 02800" -in.county_and_puma "G1301250, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 125, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301270, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 127, the NHGIS PUMA code is 00100" -in.county_and_puma "G1301290, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 129, the NHGIS PUMA code is 02800" -in.county_and_puma "G1301310, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 131, the NHGIS PUMA code is 01100" -in.county_and_puma "G1301330, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 133, the NHGIS PUMA code is 03700" -in.county_and_puma "G1301350, G13004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04001" -in.county_and_puma "G1301350, G13004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04002" -in.county_and_puma "G1301350, G13004003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04003" -in.county_and_puma "G1301350, G13004004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04004" -in.county_and_puma "G1301350, G13004005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04005" -in.county_and_puma "G1301350, G13004006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 135, the NHGIS PUMA code is 04006" -in.county_and_puma "G1301370, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 137, the NHGIS PUMA code is 03500" -in.county_and_puma "G1301390, G13003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 139, the NHGIS PUMA code is 03400" -in.county_and_puma "G1301410, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 141, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301430, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 143, the NHGIS PUMA code is 02500" -in.county_and_puma "G1301450, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 145, the NHGIS PUMA code is 01800" -in.county_and_puma "G1301470, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 147, the NHGIS PUMA code is 03500" -in.county_and_puma "G1301490, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 149, the NHGIS PUMA code is 02200" -in.county_and_puma "G1301510, G13006001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 151, the NHGIS PUMA code is 06001" -in.county_and_puma "G1301510, G13006002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 151, the NHGIS PUMA code is 06002" -in.county_and_puma "G1301530, G13001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 153, the NHGIS PUMA code is 01500" -in.county_and_puma "G1301550, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 155, the NHGIS PUMA code is 00700" -in.county_and_puma "G1301570, G13003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 157, the NHGIS PUMA code is 03800" -in.county_and_puma "G1301590, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 159, the NHGIS PUMA code is 03900" -in.county_and_puma "G1301610, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 161, the NHGIS PUMA code is 01200" -in.county_and_puma "G1301630, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 163, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301650, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 165, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301670, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 167, the NHGIS PUMA code is 01300" -in.county_and_puma "G1301690, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 169, the NHGIS PUMA code is 01600" -in.county_and_puma "G1301710, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 171, the NHGIS PUMA code is 01900" -in.county_and_puma "G1301730, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 173, the NHGIS PUMA code is 00500" -in.county_and_puma "G1301750, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 175, the NHGIS PUMA code is 01300" -in.county_and_puma "G1301770, G13000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 177, the NHGIS PUMA code is 00900" -in.county_and_puma "G1301790, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 179, the NHGIS PUMA code is 00200" -in.county_and_puma "G1301810, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 181, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301830, G13000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 183, the NHGIS PUMA code is 00200" -in.county_and_puma "G1301850, G13000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 185, the NHGIS PUMA code is 00600" -in.county_and_puma "G1301870, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 187, the NHGIS PUMA code is 03200" -in.county_and_puma "G1301890, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 189, the NHGIS PUMA code is 04200" -in.county_and_puma "G1301910, G13000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 191, the NHGIS PUMA code is 00100" -in.county_and_puma "G1301930, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 193, the NHGIS PUMA code is 01800" -in.county_and_puma "G1301950, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 195, the NHGIS PUMA code is 03700" -in.county_and_puma "G1301970, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 197, the NHGIS PUMA code is 01800" -in.county_and_puma "G1301990, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 199, the NHGIS PUMA code is 02200" -in.county_and_puma "G1302010, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 201, the NHGIS PUMA code is 01100" -in.county_and_puma "G1302050, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 205, the NHGIS PUMA code is 01100" -in.county_and_puma "G1302070, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 207, the NHGIS PUMA code is 01600" -in.county_and_puma "G1302090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 209, the NHGIS PUMA code is 01200" -in.county_and_puma "G1302110, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 211, the NHGIS PUMA code is 03900" -in.county_and_puma "G1302130, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 213, the NHGIS PUMA code is 02800" -in.county_and_puma "G1302150, G13001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 215, the NHGIS PUMA code is 01700" -in.county_and_puma "G1302170, G13004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 217, the NHGIS PUMA code is 04300" -in.county_and_puma "G1302190, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 219, the NHGIS PUMA code is 03700" -in.county_and_puma "G1302210, G13003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 221, the NHGIS PUMA code is 03700" -in.county_and_puma "G1302230, G13004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 223, the NHGIS PUMA code is 04500" -in.county_and_puma "G1302250, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 225, the NHGIS PUMA code is 01600" -in.county_and_puma "G1302270, G13002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 227, the NHGIS PUMA code is 02800" -in.county_and_puma "G1302290, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 229, the NHGIS PUMA code is 00500" -in.county_and_puma "G1302310, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 231, the NHGIS PUMA code is 01900" -in.county_and_puma "G1302330, G13002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 233, the NHGIS PUMA code is 02500" -in.county_and_puma "G1302350, G13001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 235, the NHGIS PUMA code is 01500" -in.county_and_puma "G1302370, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 237, the NHGIS PUMA code is 01600" -in.county_and_puma "G1302390, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 239, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302410, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 241, the NHGIS PUMA code is 03200" -in.county_and_puma "G1302430, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 243, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302450, G13004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 245, the NHGIS PUMA code is 04000" -in.county_and_puma "G1302470, G13004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 247, the NHGIS PUMA code is 04300" -in.county_and_puma "G1302490, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 249, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302510, G13000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 251, the NHGIS PUMA code is 00300" -in.county_and_puma "G1302530, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 253, the NHGIS PUMA code is 01100" -in.county_and_puma "G1302550, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 255, the NHGIS PUMA code is 01900" -in.county_and_puma "G1302570, G13003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 257, the NHGIS PUMA code is 03500" -in.county_and_puma "G1302590, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 259, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302610, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 261, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302630, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 263, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302650, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 265, the NHGIS PUMA code is 04200" -in.county_and_puma "G1302670, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 267, the NHGIS PUMA code is 01200" -in.county_and_puma "G1302690, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 269, the NHGIS PUMA code is 01800" -in.county_and_puma "G1302710, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 271, the NHGIS PUMA code is 01200" -in.county_and_puma "G1302730, G13001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 273, the NHGIS PUMA code is 01100" -in.county_and_puma "G1302750, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 275, the NHGIS PUMA code is 00800" -in.county_and_puma "G1302770, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 277, the NHGIS PUMA code is 00700" -in.county_and_puma "G1302790, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 279, the NHGIS PUMA code is 01200" -in.county_and_puma "G1302810, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 281, the NHGIS PUMA code is 03200" -in.county_and_puma "G1302830, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 283, the NHGIS PUMA code is 01300" -in.county_and_puma "G1302850, G13002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 285, the NHGIS PUMA code is 02200" -in.county_and_puma "G1302870, G13000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 287, the NHGIS PUMA code is 00700" -in.county_and_puma "G1302890, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 289, the NHGIS PUMA code is 01600" -in.county_and_puma "G1302910, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 291, the NHGIS PUMA code is 03200" -in.county_and_puma "G1302930, G13001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 293, the NHGIS PUMA code is 01900" -in.county_and_puma "G1302950, G13002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 295, the NHGIS PUMA code is 02600" -in.county_and_puma "G1302970, G13003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 297, the NHGIS PUMA code is 03900" -in.county_and_puma "G1302990, G13000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 299, the NHGIS PUMA code is 00500" -in.county_and_puma "G1303010, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 301, the NHGIS PUMA code is 04200" -in.county_and_puma "G1303030, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 303, the NHGIS PUMA code is 04200" -in.county_and_puma "G1303050, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 305, the NHGIS PUMA code is 01200" -in.county_and_puma "G1303070, G13001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 307, the NHGIS PUMA code is 01800" -in.county_and_puma "G1303090, G13001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 309, the NHGIS PUMA code is 01200" -in.county_and_puma "G1303110, G13003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 311, the NHGIS PUMA code is 03200" -in.county_and_puma "G1303130, G13002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 313, the NHGIS PUMA code is 02700" -in.county_and_puma "G1303150, G13001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 315, the NHGIS PUMA code is 01300" -in.county_and_puma "G1303170, G13004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 317, the NHGIS PUMA code is 04200" -in.county_and_puma "G1303190, G13001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 319, the NHGIS PUMA code is 01600" -in.county_and_puma "G1303210, G13000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 13, the NHGIS county code is 321, the NHGIS PUMA code is 00800" -in.county_and_puma "G1500010, G15000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 001, the NHGIS PUMA code is 00200" -in.county_and_puma "G1500030, G15000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00301" -in.county_and_puma "G1500030, G15000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00302" -in.county_and_puma "G1500030, G15000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00303" -in.county_and_puma "G1500030, G15000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00304" -in.county_and_puma "G1500030, G15000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00305" -in.county_and_puma "G1500030, G15000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00306" -in.county_and_puma "G1500030, G15000307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00307" -in.county_and_puma "G1500030, G15000308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 003, the NHGIS PUMA code is 00308" -in.county_and_puma "G1500070, G15000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G1500090, G15000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 15, the NHGIS county code is 009, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600010, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00400" -in.county_and_puma "G1600010, G16000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00600" -in.county_and_puma "G1600010, G16000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00701" -in.county_and_puma "G1600010, G16000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00702" -in.county_and_puma "G1600010, G16000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 001, the NHGIS PUMA code is 00800" -in.county_and_puma "G1600030, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 003, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600050, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 005, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600070, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 007, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600090, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 009, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600110, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 011, the NHGIS PUMA code is 01100" -in.county_and_puma "G1600110, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 011, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600130, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 013, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600150, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 015, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600170, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 017, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600190, G16001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 019, the NHGIS PUMA code is 01200" -in.county_and_puma "G1600210, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 021, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600230, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 023, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600250, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 025, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600270, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00400" -in.county_and_puma "G1600270, G16000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00500" -in.county_and_puma "G1600270, G16000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 027, the NHGIS PUMA code is 00600" -in.county_and_puma "G1600290, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 029, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600310, G16000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 031, the NHGIS PUMA code is 00900" -in.county_and_puma "G1600330, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 033, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600350, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 035, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600370, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 037, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600390, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 039, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600410, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 041, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600430, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 043, the NHGIS PUMA code is 01100" -in.county_and_puma "G1600450, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 045, the NHGIS PUMA code is 00400" -in.county_and_puma "G1600470, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 047, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600490, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 049, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600510, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 051, the NHGIS PUMA code is 01100" -in.county_and_puma "G1600530, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 053, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600550, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 055, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600550, G16000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 055, the NHGIS PUMA code is 00200" -in.county_and_puma "G1600570, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 057, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600590, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 059, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600610, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600630, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 063, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600650, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 065, the NHGIS PUMA code is 01100" -in.county_and_puma "G1600670, G16001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 067, the NHGIS PUMA code is 01000" -in.county_and_puma "G1600690, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 069, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600710, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 071, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600730, G16000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 073, the NHGIS PUMA code is 00500" -in.county_and_puma "G1600750, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 075, the NHGIS PUMA code is 00400" -in.county_and_puma "G1600770, G16001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 077, the NHGIS PUMA code is 01300" -in.county_and_puma "G1600790, G16000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 079, the NHGIS PUMA code is 00100" -in.county_and_puma "G1600810, G16001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 081, the NHGIS PUMA code is 01100" -in.county_and_puma "G1600830, G16000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 083, the NHGIS PUMA code is 00900" -in.county_and_puma "G1600850, G16000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 085, the NHGIS PUMA code is 00300" -in.county_and_puma "G1600870, G16000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 16, the NHGIS county code is 087, the NHGIS PUMA code is 00400" -in.county_and_puma "G1700010, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G1700030, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 003, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700050, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 005, the NHGIS PUMA code is 00501" -in.county_and_puma "G1700070, G17002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 007, the NHGIS PUMA code is 02901" -in.county_and_puma "G1700090, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G1700110, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 011, the NHGIS PUMA code is 02501" -in.county_and_puma "G1700130, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 013, the NHGIS PUMA code is 00401" -in.county_and_puma "G1700150, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 015, the NHGIS PUMA code is 00104" -in.county_and_puma "G1700170, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 017, the NHGIS PUMA code is 00401" -in.county_and_puma "G1700190, G17002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 019, the NHGIS PUMA code is 02100" -in.county_and_puma "G1700210, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 021, the NHGIS PUMA code is 01602" -in.county_and_puma "G1700230, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 023, the NHGIS PUMA code is 00700" -in.county_and_puma "G1700250, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 025, the NHGIS PUMA code is 00700" -in.county_and_puma "G1700270, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 027, the NHGIS PUMA code is 00501" -in.county_and_puma "G1700290, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 029, the NHGIS PUMA code is 00600" -in.county_and_puma "G1700310, G17003401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03401" -in.county_and_puma "G1700310, G17003407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03407" -in.county_and_puma "G1700310, G17003408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03408" -in.county_and_puma "G1700310, G17003409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03409" -in.county_and_puma "G1700310, G17003410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03410" -in.county_and_puma "G1700310, G17003411" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03411" -in.county_and_puma "G1700310, G17003412" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03412" -in.county_and_puma "G1700310, G17003413" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03413" -in.county_and_puma "G1700310, G17003414" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03414" -in.county_and_puma "G1700310, G17003415" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03415" -in.county_and_puma "G1700310, G17003416" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03416" -in.county_and_puma "G1700310, G17003417" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03417" -in.county_and_puma "G1700310, G17003418" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03418" -in.county_and_puma "G1700310, G17003419" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03419" -in.county_and_puma "G1700310, G17003420" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03420" -in.county_and_puma "G1700310, G17003421" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03421" -in.county_and_puma "G1700310, G17003422" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03422" -in.county_and_puma "G1700310, G17003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03501" -in.county_and_puma "G1700310, G17003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03502" -in.county_and_puma "G1700310, G17003503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03503" -in.county_and_puma "G1700310, G17003504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03504" -in.county_and_puma "G1700310, G17003520" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03520" -in.county_and_puma "G1700310, G17003521" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03521" -in.county_and_puma "G1700310, G17003522" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03522" -in.county_and_puma "G1700310, G17003523" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03523" -in.county_and_puma "G1700310, G17003524" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03524" -in.county_and_puma "G1700310, G17003525" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03525" -in.county_and_puma "G1700310, G17003526" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03526" -in.county_and_puma "G1700310, G17003527" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03527" -in.county_and_puma "G1700310, G17003528" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03528" -in.county_and_puma "G1700310, G17003529" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03529" -in.county_and_puma "G1700310, G17003530" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03530" -in.county_and_puma "G1700310, G17003531" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03531" -in.county_and_puma "G1700310, G17003532" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 031, the NHGIS PUMA code is 03532" -in.county_and_puma "G1700330, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 033, the NHGIS PUMA code is 00700" -in.county_and_puma "G1700350, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 035, the NHGIS PUMA code is 00600" -in.county_and_puma "G1700370, G17002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 037, the NHGIS PUMA code is 02601" -in.county_and_puma "G1700390, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 039, the NHGIS PUMA code is 01602" -in.county_and_puma "G1700410, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 041, the NHGIS PUMA code is 00600" -in.county_and_puma "G1700430, G17003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03202" -in.county_and_puma "G1700430, G17003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03203" -in.county_and_puma "G1700430, G17003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03204" -in.county_and_puma "G1700430, G17003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03205" -in.county_and_puma "G1700430, G17003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03207" -in.county_and_puma "G1700430, G17003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03208" -in.county_and_puma "G1700430, G17003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 043, the NHGIS PUMA code is 03209" -in.county_and_puma "G1700450, G17000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 045, the NHGIS PUMA code is 00600" -in.county_and_puma "G1700470, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 047, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700490, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 049, the NHGIS PUMA code is 00501" -in.county_and_puma "G1700510, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 051, the NHGIS PUMA code is 00501" -in.county_and_puma "G1700530, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 053, the NHGIS PUMA code is 02200" -in.county_and_puma "G1700550, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 055, the NHGIS PUMA code is 00900" -in.county_and_puma "G1700570, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 057, the NHGIS PUMA code is 00202" -in.county_and_puma "G1700590, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 059, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700610, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 061, the NHGIS PUMA code is 00401" -in.county_and_puma "G1700630, G17003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 063, the NHGIS PUMA code is 03700" -in.county_and_puma "G1700650, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 065, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700670, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 067, the NHGIS PUMA code is 00202" -in.county_and_puma "G1700690, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 069, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700710, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 071, the NHGIS PUMA code is 00202" -in.county_and_puma "G1700730, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 073, the NHGIS PUMA code is 00202" -in.county_and_puma "G1700750, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 075, the NHGIS PUMA code is 02200" -in.county_and_puma "G1700770, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 077, the NHGIS PUMA code is 00900" -in.county_and_puma "G1700790, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 079, the NHGIS PUMA code is 00700" -in.county_and_puma "G1700810, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 081, the NHGIS PUMA code is 01001" -in.county_and_puma "G1700830, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 083, the NHGIS PUMA code is 00401" -in.county_and_puma "G1700850, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 085, the NHGIS PUMA code is 00104" -in.county_and_puma "G1700870, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 087, the NHGIS PUMA code is 00800" -in.county_and_puma "G1700890, G17003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03005" -in.county_and_puma "G1700890, G17003007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03007" -in.county_and_puma "G1700890, G17003008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03008" -in.county_and_puma "G1700890, G17003009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 089, the NHGIS PUMA code is 03009" -in.county_and_puma "G1700910, G17002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 091, the NHGIS PUMA code is 02300" -in.county_and_puma "G1700930, G17003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 093, the NHGIS PUMA code is 03700" -in.county_and_puma "G1700950, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 095, the NHGIS PUMA code is 02501" -in.county_and_puma "G1700970, G17003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03306" -in.county_and_puma "G1700970, G17003307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03307" -in.county_and_puma "G1700970, G17003308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03308" -in.county_and_puma "G1700970, G17003309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03309" -in.county_and_puma "G1700970, G17003310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 097, the NHGIS PUMA code is 03310" -in.county_and_puma "G1700990, G17002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 099, the NHGIS PUMA code is 02400" -in.county_and_puma "G1701010, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 101, the NHGIS PUMA code is 00700" -in.county_and_puma "G1701030, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 103, the NHGIS PUMA code is 00104" -in.county_and_puma "G1701050, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 105, the NHGIS PUMA code is 02200" -in.county_and_puma "G1701070, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 107, the NHGIS PUMA code is 01602" -in.county_and_puma "G1701090, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 109, the NHGIS PUMA code is 00202" -in.county_and_puma "G1701110, G17003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 111, the NHGIS PUMA code is 03601" -in.county_and_puma "G1701110, G17003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 111, the NHGIS PUMA code is 03602" -in.county_and_puma "G1701130, G17002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 113, the NHGIS PUMA code is 02000" -in.county_and_puma "G1701150, G17001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 115, the NHGIS PUMA code is 01500" -in.county_and_puma "G1701170, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 117, the NHGIS PUMA code is 00401" -in.county_and_puma "G1701190, G17001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 119, the NHGIS PUMA code is 01204" -in.county_and_puma "G1701190, G17001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 119, the NHGIS PUMA code is 01205" -in.county_and_puma "G1701210, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 121, the NHGIS PUMA code is 01001" -in.county_and_puma "G1701230, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 123, the NHGIS PUMA code is 02501" -in.county_and_puma "G1701250, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 125, the NHGIS PUMA code is 00300" -in.county_and_puma "G1701270, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 127, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701290, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 129, the NHGIS PUMA code is 01602" -in.county_and_puma "G1701310, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 131, the NHGIS PUMA code is 00202" -in.county_and_puma "G1701330, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 133, the NHGIS PUMA code is 01001" -in.county_and_puma "G1701350, G17000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 135, the NHGIS PUMA code is 00501" -in.county_and_puma "G1701370, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 137, the NHGIS PUMA code is 00401" -in.county_and_puma "G1701390, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 139, the NHGIS PUMA code is 01602" -in.county_and_puma "G1701410, G17002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 141, the NHGIS PUMA code is 02700" -in.county_and_puma "G1701430, G17001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 143, the NHGIS PUMA code is 01701" -in.county_and_puma "G1701450, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 145, the NHGIS PUMA code is 00900" -in.county_and_puma "G1701470, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 147, the NHGIS PUMA code is 01602" -in.county_and_puma "G1701490, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 149, the NHGIS PUMA code is 00300" -in.county_and_puma "G1701510, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 151, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701530, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 153, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701550, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 155, the NHGIS PUMA code is 02501" -in.county_and_puma "G1701570, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 157, the NHGIS PUMA code is 01001" -in.county_and_puma "G1701590, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 159, the NHGIS PUMA code is 00700" -in.county_and_puma "G1701610, G17000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 161, the NHGIS PUMA code is 00105" -in.county_and_puma "G1701630, G17001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 163, the NHGIS PUMA code is 01104" -in.county_and_puma "G1701630, G17001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 163, the NHGIS PUMA code is 01105" -in.county_and_puma "G1701650, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 165, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701670, G17001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 167, the NHGIS PUMA code is 01300" -in.county_and_puma "G1701690, G17000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 169, the NHGIS PUMA code is 00300" -in.county_and_puma "G1701710, G17000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 171, the NHGIS PUMA code is 00401" -in.county_and_puma "G1701730, G17001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 173, the NHGIS PUMA code is 01602" -in.county_and_puma "G1701750, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 175, the NHGIS PUMA code is 02501" -in.county_and_puma "G1701770, G17002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 177, the NHGIS PUMA code is 02700" -in.county_and_puma "G1701790, G17001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 179, the NHGIS PUMA code is 01900" -in.county_and_puma "G1701810, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 181, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701830, G17002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 183, the NHGIS PUMA code is 02200" -in.county_and_puma "G1701850, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 185, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701870, G17000202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 187, the NHGIS PUMA code is 00202" -in.county_and_puma "G1701890, G17001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 189, the NHGIS PUMA code is 01001" -in.county_and_puma "G1701910, G17000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 191, the NHGIS PUMA code is 00700" -in.county_and_puma "G1701930, G17000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 193, the NHGIS PUMA code is 00800" -in.county_and_puma "G1701950, G17000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 195, the NHGIS PUMA code is 00104" -in.county_and_puma "G1701970, G17003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03102" -in.county_and_puma "G1701970, G17003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03105" -in.county_and_puma "G1701970, G17003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03106" -in.county_and_puma "G1701970, G17003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03107" -in.county_and_puma "G1701970, G17003108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 197, the NHGIS PUMA code is 03108" -in.county_and_puma "G1701990, G17000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 199, the NHGIS PUMA code is 00900" -in.county_and_puma "G1702010, G17002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 201, the NHGIS PUMA code is 02801" -in.county_and_puma "G1702010, G17002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 201, the NHGIS PUMA code is 02901" -in.county_and_puma "G1702030, G17002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 17, the NHGIS county code is 203, the NHGIS PUMA code is 02501" -in.county_and_puma "G1800010, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 001, the NHGIS PUMA code is 00900" -in.county_and_puma "G1800030, G18001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01001" -in.county_and_puma "G1800030, G18001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01002" -in.county_and_puma "G1800030, G18001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 003, the NHGIS PUMA code is 01003" -in.county_and_puma "G1800050, G18002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 005, the NHGIS PUMA code is 02900" -in.county_and_puma "G1800070, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 007, the NHGIS PUMA code is 01100" -in.county_and_puma "G1800090, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 009, the NHGIS PUMA code is 01500" -in.county_and_puma "G1800110, G18001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 011, the NHGIS PUMA code is 01801" -in.county_and_puma "G1800130, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 013, the NHGIS PUMA code is 02100" -in.county_and_puma "G1800150, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 015, the NHGIS PUMA code is 01100" -in.county_and_puma "G1800170, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 017, the NHGIS PUMA code is 01300" -in.county_and_puma "G1800190, G18003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 019, the NHGIS PUMA code is 03600" -in.county_and_puma "G1800210, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 021, the NHGIS PUMA code is 01600" -in.county_and_puma "G1800230, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 023, the NHGIS PUMA code is 01100" -in.county_and_puma "G1800250, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 025, the NHGIS PUMA code is 03400" -in.county_and_puma "G1800270, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 027, the NHGIS PUMA code is 02700" -in.county_and_puma "G1800290, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 029, the NHGIS PUMA code is 03100" -in.county_and_puma "G1800310, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 031, the NHGIS PUMA code is 03000" -in.county_and_puma "G1800330, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 033, the NHGIS PUMA code is 00600" -in.county_and_puma "G1800350, G18002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 035, the NHGIS PUMA code is 02000" -in.county_and_puma "G1800370, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 037, the NHGIS PUMA code is 03400" -in.county_and_puma "G1800390, G18000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 039, the NHGIS PUMA code is 00500" -in.county_and_puma "G1800410, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 041, the NHGIS PUMA code is 02600" -in.county_and_puma "G1800430, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 043, the NHGIS PUMA code is 03500" -in.county_and_puma "G1800450, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 045, the NHGIS PUMA code is 01600" -in.county_and_puma "G1800470, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 047, the NHGIS PUMA code is 03100" -in.county_and_puma "G1800490, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 049, the NHGIS PUMA code is 00700" -in.county_and_puma "G1800510, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 051, the NHGIS PUMA code is 03200" -in.county_and_puma "G1800530, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 053, the NHGIS PUMA code is 01400" -in.county_and_puma "G1800550, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 055, the NHGIS PUMA code is 02700" -in.county_and_puma "G1800570, G18001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01801" -in.county_and_puma "G1800570, G18001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01802" -in.county_and_puma "G1800570, G18001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 057, the NHGIS PUMA code is 01803" -in.county_and_puma "G1800590, G18002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 059, the NHGIS PUMA code is 02500" -in.county_and_puma "G1800610, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 061, the NHGIS PUMA code is 03500" -in.county_and_puma "G1800630, G18002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 063, the NHGIS PUMA code is 02200" -in.county_and_puma "G1800650, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 065, the NHGIS PUMA code is 01500" -in.county_and_puma "G1800670, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 067, the NHGIS PUMA code is 01300" -in.county_and_puma "G1800690, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 069, the NHGIS PUMA code is 00900" -in.county_and_puma "G1800710, G18002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 071, the NHGIS PUMA code is 02900" -in.county_and_puma "G1800730, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 073, the NHGIS PUMA code is 00700" -in.county_and_puma "G1800750, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 075, the NHGIS PUMA code is 01500" -in.county_and_puma "G1800770, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 077, the NHGIS PUMA code is 03000" -in.county_and_puma "G1800790, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 079, the NHGIS PUMA code is 03000" -in.county_and_puma "G1800810, G18002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 081, the NHGIS PUMA code is 02400" -in.county_and_puma "G1800830, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 083, the NHGIS PUMA code is 03400" -in.county_and_puma "G1800850, G18000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 085, the NHGIS PUMA code is 00800" -in.county_and_puma "G1800870, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 087, the NHGIS PUMA code is 00600" -in.county_and_puma "G1800890, G18000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00101" -in.county_and_puma "G1800890, G18000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00102" -in.county_and_puma "G1800890, G18000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00103" -in.county_and_puma "G1800890, G18000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 089, the NHGIS PUMA code is 00104" -in.county_and_puma "G1800910, G18000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 091, the NHGIS PUMA code is 00300" -in.county_and_puma "G1800930, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 093, the NHGIS PUMA code is 02700" -in.county_and_puma "G1800950, G18001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 095, the NHGIS PUMA code is 01900" -in.county_and_puma "G1800970, G18002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02301" -in.county_and_puma "G1800970, G18002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02302" -in.county_and_puma "G1800970, G18002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02303" -in.county_and_puma "G1800970, G18002304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02304" -in.county_and_puma "G1800970, G18002305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02305" -in.county_and_puma "G1800970, G18002306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02306" -in.county_and_puma "G1800970, G18002307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 097, the NHGIS PUMA code is 02307" -in.county_and_puma "G1800990, G18000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 099, the NHGIS PUMA code is 00800" -in.county_and_puma "G1801010, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 101, the NHGIS PUMA code is 02700" -in.county_and_puma "G1801030, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 103, the NHGIS PUMA code is 01400" -in.county_and_puma "G1801050, G18002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 105, the NHGIS PUMA code is 02800" -in.county_and_puma "G1801070, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 107, the NHGIS PUMA code is 01100" -in.county_and_puma "G1801090, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 109, the NHGIS PUMA code is 02100" -in.county_and_puma "G1801110, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 111, the NHGIS PUMA code is 00700" -in.county_and_puma "G1801130, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 113, the NHGIS PUMA code is 00600" -in.county_and_puma "G1801150, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 115, the NHGIS PUMA code is 03100" -in.county_and_puma "G1801170, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 117, the NHGIS PUMA code is 02700" -in.county_and_puma "G1801190, G18002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 119, the NHGIS PUMA code is 02700" -in.county_and_puma "G1801210, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 121, the NHGIS PUMA code is 01600" -in.county_and_puma "G1801230, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 123, the NHGIS PUMA code is 03400" -in.county_and_puma "G1801250, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 125, the NHGIS PUMA code is 03400" -in.county_and_puma "G1801270, G18000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 127, the NHGIS PUMA code is 00200" -in.county_and_puma "G1801290, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 129, the NHGIS PUMA code is 03200" -in.county_and_puma "G1801310, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 131, the NHGIS PUMA code is 00700" -in.county_and_puma "G1801330, G18002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 133, the NHGIS PUMA code is 02100" -in.county_and_puma "G1801350, G18001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 135, the NHGIS PUMA code is 01500" -in.county_and_puma "G1801370, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 137, the NHGIS PUMA code is 03100" -in.county_and_puma "G1801390, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 139, the NHGIS PUMA code is 02600" -in.county_and_puma "G1801410, G18000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 141, the NHGIS PUMA code is 00401" -in.county_and_puma "G1801410, G18000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 141, the NHGIS PUMA code is 00402" -in.county_and_puma "G1801430, G18003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 143, the NHGIS PUMA code is 03000" -in.county_and_puma "G1801450, G18002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 145, the NHGIS PUMA code is 02500" -in.county_and_puma "G1801470, G18003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 147, the NHGIS PUMA code is 03400" -in.county_and_puma "G1801490, G18000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 149, the NHGIS PUMA code is 00700" -in.county_and_puma "G1801510, G18000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 151, the NHGIS PUMA code is 00600" -in.county_and_puma "G1801530, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 153, the NHGIS PUMA code is 01600" -in.county_and_puma "G1801550, G18003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 155, the NHGIS PUMA code is 03100" -in.county_and_puma "G1801570, G18001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 157, the NHGIS PUMA code is 01200" -in.county_and_puma "G1801590, G18001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 159, the NHGIS PUMA code is 01300" -in.county_and_puma "G1801610, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 161, the NHGIS PUMA code is 02600" -in.county_and_puma "G1801630, G18003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 163, the NHGIS PUMA code is 03300" -in.county_and_puma "G1801650, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 165, the NHGIS PUMA code is 01600" -in.county_and_puma "G1801670, G18001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 167, the NHGIS PUMA code is 01700" -in.county_and_puma "G1801690, G18001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 169, the NHGIS PUMA code is 01400" -in.county_and_puma "G1801710, G18001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 171, the NHGIS PUMA code is 01600" -in.county_and_puma "G1801730, G18003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 173, the NHGIS PUMA code is 03200" -in.county_and_puma "G1801750, G18003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 175, the NHGIS PUMA code is 03500" -in.county_and_puma "G1801770, G18002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 177, the NHGIS PUMA code is 02600" -in.county_and_puma "G1801790, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 179, the NHGIS PUMA code is 00900" -in.county_and_puma "G1801810, G18001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 181, the NHGIS PUMA code is 01100" -in.county_and_puma "G1801830, G18000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 18, the NHGIS county code is 183, the NHGIS PUMA code is 00900" -in.county_and_puma "G1900010, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 001, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900030, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 003, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900050, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900070, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 007, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900090, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 009, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900110, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 011, the NHGIS PUMA code is 01200" -in.county_and_puma "G1900130, G19000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 013, the NHGIS PUMA code is 00500" -in.county_and_puma "G1900150, G19001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 015, the NHGIS PUMA code is 01300" -in.county_and_puma "G1900170, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900190, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 019, the NHGIS PUMA code is 00700" -in.county_and_puma "G1900210, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 021, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900230, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 023, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900250, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 025, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900270, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 027, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900290, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 029, the NHGIS PUMA code is 02100" -in.county_and_puma "G1900310, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 031, the NHGIS PUMA code is 00800" -in.county_and_puma "G1900330, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 033, the NHGIS PUMA code is 00200" -in.county_and_puma "G1900350, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 035, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900370, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 037, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900390, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 039, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900410, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 041, the NHGIS PUMA code is 00100" -in.county_and_puma "G1900430, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 043, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900450, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 045, the NHGIS PUMA code is 00800" -in.county_and_puma "G1900470, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 047, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900490, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 049, the NHGIS PUMA code is 01400" -in.county_and_puma "G1900490, G19001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 049, the NHGIS PUMA code is 01500" -in.county_and_puma "G1900510, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 051, the NHGIS PUMA code is 02200" -in.county_and_puma "G1900530, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 053, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900550, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 055, the NHGIS PUMA code is 00700" -in.county_and_puma "G1900570, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 057, the NHGIS PUMA code is 02300" -in.county_and_puma "G1900590, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 059, the NHGIS PUMA code is 00100" -in.county_and_puma "G1900610, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 061, the NHGIS PUMA code is 00700" -in.county_and_puma "G1900630, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 063, the NHGIS PUMA code is 00100" -in.county_and_puma "G1900650, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 065, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900670, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 067, the NHGIS PUMA code is 00200" -in.county_and_puma "G1900690, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 069, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900710, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 071, the NHGIS PUMA code is 02100" -in.county_and_puma "G1900730, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 073, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900750, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 075, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900770, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 077, the NHGIS PUMA code is 01800" -in.county_and_puma "G1900790, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 079, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900810, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 081, the NHGIS PUMA code is 00200" -in.county_and_puma "G1900830, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 083, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900850, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 085, the NHGIS PUMA code is 02100" -in.county_and_puma "G1900870, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 087, the NHGIS PUMA code is 02300" -in.county_and_puma "G1900890, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 089, the NHGIS PUMA code is 00400" -in.county_and_puma "G1900910, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 091, the NHGIS PUMA code is 00600" -in.county_and_puma "G1900930, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 093, the NHGIS PUMA code is 01900" -in.county_and_puma "G1900950, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 095, the NHGIS PUMA code is 01200" -in.county_and_puma "G1900970, G19000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 097, the NHGIS PUMA code is 00700" -in.county_and_puma "G1900990, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 099, the NHGIS PUMA code is 01400" -in.county_and_puma "G1901010, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 101, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901030, G19001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 103, the NHGIS PUMA code is 01100" -in.county_and_puma "G1901050, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 105, the NHGIS PUMA code is 00800" -in.county_and_puma "G1901070, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 107, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901090, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 109, the NHGIS PUMA code is 00200" -in.county_and_puma "G1901110, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 111, the NHGIS PUMA code is 02300" -in.county_and_puma "G1901130, G19001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 113, the NHGIS PUMA code is 01000" -in.county_and_puma "G1901150, G19002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 115, the NHGIS PUMA code is 02300" -in.county_and_puma "G1901170, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 117, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901190, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 119, the NHGIS PUMA code is 00100" -in.county_and_puma "G1901210, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 121, the NHGIS PUMA code is 01400" -in.county_and_puma "G1901230, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 123, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901250, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 125, the NHGIS PUMA code is 01400" -in.county_and_puma "G1901270, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 127, the NHGIS PUMA code is 01200" -in.county_and_puma "G1901290, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 129, the NHGIS PUMA code is 02100" -in.county_and_puma "G1901310, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 131, the NHGIS PUMA code is 00200" -in.county_and_puma "G1901330, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 133, the NHGIS PUMA code is 01900" -in.county_and_puma "G1901350, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 135, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901370, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 137, the NHGIS PUMA code is 02100" -in.county_and_puma "G1901390, G19000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 139, the NHGIS PUMA code is 00800" -in.county_and_puma "G1901410, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 141, the NHGIS PUMA code is 00100" -in.county_and_puma "G1901430, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 143, the NHGIS PUMA code is 00100" -in.county_and_puma "G1901450, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 145, the NHGIS PUMA code is 02100" -in.county_and_puma "G1901470, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 147, the NHGIS PUMA code is 00100" -in.county_and_puma "G1901490, G19002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 149, the NHGIS PUMA code is 02000" -in.county_and_puma "G1901510, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 151, the NHGIS PUMA code is 01900" -in.county_and_puma "G1901530, G19001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01500" -in.county_and_puma "G1901530, G19001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01600" -in.county_and_puma "G1901530, G19001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 153, the NHGIS PUMA code is 01700" -in.county_and_puma "G1901550, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 155, the NHGIS PUMA code is 02100" -in.county_and_puma "G1901570, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 157, the NHGIS PUMA code is 01200" -in.county_and_puma "G1901590, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 159, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901610, G19001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 161, the NHGIS PUMA code is 01900" -in.county_and_puma "G1901630, G19000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 163, the NHGIS PUMA code is 00900" -in.county_and_puma "G1901650, G19002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 165, the NHGIS PUMA code is 02100" -in.county_and_puma "G1901670, G19000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 167, the NHGIS PUMA code is 00100" -in.county_and_puma "G1901690, G19001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 169, the NHGIS PUMA code is 01300" -in.county_and_puma "G1901710, G19001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 171, the NHGIS PUMA code is 01200" -in.county_and_puma "G1901730, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 173, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901750, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 175, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901770, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 177, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901790, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 179, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901810, G19001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 181, the NHGIS PUMA code is 01400" -in.county_and_puma "G1901830, G19002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 183, the NHGIS PUMA code is 02200" -in.county_and_puma "G1901850, G19001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 185, the NHGIS PUMA code is 01800" -in.county_and_puma "G1901870, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 187, the NHGIS PUMA code is 00600" -in.county_and_puma "G1901890, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 189, the NHGIS PUMA code is 00200" -in.county_and_puma "G1901910, G19000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 191, the NHGIS PUMA code is 00400" -in.county_and_puma "G1901930, G19002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 193, the NHGIS PUMA code is 02000" -in.county_and_puma "G1901950, G19000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 195, the NHGIS PUMA code is 00200" -in.county_and_puma "G1901970, G19000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 19, the NHGIS county code is 197, the NHGIS PUMA code is 00600" -in.county_and_puma "G2000010, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 001, the NHGIS PUMA code is 01400" -in.county_and_puma "G2000030, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 003, the NHGIS PUMA code is 01400" -in.county_and_puma "G2000050, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G2000070, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 007, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000090, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 009, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000110, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 011, the NHGIS PUMA code is 01400" -in.county_and_puma "G2000130, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 013, the NHGIS PUMA code is 00802" -in.county_and_puma "G2000150, G20001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 015, the NHGIS PUMA code is 01302" -in.county_and_puma "G2000150, G20001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 015, the NHGIS PUMA code is 01304" -in.county_and_puma "G2000170, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 017, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000190, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 019, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000210, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 021, the NHGIS PUMA code is 01500" -in.county_and_puma "G2000230, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 023, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000250, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 025, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000270, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 027, the NHGIS PUMA code is 00200" -in.county_and_puma "G2000290, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 029, the NHGIS PUMA code is 00200" -in.county_and_puma "G2000310, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 031, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000330, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 033, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000350, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 035, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000350, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 035, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000370, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 037, the NHGIS PUMA code is 01500" -in.county_and_puma "G2000390, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000410, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 041, the NHGIS PUMA code is 00200" -in.county_and_puma "G2000430, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 043, the NHGIS PUMA code is 00400" -in.county_and_puma "G2000450, G20000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 045, the NHGIS PUMA code is 00700" -in.county_and_puma "G2000470, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 047, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000490, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 049, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000510, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 051, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000530, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 053, the NHGIS PUMA code is 00200" -in.county_and_puma "G2000550, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 055, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000570, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 057, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000590, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 059, the NHGIS PUMA code is 01400" -in.county_and_puma "G2000610, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G2000630, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 063, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000650, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 065, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000670, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 067, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000690, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 069, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000710, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 071, the NHGIS PUMA code is 00100" -in.county_and_puma "G2000730, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 073, the NHGIS PUMA code is 00900" -in.county_and_puma "G2000750, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 075, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000770, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 077, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000790, G20001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 079, the NHGIS PUMA code is 01301" -in.county_and_puma "G2000810, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 081, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000830, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 083, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000850, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 085, the NHGIS PUMA code is 00802" -in.county_and_puma "G2000870, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 087, the NHGIS PUMA code is 00400" -in.county_and_puma "G2000890, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 089, the NHGIS PUMA code is 00200" -in.county_and_puma "G2000910, G20000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00601" -in.county_and_puma "G2000910, G20000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00602" -in.county_and_puma "G2000910, G20000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00603" -in.county_and_puma "G2000910, G20000604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 091, the NHGIS PUMA code is 00604" -in.county_and_puma "G2000930, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 093, the NHGIS PUMA code is 01200" -in.county_and_puma "G2000950, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 095, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000970, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 097, the NHGIS PUMA code is 01100" -in.county_and_puma "G2000990, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 099, the NHGIS PUMA code is 01500" -in.county_and_puma "G2001010, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 101, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001030, G20000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 103, the NHGIS PUMA code is 00400" -in.county_and_puma "G2001050, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 105, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001070, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 107, the NHGIS PUMA code is 01400" -in.county_and_puma "G2001090, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 109, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001110, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 111, the NHGIS PUMA code is 00900" -in.county_and_puma "G2001130, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 113, the NHGIS PUMA code is 01000" -in.county_and_puma "G2001150, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 115, the NHGIS PUMA code is 00900" -in.county_and_puma "G2001170, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 117, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001190, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 119, the NHGIS PUMA code is 01200" -in.county_and_puma "G2001210, G20001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 121, the NHGIS PUMA code is 01400" -in.county_and_puma "G2001230, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 123, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001250, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 125, the NHGIS PUMA code is 01500" -in.county_and_puma "G2001270, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 127, the NHGIS PUMA code is 00900" -in.county_and_puma "G2001290, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 129, the NHGIS PUMA code is 01200" -in.county_and_puma "G2001310, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 131, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001330, G20001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 133, the NHGIS PUMA code is 01500" -in.county_and_puma "G2001350, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 135, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001370, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 137, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001390, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 139, the NHGIS PUMA code is 00802" -in.county_and_puma "G2001410, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 141, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001430, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 143, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001450, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 145, the NHGIS PUMA code is 01100" -in.county_and_puma "G2001470, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 147, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001490, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 149, the NHGIS PUMA code is 00300" -in.county_and_puma "G2001510, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 151, the NHGIS PUMA code is 01100" -in.county_and_puma "G2001530, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 153, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001550, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 155, the NHGIS PUMA code is 01000" -in.county_and_puma "G2001570, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 157, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001590, G20001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 159, the NHGIS PUMA code is 01000" -in.county_and_puma "G2001610, G20000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 161, the NHGIS PUMA code is 00300" -in.county_and_puma "G2001630, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 163, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001650, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 165, the NHGIS PUMA code is 01100" -in.county_and_puma "G2001670, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 167, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001690, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 169, the NHGIS PUMA code is 00200" -in.county_and_puma "G2001710, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 171, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001730, G20001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01301" -in.county_and_puma "G2001730, G20001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01302" -in.county_and_puma "G2001730, G20001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01303" -in.county_and_puma "G2001730, G20001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 173, the NHGIS PUMA code is 01304" -in.county_and_puma "G2001750, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 175, the NHGIS PUMA code is 01200" -in.county_and_puma "G2001770, G20000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 177, the NHGIS PUMA code is 00801" -in.county_and_puma "G2001770, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 177, the NHGIS PUMA code is 00802" -in.county_and_puma "G2001790, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 179, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001810, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 181, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001830, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 183, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001850, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 185, the NHGIS PUMA code is 01100" -in.county_and_puma "G2001870, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 187, the NHGIS PUMA code is 01200" -in.county_and_puma "G2001890, G20001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 189, the NHGIS PUMA code is 01200" -in.county_and_puma "G2001910, G20001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 191, the NHGIS PUMA code is 01100" -in.county_and_puma "G2001930, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 193, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001950, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 195, the NHGIS PUMA code is 00100" -in.county_and_puma "G2001970, G20000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 197, the NHGIS PUMA code is 00802" -in.county_and_puma "G2001990, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 199, the NHGIS PUMA code is 00100" -in.county_and_puma "G2002010, G20000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 201, the NHGIS PUMA code is 00200" -in.county_and_puma "G2002030, G20000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 203, the NHGIS PUMA code is 00100" -in.county_and_puma "G2002050, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 205, the NHGIS PUMA code is 00900" -in.county_and_puma "G2002070, G20000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 207, the NHGIS PUMA code is 00900" -in.county_and_puma "G2002090, G20000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 20, the NHGIS county code is 209, the NHGIS PUMA code is 00500" -in.county_and_puma "G2100010, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 001, the NHGIS PUMA code is 00600" -in.county_and_puma "G2100030, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 003, the NHGIS PUMA code is 00400" -in.county_and_puma "G2100050, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 005, the NHGIS PUMA code is 02000" -in.county_and_puma "G2100070, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G2100090, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G2100110, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 011, the NHGIS PUMA code is 02700" -in.county_and_puma "G2100130, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 013, the NHGIS PUMA code is 00900" -in.county_and_puma "G2100150, G21002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 015, the NHGIS PUMA code is 02500" -in.county_and_puma "G2100170, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 017, the NHGIS PUMA code is 02300" -in.county_and_puma "G2100190, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 019, the NHGIS PUMA code is 02800" -in.county_and_puma "G2100210, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 021, the NHGIS PUMA code is 02100" -in.county_and_puma "G2100230, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 023, the NHGIS PUMA code is 02700" -in.county_and_puma "G2100250, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 025, the NHGIS PUMA code is 01000" -in.county_and_puma "G2100270, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 027, the NHGIS PUMA code is 01300" -in.county_and_puma "G2100290, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 029, the NHGIS PUMA code is 01600" -in.county_and_puma "G2100310, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 031, the NHGIS PUMA code is 00400" -in.county_and_puma "G2100330, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 033, the NHGIS PUMA code is 00200" -in.county_and_puma "G2100350, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 035, the NHGIS PUMA code is 00100" -in.county_and_puma "G2100370, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 037, the NHGIS PUMA code is 02600" -in.county_and_puma "G2100390, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G2100410, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 041, the NHGIS PUMA code is 02600" -in.county_and_puma "G2100430, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 043, the NHGIS PUMA code is 02800" -in.county_and_puma "G2100450, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 045, the NHGIS PUMA code is 00600" -in.county_and_puma "G2100470, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 047, the NHGIS PUMA code is 00300" -in.county_and_puma "G2100490, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 049, the NHGIS PUMA code is 02300" -in.county_and_puma "G2100510, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 051, the NHGIS PUMA code is 00800" -in.county_and_puma "G2100530, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 053, the NHGIS PUMA code is 00600" -in.county_and_puma "G2100550, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 055, the NHGIS PUMA code is 00200" -in.county_and_puma "G2100570, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 057, the NHGIS PUMA code is 00600" -in.county_and_puma "G2100590, G21001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 059, the NHGIS PUMA code is 01500" -in.county_and_puma "G2100610, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 061, the NHGIS PUMA code is 00400" -in.county_and_puma "G2100630, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 063, the NHGIS PUMA code is 02800" -in.county_and_puma "G2100650, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 065, the NHGIS PUMA code is 02200" -in.county_and_puma "G2100670, G21001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 067, the NHGIS PUMA code is 01901" -in.county_and_puma "G2100670, G21001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 067, the NHGIS PUMA code is 01902" -in.county_and_puma "G2100690, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 069, the NHGIS PUMA code is 02700" -in.county_and_puma "G2100710, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 071, the NHGIS PUMA code is 01100" -in.county_and_puma "G2100730, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 073, the NHGIS PUMA code is 02000" -in.county_and_puma "G2100750, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 075, the NHGIS PUMA code is 00100" -in.county_and_puma "G2100770, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 077, the NHGIS PUMA code is 02600" -in.county_and_puma "G2100790, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 079, the NHGIS PUMA code is 02100" -in.county_and_puma "G2100810, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 081, the NHGIS PUMA code is 02600" -in.county_and_puma "G2100830, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 083, the NHGIS PUMA code is 00100" -in.county_and_puma "G2100850, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 085, the NHGIS PUMA code is 01300" -in.county_and_puma "G2100870, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 087, the NHGIS PUMA code is 00600" -in.county_and_puma "G2100890, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 089, the NHGIS PUMA code is 02800" -in.county_and_puma "G2100910, G21001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 091, the NHGIS PUMA code is 01500" -in.county_and_puma "G2100930, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 093, the NHGIS PUMA code is 01200" -in.county_and_puma "G2100930, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 093, the NHGIS PUMA code is 01300" -in.county_and_puma "G2100950, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 095, the NHGIS PUMA code is 00900" -in.county_and_puma "G2100970, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 097, the NHGIS PUMA code is 02300" -in.county_and_puma "G2100990, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 099, the NHGIS PUMA code is 00400" -in.county_and_puma "G2101010, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 101, the NHGIS PUMA code is 01400" -in.county_and_puma "G2101030, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 103, the NHGIS PUMA code is 01800" -in.county_and_puma "G2101050, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 105, the NHGIS PUMA code is 00100" -in.county_and_puma "G2101070, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 107, the NHGIS PUMA code is 00200" -in.county_and_puma "G2101090, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 109, the NHGIS PUMA code is 00800" -in.county_and_puma "G2101110, G21001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01701" -in.county_and_puma "G2101110, G21001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01702" -in.county_and_puma "G2101110, G21001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01703" -in.county_and_puma "G2101110, G21001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01704" -in.county_and_puma "G2101110, G21001705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01705" -in.county_and_puma "G2101110, G21001706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 111, the NHGIS PUMA code is 01706" -in.county_and_puma "G2101130, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 113, the NHGIS PUMA code is 02100" -in.county_and_puma "G2101150, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 115, the NHGIS PUMA code is 01100" -in.county_and_puma "G2101170, G21002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 117, the NHGIS PUMA code is 02400" -in.county_and_puma "G2101190, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 119, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101210, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 121, the NHGIS PUMA code is 00900" -in.county_and_puma "G2101230, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 123, the NHGIS PUMA code is 01200" -in.county_and_puma "G2101250, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 125, the NHGIS PUMA code is 00800" -in.county_and_puma "G2101270, G21002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 127, the NHGIS PUMA code is 02800" -in.county_and_puma "G2101290, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 129, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101310, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 131, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101330, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 133, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101350, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 135, the NHGIS PUMA code is 02700" -in.county_and_puma "G2101370, G21002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 137, the NHGIS PUMA code is 02100" -in.county_and_puma "G2101390, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 139, the NHGIS PUMA code is 00200" -in.county_and_puma "G2101410, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 141, the NHGIS PUMA code is 00400" -in.county_and_puma "G2101430, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 143, the NHGIS PUMA code is 00300" -in.county_and_puma "G2101450, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 145, the NHGIS PUMA code is 00100" -in.county_and_puma "G2101470, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 147, the NHGIS PUMA code is 00700" -in.county_and_puma "G2101490, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 149, the NHGIS PUMA code is 01400" -in.county_and_puma "G2101510, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 151, the NHGIS PUMA code is 02200" -in.county_and_puma "G2101530, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 153, the NHGIS PUMA code is 01100" -in.county_and_puma "G2101550, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 155, the NHGIS PUMA code is 01200" -in.county_and_puma "G2101570, G21000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 157, the NHGIS PUMA code is 00100" -in.county_and_puma "G2101590, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 159, the NHGIS PUMA code is 01100" -in.county_and_puma "G2101610, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 161, the NHGIS PUMA code is 02700" -in.county_and_puma "G2101630, G21001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 163, the NHGIS PUMA code is 01300" -in.county_and_puma "G2101650, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 165, the NHGIS PUMA code is 02700" -in.county_and_puma "G2101670, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 167, the NHGIS PUMA code is 02000" -in.county_and_puma "G2101690, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 169, the NHGIS PUMA code is 00400" -in.county_and_puma "G2101710, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 171, the NHGIS PUMA code is 00400" -in.county_and_puma "G2101730, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 173, the NHGIS PUMA code is 02700" -in.county_and_puma "G2101750, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 175, the NHGIS PUMA code is 02700" -in.county_and_puma "G2101770, G21000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 177, the NHGIS PUMA code is 00200" -in.county_and_puma "G2101790, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 179, the NHGIS PUMA code is 01200" -in.county_and_puma "G2101810, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 181, the NHGIS PUMA code is 02300" -in.county_and_puma "G2101830, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 183, the NHGIS PUMA code is 01400" -in.county_and_puma "G2101850, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 185, the NHGIS PUMA code is 01800" -in.county_and_puma "G2101870, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 187, the NHGIS PUMA code is 02600" -in.county_and_puma "G2101890, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 189, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101910, G21002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 191, the NHGIS PUMA code is 02600" -in.county_and_puma "G2101930, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 193, the NHGIS PUMA code is 01000" -in.county_and_puma "G2101950, G21001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 195, the NHGIS PUMA code is 01100" -in.county_and_puma "G2101970, G21002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 197, the NHGIS PUMA code is 02200" -in.county_and_puma "G2101990, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 199, the NHGIS PUMA code is 00700" -in.county_and_puma "G2102010, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 201, the NHGIS PUMA code is 02700" -in.county_and_puma "G2102030, G21000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 203, the NHGIS PUMA code is 00800" -in.county_and_puma "G2102050, G21002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 205, the NHGIS PUMA code is 02700" -in.county_and_puma "G2102070, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 207, the NHGIS PUMA code is 00600" -in.county_and_puma "G2102090, G21002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 209, the NHGIS PUMA code is 02300" -in.county_and_puma "G2102110, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 211, the NHGIS PUMA code is 01600" -in.county_and_puma "G2102110, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 211, the NHGIS PUMA code is 01800" -in.county_and_puma "G2102130, G21000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 213, the NHGIS PUMA code is 00400" -in.county_and_puma "G2102150, G21001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 215, the NHGIS PUMA code is 01600" -in.county_and_puma "G2102170, G21000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 217, the NHGIS PUMA code is 00600" -in.county_and_puma "G2102190, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 219, the NHGIS PUMA code is 00300" -in.county_and_puma "G2102210, G21000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 221, the NHGIS PUMA code is 00300" -in.county_and_puma "G2102230, G21001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 223, the NHGIS PUMA code is 01800" -in.county_and_puma "G2102250, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 225, the NHGIS PUMA code is 01400" -in.county_and_puma "G2102270, G21000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 227, the NHGIS PUMA code is 00500" -in.county_and_puma "G2102290, G21001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 229, the NHGIS PUMA code is 01200" -in.county_and_puma "G2102310, G21000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 231, the NHGIS PUMA code is 00700" -in.county_and_puma "G2102330, G21001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 233, the NHGIS PUMA code is 01400" -in.county_and_puma "G2102350, G21000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 235, the NHGIS PUMA code is 00900" -in.county_and_puma "G2102370, G21001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 237, the NHGIS PUMA code is 01000" -in.county_and_puma "G2102390, G21002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 21, the NHGIS county code is 239, the NHGIS PUMA code is 02000" -in.county_and_puma "G2200010, G22001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 001, the NHGIS PUMA code is 01100" -in.county_and_puma "G2200030, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 003, the NHGIS PUMA code is 00800" -in.county_and_puma "G2200050, G22001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 005, the NHGIS PUMA code is 01600" -in.county_and_puma "G2200070, G22002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 007, the NHGIS PUMA code is 02000" -in.county_and_puma "G2200090, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 009, the NHGIS PUMA code is 00600" -in.county_and_puma "G2200110, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G2200130, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 013, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200150, G22000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 015, the NHGIS PUMA code is 00200" -in.county_and_puma "G2200170, G22000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 017, the NHGIS PUMA code is 00100" -in.county_and_puma "G2200170, G22000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 017, the NHGIS PUMA code is 00101" -in.county_and_puma "G2200190, G22000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 019, the NHGIS PUMA code is 00800" -in.county_and_puma "G2200190, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 019, the NHGIS PUMA code is 00900" -in.county_and_puma "G2200210, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 021, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200230, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 023, the NHGIS PUMA code is 00900" -in.county_and_puma "G2200250, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 025, the NHGIS PUMA code is 00600" -in.county_and_puma "G2200270, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200290, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 029, the NHGIS PUMA code is 00600" -in.county_and_puma "G2200310, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 031, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200330, G22001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01500" -in.county_and_puma "G2200330, G22001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01501" -in.county_and_puma "G2200330, G22001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 033, the NHGIS PUMA code is 01502" -in.county_and_puma "G2200350, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 035, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200370, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 037, the NHGIS PUMA code is 01400" -in.county_and_puma "G2200390, G22001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 039, the NHGIS PUMA code is 01000" -in.county_and_puma "G2200410, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 041, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200430, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 043, the NHGIS PUMA code is 00600" -in.county_and_puma "G2200450, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 045, the NHGIS PUMA code is 01300" -in.county_and_puma "G2200470, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 047, the NHGIS PUMA code is 01400" -in.county_and_puma "G2200490, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 049, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200510, G22002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02300" -in.county_and_puma "G2200510, G22002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02301" -in.county_and_puma "G2200510, G22002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02302" -in.county_and_puma "G2200510, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 051, the NHGIS PUMA code is 02500" -in.county_and_puma "G2200530, G22000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 053, the NHGIS PUMA code is 00900" -in.county_and_puma "G2200550, G22001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 055, the NHGIS PUMA code is 01200" -in.county_and_puma "G2200550, G22001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 055, the NHGIS PUMA code is 01201" -in.county_and_puma "G2200570, G22002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 057, the NHGIS PUMA code is 02000" -in.county_and_puma "G2200590, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 059, the NHGIS PUMA code is 00600" -in.county_and_puma "G2200610, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200630, G22001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 063, the NHGIS PUMA code is 01700" -in.county_and_puma "G2200650, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 065, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200670, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 067, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200690, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 069, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200710, G22002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02400" -in.county_and_puma "G2200710, G22002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02401" -in.county_and_puma "G2200710, G22002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 071, the NHGIS PUMA code is 02402" -in.county_and_puma "G2200730, G22000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 073, the NHGIS PUMA code is 00400" -in.county_and_puma "G2200750, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 075, the NHGIS PUMA code is 02500" -in.county_and_puma "G2200770, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 077, the NHGIS PUMA code is 01400" -in.county_and_puma "G2200790, G22000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 079, the NHGIS PUMA code is 00700" -in.county_and_puma "G2200810, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 081, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200830, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 083, the NHGIS PUMA code is 00500" -in.county_and_puma "G2200850, G22000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 085, the NHGIS PUMA code is 00300" -in.county_and_puma "G2200870, G22002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 087, the NHGIS PUMA code is 02500" -in.county_and_puma "G2200890, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 089, the NHGIS PUMA code is 01900" -in.county_and_puma "G2200910, G22001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 091, the NHGIS PUMA code is 01700" -in.county_and_puma "G2200930, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 093, the NHGIS PUMA code is 01900" -in.county_and_puma "G2200950, G22001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 095, the NHGIS PUMA code is 01900" -in.county_and_puma "G2200970, G22001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 097, the NHGIS PUMA code is 01000" -in.county_and_puma "G2200990, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 099, the NHGIS PUMA code is 01300" -in.county_and_puma "G2201010, G22001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 101, the NHGIS PUMA code is 01300" -in.county_and_puma "G2201030, G22002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 103, the NHGIS PUMA code is 02200" -in.county_and_puma "G2201030, G22002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 103, the NHGIS PUMA code is 02201" -in.county_and_puma "G2201050, G22001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 105, the NHGIS PUMA code is 01800" -in.county_and_puma "G2201070, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 107, the NHGIS PUMA code is 00500" -in.county_and_puma "G2201090, G22002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 109, the NHGIS PUMA code is 02100" -in.county_and_puma "G2201110, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 111, the NHGIS PUMA code is 00500" -in.county_and_puma "G2201130, G22001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 113, the NHGIS PUMA code is 01100" -in.county_and_puma "G2201150, G22000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 115, the NHGIS PUMA code is 00700" -in.county_and_puma "G2201170, G22001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 117, the NHGIS PUMA code is 01800" -in.county_and_puma "G2201190, G22000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 119, the NHGIS PUMA code is 00200" -in.county_and_puma "G2201210, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 121, the NHGIS PUMA code is 01400" -in.county_and_puma "G2201230, G22000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 123, the NHGIS PUMA code is 00500" -in.county_and_puma "G2201250, G22001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 125, the NHGIS PUMA code is 01400" -in.county_and_puma "G2201270, G22000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 22, the NHGIS county code is 127, the NHGIS PUMA code is 00600" -in.county_and_puma "G2300010, G23000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 001, the NHGIS PUMA code is 00600" -in.county_and_puma "G2300030, G23000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 003, the NHGIS PUMA code is 00100" -in.county_and_puma "G2300050, G23000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00700" -in.county_and_puma "G2300050, G23000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00800" -in.county_and_puma "G2300050, G23000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 00900" -in.county_and_puma "G2300050, G23001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 005, the NHGIS PUMA code is 01000" -in.county_and_puma "G2300070, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 007, the NHGIS PUMA code is 00200" -in.county_and_puma "G2300090, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 009, the NHGIS PUMA code is 00500" -in.county_and_puma "G2300110, G23000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 011, the NHGIS PUMA code is 00400" -in.county_and_puma "G2300130, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 013, the NHGIS PUMA code is 00500" -in.county_and_puma "G2300150, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 015, the NHGIS PUMA code is 00500" -in.county_and_puma "G2300170, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 017, the NHGIS PUMA code is 00200" -in.county_and_puma "G2300190, G23000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 019, the NHGIS PUMA code is 00300" -in.county_and_puma "G2300210, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G2300230, G23000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 023, the NHGIS PUMA code is 00700" -in.county_and_puma "G2300250, G23000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 025, the NHGIS PUMA code is 00200" -in.county_and_puma "G2300270, G23000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 027, the NHGIS PUMA code is 00500" -in.county_and_puma "G2300290, G23000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 029, the NHGIS PUMA code is 00100" -in.county_and_puma "G2300310, G23000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 031, the NHGIS PUMA code is 00800" -in.county_and_puma "G2300310, G23000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 23, the NHGIS county code is 031, the NHGIS PUMA code is 00900" -in.county_and_puma "G2400010, G24000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 001, the NHGIS PUMA code is 00100" -in.county_and_puma "G2400030, G24001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01201" -in.county_and_puma "G2400030, G24001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01202" -in.county_and_puma "G2400030, G24001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01203" -in.county_and_puma "G2400030, G24001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 003, the NHGIS PUMA code is 01204" -in.county_and_puma "G2400050, G24000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00501" -in.county_and_puma "G2400050, G24000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00502" -in.county_and_puma "G2400050, G24000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00503" -in.county_and_puma "G2400050, G24000504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00504" -in.county_and_puma "G2400050, G24000505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00505" -in.county_and_puma "G2400050, G24000506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00506" -in.county_and_puma "G2400050, G24000507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 005, the NHGIS PUMA code is 00507" -in.county_and_puma "G2400090, G24001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 009, the NHGIS PUMA code is 01500" -in.county_and_puma "G2400110, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 011, the NHGIS PUMA code is 01300" -in.county_and_puma "G2400130, G24000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 013, the NHGIS PUMA code is 00400" -in.county_and_puma "G2400150, G24000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 015, the NHGIS PUMA code is 00700" -in.county_and_puma "G2400170, G24001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 017, the NHGIS PUMA code is 01600" -in.county_and_puma "G2400190, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 019, the NHGIS PUMA code is 01300" -in.county_and_puma "G2400210, G24000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 021, the NHGIS PUMA code is 00301" -in.county_and_puma "G2400210, G24000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 021, the NHGIS PUMA code is 00302" -in.county_and_puma "G2400230, G24000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 023, the NHGIS PUMA code is 00100" -in.county_and_puma "G2400250, G24000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 025, the NHGIS PUMA code is 00601" -in.county_and_puma "G2400250, G24000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 025, the NHGIS PUMA code is 00602" -in.county_and_puma "G2400270, G24000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 027, the NHGIS PUMA code is 00901" -in.county_and_puma "G2400270, G24000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 027, the NHGIS PUMA code is 00902" -in.county_and_puma "G2400290, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 029, the NHGIS PUMA code is 01300" -in.county_and_puma "G2400310, G24001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01001" -in.county_and_puma "G2400310, G24001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01002" -in.county_and_puma "G2400310, G24001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01003" -in.county_and_puma "G2400310, G24001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01004" -in.county_and_puma "G2400310, G24001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01005" -in.county_and_puma "G2400310, G24001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01006" -in.county_and_puma "G2400310, G24001007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 031, the NHGIS PUMA code is 01007" -in.county_and_puma "G2400330, G24001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01101" -in.county_and_puma "G2400330, G24001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01102" -in.county_and_puma "G2400330, G24001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01103" -in.county_and_puma "G2400330, G24001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01104" -in.county_and_puma "G2400330, G24001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01105" -in.county_and_puma "G2400330, G24001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01106" -in.county_and_puma "G2400330, G24001107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 033, the NHGIS PUMA code is 01107" -in.county_and_puma "G2400350, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 035, the NHGIS PUMA code is 01300" -in.county_and_puma "G2400370, G24001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 037, the NHGIS PUMA code is 01500" -in.county_and_puma "G2400390, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 039, the NHGIS PUMA code is 01400" -in.county_and_puma "G2400410, G24001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 041, the NHGIS PUMA code is 01300" -in.county_and_puma "G2400430, G24000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 043, the NHGIS PUMA code is 00200" -in.county_and_puma "G2400450, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 045, the NHGIS PUMA code is 01400" -in.county_and_puma "G2400470, G24001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 047, the NHGIS PUMA code is 01400" -in.county_and_puma "G2405100, G24000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00801" -in.county_and_puma "G2405100, G24000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00802" -in.county_and_puma "G2405100, G24000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00803" -in.county_and_puma "G2405100, G24000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00804" -in.county_and_puma "G2405100, G24000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 24, the NHGIS county code is 510, the NHGIS PUMA code is 00805" -in.county_and_puma "G2500010, G25004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 001, the NHGIS PUMA code is 04700" -in.county_and_puma "G2500010, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 001, the NHGIS PUMA code is 04800" -in.county_and_puma "G2500030, G25000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 003, the NHGIS PUMA code is 00100" -in.county_and_puma "G2500050, G25004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04200" -in.county_and_puma "G2500050, G25004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04301" -in.county_and_puma "G2500050, G25004302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04302" -in.county_and_puma "G2500050, G25004303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04303" -in.county_and_puma "G2500050, G25004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04500" -in.county_and_puma "G2500050, G25004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 005, the NHGIS PUMA code is 04901" -in.county_and_puma "G2500070, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 007, the NHGIS PUMA code is 04800" -in.county_and_puma "G2500090, G25000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00701" -in.county_and_puma "G2500090, G25000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00702" -in.county_and_puma "G2500090, G25000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00703" -in.county_and_puma "G2500090, G25000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 00704" -in.county_and_puma "G2500090, G25001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 01000" -in.county_and_puma "G2500090, G25001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 01300" -in.county_and_puma "G2500090, G25002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 009, the NHGIS PUMA code is 02800" -in.county_and_puma "G2500110, G25000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 011, the NHGIS PUMA code is 00200" -in.county_and_puma "G2500130, G25001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01600" -in.county_and_puma "G2500130, G25001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01900" -in.county_and_puma "G2500130, G25001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01901" -in.county_and_puma "G2500130, G25001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 013, the NHGIS PUMA code is 01902" -in.county_and_puma "G2500150, G25000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 015, the NHGIS PUMA code is 00200" -in.county_and_puma "G2500150, G25001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 015, the NHGIS PUMA code is 01600" -in.county_and_puma "G2500170, G25000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G2500170, G25000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00501" -in.county_and_puma "G2500170, G25000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00502" -in.county_and_puma "G2500170, G25000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00503" -in.county_and_puma "G2500170, G25000504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00504" -in.county_and_puma "G2500170, G25000505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00505" -in.county_and_puma "G2500170, G25000506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00506" -in.county_and_puma "G2500170, G25000507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00507" -in.county_and_puma "G2500170, G25000508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 00508" -in.county_and_puma "G2500170, G25001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01000" -in.county_and_puma "G2500170, G25001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01300" -in.county_and_puma "G2500170, G25001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 01400" -in.county_and_puma "G2500170, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 02400" -in.county_and_puma "G2500170, G25002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 02800" -in.county_and_puma "G2500170, G25003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 03400" -in.county_and_puma "G2500170, G25003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 017, the NHGIS PUMA code is 03500" -in.county_and_puma "G2500190, G25004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 019, the NHGIS PUMA code is 04800" -in.county_and_puma "G2500210, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 02400" -in.county_and_puma "G2500210, G25003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03400" -in.county_and_puma "G2500210, G25003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03500" -in.county_and_puma "G2500210, G25003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03601" -in.county_and_puma "G2500210, G25003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03602" -in.county_and_puma "G2500210, G25003603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03603" -in.county_and_puma "G2500210, G25003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 03900" -in.county_and_puma "G2500210, G25004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 04000" -in.county_and_puma "G2500210, G25004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 021, the NHGIS PUMA code is 04200" -in.county_and_puma "G2500230, G25003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 03900" -in.county_and_puma "G2500230, G25004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04000" -in.county_and_puma "G2500230, G25004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04301" -in.county_and_puma "G2500230, G25004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04901" -in.county_and_puma "G2500230, G25004902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04902" -in.county_and_puma "G2500230, G25004903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 023, the NHGIS PUMA code is 04903" -in.county_and_puma "G2500250, G25003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03301" -in.county_and_puma "G2500250, G25003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03302" -in.county_and_puma "G2500250, G25003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03303" -in.county_and_puma "G2500250, G25003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03304" -in.county_and_puma "G2500250, G25003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03305" -in.county_and_puma "G2500250, G25003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 025, the NHGIS PUMA code is 03306" -in.county_and_puma "G2500270, G25000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G2500270, G25000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00301" -in.county_and_puma "G2500270, G25000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00302" -in.county_and_puma "G2500270, G25000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00303" -in.county_and_puma "G2500270, G25000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00304" -in.county_and_puma "G2500270, G25000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 00400" -in.county_and_puma "G2500270, G25001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 01400" -in.county_and_puma "G2500270, G25002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 25, the NHGIS county code is 027, the NHGIS PUMA code is 02400" -in.county_and_puma "G2600010, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G2600030, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G2600050, G26000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 005, the NHGIS PUMA code is 00900" -in.county_and_puma "G2600070, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 007, the NHGIS PUMA code is 00300" -in.county_and_puma "G2600090, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G2600110, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 011, the NHGIS PUMA code is 01300" -in.county_and_puma "G2600130, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600150, G26002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 015, the NHGIS PUMA code is 02000" -in.county_and_puma "G2600170, G26001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 017, the NHGIS PUMA code is 01400" -in.county_and_puma "G2600190, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 019, the NHGIS PUMA code is 00500" -in.county_and_puma "G2600210, G26002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 021, the NHGIS PUMA code is 02400" -in.county_and_puma "G2600230, G26002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 023, the NHGIS PUMA code is 02200" -in.county_and_puma "G2600250, G26002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 025, the NHGIS PUMA code is 02000" -in.county_and_puma "G2600270, G26002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 027, the NHGIS PUMA code is 02300" -in.county_and_puma "G2600290, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 029, the NHGIS PUMA code is 00400" -in.county_and_puma "G2600310, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 031, the NHGIS PUMA code is 00300" -in.county_and_puma "G2600330, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 033, the NHGIS PUMA code is 00200" -in.county_and_puma "G2600350, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 035, the NHGIS PUMA code is 01200" -in.county_and_puma "G2600370, G26001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 037, the NHGIS PUMA code is 01900" -in.county_and_puma "G2600390, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 039, the NHGIS PUMA code is 00300" -in.county_and_puma "G2600410, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 041, the NHGIS PUMA code is 00200" -in.county_and_puma "G2600430, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 043, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600450, G26001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 045, the NHGIS PUMA code is 01900" -in.county_and_puma "G2600470, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 047, the NHGIS PUMA code is 00400" -in.county_and_puma "G2600490, G26001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01701" -in.county_and_puma "G2600490, G26001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01702" -in.county_and_puma "G2600490, G26001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01703" -in.county_and_puma "G2600490, G26001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 049, the NHGIS PUMA code is 01704" -in.county_and_puma "G2600510, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 051, the NHGIS PUMA code is 01300" -in.county_and_puma "G2600530, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 053, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600550, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 055, the NHGIS PUMA code is 00500" -in.county_and_puma "G2600570, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 057, the NHGIS PUMA code is 01200" -in.county_and_puma "G2600590, G26002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 059, the NHGIS PUMA code is 02500" -in.county_and_puma "G2600610, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 061, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600630, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 063, the NHGIS PUMA code is 01600" -in.county_and_puma "G2600650, G26001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 065, the NHGIS PUMA code is 01801" -in.county_and_puma "G2600650, G26001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 065, the NHGIS PUMA code is 01802" -in.county_and_puma "G2600670, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 067, the NHGIS PUMA code is 01100" -in.county_and_puma "G2600690, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 069, the NHGIS PUMA code is 01300" -in.county_and_puma "G2600710, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 071, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600730, G26001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 073, the NHGIS PUMA code is 01200" -in.county_and_puma "G2600750, G26002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 075, the NHGIS PUMA code is 02600" -in.county_and_puma "G2600770, G26002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 077, the NHGIS PUMA code is 02101" -in.county_and_puma "G2600770, G26002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 077, the NHGIS PUMA code is 02102" -in.county_and_puma "G2600790, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 079, the NHGIS PUMA code is 00400" -in.county_and_puma "G2600810, G26001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01001" -in.county_and_puma "G2600810, G26001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01002" -in.county_and_puma "G2600810, G26001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01003" -in.county_and_puma "G2600810, G26001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 081, the NHGIS PUMA code is 01004" -in.county_and_puma "G2600830, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 083, the NHGIS PUMA code is 00100" -in.county_and_puma "G2600850, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 085, the NHGIS PUMA code is 00600" -in.county_and_puma "G2600870, G26001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 087, the NHGIS PUMA code is 01701" -in.county_and_puma "G2600890, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 089, the NHGIS PUMA code is 00500" -in.county_and_puma "G2600910, G26002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 091, the NHGIS PUMA code is 02500" -in.county_and_puma "G2600930, G26002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 093, the NHGIS PUMA code is 02800" -in.county_and_puma "G2600950, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 095, the NHGIS PUMA code is 00200" -in.county_and_puma "G2600970, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 097, the NHGIS PUMA code is 00200" -in.county_and_puma "G2600990, G26003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03001" -in.county_and_puma "G2600990, G26003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03002" -in.county_and_puma "G2600990, G26003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03003" -in.county_and_puma "G2600990, G26003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03004" -in.county_and_puma "G2600990, G26003005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03005" -in.county_and_puma "G2600990, G26003006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 099, the NHGIS PUMA code is 03006" -in.county_and_puma "G2601010, G26000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 101, the NHGIS PUMA code is 00500" -in.county_and_puma "G2601030, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 103, the NHGIS PUMA code is 00100" -in.county_and_puma "G2601050, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 105, the NHGIS PUMA code is 00600" -in.county_and_puma "G2601070, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 107, the NHGIS PUMA code is 01100" -in.county_and_puma "G2601090, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 109, the NHGIS PUMA code is 00200" -in.county_and_puma "G2601110, G26001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 111, the NHGIS PUMA code is 01400" -in.county_and_puma "G2601130, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 113, the NHGIS PUMA code is 00400" -in.county_and_puma "G2601150, G26003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 115, the NHGIS PUMA code is 03300" -in.county_and_puma "G2601170, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 117, the NHGIS PUMA code is 01100" -in.county_and_puma "G2601190, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 119, the NHGIS PUMA code is 00300" -in.county_and_puma "G2601210, G26000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 121, the NHGIS PUMA code is 00700" -in.county_and_puma "G2601230, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 123, the NHGIS PUMA code is 00600" -in.county_and_puma "G2601250, G26002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02901" -in.county_and_puma "G2601250, G26002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02902" -in.county_and_puma "G2601250, G26002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02903" -in.county_and_puma "G2601250, G26002904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02904" -in.county_and_puma "G2601250, G26002905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02905" -in.county_and_puma "G2601250, G26002906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02906" -in.county_and_puma "G2601250, G26002907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02907" -in.county_and_puma "G2601250, G26002908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 125, the NHGIS PUMA code is 02908" -in.county_and_puma "G2601270, G26000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 127, the NHGIS PUMA code is 00600" -in.county_and_puma "G2601290, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 129, the NHGIS PUMA code is 01300" -in.county_and_puma "G2601310, G26000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 131, the NHGIS PUMA code is 00100" -in.county_and_puma "G2601330, G26001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 133, the NHGIS PUMA code is 01100" -in.county_and_puma "G2601350, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 135, the NHGIS PUMA code is 00300" -in.county_and_puma "G2601370, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 137, the NHGIS PUMA code is 00300" -in.county_and_puma "G2601390, G26000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 139, the NHGIS PUMA code is 00801" -in.county_and_puma "G2601390, G26000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 139, the NHGIS PUMA code is 00802" -in.county_and_puma "G2601410, G26000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 141, the NHGIS PUMA code is 00300" -in.county_and_puma "G2601430, G26001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 143, the NHGIS PUMA code is 01300" -in.county_and_puma "G2601450, G26001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 145, the NHGIS PUMA code is 01500" -in.county_and_puma "G2601470, G26003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 147, the NHGIS PUMA code is 03100" -in.county_and_puma "G2601490, G26002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 149, the NHGIS PUMA code is 02200" -in.county_and_puma "G2601510, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 151, the NHGIS PUMA code is 01600" -in.county_and_puma "G2601530, G26000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 153, the NHGIS PUMA code is 00200" -in.county_and_puma "G2601550, G26001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 155, the NHGIS PUMA code is 01704" -in.county_and_puma "G2601570, G26001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 157, the NHGIS PUMA code is 01600" -in.county_and_puma "G2601590, G26002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 159, the NHGIS PUMA code is 02300" -in.county_and_puma "G2601610, G26002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02701" -in.county_and_puma "G2601610, G26002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02702" -in.county_and_puma "G2601610, G26002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 161, the NHGIS PUMA code is 02703" -in.county_and_puma "G2601630, G26003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03201" -in.county_and_puma "G2601630, G26003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03202" -in.county_and_puma "G2601630, G26003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03203" -in.county_and_puma "G2601630, G26003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03204" -in.county_and_puma "G2601630, G26003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03205" -in.county_and_puma "G2601630, G26003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03206" -in.county_and_puma "G2601630, G26003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03207" -in.county_and_puma "G2601630, G26003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03208" -in.county_and_puma "G2601630, G26003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03209" -in.county_and_puma "G2601630, G26003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03210" -in.county_and_puma "G2601630, G26003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03211" -in.county_and_puma "G2601630, G26003212" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03212" -in.county_and_puma "G2601630, G26003213" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 163, the NHGIS PUMA code is 03213" -in.county_and_puma "G2601650, G26000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 26, the NHGIS county code is 165, the NHGIS PUMA code is 00400" -in.county_and_puma "G2700010, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G2700030, G27001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01101" -in.county_and_puma "G2700030, G27001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01102" -in.county_and_puma "G2700030, G27001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 003, the NHGIS PUMA code is 01103" -in.county_and_puma "G2700050, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700070, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 007, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700090, G27001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 009, the NHGIS PUMA code is 01000" -in.county_and_puma "G2700110, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G2700130, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 013, the NHGIS PUMA code is 02200" -in.county_and_puma "G2700150, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 015, the NHGIS PUMA code is 02000" -in.county_and_puma "G2700170, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 017, the NHGIS PUMA code is 00300" -in.county_and_puma "G2700170, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G2700190, G27001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 019, the NHGIS PUMA code is 01700" -in.county_and_puma "G2700210, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 021, the NHGIS PUMA code is 00300" -in.county_and_puma "G2700230, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 023, the NHGIS PUMA code is 02000" -in.county_and_puma "G2700250, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 025, the NHGIS PUMA code is 00600" -in.county_and_puma "G2700270, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 027, the NHGIS PUMA code is 00100" -in.county_and_puma "G2700290, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 029, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700310, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 031, the NHGIS PUMA code is 00400" -in.county_and_puma "G2700330, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 033, the NHGIS PUMA code is 02100" -in.county_and_puma "G2700350, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 035, the NHGIS PUMA code is 00700" -in.county_and_puma "G2700370, G27001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01501" -in.county_and_puma "G2700370, G27001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01502" -in.county_and_puma "G2700370, G27001503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 037, the NHGIS PUMA code is 01503" -in.county_and_puma "G2700390, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 039, the NHGIS PUMA code is 02400" -in.county_and_puma "G2700410, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 041, the NHGIS PUMA code is 00800" -in.county_and_puma "G2700430, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 043, the NHGIS PUMA code is 02100" -in.county_and_puma "G2700450, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 045, the NHGIS PUMA code is 02600" -in.county_and_puma "G2700470, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 047, the NHGIS PUMA code is 02400" -in.county_and_puma "G2700490, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 049, the NHGIS PUMA code is 02300" -in.county_and_puma "G2700510, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 051, the NHGIS PUMA code is 00800" -in.county_and_puma "G2700530, G27001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01401" -in.county_and_puma "G2700530, G27001402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01402" -in.county_and_puma "G2700530, G27001403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01403" -in.county_and_puma "G2700530, G27001404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01404" -in.county_and_puma "G2700530, G27001405" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01405" -in.county_and_puma "G2700530, G27001406" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01406" -in.county_and_puma "G2700530, G27001407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01407" -in.county_and_puma "G2700530, G27001408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01408" -in.county_and_puma "G2700530, G27001409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01409" -in.county_and_puma "G2700530, G27001410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 053, the NHGIS PUMA code is 01410" -in.county_and_puma "G2700550, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 055, the NHGIS PUMA code is 02600" -in.county_and_puma "G2700570, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 057, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700590, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 059, the NHGIS PUMA code is 00600" -in.county_and_puma "G2700610, G27000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G2700630, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 063, the NHGIS PUMA code is 02100" -in.county_and_puma "G2700650, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 065, the NHGIS PUMA code is 00600" -in.county_and_puma "G2700670, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 067, the NHGIS PUMA code is 01900" -in.county_and_puma "G2700690, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 069, the NHGIS PUMA code is 00100" -in.county_and_puma "G2700710, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 071, the NHGIS PUMA code is 00400" -in.county_and_puma "G2700730, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 073, the NHGIS PUMA code is 02000" -in.county_and_puma "G2700750, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 075, the NHGIS PUMA code is 00400" -in.county_and_puma "G2700770, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 077, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700790, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 079, the NHGIS PUMA code is 02300" -in.county_and_puma "G2700810, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 081, the NHGIS PUMA code is 02000" -in.county_and_puma "G2700830, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 083, the NHGIS PUMA code is 02000" -in.county_and_puma "G2700850, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 085, the NHGIS PUMA code is 01900" -in.county_and_puma "G2700870, G27000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 087, the NHGIS PUMA code is 00200" -in.county_and_puma "G2700890, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 089, the NHGIS PUMA code is 00100" -in.county_and_puma "G2700910, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 091, the NHGIS PUMA code is 02100" -in.county_and_puma "G2700930, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 093, the NHGIS PUMA code is 01900" -in.county_and_puma "G2700950, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 095, the NHGIS PUMA code is 00600" -in.county_and_puma "G2700970, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 097, the NHGIS PUMA code is 00700" -in.county_and_puma "G2700990, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 099, the NHGIS PUMA code is 02400" -in.county_and_puma "G2701010, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 101, the NHGIS PUMA code is 02100" -in.county_and_puma "G2701030, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 103, the NHGIS PUMA code is 02200" -in.county_and_puma "G2701050, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 105, the NHGIS PUMA code is 02100" -in.county_and_puma "G2701070, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 107, the NHGIS PUMA code is 00100" -in.county_and_puma "G2701090, G27002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 109, the NHGIS PUMA code is 02500" -in.county_and_puma "G2701110, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 111, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701130, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 113, the NHGIS PUMA code is 00100" -in.county_and_puma "G2701150, G27000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 115, the NHGIS PUMA code is 00600" -in.county_and_puma "G2701170, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 117, the NHGIS PUMA code is 02100" -in.county_and_puma "G2701190, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 119, the NHGIS PUMA code is 00100" -in.county_and_puma "G2701210, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 121, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701230, G27001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01301" -in.county_and_puma "G2701230, G27001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01302" -in.county_and_puma "G2701230, G27001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01303" -in.county_and_puma "G2701230, G27001304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 123, the NHGIS PUMA code is 01304" -in.county_and_puma "G2701250, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 125, the NHGIS PUMA code is 00100" -in.county_and_puma "G2701270, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 127, the NHGIS PUMA code is 02000" -in.county_and_puma "G2701290, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 129, the NHGIS PUMA code is 01900" -in.county_and_puma "G2701310, G27002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 131, the NHGIS PUMA code is 02300" -in.county_and_puma "G2701330, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 133, the NHGIS PUMA code is 02100" -in.county_and_puma "G2701350, G27000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 135, the NHGIS PUMA code is 00100" -in.county_and_puma "G2701370, G27000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 137, the NHGIS PUMA code is 00400" -in.county_and_puma "G2701370, G27000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 137, the NHGIS PUMA code is 00500" -in.county_and_puma "G2701390, G27001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 139, the NHGIS PUMA code is 01600" -in.county_and_puma "G2701390, G27001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 139, the NHGIS PUMA code is 01700" -in.county_and_puma "G2701410, G27001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 141, the NHGIS PUMA code is 01000" -in.county_and_puma "G2701430, G27001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 143, the NHGIS PUMA code is 01900" -in.county_and_puma "G2701450, G27000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 145, the NHGIS PUMA code is 00900" -in.county_and_puma "G2701470, G27002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 147, the NHGIS PUMA code is 02400" -in.county_and_puma "G2701490, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 149, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701510, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 151, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701530, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 153, the NHGIS PUMA code is 00700" -in.county_and_puma "G2701550, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 155, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701570, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 157, the NHGIS PUMA code is 02600" -in.county_and_puma "G2701590, G27000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 159, the NHGIS PUMA code is 00700" -in.county_and_puma "G2701610, G27002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 161, the NHGIS PUMA code is 02200" -in.county_and_puma "G2701630, G27001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 163, the NHGIS PUMA code is 01201" -in.county_and_puma "G2701630, G27001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 163, the NHGIS PUMA code is 01202" -in.county_and_puma "G2701650, G27002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 165, the NHGIS PUMA code is 02100" -in.county_and_puma "G2701670, G27000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 167, the NHGIS PUMA code is 00800" -in.county_and_puma "G2701690, G27002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 169, the NHGIS PUMA code is 02600" -in.county_and_puma "G2701710, G27001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 171, the NHGIS PUMA code is 01800" -in.county_and_puma "G2701730, G27002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 27, the NHGIS county code is 173, the NHGIS PUMA code is 02000" -in.county_and_puma "G2800010, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 001, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800030, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G2800050, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 005, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800070, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 007, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800090, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 009, the NHGIS PUMA code is 00200" -in.county_and_puma "G2800110, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G2800130, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 013, the NHGIS PUMA code is 00400" -in.county_and_puma "G2800150, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 015, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800170, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G2800190, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 019, the NHGIS PUMA code is 00600" -in.county_and_puma "G2800210, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 021, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800230, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 023, the NHGIS PUMA code is 01500" -in.county_and_puma "G2800250, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 025, the NHGIS PUMA code is 00600" -in.county_and_puma "G2800270, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G2800290, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 029, the NHGIS PUMA code is 01200" -in.county_and_puma "G2800310, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 031, the NHGIS PUMA code is 01700" -in.county_and_puma "G2800330, G28000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G2800350, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 035, the NHGIS PUMA code is 01800" -in.county_and_puma "G2800370, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 037, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800390, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 039, the NHGIS PUMA code is 01900" -in.county_and_puma "G2800410, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 041, the NHGIS PUMA code is 01700" -in.county_and_puma "G2800430, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 043, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800450, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 045, the NHGIS PUMA code is 01900" -in.county_and_puma "G2800470, G28002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 047, the NHGIS PUMA code is 02000" -in.county_and_puma "G2800490, G28001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01000" -in.county_and_puma "G2800490, G28001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01100" -in.county_and_puma "G2800490, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 049, the NHGIS PUMA code is 01200" -in.county_and_puma "G2800510, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 051, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800530, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 053, the NHGIS PUMA code is 00800" -in.county_and_puma "G2800550, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 055, the NHGIS PUMA code is 00800" -in.county_and_puma "G2800570, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 057, the NHGIS PUMA code is 00400" -in.county_and_puma "G2800590, G28002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 059, the NHGIS PUMA code is 02100" -in.county_and_puma "G2800610, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 061, the NHGIS PUMA code is 01400" -in.county_and_puma "G2800630, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 063, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800650, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 065, the NHGIS PUMA code is 01700" -in.county_and_puma "G2800670, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 067, the NHGIS PUMA code is 01700" -in.county_and_puma "G2800690, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 069, the NHGIS PUMA code is 01400" -in.county_and_puma "G2800710, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 071, the NHGIS PUMA code is 00400" -in.county_and_puma "G2800730, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 073, the NHGIS PUMA code is 01800" -in.county_and_puma "G2800750, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 075, the NHGIS PUMA code is 01500" -in.county_and_puma "G2800770, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 077, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800790, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 079, the NHGIS PUMA code is 01400" -in.county_and_puma "G2800810, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 081, the NHGIS PUMA code is 00500" -in.county_and_puma "G2800830, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 083, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800850, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 085, the NHGIS PUMA code is 01600" -in.county_and_puma "G2800870, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 087, the NHGIS PUMA code is 00600" -in.county_and_puma "G2800890, G28000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 089, the NHGIS PUMA code is 00900" -in.county_and_puma "G2800890, G28001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 089, the NHGIS PUMA code is 01000" -in.county_and_puma "G2800910, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 091, the NHGIS PUMA code is 01800" -in.county_and_puma "G2800930, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 093, the NHGIS PUMA code is 00200" -in.county_and_puma "G2800950, G28000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 095, the NHGIS PUMA code is 00400" -in.county_and_puma "G2800970, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 097, the NHGIS PUMA code is 00700" -in.county_and_puma "G2800990, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 099, the NHGIS PUMA code is 01400" -in.county_and_puma "G2801010, G28001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 101, the NHGIS PUMA code is 01500" -in.county_and_puma "G2801030, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 103, the NHGIS PUMA code is 00600" -in.county_and_puma "G2801050, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 105, the NHGIS PUMA code is 00600" -in.county_and_puma "G2801070, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 107, the NHGIS PUMA code is 00300" -in.county_and_puma "G2801090, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 109, the NHGIS PUMA code is 01900" -in.county_and_puma "G2801110, G28001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 111, the NHGIS PUMA code is 01800" -in.county_and_puma "G2801130, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 113, the NHGIS PUMA code is 01600" -in.county_and_puma "G2801150, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 115, the NHGIS PUMA code is 00500" -in.county_and_puma "G2801170, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 117, the NHGIS PUMA code is 00200" -in.county_and_puma "G2801190, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 119, the NHGIS PUMA code is 00300" -in.county_and_puma "G2801210, G28001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 121, the NHGIS PUMA code is 01300" -in.county_and_puma "G2801230, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 123, the NHGIS PUMA code is 01400" -in.county_and_puma "G2801250, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 125, the NHGIS PUMA code is 00800" -in.county_and_puma "G2801270, G28001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 127, the NHGIS PUMA code is 01300" -in.county_and_puma "G2801290, G28001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 129, the NHGIS PUMA code is 01400" -in.county_and_puma "G2801310, G28001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 131, the NHGIS PUMA code is 01900" -in.county_and_puma "G2801330, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 133, the NHGIS PUMA code is 00800" -in.county_and_puma "G2801350, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 135, the NHGIS PUMA code is 00300" -in.county_and_puma "G2801370, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 137, the NHGIS PUMA code is 00300" -in.county_and_puma "G2801390, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 139, the NHGIS PUMA code is 00200" -in.county_and_puma "G2801410, G28000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 141, the NHGIS PUMA code is 00200" -in.county_and_puma "G2801430, G28000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 143, the NHGIS PUMA code is 00300" -in.county_and_puma "G2801450, G28000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 145, the NHGIS PUMA code is 00500" -in.county_and_puma "G2801470, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 147, the NHGIS PUMA code is 01600" -in.county_and_puma "G2801490, G28001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 149, the NHGIS PUMA code is 01200" -in.county_and_puma "G2801510, G28000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 151, the NHGIS PUMA code is 00800" -in.county_and_puma "G2801530, G28001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 153, the NHGIS PUMA code is 01700" -in.county_and_puma "G2801550, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 155, the NHGIS PUMA code is 00600" -in.county_and_puma "G2801570, G28001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 157, the NHGIS PUMA code is 01600" -in.county_and_puma "G2801590, G28000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 159, the NHGIS PUMA code is 00600" -in.county_and_puma "G2801610, G28000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 161, the NHGIS PUMA code is 00700" -in.county_and_puma "G2801630, G28000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 28, the NHGIS county code is 163, the NHGIS PUMA code is 00900" -in.county_and_puma "G2900010, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G2900030, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G2900050, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 005, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900070, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 007, the NHGIS PUMA code is 00400" -in.county_and_puma "G2900090, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 009, the NHGIS PUMA code is 02700" -in.county_and_puma "G2900110, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 011, the NHGIS PUMA code is 01200" -in.county_and_puma "G2900130, G29001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 013, the NHGIS PUMA code is 01100" -in.county_and_puma "G2900150, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 015, the NHGIS PUMA code is 01300" -in.county_and_puma "G2900170, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 017, the NHGIS PUMA code is 02200" -in.county_and_puma "G2900190, G29000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 019, the NHGIS PUMA code is 00600" -in.county_and_puma "G2900210, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G2900230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 023, the NHGIS PUMA code is 02400" -in.county_and_puma "G2900250, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 025, the NHGIS PUMA code is 00800" -in.county_and_puma "G2900270, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 027, the NHGIS PUMA code is 00500" -in.county_and_puma "G2900290, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 029, the NHGIS PUMA code is 01400" -in.county_and_puma "G2900310, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 031, the NHGIS PUMA code is 02200" -in.county_and_puma "G2900330, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 033, the NHGIS PUMA code is 00700" -in.county_and_puma "G2900350, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 035, the NHGIS PUMA code is 02400" -in.county_and_puma "G2900370, G29001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 037, the NHGIS PUMA code is 01100" -in.county_and_puma "G2900390, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 039, the NHGIS PUMA code is 01200" -in.county_and_puma "G2900410, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 041, the NHGIS PUMA code is 00700" -in.county_and_puma "G2900430, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 043, the NHGIS PUMA code is 02601" -in.county_and_puma "G2900450, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 045, the NHGIS PUMA code is 00300" -in.county_and_puma "G2900470, G29000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00901" -in.county_and_puma "G2900470, G29000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00902" -in.county_and_puma "G2900470, G29000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 047, the NHGIS PUMA code is 00903" -in.county_and_puma "G2900490, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 049, the NHGIS PUMA code is 00800" -in.county_and_puma "G2900510, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 051, the NHGIS PUMA code is 00500" -in.county_and_puma "G2900530, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 053, the NHGIS PUMA code is 00700" -in.county_and_puma "G2900550, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 055, the NHGIS PUMA code is 01500" -in.county_and_puma "G2900570, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 057, the NHGIS PUMA code is 01200" -in.county_and_puma "G2900590, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 059, the NHGIS PUMA code is 01300" -in.county_and_puma "G2900610, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 061, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900630, G29000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 063, the NHGIS PUMA code is 00200" -in.county_and_puma "G2900650, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 065, the NHGIS PUMA code is 01500" -in.county_and_puma "G2900670, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 067, the NHGIS PUMA code is 02500" -in.county_and_puma "G2900690, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 069, the NHGIS PUMA code is 02300" -in.county_and_puma "G2900710, G29001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 071, the NHGIS PUMA code is 01600" -in.county_and_puma "G2900730, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 073, the NHGIS PUMA code is 01500" -in.county_and_puma "G2900750, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 075, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900770, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02601" -in.county_and_puma "G2900770, G29002602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02602" -in.county_and_puma "G2900770, G29002603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 077, the NHGIS PUMA code is 02603" -in.county_and_puma "G2900790, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 079, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900810, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 081, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900830, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 083, the NHGIS PUMA code is 01200" -in.county_and_puma "G2900850, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 085, the NHGIS PUMA code is 01300" -in.county_and_puma "G2900870, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 087, the NHGIS PUMA code is 00100" -in.county_and_puma "G2900890, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 089, the NHGIS PUMA code is 00700" -in.county_and_puma "G2900910, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 091, the NHGIS PUMA code is 02500" -in.county_and_puma "G2900930, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 093, the NHGIS PUMA code is 02400" -in.county_and_puma "G2900950, G29001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01001" -in.county_and_puma "G2900950, G29001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01002" -in.county_and_puma "G2900950, G29001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01003" -in.county_and_puma "G2900950, G29001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01004" -in.county_and_puma "G2900950, G29001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 095, the NHGIS PUMA code is 01005" -in.county_and_puma "G2900970, G29002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 097, the NHGIS PUMA code is 02800" -in.county_and_puma "G2900990, G29002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 099, the NHGIS PUMA code is 02001" -in.county_and_puma "G2900990, G29002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 099, the NHGIS PUMA code is 02002" -in.county_and_puma "G2901010, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 101, the NHGIS PUMA code is 00800" -in.county_and_puma "G2901030, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 103, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901050, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 105, the NHGIS PUMA code is 01300" -in.county_and_puma "G2901070, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 107, the NHGIS PUMA code is 00800" -in.county_and_puma "G2901090, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 109, the NHGIS PUMA code is 01200" -in.county_and_puma "G2901110, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 111, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901130, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 113, the NHGIS PUMA code is 00400" -in.county_and_puma "G2901150, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 115, the NHGIS PUMA code is 00100" -in.county_and_puma "G2901170, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 117, the NHGIS PUMA code is 00100" -in.county_and_puma "G2901190, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 119, the NHGIS PUMA code is 02700" -in.county_and_puma "G2901210, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 121, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 123, the NHGIS PUMA code is 02400" -in.county_and_puma "G2901250, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 125, the NHGIS PUMA code is 01500" -in.county_and_puma "G2901270, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 127, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901290, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 129, the NHGIS PUMA code is 00100" -in.county_and_puma "G2901310, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 131, the NHGIS PUMA code is 01400" -in.county_and_puma "G2901330, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 133, the NHGIS PUMA code is 02300" -in.county_and_puma "G2901350, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 135, the NHGIS PUMA code is 00500" -in.county_and_puma "G2901370, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 137, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901390, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 139, the NHGIS PUMA code is 00400" -in.county_and_puma "G2901410, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 141, the NHGIS PUMA code is 01400" -in.county_and_puma "G2901430, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 143, the NHGIS PUMA code is 02300" -in.county_and_puma "G2901450, G29002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 145, the NHGIS PUMA code is 02800" -in.county_and_puma "G2901470, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 147, the NHGIS PUMA code is 00100" -in.county_and_puma "G2901490, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 149, the NHGIS PUMA code is 02500" -in.county_and_puma "G2901510, G29000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 151, the NHGIS PUMA code is 00500" -in.county_and_puma "G2901530, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 153, the NHGIS PUMA code is 02500" -in.county_and_puma "G2901550, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 155, the NHGIS PUMA code is 02300" -in.county_and_puma "G2901570, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 157, the NHGIS PUMA code is 02100" -in.county_and_puma "G2901590, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 159, the NHGIS PUMA code is 00700" -in.county_and_puma "G2901610, G29001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 161, the NHGIS PUMA code is 01500" -in.county_and_puma "G2901630, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 163, the NHGIS PUMA code is 00400" -in.county_and_puma "G2901650, G29000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 165, the NHGIS PUMA code is 00903" -in.county_and_puma "G2901670, G29001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 167, the NHGIS PUMA code is 01300" -in.county_and_puma "G2901690, G29001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 169, the NHGIS PUMA code is 01400" -in.county_and_puma "G2901710, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 171, the NHGIS PUMA code is 00100" -in.county_and_puma "G2901730, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 173, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901750, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 175, the NHGIS PUMA code is 00700" -in.county_and_puma "G2901770, G29000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 177, the NHGIS PUMA code is 00800" -in.county_and_puma "G2901790, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 179, the NHGIS PUMA code is 02400" -in.county_and_puma "G2901810, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 181, the NHGIS PUMA code is 02400" -in.county_and_puma "G2901830, G29001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01701" -in.county_and_puma "G2901830, G29001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01702" -in.county_and_puma "G2901830, G29001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 183, the NHGIS PUMA code is 01703" -in.county_and_puma "G2901850, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 185, the NHGIS PUMA code is 01200" -in.county_and_puma "G2901860, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 186, the NHGIS PUMA code is 02100" -in.county_and_puma "G2901870, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 187, the NHGIS PUMA code is 02100" -in.county_and_puma "G2901890, G29001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01801" -in.county_and_puma "G2901890, G29001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01802" -in.county_and_puma "G2901890, G29001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01803" -in.county_and_puma "G2901890, G29001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01804" -in.county_and_puma "G2901890, G29001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01805" -in.county_and_puma "G2901890, G29001806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01806" -in.county_and_puma "G2901890, G29001807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01807" -in.county_and_puma "G2901890, G29001808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 189, the NHGIS PUMA code is 01808" -in.county_and_puma "G2901950, G29000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 195, the NHGIS PUMA code is 00700" -in.county_and_puma "G2901970, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 197, the NHGIS PUMA code is 00300" -in.county_and_puma "G2901990, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 199, the NHGIS PUMA code is 00300" -in.county_and_puma "G2902010, G29002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 201, the NHGIS PUMA code is 02200" -in.county_and_puma "G2902030, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 203, the NHGIS PUMA code is 02500" -in.county_and_puma "G2902050, G29000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 205, the NHGIS PUMA code is 00300" -in.county_and_puma "G2902070, G29002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 207, the NHGIS PUMA code is 02300" -in.county_and_puma "G2902090, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 209, the NHGIS PUMA code is 02700" -in.county_and_puma "G2902110, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 211, the NHGIS PUMA code is 00100" -in.county_and_puma "G2902130, G29002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 213, the NHGIS PUMA code is 02700" -in.county_and_puma "G2902150, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 215, the NHGIS PUMA code is 02500" -in.county_and_puma "G2902170, G29001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 217, the NHGIS PUMA code is 01200" -in.county_and_puma "G2902190, G29000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 219, the NHGIS PUMA code is 00400" -in.county_and_puma "G2902210, G29002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 221, the NHGIS PUMA code is 02100" -in.county_and_puma "G2902230, G29002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 223, the NHGIS PUMA code is 02400" -in.county_and_puma "G2902250, G29002601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 225, the NHGIS PUMA code is 02601" -in.county_and_puma "G2902270, G29000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 227, the NHGIS PUMA code is 00100" -in.county_and_puma "G2902290, G29002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 229, the NHGIS PUMA code is 02500" -in.county_and_puma "G2905100, G29001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 510, the NHGIS PUMA code is 01901" -in.county_and_puma "G2905100, G29001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 29, the NHGIS county code is 510, the NHGIS PUMA code is 01902" -in.county_and_puma "G3000010, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000030, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 003, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000050, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000070, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 007, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000090, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 009, the NHGIS PUMA code is 00500" -in.county_and_puma "G3000110, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 011, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000130, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 013, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000150, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 015, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000170, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 017, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000190, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 019, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000210, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 021, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000230, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 023, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000250, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 025, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000270, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 027, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000290, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 029, the NHGIS PUMA code is 00100" -in.county_and_puma "G3000310, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 031, the NHGIS PUMA code is 00500" -in.county_and_puma "G3000330, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 033, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000350, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 035, the NHGIS PUMA code is 00100" -in.county_and_puma "G3000370, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 037, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000390, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 039, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000410, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 041, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000430, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 043, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000450, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 045, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000470, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 047, the NHGIS PUMA code is 00200" -in.county_and_puma "G3000490, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 049, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000510, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 051, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000530, G30000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 053, the NHGIS PUMA code is 00100" -in.county_and_puma "G3000550, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 055, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000570, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 057, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000590, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 059, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000610, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 061, the NHGIS PUMA code is 00200" -in.county_and_puma "G3000630, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 063, the NHGIS PUMA code is 00200" -in.county_and_puma "G3000650, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 065, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000670, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 067, the NHGIS PUMA code is 00500" -in.county_and_puma "G3000690, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 069, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000710, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 071, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000730, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 073, the NHGIS PUMA code is 00400" -in.county_and_puma "G3000750, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 075, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000770, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 077, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000790, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 079, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000810, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 081, the NHGIS PUMA code is 00200" -in.county_and_puma "G3000830, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 083, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000850, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 085, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000870, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 087, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000890, G30000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 089, the NHGIS PUMA code is 00200" -in.county_and_puma "G3000910, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 091, the NHGIS PUMA code is 00600" -in.county_and_puma "G3000930, G30000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 093, the NHGIS PUMA code is 00300" -in.county_and_puma "G3000950, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 095, the NHGIS PUMA code is 00500" -in.county_and_puma "G3000970, G30000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 097, the NHGIS PUMA code is 00500" -in.county_and_puma "G3000990, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 099, the NHGIS PUMA code is 00400" -in.county_and_puma "G3001010, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 101, the NHGIS PUMA code is 00400" -in.county_and_puma "G3001030, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 103, the NHGIS PUMA code is 00600" -in.county_and_puma "G3001050, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 105, the NHGIS PUMA code is 00600" -in.county_and_puma "G3001070, G30000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 107, the NHGIS PUMA code is 00400" -in.county_and_puma "G3001090, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 109, the NHGIS PUMA code is 00600" -in.county_and_puma "G3001110, G30000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 111, the NHGIS PUMA code is 00600" -in.county_and_puma "G3001110, G30000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 30, the NHGIS county code is 111, the NHGIS PUMA code is 00700" -in.county_and_puma "G3100010, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 001, the NHGIS PUMA code is 00500" -in.county_and_puma "G3100030, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100050, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100070, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100090, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100110, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 011, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100130, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100150, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 015, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100170, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 017, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100190, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 019, the NHGIS PUMA code is 00500" -in.county_and_puma "G3100210, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100230, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 023, the NHGIS PUMA code is 00600" -in.county_and_puma "G3100250, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 025, the NHGIS PUMA code is 00701" -in.county_and_puma "G3100270, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 027, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100290, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 029, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100310, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 031, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100330, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100350, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 035, the NHGIS PUMA code is 00500" -in.county_and_puma "G3100370, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 037, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100390, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 039, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100410, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 041, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100430, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 043, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100450, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 045, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100470, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 047, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100490, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 049, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100510, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 051, the NHGIS PUMA code is 00200" -in.county_and_puma "G3100530, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 053, the NHGIS PUMA code is 00701" -in.county_and_puma "G3100550, G31000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00901" -in.county_and_puma "G3100550, G31000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00902" -in.county_and_puma "G3100550, G31000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00903" -in.county_and_puma "G3100550, G31000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 055, the NHGIS PUMA code is 00904" -in.county_and_puma "G3100570, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 057, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100590, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 059, the NHGIS PUMA code is 00600" -in.county_and_puma "G3100610, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 061, the NHGIS PUMA code is 00500" -in.county_and_puma "G3100630, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 063, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100650, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 065, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100670, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 067, the NHGIS PUMA code is 00600" -in.county_and_puma "G3100690, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 069, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100710, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 071, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100730, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 073, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100750, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 075, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100770, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 077, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100790, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 079, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100810, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 081, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100830, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 083, the NHGIS PUMA code is 00500" -in.county_and_puma "G3100850, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 085, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100870, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 087, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100890, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 089, the NHGIS PUMA code is 00100" -in.county_and_puma "G3100910, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 091, the NHGIS PUMA code is 00400" -in.county_and_puma "G3100930, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 093, the NHGIS PUMA code is 00300" -in.county_and_puma "G3100950, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 095, the NHGIS PUMA code is 00600" -in.county_and_puma "G3100970, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 097, the NHGIS PUMA code is 00600" -in.county_and_puma "G3100990, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 099, the NHGIS PUMA code is 00500" -in.county_and_puma "G3101010, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 101, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101030, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 103, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101050, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 105, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101070, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 107, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101090, G31000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 109, the NHGIS PUMA code is 00801" -in.county_and_puma "G3101090, G31000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 109, the NHGIS PUMA code is 00802" -in.county_and_puma "G3101110, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 111, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101130, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 113, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101150, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 115, the NHGIS PUMA code is 00300" -in.county_and_puma "G3101170, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 117, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101190, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 119, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101210, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 121, the NHGIS PUMA code is 00300" -in.county_and_puma "G3101230, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 123, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101250, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 125, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101270, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 127, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101290, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 129, the NHGIS PUMA code is 00500" -in.county_and_puma "G3101310, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 131, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101330, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 133, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101350, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 135, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101370, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 137, the NHGIS PUMA code is 00500" -in.county_and_puma "G3101390, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 139, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101410, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 141, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101430, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 143, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101450, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 145, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101470, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 147, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101490, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 149, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101510, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 151, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101530, G31000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 153, the NHGIS PUMA code is 00702" -in.county_and_puma "G3101550, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 155, the NHGIS PUMA code is 00701" -in.county_and_puma "G3101570, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 157, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101590, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 159, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101610, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 161, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101630, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 163, the NHGIS PUMA code is 00300" -in.county_and_puma "G3101650, G31000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 165, the NHGIS PUMA code is 00100" -in.county_and_puma "G3101670, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 167, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101690, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 169, the NHGIS PUMA code is 00600" -in.county_and_puma "G3101710, G31000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 171, the NHGIS PUMA code is 00400" -in.county_and_puma "G3101730, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 173, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101750, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 175, the NHGIS PUMA code is 00300" -in.county_and_puma "G3101770, G31000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 177, the NHGIS PUMA code is 00701" -in.county_and_puma "G3101790, G31000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 179, the NHGIS PUMA code is 00200" -in.county_and_puma "G3101810, G31000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 181, the NHGIS PUMA code is 00500" -in.county_and_puma "G3101830, G31000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 183, the NHGIS PUMA code is 00300" -in.county_and_puma "G3101850, G31000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 31, the NHGIS county code is 185, the NHGIS PUMA code is 00600" -in.county_and_puma "G3200010, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200030, G32000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00401" -in.county_and_puma "G3200030, G32000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00402" -in.county_and_puma "G3200030, G32000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00403" -in.county_and_puma "G3200030, G32000404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00404" -in.county_and_puma "G3200030, G32000405" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00405" -in.county_and_puma "G3200030, G32000406" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00406" -in.county_and_puma "G3200030, G32000407" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00407" -in.county_and_puma "G3200030, G32000408" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00408" -in.county_and_puma "G3200030, G32000409" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00409" -in.county_and_puma "G3200030, G32000410" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00410" -in.county_and_puma "G3200030, G32000411" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00411" -in.county_and_puma "G3200030, G32000412" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00412" -in.county_and_puma "G3200030, G32000413" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 003, the NHGIS PUMA code is 00413" -in.county_and_puma "G3200050, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G3200070, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 007, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200090, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200110, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 011, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200130, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 013, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200150, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 015, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200170, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 017, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200190, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 019, the NHGIS PUMA code is 00200" -in.county_and_puma "G3200210, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 021, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200230, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 023, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200270, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G3200290, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 029, the NHGIS PUMA code is 00200" -in.county_and_puma "G3200310, G32000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00101" -in.county_and_puma "G3200310, G32000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00102" -in.county_and_puma "G3200310, G32000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 031, the NHGIS PUMA code is 00103" -in.county_and_puma "G3200330, G32000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 033, the NHGIS PUMA code is 00300" -in.county_and_puma "G3205100, G32000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 32, the NHGIS county code is 510, the NHGIS PUMA code is 00200" -in.county_and_puma "G3300010, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 001, the NHGIS PUMA code is 00200" -in.county_and_puma "G3300030, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G3300030, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 003, the NHGIS PUMA code is 00300" -in.county_and_puma "G3300050, G33000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 005, the NHGIS PUMA code is 00500" -in.county_and_puma "G3300070, G33000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G3300090, G33000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 009, the NHGIS PUMA code is 00100" -in.county_and_puma "G3300110, G33000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00600" -in.county_and_puma "G3300110, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00700" -in.county_and_puma "G3300110, G33000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G3300110, G33000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 011, the NHGIS PUMA code is 00900" -in.county_and_puma "G3300130, G33000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00200" -in.county_and_puma "G3300130, G33000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00400" -in.county_and_puma "G3300130, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 013, the NHGIS PUMA code is 00700" -in.county_and_puma "G3300150, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 00300" -in.county_and_puma "G3300150, G33000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 00700" -in.county_and_puma "G3300150, G33001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 015, the NHGIS PUMA code is 01000" -in.county_and_puma "G3300170, G33000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 017, the NHGIS PUMA code is 00300" -in.county_and_puma "G3300190, G33000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 33, the NHGIS county code is 019, the NHGIS PUMA code is 00500" -in.county_and_puma "G3400010, G34000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 00101" -in.county_and_puma "G3400010, G34000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 00102" -in.county_and_puma "G3400010, G34002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 001, the NHGIS PUMA code is 02600" -in.county_and_puma "G3400030, G34000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00301" -in.county_and_puma "G3400030, G34000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00302" -in.county_and_puma "G3400030, G34000303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00303" -in.county_and_puma "G3400030, G34000304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00304" -in.county_and_puma "G3400030, G34000305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00305" -in.county_and_puma "G3400030, G34000306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00306" -in.county_and_puma "G3400030, G34000307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00307" -in.county_and_puma "G3400030, G34000308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 003, the NHGIS PUMA code is 00308" -in.county_and_puma "G3400050, G34002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02001" -in.county_and_puma "G3400050, G34002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02002" -in.county_and_puma "G3400050, G34002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 005, the NHGIS PUMA code is 02003" -in.county_and_puma "G3400070, G34002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02101" -in.county_and_puma "G3400070, G34002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02102" -in.county_and_puma "G3400070, G34002103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02103" -in.county_and_puma "G3400070, G34002104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 007, the NHGIS PUMA code is 02104" -in.county_and_puma "G3400090, G34002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 009, the NHGIS PUMA code is 02600" -in.county_and_puma "G3400110, G34002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 011, the NHGIS PUMA code is 02400" -in.county_and_puma "G3400110, G34002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 011, the NHGIS PUMA code is 02500" -in.county_and_puma "G3400130, G34001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01301" -in.county_and_puma "G3400130, G34001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01302" -in.county_and_puma "G3400130, G34001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01401" -in.county_and_puma "G3400130, G34001402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01402" -in.county_and_puma "G3400130, G34001403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01403" -in.county_and_puma "G3400130, G34001404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 013, the NHGIS PUMA code is 01404" -in.county_and_puma "G3400150, G34002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 015, the NHGIS PUMA code is 02201" -in.county_and_puma "G3400150, G34002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 015, the NHGIS PUMA code is 02202" -in.county_and_puma "G3400170, G34000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00601" -in.county_and_puma "G3400170, G34000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00602" -in.county_and_puma "G3400170, G34000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00701" -in.county_and_puma "G3400170, G34000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00702" -in.county_and_puma "G3400170, G34000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 017, the NHGIS PUMA code is 00703" -in.county_and_puma "G3400190, G34000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 019, the NHGIS PUMA code is 00800" -in.county_and_puma "G3400210, G34002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02301" -in.county_and_puma "G3400210, G34002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02302" -in.county_and_puma "G3400210, G34002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 021, the NHGIS PUMA code is 02303" -in.county_and_puma "G3400230, G34000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00901" -in.county_and_puma "G3400230, G34000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00902" -in.county_and_puma "G3400230, G34000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00903" -in.county_and_puma "G3400230, G34000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00904" -in.county_and_puma "G3400230, G34000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00905" -in.county_and_puma "G3400230, G34000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00906" -in.county_and_puma "G3400230, G34000907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 023, the NHGIS PUMA code is 00907" -in.county_and_puma "G3400250, G34001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01101" -in.county_and_puma "G3400250, G34001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01102" -in.county_and_puma "G3400250, G34001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01103" -in.county_and_puma "G3400250, G34001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01104" -in.county_and_puma "G3400250, G34001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01105" -in.county_and_puma "G3400250, G34001106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 025, the NHGIS PUMA code is 01106" -in.county_and_puma "G3400270, G34001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01501" -in.county_and_puma "G3400270, G34001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01502" -in.county_and_puma "G3400270, G34001503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01503" -in.county_and_puma "G3400270, G34001504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 027, the NHGIS PUMA code is 01504" -in.county_and_puma "G3400290, G34001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01201" -in.county_and_puma "G3400290, G34001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01202" -in.county_and_puma "G3400290, G34001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01203" -in.county_and_puma "G3400290, G34001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01204" -in.county_and_puma "G3400290, G34001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 029, the NHGIS PUMA code is 01205" -in.county_and_puma "G3400310, G34000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00400" -in.county_and_puma "G3400310, G34000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00501" -in.county_and_puma "G3400310, G34000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00502" -in.county_and_puma "G3400310, G34000503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 031, the NHGIS PUMA code is 00503" -in.county_and_puma "G3400330, G34002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 033, the NHGIS PUMA code is 02500" -in.county_and_puma "G3400350, G34001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01001" -in.county_and_puma "G3400350, G34001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01002" -in.county_and_puma "G3400350, G34001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 035, the NHGIS PUMA code is 01003" -in.county_and_puma "G3400370, G34001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 037, the NHGIS PUMA code is 01600" -in.county_and_puma "G3400390, G34001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01800" -in.county_and_puma "G3400390, G34001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01901" -in.county_and_puma "G3400390, G34001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01902" -in.county_and_puma "G3400390, G34001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01903" -in.county_and_puma "G3400390, G34001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 039, the NHGIS PUMA code is 01904" -in.county_and_puma "G3400410, G34001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 34, the NHGIS county code is 041, the NHGIS PUMA code is 01700" -in.county_and_puma "G3500010, G35000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00700" -in.county_and_puma "G3500010, G35000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00801" -in.county_and_puma "G3500010, G35000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00802" -in.county_and_puma "G3500010, G35000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00803" -in.county_and_puma "G3500010, G35000804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00804" -in.county_and_puma "G3500010, G35000805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00805" -in.county_and_puma "G3500010, G35000806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 001, the NHGIS PUMA code is 00806" -in.county_and_puma "G3500030, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 003, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500050, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 005, the NHGIS PUMA code is 01100" -in.county_and_puma "G3500060, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 006, the NHGIS PUMA code is 00100" -in.county_and_puma "G3500070, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 007, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500090, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500110, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 011, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500130, G35001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 013, the NHGIS PUMA code is 01001" -in.county_and_puma "G3500130, G35001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 013, the NHGIS PUMA code is 01002" -in.county_and_puma "G3500150, G35001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 015, the NHGIS PUMA code is 01200" -in.county_and_puma "G3500170, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 017, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500190, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 019, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500210, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 021, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500230, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 023, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500250, G35001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 025, the NHGIS PUMA code is 01200" -in.county_and_puma "G3500270, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 027, the NHGIS PUMA code is 01100" -in.county_and_puma "G3500280, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 028, the NHGIS PUMA code is 00300" -in.county_and_puma "G3500290, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 029, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500310, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 031, the NHGIS PUMA code is 00100" -in.county_and_puma "G3500330, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 033, the NHGIS PUMA code is 00300" -in.county_and_puma "G3500350, G35001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 035, the NHGIS PUMA code is 01100" -in.county_and_puma "G3500370, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 037, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500390, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 039, the NHGIS PUMA code is 00300" -in.county_and_puma "G3500410, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 041, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500430, G35000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 043, the NHGIS PUMA code is 00600" -in.county_and_puma "G3500450, G35000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 045, the NHGIS PUMA code is 00100" -in.county_and_puma "G3500450, G35000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 045, the NHGIS PUMA code is 00200" -in.county_and_puma "G3500470, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 047, the NHGIS PUMA code is 00300" -in.county_and_puma "G3500490, G35000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 049, the NHGIS PUMA code is 00500" -in.county_and_puma "G3500510, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 051, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500530, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 053, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500550, G35000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 055, the NHGIS PUMA code is 00300" -in.county_and_puma "G3500570, G35000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 057, the NHGIS PUMA code is 00900" -in.county_and_puma "G3500590, G35000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 059, the NHGIS PUMA code is 00400" -in.county_and_puma "G3500610, G35000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 35, the NHGIS county code is 061, the NHGIS PUMA code is 00700" -in.county_and_puma "G3600010, G36002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 001, the NHGIS PUMA code is 02001" -in.county_and_puma "G3600010, G36002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 001, the NHGIS PUMA code is 02002" -in.county_and_puma "G3600030, G36002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 003, the NHGIS PUMA code is 02500" -in.county_and_puma "G3600050, G36003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03701" -in.county_and_puma "G3600050, G36003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03702" -in.county_and_puma "G3600050, G36003703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03703" -in.county_and_puma "G3600050, G36003704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03704" -in.county_and_puma "G3600050, G36003705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03705" -in.county_and_puma "G3600050, G36003706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03706" -in.county_and_puma "G3600050, G36003707" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03707" -in.county_and_puma "G3600050, G36003708" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03708" -in.county_and_puma "G3600050, G36003709" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03709" -in.county_and_puma "G3600050, G36003710" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 005, the NHGIS PUMA code is 03710" -in.county_and_puma "G3600070, G36002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02201" -in.county_and_puma "G3600070, G36002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02202" -in.county_and_puma "G3600070, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 007, the NHGIS PUMA code is 02203" -in.county_and_puma "G3600090, G36002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 009, the NHGIS PUMA code is 02500" -in.county_and_puma "G3600110, G36000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 011, the NHGIS PUMA code is 00704" -in.county_and_puma "G3600130, G36002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 013, the NHGIS PUMA code is 02600" -in.county_and_puma "G3600150, G36002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 015, the NHGIS PUMA code is 02401" -in.county_and_puma "G3600150, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 015, the NHGIS PUMA code is 02402" -in.county_and_puma "G3600170, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 017, the NHGIS PUMA code is 02203" -in.county_and_puma "G3600190, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 019, the NHGIS PUMA code is 00200" -in.county_and_puma "G3600210, G36002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 021, the NHGIS PUMA code is 02100" -in.county_and_puma "G3600230, G36001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 023, the NHGIS PUMA code is 01500" -in.county_and_puma "G3600250, G36002203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 025, the NHGIS PUMA code is 02203" -in.county_and_puma "G3600270, G36002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 027, the NHGIS PUMA code is 02801" -in.county_and_puma "G3600270, G36002802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 027, the NHGIS PUMA code is 02802" -in.county_and_puma "G3600290, G36001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01201" -in.county_and_puma "G3600290, G36001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01202" -in.county_and_puma "G3600290, G36001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01203" -in.county_and_puma "G3600290, G36001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01204" -in.county_and_puma "G3600290, G36001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01205" -in.county_and_puma "G3600290, G36001206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01206" -in.county_and_puma "G3600290, G36001207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 029, the NHGIS PUMA code is 01207" -in.county_and_puma "G3600310, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 031, the NHGIS PUMA code is 00200" -in.county_and_puma "G3600330, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 033, the NHGIS PUMA code is 00200" -in.county_and_puma "G3600350, G36001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 035, the NHGIS PUMA code is 01600" -in.county_and_puma "G3600370, G36001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 037, the NHGIS PUMA code is 01000" -in.county_and_puma "G3600390, G36002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 039, the NHGIS PUMA code is 02100" -in.county_and_puma "G3600410, G36000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 041, the NHGIS PUMA code is 00200" -in.county_and_puma "G3600430, G36000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 043, the NHGIS PUMA code is 00401" -in.county_and_puma "G3600430, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 043, the NHGIS PUMA code is 00403" -in.county_and_puma "G3600450, G36000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 045, the NHGIS PUMA code is 00500" -in.county_and_puma "G3600470, G36004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04001" -in.county_and_puma "G3600470, G36004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04002" -in.county_and_puma "G3600470, G36004003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04003" -in.county_and_puma "G3600470, G36004004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04004" -in.county_and_puma "G3600470, G36004005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04005" -in.county_and_puma "G3600470, G36004006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04006" -in.county_and_puma "G3600470, G36004007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04007" -in.county_and_puma "G3600470, G36004008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04008" -in.county_and_puma "G3600470, G36004009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04009" -in.county_and_puma "G3600470, G36004010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04010" -in.county_and_puma "G3600470, G36004011" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04011" -in.county_and_puma "G3600470, G36004012" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04012" -in.county_and_puma "G3600470, G36004013" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04013" -in.county_and_puma "G3600470, G36004014" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04014" -in.county_and_puma "G3600470, G36004015" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04015" -in.county_and_puma "G3600470, G36004016" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04016" -in.county_and_puma "G3600470, G36004017" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04017" -in.county_and_puma "G3600470, G36004018" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 047, the NHGIS PUMA code is 04018" -in.county_and_puma "G3600490, G36000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 049, the NHGIS PUMA code is 00500" -in.county_and_puma "G3600510, G36001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 051, the NHGIS PUMA code is 01300" -in.county_and_puma "G3600530, G36001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 053, the NHGIS PUMA code is 01500" -in.county_and_puma "G3600550, G36000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00901" -in.county_and_puma "G3600550, G36000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00902" -in.county_and_puma "G3600550, G36000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00903" -in.county_and_puma "G3600550, G36000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00904" -in.county_and_puma "G3600550, G36000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00905" -in.county_and_puma "G3600550, G36000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 055, the NHGIS PUMA code is 00906" -in.county_and_puma "G3600570, G36001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 057, the NHGIS PUMA code is 01600" -in.county_and_puma "G3600590, G36003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03201" -in.county_and_puma "G3600590, G36003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03202" -in.county_and_puma "G3600590, G36003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03203" -in.county_and_puma "G3600590, G36003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03204" -in.county_and_puma "G3600590, G36003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03205" -in.county_and_puma "G3600590, G36003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03206" -in.county_and_puma "G3600590, G36003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03207" -in.county_and_puma "G3600590, G36003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03208" -in.county_and_puma "G3600590, G36003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03209" -in.county_and_puma "G3600590, G36003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03210" -in.county_and_puma "G3600590, G36003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03211" -in.county_and_puma "G3600590, G36003212" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 059, the NHGIS PUMA code is 03212" -in.county_and_puma "G3600610, G36003801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03801" -in.county_and_puma "G3600610, G36003802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03802" -in.county_and_puma "G3600610, G36003803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03803" -in.county_and_puma "G3600610, G36003804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03804" -in.county_and_puma "G3600610, G36003805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03805" -in.county_and_puma "G3600610, G36003806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03806" -in.county_and_puma "G3600610, G36003807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03807" -in.county_and_puma "G3600610, G36003808" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03808" -in.county_and_puma "G3600610, G36003809" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03809" -in.county_and_puma "G3600610, G36003810" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 061, the NHGIS PUMA code is 03810" -in.county_and_puma "G3600630, G36001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 063, the NHGIS PUMA code is 01101" -in.county_and_puma "G3600630, G36001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 063, the NHGIS PUMA code is 01102" -in.county_and_puma "G3600650, G36000401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00401" -in.county_and_puma "G3600650, G36000402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00402" -in.county_and_puma "G3600650, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 065, the NHGIS PUMA code is 00403" -in.county_and_puma "G3600670, G36000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00701" -in.county_and_puma "G3600670, G36000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00702" -in.county_and_puma "G3600670, G36000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00703" -in.county_and_puma "G3600670, G36000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 067, the NHGIS PUMA code is 00704" -in.county_and_puma "G3600690, G36001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 069, the NHGIS PUMA code is 01400" -in.county_and_puma "G3600710, G36002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02901" -in.county_and_puma "G3600710, G36002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02902" -in.county_and_puma "G3600710, G36002903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 071, the NHGIS PUMA code is 02903" -in.county_and_puma "G3600730, G36001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 073, the NHGIS PUMA code is 01000" -in.county_and_puma "G3600750, G36000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 075, the NHGIS PUMA code is 00600" -in.county_and_puma "G3600770, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 077, the NHGIS PUMA code is 00403" -in.county_and_puma "G3600790, G36003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 079, the NHGIS PUMA code is 03101" -in.county_and_puma "G3600810, G36004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04101" -in.county_and_puma "G3600810, G36004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04102" -in.county_and_puma "G3600810, G36004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04103" -in.county_and_puma "G3600810, G36004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04104" -in.county_and_puma "G3600810, G36004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04105" -in.county_and_puma "G3600810, G36004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04106" -in.county_and_puma "G3600810, G36004107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04107" -in.county_and_puma "G3600810, G36004108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04108" -in.county_and_puma "G3600810, G36004109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04109" -in.county_and_puma "G3600810, G36004110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04110" -in.county_and_puma "G3600810, G36004111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04111" -in.county_and_puma "G3600810, G36004112" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04112" -in.county_and_puma "G3600810, G36004113" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04113" -in.county_and_puma "G3600810, G36004114" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 081, the NHGIS PUMA code is 04114" -in.county_and_puma "G3600830, G36001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 083, the NHGIS PUMA code is 01900" -in.county_and_puma "G3600850, G36003901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03901" -in.county_and_puma "G3600850, G36003902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03902" -in.county_and_puma "G3600850, G36003903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 085, the NHGIS PUMA code is 03903" -in.county_and_puma "G3600870, G36003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03001" -in.county_and_puma "G3600870, G36003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03002" -in.county_and_puma "G3600870, G36003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 087, the NHGIS PUMA code is 03003" -in.county_and_puma "G3600890, G36000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 089, the NHGIS PUMA code is 00100" -in.county_and_puma "G3600910, G36001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 091, the NHGIS PUMA code is 01801" -in.county_and_puma "G3600910, G36001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 091, the NHGIS PUMA code is 01802" -in.county_and_puma "G3600930, G36001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 093, the NHGIS PUMA code is 01700" -in.county_and_puma "G3600950, G36000403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 095, the NHGIS PUMA code is 00403" -in.county_and_puma "G3600970, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 097, the NHGIS PUMA code is 02402" -in.county_and_puma "G3600990, G36000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 099, the NHGIS PUMA code is 00800" -in.county_and_puma "G3601010, G36002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 101, the NHGIS PUMA code is 02401" -in.county_and_puma "G3601010, G36002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 101, the NHGIS PUMA code is 02402" -in.county_and_puma "G3601030, G36003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03301" -in.county_and_puma "G3601030, G36003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03302" -in.county_and_puma "G3601030, G36003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03303" -in.county_and_puma "G3601030, G36003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03304" -in.county_and_puma "G3601030, G36003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03305" -in.county_and_puma "G3601030, G36003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03306" -in.county_and_puma "G3601030, G36003307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03307" -in.county_and_puma "G3601030, G36003308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03308" -in.county_and_puma "G3601030, G36003309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03309" -in.county_and_puma "G3601030, G36003310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03310" -in.county_and_puma "G3601030, G36003311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03311" -in.county_and_puma "G3601030, G36003312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03312" -in.county_and_puma "G3601030, G36003313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 103, the NHGIS PUMA code is 03313" -in.county_and_puma "G3601050, G36002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 105, the NHGIS PUMA code is 02701" -in.county_and_puma "G3601070, G36002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 107, the NHGIS PUMA code is 02202" -in.county_and_puma "G3601090, G36002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 109, the NHGIS PUMA code is 02300" -in.county_and_puma "G3601110, G36002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 111, the NHGIS PUMA code is 02701" -in.county_and_puma "G3601110, G36002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 111, the NHGIS PUMA code is 02702" -in.county_and_puma "G3601130, G36000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 113, the NHGIS PUMA code is 00300" -in.county_and_puma "G3601150, G36000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 115, the NHGIS PUMA code is 00300" -in.county_and_puma "G3601170, G36000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 117, the NHGIS PUMA code is 00800" -in.county_and_puma "G3601190, G36003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03101" -in.county_and_puma "G3601190, G36003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03102" -in.county_and_puma "G3601190, G36003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03103" -in.county_and_puma "G3601190, G36003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03104" -in.county_and_puma "G3601190, G36003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03105" -in.county_and_puma "G3601190, G36003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03106" -in.county_and_puma "G3601190, G36003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 119, the NHGIS PUMA code is 03107" -in.county_and_puma "G3601210, G36001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 121, the NHGIS PUMA code is 01300" -in.county_and_puma "G3601230, G36001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 36, the NHGIS county code is 123, the NHGIS PUMA code is 01400" -in.county_and_puma "G3700010, G37001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 001, the NHGIS PUMA code is 01600" -in.county_and_puma "G3700030, G37002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 003, the NHGIS PUMA code is 02000" -in.county_and_puma "G3700050, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G3700070, G37005300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 007, the NHGIS PUMA code is 05300" -in.county_and_puma "G3700090, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 009, the NHGIS PUMA code is 00100" -in.county_and_puma "G3700110, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 011, the NHGIS PUMA code is 00100" -in.county_and_puma "G3700130, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 013, the NHGIS PUMA code is 04400" -in.county_and_puma "G3700150, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 015, the NHGIS PUMA code is 00800" -in.county_and_puma "G3700170, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 017, the NHGIS PUMA code is 04900" -in.county_and_puma "G3700190, G37004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 019, the NHGIS PUMA code is 04800" -in.county_and_puma "G3700210, G37002201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 021, the NHGIS PUMA code is 02201" -in.county_and_puma "G3700210, G37002202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 021, the NHGIS PUMA code is 02202" -in.county_and_puma "G3700230, G37002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 023, the NHGIS PUMA code is 02100" -in.county_and_puma "G3700250, G37003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 025, the NHGIS PUMA code is 03200" -in.county_and_puma "G3700250, G37003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 025, the NHGIS PUMA code is 03300" -in.county_and_puma "G3700270, G37002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 027, the NHGIS PUMA code is 02000" -in.county_and_puma "G3700290, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 029, the NHGIS PUMA code is 00700" -in.county_and_puma "G3700310, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 031, the NHGIS PUMA code is 04400" -in.county_and_puma "G3700330, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 033, the NHGIS PUMA code is 00400" -in.county_and_puma "G3700350, G37002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 035, the NHGIS PUMA code is 02800" -in.county_and_puma "G3700370, G37001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 037, the NHGIS PUMA code is 01500" -in.county_and_puma "G3700390, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 039, the NHGIS PUMA code is 02400" -in.county_and_puma "G3700410, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 041, the NHGIS PUMA code is 00700" -in.county_and_puma "G3700430, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 043, the NHGIS PUMA code is 02400" -in.county_and_puma "G3700450, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 045, the NHGIS PUMA code is 02600" -in.county_and_puma "G3700450, G37002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 045, the NHGIS PUMA code is 02700" -in.county_and_puma "G3700470, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 047, the NHGIS PUMA code is 04900" -in.county_and_puma "G3700490, G37004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 049, the NHGIS PUMA code is 04300" -in.county_and_puma "G3700510, G37005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05001" -in.county_and_puma "G3700510, G37005002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05002" -in.county_and_puma "G3700510, G37005003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 051, the NHGIS PUMA code is 05003" -in.county_and_puma "G3700530, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 053, the NHGIS PUMA code is 00700" -in.county_and_puma "G3700550, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 055, the NHGIS PUMA code is 00800" -in.county_and_puma "G3700570, G37003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 057, the NHGIS PUMA code is 03500" -in.county_and_puma "G3700590, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 059, the NHGIS PUMA code is 01900" -in.county_and_puma "G3700610, G37003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 061, the NHGIS PUMA code is 03900" -in.county_and_puma "G3700630, G37001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 063, the NHGIS PUMA code is 01301" -in.county_and_puma "G3700630, G37001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 063, the NHGIS PUMA code is 01302" -in.county_and_puma "G3700650, G37000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 065, the NHGIS PUMA code is 00900" -in.county_and_puma "G3700670, G37001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01801" -in.county_and_puma "G3700670, G37001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01802" -in.county_and_puma "G3700670, G37001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 067, the NHGIS PUMA code is 01803" -in.county_and_puma "G3700690, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 069, the NHGIS PUMA code is 00500" -in.county_and_puma "G3700710, G37003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 071, the NHGIS PUMA code is 03001" -in.county_and_puma "G3700710, G37003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 071, the NHGIS PUMA code is 03002" -in.county_and_puma "G3700730, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 073, the NHGIS PUMA code is 00700" -in.county_and_puma "G3700750, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 075, the NHGIS PUMA code is 02300" -in.county_and_puma "G3700770, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 077, the NHGIS PUMA code is 00400" -in.county_and_puma "G3700790, G37001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 079, the NHGIS PUMA code is 01000" -in.county_and_puma "G3700810, G37001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01701" -in.county_and_puma "G3700810, G37001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01702" -in.county_and_puma "G3700810, G37001703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01703" -in.county_and_puma "G3700810, G37001704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 081, the NHGIS PUMA code is 01704" -in.county_and_puma "G3700830, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 083, the NHGIS PUMA code is 00600" -in.county_and_puma "G3700850, G37003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 085, the NHGIS PUMA code is 03800" -in.county_and_puma "G3700870, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 087, the NHGIS PUMA code is 02300" -in.county_and_puma "G3700890, G37002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 089, the NHGIS PUMA code is 02500" -in.county_and_puma "G3700910, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 091, the NHGIS PUMA code is 00600" -in.county_and_puma "G3700930, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 093, the NHGIS PUMA code is 05200" -in.county_and_puma "G3700950, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 095, the NHGIS PUMA code is 00800" -in.county_and_puma "G3700970, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 097, the NHGIS PUMA code is 01900" -in.county_and_puma "G3700970, G37002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 097, the NHGIS PUMA code is 02900" -in.county_and_puma "G3700990, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 099, the NHGIS PUMA code is 02300" -in.county_and_puma "G3700990, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 099, the NHGIS PUMA code is 02400" -in.county_and_puma "G3701010, G37001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 101, the NHGIS PUMA code is 01100" -in.county_and_puma "G3701030, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 103, the NHGIS PUMA code is 04100" -in.county_and_puma "G3701050, G37001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 105, the NHGIS PUMA code is 01500" -in.county_and_puma "G3701070, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 107, the NHGIS PUMA code is 04100" -in.county_and_puma "G3701090, G37002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 109, the NHGIS PUMA code is 02700" -in.county_and_puma "G3701110, G37002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 111, the NHGIS PUMA code is 02100" -in.county_and_puma "G3701130, G37002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 113, the NHGIS PUMA code is 02400" -in.county_and_puma "G3701150, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 115, the NHGIS PUMA code is 02300" -in.county_and_puma "G3701170, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 117, the NHGIS PUMA code is 00800" -in.county_and_puma "G3701190, G37003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03101" -in.county_and_puma "G3701190, G37003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03102" -in.county_and_puma "G3701190, G37003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03103" -in.county_and_puma "G3701190, G37003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03104" -in.county_and_puma "G3701190, G37003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03105" -in.county_and_puma "G3701190, G37003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03106" -in.county_and_puma "G3701190, G37003107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03107" -in.county_and_puma "G3701190, G37003108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 119, the NHGIS PUMA code is 03108" -in.county_and_puma "G3701210, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 121, the NHGIS PUMA code is 00100" -in.county_and_puma "G3701230, G37003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 123, the NHGIS PUMA code is 03700" -in.county_and_puma "G3701250, G37003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 125, the NHGIS PUMA code is 03700" -in.county_and_puma "G3701270, G37000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 127, the NHGIS PUMA code is 00900" -in.county_and_puma "G3701290, G37004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 129, the NHGIS PUMA code is 04600" -in.county_and_puma "G3701290, G37004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 129, the NHGIS PUMA code is 04700" -in.county_and_puma "G3701310, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 131, the NHGIS PUMA code is 00600" -in.county_and_puma "G3701330, G37004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 133, the NHGIS PUMA code is 04100" -in.county_and_puma "G3701330, G37004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 133, the NHGIS PUMA code is 04500" -in.county_and_puma "G3701350, G37001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 135, the NHGIS PUMA code is 01400" -in.county_and_puma "G3701370, G37004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 137, the NHGIS PUMA code is 04400" -in.county_and_puma "G3701390, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 139, the NHGIS PUMA code is 00700" -in.county_and_puma "G3701410, G37004600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 141, the NHGIS PUMA code is 04600" -in.county_and_puma "G3701430, G37000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 143, the NHGIS PUMA code is 00700" -in.county_and_puma "G3701450, G37000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 145, the NHGIS PUMA code is 00400" -in.county_and_puma "G3701470, G37004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 147, the NHGIS PUMA code is 04200" -in.county_and_puma "G3701490, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 149, the NHGIS PUMA code is 02600" -in.county_and_puma "G3701510, G37003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 151, the NHGIS PUMA code is 03600" -in.county_and_puma "G3701530, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 153, the NHGIS PUMA code is 05200" -in.county_and_puma "G3701550, G37004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 155, the NHGIS PUMA code is 04900" -in.county_and_puma "G3701550, G37005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 155, the NHGIS PUMA code is 05100" -in.county_and_puma "G3701570, G37000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 157, the NHGIS PUMA code is 00300" -in.county_and_puma "G3701590, G37003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 159, the NHGIS PUMA code is 03400" -in.county_and_puma "G3701610, G37002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 161, the NHGIS PUMA code is 02600" -in.county_and_puma "G3701630, G37003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 163, the NHGIS PUMA code is 03900" -in.county_and_puma "G3701650, G37005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 165, the NHGIS PUMA code is 05200" -in.county_and_puma "G3701670, G37003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 167, the NHGIS PUMA code is 03300" -in.county_and_puma "G3701690, G37000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 169, the NHGIS PUMA code is 00300" -in.county_and_puma "G3701710, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 171, the NHGIS PUMA code is 00200" -in.county_and_puma "G3701730, G37002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 173, the NHGIS PUMA code is 02300" -in.county_and_puma "G3701750, G37002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 175, the NHGIS PUMA code is 02500" -in.county_and_puma "G3701770, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 177, the NHGIS PUMA code is 00800" -in.county_and_puma "G3701790, G37005300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 179, the NHGIS PUMA code is 05300" -in.county_and_puma "G3701790, G37005400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 179, the NHGIS PUMA code is 05400" -in.county_and_puma "G3701810, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 181, the NHGIS PUMA code is 00500" -in.county_and_puma "G3701830, G37001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01201" -in.county_and_puma "G3701830, G37001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01202" -in.county_and_puma "G3701830, G37001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01203" -in.county_and_puma "G3701830, G37001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01204" -in.county_and_puma "G3701830, G37001205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01205" -in.county_and_puma "G3701830, G37001206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01206" -in.county_and_puma "G3701830, G37001207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01207" -in.county_and_puma "G3701830, G37001208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 183, the NHGIS PUMA code is 01208" -in.county_and_puma "G3701850, G37000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 185, the NHGIS PUMA code is 00500" -in.county_and_puma "G3701850, G37000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 185, the NHGIS PUMA code is 00600" -in.county_and_puma "G3701870, G37000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 187, the NHGIS PUMA code is 00800" -in.county_and_puma "G3701890, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 189, the NHGIS PUMA code is 00100" -in.county_and_puma "G3701910, G37004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 191, the NHGIS PUMA code is 04000" -in.county_and_puma "G3701930, G37000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 193, the NHGIS PUMA code is 00200" -in.county_and_puma "G3701950, G37001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 195, the NHGIS PUMA code is 01000" -in.county_and_puma "G3701970, G37001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 197, the NHGIS PUMA code is 01900" -in.county_and_puma "G3701990, G37000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 37, the NHGIS county code is 199, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800010, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 001, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800030, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 003, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800050, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800070, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800090, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 009, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800110, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 011, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800130, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800150, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 015, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800170, G38000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 017, the NHGIS PUMA code is 00500" -in.county_and_puma "G3800190, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 019, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800210, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800230, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 023, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800250, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 025, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800270, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 027, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800290, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 029, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800310, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 031, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800330, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800350, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 035, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800370, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 037, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800390, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 039, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800410, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 041, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800430, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 043, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800450, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 045, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800470, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 047, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800490, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 049, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800510, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 051, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800530, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 053, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800550, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 055, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800570, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 057, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800590, G38000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 059, the NHGIS PUMA code is 00300" -in.county_and_puma "G3800610, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 061, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800630, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 063, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800650, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 065, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800670, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 067, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800690, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 069, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800710, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 071, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800730, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 073, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800750, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 075, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800770, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 077, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800790, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 079, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800810, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 081, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800830, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 083, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800850, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 085, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800870, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 087, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800890, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 089, the NHGIS PUMA code is 00100" -in.county_and_puma "G3800910, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 091, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800930, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 093, the NHGIS PUMA code is 00200" -in.county_and_puma "G3800950, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 095, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800970, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 097, the NHGIS PUMA code is 00400" -in.county_and_puma "G3800990, G38000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 099, the NHGIS PUMA code is 00400" -in.county_and_puma "G3801010, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 101, the NHGIS PUMA code is 00100" -in.county_and_puma "G3801030, G38000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 103, the NHGIS PUMA code is 00200" -in.county_and_puma "G3801050, G38000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 38, the NHGIS county code is 105, the NHGIS PUMA code is 00100" -in.county_and_puma "G3900010, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 001, the NHGIS PUMA code is 05200" -in.county_and_puma "G3900030, G39002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 003, the NHGIS PUMA code is 02500" -in.county_and_puma "G3900050, G39002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 005, the NHGIS PUMA code is 02100" -in.county_and_puma "G3900070, G39001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 007, the NHGIS PUMA code is 01300" -in.county_and_puma "G3900090, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 009, the NHGIS PUMA code is 05000" -in.county_and_puma "G3900110, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 011, the NHGIS PUMA code is 02600" -in.county_and_puma "G3900130, G39003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 013, the NHGIS PUMA code is 03500" -in.county_and_puma "G3900150, G39005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 015, the NHGIS PUMA code is 05700" -in.county_and_puma "G3900170, G39005401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05401" -in.county_and_puma "G3900170, G39005402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05402" -in.county_and_puma "G3900170, G39005403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 017, the NHGIS PUMA code is 05403" -in.county_and_puma "G3900190, G39003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 019, the NHGIS PUMA code is 03300" -in.county_and_puma "G3900210, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 021, the NHGIS PUMA code is 02700" -in.county_and_puma "G3900230, G39004300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 023, the NHGIS PUMA code is 04300" -in.county_and_puma "G3900250, G39005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 025, the NHGIS PUMA code is 05600" -in.county_and_puma "G3900250, G39005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 025, the NHGIS PUMA code is 05700" -in.county_and_puma "G3900270, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 027, the NHGIS PUMA code is 05200" -in.county_and_puma "G3900290, G39003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 029, the NHGIS PUMA code is 03400" -in.county_and_puma "G3900310, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 031, the NHGIS PUMA code is 02900" -in.county_and_puma "G3900330, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 033, the NHGIS PUMA code is 02300" -in.county_and_puma "G3900350, G39000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00901" -in.county_and_puma "G3900350, G39000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00902" -in.county_and_puma "G3900350, G39000903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00903" -in.county_and_puma "G3900350, G39000904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00904" -in.county_and_puma "G3900350, G39000905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00905" -in.county_and_puma "G3900350, G39000906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00906" -in.county_and_puma "G3900350, G39000907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00907" -in.county_and_puma "G3900350, G39000908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00908" -in.county_and_puma "G3900350, G39000909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00909" -in.county_and_puma "G3900350, G39000910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 035, the NHGIS PUMA code is 00910" -in.county_and_puma "G3900370, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 037, the NHGIS PUMA code is 04500" -in.county_and_puma "G3900390, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G3900410, G39004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 041, the NHGIS PUMA code is 04000" -in.county_and_puma "G3900430, G39000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 043, the NHGIS PUMA code is 00700" -in.county_and_puma "G3900450, G39003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 045, the NHGIS PUMA code is 03900" -in.county_and_puma "G3900470, G39004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 047, the NHGIS PUMA code is 04800" -in.county_and_puma "G3900490, G39004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04101" -in.county_and_puma "G3900490, G39004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04102" -in.county_and_puma "G3900490, G39004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04103" -in.county_and_puma "G3900490, G39004104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04104" -in.county_and_puma "G3900490, G39004105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04105" -in.county_and_puma "G3900490, G39004106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04106" -in.county_and_puma "G3900490, G39004107" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04107" -in.county_and_puma "G3900490, G39004108" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04108" -in.county_and_puma "G3900490, G39004109" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04109" -in.county_and_puma "G3900490, G39004110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04110" -in.county_and_puma "G3900490, G39004111" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 049, the NHGIS PUMA code is 04111" -in.county_and_puma "G3900510, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 051, the NHGIS PUMA code is 00200" -in.county_and_puma "G3900530, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 053, the NHGIS PUMA code is 05000" -in.county_and_puma "G3900550, G39001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 055, the NHGIS PUMA code is 01200" -in.county_and_puma "G3900570, G39004700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 057, the NHGIS PUMA code is 04700" -in.county_and_puma "G3900590, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 059, the NHGIS PUMA code is 02900" -in.county_and_puma "G3900610, G39005501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05501" -in.county_and_puma "G3900610, G39005502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05502" -in.county_and_puma "G3900610, G39005503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05503" -in.county_and_puma "G3900610, G39005504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05504" -in.county_and_puma "G3900610, G39005505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05505" -in.county_and_puma "G3900610, G39005506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05506" -in.county_and_puma "G3900610, G39005507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 061, the NHGIS PUMA code is 05507" -in.county_and_puma "G3900630, G39002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 063, the NHGIS PUMA code is 02400" -in.county_and_puma "G3900650, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 065, the NHGIS PUMA code is 02700" -in.county_and_puma "G3900670, G39003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 067, the NHGIS PUMA code is 03000" -in.county_and_puma "G3900690, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 069, the NHGIS PUMA code is 00100" -in.county_and_puma "G3900710, G39005200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 071, the NHGIS PUMA code is 05200" -in.county_and_puma "G3900730, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 073, the NHGIS PUMA code is 04900" -in.county_and_puma "G3900750, G39002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 075, the NHGIS PUMA code is 02900" -in.county_and_puma "G3900770, G39002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 077, the NHGIS PUMA code is 02100" -in.county_and_puma "G3900790, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 079, the NHGIS PUMA code is 04900" -in.county_and_puma "G3900810, G39003500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 081, the NHGIS PUMA code is 03500" -in.county_and_puma "G3900830, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 083, the NHGIS PUMA code is 02800" -in.county_and_puma "G3900850, G39001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01000" -in.county_and_puma "G3900850, G39001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01100" -in.county_and_puma "G3900850, G39001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 085, the NHGIS PUMA code is 01200" -in.county_and_puma "G3900870, G39005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 087, the NHGIS PUMA code is 05100" -in.county_and_puma "G3900890, G39003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 089, the NHGIS PUMA code is 03800" -in.county_and_puma "G3900910, G39002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 091, the NHGIS PUMA code is 02700" -in.county_and_puma "G3900930, G39000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 093, the NHGIS PUMA code is 00801" -in.county_and_puma "G3900930, G39000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 093, the NHGIS PUMA code is 00802" -in.county_and_puma "G3900950, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00200" -in.county_and_puma "G3900950, G39000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00300" -in.county_and_puma "G3900950, G39000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00400" -in.county_and_puma "G3900950, G39000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00500" -in.county_and_puma "G3900950, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 095, the NHGIS PUMA code is 00600" -in.county_and_puma "G3900970, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 097, the NHGIS PUMA code is 04200" -in.county_and_puma "G3900990, G39001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 099, the NHGIS PUMA code is 01400" -in.county_and_puma "G3900990, G39001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 099, the NHGIS PUMA code is 01500" -in.county_and_puma "G3901010, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 101, the NHGIS PUMA code is 02800" -in.county_and_puma "G3901030, G39001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 103, the NHGIS PUMA code is 01900" -in.county_and_puma "G3901050, G39005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 105, the NHGIS PUMA code is 05000" -in.county_and_puma "G3901070, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 107, the NHGIS PUMA code is 02600" -in.county_and_puma "G3901090, G39004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 109, the NHGIS PUMA code is 04400" -in.county_and_puma "G3901110, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 111, the NHGIS PUMA code is 03600" -in.county_and_puma "G3901130, G39004601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04601" -in.county_and_puma "G3901130, G39004602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04602" -in.county_and_puma "G3901130, G39004603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04603" -in.county_and_puma "G3901130, G39004604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 113, the NHGIS PUMA code is 04604" -in.county_and_puma "G3901150, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 115, the NHGIS PUMA code is 03600" -in.county_and_puma "G3901170, G39002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 117, the NHGIS PUMA code is 02800" -in.county_and_puma "G3901190, G39003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 119, the NHGIS PUMA code is 03700" -in.county_and_puma "G3901210, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 121, the NHGIS PUMA code is 03600" -in.county_and_puma "G3901230, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 123, the NHGIS PUMA code is 00600" -in.county_and_puma "G3901250, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 125, the NHGIS PUMA code is 00100" -in.county_and_puma "G3901270, G39003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 127, the NHGIS PUMA code is 03700" -in.county_and_puma "G3901290, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 129, the NHGIS PUMA code is 04200" -in.county_and_puma "G3901310, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 131, the NHGIS PUMA code is 04900" -in.county_and_puma "G3901330, G39001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 133, the NHGIS PUMA code is 01700" -in.county_and_puma "G3901350, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 135, the NHGIS PUMA code is 04500" -in.county_and_puma "G3901370, G39002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 137, the NHGIS PUMA code is 02400" -in.county_and_puma "G3901390, G39002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 139, the NHGIS PUMA code is 02200" -in.county_and_puma "G3901410, G39004800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 141, the NHGIS PUMA code is 04800" -in.county_and_puma "G3901430, G39000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 143, the NHGIS PUMA code is 00700" -in.county_and_puma "G3901450, G39005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 145, the NHGIS PUMA code is 05100" -in.county_and_puma "G3901470, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 147, the NHGIS PUMA code is 02300" -in.county_and_puma "G3901490, G39004500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 149, the NHGIS PUMA code is 04500" -in.county_and_puma "G3901510, G39003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03100" -in.county_and_puma "G3901510, G39003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03200" -in.county_and_puma "G3901510, G39003300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 151, the NHGIS PUMA code is 03300" -in.county_and_puma "G3901530, G39001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01801" -in.county_and_puma "G3901530, G39001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01802" -in.county_and_puma "G3901530, G39001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01803" -in.county_and_puma "G3901530, G39001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01804" -in.county_and_puma "G3901530, G39001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 153, the NHGIS PUMA code is 01805" -in.county_and_puma "G3901550, G39001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 155, the NHGIS PUMA code is 01400" -in.county_and_puma "G3901550, G39001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 155, the NHGIS PUMA code is 01600" -in.county_and_puma "G3901570, G39003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 157, the NHGIS PUMA code is 03000" -in.county_and_puma "G3901590, G39004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 159, the NHGIS PUMA code is 04200" -in.county_and_puma "G3901610, G39002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 161, the NHGIS PUMA code is 02600" -in.county_and_puma "G3901630, G39004900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 163, the NHGIS PUMA code is 04900" -in.county_and_puma "G3901650, G39005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 165, the NHGIS PUMA code is 05301" -in.county_and_puma "G3901650, G39005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 165, the NHGIS PUMA code is 05302" -in.county_and_puma "G3901670, G39003600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 167, the NHGIS PUMA code is 03600" -in.county_and_puma "G3901690, G39002000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 169, the NHGIS PUMA code is 02000" -in.county_and_puma "G3901710, G39000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 171, the NHGIS PUMA code is 00100" -in.county_and_puma "G3901730, G39000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00200" -in.county_and_puma "G3901730, G39000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00300" -in.county_and_puma "G3901730, G39000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 173, the NHGIS PUMA code is 00600" -in.county_and_puma "G3901750, G39002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 39, the NHGIS county code is 175, the NHGIS PUMA code is 02300" -in.county_and_puma "G4000010, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 001, the NHGIS PUMA code is 00200" -in.county_and_puma "G4000030, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 003, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000050, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 005, the NHGIS PUMA code is 00702" -in.county_and_puma "G4000070, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 007, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000090, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000110, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 011, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000130, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 013, the NHGIS PUMA code is 00702" -in.county_and_puma "G4000150, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 015, the NHGIS PUMA code is 00602" -in.county_and_puma "G4000170, G40000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 017, the NHGIS PUMA code is 00800" -in.county_and_puma "G4000190, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 019, the NHGIS PUMA code is 00701" -in.county_and_puma "G4000210, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G4000230, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 023, the NHGIS PUMA code is 00300" -in.county_and_puma "G4000250, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 025, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000270, G40000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 027, the NHGIS PUMA code is 00900" -in.county_and_puma "G4000290, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 029, the NHGIS PUMA code is 00702" -in.county_and_puma "G4000310, G40000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 031, the NHGIS PUMA code is 00601" -in.county_and_puma "G4000310, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 031, the NHGIS PUMA code is 00602" -in.county_and_puma "G4000330, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 033, the NHGIS PUMA code is 00602" -in.county_and_puma "G4000350, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 035, the NHGIS PUMA code is 00100" -in.county_and_puma "G4000370, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01204" -in.county_and_puma "G4000370, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01501" -in.county_and_puma "G4000370, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 037, the NHGIS PUMA code is 01601" -in.county_and_puma "G4000390, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 039, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000410, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 041, the NHGIS PUMA code is 00100" -in.county_and_puma "G4000430, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 043, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000450, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 045, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000470, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 047, the NHGIS PUMA code is 01400" -in.county_and_puma "G4000490, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 049, the NHGIS PUMA code is 00701" -in.county_and_puma "G4000510, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 051, the NHGIS PUMA code is 01101" -in.county_and_puma "G4000530, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 053, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000550, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 055, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000570, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 057, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000590, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 059, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000610, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G4000630, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 063, the NHGIS PUMA code is 01501" -in.county_and_puma "G4000650, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 065, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000670, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 067, the NHGIS PUMA code is 00602" -in.county_and_puma "G4000690, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 069, the NHGIS PUMA code is 00702" -in.county_and_puma "G4000710, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 071, the NHGIS PUMA code is 01400" -in.county_and_puma "G4000730, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 073, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000750, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 075, the NHGIS PUMA code is 00400" -in.county_and_puma "G4000770, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 077, the NHGIS PUMA code is 00300" -in.county_and_puma "G4000790, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 079, the NHGIS PUMA code is 00300" -in.county_and_puma "G4000810, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 081, the NHGIS PUMA code is 01102" -in.county_and_puma "G4000830, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 083, the NHGIS PUMA code is 01102" -in.county_and_puma "G4000850, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 085, the NHGIS PUMA code is 00701" -in.county_and_puma "G4000870, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 087, the NHGIS PUMA code is 01101" -in.county_and_puma "G4000890, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 089, the NHGIS PUMA code is 00300" -in.county_and_puma "G4000910, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 091, the NHGIS PUMA code is 01302" -in.county_and_puma "G4000930, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 093, the NHGIS PUMA code is 00500" -in.county_and_puma "G4000950, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 095, the NHGIS PUMA code is 00702" -in.county_and_puma "G4000970, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 097, the NHGIS PUMA code is 00100" -in.county_and_puma "G4000990, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 099, the NHGIS PUMA code is 00701" -in.county_and_puma "G4001010, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 101, the NHGIS PUMA code is 01302" -in.county_and_puma "G4001030, G40001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 103, the NHGIS PUMA code is 01400" -in.county_and_puma "G4001050, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 105, the NHGIS PUMA code is 00100" -in.county_and_puma "G4001070, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 107, the NHGIS PUMA code is 01501" -in.county_and_puma "G4001090, G40001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01001" -in.county_and_puma "G4001090, G40001002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01002" -in.county_and_puma "G4001090, G40001003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01003" -in.county_and_puma "G4001090, G40001004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01004" -in.county_and_puma "G4001090, G40001005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01005" -in.county_and_puma "G4001090, G40001006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 109, the NHGIS PUMA code is 01006" -in.county_and_puma "G4001110, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 111, the NHGIS PUMA code is 01302" -in.county_and_puma "G4001130, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 113, the NHGIS PUMA code is 01204" -in.county_and_puma "G4001130, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 113, the NHGIS PUMA code is 01601" -in.county_and_puma "G4001150, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 115, the NHGIS PUMA code is 00100" -in.county_and_puma "G4001170, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 117, the NHGIS PUMA code is 01601" -in.county_and_puma "G4001190, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 119, the NHGIS PUMA code is 01501" -in.county_and_puma "G4001210, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 121, the NHGIS PUMA code is 00300" -in.county_and_puma "G4001230, G40000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 123, the NHGIS PUMA code is 00701" -in.county_and_puma "G4001230, G40000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 123, the NHGIS PUMA code is 00702" -in.county_and_puma "G4001250, G40001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 125, the NHGIS PUMA code is 01101" -in.county_and_puma "G4001250, G40001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 125, the NHGIS PUMA code is 01102" -in.county_and_puma "G4001270, G40000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 127, the NHGIS PUMA code is 00300" -in.county_and_puma "G4001290, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 129, the NHGIS PUMA code is 00400" -in.county_and_puma "G4001310, G40000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 131, the NHGIS PUMA code is 00100" -in.county_and_puma "G4001310, G40001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 131, the NHGIS PUMA code is 01301" -in.county_and_puma "G4001330, G40001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 133, the NHGIS PUMA code is 01501" -in.county_and_puma "G4001350, G40000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 135, the NHGIS PUMA code is 00200" -in.county_and_puma "G4001370, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 137, the NHGIS PUMA code is 00602" -in.county_and_puma "G4001390, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 139, the NHGIS PUMA code is 00500" -in.county_and_puma "G4001410, G40000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 141, the NHGIS PUMA code is 00602" -in.county_and_puma "G4001430, G40001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01201" -in.county_and_puma "G4001430, G40001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01202" -in.county_and_puma "G4001430, G40001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01203" -in.county_and_puma "G4001430, G40001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 143, the NHGIS PUMA code is 01204" -in.county_and_puma "G4001450, G40001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 145, the NHGIS PUMA code is 01301" -in.county_and_puma "G4001450, G40001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 145, the NHGIS PUMA code is 01302" -in.county_and_puma "G4001470, G40001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 147, the NHGIS PUMA code is 01601" -in.county_and_puma "G4001490, G40000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 149, the NHGIS PUMA code is 00400" -in.county_and_puma "G4001510, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 151, the NHGIS PUMA code is 00500" -in.county_and_puma "G4001530, G40000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 40, the NHGIS county code is 153, the NHGIS PUMA code is 00500" -in.county_and_puma "G4100010, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 001, the NHGIS PUMA code is 00100" -in.county_and_puma "G4100030, G41000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 003, the NHGIS PUMA code is 00600" -in.county_and_puma "G4100050, G41001317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01317" -in.county_and_puma "G4100050, G41001318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01318" -in.county_and_puma "G4100050, G41001319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 005, the NHGIS PUMA code is 01319" -in.county_and_puma "G4100070, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 007, the NHGIS PUMA code is 00500" -in.county_and_puma "G4100090, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 009, the NHGIS PUMA code is 00500" -in.county_and_puma "G4100110, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G4100130, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 013, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100150, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 015, the NHGIS PUMA code is 00800" -in.county_and_puma "G4100170, G41000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G4100190, G41001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 019, the NHGIS PUMA code is 01000" -in.county_and_puma "G4100210, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 021, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100230, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 023, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100250, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 025, the NHGIS PUMA code is 00300" -in.county_and_puma "G4100270, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 027, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100290, G41000901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 029, the NHGIS PUMA code is 00901" -in.county_and_puma "G4100290, G41000902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 029, the NHGIS PUMA code is 00902" -in.county_and_puma "G4100310, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 031, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100330, G41000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 033, the NHGIS PUMA code is 00800" -in.county_and_puma "G4100350, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 035, the NHGIS PUMA code is 00300" -in.county_and_puma "G4100370, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 037, the NHGIS PUMA code is 00300" -in.county_and_puma "G4100390, G41000703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00703" -in.county_and_puma "G4100390, G41000704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00704" -in.county_and_puma "G4100390, G41000705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 039, the NHGIS PUMA code is 00705" -in.county_and_puma "G4100410, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 041, the NHGIS PUMA code is 00500" -in.county_and_puma "G4100430, G41000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 043, the NHGIS PUMA code is 00600" -in.county_and_puma "G4100450, G41000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 045, the NHGIS PUMA code is 00300" -in.county_and_puma "G4100470, G41001103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01103" -in.county_and_puma "G4100470, G41001104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01104" -in.county_and_puma "G4100470, G41001105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 047, the NHGIS PUMA code is 01105" -in.county_and_puma "G4100490, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 049, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100510, G41001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01301" -in.county_and_puma "G4100510, G41001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01302" -in.county_and_puma "G4100510, G41001303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01303" -in.county_and_puma "G4100510, G41001305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01305" -in.county_and_puma "G4100510, G41001314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01314" -in.county_and_puma "G4100510, G41001316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 051, the NHGIS PUMA code is 01316" -in.county_and_puma "G4100530, G41001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 053, the NHGIS PUMA code is 01200" -in.county_and_puma "G4100550, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 055, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100570, G41000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 057, the NHGIS PUMA code is 00500" -in.county_and_puma "G4100590, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 059, the NHGIS PUMA code is 00100" -in.county_and_puma "G4100610, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 061, the NHGIS PUMA code is 00100" -in.county_and_puma "G4100630, G41000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 063, the NHGIS PUMA code is 00100" -in.county_and_puma "G4100650, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 065, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100670, G41001320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01320" -in.county_and_puma "G4100670, G41001321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01321" -in.county_and_puma "G4100670, G41001322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01322" -in.county_and_puma "G4100670, G41001323" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01323" -in.county_and_puma "G4100670, G41001324" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 067, the NHGIS PUMA code is 01324" -in.county_and_puma "G4100690, G41000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 069, the NHGIS PUMA code is 00200" -in.county_and_puma "G4100710, G41001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 41, the NHGIS county code is 071, the NHGIS PUMA code is 01200" -in.county_and_puma "G4200010, G42003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 001, the NHGIS PUMA code is 03701" -in.county_and_puma "G4200030, G42001701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01701" -in.county_and_puma "G4200030, G42001702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01702" -in.county_and_puma "G4200030, G42001801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01801" -in.county_and_puma "G4200030, G42001802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01802" -in.county_and_puma "G4200030, G42001803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01803" -in.county_and_puma "G4200030, G42001804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01804" -in.county_and_puma "G4200030, G42001805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01805" -in.county_and_puma "G4200030, G42001806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01806" -in.county_and_puma "G4200030, G42001807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 003, the NHGIS PUMA code is 01807" -in.county_and_puma "G4200050, G42001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 005, the NHGIS PUMA code is 01900" -in.county_and_puma "G4200070, G42001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 007, the NHGIS PUMA code is 01501" -in.county_and_puma "G4200070, G42001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 007, the NHGIS PUMA code is 01502" -in.county_and_puma "G4200090, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 009, the NHGIS PUMA code is 03800" -in.county_and_puma "G4200110, G42002701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02701" -in.county_and_puma "G4200110, G42002702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02702" -in.county_and_puma "G4200110, G42002703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 011, the NHGIS PUMA code is 02703" -in.county_and_puma "G4200130, G42002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 013, the NHGIS PUMA code is 02200" -in.county_and_puma "G4200150, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 015, the NHGIS PUMA code is 00400" -in.county_and_puma "G4200170, G42003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03001" -in.county_and_puma "G4200170, G42003002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03002" -in.county_and_puma "G4200170, G42003003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03003" -in.county_and_puma "G4200170, G42003004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 017, the NHGIS PUMA code is 03004" -in.county_and_puma "G4200190, G42001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 019, the NHGIS PUMA code is 01600" -in.county_and_puma "G4200210, G42002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 021, the NHGIS PUMA code is 02100" -in.county_and_puma "G4200230, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 023, the NHGIS PUMA code is 00300" -in.county_and_puma "G4200250, G42002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 025, the NHGIS PUMA code is 02801" -in.county_and_puma "G4200270, G42001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 027, the NHGIS PUMA code is 01200" -in.county_and_puma "G4200290, G42003401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03401" -in.county_and_puma "G4200290, G42003402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03402" -in.county_and_puma "G4200290, G42003403" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03403" -in.county_and_puma "G4200290, G42003404" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 029, the NHGIS PUMA code is 03404" -in.county_and_puma "G4200310, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 031, the NHGIS PUMA code is 01300" -in.county_and_puma "G4200330, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 033, the NHGIS PUMA code is 00300" -in.county_and_puma "G4200350, G42000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 035, the NHGIS PUMA code is 00900" -in.county_and_puma "G4200370, G42000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 037, the NHGIS PUMA code is 00803" -in.county_and_puma "G4200390, G42000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 039, the NHGIS PUMA code is 00200" -in.county_and_puma "G4200410, G42002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 041, the NHGIS PUMA code is 02301" -in.county_and_puma "G4200410, G42002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 041, the NHGIS PUMA code is 02302" -in.county_and_puma "G4200430, G42002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 043, the NHGIS PUMA code is 02401" -in.county_and_puma "G4200430, G42002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 043, the NHGIS PUMA code is 02402" -in.county_and_puma "G4200450, G42003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03301" -in.county_and_puma "G4200450, G42003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03302" -in.county_and_puma "G4200450, G42003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03303" -in.county_and_puma "G4200450, G42003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 045, the NHGIS PUMA code is 03304" -in.county_and_puma "G4200470, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 047, the NHGIS PUMA code is 00300" -in.county_and_puma "G4200490, G42000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 049, the NHGIS PUMA code is 00101" -in.county_and_puma "G4200490, G42000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 049, the NHGIS PUMA code is 00102" -in.county_and_puma "G4200510, G42003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 051, the NHGIS PUMA code is 03900" -in.county_and_puma "G4200530, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 053, the NHGIS PUMA code is 01300" -in.county_and_puma "G4200550, G42003701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 055, the NHGIS PUMA code is 03701" -in.county_and_puma "G4200550, G42003702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 055, the NHGIS PUMA code is 03702" -in.county_and_puma "G4200570, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 057, the NHGIS PUMA code is 03800" -in.county_and_puma "G4200590, G42004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 059, the NHGIS PUMA code is 04002" -in.county_and_puma "G4200610, G42002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 061, the NHGIS PUMA code is 02200" -in.county_and_puma "G4200630, G42001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 063, the NHGIS PUMA code is 01900" -in.county_and_puma "G4200650, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 065, the NHGIS PUMA code is 01300" -in.county_and_puma "G4200670, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 067, the NHGIS PUMA code is 01100" -in.county_and_puma "G4200690, G42000701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 069, the NHGIS PUMA code is 00701" -in.county_and_puma "G4200690, G42000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 069, the NHGIS PUMA code is 00702" -in.county_and_puma "G4200710, G42003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03501" -in.county_and_puma "G4200710, G42003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03502" -in.county_and_puma "G4200710, G42003503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03503" -in.county_and_puma "G4200710, G42003504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 071, the NHGIS PUMA code is 03504" -in.county_and_puma "G4200730, G42001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 073, the NHGIS PUMA code is 01501" -in.county_and_puma "G4200750, G42002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 075, the NHGIS PUMA code is 02500" -in.county_and_puma "G4200770, G42002801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02801" -in.county_and_puma "G4200770, G42002802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02802" -in.county_and_puma "G4200770, G42002803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02803" -in.county_and_puma "G4200770, G42002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 077, the NHGIS PUMA code is 02901" -in.county_and_puma "G4200790, G42000801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00801" -in.county_and_puma "G4200790, G42000802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00802" -in.county_and_puma "G4200790, G42000803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 079, the NHGIS PUMA code is 00803" -in.county_and_puma "G4200810, G42000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 081, the NHGIS PUMA code is 00900" -in.county_and_puma "G4200830, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 083, the NHGIS PUMA code is 00300" -in.county_and_puma "G4200850, G42001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 085, the NHGIS PUMA code is 01400" -in.county_and_puma "G4200870, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 087, the NHGIS PUMA code is 01100" -in.county_and_puma "G4200890, G42000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 089, the NHGIS PUMA code is 00600" -in.county_and_puma "G4200910, G42003101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03101" -in.county_and_puma "G4200910, G42003102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03102" -in.county_and_puma "G4200910, G42003103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03103" -in.county_and_puma "G4200910, G42003104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03104" -in.county_and_puma "G4200910, G42003105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03105" -in.county_and_puma "G4200910, G42003106" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 091, the NHGIS PUMA code is 03106" -in.county_and_puma "G4200930, G42001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 093, the NHGIS PUMA code is 01000" -in.county_and_puma "G4200950, G42002901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 095, the NHGIS PUMA code is 02901" -in.county_and_puma "G4200950, G42002902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 095, the NHGIS PUMA code is 02902" -in.county_and_puma "G4200970, G42001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 097, the NHGIS PUMA code is 01000" -in.county_and_puma "G4200990, G42002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 099, the NHGIS PUMA code is 02301" -in.county_and_puma "G4201010, G42003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03201" -in.county_and_puma "G4201010, G42003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03202" -in.county_and_puma "G4201010, G42003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03203" -in.county_and_puma "G4201010, G42003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03204" -in.county_and_puma "G4201010, G42003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03205" -in.county_and_puma "G4201010, G42003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03206" -in.county_and_puma "G4201010, G42003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03207" -in.county_and_puma "G4201010, G42003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03208" -in.county_and_puma "G4201010, G42003209" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03209" -in.county_and_puma "G4201010, G42003210" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03210" -in.county_and_puma "G4201010, G42003211" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 101, the NHGIS PUMA code is 03211" -in.county_and_puma "G4201030, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 103, the NHGIS PUMA code is 00500" -in.county_and_puma "G4201050, G42000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 105, the NHGIS PUMA code is 00300" -in.county_and_puma "G4201070, G42002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 107, the NHGIS PUMA code is 02600" -in.county_and_puma "G4201090, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 109, the NHGIS PUMA code is 01100" -in.county_and_puma "G4201110, G42003800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 111, the NHGIS PUMA code is 03800" -in.county_and_puma "G4201130, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 113, the NHGIS PUMA code is 00400" -in.county_and_puma "G4201150, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 115, the NHGIS PUMA code is 00500" -in.county_and_puma "G4201170, G42000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 117, the NHGIS PUMA code is 00400" -in.county_and_puma "G4201190, G42001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 119, the NHGIS PUMA code is 01100" -in.county_and_puma "G4201210, G42001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 121, the NHGIS PUMA code is 01300" -in.county_and_puma "G4201230, G42000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 123, the NHGIS PUMA code is 00200" -in.county_and_puma "G4201250, G42004001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 125, the NHGIS PUMA code is 04001" -in.county_and_puma "G4201250, G42004002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 125, the NHGIS PUMA code is 04002" -in.county_and_puma "G4201270, G42000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 127, the NHGIS PUMA code is 00500" -in.county_and_puma "G4201290, G42002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02001" -in.county_and_puma "G4201290, G42002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02002" -in.county_and_puma "G4201290, G42002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 129, the NHGIS PUMA code is 02003" -in.county_and_puma "G4201310, G42000702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 131, the NHGIS PUMA code is 00702" -in.county_and_puma "G4201330, G42003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03601" -in.county_and_puma "G4201330, G42003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03602" -in.county_and_puma "G4201330, G42003603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 42, the NHGIS county code is 133, the NHGIS PUMA code is 03603" -in.county_and_puma "G4400010, G44000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G4400030, G44000201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 003, the NHGIS PUMA code is 00201" -in.county_and_puma "G4400050, G44000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 005, the NHGIS PUMA code is 00300" -in.county_and_puma "G4400070, G44000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00101" -in.county_and_puma "G4400070, G44000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00102" -in.county_and_puma "G4400070, G44000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00103" -in.county_and_puma "G4400070, G44000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 007, the NHGIS PUMA code is 00104" -in.county_and_puma "G4400090, G44000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 44, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G4500010, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 001, the NHGIS PUMA code is 01600" -in.county_and_puma "G4500030, G45001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 003, the NHGIS PUMA code is 01500" -in.county_and_puma "G4500050, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 005, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500070, G45000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 007, the NHGIS PUMA code is 00200" -in.county_and_puma "G4500090, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 009, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500110, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 011, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500130, G45001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 013, the NHGIS PUMA code is 01400" -in.county_and_puma "G4500150, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01201" -in.county_and_puma "G4500150, G45001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01202" -in.county_and_puma "G4500150, G45001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01203" -in.county_and_puma "G4500150, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 015, the NHGIS PUMA code is 01204" -in.county_and_puma "G4500170, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 017, the NHGIS PUMA code is 00605" -in.county_and_puma "G4500190, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01201" -in.county_and_puma "G4500190, G45001202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01202" -in.county_and_puma "G4500190, G45001203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01203" -in.county_and_puma "G4500190, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 019, the NHGIS PUMA code is 01204" -in.county_and_puma "G4500210, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 021, the NHGIS PUMA code is 00400" -in.county_and_puma "G4500230, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 023, the NHGIS PUMA code is 00400" -in.county_and_puma "G4500250, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 025, the NHGIS PUMA code is 00700" -in.county_and_puma "G4500270, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 027, the NHGIS PUMA code is 00800" -in.county_and_puma "G4500290, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 029, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500310, G45000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 031, the NHGIS PUMA code is 00900" -in.county_and_puma "G4500330, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 033, the NHGIS PUMA code is 01000" -in.county_and_puma "G4500350, G45001201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 035, the NHGIS PUMA code is 01201" -in.county_and_puma "G4500350, G45001204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 035, the NHGIS PUMA code is 01204" -in.county_and_puma "G4500370, G45001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 037, the NHGIS PUMA code is 01500" -in.county_and_puma "G4500390, G45000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 039, the NHGIS PUMA code is 00603" -in.county_and_puma "G4500410, G45000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 041, the NHGIS PUMA code is 00900" -in.county_and_puma "G4500430, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 043, the NHGIS PUMA code is 01000" -in.county_and_puma "G4500450, G45000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00102" -in.county_and_puma "G4500450, G45000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00103" -in.county_and_puma "G4500450, G45000104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00104" -in.county_and_puma "G4500450, G45000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 045, the NHGIS PUMA code is 00105" -in.county_and_puma "G4500470, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 047, the NHGIS PUMA code is 01600" -in.county_and_puma "G4500490, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 049, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500510, G45001101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 051, the NHGIS PUMA code is 01101" -in.county_and_puma "G4500510, G45001102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 051, the NHGIS PUMA code is 01102" -in.county_and_puma "G4500530, G45001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 053, the NHGIS PUMA code is 01400" -in.county_and_puma "G4500550, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 055, the NHGIS PUMA code is 00605" -in.county_and_puma "G4500570, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 057, the NHGIS PUMA code is 00700" -in.county_and_puma "G4500590, G45000105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 059, the NHGIS PUMA code is 00105" -in.county_and_puma "G4500610, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 061, the NHGIS PUMA code is 00800" -in.county_and_puma "G4500630, G45000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 063, the NHGIS PUMA code is 00601" -in.county_and_puma "G4500630, G45000602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 063, the NHGIS PUMA code is 00602" -in.county_and_puma "G4500650, G45001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 065, the NHGIS PUMA code is 01600" -in.county_and_puma "G4500670, G45001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 067, the NHGIS PUMA code is 01000" -in.county_and_puma "G4500690, G45000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 069, the NHGIS PUMA code is 00700" -in.county_and_puma "G4500710, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 071, the NHGIS PUMA code is 00400" -in.county_and_puma "G4500730, G45000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 073, the NHGIS PUMA code is 00101" -in.county_and_puma "G4500750, G45001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 075, the NHGIS PUMA code is 01300" -in.county_and_puma "G4500770, G45000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 077, the NHGIS PUMA code is 00101" -in.county_and_puma "G4500790, G45000603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00603" -in.county_and_puma "G4500790, G45000604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00604" -in.county_and_puma "G4500790, G45000605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 079, the NHGIS PUMA code is 00605" -in.county_and_puma "G4500810, G45000601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 081, the NHGIS PUMA code is 00601" -in.county_and_puma "G4500830, G45000301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 083, the NHGIS PUMA code is 00301" -in.county_and_puma "G4500830, G45000302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 083, the NHGIS PUMA code is 00302" -in.county_and_puma "G4500850, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 085, the NHGIS PUMA code is 00800" -in.county_and_puma "G4500870, G45000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 087, the NHGIS PUMA code is 00400" -in.county_and_puma "G4500890, G45000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 089, the NHGIS PUMA code is 00800" -in.county_and_puma "G4500910, G45000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 091, the NHGIS PUMA code is 00501" -in.county_and_puma "G4500910, G45000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 45, the NHGIS county code is 091, the NHGIS PUMA code is 00502" -in.county_and_puma "G4600030, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 003, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600050, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 005, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600070, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 007, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600090, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600110, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 011, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600130, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 013, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600150, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 015, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600170, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 017, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600190, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 019, the NHGIS PUMA code is 00100" -in.county_and_puma "G4600210, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 021, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600230, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 023, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600250, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 025, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600270, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 027, the NHGIS PUMA code is 00500" -in.county_and_puma "G4600290, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 029, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600310, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 031, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600330, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G4600350, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 035, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600370, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 037, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600390, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 039, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600410, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 041, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600430, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 043, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600450, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 045, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600470, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 047, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600490, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 049, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600510, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 051, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600530, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 053, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600550, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 055, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600570, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 057, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600590, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 059, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600610, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 061, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600630, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 063, the NHGIS PUMA code is 00100" -in.county_and_puma "G4600650, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 065, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600670, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 067, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600690, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 069, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600710, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 071, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600730, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 073, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600750, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 075, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600770, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 077, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600790, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 079, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600810, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 081, the NHGIS PUMA code is 00100" -in.county_and_puma "G4600830, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 083, the NHGIS PUMA code is 00500" -in.county_and_puma "G4600830, G46000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 083, the NHGIS PUMA code is 00600" -in.county_and_puma "G4600850, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 085, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600870, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 087, the NHGIS PUMA code is 00500" -in.county_and_puma "G4600890, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 089, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600910, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 091, the NHGIS PUMA code is 00300" -in.county_and_puma "G4600930, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 093, the NHGIS PUMA code is 00100" -in.county_and_puma "G4600950, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 095, the NHGIS PUMA code is 00200" -in.county_and_puma "G4600970, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 097, the NHGIS PUMA code is 00400" -in.county_and_puma "G4600990, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 099, the NHGIS PUMA code is 00500" -in.county_and_puma "G4600990, G46000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 099, the NHGIS PUMA code is 00600" -in.county_and_puma "G4601010, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 101, the NHGIS PUMA code is 00400" -in.county_and_puma "G4601020, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 102, the NHGIS PUMA code is 00200" -in.county_and_puma "G4601030, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 103, the NHGIS PUMA code is 00100" -in.county_and_puma "G4601050, G46000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 105, the NHGIS PUMA code is 00100" -in.county_and_puma "G4601070, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 107, the NHGIS PUMA code is 00300" -in.county_and_puma "G4601090, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 109, the NHGIS PUMA code is 00300" -in.county_and_puma "G4601110, G46000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 111, the NHGIS PUMA code is 00400" -in.county_and_puma "G4601150, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 115, the NHGIS PUMA code is 00300" -in.county_and_puma "G4601170, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 117, the NHGIS PUMA code is 00200" -in.county_and_puma "G4601190, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 119, the NHGIS PUMA code is 00200" -in.county_and_puma "G4601210, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 121, the NHGIS PUMA code is 00200" -in.county_and_puma "G4601230, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 123, the NHGIS PUMA code is 00200" -in.county_and_puma "G4601250, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 125, the NHGIS PUMA code is 00500" -in.county_and_puma "G4601270, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 127, the NHGIS PUMA code is 00500" -in.county_and_puma "G4601290, G46000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 129, the NHGIS PUMA code is 00300" -in.county_and_puma "G4601350, G46000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 135, the NHGIS PUMA code is 00500" -in.county_and_puma "G4601370, G46000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 46, the NHGIS county code is 137, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700010, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 001, the NHGIS PUMA code is 01601" -in.county_and_puma "G4700030, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 003, the NHGIS PUMA code is 02700" -in.county_and_puma "G4700050, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700070, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 007, the NHGIS PUMA code is 02100" -in.county_and_puma "G4700090, G47001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 009, the NHGIS PUMA code is 01700" -in.county_and_puma "G4700110, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 011, the NHGIS PUMA code is 01900" -in.county_and_puma "G4700130, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 013, the NHGIS PUMA code is 00900" -in.county_and_puma "G4700150, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 015, the NHGIS PUMA code is 00600" -in.county_and_puma "G4700170, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 017, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700190, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 019, the NHGIS PUMA code is 01200" -in.county_and_puma "G4700210, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 021, the NHGIS PUMA code is 00400" -in.county_and_puma "G4700230, G47003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 023, the NHGIS PUMA code is 03000" -in.county_and_puma "G4700250, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 025, the NHGIS PUMA code is 00900" -in.county_and_puma "G4700270, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 027, the NHGIS PUMA code is 00700" -in.county_and_puma "G4700290, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 029, the NHGIS PUMA code is 01400" -in.county_and_puma "G4700310, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 031, the NHGIS PUMA code is 02200" -in.county_and_puma "G4700330, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G4700350, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 035, the NHGIS PUMA code is 00800" -in.county_and_puma "G4700370, G47002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02501" -in.county_and_puma "G4700370, G47002502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02502" -in.county_and_puma "G4700370, G47002503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02503" -in.county_and_puma "G4700370, G47002504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02504" -in.county_and_puma "G4700370, G47002505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 037, the NHGIS PUMA code is 02505" -in.county_and_puma "G4700390, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 039, the NHGIS PUMA code is 02900" -in.county_and_puma "G4700410, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 041, the NHGIS PUMA code is 00600" -in.county_and_puma "G4700430, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 043, the NHGIS PUMA code is 00400" -in.county_and_puma "G4700450, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 045, the NHGIS PUMA code is 00100" -in.county_and_puma "G4700470, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 047, the NHGIS PUMA code is 03100" -in.county_and_puma "G4700490, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 049, the NHGIS PUMA code is 00800" -in.county_and_puma "G4700510, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 051, the NHGIS PUMA code is 02200" -in.county_and_puma "G4700530, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 053, the NHGIS PUMA code is 00100" -in.county_and_puma "G4700550, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 055, the NHGIS PUMA code is 02800" -in.county_and_puma "G4700570, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 057, the NHGIS PUMA code is 01400" -in.county_and_puma "G4700590, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 059, the NHGIS PUMA code is 01200" -in.county_and_puma "G4700610, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 061, the NHGIS PUMA code is 02100" -in.county_and_puma "G4700630, G47001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 063, the NHGIS PUMA code is 01400" -in.county_and_puma "G4700650, G47002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02001" -in.county_and_puma "G4700650, G47002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02002" -in.county_and_puma "G4700650, G47002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 065, the NHGIS PUMA code is 02003" -in.county_and_puma "G4700670, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 067, the NHGIS PUMA code is 00900" -in.county_and_puma "G4700690, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 069, the NHGIS PUMA code is 02900" -in.county_and_puma "G4700710, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 071, the NHGIS PUMA code is 02900" -in.county_and_puma "G4700730, G47001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 073, the NHGIS PUMA code is 01000" -in.county_and_puma "G4700750, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 075, the NHGIS PUMA code is 02900" -in.county_and_puma "G4700770, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 077, the NHGIS PUMA code is 02900" -in.county_and_puma "G4700790, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 079, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700810, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 081, the NHGIS PUMA code is 00400" -in.county_and_puma "G4700830, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 083, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700850, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 085, the NHGIS PUMA code is 00200" -in.county_and_puma "G4700870, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 087, the NHGIS PUMA code is 00700" -in.county_and_puma "G4700890, G47001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 089, the NHGIS PUMA code is 01500" -in.county_and_puma "G4700910, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 091, the NHGIS PUMA code is 01200" -in.county_and_puma "G4700930, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01601" -in.county_and_puma "G4700930, G47001602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01602" -in.county_and_puma "G4700930, G47001603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01603" -in.county_and_puma "G4700930, G47001604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 093, the NHGIS PUMA code is 01604" -in.county_and_puma "G4700950, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 095, the NHGIS PUMA code is 00100" -in.county_and_puma "G4700970, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 097, the NHGIS PUMA code is 03100" -in.county_and_puma "G4700990, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 099, the NHGIS PUMA code is 02800" -in.county_and_puma "G4701010, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 101, the NHGIS PUMA code is 02800" -in.county_and_puma "G4701030, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 103, the NHGIS PUMA code is 02200" -in.county_and_puma "G4701050, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 105, the NHGIS PUMA code is 01800" -in.county_and_puma "G4701070, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 107, the NHGIS PUMA code is 01900" -in.county_and_puma "G4701090, G47002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 109, the NHGIS PUMA code is 02900" -in.county_and_puma "G4701110, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 111, the NHGIS PUMA code is 00600" -in.county_and_puma "G4701130, G47003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 113, the NHGIS PUMA code is 03000" -in.county_and_puma "G4701150, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 115, the NHGIS PUMA code is 02100" -in.county_and_puma "G4701170, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 117, the NHGIS PUMA code is 02700" -in.county_and_puma "G4701190, G47002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 119, the NHGIS PUMA code is 02700" -in.county_and_puma "G4701210, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 121, the NHGIS PUMA code is 02100" -in.county_and_puma "G4701230, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 123, the NHGIS PUMA code is 01800" -in.county_and_puma "G4701250, G47000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 125, the NHGIS PUMA code is 00300" -in.county_and_puma "G4701270, G47002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 127, the NHGIS PUMA code is 02200" -in.county_and_puma "G4701290, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 129, the NHGIS PUMA code is 00900" -in.county_and_puma "G4701310, G47000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 131, the NHGIS PUMA code is 00100" -in.county_and_puma "G4701330, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 133, the NHGIS PUMA code is 00700" -in.county_and_puma "G4701350, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 135, the NHGIS PUMA code is 02800" -in.county_and_puma "G4701370, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 137, the NHGIS PUMA code is 00700" -in.county_and_puma "G4701390, G47001900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 139, the NHGIS PUMA code is 01900" -in.county_and_puma "G4701410, G47000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 141, the NHGIS PUMA code is 00700" -in.county_and_puma "G4701430, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 143, the NHGIS PUMA code is 02100" -in.county_and_puma "G4701450, G47001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 145, the NHGIS PUMA code is 01800" -in.county_and_puma "G4701470, G47000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 147, the NHGIS PUMA code is 00400" -in.county_and_puma "G4701490, G47002401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 149, the NHGIS PUMA code is 02401" -in.county_and_puma "G4701490, G47002402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 149, the NHGIS PUMA code is 02402" -in.county_and_puma "G4701510, G47000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 151, the NHGIS PUMA code is 00900" -in.county_and_puma "G4701530, G47002100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 153, the NHGIS PUMA code is 02100" -in.county_and_puma "G4701550, G47001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 155, the NHGIS PUMA code is 01500" -in.county_and_puma "G4701570, G47003201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03201" -in.county_and_puma "G4701570, G47003202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03202" -in.county_and_puma "G4701570, G47003203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03203" -in.county_and_puma "G4701570, G47003204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03204" -in.county_and_puma "G4701570, G47003205" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03205" -in.county_and_puma "G4701570, G47003206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03206" -in.county_and_puma "G4701570, G47003207" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03207" -in.county_and_puma "G4701570, G47003208" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 157, the NHGIS PUMA code is 03208" -in.county_and_puma "G4701590, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 159, the NHGIS PUMA code is 00600" -in.county_and_puma "G4701610, G47000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 161, the NHGIS PUMA code is 00300" -in.county_and_puma "G4701630, G47001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 163, the NHGIS PUMA code is 01000" -in.county_and_puma "G4701630, G47001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 163, the NHGIS PUMA code is 01100" -in.county_and_puma "G4701650, G47000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 165, the NHGIS PUMA code is 00500" -in.county_and_puma "G4701670, G47003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 167, the NHGIS PUMA code is 03100" -in.county_and_puma "G4701690, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 169, the NHGIS PUMA code is 00600" -in.county_and_puma "G4701710, G47001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 171, the NHGIS PUMA code is 01200" -in.county_and_puma "G4701730, G47001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 173, the NHGIS PUMA code is 01601" -in.county_and_puma "G4701750, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 175, the NHGIS PUMA code is 00800" -in.county_and_puma "G4701770, G47000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 177, the NHGIS PUMA code is 00600" -in.county_and_puma "G4701790, G47001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 179, the NHGIS PUMA code is 01300" -in.county_and_puma "G4701810, G47002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 181, the NHGIS PUMA code is 02800" -in.county_and_puma "G4701830, G47000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 183, the NHGIS PUMA code is 00200" -in.county_and_puma "G4701850, G47000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 185, the NHGIS PUMA code is 00800" -in.county_and_puma "G4701870, G47002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 187, the NHGIS PUMA code is 02600" -in.county_and_puma "G4701890, G47002300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 47, the NHGIS county code is 189, the NHGIS PUMA code is 02300" -in.county_and_puma "G4800010, G48001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 001, the NHGIS PUMA code is 01800" -in.county_and_puma "G4800030, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 003, the NHGIS PUMA code is 03200" -in.county_and_puma "G4800050, G48004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 005, the NHGIS PUMA code is 04000" -in.county_and_puma "G4800070, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 007, the NHGIS PUMA code is 06500" -in.county_and_puma "G4800090, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 009, the NHGIS PUMA code is 00600" -in.county_and_puma "G4800110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 011, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800130, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 013, the NHGIS PUMA code is 06100" -in.county_and_puma "G4800150, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 015, the NHGIS PUMA code is 05000" -in.county_and_puma "G4800170, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 017, the NHGIS PUMA code is 00400" -in.county_and_puma "G4800190, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 019, the NHGIS PUMA code is 06100" -in.county_and_puma "G4800210, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 021, the NHGIS PUMA code is 05100" -in.county_and_puma "G4800230, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 023, the NHGIS PUMA code is 00600" -in.county_and_puma "G4800250, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 025, the NHGIS PUMA code is 06500" -in.county_and_puma "G4800270, G48003501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 027, the NHGIS PUMA code is 03501" -in.county_and_puma "G4800270, G48003502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 027, the NHGIS PUMA code is 03502" -in.county_and_puma "G4800290, G48005901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05901" -in.county_and_puma "G4800290, G48005902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05902" -in.county_and_puma "G4800290, G48005903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05903" -in.county_and_puma "G4800290, G48005904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05904" -in.county_and_puma "G4800290, G48005905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05905" -in.county_and_puma "G4800290, G48005906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05906" -in.county_and_puma "G4800290, G48005907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05907" -in.county_and_puma "G4800290, G48005908" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05908" -in.county_and_puma "G4800290, G48005909" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05909" -in.county_and_puma "G4800290, G48005910" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05910" -in.county_and_puma "G4800290, G48005911" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05911" -in.county_and_puma "G4800290, G48005912" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05912" -in.county_and_puma "G4800290, G48005913" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05913" -in.county_and_puma "G4800290, G48005914" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05914" -in.county_and_puma "G4800290, G48005915" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05915" -in.county_and_puma "G4800290, G48005916" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 029, the NHGIS PUMA code is 05916" -in.county_and_puma "G4800310, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 031, the NHGIS PUMA code is 06000" -in.county_and_puma "G4800330, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 033, the NHGIS PUMA code is 02800" -in.county_and_puma "G4800350, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 035, the NHGIS PUMA code is 03700" -in.county_and_puma "G4800370, G48001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 037, the NHGIS PUMA code is 01100" -in.county_and_puma "G4800390, G48004801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04801" -in.county_and_puma "G4800390, G48004802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04802" -in.county_and_puma "G4800390, G48004803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 039, the NHGIS PUMA code is 04803" -in.county_and_puma "G4800410, G48003602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 041, the NHGIS PUMA code is 03602" -in.county_and_puma "G4800430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 043, the NHGIS PUMA code is 03200" -in.county_and_puma "G4800450, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 045, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800470, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 047, the NHGIS PUMA code is 06900" -in.county_and_puma "G4800490, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 049, the NHGIS PUMA code is 02600" -in.county_and_puma "G4800510, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 051, the NHGIS PUMA code is 03601" -in.county_and_puma "G4800530, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 053, the NHGIS PUMA code is 03400" -in.county_and_puma "G4800550, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 055, the NHGIS PUMA code is 05100" -in.county_and_puma "G4800570, G48005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 057, the NHGIS PUMA code is 05600" -in.county_and_puma "G4800590, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 059, the NHGIS PUMA code is 02600" -in.county_and_puma "G4800610, G48006701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06701" -in.county_and_puma "G4800610, G48006702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06702" -in.county_and_puma "G4800610, G48006703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 061, the NHGIS PUMA code is 06703" -in.county_and_puma "G4800630, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 063, the NHGIS PUMA code is 01300" -in.county_and_puma "G4800650, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 065, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800670, G48001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 067, the NHGIS PUMA code is 01100" -in.county_and_puma "G4800690, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 069, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800710, G48004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 071, the NHGIS PUMA code is 04400" -in.county_and_puma "G4800730, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 073, the NHGIS PUMA code is 01700" -in.county_and_puma "G4800750, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 075, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800770, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 077, the NHGIS PUMA code is 00600" -in.county_and_puma "G4800790, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 079, the NHGIS PUMA code is 00400" -in.county_and_puma "G4800810, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 081, the NHGIS PUMA code is 02800" -in.county_and_puma "G4800830, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 083, the NHGIS PUMA code is 02600" -in.county_and_puma "G4800850, G48001901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01901" -in.county_and_puma "G4800850, G48001902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01902" -in.county_and_puma "G4800850, G48001903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01903" -in.county_and_puma "G4800850, G48001904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01904" -in.county_and_puma "G4800850, G48001905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01905" -in.county_and_puma "G4800850, G48001906" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01906" -in.county_and_puma "G4800850, G48001907" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 085, the NHGIS PUMA code is 01907" -in.county_and_puma "G4800870, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 087, the NHGIS PUMA code is 00100" -in.county_and_puma "G4800890, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 089, the NHGIS PUMA code is 05000" -in.county_and_puma "G4800910, G48005800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 091, the NHGIS PUMA code is 05800" -in.county_and_puma "G4800930, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 093, the NHGIS PUMA code is 02600" -in.county_and_puma "G4800950, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 095, the NHGIS PUMA code is 02800" -in.county_and_puma "G4800970, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 097, the NHGIS PUMA code is 00800" -in.county_and_puma "G4800990, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 099, the NHGIS PUMA code is 03400" -in.county_and_puma "G4801010, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 101, the NHGIS PUMA code is 00600" -in.county_and_puma "G4801030, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 103, the NHGIS PUMA code is 03200" -in.county_and_puma "G4801050, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 105, the NHGIS PUMA code is 02800" -in.county_and_puma "G4801070, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 107, the NHGIS PUMA code is 00400" -in.county_and_puma "G4801090, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 109, the NHGIS PUMA code is 03200" -in.county_and_puma "G4801110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 111, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801130, G48002301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02301" -in.county_and_puma "G4801130, G48002302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02302" -in.county_and_puma "G4801130, G48002303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02303" -in.county_and_puma "G4801130, G48002304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02304" -in.county_and_puma "G4801130, G48002305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02305" -in.county_and_puma "G4801130, G48002306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02306" -in.county_and_puma "G4801130, G48002307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02307" -in.county_and_puma "G4801130, G48002308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02308" -in.county_and_puma "G4801130, G48002309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02309" -in.county_and_puma "G4801130, G48002310" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02310" -in.county_and_puma "G4801130, G48002311" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02311" -in.county_and_puma "G4801130, G48002312" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02312" -in.county_and_puma "G4801130, G48002313" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02313" -in.county_and_puma "G4801130, G48002314" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02314" -in.county_and_puma "G4801130, G48002315" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02315" -in.county_and_puma "G4801130, G48002316" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02316" -in.county_and_puma "G4801130, G48002317" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02317" -in.county_and_puma "G4801130, G48002318" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02318" -in.county_and_puma "G4801130, G48002319" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02319" -in.county_and_puma "G4801130, G48002320" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02320" -in.county_and_puma "G4801130, G48002321" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02321" -in.county_and_puma "G4801130, G48002322" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 113, the NHGIS PUMA code is 02322" -in.county_and_puma "G4801150, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 115, the NHGIS PUMA code is 02800" -in.county_and_puma "G4801170, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 117, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801190, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 119, the NHGIS PUMA code is 01000" -in.county_and_puma "G4801210, G48002001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02001" -in.county_and_puma "G4801210, G48002002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02002" -in.county_and_puma "G4801210, G48002003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02003" -in.county_and_puma "G4801210, G48002004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02004" -in.county_and_puma "G4801210, G48002005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02005" -in.county_and_puma "G4801210, G48002006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 121, the NHGIS PUMA code is 02006" -in.county_and_puma "G4801230, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 123, the NHGIS PUMA code is 05500" -in.county_and_puma "G4801250, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 125, the NHGIS PUMA code is 00400" -in.county_and_puma "G4801270, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 127, the NHGIS PUMA code is 06200" -in.county_and_puma "G4801290, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 129, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801310, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 131, the NHGIS PUMA code is 06400" -in.county_and_puma "G4801330, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 133, the NHGIS PUMA code is 02600" -in.county_and_puma "G4801350, G48003100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 135, the NHGIS PUMA code is 03100" -in.county_and_puma "G4801370, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 137, the NHGIS PUMA code is 06200" -in.county_and_puma "G4801390, G48002101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 139, the NHGIS PUMA code is 02101" -in.county_and_puma "G4801410, G48003301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03301" -in.county_and_puma "G4801410, G48003302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03302" -in.county_and_puma "G4801410, G48003303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03303" -in.county_and_puma "G4801410, G48003304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03304" -in.county_and_puma "G4801410, G48003305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03305" -in.county_and_puma "G4801410, G48003306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 141, the NHGIS PUMA code is 03306" -in.county_and_puma "G4801430, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 143, the NHGIS PUMA code is 02200" -in.county_and_puma "G4801450, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 145, the NHGIS PUMA code is 03700" -in.county_and_puma "G4801470, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 147, the NHGIS PUMA code is 00800" -in.county_and_puma "G4801490, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 149, the NHGIS PUMA code is 05100" -in.county_and_puma "G4801510, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 151, the NHGIS PUMA code is 02600" -in.county_and_puma "G4801530, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 153, the NHGIS PUMA code is 00400" -in.county_and_puma "G4801550, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 155, the NHGIS PUMA code is 00600" -in.county_and_puma "G4801570, G48004901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04901" -in.county_and_puma "G4801570, G48004902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04902" -in.county_and_puma "G4801570, G48004903" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04903" -in.county_and_puma "G4801570, G48004904" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04904" -in.county_and_puma "G4801570, G48004905" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 157, the NHGIS PUMA code is 04905" -in.county_and_puma "G4801590, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 159, the NHGIS PUMA code is 01000" -in.county_and_puma "G4801610, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 161, the NHGIS PUMA code is 03700" -in.county_and_puma "G4801630, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 163, the NHGIS PUMA code is 06100" -in.county_and_puma "G4801650, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 165, the NHGIS PUMA code is 03200" -in.county_and_puma "G4801670, G48004701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 167, the NHGIS PUMA code is 04701" -in.county_and_puma "G4801670, G48004702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 167, the NHGIS PUMA code is 04702" -in.county_and_puma "G4801690, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 169, the NHGIS PUMA code is 00400" -in.county_and_puma "G4801710, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 171, the NHGIS PUMA code is 06000" -in.county_and_puma "G4801730, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 173, the NHGIS PUMA code is 02800" -in.county_and_puma "G4801750, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 175, the NHGIS PUMA code is 05500" -in.county_and_puma "G4801770, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 177, the NHGIS PUMA code is 05500" -in.county_and_puma "G4801790, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 179, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801810, G48000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 181, the NHGIS PUMA code is 00800" -in.county_and_puma "G4801830, G48001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 183, the NHGIS PUMA code is 01600" -in.county_and_puma "G4801850, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 185, the NHGIS PUMA code is 03601" -in.county_and_puma "G4801870, G48005700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 187, the NHGIS PUMA code is 05700" -in.county_and_puma "G4801890, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 189, the NHGIS PUMA code is 00400" -in.county_and_puma "G4801910, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 191, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801930, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 193, the NHGIS PUMA code is 03400" -in.county_and_puma "G4801950, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 195, the NHGIS PUMA code is 00100" -in.county_and_puma "G4801970, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 197, the NHGIS PUMA code is 00600" -in.county_and_puma "G4801990, G48004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 199, the NHGIS PUMA code is 04200" -in.county_and_puma "G4802010, G48004601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04601" -in.county_and_puma "G4802010, G48004602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04602" -in.county_and_puma "G4802010, G48004603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04603" -in.county_and_puma "G4802010, G48004604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04604" -in.county_and_puma "G4802010, G48004605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04605" -in.county_and_puma "G4802010, G48004606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04606" -in.county_and_puma "G4802010, G48004607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04607" -in.county_and_puma "G4802010, G48004608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04608" -in.county_and_puma "G4802010, G48004609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04609" -in.county_and_puma "G4802010, G48004610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04610" -in.county_and_puma "G4802010, G48004611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04611" -in.county_and_puma "G4802010, G48004612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04612" -in.county_and_puma "G4802010, G48004613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04613" -in.county_and_puma "G4802010, G48004614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04614" -in.county_and_puma "G4802010, G48004615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04615" -in.county_and_puma "G4802010, G48004616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04616" -in.county_and_puma "G4802010, G48004617" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04617" -in.county_and_puma "G4802010, G48004618" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04618" -in.county_and_puma "G4802010, G48004619" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04619" -in.county_and_puma "G4802010, G48004620" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04620" -in.county_and_puma "G4802010, G48004621" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04621" -in.county_and_puma "G4802010, G48004622" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04622" -in.county_and_puma "G4802010, G48004623" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04623" -in.county_and_puma "G4802010, G48004624" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04624" -in.county_and_puma "G4802010, G48004625" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04625" -in.county_and_puma "G4802010, G48004626" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04626" -in.county_and_puma "G4802010, G48004627" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04627" -in.county_and_puma "G4802010, G48004628" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04628" -in.county_and_puma "G4802010, G48004629" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04629" -in.county_and_puma "G4802010, G48004630" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04630" -in.county_and_puma "G4802010, G48004631" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04631" -in.county_and_puma "G4802010, G48004632" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04632" -in.county_and_puma "G4802010, G48004633" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04633" -in.county_and_puma "G4802010, G48004634" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04634" -in.county_and_puma "G4802010, G48004635" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04635" -in.county_and_puma "G4802010, G48004636" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04636" -in.county_and_puma "G4802010, G48004637" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04637" -in.county_and_puma "G4802010, G48004638" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 201, the NHGIS PUMA code is 04638" -in.county_and_puma "G4802030, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 203, the NHGIS PUMA code is 01200" -in.county_and_puma "G4802050, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 205, the NHGIS PUMA code is 00100" -in.county_and_puma "G4802070, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 207, the NHGIS PUMA code is 02600" -in.county_and_puma "G4802090, G48005400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 209, the NHGIS PUMA code is 05400" -in.county_and_puma "G4802110, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 211, the NHGIS PUMA code is 00100" -in.county_and_puma "G4802130, G48001800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 213, the NHGIS PUMA code is 01800" -in.county_and_puma "G4802150, G48006801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06801" -in.county_and_puma "G4802150, G48006802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06802" -in.county_and_puma "G4802150, G48006803" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06803" -in.county_and_puma "G4802150, G48006804" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06804" -in.county_and_puma "G4802150, G48006805" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06805" -in.county_and_puma "G4802150, G48006806" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06806" -in.county_and_puma "G4802150, G48006807" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 215, the NHGIS PUMA code is 06807" -in.county_and_puma "G4802170, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 217, the NHGIS PUMA code is 03700" -in.county_and_puma "G4802190, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 219, the NHGIS PUMA code is 00400" -in.county_and_puma "G4802210, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 221, the NHGIS PUMA code is 02200" -in.county_and_puma "G4802230, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 223, the NHGIS PUMA code is 01000" -in.county_and_puma "G4802250, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 225, the NHGIS PUMA code is 03900" -in.county_and_puma "G4802270, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 227, the NHGIS PUMA code is 02800" -in.county_and_puma "G4802290, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 229, the NHGIS PUMA code is 03200" -in.county_and_puma "G4802310, G48000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 231, the NHGIS PUMA code is 00900" -in.county_and_puma "G4802330, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 233, the NHGIS PUMA code is 00100" -in.county_and_puma "G4802350, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 235, the NHGIS PUMA code is 02800" -in.county_and_puma "G4802370, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 237, the NHGIS PUMA code is 00600" -in.county_and_puma "G4802390, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 239, the NHGIS PUMA code is 05500" -in.county_and_puma "G4802410, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 241, the NHGIS PUMA code is 04100" -in.county_and_puma "G4802430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 243, the NHGIS PUMA code is 03200" -in.county_and_puma "G4802450, G48004301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 245, the NHGIS PUMA code is 04301" -in.county_and_puma "G4802450, G48004302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 245, the NHGIS PUMA code is 04302" -in.county_and_puma "G4802470, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 247, the NHGIS PUMA code is 06400" -in.county_and_puma "G4802490, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 249, the NHGIS PUMA code is 06900" -in.county_and_puma "G4802510, G48002102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 251, the NHGIS PUMA code is 02102" -in.county_and_puma "G4802530, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 253, the NHGIS PUMA code is 02600" -in.county_and_puma "G4802550, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 255, the NHGIS PUMA code is 05500" -in.county_and_puma "G4802570, G48001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 257, the NHGIS PUMA code is 01400" -in.county_and_puma "G4802590, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 259, the NHGIS PUMA code is 06000" -in.county_and_puma "G4802610, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 261, the NHGIS PUMA code is 06900" -in.county_and_puma "G4802630, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 263, the NHGIS PUMA code is 02600" -in.county_and_puma "G4802650, G48006000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 265, the NHGIS PUMA code is 06000" -in.county_and_puma "G4802670, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 267, the NHGIS PUMA code is 02800" -in.county_and_puma "G4802690, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 269, the NHGIS PUMA code is 00400" -in.county_and_puma "G4802710, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 271, the NHGIS PUMA code is 06200" -in.county_and_puma "G4802730, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 273, the NHGIS PUMA code is 06900" -in.county_and_puma "G4802750, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 275, the NHGIS PUMA code is 02600" -in.county_and_puma "G4802770, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 277, the NHGIS PUMA code is 01000" -in.county_and_puma "G4802790, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 279, the NHGIS PUMA code is 00400" -in.county_and_puma "G4802810, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 281, the NHGIS PUMA code is 03400" -in.county_and_puma "G4802830, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 283, the NHGIS PUMA code is 06200" -in.county_and_puma "G4802850, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 285, the NHGIS PUMA code is 05500" -in.county_and_puma "G4802870, G48005100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 287, the NHGIS PUMA code is 05100" -in.county_and_puma "G4802890, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 289, the NHGIS PUMA code is 03601" -in.county_and_puma "G4802910, G48004400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 291, the NHGIS PUMA code is 04400" -in.county_and_puma "G4802930, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 293, the NHGIS PUMA code is 03700" -in.county_and_puma "G4802950, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 295, the NHGIS PUMA code is 00100" -in.county_and_puma "G4802970, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 297, the NHGIS PUMA code is 06400" -in.county_and_puma "G4802990, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 299, the NHGIS PUMA code is 03400" -in.county_and_puma "G4803030, G48000501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 303, the NHGIS PUMA code is 00501" -in.county_and_puma "G4803030, G48000502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 303, the NHGIS PUMA code is 00502" -in.county_and_puma "G4803050, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 305, the NHGIS PUMA code is 00400" -in.county_and_puma "G4803070, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 307, the NHGIS PUMA code is 02800" -in.county_and_puma "G4803090, G48003801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 309, the NHGIS PUMA code is 03801" -in.county_and_puma "G4803090, G48003802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 309, the NHGIS PUMA code is 03802" -in.county_and_puma "G4803110, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 311, the NHGIS PUMA code is 06400" -in.county_and_puma "G4803130, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 313, the NHGIS PUMA code is 03601" -in.county_and_puma "G4803150, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 315, the NHGIS PUMA code is 01200" -in.county_and_puma "G4803170, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 317, the NHGIS PUMA code is 02800" -in.county_and_puma "G4803190, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 319, the NHGIS PUMA code is 02800" -in.county_and_puma "G4803210, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 321, the NHGIS PUMA code is 05000" -in.county_and_puma "G4803230, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 323, the NHGIS PUMA code is 06200" -in.county_and_puma "G4803250, G48006100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 325, the NHGIS PUMA code is 06100" -in.county_and_puma "G4803270, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 327, the NHGIS PUMA code is 02800" -in.county_and_puma "G4803290, G48003000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 329, the NHGIS PUMA code is 03000" -in.county_and_puma "G4803310, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 331, the NHGIS PUMA code is 03601" -in.county_and_puma "G4803330, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 333, the NHGIS PUMA code is 03400" -in.county_and_puma "G4803350, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 335, the NHGIS PUMA code is 02600" -in.county_and_puma "G4803370, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 337, the NHGIS PUMA code is 00600" -in.county_and_puma "G4803390, G48004501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04501" -in.county_and_puma "G4803390, G48004502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04502" -in.county_and_puma "G4803390, G48004503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04503" -in.county_and_puma "G4803390, G48004504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 339, the NHGIS PUMA code is 04504" -in.county_and_puma "G4803410, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 341, the NHGIS PUMA code is 00100" -in.county_and_puma "G4803430, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 343, the NHGIS PUMA code is 01000" -in.county_and_puma "G4803450, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 345, the NHGIS PUMA code is 00400" -in.county_and_puma "G4803470, G48004000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 347, the NHGIS PUMA code is 04000" -in.county_and_puma "G4803490, G48003700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 349, the NHGIS PUMA code is 03700" -in.county_and_puma "G4803510, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 351, the NHGIS PUMA code is 04100" -in.county_and_puma "G4803530, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 353, the NHGIS PUMA code is 02600" -in.county_and_puma "G4803550, G48006601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06601" -in.county_and_puma "G4803550, G48006602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06602" -in.county_and_puma "G4803550, G48006603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 355, the NHGIS PUMA code is 06603" -in.county_and_puma "G4803570, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 357, the NHGIS PUMA code is 00100" -in.county_and_puma "G4803590, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 359, the NHGIS PUMA code is 00100" -in.county_and_puma "G4803610, G48004200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 361, the NHGIS PUMA code is 04200" -in.county_and_puma "G4803630, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 363, the NHGIS PUMA code is 02200" -in.county_and_puma "G4803650, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 365, the NHGIS PUMA code is 01700" -in.county_and_puma "G4803670, G48002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 367, the NHGIS PUMA code is 02400" -in.county_and_puma "G4803690, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 369, the NHGIS PUMA code is 00100" -in.county_and_puma "G4803710, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 371, the NHGIS PUMA code is 03200" -in.county_and_puma "G4803730, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 373, the NHGIS PUMA code is 03900" -in.county_and_puma "G4803750, G48000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 375, the NHGIS PUMA code is 00200" -in.county_and_puma "G4803770, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 377, the NHGIS PUMA code is 03200" -in.county_and_puma "G4803790, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 379, the NHGIS PUMA code is 01300" -in.county_and_puma "G4803810, G48000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 381, the NHGIS PUMA code is 00300" -in.county_and_puma "G4803830, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 383, the NHGIS PUMA code is 02800" -in.county_and_puma "G4803850, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 385, the NHGIS PUMA code is 06200" -in.county_and_puma "G4803870, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 387, the NHGIS PUMA code is 01000" -in.county_and_puma "G4803890, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 389, the NHGIS PUMA code is 03200" -in.county_and_puma "G4803910, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 391, the NHGIS PUMA code is 06500" -in.county_and_puma "G4803930, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 393, the NHGIS PUMA code is 00100" -in.county_and_puma "G4803950, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 395, the NHGIS PUMA code is 03601" -in.county_and_puma "G4803970, G48000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 397, the NHGIS PUMA code is 00900" -in.county_and_puma "G4803990, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 399, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804010, G48001700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 401, the NHGIS PUMA code is 01700" -in.county_and_puma "G4804030, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 403, the NHGIS PUMA code is 04100" -in.county_and_puma "G4804050, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 405, the NHGIS PUMA code is 04100" -in.county_and_puma "G4804070, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 407, the NHGIS PUMA code is 03900" -in.county_and_puma "G4804090, G48006500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 409, the NHGIS PUMA code is 06500" -in.county_and_puma "G4804110, G48003400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 411, the NHGIS PUMA code is 03400" -in.county_and_puma "G4804130, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 413, the NHGIS PUMA code is 02800" -in.county_and_puma "G4804150, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 415, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804170, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 417, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804190, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 419, the NHGIS PUMA code is 04100" -in.county_and_puma "G4804210, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 421, the NHGIS PUMA code is 00100" -in.county_and_puma "G4804230, G48001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 423, the NHGIS PUMA code is 01501" -in.county_and_puma "G4804230, G48001502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 423, the NHGIS PUMA code is 01502" -in.county_and_puma "G4804250, G48002200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 425, the NHGIS PUMA code is 02200" -in.county_and_puma "G4804270, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 427, the NHGIS PUMA code is 06400" -in.county_and_puma "G4804290, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 429, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804310, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 431, the NHGIS PUMA code is 02800" -in.county_and_puma "G4804330, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 433, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804350, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 435, the NHGIS PUMA code is 02800" -in.county_and_puma "G4804370, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 437, the NHGIS PUMA code is 00100" -in.county_and_puma "G4804390, G48002501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02501" -in.county_and_puma "G4804390, G48002502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02502" -in.county_and_puma "G4804390, G48002503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02503" -in.county_and_puma "G4804390, G48002504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02504" -in.county_and_puma "G4804390, G48002505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02505" -in.county_and_puma "G4804390, G48002506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02506" -in.county_and_puma "G4804390, G48002507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02507" -in.county_and_puma "G4804390, G48002508" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02508" -in.county_and_puma "G4804390, G48002509" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02509" -in.county_and_puma "G4804390, G48002510" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02510" -in.county_and_puma "G4804390, G48002511" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02511" -in.county_and_puma "G4804390, G48002512" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02512" -in.county_and_puma "G4804390, G48002513" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02513" -in.county_and_puma "G4804390, G48002514" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02514" -in.county_and_puma "G4804390, G48002515" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02515" -in.county_and_puma "G4804390, G48002516" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 439, the NHGIS PUMA code is 02516" -in.county_and_puma "G4804410, G48002700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 441, the NHGIS PUMA code is 02700" -in.county_and_puma "G4804430, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 443, the NHGIS PUMA code is 03200" -in.county_and_puma "G4804450, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 445, the NHGIS PUMA code is 00400" -in.county_and_puma "G4804470, G48002600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 447, the NHGIS PUMA code is 02600" -in.county_and_puma "G4804490, G48001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 449, the NHGIS PUMA code is 01000" -in.county_and_puma "G4804510, G48002900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 451, the NHGIS PUMA code is 02900" -in.county_and_puma "G4804530, G48005301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05301" -in.county_and_puma "G4804530, G48005302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05302" -in.county_and_puma "G4804530, G48005303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05303" -in.county_and_puma "G4804530, G48005304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05304" -in.county_and_puma "G4804530, G48005305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05305" -in.county_and_puma "G4804530, G48005306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05306" -in.county_and_puma "G4804530, G48005307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05307" -in.county_and_puma "G4804530, G48005308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05308" -in.county_and_puma "G4804530, G48005309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 453, the NHGIS PUMA code is 05309" -in.county_and_puma "G4804550, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 455, the NHGIS PUMA code is 03900" -in.county_and_puma "G4804570, G48004100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 457, the NHGIS PUMA code is 04100" -in.county_and_puma "G4804590, G48001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 459, the NHGIS PUMA code is 01200" -in.county_and_puma "G4804610, G48002800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 461, the NHGIS PUMA code is 02800" -in.county_and_puma "G4804630, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 463, the NHGIS PUMA code is 06200" -in.county_and_puma "G4804650, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 465, the NHGIS PUMA code is 06200" -in.county_and_puma "G4804670, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 467, the NHGIS PUMA code is 01300" -in.county_and_puma "G4804690, G48005600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 469, the NHGIS PUMA code is 05600" -in.county_and_puma "G4804710, G48003900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 471, the NHGIS PUMA code is 03900" -in.county_and_puma "G4804730, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 473, the NHGIS PUMA code is 05000" -in.county_and_puma "G4804750, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 475, the NHGIS PUMA code is 03200" -in.county_and_puma "G4804770, G48003601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 477, the NHGIS PUMA code is 03601" -in.county_and_puma "G4804790, G48006301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 479, the NHGIS PUMA code is 06301" -in.county_and_puma "G4804790, G48006302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 479, the NHGIS PUMA code is 06302" -in.county_and_puma "G4804810, G48005000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 481, the NHGIS PUMA code is 05000" -in.county_and_puma "G4804830, G48000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 483, the NHGIS PUMA code is 00100" -in.county_and_puma "G4804850, G48000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 485, the NHGIS PUMA code is 00700" -in.county_and_puma "G4804870, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 487, the NHGIS PUMA code is 00600" -in.county_and_puma "G4804890, G48006900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 489, the NHGIS PUMA code is 06900" -in.county_and_puma "G4804910, G48005201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05201" -in.county_and_puma "G4804910, G48005202" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05202" -in.county_and_puma "G4804910, G48005203" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05203" -in.county_and_puma "G4804910, G48005204" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 491, the NHGIS PUMA code is 05204" -in.county_and_puma "G4804930, G48005500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 493, the NHGIS PUMA code is 05500" -in.county_and_puma "G4804950, G48003200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 495, the NHGIS PUMA code is 03200" -in.county_and_puma "G4804970, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 497, the NHGIS PUMA code is 00600" -in.county_and_puma "G4804990, G48001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 499, the NHGIS PUMA code is 01300" -in.county_and_puma "G4805010, G48000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 501, the NHGIS PUMA code is 00400" -in.county_and_puma "G4805030, G48000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 503, the NHGIS PUMA code is 00600" -in.county_and_puma "G4805050, G48006400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 505, the NHGIS PUMA code is 06400" -in.county_and_puma "G4805070, G48006200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 48, the NHGIS county code is 507, the NHGIS PUMA code is 06200" -in.county_and_puma "G4900010, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 001, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900030, G49003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 003, the NHGIS PUMA code is 03001" -in.county_and_puma "G4900050, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 005, the NHGIS PUMA code is 05001" -in.county_and_puma "G4900070, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 007, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900090, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 009, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900110, G49011001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 011, the NHGIS PUMA code is 11001" -in.county_and_puma "G4900110, G49011002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 011, the NHGIS PUMA code is 11002" -in.county_and_puma "G4900130, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 013, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900150, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 015, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900170, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 017, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900190, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 019, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900210, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 021, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900230, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 023, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900250, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 025, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900270, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 027, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900290, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 029, the NHGIS PUMA code is 05001" -in.county_and_puma "G4900310, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 031, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900330, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 033, the NHGIS PUMA code is 05001" -in.county_and_puma "G4900350, G49035001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35001" -in.county_and_puma "G4900350, G49035002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35002" -in.county_and_puma "G4900350, G49035003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35003" -in.county_and_puma "G4900350, G49035004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35004" -in.county_and_puma "G4900350, G49035005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35005" -in.county_and_puma "G4900350, G49035006" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35006" -in.county_and_puma "G4900350, G49035007" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35007" -in.county_and_puma "G4900350, G49035008" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35008" -in.county_and_puma "G4900350, G49035009" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 035, the NHGIS PUMA code is 35009" -in.county_and_puma "G4900370, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 037, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900390, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 039, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900410, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 041, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900430, G49005001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 043, the NHGIS PUMA code is 05001" -in.county_and_puma "G4900450, G49003001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 045, the NHGIS PUMA code is 03001" -in.county_and_puma "G4900470, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 047, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900490, G49049001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49001" -in.county_and_puma "G4900490, G49049002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49002" -in.county_and_puma "G4900490, G49049003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49003" -in.county_and_puma "G4900490, G49049004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 049, the NHGIS PUMA code is 49004" -in.county_and_puma "G4900510, G49013001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 051, the NHGIS PUMA code is 13001" -in.county_and_puma "G4900530, G49053001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 053, the NHGIS PUMA code is 53001" -in.county_and_puma "G4900550, G49021001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 055, the NHGIS PUMA code is 21001" -in.county_and_puma "G4900570, G49057001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 057, the NHGIS PUMA code is 57001" -in.county_and_puma "G4900570, G49057002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 49, the NHGIS county code is 057, the NHGIS PUMA code is 57002" -in.county_and_puma "G5000010, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 001, the NHGIS PUMA code is 00400" -in.county_and_puma "G5000030, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 003, the NHGIS PUMA code is 00400" -in.county_and_puma "G5000050, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G5000070, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G5000090, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 009, the NHGIS PUMA code is 00200" -in.county_and_puma "G5000110, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 011, the NHGIS PUMA code is 00100" -in.county_and_puma "G5000130, G50000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G5000150, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 015, the NHGIS PUMA code is 00200" -in.county_and_puma "G5000170, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 017, the NHGIS PUMA code is 00300" -in.county_and_puma "G5000190, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 019, the NHGIS PUMA code is 00200" -in.county_and_puma "G5000210, G50000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 021, the NHGIS PUMA code is 00400" -in.county_and_puma "G5000230, G50000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 023, the NHGIS PUMA code is 00200" -in.county_and_puma "G5000250, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 025, the NHGIS PUMA code is 00300" -in.county_and_puma "G5000270, G50000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 50, the NHGIS county code is 027, the NHGIS PUMA code is 00300" -in.county_and_puma "G5100010, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 001, the NHGIS PUMA code is 51125" -in.county_and_puma "G5100030, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 003, the NHGIS PUMA code is 51089" -in.county_and_puma "G5100030, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 003, the NHGIS PUMA code is 51090" -in.county_and_puma "G5100050, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 005, the NHGIS PUMA code is 51045" -in.county_and_puma "G5100070, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 007, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100090, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 009, the NHGIS PUMA code is 51095" -in.county_and_puma "G5100110, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 011, the NHGIS PUMA code is 51095" -in.county_and_puma "G5100130, G51001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 013, the NHGIS PUMA code is 01301" -in.county_and_puma "G5100130, G51001302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 013, the NHGIS PUMA code is 01302" -in.county_and_puma "G5100150, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 015, the NHGIS PUMA code is 51080" -in.county_and_puma "G5100170, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 017, the NHGIS PUMA code is 51080" -in.county_and_puma "G5100190, G51051095" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 019, the NHGIS PUMA code is 51095" -in.county_and_puma "G5100210, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 021, the NHGIS PUMA code is 51020" -in.county_and_puma "G5100230, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 023, the NHGIS PUMA code is 51045" -in.county_and_puma "G5100250, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 025, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100270, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 027, the NHGIS PUMA code is 51010" -in.county_and_puma "G5100290, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 029, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100310, G51051096" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 031, the NHGIS PUMA code is 51096" -in.county_and_puma "G5100330, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 033, the NHGIS PUMA code is 51120" -in.county_and_puma "G5100350, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 035, the NHGIS PUMA code is 51020" -in.county_and_puma "G5100360, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 036, the NHGIS PUMA code is 51215" -in.county_and_puma "G5100370, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 037, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100410, G51004101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04101" -in.county_and_puma "G5100410, G51004102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04102" -in.county_and_puma "G5100410, G51004103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 041, the NHGIS PUMA code is 04103" -in.county_and_puma "G5100430, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 043, the NHGIS PUMA code is 51084" -in.county_and_puma "G5100450, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 045, the NHGIS PUMA code is 51045" -in.county_and_puma "G5100470, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 047, the NHGIS PUMA code is 51087" -in.county_and_puma "G5100490, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 049, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100510, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 051, the NHGIS PUMA code is 51010" -in.county_and_puma "G5100530, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 053, the NHGIS PUMA code is 51135" -in.county_and_puma "G5100570, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 057, the NHGIS PUMA code is 51125" -in.county_and_puma "G5100590, G51059301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59301" -in.county_and_puma "G5100590, G51059302" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59302" -in.county_and_puma "G5100590, G51059303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59303" -in.county_and_puma "G5100590, G51059304" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59304" -in.county_and_puma "G5100590, G51059305" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59305" -in.county_and_puma "G5100590, G51059306" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59306" -in.county_and_puma "G5100590, G51059307" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59307" -in.county_and_puma "G5100590, G51059308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59308" -in.county_and_puma "G5100590, G51059309" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 059, the NHGIS PUMA code is 59309" -in.county_and_puma "G5100610, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 061, the NHGIS PUMA code is 51087" -in.county_and_puma "G5100630, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 063, the NHGIS PUMA code is 51040" -in.county_and_puma "G5100650, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 065, the NHGIS PUMA code is 51089" -in.county_and_puma "G5100670, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 067, the NHGIS PUMA code is 51045" -in.county_and_puma "G5100690, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 069, the NHGIS PUMA code is 51084" -in.county_and_puma "G5100710, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 071, the NHGIS PUMA code is 51040" -in.county_and_puma "G5100730, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 073, the NHGIS PUMA code is 51125" -in.county_and_puma "G5100750, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 075, the NHGIS PUMA code is 51215" -in.county_and_puma "G5100770, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 077, the NHGIS PUMA code is 51020" -in.county_and_puma "G5100790, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 079, the NHGIS PUMA code is 51090" -in.county_and_puma "G5100810, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 081, the NHGIS PUMA code is 51135" -in.county_and_puma "G5100830, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 083, the NHGIS PUMA code is 51105" -in.county_and_puma "G5100850, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 085, the NHGIS PUMA code is 51215" -in.county_and_puma "G5100870, G51051224" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 087, the NHGIS PUMA code is 51224" -in.county_and_puma "G5100870, G51051225" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 087, the NHGIS PUMA code is 51225" -in.county_and_puma "G5100890, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 089, the NHGIS PUMA code is 51097" -in.county_and_puma "G5100910, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 091, the NHGIS PUMA code is 51080" -in.county_and_puma "G5100930, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 093, the NHGIS PUMA code is 51145" -in.county_and_puma "G5100950, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 095, the NHGIS PUMA code is 51206" -in.county_and_puma "G5100970, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 097, the NHGIS PUMA code is 51125" -in.county_and_puma "G5100990, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 099, the NHGIS PUMA code is 51120" -in.county_and_puma "G5101010, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 101, the NHGIS PUMA code is 51215" -in.county_and_puma "G5101030, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 103, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101050, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 105, the NHGIS PUMA code is 51010" -in.county_and_puma "G5101070, G51010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10701" -in.county_and_puma "G5101070, G51010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10702" -in.county_and_puma "G5101070, G51010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 107, the NHGIS PUMA code is 10703" -in.county_and_puma "G5101090, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 109, the NHGIS PUMA code is 51089" -in.county_and_puma "G5101110, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 111, the NHGIS PUMA code is 51105" -in.county_and_puma "G5101130, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 113, the NHGIS PUMA code is 51087" -in.county_and_puma "G5101150, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 115, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101170, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 117, the NHGIS PUMA code is 51105" -in.county_and_puma "G5101190, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 119, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101210, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 121, the NHGIS PUMA code is 51040" -in.county_and_puma "G5101250, G51051089" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 125, the NHGIS PUMA code is 51089" -in.county_and_puma "G5101270, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 127, the NHGIS PUMA code is 51215" -in.county_and_puma "G5101310, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 131, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101330, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 133, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101350, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 135, the NHGIS PUMA code is 51105" -in.county_and_puma "G5101370, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 137, the NHGIS PUMA code is 51087" -in.county_and_puma "G5101390, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 139, the NHGIS PUMA code is 51085" -in.county_and_puma "G5101410, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 141, the NHGIS PUMA code is 51097" -in.county_and_puma "G5101430, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 143, the NHGIS PUMA code is 51097" -in.county_and_puma "G5101450, G51051215" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 145, the NHGIS PUMA code is 51215" -in.county_and_puma "G5101470, G51051105" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 147, the NHGIS PUMA code is 51105" -in.county_and_puma "G5101490, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 149, the NHGIS PUMA code is 51135" -in.county_and_puma "G5101530, G51051244" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51244" -in.county_and_puma "G5101530, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51245" -in.county_and_puma "G5101530, G51051246" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 153, the NHGIS PUMA code is 51246" -in.county_and_puma "G5101550, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 155, the NHGIS PUMA code is 51040" -in.county_and_puma "G5101570, G51051087" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 157, the NHGIS PUMA code is 51087" -in.county_and_puma "G5101590, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 159, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101610, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 161, the NHGIS PUMA code is 51044" -in.county_and_puma "G5101610, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 161, the NHGIS PUMA code is 51045" -in.county_and_puma "G5101630, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 163, the NHGIS PUMA code is 51080" -in.county_and_puma "G5101650, G51051110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 165, the NHGIS PUMA code is 51110" -in.county_and_puma "G5101670, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 167, the NHGIS PUMA code is 51010" -in.county_and_puma "G5101690, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 169, the NHGIS PUMA code is 51010" -in.county_and_puma "G5101710, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 171, the NHGIS PUMA code is 51085" -in.county_and_puma "G5101730, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 173, the NHGIS PUMA code is 51020" -in.county_and_puma "G5101750, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 175, the NHGIS PUMA code is 51145" -in.county_and_puma "G5101770, G51051120" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 177, the NHGIS PUMA code is 51120" -in.county_and_puma "G5101790, G51051115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 179, the NHGIS PUMA code is 51115" -in.county_and_puma "G5101810, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 181, the NHGIS PUMA code is 51135" -in.county_and_puma "G5101830, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 183, the NHGIS PUMA code is 51135" -in.county_and_puma "G5101850, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 185, the NHGIS PUMA code is 51010" -in.county_and_puma "G5101870, G51051085" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 187, the NHGIS PUMA code is 51085" -in.county_and_puma "G5101910, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 191, the NHGIS PUMA code is 51020" -in.county_and_puma "G5101930, G51051125" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 193, the NHGIS PUMA code is 51125" -in.county_and_puma "G5101950, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 195, the NHGIS PUMA code is 51010" -in.county_and_puma "G5101970, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 197, the NHGIS PUMA code is 51020" -in.county_and_puma "G5101990, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 199, the NHGIS PUMA code is 51206" -in.county_and_puma "G5105100, G51051255" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 510, the NHGIS PUMA code is 51255" -in.county_and_puma "G5105200, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 520, the NHGIS PUMA code is 51020" -in.county_and_puma "G5105300, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 530, the NHGIS PUMA code is 51080" -in.county_and_puma "G5105400, G51051090" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 540, the NHGIS PUMA code is 51090" -in.county_and_puma "G5105500, G51055001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 550, the NHGIS PUMA code is 55001" -in.county_and_puma "G5105500, G51055002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 550, the NHGIS PUMA code is 55002" -in.county_and_puma "G5105700, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 570, the NHGIS PUMA code is 51135" -in.county_and_puma "G5105800, G51051045" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 580, the NHGIS PUMA code is 51045" -in.county_and_puma "G5105900, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 590, the NHGIS PUMA code is 51097" -in.county_and_puma "G5105950, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 595, the NHGIS PUMA code is 51135" -in.county_and_puma "G5106000, G51059303" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 600, the NHGIS PUMA code is 59303" -in.county_and_puma "G5106100, G51059308" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 610, the NHGIS PUMA code is 59308" -in.county_and_puma "G5106200, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 620, the NHGIS PUMA code is 51145" -in.county_and_puma "G5106300, G51051115" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 630, the NHGIS PUMA code is 51115" -in.county_and_puma "G5106400, G51051020" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 640, the NHGIS PUMA code is 51020" -in.county_and_puma "G5106500, G51051186" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 650, the NHGIS PUMA code is 51186" -in.county_and_puma "G5106600, G51051110" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 660, the NHGIS PUMA code is 51110" -in.county_and_puma "G5106700, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 670, the NHGIS PUMA code is 51135" -in.county_and_puma "G5106780, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 678, the NHGIS PUMA code is 51080" -in.county_and_puma "G5106800, G51051096" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 680, the NHGIS PUMA code is 51096" -in.county_and_puma "G5106830, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 683, the NHGIS PUMA code is 51245" -in.county_and_puma "G5106850, G51051245" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 685, the NHGIS PUMA code is 51245" -in.county_and_puma "G5106900, G51051097" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 690, the NHGIS PUMA code is 51097" -in.county_and_puma "G5107000, G51051175" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 700, the NHGIS PUMA code is 51175" -in.county_and_puma "G5107100, G51051154" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 710, the NHGIS PUMA code is 51154" -in.county_and_puma "G5107100, G51051155" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 710, the NHGIS PUMA code is 51155" -in.county_and_puma "G5107200, G51051010" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 720, the NHGIS PUMA code is 51010" -in.county_and_puma "G5107300, G51051135" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 730, the NHGIS PUMA code is 51135" -in.county_and_puma "G5107350, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 735, the NHGIS PUMA code is 51206" -in.county_and_puma "G5107400, G51051155" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 740, the NHGIS PUMA code is 51155" -in.county_and_puma "G5107500, G51051040" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 750, the NHGIS PUMA code is 51040" -in.county_and_puma "G5107600, G51051235" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 760, the NHGIS PUMA code is 51235" -in.county_and_puma "G5107700, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 770, the NHGIS PUMA code is 51044" -in.county_and_puma "G5107750, G51051044" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 775, the NHGIS PUMA code is 51044" -in.county_and_puma "G5107900, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 790, the NHGIS PUMA code is 51080" -in.county_and_puma "G5108000, G51051145" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 800, the NHGIS PUMA code is 51145" -in.county_and_puma "G5108100, G51051164" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51164" -in.county_and_puma "G5108100, G51051165" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51165" -in.county_and_puma "G5108100, G51051167" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 810, the NHGIS PUMA code is 51167" -in.county_and_puma "G5108200, G51051080" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 820, the NHGIS PUMA code is 51080" -in.county_and_puma "G5108300, G51051206" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 830, the NHGIS PUMA code is 51206" -in.county_and_puma "G5108400, G51051084" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 51, the NHGIS county code is 840, the NHGIS PUMA code is 51084" -in.county_and_puma "G5300010, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 001, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300030, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 003, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300050, G53010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10701" -in.county_and_puma "G5300050, G53010702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10702" -in.county_and_puma "G5300050, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 005, the NHGIS PUMA code is 10703" -in.county_and_puma "G5300070, G53010300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 007, the NHGIS PUMA code is 10300" -in.county_and_puma "G5300090, G53011900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 009, the NHGIS PUMA code is 11900" -in.county_and_puma "G5300110, G53011101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11101" -in.county_and_puma "G5300110, G53011102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11102" -in.county_and_puma "G5300110, G53011103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11103" -in.county_and_puma "G5300110, G53011104" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 011, the NHGIS PUMA code is 11104" -in.county_and_puma "G5300130, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 013, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300150, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 015, the NHGIS PUMA code is 11200" -in.county_and_puma "G5300170, G53010300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 017, the NHGIS PUMA code is 10300" -in.county_and_puma "G5300190, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 019, the NHGIS PUMA code is 10400" -in.county_and_puma "G5300210, G53010701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 021, the NHGIS PUMA code is 10701" -in.county_and_puma "G5300210, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 021, the NHGIS PUMA code is 10703" -in.county_and_puma "G5300230, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 023, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300250, G53010800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 025, the NHGIS PUMA code is 10800" -in.county_and_puma "G5300270, G53011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 027, the NHGIS PUMA code is 11300" -in.county_and_puma "G5300290, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 029, the NHGIS PUMA code is 10200" -in.county_and_puma "G5300310, G53011900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 031, the NHGIS PUMA code is 11900" -in.county_and_puma "G5300330, G53011601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11601" -in.county_and_puma "G5300330, G53011602" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11602" -in.county_and_puma "G5300330, G53011603" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11603" -in.county_and_puma "G5300330, G53011604" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11604" -in.county_and_puma "G5300330, G53011605" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11605" -in.county_and_puma "G5300330, G53011606" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11606" -in.county_and_puma "G5300330, G53011607" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11607" -in.county_and_puma "G5300330, G53011608" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11608" -in.county_and_puma "G5300330, G53011609" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11609" -in.county_and_puma "G5300330, G53011610" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11610" -in.county_and_puma "G5300330, G53011611" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11611" -in.county_and_puma "G5300330, G53011612" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11612" -in.county_and_puma "G5300330, G53011613" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11613" -in.county_and_puma "G5300330, G53011614" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11614" -in.county_and_puma "G5300330, G53011615" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11615" -in.county_and_puma "G5300330, G53011616" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 033, the NHGIS PUMA code is 11616" -in.county_and_puma "G5300350, G53011801" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 035, the NHGIS PUMA code is 11801" -in.county_and_puma "G5300350, G53011802" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 035, the NHGIS PUMA code is 11802" -in.county_and_puma "G5300370, G53010800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 037, the NHGIS PUMA code is 10800" -in.county_and_puma "G5300390, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 039, the NHGIS PUMA code is 11000" -in.county_and_puma "G5300410, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 041, the NHGIS PUMA code is 11000" -in.county_and_puma "G5300430, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 043, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300450, G53011300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 045, the NHGIS PUMA code is 11300" -in.county_and_puma "G5300470, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 047, the NHGIS PUMA code is 10400" -in.county_and_puma "G5300490, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 049, the NHGIS PUMA code is 11200" -in.county_and_puma "G5300510, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 051, the NHGIS PUMA code is 10400" -in.county_and_puma "G5300530, G53011501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11501" -in.county_and_puma "G5300530, G53011502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11502" -in.county_and_puma "G5300530, G53011503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11503" -in.county_and_puma "G5300530, G53011504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11504" -in.county_and_puma "G5300530, G53011505" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11505" -in.county_and_puma "G5300530, G53011506" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11506" -in.county_and_puma "G5300530, G53011507" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 053, the NHGIS PUMA code is 11507" -in.county_and_puma "G5300550, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 055, the NHGIS PUMA code is 10200" -in.county_and_puma "G5300570, G53010200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 057, the NHGIS PUMA code is 10200" -in.county_and_puma "G5300590, G53011000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 059, the NHGIS PUMA code is 11000" -in.county_and_puma "G5300610, G53011701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11701" -in.county_and_puma "G5300610, G53011702" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11702" -in.county_and_puma "G5300610, G53011703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11703" -in.county_and_puma "G5300610, G53011704" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11704" -in.county_and_puma "G5300610, G53011705" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11705" -in.county_and_puma "G5300610, G53011706" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 061, the NHGIS PUMA code is 11706" -in.county_and_puma "G5300630, G53010501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10501" -in.county_and_puma "G5300630, G53010502" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10502" -in.county_and_puma "G5300630, G53010503" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10503" -in.county_and_puma "G5300630, G53010504" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 063, the NHGIS PUMA code is 10504" -in.county_and_puma "G5300650, G53010400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 065, the NHGIS PUMA code is 10400" -in.county_and_puma "G5300670, G53011401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 067, the NHGIS PUMA code is 11401" -in.county_and_puma "G5300670, G53011402" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 067, the NHGIS PUMA code is 11402" -in.county_and_puma "G5300690, G53011200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 069, the NHGIS PUMA code is 11200" -in.county_and_puma "G5300710, G53010703" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 071, the NHGIS PUMA code is 10703" -in.county_and_puma "G5300730, G53010100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 073, the NHGIS PUMA code is 10100" -in.county_and_puma "G5300750, G53010600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 075, the NHGIS PUMA code is 10600" -in.county_and_puma "G5300770, G53010901" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 077, the NHGIS PUMA code is 10901" -in.county_and_puma "G5300770, G53010902" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 53, the NHGIS county code is 077, the NHGIS PUMA code is 10902" -in.county_and_puma "G5400010, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 001, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400030, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 003, the NHGIS PUMA code is 00400" -in.county_and_puma "G5400050, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 005, the NHGIS PUMA code is 00900" -in.county_and_puma "G5400070, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 007, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400090, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 009, the NHGIS PUMA code is 00100" -in.county_and_puma "G5400110, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 011, the NHGIS PUMA code is 00800" -in.county_and_puma "G5400130, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 013, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400150, G54001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 015, the NHGIS PUMA code is 01000" -in.county_and_puma "G5400170, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 017, the NHGIS PUMA code is 00200" -in.county_and_puma "G5400190, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 019, the NHGIS PUMA code is 01200" -in.county_and_puma "G5400210, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 021, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400230, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 023, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400250, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 025, the NHGIS PUMA code is 01100" -in.county_and_puma "G5400270, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 027, the NHGIS PUMA code is 00400" -in.county_and_puma "G5400290, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 029, the NHGIS PUMA code is 00100" -in.county_and_puma "G5400310, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 031, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400330, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 033, the NHGIS PUMA code is 00200" -in.county_and_puma "G5400350, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 035, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400370, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 037, the NHGIS PUMA code is 00400" -in.county_and_puma "G5400390, G54001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 039, the NHGIS PUMA code is 01000" -in.county_and_puma "G5400410, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 041, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400430, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 043, the NHGIS PUMA code is 00900" -in.county_and_puma "G5400450, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 045, the NHGIS PUMA code is 01300" -in.county_and_puma "G5400470, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 047, the NHGIS PUMA code is 01300" -in.county_and_puma "G5400490, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 049, the NHGIS PUMA code is 00200" -in.county_and_puma "G5400510, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 051, the NHGIS PUMA code is 00100" -in.county_and_puma "G5400530, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 053, the NHGIS PUMA code is 00800" -in.county_and_puma "G5400550, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 055, the NHGIS PUMA code is 01200" -in.county_and_puma "G5400570, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 057, the NHGIS PUMA code is 00400" -in.county_and_puma "G5400590, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 059, the NHGIS PUMA code is 01300" -in.county_and_puma "G5400610, G54000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 061, the NHGIS PUMA code is 00300" -in.county_and_puma "G5400630, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 063, the NHGIS PUMA code is 01100" -in.county_and_puma "G5400650, G54000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 065, the NHGIS PUMA code is 00400" -in.county_and_puma "G5400670, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 067, the NHGIS PUMA code is 01100" -in.county_and_puma "G5400690, G54000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 069, the NHGIS PUMA code is 00100" -in.county_and_puma "G5400710, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 071, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400730, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 073, the NHGIS PUMA code is 00700" -in.county_and_puma "G5400750, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 075, the NHGIS PUMA code is 01100" -in.county_and_puma "G5400770, G54000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 077, the NHGIS PUMA code is 00300" -in.county_and_puma "G5400790, G54000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 079, the NHGIS PUMA code is 00900" -in.county_and_puma "G5400810, G54001200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 081, the NHGIS PUMA code is 01200" -in.county_and_puma "G5400830, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 083, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400850, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 085, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400870, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 087, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400890, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 089, the NHGIS PUMA code is 01100" -in.county_and_puma "G5400910, G54000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 091, the NHGIS PUMA code is 00200" -in.county_and_puma "G5400930, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 093, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400950, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 095, the NHGIS PUMA code is 00600" -in.county_and_puma "G5400970, G54000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 097, the NHGIS PUMA code is 00500" -in.county_and_puma "G5400990, G54000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 099, the NHGIS PUMA code is 00800" -in.county_and_puma "G5401010, G54001100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 101, the NHGIS PUMA code is 01100" -in.county_and_puma "G5401030, G54000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 103, the NHGIS PUMA code is 00600" -in.county_and_puma "G5401050, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 105, the NHGIS PUMA code is 00700" -in.county_and_puma "G5401070, G54000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 107, the NHGIS PUMA code is 00700" -in.county_and_puma "G5401090, G54001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 54, the NHGIS county code is 109, the NHGIS PUMA code is 01300" -in.county_and_puma "G5500010, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 001, the NHGIS PUMA code is 01601" -in.county_and_puma "G5500030, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 003, the NHGIS PUMA code is 00100" -in.county_and_puma "G5500050, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 005, the NHGIS PUMA code is 55101" -in.county_and_puma "G5500070, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 007, the NHGIS PUMA code is 00100" -in.county_and_puma "G5500090, G55000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 009, the NHGIS PUMA code is 00200" -in.county_and_puma "G5500090, G55000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 009, the NHGIS PUMA code is 00300" -in.county_and_puma "G5500110, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 011, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500130, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 013, the NHGIS PUMA code is 00100" -in.county_and_puma "G5500150, G55001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 015, the NHGIS PUMA code is 01401" -in.county_and_puma "G5500170, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 017, the NHGIS PUMA code is 55101" -in.county_and_puma "G5500170, G55055103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 017, the NHGIS PUMA code is 55103" -in.county_and_puma "G5500190, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 019, the NHGIS PUMA code is 55101" -in.county_and_puma "G5500210, G55001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 021, the NHGIS PUMA code is 01000" -in.county_and_puma "G5500230, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 023, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500250, G55000101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00101" -in.county_and_puma "G5500250, G55000102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00102" -in.county_and_puma "G5500250, G55000103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 025, the NHGIS PUMA code is 00103" -in.county_and_puma "G5500270, G55001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 027, the NHGIS PUMA code is 01001" -in.county_and_puma "G5500290, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 029, the NHGIS PUMA code is 01300" -in.county_and_puma "G5500310, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 031, the NHGIS PUMA code is 00100" -in.county_and_puma "G5500330, G55055102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 033, the NHGIS PUMA code is 55102" -in.county_and_puma "G5500350, G55055103" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 035, the NHGIS PUMA code is 55103" -in.county_and_puma "G5500370, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 037, the NHGIS PUMA code is 01300" -in.county_and_puma "G5500390, G55001401" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 039, the NHGIS PUMA code is 01401" -in.county_and_puma "G5500410, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 041, the NHGIS PUMA code is 00600" -in.county_and_puma "G5500430, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 043, the NHGIS PUMA code is 00800" -in.county_and_puma "G5500450, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 045, the NHGIS PUMA code is 00800" -in.county_and_puma "G5500470, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 047, the NHGIS PUMA code is 01400" -in.county_and_puma "G5500490, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 049, the NHGIS PUMA code is 00800" -in.county_and_puma "G5500510, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 051, the NHGIS PUMA code is 00100" -in.county_and_puma "G5500530, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 053, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500550, G55001001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 055, the NHGIS PUMA code is 01001" -in.county_and_puma "G5500570, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 057, the NHGIS PUMA code is 01601" -in.county_and_puma "G5500590, G55010000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 059, the NHGIS PUMA code is 10000" -in.county_and_puma "G5500610, G55001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 061, the NHGIS PUMA code is 01301" -in.county_and_puma "G5500630, G55000900" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 063, the NHGIS PUMA code is 00900" -in.county_and_puma "G5500650, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 065, the NHGIS PUMA code is 00800" -in.county_and_puma "G5500670, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 067, the NHGIS PUMA code is 00600" -in.county_and_puma "G5500690, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 069, the NHGIS PUMA code is 00600" -in.county_and_puma "G5500710, G55001301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 071, the NHGIS PUMA code is 01301" -in.county_and_puma "G5500730, G55001600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 073, the NHGIS PUMA code is 01600" -in.county_and_puma "G5500750, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 075, the NHGIS PUMA code is 01300" -in.county_and_puma "G5500770, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 077, the NHGIS PUMA code is 01400" -in.county_and_puma "G5500780, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 078, the NHGIS PUMA code is 01400" -in.county_and_puma "G5500790, G55040101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40101" -in.county_and_puma "G5500790, G55040301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40301" -in.county_and_puma "G5500790, G55040701" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 40701" -in.county_and_puma "G5500790, G55041001" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41001" -in.county_and_puma "G5500790, G55041002" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41002" -in.county_and_puma "G5500790, G55041003" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41003" -in.county_and_puma "G5500790, G55041004" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41004" -in.county_and_puma "G5500790, G55041005" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 079, the NHGIS PUMA code is 41005" -in.county_and_puma "G5500810, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 081, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500830, G55001300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 083, the NHGIS PUMA code is 01300" -in.county_and_puma "G5500850, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 085, the NHGIS PUMA code is 00600" -in.county_and_puma "G5500870, G55001500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 087, the NHGIS PUMA code is 01500" -in.county_and_puma "G5500890, G55020000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 089, the NHGIS PUMA code is 20000" -in.county_and_puma "G5500910, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 091, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500930, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 093, the NHGIS PUMA code is 00700" -in.county_and_puma "G5500950, G55055101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 095, the NHGIS PUMA code is 55101" -in.county_and_puma "G5500970, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 097, the NHGIS PUMA code is 01601" -in.county_and_puma "G5500990, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 099, the NHGIS PUMA code is 00100" -in.county_and_puma "G5501010, G55030000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 101, the NHGIS PUMA code is 30000" -in.county_and_puma "G5501030, G55000800" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 103, the NHGIS PUMA code is 00800" -in.county_and_puma "G5501050, G55002400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 105, the NHGIS PUMA code is 02400" -in.county_and_puma "G5501070, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 107, the NHGIS PUMA code is 00100" -in.county_and_puma "G5501090, G55055102" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 109, the NHGIS PUMA code is 55102" -in.county_and_puma "G5501110, G55001000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 111, the NHGIS PUMA code is 01000" -in.county_and_puma "G5501130, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 113, the NHGIS PUMA code is 00100" -in.county_and_puma "G5501150, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 115, the NHGIS PUMA code is 01400" -in.county_and_puma "G5501170, G55002500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 117, the NHGIS PUMA code is 02500" -in.county_and_puma "G5501190, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 119, the NHGIS PUMA code is 00100" -in.county_and_puma "G5501210, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 121, the NHGIS PUMA code is 00700" -in.county_and_puma "G5501230, G55000700" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 123, the NHGIS PUMA code is 00700" -in.county_and_puma "G5501250, G55000600" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 125, the NHGIS PUMA code is 00600" -in.county_and_puma "G5501270, G55050000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 127, the NHGIS PUMA code is 50000" -in.county_and_puma "G5501290, G55000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 129, the NHGIS PUMA code is 00100" -in.county_and_puma "G5501310, G55020000" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 131, the NHGIS PUMA code is 20000" -in.county_and_puma "G5501330, G55070101" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70101" -in.county_and_puma "G5501330, G55070201" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70201" -in.county_and_puma "G5501330, G55070301" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 133, the NHGIS PUMA code is 70301" -in.county_and_puma "G5501350, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 135, the NHGIS PUMA code is 01400" -in.county_and_puma "G5501370, G55001400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 137, the NHGIS PUMA code is 01400" -in.county_and_puma "G5501390, G55001501" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 139, the NHGIS PUMA code is 01501" -in.county_and_puma "G5501410, G55001601" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 55, the NHGIS county code is 141, the NHGIS PUMA code is 01601" -in.county_and_puma "G5600010, G56000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 001, the NHGIS PUMA code is 00300" -in.county_and_puma "G5600030, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 003, the NHGIS PUMA code is 00100" -in.county_and_puma "G5600050, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 005, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600070, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 007, the NHGIS PUMA code is 00400" -in.county_and_puma "G5600090, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 009, the NHGIS PUMA code is 00400" -in.county_and_puma "G5600110, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 011, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600130, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 013, the NHGIS PUMA code is 00500" -in.county_and_puma "G5600150, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 015, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600170, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 017, the NHGIS PUMA code is 00500" -in.county_and_puma "G5600190, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 019, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600210, G56000300" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 021, the NHGIS PUMA code is 00300" -in.county_and_puma "G5600230, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 023, the NHGIS PUMA code is 00100" -in.county_and_puma "G5600250, G56000400" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 025, the NHGIS PUMA code is 00400" -in.county_and_puma "G5600270, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 027, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600290, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 029, the NHGIS PUMA code is 00100" -in.county_and_puma "G5600310, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 031, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600330, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 033, the NHGIS PUMA code is 00100" -in.county_and_puma "G5600350, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 035, the NHGIS PUMA code is 00500" -in.county_and_puma "G5600370, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 037, the NHGIS PUMA code is 00500" -in.county_and_puma "G5600390, G56000100" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 039, the NHGIS PUMA code is 00100" -in.county_and_puma "G5600410, G56000500" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 041, the NHGIS PUMA code is 00500" -in.county_and_puma "G5600430, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 043, the NHGIS PUMA code is 00200" -in.county_and_puma "G5600450, G56000200" "GISJOIN identifier for each county and PUMA combination, the NHGIS state code is 56, the NHGIS county code is 045, the NHGIS PUMA code is 00200" -in.county_metro_status Metropolitan The dwelling unit is located in a county that is in a Metropolitan area -in.county_metro_status Non-Metropolitan The dwelling unit is located in a county that is in a Non-Metropolitan area -in.county_name Abbeville County The dwelling unit is located in Abbeville County -in.county_name Acadia Parish The dwelling unit is located in Acadia Parish -in.county_name Accomack County The dwelling unit is located in Accomack County -in.county_name Ada County The dwelling unit is located in Ada County -in.county_name Adair County The dwelling unit is located in Adair County -in.county_name Adams County The dwelling unit is located in Adams County -in.county_name Addison County The dwelling unit is located in Addison County -in.county_name Aiken County The dwelling unit is located in Aiken County -in.county_name Aitkin County The dwelling unit is located in Aitkin County -in.county_name Alachua County The dwelling unit is located in Alachua County -in.county_name Alamance County The dwelling unit is located in Alamance County -in.county_name Alameda County The dwelling unit is located in Alameda County -in.county_name Alamosa County The dwelling unit is located in Alamosa County -in.county_name Albany County The dwelling unit is located in Albany County -in.county_name Albemarle County The dwelling unit is located in Albemarle County -in.county_name Alcona County The dwelling unit is located in Alcona County -in.county_name Alcorn County The dwelling unit is located in Alcorn County -in.county_name Aleutians East Borough The dwelling unit is located in Aleutians East Borough -in.county_name Aleutians West Census Area The dwelling unit is located in Aleutians West Census Area -in.county_name Alexander County The dwelling unit is located in Alexander County -in.county_name Alexandria city The dwelling unit is located in Alexandria city -in.county_name Alfalfa County The dwelling unit is located in Alfalfa County -in.county_name Alger County The dwelling unit is located in Alger County -in.county_name Allamakee County The dwelling unit is located in Allamakee County -in.county_name Allegan County The dwelling unit is located in Allegan County -in.county_name Allegany County The dwelling unit is located in Allegany County -in.county_name Alleghany County The dwelling unit is located in Alleghany County -in.county_name Allegheny County The dwelling unit is located in Allegheny County -in.county_name Allen County The dwelling unit is located in Allen County -in.county_name Allen Parish The dwelling unit is located in Allen Parish -in.county_name Allendale County The dwelling unit is located in Allendale County -in.county_name Alpena County The dwelling unit is located in Alpena County -in.county_name Alpine County The dwelling unit is located in Alpine County -in.county_name Amador County The dwelling unit is located in Amador County -in.county_name Amelia County The dwelling unit is located in Amelia County -in.county_name Amherst County The dwelling unit is located in Amherst County -in.county_name Amite County The dwelling unit is located in Amite County -in.county_name Anchorage Municipality The dwelling unit is located in Anchorage Municipality -in.county_name Anderson County The dwelling unit is located in Anderson County -in.county_name Andrew County The dwelling unit is located in Andrew County -in.county_name Andrews County The dwelling unit is located in Andrews County -in.county_name Androscoggin County The dwelling unit is located in Androscoggin County -in.county_name Angelina County The dwelling unit is located in Angelina County -in.county_name Anne Arundel County The dwelling unit is located in Anne Arundel County -in.county_name Anoka County The dwelling unit is located in Anoka County -in.county_name Anson County The dwelling unit is located in Anson County -in.county_name Antelope County The dwelling unit is located in Antelope County -in.county_name Antrim County The dwelling unit is located in Antrim County -in.county_name Apache County The dwelling unit is located in Apache County -in.county_name Appanoose County The dwelling unit is located in Appanoose County -in.county_name Appling County The dwelling unit is located in Appling County -in.county_name Appomattox County The dwelling unit is located in Appomattox County -in.county_name Aransas County The dwelling unit is located in Aransas County -in.county_name Arapahoe County The dwelling unit is located in Arapahoe County -in.county_name Archer County The dwelling unit is located in Archer County -in.county_name Archuleta County The dwelling unit is located in Archuleta County -in.county_name Arenac County The dwelling unit is located in Arenac County -in.county_name Arkansas County The dwelling unit is located in Arkansas County -in.county_name Arlington County The dwelling unit is located in Arlington County -in.county_name Armstrong County The dwelling unit is located in Armstrong County -in.county_name Aroostook County The dwelling unit is located in Aroostook County -in.county_name Arthur County The dwelling unit is located in Arthur County -in.county_name Ascension Parish The dwelling unit is located in Ascension Parish -in.county_name Ashe County The dwelling unit is located in Ashe County -in.county_name Ashland County The dwelling unit is located in Ashland County -in.county_name Ashley County The dwelling unit is located in Ashley County -in.county_name Ashtabula County The dwelling unit is located in Ashtabula County -in.county_name Asotin County The dwelling unit is located in Asotin County -in.county_name Assumption Parish The dwelling unit is located in Assumption Parish -in.county_name Atascosa County The dwelling unit is located in Atascosa County -in.county_name Atchison County The dwelling unit is located in Atchison County -in.county_name Athens County The dwelling unit is located in Athens County -in.county_name Atkinson County The dwelling unit is located in Atkinson County -in.county_name Atlantic County The dwelling unit is located in Atlantic County -in.county_name Atoka County The dwelling unit is located in Atoka County -in.county_name Attala County The dwelling unit is located in Attala County -in.county_name Audrain County The dwelling unit is located in Audrain County -in.county_name Audubon County The dwelling unit is located in Audubon County -in.county_name Auglaize County The dwelling unit is located in Auglaize County -in.county_name Augusta County The dwelling unit is located in Augusta County -in.county_name Aurora County The dwelling unit is located in Aurora County -in.county_name Austin County The dwelling unit is located in Austin County -in.county_name Autauga County The dwelling unit is located in Autauga County -in.county_name Avery County The dwelling unit is located in Avery County -in.county_name Avoyelles Parish The dwelling unit is located in Avoyelles Parish -in.county_name Baca County The dwelling unit is located in Baca County -in.county_name Bacon County The dwelling unit is located in Bacon County -in.county_name Bailey County The dwelling unit is located in Bailey County -in.county_name Baker County The dwelling unit is located in Baker County -in.county_name Baldwin County The dwelling unit is located in Baldwin County -in.county_name Ballard County The dwelling unit is located in Ballard County -in.county_name Baltimore County The dwelling unit is located in Baltimore County -in.county_name Baltimore city The dwelling unit is located in Baltimore city -in.county_name Bamberg County The dwelling unit is located in Bamberg County -in.county_name Bandera County The dwelling unit is located in Bandera County -in.county_name Banks County The dwelling unit is located in Banks County -in.county_name Banner County The dwelling unit is located in Banner County -in.county_name Bannock County The dwelling unit is located in Bannock County -in.county_name Baraga County The dwelling unit is located in Baraga County -in.county_name Barber County The dwelling unit is located in Barber County -in.county_name Barbour County The dwelling unit is located in Barbour County -in.county_name Barnes County The dwelling unit is located in Barnes County -in.county_name Barnstable County The dwelling unit is located in Barnstable County -in.county_name Barnwell County The dwelling unit is located in Barnwell County -in.county_name Barren County The dwelling unit is located in Barren County -in.county_name Barron County The dwelling unit is located in Barron County -in.county_name Barrow County The dwelling unit is located in Barrow County -in.county_name Barry County The dwelling unit is located in Barry County -in.county_name Bartholomew County The dwelling unit is located in Bartholomew County -in.county_name Barton County The dwelling unit is located in Barton County -in.county_name Bartow County The dwelling unit is located in Bartow County -in.county_name Bastrop County The dwelling unit is located in Bastrop County -in.county_name Bates County The dwelling unit is located in Bates County -in.county_name Bath County The dwelling unit is located in Bath County -in.county_name Baxter County The dwelling unit is located in Baxter County -in.county_name Bay County The dwelling unit is located in Bay County -in.county_name Bayfield County The dwelling unit is located in Bayfield County -in.county_name Baylor County The dwelling unit is located in Baylor County -in.county_name Beadle County The dwelling unit is located in Beadle County -in.county_name Bear Lake County The dwelling unit is located in Bear Lake County -in.county_name Beaufort County The dwelling unit is located in Beaufort County -in.county_name Beauregard Parish The dwelling unit is located in Beauregard Parish -in.county_name Beaver County The dwelling unit is located in Beaver County -in.county_name Beaverhead County The dwelling unit is located in Beaverhead County -in.county_name Becker County The dwelling unit is located in Becker County -in.county_name Beckham County The dwelling unit is located in Beckham County -in.county_name Bedford County The dwelling unit is located in Bedford County -in.county_name Bee County The dwelling unit is located in Bee County -in.county_name Belknap County The dwelling unit is located in Belknap County -in.county_name Bell County The dwelling unit is located in Bell County -in.county_name Belmont County The dwelling unit is located in Belmont County -in.county_name Beltrami County The dwelling unit is located in Beltrami County -in.county_name Ben Hill County The dwelling unit is located in Ben Hill County -in.county_name Benewah County The dwelling unit is located in Benewah County -in.county_name Bennett County The dwelling unit is located in Bennett County -in.county_name Bennington County The dwelling unit is located in Bennington County -in.county_name Benson County The dwelling unit is located in Benson County -in.county_name Bent County The dwelling unit is located in Bent County -in.county_name Benton County The dwelling unit is located in Benton County -in.county_name Benzie County The dwelling unit is located in Benzie County -in.county_name Bergen County The dwelling unit is located in Bergen County -in.county_name Berkeley County The dwelling unit is located in Berkeley County -in.county_name Berks County The dwelling unit is located in Berks County -in.county_name Berkshire County The dwelling unit is located in Berkshire County -in.county_name Bernalillo County The dwelling unit is located in Bernalillo County -in.county_name Berrien County The dwelling unit is located in Berrien County -in.county_name Bertie County The dwelling unit is located in Bertie County -in.county_name Bethel Census Area The dwelling unit is located in Bethel Census Area -in.county_name Bexar County The dwelling unit is located in Bexar County -in.county_name Bibb County The dwelling unit is located in Bibb County -in.county_name Bienville Parish The dwelling unit is located in Bienville Parish -in.county_name Big Horn County The dwelling unit is located in Big Horn County -in.county_name Big Stone County The dwelling unit is located in Big Stone County -in.county_name Billings County The dwelling unit is located in Billings County -in.county_name Bingham County The dwelling unit is located in Bingham County -in.county_name Black Hawk County The dwelling unit is located in Black Hawk County -in.county_name Blackford County The dwelling unit is located in Blackford County -in.county_name Bladen County The dwelling unit is located in Bladen County -in.county_name Blaine County The dwelling unit is located in Blaine County -in.county_name Blair County The dwelling unit is located in Blair County -in.county_name Blanco County The dwelling unit is located in Blanco County -in.county_name Bland County The dwelling unit is located in Bland County -in.county_name Bleckley County The dwelling unit is located in Bleckley County -in.county_name Bledsoe County The dwelling unit is located in Bledsoe County -in.county_name Blount County The dwelling unit is located in Blount County -in.county_name Blue Earth County The dwelling unit is located in Blue Earth County -in.county_name Boise County The dwelling unit is located in Boise County -in.county_name Bolivar County The dwelling unit is located in Bolivar County -in.county_name Bollinger County The dwelling unit is located in Bollinger County -in.county_name Bon Homme County The dwelling unit is located in Bon Homme County -in.county_name Bond County The dwelling unit is located in Bond County -in.county_name Bonner County The dwelling unit is located in Bonner County -in.county_name Bonneville County The dwelling unit is located in Bonneville County -in.county_name Boone County The dwelling unit is located in Boone County -in.county_name Borden County The dwelling unit is located in Borden County -in.county_name Bosque County The dwelling unit is located in Bosque County -in.county_name Bossier Parish The dwelling unit is located in Bossier Parish -in.county_name Botetourt County The dwelling unit is located in Botetourt County -in.county_name Bottineau County The dwelling unit is located in Bottineau County -in.county_name Boulder County The dwelling unit is located in Boulder County -in.county_name Boundary County The dwelling unit is located in Boundary County -in.county_name Bourbon County The dwelling unit is located in Bourbon County -in.county_name Bowie County The dwelling unit is located in Bowie County -in.county_name Bowman County The dwelling unit is located in Bowman County -in.county_name Box Butte County The dwelling unit is located in Box Butte County -in.county_name Box Elder County The dwelling unit is located in Box Elder County -in.county_name Boyd County The dwelling unit is located in Boyd County -in.county_name Boyle County The dwelling unit is located in Boyle County -in.county_name Bracken County The dwelling unit is located in Bracken County -in.county_name Bradford County The dwelling unit is located in Bradford County -in.county_name Bradley County The dwelling unit is located in Bradley County -in.county_name Branch County The dwelling unit is located in Branch County -in.county_name Brantley County The dwelling unit is located in Brantley County -in.county_name Braxton County The dwelling unit is located in Braxton County -in.county_name Brazoria County The dwelling unit is located in Brazoria County -in.county_name Brazos County The dwelling unit is located in Brazos County -in.county_name Breathitt County The dwelling unit is located in Breathitt County -in.county_name Breckinridge County The dwelling unit is located in Breckinridge County -in.county_name Bremer County The dwelling unit is located in Bremer County -in.county_name Brevard County The dwelling unit is located in Brevard County -in.county_name Brewster County The dwelling unit is located in Brewster County -in.county_name Briscoe County The dwelling unit is located in Briscoe County -in.county_name Bristol Bay Borough The dwelling unit is located in Bristol Bay Borough -in.county_name Bristol County The dwelling unit is located in Bristol County -in.county_name Bristol city The dwelling unit is located in Bristol city -in.county_name Broadwater County The dwelling unit is located in Broadwater County -in.county_name Bronx County The dwelling unit is located in Bronx County -in.county_name Brooke County The dwelling unit is located in Brooke County -in.county_name Brookings County The dwelling unit is located in Brookings County -in.county_name Brooks County The dwelling unit is located in Brooks County -in.county_name Broome County The dwelling unit is located in Broome County -in.county_name Broomfield County The dwelling unit is located in Broomfield County -in.county_name Broward County The dwelling unit is located in Broward County -in.county_name Brown County The dwelling unit is located in Brown County -in.county_name Brule County The dwelling unit is located in Brule County -in.county_name Brunswick County The dwelling unit is located in Brunswick County -in.county_name Bryan County The dwelling unit is located in Bryan County -in.county_name Buchanan County The dwelling unit is located in Buchanan County -in.county_name Buckingham County The dwelling unit is located in Buckingham County -in.county_name Bucks County The dwelling unit is located in Bucks County -in.county_name Buena Vista County The dwelling unit is located in Buena Vista County -in.county_name Buena Vista city The dwelling unit is located in Buena Vista city -in.county_name Buffalo County The dwelling unit is located in Buffalo County -in.county_name Bullitt County The dwelling unit is located in Bullitt County -in.county_name Bulloch County The dwelling unit is located in Bulloch County -in.county_name Bullock County The dwelling unit is located in Bullock County -in.county_name Buncombe County The dwelling unit is located in Buncombe County -in.county_name Bureau County The dwelling unit is located in Bureau County -in.county_name Burke County The dwelling unit is located in Burke County -in.county_name Burleigh County The dwelling unit is located in Burleigh County -in.county_name Burleson County The dwelling unit is located in Burleson County -in.county_name Burlington County The dwelling unit is located in Burlington County -in.county_name Burnet County The dwelling unit is located in Burnet County -in.county_name Burnett County The dwelling unit is located in Burnett County -in.county_name Burt County The dwelling unit is located in Burt County -in.county_name Butler County The dwelling unit is located in Butler County -in.county_name Butte County The dwelling unit is located in Butte County -in.county_name Butts County The dwelling unit is located in Butts County -in.county_name Cabarrus County The dwelling unit is located in Cabarrus County -in.county_name Cabell County The dwelling unit is located in Cabell County -in.county_name Cache County The dwelling unit is located in Cache County -in.county_name Caddo County The dwelling unit is located in Caddo County -in.county_name Caddo Parish The dwelling unit is located in Caddo Parish -in.county_name Calaveras County The dwelling unit is located in Calaveras County -in.county_name Calcasieu Parish The dwelling unit is located in Calcasieu Parish -in.county_name Caldwell County The dwelling unit is located in Caldwell County -in.county_name Caldwell Parish The dwelling unit is located in Caldwell Parish -in.county_name Caledonia County The dwelling unit is located in Caledonia County -in.county_name Calhoun County The dwelling unit is located in Calhoun County -in.county_name Callahan County The dwelling unit is located in Callahan County -in.county_name Callaway County The dwelling unit is located in Callaway County -in.county_name Calloway County The dwelling unit is located in Calloway County -in.county_name Calumet County The dwelling unit is located in Calumet County -in.county_name Calvert County The dwelling unit is located in Calvert County -in.county_name Camas County The dwelling unit is located in Camas County -in.county_name Cambria County The dwelling unit is located in Cambria County -in.county_name Camden County The dwelling unit is located in Camden County -in.county_name Cameron County The dwelling unit is located in Cameron County -in.county_name Cameron Parish The dwelling unit is located in Cameron Parish -in.county_name Camp County The dwelling unit is located in Camp County -in.county_name Campbell County The dwelling unit is located in Campbell County -in.county_name Canadian County The dwelling unit is located in Canadian County -in.county_name Candler County The dwelling unit is located in Candler County -in.county_name Cannon County The dwelling unit is located in Cannon County -in.county_name Canyon County The dwelling unit is located in Canyon County -in.county_name Cape Girardeau County The dwelling unit is located in Cape Girardeau County -in.county_name Cape May County The dwelling unit is located in Cape May County -in.county_name Carbon County The dwelling unit is located in Carbon County -in.county_name Caribou County The dwelling unit is located in Caribou County -in.county_name Carlisle County The dwelling unit is located in Carlisle County -in.county_name Carlton County The dwelling unit is located in Carlton County -in.county_name Caroline County The dwelling unit is located in Caroline County -in.county_name Carroll County The dwelling unit is located in Carroll County -in.county_name Carson City The dwelling unit is located in Carson City -in.county_name Carson County The dwelling unit is located in Carson County -in.county_name Carter County The dwelling unit is located in Carter County -in.county_name Carteret County The dwelling unit is located in Carteret County -in.county_name Carver County The dwelling unit is located in Carver County -in.county_name Cascade County The dwelling unit is located in Cascade County -in.county_name Casey County The dwelling unit is located in Casey County -in.county_name Cass County The dwelling unit is located in Cass County -in.county_name Cassia County The dwelling unit is located in Cassia County -in.county_name Castro County The dwelling unit is located in Castro County -in.county_name Caswell County The dwelling unit is located in Caswell County -in.county_name Catahoula Parish The dwelling unit is located in Catahoula Parish -in.county_name Catawba County The dwelling unit is located in Catawba County -in.county_name Catoosa County The dwelling unit is located in Catoosa County -in.county_name Catron County The dwelling unit is located in Catron County -in.county_name Cattaraugus County The dwelling unit is located in Cattaraugus County -in.county_name Cavalier County The dwelling unit is located in Cavalier County -in.county_name Cayuga County The dwelling unit is located in Cayuga County -in.county_name Cecil County The dwelling unit is located in Cecil County -in.county_name Cedar County The dwelling unit is located in Cedar County -in.county_name Centre County The dwelling unit is located in Centre County -in.county_name Cerro Gordo County The dwelling unit is located in Cerro Gordo County -in.county_name Chaffee County The dwelling unit is located in Chaffee County -in.county_name Chambers County The dwelling unit is located in Chambers County -in.county_name Champaign County The dwelling unit is located in Champaign County -in.county_name Chariton County The dwelling unit is located in Chariton County -in.county_name Charles City County The dwelling unit is located in Charles City County -in.county_name Charles County The dwelling unit is located in Charles County -in.county_name Charles Mix County The dwelling unit is located in Charles Mix County -in.county_name Charleston County The dwelling unit is located in Charleston County -in.county_name Charlevoix County The dwelling unit is located in Charlevoix County -in.county_name Charlotte County The dwelling unit is located in Charlotte County -in.county_name Charlottesville city The dwelling unit is located in Charlottesville city -in.county_name Charlton County The dwelling unit is located in Charlton County -in.county_name Chase County The dwelling unit is located in Chase County -in.county_name Chatham County The dwelling unit is located in Chatham County -in.county_name Chattahoochee County The dwelling unit is located in Chattahoochee County -in.county_name Chattooga County The dwelling unit is located in Chattooga County -in.county_name Chautauqua County The dwelling unit is located in Chautauqua County -in.county_name Chaves County The dwelling unit is located in Chaves County -in.county_name Cheatham County The dwelling unit is located in Cheatham County -in.county_name Cheboygan County The dwelling unit is located in Cheboygan County -in.county_name Chelan County The dwelling unit is located in Chelan County -in.county_name Chemung County The dwelling unit is located in Chemung County -in.county_name Chenango County The dwelling unit is located in Chenango County -in.county_name Cherokee County The dwelling unit is located in Cherokee County -in.county_name Cherry County The dwelling unit is located in Cherry County -in.county_name Chesapeake city The dwelling unit is located in Chesapeake city -in.county_name Cheshire County The dwelling unit is located in Cheshire County -in.county_name Chester County The dwelling unit is located in Chester County -in.county_name Chesterfield County The dwelling unit is located in Chesterfield County -in.county_name Cheyenne County The dwelling unit is located in Cheyenne County -in.county_name Chickasaw County The dwelling unit is located in Chickasaw County -in.county_name Chicot County The dwelling unit is located in Chicot County -in.county_name Childress County The dwelling unit is located in Childress County -in.county_name Chilton County The dwelling unit is located in Chilton County -in.county_name Chippewa County The dwelling unit is located in Chippewa County -in.county_name Chisago County The dwelling unit is located in Chisago County -in.county_name Chittenden County The dwelling unit is located in Chittenden County -in.county_name Choctaw County The dwelling unit is located in Choctaw County -in.county_name Chouteau County The dwelling unit is located in Chouteau County -in.county_name Chowan County The dwelling unit is located in Chowan County -in.county_name Christian County The dwelling unit is located in Christian County -in.county_name Churchill County The dwelling unit is located in Churchill County -in.county_name Cibola County The dwelling unit is located in Cibola County -in.county_name Cimarron County The dwelling unit is located in Cimarron County -in.county_name Citrus County The dwelling unit is located in Citrus County -in.county_name Clackamas County The dwelling unit is located in Clackamas County -in.county_name Claiborne County The dwelling unit is located in Claiborne County -in.county_name Claiborne Parish The dwelling unit is located in Claiborne Parish -in.county_name Clallam County The dwelling unit is located in Clallam County -in.county_name Clare County The dwelling unit is located in Clare County -in.county_name Clarendon County The dwelling unit is located in Clarendon County -in.county_name Clarion County The dwelling unit is located in Clarion County -in.county_name Clark County The dwelling unit is located in Clark County -in.county_name Clarke County The dwelling unit is located in Clarke County -in.county_name Clatsop County The dwelling unit is located in Clatsop County -in.county_name Clay County The dwelling unit is located in Clay County -in.county_name Clayton County The dwelling unit is located in Clayton County -in.county_name Clear Creek County The dwelling unit is located in Clear Creek County -in.county_name Clearfield County The dwelling unit is located in Clearfield County -in.county_name Clearwater County The dwelling unit is located in Clearwater County -in.county_name Cleburne County The dwelling unit is located in Cleburne County -in.county_name Clermont County The dwelling unit is located in Clermont County -in.county_name Cleveland County The dwelling unit is located in Cleveland County -in.county_name Clinch County The dwelling unit is located in Clinch County -in.county_name Clinton County The dwelling unit is located in Clinton County -in.county_name Cloud County The dwelling unit is located in Cloud County -in.county_name Coahoma County The dwelling unit is located in Coahoma County -in.county_name Coal County The dwelling unit is located in Coal County -in.county_name Cobb County The dwelling unit is located in Cobb County -in.county_name Cochise County The dwelling unit is located in Cochise County -in.county_name Cochran County The dwelling unit is located in Cochran County -in.county_name Cocke County The dwelling unit is located in Cocke County -in.county_name Coconino County The dwelling unit is located in Coconino County -in.county_name Codington County The dwelling unit is located in Codington County -in.county_name Coffee County The dwelling unit is located in Coffee County -in.county_name Coffey County The dwelling unit is located in Coffey County -in.county_name Coke County The dwelling unit is located in Coke County -in.county_name Colbert County The dwelling unit is located in Colbert County -in.county_name Cole County The dwelling unit is located in Cole County -in.county_name Coleman County The dwelling unit is located in Coleman County -in.county_name Coles County The dwelling unit is located in Coles County -in.county_name Colfax County The dwelling unit is located in Colfax County -in.county_name Colleton County The dwelling unit is located in Colleton County -in.county_name Collier County The dwelling unit is located in Collier County -in.county_name Collin County The dwelling unit is located in Collin County -in.county_name Collingsworth County The dwelling unit is located in Collingsworth County -in.county_name Colonial Heights city The dwelling unit is located in Colonial Heights city -in.county_name Colorado County The dwelling unit is located in Colorado County -in.county_name Colquitt County The dwelling unit is located in Colquitt County -in.county_name Columbia County The dwelling unit is located in Columbia County -in.county_name Columbiana County The dwelling unit is located in Columbiana County -in.county_name Columbus County The dwelling unit is located in Columbus County -in.county_name Colusa County The dwelling unit is located in Colusa County -in.county_name Comal County The dwelling unit is located in Comal County -in.county_name Comanche County The dwelling unit is located in Comanche County -in.county_name Concho County The dwelling unit is located in Concho County -in.county_name Concordia Parish The dwelling unit is located in Concordia Parish -in.county_name Conecuh County The dwelling unit is located in Conecuh County -in.county_name Conejos County The dwelling unit is located in Conejos County -in.county_name Contra Costa County The dwelling unit is located in Contra Costa County -in.county_name Converse County The dwelling unit is located in Converse County -in.county_name Conway County The dwelling unit is located in Conway County -in.county_name Cook County The dwelling unit is located in Cook County -in.county_name Cooke County The dwelling unit is located in Cooke County -in.county_name Cooper County The dwelling unit is located in Cooper County -in.county_name Coos County The dwelling unit is located in Coos County -in.county_name Coosa County The dwelling unit is located in Coosa County -in.county_name Copiah County The dwelling unit is located in Copiah County -in.county_name Corson County The dwelling unit is located in Corson County -in.county_name Cortland County The dwelling unit is located in Cortland County -in.county_name Coryell County The dwelling unit is located in Coryell County -in.county_name Coshocton County The dwelling unit is located in Coshocton County -in.county_name Costilla County The dwelling unit is located in Costilla County -in.county_name Cottle County The dwelling unit is located in Cottle County -in.county_name Cotton County The dwelling unit is located in Cotton County -in.county_name Cottonwood County The dwelling unit is located in Cottonwood County -in.county_name Covington County The dwelling unit is located in Covington County -in.county_name Covington city The dwelling unit is located in Covington city -in.county_name Coweta County The dwelling unit is located in Coweta County -in.county_name Cowley County The dwelling unit is located in Cowley County -in.county_name Cowlitz County The dwelling unit is located in Cowlitz County -in.county_name Craig County The dwelling unit is located in Craig County -in.county_name Craighead County The dwelling unit is located in Craighead County -in.county_name Crane County The dwelling unit is located in Crane County -in.county_name Craven County The dwelling unit is located in Craven County -in.county_name Crawford County The dwelling unit is located in Crawford County -in.county_name Creek County The dwelling unit is located in Creek County -in.county_name Crenshaw County The dwelling unit is located in Crenshaw County -in.county_name Crisp County The dwelling unit is located in Crisp County -in.county_name Crittenden County The dwelling unit is located in Crittenden County -in.county_name Crockett County The dwelling unit is located in Crockett County -in.county_name Crook County The dwelling unit is located in Crook County -in.county_name Crosby County The dwelling unit is located in Crosby County -in.county_name Cross County The dwelling unit is located in Cross County -in.county_name Crow Wing County The dwelling unit is located in Crow Wing County -in.county_name Crowley County The dwelling unit is located in Crowley County -in.county_name Culberson County The dwelling unit is located in Culberson County -in.county_name Cullman County The dwelling unit is located in Cullman County -in.county_name Culpeper County The dwelling unit is located in Culpeper County -in.county_name Cumberland County The dwelling unit is located in Cumberland County -in.county_name Cuming County The dwelling unit is located in Cuming County -in.county_name Currituck County The dwelling unit is located in Currituck County -in.county_name Curry County The dwelling unit is located in Curry County -in.county_name Custer County The dwelling unit is located in Custer County -in.county_name Cuyahoga County The dwelling unit is located in Cuyahoga County -in.county_name Dade County The dwelling unit is located in Dade County -in.county_name Daggett County The dwelling unit is located in Daggett County -in.county_name Dakota County The dwelling unit is located in Dakota County -in.county_name Dale County The dwelling unit is located in Dale County -in.county_name Dallam County The dwelling unit is located in Dallam County -in.county_name Dallas County The dwelling unit is located in Dallas County -in.county_name Dane County The dwelling unit is located in Dane County -in.county_name Daniels County The dwelling unit is located in Daniels County -in.county_name Danville city The dwelling unit is located in Danville city -in.county_name Dare County The dwelling unit is located in Dare County -in.county_name Darke County The dwelling unit is located in Darke County -in.county_name Darlington County The dwelling unit is located in Darlington County -in.county_name Dauphin County The dwelling unit is located in Dauphin County -in.county_name Davidson County The dwelling unit is located in Davidson County -in.county_name Davie County The dwelling unit is located in Davie County -in.county_name Daviess County The dwelling unit is located in Daviess County -in.county_name Davis County The dwelling unit is located in Davis County -in.county_name Davison County The dwelling unit is located in Davison County -in.county_name Dawes County The dwelling unit is located in Dawes County -in.county_name Dawson County The dwelling unit is located in Dawson County -in.county_name Day County The dwelling unit is located in Day County -in.county_name De Baca County The dwelling unit is located in De Baca County -in.county_name De Soto Parish The dwelling unit is located in De Soto Parish -in.county_name De Witt County The dwelling unit is located in De Witt County -in.county_name DeKalb County The dwelling unit is located in DeKalb County -in.county_name DeSoto County The dwelling unit is located in DeSoto County -in.county_name DeWitt County The dwelling unit is located in DeWitt County -in.county_name Deaf Smith County The dwelling unit is located in Deaf Smith County -in.county_name Dearborn County The dwelling unit is located in Dearborn County -in.county_name Decatur County The dwelling unit is located in Decatur County -in.county_name Deer Lodge County The dwelling unit is located in Deer Lodge County -in.county_name Defiance County The dwelling unit is located in Defiance County -in.county_name Del Norte County The dwelling unit is located in Del Norte County -in.county_name Delaware County The dwelling unit is located in Delaware County -in.county_name Delta County The dwelling unit is located in Delta County -in.county_name Denali Borough The dwelling unit is located in Denali Borough -in.county_name Dent County The dwelling unit is located in Dent County -in.county_name Denton County The dwelling unit is located in Denton County -in.county_name Denver County The dwelling unit is located in Denver County -in.county_name Des Moines County The dwelling unit is located in Des Moines County -in.county_name Deschutes County The dwelling unit is located in Deschutes County -in.county_name Desha County The dwelling unit is located in Desha County -in.county_name Deuel County The dwelling unit is located in Deuel County -in.county_name Dewey County The dwelling unit is located in Dewey County -in.county_name Dickens County The dwelling unit is located in Dickens County -in.county_name Dickenson County The dwelling unit is located in Dickenson County -in.county_name Dickey County The dwelling unit is located in Dickey County -in.county_name Dickinson County The dwelling unit is located in Dickinson County -in.county_name Dickson County The dwelling unit is located in Dickson County -in.county_name Dillingham Census Area The dwelling unit is located in Dillingham Census Area -in.county_name Dillon County The dwelling unit is located in Dillon County -in.county_name Dimmit County The dwelling unit is located in Dimmit County -in.county_name Dinwiddie County The dwelling unit is located in Dinwiddie County -in.county_name District of Columbia The dwelling unit is located in District of Columbia -in.county_name Divide County The dwelling unit is located in Divide County -in.county_name Dixie County The dwelling unit is located in Dixie County -in.county_name Dixon County The dwelling unit is located in Dixon County -in.county_name Doddridge County The dwelling unit is located in Doddridge County -in.county_name Dodge County The dwelling unit is located in Dodge County -in.county_name Dolores County The dwelling unit is located in Dolores County -in.county_name Dona Ana County The dwelling unit is located in Dona Ana County -in.county_name Doniphan County The dwelling unit is located in Doniphan County -in.county_name Donley County The dwelling unit is located in Donley County -in.county_name Dooly County The dwelling unit is located in Dooly County -in.county_name Door County The dwelling unit is located in Door County -in.county_name Dorchester County The dwelling unit is located in Dorchester County -in.county_name Dougherty County The dwelling unit is located in Dougherty County -in.county_name Douglas County The dwelling unit is located in Douglas County -in.county_name Drew County The dwelling unit is located in Drew County -in.county_name DuPage County The dwelling unit is located in DuPage County -in.county_name Dubois County The dwelling unit is located in Dubois County -in.county_name Dubuque County The dwelling unit is located in Dubuque County -in.county_name Duchesne County The dwelling unit is located in Duchesne County -in.county_name Dukes County The dwelling unit is located in Dukes County -in.county_name Dundy County The dwelling unit is located in Dundy County -in.county_name Dunklin County The dwelling unit is located in Dunklin County -in.county_name Dunn County The dwelling unit is located in Dunn County -in.county_name Duplin County The dwelling unit is located in Duplin County -in.county_name Durham County The dwelling unit is located in Durham County -in.county_name Dutchess County The dwelling unit is located in Dutchess County -in.county_name Duval County The dwelling unit is located in Duval County -in.county_name Dyer County The dwelling unit is located in Dyer County -in.county_name Eagle County The dwelling unit is located in Eagle County -in.county_name Early County The dwelling unit is located in Early County -in.county_name East Baton Rouge Parish The dwelling unit is located in East Baton Rouge Parish -in.county_name East Carroll Parish The dwelling unit is located in East Carroll Parish -in.county_name East Feliciana Parish The dwelling unit is located in East Feliciana Parish -in.county_name Eastland County The dwelling unit is located in Eastland County -in.county_name Eaton County The dwelling unit is located in Eaton County -in.county_name Eau Claire County The dwelling unit is located in Eau Claire County -in.county_name Echols County The dwelling unit is located in Echols County -in.county_name Ector County The dwelling unit is located in Ector County -in.county_name Eddy County The dwelling unit is located in Eddy County -in.county_name Edgar County The dwelling unit is located in Edgar County -in.county_name Edgecombe County The dwelling unit is located in Edgecombe County -in.county_name Edgefield County The dwelling unit is located in Edgefield County -in.county_name Edmonson County The dwelling unit is located in Edmonson County -in.county_name Edmunds County The dwelling unit is located in Edmunds County -in.county_name Edwards County The dwelling unit is located in Edwards County -in.county_name Effingham County The dwelling unit is located in Effingham County -in.county_name El Dorado County The dwelling unit is located in El Dorado County -in.county_name El Paso County The dwelling unit is located in El Paso County -in.county_name Elbert County The dwelling unit is located in Elbert County -in.county_name Elk County The dwelling unit is located in Elk County -in.county_name Elkhart County The dwelling unit is located in Elkhart County -in.county_name Elko County The dwelling unit is located in Elko County -in.county_name Elliott County The dwelling unit is located in Elliott County -in.county_name Ellis County The dwelling unit is located in Ellis County -in.county_name Ellsworth County The dwelling unit is located in Ellsworth County -in.county_name Elmore County The dwelling unit is located in Elmore County -in.county_name Emanuel County The dwelling unit is located in Emanuel County -in.county_name Emery County The dwelling unit is located in Emery County -in.county_name Emmet County The dwelling unit is located in Emmet County -in.county_name Emmons County The dwelling unit is located in Emmons County -in.county_name Emporia city The dwelling unit is located in Emporia city -in.county_name Erath County The dwelling unit is located in Erath County -in.county_name Erie County The dwelling unit is located in Erie County -in.county_name Escambia County The dwelling unit is located in Escambia County -in.county_name Esmeralda County The dwelling unit is located in Esmeralda County -in.county_name Essex County The dwelling unit is located in Essex County -in.county_name Estill County The dwelling unit is located in Estill County -in.county_name Etowah County The dwelling unit is located in Etowah County -in.county_name Eureka County The dwelling unit is located in Eureka County -in.county_name Evangeline Parish The dwelling unit is located in Evangeline Parish -in.county_name Evans County The dwelling unit is located in Evans County -in.county_name Fairbanks North Star Borough The dwelling unit is located in Fairbanks North Star Borough -in.county_name Fairfax County The dwelling unit is located in Fairfax County -in.county_name Fairfax city The dwelling unit is located in Fairfax city -in.county_name Fairfield County The dwelling unit is located in Fairfield County -in.county_name Fall River County The dwelling unit is located in Fall River County -in.county_name Fallon County The dwelling unit is located in Fallon County -in.county_name Falls Church city The dwelling unit is located in Falls Church city -in.county_name Falls County The dwelling unit is located in Falls County -in.county_name Fannin County The dwelling unit is located in Fannin County -in.county_name Faribault County The dwelling unit is located in Faribault County -in.county_name Faulk County The dwelling unit is located in Faulk County -in.county_name Faulkner County The dwelling unit is located in Faulkner County -in.county_name Fauquier County The dwelling unit is located in Fauquier County -in.county_name Fayette County The dwelling unit is located in Fayette County -in.county_name Fentress County The dwelling unit is located in Fentress County -in.county_name Fergus County The dwelling unit is located in Fergus County -in.county_name Ferry County The dwelling unit is located in Ferry County -in.county_name Fillmore County The dwelling unit is located in Fillmore County -in.county_name Finney County The dwelling unit is located in Finney County -in.county_name Fisher County The dwelling unit is located in Fisher County -in.county_name Flagler County The dwelling unit is located in Flagler County -in.county_name Flathead County The dwelling unit is located in Flathead County -in.county_name Fleming County The dwelling unit is located in Fleming County -in.county_name Florence County The dwelling unit is located in Florence County -in.county_name Floyd County The dwelling unit is located in Floyd County -in.county_name Fluvanna County The dwelling unit is located in Fluvanna County -in.county_name Foard County The dwelling unit is located in Foard County -in.county_name Fond du Lac County The dwelling unit is located in Fond du Lac County -in.county_name Ford County The dwelling unit is located in Ford County -in.county_name Forest County The dwelling unit is located in Forest County -in.county_name Forrest County The dwelling unit is located in Forrest County -in.county_name Forsyth County The dwelling unit is located in Forsyth County -in.county_name Fort Bend County The dwelling unit is located in Fort Bend County -in.county_name Foster County The dwelling unit is located in Foster County -in.county_name Fountain County The dwelling unit is located in Fountain County -in.county_name Franklin County The dwelling unit is located in Franklin County -in.county_name Franklin Parish The dwelling unit is located in Franklin Parish -in.county_name Franklin city The dwelling unit is located in Franklin city -in.county_name Frederick County The dwelling unit is located in Frederick County -in.county_name Fredericksburg city The dwelling unit is located in Fredericksburg city -in.county_name Freeborn County The dwelling unit is located in Freeborn County -in.county_name Freestone County The dwelling unit is located in Freestone County -in.county_name Fremont County The dwelling unit is located in Fremont County -in.county_name Fresno County The dwelling unit is located in Fresno County -in.county_name Frio County The dwelling unit is located in Frio County -in.county_name Frontier County The dwelling unit is located in Frontier County -in.county_name Fulton County The dwelling unit is located in Fulton County -in.county_name Furnas County The dwelling unit is located in Furnas County -in.county_name Gadsden County The dwelling unit is located in Gadsden County -in.county_name Gage County The dwelling unit is located in Gage County -in.county_name Gaines County The dwelling unit is located in Gaines County -in.county_name Galax city The dwelling unit is located in Galax city -in.county_name Gallatin County The dwelling unit is located in Gallatin County -in.county_name Gallia County The dwelling unit is located in Gallia County -in.county_name Galveston County The dwelling unit is located in Galveston County -in.county_name Garden County The dwelling unit is located in Garden County -in.county_name Garfield County The dwelling unit is located in Garfield County -in.county_name Garland County The dwelling unit is located in Garland County -in.county_name Garrard County The dwelling unit is located in Garrard County -in.county_name Garrett County The dwelling unit is located in Garrett County -in.county_name Garvin County The dwelling unit is located in Garvin County -in.county_name Garza County The dwelling unit is located in Garza County -in.county_name Gasconade County The dwelling unit is located in Gasconade County -in.county_name Gaston County The dwelling unit is located in Gaston County -in.county_name Gates County The dwelling unit is located in Gates County -in.county_name Geary County The dwelling unit is located in Geary County -in.county_name Geauga County The dwelling unit is located in Geauga County -in.county_name Gem County The dwelling unit is located in Gem County -in.county_name Genesee County The dwelling unit is located in Genesee County -in.county_name Geneva County The dwelling unit is located in Geneva County -in.county_name Gentry County The dwelling unit is located in Gentry County -in.county_name George County The dwelling unit is located in George County -in.county_name Georgetown County The dwelling unit is located in Georgetown County -in.county_name Gibson County The dwelling unit is located in Gibson County -in.county_name Gila County The dwelling unit is located in Gila County -in.county_name Gilchrist County The dwelling unit is located in Gilchrist County -in.county_name Giles County The dwelling unit is located in Giles County -in.county_name Gillespie County The dwelling unit is located in Gillespie County -in.county_name Gilliam County The dwelling unit is located in Gilliam County -in.county_name Gilmer County The dwelling unit is located in Gilmer County -in.county_name Gilpin County The dwelling unit is located in Gilpin County -in.county_name Glacier County The dwelling unit is located in Glacier County -in.county_name Glades County The dwelling unit is located in Glades County -in.county_name Gladwin County The dwelling unit is located in Gladwin County -in.county_name Glascock County The dwelling unit is located in Glascock County -in.county_name Glasscock County The dwelling unit is located in Glasscock County -in.county_name Glenn County The dwelling unit is located in Glenn County -in.county_name Gloucester County The dwelling unit is located in Gloucester County -in.county_name Glynn County The dwelling unit is located in Glynn County -in.county_name Gogebic County The dwelling unit is located in Gogebic County -in.county_name Golden Valley County The dwelling unit is located in Golden Valley County -in.county_name Goliad County The dwelling unit is located in Goliad County -in.county_name Gonzales County The dwelling unit is located in Gonzales County -in.county_name Goochland County The dwelling unit is located in Goochland County -in.county_name Goodhue County The dwelling unit is located in Goodhue County -in.county_name Gooding County The dwelling unit is located in Gooding County -in.county_name Gordon County The dwelling unit is located in Gordon County -in.county_name Goshen County The dwelling unit is located in Goshen County -in.county_name Gosper County The dwelling unit is located in Gosper County -in.county_name Gove County The dwelling unit is located in Gove County -in.county_name Grady County The dwelling unit is located in Grady County -in.county_name Grafton County The dwelling unit is located in Grafton County -in.county_name Graham County The dwelling unit is located in Graham County -in.county_name Grainger County The dwelling unit is located in Grainger County -in.county_name Grand County The dwelling unit is located in Grand County -in.county_name Grand Forks County The dwelling unit is located in Grand Forks County -in.county_name Grand Isle County The dwelling unit is located in Grand Isle County -in.county_name Grand Traverse County The dwelling unit is located in Grand Traverse County -in.county_name Granite County The dwelling unit is located in Granite County -in.county_name Grant County The dwelling unit is located in Grant County -in.county_name Grant Parish The dwelling unit is located in Grant Parish -in.county_name Granville County The dwelling unit is located in Granville County -in.county_name Gratiot County The dwelling unit is located in Gratiot County -in.county_name Graves County The dwelling unit is located in Graves County -in.county_name Gray County The dwelling unit is located in Gray County -in.county_name Grays Harbor County The dwelling unit is located in Grays Harbor County -in.county_name Grayson County The dwelling unit is located in Grayson County -in.county_name Greeley County The dwelling unit is located in Greeley County -in.county_name Green County The dwelling unit is located in Green County -in.county_name Green Lake County The dwelling unit is located in Green Lake County -in.county_name Greenbrier County The dwelling unit is located in Greenbrier County -in.county_name Greene County The dwelling unit is located in Greene County -in.county_name Greenlee County The dwelling unit is located in Greenlee County -in.county_name Greensville County The dwelling unit is located in Greensville County -in.county_name Greenup County The dwelling unit is located in Greenup County -in.county_name Greenville County The dwelling unit is located in Greenville County -in.county_name Greenwood County The dwelling unit is located in Greenwood County -in.county_name Greer County The dwelling unit is located in Greer County -in.county_name Gregg County The dwelling unit is located in Gregg County -in.county_name Gregory County The dwelling unit is located in Gregory County -in.county_name Grenada County The dwelling unit is located in Grenada County -in.county_name Griggs County The dwelling unit is located in Griggs County -in.county_name Grimes County The dwelling unit is located in Grimes County -in.county_name Grundy County The dwelling unit is located in Grundy County -in.county_name Guadalupe County The dwelling unit is located in Guadalupe County -in.county_name Guernsey County The dwelling unit is located in Guernsey County -in.county_name Guilford County The dwelling unit is located in Guilford County -in.county_name Gulf County The dwelling unit is located in Gulf County -in.county_name Gunnison County The dwelling unit is located in Gunnison County -in.county_name Guthrie County The dwelling unit is located in Guthrie County -in.county_name Gwinnett County The dwelling unit is located in Gwinnett County -in.county_name Haakon County The dwelling unit is located in Haakon County -in.county_name Habersham County The dwelling unit is located in Habersham County -in.county_name Haines Borough The dwelling unit is located in Haines Borough -in.county_name Hale County The dwelling unit is located in Hale County -in.county_name Halifax County The dwelling unit is located in Halifax County -in.county_name Hall County The dwelling unit is located in Hall County -in.county_name Hamblen County The dwelling unit is located in Hamblen County -in.county_name Hamilton County The dwelling unit is located in Hamilton County -in.county_name Hamlin County The dwelling unit is located in Hamlin County -in.county_name Hampden County The dwelling unit is located in Hampden County -in.county_name Hampshire County The dwelling unit is located in Hampshire County -in.county_name Hampton County The dwelling unit is located in Hampton County -in.county_name Hampton city The dwelling unit is located in Hampton city -in.county_name Hancock County The dwelling unit is located in Hancock County -in.county_name Hand County The dwelling unit is located in Hand County -in.county_name Hanover County The dwelling unit is located in Hanover County -in.county_name Hansford County The dwelling unit is located in Hansford County -in.county_name Hanson County The dwelling unit is located in Hanson County -in.county_name Haralson County The dwelling unit is located in Haralson County -in.county_name Hardee County The dwelling unit is located in Hardee County -in.county_name Hardeman County The dwelling unit is located in Hardeman County -in.county_name Hardin County The dwelling unit is located in Hardin County -in.county_name Harding County The dwelling unit is located in Harding County -in.county_name Hardy County The dwelling unit is located in Hardy County -in.county_name Harford County The dwelling unit is located in Harford County -in.county_name Harlan County The dwelling unit is located in Harlan County -in.county_name Harmon County The dwelling unit is located in Harmon County -in.county_name Harnett County The dwelling unit is located in Harnett County -in.county_name Harney County The dwelling unit is located in Harney County -in.county_name Harper County The dwelling unit is located in Harper County -in.county_name Harris County The dwelling unit is located in Harris County -in.county_name Harrison County The dwelling unit is located in Harrison County -in.county_name Harrisonburg city The dwelling unit is located in Harrisonburg city -in.county_name Hart County The dwelling unit is located in Hart County -in.county_name Hartford County The dwelling unit is located in Hartford County -in.county_name Hartley County The dwelling unit is located in Hartley County -in.county_name Harvey County The dwelling unit is located in Harvey County -in.county_name Haskell County The dwelling unit is located in Haskell County -in.county_name Hawaii County The dwelling unit is located in Hawaii County -in.county_name Hawkins County The dwelling unit is located in Hawkins County -in.county_name Hayes County The dwelling unit is located in Hayes County -in.county_name Hays County The dwelling unit is located in Hays County -in.county_name Haywood County The dwelling unit is located in Haywood County -in.county_name Heard County The dwelling unit is located in Heard County -in.county_name Hemphill County The dwelling unit is located in Hemphill County -in.county_name Hempstead County The dwelling unit is located in Hempstead County -in.county_name Henderson County The dwelling unit is located in Henderson County -in.county_name Hendricks County The dwelling unit is located in Hendricks County -in.county_name Hendry County The dwelling unit is located in Hendry County -in.county_name Hennepin County The dwelling unit is located in Hennepin County -in.county_name Henrico County The dwelling unit is located in Henrico County -in.county_name Henry County The dwelling unit is located in Henry County -in.county_name Herkimer County The dwelling unit is located in Herkimer County -in.county_name Hernando County The dwelling unit is located in Hernando County -in.county_name Hertford County The dwelling unit is located in Hertford County -in.county_name Hettinger County The dwelling unit is located in Hettinger County -in.county_name Hickman County The dwelling unit is located in Hickman County -in.county_name Hickory County The dwelling unit is located in Hickory County -in.county_name Hidalgo County The dwelling unit is located in Hidalgo County -in.county_name Highland County The dwelling unit is located in Highland County -in.county_name Highlands County The dwelling unit is located in Highlands County -in.county_name Hill County The dwelling unit is located in Hill County -in.county_name Hillsborough County The dwelling unit is located in Hillsborough County -in.county_name Hillsdale County The dwelling unit is located in Hillsdale County -in.county_name Hinds County The dwelling unit is located in Hinds County -in.county_name Hinsdale County The dwelling unit is located in Hinsdale County -in.county_name Hitchcock County The dwelling unit is located in Hitchcock County -in.county_name Hocking County The dwelling unit is located in Hocking County -in.county_name Hockley County The dwelling unit is located in Hockley County -in.county_name Hodgeman County The dwelling unit is located in Hodgeman County -in.county_name Hoke County The dwelling unit is located in Hoke County -in.county_name Holmes County The dwelling unit is located in Holmes County -in.county_name Holt County The dwelling unit is located in Holt County -in.county_name Honolulu County The dwelling unit is located in Honolulu County -in.county_name Hood County The dwelling unit is located in Hood County -in.county_name Hood River County The dwelling unit is located in Hood River County -in.county_name Hooker County The dwelling unit is located in Hooker County -in.county_name Hoonah-Angoon Census Area The dwelling unit is located in Hoonah-Angoon Census Area -in.county_name Hopewell city The dwelling unit is located in Hopewell city -in.county_name Hopkins County The dwelling unit is located in Hopkins County -in.county_name Horry County The dwelling unit is located in Horry County -in.county_name Hot Spring County The dwelling unit is located in Hot Spring County -in.county_name Hot Springs County The dwelling unit is located in Hot Springs County -in.county_name Houghton County The dwelling unit is located in Houghton County -in.county_name Houston County The dwelling unit is located in Houston County -in.county_name Howard County The dwelling unit is located in Howard County -in.county_name Howell County The dwelling unit is located in Howell County -in.county_name Hubbard County The dwelling unit is located in Hubbard County -in.county_name Hudson County The dwelling unit is located in Hudson County -in.county_name Hudspeth County The dwelling unit is located in Hudspeth County -in.county_name Huerfano County The dwelling unit is located in Huerfano County -in.county_name Hughes County The dwelling unit is located in Hughes County -in.county_name Humboldt County The dwelling unit is located in Humboldt County -in.county_name Humphreys County The dwelling unit is located in Humphreys County -in.county_name Hunt County The dwelling unit is located in Hunt County -in.county_name Hunterdon County The dwelling unit is located in Hunterdon County -in.county_name Huntingdon County The dwelling unit is located in Huntingdon County -in.county_name Huntington County The dwelling unit is located in Huntington County -in.county_name Huron County The dwelling unit is located in Huron County -in.county_name Hutchinson County The dwelling unit is located in Hutchinson County -in.county_name Hyde County The dwelling unit is located in Hyde County -in.county_name Iberia Parish The dwelling unit is located in Iberia Parish -in.county_name Iberville Parish The dwelling unit is located in Iberville Parish -in.county_name Ida County The dwelling unit is located in Ida County -in.county_name Idaho County The dwelling unit is located in Idaho County -in.county_name Imperial County The dwelling unit is located in Imperial County -in.county_name Independence County The dwelling unit is located in Independence County -in.county_name Indian River County The dwelling unit is located in Indian River County -in.county_name Indiana County The dwelling unit is located in Indiana County -in.county_name Ingham County The dwelling unit is located in Ingham County -in.county_name Inyo County The dwelling unit is located in Inyo County -in.county_name Ionia County The dwelling unit is located in Ionia County -in.county_name Iosco County The dwelling unit is located in Iosco County -in.county_name Iowa County The dwelling unit is located in Iowa County -in.county_name Iredell County The dwelling unit is located in Iredell County -in.county_name Irion County The dwelling unit is located in Irion County -in.county_name Iron County The dwelling unit is located in Iron County -in.county_name Iroquois County The dwelling unit is located in Iroquois County -in.county_name Irwin County The dwelling unit is located in Irwin County -in.county_name Isabella County The dwelling unit is located in Isabella County -in.county_name Isanti County The dwelling unit is located in Isanti County -in.county_name Island County The dwelling unit is located in Island County -in.county_name Isle of Wight County The dwelling unit is located in Isle of Wight County -in.county_name Issaquena County The dwelling unit is located in Issaquena County -in.county_name Itasca County The dwelling unit is located in Itasca County -in.county_name Itawamba County The dwelling unit is located in Itawamba County -in.county_name Izard County The dwelling unit is located in Izard County -in.county_name Jack County The dwelling unit is located in Jack County -in.county_name Jackson County The dwelling unit is located in Jackson County -in.county_name Jackson Parish The dwelling unit is located in Jackson Parish -in.county_name James City County The dwelling unit is located in James City County -in.county_name Jasper County The dwelling unit is located in Jasper County -in.county_name Jay County The dwelling unit is located in Jay County -in.county_name Jeff Davis County The dwelling unit is located in Jeff Davis County -in.county_name Jefferson County The dwelling unit is located in Jefferson County -in.county_name Jefferson Davis County The dwelling unit is located in Jefferson Davis County -in.county_name Jefferson Davis Parish The dwelling unit is located in Jefferson Davis Parish -in.county_name Jefferson Parish The dwelling unit is located in Jefferson Parish -in.county_name Jenkins County The dwelling unit is located in Jenkins County -in.county_name Jennings County The dwelling unit is located in Jennings County -in.county_name Jerauld County The dwelling unit is located in Jerauld County -in.county_name Jerome County The dwelling unit is located in Jerome County -in.county_name Jersey County The dwelling unit is located in Jersey County -in.county_name Jessamine County The dwelling unit is located in Jessamine County -in.county_name Jewell County The dwelling unit is located in Jewell County -in.county_name Jim Hogg County The dwelling unit is located in Jim Hogg County -in.county_name Jim Wells County The dwelling unit is located in Jim Wells County -in.county_name Jo Daviess County The dwelling unit is located in Jo Daviess County -in.county_name Johnson County The dwelling unit is located in Johnson County -in.county_name Johnston County The dwelling unit is located in Johnston County -in.county_name Jones County The dwelling unit is located in Jones County -in.county_name Josephine County The dwelling unit is located in Josephine County -in.county_name Juab County The dwelling unit is located in Juab County -in.county_name Judith Basin County The dwelling unit is located in Judith Basin County -in.county_name Juneau City and Borough The dwelling unit is located in Juneau City and Borough -in.county_name Juneau County The dwelling unit is located in Juneau County -in.county_name Juniata County The dwelling unit is located in Juniata County -in.county_name Kalamazoo County The dwelling unit is located in Kalamazoo County -in.county_name Kalkaska County The dwelling unit is located in Kalkaska County -in.county_name Kanabec County The dwelling unit is located in Kanabec County -in.county_name Kanawha County The dwelling unit is located in Kanawha County -in.county_name Kandiyohi County The dwelling unit is located in Kandiyohi County -in.county_name Kane County The dwelling unit is located in Kane County -in.county_name Kankakee County The dwelling unit is located in Kankakee County -in.county_name Karnes County The dwelling unit is located in Karnes County -in.county_name Kauai County The dwelling unit is located in Kauai County -in.county_name Kaufman County The dwelling unit is located in Kaufman County -in.county_name Kay County The dwelling unit is located in Kay County -in.county_name Kearney County The dwelling unit is located in Kearney County -in.county_name Kearny County The dwelling unit is located in Kearny County -in.county_name Keith County The dwelling unit is located in Keith County -in.county_name Kemper County The dwelling unit is located in Kemper County -in.county_name Kenai Peninsula Borough The dwelling unit is located in Kenai Peninsula Borough -in.county_name Kendall County The dwelling unit is located in Kendall County -in.county_name Kenedy County The dwelling unit is located in Kenedy County -in.county_name Kennebec County The dwelling unit is located in Kennebec County -in.county_name Kenosha County The dwelling unit is located in Kenosha County -in.county_name Kent County The dwelling unit is located in Kent County -in.county_name Kenton County The dwelling unit is located in Kenton County -in.county_name Keokuk County The dwelling unit is located in Keokuk County -in.county_name Kern County The dwelling unit is located in Kern County -in.county_name Kerr County The dwelling unit is located in Kerr County -in.county_name Kershaw County The dwelling unit is located in Kershaw County -in.county_name Ketchikan Gateway Borough The dwelling unit is located in Ketchikan Gateway Borough -in.county_name Kewaunee County The dwelling unit is located in Kewaunee County -in.county_name Keweenaw County The dwelling unit is located in Keweenaw County -in.county_name Keya Paha County The dwelling unit is located in Keya Paha County -in.county_name Kidder County The dwelling unit is located in Kidder County -in.county_name Kimball County The dwelling unit is located in Kimball County -in.county_name Kimble County The dwelling unit is located in Kimble County -in.county_name King County The dwelling unit is located in King County -in.county_name King George County The dwelling unit is located in King George County -in.county_name King William County The dwelling unit is located in King William County -in.county_name King and Queen County The dwelling unit is located in King and Queen County -in.county_name Kingfisher County The dwelling unit is located in Kingfisher County -in.county_name Kingman County The dwelling unit is located in Kingman County -in.county_name Kings County The dwelling unit is located in Kings County -in.county_name Kingsbury County The dwelling unit is located in Kingsbury County -in.county_name Kinney County The dwelling unit is located in Kinney County -in.county_name Kiowa County The dwelling unit is located in Kiowa County -in.county_name Kit Carson County The dwelling unit is located in Kit Carson County -in.county_name Kitsap County The dwelling unit is located in Kitsap County -in.county_name Kittitas County The dwelling unit is located in Kittitas County -in.county_name Kittson County The dwelling unit is located in Kittson County -in.county_name Klamath County The dwelling unit is located in Klamath County -in.county_name Kleberg County The dwelling unit is located in Kleberg County -in.county_name Klickitat County The dwelling unit is located in Klickitat County -in.county_name Knott County The dwelling unit is located in Knott County -in.county_name Knox County The dwelling unit is located in Knox County -in.county_name Kodiak Island Borough The dwelling unit is located in Kodiak Island Borough -in.county_name Koochiching County The dwelling unit is located in Koochiching County -in.county_name Kootenai County The dwelling unit is located in Kootenai County -in.county_name Kosciusko County The dwelling unit is located in Kosciusko County -in.county_name Kossuth County The dwelling unit is located in Kossuth County -in.county_name Kusilvak Census Area The dwelling unit is located in Kusilvak Census Area -in.county_name La Crosse County The dwelling unit is located in La Crosse County -in.county_name La Paz County The dwelling unit is located in La Paz County -in.county_name La Plata County The dwelling unit is located in La Plata County -in.county_name La Salle County The dwelling unit is located in La Salle County -in.county_name La Salle Parish The dwelling unit is located in La Salle Parish -in.county_name LaGrange County The dwelling unit is located in LaGrange County -in.county_name LaMoure County The dwelling unit is located in LaMoure County -in.county_name LaPorte County The dwelling unit is located in LaPorte County -in.county_name LaSalle County The dwelling unit is located in LaSalle County -in.county_name Labette County The dwelling unit is located in Labette County -in.county_name Lac qui Parle County The dwelling unit is located in Lac qui Parle County -in.county_name Lackawanna County The dwelling unit is located in Lackawanna County -in.county_name Laclede County The dwelling unit is located in Laclede County -in.county_name Lafayette County The dwelling unit is located in Lafayette County -in.county_name Lafayette Parish The dwelling unit is located in Lafayette Parish -in.county_name Lafourche Parish The dwelling unit is located in Lafourche Parish -in.county_name Lake County The dwelling unit is located in Lake County -in.county_name Lake and Peninsula Borough The dwelling unit is located in Lake and Peninsula Borough -in.county_name Lake of the Woods County The dwelling unit is located in Lake of the Woods County -in.county_name Lamar County The dwelling unit is located in Lamar County -in.county_name Lamb County The dwelling unit is located in Lamb County -in.county_name Lamoille County The dwelling unit is located in Lamoille County -in.county_name Lampasas County The dwelling unit is located in Lampasas County -in.county_name Lancaster County The dwelling unit is located in Lancaster County -in.county_name Lander County The dwelling unit is located in Lander County -in.county_name Lane County The dwelling unit is located in Lane County -in.county_name Langlade County The dwelling unit is located in Langlade County -in.county_name Lanier County The dwelling unit is located in Lanier County -in.county_name Lapeer County The dwelling unit is located in Lapeer County -in.county_name Laramie County The dwelling unit is located in Laramie County -in.county_name Larimer County The dwelling unit is located in Larimer County -in.county_name Larue County The dwelling unit is located in Larue County -in.county_name Las Animas County The dwelling unit is located in Las Animas County -in.county_name Lassen County The dwelling unit is located in Lassen County -in.county_name Latah County The dwelling unit is located in Latah County -in.county_name Latimer County The dwelling unit is located in Latimer County -in.county_name Lauderdale County The dwelling unit is located in Lauderdale County -in.county_name Laurel County The dwelling unit is located in Laurel County -in.county_name Laurens County The dwelling unit is located in Laurens County -in.county_name Lavaca County The dwelling unit is located in Lavaca County -in.county_name Lawrence County The dwelling unit is located in Lawrence County -in.county_name Le Flore County The dwelling unit is located in Le Flore County -in.county_name Le Sueur County The dwelling unit is located in Le Sueur County -in.county_name Lea County The dwelling unit is located in Lea County -in.county_name Leake County The dwelling unit is located in Leake County -in.county_name Leavenworth County The dwelling unit is located in Leavenworth County -in.county_name Lebanon County The dwelling unit is located in Lebanon County -in.county_name Lee County The dwelling unit is located in Lee County -in.county_name Leelanau County The dwelling unit is located in Leelanau County -in.county_name Leflore County The dwelling unit is located in Leflore County -in.county_name Lehigh County The dwelling unit is located in Lehigh County -in.county_name Lemhi County The dwelling unit is located in Lemhi County -in.county_name Lenawee County The dwelling unit is located in Lenawee County -in.county_name Lenoir County The dwelling unit is located in Lenoir County -in.county_name Leon County The dwelling unit is located in Leon County -in.county_name Leslie County The dwelling unit is located in Leslie County -in.county_name Letcher County The dwelling unit is located in Letcher County -in.county_name Levy County The dwelling unit is located in Levy County -in.county_name Lewis County The dwelling unit is located in Lewis County -in.county_name Lewis and Clark County The dwelling unit is located in Lewis and Clark County -in.county_name Lexington County The dwelling unit is located in Lexington County -in.county_name Lexington city The dwelling unit is located in Lexington city -in.county_name Liberty County The dwelling unit is located in Liberty County -in.county_name Licking County The dwelling unit is located in Licking County -in.county_name Limestone County The dwelling unit is located in Limestone County -in.county_name Lincoln County The dwelling unit is located in Lincoln County -in.county_name Lincoln Parish The dwelling unit is located in Lincoln Parish -in.county_name Linn County The dwelling unit is located in Linn County -in.county_name Lipscomb County The dwelling unit is located in Lipscomb County -in.county_name Litchfield County The dwelling unit is located in Litchfield County -in.county_name Little River County The dwelling unit is located in Little River County -in.county_name Live Oak County The dwelling unit is located in Live Oak County -in.county_name Livingston County The dwelling unit is located in Livingston County -in.county_name Livingston Parish The dwelling unit is located in Livingston Parish -in.county_name Llano County The dwelling unit is located in Llano County -in.county_name Logan County The dwelling unit is located in Logan County -in.county_name Long County The dwelling unit is located in Long County -in.county_name Lonoke County The dwelling unit is located in Lonoke County -in.county_name Lorain County The dwelling unit is located in Lorain County -in.county_name Los Alamos County The dwelling unit is located in Los Alamos County -in.county_name Los Angeles County The dwelling unit is located in Los Angeles County -in.county_name Loudon County The dwelling unit is located in Loudon County -in.county_name Loudoun County The dwelling unit is located in Loudoun County -in.county_name Louisa County The dwelling unit is located in Louisa County -in.county_name Loup County The dwelling unit is located in Loup County -in.county_name Love County The dwelling unit is located in Love County -in.county_name Lowndes County The dwelling unit is located in Lowndes County -in.county_name Lubbock County The dwelling unit is located in Lubbock County -in.county_name Lucas County The dwelling unit is located in Lucas County -in.county_name Luce County The dwelling unit is located in Luce County -in.county_name Lumpkin County The dwelling unit is located in Lumpkin County -in.county_name Luna County The dwelling unit is located in Luna County -in.county_name Lunenburg County The dwelling unit is located in Lunenburg County -in.county_name Luzerne County The dwelling unit is located in Luzerne County -in.county_name Lycoming County The dwelling unit is located in Lycoming County -in.county_name Lyman County The dwelling unit is located in Lyman County -in.county_name Lynchburg city The dwelling unit is located in Lynchburg city -in.county_name Lynn County The dwelling unit is located in Lynn County -in.county_name Lyon County The dwelling unit is located in Lyon County -in.county_name Mackinac County The dwelling unit is located in Mackinac County -in.county_name Macomb County The dwelling unit is located in Macomb County -in.county_name Macon County The dwelling unit is located in Macon County -in.county_name Macoupin County The dwelling unit is located in Macoupin County -in.county_name Madera County The dwelling unit is located in Madera County -in.county_name Madison County The dwelling unit is located in Madison County -in.county_name Madison Parish The dwelling unit is located in Madison Parish -in.county_name Magoffin County The dwelling unit is located in Magoffin County -in.county_name Mahaska County The dwelling unit is located in Mahaska County -in.county_name Mahnomen County The dwelling unit is located in Mahnomen County -in.county_name Mahoning County The dwelling unit is located in Mahoning County -in.county_name Major County The dwelling unit is located in Major County -in.county_name Malheur County The dwelling unit is located in Malheur County -in.county_name Manassas Park city The dwelling unit is located in Manassas Park city -in.county_name Manassas city The dwelling unit is located in Manassas city -in.county_name Manatee County The dwelling unit is located in Manatee County -in.county_name Manistee County The dwelling unit is located in Manistee County -in.county_name Manitowoc County The dwelling unit is located in Manitowoc County -in.county_name Marathon County The dwelling unit is located in Marathon County -in.county_name Marengo County The dwelling unit is located in Marengo County -in.county_name Maricopa County The dwelling unit is located in Maricopa County -in.county_name Maries County The dwelling unit is located in Maries County -in.county_name Marin County The dwelling unit is located in Marin County -in.county_name Marinette County The dwelling unit is located in Marinette County -in.county_name Marion County The dwelling unit is located in Marion County -in.county_name Mariposa County The dwelling unit is located in Mariposa County -in.county_name Marlboro County The dwelling unit is located in Marlboro County -in.county_name Marquette County The dwelling unit is located in Marquette County -in.county_name Marshall County The dwelling unit is located in Marshall County -in.county_name Martin County The dwelling unit is located in Martin County -in.county_name Martinsville city The dwelling unit is located in Martinsville city -in.county_name Mason County The dwelling unit is located in Mason County -in.county_name Massac County The dwelling unit is located in Massac County -in.county_name Matagorda County The dwelling unit is located in Matagorda County -in.county_name Matanuska-Susitna Borough The dwelling unit is located in Matanuska-Susitna Borough -in.county_name Mathews County The dwelling unit is located in Mathews County -in.county_name Maui County The dwelling unit is located in Maui County -in.county_name Maury County The dwelling unit is located in Maury County -in.county_name Maverick County The dwelling unit is located in Maverick County -in.county_name Mayes County The dwelling unit is located in Mayes County -in.county_name McClain County The dwelling unit is located in McClain County -in.county_name McCone County The dwelling unit is located in McCone County -in.county_name McCook County The dwelling unit is located in McCook County -in.county_name McCormick County The dwelling unit is located in McCormick County -in.county_name McCracken County The dwelling unit is located in McCracken County -in.county_name McCreary County The dwelling unit is located in McCreary County -in.county_name McCulloch County The dwelling unit is located in McCulloch County -in.county_name McCurtain County The dwelling unit is located in McCurtain County -in.county_name McDonald County The dwelling unit is located in McDonald County -in.county_name McDonough County The dwelling unit is located in McDonough County -in.county_name McDowell County The dwelling unit is located in McDowell County -in.county_name McDuffie County The dwelling unit is located in McDuffie County -in.county_name McHenry County The dwelling unit is located in McHenry County -in.county_name McIntosh County The dwelling unit is located in McIntosh County -in.county_name McKean County The dwelling unit is located in McKean County -in.county_name McKenzie County The dwelling unit is located in McKenzie County -in.county_name McKinley County The dwelling unit is located in McKinley County -in.county_name McLean County The dwelling unit is located in McLean County -in.county_name McLennan County The dwelling unit is located in McLennan County -in.county_name McLeod County The dwelling unit is located in McLeod County -in.county_name McMinn County The dwelling unit is located in McMinn County -in.county_name McMullen County The dwelling unit is located in McMullen County -in.county_name McNairy County The dwelling unit is located in McNairy County -in.county_name McPherson County The dwelling unit is located in McPherson County -in.county_name Meade County The dwelling unit is located in Meade County -in.county_name Meagher County The dwelling unit is located in Meagher County -in.county_name Mecklenburg County The dwelling unit is located in Mecklenburg County -in.county_name Mecosta County The dwelling unit is located in Mecosta County -in.county_name Medina County The dwelling unit is located in Medina County -in.county_name Meeker County The dwelling unit is located in Meeker County -in.county_name Meigs County The dwelling unit is located in Meigs County -in.county_name Mellette County The dwelling unit is located in Mellette County -in.county_name Menard County The dwelling unit is located in Menard County -in.county_name Mendocino County The dwelling unit is located in Mendocino County -in.county_name Menifee County The dwelling unit is located in Menifee County -in.county_name Menominee County The dwelling unit is located in Menominee County -in.county_name Merced County The dwelling unit is located in Merced County -in.county_name Mercer County The dwelling unit is located in Mercer County -in.county_name Meriwether County The dwelling unit is located in Meriwether County -in.county_name Merrick County The dwelling unit is located in Merrick County -in.county_name Merrimack County The dwelling unit is located in Merrimack County -in.county_name Mesa County The dwelling unit is located in Mesa County -in.county_name Metcalfe County The dwelling unit is located in Metcalfe County -in.county_name Miami County The dwelling unit is located in Miami County -in.county_name Miami-Dade County The dwelling unit is located in Miami-Dade County -in.county_name Middlesex County The dwelling unit is located in Middlesex County -in.county_name Midland County The dwelling unit is located in Midland County -in.county_name Mifflin County The dwelling unit is located in Mifflin County -in.county_name Milam County The dwelling unit is located in Milam County -in.county_name Millard County The dwelling unit is located in Millard County -in.county_name Mille Lacs County The dwelling unit is located in Mille Lacs County -in.county_name Miller County The dwelling unit is located in Miller County -in.county_name Mills County The dwelling unit is located in Mills County -in.county_name Milwaukee County The dwelling unit is located in Milwaukee County -in.county_name Miner County The dwelling unit is located in Miner County -in.county_name Mineral County The dwelling unit is located in Mineral County -in.county_name Mingo County The dwelling unit is located in Mingo County -in.county_name Minidoka County The dwelling unit is located in Minidoka County -in.county_name Minnehaha County The dwelling unit is located in Minnehaha County -in.county_name Missaukee County The dwelling unit is located in Missaukee County -in.county_name Mississippi County The dwelling unit is located in Mississippi County -in.county_name Missoula County The dwelling unit is located in Missoula County -in.county_name Mitchell County The dwelling unit is located in Mitchell County -in.county_name Mobile County The dwelling unit is located in Mobile County -in.county_name Modoc County The dwelling unit is located in Modoc County -in.county_name Moffat County The dwelling unit is located in Moffat County -in.county_name Mohave County The dwelling unit is located in Mohave County -in.county_name Moniteau County The dwelling unit is located in Moniteau County -in.county_name Monmouth County The dwelling unit is located in Monmouth County -in.county_name Mono County The dwelling unit is located in Mono County -in.county_name Monona County The dwelling unit is located in Monona County -in.county_name Monongalia County The dwelling unit is located in Monongalia County -in.county_name Monroe County The dwelling unit is located in Monroe County -in.county_name Montague County The dwelling unit is located in Montague County -in.county_name Montcalm County The dwelling unit is located in Montcalm County -in.county_name Monterey County The dwelling unit is located in Monterey County -in.county_name Montezuma County The dwelling unit is located in Montezuma County -in.county_name Montgomery County The dwelling unit is located in Montgomery County -in.county_name Montmorency County The dwelling unit is located in Montmorency County -in.county_name Montour County The dwelling unit is located in Montour County -in.county_name Montrose County The dwelling unit is located in Montrose County -in.county_name Moody County The dwelling unit is located in Moody County -in.county_name Moore County The dwelling unit is located in Moore County -in.county_name Mora County The dwelling unit is located in Mora County -in.county_name Morehouse Parish The dwelling unit is located in Morehouse Parish -in.county_name Morgan County The dwelling unit is located in Morgan County -in.county_name Morrill County The dwelling unit is located in Morrill County -in.county_name Morris County The dwelling unit is located in Morris County -in.county_name Morrison County The dwelling unit is located in Morrison County -in.county_name Morrow County The dwelling unit is located in Morrow County -in.county_name Morton County The dwelling unit is located in Morton County -in.county_name Motley County The dwelling unit is located in Motley County -in.county_name Moultrie County The dwelling unit is located in Moultrie County -in.county_name Mountrail County The dwelling unit is located in Mountrail County -in.county_name Mower County The dwelling unit is located in Mower County -in.county_name Muhlenberg County The dwelling unit is located in Muhlenberg County -in.county_name Multnomah County The dwelling unit is located in Multnomah County -in.county_name Murray County The dwelling unit is located in Murray County -in.county_name Muscatine County The dwelling unit is located in Muscatine County -in.county_name Muscogee County The dwelling unit is located in Muscogee County -in.county_name Muskegon County The dwelling unit is located in Muskegon County -in.county_name Muskingum County The dwelling unit is located in Muskingum County -in.county_name Muskogee County The dwelling unit is located in Muskogee County -in.county_name Musselshell County The dwelling unit is located in Musselshell County -in.county_name Nacogdoches County The dwelling unit is located in Nacogdoches County -in.county_name Nance County The dwelling unit is located in Nance County -in.county_name Nantucket County The dwelling unit is located in Nantucket County -in.county_name Napa County The dwelling unit is located in Napa County -in.county_name Nash County The dwelling unit is located in Nash County -in.county_name Nassau County The dwelling unit is located in Nassau County -in.county_name Natchitoches Parish The dwelling unit is located in Natchitoches Parish -in.county_name Natrona County The dwelling unit is located in Natrona County -in.county_name Navajo County The dwelling unit is located in Navajo County -in.county_name Navarro County The dwelling unit is located in Navarro County -in.county_name Nelson County The dwelling unit is located in Nelson County -in.county_name Nemaha County The dwelling unit is located in Nemaha County -in.county_name Neosho County The dwelling unit is located in Neosho County -in.county_name Neshoba County The dwelling unit is located in Neshoba County -in.county_name Ness County The dwelling unit is located in Ness County -in.county_name Nevada County The dwelling unit is located in Nevada County -in.county_name New Castle County The dwelling unit is located in New Castle County -in.county_name New Hanover County The dwelling unit is located in New Hanover County -in.county_name New Haven County The dwelling unit is located in New Haven County -in.county_name New Kent County The dwelling unit is located in New Kent County -in.county_name New London County The dwelling unit is located in New London County -in.county_name New Madrid County The dwelling unit is located in New Madrid County -in.county_name New York County The dwelling unit is located in New York County -in.county_name Newaygo County The dwelling unit is located in Newaygo County -in.county_name Newberry County The dwelling unit is located in Newberry County -in.county_name Newport County The dwelling unit is located in Newport County -in.county_name Newport News city The dwelling unit is located in Newport News city -in.county_name Newton County The dwelling unit is located in Newton County -in.county_name Nez Perce County The dwelling unit is located in Nez Perce County -in.county_name Niagara County The dwelling unit is located in Niagara County -in.county_name Nicholas County The dwelling unit is located in Nicholas County -in.county_name Nicollet County The dwelling unit is located in Nicollet County -in.county_name Niobrara County The dwelling unit is located in Niobrara County -in.county_name Noble County The dwelling unit is located in Noble County -in.county_name Nobles County The dwelling unit is located in Nobles County -in.county_name Nodaway County The dwelling unit is located in Nodaway County -in.county_name Nolan County The dwelling unit is located in Nolan County -in.county_name Nome Census Area The dwelling unit is located in Nome Census Area -in.county_name Norfolk County The dwelling unit is located in Norfolk County -in.county_name Norfolk city The dwelling unit is located in Norfolk city -in.county_name Norman County The dwelling unit is located in Norman County -in.county_name North Slope Borough The dwelling unit is located in North Slope Borough -in.county_name Northampton County The dwelling unit is located in Northampton County -in.county_name Northumberland County The dwelling unit is located in Northumberland County -in.county_name Northwest Arctic Borough The dwelling unit is located in Northwest Arctic Borough -in.county_name Norton County The dwelling unit is located in Norton County -in.county_name Norton city The dwelling unit is located in Norton city -in.county_name Nottoway County The dwelling unit is located in Nottoway County -in.county_name Nowata County The dwelling unit is located in Nowata County -in.county_name Noxubee County The dwelling unit is located in Noxubee County -in.county_name Nuckolls County The dwelling unit is located in Nuckolls County -in.county_name Nueces County The dwelling unit is located in Nueces County -in.county_name Nye County The dwelling unit is located in Nye County -in.county_name O'Brien County The dwelling unit is located in O'Brien County -in.county_name Oakland County The dwelling unit is located in Oakland County -in.county_name Obion County The dwelling unit is located in Obion County -in.county_name Ocean County The dwelling unit is located in Ocean County -in.county_name Oceana County The dwelling unit is located in Oceana County -in.county_name Ochiltree County The dwelling unit is located in Ochiltree County -in.county_name Oconee County The dwelling unit is located in Oconee County -in.county_name Oconto County The dwelling unit is located in Oconto County -in.county_name Ogemaw County The dwelling unit is located in Ogemaw County -in.county_name Oglala Lakota County The dwelling unit is located in Oglala Lakota County -in.county_name Ogle County The dwelling unit is located in Ogle County -in.county_name Oglethorpe County The dwelling unit is located in Oglethorpe County -in.county_name Ohio County The dwelling unit is located in Ohio County -in.county_name Okaloosa County The dwelling unit is located in Okaloosa County -in.county_name Okanogan County The dwelling unit is located in Okanogan County -in.county_name Okeechobee County The dwelling unit is located in Okeechobee County -in.county_name Okfuskee County The dwelling unit is located in Okfuskee County -in.county_name Oklahoma County The dwelling unit is located in Oklahoma County -in.county_name Okmulgee County The dwelling unit is located in Okmulgee County -in.county_name Oktibbeha County The dwelling unit is located in Oktibbeha County -in.county_name Oldham County The dwelling unit is located in Oldham County -in.county_name Oliver County The dwelling unit is located in Oliver County -in.county_name Olmsted County The dwelling unit is located in Olmsted County -in.county_name Oneida County The dwelling unit is located in Oneida County -in.county_name Onondaga County The dwelling unit is located in Onondaga County -in.county_name Onslow County The dwelling unit is located in Onslow County -in.county_name Ontario County The dwelling unit is located in Ontario County -in.county_name Ontonagon County The dwelling unit is located in Ontonagon County -in.county_name Orange County The dwelling unit is located in Orange County -in.county_name Orangeburg County The dwelling unit is located in Orangeburg County -in.county_name Oregon County The dwelling unit is located in Oregon County -in.county_name Orleans County The dwelling unit is located in Orleans County -in.county_name Orleans Parish The dwelling unit is located in Orleans Parish -in.county_name Osage County The dwelling unit is located in Osage County -in.county_name Osborne County The dwelling unit is located in Osborne County -in.county_name Osceola County The dwelling unit is located in Osceola County -in.county_name Oscoda County The dwelling unit is located in Oscoda County -in.county_name Oswego County The dwelling unit is located in Oswego County -in.county_name Otero County The dwelling unit is located in Otero County -in.county_name Otoe County The dwelling unit is located in Otoe County -in.county_name Otsego County The dwelling unit is located in Otsego County -in.county_name Ottawa County The dwelling unit is located in Ottawa County -in.county_name Otter Tail County The dwelling unit is located in Otter Tail County -in.county_name Ouachita County The dwelling unit is located in Ouachita County -in.county_name Ouachita Parish The dwelling unit is located in Ouachita Parish -in.county_name Ouray County The dwelling unit is located in Ouray County -in.county_name Outagamie County The dwelling unit is located in Outagamie County -in.county_name Overton County The dwelling unit is located in Overton County -in.county_name Owen County The dwelling unit is located in Owen County -in.county_name Owsley County The dwelling unit is located in Owsley County -in.county_name Owyhee County The dwelling unit is located in Owyhee County -in.county_name Oxford County The dwelling unit is located in Oxford County -in.county_name Ozark County The dwelling unit is located in Ozark County -in.county_name Ozaukee County The dwelling unit is located in Ozaukee County -in.county_name Pacific County The dwelling unit is located in Pacific County -in.county_name Page County The dwelling unit is located in Page County -in.county_name Palm Beach County The dwelling unit is located in Palm Beach County -in.county_name Palo Alto County The dwelling unit is located in Palo Alto County -in.county_name Palo Pinto County The dwelling unit is located in Palo Pinto County -in.county_name Pamlico County The dwelling unit is located in Pamlico County -in.county_name Panola County The dwelling unit is located in Panola County -in.county_name Park County The dwelling unit is located in Park County -in.county_name Parke County The dwelling unit is located in Parke County -in.county_name Parker County The dwelling unit is located in Parker County -in.county_name Parmer County The dwelling unit is located in Parmer County -in.county_name Pasco County The dwelling unit is located in Pasco County -in.county_name Pasquotank County The dwelling unit is located in Pasquotank County -in.county_name Passaic County The dwelling unit is located in Passaic County -in.county_name Patrick County The dwelling unit is located in Patrick County -in.county_name Paulding County The dwelling unit is located in Paulding County -in.county_name Pawnee County The dwelling unit is located in Pawnee County -in.county_name Payette County The dwelling unit is located in Payette County -in.county_name Payne County The dwelling unit is located in Payne County -in.county_name Peach County The dwelling unit is located in Peach County -in.county_name Pearl River County The dwelling unit is located in Pearl River County -in.county_name Pecos County The dwelling unit is located in Pecos County -in.county_name Pembina County The dwelling unit is located in Pembina County -in.county_name Pemiscot County The dwelling unit is located in Pemiscot County -in.county_name Pend Oreille County The dwelling unit is located in Pend Oreille County -in.county_name Pender County The dwelling unit is located in Pender County -in.county_name Pendleton County The dwelling unit is located in Pendleton County -in.county_name Pennington County The dwelling unit is located in Pennington County -in.county_name Penobscot County The dwelling unit is located in Penobscot County -in.county_name Peoria County The dwelling unit is located in Peoria County -in.county_name Pepin County The dwelling unit is located in Pepin County -in.county_name Perkins County The dwelling unit is located in Perkins County -in.county_name Perquimans County The dwelling unit is located in Perquimans County -in.county_name Perry County The dwelling unit is located in Perry County -in.county_name Pershing County The dwelling unit is located in Pershing County -in.county_name Person County The dwelling unit is located in Person County -in.county_name Petersburg Borough The dwelling unit is located in Petersburg Borough -in.county_name Petersburg city The dwelling unit is located in Petersburg city -in.county_name Petroleum County The dwelling unit is located in Petroleum County -in.county_name Pettis County The dwelling unit is located in Pettis County -in.county_name Phelps County The dwelling unit is located in Phelps County -in.county_name Philadelphia County The dwelling unit is located in Philadelphia County -in.county_name Phillips County The dwelling unit is located in Phillips County -in.county_name Piatt County The dwelling unit is located in Piatt County -in.county_name Pickaway County The dwelling unit is located in Pickaway County -in.county_name Pickens County The dwelling unit is located in Pickens County -in.county_name Pickett County The dwelling unit is located in Pickett County -in.county_name Pierce County The dwelling unit is located in Pierce County -in.county_name Pike County The dwelling unit is located in Pike County -in.county_name Pima County The dwelling unit is located in Pima County -in.county_name Pinal County The dwelling unit is located in Pinal County -in.county_name Pine County The dwelling unit is located in Pine County -in.county_name Pinellas County The dwelling unit is located in Pinellas County -in.county_name Pipestone County The dwelling unit is located in Pipestone County -in.county_name Piscataquis County The dwelling unit is located in Piscataquis County -in.county_name Pitkin County The dwelling unit is located in Pitkin County -in.county_name Pitt County The dwelling unit is located in Pitt County -in.county_name Pittsburg County The dwelling unit is located in Pittsburg County -in.county_name Pittsylvania County The dwelling unit is located in Pittsylvania County -in.county_name Piute County The dwelling unit is located in Piute County -in.county_name Placer County The dwelling unit is located in Placer County -in.county_name Plaquemines Parish The dwelling unit is located in Plaquemines Parish -in.county_name Platte County The dwelling unit is located in Platte County -in.county_name Pleasants County The dwelling unit is located in Pleasants County -in.county_name Plumas County The dwelling unit is located in Plumas County -in.county_name Plymouth County The dwelling unit is located in Plymouth County -in.county_name Pocahontas County The dwelling unit is located in Pocahontas County -in.county_name Poinsett County The dwelling unit is located in Poinsett County -in.county_name Pointe Coupee Parish The dwelling unit is located in Pointe Coupee Parish -in.county_name Polk County The dwelling unit is located in Polk County -in.county_name Pondera County The dwelling unit is located in Pondera County -in.county_name Pontotoc County The dwelling unit is located in Pontotoc County -in.county_name Pope County The dwelling unit is located in Pope County -in.county_name Poquoson city The dwelling unit is located in Poquoson city -in.county_name Portage County The dwelling unit is located in Portage County -in.county_name Porter County The dwelling unit is located in Porter County -in.county_name Portsmouth city The dwelling unit is located in Portsmouth city -in.county_name Posey County The dwelling unit is located in Posey County -in.county_name Pottawatomie County The dwelling unit is located in Pottawatomie County -in.county_name Pottawattamie County The dwelling unit is located in Pottawattamie County -in.county_name Potter County The dwelling unit is located in Potter County -in.county_name Powder River County The dwelling unit is located in Powder River County -in.county_name Powell County The dwelling unit is located in Powell County -in.county_name Power County The dwelling unit is located in Power County -in.county_name Poweshiek County The dwelling unit is located in Poweshiek County -in.county_name Powhatan County The dwelling unit is located in Powhatan County -in.county_name Prairie County The dwelling unit is located in Prairie County -in.county_name Pratt County The dwelling unit is located in Pratt County -in.county_name Preble County The dwelling unit is located in Preble County -in.county_name Prentiss County The dwelling unit is located in Prentiss County -in.county_name Presidio County The dwelling unit is located in Presidio County -in.county_name Presque Isle County The dwelling unit is located in Presque Isle County -in.county_name Preston County The dwelling unit is located in Preston County -in.county_name Price County The dwelling unit is located in Price County -in.county_name Prince Edward County The dwelling unit is located in Prince Edward County -in.county_name Prince George County The dwelling unit is located in Prince George County -in.county_name Prince George's County The dwelling unit is located in Prince George's County -in.county_name Prince William County The dwelling unit is located in Prince William County -in.county_name Providence County The dwelling unit is located in Providence County -in.county_name Prowers County The dwelling unit is located in Prowers County -in.county_name Pueblo County The dwelling unit is located in Pueblo County -in.county_name Pulaski County The dwelling unit is located in Pulaski County -in.county_name Pushmataha County The dwelling unit is located in Pushmataha County -in.county_name Putnam County The dwelling unit is located in Putnam County -in.county_name Quay County The dwelling unit is located in Quay County -in.county_name Queen Anne's County The dwelling unit is located in Queen Anne's County -in.county_name Queens County The dwelling unit is located in Queens County -in.county_name Quitman County The dwelling unit is located in Quitman County -in.county_name Rabun County The dwelling unit is located in Rabun County -in.county_name Racine County The dwelling unit is located in Racine County -in.county_name Radford city The dwelling unit is located in Radford city -in.county_name Rains County The dwelling unit is located in Rains County -in.county_name Raleigh County The dwelling unit is located in Raleigh County -in.county_name Ralls County The dwelling unit is located in Ralls County -in.county_name Ramsey County The dwelling unit is located in Ramsey County -in.county_name Randall County The dwelling unit is located in Randall County -in.county_name Randolph County The dwelling unit is located in Randolph County -in.county_name Rankin County The dwelling unit is located in Rankin County -in.county_name Ransom County The dwelling unit is located in Ransom County -in.county_name Rapides Parish The dwelling unit is located in Rapides Parish -in.county_name Rappahannock County The dwelling unit is located in Rappahannock County -in.county_name Ravalli County The dwelling unit is located in Ravalli County -in.county_name Rawlins County The dwelling unit is located in Rawlins County -in.county_name Ray County The dwelling unit is located in Ray County -in.county_name Reagan County The dwelling unit is located in Reagan County -in.county_name Real County The dwelling unit is located in Real County -in.county_name Red Lake County The dwelling unit is located in Red Lake County -in.county_name Red River County The dwelling unit is located in Red River County -in.county_name Red River Parish The dwelling unit is located in Red River Parish -in.county_name Red Willow County The dwelling unit is located in Red Willow County -in.county_name Redwood County The dwelling unit is located in Redwood County -in.county_name Reeves County The dwelling unit is located in Reeves County -in.county_name Refugio County The dwelling unit is located in Refugio County -in.county_name Reno County The dwelling unit is located in Reno County -in.county_name Rensselaer County The dwelling unit is located in Rensselaer County -in.county_name Renville County The dwelling unit is located in Renville County -in.county_name Republic County The dwelling unit is located in Republic County -in.county_name Reynolds County The dwelling unit is located in Reynolds County -in.county_name Rhea County The dwelling unit is located in Rhea County -in.county_name Rice County The dwelling unit is located in Rice County -in.county_name Rich County The dwelling unit is located in Rich County -in.county_name Richardson County The dwelling unit is located in Richardson County -in.county_name Richland County The dwelling unit is located in Richland County -in.county_name Richland Parish The dwelling unit is located in Richland Parish -in.county_name Richmond County The dwelling unit is located in Richmond County -in.county_name Richmond city The dwelling unit is located in Richmond city -in.county_name Riley County The dwelling unit is located in Riley County -in.county_name Ringgold County The dwelling unit is located in Ringgold County -in.county_name Rio Arriba County The dwelling unit is located in Rio Arriba County -in.county_name Rio Blanco County The dwelling unit is located in Rio Blanco County -in.county_name Rio Grande County The dwelling unit is located in Rio Grande County -in.county_name Ripley County The dwelling unit is located in Ripley County -in.county_name Ritchie County The dwelling unit is located in Ritchie County -in.county_name Riverside County The dwelling unit is located in Riverside County -in.county_name Roane County The dwelling unit is located in Roane County -in.county_name Roanoke County The dwelling unit is located in Roanoke County -in.county_name Roanoke city The dwelling unit is located in Roanoke city -in.county_name Roberts County The dwelling unit is located in Roberts County -in.county_name Robertson County The dwelling unit is located in Robertson County -in.county_name Robeson County The dwelling unit is located in Robeson County -in.county_name Rock County The dwelling unit is located in Rock County -in.county_name Rock Island County The dwelling unit is located in Rock Island County -in.county_name Rockbridge County The dwelling unit is located in Rockbridge County -in.county_name Rockcastle County The dwelling unit is located in Rockcastle County -in.county_name Rockdale County The dwelling unit is located in Rockdale County -in.county_name Rockingham County The dwelling unit is located in Rockingham County -in.county_name Rockland County The dwelling unit is located in Rockland County -in.county_name Rockwall County The dwelling unit is located in Rockwall County -in.county_name Roger Mills County The dwelling unit is located in Roger Mills County -in.county_name Rogers County The dwelling unit is located in Rogers County -in.county_name Rolette County The dwelling unit is located in Rolette County -in.county_name Rooks County The dwelling unit is located in Rooks County -in.county_name Roosevelt County The dwelling unit is located in Roosevelt County -in.county_name Roscommon County The dwelling unit is located in Roscommon County -in.county_name Roseau County The dwelling unit is located in Roseau County -in.county_name Rosebud County The dwelling unit is located in Rosebud County -in.county_name Ross County The dwelling unit is located in Ross County -in.county_name Routt County The dwelling unit is located in Routt County -in.county_name Rowan County The dwelling unit is located in Rowan County -in.county_name Runnels County The dwelling unit is located in Runnels County -in.county_name Rush County The dwelling unit is located in Rush County -in.county_name Rusk County The dwelling unit is located in Rusk County -in.county_name Russell County The dwelling unit is located in Russell County -in.county_name Rutherford County The dwelling unit is located in Rutherford County -in.county_name Rutland County The dwelling unit is located in Rutland County -in.county_name Sabine County The dwelling unit is located in Sabine County -in.county_name Sabine Parish The dwelling unit is located in Sabine Parish -in.county_name Sac County The dwelling unit is located in Sac County -in.county_name Sacramento County The dwelling unit is located in Sacramento County -in.county_name Sagadahoc County The dwelling unit is located in Sagadahoc County -in.county_name Saginaw County The dwelling unit is located in Saginaw County -in.county_name Saguache County The dwelling unit is located in Saguache County -in.county_name Salem County The dwelling unit is located in Salem County -in.county_name Salem city The dwelling unit is located in Salem city -in.county_name Saline County The dwelling unit is located in Saline County -in.county_name Salt Lake County The dwelling unit is located in Salt Lake County -in.county_name Saluda County The dwelling unit is located in Saluda County -in.county_name Sampson County The dwelling unit is located in Sampson County -in.county_name San Augustine County The dwelling unit is located in San Augustine County -in.county_name San Benito County The dwelling unit is located in San Benito County -in.county_name San Bernardino County The dwelling unit is located in San Bernardino County -in.county_name San Diego County The dwelling unit is located in San Diego County -in.county_name San Francisco County The dwelling unit is located in San Francisco County -in.county_name San Jacinto County The dwelling unit is located in San Jacinto County -in.county_name San Joaquin County The dwelling unit is located in San Joaquin County -in.county_name San Juan County The dwelling unit is located in San Juan County -in.county_name San Luis Obispo County The dwelling unit is located in San Luis Obispo County -in.county_name San Mateo County The dwelling unit is located in San Mateo County -in.county_name San Miguel County The dwelling unit is located in San Miguel County -in.county_name San Patricio County The dwelling unit is located in San Patricio County -in.county_name San Saba County The dwelling unit is located in San Saba County -in.county_name Sanborn County The dwelling unit is located in Sanborn County -in.county_name Sanders County The dwelling unit is located in Sanders County -in.county_name Sandoval County The dwelling unit is located in Sandoval County -in.county_name Sandusky County The dwelling unit is located in Sandusky County -in.county_name Sangamon County The dwelling unit is located in Sangamon County -in.county_name Sanilac County The dwelling unit is located in Sanilac County -in.county_name Sanpete County The dwelling unit is located in Sanpete County -in.county_name Santa Barbara County The dwelling unit is located in Santa Barbara County -in.county_name Santa Clara County The dwelling unit is located in Santa Clara County -in.county_name Santa Cruz County The dwelling unit is located in Santa Cruz County -in.county_name Santa Fe County The dwelling unit is located in Santa Fe County -in.county_name Santa Rosa County The dwelling unit is located in Santa Rosa County -in.county_name Sarasota County The dwelling unit is located in Sarasota County -in.county_name Saratoga County The dwelling unit is located in Saratoga County -in.county_name Sargent County The dwelling unit is located in Sargent County -in.county_name Sarpy County The dwelling unit is located in Sarpy County -in.county_name Sauk County The dwelling unit is located in Sauk County -in.county_name Saunders County The dwelling unit is located in Saunders County -in.county_name Sawyer County The dwelling unit is located in Sawyer County -in.county_name Schenectady County The dwelling unit is located in Schenectady County -in.county_name Schleicher County The dwelling unit is located in Schleicher County -in.county_name Schley County The dwelling unit is located in Schley County -in.county_name Schoharie County The dwelling unit is located in Schoharie County -in.county_name Schoolcraft County The dwelling unit is located in Schoolcraft County -in.county_name Schuyler County The dwelling unit is located in Schuyler County -in.county_name Schuylkill County The dwelling unit is located in Schuylkill County -in.county_name Scioto County The dwelling unit is located in Scioto County -in.county_name Scotland County The dwelling unit is located in Scotland County -in.county_name Scott County The dwelling unit is located in Scott County -in.county_name Scotts Bluff County The dwelling unit is located in Scotts Bluff County -in.county_name Screven County The dwelling unit is located in Screven County -in.county_name Scurry County The dwelling unit is located in Scurry County -in.county_name Searcy County The dwelling unit is located in Searcy County -in.county_name Sebastian County The dwelling unit is located in Sebastian County -in.county_name Sedgwick County The dwelling unit is located in Sedgwick County -in.county_name Seminole County The dwelling unit is located in Seminole County -in.county_name Seneca County The dwelling unit is located in Seneca County -in.county_name Sequatchie County The dwelling unit is located in Sequatchie County -in.county_name Sequoyah County The dwelling unit is located in Sequoyah County -in.county_name Sevier County The dwelling unit is located in Sevier County -in.county_name Seward County The dwelling unit is located in Seward County -in.county_name Shackelford County The dwelling unit is located in Shackelford County -in.county_name Shannon County The dwelling unit is located in Shannon County -in.county_name Sharkey County The dwelling unit is located in Sharkey County -in.county_name Sharp County The dwelling unit is located in Sharp County -in.county_name Shasta County The dwelling unit is located in Shasta County -in.county_name Shawano County The dwelling unit is located in Shawano County -in.county_name Shawnee County The dwelling unit is located in Shawnee County -in.county_name Sheboygan County The dwelling unit is located in Sheboygan County -in.county_name Shelby County The dwelling unit is located in Shelby County -in.county_name Shenandoah County The dwelling unit is located in Shenandoah County -in.county_name Sherburne County The dwelling unit is located in Sherburne County -in.county_name Sheridan County The dwelling unit is located in Sheridan County -in.county_name Sherman County The dwelling unit is located in Sherman County -in.county_name Shiawassee County The dwelling unit is located in Shiawassee County -in.county_name Shoshone County The dwelling unit is located in Shoshone County -in.county_name Sibley County The dwelling unit is located in Sibley County -in.county_name Sierra County The dwelling unit is located in Sierra County -in.county_name Silver Bow County The dwelling unit is located in Silver Bow County -in.county_name Simpson County The dwelling unit is located in Simpson County -in.county_name Sioux County The dwelling unit is located in Sioux County -in.county_name Siskiyou County The dwelling unit is located in Siskiyou County -in.county_name Sitka City and Borough The dwelling unit is located in Sitka City and Borough -in.county_name Skagit County The dwelling unit is located in Skagit County -in.county_name Skagway Municipality The dwelling unit is located in Skagway Municipality -in.county_name Skamania County The dwelling unit is located in Skamania County -in.county_name Slope County The dwelling unit is located in Slope County -in.county_name Smith County The dwelling unit is located in Smith County -in.county_name Smyth County The dwelling unit is located in Smyth County -in.county_name Snohomish County The dwelling unit is located in Snohomish County -in.county_name Snyder County The dwelling unit is located in Snyder County -in.county_name Socorro County The dwelling unit is located in Socorro County -in.county_name Solano County The dwelling unit is located in Solano County -in.county_name Somerset County The dwelling unit is located in Somerset County -in.county_name Somervell County The dwelling unit is located in Somervell County -in.county_name Sonoma County The dwelling unit is located in Sonoma County -in.county_name Southampton County The dwelling unit is located in Southampton County -in.county_name Southeast Fairbanks Census Area The dwelling unit is located in Southeast Fairbanks Census Area -in.county_name Spalding County The dwelling unit is located in Spalding County -in.county_name Spartanburg County The dwelling unit is located in Spartanburg County -in.county_name Spencer County The dwelling unit is located in Spencer County -in.county_name Spink County The dwelling unit is located in Spink County -in.county_name Spokane County The dwelling unit is located in Spokane County -in.county_name Spotsylvania County The dwelling unit is located in Spotsylvania County -in.county_name St. Bernard Parish The dwelling unit is located in St. Bernard Parish -in.county_name St. Charles County The dwelling unit is located in St. Charles County -in.county_name St. Charles Parish The dwelling unit is located in St. Charles Parish -in.county_name St. Clair County The dwelling unit is located in St. Clair County -in.county_name St. Croix County The dwelling unit is located in St. Croix County -in.county_name St. Francis County The dwelling unit is located in St. Francis County -in.county_name St. Francois County The dwelling unit is located in St. Francois County -in.county_name St. Helena Parish The dwelling unit is located in St. Helena Parish -in.county_name St. James Parish The dwelling unit is located in St. James Parish -in.county_name St. John the Baptist Parish The dwelling unit is located in St. John the Baptist Parish -in.county_name St. Johns County The dwelling unit is located in St. Johns County -in.county_name St. Joseph County The dwelling unit is located in St. Joseph County -in.county_name St. Landry Parish The dwelling unit is located in St. Landry Parish -in.county_name St. Lawrence County The dwelling unit is located in St. Lawrence County -in.county_name St. Louis County The dwelling unit is located in St. Louis County -in.county_name St. Louis city The dwelling unit is located in St. Louis city -in.county_name St. Lucie County The dwelling unit is located in St. Lucie County -in.county_name St. Martin Parish The dwelling unit is located in St. Martin Parish -in.county_name St. Mary Parish The dwelling unit is located in St. Mary Parish -in.county_name St. Mary's County The dwelling unit is located in St. Mary's County -in.county_name St. Tammany Parish The dwelling unit is located in St. Tammany Parish -in.county_name Stafford County The dwelling unit is located in Stafford County -in.county_name Stanislaus County The dwelling unit is located in Stanislaus County -in.county_name Stanley County The dwelling unit is located in Stanley County -in.county_name Stanly County The dwelling unit is located in Stanly County -in.county_name Stanton County The dwelling unit is located in Stanton County -in.county_name Stark County The dwelling unit is located in Stark County -in.county_name Starke County The dwelling unit is located in Starke County -in.county_name Starr County The dwelling unit is located in Starr County -in.county_name Staunton city The dwelling unit is located in Staunton city -in.county_name Ste. Genevieve County The dwelling unit is located in Ste. Genevieve County -in.county_name Stearns County The dwelling unit is located in Stearns County -in.county_name Steele County The dwelling unit is located in Steele County -in.county_name Stephens County The dwelling unit is located in Stephens County -in.county_name Stephenson County The dwelling unit is located in Stephenson County -in.county_name Sterling County The dwelling unit is located in Sterling County -in.county_name Steuben County The dwelling unit is located in Steuben County -in.county_name Stevens County The dwelling unit is located in Stevens County -in.county_name Stewart County The dwelling unit is located in Stewart County -in.county_name Stillwater County The dwelling unit is located in Stillwater County -in.county_name Stoddard County The dwelling unit is located in Stoddard County -in.county_name Stokes County The dwelling unit is located in Stokes County -in.county_name Stone County The dwelling unit is located in Stone County -in.county_name Stonewall County The dwelling unit is located in Stonewall County -in.county_name Storey County The dwelling unit is located in Storey County -in.county_name Story County The dwelling unit is located in Story County -in.county_name Strafford County The dwelling unit is located in Strafford County -in.county_name Stutsman County The dwelling unit is located in Stutsman County -in.county_name Sublette County The dwelling unit is located in Sublette County -in.county_name Suffolk County The dwelling unit is located in Suffolk County -in.county_name Suffolk city The dwelling unit is located in Suffolk city -in.county_name Sullivan County The dwelling unit is located in Sullivan County -in.county_name Sully County The dwelling unit is located in Sully County -in.county_name Summers County The dwelling unit is located in Summers County -in.county_name Summit County The dwelling unit is located in Summit County -in.county_name Sumner County The dwelling unit is located in Sumner County -in.county_name Sumter County The dwelling unit is located in Sumter County -in.county_name Sunflower County The dwelling unit is located in Sunflower County -in.county_name Surry County The dwelling unit is located in Surry County -in.county_name Susquehanna County The dwelling unit is located in Susquehanna County -in.county_name Sussex County The dwelling unit is located in Sussex County -in.county_name Sutter County The dwelling unit is located in Sutter County -in.county_name Sutton County The dwelling unit is located in Sutton County -in.county_name Suwannee County The dwelling unit is located in Suwannee County -in.county_name Swain County The dwelling unit is located in Swain County -in.county_name Sweet Grass County The dwelling unit is located in Sweet Grass County -in.county_name Sweetwater County The dwelling unit is located in Sweetwater County -in.county_name Swift County The dwelling unit is located in Swift County -in.county_name Swisher County The dwelling unit is located in Swisher County -in.county_name Switzerland County The dwelling unit is located in Switzerland County -in.county_name Talbot County The dwelling unit is located in Talbot County -in.county_name Taliaferro County The dwelling unit is located in Taliaferro County -in.county_name Talladega County The dwelling unit is located in Talladega County -in.county_name Tallahatchie County The dwelling unit is located in Tallahatchie County -in.county_name Tallapoosa County The dwelling unit is located in Tallapoosa County -in.county_name Tama County The dwelling unit is located in Tama County -in.county_name Taney County The dwelling unit is located in Taney County -in.county_name Tangipahoa Parish The dwelling unit is located in Tangipahoa Parish -in.county_name Taos County The dwelling unit is located in Taos County -in.county_name Tarrant County The dwelling unit is located in Tarrant County -in.county_name Tate County The dwelling unit is located in Tate County -in.county_name Tattnall County The dwelling unit is located in Tattnall County -in.county_name Taylor County The dwelling unit is located in Taylor County -in.county_name Tazewell County The dwelling unit is located in Tazewell County -in.county_name Tehama County The dwelling unit is located in Tehama County -in.county_name Telfair County The dwelling unit is located in Telfair County -in.county_name Teller County The dwelling unit is located in Teller County -in.county_name Tensas Parish The dwelling unit is located in Tensas Parish -in.county_name Terrebonne Parish The dwelling unit is located in Terrebonne Parish -in.county_name Terrell County The dwelling unit is located in Terrell County -in.county_name Terry County The dwelling unit is located in Terry County -in.county_name Teton County The dwelling unit is located in Teton County -in.county_name Texas County The dwelling unit is located in Texas County -in.county_name Thayer County The dwelling unit is located in Thayer County -in.county_name Thomas County The dwelling unit is located in Thomas County -in.county_name Throckmorton County The dwelling unit is located in Throckmorton County -in.county_name Thurston County The dwelling unit is located in Thurston County -in.county_name Tift County The dwelling unit is located in Tift County -in.county_name Tillamook County The dwelling unit is located in Tillamook County -in.county_name Tillman County The dwelling unit is located in Tillman County -in.county_name Tioga County The dwelling unit is located in Tioga County -in.county_name Tippah County The dwelling unit is located in Tippah County -in.county_name Tippecanoe County The dwelling unit is located in Tippecanoe County -in.county_name Tipton County The dwelling unit is located in Tipton County -in.county_name Tishomingo County The dwelling unit is located in Tishomingo County -in.county_name Titus County The dwelling unit is located in Titus County -in.county_name Todd County The dwelling unit is located in Todd County -in.county_name Tolland County The dwelling unit is located in Tolland County -in.county_name Tom Green County The dwelling unit is located in Tom Green County -in.county_name Tompkins County The dwelling unit is located in Tompkins County -in.county_name Tooele County The dwelling unit is located in Tooele County -in.county_name Toole County The dwelling unit is located in Toole County -in.county_name Toombs County The dwelling unit is located in Toombs County -in.county_name Torrance County The dwelling unit is located in Torrance County -in.county_name Towner County The dwelling unit is located in Towner County -in.county_name Towns County The dwelling unit is located in Towns County -in.county_name Traill County The dwelling unit is located in Traill County -in.county_name Transylvania County The dwelling unit is located in Transylvania County -in.county_name Traverse County The dwelling unit is located in Traverse County -in.county_name Travis County The dwelling unit is located in Travis County -in.county_name Treasure County The dwelling unit is located in Treasure County -in.county_name Trego County The dwelling unit is located in Trego County -in.county_name Trempealeau County The dwelling unit is located in Trempealeau County -in.county_name Treutlen County The dwelling unit is located in Treutlen County -in.county_name Trigg County The dwelling unit is located in Trigg County -in.county_name Trimble County The dwelling unit is located in Trimble County -in.county_name Trinity County The dwelling unit is located in Trinity County -in.county_name Tripp County The dwelling unit is located in Tripp County -in.county_name Troup County The dwelling unit is located in Troup County -in.county_name Trousdale County The dwelling unit is located in Trousdale County -in.county_name Trumbull County The dwelling unit is located in Trumbull County -in.county_name Tucker County The dwelling unit is located in Tucker County -in.county_name Tulare County The dwelling unit is located in Tulare County -in.county_name Tulsa County The dwelling unit is located in Tulsa County -in.county_name Tunica County The dwelling unit is located in Tunica County -in.county_name Tuolumne County The dwelling unit is located in Tuolumne County -in.county_name Turner County The dwelling unit is located in Turner County -in.county_name Tuscaloosa County The dwelling unit is located in Tuscaloosa County -in.county_name Tuscarawas County The dwelling unit is located in Tuscarawas County -in.county_name Tuscola County The dwelling unit is located in Tuscola County -in.county_name Twiggs County The dwelling unit is located in Twiggs County -in.county_name Twin Falls County The dwelling unit is located in Twin Falls County -in.county_name Tyler County The dwelling unit is located in Tyler County -in.county_name Tyrrell County The dwelling unit is located in Tyrrell County -in.county_name Uinta County The dwelling unit is located in Uinta County -in.county_name Uintah County The dwelling unit is located in Uintah County -in.county_name Ulster County The dwelling unit is located in Ulster County -in.county_name Umatilla County The dwelling unit is located in Umatilla County -in.county_name Unicoi County The dwelling unit is located in Unicoi County -in.county_name Union County The dwelling unit is located in Union County -in.county_name Union Parish The dwelling unit is located in Union Parish -in.county_name Upshur County The dwelling unit is located in Upshur County -in.county_name Upson County The dwelling unit is located in Upson County -in.county_name Upton County The dwelling unit is located in Upton County -in.county_name Utah County The dwelling unit is located in Utah County -in.county_name Uvalde County The dwelling unit is located in Uvalde County -in.county_name Val Verde County The dwelling unit is located in Val Verde County -in.county_name Valdez-Cordova Census Area The dwelling unit is located in Valdez-Cordova Census Area -in.county_name Valencia County The dwelling unit is located in Valencia County -in.county_name Valley County The dwelling unit is located in Valley County -in.county_name Van Buren County The dwelling unit is located in Van Buren County -in.county_name Van Wert County The dwelling unit is located in Van Wert County -in.county_name Van Zandt County The dwelling unit is located in Van Zandt County -in.county_name Vance County The dwelling unit is located in Vance County -in.county_name Vanderburgh County The dwelling unit is located in Vanderburgh County -in.county_name Venango County The dwelling unit is located in Venango County -in.county_name Ventura County The dwelling unit is located in Ventura County -in.county_name Vermilion County The dwelling unit is located in Vermilion County -in.county_name Vermilion Parish The dwelling unit is located in Vermilion Parish -in.county_name Vermillion County The dwelling unit is located in Vermillion County -in.county_name Vernon County The dwelling unit is located in Vernon County -in.county_name Vernon Parish The dwelling unit is located in Vernon Parish -in.county_name Victoria County The dwelling unit is located in Victoria County -in.county_name Vigo County The dwelling unit is located in Vigo County -in.county_name Vilas County The dwelling unit is located in Vilas County -in.county_name Vinton County The dwelling unit is located in Vinton County -in.county_name Virginia Beach city The dwelling unit is located in Virginia Beach city -in.county_name Volusia County The dwelling unit is located in Volusia County -in.county_name Wabash County The dwelling unit is located in Wabash County -in.county_name Wabasha County The dwelling unit is located in Wabasha County -in.county_name Wabaunsee County The dwelling unit is located in Wabaunsee County -in.county_name Wadena County The dwelling unit is located in Wadena County -in.county_name Wagoner County The dwelling unit is located in Wagoner County -in.county_name Wahkiakum County The dwelling unit is located in Wahkiakum County -in.county_name Wake County The dwelling unit is located in Wake County -in.county_name Wakulla County The dwelling unit is located in Wakulla County -in.county_name Waldo County The dwelling unit is located in Waldo County -in.county_name Walker County The dwelling unit is located in Walker County -in.county_name Walla Walla County The dwelling unit is located in Walla Walla County -in.county_name Wallace County The dwelling unit is located in Wallace County -in.county_name Waller County The dwelling unit is located in Waller County -in.county_name Wallowa County The dwelling unit is located in Wallowa County -in.county_name Walsh County The dwelling unit is located in Walsh County -in.county_name Walthall County The dwelling unit is located in Walthall County -in.county_name Walton County The dwelling unit is located in Walton County -in.county_name Walworth County The dwelling unit is located in Walworth County -in.county_name Wapello County The dwelling unit is located in Wapello County -in.county_name Ward County The dwelling unit is located in Ward County -in.county_name Ware County The dwelling unit is located in Ware County -in.county_name Warren County The dwelling unit is located in Warren County -in.county_name Warrick County The dwelling unit is located in Warrick County -in.county_name Wasatch County The dwelling unit is located in Wasatch County -in.county_name Wasco County The dwelling unit is located in Wasco County -in.county_name Waseca County The dwelling unit is located in Waseca County -in.county_name Washakie County The dwelling unit is located in Washakie County -in.county_name Washburn County The dwelling unit is located in Washburn County -in.county_name Washington County The dwelling unit is located in Washington County -in.county_name Washington Parish The dwelling unit is located in Washington Parish -in.county_name Washita County The dwelling unit is located in Washita County -in.county_name Washoe County The dwelling unit is located in Washoe County -in.county_name Washtenaw County The dwelling unit is located in Washtenaw County -in.county_name Watauga County The dwelling unit is located in Watauga County -in.county_name Watonwan County The dwelling unit is located in Watonwan County -in.county_name Waukesha County The dwelling unit is located in Waukesha County -in.county_name Waupaca County The dwelling unit is located in Waupaca County -in.county_name Waushara County The dwelling unit is located in Waushara County -in.county_name Wayne County The dwelling unit is located in Wayne County -in.county_name Waynesboro city The dwelling unit is located in Waynesboro city -in.county_name Weakley County The dwelling unit is located in Weakley County -in.county_name Webb County The dwelling unit is located in Webb County -in.county_name Weber County The dwelling unit is located in Weber County -in.county_name Webster County The dwelling unit is located in Webster County -in.county_name Webster Parish The dwelling unit is located in Webster Parish -in.county_name Weld County The dwelling unit is located in Weld County -in.county_name Wells County The dwelling unit is located in Wells County -in.county_name West Baton Rouge Parish The dwelling unit is located in West Baton Rouge Parish -in.county_name West Carroll Parish The dwelling unit is located in West Carroll Parish -in.county_name West Feliciana Parish The dwelling unit is located in West Feliciana Parish -in.county_name Westchester County The dwelling unit is located in Westchester County -in.county_name Westmoreland County The dwelling unit is located in Westmoreland County -in.county_name Weston County The dwelling unit is located in Weston County -in.county_name Wetzel County The dwelling unit is located in Wetzel County -in.county_name Wexford County The dwelling unit is located in Wexford County -in.county_name Wharton County The dwelling unit is located in Wharton County -in.county_name Whatcom County The dwelling unit is located in Whatcom County -in.county_name Wheatland County The dwelling unit is located in Wheatland County -in.county_name Wheeler County The dwelling unit is located in Wheeler County -in.county_name White County The dwelling unit is located in White County -in.county_name White Pine County The dwelling unit is located in White Pine County -in.county_name Whiteside County The dwelling unit is located in Whiteside County -in.county_name Whitfield County The dwelling unit is located in Whitfield County -in.county_name Whitley County The dwelling unit is located in Whitley County -in.county_name Whitman County The dwelling unit is located in Whitman County -in.county_name Wibaux County The dwelling unit is located in Wibaux County -in.county_name Wichita County The dwelling unit is located in Wichita County -in.county_name Wicomico County The dwelling unit is located in Wicomico County -in.county_name Wilbarger County The dwelling unit is located in Wilbarger County -in.county_name Wilcox County The dwelling unit is located in Wilcox County -in.county_name Wilkes County The dwelling unit is located in Wilkes County -in.county_name Wilkin County The dwelling unit is located in Wilkin County -in.county_name Wilkinson County The dwelling unit is located in Wilkinson County -in.county_name Will County The dwelling unit is located in Will County -in.county_name Willacy County The dwelling unit is located in Willacy County -in.county_name Williams County The dwelling unit is located in Williams County -in.county_name Williamsburg County The dwelling unit is located in Williamsburg County -in.county_name Williamsburg city The dwelling unit is located in Williamsburg city -in.county_name Williamson County The dwelling unit is located in Williamson County -in.county_name Wilson County The dwelling unit is located in Wilson County -in.county_name Winchester city The dwelling unit is located in Winchester city -in.county_name Windham County The dwelling unit is located in Windham County -in.county_name Windsor County The dwelling unit is located in Windsor County -in.county_name Winkler County The dwelling unit is located in Winkler County -in.county_name Winn Parish The dwelling unit is located in Winn Parish -in.county_name Winnebago County The dwelling unit is located in Winnebago County -in.county_name Winneshiek County The dwelling unit is located in Winneshiek County -in.county_name Winona County The dwelling unit is located in Winona County -in.county_name Winston County The dwelling unit is located in Winston County -in.county_name Wirt County The dwelling unit is located in Wirt County -in.county_name Wise County The dwelling unit is located in Wise County -in.county_name Wolfe County The dwelling unit is located in Wolfe County -in.county_name Wood County The dwelling unit is located in Wood County -in.county_name Woodbury County The dwelling unit is located in Woodbury County -in.county_name Woodford County The dwelling unit is located in Woodford County -in.county_name Woodruff County The dwelling unit is located in Woodruff County -in.county_name Woods County The dwelling unit is located in Woods County -in.county_name Woodson County The dwelling unit is located in Woodson County -in.county_name Woodward County The dwelling unit is located in Woodward County -in.county_name Worcester County The dwelling unit is located in Worcester County -in.county_name Worth County The dwelling unit is located in Worth County -in.county_name Wrangell City and Borough The dwelling unit is located in Wrangell City and Borough -in.county_name Wright County The dwelling unit is located in Wright County -in.county_name Wyandot County The dwelling unit is located in Wyandot County -in.county_name Wyandotte County The dwelling unit is located in Wyandotte County -in.county_name Wyoming County The dwelling unit is located in Wyoming County -in.county_name Wythe County The dwelling unit is located in Wythe County -in.county_name Yadkin County The dwelling unit is located in Yadkin County -in.county_name Yakima County The dwelling unit is located in Yakima County -in.county_name Yakutat City and Borough The dwelling unit is located in Yakutat City and Borough -in.county_name Yalobusha County The dwelling unit is located in Yalobusha County -in.county_name Yamhill County The dwelling unit is located in Yamhill County -in.county_name Yancey County The dwelling unit is located in Yancey County -in.county_name Yankton County The dwelling unit is located in Yankton County -in.county_name Yates County The dwelling unit is located in Yates County -in.county_name Yavapai County The dwelling unit is located in Yavapai County -in.county_name Yazoo County The dwelling unit is located in Yazoo County -in.county_name Yell County The dwelling unit is located in Yell County -in.county_name Yellow Medicine County The dwelling unit is located in Yellow Medicine County -in.county_name Yellowstone County The dwelling unit is located in Yellowstone County -in.county_name Yoakum County The dwelling unit is located in Yoakum County -in.county_name Yolo County The dwelling unit is located in Yolo County -in.county_name York County The dwelling unit is located in York County -in.county_name Young County The dwelling unit is located in Young County -in.county_name Yuba County The dwelling unit is located in Yuba County -in.county_name Yukon-Koyukuk Census Area The dwelling unit is located in Yukon-Koyukuk Census Area -in.county_name Yuma County The dwelling unit is located in Yuma County -in.county_name Zapata County The dwelling unit is located in Zapata County -in.county_name Zavala County The dwelling unit is located in Zavala County -in.county_name Ziebach County The dwelling unit is located in Ziebach County -in.custom_state AK The dwelling unit is located in AK state -in.custom_state Others The dwelling unit is located in Others state -in.dehumidifier None No dehumidifier -in.dishwasher 290 Rated kWh 290 kWh rated dishwasher -in.dishwasher 318 Rated kWh 318 kWh rated dishwasher -in.dishwasher None No dishwasher -in.dishwasher_usage_level 100% Usage The usage of dishwasher is at 100% the national average -in.dishwasher_usage_level 120% Usage The usage of dishwasher is at 120% the national average -in.dishwasher_usage_level 80% Usage The usage of dishwasher is at 80% the national average -in.door_area 20 ft^2 Door area is 20 square footage -in.doors Fiberglass Door material is fiberglass -in.duct_leakage_and_insulation "0% Leakage to Outside, Uninsulated" 0% of duct airflow lost to leakage; ducts are uninsulated -in.duct_leakage_and_insulation "10% Leakage to Outside, R-4" 10% of duct airflow is lost to leakage; nominal duct insulation is R-4 -in.duct_leakage_and_insulation "10% Leakage to Outside, R-6" 10% of duct airflow is lost to leakage; nominal duct insulation is R-6 -in.duct_leakage_and_insulation "10% Leakage to Outside, R-8" 10% of duct airflow is lost to leakage; nominal duct insulation is R-8 -in.duct_leakage_and_insulation "10% Leakage to Outside, Uninsulated" 10% of duct airflow is lost to leakage; ducts are uninsulated -in.duct_leakage_and_insulation "20% Leakage to Outside, R-4" 20% of duct airflow is lost to leakage; nominal duct insulation is R-4 -in.duct_leakage_and_insulation "20% Leakage to Outside, R-6" 20% of duct airflow is lost to leakage; nominal duct insulation is R-6 -in.duct_leakage_and_insulation "20% Leakage to Outside, R-8" 20% of duct airflow is lost to leakage; nominal duct insulation is R-8 -in.duct_leakage_and_insulation "20% Leakage to Outside, Uninsulated" 20% of duct airflow is lost to leakage; ducts are uninsulated -in.duct_leakage_and_insulation "30% Leakage to Outside, R-4" 30% of duct airflow is lost to leakage; nominal duct insulation is R-4 -in.duct_leakage_and_insulation "30% Leakage to Outside, R-6" 30% of duct airflow is lost to leakage; nominal duct insulation is R-6 -in.duct_leakage_and_insulation "30% Leakage to Outside, R-8" 30% of duct airflow is lost to leakage; nominal duct insulation is R-8 -in.duct_leakage_and_insulation "30% Leakage to Outside, Uninsulated" 30% of duct airflow is lost to leakage; ducts are uninsulated -in.duct_leakage_and_insulation None No ducts exist -in.duct_location Attic The location of duct system is Attic -in.duct_location Crawlspace The location of duct system is Crawlspace -in.duct_location Garage The location of duct system is Garage -in.duct_location Heated Basement The location of duct system is Heated Basement -in.duct_location Living Space The location of duct system is Living Space -in.duct_location None No ducts exist -in.duct_location Unheated Basement The location of duct system is Unheated Basement -in.eaves 2 ft 2 feet eaves depth -in.electric_panel_breaker_space_total_count 8 The electric panel has a total of 8 breaker spaces -in.electric_panel_breaker_space_total_count 9 The electric panel has a total of 9 breaker spaces -in.electric_panel_breaker_space_total_count 10 The electric panel has a total of 10 breaker spaces -in.electric_panel_breaker_space_total_count 11 The electric panel has a total of 11 breaker spaces -in.electric_panel_breaker_space_total_count 12 The electric panel has a total of 12 breaker spaces -in.electric_panel_breaker_space_total_count 13 The electric panel has a total of 13 breaker spaces -in.electric_panel_breaker_space_total_count 14 The electric panel has a total of 14 breaker spaces -in.electric_panel_breaker_space_total_count 15 The electric panel has a total of 15 breaker spaces -in.electric_panel_breaker_space_total_count 16 The electric panel has a total of 16 breaker spaces -in.electric_panel_breaker_space_total_count 17 The electric panel has a total of 17 breaker spaces -in.electric_panel_breaker_space_total_count 18 The electric panel has a total of 18 breaker spaces -in.electric_panel_breaker_space_total_count 19 The electric panel has a total of 19 breaker spaces -in.electric_panel_breaker_space_total_count 20 The electric panel has a total of 20 breaker spaces -in.electric_panel_breaker_space_total_count 21 The electric panel has a total of 21 breaker spaces -in.electric_panel_breaker_space_total_count 22 The electric panel has a total of 22 breaker spaces -in.electric_panel_breaker_space_total_count 23 The electric panel has a total of 23 breaker spaces -in.electric_panel_breaker_space_total_count 24 The electric panel has a total of 24 breaker spaces -in.electric_panel_breaker_space_total_count 25 The electric panel has a total of 25 breaker spaces -in.electric_panel_breaker_space_total_count 26 The electric panel has a total of 26 breaker spaces -in.electric_panel_breaker_space_total_count 27 The electric panel has a total of 27 breaker spaces -in.electric_panel_breaker_space_total_count 28 The electric panel has a total of 28 breaker spaces -in.electric_panel_breaker_space_total_count 29 The electric panel has a total of 29 breaker spaces -in.electric_panel_breaker_space_total_count 30 The electric panel has a total of 30 breaker spaces -in.electric_panel_breaker_space_total_count 31 The electric panel has a total of 31 breaker spaces -in.electric_panel_breaker_space_total_count 32 The electric panel has a total of 32 breaker spaces -in.electric_panel_breaker_space_total_count 33 The electric panel has a total of 33 breaker spaces -in.electric_panel_breaker_space_total_count 34 The electric panel has a total of 34 breaker spaces -in.electric_panel_breaker_space_total_count 35 The electric panel has a total of 35 breaker spaces -in.electric_panel_breaker_space_total_count 36 The electric panel has a total of 36 breaker spaces -in.electric_panel_breaker_space_total_count 37 The electric panel has a total of 37 breaker spaces -in.electric_panel_breaker_space_total_count 38 The electric panel has a total of 38 breaker spaces -in.electric_panel_breaker_space_total_count 39 The electric panel has a total of 39 breaker spaces -in.electric_panel_breaker_space_total_count 40 The electric panel has a total of 40 breaker spaces -in.electric_panel_breaker_space_total_count 41 The electric panel has a total of 41 breaker spaces -in.electric_panel_breaker_space_total_count 42 The electric panel has a total of 42 breaker spaces -in.electric_panel_breaker_space_total_count 43 The electric panel has a total of 43 breaker spaces -in.electric_panel_breaker_space_total_count 44 The electric panel has a total of 44 breaker spaces -in.electric_panel_breaker_space_total_count 45 The electric panel has a total of 45 breaker spaces -in.electric_panel_breaker_space_total_count 46 The electric panel has a total of 46 breaker spaces -in.electric_panel_breaker_space_total_count 47 The electric panel has a total of 47 breaker spaces -in.electric_panel_breaker_space_total_count 48 The electric panel has a total of 48 breaker spaces -in.electric_panel_breaker_space_total_count 49 The electric panel has a total of 49 breaker spaces -in.electric_panel_breaker_space_total_count 50 The electric panel has a total of 50 breaker spaces -in.electric_panel_breaker_space_total_count 51 The electric panel has a total of 51 breaker spaces -in.electric_panel_breaker_space_total_count 52 The electric panel has a total of 52 breaker spaces -in.electric_panel_breaker_space_total_count 53 The electric panel has a total of 53 breaker spaces -in.electric_panel_breaker_space_total_count 54 The electric panel has a total of 54 breaker spaces -in.electric_panel_breaker_space_total_count 55 The electric panel has a total of 55 breaker spaces -in.electric_panel_breaker_space_total_count 56 The electric panel has a total of 56 breaker spaces -in.electric_panel_breaker_space_total_count 57 The electric panel has a total of 57 breaker spaces -in.electric_panel_breaker_space_total_count 58 The electric panel has a total of 58 breaker spaces -in.electric_panel_breaker_space_total_count 59 The electric panel has a total of 59 breaker spaces -in.electric_panel_breaker_space_total_count 60 The electric panel has a total of 60 breaker spaces -in.electric_panel_service_rating..a 60 The electric panel is rated at 60 A -in.electric_panel_service_rating..a 90 The electric panel is rated at 90 A -in.electric_panel_service_rating..a 100 The electric panel is rated at 100 A -in.electric_panel_service_rating..a 120 The electric panel is rated at 120 A -in.electric_panel_service_rating..a 125 The electric panel is rated at 125 A -in.electric_panel_service_rating..a 150 The electric panel is rated at 150 A -in.electric_panel_service_rating..a 200 The electric panel is rated at 200 A -in.electric_panel_service_rating..a 250 The electric panel is rated at 250 A -in.electric_panel_service_rating..a 300 The electric panel is rated at 300 A -in.electric_panel_service_rating..a 400 The electric panel is rated at 400 A -in.electric_panel_service_rating_bin..a 100 The electric panel is rated at 100 A -in.electric_panel_service_rating_bin..a 101-124 The electric panel is rated in a range of 101-124 A -in.electric_panel_service_rating_bin..a 125 The electric panel is rated in a range of 125 A -in.electric_panel_service_rating_bin..a 126-199 The electric panel is rated in a range of 126-199 A -in.electric_panel_service_rating_bin..a 200 The electric panel is rated in a range of 200 A -in.electric_panel_service_rating_bin..a 201+ The electric panel is rated in a range of 201+ A -in.electric_panel_service_rating_bin..a <100 The electric panel is rated in a range of <100 A -in.electric_vehicle_battery "Compact, Battery Electric Vehicle, 200 mile range" The electric vehicle is Compact and has a 200-mile battery range -in.electric_vehicle_battery "Compact, Battery Electric Vehicle, 300 mile range" The electric vehicle is Compact and has a 300-mile battery range -in.electric_vehicle_battery "Midsize, Battery Electric Vehicle, 200 mile range" The electric vehicle is Midsize and has a 200-mile battery range -in.electric_vehicle_battery "Midsize, Battery Electric Vehicle, 300 mile range" The electric vehicle is Midsize and has a 300-mile battery range -in.electric_vehicle_battery "Pickup, Battery Electric Vehicle, 200 mile range" The electric vehicle is Pickup and has a 200-mile battery range -in.electric_vehicle_battery "Pickup, Battery Electric Vehicle, 300 mile range" The electric vehicle is Pickup and has a 300-mile battery range -in.electric_vehicle_battery "SUV, Battery Electric Vehicle, 200 mile range" The electric vehicle is SUV and has a 200-mile battery range -in.electric_vehicle_battery "SUV, Battery Electric Vehicle, 300 mile range" The electric vehicle is SUV and has a 300-mile battery range -in.electric_vehicle_charge_at_home 0-19% 0-19% of electric vehicle charging occurs at home -in.electric_vehicle_charge_at_home 100% All electric vehicle charging occurs at home -in.electric_vehicle_charge_at_home 20-39% 20-39% of electric vehicle charging occurs at home -in.electric_vehicle_charge_at_home 40-59% 40-59% of electric vehicle charging occurs at home -in.electric_vehicle_charge_at_home 60-79% 60-79% of electric vehicle charging occurs at home -in.electric_vehicle_charge_at_home 80-99% 80-99% of electric vehicle charging occurs at home -in.electric_vehicle_charger Level 1 charger The electric vehicle charger at the dwelling unit is a Level 1 charger -in.electric_vehicle_charger Level 2 charger The electric vehicle charger at the dwelling unit is a Level 2 charger -in.electric_vehicle_charger None There is no electric vehicle charger at the dwelling unit -in.electric_vehicle_miles_traveled 1000 The electric vehicle is driven 1000 miles per year -in.electric_vehicle_miles_traveled 3000 The electric vehicle is driven 3000 miles per year -in.electric_vehicle_miles_traveled 5000 The electric vehicle is driven 5000 miles per year -in.electric_vehicle_miles_traveled 7000 The electric vehicle is driven 7000 miles per year -in.electric_vehicle_miles_traveled 9000 The electric vehicle is driven 9000 miles per year -in.electric_vehicle_miles_traveled 11000 The electric vehicle is driven 11000 miles per year -in.electric_vehicle_miles_traveled 13000 The electric vehicle is driven 13000 miles per year -in.electric_vehicle_miles_traveled 15000 The electric vehicle is driven 15000 miles per year -in.electric_vehicle_miles_traveled 17000 The electric vehicle is driven 17000 miles per year -in.electric_vehicle_miles_traveled 19000 The electric vehicle is driven 19000 miles per year -in.electric_vehicle_miles_traveled 22500 The electric vehicle is driven 22500 miles per year -in.electric_vehicle_outlet_access No The unit doesn't have an outlet within 20 feet of vehicle parking -in.electric_vehicle_outlet_access Yes The unit has an outlet within 20 feet of vehicle parking -in.electric_vehicle_ownership No The dwelling unit doesn't own an electric vehicle. -in.electric_vehicle_ownership Yes The dwelling unit owns an electric vehicle. -in.energystar_climate_zone_2023 North-Central Climate zones used by EnergyStar is North-Central -in.energystar_climate_zone_2023 Northern Climate zones used by EnergyStar is Northern -in.energystar_climate_zone_2023 South-Central Climate zones used by EnergyStar is South-Central -in.energystar_climate_zone_2023 Southern Climate zones used by EnergyStar is Southern -in.federal_poverty_level 0-100% Federal poverty level of 0-100% -in.federal_poverty_level 100-150% Federal poverty level of 100-150% -in.federal_poverty_level 150-200% Federal poverty level of 150-200% -in.federal_poverty_level 200-300% Federal poverty level of 200-300% -in.federal_poverty_level 300-400% Federal poverty level of 300-400% -in.federal_poverty_level 400%+ Federal poverty level of 400%+ -in.federal_poverty_level Not Available Federal poverty level is Not Available -in.generation_and_emissions_assessment_region CAISO Generation and emission assessment region of CAISO -in.generation_and_emissions_assessment_region ERCOT Generation and emission assessment region of ERCOT -in.generation_and_emissions_assessment_region FRCC Generation and emission assessment region of FRCC -in.generation_and_emissions_assessment_region ISONE Generation and emission assessment region of ISONE -in.generation_and_emissions_assessment_region MISO Central Generation and emission assessment region of MISO Central -in.generation_and_emissions_assessment_region MISO North Generation and emission assessment region of MISO North -in.generation_and_emissions_assessment_region MISO South Generation and emission assessment region of MISO South -in.generation_and_emissions_assessment_region NYISO Generation and emission assessment region of NYISO -in.generation_and_emissions_assessment_region None Generation and emission assessment region of None -in.generation_and_emissions_assessment_region Northern Grid East Generation and emission assessment region of Northern Grid East -in.generation_and_emissions_assessment_region Northern Grid South Generation and emission assessment region of Northern Grid South -in.generation_and_emissions_assessment_region Northern Grid West Generation and emission assessment region of Northern Grid West -in.generation_and_emissions_assessment_region PJM East Generation and emission assessment region of PJM East -in.generation_and_emissions_assessment_region PJM West Generation and emission assessment region of PJM West -in.generation_and_emissions_assessment_region SERTP Generation and emission assessment region of SERTP -in.generation_and_emissions_assessment_region SPP North Generation and emission assessment region of SPP North -in.generation_and_emissions_assessment_region SPP South Generation and emission assessment region of SPP South -in.generation_and_emissions_assessment_region West Connect North Generation and emission assessment region of West Connect North -in.generation_and_emissions_assessment_region West Connect South Generation and emission assessment region of West Connect South -in.geometry_attic_type Finished Attic or Cathedral Ceilings Living space extends up to the roof structure -in.geometry_attic_type None No attic -in.geometry_attic_type Unvented Attic Attic space is unvented -in.geometry_attic_type Vented Attic Attic space is unfinished -in.geometry_building_horizontal_location_mf Left "Unit is located on the left side of a multifamily building, and has a shared right wall" -in.geometry_building_horizontal_location_mf Middle "Unit is located in the middle of a multifamily building, and has shared walls on the left and right" -in.geometry_building_horizontal_location_mf None Unit is not part of a multifamily building -in.geometry_building_horizontal_location_mf Not Applicable Unit does not have shared walls on the right or left -in.geometry_building_horizontal_location_mf Right "Unit is located on the right side of a multifamily building, and has a shared left wall" -in.geometry_building_horizontal_location_sfa Left "Unit is located on the left side of a single-family attached building, and has a shared right wall" -in.geometry_building_horizontal_location_sfa Middle "Unit is located in the middle of a single-family attached building, and has shared walls on the left and right" -in.geometry_building_horizontal_location_sfa None Unit is not part of a single-family attached building -in.geometry_building_horizontal_location_sfa Right "Unit is located on the right side of a single-family attached building, and has a shared left wall" -in.geometry_building_level_mf Bottom "Unit is on the bottom level of a multifamily building, and may have a shared ceiling" -in.geometry_building_level_mf Middle Unit is in a middle level of a multifamily building and has a shared floor and ceiling -in.geometry_building_level_mf None Not a multifamily building unit -in.geometry_building_level_mf Top Unit is on the top level of a multifamily building and has a shared floor -in.geometry_building_number_units_mf 2 Unit is in a multi-family building with 2 units -in.geometry_building_number_units_mf 3 Unit is in a multi-family building with 3 units -in.geometry_building_number_units_mf 4 Unit is in a multi-family building with 4 units -in.geometry_building_number_units_mf 5 Unit is in a multi-family building with 5 units -in.geometry_building_number_units_mf 6 Unit is in a multi-family building with 6 units -in.geometry_building_number_units_mf 7 Unit is in a multi-family building with 7 units -in.geometry_building_number_units_mf 8 Unit is in a multi-family building with 8 units -in.geometry_building_number_units_mf 9 Unit is in a multi-family building with 9 units -in.geometry_building_number_units_mf 10 Unit is in a multi-family building with 10 units -in.geometry_building_number_units_mf 11 Unit is in a multi-family building with 11 units -in.geometry_building_number_units_mf 12 Unit is in a multi-family building with 12 units -in.geometry_building_number_units_mf 13 Unit is in a multi-family building with 13 units -in.geometry_building_number_units_mf 14 Unit is in a multi-family building with 14 units -in.geometry_building_number_units_mf 15 Unit is in a multi-family building with 15 units -in.geometry_building_number_units_mf 16 Unit is in a multi-family building with 16 units -in.geometry_building_number_units_mf 17 Unit is in a multi-family building with 17 units -in.geometry_building_number_units_mf 18 Unit is in a multi-family building with 18 units -in.geometry_building_number_units_mf 19 Unit is in a multi-family building with 19 units -in.geometry_building_number_units_mf 20 Unit is in a multi-family building with 20 units -in.geometry_building_number_units_mf 24 Unit is in a multi-family building with 24 units -in.geometry_building_number_units_mf 30 Unit is in a multi-family building with 30 units -in.geometry_building_number_units_mf 36 Unit is in a multi-family building with 36 units -in.geometry_building_number_units_mf 43 Unit is in a multi-family building with 43 units -in.geometry_building_number_units_mf 67 Unit is in a multi-family building with 67 units -in.geometry_building_number_units_mf 116 Unit is in a multi-family building with 116 units -in.geometry_building_number_units_mf 183 Unit is in a multi-family building with 183 units -in.geometry_building_number_units_mf 326 Unit is in a multi-family building with 326 units -in.geometry_building_number_units_mf None Unit is not part of a multifamily building -in.geometry_building_number_units_sfa 5 Unit is in a attached single-family building with 5 units -in.geometry_building_number_units_sfa 6 Unit is in a attached single-family building with 6 units -in.geometry_building_number_units_sfa 7 Unit is in a attached single-family building with 7 units -in.geometry_building_number_units_sfa 8 Unit is in a attached single-family building with 8 units -in.geometry_building_number_units_sfa 10 Unit is in a attached single-family building with 10 units -in.geometry_building_number_units_sfa 12 Unit is in a attached single-family building with 12 units -in.geometry_building_number_units_sfa 15 Unit is in a attached single-family building with 15 units -in.geometry_building_number_units_sfa 16 Unit is in a attached single-family building with 16 units -in.geometry_building_number_units_sfa 20 Unit is in a attached single-family building with 20 units -in.geometry_building_number_units_sfa 24 Unit is in a attached single-family building with 24 units -in.geometry_building_number_units_sfa 30 Unit is in a attached single-family building with 30 units -in.geometry_building_number_units_sfa 36 Unit is in a attached single-family building with 36 units -in.geometry_building_number_units_sfa 50 Unit is in a attached single-family building with 50 units -in.geometry_building_number_units_sfa 60 Unit is in a attached single-family building with 60 units -in.geometry_building_number_units_sfa 90 Unit is in a attached single-family building with 90 units -in.geometry_building_number_units_sfa 144 Unit is in a attached single-family building with 144 units -in.geometry_building_number_units_sfa None Unit is not part of a single-family attached building -in.geometry_building_type_acs 10 to 19 Unit "Multifamily building with 10 to 19 units, as defined by the American Community Survey" -in.geometry_building_type_acs 2 Unit "Multifamily building with 2 units, as defined by the American Community Survey" -in.geometry_building_type_acs 20 to 49 Unit "Multifamily building with 20 to 49 units, as defined by the American Community Survey" -in.geometry_building_type_acs 3 or 4 Unit "Multifamily building with 3 to 4 units, as defined by the American Community Survey" -in.geometry_building_type_acs 5 to 9 Unit "Multifamily building with 5 to 9 units, as defined by the American Community Survey" -in.geometry_building_type_acs 50 or more Unit "Multifamily building with 50 or more units, as defined by the American Community Survey" -in.geometry_building_type_acs Mobile Home Mobile home building type as defined by the American Community Survey -in.geometry_building_type_acs Single-Family Attached Single-family attached building type as defined by the American Community Survey -in.geometry_building_type_acs Single-Family Detached Single-family detached building type as defined by the American Community Survey -in.geometry_building_type_height Mobile Home Mobile home building type -in.geometry_building_type_height Multi-Family with 2 - 4 Units Multi-family building with 2-4 Units -in.geometry_building_type_height "Multi-Family with 5+ Units, 1-3 Stories" Multifamily building with 5 or more units and 1 to 3 stories (low-rise) -in.geometry_building_type_height "Multi-Family with 5+ Units, 4-7 Stories" Multifamily building with 5 or more units and 4 to 7 stories (mid-rise) -in.geometry_building_type_height "Multi-Family with 5+ Units, 8+ Stories" Multifamily building with 5 or more units and more than 8 stories (high-rise) -in.geometry_building_type_height Single-Family Attached Single-family attached building type -in.geometry_building_type_height Single-Family Detached Single-family detached building type -in.geometry_building_type_recs Mobile Home Mobile home building type as defined by RECS 2009 -in.geometry_building_type_recs Multi-Family with 2 - 4 Units Multifamily building type with 2 to 4 units as defined by RECS 2009 -in.geometry_building_type_recs Multi-Family with 5+ Units Multifamily building type with more than 5 units as defined by RECS 2009 -in.geometry_building_type_recs Single-Family Attached Single-family attached building type as defined by RECS 2009 -in.geometry_building_type_recs Single-Family Detached Single-family detached building type as defined by RECS 2009 -in.geometry_floor_area 0-499 Finished floor area bin from 0 to 499 ft2 -in.geometry_floor_area 1000-1499 Finished floor area bin from 1000 to 1499 ft2 -in.geometry_floor_area 1500-1999 Finished floor area bin from 1500 to 1999 ft2 -in.geometry_floor_area 2000-2499 Finished floor area bin from 2000 to 2499 ft2 -in.geometry_floor_area 2500-2999 Finished floor area bin from 2500 to 2999 ft2 -in.geometry_floor_area 3000-3999 Finished floor area bin from 3000 to 3999 ft2 -in.geometry_floor_area 4000+ Finished floor area bin 4000 ft2 and greater -in.geometry_floor_area 500-749 Finished floor area bin from 500 to 749 ft2 -in.geometry_floor_area 750-999 Finished floor area bin from 750 to 999 ft2 -in.geometry_floor_area_bin 0-1499 Finished floor area bin from 0 to 1499 ft2 -in.geometry_floor_area_bin 1500-2499 Finished floor area bin from 1500 to 2499 ft2 -in.geometry_floor_area_bin 2500-3999 Finished floor area bin from 2500 to 3999 ft2 -in.geometry_floor_area_bin 4000+ Finished floor area bin 4000 ft2 and greater -in.geometry_foundation_type Ambient Pier and beam foundation -in.geometry_foundation_type Heated Basement Heated basement foundation -in.geometry_foundation_type Slab Slab foundation -in.geometry_foundation_type Unheated Basement Unheated basement foundation -in.geometry_foundation_type Unvented Crawlspace Unvented crawlspace foundation -in.geometry_foundation_type Vented Crawlspace Vented crawlspace foundation -in.geometry_garage 1 Car Building has a 1 car garage -in.geometry_garage 2 Car Building has a 2 car garage -in.geometry_garage 3 Car Building has a 3 car garage -in.geometry_garage None Building does not have a garage -in.geometry_space_combination "Mobile Home, Ambient, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Heated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Heated Basement, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Slab, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Slab, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Slab, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Slab, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Ambient, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Ambient, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Ambient, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Ambient, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Heated Basement, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Slab, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Slab, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -in.geometry_space_combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" "A valid combination of building type, attic type, foundation type, and garage of the dwelling unit is: Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -in.geometry_stories 1 1 story building -in.geometry_stories 2 2 story building -in.geometry_stories 3 3 story building -in.geometry_stories 4 4 story building -in.geometry_stories 5 5 story building -in.geometry_stories 6 6 story building -in.geometry_stories 7 7 story building -in.geometry_stories 8 8 story building -in.geometry_stories 9 9 story building -in.geometry_stories 10 10 story building -in.geometry_stories 11 11 story building -in.geometry_stories 12 12 story building -in.geometry_stories 13 13 story building -in.geometry_stories 14 14 story building -in.geometry_stories 15 15 story building -in.geometry_stories 20 20 story building -in.geometry_stories 21 21 story building -in.geometry_stories 35 35 story building -in.geometry_stories_low_rise 1 1 story low rise building -in.geometry_stories_low_rise 2 2 story low rise building -in.geometry_stories_low_rise 3 3 story low rise building -in.geometry_stories_low_rise 4+ 4+ story low rise building -in.geometry_story_bin 8+ 8 or more story building -in.geometry_story_bin <8 Less than 8 story building -in.geometry_wall_exterior_finish "Aluminum, Light" "Aluminum, Light exterior finish" -in.geometry_wall_exterior_finish "Brick, Light" "Brick, Light exterior finish" -in.geometry_wall_exterior_finish "Brick, Medium/Dark" "Brick, Medium/Dark exterior finish" -in.geometry_wall_exterior_finish "Fiber-Cement, Light" "Fiber-Cement, Light exterior finish" -in.geometry_wall_exterior_finish None None exterior finish -in.geometry_wall_exterior_finish "Shingle, Asbestos, Medium" "Shingle, Asbestos, Medium exterior finish" -in.geometry_wall_exterior_finish "Shingle, Composition, Medium" "Shingle, Composition, Medium exterior finish" -in.geometry_wall_exterior_finish "Stucco, Light" "Stucco, Light exterior finish" -in.geometry_wall_exterior_finish "Stucco, Medium/Dark" "Stucco, Medium/Dark exterior finish" -in.geometry_wall_exterior_finish "Vinyl, Light" "Vinyl, Light exterior finish" -in.geometry_wall_exterior_finish "Wood, Medium/Dark" "Wood, Medium/Dark exterior finish" -in.geometry_wall_type Brick Exterior wall type is brick -in.geometry_wall_type Concrete Exterior wall type is concrete -in.geometry_wall_type Steel Frame Exterior wall type is steel frame -in.geometry_wall_type Wood Frame Exterior wall type is wood frame -in.ground_thermal_conductivity 0.5 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 0.5 Btu/hr-ft-F -in.ground_thermal_conductivity 0.8 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 0.8 Btu/hr-ft-F -in.ground_thermal_conductivity 1.1 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.1 Btu/hr-ft-F -in.ground_thermal_conductivity 1.4 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.4 Btu/hr-ft-F -in.ground_thermal_conductivity 1.7 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 1.7 Btu/hr-ft-F -in.ground_thermal_conductivity 2 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2 Btu/hr-ft-F -in.ground_thermal_conductivity 2.3 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2.3 Btu/hr-ft-F -in.ground_thermal_conductivity 2.6 The thermal conductivity of the ground used in foundation and geothermal heat pump heat transfer calculations is 2.6 Btu/hr-ft-F -in.has_pv No Does not have rooftop PV -in.has_pv Yes Has rooftop PV -in.heating_fuel Electricity Electricity heating fuel -in.heating_fuel Fuel Oil Fuel oil heating fuel -in.heating_fuel Natural Gas Natural gas heating fuel -in.heating_fuel None None heating fuel -in.heating_fuel Other Fuel Other fuel heating fuel -in.heating_fuel Propane Propane heating fuel -in.heating_fuel Wood Wood heating fuel -in.heating_setpoint 55F Base heating setpoint is 55F before offset is applied -in.heating_setpoint 60F Base heating setpoint is 60F before offset is applied -in.heating_setpoint 62F Base heating setpoint is 62F before offset is applied -in.heating_setpoint 65F Base heating setpoint is 65F before offset is applied -in.heating_setpoint 67F Base heating setpoint is 67F before offset is applied -in.heating_setpoint 68F Base heating setpoint is 68F before offset is applied -in.heating_setpoint 70F Base heating setpoint is 70F before offset is applied -in.heating_setpoint 72F Base heating setpoint is 72F before offset is applied -in.heating_setpoint 75F Base heating setpoint is 75F before offset is applied -in.heating_setpoint 76F Base heating setpoint is 76F before offset is applied -in.heating_setpoint 78F Base heating setpoint is 78F before offset is applied -in.heating_setpoint 80F Base heating setpoint is 80F before offset is applied -in.heating_setpoint_has_offset No Heating setpoint doesn't have offset -in.heating_setpoint_has_offset Yes Heating setpoint has offset -in.heating_setpoint_offset_magnitude 0F The magnitude of heating setpoint offset is 0F -in.heating_setpoint_offset_magnitude 12F The magnitude of heating setpoint offset is 12F -in.heating_setpoint_offset_magnitude 3F The magnitude of heating setpoint offset is 3F -in.heating_setpoint_offset_magnitude 6F The magnitude of heating setpoint offset is 6F -in.heating_setpoint_offset_period Day Heating setpoint schedule is decreased during the day (9am to 5pm) -in.heating_setpoint_offset_period Day +1h "Heating setpoint schedule is decreased during the day, shifted +1 hour from the Day schedule" -in.heating_setpoint_offset_period Day +2h "Heating setpoint schedule is decreased during the day, shifted +2 hour from the Day schedule" -in.heating_setpoint_offset_period Day +3h "Heating setpoint schedule is decreased during the day, shifted +3 hour from the Day schedule" -in.heating_setpoint_offset_period Day +4h "Heating setpoint schedule is decreased during the day, shifted +4 hour from the Day schedule" -in.heating_setpoint_offset_period Day +5h "Heating setpoint schedule is decreased during the day, shifted +5 hour from the Day schedule" -in.heating_setpoint_offset_period Day -1h "Heating setpoint schedule is decreased during the day, shifted -1 hour from the Day schedule" -in.heating_setpoint_offset_period Day -2h "Heating setpoint schedule is decreased during the day, shifted -2 hour from the Day schedule" -in.heating_setpoint_offset_period Day -3h "Heating setpoint schedule is decreased during the day, shifted -3 hour from the Day schedule" -in.heating_setpoint_offset_period Day -4h "Heating setpoint schedule is decreased during the day, shifted -4 hour from the Day schedule" -in.heating_setpoint_offset_period Day -5h "Heating setpoint schedule is decreased during the day, shifted -5 hour from the Day schedule" -in.heating_setpoint_offset_period Day and Night Heating setpoint schedule is decreased during the day (9am to 5pm) and at night (10pm to 7am) -in.heating_setpoint_offset_period Day and Night +1h "Heating setpoint schedule is decreased during the day and at night, shifted +1 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night +2h "Heating setpoint schedule is decreased during the day and at night, shifted +2 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night +3h "Heating setpoint schedule is decreased during the day and at night, shifted +3 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night +4h "Heating setpoint schedule is decreased during the day and at night, shifted +4 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night +5h "Heating setpoint schedule is decreased during the day and at night, shifted +5 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night -1h "Heating setpoint schedule is decreased during the day and at night, shifted -1 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night -2h "Heating setpoint schedule is decreased during the day and at night, shifted -2 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night -3h "Heating setpoint schedule is decreased during the day and at night, shifted -3 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night -4h "Heating setpoint schedule is decreased during the day and at night, shifted -4 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Day and Night -5h "Heating setpoint schedule is decreased during the day and at night, shifted -5 hour from the Day and Night schedule" -in.heating_setpoint_offset_period Night Heating setpoint schedule is decreased at night (10pm to 7am) -in.heating_setpoint_offset_period Night +1h "Heating setpoint schedule is decreased at night, shifted +1 hour from the Night schedule" -in.heating_setpoint_offset_period Night +2h "Heating setpoint schedule is decreased at night, shifted +2 hour from the Night schedule" -in.heating_setpoint_offset_period Night +3h "Heating setpoint schedule is decreased at night, shifted +3 hour from the Night schedule" -in.heating_setpoint_offset_period Night +4h "Heating setpoint schedule is decreased at night, shifted +4 hour from the Night schedule" -in.heating_setpoint_offset_period Night +5h "Heating setpoint schedule is decreased at night, shifted +5 hour from the Night schedule" -in.heating_setpoint_offset_period Night -1h "Heating setpoint schedule is decreased at night, shifted -1 hour from the Night schedule" -in.heating_setpoint_offset_period Night -2h "Heating setpoint schedule is decreased at night, shifted -2 hour from the Night schedule" -in.heating_setpoint_offset_period Night -3h "Heating setpoint schedule is decreased at night, shifted -3 hour from the Night schedule" -in.heating_setpoint_offset_period Night -4h "Heating setpoint schedule is decreased at night, shifted -4 hour from the Night schedule" -in.heating_setpoint_offset_period Night -5h "Heating setpoint schedule is decreased at night, shifted -5 hour from the Night schedule" -in.heating_setpoint_offset_period None No heating setpoint offset schedule applied -in.heating_unavailable_days 1 day 1 day in a year heating is unavailable -in.heating_unavailable_days 1 month 1 month in a year heating is unavailable -in.heating_unavailable_days 1 week 1 week in a year heating is unavailable -in.heating_unavailable_days 2 weeks 2 weeks in a year heating is unavailable -in.heating_unavailable_days 3 days 3 days in a year heating is unavailable -in.heating_unavailable_days 3 months 3 months in a year heating is unavailable -in.heating_unavailable_days Never Heating is available for the whole year -in.heating_unavailable_days Year round Heating is unavailable for the whole year -in.heating_unavailable_period Apr 1 - Apr 1 Heating is unavailable during Apr 1 - Apr 1 -in.heating_unavailable_period Apr 1 - Apr 14 Heating is unavailable during Apr 1 - Apr 14 -in.heating_unavailable_period Apr 1 - Apr 3 Heating is unavailable during Apr 1 - Apr 3 -in.heating_unavailable_period Apr 1 - Apr 30 Heating is unavailable during Apr 1 - Apr 30 -in.heating_unavailable_period Apr 1 - Apr 7 Heating is unavailable during Apr 1 - Apr 7 -in.heating_unavailable_period Apr 1 - Jun 29 Heating is unavailable during Apr 1 - Jun 29 -in.heating_unavailable_period Apr 10 - Apr 10 Heating is unavailable during Apr 10 - Apr 10 -in.heating_unavailable_period Apr 10 - Apr 12 Heating is unavailable during Apr 10 - Apr 12 -in.heating_unavailable_period Apr 10 - Apr 16 Heating is unavailable during Apr 10 - Apr 16 -in.heating_unavailable_period Apr 10 - Apr 23 Heating is unavailable during Apr 10 - Apr 23 -in.heating_unavailable_period Apr 10 - Jul 8 Heating is unavailable during Apr 10 - Jul 8 -in.heating_unavailable_period Apr 10 - May 9 Heating is unavailable during Apr 10 - May 9 -in.heating_unavailable_period Apr 11 - Apr 11 Heating is unavailable during Apr 11 - Apr 11 -in.heating_unavailable_period Apr 11 - Apr 13 Heating is unavailable during Apr 11 - Apr 13 -in.heating_unavailable_period Apr 11 - Apr 17 Heating is unavailable during Apr 11 - Apr 17 -in.heating_unavailable_period Apr 11 - Apr 24 Heating is unavailable during Apr 11 - Apr 24 -in.heating_unavailable_period Apr 11 - Jul 9 Heating is unavailable during Apr 11 - Jul 9 -in.heating_unavailable_period Apr 11 - May 10 Heating is unavailable during Apr 11 - May 10 -in.heating_unavailable_period Apr 12 - Apr 12 Heating is unavailable during Apr 12 - Apr 12 -in.heating_unavailable_period Apr 12 - Apr 14 Heating is unavailable during Apr 12 - Apr 14 -in.heating_unavailable_period Apr 12 - Apr 18 Heating is unavailable during Apr 12 - Apr 18 -in.heating_unavailable_period Apr 12 - Apr 25 Heating is unavailable during Apr 12 - Apr 25 -in.heating_unavailable_period Apr 12 - Jul 10 Heating is unavailable during Apr 12 - Jul 10 -in.heating_unavailable_period Apr 12 - May 11 Heating is unavailable during Apr 12 - May 11 -in.heating_unavailable_period Apr 13 - Apr 13 Heating is unavailable during Apr 13 - Apr 13 -in.heating_unavailable_period Apr 13 - Apr 15 Heating is unavailable during Apr 13 - Apr 15 -in.heating_unavailable_period Apr 13 - Apr 19 Heating is unavailable during Apr 13 - Apr 19 -in.heating_unavailable_period Apr 13 - Apr 26 Heating is unavailable during Apr 13 - Apr 26 -in.heating_unavailable_period Apr 13 - Jul 11 Heating is unavailable during Apr 13 - Jul 11 -in.heating_unavailable_period Apr 13 - May 12 Heating is unavailable during Apr 13 - May 12 -in.heating_unavailable_period Apr 14 - Apr 14 Heating is unavailable during Apr 14 - Apr 14 -in.heating_unavailable_period Apr 14 - Apr 16 Heating is unavailable during Apr 14 - Apr 16 -in.heating_unavailable_period Apr 14 - Apr 20 Heating is unavailable during Apr 14 - Apr 20 -in.heating_unavailable_period Apr 14 - Apr 27 Heating is unavailable during Apr 14 - Apr 27 -in.heating_unavailable_period Apr 14 - Jul 12 Heating is unavailable during Apr 14 - Jul 12 -in.heating_unavailable_period Apr 14 - May 13 Heating is unavailable during Apr 14 - May 13 -in.heating_unavailable_period Apr 15 - Apr 15 Heating is unavailable during Apr 15 - Apr 15 -in.heating_unavailable_period Apr 15 - Apr 17 Heating is unavailable during Apr 15 - Apr 17 -in.heating_unavailable_period Apr 15 - Apr 21 Heating is unavailable during Apr 15 - Apr 21 -in.heating_unavailable_period Apr 15 - Apr 28 Heating is unavailable during Apr 15 - Apr 28 -in.heating_unavailable_period Apr 15 - Jul 13 Heating is unavailable during Apr 15 - Jul 13 -in.heating_unavailable_period Apr 15 - May 14 Heating is unavailable during Apr 15 - May 14 -in.heating_unavailable_period Apr 16 - Apr 16 Heating is unavailable during Apr 16 - Apr 16 -in.heating_unavailable_period Apr 16 - Apr 18 Heating is unavailable during Apr 16 - Apr 18 -in.heating_unavailable_period Apr 16 - Apr 22 Heating is unavailable during Apr 16 - Apr 22 -in.heating_unavailable_period Apr 16 - Apr 29 Heating is unavailable during Apr 16 - Apr 29 -in.heating_unavailable_period Apr 16 - Jul 14 Heating is unavailable during Apr 16 - Jul 14 -in.heating_unavailable_period Apr 16 - May 15 Heating is unavailable during Apr 16 - May 15 -in.heating_unavailable_period Apr 17 - Apr 17 Heating is unavailable during Apr 17 - Apr 17 -in.heating_unavailable_period Apr 17 - Apr 19 Heating is unavailable during Apr 17 - Apr 19 -in.heating_unavailable_period Apr 17 - Apr 23 Heating is unavailable during Apr 17 - Apr 23 -in.heating_unavailable_period Apr 17 - Apr 30 Heating is unavailable during Apr 17 - Apr 30 -in.heating_unavailable_period Apr 17 - Jul 15 Heating is unavailable during Apr 17 - Jul 15 -in.heating_unavailable_period Apr 17 - May 16 Heating is unavailable during Apr 17 - May 16 -in.heating_unavailable_period Apr 18 - Apr 18 Heating is unavailable during Apr 18 - Apr 18 -in.heating_unavailable_period Apr 18 - Apr 20 Heating is unavailable during Apr 18 - Apr 20 -in.heating_unavailable_period Apr 18 - Apr 24 Heating is unavailable during Apr 18 - Apr 24 -in.heating_unavailable_period Apr 18 - Jul 16 Heating is unavailable during Apr 18 - Jul 16 -in.heating_unavailable_period Apr 18 - May 1 Heating is unavailable during Apr 18 - May 1 -in.heating_unavailable_period Apr 18 - May 17 Heating is unavailable during Apr 18 - May 17 -in.heating_unavailable_period Apr 19 - Apr 19 Heating is unavailable during Apr 19 - Apr 19 -in.heating_unavailable_period Apr 19 - Apr 21 Heating is unavailable during Apr 19 - Apr 21 -in.heating_unavailable_period Apr 19 - Apr 25 Heating is unavailable during Apr 19 - Apr 25 -in.heating_unavailable_period Apr 19 - Jul 17 Heating is unavailable during Apr 19 - Jul 17 -in.heating_unavailable_period Apr 19 - May 18 Heating is unavailable during Apr 19 - May 18 -in.heating_unavailable_period Apr 19 - May 2 Heating is unavailable during Apr 19 - May 2 -in.heating_unavailable_period Apr 2 - Apr 15 Heating is unavailable during Apr 2 - Apr 15 -in.heating_unavailable_period Apr 2 - Apr 2 Heating is unavailable during Apr 2 - Apr 2 -in.heating_unavailable_period Apr 2 - Apr 4 Heating is unavailable during Apr 2 - Apr 4 -in.heating_unavailable_period Apr 2 - Apr 8 Heating is unavailable during Apr 2 - Apr 8 -in.heating_unavailable_period Apr 2 - Jun 30 Heating is unavailable during Apr 2 - Jun 30 -in.heating_unavailable_period Apr 2 - May 1 Heating is unavailable during Apr 2 - May 1 -in.heating_unavailable_period Apr 20 - Apr 20 Heating is unavailable during Apr 20 - Apr 20 -in.heating_unavailable_period Apr 20 - Apr 22 Heating is unavailable during Apr 20 - Apr 22 -in.heating_unavailable_period Apr 20 - Apr 26 Heating is unavailable during Apr 20 - Apr 26 -in.heating_unavailable_period Apr 20 - Jul 18 Heating is unavailable during Apr 20 - Jul 18 -in.heating_unavailable_period Apr 20 - May 19 Heating is unavailable during Apr 20 - May 19 -in.heating_unavailable_period Apr 20 - May 3 Heating is unavailable during Apr 20 - May 3 -in.heating_unavailable_period Apr 21 - Apr 21 Heating is unavailable during Apr 21 - Apr 21 -in.heating_unavailable_period Apr 21 - Apr 23 Heating is unavailable during Apr 21 - Apr 23 -in.heating_unavailable_period Apr 21 - Apr 27 Heating is unavailable during Apr 21 - Apr 27 -in.heating_unavailable_period Apr 21 - Jul 19 Heating is unavailable during Apr 21 - Jul 19 -in.heating_unavailable_period Apr 21 - May 20 Heating is unavailable during Apr 21 - May 20 -in.heating_unavailable_period Apr 21 - May 4 Heating is unavailable during Apr 21 - May 4 -in.heating_unavailable_period Apr 22 - Apr 22 Heating is unavailable during Apr 22 - Apr 22 -in.heating_unavailable_period Apr 22 - Apr 24 Heating is unavailable during Apr 22 - Apr 24 -in.heating_unavailable_period Apr 22 - Apr 28 Heating is unavailable during Apr 22 - Apr 28 -in.heating_unavailable_period Apr 22 - Jul 20 Heating is unavailable during Apr 22 - Jul 20 -in.heating_unavailable_period Apr 22 - May 21 Heating is unavailable during Apr 22 - May 21 -in.heating_unavailable_period Apr 22 - May 5 Heating is unavailable during Apr 22 - May 5 -in.heating_unavailable_period Apr 23 - Apr 23 Heating is unavailable during Apr 23 - Apr 23 -in.heating_unavailable_period Apr 23 - Apr 25 Heating is unavailable during Apr 23 - Apr 25 -in.heating_unavailable_period Apr 23 - Apr 29 Heating is unavailable during Apr 23 - Apr 29 -in.heating_unavailable_period Apr 23 - Jul 21 Heating is unavailable during Apr 23 - Jul 21 -in.heating_unavailable_period Apr 23 - May 22 Heating is unavailable during Apr 23 - May 22 -in.heating_unavailable_period Apr 23 - May 6 Heating is unavailable during Apr 23 - May 6 -in.heating_unavailable_period Apr 24 - Apr 24 Heating is unavailable during Apr 24 - Apr 24 -in.heating_unavailable_period Apr 24 - Apr 26 Heating is unavailable during Apr 24 - Apr 26 -in.heating_unavailable_period Apr 24 - Apr 30 Heating is unavailable during Apr 24 - Apr 30 -in.heating_unavailable_period Apr 24 - Jul 22 Heating is unavailable during Apr 24 - Jul 22 -in.heating_unavailable_period Apr 24 - May 23 Heating is unavailable during Apr 24 - May 23 -in.heating_unavailable_period Apr 24 - May 7 Heating is unavailable during Apr 24 - May 7 -in.heating_unavailable_period Apr 25 - Apr 25 Heating is unavailable during Apr 25 - Apr 25 -in.heating_unavailable_period Apr 25 - Apr 27 Heating is unavailable during Apr 25 - Apr 27 -in.heating_unavailable_period Apr 25 - Jul 23 Heating is unavailable during Apr 25 - Jul 23 -in.heating_unavailable_period Apr 25 - May 1 Heating is unavailable during Apr 25 - May 1 -in.heating_unavailable_period Apr 25 - May 24 Heating is unavailable during Apr 25 - May 24 -in.heating_unavailable_period Apr 25 - May 8 Heating is unavailable during Apr 25 - May 8 -in.heating_unavailable_period Apr 26 - Apr 26 Heating is unavailable during Apr 26 - Apr 26 -in.heating_unavailable_period Apr 26 - Apr 28 Heating is unavailable during Apr 26 - Apr 28 -in.heating_unavailable_period Apr 26 - Jul 24 Heating is unavailable during Apr 26 - Jul 24 -in.heating_unavailable_period Apr 26 - May 2 Heating is unavailable during Apr 26 - May 2 -in.heating_unavailable_period Apr 26 - May 25 Heating is unavailable during Apr 26 - May 25 -in.heating_unavailable_period Apr 26 - May 9 Heating is unavailable during Apr 26 - May 9 -in.heating_unavailable_period Apr 27 - Apr 27 Heating is unavailable during Apr 27 - Apr 27 -in.heating_unavailable_period Apr 27 - Apr 29 Heating is unavailable during Apr 27 - Apr 29 -in.heating_unavailable_period Apr 27 - Jul 25 Heating is unavailable during Apr 27 - Jul 25 -in.heating_unavailable_period Apr 27 - May 10 Heating is unavailable during Apr 27 - May 10 -in.heating_unavailable_period Apr 27 - May 26 Heating is unavailable during Apr 27 - May 26 -in.heating_unavailable_period Apr 27 - May 3 Heating is unavailable during Apr 27 - May 3 -in.heating_unavailable_period Apr 28 - Apr 28 Heating is unavailable during Apr 28 - Apr 28 -in.heating_unavailable_period Apr 28 - Apr 30 Heating is unavailable during Apr 28 - Apr 30 -in.heating_unavailable_period Apr 28 - Jul 26 Heating is unavailable during Apr 28 - Jul 26 -in.heating_unavailable_period Apr 28 - May 11 Heating is unavailable during Apr 28 - May 11 -in.heating_unavailable_period Apr 28 - May 27 Heating is unavailable during Apr 28 - May 27 -in.heating_unavailable_period Apr 28 - May 4 Heating is unavailable during Apr 28 - May 4 -in.heating_unavailable_period Apr 29 - Apr 29 Heating is unavailable during Apr 29 - Apr 29 -in.heating_unavailable_period Apr 29 - Jul 27 Heating is unavailable during Apr 29 - Jul 27 -in.heating_unavailable_period Apr 29 - May 1 Heating is unavailable during Apr 29 - May 1 -in.heating_unavailable_period Apr 29 - May 12 Heating is unavailable during Apr 29 - May 12 -in.heating_unavailable_period Apr 29 - May 28 Heating is unavailable during Apr 29 - May 28 -in.heating_unavailable_period Apr 29 - May 5 Heating is unavailable during Apr 29 - May 5 -in.heating_unavailable_period Apr 3 - Apr 16 Heating is unavailable during Apr 3 - Apr 16 -in.heating_unavailable_period Apr 3 - Apr 3 Heating is unavailable during Apr 3 - Apr 3 -in.heating_unavailable_period Apr 3 - Apr 5 Heating is unavailable during Apr 3 - Apr 5 -in.heating_unavailable_period Apr 3 - Apr 9 Heating is unavailable during Apr 3 - Apr 9 -in.heating_unavailable_period Apr 3 - Jul 1 Heating is unavailable during Apr 3 - Jul 1 -in.heating_unavailable_period Apr 3 - May 2 Heating is unavailable during Apr 3 - May 2 -in.heating_unavailable_period Apr 30 - Apr 30 Heating is unavailable during Apr 30 - Apr 30 -in.heating_unavailable_period Apr 30 - Jul 28 Heating is unavailable during Apr 30 - Jul 28 -in.heating_unavailable_period Apr 30 - May 13 Heating is unavailable during Apr 30 - May 13 -in.heating_unavailable_period Apr 30 - May 2 Heating is unavailable during Apr 30 - May 2 -in.heating_unavailable_period Apr 30 - May 29 Heating is unavailable during Apr 30 - May 29 -in.heating_unavailable_period Apr 30 - May 6 Heating is unavailable during Apr 30 - May 6 -in.heating_unavailable_period Apr 4 - Apr 10 Heating is unavailable during Apr 4 - Apr 10 -in.heating_unavailable_period Apr 4 - Apr 17 Heating is unavailable during Apr 4 - Apr 17 -in.heating_unavailable_period Apr 4 - Apr 4 Heating is unavailable during Apr 4 - Apr 4 -in.heating_unavailable_period Apr 4 - Apr 6 Heating is unavailable during Apr 4 - Apr 6 -in.heating_unavailable_period Apr 4 - Jul 2 Heating is unavailable during Apr 4 - Jul 2 -in.heating_unavailable_period Apr 4 - May 3 Heating is unavailable during Apr 4 - May 3 -in.heating_unavailable_period Apr 5 - Apr 11 Heating is unavailable during Apr 5 - Apr 11 -in.heating_unavailable_period Apr 5 - Apr 18 Heating is unavailable during Apr 5 - Apr 18 -in.heating_unavailable_period Apr 5 - Apr 5 Heating is unavailable during Apr 5 - Apr 5 -in.heating_unavailable_period Apr 5 - Apr 7 Heating is unavailable during Apr 5 - Apr 7 -in.heating_unavailable_period Apr 5 - Jul 3 Heating is unavailable during Apr 5 - Jul 3 -in.heating_unavailable_period Apr 5 - May 4 Heating is unavailable during Apr 5 - May 4 -in.heating_unavailable_period Apr 6 - Apr 12 Heating is unavailable during Apr 6 - Apr 12 -in.heating_unavailable_period Apr 6 - Apr 19 Heating is unavailable during Apr 6 - Apr 19 -in.heating_unavailable_period Apr 6 - Apr 6 Heating is unavailable during Apr 6 - Apr 6 -in.heating_unavailable_period Apr 6 - Apr 8 Heating is unavailable during Apr 6 - Apr 8 -in.heating_unavailable_period Apr 6 - Jul 4 Heating is unavailable during Apr 6 - Jul 4 -in.heating_unavailable_period Apr 6 - May 5 Heating is unavailable during Apr 6 - May 5 -in.heating_unavailable_period Apr 7 - Apr 13 Heating is unavailable during Apr 7 - Apr 13 -in.heating_unavailable_period Apr 7 - Apr 20 Heating is unavailable during Apr 7 - Apr 20 -in.heating_unavailable_period Apr 7 - Apr 7 Heating is unavailable during Apr 7 - Apr 7 -in.heating_unavailable_period Apr 7 - Apr 9 Heating is unavailable during Apr 7 - Apr 9 -in.heating_unavailable_period Apr 7 - Jul 5 Heating is unavailable during Apr 7 - Jul 5 -in.heating_unavailable_period Apr 7 - May 6 Heating is unavailable during Apr 7 - May 6 -in.heating_unavailable_period Apr 8 - Apr 10 Heating is unavailable during Apr 8 - Apr 10 -in.heating_unavailable_period Apr 8 - Apr 14 Heating is unavailable during Apr 8 - Apr 14 -in.heating_unavailable_period Apr 8 - Apr 21 Heating is unavailable during Apr 8 - Apr 21 -in.heating_unavailable_period Apr 8 - Apr 8 Heating is unavailable during Apr 8 - Apr 8 -in.heating_unavailable_period Apr 8 - Jul 6 Heating is unavailable during Apr 8 - Jul 6 -in.heating_unavailable_period Apr 8 - May 7 Heating is unavailable during Apr 8 - May 7 -in.heating_unavailable_period Apr 9 - Apr 11 Heating is unavailable during Apr 9 - Apr 11 -in.heating_unavailable_period Apr 9 - Apr 15 Heating is unavailable during Apr 9 - Apr 15 -in.heating_unavailable_period Apr 9 - Apr 22 Heating is unavailable during Apr 9 - Apr 22 -in.heating_unavailable_period Apr 9 - Apr 9 Heating is unavailable during Apr 9 - Apr 9 -in.heating_unavailable_period Apr 9 - Jul 7 Heating is unavailable during Apr 9 - Jul 7 -in.heating_unavailable_period Apr 9 - May 8 Heating is unavailable during Apr 9 - May 8 -in.heating_unavailable_period Aug 1 - Aug 1 Heating is unavailable during Aug 1 - Aug 1 -in.heating_unavailable_period Aug 11 - Aug 13 Heating is unavailable during Aug 11 - Aug 13 -in.heating_unavailable_period Aug 11 - Aug 24 Heating is unavailable during Aug 11 - Aug 24 -in.heating_unavailable_period Aug 12 - Aug 12 Heating is unavailable during Aug 12 - Aug 12 -in.heating_unavailable_period Aug 12 - Aug 18 Heating is unavailable during Aug 12 - Aug 18 -in.heating_unavailable_period Aug 13 - Aug 15 Heating is unavailable during Aug 13 - Aug 15 -in.heating_unavailable_period Aug 13 - Aug 26 Heating is unavailable during Aug 13 - Aug 26 -in.heating_unavailable_period Aug 14 - Aug 20 Heating is unavailable during Aug 14 - Aug 20 -in.heating_unavailable_period Aug 15 - Aug 15 Heating is unavailable during Aug 15 - Aug 15 -in.heating_unavailable_period Aug 15 - Aug 17 Heating is unavailable during Aug 15 - Aug 17 -in.heating_unavailable_period Aug 16 - Sep 14 Heating is unavailable during Aug 16 - Sep 14 -in.heating_unavailable_period Aug 17 - Aug 17 Heating is unavailable during Aug 17 - Aug 17 -in.heating_unavailable_period Aug 17 - Aug 23 Heating is unavailable during Aug 17 - Aug 23 -in.heating_unavailable_period Aug 19 - Aug 21 Heating is unavailable during Aug 19 - Aug 21 -in.heating_unavailable_period Aug 19 - Sep 17 Heating is unavailable during Aug 19 - Sep 17 -in.heating_unavailable_period Aug 20 - Nov 17 Heating is unavailable during Aug 20 - Nov 17 -in.heating_unavailable_period Aug 24 - Aug 30 Heating is unavailable during Aug 24 - Aug 30 -in.heating_unavailable_period Aug 24 - Nov 21 Heating is unavailable during Aug 24 - Nov 21 -in.heating_unavailable_period Aug 24 - Sep 6 Heating is unavailable during Aug 24 - Sep 6 -in.heating_unavailable_period Aug 25 - Sep 23 Heating is unavailable during Aug 25 - Sep 23 -in.heating_unavailable_period Aug 26 - Aug 28 Heating is unavailable during Aug 26 - Aug 28 -in.heating_unavailable_period Aug 26 - Sep 24 Heating is unavailable during Aug 26 - Sep 24 -in.heating_unavailable_period Aug 26 - Sep 8 Heating is unavailable during Aug 26 - Sep 8 -in.heating_unavailable_period Aug 27 - Aug 27 Heating is unavailable during Aug 27 - Aug 27 -in.heating_unavailable_period Aug 27 - Sep 2 Heating is unavailable during Aug 27 - Sep 2 -in.heating_unavailable_period Aug 27 - Sep 25 Heating is unavailable during Aug 27 - Sep 25 -in.heating_unavailable_period Aug 27 - Sep 9 Heating is unavailable during Aug 27 - Sep 9 -in.heating_unavailable_period Aug 28 - Aug 28 Heating is unavailable during Aug 28 - Aug 28 -in.heating_unavailable_period Aug 29 - Sep 11 Heating is unavailable during Aug 29 - Sep 11 -in.heating_unavailable_period Aug 29 - Sep 4 Heating is unavailable during Aug 29 - Sep 4 -in.heating_unavailable_period Aug 3 - Aug 9 Heating is unavailable during Aug 3 - Aug 9 -in.heating_unavailable_period Aug 31 - Aug 31 Heating is unavailable during Aug 31 - Aug 31 -in.heating_unavailable_period Aug 31 - Sep 29 Heating is unavailable during Aug 31 - Sep 29 -in.heating_unavailable_period Aug 31 - Sep 6 Heating is unavailable during Aug 31 - Sep 6 -in.heating_unavailable_period Aug 4 - Sep 2 Heating is unavailable during Aug 4 - Sep 2 -in.heating_unavailable_period Aug 6 - Aug 12 Heating is unavailable during Aug 6 - Aug 12 -in.heating_unavailable_period Aug 6 - Aug 8 Heating is unavailable during Aug 6 - Aug 8 -in.heating_unavailable_period Aug 7 - Aug 13 Heating is unavailable during Aug 7 - Aug 13 -in.heating_unavailable_period Aug 8 - Aug 8 Heating is unavailable during Aug 8 - Aug 8 -in.heating_unavailable_period Aug 9 - Nov 6 Heating is unavailable during Aug 9 - Nov 6 -in.heating_unavailable_period Dec 1 - Dec 1 Heating is unavailable during Dec 1 - Dec 1 -in.heating_unavailable_period Dec 1 - Dec 14 Heating is unavailable during Dec 1 - Dec 14 -in.heating_unavailable_period Dec 1 - Dec 3 Heating is unavailable during Dec 1 - Dec 3 -in.heating_unavailable_period Dec 1 - Dec 30 Heating is unavailable during Dec 1 - Dec 30 -in.heating_unavailable_period Dec 1 - Dec 7 Heating is unavailable during Dec 1 - Dec 7 -in.heating_unavailable_period Dec 1 - Feb 28 Heating is unavailable during Dec 1 - Feb 28 -in.heating_unavailable_period Dec 10 - Dec 10 Heating is unavailable during Dec 10 - Dec 10 -in.heating_unavailable_period Dec 10 - Dec 12 Heating is unavailable during Dec 10 - Dec 12 -in.heating_unavailable_period Dec 10 - Dec 16 Heating is unavailable during Dec 10 - Dec 16 -in.heating_unavailable_period Dec 10 - Dec 23 Heating is unavailable during Dec 10 - Dec 23 -in.heating_unavailable_period Dec 10 - Jan 8 Heating is unavailable during Dec 10 - Jan 8 -in.heating_unavailable_period Dec 10 - Mar 9 Heating is unavailable during Dec 10 - Mar 9 -in.heating_unavailable_period Dec 11 - Dec 11 Heating is unavailable during Dec 11 - Dec 11 -in.heating_unavailable_period Dec 11 - Dec 13 Heating is unavailable during Dec 11 - Dec 13 -in.heating_unavailable_period Dec 11 - Dec 17 Heating is unavailable during Dec 11 - Dec 17 -in.heating_unavailable_period Dec 11 - Dec 24 Heating is unavailable during Dec 11 - Dec 24 -in.heating_unavailable_period Dec 11 - Jan 9 Heating is unavailable during Dec 11 - Jan 9 -in.heating_unavailable_period Dec 11 - Mar 10 Heating is unavailable during Dec 11 - Mar 10 -in.heating_unavailable_period Dec 12 - Dec 12 Heating is unavailable during Dec 12 - Dec 12 -in.heating_unavailable_period Dec 12 - Dec 14 Heating is unavailable during Dec 12 - Dec 14 -in.heating_unavailable_period Dec 12 - Dec 18 Heating is unavailable during Dec 12 - Dec 18 -in.heating_unavailable_period Dec 12 - Dec 25 Heating is unavailable during Dec 12 - Dec 25 -in.heating_unavailable_period Dec 12 - Jan 10 Heating is unavailable during Dec 12 - Jan 10 -in.heating_unavailable_period Dec 12 - Mar 11 Heating is unavailable during Dec 12 - Mar 11 -in.heating_unavailable_period Dec 13 - Dec 13 Heating is unavailable during Dec 13 - Dec 13 -in.heating_unavailable_period Dec 13 - Dec 15 Heating is unavailable during Dec 13 - Dec 15 -in.heating_unavailable_period Dec 13 - Dec 19 Heating is unavailable during Dec 13 - Dec 19 -in.heating_unavailable_period Dec 13 - Dec 26 Heating is unavailable during Dec 13 - Dec 26 -in.heating_unavailable_period Dec 13 - Jan 11 Heating is unavailable during Dec 13 - Jan 11 -in.heating_unavailable_period Dec 13 - Mar 12 Heating is unavailable during Dec 13 - Mar 12 -in.heating_unavailable_period Dec 14 - Dec 14 Heating is unavailable during Dec 14 - Dec 14 -in.heating_unavailable_period Dec 14 - Dec 16 Heating is unavailable during Dec 14 - Dec 16 -in.heating_unavailable_period Dec 14 - Dec 20 Heating is unavailable during Dec 14 - Dec 20 -in.heating_unavailable_period Dec 14 - Dec 27 Heating is unavailable during Dec 14 - Dec 27 -in.heating_unavailable_period Dec 14 - Jan 12 Heating is unavailable during Dec 14 - Jan 12 -in.heating_unavailable_period Dec 14 - Mar 13 Heating is unavailable during Dec 14 - Mar 13 -in.heating_unavailable_period Dec 15 - Dec 15 Heating is unavailable during Dec 15 - Dec 15 -in.heating_unavailable_period Dec 15 - Dec 17 Heating is unavailable during Dec 15 - Dec 17 -in.heating_unavailable_period Dec 15 - Dec 21 Heating is unavailable during Dec 15 - Dec 21 -in.heating_unavailable_period Dec 15 - Dec 28 Heating is unavailable during Dec 15 - Dec 28 -in.heating_unavailable_period Dec 15 - Jan 13 Heating is unavailable during Dec 15 - Jan 13 -in.heating_unavailable_period Dec 15 - Mar 14 Heating is unavailable during Dec 15 - Mar 14 -in.heating_unavailable_period Dec 16 - Dec 16 Heating is unavailable during Dec 16 - Dec 16 -in.heating_unavailable_period Dec 16 - Dec 18 Heating is unavailable during Dec 16 - Dec 18 -in.heating_unavailable_period Dec 16 - Dec 22 Heating is unavailable during Dec 16 - Dec 22 -in.heating_unavailable_period Dec 16 - Dec 29 Heating is unavailable during Dec 16 - Dec 29 -in.heating_unavailable_period Dec 16 - Jan 14 Heating is unavailable during Dec 16 - Jan 14 -in.heating_unavailable_period Dec 16 - Mar 15 Heating is unavailable during Dec 16 - Mar 15 -in.heating_unavailable_period Dec 17 - Dec 17 Heating is unavailable during Dec 17 - Dec 17 -in.heating_unavailable_period Dec 17 - Dec 19 Heating is unavailable during Dec 17 - Dec 19 -in.heating_unavailable_period Dec 17 - Dec 23 Heating is unavailable during Dec 17 - Dec 23 -in.heating_unavailable_period Dec 17 - Dec 30 Heating is unavailable during Dec 17 - Dec 30 -in.heating_unavailable_period Dec 17 - Jan 15 Heating is unavailable during Dec 17 - Jan 15 -in.heating_unavailable_period Dec 17 - Mar 16 Heating is unavailable during Dec 17 - Mar 16 -in.heating_unavailable_period Dec 18 - Dec 18 Heating is unavailable during Dec 18 - Dec 18 -in.heating_unavailable_period Dec 18 - Dec 20 Heating is unavailable during Dec 18 - Dec 20 -in.heating_unavailable_period Dec 18 - Dec 24 Heating is unavailable during Dec 18 - Dec 24 -in.heating_unavailable_period Dec 18 - Dec 31 Heating is unavailable during Dec 18 - Dec 31 -in.heating_unavailable_period Dec 18 - Jan 16 Heating is unavailable during Dec 18 - Jan 16 -in.heating_unavailable_period Dec 18 - Mar 17 Heating is unavailable during Dec 18 - Mar 17 -in.heating_unavailable_period Dec 19 - Dec 19 Heating is unavailable during Dec 19 - Dec 19 -in.heating_unavailable_period Dec 19 - Dec 21 Heating is unavailable during Dec 19 - Dec 21 -in.heating_unavailable_period Dec 19 - Dec 25 Heating is unavailable during Dec 19 - Dec 25 -in.heating_unavailable_period Dec 19 - Jan 1 Heating is unavailable during Dec 19 - Jan 1 -in.heating_unavailable_period Dec 19 - Jan 17 Heating is unavailable during Dec 19 - Jan 17 -in.heating_unavailable_period Dec 19 - Mar 18 Heating is unavailable during Dec 19 - Mar 18 -in.heating_unavailable_period Dec 2 - Dec 15 Heating is unavailable during Dec 2 - Dec 15 -in.heating_unavailable_period Dec 2 - Dec 2 Heating is unavailable during Dec 2 - Dec 2 -in.heating_unavailable_period Dec 2 - Dec 31 Heating is unavailable during Dec 2 - Dec 31 -in.heating_unavailable_period Dec 2 - Dec 4 Heating is unavailable during Dec 2 - Dec 4 -in.heating_unavailable_period Dec 2 - Dec 8 Heating is unavailable during Dec 2 - Dec 8 -in.heating_unavailable_period Dec 2 - Mar 1 Heating is unavailable during Dec 2 - Mar 1 -in.heating_unavailable_period Dec 20 - Dec 20 Heating is unavailable during Dec 20 - Dec 20 -in.heating_unavailable_period Dec 20 - Dec 22 Heating is unavailable during Dec 20 - Dec 22 -in.heating_unavailable_period Dec 20 - Dec 26 Heating is unavailable during Dec 20 - Dec 26 -in.heating_unavailable_period Dec 20 - Jan 18 Heating is unavailable during Dec 20 - Jan 18 -in.heating_unavailable_period Dec 20 - Jan 2 Heating is unavailable during Dec 20 - Jan 2 -in.heating_unavailable_period Dec 20 - Mar 19 Heating is unavailable during Dec 20 - Mar 19 -in.heating_unavailable_period Dec 21 - Dec 21 Heating is unavailable during Dec 21 - Dec 21 -in.heating_unavailable_period Dec 21 - Dec 23 Heating is unavailable during Dec 21 - Dec 23 -in.heating_unavailable_period Dec 21 - Dec 27 Heating is unavailable during Dec 21 - Dec 27 -in.heating_unavailable_period Dec 21 - Jan 19 Heating is unavailable during Dec 21 - Jan 19 -in.heating_unavailable_period Dec 21 - Jan 3 Heating is unavailable during Dec 21 - Jan 3 -in.heating_unavailable_period Dec 21 - Mar 20 Heating is unavailable during Dec 21 - Mar 20 -in.heating_unavailable_period Dec 22 - Dec 22 Heating is unavailable during Dec 22 - Dec 22 -in.heating_unavailable_period Dec 22 - Dec 24 Heating is unavailable during Dec 22 - Dec 24 -in.heating_unavailable_period Dec 22 - Dec 28 Heating is unavailable during Dec 22 - Dec 28 -in.heating_unavailable_period Dec 22 - Jan 20 Heating is unavailable during Dec 22 - Jan 20 -in.heating_unavailable_period Dec 22 - Jan 4 Heating is unavailable during Dec 22 - Jan 4 -in.heating_unavailable_period Dec 22 - Mar 21 Heating is unavailable during Dec 22 - Mar 21 -in.heating_unavailable_period Dec 23 - Dec 23 Heating is unavailable during Dec 23 - Dec 23 -in.heating_unavailable_period Dec 23 - Dec 25 Heating is unavailable during Dec 23 - Dec 25 -in.heating_unavailable_period Dec 23 - Dec 29 Heating is unavailable during Dec 23 - Dec 29 -in.heating_unavailable_period Dec 23 - Jan 21 Heating is unavailable during Dec 23 - Jan 21 -in.heating_unavailable_period Dec 23 - Jan 5 Heating is unavailable during Dec 23 - Jan 5 -in.heating_unavailable_period Dec 23 - Mar 22 Heating is unavailable during Dec 23 - Mar 22 -in.heating_unavailable_period Dec 24 - Dec 24 Heating is unavailable during Dec 24 - Dec 24 -in.heating_unavailable_period Dec 24 - Dec 26 Heating is unavailable during Dec 24 - Dec 26 -in.heating_unavailable_period Dec 24 - Dec 30 Heating is unavailable during Dec 24 - Dec 30 -in.heating_unavailable_period Dec 24 - Jan 22 Heating is unavailable during Dec 24 - Jan 22 -in.heating_unavailable_period Dec 24 - Jan 6 Heating is unavailable during Dec 24 - Jan 6 -in.heating_unavailable_period Dec 24 - Mar 23 Heating is unavailable during Dec 24 - Mar 23 -in.heating_unavailable_period Dec 25 - Dec 25 Heating is unavailable during Dec 25 - Dec 25 -in.heating_unavailable_period Dec 25 - Dec 27 Heating is unavailable during Dec 25 - Dec 27 -in.heating_unavailable_period Dec 25 - Dec 31 Heating is unavailable during Dec 25 - Dec 31 -in.heating_unavailable_period Dec 25 - Jan 23 Heating is unavailable during Dec 25 - Jan 23 -in.heating_unavailable_period Dec 25 - Jan 7 Heating is unavailable during Dec 25 - Jan 7 -in.heating_unavailable_period Dec 25 - Mar 24 Heating is unavailable during Dec 25 - Mar 24 -in.heating_unavailable_period Dec 26 - Dec 26 Heating is unavailable during Dec 26 - Dec 26 -in.heating_unavailable_period Dec 26 - Dec 28 Heating is unavailable during Dec 26 - Dec 28 -in.heating_unavailable_period Dec 26 - Jan 1 Heating is unavailable during Dec 26 - Jan 1 -in.heating_unavailable_period Dec 26 - Jan 24 Heating is unavailable during Dec 26 - Jan 24 -in.heating_unavailable_period Dec 26 - Jan 8 Heating is unavailable during Dec 26 - Jan 8 -in.heating_unavailable_period Dec 26 - Mar 25 Heating is unavailable during Dec 26 - Mar 25 -in.heating_unavailable_period Dec 27 - Dec 27 Heating is unavailable during Dec 27 - Dec 27 -in.heating_unavailable_period Dec 27 - Dec 29 Heating is unavailable during Dec 27 - Dec 29 -in.heating_unavailable_period Dec 27 - Jan 2 Heating is unavailable during Dec 27 - Jan 2 -in.heating_unavailable_period Dec 27 - Jan 25 Heating is unavailable during Dec 27 - Jan 25 -in.heating_unavailable_period Dec 27 - Jan 9 Heating is unavailable during Dec 27 - Jan 9 -in.heating_unavailable_period Dec 27 - Mar 26 Heating is unavailable during Dec 27 - Mar 26 -in.heating_unavailable_period Dec 28 - Dec 28 Heating is unavailable during Dec 28 - Dec 28 -in.heating_unavailable_period Dec 28 - Dec 30 Heating is unavailable during Dec 28 - Dec 30 -in.heating_unavailable_period Dec 28 - Jan 10 Heating is unavailable during Dec 28 - Jan 10 -in.heating_unavailable_period Dec 28 - Jan 26 Heating is unavailable during Dec 28 - Jan 26 -in.heating_unavailable_period Dec 28 - Jan 3 Heating is unavailable during Dec 28 - Jan 3 -in.heating_unavailable_period Dec 28 - Mar 27 Heating is unavailable during Dec 28 - Mar 27 -in.heating_unavailable_period Dec 29 - Dec 29 Heating is unavailable during Dec 29 - Dec 29 -in.heating_unavailable_period Dec 29 - Dec 31 Heating is unavailable during Dec 29 - Dec 31 -in.heating_unavailable_period Dec 29 - Jan 11 Heating is unavailable during Dec 29 - Jan 11 -in.heating_unavailable_period Dec 29 - Jan 27 Heating is unavailable during Dec 29 - Jan 27 -in.heating_unavailable_period Dec 29 - Jan 4 Heating is unavailable during Dec 29 - Jan 4 -in.heating_unavailable_period Dec 29 - Mar 28 Heating is unavailable during Dec 29 - Mar 28 -in.heating_unavailable_period Dec 3 - Dec 16 Heating is unavailable during Dec 3 - Dec 16 -in.heating_unavailable_period Dec 3 - Dec 3 Heating is unavailable during Dec 3 - Dec 3 -in.heating_unavailable_period Dec 3 - Dec 5 Heating is unavailable during Dec 3 - Dec 5 -in.heating_unavailable_period Dec 3 - Dec 9 Heating is unavailable during Dec 3 - Dec 9 -in.heating_unavailable_period Dec 3 - Jan 1 Heating is unavailable during Dec 3 - Jan 1 -in.heating_unavailable_period Dec 3 - Mar 2 Heating is unavailable during Dec 3 - Mar 2 -in.heating_unavailable_period Dec 30 - Dec 30 Heating is unavailable during Dec 30 - Dec 30 -in.heating_unavailable_period Dec 30 - Jan 1 Heating is unavailable during Dec 30 - Jan 1 -in.heating_unavailable_period Dec 30 - Jan 12 Heating is unavailable during Dec 30 - Jan 12 -in.heating_unavailable_period Dec 30 - Jan 28 Heating is unavailable during Dec 30 - Jan 28 -in.heating_unavailable_period Dec 30 - Jan 5 Heating is unavailable during Dec 30 - Jan 5 -in.heating_unavailable_period Dec 30 - Mar 29 Heating is unavailable during Dec 30 - Mar 29 -in.heating_unavailable_period Dec 31 - Dec 31 Heating is unavailable during Dec 31 - Dec 31 -in.heating_unavailable_period Dec 31 - Jan 13 Heating is unavailable during Dec 31 - Jan 13 -in.heating_unavailable_period Dec 31 - Jan 2 Heating is unavailable during Dec 31 - Jan 2 -in.heating_unavailable_period Dec 31 - Jan 29 Heating is unavailable during Dec 31 - Jan 29 -in.heating_unavailable_period Dec 31 - Jan 6 Heating is unavailable during Dec 31 - Jan 6 -in.heating_unavailable_period Dec 31 - Mar 30 Heating is unavailable during Dec 31 - Mar 30 -in.heating_unavailable_period Dec 4 - Dec 10 Heating is unavailable during Dec 4 - Dec 10 -in.heating_unavailable_period Dec 4 - Dec 17 Heating is unavailable during Dec 4 - Dec 17 -in.heating_unavailable_period Dec 4 - Dec 4 Heating is unavailable during Dec 4 - Dec 4 -in.heating_unavailable_period Dec 4 - Dec 6 Heating is unavailable during Dec 4 - Dec 6 -in.heating_unavailable_period Dec 4 - Jan 2 Heating is unavailable during Dec 4 - Jan 2 -in.heating_unavailable_period Dec 4 - Mar 3 Heating is unavailable during Dec 4 - Mar 3 -in.heating_unavailable_period Dec 5 - Dec 11 Heating is unavailable during Dec 5 - Dec 11 -in.heating_unavailable_period Dec 5 - Dec 18 Heating is unavailable during Dec 5 - Dec 18 -in.heating_unavailable_period Dec 5 - Dec 5 Heating is unavailable during Dec 5 - Dec 5 -in.heating_unavailable_period Dec 5 - Dec 7 Heating is unavailable during Dec 5 - Dec 7 -in.heating_unavailable_period Dec 5 - Jan 3 Heating is unavailable during Dec 5 - Jan 3 -in.heating_unavailable_period Dec 5 - Mar 4 Heating is unavailable during Dec 5 - Mar 4 -in.heating_unavailable_period Dec 6 - Dec 12 Heating is unavailable during Dec 6 - Dec 12 -in.heating_unavailable_period Dec 6 - Dec 19 Heating is unavailable during Dec 6 - Dec 19 -in.heating_unavailable_period Dec 6 - Dec 6 Heating is unavailable during Dec 6 - Dec 6 -in.heating_unavailable_period Dec 6 - Dec 8 Heating is unavailable during Dec 6 - Dec 8 -in.heating_unavailable_period Dec 6 - Jan 4 Heating is unavailable during Dec 6 - Jan 4 -in.heating_unavailable_period Dec 6 - Mar 5 Heating is unavailable during Dec 6 - Mar 5 -in.heating_unavailable_period Dec 7 - Dec 13 Heating is unavailable during Dec 7 - Dec 13 -in.heating_unavailable_period Dec 7 - Dec 20 Heating is unavailable during Dec 7 - Dec 20 -in.heating_unavailable_period Dec 7 - Dec 7 Heating is unavailable during Dec 7 - Dec 7 -in.heating_unavailable_period Dec 7 - Dec 9 Heating is unavailable during Dec 7 - Dec 9 -in.heating_unavailable_period Dec 7 - Jan 5 Heating is unavailable during Dec 7 - Jan 5 -in.heating_unavailable_period Dec 7 - Mar 6 Heating is unavailable during Dec 7 - Mar 6 -in.heating_unavailable_period Dec 8 - Dec 10 Heating is unavailable during Dec 8 - Dec 10 -in.heating_unavailable_period Dec 8 - Dec 14 Heating is unavailable during Dec 8 - Dec 14 -in.heating_unavailable_period Dec 8 - Dec 21 Heating is unavailable during Dec 8 - Dec 21 -in.heating_unavailable_period Dec 8 - Dec 8 Heating is unavailable during Dec 8 - Dec 8 -in.heating_unavailable_period Dec 8 - Jan 6 Heating is unavailable during Dec 8 - Jan 6 -in.heating_unavailable_period Dec 8 - Mar 7 Heating is unavailable during Dec 8 - Mar 7 -in.heating_unavailable_period Dec 9 - Dec 11 Heating is unavailable during Dec 9 - Dec 11 -in.heating_unavailable_period Dec 9 - Dec 15 Heating is unavailable during Dec 9 - Dec 15 -in.heating_unavailable_period Dec 9 - Dec 22 Heating is unavailable during Dec 9 - Dec 22 -in.heating_unavailable_period Dec 9 - Dec 9 Heating is unavailable during Dec 9 - Dec 9 -in.heating_unavailable_period Dec 9 - Jan 7 Heating is unavailable during Dec 9 - Jan 7 -in.heating_unavailable_period Dec 9 - Mar 8 Heating is unavailable during Dec 9 - Mar 8 -in.heating_unavailable_period Feb 1 - Feb 1 Heating is unavailable during Feb 1 - Feb 1 -in.heating_unavailable_period Feb 1 - Feb 14 Heating is unavailable during Feb 1 - Feb 14 -in.heating_unavailable_period Feb 1 - Feb 3 Heating is unavailable during Feb 1 - Feb 3 -in.heating_unavailable_period Feb 1 - Feb 7 Heating is unavailable during Feb 1 - Feb 7 -in.heating_unavailable_period Feb 1 - Mar 2 Heating is unavailable during Feb 1 - Mar 2 -in.heating_unavailable_period Feb 1 - May 1 Heating is unavailable during Feb 1 - May 1 -in.heating_unavailable_period Feb 10 - Feb 10 Heating is unavailable during Feb 10 - Feb 10 -in.heating_unavailable_period Feb 10 - Feb 12 Heating is unavailable during Feb 10 - Feb 12 -in.heating_unavailable_period Feb 10 - Feb 16 Heating is unavailable during Feb 10 - Feb 16 -in.heating_unavailable_period Feb 10 - Feb 23 Heating is unavailable during Feb 10 - Feb 23 -in.heating_unavailable_period Feb 10 - Mar 11 Heating is unavailable during Feb 10 - Mar 11 -in.heating_unavailable_period Feb 10 - May 10 Heating is unavailable during Feb 10 - May 10 -in.heating_unavailable_period Feb 11 - Feb 11 Heating is unavailable during Feb 11 - Feb 11 -in.heating_unavailable_period Feb 11 - Feb 13 Heating is unavailable during Feb 11 - Feb 13 -in.heating_unavailable_period Feb 11 - Feb 17 Heating is unavailable during Feb 11 - Feb 17 -in.heating_unavailable_period Feb 11 - Feb 24 Heating is unavailable during Feb 11 - Feb 24 -in.heating_unavailable_period Feb 11 - Mar 12 Heating is unavailable during Feb 11 - Mar 12 -in.heating_unavailable_period Feb 11 - May 11 Heating is unavailable during Feb 11 - May 11 -in.heating_unavailable_period Feb 12 - Feb 12 Heating is unavailable during Feb 12 - Feb 12 -in.heating_unavailable_period Feb 12 - Feb 14 Heating is unavailable during Feb 12 - Feb 14 -in.heating_unavailable_period Feb 12 - Feb 18 Heating is unavailable during Feb 12 - Feb 18 -in.heating_unavailable_period Feb 12 - Feb 25 Heating is unavailable during Feb 12 - Feb 25 -in.heating_unavailable_period Feb 12 - Mar 13 Heating is unavailable during Feb 12 - Mar 13 -in.heating_unavailable_period Feb 12 - May 12 Heating is unavailable during Feb 12 - May 12 -in.heating_unavailable_period Feb 13 - Feb 13 Heating is unavailable during Feb 13 - Feb 13 -in.heating_unavailable_period Feb 13 - Feb 15 Heating is unavailable during Feb 13 - Feb 15 -in.heating_unavailable_period Feb 13 - Feb 19 Heating is unavailable during Feb 13 - Feb 19 -in.heating_unavailable_period Feb 13 - Feb 26 Heating is unavailable during Feb 13 - Feb 26 -in.heating_unavailable_period Feb 13 - Mar 14 Heating is unavailable during Feb 13 - Mar 14 -in.heating_unavailable_period Feb 13 - May 13 Heating is unavailable during Feb 13 - May 13 -in.heating_unavailable_period Feb 14 - Feb 14 Heating is unavailable during Feb 14 - Feb 14 -in.heating_unavailable_period Feb 14 - Feb 16 Heating is unavailable during Feb 14 - Feb 16 -in.heating_unavailable_period Feb 14 - Feb 20 Heating is unavailable during Feb 14 - Feb 20 -in.heating_unavailable_period Feb 14 - Feb 27 Heating is unavailable during Feb 14 - Feb 27 -in.heating_unavailable_period Feb 14 - Mar 15 Heating is unavailable during Feb 14 - Mar 15 -in.heating_unavailable_period Feb 14 - May 14 Heating is unavailable during Feb 14 - May 14 -in.heating_unavailable_period Feb 15 - Feb 15 Heating is unavailable during Feb 15 - Feb 15 -in.heating_unavailable_period Feb 15 - Feb 17 Heating is unavailable during Feb 15 - Feb 17 -in.heating_unavailable_period Feb 15 - Feb 21 Heating is unavailable during Feb 15 - Feb 21 -in.heating_unavailable_period Feb 15 - Feb 28 Heating is unavailable during Feb 15 - Feb 28 -in.heating_unavailable_period Feb 15 - Mar 16 Heating is unavailable during Feb 15 - Mar 16 -in.heating_unavailable_period Feb 15 - May 15 Heating is unavailable during Feb 15 - May 15 -in.heating_unavailable_period Feb 16 - Feb 16 Heating is unavailable during Feb 16 - Feb 16 -in.heating_unavailable_period Feb 16 - Feb 18 Heating is unavailable during Feb 16 - Feb 18 -in.heating_unavailable_period Feb 16 - Feb 22 Heating is unavailable during Feb 16 - Feb 22 -in.heating_unavailable_period Feb 16 - Mar 1 Heating is unavailable during Feb 16 - Mar 1 -in.heating_unavailable_period Feb 16 - Mar 17 Heating is unavailable during Feb 16 - Mar 17 -in.heating_unavailable_period Feb 16 - May 16 Heating is unavailable during Feb 16 - May 16 -in.heating_unavailable_period Feb 17 - Feb 17 Heating is unavailable during Feb 17 - Feb 17 -in.heating_unavailable_period Feb 17 - Feb 19 Heating is unavailable during Feb 17 - Feb 19 -in.heating_unavailable_period Feb 17 - Feb 23 Heating is unavailable during Feb 17 - Feb 23 -in.heating_unavailable_period Feb 17 - Mar 18 Heating is unavailable during Feb 17 - Mar 18 -in.heating_unavailable_period Feb 17 - Mar 2 Heating is unavailable during Feb 17 - Mar 2 -in.heating_unavailable_period Feb 17 - May 17 Heating is unavailable during Feb 17 - May 17 -in.heating_unavailable_period Feb 18 - Feb 18 Heating is unavailable during Feb 18 - Feb 18 -in.heating_unavailable_period Feb 18 - Feb 20 Heating is unavailable during Feb 18 - Feb 20 -in.heating_unavailable_period Feb 18 - Feb 24 Heating is unavailable during Feb 18 - Feb 24 -in.heating_unavailable_period Feb 18 - Mar 19 Heating is unavailable during Feb 18 - Mar 19 -in.heating_unavailable_period Feb 18 - Mar 3 Heating is unavailable during Feb 18 - Mar 3 -in.heating_unavailable_period Feb 18 - May 18 Heating is unavailable during Feb 18 - May 18 -in.heating_unavailable_period Feb 19 - Feb 19 Heating is unavailable during Feb 19 - Feb 19 -in.heating_unavailable_period Feb 19 - Feb 21 Heating is unavailable during Feb 19 - Feb 21 -in.heating_unavailable_period Feb 19 - Feb 25 Heating is unavailable during Feb 19 - Feb 25 -in.heating_unavailable_period Feb 19 - Mar 20 Heating is unavailable during Feb 19 - Mar 20 -in.heating_unavailable_period Feb 19 - Mar 4 Heating is unavailable during Feb 19 - Mar 4 -in.heating_unavailable_period Feb 19 - May 19 Heating is unavailable during Feb 19 - May 19 -in.heating_unavailable_period Feb 2 - Feb 15 Heating is unavailable during Feb 2 - Feb 15 -in.heating_unavailable_period Feb 2 - Feb 2 Heating is unavailable during Feb 2 - Feb 2 -in.heating_unavailable_period Feb 2 - Feb 4 Heating is unavailable during Feb 2 - Feb 4 -in.heating_unavailable_period Feb 2 - Feb 8 Heating is unavailable during Feb 2 - Feb 8 -in.heating_unavailable_period Feb 2 - Mar 3 Heating is unavailable during Feb 2 - Mar 3 -in.heating_unavailable_period Feb 2 - May 2 Heating is unavailable during Feb 2 - May 2 -in.heating_unavailable_period Feb 20 - Feb 20 Heating is unavailable during Feb 20 - Feb 20 -in.heating_unavailable_period Feb 20 - Feb 22 Heating is unavailable during Feb 20 - Feb 22 -in.heating_unavailable_period Feb 20 - Feb 26 Heating is unavailable during Feb 20 - Feb 26 -in.heating_unavailable_period Feb 20 - Mar 21 Heating is unavailable during Feb 20 - Mar 21 -in.heating_unavailable_period Feb 20 - Mar 5 Heating is unavailable during Feb 20 - Mar 5 -in.heating_unavailable_period Feb 20 - May 20 Heating is unavailable during Feb 20 - May 20 -in.heating_unavailable_period Feb 21 - Feb 21 Heating is unavailable during Feb 21 - Feb 21 -in.heating_unavailable_period Feb 21 - Feb 23 Heating is unavailable during Feb 21 - Feb 23 -in.heating_unavailable_period Feb 21 - Feb 27 Heating is unavailable during Feb 21 - Feb 27 -in.heating_unavailable_period Feb 21 - Mar 22 Heating is unavailable during Feb 21 - Mar 22 -in.heating_unavailable_period Feb 21 - Mar 6 Heating is unavailable during Feb 21 - Mar 6 -in.heating_unavailable_period Feb 21 - May 21 Heating is unavailable during Feb 21 - May 21 -in.heating_unavailable_period Feb 22 - Feb 22 Heating is unavailable during Feb 22 - Feb 22 -in.heating_unavailable_period Feb 22 - Feb 24 Heating is unavailable during Feb 22 - Feb 24 -in.heating_unavailable_period Feb 22 - Feb 28 Heating is unavailable during Feb 22 - Feb 28 -in.heating_unavailable_period Feb 22 - Mar 23 Heating is unavailable during Feb 22 - Mar 23 -in.heating_unavailable_period Feb 22 - Mar 7 Heating is unavailable during Feb 22 - Mar 7 -in.heating_unavailable_period Feb 22 - May 22 Heating is unavailable during Feb 22 - May 22 -in.heating_unavailable_period Feb 23 - Feb 23 Heating is unavailable during Feb 23 - Feb 23 -in.heating_unavailable_period Feb 23 - Feb 25 Heating is unavailable during Feb 23 - Feb 25 -in.heating_unavailable_period Feb 23 - Mar 1 Heating is unavailable during Feb 23 - Mar 1 -in.heating_unavailable_period Feb 23 - Mar 24 Heating is unavailable during Feb 23 - Mar 24 -in.heating_unavailable_period Feb 23 - Mar 8 Heating is unavailable during Feb 23 - Mar 8 -in.heating_unavailable_period Feb 23 - May 23 Heating is unavailable during Feb 23 - May 23 -in.heating_unavailable_period Feb 24 - Feb 24 Heating is unavailable during Feb 24 - Feb 24 -in.heating_unavailable_period Feb 24 - Feb 26 Heating is unavailable during Feb 24 - Feb 26 -in.heating_unavailable_period Feb 24 - Mar 2 Heating is unavailable during Feb 24 - Mar 2 -in.heating_unavailable_period Feb 24 - Mar 25 Heating is unavailable during Feb 24 - Mar 25 -in.heating_unavailable_period Feb 24 - Mar 9 Heating is unavailable during Feb 24 - Mar 9 -in.heating_unavailable_period Feb 24 - May 24 Heating is unavailable during Feb 24 - May 24 -in.heating_unavailable_period Feb 25 - Feb 25 Heating is unavailable during Feb 25 - Feb 25 -in.heating_unavailable_period Feb 25 - Feb 27 Heating is unavailable during Feb 25 - Feb 27 -in.heating_unavailable_period Feb 25 - Mar 10 Heating is unavailable during Feb 25 - Mar 10 -in.heating_unavailable_period Feb 25 - Mar 26 Heating is unavailable during Feb 25 - Mar 26 -in.heating_unavailable_period Feb 25 - Mar 3 Heating is unavailable during Feb 25 - Mar 3 -in.heating_unavailable_period Feb 25 - May 25 Heating is unavailable during Feb 25 - May 25 -in.heating_unavailable_period Feb 26 - Feb 26 Heating is unavailable during Feb 26 - Feb 26 -in.heating_unavailable_period Feb 26 - Feb 28 Heating is unavailable during Feb 26 - Feb 28 -in.heating_unavailable_period Feb 26 - Mar 11 Heating is unavailable during Feb 26 - Mar 11 -in.heating_unavailable_period Feb 26 - Mar 27 Heating is unavailable during Feb 26 - Mar 27 -in.heating_unavailable_period Feb 26 - Mar 4 Heating is unavailable during Feb 26 - Mar 4 -in.heating_unavailable_period Feb 26 - May 26 Heating is unavailable during Feb 26 - May 26 -in.heating_unavailable_period Feb 27 - Feb 27 Heating is unavailable during Feb 27 - Feb 27 -in.heating_unavailable_period Feb 27 - Mar 1 Heating is unavailable during Feb 27 - Mar 1 -in.heating_unavailable_period Feb 27 - Mar 12 Heating is unavailable during Feb 27 - Mar 12 -in.heating_unavailable_period Feb 27 - Mar 28 Heating is unavailable during Feb 27 - Mar 28 -in.heating_unavailable_period Feb 27 - Mar 5 Heating is unavailable during Feb 27 - Mar 5 -in.heating_unavailable_period Feb 27 - May 27 Heating is unavailable during Feb 27 - May 27 -in.heating_unavailable_period Feb 28 - Feb 28 Heating is unavailable during Feb 28 - Feb 28 -in.heating_unavailable_period Feb 28 - Mar 13 Heating is unavailable during Feb 28 - Mar 13 -in.heating_unavailable_period Feb 28 - Mar 2 Heating is unavailable during Feb 28 - Mar 2 -in.heating_unavailable_period Feb 28 - Mar 29 Heating is unavailable during Feb 28 - Mar 29 -in.heating_unavailable_period Feb 28 - Mar 6 Heating is unavailable during Feb 28 - Mar 6 -in.heating_unavailable_period Feb 28 - May 28 Heating is unavailable during Feb 28 - May 28 -in.heating_unavailable_period Feb 3 - Feb 16 Heating is unavailable during Feb 3 - Feb 16 -in.heating_unavailable_period Feb 3 - Feb 3 Heating is unavailable during Feb 3 - Feb 3 -in.heating_unavailable_period Feb 3 - Feb 5 Heating is unavailable during Feb 3 - Feb 5 -in.heating_unavailable_period Feb 3 - Feb 9 Heating is unavailable during Feb 3 - Feb 9 -in.heating_unavailable_period Feb 3 - Mar 4 Heating is unavailable during Feb 3 - Mar 4 -in.heating_unavailable_period Feb 3 - May 3 Heating is unavailable during Feb 3 - May 3 -in.heating_unavailable_period Feb 4 - Feb 10 Heating is unavailable during Feb 4 - Feb 10 -in.heating_unavailable_period Feb 4 - Feb 17 Heating is unavailable during Feb 4 - Feb 17 -in.heating_unavailable_period Feb 4 - Feb 4 Heating is unavailable during Feb 4 - Feb 4 -in.heating_unavailable_period Feb 4 - Feb 6 Heating is unavailable during Feb 4 - Feb 6 -in.heating_unavailable_period Feb 4 - Mar 5 Heating is unavailable during Feb 4 - Mar 5 -in.heating_unavailable_period Feb 4 - May 4 Heating is unavailable during Feb 4 - May 4 -in.heating_unavailable_period Feb 5 - Feb 11 Heating is unavailable during Feb 5 - Feb 11 -in.heating_unavailable_period Feb 5 - Feb 18 Heating is unavailable during Feb 5 - Feb 18 -in.heating_unavailable_period Feb 5 - Feb 5 Heating is unavailable during Feb 5 - Feb 5 -in.heating_unavailable_period Feb 5 - Feb 7 Heating is unavailable during Feb 5 - Feb 7 -in.heating_unavailable_period Feb 5 - Mar 6 Heating is unavailable during Feb 5 - Mar 6 -in.heating_unavailable_period Feb 5 - May 5 Heating is unavailable during Feb 5 - May 5 -in.heating_unavailable_period Feb 6 - Feb 12 Heating is unavailable during Feb 6 - Feb 12 -in.heating_unavailable_period Feb 6 - Feb 19 Heating is unavailable during Feb 6 - Feb 19 -in.heating_unavailable_period Feb 6 - Feb 6 Heating is unavailable during Feb 6 - Feb 6 -in.heating_unavailable_period Feb 6 - Feb 8 Heating is unavailable during Feb 6 - Feb 8 -in.heating_unavailable_period Feb 6 - Mar 7 Heating is unavailable during Feb 6 - Mar 7 -in.heating_unavailable_period Feb 6 - May 6 Heating is unavailable during Feb 6 - May 6 -in.heating_unavailable_period Feb 7 - Feb 13 Heating is unavailable during Feb 7 - Feb 13 -in.heating_unavailable_period Feb 7 - Feb 20 Heating is unavailable during Feb 7 - Feb 20 -in.heating_unavailable_period Feb 7 - Feb 7 Heating is unavailable during Feb 7 - Feb 7 -in.heating_unavailable_period Feb 7 - Feb 9 Heating is unavailable during Feb 7 - Feb 9 -in.heating_unavailable_period Feb 7 - Mar 8 Heating is unavailable during Feb 7 - Mar 8 -in.heating_unavailable_period Feb 7 - May 7 Heating is unavailable during Feb 7 - May 7 -in.heating_unavailable_period Feb 8 - Feb 10 Heating is unavailable during Feb 8 - Feb 10 -in.heating_unavailable_period Feb 8 - Feb 14 Heating is unavailable during Feb 8 - Feb 14 -in.heating_unavailable_period Feb 8 - Feb 21 Heating is unavailable during Feb 8 - Feb 21 -in.heating_unavailable_period Feb 8 - Feb 8 Heating is unavailable during Feb 8 - Feb 8 -in.heating_unavailable_period Feb 8 - Mar 9 Heating is unavailable during Feb 8 - Mar 9 -in.heating_unavailable_period Feb 8 - May 8 Heating is unavailable during Feb 8 - May 8 -in.heating_unavailable_period Feb 9 - Feb 11 Heating is unavailable during Feb 9 - Feb 11 -in.heating_unavailable_period Feb 9 - Feb 15 Heating is unavailable during Feb 9 - Feb 15 -in.heating_unavailable_period Feb 9 - Feb 22 Heating is unavailable during Feb 9 - Feb 22 -in.heating_unavailable_period Feb 9 - Feb 9 Heating is unavailable during Feb 9 - Feb 9 -in.heating_unavailable_period Feb 9 - Mar 10 Heating is unavailable during Feb 9 - Mar 10 -in.heating_unavailable_period Feb 9 - May 9 Heating is unavailable during Feb 9 - May 9 -in.heating_unavailable_period Jan 1 - Dec 31 Heating is unavailable during Jan 1 - Dec 31 -in.heating_unavailable_period Jan 1 - Jan 1 Heating is unavailable during Jan 1 - Jan 1 -in.heating_unavailable_period Jan 1 - Jan 14 Heating is unavailable during Jan 1 - Jan 14 -in.heating_unavailable_period Jan 1 - Jan 3 Heating is unavailable during Jan 1 - Jan 3 -in.heating_unavailable_period Jan 1 - Jan 30 Heating is unavailable during Jan 1 - Jan 30 -in.heating_unavailable_period Jan 1 - Jan 7 Heating is unavailable during Jan 1 - Jan 7 -in.heating_unavailable_period Jan 1 - Mar 31 Heating is unavailable during Jan 1 - Mar 31 -in.heating_unavailable_period Jan 10 - Apr 9 Heating is unavailable during Jan 10 - Apr 9 -in.heating_unavailable_period Jan 10 - Feb 8 Heating is unavailable during Jan 10 - Feb 8 -in.heating_unavailable_period Jan 10 - Jan 10 Heating is unavailable during Jan 10 - Jan 10 -in.heating_unavailable_period Jan 10 - Jan 12 Heating is unavailable during Jan 10 - Jan 12 -in.heating_unavailable_period Jan 10 - Jan 16 Heating is unavailable during Jan 10 - Jan 16 -in.heating_unavailable_period Jan 10 - Jan 23 Heating is unavailable during Jan 10 - Jan 23 -in.heating_unavailable_period Jan 11 - Apr 10 Heating is unavailable during Jan 11 - Apr 10 -in.heating_unavailable_period Jan 11 - Feb 9 Heating is unavailable during Jan 11 - Feb 9 -in.heating_unavailable_period Jan 11 - Jan 11 Heating is unavailable during Jan 11 - Jan 11 -in.heating_unavailable_period Jan 11 - Jan 13 Heating is unavailable during Jan 11 - Jan 13 -in.heating_unavailable_period Jan 11 - Jan 17 Heating is unavailable during Jan 11 - Jan 17 -in.heating_unavailable_period Jan 11 - Jan 24 Heating is unavailable during Jan 11 - Jan 24 -in.heating_unavailable_period Jan 12 - Apr 11 Heating is unavailable during Jan 12 - Apr 11 -in.heating_unavailable_period Jan 12 - Feb 10 Heating is unavailable during Jan 12 - Feb 10 -in.heating_unavailable_period Jan 12 - Jan 12 Heating is unavailable during Jan 12 - Jan 12 -in.heating_unavailable_period Jan 12 - Jan 14 Heating is unavailable during Jan 12 - Jan 14 -in.heating_unavailable_period Jan 12 - Jan 18 Heating is unavailable during Jan 12 - Jan 18 -in.heating_unavailable_period Jan 12 - Jan 25 Heating is unavailable during Jan 12 - Jan 25 -in.heating_unavailable_period Jan 13 - Apr 12 Heating is unavailable during Jan 13 - Apr 12 -in.heating_unavailable_period Jan 13 - Feb 11 Heating is unavailable during Jan 13 - Feb 11 -in.heating_unavailable_period Jan 13 - Jan 13 Heating is unavailable during Jan 13 - Jan 13 -in.heating_unavailable_period Jan 13 - Jan 15 Heating is unavailable during Jan 13 - Jan 15 -in.heating_unavailable_period Jan 13 - Jan 19 Heating is unavailable during Jan 13 - Jan 19 -in.heating_unavailable_period Jan 13 - Jan 26 Heating is unavailable during Jan 13 - Jan 26 -in.heating_unavailable_period Jan 14 - Apr 13 Heating is unavailable during Jan 14 - Apr 13 -in.heating_unavailable_period Jan 14 - Feb 12 Heating is unavailable during Jan 14 - Feb 12 -in.heating_unavailable_period Jan 14 - Jan 14 Heating is unavailable during Jan 14 - Jan 14 -in.heating_unavailable_period Jan 14 - Jan 16 Heating is unavailable during Jan 14 - Jan 16 -in.heating_unavailable_period Jan 14 - Jan 20 Heating is unavailable during Jan 14 - Jan 20 -in.heating_unavailable_period Jan 14 - Jan 27 Heating is unavailable during Jan 14 - Jan 27 -in.heating_unavailable_period Jan 15 - Apr 14 Heating is unavailable during Jan 15 - Apr 14 -in.heating_unavailable_period Jan 15 - Feb 13 Heating is unavailable during Jan 15 - Feb 13 -in.heating_unavailable_period Jan 15 - Jan 15 Heating is unavailable during Jan 15 - Jan 15 -in.heating_unavailable_period Jan 15 - Jan 17 Heating is unavailable during Jan 15 - Jan 17 -in.heating_unavailable_period Jan 15 - Jan 21 Heating is unavailable during Jan 15 - Jan 21 -in.heating_unavailable_period Jan 15 - Jan 28 Heating is unavailable during Jan 15 - Jan 28 -in.heating_unavailable_period Jan 16 - Apr 15 Heating is unavailable during Jan 16 - Apr 15 -in.heating_unavailable_period Jan 16 - Feb 14 Heating is unavailable during Jan 16 - Feb 14 -in.heating_unavailable_period Jan 16 - Jan 16 Heating is unavailable during Jan 16 - Jan 16 -in.heating_unavailable_period Jan 16 - Jan 18 Heating is unavailable during Jan 16 - Jan 18 -in.heating_unavailable_period Jan 16 - Jan 22 Heating is unavailable during Jan 16 - Jan 22 -in.heating_unavailable_period Jan 16 - Jan 29 Heating is unavailable during Jan 16 - Jan 29 -in.heating_unavailable_period Jan 17 - Apr 16 Heating is unavailable during Jan 17 - Apr 16 -in.heating_unavailable_period Jan 17 - Feb 15 Heating is unavailable during Jan 17 - Feb 15 -in.heating_unavailable_period Jan 17 - Jan 17 Heating is unavailable during Jan 17 - Jan 17 -in.heating_unavailable_period Jan 17 - Jan 19 Heating is unavailable during Jan 17 - Jan 19 -in.heating_unavailable_period Jan 17 - Jan 23 Heating is unavailable during Jan 17 - Jan 23 -in.heating_unavailable_period Jan 17 - Jan 30 Heating is unavailable during Jan 17 - Jan 30 -in.heating_unavailable_period Jan 18 - Apr 17 Heating is unavailable during Jan 18 - Apr 17 -in.heating_unavailable_period Jan 18 - Feb 16 Heating is unavailable during Jan 18 - Feb 16 -in.heating_unavailable_period Jan 18 - Jan 18 Heating is unavailable during Jan 18 - Jan 18 -in.heating_unavailable_period Jan 18 - Jan 20 Heating is unavailable during Jan 18 - Jan 20 -in.heating_unavailable_period Jan 18 - Jan 24 Heating is unavailable during Jan 18 - Jan 24 -in.heating_unavailable_period Jan 18 - Jan 31 Heating is unavailable during Jan 18 - Jan 31 -in.heating_unavailable_period Jan 19 - Apr 18 Heating is unavailable during Jan 19 - Apr 18 -in.heating_unavailable_period Jan 19 - Feb 1 Heating is unavailable during Jan 19 - Feb 1 -in.heating_unavailable_period Jan 19 - Feb 17 Heating is unavailable during Jan 19 - Feb 17 -in.heating_unavailable_period Jan 19 - Jan 19 Heating is unavailable during Jan 19 - Jan 19 -in.heating_unavailable_period Jan 19 - Jan 21 Heating is unavailable during Jan 19 - Jan 21 -in.heating_unavailable_period Jan 19 - Jan 25 Heating is unavailable during Jan 19 - Jan 25 -in.heating_unavailable_period Jan 2 - Apr 1 Heating is unavailable during Jan 2 - Apr 1 -in.heating_unavailable_period Jan 2 - Jan 15 Heating is unavailable during Jan 2 - Jan 15 -in.heating_unavailable_period Jan 2 - Jan 2 Heating is unavailable during Jan 2 - Jan 2 -in.heating_unavailable_period Jan 2 - Jan 31 Heating is unavailable during Jan 2 - Jan 31 -in.heating_unavailable_period Jan 2 - Jan 4 Heating is unavailable during Jan 2 - Jan 4 -in.heating_unavailable_period Jan 2 - Jan 8 Heating is unavailable during Jan 2 - Jan 8 -in.heating_unavailable_period Jan 20 - Apr 19 Heating is unavailable during Jan 20 - Apr 19 -in.heating_unavailable_period Jan 20 - Feb 18 Heating is unavailable during Jan 20 - Feb 18 -in.heating_unavailable_period Jan 20 - Feb 2 Heating is unavailable during Jan 20 - Feb 2 -in.heating_unavailable_period Jan 20 - Jan 20 Heating is unavailable during Jan 20 - Jan 20 -in.heating_unavailable_period Jan 20 - Jan 22 Heating is unavailable during Jan 20 - Jan 22 -in.heating_unavailable_period Jan 20 - Jan 26 Heating is unavailable during Jan 20 - Jan 26 -in.heating_unavailable_period Jan 21 - Apr 20 Heating is unavailable during Jan 21 - Apr 20 -in.heating_unavailable_period Jan 21 - Feb 19 Heating is unavailable during Jan 21 - Feb 19 -in.heating_unavailable_period Jan 21 - Feb 3 Heating is unavailable during Jan 21 - Feb 3 -in.heating_unavailable_period Jan 21 - Jan 21 Heating is unavailable during Jan 21 - Jan 21 -in.heating_unavailable_period Jan 21 - Jan 23 Heating is unavailable during Jan 21 - Jan 23 -in.heating_unavailable_period Jan 21 - Jan 27 Heating is unavailable during Jan 21 - Jan 27 -in.heating_unavailable_period Jan 22 - Apr 21 Heating is unavailable during Jan 22 - Apr 21 -in.heating_unavailable_period Jan 22 - Feb 20 Heating is unavailable during Jan 22 - Feb 20 -in.heating_unavailable_period Jan 22 - Feb 4 Heating is unavailable during Jan 22 - Feb 4 -in.heating_unavailable_period Jan 22 - Jan 22 Heating is unavailable during Jan 22 - Jan 22 -in.heating_unavailable_period Jan 22 - Jan 24 Heating is unavailable during Jan 22 - Jan 24 -in.heating_unavailable_period Jan 22 - Jan 28 Heating is unavailable during Jan 22 - Jan 28 -in.heating_unavailable_period Jan 23 - Apr 22 Heating is unavailable during Jan 23 - Apr 22 -in.heating_unavailable_period Jan 23 - Feb 21 Heating is unavailable during Jan 23 - Feb 21 -in.heating_unavailable_period Jan 23 - Feb 5 Heating is unavailable during Jan 23 - Feb 5 -in.heating_unavailable_period Jan 23 - Jan 23 Heating is unavailable during Jan 23 - Jan 23 -in.heating_unavailable_period Jan 23 - Jan 25 Heating is unavailable during Jan 23 - Jan 25 -in.heating_unavailable_period Jan 23 - Jan 29 Heating is unavailable during Jan 23 - Jan 29 -in.heating_unavailable_period Jan 24 - Apr 23 Heating is unavailable during Jan 24 - Apr 23 -in.heating_unavailable_period Jan 24 - Feb 22 Heating is unavailable during Jan 24 - Feb 22 -in.heating_unavailable_period Jan 24 - Feb 6 Heating is unavailable during Jan 24 - Feb 6 -in.heating_unavailable_period Jan 24 - Jan 24 Heating is unavailable during Jan 24 - Jan 24 -in.heating_unavailable_period Jan 24 - Jan 26 Heating is unavailable during Jan 24 - Jan 26 -in.heating_unavailable_period Jan 24 - Jan 30 Heating is unavailable during Jan 24 - Jan 30 -in.heating_unavailable_period Jan 25 - Apr 24 Heating is unavailable during Jan 25 - Apr 24 -in.heating_unavailable_period Jan 25 - Feb 23 Heating is unavailable during Jan 25 - Feb 23 -in.heating_unavailable_period Jan 25 - Feb 7 Heating is unavailable during Jan 25 - Feb 7 -in.heating_unavailable_period Jan 25 - Jan 25 Heating is unavailable during Jan 25 - Jan 25 -in.heating_unavailable_period Jan 25 - Jan 27 Heating is unavailable during Jan 25 - Jan 27 -in.heating_unavailable_period Jan 25 - Jan 31 Heating is unavailable during Jan 25 - Jan 31 -in.heating_unavailable_period Jan 26 - Apr 25 Heating is unavailable during Jan 26 - Apr 25 -in.heating_unavailable_period Jan 26 - Feb 1 Heating is unavailable during Jan 26 - Feb 1 -in.heating_unavailable_period Jan 26 - Feb 24 Heating is unavailable during Jan 26 - Feb 24 -in.heating_unavailable_period Jan 26 - Feb 8 Heating is unavailable during Jan 26 - Feb 8 -in.heating_unavailable_period Jan 26 - Jan 26 Heating is unavailable during Jan 26 - Jan 26 -in.heating_unavailable_period Jan 26 - Jan 28 Heating is unavailable during Jan 26 - Jan 28 -in.heating_unavailable_period Jan 27 - Apr 26 Heating is unavailable during Jan 27 - Apr 26 -in.heating_unavailable_period Jan 27 - Feb 2 Heating is unavailable during Jan 27 - Feb 2 -in.heating_unavailable_period Jan 27 - Feb 25 Heating is unavailable during Jan 27 - Feb 25 -in.heating_unavailable_period Jan 27 - Feb 9 Heating is unavailable during Jan 27 - Feb 9 -in.heating_unavailable_period Jan 27 - Jan 27 Heating is unavailable during Jan 27 - Jan 27 -in.heating_unavailable_period Jan 27 - Jan 29 Heating is unavailable during Jan 27 - Jan 29 -in.heating_unavailable_period Jan 28 - Apr 27 Heating is unavailable during Jan 28 - Apr 27 -in.heating_unavailable_period Jan 28 - Feb 10 Heating is unavailable during Jan 28 - Feb 10 -in.heating_unavailable_period Jan 28 - Feb 26 Heating is unavailable during Jan 28 - Feb 26 -in.heating_unavailable_period Jan 28 - Feb 3 Heating is unavailable during Jan 28 - Feb 3 -in.heating_unavailable_period Jan 28 - Jan 28 Heating is unavailable during Jan 28 - Jan 28 -in.heating_unavailable_period Jan 28 - Jan 30 Heating is unavailable during Jan 28 - Jan 30 -in.heating_unavailable_period Jan 29 - Apr 28 Heating is unavailable during Jan 29 - Apr 28 -in.heating_unavailable_period Jan 29 - Feb 11 Heating is unavailable during Jan 29 - Feb 11 -in.heating_unavailable_period Jan 29 - Feb 27 Heating is unavailable during Jan 29 - Feb 27 -in.heating_unavailable_period Jan 29 - Feb 4 Heating is unavailable during Jan 29 - Feb 4 -in.heating_unavailable_period Jan 29 - Jan 29 Heating is unavailable during Jan 29 - Jan 29 -in.heating_unavailable_period Jan 29 - Jan 31 Heating is unavailable during Jan 29 - Jan 31 -in.heating_unavailable_period Jan 3 - Apr 2 Heating is unavailable during Jan 3 - Apr 2 -in.heating_unavailable_period Jan 3 - Feb 1 Heating is unavailable during Jan 3 - Feb 1 -in.heating_unavailable_period Jan 3 - Jan 16 Heating is unavailable during Jan 3 - Jan 16 -in.heating_unavailable_period Jan 3 - Jan 3 Heating is unavailable during Jan 3 - Jan 3 -in.heating_unavailable_period Jan 3 - Jan 5 Heating is unavailable during Jan 3 - Jan 5 -in.heating_unavailable_period Jan 3 - Jan 9 Heating is unavailable during Jan 3 - Jan 9 -in.heating_unavailable_period Jan 30 - Apr 29 Heating is unavailable during Jan 30 - Apr 29 -in.heating_unavailable_period Jan 30 - Feb 1 Heating is unavailable during Jan 30 - Feb 1 -in.heating_unavailable_period Jan 30 - Feb 12 Heating is unavailable during Jan 30 - Feb 12 -in.heating_unavailable_period Jan 30 - Feb 28 Heating is unavailable during Jan 30 - Feb 28 -in.heating_unavailable_period Jan 30 - Feb 5 Heating is unavailable during Jan 30 - Feb 5 -in.heating_unavailable_period Jan 30 - Jan 30 Heating is unavailable during Jan 30 - Jan 30 -in.heating_unavailable_period Jan 31 - Apr 30 Heating is unavailable during Jan 31 - Apr 30 -in.heating_unavailable_period Jan 31 - Feb 13 Heating is unavailable during Jan 31 - Feb 13 -in.heating_unavailable_period Jan 31 - Feb 2 Heating is unavailable during Jan 31 - Feb 2 -in.heating_unavailable_period Jan 31 - Feb 6 Heating is unavailable during Jan 31 - Feb 6 -in.heating_unavailable_period Jan 31 - Jan 31 Heating is unavailable during Jan 31 - Jan 31 -in.heating_unavailable_period Jan 31 - Mar 1 Heating is unavailable during Jan 31 - Mar 1 -in.heating_unavailable_period Jan 4 - Apr 3 Heating is unavailable during Jan 4 - Apr 3 -in.heating_unavailable_period Jan 4 - Feb 2 Heating is unavailable during Jan 4 - Feb 2 -in.heating_unavailable_period Jan 4 - Jan 10 Heating is unavailable during Jan 4 - Jan 10 -in.heating_unavailable_period Jan 4 - Jan 17 Heating is unavailable during Jan 4 - Jan 17 -in.heating_unavailable_period Jan 4 - Jan 4 Heating is unavailable during Jan 4 - Jan 4 -in.heating_unavailable_period Jan 4 - Jan 6 Heating is unavailable during Jan 4 - Jan 6 -in.heating_unavailable_period Jan 5 - Apr 4 Heating is unavailable during Jan 5 - Apr 4 -in.heating_unavailable_period Jan 5 - Feb 3 Heating is unavailable during Jan 5 - Feb 3 -in.heating_unavailable_period Jan 5 - Jan 11 Heating is unavailable during Jan 5 - Jan 11 -in.heating_unavailable_period Jan 5 - Jan 18 Heating is unavailable during Jan 5 - Jan 18 -in.heating_unavailable_period Jan 5 - Jan 5 Heating is unavailable during Jan 5 - Jan 5 -in.heating_unavailable_period Jan 5 - Jan 7 Heating is unavailable during Jan 5 - Jan 7 -in.heating_unavailable_period Jan 6 - Apr 5 Heating is unavailable during Jan 6 - Apr 5 -in.heating_unavailable_period Jan 6 - Feb 4 Heating is unavailable during Jan 6 - Feb 4 -in.heating_unavailable_period Jan 6 - Jan 12 Heating is unavailable during Jan 6 - Jan 12 -in.heating_unavailable_period Jan 6 - Jan 19 Heating is unavailable during Jan 6 - Jan 19 -in.heating_unavailable_period Jan 6 - Jan 6 Heating is unavailable during Jan 6 - Jan 6 -in.heating_unavailable_period Jan 6 - Jan 8 Heating is unavailable during Jan 6 - Jan 8 -in.heating_unavailable_period Jan 7 - Apr 6 Heating is unavailable during Jan 7 - Apr 6 -in.heating_unavailable_period Jan 7 - Feb 5 Heating is unavailable during Jan 7 - Feb 5 -in.heating_unavailable_period Jan 7 - Jan 13 Heating is unavailable during Jan 7 - Jan 13 -in.heating_unavailable_period Jan 7 - Jan 20 Heating is unavailable during Jan 7 - Jan 20 -in.heating_unavailable_period Jan 7 - Jan 7 Heating is unavailable during Jan 7 - Jan 7 -in.heating_unavailable_period Jan 7 - Jan 9 Heating is unavailable during Jan 7 - Jan 9 -in.heating_unavailable_period Jan 8 - Apr 7 Heating is unavailable during Jan 8 - Apr 7 -in.heating_unavailable_period Jan 8 - Feb 6 Heating is unavailable during Jan 8 - Feb 6 -in.heating_unavailable_period Jan 8 - Jan 10 Heating is unavailable during Jan 8 - Jan 10 -in.heating_unavailable_period Jan 8 - Jan 14 Heating is unavailable during Jan 8 - Jan 14 -in.heating_unavailable_period Jan 8 - Jan 21 Heating is unavailable during Jan 8 - Jan 21 -in.heating_unavailable_period Jan 8 - Jan 8 Heating is unavailable during Jan 8 - Jan 8 -in.heating_unavailable_period Jan 9 - Apr 8 Heating is unavailable during Jan 9 - Apr 8 -in.heating_unavailable_period Jan 9 - Feb 7 Heating is unavailable during Jan 9 - Feb 7 -in.heating_unavailable_period Jan 9 - Jan 11 Heating is unavailable during Jan 9 - Jan 11 -in.heating_unavailable_period Jan 9 - Jan 15 Heating is unavailable during Jan 9 - Jan 15 -in.heating_unavailable_period Jan 9 - Jan 22 Heating is unavailable during Jan 9 - Jan 22 -in.heating_unavailable_period Jan 9 - Jan 9 Heating is unavailable during Jan 9 - Jan 9 -in.heating_unavailable_period Jul 1 - Jul 1 Heating is unavailable during Jul 1 - Jul 1 -in.heating_unavailable_period Jul 1 - Jul 14 Heating is unavailable during Jul 1 - Jul 14 -in.heating_unavailable_period Jul 1 - Jul 3 Heating is unavailable during Jul 1 - Jul 3 -in.heating_unavailable_period Jul 1 - Jul 7 Heating is unavailable during Jul 1 - Jul 7 -in.heating_unavailable_period Jul 1 - Sep 28 Heating is unavailable during Jul 1 - Sep 28 -in.heating_unavailable_period Jul 10 - Aug 8 Heating is unavailable during Jul 10 - Aug 8 -in.heating_unavailable_period Jul 10 - Jul 10 Heating is unavailable during Jul 10 - Jul 10 -in.heating_unavailable_period Jul 10 - Jul 12 Heating is unavailable during Jul 10 - Jul 12 -in.heating_unavailable_period Jul 11 - Aug 9 Heating is unavailable during Jul 11 - Aug 9 -in.heating_unavailable_period Jul 11 - Jul 11 Heating is unavailable during Jul 11 - Jul 11 -in.heating_unavailable_period Jul 11 - Jul 13 Heating is unavailable during Jul 11 - Jul 13 -in.heating_unavailable_period Jul 11 - Jul 17 Heating is unavailable during Jul 11 - Jul 17 -in.heating_unavailable_period Jul 11 - Jul 24 Heating is unavailable during Jul 11 - Jul 24 -in.heating_unavailable_period Jul 12 - Jul 12 Heating is unavailable during Jul 12 - Jul 12 -in.heating_unavailable_period Jul 12 - Jul 14 Heating is unavailable during Jul 12 - Jul 14 -in.heating_unavailable_period Jul 12 - Jul 18 Heating is unavailable during Jul 12 - Jul 18 -in.heating_unavailable_period Jul 13 - Jul 13 Heating is unavailable during Jul 13 - Jul 13 -in.heating_unavailable_period Jul 13 - Oct 10 Heating is unavailable during Jul 13 - Oct 10 -in.heating_unavailable_period Jul 14 - Aug 12 Heating is unavailable during Jul 14 - Aug 12 -in.heating_unavailable_period Jul 14 - Jul 14 Heating is unavailable during Jul 14 - Jul 14 -in.heating_unavailable_period Jul 14 - Jul 16 Heating is unavailable during Jul 14 - Jul 16 -in.heating_unavailable_period Jul 14 - Jul 20 Heating is unavailable during Jul 14 - Jul 20 -in.heating_unavailable_period Jul 15 - Jul 15 Heating is unavailable during Jul 15 - Jul 15 -in.heating_unavailable_period Jul 15 - Jul 21 Heating is unavailable during Jul 15 - Jul 21 -in.heating_unavailable_period Jul 16 - Jul 16 Heating is unavailable during Jul 16 - Jul 16 -in.heating_unavailable_period Jul 16 - Jul 18 Heating is unavailable during Jul 16 - Jul 18 -in.heating_unavailable_period Jul 16 - Jul 22 Heating is unavailable during Jul 16 - Jul 22 -in.heating_unavailable_period Jul 16 - Oct 13 Heating is unavailable during Jul 16 - Oct 13 -in.heating_unavailable_period Jul 17 - Jul 17 Heating is unavailable during Jul 17 - Jul 17 -in.heating_unavailable_period Jul 17 - Jul 19 Heating is unavailable during Jul 17 - Jul 19 -in.heating_unavailable_period Jul 17 - Jul 23 Heating is unavailable during Jul 17 - Jul 23 -in.heating_unavailable_period Jul 18 - Aug 16 Heating is unavailable during Jul 18 - Aug 16 -in.heating_unavailable_period Jul 18 - Jul 18 Heating is unavailable during Jul 18 - Jul 18 -in.heating_unavailable_period Jul 18 - Jul 20 Heating is unavailable during Jul 18 - Jul 20 -in.heating_unavailable_period Jul 18 - Jul 24 Heating is unavailable during Jul 18 - Jul 24 -in.heating_unavailable_period Jul 18 - Jul 31 Heating is unavailable during Jul 18 - Jul 31 -in.heating_unavailable_period Jul 18 - Oct 15 Heating is unavailable during Jul 18 - Oct 15 -in.heating_unavailable_period Jul 19 - Aug 1 Heating is unavailable during Jul 19 - Aug 1 -in.heating_unavailable_period Jul 19 - Aug 17 Heating is unavailable during Jul 19 - Aug 17 -in.heating_unavailable_period Jul 19 - Jul 19 Heating is unavailable during Jul 19 - Jul 19 -in.heating_unavailable_period Jul 19 - Jul 21 Heating is unavailable during Jul 19 - Jul 21 -in.heating_unavailable_period Jul 19 - Jul 25 Heating is unavailable during Jul 19 - Jul 25 -in.heating_unavailable_period Jul 2 - Jul 31 Heating is unavailable during Jul 2 - Jul 31 -in.heating_unavailable_period Jul 2 - Jul 8 Heating is unavailable during Jul 2 - Jul 8 -in.heating_unavailable_period Jul 2 - Sep 29 Heating is unavailable during Jul 2 - Sep 29 -in.heating_unavailable_period Jul 20 - Jul 20 Heating is unavailable during Jul 20 - Jul 20 -in.heating_unavailable_period Jul 20 - Jul 22 Heating is unavailable during Jul 20 - Jul 22 -in.heating_unavailable_period Jul 21 - Aug 19 Heating is unavailable during Jul 21 - Aug 19 -in.heating_unavailable_period Jul 21 - Jul 21 Heating is unavailable during Jul 21 - Jul 21 -in.heating_unavailable_period Jul 21 - Jul 23 Heating is unavailable during Jul 21 - Jul 23 -in.heating_unavailable_period Jul 21 - Jul 27 Heating is unavailable during Jul 21 - Jul 27 -in.heating_unavailable_period Jul 22 - Aug 20 Heating is unavailable during Jul 22 - Aug 20 -in.heating_unavailable_period Jul 22 - Aug 4 Heating is unavailable during Jul 22 - Aug 4 -in.heating_unavailable_period Jul 22 - Jul 22 Heating is unavailable during Jul 22 - Jul 22 -in.heating_unavailable_period Jul 22 - Jul 24 Heating is unavailable during Jul 22 - Jul 24 -in.heating_unavailable_period Jul 22 - Oct 19 Heating is unavailable during Jul 22 - Oct 19 -in.heating_unavailable_period Jul 23 - Aug 21 Heating is unavailable during Jul 23 - Aug 21 -in.heating_unavailable_period Jul 23 - Jul 23 Heating is unavailable during Jul 23 - Jul 23 -in.heating_unavailable_period Jul 23 - Jul 25 Heating is unavailable during Jul 23 - Jul 25 -in.heating_unavailable_period Jul 24 - Aug 22 Heating is unavailable during Jul 24 - Aug 22 -in.heating_unavailable_period Jul 24 - Aug 6 Heating is unavailable during Jul 24 - Aug 6 -in.heating_unavailable_period Jul 24 - Jul 24 Heating is unavailable during Jul 24 - Jul 24 -in.heating_unavailable_period Jul 24 - Jul 26 Heating is unavailable during Jul 24 - Jul 26 -in.heating_unavailable_period Jul 24 - Jul 30 Heating is unavailable during Jul 24 - Jul 30 -in.heating_unavailable_period Jul 25 - Aug 23 Heating is unavailable during Jul 25 - Aug 23 -in.heating_unavailable_period Jul 25 - Aug 7 Heating is unavailable during Jul 25 - Aug 7 -in.heating_unavailable_period Jul 25 - Jul 25 Heating is unavailable during Jul 25 - Jul 25 -in.heating_unavailable_period Jul 25 - Jul 27 Heating is unavailable during Jul 25 - Jul 27 -in.heating_unavailable_period Jul 25 - Jul 31 Heating is unavailable during Jul 25 - Jul 31 -in.heating_unavailable_period Jul 25 - Oct 22 Heating is unavailable during Jul 25 - Oct 22 -in.heating_unavailable_period Jul 26 - Aug 1 Heating is unavailable during Jul 26 - Aug 1 -in.heating_unavailable_period Jul 26 - Jul 26 Heating is unavailable during Jul 26 - Jul 26 -in.heating_unavailable_period Jul 26 - Jul 28 Heating is unavailable during Jul 26 - Jul 28 -in.heating_unavailable_period Jul 26 - Oct 23 Heating is unavailable during Jul 26 - Oct 23 -in.heating_unavailable_period Jul 27 - Aug 2 Heating is unavailable during Jul 27 - Aug 2 -in.heating_unavailable_period Jul 27 - Aug 9 Heating is unavailable during Jul 27 - Aug 9 -in.heating_unavailable_period Jul 27 - Jul 29 Heating is unavailable during Jul 27 - Jul 29 -in.heating_unavailable_period Jul 27 - Oct 24 Heating is unavailable during Jul 27 - Oct 24 -in.heating_unavailable_period Jul 28 - Aug 3 Heating is unavailable during Jul 28 - Aug 3 -in.heating_unavailable_period Jul 28 - Jul 28 Heating is unavailable during Jul 28 - Jul 28 -in.heating_unavailable_period Jul 28 - Jul 30 Heating is unavailable during Jul 28 - Jul 30 -in.heating_unavailable_period Jul 29 - Aug 4 Heating is unavailable during Jul 29 - Aug 4 -in.heating_unavailable_period Jul 29 - Jul 29 Heating is unavailable during Jul 29 - Jul 29 -in.heating_unavailable_period Jul 29 - Jul 31 Heating is unavailable during Jul 29 - Jul 31 -in.heating_unavailable_period Jul 3 - Aug 1 Heating is unavailable during Jul 3 - Aug 1 -in.heating_unavailable_period Jul 3 - Jul 3 Heating is unavailable during Jul 3 - Jul 3 -in.heating_unavailable_period Jul 3 - Jul 5 Heating is unavailable during Jul 3 - Jul 5 -in.heating_unavailable_period Jul 3 - Jul 9 Heating is unavailable during Jul 3 - Jul 9 -in.heating_unavailable_period Jul 30 - Aug 1 Heating is unavailable during Jul 30 - Aug 1 -in.heating_unavailable_period Jul 30 - Aug 28 Heating is unavailable during Jul 30 - Aug 28 -in.heating_unavailable_period Jul 30 - Aug 5 Heating is unavailable during Jul 30 - Aug 5 -in.heating_unavailable_period Jul 30 - Jul 30 Heating is unavailable during Jul 30 - Jul 30 -in.heating_unavailable_period Jul 31 - Aug 2 Heating is unavailable during Jul 31 - Aug 2 -in.heating_unavailable_period Jul 31 - Aug 6 Heating is unavailable during Jul 31 - Aug 6 -in.heating_unavailable_period Jul 4 - Jul 17 Heating is unavailable during Jul 4 - Jul 17 -in.heating_unavailable_period Jul 4 - Jul 4 Heating is unavailable during Jul 4 - Jul 4 -in.heating_unavailable_period Jul 4 - Jul 6 Heating is unavailable during Jul 4 - Jul 6 -in.heating_unavailable_period Jul 5 - Jul 18 Heating is unavailable during Jul 5 - Jul 18 -in.heating_unavailable_period Jul 5 - Jul 5 Heating is unavailable during Jul 5 - Jul 5 -in.heating_unavailable_period Jul 5 - Jul 7 Heating is unavailable during Jul 5 - Jul 7 -in.heating_unavailable_period Jul 5 - Oct 2 Heating is unavailable during Jul 5 - Oct 2 -in.heating_unavailable_period Jul 6 - Jul 12 Heating is unavailable during Jul 6 - Jul 12 -in.heating_unavailable_period Jul 6 - Jul 6 Heating is unavailable during Jul 6 - Jul 6 -in.heating_unavailable_period Jul 6 - Jul 8 Heating is unavailable during Jul 6 - Jul 8 -in.heating_unavailable_period Jul 6 - Oct 3 Heating is unavailable during Jul 6 - Oct 3 -in.heating_unavailable_period Jul 7 - Jul 13 Heating is unavailable during Jul 7 - Jul 13 -in.heating_unavailable_period Jul 7 - Jul 20 Heating is unavailable during Jul 7 - Jul 20 -in.heating_unavailable_period Jul 7 - Jul 9 Heating is unavailable during Jul 7 - Jul 9 -in.heating_unavailable_period Jul 8 - Aug 6 Heating is unavailable during Jul 8 - Aug 6 -in.heating_unavailable_period Jul 8 - Jul 10 Heating is unavailable during Jul 8 - Jul 10 -in.heating_unavailable_period Jul 8 - Jul 8 Heating is unavailable during Jul 8 - Jul 8 -in.heating_unavailable_period Jul 8 - Oct 5 Heating is unavailable during Jul 8 - Oct 5 -in.heating_unavailable_period Jul 9 - Aug 7 Heating is unavailable during Jul 9 - Aug 7 -in.heating_unavailable_period Jul 9 - Jul 11 Heating is unavailable during Jul 9 - Jul 11 -in.heating_unavailable_period Jul 9 - Jul 15 Heating is unavailable during Jul 9 - Jul 15 -in.heating_unavailable_period Jul 9 - Jul 22 Heating is unavailable during Jul 9 - Jul 22 -in.heating_unavailable_period Jun 1 - Aug 29 Heating is unavailable during Jun 1 - Aug 29 -in.heating_unavailable_period Jun 1 - Jun 1 Heating is unavailable during Jun 1 - Jun 1 -in.heating_unavailable_period Jun 1 - Jun 14 Heating is unavailable during Jun 1 - Jun 14 -in.heating_unavailable_period Jun 1 - Jun 3 Heating is unavailable during Jun 1 - Jun 3 -in.heating_unavailable_period Jun 1 - Jun 7 Heating is unavailable during Jun 1 - Jun 7 -in.heating_unavailable_period Jun 10 - Jul 9 Heating is unavailable during Jun 10 - Jul 9 -in.heating_unavailable_period Jun 10 - Jun 10 Heating is unavailable during Jun 10 - Jun 10 -in.heating_unavailable_period Jun 10 - Jun 12 Heating is unavailable during Jun 10 - Jun 12 -in.heating_unavailable_period Jun 10 - Jun 16 Heating is unavailable during Jun 10 - Jun 16 -in.heating_unavailable_period Jun 10 - Sep 7 Heating is unavailable during Jun 10 - Sep 7 -in.heating_unavailable_period Jun 11 - Jul 10 Heating is unavailable during Jun 11 - Jul 10 -in.heating_unavailable_period Jun 11 - Jun 11 Heating is unavailable during Jun 11 - Jun 11 -in.heating_unavailable_period Jun 11 - Jun 13 Heating is unavailable during Jun 11 - Jun 13 -in.heating_unavailable_period Jun 11 - Jun 17 Heating is unavailable during Jun 11 - Jun 17 -in.heating_unavailable_period Jun 11 - Jun 24 Heating is unavailable during Jun 11 - Jun 24 -in.heating_unavailable_period Jun 11 - Sep 8 Heating is unavailable during Jun 11 - Sep 8 -in.heating_unavailable_period Jun 12 - Jul 11 Heating is unavailable during Jun 12 - Jul 11 -in.heating_unavailable_period Jun 12 - Jun 12 Heating is unavailable during Jun 12 - Jun 12 -in.heating_unavailable_period Jun 12 - Jun 14 Heating is unavailable during Jun 12 - Jun 14 -in.heating_unavailable_period Jun 12 - Jun 18 Heating is unavailable during Jun 12 - Jun 18 -in.heating_unavailable_period Jun 12 - Jun 25 Heating is unavailable during Jun 12 - Jun 25 -in.heating_unavailable_period Jun 12 - Sep 9 Heating is unavailable during Jun 12 - Sep 9 -in.heating_unavailable_period Jun 13 - Jun 13 Heating is unavailable during Jun 13 - Jun 13 -in.heating_unavailable_period Jun 13 - Jun 15 Heating is unavailable during Jun 13 - Jun 15 -in.heating_unavailable_period Jun 13 - Sep 10 Heating is unavailable during Jun 13 - Sep 10 -in.heating_unavailable_period Jun 14 - Jul 13 Heating is unavailable during Jun 14 - Jul 13 -in.heating_unavailable_period Jun 14 - Jun 14 Heating is unavailable during Jun 14 - Jun 14 -in.heating_unavailable_period Jun 14 - Jun 16 Heating is unavailable during Jun 14 - Jun 16 -in.heating_unavailable_period Jun 14 - Jun 20 Heating is unavailable during Jun 14 - Jun 20 -in.heating_unavailable_period Jun 14 - Sep 11 Heating is unavailable during Jun 14 - Sep 11 -in.heating_unavailable_period Jun 15 - Jul 14 Heating is unavailable during Jun 15 - Jul 14 -in.heating_unavailable_period Jun 15 - Jun 15 Heating is unavailable during Jun 15 - Jun 15 -in.heating_unavailable_period Jun 15 - Jun 17 Heating is unavailable during Jun 15 - Jun 17 -in.heating_unavailable_period Jun 15 - Jun 21 Heating is unavailable during Jun 15 - Jun 21 -in.heating_unavailable_period Jun 15 - Jun 28 Heating is unavailable during Jun 15 - Jun 28 -in.heating_unavailable_period Jun 16 - Jul 15 Heating is unavailable during Jun 16 - Jul 15 -in.heating_unavailable_period Jun 16 - Jun 16 Heating is unavailable during Jun 16 - Jun 16 -in.heating_unavailable_period Jun 16 - Jun 18 Heating is unavailable during Jun 16 - Jun 18 -in.heating_unavailable_period Jun 16 - Jun 22 Heating is unavailable during Jun 16 - Jun 22 -in.heating_unavailable_period Jun 16 - Jun 29 Heating is unavailable during Jun 16 - Jun 29 -in.heating_unavailable_period Jun 16 - Sep 13 Heating is unavailable during Jun 16 - Sep 13 -in.heating_unavailable_period Jun 17 - Jul 16 Heating is unavailable during Jun 17 - Jul 16 -in.heating_unavailable_period Jun 17 - Jun 17 Heating is unavailable during Jun 17 - Jun 17 -in.heating_unavailable_period Jun 17 - Jun 19 Heating is unavailable during Jun 17 - Jun 19 -in.heating_unavailable_period Jun 17 - Jun 23 Heating is unavailable during Jun 17 - Jun 23 -in.heating_unavailable_period Jun 17 - Jun 30 Heating is unavailable during Jun 17 - Jun 30 -in.heating_unavailable_period Jun 17 - Sep 14 Heating is unavailable during Jun 17 - Sep 14 -in.heating_unavailable_period Jun 18 - Jul 1 Heating is unavailable during Jun 18 - Jul 1 -in.heating_unavailable_period Jun 18 - Jul 17 Heating is unavailable during Jun 18 - Jul 17 -in.heating_unavailable_period Jun 18 - Jun 18 Heating is unavailable during Jun 18 - Jun 18 -in.heating_unavailable_period Jun 18 - Jun 20 Heating is unavailable during Jun 18 - Jun 20 -in.heating_unavailable_period Jun 18 - Jun 24 Heating is unavailable during Jun 18 - Jun 24 -in.heating_unavailable_period Jun 18 - Sep 15 Heating is unavailable during Jun 18 - Sep 15 -in.heating_unavailable_period Jun 19 - Jul 18 Heating is unavailable during Jun 19 - Jul 18 -in.heating_unavailable_period Jun 19 - Jul 2 Heating is unavailable during Jun 19 - Jul 2 -in.heating_unavailable_period Jun 19 - Jun 19 Heating is unavailable during Jun 19 - Jun 19 -in.heating_unavailable_period Jun 19 - Jun 21 Heating is unavailable during Jun 19 - Jun 21 -in.heating_unavailable_period Jun 19 - Jun 25 Heating is unavailable during Jun 19 - Jun 25 -in.heating_unavailable_period Jun 19 - Sep 16 Heating is unavailable during Jun 19 - Sep 16 -in.heating_unavailable_period Jun 2 - Aug 30 Heating is unavailable during Jun 2 - Aug 30 -in.heating_unavailable_period Jun 2 - Jul 1 Heating is unavailable during Jun 2 - Jul 1 -in.heating_unavailable_period Jun 2 - Jun 15 Heating is unavailable during Jun 2 - Jun 15 -in.heating_unavailable_period Jun 2 - Jun 2 Heating is unavailable during Jun 2 - Jun 2 -in.heating_unavailable_period Jun 2 - Jun 4 Heating is unavailable during Jun 2 - Jun 4 -in.heating_unavailable_period Jun 2 - Jun 8 Heating is unavailable during Jun 2 - Jun 8 -in.heating_unavailable_period Jun 20 - Jul 19 Heating is unavailable during Jun 20 - Jul 19 -in.heating_unavailable_period Jun 20 - Jul 3 Heating is unavailable during Jun 20 - Jul 3 -in.heating_unavailable_period Jun 20 - Jun 20 Heating is unavailable during Jun 20 - Jun 20 -in.heating_unavailable_period Jun 20 - Jun 22 Heating is unavailable during Jun 20 - Jun 22 -in.heating_unavailable_period Jun 20 - Jun 26 Heating is unavailable during Jun 20 - Jun 26 -in.heating_unavailable_period Jun 20 - Sep 17 Heating is unavailable during Jun 20 - Sep 17 -in.heating_unavailable_period Jun 21 - Jul 20 Heating is unavailable during Jun 21 - Jul 20 -in.heating_unavailable_period Jun 21 - Jul 4 Heating is unavailable during Jun 21 - Jul 4 -in.heating_unavailable_period Jun 21 - Jun 21 Heating is unavailable during Jun 21 - Jun 21 -in.heating_unavailable_period Jun 21 - Jun 23 Heating is unavailable during Jun 21 - Jun 23 -in.heating_unavailable_period Jun 21 - Jun 27 Heating is unavailable during Jun 21 - Jun 27 -in.heating_unavailable_period Jun 22 - Jul 21 Heating is unavailable during Jun 22 - Jul 21 -in.heating_unavailable_period Jun 22 - Jul 5 Heating is unavailable during Jun 22 - Jul 5 -in.heating_unavailable_period Jun 22 - Jun 22 Heating is unavailable during Jun 22 - Jun 22 -in.heating_unavailable_period Jun 22 - Jun 24 Heating is unavailable during Jun 22 - Jun 24 -in.heating_unavailable_period Jun 22 - Jun 28 Heating is unavailable during Jun 22 - Jun 28 -in.heating_unavailable_period Jun 22 - Sep 19 Heating is unavailable during Jun 22 - Sep 19 -in.heating_unavailable_period Jun 23 - Jul 22 Heating is unavailable during Jun 23 - Jul 22 -in.heating_unavailable_period Jun 23 - Jul 6 Heating is unavailable during Jun 23 - Jul 6 -in.heating_unavailable_period Jun 23 - Jun 23 Heating is unavailable during Jun 23 - Jun 23 -in.heating_unavailable_period Jun 23 - Jun 25 Heating is unavailable during Jun 23 - Jun 25 -in.heating_unavailable_period Jun 23 - Jun 29 Heating is unavailable during Jun 23 - Jun 29 -in.heating_unavailable_period Jun 23 - Sep 20 Heating is unavailable during Jun 23 - Sep 20 -in.heating_unavailable_period Jun 24 - Jul 23 Heating is unavailable during Jun 24 - Jul 23 -in.heating_unavailable_period Jun 24 - Jul 7 Heating is unavailable during Jun 24 - Jul 7 -in.heating_unavailable_period Jun 24 - Jun 24 Heating is unavailable during Jun 24 - Jun 24 -in.heating_unavailable_period Jun 24 - Jun 26 Heating is unavailable during Jun 24 - Jun 26 -in.heating_unavailable_period Jun 24 - Jun 30 Heating is unavailable during Jun 24 - Jun 30 -in.heating_unavailable_period Jun 24 - Sep 21 Heating is unavailable during Jun 24 - Sep 21 -in.heating_unavailable_period Jun 25 - Jul 1 Heating is unavailable during Jun 25 - Jul 1 -in.heating_unavailable_period Jun 25 - Jul 24 Heating is unavailable during Jun 25 - Jul 24 -in.heating_unavailable_period Jun 25 - Jul 8 Heating is unavailable during Jun 25 - Jul 8 -in.heating_unavailable_period Jun 25 - Jun 25 Heating is unavailable during Jun 25 - Jun 25 -in.heating_unavailable_period Jun 25 - Jun 27 Heating is unavailable during Jun 25 - Jun 27 -in.heating_unavailable_period Jun 25 - Sep 22 Heating is unavailable during Jun 25 - Sep 22 -in.heating_unavailable_period Jun 26 - Jul 2 Heating is unavailable during Jun 26 - Jul 2 -in.heating_unavailable_period Jun 26 - Jul 25 Heating is unavailable during Jun 26 - Jul 25 -in.heating_unavailable_period Jun 26 - Jun 26 Heating is unavailable during Jun 26 - Jun 26 -in.heating_unavailable_period Jun 26 - Jun 28 Heating is unavailable during Jun 26 - Jun 28 -in.heating_unavailable_period Jun 26 - Sep 23 Heating is unavailable during Jun 26 - Sep 23 -in.heating_unavailable_period Jun 27 - Jul 26 Heating is unavailable during Jun 27 - Jul 26 -in.heating_unavailable_period Jun 27 - Jul 3 Heating is unavailable during Jun 27 - Jul 3 -in.heating_unavailable_period Jun 27 - Jun 27 Heating is unavailable during Jun 27 - Jun 27 -in.heating_unavailable_period Jun 27 - Jun 29 Heating is unavailable during Jun 27 - Jun 29 -in.heating_unavailable_period Jun 27 - Sep 24 Heating is unavailable during Jun 27 - Sep 24 -in.heating_unavailable_period Jun 28 - Jul 11 Heating is unavailable during Jun 28 - Jul 11 -in.heating_unavailable_period Jun 28 - Jul 4 Heating is unavailable during Jun 28 - Jul 4 -in.heating_unavailable_period Jun 28 - Jun 28 Heating is unavailable during Jun 28 - Jun 28 -in.heating_unavailable_period Jun 28 - Jun 30 Heating is unavailable during Jun 28 - Jun 30 -in.heating_unavailable_period Jun 28 - Sep 25 Heating is unavailable during Jun 28 - Sep 25 -in.heating_unavailable_period Jun 29 - Jul 1 Heating is unavailable during Jun 29 - Jul 1 -in.heating_unavailable_period Jun 29 - Jul 12 Heating is unavailable during Jun 29 - Jul 12 -in.heating_unavailable_period Jun 29 - Jul 28 Heating is unavailable during Jun 29 - Jul 28 -in.heating_unavailable_period Jun 29 - Jul 5 Heating is unavailable during Jun 29 - Jul 5 -in.heating_unavailable_period Jun 29 - Jun 29 Heating is unavailable during Jun 29 - Jun 29 -in.heating_unavailable_period Jun 29 - Sep 26 Heating is unavailable during Jun 29 - Sep 26 -in.heating_unavailable_period Jun 3 - Aug 31 Heating is unavailable during Jun 3 - Aug 31 -in.heating_unavailable_period Jun 3 - Jul 2 Heating is unavailable during Jun 3 - Jul 2 -in.heating_unavailable_period Jun 3 - Jun 16 Heating is unavailable during Jun 3 - Jun 16 -in.heating_unavailable_period Jun 3 - Jun 3 Heating is unavailable during Jun 3 - Jun 3 -in.heating_unavailable_period Jun 3 - Jun 5 Heating is unavailable during Jun 3 - Jun 5 -in.heating_unavailable_period Jun 3 - Jun 9 Heating is unavailable during Jun 3 - Jun 9 -in.heating_unavailable_period Jun 30 - Jul 13 Heating is unavailable during Jun 30 - Jul 13 -in.heating_unavailable_period Jun 30 - Jul 2 Heating is unavailable during Jun 30 - Jul 2 -in.heating_unavailable_period Jun 30 - Jul 29 Heating is unavailable during Jun 30 - Jul 29 -in.heating_unavailable_period Jun 30 - Jul 6 Heating is unavailable during Jun 30 - Jul 6 -in.heating_unavailable_period Jun 30 - Jun 30 Heating is unavailable during Jun 30 - Jun 30 -in.heating_unavailable_period Jun 30 - Sep 27 Heating is unavailable during Jun 30 - Sep 27 -in.heating_unavailable_period Jun 4 - Jul 3 Heating is unavailable during Jun 4 - Jul 3 -in.heating_unavailable_period Jun 4 - Jun 10 Heating is unavailable during Jun 4 - Jun 10 -in.heating_unavailable_period Jun 4 - Jun 17 Heating is unavailable during Jun 4 - Jun 17 -in.heating_unavailable_period Jun 4 - Jun 4 Heating is unavailable during Jun 4 - Jun 4 -in.heating_unavailable_period Jun 4 - Jun 6 Heating is unavailable during Jun 4 - Jun 6 -in.heating_unavailable_period Jun 4 - Sep 1 Heating is unavailable during Jun 4 - Sep 1 -in.heating_unavailable_period Jun 5 - Jul 4 Heating is unavailable during Jun 5 - Jul 4 -in.heating_unavailable_period Jun 5 - Jun 11 Heating is unavailable during Jun 5 - Jun 11 -in.heating_unavailable_period Jun 5 - Jun 18 Heating is unavailable during Jun 5 - Jun 18 -in.heating_unavailable_period Jun 5 - Jun 5 Heating is unavailable during Jun 5 - Jun 5 -in.heating_unavailable_period Jun 5 - Jun 7 Heating is unavailable during Jun 5 - Jun 7 -in.heating_unavailable_period Jun 6 - Jul 5 Heating is unavailable during Jun 6 - Jul 5 -in.heating_unavailable_period Jun 6 - Jun 12 Heating is unavailable during Jun 6 - Jun 12 -in.heating_unavailable_period Jun 6 - Jun 19 Heating is unavailable during Jun 6 - Jun 19 -in.heating_unavailable_period Jun 6 - Jun 6 Heating is unavailable during Jun 6 - Jun 6 -in.heating_unavailable_period Jun 6 - Jun 8 Heating is unavailable during Jun 6 - Jun 8 -in.heating_unavailable_period Jun 6 - Sep 3 Heating is unavailable during Jun 6 - Sep 3 -in.heating_unavailable_period Jun 7 - Jul 6 Heating is unavailable during Jun 7 - Jul 6 -in.heating_unavailable_period Jun 7 - Jun 13 Heating is unavailable during Jun 7 - Jun 13 -in.heating_unavailable_period Jun 7 - Jun 20 Heating is unavailable during Jun 7 - Jun 20 -in.heating_unavailable_period Jun 7 - Jun 7 Heating is unavailable during Jun 7 - Jun 7 -in.heating_unavailable_period Jun 7 - Jun 9 Heating is unavailable during Jun 7 - Jun 9 -in.heating_unavailable_period Jun 8 - Jul 7 Heating is unavailable during Jun 8 - Jul 7 -in.heating_unavailable_period Jun 8 - Jun 10 Heating is unavailable during Jun 8 - Jun 10 -in.heating_unavailable_period Jun 8 - Jun 14 Heating is unavailable during Jun 8 - Jun 14 -in.heating_unavailable_period Jun 8 - Jun 21 Heating is unavailable during Jun 8 - Jun 21 -in.heating_unavailable_period Jun 8 - Jun 8 Heating is unavailable during Jun 8 - Jun 8 -in.heating_unavailable_period Jun 9 - Jul 8 Heating is unavailable during Jun 9 - Jul 8 -in.heating_unavailable_period Jun 9 - Jun 11 Heating is unavailable during Jun 9 - Jun 11 -in.heating_unavailable_period Jun 9 - Jun 22 Heating is unavailable during Jun 9 - Jun 22 -in.heating_unavailable_period Jun 9 - Jun 9 Heating is unavailable during Jun 9 - Jun 9 -in.heating_unavailable_period Jun 9 - Sep 6 Heating is unavailable during Jun 9 - Sep 6 -in.heating_unavailable_period Mar 1 - Mar 1 Heating is unavailable during Mar 1 - Mar 1 -in.heating_unavailable_period Mar 1 - Mar 14 Heating is unavailable during Mar 1 - Mar 14 -in.heating_unavailable_period Mar 1 - Mar 3 Heating is unavailable during Mar 1 - Mar 3 -in.heating_unavailable_period Mar 1 - Mar 30 Heating is unavailable during Mar 1 - Mar 30 -in.heating_unavailable_period Mar 1 - Mar 7 Heating is unavailable during Mar 1 - Mar 7 -in.heating_unavailable_period Mar 1 - May 29 Heating is unavailable during Mar 1 - May 29 -in.heating_unavailable_period Mar 10 - Apr 8 Heating is unavailable during Mar 10 - Apr 8 -in.heating_unavailable_period Mar 10 - Jun 7 Heating is unavailable during Mar 10 - Jun 7 -in.heating_unavailable_period Mar 10 - Mar 10 Heating is unavailable during Mar 10 - Mar 10 -in.heating_unavailable_period Mar 10 - Mar 12 Heating is unavailable during Mar 10 - Mar 12 -in.heating_unavailable_period Mar 10 - Mar 16 Heating is unavailable during Mar 10 - Mar 16 -in.heating_unavailable_period Mar 10 - Mar 23 Heating is unavailable during Mar 10 - Mar 23 -in.heating_unavailable_period Mar 11 - Apr 9 Heating is unavailable during Mar 11 - Apr 9 -in.heating_unavailable_period Mar 11 - Jun 8 Heating is unavailable during Mar 11 - Jun 8 -in.heating_unavailable_period Mar 11 - Mar 11 Heating is unavailable during Mar 11 - Mar 11 -in.heating_unavailable_period Mar 11 - Mar 13 Heating is unavailable during Mar 11 - Mar 13 -in.heating_unavailable_period Mar 11 - Mar 17 Heating is unavailable during Mar 11 - Mar 17 -in.heating_unavailable_period Mar 11 - Mar 24 Heating is unavailable during Mar 11 - Mar 24 -in.heating_unavailable_period Mar 12 - Apr 10 Heating is unavailable during Mar 12 - Apr 10 -in.heating_unavailable_period Mar 12 - Jun 9 Heating is unavailable during Mar 12 - Jun 9 -in.heating_unavailable_period Mar 12 - Mar 12 Heating is unavailable during Mar 12 - Mar 12 -in.heating_unavailable_period Mar 12 - Mar 14 Heating is unavailable during Mar 12 - Mar 14 -in.heating_unavailable_period Mar 12 - Mar 18 Heating is unavailable during Mar 12 - Mar 18 -in.heating_unavailable_period Mar 12 - Mar 25 Heating is unavailable during Mar 12 - Mar 25 -in.heating_unavailable_period Mar 13 - Apr 11 Heating is unavailable during Mar 13 - Apr 11 -in.heating_unavailable_period Mar 13 - Jun 10 Heating is unavailable during Mar 13 - Jun 10 -in.heating_unavailable_period Mar 13 - Mar 13 Heating is unavailable during Mar 13 - Mar 13 -in.heating_unavailable_period Mar 13 - Mar 15 Heating is unavailable during Mar 13 - Mar 15 -in.heating_unavailable_period Mar 13 - Mar 19 Heating is unavailable during Mar 13 - Mar 19 -in.heating_unavailable_period Mar 13 - Mar 26 Heating is unavailable during Mar 13 - Mar 26 -in.heating_unavailable_period Mar 14 - Apr 12 Heating is unavailable during Mar 14 - Apr 12 -in.heating_unavailable_period Mar 14 - Jun 11 Heating is unavailable during Mar 14 - Jun 11 -in.heating_unavailable_period Mar 14 - Mar 14 Heating is unavailable during Mar 14 - Mar 14 -in.heating_unavailable_period Mar 14 - Mar 16 Heating is unavailable during Mar 14 - Mar 16 -in.heating_unavailable_period Mar 14 - Mar 20 Heating is unavailable during Mar 14 - Mar 20 -in.heating_unavailable_period Mar 14 - Mar 27 Heating is unavailable during Mar 14 - Mar 27 -in.heating_unavailable_period Mar 15 - Apr 13 Heating is unavailable during Mar 15 - Apr 13 -in.heating_unavailable_period Mar 15 - Jun 12 Heating is unavailable during Mar 15 - Jun 12 -in.heating_unavailable_period Mar 15 - Mar 15 Heating is unavailable during Mar 15 - Mar 15 -in.heating_unavailable_period Mar 15 - Mar 17 Heating is unavailable during Mar 15 - Mar 17 -in.heating_unavailable_period Mar 15 - Mar 21 Heating is unavailable during Mar 15 - Mar 21 -in.heating_unavailable_period Mar 15 - Mar 28 Heating is unavailable during Mar 15 - Mar 28 -in.heating_unavailable_period Mar 16 - Apr 14 Heating is unavailable during Mar 16 - Apr 14 -in.heating_unavailable_period Mar 16 - Jun 13 Heating is unavailable during Mar 16 - Jun 13 -in.heating_unavailable_period Mar 16 - Mar 16 Heating is unavailable during Mar 16 - Mar 16 -in.heating_unavailable_period Mar 16 - Mar 18 Heating is unavailable during Mar 16 - Mar 18 -in.heating_unavailable_period Mar 16 - Mar 22 Heating is unavailable during Mar 16 - Mar 22 -in.heating_unavailable_period Mar 16 - Mar 29 Heating is unavailable during Mar 16 - Mar 29 -in.heating_unavailable_period Mar 17 - Apr 15 Heating is unavailable during Mar 17 - Apr 15 -in.heating_unavailable_period Mar 17 - Jun 14 Heating is unavailable during Mar 17 - Jun 14 -in.heating_unavailable_period Mar 17 - Mar 17 Heating is unavailable during Mar 17 - Mar 17 -in.heating_unavailable_period Mar 17 - Mar 19 Heating is unavailable during Mar 17 - Mar 19 -in.heating_unavailable_period Mar 17 - Mar 23 Heating is unavailable during Mar 17 - Mar 23 -in.heating_unavailable_period Mar 17 - Mar 30 Heating is unavailable during Mar 17 - Mar 30 -in.heating_unavailable_period Mar 18 - Apr 16 Heating is unavailable during Mar 18 - Apr 16 -in.heating_unavailable_period Mar 18 - Jun 15 Heating is unavailable during Mar 18 - Jun 15 -in.heating_unavailable_period Mar 18 - Mar 18 Heating is unavailable during Mar 18 - Mar 18 -in.heating_unavailable_period Mar 18 - Mar 20 Heating is unavailable during Mar 18 - Mar 20 -in.heating_unavailable_period Mar 18 - Mar 24 Heating is unavailable during Mar 18 - Mar 24 -in.heating_unavailable_period Mar 18 - Mar 31 Heating is unavailable during Mar 18 - Mar 31 -in.heating_unavailable_period Mar 19 - Apr 1 Heating is unavailable during Mar 19 - Apr 1 -in.heating_unavailable_period Mar 19 - Apr 17 Heating is unavailable during Mar 19 - Apr 17 -in.heating_unavailable_period Mar 19 - Jun 16 Heating is unavailable during Mar 19 - Jun 16 -in.heating_unavailable_period Mar 19 - Mar 19 Heating is unavailable during Mar 19 - Mar 19 -in.heating_unavailable_period Mar 19 - Mar 21 Heating is unavailable during Mar 19 - Mar 21 -in.heating_unavailable_period Mar 19 - Mar 25 Heating is unavailable during Mar 19 - Mar 25 -in.heating_unavailable_period Mar 2 - Mar 15 Heating is unavailable during Mar 2 - Mar 15 -in.heating_unavailable_period Mar 2 - Mar 2 Heating is unavailable during Mar 2 - Mar 2 -in.heating_unavailable_period Mar 2 - Mar 31 Heating is unavailable during Mar 2 - Mar 31 -in.heating_unavailable_period Mar 2 - Mar 4 Heating is unavailable during Mar 2 - Mar 4 -in.heating_unavailable_period Mar 2 - Mar 8 Heating is unavailable during Mar 2 - Mar 8 -in.heating_unavailable_period Mar 2 - May 30 Heating is unavailable during Mar 2 - May 30 -in.heating_unavailable_period Mar 20 - Apr 18 Heating is unavailable during Mar 20 - Apr 18 -in.heating_unavailable_period Mar 20 - Apr 2 Heating is unavailable during Mar 20 - Apr 2 -in.heating_unavailable_period Mar 20 - Jun 17 Heating is unavailable during Mar 20 - Jun 17 -in.heating_unavailable_period Mar 20 - Mar 20 Heating is unavailable during Mar 20 - Mar 20 -in.heating_unavailable_period Mar 20 - Mar 22 Heating is unavailable during Mar 20 - Mar 22 -in.heating_unavailable_period Mar 20 - Mar 26 Heating is unavailable during Mar 20 - Mar 26 -in.heating_unavailable_period Mar 21 - Apr 19 Heating is unavailable during Mar 21 - Apr 19 -in.heating_unavailable_period Mar 21 - Apr 3 Heating is unavailable during Mar 21 - Apr 3 -in.heating_unavailable_period Mar 21 - Jun 18 Heating is unavailable during Mar 21 - Jun 18 -in.heating_unavailable_period Mar 21 - Mar 21 Heating is unavailable during Mar 21 - Mar 21 -in.heating_unavailable_period Mar 21 - Mar 23 Heating is unavailable during Mar 21 - Mar 23 -in.heating_unavailable_period Mar 21 - Mar 27 Heating is unavailable during Mar 21 - Mar 27 -in.heating_unavailable_period Mar 22 - Apr 20 Heating is unavailable during Mar 22 - Apr 20 -in.heating_unavailable_period Mar 22 - Apr 4 Heating is unavailable during Mar 22 - Apr 4 -in.heating_unavailable_period Mar 22 - Jun 19 Heating is unavailable during Mar 22 - Jun 19 -in.heating_unavailable_period Mar 22 - Mar 22 Heating is unavailable during Mar 22 - Mar 22 -in.heating_unavailable_period Mar 22 - Mar 24 Heating is unavailable during Mar 22 - Mar 24 -in.heating_unavailable_period Mar 22 - Mar 28 Heating is unavailable during Mar 22 - Mar 28 -in.heating_unavailable_period Mar 23 - Apr 21 Heating is unavailable during Mar 23 - Apr 21 -in.heating_unavailable_period Mar 23 - Apr 5 Heating is unavailable during Mar 23 - Apr 5 -in.heating_unavailable_period Mar 23 - Jun 20 Heating is unavailable during Mar 23 - Jun 20 -in.heating_unavailable_period Mar 23 - Mar 23 Heating is unavailable during Mar 23 - Mar 23 -in.heating_unavailable_period Mar 23 - Mar 25 Heating is unavailable during Mar 23 - Mar 25 -in.heating_unavailable_period Mar 23 - Mar 29 Heating is unavailable during Mar 23 - Mar 29 -in.heating_unavailable_period Mar 24 - Apr 22 Heating is unavailable during Mar 24 - Apr 22 -in.heating_unavailable_period Mar 24 - Apr 6 Heating is unavailable during Mar 24 - Apr 6 -in.heating_unavailable_period Mar 24 - Jun 21 Heating is unavailable during Mar 24 - Jun 21 -in.heating_unavailable_period Mar 24 - Mar 24 Heating is unavailable during Mar 24 - Mar 24 -in.heating_unavailable_period Mar 24 - Mar 26 Heating is unavailable during Mar 24 - Mar 26 -in.heating_unavailable_period Mar 24 - Mar 30 Heating is unavailable during Mar 24 - Mar 30 -in.heating_unavailable_period Mar 25 - Apr 23 Heating is unavailable during Mar 25 - Apr 23 -in.heating_unavailable_period Mar 25 - Apr 7 Heating is unavailable during Mar 25 - Apr 7 -in.heating_unavailable_period Mar 25 - Jun 22 Heating is unavailable during Mar 25 - Jun 22 -in.heating_unavailable_period Mar 25 - Mar 25 Heating is unavailable during Mar 25 - Mar 25 -in.heating_unavailable_period Mar 25 - Mar 27 Heating is unavailable during Mar 25 - Mar 27 -in.heating_unavailable_period Mar 25 - Mar 31 Heating is unavailable during Mar 25 - Mar 31 -in.heating_unavailable_period Mar 26 - Apr 1 Heating is unavailable during Mar 26 - Apr 1 -in.heating_unavailable_period Mar 26 - Apr 24 Heating is unavailable during Mar 26 - Apr 24 -in.heating_unavailable_period Mar 26 - Apr 8 Heating is unavailable during Mar 26 - Apr 8 -in.heating_unavailable_period Mar 26 - Jun 23 Heating is unavailable during Mar 26 - Jun 23 -in.heating_unavailable_period Mar 26 - Mar 26 Heating is unavailable during Mar 26 - Mar 26 -in.heating_unavailable_period Mar 26 - Mar 28 Heating is unavailable during Mar 26 - Mar 28 -in.heating_unavailable_period Mar 27 - Apr 2 Heating is unavailable during Mar 27 - Apr 2 -in.heating_unavailable_period Mar 27 - Apr 25 Heating is unavailable during Mar 27 - Apr 25 -in.heating_unavailable_period Mar 27 - Apr 9 Heating is unavailable during Mar 27 - Apr 9 -in.heating_unavailable_period Mar 27 - Jun 24 Heating is unavailable during Mar 27 - Jun 24 -in.heating_unavailable_period Mar 27 - Mar 27 Heating is unavailable during Mar 27 - Mar 27 -in.heating_unavailable_period Mar 27 - Mar 29 Heating is unavailable during Mar 27 - Mar 29 -in.heating_unavailable_period Mar 28 - Apr 10 Heating is unavailable during Mar 28 - Apr 10 -in.heating_unavailable_period Mar 28 - Apr 26 Heating is unavailable during Mar 28 - Apr 26 -in.heating_unavailable_period Mar 28 - Apr 3 Heating is unavailable during Mar 28 - Apr 3 -in.heating_unavailable_period Mar 28 - Jun 25 Heating is unavailable during Mar 28 - Jun 25 -in.heating_unavailable_period Mar 28 - Mar 28 Heating is unavailable during Mar 28 - Mar 28 -in.heating_unavailable_period Mar 28 - Mar 30 Heating is unavailable during Mar 28 - Mar 30 -in.heating_unavailable_period Mar 29 - Apr 11 Heating is unavailable during Mar 29 - Apr 11 -in.heating_unavailable_period Mar 29 - Apr 27 Heating is unavailable during Mar 29 - Apr 27 -in.heating_unavailable_period Mar 29 - Apr 4 Heating is unavailable during Mar 29 - Apr 4 -in.heating_unavailable_period Mar 29 - Jun 26 Heating is unavailable during Mar 29 - Jun 26 -in.heating_unavailable_period Mar 29 - Mar 29 Heating is unavailable during Mar 29 - Mar 29 -in.heating_unavailable_period Mar 29 - Mar 31 Heating is unavailable during Mar 29 - Mar 31 -in.heating_unavailable_period Mar 3 - Apr 1 Heating is unavailable during Mar 3 - Apr 1 -in.heating_unavailable_period Mar 3 - Mar 16 Heating is unavailable during Mar 3 - Mar 16 -in.heating_unavailable_period Mar 3 - Mar 3 Heating is unavailable during Mar 3 - Mar 3 -in.heating_unavailable_period Mar 3 - Mar 5 Heating is unavailable during Mar 3 - Mar 5 -in.heating_unavailable_period Mar 3 - Mar 9 Heating is unavailable during Mar 3 - Mar 9 -in.heating_unavailable_period Mar 3 - May 31 Heating is unavailable during Mar 3 - May 31 -in.heating_unavailable_period Mar 30 - Apr 1 Heating is unavailable during Mar 30 - Apr 1 -in.heating_unavailable_period Mar 30 - Apr 12 Heating is unavailable during Mar 30 - Apr 12 -in.heating_unavailable_period Mar 30 - Apr 28 Heating is unavailable during Mar 30 - Apr 28 -in.heating_unavailable_period Mar 30 - Apr 5 Heating is unavailable during Mar 30 - Apr 5 -in.heating_unavailable_period Mar 30 - Jun 27 Heating is unavailable during Mar 30 - Jun 27 -in.heating_unavailable_period Mar 30 - Mar 30 Heating is unavailable during Mar 30 - Mar 30 -in.heating_unavailable_period Mar 31 - Apr 13 Heating is unavailable during Mar 31 - Apr 13 -in.heating_unavailable_period Mar 31 - Apr 2 Heating is unavailable during Mar 31 - Apr 2 -in.heating_unavailable_period Mar 31 - Apr 29 Heating is unavailable during Mar 31 - Apr 29 -in.heating_unavailable_period Mar 31 - Apr 6 Heating is unavailable during Mar 31 - Apr 6 -in.heating_unavailable_period Mar 31 - Jun 28 Heating is unavailable during Mar 31 - Jun 28 -in.heating_unavailable_period Mar 31 - Mar 31 Heating is unavailable during Mar 31 - Mar 31 -in.heating_unavailable_period Mar 4 - Apr 2 Heating is unavailable during Mar 4 - Apr 2 -in.heating_unavailable_period Mar 4 - Jun 1 Heating is unavailable during Mar 4 - Jun 1 -in.heating_unavailable_period Mar 4 - Mar 10 Heating is unavailable during Mar 4 - Mar 10 -in.heating_unavailable_period Mar 4 - Mar 17 Heating is unavailable during Mar 4 - Mar 17 -in.heating_unavailable_period Mar 4 - Mar 4 Heating is unavailable during Mar 4 - Mar 4 -in.heating_unavailable_period Mar 4 - Mar 6 Heating is unavailable during Mar 4 - Mar 6 -in.heating_unavailable_period Mar 5 - Apr 3 Heating is unavailable during Mar 5 - Apr 3 -in.heating_unavailable_period Mar 5 - Jun 2 Heating is unavailable during Mar 5 - Jun 2 -in.heating_unavailable_period Mar 5 - Mar 11 Heating is unavailable during Mar 5 - Mar 11 -in.heating_unavailable_period Mar 5 - Mar 18 Heating is unavailable during Mar 5 - Mar 18 -in.heating_unavailable_period Mar 5 - Mar 5 Heating is unavailable during Mar 5 - Mar 5 -in.heating_unavailable_period Mar 5 - Mar 7 Heating is unavailable during Mar 5 - Mar 7 -in.heating_unavailable_period Mar 6 - Apr 4 Heating is unavailable during Mar 6 - Apr 4 -in.heating_unavailable_period Mar 6 - Jun 3 Heating is unavailable during Mar 6 - Jun 3 -in.heating_unavailable_period Mar 6 - Mar 12 Heating is unavailable during Mar 6 - Mar 12 -in.heating_unavailable_period Mar 6 - Mar 19 Heating is unavailable during Mar 6 - Mar 19 -in.heating_unavailable_period Mar 6 - Mar 6 Heating is unavailable during Mar 6 - Mar 6 -in.heating_unavailable_period Mar 6 - Mar 8 Heating is unavailable during Mar 6 - Mar 8 -in.heating_unavailable_period Mar 7 - Apr 5 Heating is unavailable during Mar 7 - Apr 5 -in.heating_unavailable_period Mar 7 - Jun 4 Heating is unavailable during Mar 7 - Jun 4 -in.heating_unavailable_period Mar 7 - Mar 13 Heating is unavailable during Mar 7 - Mar 13 -in.heating_unavailable_period Mar 7 - Mar 20 Heating is unavailable during Mar 7 - Mar 20 -in.heating_unavailable_period Mar 7 - Mar 7 Heating is unavailable during Mar 7 - Mar 7 -in.heating_unavailable_period Mar 7 - Mar 9 Heating is unavailable during Mar 7 - Mar 9 -in.heating_unavailable_period Mar 8 - Apr 6 Heating is unavailable during Mar 8 - Apr 6 -in.heating_unavailable_period Mar 8 - Jun 5 Heating is unavailable during Mar 8 - Jun 5 -in.heating_unavailable_period Mar 8 - Mar 10 Heating is unavailable during Mar 8 - Mar 10 -in.heating_unavailable_period Mar 8 - Mar 14 Heating is unavailable during Mar 8 - Mar 14 -in.heating_unavailable_period Mar 8 - Mar 21 Heating is unavailable during Mar 8 - Mar 21 -in.heating_unavailable_period Mar 8 - Mar 8 Heating is unavailable during Mar 8 - Mar 8 -in.heating_unavailable_period Mar 9 - Apr 7 Heating is unavailable during Mar 9 - Apr 7 -in.heating_unavailable_period Mar 9 - Jun 6 Heating is unavailable during Mar 9 - Jun 6 -in.heating_unavailable_period Mar 9 - Mar 11 Heating is unavailable during Mar 9 - Mar 11 -in.heating_unavailable_period Mar 9 - Mar 15 Heating is unavailable during Mar 9 - Mar 15 -in.heating_unavailable_period Mar 9 - Mar 22 Heating is unavailable during Mar 9 - Mar 22 -in.heating_unavailable_period Mar 9 - Mar 9 Heating is unavailable during Mar 9 - Mar 9 -in.heating_unavailable_period May 1 - Jul 29 Heating is unavailable during May 1 - Jul 29 -in.heating_unavailable_period May 1 - May 1 Heating is unavailable during May 1 - May 1 -in.heating_unavailable_period May 1 - May 14 Heating is unavailable during May 1 - May 14 -in.heating_unavailable_period May 1 - May 3 Heating is unavailable during May 1 - May 3 -in.heating_unavailable_period May 1 - May 30 Heating is unavailable during May 1 - May 30 -in.heating_unavailable_period May 1 - May 7 Heating is unavailable during May 1 - May 7 -in.heating_unavailable_period May 10 - Aug 7 Heating is unavailable during May 10 - Aug 7 -in.heating_unavailable_period May 10 - Jun 8 Heating is unavailable during May 10 - Jun 8 -in.heating_unavailable_period May 10 - May 10 Heating is unavailable during May 10 - May 10 -in.heating_unavailable_period May 10 - May 12 Heating is unavailable during May 10 - May 12 -in.heating_unavailable_period May 10 - May 16 Heating is unavailable during May 10 - May 16 -in.heating_unavailable_period May 10 - May 23 Heating is unavailable during May 10 - May 23 -in.heating_unavailable_period May 11 - Aug 8 Heating is unavailable during May 11 - Aug 8 -in.heating_unavailable_period May 11 - Jun 9 Heating is unavailable during May 11 - Jun 9 -in.heating_unavailable_period May 11 - May 11 Heating is unavailable during May 11 - May 11 -in.heating_unavailable_period May 11 - May 13 Heating is unavailable during May 11 - May 13 -in.heating_unavailable_period May 11 - May 17 Heating is unavailable during May 11 - May 17 -in.heating_unavailable_period May 11 - May 24 Heating is unavailable during May 11 - May 24 -in.heating_unavailable_period May 12 - Aug 9 Heating is unavailable during May 12 - Aug 9 -in.heating_unavailable_period May 12 - Jun 10 Heating is unavailable during May 12 - Jun 10 -in.heating_unavailable_period May 12 - May 12 Heating is unavailable during May 12 - May 12 -in.heating_unavailable_period May 12 - May 14 Heating is unavailable during May 12 - May 14 -in.heating_unavailable_period May 12 - May 18 Heating is unavailable during May 12 - May 18 -in.heating_unavailable_period May 12 - May 25 Heating is unavailable during May 12 - May 25 -in.heating_unavailable_period May 13 - Aug 10 Heating is unavailable during May 13 - Aug 10 -in.heating_unavailable_period May 13 - Jun 11 Heating is unavailable during May 13 - Jun 11 -in.heating_unavailable_period May 13 - May 13 Heating is unavailable during May 13 - May 13 -in.heating_unavailable_period May 13 - May 15 Heating is unavailable during May 13 - May 15 -in.heating_unavailable_period May 13 - May 19 Heating is unavailable during May 13 - May 19 -in.heating_unavailable_period May 13 - May 26 Heating is unavailable during May 13 - May 26 -in.heating_unavailable_period May 14 - Aug 11 Heating is unavailable during May 14 - Aug 11 -in.heating_unavailable_period May 14 - Jun 12 Heating is unavailable during May 14 - Jun 12 -in.heating_unavailable_period May 14 - May 14 Heating is unavailable during May 14 - May 14 -in.heating_unavailable_period May 14 - May 16 Heating is unavailable during May 14 - May 16 -in.heating_unavailable_period May 14 - May 20 Heating is unavailable during May 14 - May 20 -in.heating_unavailable_period May 14 - May 27 Heating is unavailable during May 14 - May 27 -in.heating_unavailable_period May 15 - Aug 12 Heating is unavailable during May 15 - Aug 12 -in.heating_unavailable_period May 15 - Jun 13 Heating is unavailable during May 15 - Jun 13 -in.heating_unavailable_period May 15 - May 15 Heating is unavailable during May 15 - May 15 -in.heating_unavailable_period May 15 - May 17 Heating is unavailable during May 15 - May 17 -in.heating_unavailable_period May 15 - May 21 Heating is unavailable during May 15 - May 21 -in.heating_unavailable_period May 15 - May 28 Heating is unavailable during May 15 - May 28 -in.heating_unavailable_period May 16 - Aug 13 Heating is unavailable during May 16 - Aug 13 -in.heating_unavailable_period May 16 - Jun 14 Heating is unavailable during May 16 - Jun 14 -in.heating_unavailable_period May 16 - May 16 Heating is unavailable during May 16 - May 16 -in.heating_unavailable_period May 16 - May 18 Heating is unavailable during May 16 - May 18 -in.heating_unavailable_period May 16 - May 22 Heating is unavailable during May 16 - May 22 -in.heating_unavailable_period May 16 - May 29 Heating is unavailable during May 16 - May 29 -in.heating_unavailable_period May 17 - Aug 14 Heating is unavailable during May 17 - Aug 14 -in.heating_unavailable_period May 17 - Jun 15 Heating is unavailable during May 17 - Jun 15 -in.heating_unavailable_period May 17 - May 17 Heating is unavailable during May 17 - May 17 -in.heating_unavailable_period May 17 - May 19 Heating is unavailable during May 17 - May 19 -in.heating_unavailable_period May 17 - May 23 Heating is unavailable during May 17 - May 23 -in.heating_unavailable_period May 17 - May 30 Heating is unavailable during May 17 - May 30 -in.heating_unavailable_period May 18 - Aug 15 Heating is unavailable during May 18 - Aug 15 -in.heating_unavailable_period May 18 - Jun 16 Heating is unavailable during May 18 - Jun 16 -in.heating_unavailable_period May 18 - May 18 Heating is unavailable during May 18 - May 18 -in.heating_unavailable_period May 18 - May 20 Heating is unavailable during May 18 - May 20 -in.heating_unavailable_period May 18 - May 24 Heating is unavailable during May 18 - May 24 -in.heating_unavailable_period May 18 - May 31 Heating is unavailable during May 18 - May 31 -in.heating_unavailable_period May 19 - Aug 16 Heating is unavailable during May 19 - Aug 16 -in.heating_unavailable_period May 19 - Jun 1 Heating is unavailable during May 19 - Jun 1 -in.heating_unavailable_period May 19 - Jun 17 Heating is unavailable during May 19 - Jun 17 -in.heating_unavailable_period May 19 - May 19 Heating is unavailable during May 19 - May 19 -in.heating_unavailable_period May 19 - May 21 Heating is unavailable during May 19 - May 21 -in.heating_unavailable_period May 19 - May 25 Heating is unavailable during May 19 - May 25 -in.heating_unavailable_period May 2 - Jul 30 Heating is unavailable during May 2 - Jul 30 -in.heating_unavailable_period May 2 - May 15 Heating is unavailable during May 2 - May 15 -in.heating_unavailable_period May 2 - May 2 Heating is unavailable during May 2 - May 2 -in.heating_unavailable_period May 2 - May 31 Heating is unavailable during May 2 - May 31 -in.heating_unavailable_period May 2 - May 4 Heating is unavailable during May 2 - May 4 -in.heating_unavailable_period May 2 - May 8 Heating is unavailable during May 2 - May 8 -in.heating_unavailable_period May 20 - Aug 17 Heating is unavailable during May 20 - Aug 17 -in.heating_unavailable_period May 20 - Jun 18 Heating is unavailable during May 20 - Jun 18 -in.heating_unavailable_period May 20 - Jun 2 Heating is unavailable during May 20 - Jun 2 -in.heating_unavailable_period May 20 - May 20 Heating is unavailable during May 20 - May 20 -in.heating_unavailable_period May 20 - May 22 Heating is unavailable during May 20 - May 22 -in.heating_unavailable_period May 20 - May 26 Heating is unavailable during May 20 - May 26 -in.heating_unavailable_period May 21 - Aug 18 Heating is unavailable during May 21 - Aug 18 -in.heating_unavailable_period May 21 - Jun 19 Heating is unavailable during May 21 - Jun 19 -in.heating_unavailable_period May 21 - Jun 3 Heating is unavailable during May 21 - Jun 3 -in.heating_unavailable_period May 21 - May 21 Heating is unavailable during May 21 - May 21 -in.heating_unavailable_period May 21 - May 23 Heating is unavailable during May 21 - May 23 -in.heating_unavailable_period May 21 - May 27 Heating is unavailable during May 21 - May 27 -in.heating_unavailable_period May 22 - Aug 19 Heating is unavailable during May 22 - Aug 19 -in.heating_unavailable_period May 22 - Jun 20 Heating is unavailable during May 22 - Jun 20 -in.heating_unavailable_period May 22 - Jun 4 Heating is unavailable during May 22 - Jun 4 -in.heating_unavailable_period May 22 - May 22 Heating is unavailable during May 22 - May 22 -in.heating_unavailable_period May 22 - May 24 Heating is unavailable during May 22 - May 24 -in.heating_unavailable_period May 22 - May 28 Heating is unavailable during May 22 - May 28 -in.heating_unavailable_period May 23 - Aug 20 Heating is unavailable during May 23 - Aug 20 -in.heating_unavailable_period May 23 - Jun 21 Heating is unavailable during May 23 - Jun 21 -in.heating_unavailable_period May 23 - Jun 5 Heating is unavailable during May 23 - Jun 5 -in.heating_unavailable_period May 23 - May 23 Heating is unavailable during May 23 - May 23 -in.heating_unavailable_period May 23 - May 25 Heating is unavailable during May 23 - May 25 -in.heating_unavailable_period May 23 - May 29 Heating is unavailable during May 23 - May 29 -in.heating_unavailable_period May 24 - Aug 21 Heating is unavailable during May 24 - Aug 21 -in.heating_unavailable_period May 24 - Jun 22 Heating is unavailable during May 24 - Jun 22 -in.heating_unavailable_period May 24 - Jun 6 Heating is unavailable during May 24 - Jun 6 -in.heating_unavailable_period May 24 - May 24 Heating is unavailable during May 24 - May 24 -in.heating_unavailable_period May 24 - May 26 Heating is unavailable during May 24 - May 26 -in.heating_unavailable_period May 24 - May 30 Heating is unavailable during May 24 - May 30 -in.heating_unavailable_period May 25 - Aug 22 Heating is unavailable during May 25 - Aug 22 -in.heating_unavailable_period May 25 - Jun 23 Heating is unavailable during May 25 - Jun 23 -in.heating_unavailable_period May 25 - Jun 7 Heating is unavailable during May 25 - Jun 7 -in.heating_unavailable_period May 25 - May 25 Heating is unavailable during May 25 - May 25 -in.heating_unavailable_period May 25 - May 27 Heating is unavailable during May 25 - May 27 -in.heating_unavailable_period May 25 - May 31 Heating is unavailable during May 25 - May 31 -in.heating_unavailable_period May 26 - Aug 23 Heating is unavailable during May 26 - Aug 23 -in.heating_unavailable_period May 26 - Jun 1 Heating is unavailable during May 26 - Jun 1 -in.heating_unavailable_period May 26 - Jun 24 Heating is unavailable during May 26 - Jun 24 -in.heating_unavailable_period May 26 - Jun 8 Heating is unavailable during May 26 - Jun 8 -in.heating_unavailable_period May 26 - May 26 Heating is unavailable during May 26 - May 26 -in.heating_unavailable_period May 26 - May 28 Heating is unavailable during May 26 - May 28 -in.heating_unavailable_period May 27 - Aug 24 Heating is unavailable during May 27 - Aug 24 -in.heating_unavailable_period May 27 - Jun 2 Heating is unavailable during May 27 - Jun 2 -in.heating_unavailable_period May 27 - Jun 25 Heating is unavailable during May 27 - Jun 25 -in.heating_unavailable_period May 27 - Jun 9 Heating is unavailable during May 27 - Jun 9 -in.heating_unavailable_period May 27 - May 27 Heating is unavailable during May 27 - May 27 -in.heating_unavailable_period May 27 - May 29 Heating is unavailable during May 27 - May 29 -in.heating_unavailable_period May 28 - Aug 25 Heating is unavailable during May 28 - Aug 25 -in.heating_unavailable_period May 28 - Jun 10 Heating is unavailable during May 28 - Jun 10 -in.heating_unavailable_period May 28 - Jun 26 Heating is unavailable during May 28 - Jun 26 -in.heating_unavailable_period May 28 - Jun 3 Heating is unavailable during May 28 - Jun 3 -in.heating_unavailable_period May 28 - May 28 Heating is unavailable during May 28 - May 28 -in.heating_unavailable_period May 28 - May 30 Heating is unavailable during May 28 - May 30 -in.heating_unavailable_period May 29 - Aug 26 Heating is unavailable during May 29 - Aug 26 -in.heating_unavailable_period May 29 - Jun 11 Heating is unavailable during May 29 - Jun 11 -in.heating_unavailable_period May 29 - Jun 27 Heating is unavailable during May 29 - Jun 27 -in.heating_unavailable_period May 29 - Jun 4 Heating is unavailable during May 29 - Jun 4 -in.heating_unavailable_period May 29 - May 29 Heating is unavailable during May 29 - May 29 -in.heating_unavailable_period May 29 - May 31 Heating is unavailable during May 29 - May 31 -in.heating_unavailable_period May 3 - Jul 31 Heating is unavailable during May 3 - Jul 31 -in.heating_unavailable_period May 3 - Jun 1 Heating is unavailable during May 3 - Jun 1 -in.heating_unavailable_period May 3 - May 16 Heating is unavailable during May 3 - May 16 -in.heating_unavailable_period May 3 - May 3 Heating is unavailable during May 3 - May 3 -in.heating_unavailable_period May 3 - May 5 Heating is unavailable during May 3 - May 5 -in.heating_unavailable_period May 3 - May 9 Heating is unavailable during May 3 - May 9 -in.heating_unavailable_period May 30 - Aug 27 Heating is unavailable during May 30 - Aug 27 -in.heating_unavailable_period May 30 - Jun 1 Heating is unavailable during May 30 - Jun 1 -in.heating_unavailable_period May 30 - Jun 12 Heating is unavailable during May 30 - Jun 12 -in.heating_unavailable_period May 30 - Jun 28 Heating is unavailable during May 30 - Jun 28 -in.heating_unavailable_period May 30 - Jun 5 Heating is unavailable during May 30 - Jun 5 -in.heating_unavailable_period May 30 - May 30 Heating is unavailable during May 30 - May 30 -in.heating_unavailable_period May 31 - Aug 28 Heating is unavailable during May 31 - Aug 28 -in.heating_unavailable_period May 31 - Jun 13 Heating is unavailable during May 31 - Jun 13 -in.heating_unavailable_period May 31 - Jun 2 Heating is unavailable during May 31 - Jun 2 -in.heating_unavailable_period May 31 - Jun 29 Heating is unavailable during May 31 - Jun 29 -in.heating_unavailable_period May 31 - Jun 6 Heating is unavailable during May 31 - Jun 6 -in.heating_unavailable_period May 31 - May 31 Heating is unavailable during May 31 - May 31 -in.heating_unavailable_period May 4 - Aug 1 Heating is unavailable during May 4 - Aug 1 -in.heating_unavailable_period May 4 - Jun 2 Heating is unavailable during May 4 - Jun 2 -in.heating_unavailable_period May 4 - May 10 Heating is unavailable during May 4 - May 10 -in.heating_unavailable_period May 4 - May 17 Heating is unavailable during May 4 - May 17 -in.heating_unavailable_period May 4 - May 4 Heating is unavailable during May 4 - May 4 -in.heating_unavailable_period May 4 - May 6 Heating is unavailable during May 4 - May 6 -in.heating_unavailable_period May 5 - Aug 2 Heating is unavailable during May 5 - Aug 2 -in.heating_unavailable_period May 5 - Jun 3 Heating is unavailable during May 5 - Jun 3 -in.heating_unavailable_period May 5 - May 11 Heating is unavailable during May 5 - May 11 -in.heating_unavailable_period May 5 - May 18 Heating is unavailable during May 5 - May 18 -in.heating_unavailable_period May 5 - May 5 Heating is unavailable during May 5 - May 5 -in.heating_unavailable_period May 5 - May 7 Heating is unavailable during May 5 - May 7 -in.heating_unavailable_period May 6 - Aug 3 Heating is unavailable during May 6 - Aug 3 -in.heating_unavailable_period May 6 - Jun 4 Heating is unavailable during May 6 - Jun 4 -in.heating_unavailable_period May 6 - May 12 Heating is unavailable during May 6 - May 12 -in.heating_unavailable_period May 6 - May 19 Heating is unavailable during May 6 - May 19 -in.heating_unavailable_period May 6 - May 6 Heating is unavailable during May 6 - May 6 -in.heating_unavailable_period May 6 - May 8 Heating is unavailable during May 6 - May 8 -in.heating_unavailable_period May 7 - Aug 4 Heating is unavailable during May 7 - Aug 4 -in.heating_unavailable_period May 7 - Jun 5 Heating is unavailable during May 7 - Jun 5 -in.heating_unavailable_period May 7 - May 13 Heating is unavailable during May 7 - May 13 -in.heating_unavailable_period May 7 - May 20 Heating is unavailable during May 7 - May 20 -in.heating_unavailable_period May 7 - May 7 Heating is unavailable during May 7 - May 7 -in.heating_unavailable_period May 7 - May 9 Heating is unavailable during May 7 - May 9 -in.heating_unavailable_period May 8 - Aug 5 Heating is unavailable during May 8 - Aug 5 -in.heating_unavailable_period May 8 - Jun 6 Heating is unavailable during May 8 - Jun 6 -in.heating_unavailable_period May 8 - May 10 Heating is unavailable during May 8 - May 10 -in.heating_unavailable_period May 8 - May 14 Heating is unavailable during May 8 - May 14 -in.heating_unavailable_period May 8 - May 21 Heating is unavailable during May 8 - May 21 -in.heating_unavailable_period May 8 - May 8 Heating is unavailable during May 8 - May 8 -in.heating_unavailable_period May 9 - Aug 6 Heating is unavailable during May 9 - Aug 6 -in.heating_unavailable_period May 9 - Jun 7 Heating is unavailable during May 9 - Jun 7 -in.heating_unavailable_period May 9 - May 11 Heating is unavailable during May 9 - May 11 -in.heating_unavailable_period May 9 - May 15 Heating is unavailable during May 9 - May 15 -in.heating_unavailable_period May 9 - May 22 Heating is unavailable during May 9 - May 22 -in.heating_unavailable_period May 9 - May 9 Heating is unavailable during May 9 - May 9 -in.heating_unavailable_period Never Heating is unavailable during Never -in.heating_unavailable_period Nov 1 - Jan 29 Heating is unavailable during Nov 1 - Jan 29 -in.heating_unavailable_period Nov 1 - Nov 1 Heating is unavailable during Nov 1 - Nov 1 -in.heating_unavailable_period Nov 1 - Nov 14 Heating is unavailable during Nov 1 - Nov 14 -in.heating_unavailable_period Nov 1 - Nov 3 Heating is unavailable during Nov 1 - Nov 3 -in.heating_unavailable_period Nov 1 - Nov 30 Heating is unavailable during Nov 1 - Nov 30 -in.heating_unavailable_period Nov 1 - Nov 7 Heating is unavailable during Nov 1 - Nov 7 -in.heating_unavailable_period Nov 10 - Dec 9 Heating is unavailable during Nov 10 - Dec 9 -in.heating_unavailable_period Nov 10 - Feb 7 Heating is unavailable during Nov 10 - Feb 7 -in.heating_unavailable_period Nov 10 - Nov 10 Heating is unavailable during Nov 10 - Nov 10 -in.heating_unavailable_period Nov 10 - Nov 12 Heating is unavailable during Nov 10 - Nov 12 -in.heating_unavailable_period Nov 10 - Nov 16 Heating is unavailable during Nov 10 - Nov 16 -in.heating_unavailable_period Nov 10 - Nov 23 Heating is unavailable during Nov 10 - Nov 23 -in.heating_unavailable_period Nov 11 - Dec 10 Heating is unavailable during Nov 11 - Dec 10 -in.heating_unavailable_period Nov 11 - Feb 8 Heating is unavailable during Nov 11 - Feb 8 -in.heating_unavailable_period Nov 11 - Nov 11 Heating is unavailable during Nov 11 - Nov 11 -in.heating_unavailable_period Nov 11 - Nov 13 Heating is unavailable during Nov 11 - Nov 13 -in.heating_unavailable_period Nov 11 - Nov 17 Heating is unavailable during Nov 11 - Nov 17 -in.heating_unavailable_period Nov 11 - Nov 24 Heating is unavailable during Nov 11 - Nov 24 -in.heating_unavailable_period Nov 12 - Dec 11 Heating is unavailable during Nov 12 - Dec 11 -in.heating_unavailable_period Nov 12 - Feb 9 Heating is unavailable during Nov 12 - Feb 9 -in.heating_unavailable_period Nov 12 - Nov 12 Heating is unavailable during Nov 12 - Nov 12 -in.heating_unavailable_period Nov 12 - Nov 14 Heating is unavailable during Nov 12 - Nov 14 -in.heating_unavailable_period Nov 12 - Nov 18 Heating is unavailable during Nov 12 - Nov 18 -in.heating_unavailable_period Nov 12 - Nov 25 Heating is unavailable during Nov 12 - Nov 25 -in.heating_unavailable_period Nov 13 - Dec 12 Heating is unavailable during Nov 13 - Dec 12 -in.heating_unavailable_period Nov 13 - Feb 10 Heating is unavailable during Nov 13 - Feb 10 -in.heating_unavailable_period Nov 13 - Nov 13 Heating is unavailable during Nov 13 - Nov 13 -in.heating_unavailable_period Nov 13 - Nov 15 Heating is unavailable during Nov 13 - Nov 15 -in.heating_unavailable_period Nov 13 - Nov 19 Heating is unavailable during Nov 13 - Nov 19 -in.heating_unavailable_period Nov 13 - Nov 26 Heating is unavailable during Nov 13 - Nov 26 -in.heating_unavailable_period Nov 14 - Dec 13 Heating is unavailable during Nov 14 - Dec 13 -in.heating_unavailable_period Nov 14 - Feb 11 Heating is unavailable during Nov 14 - Feb 11 -in.heating_unavailable_period Nov 14 - Nov 14 Heating is unavailable during Nov 14 - Nov 14 -in.heating_unavailable_period Nov 14 - Nov 16 Heating is unavailable during Nov 14 - Nov 16 -in.heating_unavailable_period Nov 14 - Nov 20 Heating is unavailable during Nov 14 - Nov 20 -in.heating_unavailable_period Nov 14 - Nov 27 Heating is unavailable during Nov 14 - Nov 27 -in.heating_unavailable_period Nov 15 - Dec 14 Heating is unavailable during Nov 15 - Dec 14 -in.heating_unavailable_period Nov 15 - Feb 12 Heating is unavailable during Nov 15 - Feb 12 -in.heating_unavailable_period Nov 15 - Nov 15 Heating is unavailable during Nov 15 - Nov 15 -in.heating_unavailable_period Nov 15 - Nov 17 Heating is unavailable during Nov 15 - Nov 17 -in.heating_unavailable_period Nov 15 - Nov 21 Heating is unavailable during Nov 15 - Nov 21 -in.heating_unavailable_period Nov 15 - Nov 28 Heating is unavailable during Nov 15 - Nov 28 -in.heating_unavailable_period Nov 16 - Dec 15 Heating is unavailable during Nov 16 - Dec 15 -in.heating_unavailable_period Nov 16 - Feb 13 Heating is unavailable during Nov 16 - Feb 13 -in.heating_unavailable_period Nov 16 - Nov 16 Heating is unavailable during Nov 16 - Nov 16 -in.heating_unavailable_period Nov 16 - Nov 18 Heating is unavailable during Nov 16 - Nov 18 -in.heating_unavailable_period Nov 16 - Nov 22 Heating is unavailable during Nov 16 - Nov 22 -in.heating_unavailable_period Nov 16 - Nov 29 Heating is unavailable during Nov 16 - Nov 29 -in.heating_unavailable_period Nov 17 - Dec 16 Heating is unavailable during Nov 17 - Dec 16 -in.heating_unavailable_period Nov 17 - Feb 14 Heating is unavailable during Nov 17 - Feb 14 -in.heating_unavailable_period Nov 17 - Nov 17 Heating is unavailable during Nov 17 - Nov 17 -in.heating_unavailable_period Nov 17 - Nov 19 Heating is unavailable during Nov 17 - Nov 19 -in.heating_unavailable_period Nov 17 - Nov 23 Heating is unavailable during Nov 17 - Nov 23 -in.heating_unavailable_period Nov 17 - Nov 30 Heating is unavailable during Nov 17 - Nov 30 -in.heating_unavailable_period Nov 18 - Dec 1 Heating is unavailable during Nov 18 - Dec 1 -in.heating_unavailable_period Nov 18 - Dec 17 Heating is unavailable during Nov 18 - Dec 17 -in.heating_unavailable_period Nov 18 - Feb 15 Heating is unavailable during Nov 18 - Feb 15 -in.heating_unavailable_period Nov 18 - Nov 18 Heating is unavailable during Nov 18 - Nov 18 -in.heating_unavailable_period Nov 18 - Nov 20 Heating is unavailable during Nov 18 - Nov 20 -in.heating_unavailable_period Nov 18 - Nov 24 Heating is unavailable during Nov 18 - Nov 24 -in.heating_unavailable_period Nov 19 - Dec 18 Heating is unavailable during Nov 19 - Dec 18 -in.heating_unavailable_period Nov 19 - Dec 2 Heating is unavailable during Nov 19 - Dec 2 -in.heating_unavailable_period Nov 19 - Feb 16 Heating is unavailable during Nov 19 - Feb 16 -in.heating_unavailable_period Nov 19 - Nov 19 Heating is unavailable during Nov 19 - Nov 19 -in.heating_unavailable_period Nov 19 - Nov 21 Heating is unavailable during Nov 19 - Nov 21 -in.heating_unavailable_period Nov 19 - Nov 25 Heating is unavailable during Nov 19 - Nov 25 -in.heating_unavailable_period Nov 2 - Dec 1 Heating is unavailable during Nov 2 - Dec 1 -in.heating_unavailable_period Nov 2 - Jan 30 Heating is unavailable during Nov 2 - Jan 30 -in.heating_unavailable_period Nov 2 - Nov 15 Heating is unavailable during Nov 2 - Nov 15 -in.heating_unavailable_period Nov 2 - Nov 2 Heating is unavailable during Nov 2 - Nov 2 -in.heating_unavailable_period Nov 2 - Nov 4 Heating is unavailable during Nov 2 - Nov 4 -in.heating_unavailable_period Nov 2 - Nov 8 Heating is unavailable during Nov 2 - Nov 8 -in.heating_unavailable_period Nov 20 - Dec 19 Heating is unavailable during Nov 20 - Dec 19 -in.heating_unavailable_period Nov 20 - Dec 3 Heating is unavailable during Nov 20 - Dec 3 -in.heating_unavailable_period Nov 20 - Feb 17 Heating is unavailable during Nov 20 - Feb 17 -in.heating_unavailable_period Nov 20 - Nov 20 Heating is unavailable during Nov 20 - Nov 20 -in.heating_unavailable_period Nov 20 - Nov 22 Heating is unavailable during Nov 20 - Nov 22 -in.heating_unavailable_period Nov 20 - Nov 26 Heating is unavailable during Nov 20 - Nov 26 -in.heating_unavailable_period Nov 21 - Dec 20 Heating is unavailable during Nov 21 - Dec 20 -in.heating_unavailable_period Nov 21 - Dec 4 Heating is unavailable during Nov 21 - Dec 4 -in.heating_unavailable_period Nov 21 - Feb 18 Heating is unavailable during Nov 21 - Feb 18 -in.heating_unavailable_period Nov 21 - Nov 21 Heating is unavailable during Nov 21 - Nov 21 -in.heating_unavailable_period Nov 21 - Nov 23 Heating is unavailable during Nov 21 - Nov 23 -in.heating_unavailable_period Nov 21 - Nov 27 Heating is unavailable during Nov 21 - Nov 27 -in.heating_unavailable_period Nov 22 - Dec 21 Heating is unavailable during Nov 22 - Dec 21 -in.heating_unavailable_period Nov 22 - Dec 5 Heating is unavailable during Nov 22 - Dec 5 -in.heating_unavailable_period Nov 22 - Feb 19 Heating is unavailable during Nov 22 - Feb 19 -in.heating_unavailable_period Nov 22 - Nov 22 Heating is unavailable during Nov 22 - Nov 22 -in.heating_unavailable_period Nov 22 - Nov 24 Heating is unavailable during Nov 22 - Nov 24 -in.heating_unavailable_period Nov 22 - Nov 28 Heating is unavailable during Nov 22 - Nov 28 -in.heating_unavailable_period Nov 23 - Dec 22 Heating is unavailable during Nov 23 - Dec 22 -in.heating_unavailable_period Nov 23 - Dec 6 Heating is unavailable during Nov 23 - Dec 6 -in.heating_unavailable_period Nov 23 - Feb 20 Heating is unavailable during Nov 23 - Feb 20 -in.heating_unavailable_period Nov 23 - Nov 23 Heating is unavailable during Nov 23 - Nov 23 -in.heating_unavailable_period Nov 23 - Nov 25 Heating is unavailable during Nov 23 - Nov 25 -in.heating_unavailable_period Nov 23 - Nov 29 Heating is unavailable during Nov 23 - Nov 29 -in.heating_unavailable_period Nov 24 - Dec 23 Heating is unavailable during Nov 24 - Dec 23 -in.heating_unavailable_period Nov 24 - Dec 7 Heating is unavailable during Nov 24 - Dec 7 -in.heating_unavailable_period Nov 24 - Feb 21 Heating is unavailable during Nov 24 - Feb 21 -in.heating_unavailable_period Nov 24 - Nov 24 Heating is unavailable during Nov 24 - Nov 24 -in.heating_unavailable_period Nov 24 - Nov 26 Heating is unavailable during Nov 24 - Nov 26 -in.heating_unavailable_period Nov 24 - Nov 30 Heating is unavailable during Nov 24 - Nov 30 -in.heating_unavailable_period Nov 25 - Dec 1 Heating is unavailable during Nov 25 - Dec 1 -in.heating_unavailable_period Nov 25 - Dec 24 Heating is unavailable during Nov 25 - Dec 24 -in.heating_unavailable_period Nov 25 - Dec 8 Heating is unavailable during Nov 25 - Dec 8 -in.heating_unavailable_period Nov 25 - Feb 22 Heating is unavailable during Nov 25 - Feb 22 -in.heating_unavailable_period Nov 25 - Nov 25 Heating is unavailable during Nov 25 - Nov 25 -in.heating_unavailable_period Nov 25 - Nov 27 Heating is unavailable during Nov 25 - Nov 27 -in.heating_unavailable_period Nov 26 - Dec 2 Heating is unavailable during Nov 26 - Dec 2 -in.heating_unavailable_period Nov 26 - Dec 25 Heating is unavailable during Nov 26 - Dec 25 -in.heating_unavailable_period Nov 26 - Dec 9 Heating is unavailable during Nov 26 - Dec 9 -in.heating_unavailable_period Nov 26 - Feb 23 Heating is unavailable during Nov 26 - Feb 23 -in.heating_unavailable_period Nov 26 - Nov 26 Heating is unavailable during Nov 26 - Nov 26 -in.heating_unavailable_period Nov 26 - Nov 28 Heating is unavailable during Nov 26 - Nov 28 -in.heating_unavailable_period Nov 27 - Dec 10 Heating is unavailable during Nov 27 - Dec 10 -in.heating_unavailable_period Nov 27 - Dec 26 Heating is unavailable during Nov 27 - Dec 26 -in.heating_unavailable_period Nov 27 - Dec 3 Heating is unavailable during Nov 27 - Dec 3 -in.heating_unavailable_period Nov 27 - Feb 24 Heating is unavailable during Nov 27 - Feb 24 -in.heating_unavailable_period Nov 27 - Nov 27 Heating is unavailable during Nov 27 - Nov 27 -in.heating_unavailable_period Nov 27 - Nov 29 Heating is unavailable during Nov 27 - Nov 29 -in.heating_unavailable_period Nov 28 - Dec 11 Heating is unavailable during Nov 28 - Dec 11 -in.heating_unavailable_period Nov 28 - Dec 27 Heating is unavailable during Nov 28 - Dec 27 -in.heating_unavailable_period Nov 28 - Dec 4 Heating is unavailable during Nov 28 - Dec 4 -in.heating_unavailable_period Nov 28 - Feb 25 Heating is unavailable during Nov 28 - Feb 25 -in.heating_unavailable_period Nov 28 - Nov 28 Heating is unavailable during Nov 28 - Nov 28 -in.heating_unavailable_period Nov 28 - Nov 30 Heating is unavailable during Nov 28 - Nov 30 -in.heating_unavailable_period Nov 29 - Dec 1 Heating is unavailable during Nov 29 - Dec 1 -in.heating_unavailable_period Nov 29 - Dec 12 Heating is unavailable during Nov 29 - Dec 12 -in.heating_unavailable_period Nov 29 - Dec 28 Heating is unavailable during Nov 29 - Dec 28 -in.heating_unavailable_period Nov 29 - Dec 5 Heating is unavailable during Nov 29 - Dec 5 -in.heating_unavailable_period Nov 29 - Feb 26 Heating is unavailable during Nov 29 - Feb 26 -in.heating_unavailable_period Nov 29 - Nov 29 Heating is unavailable during Nov 29 - Nov 29 -in.heating_unavailable_period Nov 3 - Dec 2 Heating is unavailable during Nov 3 - Dec 2 -in.heating_unavailable_period Nov 3 - Jan 31 Heating is unavailable during Nov 3 - Jan 31 -in.heating_unavailable_period Nov 3 - Nov 16 Heating is unavailable during Nov 3 - Nov 16 -in.heating_unavailable_period Nov 3 - Nov 3 Heating is unavailable during Nov 3 - Nov 3 -in.heating_unavailable_period Nov 3 - Nov 5 Heating is unavailable during Nov 3 - Nov 5 -in.heating_unavailable_period Nov 3 - Nov 9 Heating is unavailable during Nov 3 - Nov 9 -in.heating_unavailable_period Nov 30 - Dec 13 Heating is unavailable during Nov 30 - Dec 13 -in.heating_unavailable_period Nov 30 - Dec 2 Heating is unavailable during Nov 30 - Dec 2 -in.heating_unavailable_period Nov 30 - Dec 29 Heating is unavailable during Nov 30 - Dec 29 -in.heating_unavailable_period Nov 30 - Dec 6 Heating is unavailable during Nov 30 - Dec 6 -in.heating_unavailable_period Nov 30 - Feb 27 Heating is unavailable during Nov 30 - Feb 27 -in.heating_unavailable_period Nov 30 - Nov 30 Heating is unavailable during Nov 30 - Nov 30 -in.heating_unavailable_period Nov 4 - Dec 3 Heating is unavailable during Nov 4 - Dec 3 -in.heating_unavailable_period Nov 4 - Feb 1 Heating is unavailable during Nov 4 - Feb 1 -in.heating_unavailable_period Nov 4 - Nov 10 Heating is unavailable during Nov 4 - Nov 10 -in.heating_unavailable_period Nov 4 - Nov 17 Heating is unavailable during Nov 4 - Nov 17 -in.heating_unavailable_period Nov 4 - Nov 4 Heating is unavailable during Nov 4 - Nov 4 -in.heating_unavailable_period Nov 4 - Nov 6 Heating is unavailable during Nov 4 - Nov 6 -in.heating_unavailable_period Nov 5 - Dec 4 Heating is unavailable during Nov 5 - Dec 4 -in.heating_unavailable_period Nov 5 - Feb 2 Heating is unavailable during Nov 5 - Feb 2 -in.heating_unavailable_period Nov 5 - Nov 11 Heating is unavailable during Nov 5 - Nov 11 -in.heating_unavailable_period Nov 5 - Nov 18 Heating is unavailable during Nov 5 - Nov 18 -in.heating_unavailable_period Nov 5 - Nov 5 Heating is unavailable during Nov 5 - Nov 5 -in.heating_unavailable_period Nov 5 - Nov 7 Heating is unavailable during Nov 5 - Nov 7 -in.heating_unavailable_period Nov 6 - Dec 5 Heating is unavailable during Nov 6 - Dec 5 -in.heating_unavailable_period Nov 6 - Feb 3 Heating is unavailable during Nov 6 - Feb 3 -in.heating_unavailable_period Nov 6 - Nov 12 Heating is unavailable during Nov 6 - Nov 12 -in.heating_unavailable_period Nov 6 - Nov 19 Heating is unavailable during Nov 6 - Nov 19 -in.heating_unavailable_period Nov 6 - Nov 6 Heating is unavailable during Nov 6 - Nov 6 -in.heating_unavailable_period Nov 6 - Nov 8 Heating is unavailable during Nov 6 - Nov 8 -in.heating_unavailable_period Nov 7 - Dec 6 Heating is unavailable during Nov 7 - Dec 6 -in.heating_unavailable_period Nov 7 - Feb 4 Heating is unavailable during Nov 7 - Feb 4 -in.heating_unavailable_period Nov 7 - Nov 13 Heating is unavailable during Nov 7 - Nov 13 -in.heating_unavailable_period Nov 7 - Nov 20 Heating is unavailable during Nov 7 - Nov 20 -in.heating_unavailable_period Nov 7 - Nov 7 Heating is unavailable during Nov 7 - Nov 7 -in.heating_unavailable_period Nov 7 - Nov 9 Heating is unavailable during Nov 7 - Nov 9 -in.heating_unavailable_period Nov 8 - Dec 7 Heating is unavailable during Nov 8 - Dec 7 -in.heating_unavailable_period Nov 8 - Feb 5 Heating is unavailable during Nov 8 - Feb 5 -in.heating_unavailable_period Nov 8 - Nov 10 Heating is unavailable during Nov 8 - Nov 10 -in.heating_unavailable_period Nov 8 - Nov 14 Heating is unavailable during Nov 8 - Nov 14 -in.heating_unavailable_period Nov 8 - Nov 21 Heating is unavailable during Nov 8 - Nov 21 -in.heating_unavailable_period Nov 8 - Nov 8 Heating is unavailable during Nov 8 - Nov 8 -in.heating_unavailable_period Nov 9 - Dec 8 Heating is unavailable during Nov 9 - Dec 8 -in.heating_unavailable_period Nov 9 - Feb 6 Heating is unavailable during Nov 9 - Feb 6 -in.heating_unavailable_period Nov 9 - Nov 11 Heating is unavailable during Nov 9 - Nov 11 -in.heating_unavailable_period Nov 9 - Nov 15 Heating is unavailable during Nov 9 - Nov 15 -in.heating_unavailable_period Nov 9 - Nov 22 Heating is unavailable during Nov 9 - Nov 22 -in.heating_unavailable_period Nov 9 - Nov 9 Heating is unavailable during Nov 9 - Nov 9 -in.heating_unavailable_period Oct 1 - Dec 29 Heating is unavailable during Oct 1 - Dec 29 -in.heating_unavailable_period Oct 1 - Oct 1 Heating is unavailable during Oct 1 - Oct 1 -in.heating_unavailable_period Oct 1 - Oct 14 Heating is unavailable during Oct 1 - Oct 14 -in.heating_unavailable_period Oct 1 - Oct 3 Heating is unavailable during Oct 1 - Oct 3 -in.heating_unavailable_period Oct 1 - Oct 30 Heating is unavailable during Oct 1 - Oct 30 -in.heating_unavailable_period Oct 1 - Oct 7 Heating is unavailable during Oct 1 - Oct 7 -in.heating_unavailable_period Oct 10 - Jan 7 Heating is unavailable during Oct 10 - Jan 7 -in.heating_unavailable_period Oct 10 - Nov 8 Heating is unavailable during Oct 10 - Nov 8 -in.heating_unavailable_period Oct 10 - Oct 10 Heating is unavailable during Oct 10 - Oct 10 -in.heating_unavailable_period Oct 10 - Oct 12 Heating is unavailable during Oct 10 - Oct 12 -in.heating_unavailable_period Oct 10 - Oct 16 Heating is unavailable during Oct 10 - Oct 16 -in.heating_unavailable_period Oct 10 - Oct 23 Heating is unavailable during Oct 10 - Oct 23 -in.heating_unavailable_period Oct 11 - Jan 8 Heating is unavailable during Oct 11 - Jan 8 -in.heating_unavailable_period Oct 11 - Nov 9 Heating is unavailable during Oct 11 - Nov 9 -in.heating_unavailable_period Oct 11 - Oct 11 Heating is unavailable during Oct 11 - Oct 11 -in.heating_unavailable_period Oct 11 - Oct 13 Heating is unavailable during Oct 11 - Oct 13 -in.heating_unavailable_period Oct 11 - Oct 17 Heating is unavailable during Oct 11 - Oct 17 -in.heating_unavailable_period Oct 11 - Oct 24 Heating is unavailable during Oct 11 - Oct 24 -in.heating_unavailable_period Oct 12 - Jan 9 Heating is unavailable during Oct 12 - Jan 9 -in.heating_unavailable_period Oct 12 - Nov 10 Heating is unavailable during Oct 12 - Nov 10 -in.heating_unavailable_period Oct 12 - Oct 12 Heating is unavailable during Oct 12 - Oct 12 -in.heating_unavailable_period Oct 12 - Oct 14 Heating is unavailable during Oct 12 - Oct 14 -in.heating_unavailable_period Oct 12 - Oct 18 Heating is unavailable during Oct 12 - Oct 18 -in.heating_unavailable_period Oct 12 - Oct 25 Heating is unavailable during Oct 12 - Oct 25 -in.heating_unavailable_period Oct 13 - Jan 10 Heating is unavailable during Oct 13 - Jan 10 -in.heating_unavailable_period Oct 13 - Nov 11 Heating is unavailable during Oct 13 - Nov 11 -in.heating_unavailable_period Oct 13 - Oct 13 Heating is unavailable during Oct 13 - Oct 13 -in.heating_unavailable_period Oct 13 - Oct 15 Heating is unavailable during Oct 13 - Oct 15 -in.heating_unavailable_period Oct 13 - Oct 19 Heating is unavailable during Oct 13 - Oct 19 -in.heating_unavailable_period Oct 13 - Oct 26 Heating is unavailable during Oct 13 - Oct 26 -in.heating_unavailable_period Oct 14 - Jan 11 Heating is unavailable during Oct 14 - Jan 11 -in.heating_unavailable_period Oct 14 - Nov 12 Heating is unavailable during Oct 14 - Nov 12 -in.heating_unavailable_period Oct 14 - Oct 14 Heating is unavailable during Oct 14 - Oct 14 -in.heating_unavailable_period Oct 14 - Oct 16 Heating is unavailable during Oct 14 - Oct 16 -in.heating_unavailable_period Oct 14 - Oct 20 Heating is unavailable during Oct 14 - Oct 20 -in.heating_unavailable_period Oct 14 - Oct 27 Heating is unavailable during Oct 14 - Oct 27 -in.heating_unavailable_period Oct 15 - Jan 12 Heating is unavailable during Oct 15 - Jan 12 -in.heating_unavailable_period Oct 15 - Nov 13 Heating is unavailable during Oct 15 - Nov 13 -in.heating_unavailable_period Oct 15 - Oct 15 Heating is unavailable during Oct 15 - Oct 15 -in.heating_unavailable_period Oct 15 - Oct 17 Heating is unavailable during Oct 15 - Oct 17 -in.heating_unavailable_period Oct 15 - Oct 21 Heating is unavailable during Oct 15 - Oct 21 -in.heating_unavailable_period Oct 15 - Oct 28 Heating is unavailable during Oct 15 - Oct 28 -in.heating_unavailable_period Oct 16 - Jan 13 Heating is unavailable during Oct 16 - Jan 13 -in.heating_unavailable_period Oct 16 - Nov 14 Heating is unavailable during Oct 16 - Nov 14 -in.heating_unavailable_period Oct 16 - Oct 16 Heating is unavailable during Oct 16 - Oct 16 -in.heating_unavailable_period Oct 16 - Oct 18 Heating is unavailable during Oct 16 - Oct 18 -in.heating_unavailable_period Oct 16 - Oct 22 Heating is unavailable during Oct 16 - Oct 22 -in.heating_unavailable_period Oct 16 - Oct 29 Heating is unavailable during Oct 16 - Oct 29 -in.heating_unavailable_period Oct 17 - Jan 14 Heating is unavailable during Oct 17 - Jan 14 -in.heating_unavailable_period Oct 17 - Nov 15 Heating is unavailable during Oct 17 - Nov 15 -in.heating_unavailable_period Oct 17 - Oct 17 Heating is unavailable during Oct 17 - Oct 17 -in.heating_unavailable_period Oct 17 - Oct 19 Heating is unavailable during Oct 17 - Oct 19 -in.heating_unavailable_period Oct 17 - Oct 23 Heating is unavailable during Oct 17 - Oct 23 -in.heating_unavailable_period Oct 17 - Oct 30 Heating is unavailable during Oct 17 - Oct 30 -in.heating_unavailable_period Oct 18 - Jan 15 Heating is unavailable during Oct 18 - Jan 15 -in.heating_unavailable_period Oct 18 - Nov 16 Heating is unavailable during Oct 18 - Nov 16 -in.heating_unavailable_period Oct 18 - Oct 18 Heating is unavailable during Oct 18 - Oct 18 -in.heating_unavailable_period Oct 18 - Oct 20 Heating is unavailable during Oct 18 - Oct 20 -in.heating_unavailable_period Oct 18 - Oct 24 Heating is unavailable during Oct 18 - Oct 24 -in.heating_unavailable_period Oct 18 - Oct 31 Heating is unavailable during Oct 18 - Oct 31 -in.heating_unavailable_period Oct 19 - Jan 16 Heating is unavailable during Oct 19 - Jan 16 -in.heating_unavailable_period Oct 19 - Nov 1 Heating is unavailable during Oct 19 - Nov 1 -in.heating_unavailable_period Oct 19 - Nov 17 Heating is unavailable during Oct 19 - Nov 17 -in.heating_unavailable_period Oct 19 - Oct 19 Heating is unavailable during Oct 19 - Oct 19 -in.heating_unavailable_period Oct 19 - Oct 21 Heating is unavailable during Oct 19 - Oct 21 -in.heating_unavailable_period Oct 19 - Oct 25 Heating is unavailable during Oct 19 - Oct 25 -in.heating_unavailable_period Oct 2 - Dec 30 Heating is unavailable during Oct 2 - Dec 30 -in.heating_unavailable_period Oct 2 - Oct 15 Heating is unavailable during Oct 2 - Oct 15 -in.heating_unavailable_period Oct 2 - Oct 2 Heating is unavailable during Oct 2 - Oct 2 -in.heating_unavailable_period Oct 2 - Oct 31 Heating is unavailable during Oct 2 - Oct 31 -in.heating_unavailable_period Oct 2 - Oct 4 Heating is unavailable during Oct 2 - Oct 4 -in.heating_unavailable_period Oct 2 - Oct 8 Heating is unavailable during Oct 2 - Oct 8 -in.heating_unavailable_period Oct 20 - Jan 17 Heating is unavailable during Oct 20 - Jan 17 -in.heating_unavailable_period Oct 20 - Nov 18 Heating is unavailable during Oct 20 - Nov 18 -in.heating_unavailable_period Oct 20 - Nov 2 Heating is unavailable during Oct 20 - Nov 2 -in.heating_unavailable_period Oct 20 - Oct 20 Heating is unavailable during Oct 20 - Oct 20 -in.heating_unavailable_period Oct 20 - Oct 22 Heating is unavailable during Oct 20 - Oct 22 -in.heating_unavailable_period Oct 20 - Oct 26 Heating is unavailable during Oct 20 - Oct 26 -in.heating_unavailable_period Oct 21 - Jan 18 Heating is unavailable during Oct 21 - Jan 18 -in.heating_unavailable_period Oct 21 - Nov 19 Heating is unavailable during Oct 21 - Nov 19 -in.heating_unavailable_period Oct 21 - Nov 3 Heating is unavailable during Oct 21 - Nov 3 -in.heating_unavailable_period Oct 21 - Oct 21 Heating is unavailable during Oct 21 - Oct 21 -in.heating_unavailable_period Oct 21 - Oct 23 Heating is unavailable during Oct 21 - Oct 23 -in.heating_unavailable_period Oct 21 - Oct 27 Heating is unavailable during Oct 21 - Oct 27 -in.heating_unavailable_period Oct 22 - Jan 19 Heating is unavailable during Oct 22 - Jan 19 -in.heating_unavailable_period Oct 22 - Nov 20 Heating is unavailable during Oct 22 - Nov 20 -in.heating_unavailable_period Oct 22 - Nov 4 Heating is unavailable during Oct 22 - Nov 4 -in.heating_unavailable_period Oct 22 - Oct 22 Heating is unavailable during Oct 22 - Oct 22 -in.heating_unavailable_period Oct 22 - Oct 24 Heating is unavailable during Oct 22 - Oct 24 -in.heating_unavailable_period Oct 22 - Oct 28 Heating is unavailable during Oct 22 - Oct 28 -in.heating_unavailable_period Oct 23 - Jan 20 Heating is unavailable during Oct 23 - Jan 20 -in.heating_unavailable_period Oct 23 - Nov 21 Heating is unavailable during Oct 23 - Nov 21 -in.heating_unavailable_period Oct 23 - Nov 5 Heating is unavailable during Oct 23 - Nov 5 -in.heating_unavailable_period Oct 23 - Oct 23 Heating is unavailable during Oct 23 - Oct 23 -in.heating_unavailable_period Oct 23 - Oct 25 Heating is unavailable during Oct 23 - Oct 25 -in.heating_unavailable_period Oct 23 - Oct 29 Heating is unavailable during Oct 23 - Oct 29 -in.heating_unavailable_period Oct 24 - Jan 21 Heating is unavailable during Oct 24 - Jan 21 -in.heating_unavailable_period Oct 24 - Nov 22 Heating is unavailable during Oct 24 - Nov 22 -in.heating_unavailable_period Oct 24 - Nov 6 Heating is unavailable during Oct 24 - Nov 6 -in.heating_unavailable_period Oct 24 - Oct 24 Heating is unavailable during Oct 24 - Oct 24 -in.heating_unavailable_period Oct 24 - Oct 26 Heating is unavailable during Oct 24 - Oct 26 -in.heating_unavailable_period Oct 24 - Oct 30 Heating is unavailable during Oct 24 - Oct 30 -in.heating_unavailable_period Oct 25 - Jan 22 Heating is unavailable during Oct 25 - Jan 22 -in.heating_unavailable_period Oct 25 - Nov 23 Heating is unavailable during Oct 25 - Nov 23 -in.heating_unavailable_period Oct 25 - Nov 7 Heating is unavailable during Oct 25 - Nov 7 -in.heating_unavailable_period Oct 25 - Oct 25 Heating is unavailable during Oct 25 - Oct 25 -in.heating_unavailable_period Oct 25 - Oct 27 Heating is unavailable during Oct 25 - Oct 27 -in.heating_unavailable_period Oct 25 - Oct 31 Heating is unavailable during Oct 25 - Oct 31 -in.heating_unavailable_period Oct 26 - Jan 23 Heating is unavailable during Oct 26 - Jan 23 -in.heating_unavailable_period Oct 26 - Nov 1 Heating is unavailable during Oct 26 - Nov 1 -in.heating_unavailable_period Oct 26 - Nov 24 Heating is unavailable during Oct 26 - Nov 24 -in.heating_unavailable_period Oct 26 - Nov 8 Heating is unavailable during Oct 26 - Nov 8 -in.heating_unavailable_period Oct 26 - Oct 26 Heating is unavailable during Oct 26 - Oct 26 -in.heating_unavailable_period Oct 26 - Oct 28 Heating is unavailable during Oct 26 - Oct 28 -in.heating_unavailable_period Oct 27 - Jan 24 Heating is unavailable during Oct 27 - Jan 24 -in.heating_unavailable_period Oct 27 - Nov 2 Heating is unavailable during Oct 27 - Nov 2 -in.heating_unavailable_period Oct 27 - Nov 25 Heating is unavailable during Oct 27 - Nov 25 -in.heating_unavailable_period Oct 27 - Nov 9 Heating is unavailable during Oct 27 - Nov 9 -in.heating_unavailable_period Oct 27 - Oct 27 Heating is unavailable during Oct 27 - Oct 27 -in.heating_unavailable_period Oct 27 - Oct 29 Heating is unavailable during Oct 27 - Oct 29 -in.heating_unavailable_period Oct 28 - Jan 25 Heating is unavailable during Oct 28 - Jan 25 -in.heating_unavailable_period Oct 28 - Nov 10 Heating is unavailable during Oct 28 - Nov 10 -in.heating_unavailable_period Oct 28 - Nov 26 Heating is unavailable during Oct 28 - Nov 26 -in.heating_unavailable_period Oct 28 - Nov 3 Heating is unavailable during Oct 28 - Nov 3 -in.heating_unavailable_period Oct 28 - Oct 28 Heating is unavailable during Oct 28 - Oct 28 -in.heating_unavailable_period Oct 28 - Oct 30 Heating is unavailable during Oct 28 - Oct 30 -in.heating_unavailable_period Oct 29 - Jan 26 Heating is unavailable during Oct 29 - Jan 26 -in.heating_unavailable_period Oct 29 - Nov 11 Heating is unavailable during Oct 29 - Nov 11 -in.heating_unavailable_period Oct 29 - Nov 27 Heating is unavailable during Oct 29 - Nov 27 -in.heating_unavailable_period Oct 29 - Nov 4 Heating is unavailable during Oct 29 - Nov 4 -in.heating_unavailable_period Oct 29 - Oct 29 Heating is unavailable during Oct 29 - Oct 29 -in.heating_unavailable_period Oct 29 - Oct 31 Heating is unavailable during Oct 29 - Oct 31 -in.heating_unavailable_period Oct 3 - Dec 31 Heating is unavailable during Oct 3 - Dec 31 -in.heating_unavailable_period Oct 3 - Nov 1 Heating is unavailable during Oct 3 - Nov 1 -in.heating_unavailable_period Oct 3 - Oct 16 Heating is unavailable during Oct 3 - Oct 16 -in.heating_unavailable_period Oct 3 - Oct 3 Heating is unavailable during Oct 3 - Oct 3 -in.heating_unavailable_period Oct 3 - Oct 5 Heating is unavailable during Oct 3 - Oct 5 -in.heating_unavailable_period Oct 3 - Oct 9 Heating is unavailable during Oct 3 - Oct 9 -in.heating_unavailable_period Oct 30 - Jan 27 Heating is unavailable during Oct 30 - Jan 27 -in.heating_unavailable_period Oct 30 - Nov 1 Heating is unavailable during Oct 30 - Nov 1 -in.heating_unavailable_period Oct 30 - Nov 12 Heating is unavailable during Oct 30 - Nov 12 -in.heating_unavailable_period Oct 30 - Nov 28 Heating is unavailable during Oct 30 - Nov 28 -in.heating_unavailable_period Oct 30 - Nov 5 Heating is unavailable during Oct 30 - Nov 5 -in.heating_unavailable_period Oct 30 - Oct 30 Heating is unavailable during Oct 30 - Oct 30 -in.heating_unavailable_period Oct 31 - Jan 28 Heating is unavailable during Oct 31 - Jan 28 -in.heating_unavailable_period Oct 31 - Nov 13 Heating is unavailable during Oct 31 - Nov 13 -in.heating_unavailable_period Oct 31 - Nov 2 Heating is unavailable during Oct 31 - Nov 2 -in.heating_unavailable_period Oct 31 - Nov 29 Heating is unavailable during Oct 31 - Nov 29 -in.heating_unavailable_period Oct 31 - Nov 6 Heating is unavailable during Oct 31 - Nov 6 -in.heating_unavailable_period Oct 31 - Oct 31 Heating is unavailable during Oct 31 - Oct 31 -in.heating_unavailable_period Oct 4 - Jan 1 Heating is unavailable during Oct 4 - Jan 1 -in.heating_unavailable_period Oct 4 - Nov 2 Heating is unavailable during Oct 4 - Nov 2 -in.heating_unavailable_period Oct 4 - Oct 10 Heating is unavailable during Oct 4 - Oct 10 -in.heating_unavailable_period Oct 4 - Oct 17 Heating is unavailable during Oct 4 - Oct 17 -in.heating_unavailable_period Oct 4 - Oct 4 Heating is unavailable during Oct 4 - Oct 4 -in.heating_unavailable_period Oct 4 - Oct 6 Heating is unavailable during Oct 4 - Oct 6 -in.heating_unavailable_period Oct 5 - Jan 2 Heating is unavailable during Oct 5 - Jan 2 -in.heating_unavailable_period Oct 5 - Nov 3 Heating is unavailable during Oct 5 - Nov 3 -in.heating_unavailable_period Oct 5 - Oct 11 Heating is unavailable during Oct 5 - Oct 11 -in.heating_unavailable_period Oct 5 - Oct 18 Heating is unavailable during Oct 5 - Oct 18 -in.heating_unavailable_period Oct 5 - Oct 5 Heating is unavailable during Oct 5 - Oct 5 -in.heating_unavailable_period Oct 5 - Oct 7 Heating is unavailable during Oct 5 - Oct 7 -in.heating_unavailable_period Oct 6 - Jan 3 Heating is unavailable during Oct 6 - Jan 3 -in.heating_unavailable_period Oct 6 - Nov 4 Heating is unavailable during Oct 6 - Nov 4 -in.heating_unavailable_period Oct 6 - Oct 12 Heating is unavailable during Oct 6 - Oct 12 -in.heating_unavailable_period Oct 6 - Oct 19 Heating is unavailable during Oct 6 - Oct 19 -in.heating_unavailable_period Oct 6 - Oct 6 Heating is unavailable during Oct 6 - Oct 6 -in.heating_unavailable_period Oct 6 - Oct 8 Heating is unavailable during Oct 6 - Oct 8 -in.heating_unavailable_period Oct 7 - Jan 4 Heating is unavailable during Oct 7 - Jan 4 -in.heating_unavailable_period Oct 7 - Nov 5 Heating is unavailable during Oct 7 - Nov 5 -in.heating_unavailable_period Oct 7 - Oct 13 Heating is unavailable during Oct 7 - Oct 13 -in.heating_unavailable_period Oct 7 - Oct 20 Heating is unavailable during Oct 7 - Oct 20 -in.heating_unavailable_period Oct 7 - Oct 7 Heating is unavailable during Oct 7 - Oct 7 -in.heating_unavailable_period Oct 7 - Oct 9 Heating is unavailable during Oct 7 - Oct 9 -in.heating_unavailable_period Oct 8 - Jan 5 Heating is unavailable during Oct 8 - Jan 5 -in.heating_unavailable_period Oct 8 - Nov 6 Heating is unavailable during Oct 8 - Nov 6 -in.heating_unavailable_period Oct 8 - Oct 10 Heating is unavailable during Oct 8 - Oct 10 -in.heating_unavailable_period Oct 8 - Oct 14 Heating is unavailable during Oct 8 - Oct 14 -in.heating_unavailable_period Oct 8 - Oct 21 Heating is unavailable during Oct 8 - Oct 21 -in.heating_unavailable_period Oct 8 - Oct 8 Heating is unavailable during Oct 8 - Oct 8 -in.heating_unavailable_period Oct 9 - Jan 6 Heating is unavailable during Oct 9 - Jan 6 -in.heating_unavailable_period Oct 9 - Nov 7 Heating is unavailable during Oct 9 - Nov 7 -in.heating_unavailable_period Oct 9 - Oct 11 Heating is unavailable during Oct 9 - Oct 11 -in.heating_unavailable_period Oct 9 - Oct 15 Heating is unavailable during Oct 9 - Oct 15 -in.heating_unavailable_period Oct 9 - Oct 22 Heating is unavailable during Oct 9 - Oct 22 -in.heating_unavailable_period Oct 9 - Oct 9 Heating is unavailable during Oct 9 - Oct 9 -in.heating_unavailable_period Sep 1 - Sep 1 Heating is unavailable during Sep 1 - Sep 1 -in.heating_unavailable_period Sep 1 - Sep 14 Heating is unavailable during Sep 1 - Sep 14 -in.heating_unavailable_period Sep 1 - Sep 3 Heating is unavailable during Sep 1 - Sep 3 -in.heating_unavailable_period Sep 1 - Sep 7 Heating is unavailable during Sep 1 - Sep 7 -in.heating_unavailable_period Sep 10 - Oct 9 Heating is unavailable during Sep 10 - Oct 9 -in.heating_unavailable_period Sep 10 - Sep 12 Heating is unavailable during Sep 10 - Sep 12 -in.heating_unavailable_period Sep 10 - Sep 16 Heating is unavailable during Sep 10 - Sep 16 -in.heating_unavailable_period Sep 10 - Sep 23 Heating is unavailable during Sep 10 - Sep 23 -in.heating_unavailable_period Sep 11 - Dec 9 Heating is unavailable during Sep 11 - Dec 9 -in.heating_unavailable_period Sep 11 - Oct 10 Heating is unavailable during Sep 11 - Oct 10 -in.heating_unavailable_period Sep 11 - Sep 11 Heating is unavailable during Sep 11 - Sep 11 -in.heating_unavailable_period Sep 11 - Sep 13 Heating is unavailable during Sep 11 - Sep 13 -in.heating_unavailable_period Sep 11 - Sep 17 Heating is unavailable during Sep 11 - Sep 17 -in.heating_unavailable_period Sep 11 - Sep 24 Heating is unavailable during Sep 11 - Sep 24 -in.heating_unavailable_period Sep 12 - Dec 10 Heating is unavailable during Sep 12 - Dec 10 -in.heating_unavailable_period Sep 12 - Oct 11 Heating is unavailable during Sep 12 - Oct 11 -in.heating_unavailable_period Sep 12 - Sep 12 Heating is unavailable during Sep 12 - Sep 12 -in.heating_unavailable_period Sep 12 - Sep 14 Heating is unavailable during Sep 12 - Sep 14 -in.heating_unavailable_period Sep 12 - Sep 18 Heating is unavailable during Sep 12 - Sep 18 -in.heating_unavailable_period Sep 13 - Dec 11 Heating is unavailable during Sep 13 - Dec 11 -in.heating_unavailable_period Sep 13 - Sep 13 Heating is unavailable during Sep 13 - Sep 13 -in.heating_unavailable_period Sep 13 - Sep 15 Heating is unavailable during Sep 13 - Sep 15 -in.heating_unavailable_period Sep 14 - Dec 12 Heating is unavailable during Sep 14 - Dec 12 -in.heating_unavailable_period Sep 14 - Oct 13 Heating is unavailable during Sep 14 - Oct 13 -in.heating_unavailable_period Sep 14 - Sep 14 Heating is unavailable during Sep 14 - Sep 14 -in.heating_unavailable_period Sep 14 - Sep 16 Heating is unavailable during Sep 14 - Sep 16 -in.heating_unavailable_period Sep 14 - Sep 20 Heating is unavailable during Sep 14 - Sep 20 -in.heating_unavailable_period Sep 15 - Dec 13 Heating is unavailable during Sep 15 - Dec 13 -in.heating_unavailable_period Sep 15 - Sep 15 Heating is unavailable during Sep 15 - Sep 15 -in.heating_unavailable_period Sep 15 - Sep 17 Heating is unavailable during Sep 15 - Sep 17 -in.heating_unavailable_period Sep 15 - Sep 21 Heating is unavailable during Sep 15 - Sep 21 -in.heating_unavailable_period Sep 16 - Dec 14 Heating is unavailable during Sep 16 - Dec 14 -in.heating_unavailable_period Sep 16 - Oct 15 Heating is unavailable during Sep 16 - Oct 15 -in.heating_unavailable_period Sep 16 - Sep 16 Heating is unavailable during Sep 16 - Sep 16 -in.heating_unavailable_period Sep 16 - Sep 18 Heating is unavailable during Sep 16 - Sep 18 -in.heating_unavailable_period Sep 16 - Sep 22 Heating is unavailable during Sep 16 - Sep 22 -in.heating_unavailable_period Sep 17 - Dec 15 Heating is unavailable during Sep 17 - Dec 15 -in.heating_unavailable_period Sep 17 - Sep 17 Heating is unavailable during Sep 17 - Sep 17 -in.heating_unavailable_period Sep 17 - Sep 19 Heating is unavailable during Sep 17 - Sep 19 -in.heating_unavailable_period Sep 17 - Sep 23 Heating is unavailable during Sep 17 - Sep 23 -in.heating_unavailable_period Sep 18 - Dec 16 Heating is unavailable during Sep 18 - Dec 16 -in.heating_unavailable_period Sep 18 - Sep 18 Heating is unavailable during Sep 18 - Sep 18 -in.heating_unavailable_period Sep 18 - Sep 20 Heating is unavailable during Sep 18 - Sep 20 -in.heating_unavailable_period Sep 18 - Sep 24 Heating is unavailable during Sep 18 - Sep 24 -in.heating_unavailable_period Sep 19 - Oct 18 Heating is unavailable during Sep 19 - Oct 18 -in.heating_unavailable_period Sep 19 - Oct 2 Heating is unavailable during Sep 19 - Oct 2 -in.heating_unavailable_period Sep 19 - Sep 19 Heating is unavailable during Sep 19 - Sep 19 -in.heating_unavailable_period Sep 19 - Sep 21 Heating is unavailable during Sep 19 - Sep 21 -in.heating_unavailable_period Sep 19 - Sep 25 Heating is unavailable during Sep 19 - Sep 25 -in.heating_unavailable_period Sep 2 - Sep 15 Heating is unavailable during Sep 2 - Sep 15 -in.heating_unavailable_period Sep 2 - Sep 2 Heating is unavailable during Sep 2 - Sep 2 -in.heating_unavailable_period Sep 2 - Sep 4 Heating is unavailable during Sep 2 - Sep 4 -in.heating_unavailable_period Sep 2 - Sep 8 Heating is unavailable during Sep 2 - Sep 8 -in.heating_unavailable_period Sep 20 - Oct 19 Heating is unavailable during Sep 20 - Oct 19 -in.heating_unavailable_period Sep 20 - Oct 3 Heating is unavailable during Sep 20 - Oct 3 -in.heating_unavailable_period Sep 20 - Sep 20 Heating is unavailable during Sep 20 - Sep 20 -in.heating_unavailable_period Sep 20 - Sep 22 Heating is unavailable during Sep 20 - Sep 22 -in.heating_unavailable_period Sep 20 - Sep 26 Heating is unavailable during Sep 20 - Sep 26 -in.heating_unavailable_period Sep 21 - Oct 4 Heating is unavailable during Sep 21 - Oct 4 -in.heating_unavailable_period Sep 21 - Sep 21 Heating is unavailable during Sep 21 - Sep 21 -in.heating_unavailable_period Sep 21 - Sep 23 Heating is unavailable during Sep 21 - Sep 23 -in.heating_unavailable_period Sep 21 - Sep 27 Heating is unavailable during Sep 21 - Sep 27 -in.heating_unavailable_period Sep 22 - Oct 21 Heating is unavailable during Sep 22 - Oct 21 -in.heating_unavailable_period Sep 22 - Sep 22 Heating is unavailable during Sep 22 - Sep 22 -in.heating_unavailable_period Sep 22 - Sep 24 Heating is unavailable during Sep 22 - Sep 24 -in.heating_unavailable_period Sep 23 - Dec 21 Heating is unavailable during Sep 23 - Dec 21 -in.heating_unavailable_period Sep 23 - Oct 22 Heating is unavailable during Sep 23 - Oct 22 -in.heating_unavailable_period Sep 23 - Oct 6 Heating is unavailable during Sep 23 - Oct 6 -in.heating_unavailable_period Sep 23 - Sep 23 Heating is unavailable during Sep 23 - Sep 23 -in.heating_unavailable_period Sep 23 - Sep 25 Heating is unavailable during Sep 23 - Sep 25 -in.heating_unavailable_period Sep 23 - Sep 29 Heating is unavailable during Sep 23 - Sep 29 -in.heating_unavailable_period Sep 24 - Dec 22 Heating is unavailable during Sep 24 - Dec 22 -in.heating_unavailable_period Sep 24 - Oct 23 Heating is unavailable during Sep 24 - Oct 23 -in.heating_unavailable_period Sep 24 - Oct 7 Heating is unavailable during Sep 24 - Oct 7 -in.heating_unavailable_period Sep 24 - Sep 24 Heating is unavailable during Sep 24 - Sep 24 -in.heating_unavailable_period Sep 24 - Sep 26 Heating is unavailable during Sep 24 - Sep 26 -in.heating_unavailable_period Sep 24 - Sep 30 Heating is unavailable during Sep 24 - Sep 30 -in.heating_unavailable_period Sep 25 - Dec 23 Heating is unavailable during Sep 25 - Dec 23 -in.heating_unavailable_period Sep 25 - Oct 1 Heating is unavailable during Sep 25 - Oct 1 -in.heating_unavailable_period Sep 25 - Oct 8 Heating is unavailable during Sep 25 - Oct 8 -in.heating_unavailable_period Sep 25 - Sep 25 Heating is unavailable during Sep 25 - Sep 25 -in.heating_unavailable_period Sep 25 - Sep 27 Heating is unavailable during Sep 25 - Sep 27 -in.heating_unavailable_period Sep 26 - Oct 2 Heating is unavailable during Sep 26 - Oct 2 -in.heating_unavailable_period Sep 26 - Oct 9 Heating is unavailable during Sep 26 - Oct 9 -in.heating_unavailable_period Sep 26 - Sep 26 Heating is unavailable during Sep 26 - Sep 26 -in.heating_unavailable_period Sep 26 - Sep 28 Heating is unavailable during Sep 26 - Sep 28 -in.heating_unavailable_period Sep 27 - Dec 25 Heating is unavailable during Sep 27 - Dec 25 -in.heating_unavailable_period Sep 27 - Oct 10 Heating is unavailable during Sep 27 - Oct 10 -in.heating_unavailable_period Sep 27 - Oct 26 Heating is unavailable during Sep 27 - Oct 26 -in.heating_unavailable_period Sep 27 - Oct 3 Heating is unavailable during Sep 27 - Oct 3 -in.heating_unavailable_period Sep 27 - Sep 27 Heating is unavailable during Sep 27 - Sep 27 -in.heating_unavailable_period Sep 27 - Sep 29 Heating is unavailable during Sep 27 - Sep 29 -in.heating_unavailable_period Sep 28 - Dec 26 Heating is unavailable during Sep 28 - Dec 26 -in.heating_unavailable_period Sep 28 - Oct 11 Heating is unavailable during Sep 28 - Oct 11 -in.heating_unavailable_period Sep 28 - Oct 27 Heating is unavailable during Sep 28 - Oct 27 -in.heating_unavailable_period Sep 28 - Oct 4 Heating is unavailable during Sep 28 - Oct 4 -in.heating_unavailable_period Sep 28 - Sep 28 Heating is unavailable during Sep 28 - Sep 28 -in.heating_unavailable_period Sep 28 - Sep 30 Heating is unavailable during Sep 28 - Sep 30 -in.heating_unavailable_period Sep 29 - Oct 1 Heating is unavailable during Sep 29 - Oct 1 -in.heating_unavailable_period Sep 29 - Oct 12 Heating is unavailable during Sep 29 - Oct 12 -in.heating_unavailable_period Sep 29 - Oct 28 Heating is unavailable during Sep 29 - Oct 28 -in.heating_unavailable_period Sep 29 - Oct 5 Heating is unavailable during Sep 29 - Oct 5 -in.heating_unavailable_period Sep 29 - Sep 29 Heating is unavailable during Sep 29 - Sep 29 -in.heating_unavailable_period Sep 3 - Oct 2 Heating is unavailable during Sep 3 - Oct 2 -in.heating_unavailable_period Sep 3 - Sep 16 Heating is unavailable during Sep 3 - Sep 16 -in.heating_unavailable_period Sep 3 - Sep 3 Heating is unavailable during Sep 3 - Sep 3 -in.heating_unavailable_period Sep 3 - Sep 5 Heating is unavailable during Sep 3 - Sep 5 -in.heating_unavailable_period Sep 3 - Sep 9 Heating is unavailable during Sep 3 - Sep 9 -in.heating_unavailable_period Sep 30 - Dec 28 Heating is unavailable during Sep 30 - Dec 28 -in.heating_unavailable_period Sep 30 - Oct 13 Heating is unavailable during Sep 30 - Oct 13 -in.heating_unavailable_period Sep 30 - Oct 2 Heating is unavailable during Sep 30 - Oct 2 -in.heating_unavailable_period Sep 30 - Oct 29 Heating is unavailable during Sep 30 - Oct 29 -in.heating_unavailable_period Sep 30 - Oct 6 Heating is unavailable during Sep 30 - Oct 6 -in.heating_unavailable_period Sep 30 - Sep 30 Heating is unavailable during Sep 30 - Sep 30 -in.heating_unavailable_period Sep 4 - Dec 2 Heating is unavailable during Sep 4 - Dec 2 -in.heating_unavailable_period Sep 4 - Oct 3 Heating is unavailable during Sep 4 - Oct 3 -in.heating_unavailable_period Sep 4 - Sep 10 Heating is unavailable during Sep 4 - Sep 10 -in.heating_unavailable_period Sep 4 - Sep 4 Heating is unavailable during Sep 4 - Sep 4 -in.heating_unavailable_period Sep 4 - Sep 6 Heating is unavailable during Sep 4 - Sep 6 -in.heating_unavailable_period Sep 5 - Dec 3 Heating is unavailable during Sep 5 - Dec 3 -in.heating_unavailable_period Sep 5 - Sep 18 Heating is unavailable during Sep 5 - Sep 18 -in.heating_unavailable_period Sep 5 - Sep 5 Heating is unavailable during Sep 5 - Sep 5 -in.heating_unavailable_period Sep 5 - Sep 7 Heating is unavailable during Sep 5 - Sep 7 -in.heating_unavailable_period Sep 6 - Oct 5 Heating is unavailable during Sep 6 - Oct 5 -in.heating_unavailable_period Sep 6 - Sep 12 Heating is unavailable during Sep 6 - Sep 12 -in.heating_unavailable_period Sep 6 - Sep 6 Heating is unavailable during Sep 6 - Sep 6 -in.heating_unavailable_period Sep 6 - Sep 8 Heating is unavailable during Sep 6 - Sep 8 -in.heating_unavailable_period Sep 7 - Dec 5 Heating is unavailable during Sep 7 - Dec 5 -in.heating_unavailable_period Sep 7 - Oct 6 Heating is unavailable during Sep 7 - Oct 6 -in.heating_unavailable_period Sep 7 - Sep 13 Heating is unavailable during Sep 7 - Sep 13 -in.heating_unavailable_period Sep 7 - Sep 20 Heating is unavailable during Sep 7 - Sep 20 -in.heating_unavailable_period Sep 7 - Sep 7 Heating is unavailable during Sep 7 - Sep 7 -in.heating_unavailable_period Sep 7 - Sep 9 Heating is unavailable during Sep 7 - Sep 9 -in.heating_unavailable_period Sep 8 - Dec 6 Heating is unavailable during Sep 8 - Dec 6 -in.heating_unavailable_period Sep 8 - Oct 7 Heating is unavailable during Sep 8 - Oct 7 -in.heating_unavailable_period Sep 8 - Sep 10 Heating is unavailable during Sep 8 - Sep 10 -in.heating_unavailable_period Sep 8 - Sep 14 Heating is unavailable during Sep 8 - Sep 14 -in.heating_unavailable_period Sep 8 - Sep 21 Heating is unavailable during Sep 8 - Sep 21 -in.heating_unavailable_period Sep 8 - Sep 8 Heating is unavailable during Sep 8 - Sep 8 -in.heating_unavailable_period Sep 9 - Dec 7 Heating is unavailable during Sep 9 - Dec 7 -in.heating_unavailable_period Sep 9 - Sep 11 Heating is unavailable during Sep 9 - Sep 11 -in.heating_unavailable_period Sep 9 - Sep 15 Heating is unavailable during Sep 9 - Sep 15 -in.heating_unavailable_period Sep 9 - Sep 22 Heating is unavailable during Sep 9 - Sep 22 -in.heating_unavailable_period Sep 9 - Sep 9 Heating is unavailable during Sep 9 - Sep 9 -in.holiday_lighting No Exterior Use No holiday lighting load -in.hot_water_distribution Uninsulated Uninsulated piping -in.hot_water_fixtures 100% Usage Hot water fixtures used at 100% the national average -in.hot_water_fixtures 110% Usage Hot water fixtures used at 110% the national average -in.hot_water_fixtures 120% Usage Hot water fixtures used at 120% the national average -in.hot_water_fixtures 130% Usage Hot water fixtures used at 130% the national average -in.hot_water_fixtures 140% Usage Hot water fixtures used at 140% the national average -in.hot_water_fixtures 150% Usage Hot water fixtures used at 150% the national average -in.hot_water_fixtures 160% Usage Hot water fixtures used at 160% the national average -in.hot_water_fixtures 170% Usage Hot water fixtures used at 170% the national average -in.hot_water_fixtures 180% Usage Hot water fixtures used at 180% the national average -in.hot_water_fixtures 200% Usage Hot water fixtures used at 200% the national average -in.hot_water_fixtures 50% Usage Hot water fixtures used at 50% the national average -in.hot_water_fixtures 60% Usage Hot water fixtures used at 60% the national average -in.hot_water_fixtures 70% Usage Hot water fixtures used at 70% the national average -in.hot_water_fixtures 80% Usage Hot water fixtures used at 80% the national average -in.hot_water_fixtures 90% Usage Hot water fixtures used at 90% the national average -in.household_has_tribal_persons No The houshold occupying the dwelling unit doesn't have tribal persons -in.household_has_tribal_persons Not Available Data on whether there are tribal persons within the dwelling unit are not available -in.household_has_tribal_persons Yes The houshold occupying the dwelling unit has at least one tribal person -in.hvac_cooling_autosizing_factor None Cooling airflow and capacity scaling factor auto-sizing methodology is not used -in.hvac_cooling_efficiency "AC, SEER 10" 10 SEER Central AC -in.hvac_cooling_efficiency "AC, SEER 13" 13 SEER Central AC -in.hvac_cooling_efficiency "AC, SEER 15" 15 SEER Central AC -in.hvac_cooling_efficiency "AC, SEER 8" 8 SEER Central AC -in.hvac_cooling_efficiency Ducted Heat Pump Ducted Heat Pump cooling -in.hvac_cooling_efficiency Non-Ducted Heat Pump Non-Ducted Heat Pump cooling -in.hvac_cooling_efficiency None No cooling system -in.hvac_cooling_efficiency "Room AC, EER 10.7" 10.7 EER Room AC -in.hvac_cooling_efficiency "Room AC, EER 12.0" 12.0 EER Room AC -in.hvac_cooling_efficiency "Room AC, EER 8.5" 8.5 EER Room AC -in.hvac_cooling_efficiency "Room AC, EER 9.8" 9.8 EER Room AC -in.hvac_cooling_efficiency Shared Cooling A shared system is used for cooling -in.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning 20% Conditioned Space is 20% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning 40% Conditioned Space is 40% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning 60% Conditioned Space is 60% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning 80% Conditioned Space is 80% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning <10% Conditioned Space is <10% Conditioned for cooling -in.hvac_cooling_partial_space_conditioning None Space is not conditioned -in.hvac_cooling_type Central AC Central AC is used for cooling -in.hvac_cooling_type Ducted Heat Pump Ducted heat pump is used for cooling -in.hvac_cooling_type Non-Ducted Heat Pump Non-Ducted heat pump is used for cooling -in.hvac_cooling_type None No cooling system -in.hvac_cooling_type Room AC Room AC is used for cooling -in.hvac_has_ducts No Unit does not have ducts -in.hvac_has_ducts Yes Unit has ducts -in.hvac_has_shared_system Cooling Only Shared HVAC system is used for cooling only -in.hvac_has_shared_system Heating Only Shared HVAC system is used for heating only -in.hvac_has_shared_system Heating and Cooling Shared HVAC system is used for heating and cooling -in.hvac_has_shared_system None No shared HVAC system present -in.hvac_has_zonal_electric_heating No No electric baseboard heating -in.hvac_has_zonal_electric_heating Yes Has electric baseboard heating -in.hvac_heating_autosizing_factor None Heating airflow and capacity scaling factor auto-sizing methodology is not used -in.hvac_heating_efficiency "ASHP, SEER 10, 6.2 HSPF" 10 SEER air source heat pump -in.hvac_heating_efficiency "ASHP, SEER 13, 7.7 HSPF" 13 SEER air source heat pump -in.hvac_heating_efficiency "ASHP, SEER 15, 8.5 HSPF" 15 SEER air source heat pump -in.hvac_heating_efficiency "Electric Baseboard, 100% Efficiency" Electric baseboard heating system -in.hvac_heating_efficiency "Electric Boiler, 100% AFUE" Electric boiler heating system -in.hvac_heating_efficiency "Electric Furnace, 100% AFUE" Electric furnace heating system -in.hvac_heating_efficiency "Electric Wall Furnace, 100% AFUE" Electric wall furnace heating system -in.hvac_heating_efficiency "Fuel Boiler, 76% AFUE" "Fuel Boiler, 76% AFUE" -in.hvac_heating_efficiency "Fuel Boiler, 80% AFUE" "Fuel Boiler, 80% AFUE" -in.hvac_heating_efficiency "Fuel Boiler, 90% AFUE" "Fuel Boiler, 90% AFUE" -in.hvac_heating_efficiency "Fuel Furnace, 60% AFUE" "Fuel Furnace, 60% AFUE" -in.hvac_heating_efficiency "Fuel Furnace, 76% AFUE" "Fuel Furnace, 76% AFUE" -in.hvac_heating_efficiency "Fuel Furnace, 80% AFUE" "Fuel Furnace, 80% AFUE" -in.hvac_heating_efficiency "Fuel Furnace, 92.5% AFUE" "Fuel Furnace, 92.5% AFUE" -in.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 60% AFUE" "Fuel Wall/Floor Furnace, 60% AFUE" -in.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 68% AFUE" "Fuel Wall/Floor Furnace, 68% AFUE" -in.hvac_heating_efficiency "MSHP, SEER 14.5, 8.2 HSPF" 14.5 SEER mini split heat pump -in.hvac_heating_efficiency "MSHP, SEER 29.3, 14 HSPF" 29.3 SEER mini split heat pump -in.hvac_heating_efficiency None No heating system -in.hvac_heating_efficiency Shared Heating A shared system is used for heating -in.hvac_heating_type Ducted Heat Pump Heat pump system with ducts -in.hvac_heating_type Ducted Heating Non-heat pump heating system with ducts is used for heating -in.hvac_heating_type Non-Ducted Heat Pump Heat pump system with no ducts is used for heating -in.hvac_heating_type Non-Ducted Heating Non-heat pump heating system with no ducts is used for heating -in.hvac_heating_type None No heating system -in.hvac_heating_type_and_fuel Electricity ASHP Electric air source heat pump heating system -in.hvac_heating_type_and_fuel Electricity Baseboard Electric baseboard heating system -in.hvac_heating_type_and_fuel Electricity Electric Boiler Electric boiler heating system -in.hvac_heating_type_and_fuel Electricity Electric Furnace Electric furnace heating system -in.hvac_heating_type_and_fuel Electricity Electric Wall Furnace Electric wall furnace heating system -in.hvac_heating_type_and_fuel Electricity MSHP Electric mini split heat pump heating system -in.hvac_heating_type_and_fuel Electricity Shared Heating Electric shared heating system -in.hvac_heating_type_and_fuel Fuel Oil Fuel Boiler Fuel oil boiler heating system -in.hvac_heating_type_and_fuel Fuel Oil Fuel Furnace Fuel oil furnace heating system -in.hvac_heating_type_and_fuel Fuel Oil Fuel Wall/Floor Furnace Fuel oil wall/floor furnace heating system -in.hvac_heating_type_and_fuel Fuel Oil Shared Heating Fuel oil shared heating system -in.hvac_heating_type_and_fuel Natural Gas Fuel Boiler Natural gas boiler heating system -in.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Natural gas furnace heating system -in.hvac_heating_type_and_fuel Natural Gas Fuel Wall/Floor Furnace Natural gas wall/floor furnance heating system -in.hvac_heating_type_and_fuel Natural Gas Shared Heating Natural gas shared heating system -in.hvac_heating_type_and_fuel None No heating system -in.hvac_heating_type_and_fuel Other Fuel Fuel Boiler Other fuel (wood) boiler heating system -in.hvac_heating_type_and_fuel Other Fuel Fuel Furnace Other fuel (wood) furnace heating system -in.hvac_heating_type_and_fuel Other Fuel Fuel Wall/Floor Furnace Other fuel (wood) wall/floor furnace heating system -in.hvac_heating_type_and_fuel Other Fuel Shared Heating Other fuel (wood) shared heating system -in.hvac_heating_type_and_fuel Propane Fuel Boiler Propane boiler heating system -in.hvac_heating_type_and_fuel Propane Fuel Furnace Propane furnace heating system -in.hvac_heating_type_and_fuel Propane Fuel Wall/Floor Furnace Propane wall/floor furnace heating system -in.hvac_heating_type_and_fuel Propane Shared Heating Propane shared heating system -in.hvac_heating_type_and_fuel Void Not applicable for this variable -in.hvac_secondary_heating_efficiency "Fuel Boiler, 76% AFUE" "The secondary heating system is Fuel Boiler, 76% AFUE" -in.hvac_secondary_heating_efficiency "Fuel Boiler, 80% AFUE" "The secondary heating system is Fuel Boiler, 80% AFUE" -in.hvac_secondary_heating_efficiency "Fuel Boiler, 90% AFUE" "The secondary heating system is Fuel Boiler, 90% AFUE" -in.hvac_secondary_heating_efficiency "Fuel Furnace, 80% AFUE" "The secondary heating system is Fuel Furnace, 80% AFUE" -in.hvac_secondary_heating_efficiency "Fuel Furnace, 92.5% AFUE" "The secondary heating system is Fuel Furnace, 92.5% AFUE" -in.hvac_secondary_heating_efficiency None No secondary heating system -in.hvac_secondary_heating_fuel Fuel Oil The secondary heating system uses Fuel Oil as fuel -in.hvac_secondary_heating_fuel Natural Gas The secondary heating system uses Natural Gas as fuel -in.hvac_secondary_heating_fuel None No secondary heating system -in.hvac_secondary_heating_fuel Wood The secondary heating system uses Wood as fuel -in.hvac_secondary_heating_partial_space_conditioning 0% No space has secondary heating -in.hvac_secondary_heating_partial_space_conditioning 10% 10% space has secondary heating -in.hvac_secondary_heating_partial_space_conditioning 20% 20% space has secondary heating -in.hvac_secondary_heating_partial_space_conditioning 30% 30% space has secondary heating -in.hvac_secondary_heating_partial_space_conditioning 40% 40% space has secondary heating -in.hvac_secondary_heating_partial_space_conditioning 49% 49% space has secondary heating -in.hvac_secondary_heating_type Ducted Heating Secondary heating system is ducted -in.hvac_secondary_heating_type Non-Ducted Heating Secondary heating system is non-ducted -in.hvac_secondary_heating_type None No secondary heating system -in.hvac_shared_efficiencies "Boiler Baseboards Heating Only, Electricity" Shared electric boiler baseboard heating system -in.hvac_shared_efficiencies "Boiler Baseboards Heating Only, Fuel" Shared fuel boiler baseboard heating system -in.hvac_shared_efficiencies Fan Coil Cooling Only Central chiller -in.hvac_shared_efficiencies "Fan Coil Heating and Cooling, Electricity" Central chiller and central electric boiler -in.hvac_shared_efficiencies "Fan Coil Heating and Cooling, Fuel" Central chiller and central fuel boiler -in.hvac_shared_efficiencies None No shared HVAC system present -in.hvac_system_is_faulted No Does not model HVAC installation faults -in.hvac_system_is_scaled None Does not model HVAC installation faults -in.hvac_system_single_speed_ac_airflow None Does not model HVAC installation faults -in.hvac_system_single_speed_ac_charge None Does not model HVAC installation faults -in.hvac_system_single_speed_ashp_airflow None Does not model HVAC installation faults -in.hvac_system_single_speed_ashp_charge None Does not model HVAC installation faults -in.income 10000-14999 Income level of $10000-$14999 -in.income 100000-119999 Income level of $100000-$119999 -in.income 120000-139999 Income level of $120000-$139999 -in.income 140000-159999 Income level of $140000-$159999 -in.income 15000-19999 Income level of $15000-$19999 -in.income 160000-179999 Income level of $160000-$179999 -in.income 180000-199999 Income level of $180000-$199999 -in.income 20000-24999 Income level of $20000-$24999 -in.income 200000+ Income level of $200000+ -in.income 25000-29999 Income level of $25000-$29999 -in.income 30000-34999 Income level of $30000-$34999 -in.income 35000-39999 Income level of $35000-$39999 -in.income 40000-44999 Income level of $40000-$44999 -in.income 45000-49999 Income level of $45000-$49999 -in.income 50000-59999 Income level of $50000-$59999 -in.income 60000-69999 Income level of $60000-$69999 -in.income 70000-79999 Income level of $70000-$79999 -in.income 80000-99999 Income level of $80000-$99999 -in.income <10000 Income level of <$10000 -in.income Not Available Income level is Not Available -in.income_recs_2015 100000-119999 Income level of $100000-$119999 according to RECS 2015 -in.income_recs_2015 120000-139999 Income level of $120000-$139999 according to RECS 2015 -in.income_recs_2015 140000+ Income level of $140000+ according to RECS 2015 -in.income_recs_2015 20000-39999 Income level of $20000-$39999 according to RECS 2015 -in.income_recs_2015 40000-59999 Income level of $40000-$59999 according to RECS 2015 -in.income_recs_2015 60000-79999 Income level of $60000-$79999 according to RECS 2015 -in.income_recs_2015 80000-99999 Income level of $80000-$99999 according to RECS 2015 -in.income_recs_2015 <20000 Income level of <$20000 according to RECS 2015 -in.income_recs_2015 Not Available Income level is Not Available according to RECS 2015 -in.income_recs_2020 100000-149999 Income level of $100000-$149999 according to RECS 2020 -in.income_recs_2020 150000+ Income level of $150000+ according to RECS 2020 -in.income_recs_2020 20000-39999 Income level of $20000-$39999 according to RECS 2020 -in.income_recs_2020 40000-59999 Income level of $40000-$59999 according to RECS 2020 -in.income_recs_2020 60000-99999 Income level of $60000-$99999 according to RECS 2020 -in.income_recs_2020 <20000 Income level of <$20000 according to RECS 2020 -in.income_recs_2020 Not Available Income level is Not Available according to RECS 2020 -in.infiltration 1 ACH50 Infiltration rate of 1 ACH50 in living and garage spaces -in.infiltration 10 ACH50 Infiltration rate of 10 ACH50 in living and garage spaces -in.infiltration 15 ACH50 Infiltration rate of 15 ACH50 in living and garage spaces -in.infiltration 2 ACH50 Infiltration rate of 2 ACH50 in living and garage spaces -in.infiltration 20 ACH50 Infiltration rate of 20 ACH50 in living and garage spaces -in.infiltration 25 ACH50 Infiltration rate of 25 ACH50 in living and garage spaces -in.infiltration 3 ACH50 Infiltration rate of 3 ACH50 in living and garage spaces -in.infiltration 30 ACH50 Infiltration rate of 30 ACH50 in living and garage spaces -in.infiltration 4 ACH50 Infiltration rate of 4 ACH50 in living and garage spaces -in.infiltration 40 ACH50 Infiltration rate of 40 ACH50 in living and garage spaces -in.infiltration 5 ACH50 Infiltration rate of 5 ACH50 in living and garage spaces -in.infiltration 50 ACH50 Infiltration rate of 50 ACH50 in living and garage spaces -in.infiltration 6 ACH50 Infiltration rate of 6 ACH50 in living and garage spaces -in.infiltration 7 ACH50 Infiltration rate of 7 ACH50 in living and garage spaces -in.infiltration 8 ACH50 Infiltration rate of 8 ACH50 in living and garage spaces -in.insulation_ceiling None No insulation in ceiling -in.insulation_ceiling R-13 R-13 ceiling insulation -in.insulation_ceiling R-19 R-19 ceiling insulation -in.insulation_ceiling R-30 R-30 ceiling insulation -in.insulation_ceiling R-38 R-38 ceiling insulation -in.insulation_ceiling R-49 R-49 ceiling insulation -in.insulation_ceiling R-7 R-7 ceiling insulation -in.insulation_ceiling Uninsulated Uninsulated ceiling -in.insulation_floor Ceiling R-13 R-13 floor cavity insulation -in.insulation_floor Ceiling R-19 R-19 floor cavity insulation -in.insulation_floor Ceiling R-30 R-30 floor cavity insualtion -in.insulation_floor None Floor cavity insulation is not applicable -in.insulation_floor Uninsulated Uninsulated floor cavity -in.insulation_foundation_wall None Foundation wall insulation is not applicable -in.insulation_foundation_wall Uninsulated Uninsulated foundation walls -in.insulation_foundation_wall "Wall R-10, Exterior" R-10 rigid foundation wall insulation -in.insulation_foundation_wall "Wall R-15, Exterior" R-15 rigid foundation wall insulation -in.insulation_foundation_wall "Wall R-5, Exterior" R-5 rigid foundation wall insulation -in.insulation_rim_joist None Rim joist insulation is not applicable -in.insulation_rim_joist "R-10, Exterior" R-10 exterior rim joist insulation -in.insulation_rim_joist "R-15, Exterior" R-15 exterior rim joist insulation -in.insulation_rim_joist "R-5, Exterior" R-5 exterior rim joist insulation -in.insulation_rim_joist Uninsulated Uninsulated rim joist -in.insulation_roof "Finished, R-13" R-13 finished roof insulation -in.insulation_roof "Finished, R-19" R-19 finished roof insulation -in.insulation_roof "Finished, R-30" R-30 finished roof insulation -in.insulation_roof "Finished, R-38" R-38 finished roof insulation -in.insulation_roof "Finished, R-49" R-49 finished roof insulation -in.insulation_roof "Finished, R-7" R-7 finished roof insulation -in.insulation_roof "Finished, Uninsulated" Uninsulated finished roof -in.insulation_roof "Unfinished, Uninsulated" No finished roof -in.insulation_slab "2ft R10 Perimeter, Vertical" R-10 rigid perimeter insulation extending 2ft below the top of the slab -in.insulation_slab "2ft R10 Under, Horizontal" R-10 rigid insulation beneath slab -in.insulation_slab "2ft R5 Perimeter, Vertical" R-5 rigid perimeter insulation extending 2ft below the top of the slab -in.insulation_slab "2ft R5 Under, Horizontal" R-5 rigid insulation beneath slab -in.insulation_slab None Slab insulation not applicable -in.insulation_slab Uninsulated Uninsulated slab -in.insulation_wall "Brick, 12-in, 3-wythe, R-11" 12 inch thick brick wall with R-11 insulation -in.insulation_wall "Brick, 12-in, 3-wythe, R-15" 12 inch thick brick wall with R-15 insulation -in.insulation_wall "Brick, 12-in, 3-wythe, R-19" 12 inch thick brick wall with R-19 insulation -in.insulation_wall "Brick, 12-in, 3-wythe, R-7" 12 inch thick brick wall with R-7 insulation -in.insulation_wall "Brick, 12-in, 3-wythe, Uninsulated" "12 inch thick brick wall, uninsulated" -in.insulation_wall "CMU, 6-in Hollow, R-11" 6 inch thick hollow CMU wall with R-11 insulation -in.insulation_wall "CMU, 6-in Hollow, R-15" 6 inch thick hollow CMU wall with R-15 insulation -in.insulation_wall "CMU, 6-in Hollow, R-19" 6 inch thick hollow CMU wall with R-19 insulation -in.insulation_wall "CMU, 6-in Hollow, R-7" 6 inch thick hollow CMU wall with R-7 insulation -in.insulation_wall "CMU, 6-in Hollow, Uninsulated" "6 inch thick hollow CMU wall, uninsulated" -in.insulation_wall "Wood Stud, R-11" Wood frame walls with R-11 insulation -in.insulation_wall "Wood Stud, R-15" Wood frame walls with R-15 insulation -in.insulation_wall "Wood Stud, R-19" Wood frame walls with R-19 insulation -in.insulation_wall "Wood Stud, R-7" Wood frame walls with R-7 insulation -in.insulation_wall "Wood Stud, Uninsulated" "Wood frame walls, uninsulated" -in.interior_shading "Summer = 0.7, Winter = 0.85" Window shading that reduces summer solar gains by 30% and winter solar gains by 15% -in.iso_rto_region CAISO California ISO -in.iso_rto_region ERCOT Electric Reliability Council of Texas -in.iso_rto_region MISO Midcontinent ISO -in.iso_rto_region NEISO New England ISO -in.iso_rto_region NYISO New York ISO -in.iso_rto_region None No ISO/RTO -in.iso_rto_region PJM Pennsylvania-New Jersey-Maryland RTO -in.iso_rto_region SPP Southwest Power Pool RTO -in.lighting 100% CFL All lighting is compact flourescent lighting -in.lighting 100% Incandescent All lighting is incandescent -in.lighting 100% LED All lighting is LED -in.lighting_interior_use 100% Usage Interior lighting usage at 100% the national average -in.lighting_other_use 100% Usage Exterior and garage lighting usage at 100% the national average -in.location_region CR02 ResStock custom region 2 -in.location_region CR03 ResStock custom region 3 -in.location_region CR04 ResStock custom region 4 -in.location_region CR05 ResStock custom region 5 -in.location_region CR06 ResStock custom region 6 -in.location_region CR07 ResStock custom region 7 -in.location_region CR08 ResStock custom region 8 -in.location_region CR09 ResStock custom region 9 -in.location_region CR10 ResStock custom region 10 -in.location_region CR11 ResStock custom region 11 -in.location_region CRAK ResStock custom region AK -in.location_region CRHI ResStock custom region HI -in.mechanical_ventilation None No mechanical ventilation -in.metropolitan_and_micropolitan_statistical_area "Aberdeen, SD MicroSA" "The dwelling unit is located in Aberdeen, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Aberdeen, WA MicroSA" "The dwelling unit is located in Aberdeen, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Abilene, TX MSA" "The dwelling unit is located in Abilene, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Ada, OK MicroSA" "The dwelling unit is located in Ada, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Adrian, MI MicroSA" "The dwelling unit is located in Adrian, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Akron, OH MSA" "The dwelling unit is located in Akron, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Alamogordo, NM MicroSA" "The dwelling unit is located in Alamogordo, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Albany, GA MSA" "The dwelling unit is located in Albany, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Albany, OR MSA" "The dwelling unit is located in Albany, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Albany-Schenectady-Troy, NY MSA" "The dwelling unit is located in Albany-Schenectady-Troy, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Albemarle, NC MicroSA" "The dwelling unit is located in Albemarle, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Albert Lea, MN MicroSA" "The dwelling unit is located in Albert Lea, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Albertville, AL MicroSA" "The dwelling unit is located in Albertville, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Albuquerque, NM MSA" "The dwelling unit is located in Albuquerque, NM MSA" -in.metropolitan_and_micropolitan_statistical_area "Alexandria, LA MSA" "The dwelling unit is located in Alexandria, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Alexandria, MN MicroSA" "The dwelling unit is located in Alexandria, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Alice, TX MicroSA" "The dwelling unit is located in Alice, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Allentown-Bethlehem-Easton, PA-NJ MSA" "The dwelling unit is located in Allentown-Bethlehem-Easton, PA-NJ MSA" -in.metropolitan_and_micropolitan_statistical_area "Alma, MI MicroSA" "The dwelling unit is located in Alma, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Alpena, MI MicroSA" "The dwelling unit is located in Alpena, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Altoona, PA MSA" "The dwelling unit is located in Altoona, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Altus, OK MicroSA" "The dwelling unit is located in Altus, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Amarillo, TX MSA" "The dwelling unit is located in Amarillo, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Americus, GA MicroSA" "The dwelling unit is located in Americus, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ames, IA MSA" "The dwelling unit is located in Ames, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Amsterdam, NY MicroSA" "The dwelling unit is located in Amsterdam, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Anchorage, AK MSA" "The dwelling unit is located in Anchorage, AK MSA" -in.metropolitan_and_micropolitan_statistical_area "Andrews, TX MicroSA" "The dwelling unit is located in Andrews, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Angola, IN MicroSA" "The dwelling unit is located in Angola, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ann Arbor, MI MSA" "The dwelling unit is located in Ann Arbor, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Anniston-Oxford-Jacksonville, AL MSA" "The dwelling unit is located in Anniston-Oxford-Jacksonville, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Appleton, WI MSA" "The dwelling unit is located in Appleton, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Arcadia, FL MicroSA" "The dwelling unit is located in Arcadia, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ardmore, OK MicroSA" "The dwelling unit is located in Ardmore, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Arkadelphia, AR MicroSA" "The dwelling unit is located in Arkadelphia, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Arkansas City-Winfield, KS MicroSA" "The dwelling unit is located in Arkansas City-Winfield, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Asheville, NC MSA" "The dwelling unit is located in Asheville, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Ashland, OH MicroSA" "The dwelling unit is located in Ashland, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ashtabula, OH MicroSA" "The dwelling unit is located in Ashtabula, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Astoria, OR MicroSA" "The dwelling unit is located in Astoria, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Atchison, KS MicroSA" "The dwelling unit is located in Atchison, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Athens, OH MicroSA" "The dwelling unit is located in Athens, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Athens, TN MicroSA" "The dwelling unit is located in Athens, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Athens, TX MicroSA" "The dwelling unit is located in Athens, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Athens-Clarke County, GA MSA" "The dwelling unit is located in Athens-Clarke County, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Atlanta-Sandy Springs-Roswell, GA MSA" "The dwelling unit is located in Atlanta-Sandy Springs-Roswell, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Atlantic City-Hammonton, NJ MSA" "The dwelling unit is located in Atlantic City-Hammonton, NJ MSA" -in.metropolitan_and_micropolitan_statistical_area "Auburn, IN MicroSA" "The dwelling unit is located in Auburn, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Auburn, NY MicroSA" "The dwelling unit is located in Auburn, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Auburn-Opelika, AL MSA" "The dwelling unit is located in Auburn-Opelika, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Augusta-Richmond County, GA-SC MSA" "The dwelling unit is located in Augusta-Richmond County, GA-SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Augusta-Waterville, ME MicroSA" "The dwelling unit is located in Augusta-Waterville, ME MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Austin, MN MicroSA" "The dwelling unit is located in Austin, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Austin-Round Rock, TX MSA" "The dwelling unit is located in Austin-Round Rock, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Bainbridge, GA MicroSA" "The dwelling unit is located in Bainbridge, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bakersfield, CA MSA" "The dwelling unit is located in Bakersfield, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Baltimore-Columbia-Towson, MD MSA" "The dwelling unit is located in Baltimore-Columbia-Towson, MD MSA" -in.metropolitan_and_micropolitan_statistical_area "Bangor, ME MSA" "The dwelling unit is located in Bangor, ME MSA" -in.metropolitan_and_micropolitan_statistical_area "Baraboo, WI MicroSA" "The dwelling unit is located in Baraboo, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bardstown, KY MicroSA" "The dwelling unit is located in Bardstown, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Barnstable Town, MA MSA" "The dwelling unit is located in Barnstable Town, MA MSA" -in.metropolitan_and_micropolitan_statistical_area "Barre, VT MicroSA" "The dwelling unit is located in Barre, VT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bartlesville, OK MicroSA" "The dwelling unit is located in Bartlesville, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bastrop, LA MicroSA" "The dwelling unit is located in Bastrop, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Batavia, NY MicroSA" "The dwelling unit is located in Batavia, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Batesville, AR MicroSA" "The dwelling unit is located in Batesville, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Baton Rouge, LA MSA" "The dwelling unit is located in Baton Rouge, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Battle Creek, MI MSA" "The dwelling unit is located in Battle Creek, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Bay City, MI MSA" "The dwelling unit is located in Bay City, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Bay City, TX MicroSA" "The dwelling unit is located in Bay City, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Beatrice, NE MicroSA" "The dwelling unit is located in Beatrice, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Beaumont-Port Arthur, TX MSA" "The dwelling unit is located in Beaumont-Port Arthur, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Beaver Dam, WI MicroSA" "The dwelling unit is located in Beaver Dam, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Beckley, WV MSA" "The dwelling unit is located in Beckley, WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Bedford, IN MicroSA" "The dwelling unit is located in Bedford, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Beeville, TX MicroSA" "The dwelling unit is located in Beeville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bellefontaine, OH MicroSA" "The dwelling unit is located in Bellefontaine, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bellingham, WA MSA" "The dwelling unit is located in Bellingham, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Bemidji, MN MicroSA" "The dwelling unit is located in Bemidji, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bend-Redmond, OR MSA" "The dwelling unit is located in Bend-Redmond, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Bennettsville, SC MicroSA" "The dwelling unit is located in Bennettsville, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bennington, VT MicroSA" "The dwelling unit is located in Bennington, VT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Berlin, NH-VT MicroSA" "The dwelling unit is located in Berlin, NH-VT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Big Rapids, MI MicroSA" "The dwelling unit is located in Big Rapids, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Big Spring, TX MicroSA" "The dwelling unit is located in Big Spring, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Big Stone Gap, VA MicroSA" "The dwelling unit is located in Big Stone Gap, VA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Billings, MT MSA" "The dwelling unit is located in Billings, MT MSA" -in.metropolitan_and_micropolitan_statistical_area "Binghamton, NY MSA" "The dwelling unit is located in Binghamton, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Birmingham-Hoover, AL MSA" "The dwelling unit is located in Birmingham-Hoover, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Bismarck, ND MSA" "The dwelling unit is located in Bismarck, ND MSA" -in.metropolitan_and_micropolitan_statistical_area "Blackfoot, ID MicroSA" "The dwelling unit is located in Blackfoot, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Blacksburg-Christiansburg-Radford, VA MSA" "The dwelling unit is located in Blacksburg-Christiansburg-Radford, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Bloomington, IL MSA" "The dwelling unit is located in Bloomington, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Bloomington, IN MSA" "The dwelling unit is located in Bloomington, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Bloomsburg-Berwick, PA MSA" "The dwelling unit is located in Bloomsburg-Berwick, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Bluefield, WV-VA MicroSA" "The dwelling unit is located in Bluefield, WV-VA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Blytheville, AR MicroSA" "The dwelling unit is located in Blytheville, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bogalusa, LA MicroSA" "The dwelling unit is located in Bogalusa, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Boise City, ID MSA" "The dwelling unit is located in Boise City, ID MSA" -in.metropolitan_and_micropolitan_statistical_area "Boone, IA MicroSA" "The dwelling unit is located in Boone, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Boone, NC MicroSA" "The dwelling unit is located in Boone, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Borger, TX MicroSA" "The dwelling unit is located in Borger, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Boston-Cambridge-Newton, MA-NH MSA" "The dwelling unit is located in Boston-Cambridge-Newton, MA-NH MSA" -in.metropolitan_and_micropolitan_statistical_area "Boulder, CO MSA" "The dwelling unit is located in Boulder, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Bowling Green, KY MSA" "The dwelling unit is located in Bowling Green, KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Bozeman, MT MicroSA" "The dwelling unit is located in Bozeman, MT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bradford, PA MicroSA" "The dwelling unit is located in Bradford, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brainerd, MN MicroSA" "The dwelling unit is located in Brainerd, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Branson, MO MicroSA" "The dwelling unit is located in Branson, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Breckenridge, CO MicroSA" "The dwelling unit is located in Breckenridge, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bremerton-Silverdale, WA MSA" "The dwelling unit is located in Bremerton-Silverdale, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Brenham, TX MicroSA" "The dwelling unit is located in Brenham, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brevard, NC MicroSA" "The dwelling unit is located in Brevard, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Bridgeport-Stamford-Norwalk, CT MSA" "The dwelling unit is located in Bridgeport-Stamford-Norwalk, CT MSA" -in.metropolitan_and_micropolitan_statistical_area "Brookhaven, MS MicroSA" "The dwelling unit is located in Brookhaven, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brookings, OR MicroSA" "The dwelling unit is located in Brookings, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brookings, SD MicroSA" "The dwelling unit is located in Brookings, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brownsville-Harlingen, TX MSA" "The dwelling unit is located in Brownsville-Harlingen, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Brownwood, TX MicroSA" "The dwelling unit is located in Brownwood, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Brunswick, GA MSA" "The dwelling unit is located in Brunswick, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Bucyrus, OH MicroSA" "The dwelling unit is located in Bucyrus, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Buffalo-Cheektowaga-Niagara Falls, NY MSA" "The dwelling unit is located in Buffalo-Cheektowaga-Niagara Falls, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Burley, ID MicroSA" "The dwelling unit is located in Burley, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Burlington, IA-IL MicroSA" "The dwelling unit is located in Burlington, IA-IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Burlington, NC MSA" "The dwelling unit is located in Burlington, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Burlington-South Burlington, VT MSA" "The dwelling unit is located in Burlington-South Burlington, VT MSA" -in.metropolitan_and_micropolitan_statistical_area "Butte-Silver Bow, MT MicroSA" "The dwelling unit is located in Butte-Silver Bow, MT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cadillac, MI MicroSA" "The dwelling unit is located in Cadillac, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Calhoun, GA MicroSA" "The dwelling unit is located in Calhoun, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "California-Lexington Park, MD MSA" "The dwelling unit is located in California-Lexington Park, MD MSA" -in.metropolitan_and_micropolitan_statistical_area "Cambridge, MD MicroSA" "The dwelling unit is located in Cambridge, MD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cambridge, OH MicroSA" "The dwelling unit is located in Cambridge, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Camden, AR MicroSA" "The dwelling unit is located in Camden, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Campbellsville, KY MicroSA" "The dwelling unit is located in Campbellsville, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Canon City, CO MicroSA" "The dwelling unit is located in Canon City, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Canton, IL MicroSA" "The dwelling unit is located in Canton, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Canton-Massillon, OH MSA" "The dwelling unit is located in Canton-Massillon, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Cape Coral-Fort Myers, FL MSA" "The dwelling unit is located in Cape Coral-Fort Myers, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Cape Girardeau, MO-IL MSA" "The dwelling unit is located in Cape Girardeau, MO-IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Carbondale-Marion, IL MSA" "The dwelling unit is located in Carbondale-Marion, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Carlsbad-Artesia, NM MicroSA" "The dwelling unit is located in Carlsbad-Artesia, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Carson City, NV MSA" "The dwelling unit is located in Carson City, NV MSA" -in.metropolitan_and_micropolitan_statistical_area "Casper, WY MSA" "The dwelling unit is located in Casper, WY MSA" -in.metropolitan_and_micropolitan_statistical_area "Cedar City, UT MicroSA" "The dwelling unit is located in Cedar City, UT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cedar Rapids, IA MSA" "The dwelling unit is located in Cedar Rapids, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Cedartown, GA MicroSA" "The dwelling unit is located in Cedartown, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Celina, OH MicroSA" "The dwelling unit is located in Celina, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Centralia, IL MicroSA" "The dwelling unit is located in Centralia, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Centralia, WA MicroSA" "The dwelling unit is located in Centralia, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Chambersburg-Waynesboro, PA MSA" "The dwelling unit is located in Chambersburg-Waynesboro, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Champaign-Urbana, IL MSA" "The dwelling unit is located in Champaign-Urbana, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Charleston, WV MSA" "The dwelling unit is located in Charleston, WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Charleston-Mattoon, IL MicroSA" "The dwelling unit is located in Charleston-Mattoon, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Charleston-North Charleston, SC MSA" "The dwelling unit is located in Charleston-North Charleston, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Charlotte-Concord-Gastonia, NC-SC MSA" "The dwelling unit is located in Charlotte-Concord-Gastonia, NC-SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Charlottesville, VA MSA" "The dwelling unit is located in Charlottesville, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Chattanooga, TN-GA MSA" "The dwelling unit is located in Chattanooga, TN-GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Cheyenne, WY MSA" "The dwelling unit is located in Cheyenne, WY MSA" -in.metropolitan_and_micropolitan_statistical_area "Chicago-Naperville-Elgin, IL-IN-WI MSA" "The dwelling unit is located in Chicago-Naperville-Elgin, IL-IN-WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Chico, CA MSA" "The dwelling unit is located in Chico, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Chillicothe, OH MicroSA" "The dwelling unit is located in Chillicothe, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cincinnati, OH-KY-IN MSA" "The dwelling unit is located in Cincinnati, OH-KY-IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Claremont-Lebanon, NH-VT MicroSA" "The dwelling unit is located in Claremont-Lebanon, NH-VT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Clarksburg, WV MicroSA" "The dwelling unit is located in Clarksburg, WV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Clarksdale, MS MicroSA" "The dwelling unit is located in Clarksdale, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Clarksville, TN-KY MSA" "The dwelling unit is located in Clarksville, TN-KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Clearlake, CA MicroSA" "The dwelling unit is located in Clearlake, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cleveland, MS MicroSA" "The dwelling unit is located in Cleveland, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cleveland, TN MSA" "The dwelling unit is located in Cleveland, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Cleveland-Elyria, OH MSA" "The dwelling unit is located in Cleveland-Elyria, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Clewiston, FL MicroSA" "The dwelling unit is located in Clewiston, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Clinton, IA MicroSA" "The dwelling unit is located in Clinton, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Clovis, NM MicroSA" "The dwelling unit is located in Clovis, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Coeur d'Alene, ID MSA" "The dwelling unit is located in Coeur d'Alene, ID MSA" -in.metropolitan_and_micropolitan_statistical_area "Coffeyville, KS MicroSA" "The dwelling unit is located in Coffeyville, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Coldwater, MI MicroSA" "The dwelling unit is located in Coldwater, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "College Station-Bryan, TX MSA" "The dwelling unit is located in College Station-Bryan, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Colorado Springs, CO MSA" "The dwelling unit is located in Colorado Springs, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Columbia, MO MSA" "The dwelling unit is located in Columbia, MO MSA" -in.metropolitan_and_micropolitan_statistical_area "Columbia, SC MSA" "The dwelling unit is located in Columbia, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Columbus, GA-AL MSA" "The dwelling unit is located in Columbus, GA-AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Columbus, IN MSA" "The dwelling unit is located in Columbus, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Columbus, MS MicroSA" "The dwelling unit is located in Columbus, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Columbus, NE MicroSA" "The dwelling unit is located in Columbus, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Columbus, OH MSA" "The dwelling unit is located in Columbus, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Concord, NH MicroSA" "The dwelling unit is located in Concord, NH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Connersville, IN MicroSA" "The dwelling unit is located in Connersville, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cookeville, TN MicroSA" "The dwelling unit is located in Cookeville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Coos Bay, OR MicroSA" "The dwelling unit is located in Coos Bay, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cordele, GA MicroSA" "The dwelling unit is located in Cordele, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Corinth, MS MicroSA" "The dwelling unit is located in Corinth, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cornelia, GA MicroSA" "The dwelling unit is located in Cornelia, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Corning, NY MicroSA" "The dwelling unit is located in Corning, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Corpus Christi, TX MSA" "The dwelling unit is located in Corpus Christi, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Corsicana, TX MicroSA" "The dwelling unit is located in Corsicana, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cortland, NY MicroSA" "The dwelling unit is located in Cortland, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Corvallis, OR MSA" "The dwelling unit is located in Corvallis, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Coshocton, OH MicroSA" "The dwelling unit is located in Coshocton, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Craig, CO MicroSA" "The dwelling unit is located in Craig, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Crawfordsville, IN MicroSA" "The dwelling unit is located in Crawfordsville, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Crescent City, CA MicroSA" "The dwelling unit is located in Crescent City, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Crestview-Fort Walton Beach-Destin, FL MSA" "The dwelling unit is located in Crestview-Fort Walton Beach-Destin, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Crossville, TN MicroSA" "The dwelling unit is located in Crossville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cullman, AL MicroSA" "The dwelling unit is located in Cullman, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cullowhee, NC MicroSA" "The dwelling unit is located in Cullowhee, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Cumberland, MD-WV MSA" "The dwelling unit is located in Cumberland, MD-WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Dallas-Fort Worth-Arlington, TX MSA" "The dwelling unit is located in Dallas-Fort Worth-Arlington, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Dalton, GA MSA" "The dwelling unit is located in Dalton, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Danville, IL MSA" "The dwelling unit is located in Danville, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Danville, KY MicroSA" "The dwelling unit is located in Danville, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Danville, VA MicroSA" "The dwelling unit is located in Danville, VA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Daphne-Fairhope-Foley, AL MSA" "The dwelling unit is located in Daphne-Fairhope-Foley, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Davenport-Moline-Rock Island, IA-IL MSA" "The dwelling unit is located in Davenport-Moline-Rock Island, IA-IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Dayton, OH MSA" "The dwelling unit is located in Dayton, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Dayton, TN MicroSA" "The dwelling unit is located in Dayton, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "DeRidder, LA MicroSA" "The dwelling unit is located in DeRidder, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Decatur, AL MSA" "The dwelling unit is located in Decatur, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Decatur, IL MSA" "The dwelling unit is located in Decatur, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Decatur, IN MicroSA" "The dwelling unit is located in Decatur, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Defiance, OH MicroSA" "The dwelling unit is located in Defiance, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Del Rio, TX MicroSA" "The dwelling unit is located in Del Rio, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Deltona-Daytona Beach-Ormond Beach, FL MSA" "The dwelling unit is located in Deltona-Daytona Beach-Ormond Beach, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Deming, NM MicroSA" "The dwelling unit is located in Deming, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Denver-Aurora-Lakewood, CO MSA" "The dwelling unit is located in Denver-Aurora-Lakewood, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Des Moines-West Des Moines, IA MSA" "The dwelling unit is located in Des Moines-West Des Moines, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Detroit-Warren-Dearborn, MI MSA" "The dwelling unit is located in Detroit-Warren-Dearborn, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Dickinson, ND MicroSA" "The dwelling unit is located in Dickinson, ND MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dixon, IL MicroSA" "The dwelling unit is located in Dixon, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dodge City, KS MicroSA" "The dwelling unit is located in Dodge City, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dothan, AL MSA" "The dwelling unit is located in Dothan, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Douglas, GA MicroSA" "The dwelling unit is located in Douglas, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dover, DE MSA" "The dwelling unit is located in Dover, DE MSA" -in.metropolitan_and_micropolitan_statistical_area "DuBois, PA MicroSA" "The dwelling unit is located in DuBois, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dublin, GA MicroSA" "The dwelling unit is located in Dublin, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dubuque, IA MSA" "The dwelling unit is located in Dubuque, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Duluth, MN-WI MSA" "The dwelling unit is located in Duluth, MN-WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Dumas, TX MicroSA" "The dwelling unit is located in Dumas, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Duncan, OK MicroSA" "The dwelling unit is located in Duncan, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Dunn, NC MicroSA" "The dwelling unit is located in Dunn, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Durango, CO MicroSA" "The dwelling unit is located in Durango, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Durant, OK MicroSA" "The dwelling unit is located in Durant, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Durham-Chapel Hill, NC MSA" "The dwelling unit is located in Durham-Chapel Hill, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Dyersburg, TN MicroSA" "The dwelling unit is located in Dyersburg, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Eagle Pass, TX MicroSA" "The dwelling unit is located in Eagle Pass, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "East Stroudsburg, PA MSA" "The dwelling unit is located in East Stroudsburg, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Easton, MD MicroSA" "The dwelling unit is located in Easton, MD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Eau Claire, WI MSA" "The dwelling unit is located in Eau Claire, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Edwards, CO MicroSA" "The dwelling unit is located in Edwards, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Effingham, IL MicroSA" "The dwelling unit is located in Effingham, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "El Campo, TX MicroSA" "The dwelling unit is located in El Campo, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "El Centro, CA MSA" "The dwelling unit is located in El Centro, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "El Dorado, AR MicroSA" "The dwelling unit is located in El Dorado, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "El Paso, TX MSA" "The dwelling unit is located in El Paso, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Elizabeth City, NC MicroSA" "The dwelling unit is located in Elizabeth City, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Elizabethtown-Fort Knox, KY MSA" "The dwelling unit is located in Elizabethtown-Fort Knox, KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Elk City, OK MicroSA" "The dwelling unit is located in Elk City, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Elkhart-Goshen, IN MSA" "The dwelling unit is located in Elkhart-Goshen, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Elkins, WV MicroSA" "The dwelling unit is located in Elkins, WV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Elko, NV MicroSA" "The dwelling unit is located in Elko, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ellensburg, WA MicroSA" "The dwelling unit is located in Ellensburg, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Elmira, NY MSA" "The dwelling unit is located in Elmira, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Emporia, KS MicroSA" "The dwelling unit is located in Emporia, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Enid, OK MicroSA" "The dwelling unit is located in Enid, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Enterprise, AL MicroSA" "The dwelling unit is located in Enterprise, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Erie, PA MSA" "The dwelling unit is located in Erie, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Escanaba, MI MicroSA" "The dwelling unit is located in Escanaba, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Espanola, NM MicroSA" "The dwelling unit is located in Espanola, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Eugene, OR MSA" "The dwelling unit is located in Eugene, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Eureka-Arcata-Fortuna, CA MicroSA" "The dwelling unit is located in Eureka-Arcata-Fortuna, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Evanston, WY MicroSA" "The dwelling unit is located in Evanston, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Evansville, IN-KY MSA" "The dwelling unit is located in Evansville, IN-KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Fairbanks, AK MSA" "The dwelling unit is located in Fairbanks, AK MSA" -in.metropolitan_and_micropolitan_statistical_area "Fairfield, IA MicroSA" "The dwelling unit is located in Fairfield, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fairmont, WV MicroSA" "The dwelling unit is located in Fairmont, WV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fallon, NV MicroSA" "The dwelling unit is located in Fallon, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fargo, ND-MN MSA" "The dwelling unit is located in Fargo, ND-MN MSA" -in.metropolitan_and_micropolitan_statistical_area "Faribault-Northfield, MN MicroSA" "The dwelling unit is located in Faribault-Northfield, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Farmington, MO MicroSA" "The dwelling unit is located in Farmington, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Farmington, NM MSA" "The dwelling unit is located in Farmington, NM MSA" -in.metropolitan_and_micropolitan_statistical_area "Fayetteville, NC MSA" "The dwelling unit is located in Fayetteville, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Fayetteville-Springdale-Rogers, AR-MO MSA" "The dwelling unit is located in Fayetteville-Springdale-Rogers, AR-MO MSA" -in.metropolitan_and_micropolitan_statistical_area "Fergus Falls, MN MicroSA" "The dwelling unit is located in Fergus Falls, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fernley, NV MicroSA" "The dwelling unit is located in Fernley, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Findlay, OH MicroSA" "The dwelling unit is located in Findlay, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fitzgerald, GA MicroSA" "The dwelling unit is located in Fitzgerald, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Flagstaff, AZ MSA" "The dwelling unit is located in Flagstaff, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Flint, MI MSA" "The dwelling unit is located in Flint, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Florence, SC MSA" "The dwelling unit is located in Florence, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Florence-Muscle Shoals, AL MSA" "The dwelling unit is located in Florence-Muscle Shoals, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Fond du Lac, WI MSA" "The dwelling unit is located in Fond du Lac, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Forest City, NC MicroSA" "The dwelling unit is located in Forest City, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Forrest City, AR MicroSA" "The dwelling unit is located in Forrest City, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Collins, CO MSA" "The dwelling unit is located in Fort Collins, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Dodge, IA MicroSA" "The dwelling unit is located in Fort Dodge, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Leonard Wood, MO MicroSA" "The dwelling unit is located in Fort Leonard Wood, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Madison-Keokuk, IA-IL-MO MicroSA" "The dwelling unit is located in Fort Madison-Keokuk, IA-IL-MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Morgan, CO MicroSA" "The dwelling unit is located in Fort Morgan, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Polk South, LA MicroSA" "The dwelling unit is located in Fort Polk South, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Smith, AR-OK MSA" "The dwelling unit is located in Fort Smith, AR-OK MSA" -in.metropolitan_and_micropolitan_statistical_area "Fort Wayne, IN MSA" "The dwelling unit is located in Fort Wayne, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Frankfort, IN MicroSA" "The dwelling unit is located in Frankfort, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Frankfort, KY MicroSA" "The dwelling unit is located in Frankfort, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fredericksburg, TX MicroSA" "The dwelling unit is located in Fredericksburg, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Freeport, IL MicroSA" "The dwelling unit is located in Freeport, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fremont, NE MicroSA" "The dwelling unit is located in Fremont, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fremont, OH MicroSA" "The dwelling unit is located in Fremont, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Fresno, CA MSA" "The dwelling unit is located in Fresno, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Gadsden, AL MSA" "The dwelling unit is located in Gadsden, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Gaffney, SC MicroSA" "The dwelling unit is located in Gaffney, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gainesville, FL MSA" "The dwelling unit is located in Gainesville, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Gainesville, GA MSA" "The dwelling unit is located in Gainesville, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Gainesville, TX MicroSA" "The dwelling unit is located in Gainesville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Galesburg, IL MicroSA" "The dwelling unit is located in Galesburg, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gallup, NM MicroSA" "The dwelling unit is located in Gallup, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Garden City, KS MicroSA" "The dwelling unit is located in Garden City, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gardnerville Ranchos, NV MicroSA" "The dwelling unit is located in Gardnerville Ranchos, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Georgetown, SC MicroSA" "The dwelling unit is located in Georgetown, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gettysburg, PA MSA" "The dwelling unit is located in Gettysburg, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Gillette, WY MicroSA" "The dwelling unit is located in Gillette, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Glasgow, KY MicroSA" "The dwelling unit is located in Glasgow, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Glens Falls, NY MSA" "The dwelling unit is located in Glens Falls, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Glenwood Springs, CO MicroSA" "The dwelling unit is located in Glenwood Springs, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gloversville, NY MicroSA" "The dwelling unit is located in Gloversville, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Goldsboro, NC MSA" "The dwelling unit is located in Goldsboro, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Grand Forks, ND-MN MSA" "The dwelling unit is located in Grand Forks, ND-MN MSA" -in.metropolitan_and_micropolitan_statistical_area "Grand Island, NE MSA" "The dwelling unit is located in Grand Island, NE MSA" -in.metropolitan_and_micropolitan_statistical_area "Grand Junction, CO MSA" "The dwelling unit is located in Grand Junction, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Grand Rapids-Wyoming, MI MSA" "The dwelling unit is located in Grand Rapids-Wyoming, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Grants Pass, OR MSA" "The dwelling unit is located in Grants Pass, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Grants, NM MicroSA" "The dwelling unit is located in Grants, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Great Bend, KS MicroSA" "The dwelling unit is located in Great Bend, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Great Falls, MT MSA" "The dwelling unit is located in Great Falls, MT MSA" -in.metropolitan_and_micropolitan_statistical_area "Greeley, CO MSA" "The dwelling unit is located in Greeley, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Green Bay, WI MSA" "The dwelling unit is located in Green Bay, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Greeneville, TN MicroSA" "The dwelling unit is located in Greeneville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greenfield Town, MA MicroSA" "The dwelling unit is located in Greenfield Town, MA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greensboro-High Point, NC MSA" "The dwelling unit is located in Greensboro-High Point, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Greensburg, IN MicroSA" "The dwelling unit is located in Greensburg, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greenville, MS MicroSA" "The dwelling unit is located in Greenville, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greenville, NC MSA" "The dwelling unit is located in Greenville, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Greenville, OH MicroSA" "The dwelling unit is located in Greenville, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greenville-Anderson-Mauldin, SC MSA" "The dwelling unit is located in Greenville-Anderson-Mauldin, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Greenwood, MS MicroSA" "The dwelling unit is located in Greenwood, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Greenwood, SC MicroSA" "The dwelling unit is located in Greenwood, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Grenada, MS MicroSA" "The dwelling unit is located in Grenada, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Gulfport-Biloxi-Pascagoula, MS MSA" "The dwelling unit is located in Gulfport-Biloxi-Pascagoula, MS MSA" -in.metropolitan_and_micropolitan_statistical_area "Guymon, OK MicroSA" "The dwelling unit is located in Guymon, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hagerstown-Martinsburg, MD-WV MSA" "The dwelling unit is located in Hagerstown-Martinsburg, MD-WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Hailey, ID MicroSA" "The dwelling unit is located in Hailey, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hammond, LA MSA" "The dwelling unit is located in Hammond, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Hanford-Corcoran, CA MSA" "The dwelling unit is located in Hanford-Corcoran, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Hannibal, MO MicroSA" "The dwelling unit is located in Hannibal, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Harrisburg-Carlisle, PA MSA" "The dwelling unit is located in Harrisburg-Carlisle, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Harrison, AR MicroSA" "The dwelling unit is located in Harrison, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Harrisonburg, VA MSA" "The dwelling unit is located in Harrisonburg, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Hartford-West Hartford-East Hartford, CT MSA" "The dwelling unit is located in Hartford-West Hartford-East Hartford, CT MSA" -in.metropolitan_and_micropolitan_statistical_area "Hastings, NE MicroSA" "The dwelling unit is located in Hastings, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hattiesburg, MS MSA" "The dwelling unit is located in Hattiesburg, MS MSA" -in.metropolitan_and_micropolitan_statistical_area "Hays, KS MicroSA" "The dwelling unit is located in Hays, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Heber, UT MicroSA" "The dwelling unit is located in Heber, UT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Helena, MT MicroSA" "The dwelling unit is located in Helena, MT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Helena-West Helena, AR MicroSA" "The dwelling unit is located in Helena-West Helena, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Henderson, NC MicroSA" "The dwelling unit is located in Henderson, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hereford, TX MicroSA" "The dwelling unit is located in Hereford, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hermiston-Pendleton, OR MicroSA" "The dwelling unit is located in Hermiston-Pendleton, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hickory-Lenoir-Morganton, NC MSA" "The dwelling unit is located in Hickory-Lenoir-Morganton, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Hillsdale, MI MicroSA" "The dwelling unit is located in Hillsdale, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hilo, HI MicroSA" "The dwelling unit is located in Hilo, HI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hilton Head Island-Bluffton-Beaufort, SC MSA" "The dwelling unit is located in Hilton Head Island-Bluffton-Beaufort, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Hinesville, GA MSA" "The dwelling unit is located in Hinesville, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Hobbs, NM MicroSA" "The dwelling unit is located in Hobbs, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Holland, MI MicroSA" "The dwelling unit is located in Holland, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Homosassa Springs, FL MSA" "The dwelling unit is located in Homosassa Springs, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Hood River, OR MicroSA" "The dwelling unit is located in Hood River, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hot Springs, AR MSA" "The dwelling unit is located in Hot Springs, AR MSA" -in.metropolitan_and_micropolitan_statistical_area "Houghton, MI MicroSA" "The dwelling unit is located in Houghton, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Houma-Thibodaux, LA MSA" "The dwelling unit is located in Houma-Thibodaux, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Houston-The Woodlands-Sugar Land, TX MSA" "The dwelling unit is located in Houston-The Woodlands-Sugar Land, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Hudson, NY MicroSA" "The dwelling unit is located in Hudson, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Huntingdon, PA MicroSA" "The dwelling unit is located in Huntingdon, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Huntington, IN MicroSA" "The dwelling unit is located in Huntington, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Huntington-Ashland, WV-KY-OH MSA" "The dwelling unit is located in Huntington-Ashland, WV-KY-OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Huntsville, AL MSA" "The dwelling unit is located in Huntsville, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Huntsville, TX MicroSA" "The dwelling unit is located in Huntsville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Huron, SD MicroSA" "The dwelling unit is located in Huron, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hutchinson, KS MicroSA" "The dwelling unit is located in Hutchinson, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Hutchinson, MN MicroSA" "The dwelling unit is located in Hutchinson, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Idaho Falls, ID MSA" "The dwelling unit is located in Idaho Falls, ID MSA" -in.metropolitan_and_micropolitan_statistical_area "Indiana, PA MicroSA" "The dwelling unit is located in Indiana, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Indianapolis-Carmel-Anderson, IN MSA" "The dwelling unit is located in Indianapolis-Carmel-Anderson, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Indianola, MS MicroSA" "The dwelling unit is located in Indianola, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ionia, MI MicroSA" "The dwelling unit is located in Ionia, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Iowa City, IA MSA" "The dwelling unit is located in Iowa City, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Iron Mountain, MI-WI MicroSA" "The dwelling unit is located in Iron Mountain, MI-WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ithaca, NY MSA" "The dwelling unit is located in Ithaca, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Jackson, MI MSA" "The dwelling unit is located in Jackson, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Jackson, MS MSA" "The dwelling unit is located in Jackson, MS MSA" -in.metropolitan_and_micropolitan_statistical_area "Jackson, OH MicroSA" "The dwelling unit is located in Jackson, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jackson, TN MSA" "The dwelling unit is located in Jackson, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Jackson, WY-ID MicroSA" "The dwelling unit is located in Jackson, WY-ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jacksonville, FL MSA" "The dwelling unit is located in Jacksonville, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Jacksonville, IL MicroSA" "The dwelling unit is located in Jacksonville, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jacksonville, NC MSA" "The dwelling unit is located in Jacksonville, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Jacksonville, TX MicroSA" "The dwelling unit is located in Jacksonville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jamestown, ND MicroSA" "The dwelling unit is located in Jamestown, ND MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jamestown-Dunkirk-Fredonia, NY MicroSA" "The dwelling unit is located in Jamestown-Dunkirk-Fredonia, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Janesville-Beloit, WI MSA" "The dwelling unit is located in Janesville-Beloit, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Jasper, IN MicroSA" "The dwelling unit is located in Jasper, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jefferson City, MO MSA" "The dwelling unit is located in Jefferson City, MO MSA" -in.metropolitan_and_micropolitan_statistical_area "Jefferson, GA MicroSA" "The dwelling unit is located in Jefferson, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Jesup, GA MicroSA" "The dwelling unit is located in Jesup, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Johnson City, TN MSA" "The dwelling unit is located in Johnson City, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Johnstown, PA MSA" "The dwelling unit is located in Johnstown, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Jonesboro, AR MSA" "The dwelling unit is located in Jonesboro, AR MSA" -in.metropolitan_and_micropolitan_statistical_area "Joplin, MO MSA" "The dwelling unit is located in Joplin, MO MSA" -in.metropolitan_and_micropolitan_statistical_area "Junction City, KS MicroSA" "The dwelling unit is located in Junction City, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Juneau, AK MicroSA" "The dwelling unit is located in Juneau, AK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kahului-Wailuku-Lahaina, HI MSA" "The dwelling unit is located in Kahului-Wailuku-Lahaina, HI MSA" -in.metropolitan_and_micropolitan_statistical_area "Kalamazoo-Portage, MI MSA" "The dwelling unit is located in Kalamazoo-Portage, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Kalispell, MT MicroSA" "The dwelling unit is located in Kalispell, MT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kankakee, IL MSA" "The dwelling unit is located in Kankakee, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Kansas City, MO-KS MSA" "The dwelling unit is located in Kansas City, MO-KS MSA" -in.metropolitan_and_micropolitan_statistical_area "Kapaa, HI MicroSA" "The dwelling unit is located in Kapaa, HI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kearney, NE MicroSA" "The dwelling unit is located in Kearney, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Keene, NH MicroSA" "The dwelling unit is located in Keene, NH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kendallville, IN MicroSA" "The dwelling unit is located in Kendallville, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kennett, MO MicroSA" "The dwelling unit is located in Kennett, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kennewick-Richland, WA MSA" "The dwelling unit is located in Kennewick-Richland, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Kerrville, TX MicroSA" "The dwelling unit is located in Kerrville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ketchikan, AK MicroSA" "The dwelling unit is located in Ketchikan, AK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Key West, FL MicroSA" "The dwelling unit is located in Key West, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kill Devil Hills, NC MicroSA" "The dwelling unit is located in Kill Devil Hills, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Killeen-Temple, TX MSA" "The dwelling unit is located in Killeen-Temple, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Kingsport-Bristol-Bristol, TN-VA MSA" "The dwelling unit is located in Kingsport-Bristol-Bristol, TN-VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Kingston, NY MSA" "The dwelling unit is located in Kingston, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Kingsville, TX MicroSA" "The dwelling unit is located in Kingsville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kinston, NC MicroSA" "The dwelling unit is located in Kinston, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Kirksville, MO MicroSA" "The dwelling unit is located in Kirksville, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Klamath Falls, OR MicroSA" "The dwelling unit is located in Klamath Falls, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Knoxville, TN MSA" "The dwelling unit is located in Knoxville, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Kokomo, IN MSA" "The dwelling unit is located in Kokomo, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "La Crosse-Onalaska, WI-MN MSA" "The dwelling unit is located in La Crosse-Onalaska, WI-MN MSA" -in.metropolitan_and_micropolitan_statistical_area "La Grande, OR MicroSA" "The dwelling unit is located in La Grande, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "LaGrange, GA MicroSA" "The dwelling unit is located in LaGrange, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Laconia, NH MicroSA" "The dwelling unit is located in Laconia, NH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lafayette, LA MSA" "The dwelling unit is located in Lafayette, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Lafayette-West Lafayette, IN MSA" "The dwelling unit is located in Lafayette-West Lafayette, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Lake Charles, LA MSA" "The dwelling unit is located in Lake Charles, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Lake City, FL MicroSA" "The dwelling unit is located in Lake City, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lake Havasu City-Kingman, AZ MSA" "The dwelling unit is located in Lake Havasu City-Kingman, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Lakeland-Winter Haven, FL MSA" "The dwelling unit is located in Lakeland-Winter Haven, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Lamesa, TX MicroSA" "The dwelling unit is located in Lamesa, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lancaster, PA MSA" "The dwelling unit is located in Lancaster, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Lansing-East Lansing, MI MSA" "The dwelling unit is located in Lansing-East Lansing, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Laramie, WY MicroSA" "The dwelling unit is located in Laramie, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Laredo, TX MSA" "The dwelling unit is located in Laredo, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Las Cruces, NM MSA" "The dwelling unit is located in Las Cruces, NM MSA" -in.metropolitan_and_micropolitan_statistical_area "Las Vegas, NM MicroSA" "The dwelling unit is located in Las Vegas, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Las Vegas-Henderson-Paradise, NV MSA" "The dwelling unit is located in Las Vegas-Henderson-Paradise, NV MSA" -in.metropolitan_and_micropolitan_statistical_area "Laurel, MS MicroSA" "The dwelling unit is located in Laurel, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Laurinburg, NC MicroSA" "The dwelling unit is located in Laurinburg, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lawrence, KS MSA" "The dwelling unit is located in Lawrence, KS MSA" -in.metropolitan_and_micropolitan_statistical_area "Lawrenceburg, TN MicroSA" "The dwelling unit is located in Lawrenceburg, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lawton, OK MSA" "The dwelling unit is located in Lawton, OK MSA" -in.metropolitan_and_micropolitan_statistical_area "Lebanon, MO MicroSA" "The dwelling unit is located in Lebanon, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lebanon, PA MSA" "The dwelling unit is located in Lebanon, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Levelland, TX MicroSA" "The dwelling unit is located in Levelland, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lewisburg, PA MicroSA" "The dwelling unit is located in Lewisburg, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lewisburg, TN MicroSA" "The dwelling unit is located in Lewisburg, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lewiston, ID-WA MSA" "The dwelling unit is located in Lewiston, ID-WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Lewiston-Auburn, ME MSA" "The dwelling unit is located in Lewiston-Auburn, ME MSA" -in.metropolitan_and_micropolitan_statistical_area "Lewistown, PA MicroSA" "The dwelling unit is located in Lewistown, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lexington, NE MicroSA" "The dwelling unit is located in Lexington, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lexington-Fayette, KY MSA" "The dwelling unit is located in Lexington-Fayette, KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Liberal, KS MicroSA" "The dwelling unit is located in Liberal, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lima, OH MSA" "The dwelling unit is located in Lima, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Lincoln, IL MicroSA" "The dwelling unit is located in Lincoln, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lincoln, NE MSA" "The dwelling unit is located in Lincoln, NE MSA" -in.metropolitan_and_micropolitan_statistical_area "Little Rock-North Little Rock-Conway, AR MSA" "The dwelling unit is located in Little Rock-North Little Rock-Conway, AR MSA" -in.metropolitan_and_micropolitan_statistical_area "Lock Haven, PA MicroSA" "The dwelling unit is located in Lock Haven, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Logan, UT-ID MSA" "The dwelling unit is located in Logan, UT-ID MSA" -in.metropolitan_and_micropolitan_statistical_area "Logan, WV MicroSA" "The dwelling unit is located in Logan, WV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Logansport, IN MicroSA" "The dwelling unit is located in Logansport, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "London, KY MicroSA" "The dwelling unit is located in London, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Longview, TX MSA" "The dwelling unit is located in Longview, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Longview, WA MSA" "The dwelling unit is located in Longview, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Los Alamos, NM MicroSA" "The dwelling unit is located in Los Alamos, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Los Angeles-Long Beach-Anaheim, CA MSA" "The dwelling unit is located in Los Angeles-Long Beach-Anaheim, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Louisville/Jefferson County, KY-IN MSA" "The dwelling unit is located in Louisville/Jefferson County, KY-IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Lubbock, TX MSA" "The dwelling unit is located in Lubbock, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Ludington, MI MicroSA" "The dwelling unit is located in Ludington, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lufkin, TX MicroSA" "The dwelling unit is located in Lufkin, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lumberton, NC MicroSA" "The dwelling unit is located in Lumberton, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Lynchburg, VA MSA" "The dwelling unit is located in Lynchburg, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Macomb, IL MicroSA" "The dwelling unit is located in Macomb, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Macon, GA MSA" "The dwelling unit is located in Macon, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Madera, CA MSA" "The dwelling unit is located in Madera, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Madison, IN MicroSA" "The dwelling unit is located in Madison, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Madison, WI MSA" "The dwelling unit is located in Madison, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Madisonville, KY MicroSA" "The dwelling unit is located in Madisonville, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Magnolia, AR MicroSA" "The dwelling unit is located in Magnolia, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Malone, NY MicroSA" "The dwelling unit is located in Malone, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Malvern, AR MicroSA" "The dwelling unit is located in Malvern, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Manchester-Nashua, NH MSA" "The dwelling unit is located in Manchester-Nashua, NH MSA" -in.metropolitan_and_micropolitan_statistical_area "Manhattan, KS MSA" "The dwelling unit is located in Manhattan, KS MSA" -in.metropolitan_and_micropolitan_statistical_area "Manitowoc, WI MicroSA" "The dwelling unit is located in Manitowoc, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mankato-North Mankato, MN MSA" "The dwelling unit is located in Mankato-North Mankato, MN MSA" -in.metropolitan_and_micropolitan_statistical_area "Mansfield, OH MSA" "The dwelling unit is located in Mansfield, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Marietta, OH MicroSA" "The dwelling unit is located in Marietta, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marinette, WI-MI MicroSA" "The dwelling unit is located in Marinette, WI-MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marion, IN MicroSA" "The dwelling unit is located in Marion, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marion, NC MicroSA" "The dwelling unit is located in Marion, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marion, OH MicroSA" "The dwelling unit is located in Marion, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marquette, MI MicroSA" "The dwelling unit is located in Marquette, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marshall, MN MicroSA" "The dwelling unit is located in Marshall, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marshall, MO MicroSA" "The dwelling unit is located in Marshall, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marshall, TX MicroSA" "The dwelling unit is located in Marshall, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Marshalltown, IA MicroSA" "The dwelling unit is located in Marshalltown, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Martin, TN MicroSA" "The dwelling unit is located in Martin, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Martinsville, VA MicroSA" "The dwelling unit is located in Martinsville, VA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Maryville, MO MicroSA" "The dwelling unit is located in Maryville, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mason City, IA MicroSA" "The dwelling unit is located in Mason City, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mayfield, KY MicroSA" "The dwelling unit is located in Mayfield, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Maysville, KY MicroSA" "The dwelling unit is located in Maysville, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "McAlester, OK MicroSA" "The dwelling unit is located in McAlester, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "McAllen-Edinburg-Mission, TX MSA" "The dwelling unit is located in McAllen-Edinburg-Mission, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "McComb, MS MicroSA" "The dwelling unit is located in McComb, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "McMinnville, TN MicroSA" "The dwelling unit is located in McMinnville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "McPherson, KS MicroSA" "The dwelling unit is located in McPherson, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Meadville, PA MicroSA" "The dwelling unit is located in Meadville, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Medford, OR MSA" "The dwelling unit is located in Medford, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Memphis, TN-MS-AR MSA" "The dwelling unit is located in Memphis, TN-MS-AR MSA" -in.metropolitan_and_micropolitan_statistical_area "Menomonie, WI MicroSA" "The dwelling unit is located in Menomonie, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Merced, CA MSA" "The dwelling unit is located in Merced, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Meridian, MS MicroSA" "The dwelling unit is located in Meridian, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Merrill, WI MicroSA" "The dwelling unit is located in Merrill, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mexico, MO MicroSA" "The dwelling unit is located in Mexico, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Miami, OK MicroSA" "The dwelling unit is located in Miami, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Miami-Fort Lauderdale-West Palm Beach, FL MSA" "The dwelling unit is located in Miami-Fort Lauderdale-West Palm Beach, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Michigan City-La Porte, IN MSA" "The dwelling unit is located in Michigan City-La Porte, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Middlesborough, KY MicroSA" "The dwelling unit is located in Middlesborough, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Midland, MI MSA" "The dwelling unit is located in Midland, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Midland, TX MSA" "The dwelling unit is located in Midland, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Milledgeville, GA MicroSA" "The dwelling unit is located in Milledgeville, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Milwaukee-Waukesha-West Allis, WI MSA" "The dwelling unit is located in Milwaukee-Waukesha-West Allis, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Mineral Wells, TX MicroSA" "The dwelling unit is located in Mineral Wells, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Minneapolis-St. Paul-Bloomington, MN-WI MSA" "The dwelling unit is located in Minneapolis-St. Paul-Bloomington, MN-WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Minot, ND MicroSA" "The dwelling unit is located in Minot, ND MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Missoula, MT MSA" "The dwelling unit is located in Missoula, MT MSA" -in.metropolitan_and_micropolitan_statistical_area "Mitchell, SD MicroSA" "The dwelling unit is located in Mitchell, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Moberly, MO MicroSA" "The dwelling unit is located in Moberly, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mobile, AL MSA" "The dwelling unit is located in Mobile, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Modesto, CA MSA" "The dwelling unit is located in Modesto, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Monroe, LA MSA" "The dwelling unit is located in Monroe, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Monroe, MI MSA" "The dwelling unit is located in Monroe, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Montgomery, AL MSA" "The dwelling unit is located in Montgomery, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Montrose, CO MicroSA" "The dwelling unit is located in Montrose, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Morehead City, NC MicroSA" "The dwelling unit is located in Morehead City, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Morgan City, LA MicroSA" "The dwelling unit is located in Morgan City, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Morgantown, WV MSA" "The dwelling unit is located in Morgantown, WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Morristown, TN MSA" "The dwelling unit is located in Morristown, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Moscow, ID MicroSA" "The dwelling unit is located in Moscow, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Moses Lake, WA MicroSA" "The dwelling unit is located in Moses Lake, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Moultrie, GA MicroSA" "The dwelling unit is located in Moultrie, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Airy, NC MicroSA" "The dwelling unit is located in Mount Airy, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Pleasant, MI MicroSA" "The dwelling unit is located in Mount Pleasant, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Pleasant, TX MicroSA" "The dwelling unit is located in Mount Pleasant, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Sterling, KY MicroSA" "The dwelling unit is located in Mount Sterling, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Vernon, IL MicroSA" "The dwelling unit is located in Mount Vernon, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Vernon, OH MicroSA" "The dwelling unit is located in Mount Vernon, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mount Vernon-Anacortes, WA MSA" "The dwelling unit is located in Mount Vernon-Anacortes, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Mountain Home, AR MicroSA" "The dwelling unit is located in Mountain Home, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Mountain Home, ID MicroSA" "The dwelling unit is located in Mountain Home, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Muncie, IN MSA" "The dwelling unit is located in Muncie, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Murray, KY MicroSA" "The dwelling unit is located in Murray, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Muscatine, IA MicroSA" "The dwelling unit is located in Muscatine, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Muskegon, MI MSA" "The dwelling unit is located in Muskegon, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Muskogee, OK MicroSA" "The dwelling unit is located in Muskogee, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" "The dwelling unit is located in Myrtle Beach-Conway-North Myrtle Beach, SC-NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Nacogdoches, TX MicroSA" "The dwelling unit is located in Nacogdoches, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Napa, CA MSA" "The dwelling unit is located in Napa, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Naples-Immokalee-Marco Island, FL MSA" "The dwelling unit is located in Naples-Immokalee-Marco Island, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Nashville-Davidson--Murfreesboro--Franklin, TN MSA" "The dwelling unit is located in Nashville-Davidson--Murfreesboro--Franklin, TN MSA" -in.metropolitan_and_micropolitan_statistical_area "Natchez, MS-LA MicroSA" "The dwelling unit is located in Natchez, MS-LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Natchitoches, LA MicroSA" "The dwelling unit is located in Natchitoches, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "New Bern, NC MSA" "The dwelling unit is located in New Bern, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "New Castle, IN MicroSA" "The dwelling unit is located in New Castle, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "New Castle, PA MicroSA" "The dwelling unit is located in New Castle, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "New Haven-Milford, CT MSA" "The dwelling unit is located in New Haven-Milford, CT MSA" -in.metropolitan_and_micropolitan_statistical_area "New Orleans-Metairie, LA MSA" "The dwelling unit is located in New Orleans-Metairie, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "New Philadelphia-Dover, OH MicroSA" "The dwelling unit is located in New Philadelphia-Dover, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "New Ulm, MN MicroSA" "The dwelling unit is located in New Ulm, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "New York-Newark-Jersey City, NY-NJ-PA MSA" "The dwelling unit is located in New York-Newark-Jersey City, NY-NJ-PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Newberry, SC MicroSA" "The dwelling unit is located in Newberry, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Newport, OR MicroSA" "The dwelling unit is located in Newport, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Newport, TN MicroSA" "The dwelling unit is located in Newport, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Newton, IA MicroSA" "The dwelling unit is located in Newton, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Niles-Benton Harbor, MI MSA" "The dwelling unit is located in Niles-Benton Harbor, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Nogales, AZ MicroSA" "The dwelling unit is located in Nogales, AZ MicroSA" -in.metropolitan_and_micropolitan_statistical_area None The dwelling unit is located in None -in.metropolitan_and_micropolitan_statistical_area "Norfolk, NE MicroSA" "The dwelling unit is located in Norfolk, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "North Platte, NE MicroSA" "The dwelling unit is located in North Platte, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "North Port-Sarasota-Bradenton, FL MSA" "The dwelling unit is located in North Port-Sarasota-Bradenton, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "North Vernon, IN MicroSA" "The dwelling unit is located in North Vernon, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "North Wilkesboro, NC MicroSA" "The dwelling unit is located in North Wilkesboro, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Norwalk, OH MicroSA" "The dwelling unit is located in Norwalk, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Norwich-New London, CT MSA" "The dwelling unit is located in Norwich-New London, CT MSA" -in.metropolitan_and_micropolitan_statistical_area "Oak Harbor, WA MicroSA" "The dwelling unit is located in Oak Harbor, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ocala, FL MSA" "The dwelling unit is located in Ocala, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Ocean City, NJ MSA" "The dwelling unit is located in Ocean City, NJ MSA" -in.metropolitan_and_micropolitan_statistical_area "Odessa, TX MSA" "The dwelling unit is located in Odessa, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Ogden-Clearfield, UT MSA" "The dwelling unit is located in Ogden-Clearfield, UT MSA" -in.metropolitan_and_micropolitan_statistical_area "Ogdensburg-Massena, NY MicroSA" "The dwelling unit is located in Ogdensburg-Massena, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Oil City, PA MicroSA" "The dwelling unit is located in Oil City, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Okeechobee, FL MicroSA" "The dwelling unit is located in Okeechobee, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Oklahoma City, OK MSA" "The dwelling unit is located in Oklahoma City, OK MSA" -in.metropolitan_and_micropolitan_statistical_area "Olean, NY MicroSA" "The dwelling unit is located in Olean, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Olympia-Tumwater, WA MSA" "The dwelling unit is located in Olympia-Tumwater, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Omaha-Council Bluffs, NE-IA MSA" "The dwelling unit is located in Omaha-Council Bluffs, NE-IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Oneonta, NY MicroSA" "The dwelling unit is located in Oneonta, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ontario, OR-ID MicroSA" "The dwelling unit is located in Ontario, OR-ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Opelousas, LA MicroSA" "The dwelling unit is located in Opelousas, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Orangeburg, SC MicroSA" "The dwelling unit is located in Orangeburg, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Orlando-Kissimmee-Sanford, FL MSA" "The dwelling unit is located in Orlando-Kissimmee-Sanford, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Oshkosh-Neenah, WI MSA" "The dwelling unit is located in Oshkosh-Neenah, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Oskaloosa, IA MicroSA" "The dwelling unit is located in Oskaloosa, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Othello, WA MicroSA" "The dwelling unit is located in Othello, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ottawa, KS MicroSA" "The dwelling unit is located in Ottawa, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ottawa-Peru, IL MicroSA" "The dwelling unit is located in Ottawa-Peru, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ottumwa, IA MicroSA" "The dwelling unit is located in Ottumwa, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Owatonna, MN MicroSA" "The dwelling unit is located in Owatonna, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Owensboro, KY MSA" "The dwelling unit is located in Owensboro, KY MSA" -in.metropolitan_and_micropolitan_statistical_area "Owosso, MI MicroSA" "The dwelling unit is located in Owosso, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Oxford, MS MicroSA" "The dwelling unit is located in Oxford, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Oxford, NC MicroSA" "The dwelling unit is located in Oxford, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Oxnard-Thousand Oaks-Ventura, CA MSA" "The dwelling unit is located in Oxnard-Thousand Oaks-Ventura, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Ozark, AL MicroSA" "The dwelling unit is located in Ozark, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Paducah, KY-IL MicroSA" "The dwelling unit is located in Paducah, KY-IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pahrump, NV MicroSA" "The dwelling unit is located in Pahrump, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Palatka, FL MicroSA" "The dwelling unit is located in Palatka, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Palestine, TX MicroSA" "The dwelling unit is located in Palestine, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Palm Bay-Melbourne-Titusville, FL MSA" "The dwelling unit is located in Palm Bay-Melbourne-Titusville, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Pampa, TX MicroSA" "The dwelling unit is located in Pampa, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Panama City, FL MSA" "The dwelling unit is located in Panama City, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Paragould, AR MicroSA" "The dwelling unit is located in Paragould, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Paris, TN MicroSA" "The dwelling unit is located in Paris, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Paris, TX MicroSA" "The dwelling unit is located in Paris, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Parkersburg-Vienna, WV MSA" "The dwelling unit is located in Parkersburg-Vienna, WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Parsons, KS MicroSA" "The dwelling unit is located in Parsons, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Payson, AZ MicroSA" "The dwelling unit is located in Payson, AZ MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pecos, TX MicroSA" "The dwelling unit is located in Pecos, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pensacola-Ferry Pass-Brent, FL MSA" "The dwelling unit is located in Pensacola-Ferry Pass-Brent, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Peoria, IL MSA" "The dwelling unit is located in Peoria, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Peru, IN MicroSA" "The dwelling unit is located in Peru, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" "The dwelling unit is located in Philadelphia-Camden-Wilmington, PA-NJ-DE-MD MSA" -in.metropolitan_and_micropolitan_statistical_area "Phoenix-Mesa-Scottsdale, AZ MSA" "The dwelling unit is located in Phoenix-Mesa-Scottsdale, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Picayune, MS MicroSA" "The dwelling unit is located in Picayune, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pierre, SD MicroSA" "The dwelling unit is located in Pierre, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pine Bluff, AR MSA" "The dwelling unit is located in Pine Bluff, AR MSA" -in.metropolitan_and_micropolitan_statistical_area "Pinehurst-Southern Pines, NC MicroSA" "The dwelling unit is located in Pinehurst-Southern Pines, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pittsburg, KS MicroSA" "The dwelling unit is located in Pittsburg, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pittsburgh, PA MSA" "The dwelling unit is located in Pittsburgh, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Pittsfield, MA MSA" "The dwelling unit is located in Pittsfield, MA MSA" -in.metropolitan_and_micropolitan_statistical_area "Plainview, TX MicroSA" "The dwelling unit is located in Plainview, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Platteville, WI MicroSA" "The dwelling unit is located in Platteville, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Plattsburgh, NY MicroSA" "The dwelling unit is located in Plattsburgh, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Plymouth, IN MicroSA" "The dwelling unit is located in Plymouth, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pocatello, ID MSA" "The dwelling unit is located in Pocatello, ID MSA" -in.metropolitan_and_micropolitan_statistical_area "Point Pleasant, WV-OH MicroSA" "The dwelling unit is located in Point Pleasant, WV-OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ponca City, OK MicroSA" "The dwelling unit is located in Ponca City, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pontiac, IL MicroSA" "The dwelling unit is located in Pontiac, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Poplar Bluff, MO MicroSA" "The dwelling unit is located in Poplar Bluff, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Port Angeles, WA MicroSA" "The dwelling unit is located in Port Angeles, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Port Clinton, OH MicroSA" "The dwelling unit is located in Port Clinton, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Port Lavaca, TX MicroSA" "The dwelling unit is located in Port Lavaca, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Port St. Lucie, FL MSA" "The dwelling unit is located in Port St. Lucie, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Portales, NM MicroSA" "The dwelling unit is located in Portales, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Portland-South Portland, ME MSA" "The dwelling unit is located in Portland-South Portland, ME MSA" -in.metropolitan_and_micropolitan_statistical_area "Portland-Vancouver-Hillsboro, OR-WA MSA" "The dwelling unit is located in Portland-Vancouver-Hillsboro, OR-WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Portsmouth, OH MicroSA" "The dwelling unit is located in Portsmouth, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Pottsville, PA MicroSA" "The dwelling unit is located in Pottsville, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Prescott, AZ MSA" "The dwelling unit is located in Prescott, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Price, UT MicroSA" "The dwelling unit is located in Price, UT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Prineville, OR MicroSA" "The dwelling unit is located in Prineville, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Providence-Warwick, RI-MA MSA" "The dwelling unit is located in Providence-Warwick, RI-MA MSA" -in.metropolitan_and_micropolitan_statistical_area "Provo-Orem, UT MSA" "The dwelling unit is located in Provo-Orem, UT MSA" -in.metropolitan_and_micropolitan_statistical_area "Pueblo, CO MSA" "The dwelling unit is located in Pueblo, CO MSA" -in.metropolitan_and_micropolitan_statistical_area "Pullman, WA MicroSA" "The dwelling unit is located in Pullman, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Punta Gorda, FL MSA" "The dwelling unit is located in Punta Gorda, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Quincy, IL-MO MicroSA" "The dwelling unit is located in Quincy, IL-MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Racine, WI MSA" "The dwelling unit is located in Racine, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Raleigh, NC MSA" "The dwelling unit is located in Raleigh, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Rapid City, SD MSA" "The dwelling unit is located in Rapid City, SD MSA" -in.metropolitan_and_micropolitan_statistical_area "Raymondville, TX MicroSA" "The dwelling unit is located in Raymondville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Reading, PA MSA" "The dwelling unit is located in Reading, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Red Bluff, CA MicroSA" "The dwelling unit is located in Red Bluff, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Red Wing, MN MicroSA" "The dwelling unit is located in Red Wing, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Redding, CA MSA" "The dwelling unit is located in Redding, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Reno, NV MSA" "The dwelling unit is located in Reno, NV MSA" -in.metropolitan_and_micropolitan_statistical_area "Rexburg, ID MicroSA" "The dwelling unit is located in Rexburg, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Richmond, IN MicroSA" "The dwelling unit is located in Richmond, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Richmond, VA MSA" "The dwelling unit is located in Richmond, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Richmond-Berea, KY MicroSA" "The dwelling unit is located in Richmond-Berea, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rio Grande City, TX MicroSA" "The dwelling unit is located in Rio Grande City, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Riverside-San Bernardino-Ontario, CA MSA" "The dwelling unit is located in Riverside-San Bernardino-Ontario, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Riverton, WY MicroSA" "The dwelling unit is located in Riverton, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Roanoke Rapids, NC MicroSA" "The dwelling unit is located in Roanoke Rapids, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Roanoke, VA MSA" "The dwelling unit is located in Roanoke, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Rochelle, IL MicroSA" "The dwelling unit is located in Rochelle, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rochester, MN MSA" "The dwelling unit is located in Rochester, MN MSA" -in.metropolitan_and_micropolitan_statistical_area "Rochester, NY MSA" "The dwelling unit is located in Rochester, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Rock Springs, WY MicroSA" "The dwelling unit is located in Rock Springs, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rockford, IL MSA" "The dwelling unit is located in Rockford, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Rockingham, NC MicroSA" "The dwelling unit is located in Rockingham, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rocky Mount, NC MSA" "The dwelling unit is located in Rocky Mount, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Rolla, MO MicroSA" "The dwelling unit is located in Rolla, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rome, GA MSA" "The dwelling unit is located in Rome, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Roseburg, OR MicroSA" "The dwelling unit is located in Roseburg, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Roswell, NM MicroSA" "The dwelling unit is located in Roswell, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Russellville, AR MicroSA" "The dwelling unit is located in Russellville, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Ruston, LA MicroSA" "The dwelling unit is located in Ruston, LA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Rutland, VT MicroSA" "The dwelling unit is located in Rutland, VT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sacramento--Roseville--Arden-Arcade, CA MSA" "The dwelling unit is located in Sacramento--Roseville--Arden-Arcade, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Safford, AZ MicroSA" "The dwelling unit is located in Safford, AZ MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Saginaw, MI MSA" "The dwelling unit is located in Saginaw, MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Salem, OH MicroSA" "The dwelling unit is located in Salem, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Salem, OR MSA" "The dwelling unit is located in Salem, OR MSA" -in.metropolitan_and_micropolitan_statistical_area "Salina, KS MicroSA" "The dwelling unit is located in Salina, KS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Salinas, CA MSA" "The dwelling unit is located in Salinas, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Salisbury, MD-DE MSA" "The dwelling unit is located in Salisbury, MD-DE MSA" -in.metropolitan_and_micropolitan_statistical_area "Salt Lake City, UT MSA" "The dwelling unit is located in Salt Lake City, UT MSA" -in.metropolitan_and_micropolitan_statistical_area "San Angelo, TX MSA" "The dwelling unit is located in San Angelo, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "San Antonio-New Braunfels, TX MSA" "The dwelling unit is located in San Antonio-New Braunfels, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "San Diego-Carlsbad, CA MSA" "The dwelling unit is located in San Diego-Carlsbad, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "San Francisco-Oakland-Hayward, CA MSA" "The dwelling unit is located in San Francisco-Oakland-Hayward, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "San Jose-Sunnyvale-Santa Clara, CA MSA" "The dwelling unit is located in San Jose-Sunnyvale-Santa Clara, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" "The dwelling unit is located in San Luis Obispo-Paso Robles-Arroyo Grande, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Sandpoint, ID MicroSA" "The dwelling unit is located in Sandpoint, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sandusky, OH MicroSA" "The dwelling unit is located in Sandusky, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sanford, NC MicroSA" "The dwelling unit is located in Sanford, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Santa Cruz-Watsonville, CA MSA" "The dwelling unit is located in Santa Cruz-Watsonville, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Santa Fe, NM MSA" "The dwelling unit is located in Santa Fe, NM MSA" -in.metropolitan_and_micropolitan_statistical_area "Santa Maria-Santa Barbara, CA MSA" "The dwelling unit is located in Santa Maria-Santa Barbara, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Santa Rosa, CA MSA" "The dwelling unit is located in Santa Rosa, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Sault Ste. Marie, MI MicroSA" "The dwelling unit is located in Sault Ste. Marie, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Savannah, GA MSA" "The dwelling unit is located in Savannah, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Sayre, PA MicroSA" "The dwelling unit is located in Sayre, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Scottsbluff, NE MicroSA" "The dwelling unit is located in Scottsbluff, NE MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Scottsboro, AL MicroSA" "The dwelling unit is located in Scottsboro, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Scranton--Wilkes-Barre--Hazleton, PA MSA" "The dwelling unit is located in Scranton--Wilkes-Barre--Hazleton, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Searcy, AR MicroSA" "The dwelling unit is located in Searcy, AR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Seattle-Tacoma-Bellevue, WA MSA" "The dwelling unit is located in Seattle-Tacoma-Bellevue, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Sebastian-Vero Beach, FL MSA" "The dwelling unit is located in Sebastian-Vero Beach, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Sebring, FL MSA" "The dwelling unit is located in Sebring, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Sedalia, MO MicroSA" "The dwelling unit is located in Sedalia, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Selinsgrove, PA MicroSA" "The dwelling unit is located in Selinsgrove, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Selma, AL MicroSA" "The dwelling unit is located in Selma, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Seneca Falls, NY MicroSA" "The dwelling unit is located in Seneca Falls, NY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Seneca, SC MicroSA" "The dwelling unit is located in Seneca, SC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sevierville, TN MicroSA" "The dwelling unit is located in Sevierville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Seymour, IN MicroSA" "The dwelling unit is located in Seymour, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Shawano, WI MicroSA" "The dwelling unit is located in Shawano, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Shawnee, OK MicroSA" "The dwelling unit is located in Shawnee, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sheboygan, WI MSA" "The dwelling unit is located in Sheboygan, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Shelby, NC MicroSA" "The dwelling unit is located in Shelby, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Shelbyville, TN MicroSA" "The dwelling unit is located in Shelbyville, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Shelton, WA MicroSA" "The dwelling unit is located in Shelton, WA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sheridan, WY MicroSA" "The dwelling unit is located in Sheridan, WY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sherman-Denison, TX MSA" "The dwelling unit is located in Sherman-Denison, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Show Low, AZ MicroSA" "The dwelling unit is located in Show Low, AZ MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Shreveport-Bossier City, LA MSA" "The dwelling unit is located in Shreveport-Bossier City, LA MSA" -in.metropolitan_and_micropolitan_statistical_area "Sidney, OH MicroSA" "The dwelling unit is located in Sidney, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sierra Vista-Douglas, AZ MSA" "The dwelling unit is located in Sierra Vista-Douglas, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Sikeston, MO MicroSA" "The dwelling unit is located in Sikeston, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Silver City, NM MicroSA" "The dwelling unit is located in Silver City, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sioux City, IA-NE-SD MSA" "The dwelling unit is located in Sioux City, IA-NE-SD MSA" -in.metropolitan_and_micropolitan_statistical_area "Sioux Falls, SD MSA" "The dwelling unit is located in Sioux Falls, SD MSA" -in.metropolitan_and_micropolitan_statistical_area "Snyder, TX MicroSA" "The dwelling unit is located in Snyder, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Somerset, KY MicroSA" "The dwelling unit is located in Somerset, KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Somerset, PA MicroSA" "The dwelling unit is located in Somerset, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sonora, CA MicroSA" "The dwelling unit is located in Sonora, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "South Bend-Mishawaka, IN-MI MSA" "The dwelling unit is located in South Bend-Mishawaka, IN-MI MSA" -in.metropolitan_and_micropolitan_statistical_area "Spartanburg, SC MSA" "The dwelling unit is located in Spartanburg, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Spearfish, SD MicroSA" "The dwelling unit is located in Spearfish, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Spencer, IA MicroSA" "The dwelling unit is located in Spencer, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Spirit Lake, IA MicroSA" "The dwelling unit is located in Spirit Lake, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Spokane-Spokane Valley, WA MSA" "The dwelling unit is located in Spokane-Spokane Valley, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Springfield, IL MSA" "The dwelling unit is located in Springfield, IL MSA" -in.metropolitan_and_micropolitan_statistical_area "Springfield, MA MSA" "The dwelling unit is located in Springfield, MA MSA" -in.metropolitan_and_micropolitan_statistical_area "Springfield, MO MSA" "The dwelling unit is located in Springfield, MO MSA" -in.metropolitan_and_micropolitan_statistical_area "Springfield, OH MSA" "The dwelling unit is located in Springfield, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "St. Cloud, MN MSA" "The dwelling unit is located in St. Cloud, MN MSA" -in.metropolitan_and_micropolitan_statistical_area "St. George, UT MSA" "The dwelling unit is located in St. George, UT MSA" -in.metropolitan_and_micropolitan_statistical_area "St. Joseph, MO-KS MSA" "The dwelling unit is located in St. Joseph, MO-KS MSA" -in.metropolitan_and_micropolitan_statistical_area "St. Louis, MO-IL MSA" "The dwelling unit is located in St. Louis, MO-IL MSA" -in.metropolitan_and_micropolitan_statistical_area "St. Marys, GA MicroSA" "The dwelling unit is located in St. Marys, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Starkville, MS MicroSA" "The dwelling unit is located in Starkville, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "State College, PA MSA" "The dwelling unit is located in State College, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Statesboro, GA MicroSA" "The dwelling unit is located in Statesboro, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Staunton-Waynesboro, VA MSA" "The dwelling unit is located in Staunton-Waynesboro, VA MSA" -in.metropolitan_and_micropolitan_statistical_area "Steamboat Springs, CO MicroSA" "The dwelling unit is located in Steamboat Springs, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Stephenville, TX MicroSA" "The dwelling unit is located in Stephenville, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sterling, CO MicroSA" "The dwelling unit is located in Sterling, CO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sterling, IL MicroSA" "The dwelling unit is located in Sterling, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Stevens Point, WI MicroSA" "The dwelling unit is located in Stevens Point, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Stillwater, OK MicroSA" "The dwelling unit is located in Stillwater, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Stockton-Lodi, CA MSA" "The dwelling unit is located in Stockton-Lodi, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Storm Lake, IA MicroSA" "The dwelling unit is located in Storm Lake, IA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sturgis, MI MicroSA" "The dwelling unit is located in Sturgis, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sulphur Springs, TX MicroSA" "The dwelling unit is located in Sulphur Springs, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Summerville, GA MicroSA" "The dwelling unit is located in Summerville, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Summit Park, UT MicroSA" "The dwelling unit is located in Summit Park, UT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sumter, SC MSA" "The dwelling unit is located in Sumter, SC MSA" -in.metropolitan_and_micropolitan_statistical_area "Sunbury, PA MicroSA" "The dwelling unit is located in Sunbury, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Susanville, CA MicroSA" "The dwelling unit is located in Susanville, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Sweetwater, TX MicroSA" "The dwelling unit is located in Sweetwater, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Syracuse, NY MSA" "The dwelling unit is located in Syracuse, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Tahlequah, OK MicroSA" "The dwelling unit is located in Tahlequah, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Talladega-Sylacauga, AL MicroSA" "The dwelling unit is located in Talladega-Sylacauga, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tallahassee, FL MSA" "The dwelling unit is located in Tallahassee, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Tampa-St. Petersburg-Clearwater, FL MSA" "The dwelling unit is located in Tampa-St. Petersburg-Clearwater, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Taos, NM MicroSA" "The dwelling unit is located in Taos, NM MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Taylorville, IL MicroSA" "The dwelling unit is located in Taylorville, IL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Terre Haute, IN MSA" "The dwelling unit is located in Terre Haute, IN MSA" -in.metropolitan_and_micropolitan_statistical_area "Texarkana, TX-AR MSA" "The dwelling unit is located in Texarkana, TX-AR MSA" -in.metropolitan_and_micropolitan_statistical_area "The Dalles, OR MicroSA" "The dwelling unit is located in The Dalles, OR MicroSA" -in.metropolitan_and_micropolitan_statistical_area "The Villages, FL MSA" "The dwelling unit is located in The Villages, FL MSA" -in.metropolitan_and_micropolitan_statistical_area "Thomaston, GA MicroSA" "The dwelling unit is located in Thomaston, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Thomasville, GA MicroSA" "The dwelling unit is located in Thomasville, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tiffin, OH MicroSA" "The dwelling unit is located in Tiffin, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tifton, GA MicroSA" "The dwelling unit is located in Tifton, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Toccoa, GA MicroSA" "The dwelling unit is located in Toccoa, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Toledo, OH MSA" "The dwelling unit is located in Toledo, OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Topeka, KS MSA" "The dwelling unit is located in Topeka, KS MSA" -in.metropolitan_and_micropolitan_statistical_area "Torrington, CT MicroSA" "The dwelling unit is located in Torrington, CT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Traverse City, MI MicroSA" "The dwelling unit is located in Traverse City, MI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Trenton, NJ MSA" "The dwelling unit is located in Trenton, NJ MSA" -in.metropolitan_and_micropolitan_statistical_area "Troy, AL MicroSA" "The dwelling unit is located in Troy, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Truckee-Grass Valley, CA MicroSA" "The dwelling unit is located in Truckee-Grass Valley, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tucson, AZ MSA" "The dwelling unit is located in Tucson, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Tullahoma-Manchester, TN MicroSA" "The dwelling unit is located in Tullahoma-Manchester, TN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tulsa, OK MSA" "The dwelling unit is located in Tulsa, OK MSA" -in.metropolitan_and_micropolitan_statistical_area "Tupelo, MS MicroSA" "The dwelling unit is located in Tupelo, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tuscaloosa, AL MSA" "The dwelling unit is located in Tuscaloosa, AL MSA" -in.metropolitan_and_micropolitan_statistical_area "Twin Falls, ID MicroSA" "The dwelling unit is located in Twin Falls, ID MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Tyler, TX MSA" "The dwelling unit is located in Tyler, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Ukiah, CA MicroSA" "The dwelling unit is located in Ukiah, CA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Union City, TN-KY MicroSA" "The dwelling unit is located in Union City, TN-KY MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Urban Honolulu, HI MSA" "The dwelling unit is located in Urban Honolulu, HI MSA" -in.metropolitan_and_micropolitan_statistical_area "Urbana, OH MicroSA" "The dwelling unit is located in Urbana, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Utica-Rome, NY MSA" "The dwelling unit is located in Utica-Rome, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Uvalde, TX MicroSA" "The dwelling unit is located in Uvalde, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Valdosta, GA MSA" "The dwelling unit is located in Valdosta, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Vallejo-Fairfield, CA MSA" "The dwelling unit is located in Vallejo-Fairfield, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Valley, AL MicroSA" "The dwelling unit is located in Valley, AL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Van Wert, OH MicroSA" "The dwelling unit is located in Van Wert, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vermillion, SD MicroSA" "The dwelling unit is located in Vermillion, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vernal, UT MicroSA" "The dwelling unit is located in Vernal, UT MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vernon, TX MicroSA" "The dwelling unit is located in Vernon, TX MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vicksburg, MS MicroSA" "The dwelling unit is located in Vicksburg, MS MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Victoria, TX MSA" "The dwelling unit is located in Victoria, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Vidalia, GA MicroSA" "The dwelling unit is located in Vidalia, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vincennes, IN MicroSA" "The dwelling unit is located in Vincennes, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Vineland-Bridgeton, NJ MSA" "The dwelling unit is located in Vineland-Bridgeton, NJ MSA" -in.metropolitan_and_micropolitan_statistical_area "Vineyard Haven, MA MicroSA" "The dwelling unit is located in Vineyard Haven, MA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Virginia Beach-Norfolk-Newport News, VA-NC MSA" "The dwelling unit is located in Virginia Beach-Norfolk-Newport News, VA-NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Visalia-Porterville, CA MSA" "The dwelling unit is located in Visalia-Porterville, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Wabash, IN MicroSA" "The dwelling unit is located in Wabash, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Waco, TX MSA" "The dwelling unit is located in Waco, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Wahpeton, ND-MN MicroSA" "The dwelling unit is located in Wahpeton, ND-MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Walla Walla, WA MSA" "The dwelling unit is located in Walla Walla, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Wapakoneta, OH MicroSA" "The dwelling unit is located in Wapakoneta, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Warner Robins, GA MSA" "The dwelling unit is located in Warner Robins, GA MSA" -in.metropolitan_and_micropolitan_statistical_area "Warren, PA MicroSA" "The dwelling unit is located in Warren, PA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Warrensburg, MO MicroSA" "The dwelling unit is located in Warrensburg, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Warsaw, IN MicroSA" "The dwelling unit is located in Warsaw, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Washington Court House, OH MicroSA" "The dwelling unit is located in Washington Court House, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Washington, IN MicroSA" "The dwelling unit is located in Washington, IN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Washington, NC MicroSA" "The dwelling unit is located in Washington, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" "The dwelling unit is located in Washington-Arlington-Alexandria, DC-VA-MD-WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Waterloo-Cedar Falls, IA MSA" "The dwelling unit is located in Waterloo-Cedar Falls, IA MSA" -in.metropolitan_and_micropolitan_statistical_area "Watertown, SD MicroSA" "The dwelling unit is located in Watertown, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Watertown-Fort Atkinson, WI MicroSA" "The dwelling unit is located in Watertown-Fort Atkinson, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Watertown-Fort Drum, NY MSA" "The dwelling unit is located in Watertown-Fort Drum, NY MSA" -in.metropolitan_and_micropolitan_statistical_area "Wauchula, FL MicroSA" "The dwelling unit is located in Wauchula, FL MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wausau, WI MSA" "The dwelling unit is located in Wausau, WI MSA" -in.metropolitan_and_micropolitan_statistical_area "Waycross, GA MicroSA" "The dwelling unit is located in Waycross, GA MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Weatherford, OK MicroSA" "The dwelling unit is located in Weatherford, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Weirton-Steubenville, WV-OH MSA" "The dwelling unit is located in Weirton-Steubenville, WV-OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Wenatchee, WA MSA" "The dwelling unit is located in Wenatchee, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "West Plains, MO MicroSA" "The dwelling unit is located in West Plains, MO MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wheeling, WV-OH MSA" "The dwelling unit is located in Wheeling, WV-OH MSA" -in.metropolitan_and_micropolitan_statistical_area "Whitewater-Elkhorn, WI MicroSA" "The dwelling unit is located in Whitewater-Elkhorn, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wichita Falls, TX MSA" "The dwelling unit is located in Wichita Falls, TX MSA" -in.metropolitan_and_micropolitan_statistical_area "Wichita, KS MSA" "The dwelling unit is located in Wichita, KS MSA" -in.metropolitan_and_micropolitan_statistical_area "Williamsport, PA MSA" "The dwelling unit is located in Williamsport, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Williston, ND MicroSA" "The dwelling unit is located in Williston, ND MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Willmar, MN MicroSA" "The dwelling unit is located in Willmar, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wilmington, NC MSA" "The dwelling unit is located in Wilmington, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Wilmington, OH MicroSA" "The dwelling unit is located in Wilmington, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wilson, NC MicroSA" "The dwelling unit is located in Wilson, NC MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Winchester, VA-WV MSA" "The dwelling unit is located in Winchester, VA-WV MSA" -in.metropolitan_and_micropolitan_statistical_area "Winnemucca, NV MicroSA" "The dwelling unit is located in Winnemucca, NV MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Winona, MN MicroSA" "The dwelling unit is located in Winona, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Winston-Salem, NC MSA" "The dwelling unit is located in Winston-Salem, NC MSA" -in.metropolitan_and_micropolitan_statistical_area "Wisconsin Rapids-Marshfield, WI MicroSA" "The dwelling unit is located in Wisconsin Rapids-Marshfield, WI MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Woodward, OK MicroSA" "The dwelling unit is located in Woodward, OK MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Wooster, OH MicroSA" "The dwelling unit is located in Wooster, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Worcester, MA-CT MSA" "The dwelling unit is located in Worcester, MA-CT MSA" -in.metropolitan_and_micropolitan_statistical_area "Worthington, MN MicroSA" "The dwelling unit is located in Worthington, MN MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Yakima, WA MSA" "The dwelling unit is located in Yakima, WA MSA" -in.metropolitan_and_micropolitan_statistical_area "Yankton, SD MicroSA" "The dwelling unit is located in Yankton, SD MicroSA" -in.metropolitan_and_micropolitan_statistical_area "York-Hanover, PA MSA" "The dwelling unit is located in York-Hanover, PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Youngstown-Warren-Boardman, OH-PA MSA" "The dwelling unit is located in Youngstown-Warren-Boardman, OH-PA MSA" -in.metropolitan_and_micropolitan_statistical_area "Yuba City, CA MSA" "The dwelling unit is located in Yuba City, CA MSA" -in.metropolitan_and_micropolitan_statistical_area "Yuma, AZ MSA" "The dwelling unit is located in Yuma, AZ MSA" -in.metropolitan_and_micropolitan_statistical_area "Zanesville, OH MicroSA" "The dwelling unit is located in Zanesville, OH MicroSA" -in.metropolitan_and_micropolitan_statistical_area "Zapata, TX MicroSA" "The dwelling unit is located in Zapata, TX MicroSA" -in.misc_extra_refrigerator EF 10.2 Extra refrigerator with energy factor 10.2 -in.misc_extra_refrigerator EF 10.5 Extra refrigerator with energy factor 10.5 -in.misc_extra_refrigerator EF 15.9 Extra refrigerator with energy factor 15.9 -in.misc_extra_refrigerator EF 17.6 Extra refrigerator with energy factor 17.6 -in.misc_extra_refrigerator EF 19.9 Extra refrigerator with energy factor 19.9 -in.misc_extra_refrigerator EF 21.9 Extra refrigerator with energy factor 21.9 -in.misc_extra_refrigerator EF 6.7 Extra refrigerator with energy factor 6.7 -in.misc_extra_refrigerator None No extra refrigerator -in.misc_freezer "EF 12, National Average" "Stand-alone freezer with energy factor 12, scaled to the national average freezer usage" -in.misc_freezer None No stand-alone freezer -in.misc_gas_fireplace Gas Fireplace Natural gas fueled fireplace -in.misc_gas_fireplace None No gas fireplace -in.misc_gas_grill Gas Grill Natural gas fueled grill -in.misc_gas_grill None No gas grill -in.misc_gas_lighting Gas Lighting Has gas lighting -in.misc_gas_lighting None No gas lighting -in.misc_hot_tub_spa Electricity Electrically-heated hot tub -in.misc_hot_tub_spa Natural Gas Natural gas-heated hot tub -in.misc_hot_tub_spa None No hot tub -in.misc_hot_tub_spa Other Fuel Other fuel-heated hot tub -in.misc_pool Has Pool Housing unit has a pool -in.misc_pool None Housing unit does not have a pool -in.misc_pool_heater Electric Heat Pump Electric Heat Pump-heated pool -in.misc_pool_heater Electricity Electrically-heated pool -in.misc_pool_heater Natural Gas Natural gas-heated pool -in.misc_pool_heater None No pool heater -in.misc_pool_heater Other Fuel Other fuel-heated pool -in.misc_pool_pump 1.0 HP Pump 1.0 HP pool pump -in.misc_pool_pump None No pool pump -in.misc_well_pump None No well pump -in.misc_well_pump Typical Efficiency Well pump with energy usage of 400kWh/yr -in.natural_ventilation "Cooling Season, 7 days/wk" Venitlation from windows 3 days per week for the full year -in.neighbors 12 12 ft distance between the building and the nearest neighbors to the left and right -in.neighbors 2 2 ft distance between the building and the nearest neighbors to the left and right -in.neighbors 27 27 ft distance between the building and the nearest neighbors to the left and right -in.neighbors 4 4 ft distance between the building and the nearest neighbors to the left and right -in.neighbors 7 7 ft distance between the building and the nearest neighbors to the left and right -in.neighbors Left/Right at 15ft 15 ft distance between the building and the nearest neighbors to the left and right -in.neighbors None No immediate neighbors in any direction -in.occupants 0 0 occupants live in the building -in.occupants 1 1 occupant lives in the building -in.occupants 10+ 10+ occupants live in the building -in.occupants 2 2 occupants live in the building -in.occupants 3 3 occupants live in the building -in.occupants 4 4 occupants live in the building -in.occupants 5 5 occupants live in the building -in.occupants 6 6 occupants live in the building -in.occupants 7 7 occupants live in the building -in.occupants 8 8 occupants live in the building -in.occupants 9 9 occupants live in the building -in.orientation East Housing unit faces east -in.orientation North Housing unit faces north -in.orientation Northeast Housing unit faces northeast -in.orientation Northwest Housing unit faces northwest -in.orientation South Housing unit faces south -in.orientation Southeast Housing unit faces southeast -in.orientation Southwest Housing unit faces southwest -in.orientation West Housing unit faces west -in.overhangs None No overhangs above windows -in.plug_load_diversity 100% Applies further diversity to the plug load usage with a 1.0 multiplier -in.plug_load_diversity 200% Applies further diversity to the plug load usage with a 2.0 multiplier -in.plug_load_diversity 50% Applies further diversity to the plug load usage with a 0.5 multiplier -in.plug_loads 100% Plug load usage is 100% of the national average -in.plug_loads 101% Plug load usage is 101% of the national average -in.plug_loads 102% Plug load usage is 102% of the national average -in.plug_loads 103% Plug load usage is 103% of the national average -in.plug_loads 104% Plug load usage is 104% of the national average -in.plug_loads 105% Plug load usage is 105% of the national average -in.plug_loads 106% Plug load usage is 106% of the national average -in.plug_loads 108% Plug load usage is 108% of the national average -in.plug_loads 110% Plug load usage is 110% of the national average -in.plug_loads 113% Plug load usage is 113% of the national average -in.plug_loads 119% Plug load usage is 119% of the national average -in.plug_loads 121% Plug load usage is 121% of the national average -in.plug_loads 123% Plug load usage is 123% of the national average -in.plug_loads 134% Plug load usage is 134% of the national average -in.plug_loads 137% Plug load usage is 137% of the national average -in.plug_loads 140% Plug load usage is 140% of the national average -in.plug_loads 144% Plug load usage is 144% of the national average -in.plug_loads 166% Plug load usage is 166% of the national average -in.plug_loads 78% Plug load usage is 78% of the national average -in.plug_loads 79% Plug load usage is 79% of the national average -in.plug_loads 82% Plug load usage is 82% of the national average -in.plug_loads 84% Plug load usage is 84% of the national average -in.plug_loads 85% Plug load usage is 85% of the national average -in.plug_loads 86% Plug load usage is 86% of the national average -in.plug_loads 89% Plug load usage is 89% of the national average -in.plug_loads 91% Plug load usage is 91% of the national average -in.plug_loads 94% Plug load usage is 94% of the national average -in.plug_loads 95% Plug load usage is 95% of the national average -in.plug_loads 96% Plug load usage is 96% of the national average -in.plug_loads 97% Plug load usage is 97% of the national average -in.plug_loads 99% Plug load usage is 99% of the national average -in.puma "AK, 00101" "The dwelling unit is located in AK, the NHGIS PUMA code is 00101" -in.puma "AK, 00102" "The dwelling unit is located in AK, the NHGIS PUMA code is 00102" -in.puma "AK, 00200" "The dwelling unit is located in AK, the NHGIS PUMA code is 00200" -in.puma "AK, 00300" "The dwelling unit is located in AK, the NHGIS PUMA code is 00300" -in.puma "AK, 00400" "The dwelling unit is located in AK, the NHGIS PUMA code is 00400" -in.puma "AL, 00100" "The dwelling unit is located in AL, the NHGIS PUMA code is 00100" -in.puma "AL, 00200" "The dwelling unit is located in AL, the NHGIS PUMA code is 00200" -in.puma "AL, 00301" "The dwelling unit is located in AL, the NHGIS PUMA code is 00301" -in.puma "AL, 00302" "The dwelling unit is located in AL, the NHGIS PUMA code is 00302" -in.puma "AL, 00400" "The dwelling unit is located in AL, the NHGIS PUMA code is 00400" -in.puma "AL, 00500" "The dwelling unit is located in AL, the NHGIS PUMA code is 00500" -in.puma "AL, 00600" "The dwelling unit is located in AL, the NHGIS PUMA code is 00600" -in.puma "AL, 00700" "The dwelling unit is located in AL, the NHGIS PUMA code is 00700" -in.puma "AL, 00800" "The dwelling unit is located in AL, the NHGIS PUMA code is 00800" -in.puma "AL, 00900" "The dwelling unit is located in AL, the NHGIS PUMA code is 00900" -in.puma "AL, 01000" "The dwelling unit is located in AL, the NHGIS PUMA code is 01000" -in.puma "AL, 01100" "The dwelling unit is located in AL, the NHGIS PUMA code is 01100" -in.puma "AL, 01200" "The dwelling unit is located in AL, the NHGIS PUMA code is 01200" -in.puma "AL, 01301" "The dwelling unit is located in AL, the NHGIS PUMA code is 01301" -in.puma "AL, 01302" "The dwelling unit is located in AL, the NHGIS PUMA code is 01302" -in.puma "AL, 01303" "The dwelling unit is located in AL, the NHGIS PUMA code is 01303" -in.puma "AL, 01304" "The dwelling unit is located in AL, the NHGIS PUMA code is 01304" -in.puma "AL, 01305" "The dwelling unit is located in AL, the NHGIS PUMA code is 01305" -in.puma "AL, 01400" "The dwelling unit is located in AL, the NHGIS PUMA code is 01400" -in.puma "AL, 01500" "The dwelling unit is located in AL, the NHGIS PUMA code is 01500" -in.puma "AL, 01600" "The dwelling unit is located in AL, the NHGIS PUMA code is 01600" -in.puma "AL, 01700" "The dwelling unit is located in AL, the NHGIS PUMA code is 01700" -in.puma "AL, 01800" "The dwelling unit is located in AL, the NHGIS PUMA code is 01800" -in.puma "AL, 01900" "The dwelling unit is located in AL, the NHGIS PUMA code is 01900" -in.puma "AL, 02000" "The dwelling unit is located in AL, the NHGIS PUMA code is 02000" -in.puma "AL, 02100" "The dwelling unit is located in AL, the NHGIS PUMA code is 02100" -in.puma "AL, 02200" "The dwelling unit is located in AL, the NHGIS PUMA code is 02200" -in.puma "AL, 02300" "The dwelling unit is located in AL, the NHGIS PUMA code is 02300" -in.puma "AL, 02400" "The dwelling unit is located in AL, the NHGIS PUMA code is 02400" -in.puma "AL, 02500" "The dwelling unit is located in AL, the NHGIS PUMA code is 02500" -in.puma "AL, 02600" "The dwelling unit is located in AL, the NHGIS PUMA code is 02600" -in.puma "AL, 02701" "The dwelling unit is located in AL, the NHGIS PUMA code is 02701" -in.puma "AL, 02702" "The dwelling unit is located in AL, the NHGIS PUMA code is 02702" -in.puma "AL, 02703" "The dwelling unit is located in AL, the NHGIS PUMA code is 02703" -in.puma "AR, 00100" "The dwelling unit is located in AR, the NHGIS PUMA code is 00100" -in.puma "AR, 00200" "The dwelling unit is located in AR, the NHGIS PUMA code is 00200" -in.puma "AR, 00300" "The dwelling unit is located in AR, the NHGIS PUMA code is 00300" -in.puma "AR, 00400" "The dwelling unit is located in AR, the NHGIS PUMA code is 00400" -in.puma "AR, 00500" "The dwelling unit is located in AR, the NHGIS PUMA code is 00500" -in.puma "AR, 00600" "The dwelling unit is located in AR, the NHGIS PUMA code is 00600" -in.puma "AR, 00700" "The dwelling unit is located in AR, the NHGIS PUMA code is 00700" -in.puma "AR, 00800" "The dwelling unit is located in AR, the NHGIS PUMA code is 00800" -in.puma "AR, 00900" "The dwelling unit is located in AR, the NHGIS PUMA code is 00900" -in.puma "AR, 01000" "The dwelling unit is located in AR, the NHGIS PUMA code is 01000" -in.puma "AR, 01100" "The dwelling unit is located in AR, the NHGIS PUMA code is 01100" -in.puma "AR, 01200" "The dwelling unit is located in AR, the NHGIS PUMA code is 01200" -in.puma "AR, 01300" "The dwelling unit is located in AR, the NHGIS PUMA code is 01300" -in.puma "AR, 01400" "The dwelling unit is located in AR, the NHGIS PUMA code is 01400" -in.puma "AR, 01500" "The dwelling unit is located in AR, the NHGIS PUMA code is 01500" -in.puma "AR, 01600" "The dwelling unit is located in AR, the NHGIS PUMA code is 01600" -in.puma "AR, 01700" "The dwelling unit is located in AR, the NHGIS PUMA code is 01700" -in.puma "AR, 01800" "The dwelling unit is located in AR, the NHGIS PUMA code is 01800" -in.puma "AR, 01900" "The dwelling unit is located in AR, the NHGIS PUMA code is 01900" -in.puma "AR, 02000" "The dwelling unit is located in AR, the NHGIS PUMA code is 02000" -in.puma "AZ, 00100" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00100" -in.puma "AZ, 00101" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00101" -in.puma "AZ, 00102" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00102" -in.puma "AZ, 00103" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00103" -in.puma "AZ, 00104" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00104" -in.puma "AZ, 00105" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00105" -in.puma "AZ, 00106" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00106" -in.puma "AZ, 00107" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00107" -in.puma "AZ, 00108" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00108" -in.puma "AZ, 00109" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00109" -in.puma "AZ, 00110" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00110" -in.puma "AZ, 00111" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00111" -in.puma "AZ, 00112" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00112" -in.puma "AZ, 00113" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00113" -in.puma "AZ, 00114" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00114" -in.puma "AZ, 00115" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00115" -in.puma "AZ, 00116" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00116" -in.puma "AZ, 00117" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00117" -in.puma "AZ, 00118" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00118" -in.puma "AZ, 00119" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00119" -in.puma "AZ, 00120" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00120" -in.puma "AZ, 00121" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00121" -in.puma "AZ, 00122" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00122" -in.puma "AZ, 00123" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00123" -in.puma "AZ, 00124" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00124" -in.puma "AZ, 00125" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00125" -in.puma "AZ, 00126" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00126" -in.puma "AZ, 00127" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00127" -in.puma "AZ, 00128" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00128" -in.puma "AZ, 00129" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00129" -in.puma "AZ, 00130" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00130" -in.puma "AZ, 00131" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00131" -in.puma "AZ, 00132" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00132" -in.puma "AZ, 00133" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00133" -in.puma "AZ, 00134" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00134" -in.puma "AZ, 00201" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00201" -in.puma "AZ, 00202" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00202" -in.puma "AZ, 00203" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00203" -in.puma "AZ, 00204" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00204" -in.puma "AZ, 00205" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00205" -in.puma "AZ, 00206" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00206" -in.puma "AZ, 00207" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00207" -in.puma "AZ, 00208" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00208" -in.puma "AZ, 00209" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00209" -in.puma "AZ, 00300" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00300" -in.puma "AZ, 00400" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00400" -in.puma "AZ, 00500" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00500" -in.puma "AZ, 00600" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00600" -in.puma "AZ, 00700" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00700" -in.puma "AZ, 00800" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00800" -in.puma "AZ, 00803" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00803" -in.puma "AZ, 00805" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00805" -in.puma "AZ, 00807" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00807" -in.puma "AZ, 00900" "The dwelling unit is located in AZ, the NHGIS PUMA code is 00900" -in.puma "CA, 00101" "The dwelling unit is located in CA, the NHGIS PUMA code is 00101" -in.puma "CA, 00102" "The dwelling unit is located in CA, the NHGIS PUMA code is 00102" -in.puma "CA, 00103" "The dwelling unit is located in CA, the NHGIS PUMA code is 00103" -in.puma "CA, 00104" "The dwelling unit is located in CA, the NHGIS PUMA code is 00104" -in.puma "CA, 00105" "The dwelling unit is located in CA, the NHGIS PUMA code is 00105" -in.puma "CA, 00106" "The dwelling unit is located in CA, the NHGIS PUMA code is 00106" -in.puma "CA, 00107" "The dwelling unit is located in CA, the NHGIS PUMA code is 00107" -in.puma "CA, 00108" "The dwelling unit is located in CA, the NHGIS PUMA code is 00108" -in.puma "CA, 00109" "The dwelling unit is located in CA, the NHGIS PUMA code is 00109" -in.puma "CA, 00110" "The dwelling unit is located in CA, the NHGIS PUMA code is 00110" -in.puma "CA, 00300" "The dwelling unit is located in CA, the NHGIS PUMA code is 00300" -in.puma "CA, 00701" "The dwelling unit is located in CA, the NHGIS PUMA code is 00701" -in.puma "CA, 00702" "The dwelling unit is located in CA, the NHGIS PUMA code is 00702" -in.puma "CA, 01100" "The dwelling unit is located in CA, the NHGIS PUMA code is 01100" -in.puma "CA, 01301" "The dwelling unit is located in CA, the NHGIS PUMA code is 01301" -in.puma "CA, 01302" "The dwelling unit is located in CA, the NHGIS PUMA code is 01302" -in.puma "CA, 01303" "The dwelling unit is located in CA, the NHGIS PUMA code is 01303" -in.puma "CA, 01304" "The dwelling unit is located in CA, the NHGIS PUMA code is 01304" -in.puma "CA, 01305" "The dwelling unit is located in CA, the NHGIS PUMA code is 01305" -in.puma "CA, 01306" "The dwelling unit is located in CA, the NHGIS PUMA code is 01306" -in.puma "CA, 01307" "The dwelling unit is located in CA, the NHGIS PUMA code is 01307" -in.puma "CA, 01308" "The dwelling unit is located in CA, the NHGIS PUMA code is 01308" -in.puma "CA, 01309" "The dwelling unit is located in CA, the NHGIS PUMA code is 01309" -in.puma "CA, 01500" "The dwelling unit is located in CA, the NHGIS PUMA code is 01500" -in.puma "CA, 01700" "The dwelling unit is located in CA, the NHGIS PUMA code is 01700" -in.puma "CA, 01901" "The dwelling unit is located in CA, the NHGIS PUMA code is 01901" -in.puma "CA, 01902" "The dwelling unit is located in CA, the NHGIS PUMA code is 01902" -in.puma "CA, 01903" "The dwelling unit is located in CA, the NHGIS PUMA code is 01903" -in.puma "CA, 01904" "The dwelling unit is located in CA, the NHGIS PUMA code is 01904" -in.puma "CA, 01905" "The dwelling unit is located in CA, the NHGIS PUMA code is 01905" -in.puma "CA, 01906" "The dwelling unit is located in CA, the NHGIS PUMA code is 01906" -in.puma "CA, 01907" "The dwelling unit is located in CA, the NHGIS PUMA code is 01907" -in.puma "CA, 02300" "The dwelling unit is located in CA, the NHGIS PUMA code is 02300" -in.puma "CA, 02500" "The dwelling unit is located in CA, the NHGIS PUMA code is 02500" -in.puma "CA, 02901" "The dwelling unit is located in CA, the NHGIS PUMA code is 02901" -in.puma "CA, 02902" "The dwelling unit is located in CA, the NHGIS PUMA code is 02902" -in.puma "CA, 02903" "The dwelling unit is located in CA, the NHGIS PUMA code is 02903" -in.puma "CA, 02904" "The dwelling unit is located in CA, the NHGIS PUMA code is 02904" -in.puma "CA, 02905" "The dwelling unit is located in CA, the NHGIS PUMA code is 02905" -in.puma "CA, 03100" "The dwelling unit is located in CA, the NHGIS PUMA code is 03100" -in.puma "CA, 03300" "The dwelling unit is located in CA, the NHGIS PUMA code is 03300" -in.puma "CA, 03701" "The dwelling unit is located in CA, the NHGIS PUMA code is 03701" -in.puma "CA, 03702" "The dwelling unit is located in CA, the NHGIS PUMA code is 03702" -in.puma "CA, 03703" "The dwelling unit is located in CA, the NHGIS PUMA code is 03703" -in.puma "CA, 03704" "The dwelling unit is located in CA, the NHGIS PUMA code is 03704" -in.puma "CA, 03705" "The dwelling unit is located in CA, the NHGIS PUMA code is 03705" -in.puma "CA, 03706" "The dwelling unit is located in CA, the NHGIS PUMA code is 03706" -in.puma "CA, 03707" "The dwelling unit is located in CA, the NHGIS PUMA code is 03707" -in.puma "CA, 03708" "The dwelling unit is located in CA, the NHGIS PUMA code is 03708" -in.puma "CA, 03709" "The dwelling unit is located in CA, the NHGIS PUMA code is 03709" -in.puma "CA, 03710" "The dwelling unit is located in CA, the NHGIS PUMA code is 03710" -in.puma "CA, 03711" "The dwelling unit is located in CA, the NHGIS PUMA code is 03711" -in.puma "CA, 03712" "The dwelling unit is located in CA, the NHGIS PUMA code is 03712" -in.puma "CA, 03713" "The dwelling unit is located in CA, the NHGIS PUMA code is 03713" -in.puma "CA, 03714" "The dwelling unit is located in CA, the NHGIS PUMA code is 03714" -in.puma "CA, 03715" "The dwelling unit is located in CA, the NHGIS PUMA code is 03715" -in.puma "CA, 03716" "The dwelling unit is located in CA, the NHGIS PUMA code is 03716" -in.puma "CA, 03717" "The dwelling unit is located in CA, the NHGIS PUMA code is 03717" -in.puma "CA, 03718" "The dwelling unit is located in CA, the NHGIS PUMA code is 03718" -in.puma "CA, 03719" "The dwelling unit is located in CA, the NHGIS PUMA code is 03719" -in.puma "CA, 03720" "The dwelling unit is located in CA, the NHGIS PUMA code is 03720" -in.puma "CA, 03721" "The dwelling unit is located in CA, the NHGIS PUMA code is 03721" -in.puma "CA, 03722" "The dwelling unit is located in CA, the NHGIS PUMA code is 03722" -in.puma "CA, 03723" "The dwelling unit is located in CA, the NHGIS PUMA code is 03723" -in.puma "CA, 03724" "The dwelling unit is located in CA, the NHGIS PUMA code is 03724" -in.puma "CA, 03725" "The dwelling unit is located in CA, the NHGIS PUMA code is 03725" -in.puma "CA, 03726" "The dwelling unit is located in CA, the NHGIS PUMA code is 03726" -in.puma "CA, 03727" "The dwelling unit is located in CA, the NHGIS PUMA code is 03727" -in.puma "CA, 03728" "The dwelling unit is located in CA, the NHGIS PUMA code is 03728" -in.puma "CA, 03729" "The dwelling unit is located in CA, the NHGIS PUMA code is 03729" -in.puma "CA, 03730" "The dwelling unit is located in CA, the NHGIS PUMA code is 03730" -in.puma "CA, 03731" "The dwelling unit is located in CA, the NHGIS PUMA code is 03731" -in.puma "CA, 03732" "The dwelling unit is located in CA, the NHGIS PUMA code is 03732" -in.puma "CA, 03733" "The dwelling unit is located in CA, the NHGIS PUMA code is 03733" -in.puma "CA, 03734" "The dwelling unit is located in CA, the NHGIS PUMA code is 03734" -in.puma "CA, 03735" "The dwelling unit is located in CA, the NHGIS PUMA code is 03735" -in.puma "CA, 03736" "The dwelling unit is located in CA, the NHGIS PUMA code is 03736" -in.puma "CA, 03737" "The dwelling unit is located in CA, the NHGIS PUMA code is 03737" -in.puma "CA, 03738" "The dwelling unit is located in CA, the NHGIS PUMA code is 03738" -in.puma "CA, 03739" "The dwelling unit is located in CA, the NHGIS PUMA code is 03739" -in.puma "CA, 03740" "The dwelling unit is located in CA, the NHGIS PUMA code is 03740" -in.puma "CA, 03741" "The dwelling unit is located in CA, the NHGIS PUMA code is 03741" -in.puma "CA, 03742" "The dwelling unit is located in CA, the NHGIS PUMA code is 03742" -in.puma "CA, 03743" "The dwelling unit is located in CA, the NHGIS PUMA code is 03743" -in.puma "CA, 03744" "The dwelling unit is located in CA, the NHGIS PUMA code is 03744" -in.puma "CA, 03745" "The dwelling unit is located in CA, the NHGIS PUMA code is 03745" -in.puma "CA, 03746" "The dwelling unit is located in CA, the NHGIS PUMA code is 03746" -in.puma "CA, 03747" "The dwelling unit is located in CA, the NHGIS PUMA code is 03747" -in.puma "CA, 03748" "The dwelling unit is located in CA, the NHGIS PUMA code is 03748" -in.puma "CA, 03749" "The dwelling unit is located in CA, the NHGIS PUMA code is 03749" -in.puma "CA, 03750" "The dwelling unit is located in CA, the NHGIS PUMA code is 03750" -in.puma "CA, 03751" "The dwelling unit is located in CA, the NHGIS PUMA code is 03751" -in.puma "CA, 03752" "The dwelling unit is located in CA, the NHGIS PUMA code is 03752" -in.puma "CA, 03753" "The dwelling unit is located in CA, the NHGIS PUMA code is 03753" -in.puma "CA, 03754" "The dwelling unit is located in CA, the NHGIS PUMA code is 03754" -in.puma "CA, 03755" "The dwelling unit is located in CA, the NHGIS PUMA code is 03755" -in.puma "CA, 03756" "The dwelling unit is located in CA, the NHGIS PUMA code is 03756" -in.puma "CA, 03757" "The dwelling unit is located in CA, the NHGIS PUMA code is 03757" -in.puma "CA, 03758" "The dwelling unit is located in CA, the NHGIS PUMA code is 03758" -in.puma "CA, 03759" "The dwelling unit is located in CA, the NHGIS PUMA code is 03759" -in.puma "CA, 03760" "The dwelling unit is located in CA, the NHGIS PUMA code is 03760" -in.puma "CA, 03761" "The dwelling unit is located in CA, the NHGIS PUMA code is 03761" -in.puma "CA, 03762" "The dwelling unit is located in CA, the NHGIS PUMA code is 03762" -in.puma "CA, 03763" "The dwelling unit is located in CA, the NHGIS PUMA code is 03763" -in.puma "CA, 03764" "The dwelling unit is located in CA, the NHGIS PUMA code is 03764" -in.puma "CA, 03765" "The dwelling unit is located in CA, the NHGIS PUMA code is 03765" -in.puma "CA, 03766" "The dwelling unit is located in CA, the NHGIS PUMA code is 03766" -in.puma "CA, 03767" "The dwelling unit is located in CA, the NHGIS PUMA code is 03767" -in.puma "CA, 03768" "The dwelling unit is located in CA, the NHGIS PUMA code is 03768" -in.puma "CA, 03769" "The dwelling unit is located in CA, the NHGIS PUMA code is 03769" -in.puma "CA, 03900" "The dwelling unit is located in CA, the NHGIS PUMA code is 03900" -in.puma "CA, 04101" "The dwelling unit is located in CA, the NHGIS PUMA code is 04101" -in.puma "CA, 04102" "The dwelling unit is located in CA, the NHGIS PUMA code is 04102" -in.puma "CA, 04701" "The dwelling unit is located in CA, the NHGIS PUMA code is 04701" -in.puma "CA, 04702" "The dwelling unit is located in CA, the NHGIS PUMA code is 04702" -in.puma "CA, 05301" "The dwelling unit is located in CA, the NHGIS PUMA code is 05301" -in.puma "CA, 05302" "The dwelling unit is located in CA, the NHGIS PUMA code is 05302" -in.puma "CA, 05303" "The dwelling unit is located in CA, the NHGIS PUMA code is 05303" -in.puma "CA, 05500" "The dwelling unit is located in CA, the NHGIS PUMA code is 05500" -in.puma "CA, 05700" "The dwelling unit is located in CA, the NHGIS PUMA code is 05700" -in.puma "CA, 05901" "The dwelling unit is located in CA, the NHGIS PUMA code is 05901" -in.puma "CA, 05902" "The dwelling unit is located in CA, the NHGIS PUMA code is 05902" -in.puma "CA, 05903" "The dwelling unit is located in CA, the NHGIS PUMA code is 05903" -in.puma "CA, 05904" "The dwelling unit is located in CA, the NHGIS PUMA code is 05904" -in.puma "CA, 05905" "The dwelling unit is located in CA, the NHGIS PUMA code is 05905" -in.puma "CA, 05906" "The dwelling unit is located in CA, the NHGIS PUMA code is 05906" -in.puma "CA, 05907" "The dwelling unit is located in CA, the NHGIS PUMA code is 05907" -in.puma "CA, 05908" "The dwelling unit is located in CA, the NHGIS PUMA code is 05908" -in.puma "CA, 05909" "The dwelling unit is located in CA, the NHGIS PUMA code is 05909" -in.puma "CA, 05910" "The dwelling unit is located in CA, the NHGIS PUMA code is 05910" -in.puma "CA, 05911" "The dwelling unit is located in CA, the NHGIS PUMA code is 05911" -in.puma "CA, 05912" "The dwelling unit is located in CA, the NHGIS PUMA code is 05912" -in.puma "CA, 05913" "The dwelling unit is located in CA, the NHGIS PUMA code is 05913" -in.puma "CA, 05914" "The dwelling unit is located in CA, the NHGIS PUMA code is 05914" -in.puma "CA, 05915" "The dwelling unit is located in CA, the NHGIS PUMA code is 05915" -in.puma "CA, 05916" "The dwelling unit is located in CA, the NHGIS PUMA code is 05916" -in.puma "CA, 05917" "The dwelling unit is located in CA, the NHGIS PUMA code is 05917" -in.puma "CA, 05918" "The dwelling unit is located in CA, the NHGIS PUMA code is 05918" -in.puma "CA, 06101" "The dwelling unit is located in CA, the NHGIS PUMA code is 06101" -in.puma "CA, 06102" "The dwelling unit is located in CA, the NHGIS PUMA code is 06102" -in.puma "CA, 06103" "The dwelling unit is located in CA, the NHGIS PUMA code is 06103" -in.puma "CA, 06501" "The dwelling unit is located in CA, the NHGIS PUMA code is 06501" -in.puma "CA, 06502" "The dwelling unit is located in CA, the NHGIS PUMA code is 06502" -in.puma "CA, 06503" "The dwelling unit is located in CA, the NHGIS PUMA code is 06503" -in.puma "CA, 06504" "The dwelling unit is located in CA, the NHGIS PUMA code is 06504" -in.puma "CA, 06505" "The dwelling unit is located in CA, the NHGIS PUMA code is 06505" -in.puma "CA, 06506" "The dwelling unit is located in CA, the NHGIS PUMA code is 06506" -in.puma "CA, 06507" "The dwelling unit is located in CA, the NHGIS PUMA code is 06507" -in.puma "CA, 06508" "The dwelling unit is located in CA, the NHGIS PUMA code is 06508" -in.puma "CA, 06509" "The dwelling unit is located in CA, the NHGIS PUMA code is 06509" -in.puma "CA, 06510" "The dwelling unit is located in CA, the NHGIS PUMA code is 06510" -in.puma "CA, 06511" "The dwelling unit is located in CA, the NHGIS PUMA code is 06511" -in.puma "CA, 06512" "The dwelling unit is located in CA, the NHGIS PUMA code is 06512" -in.puma "CA, 06513" "The dwelling unit is located in CA, the NHGIS PUMA code is 06513" -in.puma "CA, 06514" "The dwelling unit is located in CA, the NHGIS PUMA code is 06514" -in.puma "CA, 06515" "The dwelling unit is located in CA, the NHGIS PUMA code is 06515" -in.puma "CA, 06701" "The dwelling unit is located in CA, the NHGIS PUMA code is 06701" -in.puma "CA, 06702" "The dwelling unit is located in CA, the NHGIS PUMA code is 06702" -in.puma "CA, 06703" "The dwelling unit is located in CA, the NHGIS PUMA code is 06703" -in.puma "CA, 06704" "The dwelling unit is located in CA, the NHGIS PUMA code is 06704" -in.puma "CA, 06705" "The dwelling unit is located in CA, the NHGIS PUMA code is 06705" -in.puma "CA, 06706" "The dwelling unit is located in CA, the NHGIS PUMA code is 06706" -in.puma "CA, 06707" "The dwelling unit is located in CA, the NHGIS PUMA code is 06707" -in.puma "CA, 06708" "The dwelling unit is located in CA, the NHGIS PUMA code is 06708" -in.puma "CA, 06709" "The dwelling unit is located in CA, the NHGIS PUMA code is 06709" -in.puma "CA, 06710" "The dwelling unit is located in CA, the NHGIS PUMA code is 06710" -in.puma "CA, 06711" "The dwelling unit is located in CA, the NHGIS PUMA code is 06711" -in.puma "CA, 06712" "The dwelling unit is located in CA, the NHGIS PUMA code is 06712" -in.puma "CA, 07101" "The dwelling unit is located in CA, the NHGIS PUMA code is 07101" -in.puma "CA, 07102" "The dwelling unit is located in CA, the NHGIS PUMA code is 07102" -in.puma "CA, 07103" "The dwelling unit is located in CA, the NHGIS PUMA code is 07103" -in.puma "CA, 07104" "The dwelling unit is located in CA, the NHGIS PUMA code is 07104" -in.puma "CA, 07105" "The dwelling unit is located in CA, the NHGIS PUMA code is 07105" -in.puma "CA, 07106" "The dwelling unit is located in CA, the NHGIS PUMA code is 07106" -in.puma "CA, 07107" "The dwelling unit is located in CA, the NHGIS PUMA code is 07107" -in.puma "CA, 07108" "The dwelling unit is located in CA, the NHGIS PUMA code is 07108" -in.puma "CA, 07109" "The dwelling unit is located in CA, the NHGIS PUMA code is 07109" -in.puma "CA, 07110" "The dwelling unit is located in CA, the NHGIS PUMA code is 07110" -in.puma "CA, 07111" "The dwelling unit is located in CA, the NHGIS PUMA code is 07111" -in.puma "CA, 07112" "The dwelling unit is located in CA, the NHGIS PUMA code is 07112" -in.puma "CA, 07113" "The dwelling unit is located in CA, the NHGIS PUMA code is 07113" -in.puma "CA, 07114" "The dwelling unit is located in CA, the NHGIS PUMA code is 07114" -in.puma "CA, 07115" "The dwelling unit is located in CA, the NHGIS PUMA code is 07115" -in.puma "CA, 07301" "The dwelling unit is located in CA, the NHGIS PUMA code is 07301" -in.puma "CA, 07302" "The dwelling unit is located in CA, the NHGIS PUMA code is 07302" -in.puma "CA, 07303" "The dwelling unit is located in CA, the NHGIS PUMA code is 07303" -in.puma "CA, 07304" "The dwelling unit is located in CA, the NHGIS PUMA code is 07304" -in.puma "CA, 07305" "The dwelling unit is located in CA, the NHGIS PUMA code is 07305" -in.puma "CA, 07306" "The dwelling unit is located in CA, the NHGIS PUMA code is 07306" -in.puma "CA, 07307" "The dwelling unit is located in CA, the NHGIS PUMA code is 07307" -in.puma "CA, 07308" "The dwelling unit is located in CA, the NHGIS PUMA code is 07308" -in.puma "CA, 07309" "The dwelling unit is located in CA, the NHGIS PUMA code is 07309" -in.puma "CA, 07310" "The dwelling unit is located in CA, the NHGIS PUMA code is 07310" -in.puma "CA, 07311" "The dwelling unit is located in CA, the NHGIS PUMA code is 07311" -in.puma "CA, 07312" "The dwelling unit is located in CA, the NHGIS PUMA code is 07312" -in.puma "CA, 07313" "The dwelling unit is located in CA, the NHGIS PUMA code is 07313" -in.puma "CA, 07314" "The dwelling unit is located in CA, the NHGIS PUMA code is 07314" -in.puma "CA, 07315" "The dwelling unit is located in CA, the NHGIS PUMA code is 07315" -in.puma "CA, 07316" "The dwelling unit is located in CA, the NHGIS PUMA code is 07316" -in.puma "CA, 07317" "The dwelling unit is located in CA, the NHGIS PUMA code is 07317" -in.puma "CA, 07318" "The dwelling unit is located in CA, the NHGIS PUMA code is 07318" -in.puma "CA, 07319" "The dwelling unit is located in CA, the NHGIS PUMA code is 07319" -in.puma "CA, 07320" "The dwelling unit is located in CA, the NHGIS PUMA code is 07320" -in.puma "CA, 07321" "The dwelling unit is located in CA, the NHGIS PUMA code is 07321" -in.puma "CA, 07322" "The dwelling unit is located in CA, the NHGIS PUMA code is 07322" -in.puma "CA, 07501" "The dwelling unit is located in CA, the NHGIS PUMA code is 07501" -in.puma "CA, 07502" "The dwelling unit is located in CA, the NHGIS PUMA code is 07502" -in.puma "CA, 07503" "The dwelling unit is located in CA, the NHGIS PUMA code is 07503" -in.puma "CA, 07504" "The dwelling unit is located in CA, the NHGIS PUMA code is 07504" -in.puma "CA, 07505" "The dwelling unit is located in CA, the NHGIS PUMA code is 07505" -in.puma "CA, 07506" "The dwelling unit is located in CA, the NHGIS PUMA code is 07506" -in.puma "CA, 07507" "The dwelling unit is located in CA, the NHGIS PUMA code is 07507" -in.puma "CA, 07701" "The dwelling unit is located in CA, the NHGIS PUMA code is 07701" -in.puma "CA, 07702" "The dwelling unit is located in CA, the NHGIS PUMA code is 07702" -in.puma "CA, 07703" "The dwelling unit is located in CA, the NHGIS PUMA code is 07703" -in.puma "CA, 07704" "The dwelling unit is located in CA, the NHGIS PUMA code is 07704" -in.puma "CA, 07901" "The dwelling unit is located in CA, the NHGIS PUMA code is 07901" -in.puma "CA, 07902" "The dwelling unit is located in CA, the NHGIS PUMA code is 07902" -in.puma "CA, 08101" "The dwelling unit is located in CA, the NHGIS PUMA code is 08101" -in.puma "CA, 08102" "The dwelling unit is located in CA, the NHGIS PUMA code is 08102" -in.puma "CA, 08103" "The dwelling unit is located in CA, the NHGIS PUMA code is 08103" -in.puma "CA, 08104" "The dwelling unit is located in CA, the NHGIS PUMA code is 08104" -in.puma "CA, 08105" "The dwelling unit is located in CA, the NHGIS PUMA code is 08105" -in.puma "CA, 08106" "The dwelling unit is located in CA, the NHGIS PUMA code is 08106" -in.puma "CA, 08301" "The dwelling unit is located in CA, the NHGIS PUMA code is 08301" -in.puma "CA, 08302" "The dwelling unit is located in CA, the NHGIS PUMA code is 08302" -in.puma "CA, 08303" "The dwelling unit is located in CA, the NHGIS PUMA code is 08303" -in.puma "CA, 08501" "The dwelling unit is located in CA, the NHGIS PUMA code is 08501" -in.puma "CA, 08502" "The dwelling unit is located in CA, the NHGIS PUMA code is 08502" -in.puma "CA, 08503" "The dwelling unit is located in CA, the NHGIS PUMA code is 08503" -in.puma "CA, 08504" "The dwelling unit is located in CA, the NHGIS PUMA code is 08504" -in.puma "CA, 08505" "The dwelling unit is located in CA, the NHGIS PUMA code is 08505" -in.puma "CA, 08506" "The dwelling unit is located in CA, the NHGIS PUMA code is 08506" -in.puma "CA, 08507" "The dwelling unit is located in CA, the NHGIS PUMA code is 08507" -in.puma "CA, 08508" "The dwelling unit is located in CA, the NHGIS PUMA code is 08508" -in.puma "CA, 08509" "The dwelling unit is located in CA, the NHGIS PUMA code is 08509" -in.puma "CA, 08510" "The dwelling unit is located in CA, the NHGIS PUMA code is 08510" -in.puma "CA, 08511" "The dwelling unit is located in CA, the NHGIS PUMA code is 08511" -in.puma "CA, 08512" "The dwelling unit is located in CA, the NHGIS PUMA code is 08512" -in.puma "CA, 08513" "The dwelling unit is located in CA, the NHGIS PUMA code is 08513" -in.puma "CA, 08514" "The dwelling unit is located in CA, the NHGIS PUMA code is 08514" -in.puma "CA, 08701" "The dwelling unit is located in CA, the NHGIS PUMA code is 08701" -in.puma "CA, 08702" "The dwelling unit is located in CA, the NHGIS PUMA code is 08702" -in.puma "CA, 08900" "The dwelling unit is located in CA, the NHGIS PUMA code is 08900" -in.puma "CA, 09501" "The dwelling unit is located in CA, the NHGIS PUMA code is 09501" -in.puma "CA, 09502" "The dwelling unit is located in CA, the NHGIS PUMA code is 09502" -in.puma "CA, 09503" "The dwelling unit is located in CA, the NHGIS PUMA code is 09503" -in.puma "CA, 09701" "The dwelling unit is located in CA, the NHGIS PUMA code is 09701" -in.puma "CA, 09702" "The dwelling unit is located in CA, the NHGIS PUMA code is 09702" -in.puma "CA, 09703" "The dwelling unit is located in CA, the NHGIS PUMA code is 09703" -in.puma "CA, 09901" "The dwelling unit is located in CA, the NHGIS PUMA code is 09901" -in.puma "CA, 09902" "The dwelling unit is located in CA, the NHGIS PUMA code is 09902" -in.puma "CA, 09903" "The dwelling unit is located in CA, the NHGIS PUMA code is 09903" -in.puma "CA, 09904" "The dwelling unit is located in CA, the NHGIS PUMA code is 09904" -in.puma "CA, 10100" "The dwelling unit is located in CA, the NHGIS PUMA code is 10100" -in.puma "CA, 10701" "The dwelling unit is located in CA, the NHGIS PUMA code is 10701" -in.puma "CA, 10702" "The dwelling unit is located in CA, the NHGIS PUMA code is 10702" -in.puma "CA, 10703" "The dwelling unit is located in CA, the NHGIS PUMA code is 10703" -in.puma "CA, 11101" "The dwelling unit is located in CA, the NHGIS PUMA code is 11101" -in.puma "CA, 11102" "The dwelling unit is located in CA, the NHGIS PUMA code is 11102" -in.puma "CA, 11103" "The dwelling unit is located in CA, the NHGIS PUMA code is 11103" -in.puma "CA, 11104" "The dwelling unit is located in CA, the NHGIS PUMA code is 11104" -in.puma "CA, 11105" "The dwelling unit is located in CA, the NHGIS PUMA code is 11105" -in.puma "CA, 11106" "The dwelling unit is located in CA, the NHGIS PUMA code is 11106" -in.puma "CA, 11300" "The dwelling unit is located in CA, the NHGIS PUMA code is 11300" -in.puma "CO, 00100" "The dwelling unit is located in CO, the NHGIS PUMA code is 00100" -in.puma "CO, 00102" "The dwelling unit is located in CO, the NHGIS PUMA code is 00102" -in.puma "CO, 00103" "The dwelling unit is located in CO, the NHGIS PUMA code is 00103" -in.puma "CO, 00200" "The dwelling unit is located in CO, the NHGIS PUMA code is 00200" -in.puma "CO, 00300" "The dwelling unit is located in CO, the NHGIS PUMA code is 00300" -in.puma "CO, 00400" "The dwelling unit is located in CO, the NHGIS PUMA code is 00400" -in.puma "CO, 00600" "The dwelling unit is located in CO, the NHGIS PUMA code is 00600" -in.puma "CO, 00700" "The dwelling unit is located in CO, the NHGIS PUMA code is 00700" -in.puma "CO, 00800" "The dwelling unit is located in CO, the NHGIS PUMA code is 00800" -in.puma "CO, 00801" "The dwelling unit is located in CO, the NHGIS PUMA code is 00801" -in.puma "CO, 00802" "The dwelling unit is located in CO, the NHGIS PUMA code is 00802" -in.puma "CO, 00803" "The dwelling unit is located in CO, the NHGIS PUMA code is 00803" -in.puma "CO, 00804" "The dwelling unit is located in CO, the NHGIS PUMA code is 00804" -in.puma "CO, 00805" "The dwelling unit is located in CO, the NHGIS PUMA code is 00805" -in.puma "CO, 00806" "The dwelling unit is located in CO, the NHGIS PUMA code is 00806" -in.puma "CO, 00807" "The dwelling unit is located in CO, the NHGIS PUMA code is 00807" -in.puma "CO, 00808" "The dwelling unit is located in CO, the NHGIS PUMA code is 00808" -in.puma "CO, 00809" "The dwelling unit is located in CO, the NHGIS PUMA code is 00809" -in.puma "CO, 00810" "The dwelling unit is located in CO, the NHGIS PUMA code is 00810" -in.puma "CO, 00811" "The dwelling unit is located in CO, the NHGIS PUMA code is 00811" -in.puma "CO, 00812" "The dwelling unit is located in CO, the NHGIS PUMA code is 00812" -in.puma "CO, 00813" "The dwelling unit is located in CO, the NHGIS PUMA code is 00813" -in.puma "CO, 00814" "The dwelling unit is located in CO, the NHGIS PUMA code is 00814" -in.puma "CO, 00815" "The dwelling unit is located in CO, the NHGIS PUMA code is 00815" -in.puma "CO, 00816" "The dwelling unit is located in CO, the NHGIS PUMA code is 00816" -in.puma "CO, 00817" "The dwelling unit is located in CO, the NHGIS PUMA code is 00817" -in.puma "CO, 00818" "The dwelling unit is located in CO, the NHGIS PUMA code is 00818" -in.puma "CO, 00819" "The dwelling unit is located in CO, the NHGIS PUMA code is 00819" -in.puma "CO, 00820" "The dwelling unit is located in CO, the NHGIS PUMA code is 00820" -in.puma "CO, 00821" "The dwelling unit is located in CO, the NHGIS PUMA code is 00821" -in.puma "CO, 00822" "The dwelling unit is located in CO, the NHGIS PUMA code is 00822" -in.puma "CO, 00823" "The dwelling unit is located in CO, the NHGIS PUMA code is 00823" -in.puma "CO, 00824" "The dwelling unit is located in CO, the NHGIS PUMA code is 00824" -in.puma "CO, 00900" "The dwelling unit is located in CO, the NHGIS PUMA code is 00900" -in.puma "CO, 01001" "The dwelling unit is located in CO, the NHGIS PUMA code is 01001" -in.puma "CO, 01002" "The dwelling unit is located in CO, the NHGIS PUMA code is 01002" -in.puma "CO, 04101" "The dwelling unit is located in CO, the NHGIS PUMA code is 04101" -in.puma "CO, 04102" "The dwelling unit is located in CO, the NHGIS PUMA code is 04102" -in.puma "CO, 04103" "The dwelling unit is located in CO, the NHGIS PUMA code is 04103" -in.puma "CO, 04104" "The dwelling unit is located in CO, the NHGIS PUMA code is 04104" -in.puma "CO, 04105" "The dwelling unit is located in CO, the NHGIS PUMA code is 04105" -in.puma "CO, 04106" "The dwelling unit is located in CO, the NHGIS PUMA code is 04106" -in.puma "CT, 00100" "The dwelling unit is located in CT, the NHGIS PUMA code is 00100" -in.puma "CT, 00101" "The dwelling unit is located in CT, the NHGIS PUMA code is 00101" -in.puma "CT, 00102" "The dwelling unit is located in CT, the NHGIS PUMA code is 00102" -in.puma "CT, 00103" "The dwelling unit is located in CT, the NHGIS PUMA code is 00103" -in.puma "CT, 00104" "The dwelling unit is located in CT, the NHGIS PUMA code is 00104" -in.puma "CT, 00105" "The dwelling unit is located in CT, the NHGIS PUMA code is 00105" -in.puma "CT, 00300" "The dwelling unit is located in CT, the NHGIS PUMA code is 00300" -in.puma "CT, 00301" "The dwelling unit is located in CT, the NHGIS PUMA code is 00301" -in.puma "CT, 00302" "The dwelling unit is located in CT, the NHGIS PUMA code is 00302" -in.puma "CT, 00303" "The dwelling unit is located in CT, the NHGIS PUMA code is 00303" -in.puma "CT, 00304" "The dwelling unit is located in CT, the NHGIS PUMA code is 00304" -in.puma "CT, 00305" "The dwelling unit is located in CT, the NHGIS PUMA code is 00305" -in.puma "CT, 00306" "The dwelling unit is located in CT, the NHGIS PUMA code is 00306" -in.puma "CT, 00500" "The dwelling unit is located in CT, the NHGIS PUMA code is 00500" -in.puma "CT, 00700" "The dwelling unit is located in CT, the NHGIS PUMA code is 00700" -in.puma "CT, 00900" "The dwelling unit is located in CT, the NHGIS PUMA code is 00900" -in.puma "CT, 00901" "The dwelling unit is located in CT, the NHGIS PUMA code is 00901" -in.puma "CT, 00902" "The dwelling unit is located in CT, the NHGIS PUMA code is 00902" -in.puma "CT, 00903" "The dwelling unit is located in CT, the NHGIS PUMA code is 00903" -in.puma "CT, 00904" "The dwelling unit is located in CT, the NHGIS PUMA code is 00904" -in.puma "CT, 00905" "The dwelling unit is located in CT, the NHGIS PUMA code is 00905" -in.puma "CT, 00906" "The dwelling unit is located in CT, the NHGIS PUMA code is 00906" -in.puma "CT, 01100" "The dwelling unit is located in CT, the NHGIS PUMA code is 01100" -in.puma "CT, 01101" "The dwelling unit is located in CT, the NHGIS PUMA code is 01101" -in.puma "CT, 01300" "The dwelling unit is located in CT, the NHGIS PUMA code is 01300" -in.puma "CT, 01500" "The dwelling unit is located in CT, the NHGIS PUMA code is 01500" -in.puma "DC, 00101" "The dwelling unit is located in DC, the NHGIS PUMA code is 00101" -in.puma "DC, 00102" "The dwelling unit is located in DC, the NHGIS PUMA code is 00102" -in.puma "DC, 00103" "The dwelling unit is located in DC, the NHGIS PUMA code is 00103" -in.puma "DC, 00104" "The dwelling unit is located in DC, the NHGIS PUMA code is 00104" -in.puma "DC, 00105" "The dwelling unit is located in DC, the NHGIS PUMA code is 00105" -in.puma "DE, 00101" "The dwelling unit is located in DE, the NHGIS PUMA code is 00101" -in.puma "DE, 00102" "The dwelling unit is located in DE, the NHGIS PUMA code is 00102" -in.puma "DE, 00103" "The dwelling unit is located in DE, the NHGIS PUMA code is 00103" -in.puma "DE, 00104" "The dwelling unit is located in DE, the NHGIS PUMA code is 00104" -in.puma "DE, 00200" "The dwelling unit is located in DE, the NHGIS PUMA code is 00200" -in.puma "DE, 00300" "The dwelling unit is located in DE, the NHGIS PUMA code is 00300" -in.puma "FL, 00101" "The dwelling unit is located in FL, the NHGIS PUMA code is 00101" -in.puma "FL, 00102" "The dwelling unit is located in FL, the NHGIS PUMA code is 00102" -in.puma "FL, 00500" "The dwelling unit is located in FL, the NHGIS PUMA code is 00500" -in.puma "FL, 00901" "The dwelling unit is located in FL, the NHGIS PUMA code is 00901" -in.puma "FL, 00902" "The dwelling unit is located in FL, the NHGIS PUMA code is 00902" -in.puma "FL, 00903" "The dwelling unit is located in FL, the NHGIS PUMA code is 00903" -in.puma "FL, 00904" "The dwelling unit is located in FL, the NHGIS PUMA code is 00904" -in.puma "FL, 01101" "The dwelling unit is located in FL, the NHGIS PUMA code is 01101" -in.puma "FL, 01102" "The dwelling unit is located in FL, the NHGIS PUMA code is 01102" -in.puma "FL, 01103" "The dwelling unit is located in FL, the NHGIS PUMA code is 01103" -in.puma "FL, 01104" "The dwelling unit is located in FL, the NHGIS PUMA code is 01104" -in.puma "FL, 01105" "The dwelling unit is located in FL, the NHGIS PUMA code is 01105" -in.puma "FL, 01106" "The dwelling unit is located in FL, the NHGIS PUMA code is 01106" -in.puma "FL, 01107" "The dwelling unit is located in FL, the NHGIS PUMA code is 01107" -in.puma "FL, 01108" "The dwelling unit is located in FL, the NHGIS PUMA code is 01108" -in.puma "FL, 01109" "The dwelling unit is located in FL, the NHGIS PUMA code is 01109" -in.puma "FL, 01110" "The dwelling unit is located in FL, the NHGIS PUMA code is 01110" -in.puma "FL, 01111" "The dwelling unit is located in FL, the NHGIS PUMA code is 01111" -in.puma "FL, 01112" "The dwelling unit is located in FL, the NHGIS PUMA code is 01112" -in.puma "FL, 01113" "The dwelling unit is located in FL, the NHGIS PUMA code is 01113" -in.puma "FL, 01114" "The dwelling unit is located in FL, the NHGIS PUMA code is 01114" -in.puma "FL, 01500" "The dwelling unit is located in FL, the NHGIS PUMA code is 01500" -in.puma "FL, 01701" "The dwelling unit is located in FL, the NHGIS PUMA code is 01701" -in.puma "FL, 01900" "The dwelling unit is located in FL, the NHGIS PUMA code is 01900" -in.puma "FL, 02101" "The dwelling unit is located in FL, the NHGIS PUMA code is 02101" -in.puma "FL, 02102" "The dwelling unit is located in FL, the NHGIS PUMA code is 02102" -in.puma "FL, 02103" "The dwelling unit is located in FL, the NHGIS PUMA code is 02103" -in.puma "FL, 02300" "The dwelling unit is located in FL, the NHGIS PUMA code is 02300" -in.puma "FL, 02700" "The dwelling unit is located in FL, the NHGIS PUMA code is 02700" -in.puma "FL, 03101" "The dwelling unit is located in FL, the NHGIS PUMA code is 03101" -in.puma "FL, 03102" "The dwelling unit is located in FL, the NHGIS PUMA code is 03102" -in.puma "FL, 03103" "The dwelling unit is located in FL, the NHGIS PUMA code is 03103" -in.puma "FL, 03104" "The dwelling unit is located in FL, the NHGIS PUMA code is 03104" -in.puma "FL, 03105" "The dwelling unit is located in FL, the NHGIS PUMA code is 03105" -in.puma "FL, 03106" "The dwelling unit is located in FL, the NHGIS PUMA code is 03106" -in.puma "FL, 03107" "The dwelling unit is located in FL, the NHGIS PUMA code is 03107" -in.puma "FL, 03301" "The dwelling unit is located in FL, the NHGIS PUMA code is 03301" -in.puma "FL, 03302" "The dwelling unit is located in FL, the NHGIS PUMA code is 03302" -in.puma "FL, 03500" "The dwelling unit is located in FL, the NHGIS PUMA code is 03500" -in.puma "FL, 05301" "The dwelling unit is located in FL, the NHGIS PUMA code is 05301" -in.puma "FL, 05701" "The dwelling unit is located in FL, the NHGIS PUMA code is 05701" -in.puma "FL, 05702" "The dwelling unit is located in FL, the NHGIS PUMA code is 05702" -in.puma "FL, 05703" "The dwelling unit is located in FL, the NHGIS PUMA code is 05703" -in.puma "FL, 05704" "The dwelling unit is located in FL, the NHGIS PUMA code is 05704" -in.puma "FL, 05705" "The dwelling unit is located in FL, the NHGIS PUMA code is 05705" -in.puma "FL, 05706" "The dwelling unit is located in FL, the NHGIS PUMA code is 05706" -in.puma "FL, 05707" "The dwelling unit is located in FL, the NHGIS PUMA code is 05707" -in.puma "FL, 05708" "The dwelling unit is located in FL, the NHGIS PUMA code is 05708" -in.puma "FL, 06100" "The dwelling unit is located in FL, the NHGIS PUMA code is 06100" -in.puma "FL, 06300" "The dwelling unit is located in FL, the NHGIS PUMA code is 06300" -in.puma "FL, 06901" "The dwelling unit is located in FL, the NHGIS PUMA code is 06901" -in.puma "FL, 06902" "The dwelling unit is located in FL, the NHGIS PUMA code is 06902" -in.puma "FL, 06903" "The dwelling unit is located in FL, the NHGIS PUMA code is 06903" -in.puma "FL, 07101" "The dwelling unit is located in FL, the NHGIS PUMA code is 07101" -in.puma "FL, 07102" "The dwelling unit is located in FL, the NHGIS PUMA code is 07102" -in.puma "FL, 07103" "The dwelling unit is located in FL, the NHGIS PUMA code is 07103" -in.puma "FL, 07104" "The dwelling unit is located in FL, the NHGIS PUMA code is 07104" -in.puma "FL, 07105" "The dwelling unit is located in FL, the NHGIS PUMA code is 07105" -in.puma "FL, 07300" "The dwelling unit is located in FL, the NHGIS PUMA code is 07300" -in.puma "FL, 07301" "The dwelling unit is located in FL, the NHGIS PUMA code is 07301" -in.puma "FL, 08101" "The dwelling unit is located in FL, the NHGIS PUMA code is 08101" -in.puma "FL, 08102" "The dwelling unit is located in FL, the NHGIS PUMA code is 08102" -in.puma "FL, 08103" "The dwelling unit is located in FL, the NHGIS PUMA code is 08103" -in.puma "FL, 08301" "The dwelling unit is located in FL, the NHGIS PUMA code is 08301" -in.puma "FL, 08302" "The dwelling unit is located in FL, the NHGIS PUMA code is 08302" -in.puma "FL, 08303" "The dwelling unit is located in FL, the NHGIS PUMA code is 08303" -in.puma "FL, 08500" "The dwelling unit is located in FL, the NHGIS PUMA code is 08500" -in.puma "FL, 08601" "The dwelling unit is located in FL, the NHGIS PUMA code is 08601" -in.puma "FL, 08602" "The dwelling unit is located in FL, the NHGIS PUMA code is 08602" -in.puma "FL, 08603" "The dwelling unit is located in FL, the NHGIS PUMA code is 08603" -in.puma "FL, 08604" "The dwelling unit is located in FL, the NHGIS PUMA code is 08604" -in.puma "FL, 08605" "The dwelling unit is located in FL, the NHGIS PUMA code is 08605" -in.puma "FL, 08606" "The dwelling unit is located in FL, the NHGIS PUMA code is 08606" -in.puma "FL, 08607" "The dwelling unit is located in FL, the NHGIS PUMA code is 08607" -in.puma "FL, 08608" "The dwelling unit is located in FL, the NHGIS PUMA code is 08608" -in.puma "FL, 08609" "The dwelling unit is located in FL, the NHGIS PUMA code is 08609" -in.puma "FL, 08610" "The dwelling unit is located in FL, the NHGIS PUMA code is 08610" -in.puma "FL, 08611" "The dwelling unit is located in FL, the NHGIS PUMA code is 08611" -in.puma "FL, 08612" "The dwelling unit is located in FL, the NHGIS PUMA code is 08612" -in.puma "FL, 08613" "The dwelling unit is located in FL, the NHGIS PUMA code is 08613" -in.puma "FL, 08614" "The dwelling unit is located in FL, the NHGIS PUMA code is 08614" -in.puma "FL, 08615" "The dwelling unit is located in FL, the NHGIS PUMA code is 08615" -in.puma "FL, 08616" "The dwelling unit is located in FL, the NHGIS PUMA code is 08616" -in.puma "FL, 08617" "The dwelling unit is located in FL, the NHGIS PUMA code is 08617" -in.puma "FL, 08618" "The dwelling unit is located in FL, the NHGIS PUMA code is 08618" -in.puma "FL, 08619" "The dwelling unit is located in FL, the NHGIS PUMA code is 08619" -in.puma "FL, 08620" "The dwelling unit is located in FL, the NHGIS PUMA code is 08620" -in.puma "FL, 08621" "The dwelling unit is located in FL, the NHGIS PUMA code is 08621" -in.puma "FL, 08622" "The dwelling unit is located in FL, the NHGIS PUMA code is 08622" -in.puma "FL, 08623" "The dwelling unit is located in FL, the NHGIS PUMA code is 08623" -in.puma "FL, 08624" "The dwelling unit is located in FL, the NHGIS PUMA code is 08624" -in.puma "FL, 08700" "The dwelling unit is located in FL, the NHGIS PUMA code is 08700" -in.puma "FL, 08900" "The dwelling unit is located in FL, the NHGIS PUMA code is 08900" -in.puma "FL, 09100" "The dwelling unit is located in FL, the NHGIS PUMA code is 09100" -in.puma "FL, 09300" "The dwelling unit is located in FL, the NHGIS PUMA code is 09300" -in.puma "FL, 09501" "The dwelling unit is located in FL, the NHGIS PUMA code is 09501" -in.puma "FL, 09502" "The dwelling unit is located in FL, the NHGIS PUMA code is 09502" -in.puma "FL, 09503" "The dwelling unit is located in FL, the NHGIS PUMA code is 09503" -in.puma "FL, 09504" "The dwelling unit is located in FL, the NHGIS PUMA code is 09504" -in.puma "FL, 09505" "The dwelling unit is located in FL, the NHGIS PUMA code is 09505" -in.puma "FL, 09506" "The dwelling unit is located in FL, the NHGIS PUMA code is 09506" -in.puma "FL, 09507" "The dwelling unit is located in FL, the NHGIS PUMA code is 09507" -in.puma "FL, 09508" "The dwelling unit is located in FL, the NHGIS PUMA code is 09508" -in.puma "FL, 09509" "The dwelling unit is located in FL, the NHGIS PUMA code is 09509" -in.puma "FL, 09510" "The dwelling unit is located in FL, the NHGIS PUMA code is 09510" -in.puma "FL, 09701" "The dwelling unit is located in FL, the NHGIS PUMA code is 09701" -in.puma "FL, 09702" "The dwelling unit is located in FL, the NHGIS PUMA code is 09702" -in.puma "FL, 09901" "The dwelling unit is located in FL, the NHGIS PUMA code is 09901" -in.puma "FL, 09902" "The dwelling unit is located in FL, the NHGIS PUMA code is 09902" -in.puma "FL, 09903" "The dwelling unit is located in FL, the NHGIS PUMA code is 09903" -in.puma "FL, 09904" "The dwelling unit is located in FL, the NHGIS PUMA code is 09904" -in.puma "FL, 09905" "The dwelling unit is located in FL, the NHGIS PUMA code is 09905" -in.puma "FL, 09906" "The dwelling unit is located in FL, the NHGIS PUMA code is 09906" -in.puma "FL, 09907" "The dwelling unit is located in FL, the NHGIS PUMA code is 09907" -in.puma "FL, 09908" "The dwelling unit is located in FL, the NHGIS PUMA code is 09908" -in.puma "FL, 09909" "The dwelling unit is located in FL, the NHGIS PUMA code is 09909" -in.puma "FL, 09910" "The dwelling unit is located in FL, the NHGIS PUMA code is 09910" -in.puma "FL, 09911" "The dwelling unit is located in FL, the NHGIS PUMA code is 09911" -in.puma "FL, 10101" "The dwelling unit is located in FL, the NHGIS PUMA code is 10101" -in.puma "FL, 10102" "The dwelling unit is located in FL, the NHGIS PUMA code is 10102" -in.puma "FL, 10103" "The dwelling unit is located in FL, the NHGIS PUMA code is 10103" -in.puma "FL, 10104" "The dwelling unit is located in FL, the NHGIS PUMA code is 10104" -in.puma "FL, 10301" "The dwelling unit is located in FL, the NHGIS PUMA code is 10301" -in.puma "FL, 10302" "The dwelling unit is located in FL, the NHGIS PUMA code is 10302" -in.puma "FL, 10303" "The dwelling unit is located in FL, the NHGIS PUMA code is 10303" -in.puma "FL, 10304" "The dwelling unit is located in FL, the NHGIS PUMA code is 10304" -in.puma "FL, 10305" "The dwelling unit is located in FL, the NHGIS PUMA code is 10305" -in.puma "FL, 10306" "The dwelling unit is located in FL, the NHGIS PUMA code is 10306" -in.puma "FL, 10307" "The dwelling unit is located in FL, the NHGIS PUMA code is 10307" -in.puma "FL, 10308" "The dwelling unit is located in FL, the NHGIS PUMA code is 10308" -in.puma "FL, 10501" "The dwelling unit is located in FL, the NHGIS PUMA code is 10501" -in.puma "FL, 10502" "The dwelling unit is located in FL, the NHGIS PUMA code is 10502" -in.puma "FL, 10503" "The dwelling unit is located in FL, the NHGIS PUMA code is 10503" -in.puma "FL, 10504" "The dwelling unit is located in FL, the NHGIS PUMA code is 10504" -in.puma "FL, 10700" "The dwelling unit is located in FL, the NHGIS PUMA code is 10700" -in.puma "FL, 10900" "The dwelling unit is located in FL, the NHGIS PUMA code is 10900" -in.puma "FL, 11101" "The dwelling unit is located in FL, the NHGIS PUMA code is 11101" -in.puma "FL, 11102" "The dwelling unit is located in FL, the NHGIS PUMA code is 11102" -in.puma "FL, 11300" "The dwelling unit is located in FL, the NHGIS PUMA code is 11300" -in.puma "FL, 11501" "The dwelling unit is located in FL, the NHGIS PUMA code is 11501" -in.puma "FL, 11502" "The dwelling unit is located in FL, the NHGIS PUMA code is 11502" -in.puma "FL, 11503" "The dwelling unit is located in FL, the NHGIS PUMA code is 11503" -in.puma "FL, 11701" "The dwelling unit is located in FL, the NHGIS PUMA code is 11701" -in.puma "FL, 11702" "The dwelling unit is located in FL, the NHGIS PUMA code is 11702" -in.puma "FL, 11703" "The dwelling unit is located in FL, the NHGIS PUMA code is 11703" -in.puma "FL, 11704" "The dwelling unit is located in FL, the NHGIS PUMA code is 11704" -in.puma "FL, 12100" "The dwelling unit is located in FL, the NHGIS PUMA code is 12100" -in.puma "FL, 12701" "The dwelling unit is located in FL, the NHGIS PUMA code is 12701" -in.puma "FL, 12702" "The dwelling unit is located in FL, the NHGIS PUMA code is 12702" -in.puma "FL, 12703" "The dwelling unit is located in FL, the NHGIS PUMA code is 12703" -in.puma "FL, 12704" "The dwelling unit is located in FL, the NHGIS PUMA code is 12704" -in.puma "GA, 00100" "The dwelling unit is located in GA, the NHGIS PUMA code is 00100" -in.puma "GA, 00200" "The dwelling unit is located in GA, the NHGIS PUMA code is 00200" -in.puma "GA, 00300" "The dwelling unit is located in GA, the NHGIS PUMA code is 00300" -in.puma "GA, 00401" "The dwelling unit is located in GA, the NHGIS PUMA code is 00401" -in.puma "GA, 00402" "The dwelling unit is located in GA, the NHGIS PUMA code is 00402" -in.puma "GA, 00500" "The dwelling unit is located in GA, the NHGIS PUMA code is 00500" -in.puma "GA, 00600" "The dwelling unit is located in GA, the NHGIS PUMA code is 00600" -in.puma "GA, 00700" "The dwelling unit is located in GA, the NHGIS PUMA code is 00700" -in.puma "GA, 00800" "The dwelling unit is located in GA, the NHGIS PUMA code is 00800" -in.puma "GA, 00900" "The dwelling unit is located in GA, the NHGIS PUMA code is 00900" -in.puma "GA, 01001" "The dwelling unit is located in GA, the NHGIS PUMA code is 01001" -in.puma "GA, 01002" "The dwelling unit is located in GA, the NHGIS PUMA code is 01002" -in.puma "GA, 01003" "The dwelling unit is located in GA, the NHGIS PUMA code is 01003" -in.puma "GA, 01004" "The dwelling unit is located in GA, the NHGIS PUMA code is 01004" -in.puma "GA, 01005" "The dwelling unit is located in GA, the NHGIS PUMA code is 01005" -in.puma "GA, 01006" "The dwelling unit is located in GA, the NHGIS PUMA code is 01006" -in.puma "GA, 01007" "The dwelling unit is located in GA, the NHGIS PUMA code is 01007" -in.puma "GA, 01008" "The dwelling unit is located in GA, the NHGIS PUMA code is 01008" -in.puma "GA, 01100" "The dwelling unit is located in GA, the NHGIS PUMA code is 01100" -in.puma "GA, 01200" "The dwelling unit is located in GA, the NHGIS PUMA code is 01200" -in.puma "GA, 01300" "The dwelling unit is located in GA, the NHGIS PUMA code is 01300" -in.puma "GA, 01400" "The dwelling unit is located in GA, the NHGIS PUMA code is 01400" -in.puma "GA, 01500" "The dwelling unit is located in GA, the NHGIS PUMA code is 01500" -in.puma "GA, 01600" "The dwelling unit is located in GA, the NHGIS PUMA code is 01600" -in.puma "GA, 01700" "The dwelling unit is located in GA, the NHGIS PUMA code is 01700" -in.puma "GA, 01800" "The dwelling unit is located in GA, the NHGIS PUMA code is 01800" -in.puma "GA, 01900" "The dwelling unit is located in GA, the NHGIS PUMA code is 01900" -in.puma "GA, 02001" "The dwelling unit is located in GA, the NHGIS PUMA code is 02001" -in.puma "GA, 02002" "The dwelling unit is located in GA, the NHGIS PUMA code is 02002" -in.puma "GA, 02003" "The dwelling unit is located in GA, the NHGIS PUMA code is 02003" -in.puma "GA, 02004" "The dwelling unit is located in GA, the NHGIS PUMA code is 02004" -in.puma "GA, 02100" "The dwelling unit is located in GA, the NHGIS PUMA code is 02100" -in.puma "GA, 02200" "The dwelling unit is located in GA, the NHGIS PUMA code is 02200" -in.puma "GA, 02300" "The dwelling unit is located in GA, the NHGIS PUMA code is 02300" -in.puma "GA, 02400" "The dwelling unit is located in GA, the NHGIS PUMA code is 02400" -in.puma "GA, 02500" "The dwelling unit is located in GA, the NHGIS PUMA code is 02500" -in.puma "GA, 02600" "The dwelling unit is located in GA, the NHGIS PUMA code is 02600" -in.puma "GA, 02700" "The dwelling unit is located in GA, the NHGIS PUMA code is 02700" -in.puma "GA, 02800" "The dwelling unit is located in GA, the NHGIS PUMA code is 02800" -in.puma "GA, 02900" "The dwelling unit is located in GA, the NHGIS PUMA code is 02900" -in.puma "GA, 03001" "The dwelling unit is located in GA, the NHGIS PUMA code is 03001" -in.puma "GA, 03002" "The dwelling unit is located in GA, the NHGIS PUMA code is 03002" -in.puma "GA, 03003" "The dwelling unit is located in GA, the NHGIS PUMA code is 03003" -in.puma "GA, 03004" "The dwelling unit is located in GA, the NHGIS PUMA code is 03004" -in.puma "GA, 03005" "The dwelling unit is located in GA, the NHGIS PUMA code is 03005" -in.puma "GA, 03101" "The dwelling unit is located in GA, the NHGIS PUMA code is 03101" -in.puma "GA, 03102" "The dwelling unit is located in GA, the NHGIS PUMA code is 03102" -in.puma "GA, 03200" "The dwelling unit is located in GA, the NHGIS PUMA code is 03200" -in.puma "GA, 03300" "The dwelling unit is located in GA, the NHGIS PUMA code is 03300" -in.puma "GA, 03400" "The dwelling unit is located in GA, the NHGIS PUMA code is 03400" -in.puma "GA, 03500" "The dwelling unit is located in GA, the NHGIS PUMA code is 03500" -in.puma "GA, 03600" "The dwelling unit is located in GA, the NHGIS PUMA code is 03600" -in.puma "GA, 03700" "The dwelling unit is located in GA, the NHGIS PUMA code is 03700" -in.puma "GA, 03800" "The dwelling unit is located in GA, the NHGIS PUMA code is 03800" -in.puma "GA, 03900" "The dwelling unit is located in GA, the NHGIS PUMA code is 03900" -in.puma "GA, 04000" "The dwelling unit is located in GA, the NHGIS PUMA code is 04000" -in.puma "GA, 04001" "The dwelling unit is located in GA, the NHGIS PUMA code is 04001" -in.puma "GA, 04002" "The dwelling unit is located in GA, the NHGIS PUMA code is 04002" -in.puma "GA, 04003" "The dwelling unit is located in GA, the NHGIS PUMA code is 04003" -in.puma "GA, 04004" "The dwelling unit is located in GA, the NHGIS PUMA code is 04004" -in.puma "GA, 04005" "The dwelling unit is located in GA, the NHGIS PUMA code is 04005" -in.puma "GA, 04006" "The dwelling unit is located in GA, the NHGIS PUMA code is 04006" -in.puma "GA, 04100" "The dwelling unit is located in GA, the NHGIS PUMA code is 04100" -in.puma "GA, 04200" "The dwelling unit is located in GA, the NHGIS PUMA code is 04200" -in.puma "GA, 04300" "The dwelling unit is located in GA, the NHGIS PUMA code is 04300" -in.puma "GA, 04400" "The dwelling unit is located in GA, the NHGIS PUMA code is 04400" -in.puma "GA, 04500" "The dwelling unit is located in GA, the NHGIS PUMA code is 04500" -in.puma "GA, 04600" "The dwelling unit is located in GA, the NHGIS PUMA code is 04600" -in.puma "GA, 05001" "The dwelling unit is located in GA, the NHGIS PUMA code is 05001" -in.puma "GA, 05002" "The dwelling unit is located in GA, the NHGIS PUMA code is 05002" -in.puma "GA, 06001" "The dwelling unit is located in GA, the NHGIS PUMA code is 06001" -in.puma "GA, 06002" "The dwelling unit is located in GA, the NHGIS PUMA code is 06002" -in.puma "HI, 00100" "The dwelling unit is located in HI, the NHGIS PUMA code is 00100" -in.puma "HI, 00200" "The dwelling unit is located in HI, the NHGIS PUMA code is 00200" -in.puma "HI, 00301" "The dwelling unit is located in HI, the NHGIS PUMA code is 00301" -in.puma "HI, 00302" "The dwelling unit is located in HI, the NHGIS PUMA code is 00302" -in.puma "HI, 00303" "The dwelling unit is located in HI, the NHGIS PUMA code is 00303" -in.puma "HI, 00304" "The dwelling unit is located in HI, the NHGIS PUMA code is 00304" -in.puma "HI, 00305" "The dwelling unit is located in HI, the NHGIS PUMA code is 00305" -in.puma "HI, 00306" "The dwelling unit is located in HI, the NHGIS PUMA code is 00306" -in.puma "HI, 00307" "The dwelling unit is located in HI, the NHGIS PUMA code is 00307" -in.puma "HI, 00308" "The dwelling unit is located in HI, the NHGIS PUMA code is 00308" -in.puma "IA, 00100" "The dwelling unit is located in IA, the NHGIS PUMA code is 00100" -in.puma "IA, 00200" "The dwelling unit is located in IA, the NHGIS PUMA code is 00200" -in.puma "IA, 00400" "The dwelling unit is located in IA, the NHGIS PUMA code is 00400" -in.puma "IA, 00500" "The dwelling unit is located in IA, the NHGIS PUMA code is 00500" -in.puma "IA, 00600" "The dwelling unit is located in IA, the NHGIS PUMA code is 00600" -in.puma "IA, 00700" "The dwelling unit is located in IA, the NHGIS PUMA code is 00700" -in.puma "IA, 00800" "The dwelling unit is located in IA, the NHGIS PUMA code is 00800" -in.puma "IA, 00900" "The dwelling unit is located in IA, the NHGIS PUMA code is 00900" -in.puma "IA, 01000" "The dwelling unit is located in IA, the NHGIS PUMA code is 01000" -in.puma "IA, 01100" "The dwelling unit is located in IA, the NHGIS PUMA code is 01100" -in.puma "IA, 01200" "The dwelling unit is located in IA, the NHGIS PUMA code is 01200" -in.puma "IA, 01300" "The dwelling unit is located in IA, the NHGIS PUMA code is 01300" -in.puma "IA, 01400" "The dwelling unit is located in IA, the NHGIS PUMA code is 01400" -in.puma "IA, 01500" "The dwelling unit is located in IA, the NHGIS PUMA code is 01500" -in.puma "IA, 01600" "The dwelling unit is located in IA, the NHGIS PUMA code is 01600" -in.puma "IA, 01700" "The dwelling unit is located in IA, the NHGIS PUMA code is 01700" -in.puma "IA, 01800" "The dwelling unit is located in IA, the NHGIS PUMA code is 01800" -in.puma "IA, 01900" "The dwelling unit is located in IA, the NHGIS PUMA code is 01900" -in.puma "IA, 02000" "The dwelling unit is located in IA, the NHGIS PUMA code is 02000" -in.puma "IA, 02100" "The dwelling unit is located in IA, the NHGIS PUMA code is 02100" -in.puma "IA, 02200" "The dwelling unit is located in IA, the NHGIS PUMA code is 02200" -in.puma "IA, 02300" "The dwelling unit is located in IA, the NHGIS PUMA code is 02300" -in.puma "ID, 00100" "The dwelling unit is located in ID, the NHGIS PUMA code is 00100" -in.puma "ID, 00200" "The dwelling unit is located in ID, the NHGIS PUMA code is 00200" -in.puma "ID, 00300" "The dwelling unit is located in ID, the NHGIS PUMA code is 00300" -in.puma "ID, 00400" "The dwelling unit is located in ID, the NHGIS PUMA code is 00400" -in.puma "ID, 00500" "The dwelling unit is located in ID, the NHGIS PUMA code is 00500" -in.puma "ID, 00600" "The dwelling unit is located in ID, the NHGIS PUMA code is 00600" -in.puma "ID, 00701" "The dwelling unit is located in ID, the NHGIS PUMA code is 00701" -in.puma "ID, 00702" "The dwelling unit is located in ID, the NHGIS PUMA code is 00702" -in.puma "ID, 00800" "The dwelling unit is located in ID, the NHGIS PUMA code is 00800" -in.puma "ID, 00900" "The dwelling unit is located in ID, the NHGIS PUMA code is 00900" -in.puma "ID, 01000" "The dwelling unit is located in ID, the NHGIS PUMA code is 01000" -in.puma "ID, 01100" "The dwelling unit is located in ID, the NHGIS PUMA code is 01100" -in.puma "ID, 01200" "The dwelling unit is located in ID, the NHGIS PUMA code is 01200" -in.puma "ID, 01300" "The dwelling unit is located in ID, the NHGIS PUMA code is 01300" -in.puma "IL, 00104" "The dwelling unit is located in IL, the NHGIS PUMA code is 00104" -in.puma "IL, 00105" "The dwelling unit is located in IL, the NHGIS PUMA code is 00105" -in.puma "IL, 00202" "The dwelling unit is located in IL, the NHGIS PUMA code is 00202" -in.puma "IL, 00300" "The dwelling unit is located in IL, the NHGIS PUMA code is 00300" -in.puma "IL, 00401" "The dwelling unit is located in IL, the NHGIS PUMA code is 00401" -in.puma "IL, 00501" "The dwelling unit is located in IL, the NHGIS PUMA code is 00501" -in.puma "IL, 00600" "The dwelling unit is located in IL, the NHGIS PUMA code is 00600" -in.puma "IL, 00700" "The dwelling unit is located in IL, the NHGIS PUMA code is 00700" -in.puma "IL, 00800" "The dwelling unit is located in IL, the NHGIS PUMA code is 00800" -in.puma "IL, 00900" "The dwelling unit is located in IL, the NHGIS PUMA code is 00900" -in.puma "IL, 01001" "The dwelling unit is located in IL, the NHGIS PUMA code is 01001" -in.puma "IL, 01104" "The dwelling unit is located in IL, the NHGIS PUMA code is 01104" -in.puma "IL, 01105" "The dwelling unit is located in IL, the NHGIS PUMA code is 01105" -in.puma "IL, 01204" "The dwelling unit is located in IL, the NHGIS PUMA code is 01204" -in.puma "IL, 01205" "The dwelling unit is located in IL, the NHGIS PUMA code is 01205" -in.puma "IL, 01300" "The dwelling unit is located in IL, the NHGIS PUMA code is 01300" -in.puma "IL, 01500" "The dwelling unit is located in IL, the NHGIS PUMA code is 01500" -in.puma "IL, 01602" "The dwelling unit is located in IL, the NHGIS PUMA code is 01602" -in.puma "IL, 01701" "The dwelling unit is located in IL, the NHGIS PUMA code is 01701" -in.puma "IL, 01900" "The dwelling unit is located in IL, the NHGIS PUMA code is 01900" -in.puma "IL, 02000" "The dwelling unit is located in IL, the NHGIS PUMA code is 02000" -in.puma "IL, 02100" "The dwelling unit is located in IL, the NHGIS PUMA code is 02100" -in.puma "IL, 02200" "The dwelling unit is located in IL, the NHGIS PUMA code is 02200" -in.puma "IL, 02300" "The dwelling unit is located in IL, the NHGIS PUMA code is 02300" -in.puma "IL, 02400" "The dwelling unit is located in IL, the NHGIS PUMA code is 02400" -in.puma "IL, 02501" "The dwelling unit is located in IL, the NHGIS PUMA code is 02501" -in.puma "IL, 02601" "The dwelling unit is located in IL, the NHGIS PUMA code is 02601" -in.puma "IL, 02700" "The dwelling unit is located in IL, the NHGIS PUMA code is 02700" -in.puma "IL, 02801" "The dwelling unit is located in IL, the NHGIS PUMA code is 02801" -in.puma "IL, 02901" "The dwelling unit is located in IL, the NHGIS PUMA code is 02901" -in.puma "IL, 03005" "The dwelling unit is located in IL, the NHGIS PUMA code is 03005" -in.puma "IL, 03007" "The dwelling unit is located in IL, the NHGIS PUMA code is 03007" -in.puma "IL, 03008" "The dwelling unit is located in IL, the NHGIS PUMA code is 03008" -in.puma "IL, 03009" "The dwelling unit is located in IL, the NHGIS PUMA code is 03009" -in.puma "IL, 03102" "The dwelling unit is located in IL, the NHGIS PUMA code is 03102" -in.puma "IL, 03105" "The dwelling unit is located in IL, the NHGIS PUMA code is 03105" -in.puma "IL, 03106" "The dwelling unit is located in IL, the NHGIS PUMA code is 03106" -in.puma "IL, 03107" "The dwelling unit is located in IL, the NHGIS PUMA code is 03107" -in.puma "IL, 03108" "The dwelling unit is located in IL, the NHGIS PUMA code is 03108" -in.puma "IL, 03202" "The dwelling unit is located in IL, the NHGIS PUMA code is 03202" -in.puma "IL, 03203" "The dwelling unit is located in IL, the NHGIS PUMA code is 03203" -in.puma "IL, 03204" "The dwelling unit is located in IL, the NHGIS PUMA code is 03204" -in.puma "IL, 03205" "The dwelling unit is located in IL, the NHGIS PUMA code is 03205" -in.puma "IL, 03207" "The dwelling unit is located in IL, the NHGIS PUMA code is 03207" -in.puma "IL, 03208" "The dwelling unit is located in IL, the NHGIS PUMA code is 03208" -in.puma "IL, 03209" "The dwelling unit is located in IL, the NHGIS PUMA code is 03209" -in.puma "IL, 03306" "The dwelling unit is located in IL, the NHGIS PUMA code is 03306" -in.puma "IL, 03307" "The dwelling unit is located in IL, the NHGIS PUMA code is 03307" -in.puma "IL, 03308" "The dwelling unit is located in IL, the NHGIS PUMA code is 03308" -in.puma "IL, 03309" "The dwelling unit is located in IL, the NHGIS PUMA code is 03309" -in.puma "IL, 03310" "The dwelling unit is located in IL, the NHGIS PUMA code is 03310" -in.puma "IL, 03401" "The dwelling unit is located in IL, the NHGIS PUMA code is 03401" -in.puma "IL, 03407" "The dwelling unit is located in IL, the NHGIS PUMA code is 03407" -in.puma "IL, 03408" "The dwelling unit is located in IL, the NHGIS PUMA code is 03408" -in.puma "IL, 03409" "The dwelling unit is located in IL, the NHGIS PUMA code is 03409" -in.puma "IL, 03410" "The dwelling unit is located in IL, the NHGIS PUMA code is 03410" -in.puma "IL, 03411" "The dwelling unit is located in IL, the NHGIS PUMA code is 03411" -in.puma "IL, 03412" "The dwelling unit is located in IL, the NHGIS PUMA code is 03412" -in.puma "IL, 03413" "The dwelling unit is located in IL, the NHGIS PUMA code is 03413" -in.puma "IL, 03414" "The dwelling unit is located in IL, the NHGIS PUMA code is 03414" -in.puma "IL, 03415" "The dwelling unit is located in IL, the NHGIS PUMA code is 03415" -in.puma "IL, 03416" "The dwelling unit is located in IL, the NHGIS PUMA code is 03416" -in.puma "IL, 03417" "The dwelling unit is located in IL, the NHGIS PUMA code is 03417" -in.puma "IL, 03418" "The dwelling unit is located in IL, the NHGIS PUMA code is 03418" -in.puma "IL, 03419" "The dwelling unit is located in IL, the NHGIS PUMA code is 03419" -in.puma "IL, 03420" "The dwelling unit is located in IL, the NHGIS PUMA code is 03420" -in.puma "IL, 03421" "The dwelling unit is located in IL, the NHGIS PUMA code is 03421" -in.puma "IL, 03422" "The dwelling unit is located in IL, the NHGIS PUMA code is 03422" -in.puma "IL, 03501" "The dwelling unit is located in IL, the NHGIS PUMA code is 03501" -in.puma "IL, 03502" "The dwelling unit is located in IL, the NHGIS PUMA code is 03502" -in.puma "IL, 03503" "The dwelling unit is located in IL, the NHGIS PUMA code is 03503" -in.puma "IL, 03504" "The dwelling unit is located in IL, the NHGIS PUMA code is 03504" -in.puma "IL, 03520" "The dwelling unit is located in IL, the NHGIS PUMA code is 03520" -in.puma "IL, 03521" "The dwelling unit is located in IL, the NHGIS PUMA code is 03521" -in.puma "IL, 03522" "The dwelling unit is located in IL, the NHGIS PUMA code is 03522" -in.puma "IL, 03523" "The dwelling unit is located in IL, the NHGIS PUMA code is 03523" -in.puma "IL, 03524" "The dwelling unit is located in IL, the NHGIS PUMA code is 03524" -in.puma "IL, 03525" "The dwelling unit is located in IL, the NHGIS PUMA code is 03525" -in.puma "IL, 03526" "The dwelling unit is located in IL, the NHGIS PUMA code is 03526" -in.puma "IL, 03527" "The dwelling unit is located in IL, the NHGIS PUMA code is 03527" -in.puma "IL, 03528" "The dwelling unit is located in IL, the NHGIS PUMA code is 03528" -in.puma "IL, 03529" "The dwelling unit is located in IL, the NHGIS PUMA code is 03529" -in.puma "IL, 03530" "The dwelling unit is located in IL, the NHGIS PUMA code is 03530" -in.puma "IL, 03531" "The dwelling unit is located in IL, the NHGIS PUMA code is 03531" -in.puma "IL, 03532" "The dwelling unit is located in IL, the NHGIS PUMA code is 03532" -in.puma "IL, 03601" "The dwelling unit is located in IL, the NHGIS PUMA code is 03601" -in.puma "IL, 03602" "The dwelling unit is located in IL, the NHGIS PUMA code is 03602" -in.puma "IL, 03700" "The dwelling unit is located in IL, the NHGIS PUMA code is 03700" -in.puma "IN, 00101" "The dwelling unit is located in IN, the NHGIS PUMA code is 00101" -in.puma "IN, 00102" "The dwelling unit is located in IN, the NHGIS PUMA code is 00102" -in.puma "IN, 00103" "The dwelling unit is located in IN, the NHGIS PUMA code is 00103" -in.puma "IN, 00104" "The dwelling unit is located in IN, the NHGIS PUMA code is 00104" -in.puma "IN, 00200" "The dwelling unit is located in IN, the NHGIS PUMA code is 00200" -in.puma "IN, 00300" "The dwelling unit is located in IN, the NHGIS PUMA code is 00300" -in.puma "IN, 00401" "The dwelling unit is located in IN, the NHGIS PUMA code is 00401" -in.puma "IN, 00402" "The dwelling unit is located in IN, the NHGIS PUMA code is 00402" -in.puma "IN, 00500" "The dwelling unit is located in IN, the NHGIS PUMA code is 00500" -in.puma "IN, 00600" "The dwelling unit is located in IN, the NHGIS PUMA code is 00600" -in.puma "IN, 00700" "The dwelling unit is located in IN, the NHGIS PUMA code is 00700" -in.puma "IN, 00800" "The dwelling unit is located in IN, the NHGIS PUMA code is 00800" -in.puma "IN, 00900" "The dwelling unit is located in IN, the NHGIS PUMA code is 00900" -in.puma "IN, 01001" "The dwelling unit is located in IN, the NHGIS PUMA code is 01001" -in.puma "IN, 01002" "The dwelling unit is located in IN, the NHGIS PUMA code is 01002" -in.puma "IN, 01003" "The dwelling unit is located in IN, the NHGIS PUMA code is 01003" -in.puma "IN, 01100" "The dwelling unit is located in IN, the NHGIS PUMA code is 01100" -in.puma "IN, 01200" "The dwelling unit is located in IN, the NHGIS PUMA code is 01200" -in.puma "IN, 01300" "The dwelling unit is located in IN, the NHGIS PUMA code is 01300" -in.puma "IN, 01400" "The dwelling unit is located in IN, the NHGIS PUMA code is 01400" -in.puma "IN, 01500" "The dwelling unit is located in IN, the NHGIS PUMA code is 01500" -in.puma "IN, 01600" "The dwelling unit is located in IN, the NHGIS PUMA code is 01600" -in.puma "IN, 01700" "The dwelling unit is located in IN, the NHGIS PUMA code is 01700" -in.puma "IN, 01801" "The dwelling unit is located in IN, the NHGIS PUMA code is 01801" -in.puma "IN, 01802" "The dwelling unit is located in IN, the NHGIS PUMA code is 01802" -in.puma "IN, 01803" "The dwelling unit is located in IN, the NHGIS PUMA code is 01803" -in.puma "IN, 01900" "The dwelling unit is located in IN, the NHGIS PUMA code is 01900" -in.puma "IN, 02000" "The dwelling unit is located in IN, the NHGIS PUMA code is 02000" -in.puma "IN, 02100" "The dwelling unit is located in IN, the NHGIS PUMA code is 02100" -in.puma "IN, 02200" "The dwelling unit is located in IN, the NHGIS PUMA code is 02200" -in.puma "IN, 02301" "The dwelling unit is located in IN, the NHGIS PUMA code is 02301" -in.puma "IN, 02302" "The dwelling unit is located in IN, the NHGIS PUMA code is 02302" -in.puma "IN, 02303" "The dwelling unit is located in IN, the NHGIS PUMA code is 02303" -in.puma "IN, 02304" "The dwelling unit is located in IN, the NHGIS PUMA code is 02304" -in.puma "IN, 02305" "The dwelling unit is located in IN, the NHGIS PUMA code is 02305" -in.puma "IN, 02306" "The dwelling unit is located in IN, the NHGIS PUMA code is 02306" -in.puma "IN, 02307" "The dwelling unit is located in IN, the NHGIS PUMA code is 02307" -in.puma "IN, 02400" "The dwelling unit is located in IN, the NHGIS PUMA code is 02400" -in.puma "IN, 02500" "The dwelling unit is located in IN, the NHGIS PUMA code is 02500" -in.puma "IN, 02600" "The dwelling unit is located in IN, the NHGIS PUMA code is 02600" -in.puma "IN, 02700" "The dwelling unit is located in IN, the NHGIS PUMA code is 02700" -in.puma "IN, 02800" "The dwelling unit is located in IN, the NHGIS PUMA code is 02800" -in.puma "IN, 02900" "The dwelling unit is located in IN, the NHGIS PUMA code is 02900" -in.puma "IN, 03000" "The dwelling unit is located in IN, the NHGIS PUMA code is 03000" -in.puma "IN, 03100" "The dwelling unit is located in IN, the NHGIS PUMA code is 03100" -in.puma "IN, 03200" "The dwelling unit is located in IN, the NHGIS PUMA code is 03200" -in.puma "IN, 03300" "The dwelling unit is located in IN, the NHGIS PUMA code is 03300" -in.puma "IN, 03400" "The dwelling unit is located in IN, the NHGIS PUMA code is 03400" -in.puma "IN, 03500" "The dwelling unit is located in IN, the NHGIS PUMA code is 03500" -in.puma "IN, 03600" "The dwelling unit is located in IN, the NHGIS PUMA code is 03600" -in.puma "KS, 00100" "The dwelling unit is located in KS, the NHGIS PUMA code is 00100" -in.puma "KS, 00200" "The dwelling unit is located in KS, the NHGIS PUMA code is 00200" -in.puma "KS, 00300" "The dwelling unit is located in KS, the NHGIS PUMA code is 00300" -in.puma "KS, 00400" "The dwelling unit is located in KS, the NHGIS PUMA code is 00400" -in.puma "KS, 00500" "The dwelling unit is located in KS, the NHGIS PUMA code is 00500" -in.puma "KS, 00601" "The dwelling unit is located in KS, the NHGIS PUMA code is 00601" -in.puma "KS, 00602" "The dwelling unit is located in KS, the NHGIS PUMA code is 00602" -in.puma "KS, 00603" "The dwelling unit is located in KS, the NHGIS PUMA code is 00603" -in.puma "KS, 00604" "The dwelling unit is located in KS, the NHGIS PUMA code is 00604" -in.puma "KS, 00700" "The dwelling unit is located in KS, the NHGIS PUMA code is 00700" -in.puma "KS, 00801" "The dwelling unit is located in KS, the NHGIS PUMA code is 00801" -in.puma "KS, 00802" "The dwelling unit is located in KS, the NHGIS PUMA code is 00802" -in.puma "KS, 00900" "The dwelling unit is located in KS, the NHGIS PUMA code is 00900" -in.puma "KS, 01000" "The dwelling unit is located in KS, the NHGIS PUMA code is 01000" -in.puma "KS, 01100" "The dwelling unit is located in KS, the NHGIS PUMA code is 01100" -in.puma "KS, 01200" "The dwelling unit is located in KS, the NHGIS PUMA code is 01200" -in.puma "KS, 01301" "The dwelling unit is located in KS, the NHGIS PUMA code is 01301" -in.puma "KS, 01302" "The dwelling unit is located in KS, the NHGIS PUMA code is 01302" -in.puma "KS, 01303" "The dwelling unit is located in KS, the NHGIS PUMA code is 01303" -in.puma "KS, 01304" "The dwelling unit is located in KS, the NHGIS PUMA code is 01304" -in.puma "KS, 01400" "The dwelling unit is located in KS, the NHGIS PUMA code is 01400" -in.puma "KS, 01500" "The dwelling unit is located in KS, the NHGIS PUMA code is 01500" -in.puma "KY, 00100" "The dwelling unit is located in KY, the NHGIS PUMA code is 00100" -in.puma "KY, 00200" "The dwelling unit is located in KY, the NHGIS PUMA code is 00200" -in.puma "KY, 00300" "The dwelling unit is located in KY, the NHGIS PUMA code is 00300" -in.puma "KY, 00400" "The dwelling unit is located in KY, the NHGIS PUMA code is 00400" -in.puma "KY, 00500" "The dwelling unit is located in KY, the NHGIS PUMA code is 00500" -in.puma "KY, 00600" "The dwelling unit is located in KY, the NHGIS PUMA code is 00600" -in.puma "KY, 00700" "The dwelling unit is located in KY, the NHGIS PUMA code is 00700" -in.puma "KY, 00800" "The dwelling unit is located in KY, the NHGIS PUMA code is 00800" -in.puma "KY, 00900" "The dwelling unit is located in KY, the NHGIS PUMA code is 00900" -in.puma "KY, 01000" "The dwelling unit is located in KY, the NHGIS PUMA code is 01000" -in.puma "KY, 01100" "The dwelling unit is located in KY, the NHGIS PUMA code is 01100" -in.puma "KY, 01200" "The dwelling unit is located in KY, the NHGIS PUMA code is 01200" -in.puma "KY, 01300" "The dwelling unit is located in KY, the NHGIS PUMA code is 01300" -in.puma "KY, 01400" "The dwelling unit is located in KY, the NHGIS PUMA code is 01400" -in.puma "KY, 01500" "The dwelling unit is located in KY, the NHGIS PUMA code is 01500" -in.puma "KY, 01600" "The dwelling unit is located in KY, the NHGIS PUMA code is 01600" -in.puma "KY, 01701" "The dwelling unit is located in KY, the NHGIS PUMA code is 01701" -in.puma "KY, 01702" "The dwelling unit is located in KY, the NHGIS PUMA code is 01702" -in.puma "KY, 01703" "The dwelling unit is located in KY, the NHGIS PUMA code is 01703" -in.puma "KY, 01704" "The dwelling unit is located in KY, the NHGIS PUMA code is 01704" -in.puma "KY, 01705" "The dwelling unit is located in KY, the NHGIS PUMA code is 01705" -in.puma "KY, 01706" "The dwelling unit is located in KY, the NHGIS PUMA code is 01706" -in.puma "KY, 01800" "The dwelling unit is located in KY, the NHGIS PUMA code is 01800" -in.puma "KY, 01901" "The dwelling unit is located in KY, the NHGIS PUMA code is 01901" -in.puma "KY, 01902" "The dwelling unit is located in KY, the NHGIS PUMA code is 01902" -in.puma "KY, 02000" "The dwelling unit is located in KY, the NHGIS PUMA code is 02000" -in.puma "KY, 02100" "The dwelling unit is located in KY, the NHGIS PUMA code is 02100" -in.puma "KY, 02200" "The dwelling unit is located in KY, the NHGIS PUMA code is 02200" -in.puma "KY, 02300" "The dwelling unit is located in KY, the NHGIS PUMA code is 02300" -in.puma "KY, 02400" "The dwelling unit is located in KY, the NHGIS PUMA code is 02400" -in.puma "KY, 02500" "The dwelling unit is located in KY, the NHGIS PUMA code is 02500" -in.puma "KY, 02600" "The dwelling unit is located in KY, the NHGIS PUMA code is 02600" -in.puma "KY, 02700" "The dwelling unit is located in KY, the NHGIS PUMA code is 02700" -in.puma "KY, 02800" "The dwelling unit is located in KY, the NHGIS PUMA code is 02800" -in.puma "LA, 00100" "The dwelling unit is located in LA, the NHGIS PUMA code is 00100" -in.puma "LA, 00101" "The dwelling unit is located in LA, the NHGIS PUMA code is 00101" -in.puma "LA, 00200" "The dwelling unit is located in LA, the NHGIS PUMA code is 00200" -in.puma "LA, 00300" "The dwelling unit is located in LA, the NHGIS PUMA code is 00300" -in.puma "LA, 00400" "The dwelling unit is located in LA, the NHGIS PUMA code is 00400" -in.puma "LA, 00500" "The dwelling unit is located in LA, the NHGIS PUMA code is 00500" -in.puma "LA, 00600" "The dwelling unit is located in LA, the NHGIS PUMA code is 00600" -in.puma "LA, 00700" "The dwelling unit is located in LA, the NHGIS PUMA code is 00700" -in.puma "LA, 00800" "The dwelling unit is located in LA, the NHGIS PUMA code is 00800" -in.puma "LA, 00900" "The dwelling unit is located in LA, the NHGIS PUMA code is 00900" -in.puma "LA, 01000" "The dwelling unit is located in LA, the NHGIS PUMA code is 01000" -in.puma "LA, 01100" "The dwelling unit is located in LA, the NHGIS PUMA code is 01100" -in.puma "LA, 01200" "The dwelling unit is located in LA, the NHGIS PUMA code is 01200" -in.puma "LA, 01201" "The dwelling unit is located in LA, the NHGIS PUMA code is 01201" -in.puma "LA, 01300" "The dwelling unit is located in LA, the NHGIS PUMA code is 01300" -in.puma "LA, 01400" "The dwelling unit is located in LA, the NHGIS PUMA code is 01400" -in.puma "LA, 01500" "The dwelling unit is located in LA, the NHGIS PUMA code is 01500" -in.puma "LA, 01501" "The dwelling unit is located in LA, the NHGIS PUMA code is 01501" -in.puma "LA, 01502" "The dwelling unit is located in LA, the NHGIS PUMA code is 01502" -in.puma "LA, 01600" "The dwelling unit is located in LA, the NHGIS PUMA code is 01600" -in.puma "LA, 01700" "The dwelling unit is located in LA, the NHGIS PUMA code is 01700" -in.puma "LA, 01800" "The dwelling unit is located in LA, the NHGIS PUMA code is 01800" -in.puma "LA, 01900" "The dwelling unit is located in LA, the NHGIS PUMA code is 01900" -in.puma "LA, 02000" "The dwelling unit is located in LA, the NHGIS PUMA code is 02000" -in.puma "LA, 02100" "The dwelling unit is located in LA, the NHGIS PUMA code is 02100" -in.puma "LA, 02200" "The dwelling unit is located in LA, the NHGIS PUMA code is 02200" -in.puma "LA, 02201" "The dwelling unit is located in LA, the NHGIS PUMA code is 02201" -in.puma "LA, 02300" "The dwelling unit is located in LA, the NHGIS PUMA code is 02300" -in.puma "LA, 02301" "The dwelling unit is located in LA, the NHGIS PUMA code is 02301" -in.puma "LA, 02302" "The dwelling unit is located in LA, the NHGIS PUMA code is 02302" -in.puma "LA, 02400" "The dwelling unit is located in LA, the NHGIS PUMA code is 02400" -in.puma "LA, 02401" "The dwelling unit is located in LA, the NHGIS PUMA code is 02401" -in.puma "LA, 02402" "The dwelling unit is located in LA, the NHGIS PUMA code is 02402" -in.puma "LA, 02500" "The dwelling unit is located in LA, the NHGIS PUMA code is 02500" -in.puma "MA, 00100" "The dwelling unit is located in MA, the NHGIS PUMA code is 00100" -in.puma "MA, 00200" "The dwelling unit is located in MA, the NHGIS PUMA code is 00200" -in.puma "MA, 00300" "The dwelling unit is located in MA, the NHGIS PUMA code is 00300" -in.puma "MA, 00301" "The dwelling unit is located in MA, the NHGIS PUMA code is 00301" -in.puma "MA, 00302" "The dwelling unit is located in MA, the NHGIS PUMA code is 00302" -in.puma "MA, 00303" "The dwelling unit is located in MA, the NHGIS PUMA code is 00303" -in.puma "MA, 00304" "The dwelling unit is located in MA, the NHGIS PUMA code is 00304" -in.puma "MA, 00400" "The dwelling unit is located in MA, the NHGIS PUMA code is 00400" -in.puma "MA, 00501" "The dwelling unit is located in MA, the NHGIS PUMA code is 00501" -in.puma "MA, 00502" "The dwelling unit is located in MA, the NHGIS PUMA code is 00502" -in.puma "MA, 00503" "The dwelling unit is located in MA, the NHGIS PUMA code is 00503" -in.puma "MA, 00504" "The dwelling unit is located in MA, the NHGIS PUMA code is 00504" -in.puma "MA, 00505" "The dwelling unit is located in MA, the NHGIS PUMA code is 00505" -in.puma "MA, 00506" "The dwelling unit is located in MA, the NHGIS PUMA code is 00506" -in.puma "MA, 00507" "The dwelling unit is located in MA, the NHGIS PUMA code is 00507" -in.puma "MA, 00508" "The dwelling unit is located in MA, the NHGIS PUMA code is 00508" -in.puma "MA, 00701" "The dwelling unit is located in MA, the NHGIS PUMA code is 00701" -in.puma "MA, 00702" "The dwelling unit is located in MA, the NHGIS PUMA code is 00702" -in.puma "MA, 00703" "The dwelling unit is located in MA, the NHGIS PUMA code is 00703" -in.puma "MA, 00704" "The dwelling unit is located in MA, the NHGIS PUMA code is 00704" -in.puma "MA, 01000" "The dwelling unit is located in MA, the NHGIS PUMA code is 01000" -in.puma "MA, 01300" "The dwelling unit is located in MA, the NHGIS PUMA code is 01300" -in.puma "MA, 01400" "The dwelling unit is located in MA, the NHGIS PUMA code is 01400" -in.puma "MA, 01600" "The dwelling unit is located in MA, the NHGIS PUMA code is 01600" -in.puma "MA, 01900" "The dwelling unit is located in MA, the NHGIS PUMA code is 01900" -in.puma "MA, 01901" "The dwelling unit is located in MA, the NHGIS PUMA code is 01901" -in.puma "MA, 01902" "The dwelling unit is located in MA, the NHGIS PUMA code is 01902" -in.puma "MA, 02400" "The dwelling unit is located in MA, the NHGIS PUMA code is 02400" -in.puma "MA, 02800" "The dwelling unit is located in MA, the NHGIS PUMA code is 02800" -in.puma "MA, 03301" "The dwelling unit is located in MA, the NHGIS PUMA code is 03301" -in.puma "MA, 03302" "The dwelling unit is located in MA, the NHGIS PUMA code is 03302" -in.puma "MA, 03303" "The dwelling unit is located in MA, the NHGIS PUMA code is 03303" -in.puma "MA, 03304" "The dwelling unit is located in MA, the NHGIS PUMA code is 03304" -in.puma "MA, 03305" "The dwelling unit is located in MA, the NHGIS PUMA code is 03305" -in.puma "MA, 03306" "The dwelling unit is located in MA, the NHGIS PUMA code is 03306" -in.puma "MA, 03400" "The dwelling unit is located in MA, the NHGIS PUMA code is 03400" -in.puma "MA, 03500" "The dwelling unit is located in MA, the NHGIS PUMA code is 03500" -in.puma "MA, 03601" "The dwelling unit is located in MA, the NHGIS PUMA code is 03601" -in.puma "MA, 03602" "The dwelling unit is located in MA, the NHGIS PUMA code is 03602" -in.puma "MA, 03603" "The dwelling unit is located in MA, the NHGIS PUMA code is 03603" -in.puma "MA, 03900" "The dwelling unit is located in MA, the NHGIS PUMA code is 03900" -in.puma "MA, 04000" "The dwelling unit is located in MA, the NHGIS PUMA code is 04000" -in.puma "MA, 04200" "The dwelling unit is located in MA, the NHGIS PUMA code is 04200" -in.puma "MA, 04301" "The dwelling unit is located in MA, the NHGIS PUMA code is 04301" -in.puma "MA, 04302" "The dwelling unit is located in MA, the NHGIS PUMA code is 04302" -in.puma "MA, 04303" "The dwelling unit is located in MA, the NHGIS PUMA code is 04303" -in.puma "MA, 04500" "The dwelling unit is located in MA, the NHGIS PUMA code is 04500" -in.puma "MA, 04700" "The dwelling unit is located in MA, the NHGIS PUMA code is 04700" -in.puma "MA, 04800" "The dwelling unit is located in MA, the NHGIS PUMA code is 04800" -in.puma "MA, 04901" "The dwelling unit is located in MA, the NHGIS PUMA code is 04901" -in.puma "MA, 04902" "The dwelling unit is located in MA, the NHGIS PUMA code is 04902" -in.puma "MA, 04903" "The dwelling unit is located in MA, the NHGIS PUMA code is 04903" -in.puma "MD, 00100" "The dwelling unit is located in MD, the NHGIS PUMA code is 00100" -in.puma "MD, 00200" "The dwelling unit is located in MD, the NHGIS PUMA code is 00200" -in.puma "MD, 00301" "The dwelling unit is located in MD, the NHGIS PUMA code is 00301" -in.puma "MD, 00302" "The dwelling unit is located in MD, the NHGIS PUMA code is 00302" -in.puma "MD, 00400" "The dwelling unit is located in MD, the NHGIS PUMA code is 00400" -in.puma "MD, 00501" "The dwelling unit is located in MD, the NHGIS PUMA code is 00501" -in.puma "MD, 00502" "The dwelling unit is located in MD, the NHGIS PUMA code is 00502" -in.puma "MD, 00503" "The dwelling unit is located in MD, the NHGIS PUMA code is 00503" -in.puma "MD, 00504" "The dwelling unit is located in MD, the NHGIS PUMA code is 00504" -in.puma "MD, 00505" "The dwelling unit is located in MD, the NHGIS PUMA code is 00505" -in.puma "MD, 00506" "The dwelling unit is located in MD, the NHGIS PUMA code is 00506" -in.puma "MD, 00507" "The dwelling unit is located in MD, the NHGIS PUMA code is 00507" -in.puma "MD, 00601" "The dwelling unit is located in MD, the NHGIS PUMA code is 00601" -in.puma "MD, 00602" "The dwelling unit is located in MD, the NHGIS PUMA code is 00602" -in.puma "MD, 00700" "The dwelling unit is located in MD, the NHGIS PUMA code is 00700" -in.puma "MD, 00801" "The dwelling unit is located in MD, the NHGIS PUMA code is 00801" -in.puma "MD, 00802" "The dwelling unit is located in MD, the NHGIS PUMA code is 00802" -in.puma "MD, 00803" "The dwelling unit is located in MD, the NHGIS PUMA code is 00803" -in.puma "MD, 00804" "The dwelling unit is located in MD, the NHGIS PUMA code is 00804" -in.puma "MD, 00805" "The dwelling unit is located in MD, the NHGIS PUMA code is 00805" -in.puma "MD, 00901" "The dwelling unit is located in MD, the NHGIS PUMA code is 00901" -in.puma "MD, 00902" "The dwelling unit is located in MD, the NHGIS PUMA code is 00902" -in.puma "MD, 01001" "The dwelling unit is located in MD, the NHGIS PUMA code is 01001" -in.puma "MD, 01002" "The dwelling unit is located in MD, the NHGIS PUMA code is 01002" -in.puma "MD, 01003" "The dwelling unit is located in MD, the NHGIS PUMA code is 01003" -in.puma "MD, 01004" "The dwelling unit is located in MD, the NHGIS PUMA code is 01004" -in.puma "MD, 01005" "The dwelling unit is located in MD, the NHGIS PUMA code is 01005" -in.puma "MD, 01006" "The dwelling unit is located in MD, the NHGIS PUMA code is 01006" -in.puma "MD, 01007" "The dwelling unit is located in MD, the NHGIS PUMA code is 01007" -in.puma "MD, 01101" "The dwelling unit is located in MD, the NHGIS PUMA code is 01101" -in.puma "MD, 01102" "The dwelling unit is located in MD, the NHGIS PUMA code is 01102" -in.puma "MD, 01103" "The dwelling unit is located in MD, the NHGIS PUMA code is 01103" -in.puma "MD, 01104" "The dwelling unit is located in MD, the NHGIS PUMA code is 01104" -in.puma "MD, 01105" "The dwelling unit is located in MD, the NHGIS PUMA code is 01105" -in.puma "MD, 01106" "The dwelling unit is located in MD, the NHGIS PUMA code is 01106" -in.puma "MD, 01107" "The dwelling unit is located in MD, the NHGIS PUMA code is 01107" -in.puma "MD, 01201" "The dwelling unit is located in MD, the NHGIS PUMA code is 01201" -in.puma "MD, 01202" "The dwelling unit is located in MD, the NHGIS PUMA code is 01202" -in.puma "MD, 01203" "The dwelling unit is located in MD, the NHGIS PUMA code is 01203" -in.puma "MD, 01204" "The dwelling unit is located in MD, the NHGIS PUMA code is 01204" -in.puma "MD, 01300" "The dwelling unit is located in MD, the NHGIS PUMA code is 01300" -in.puma "MD, 01400" "The dwelling unit is located in MD, the NHGIS PUMA code is 01400" -in.puma "MD, 01500" "The dwelling unit is located in MD, the NHGIS PUMA code is 01500" -in.puma "MD, 01600" "The dwelling unit is located in MD, the NHGIS PUMA code is 01600" -in.puma "ME, 00100" "The dwelling unit is located in ME, the NHGIS PUMA code is 00100" -in.puma "ME, 00200" "The dwelling unit is located in ME, the NHGIS PUMA code is 00200" -in.puma "ME, 00300" "The dwelling unit is located in ME, the NHGIS PUMA code is 00300" -in.puma "ME, 00400" "The dwelling unit is located in ME, the NHGIS PUMA code is 00400" -in.puma "ME, 00500" "The dwelling unit is located in ME, the NHGIS PUMA code is 00500" -in.puma "ME, 00600" "The dwelling unit is located in ME, the NHGIS PUMA code is 00600" -in.puma "ME, 00700" "The dwelling unit is located in ME, the NHGIS PUMA code is 00700" -in.puma "ME, 00800" "The dwelling unit is located in ME, the NHGIS PUMA code is 00800" -in.puma "ME, 00900" "The dwelling unit is located in ME, the NHGIS PUMA code is 00900" -in.puma "ME, 01000" "The dwelling unit is located in ME, the NHGIS PUMA code is 01000" -in.puma "MI, 00100" "The dwelling unit is located in MI, the NHGIS PUMA code is 00100" -in.puma "MI, 00200" "The dwelling unit is located in MI, the NHGIS PUMA code is 00200" -in.puma "MI, 00300" "The dwelling unit is located in MI, the NHGIS PUMA code is 00300" -in.puma "MI, 00400" "The dwelling unit is located in MI, the NHGIS PUMA code is 00400" -in.puma "MI, 00500" "The dwelling unit is located in MI, the NHGIS PUMA code is 00500" -in.puma "MI, 00600" "The dwelling unit is located in MI, the NHGIS PUMA code is 00600" -in.puma "MI, 00700" "The dwelling unit is located in MI, the NHGIS PUMA code is 00700" -in.puma "MI, 00801" "The dwelling unit is located in MI, the NHGIS PUMA code is 00801" -in.puma "MI, 00802" "The dwelling unit is located in MI, the NHGIS PUMA code is 00802" -in.puma "MI, 00900" "The dwelling unit is located in MI, the NHGIS PUMA code is 00900" -in.puma "MI, 01001" "The dwelling unit is located in MI, the NHGIS PUMA code is 01001" -in.puma "MI, 01002" "The dwelling unit is located in MI, the NHGIS PUMA code is 01002" -in.puma "MI, 01003" "The dwelling unit is located in MI, the NHGIS PUMA code is 01003" -in.puma "MI, 01004" "The dwelling unit is located in MI, the NHGIS PUMA code is 01004" -in.puma "MI, 01100" "The dwelling unit is located in MI, the NHGIS PUMA code is 01100" -in.puma "MI, 01200" "The dwelling unit is located in MI, the NHGIS PUMA code is 01200" -in.puma "MI, 01300" "The dwelling unit is located in MI, the NHGIS PUMA code is 01300" -in.puma "MI, 01400" "The dwelling unit is located in MI, the NHGIS PUMA code is 01400" -in.puma "MI, 01500" "The dwelling unit is located in MI, the NHGIS PUMA code is 01500" -in.puma "MI, 01600" "The dwelling unit is located in MI, the NHGIS PUMA code is 01600" -in.puma "MI, 01701" "The dwelling unit is located in MI, the NHGIS PUMA code is 01701" -in.puma "MI, 01702" "The dwelling unit is located in MI, the NHGIS PUMA code is 01702" -in.puma "MI, 01703" "The dwelling unit is located in MI, the NHGIS PUMA code is 01703" -in.puma "MI, 01704" "The dwelling unit is located in MI, the NHGIS PUMA code is 01704" -in.puma "MI, 01801" "The dwelling unit is located in MI, the NHGIS PUMA code is 01801" -in.puma "MI, 01802" "The dwelling unit is located in MI, the NHGIS PUMA code is 01802" -in.puma "MI, 01900" "The dwelling unit is located in MI, the NHGIS PUMA code is 01900" -in.puma "MI, 02000" "The dwelling unit is located in MI, the NHGIS PUMA code is 02000" -in.puma "MI, 02101" "The dwelling unit is located in MI, the NHGIS PUMA code is 02101" -in.puma "MI, 02102" "The dwelling unit is located in MI, the NHGIS PUMA code is 02102" -in.puma "MI, 02200" "The dwelling unit is located in MI, the NHGIS PUMA code is 02200" -in.puma "MI, 02300" "The dwelling unit is located in MI, the NHGIS PUMA code is 02300" -in.puma "MI, 02400" "The dwelling unit is located in MI, the NHGIS PUMA code is 02400" -in.puma "MI, 02500" "The dwelling unit is located in MI, the NHGIS PUMA code is 02500" -in.puma "MI, 02600" "The dwelling unit is located in MI, the NHGIS PUMA code is 02600" -in.puma "MI, 02701" "The dwelling unit is located in MI, the NHGIS PUMA code is 02701" -in.puma "MI, 02702" "The dwelling unit is located in MI, the NHGIS PUMA code is 02702" -in.puma "MI, 02703" "The dwelling unit is located in MI, the NHGIS PUMA code is 02703" -in.puma "MI, 02800" "The dwelling unit is located in MI, the NHGIS PUMA code is 02800" -in.puma "MI, 02901" "The dwelling unit is located in MI, the NHGIS PUMA code is 02901" -in.puma "MI, 02902" "The dwelling unit is located in MI, the NHGIS PUMA code is 02902" -in.puma "MI, 02903" "The dwelling unit is located in MI, the NHGIS PUMA code is 02903" -in.puma "MI, 02904" "The dwelling unit is located in MI, the NHGIS PUMA code is 02904" -in.puma "MI, 02905" "The dwelling unit is located in MI, the NHGIS PUMA code is 02905" -in.puma "MI, 02906" "The dwelling unit is located in MI, the NHGIS PUMA code is 02906" -in.puma "MI, 02907" "The dwelling unit is located in MI, the NHGIS PUMA code is 02907" -in.puma "MI, 02908" "The dwelling unit is located in MI, the NHGIS PUMA code is 02908" -in.puma "MI, 03001" "The dwelling unit is located in MI, the NHGIS PUMA code is 03001" -in.puma "MI, 03002" "The dwelling unit is located in MI, the NHGIS PUMA code is 03002" -in.puma "MI, 03003" "The dwelling unit is located in MI, the NHGIS PUMA code is 03003" -in.puma "MI, 03004" "The dwelling unit is located in MI, the NHGIS PUMA code is 03004" -in.puma "MI, 03005" "The dwelling unit is located in MI, the NHGIS PUMA code is 03005" -in.puma "MI, 03006" "The dwelling unit is located in MI, the NHGIS PUMA code is 03006" -in.puma "MI, 03100" "The dwelling unit is located in MI, the NHGIS PUMA code is 03100" -in.puma "MI, 03201" "The dwelling unit is located in MI, the NHGIS PUMA code is 03201" -in.puma "MI, 03202" "The dwelling unit is located in MI, the NHGIS PUMA code is 03202" -in.puma "MI, 03203" "The dwelling unit is located in MI, the NHGIS PUMA code is 03203" -in.puma "MI, 03204" "The dwelling unit is located in MI, the NHGIS PUMA code is 03204" -in.puma "MI, 03205" "The dwelling unit is located in MI, the NHGIS PUMA code is 03205" -in.puma "MI, 03206" "The dwelling unit is located in MI, the NHGIS PUMA code is 03206" -in.puma "MI, 03207" "The dwelling unit is located in MI, the NHGIS PUMA code is 03207" -in.puma "MI, 03208" "The dwelling unit is located in MI, the NHGIS PUMA code is 03208" -in.puma "MI, 03209" "The dwelling unit is located in MI, the NHGIS PUMA code is 03209" -in.puma "MI, 03210" "The dwelling unit is located in MI, the NHGIS PUMA code is 03210" -in.puma "MI, 03211" "The dwelling unit is located in MI, the NHGIS PUMA code is 03211" -in.puma "MI, 03212" "The dwelling unit is located in MI, the NHGIS PUMA code is 03212" -in.puma "MI, 03213" "The dwelling unit is located in MI, the NHGIS PUMA code is 03213" -in.puma "MI, 03300" "The dwelling unit is located in MI, the NHGIS PUMA code is 03300" -in.puma "MN, 00100" "The dwelling unit is located in MN, the NHGIS PUMA code is 00100" -in.puma "MN, 00200" "The dwelling unit is located in MN, the NHGIS PUMA code is 00200" -in.puma "MN, 00300" "The dwelling unit is located in MN, the NHGIS PUMA code is 00300" -in.puma "MN, 00400" "The dwelling unit is located in MN, the NHGIS PUMA code is 00400" -in.puma "MN, 00500" "The dwelling unit is located in MN, the NHGIS PUMA code is 00500" -in.puma "MN, 00600" "The dwelling unit is located in MN, the NHGIS PUMA code is 00600" -in.puma "MN, 00700" "The dwelling unit is located in MN, the NHGIS PUMA code is 00700" -in.puma "MN, 00800" "The dwelling unit is located in MN, the NHGIS PUMA code is 00800" -in.puma "MN, 00900" "The dwelling unit is located in MN, the NHGIS PUMA code is 00900" -in.puma "MN, 01000" "The dwelling unit is located in MN, the NHGIS PUMA code is 01000" -in.puma "MN, 01101" "The dwelling unit is located in MN, the NHGIS PUMA code is 01101" -in.puma "MN, 01102" "The dwelling unit is located in MN, the NHGIS PUMA code is 01102" -in.puma "MN, 01103" "The dwelling unit is located in MN, the NHGIS PUMA code is 01103" -in.puma "MN, 01201" "The dwelling unit is located in MN, the NHGIS PUMA code is 01201" -in.puma "MN, 01202" "The dwelling unit is located in MN, the NHGIS PUMA code is 01202" -in.puma "MN, 01301" "The dwelling unit is located in MN, the NHGIS PUMA code is 01301" -in.puma "MN, 01302" "The dwelling unit is located in MN, the NHGIS PUMA code is 01302" -in.puma "MN, 01303" "The dwelling unit is located in MN, the NHGIS PUMA code is 01303" -in.puma "MN, 01304" "The dwelling unit is located in MN, the NHGIS PUMA code is 01304" -in.puma "MN, 01401" "The dwelling unit is located in MN, the NHGIS PUMA code is 01401" -in.puma "MN, 01402" "The dwelling unit is located in MN, the NHGIS PUMA code is 01402" -in.puma "MN, 01403" "The dwelling unit is located in MN, the NHGIS PUMA code is 01403" -in.puma "MN, 01404" "The dwelling unit is located in MN, the NHGIS PUMA code is 01404" -in.puma "MN, 01405" "The dwelling unit is located in MN, the NHGIS PUMA code is 01405" -in.puma "MN, 01406" "The dwelling unit is located in MN, the NHGIS PUMA code is 01406" -in.puma "MN, 01407" "The dwelling unit is located in MN, the NHGIS PUMA code is 01407" -in.puma "MN, 01408" "The dwelling unit is located in MN, the NHGIS PUMA code is 01408" -in.puma "MN, 01409" "The dwelling unit is located in MN, the NHGIS PUMA code is 01409" -in.puma "MN, 01410" "The dwelling unit is located in MN, the NHGIS PUMA code is 01410" -in.puma "MN, 01501" "The dwelling unit is located in MN, the NHGIS PUMA code is 01501" -in.puma "MN, 01502" "The dwelling unit is located in MN, the NHGIS PUMA code is 01502" -in.puma "MN, 01503" "The dwelling unit is located in MN, the NHGIS PUMA code is 01503" -in.puma "MN, 01600" "The dwelling unit is located in MN, the NHGIS PUMA code is 01600" -in.puma "MN, 01700" "The dwelling unit is located in MN, the NHGIS PUMA code is 01700" -in.puma "MN, 01800" "The dwelling unit is located in MN, the NHGIS PUMA code is 01800" -in.puma "MN, 01900" "The dwelling unit is located in MN, the NHGIS PUMA code is 01900" -in.puma "MN, 02000" "The dwelling unit is located in MN, the NHGIS PUMA code is 02000" -in.puma "MN, 02100" "The dwelling unit is located in MN, the NHGIS PUMA code is 02100" -in.puma "MN, 02200" "The dwelling unit is located in MN, the NHGIS PUMA code is 02200" -in.puma "MN, 02300" "The dwelling unit is located in MN, the NHGIS PUMA code is 02300" -in.puma "MN, 02400" "The dwelling unit is located in MN, the NHGIS PUMA code is 02400" -in.puma "MN, 02500" "The dwelling unit is located in MN, the NHGIS PUMA code is 02500" -in.puma "MN, 02600" "The dwelling unit is located in MN, the NHGIS PUMA code is 02600" -in.puma "MO, 00100" "The dwelling unit is located in MO, the NHGIS PUMA code is 00100" -in.puma "MO, 00200" "The dwelling unit is located in MO, the NHGIS PUMA code is 00200" -in.puma "MO, 00300" "The dwelling unit is located in MO, the NHGIS PUMA code is 00300" -in.puma "MO, 00400" "The dwelling unit is located in MO, the NHGIS PUMA code is 00400" -in.puma "MO, 00500" "The dwelling unit is located in MO, the NHGIS PUMA code is 00500" -in.puma "MO, 00600" "The dwelling unit is located in MO, the NHGIS PUMA code is 00600" -in.puma "MO, 00700" "The dwelling unit is located in MO, the NHGIS PUMA code is 00700" -in.puma "MO, 00800" "The dwelling unit is located in MO, the NHGIS PUMA code is 00800" -in.puma "MO, 00901" "The dwelling unit is located in MO, the NHGIS PUMA code is 00901" -in.puma "MO, 00902" "The dwelling unit is located in MO, the NHGIS PUMA code is 00902" -in.puma "MO, 00903" "The dwelling unit is located in MO, the NHGIS PUMA code is 00903" -in.puma "MO, 01001" "The dwelling unit is located in MO, the NHGIS PUMA code is 01001" -in.puma "MO, 01002" "The dwelling unit is located in MO, the NHGIS PUMA code is 01002" -in.puma "MO, 01003" "The dwelling unit is located in MO, the NHGIS PUMA code is 01003" -in.puma "MO, 01004" "The dwelling unit is located in MO, the NHGIS PUMA code is 01004" -in.puma "MO, 01005" "The dwelling unit is located in MO, the NHGIS PUMA code is 01005" -in.puma "MO, 01100" "The dwelling unit is located in MO, the NHGIS PUMA code is 01100" -in.puma "MO, 01200" "The dwelling unit is located in MO, the NHGIS PUMA code is 01200" -in.puma "MO, 01300" "The dwelling unit is located in MO, the NHGIS PUMA code is 01300" -in.puma "MO, 01400" "The dwelling unit is located in MO, the NHGIS PUMA code is 01400" -in.puma "MO, 01500" "The dwelling unit is located in MO, the NHGIS PUMA code is 01500" -in.puma "MO, 01600" "The dwelling unit is located in MO, the NHGIS PUMA code is 01600" -in.puma "MO, 01701" "The dwelling unit is located in MO, the NHGIS PUMA code is 01701" -in.puma "MO, 01702" "The dwelling unit is located in MO, the NHGIS PUMA code is 01702" -in.puma "MO, 01703" "The dwelling unit is located in MO, the NHGIS PUMA code is 01703" -in.puma "MO, 01801" "The dwelling unit is located in MO, the NHGIS PUMA code is 01801" -in.puma "MO, 01802" "The dwelling unit is located in MO, the NHGIS PUMA code is 01802" -in.puma "MO, 01803" "The dwelling unit is located in MO, the NHGIS PUMA code is 01803" -in.puma "MO, 01804" "The dwelling unit is located in MO, the NHGIS PUMA code is 01804" -in.puma "MO, 01805" "The dwelling unit is located in MO, the NHGIS PUMA code is 01805" -in.puma "MO, 01806" "The dwelling unit is located in MO, the NHGIS PUMA code is 01806" -in.puma "MO, 01807" "The dwelling unit is located in MO, the NHGIS PUMA code is 01807" -in.puma "MO, 01808" "The dwelling unit is located in MO, the NHGIS PUMA code is 01808" -in.puma "MO, 01901" "The dwelling unit is located in MO, the NHGIS PUMA code is 01901" -in.puma "MO, 01902" "The dwelling unit is located in MO, the NHGIS PUMA code is 01902" -in.puma "MO, 02001" "The dwelling unit is located in MO, the NHGIS PUMA code is 02001" -in.puma "MO, 02002" "The dwelling unit is located in MO, the NHGIS PUMA code is 02002" -in.puma "MO, 02100" "The dwelling unit is located in MO, the NHGIS PUMA code is 02100" -in.puma "MO, 02200" "The dwelling unit is located in MO, the NHGIS PUMA code is 02200" -in.puma "MO, 02300" "The dwelling unit is located in MO, the NHGIS PUMA code is 02300" -in.puma "MO, 02400" "The dwelling unit is located in MO, the NHGIS PUMA code is 02400" -in.puma "MO, 02500" "The dwelling unit is located in MO, the NHGIS PUMA code is 02500" -in.puma "MO, 02601" "The dwelling unit is located in MO, the NHGIS PUMA code is 02601" -in.puma "MO, 02602" "The dwelling unit is located in MO, the NHGIS PUMA code is 02602" -in.puma "MO, 02603" "The dwelling unit is located in MO, the NHGIS PUMA code is 02603" -in.puma "MO, 02700" "The dwelling unit is located in MO, the NHGIS PUMA code is 02700" -in.puma "MO, 02800" "The dwelling unit is located in MO, the NHGIS PUMA code is 02800" -in.puma "MS, 00100" "The dwelling unit is located in MS, the NHGIS PUMA code is 00100" -in.puma "MS, 00200" "The dwelling unit is located in MS, the NHGIS PUMA code is 00200" -in.puma "MS, 00300" "The dwelling unit is located in MS, the NHGIS PUMA code is 00300" -in.puma "MS, 00400" "The dwelling unit is located in MS, the NHGIS PUMA code is 00400" -in.puma "MS, 00500" "The dwelling unit is located in MS, the NHGIS PUMA code is 00500" -in.puma "MS, 00600" "The dwelling unit is located in MS, the NHGIS PUMA code is 00600" -in.puma "MS, 00700" "The dwelling unit is located in MS, the NHGIS PUMA code is 00700" -in.puma "MS, 00800" "The dwelling unit is located in MS, the NHGIS PUMA code is 00800" -in.puma "MS, 00900" "The dwelling unit is located in MS, the NHGIS PUMA code is 00900" -in.puma "MS, 01000" "The dwelling unit is located in MS, the NHGIS PUMA code is 01000" -in.puma "MS, 01100" "The dwelling unit is located in MS, the NHGIS PUMA code is 01100" -in.puma "MS, 01200" "The dwelling unit is located in MS, the NHGIS PUMA code is 01200" -in.puma "MS, 01300" "The dwelling unit is located in MS, the NHGIS PUMA code is 01300" -in.puma "MS, 01400" "The dwelling unit is located in MS, the NHGIS PUMA code is 01400" -in.puma "MS, 01500" "The dwelling unit is located in MS, the NHGIS PUMA code is 01500" -in.puma "MS, 01600" "The dwelling unit is located in MS, the NHGIS PUMA code is 01600" -in.puma "MS, 01700" "The dwelling unit is located in MS, the NHGIS PUMA code is 01700" -in.puma "MS, 01800" "The dwelling unit is located in MS, the NHGIS PUMA code is 01800" -in.puma "MS, 01900" "The dwelling unit is located in MS, the NHGIS PUMA code is 01900" -in.puma "MS, 02000" "The dwelling unit is located in MS, the NHGIS PUMA code is 02000" -in.puma "MS, 02100" "The dwelling unit is located in MS, the NHGIS PUMA code is 02100" -in.puma "MT, 00100" "The dwelling unit is located in MT, the NHGIS PUMA code is 00100" -in.puma "MT, 00200" "The dwelling unit is located in MT, the NHGIS PUMA code is 00200" -in.puma "MT, 00300" "The dwelling unit is located in MT, the NHGIS PUMA code is 00300" -in.puma "MT, 00400" "The dwelling unit is located in MT, the NHGIS PUMA code is 00400" -in.puma "MT, 00500" "The dwelling unit is located in MT, the NHGIS PUMA code is 00500" -in.puma "MT, 00600" "The dwelling unit is located in MT, the NHGIS PUMA code is 00600" -in.puma "MT, 00700" "The dwelling unit is located in MT, the NHGIS PUMA code is 00700" -in.puma "NC, 00100" "The dwelling unit is located in NC, the NHGIS PUMA code is 00100" -in.puma "NC, 00200" "The dwelling unit is located in NC, the NHGIS PUMA code is 00200" -in.puma "NC, 00300" "The dwelling unit is located in NC, the NHGIS PUMA code is 00300" -in.puma "NC, 00400" "The dwelling unit is located in NC, the NHGIS PUMA code is 00400" -in.puma "NC, 00500" "The dwelling unit is located in NC, the NHGIS PUMA code is 00500" -in.puma "NC, 00600" "The dwelling unit is located in NC, the NHGIS PUMA code is 00600" -in.puma "NC, 00700" "The dwelling unit is located in NC, the NHGIS PUMA code is 00700" -in.puma "NC, 00800" "The dwelling unit is located in NC, the NHGIS PUMA code is 00800" -in.puma "NC, 00900" "The dwelling unit is located in NC, the NHGIS PUMA code is 00900" -in.puma "NC, 01000" "The dwelling unit is located in NC, the NHGIS PUMA code is 01000" -in.puma "NC, 01100" "The dwelling unit is located in NC, the NHGIS PUMA code is 01100" -in.puma "NC, 01201" "The dwelling unit is located in NC, the NHGIS PUMA code is 01201" -in.puma "NC, 01202" "The dwelling unit is located in NC, the NHGIS PUMA code is 01202" -in.puma "NC, 01203" "The dwelling unit is located in NC, the NHGIS PUMA code is 01203" -in.puma "NC, 01204" "The dwelling unit is located in NC, the NHGIS PUMA code is 01204" -in.puma "NC, 01205" "The dwelling unit is located in NC, the NHGIS PUMA code is 01205" -in.puma "NC, 01206" "The dwelling unit is located in NC, the NHGIS PUMA code is 01206" -in.puma "NC, 01207" "The dwelling unit is located in NC, the NHGIS PUMA code is 01207" -in.puma "NC, 01208" "The dwelling unit is located in NC, the NHGIS PUMA code is 01208" -in.puma "NC, 01301" "The dwelling unit is located in NC, the NHGIS PUMA code is 01301" -in.puma "NC, 01302" "The dwelling unit is located in NC, the NHGIS PUMA code is 01302" -in.puma "NC, 01400" "The dwelling unit is located in NC, the NHGIS PUMA code is 01400" -in.puma "NC, 01500" "The dwelling unit is located in NC, the NHGIS PUMA code is 01500" -in.puma "NC, 01600" "The dwelling unit is located in NC, the NHGIS PUMA code is 01600" -in.puma "NC, 01701" "The dwelling unit is located in NC, the NHGIS PUMA code is 01701" -in.puma "NC, 01702" "The dwelling unit is located in NC, the NHGIS PUMA code is 01702" -in.puma "NC, 01703" "The dwelling unit is located in NC, the NHGIS PUMA code is 01703" -in.puma "NC, 01704" "The dwelling unit is located in NC, the NHGIS PUMA code is 01704" -in.puma "NC, 01801" "The dwelling unit is located in NC, the NHGIS PUMA code is 01801" -in.puma "NC, 01802" "The dwelling unit is located in NC, the NHGIS PUMA code is 01802" -in.puma "NC, 01803" "The dwelling unit is located in NC, the NHGIS PUMA code is 01803" -in.puma "NC, 01900" "The dwelling unit is located in NC, the NHGIS PUMA code is 01900" -in.puma "NC, 02000" "The dwelling unit is located in NC, the NHGIS PUMA code is 02000" -in.puma "NC, 02100" "The dwelling unit is located in NC, the NHGIS PUMA code is 02100" -in.puma "NC, 02201" "The dwelling unit is located in NC, the NHGIS PUMA code is 02201" -in.puma "NC, 02202" "The dwelling unit is located in NC, the NHGIS PUMA code is 02202" -in.puma "NC, 02300" "The dwelling unit is located in NC, the NHGIS PUMA code is 02300" -in.puma "NC, 02400" "The dwelling unit is located in NC, the NHGIS PUMA code is 02400" -in.puma "NC, 02500" "The dwelling unit is located in NC, the NHGIS PUMA code is 02500" -in.puma "NC, 02600" "The dwelling unit is located in NC, the NHGIS PUMA code is 02600" -in.puma "NC, 02700" "The dwelling unit is located in NC, the NHGIS PUMA code is 02700" -in.puma "NC, 02800" "The dwelling unit is located in NC, the NHGIS PUMA code is 02800" -in.puma "NC, 02900" "The dwelling unit is located in NC, the NHGIS PUMA code is 02900" -in.puma "NC, 03001" "The dwelling unit is located in NC, the NHGIS PUMA code is 03001" -in.puma "NC, 03002" "The dwelling unit is located in NC, the NHGIS PUMA code is 03002" -in.puma "NC, 03101" "The dwelling unit is located in NC, the NHGIS PUMA code is 03101" -in.puma "NC, 03102" "The dwelling unit is located in NC, the NHGIS PUMA code is 03102" -in.puma "NC, 03103" "The dwelling unit is located in NC, the NHGIS PUMA code is 03103" -in.puma "NC, 03104" "The dwelling unit is located in NC, the NHGIS PUMA code is 03104" -in.puma "NC, 03105" "The dwelling unit is located in NC, the NHGIS PUMA code is 03105" -in.puma "NC, 03106" "The dwelling unit is located in NC, the NHGIS PUMA code is 03106" -in.puma "NC, 03107" "The dwelling unit is located in NC, the NHGIS PUMA code is 03107" -in.puma "NC, 03108" "The dwelling unit is located in NC, the NHGIS PUMA code is 03108" -in.puma "NC, 03200" "The dwelling unit is located in NC, the NHGIS PUMA code is 03200" -in.puma "NC, 03300" "The dwelling unit is located in NC, the NHGIS PUMA code is 03300" -in.puma "NC, 03400" "The dwelling unit is located in NC, the NHGIS PUMA code is 03400" -in.puma "NC, 03500" "The dwelling unit is located in NC, the NHGIS PUMA code is 03500" -in.puma "NC, 03600" "The dwelling unit is located in NC, the NHGIS PUMA code is 03600" -in.puma "NC, 03700" "The dwelling unit is located in NC, the NHGIS PUMA code is 03700" -in.puma "NC, 03800" "The dwelling unit is located in NC, the NHGIS PUMA code is 03800" -in.puma "NC, 03900" "The dwelling unit is located in NC, the NHGIS PUMA code is 03900" -in.puma "NC, 04000" "The dwelling unit is located in NC, the NHGIS PUMA code is 04000" -in.puma "NC, 04100" "The dwelling unit is located in NC, the NHGIS PUMA code is 04100" -in.puma "NC, 04200" "The dwelling unit is located in NC, the NHGIS PUMA code is 04200" -in.puma "NC, 04300" "The dwelling unit is located in NC, the NHGIS PUMA code is 04300" -in.puma "NC, 04400" "The dwelling unit is located in NC, the NHGIS PUMA code is 04400" -in.puma "NC, 04500" "The dwelling unit is located in NC, the NHGIS PUMA code is 04500" -in.puma "NC, 04600" "The dwelling unit is located in NC, the NHGIS PUMA code is 04600" -in.puma "NC, 04700" "The dwelling unit is located in NC, the NHGIS PUMA code is 04700" -in.puma "NC, 04800" "The dwelling unit is located in NC, the NHGIS PUMA code is 04800" -in.puma "NC, 04900" "The dwelling unit is located in NC, the NHGIS PUMA code is 04900" -in.puma "NC, 05001" "The dwelling unit is located in NC, the NHGIS PUMA code is 05001" -in.puma "NC, 05002" "The dwelling unit is located in NC, the NHGIS PUMA code is 05002" -in.puma "NC, 05003" "The dwelling unit is located in NC, the NHGIS PUMA code is 05003" -in.puma "NC, 05100" "The dwelling unit is located in NC, the NHGIS PUMA code is 05100" -in.puma "NC, 05200" "The dwelling unit is located in NC, the NHGIS PUMA code is 05200" -in.puma "NC, 05300" "The dwelling unit is located in NC, the NHGIS PUMA code is 05300" -in.puma "NC, 05400" "The dwelling unit is located in NC, the NHGIS PUMA code is 05400" -in.puma "ND, 00100" "The dwelling unit is located in ND, the NHGIS PUMA code is 00100" -in.puma "ND, 00200" "The dwelling unit is located in ND, the NHGIS PUMA code is 00200" -in.puma "ND, 00300" "The dwelling unit is located in ND, the NHGIS PUMA code is 00300" -in.puma "ND, 00400" "The dwelling unit is located in ND, the NHGIS PUMA code is 00400" -in.puma "ND, 00500" "The dwelling unit is located in ND, the NHGIS PUMA code is 00500" -in.puma "NE, 00100" "The dwelling unit is located in NE, the NHGIS PUMA code is 00100" -in.puma "NE, 00200" "The dwelling unit is located in NE, the NHGIS PUMA code is 00200" -in.puma "NE, 00300" "The dwelling unit is located in NE, the NHGIS PUMA code is 00300" -in.puma "NE, 00400" "The dwelling unit is located in NE, the NHGIS PUMA code is 00400" -in.puma "NE, 00500" "The dwelling unit is located in NE, the NHGIS PUMA code is 00500" -in.puma "NE, 00600" "The dwelling unit is located in NE, the NHGIS PUMA code is 00600" -in.puma "NE, 00701" "The dwelling unit is located in NE, the NHGIS PUMA code is 00701" -in.puma "NE, 00702" "The dwelling unit is located in NE, the NHGIS PUMA code is 00702" -in.puma "NE, 00801" "The dwelling unit is located in NE, the NHGIS PUMA code is 00801" -in.puma "NE, 00802" "The dwelling unit is located in NE, the NHGIS PUMA code is 00802" -in.puma "NE, 00901" "The dwelling unit is located in NE, the NHGIS PUMA code is 00901" -in.puma "NE, 00902" "The dwelling unit is located in NE, the NHGIS PUMA code is 00902" -in.puma "NE, 00903" "The dwelling unit is located in NE, the NHGIS PUMA code is 00903" -in.puma "NE, 00904" "The dwelling unit is located in NE, the NHGIS PUMA code is 00904" -in.puma "NH, 00100" "The dwelling unit is located in NH, the NHGIS PUMA code is 00100" -in.puma "NH, 00200" "The dwelling unit is located in NH, the NHGIS PUMA code is 00200" -in.puma "NH, 00300" "The dwelling unit is located in NH, the NHGIS PUMA code is 00300" -in.puma "NH, 00400" "The dwelling unit is located in NH, the NHGIS PUMA code is 00400" -in.puma "NH, 00500" "The dwelling unit is located in NH, the NHGIS PUMA code is 00500" -in.puma "NH, 00600" "The dwelling unit is located in NH, the NHGIS PUMA code is 00600" -in.puma "NH, 00700" "The dwelling unit is located in NH, the NHGIS PUMA code is 00700" -in.puma "NH, 00800" "The dwelling unit is located in NH, the NHGIS PUMA code is 00800" -in.puma "NH, 00900" "The dwelling unit is located in NH, the NHGIS PUMA code is 00900" -in.puma "NH, 01000" "The dwelling unit is located in NH, the NHGIS PUMA code is 01000" -in.puma "NJ, 00101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00101" -in.puma "NJ, 00102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00102" -in.puma "NJ, 00301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00301" -in.puma "NJ, 00302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00302" -in.puma "NJ, 00303" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00303" -in.puma "NJ, 00304" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00304" -in.puma "NJ, 00305" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00305" -in.puma "NJ, 00306" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00306" -in.puma "NJ, 00307" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00307" -in.puma "NJ, 00308" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00308" -in.puma "NJ, 00400" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00400" -in.puma "NJ, 00501" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00501" -in.puma "NJ, 00502" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00502" -in.puma "NJ, 00503" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00503" -in.puma "NJ, 00601" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00601" -in.puma "NJ, 00602" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00602" -in.puma "NJ, 00701" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00701" -in.puma "NJ, 00702" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00702" -in.puma "NJ, 00703" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00703" -in.puma "NJ, 00800" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00800" -in.puma "NJ, 00901" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00901" -in.puma "NJ, 00902" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00902" -in.puma "NJ, 00903" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00903" -in.puma "NJ, 00904" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00904" -in.puma "NJ, 00905" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00905" -in.puma "NJ, 00906" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00906" -in.puma "NJ, 00907" "The dwelling unit is located in NJ, the NHGIS PUMA code is 00907" -in.puma "NJ, 01001" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01001" -in.puma "NJ, 01002" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01002" -in.puma "NJ, 01003" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01003" -in.puma "NJ, 01101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01101" -in.puma "NJ, 01102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01102" -in.puma "NJ, 01103" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01103" -in.puma "NJ, 01104" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01104" -in.puma "NJ, 01105" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01105" -in.puma "NJ, 01106" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01106" -in.puma "NJ, 01201" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01201" -in.puma "NJ, 01202" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01202" -in.puma "NJ, 01203" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01203" -in.puma "NJ, 01204" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01204" -in.puma "NJ, 01205" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01205" -in.puma "NJ, 01301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01301" -in.puma "NJ, 01302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01302" -in.puma "NJ, 01401" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01401" -in.puma "NJ, 01402" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01402" -in.puma "NJ, 01403" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01403" -in.puma "NJ, 01404" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01404" -in.puma "NJ, 01501" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01501" -in.puma "NJ, 01502" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01502" -in.puma "NJ, 01503" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01503" -in.puma "NJ, 01504" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01504" -in.puma "NJ, 01600" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01600" -in.puma "NJ, 01700" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01700" -in.puma "NJ, 01800" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01800" -in.puma "NJ, 01901" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01901" -in.puma "NJ, 01902" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01902" -in.puma "NJ, 01903" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01903" -in.puma "NJ, 01904" "The dwelling unit is located in NJ, the NHGIS PUMA code is 01904" -in.puma "NJ, 02001" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02001" -in.puma "NJ, 02002" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02002" -in.puma "NJ, 02003" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02003" -in.puma "NJ, 02101" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02101" -in.puma "NJ, 02102" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02102" -in.puma "NJ, 02103" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02103" -in.puma "NJ, 02104" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02104" -in.puma "NJ, 02201" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02201" -in.puma "NJ, 02202" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02202" -in.puma "NJ, 02301" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02301" -in.puma "NJ, 02302" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02302" -in.puma "NJ, 02303" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02303" -in.puma "NJ, 02400" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02400" -in.puma "NJ, 02500" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02500" -in.puma "NJ, 02600" "The dwelling unit is located in NJ, the NHGIS PUMA code is 02600" -in.puma "NM, 00100" "The dwelling unit is located in NM, the NHGIS PUMA code is 00100" -in.puma "NM, 00200" "The dwelling unit is located in NM, the NHGIS PUMA code is 00200" -in.puma "NM, 00300" "The dwelling unit is located in NM, the NHGIS PUMA code is 00300" -in.puma "NM, 00400" "The dwelling unit is located in NM, the NHGIS PUMA code is 00400" -in.puma "NM, 00500" "The dwelling unit is located in NM, the NHGIS PUMA code is 00500" -in.puma "NM, 00600" "The dwelling unit is located in NM, the NHGIS PUMA code is 00600" -in.puma "NM, 00700" "The dwelling unit is located in NM, the NHGIS PUMA code is 00700" -in.puma "NM, 00801" "The dwelling unit is located in NM, the NHGIS PUMA code is 00801" -in.puma "NM, 00802" "The dwelling unit is located in NM, the NHGIS PUMA code is 00802" -in.puma "NM, 00803" "The dwelling unit is located in NM, the NHGIS PUMA code is 00803" -in.puma "NM, 00804" "The dwelling unit is located in NM, the NHGIS PUMA code is 00804" -in.puma "NM, 00805" "The dwelling unit is located in NM, the NHGIS PUMA code is 00805" -in.puma "NM, 00806" "The dwelling unit is located in NM, the NHGIS PUMA code is 00806" -in.puma "NM, 00900" "The dwelling unit is located in NM, the NHGIS PUMA code is 00900" -in.puma "NM, 01001" "The dwelling unit is located in NM, the NHGIS PUMA code is 01001" -in.puma "NM, 01002" "The dwelling unit is located in NM, the NHGIS PUMA code is 01002" -in.puma "NM, 01100" "The dwelling unit is located in NM, the NHGIS PUMA code is 01100" -in.puma "NM, 01200" "The dwelling unit is located in NM, the NHGIS PUMA code is 01200" -in.puma "NV, 00101" "The dwelling unit is located in NV, the NHGIS PUMA code is 00101" -in.puma "NV, 00102" "The dwelling unit is located in NV, the NHGIS PUMA code is 00102" -in.puma "NV, 00103" "The dwelling unit is located in NV, the NHGIS PUMA code is 00103" -in.puma "NV, 00200" "The dwelling unit is located in NV, the NHGIS PUMA code is 00200" -in.puma "NV, 00300" "The dwelling unit is located in NV, the NHGIS PUMA code is 00300" -in.puma "NV, 00401" "The dwelling unit is located in NV, the NHGIS PUMA code is 00401" -in.puma "NV, 00402" "The dwelling unit is located in NV, the NHGIS PUMA code is 00402" -in.puma "NV, 00403" "The dwelling unit is located in NV, the NHGIS PUMA code is 00403" -in.puma "NV, 00404" "The dwelling unit is located in NV, the NHGIS PUMA code is 00404" -in.puma "NV, 00405" "The dwelling unit is located in NV, the NHGIS PUMA code is 00405" -in.puma "NV, 00406" "The dwelling unit is located in NV, the NHGIS PUMA code is 00406" -in.puma "NV, 00407" "The dwelling unit is located in NV, the NHGIS PUMA code is 00407" -in.puma "NV, 00408" "The dwelling unit is located in NV, the NHGIS PUMA code is 00408" -in.puma "NV, 00409" "The dwelling unit is located in NV, the NHGIS PUMA code is 00409" -in.puma "NV, 00410" "The dwelling unit is located in NV, the NHGIS PUMA code is 00410" -in.puma "NV, 00411" "The dwelling unit is located in NV, the NHGIS PUMA code is 00411" -in.puma "NV, 00412" "The dwelling unit is located in NV, the NHGIS PUMA code is 00412" -in.puma "NV, 00413" "The dwelling unit is located in NV, the NHGIS PUMA code is 00413" -in.puma "NY, 00100" "The dwelling unit is located in NY, the NHGIS PUMA code is 00100" -in.puma "NY, 00200" "The dwelling unit is located in NY, the NHGIS PUMA code is 00200" -in.puma "NY, 00300" "The dwelling unit is located in NY, the NHGIS PUMA code is 00300" -in.puma "NY, 00401" "The dwelling unit is located in NY, the NHGIS PUMA code is 00401" -in.puma "NY, 00402" "The dwelling unit is located in NY, the NHGIS PUMA code is 00402" -in.puma "NY, 00403" "The dwelling unit is located in NY, the NHGIS PUMA code is 00403" -in.puma "NY, 00500" "The dwelling unit is located in NY, the NHGIS PUMA code is 00500" -in.puma "NY, 00600" "The dwelling unit is located in NY, the NHGIS PUMA code is 00600" -in.puma "NY, 00701" "The dwelling unit is located in NY, the NHGIS PUMA code is 00701" -in.puma "NY, 00702" "The dwelling unit is located in NY, the NHGIS PUMA code is 00702" -in.puma "NY, 00703" "The dwelling unit is located in NY, the NHGIS PUMA code is 00703" -in.puma "NY, 00704" "The dwelling unit is located in NY, the NHGIS PUMA code is 00704" -in.puma "NY, 00800" "The dwelling unit is located in NY, the NHGIS PUMA code is 00800" -in.puma "NY, 00901" "The dwelling unit is located in NY, the NHGIS PUMA code is 00901" -in.puma "NY, 00902" "The dwelling unit is located in NY, the NHGIS PUMA code is 00902" -in.puma "NY, 00903" "The dwelling unit is located in NY, the NHGIS PUMA code is 00903" -in.puma "NY, 00904" "The dwelling unit is located in NY, the NHGIS PUMA code is 00904" -in.puma "NY, 00905" "The dwelling unit is located in NY, the NHGIS PUMA code is 00905" -in.puma "NY, 00906" "The dwelling unit is located in NY, the NHGIS PUMA code is 00906" -in.puma "NY, 01000" "The dwelling unit is located in NY, the NHGIS PUMA code is 01000" -in.puma "NY, 01101" "The dwelling unit is located in NY, the NHGIS PUMA code is 01101" -in.puma "NY, 01102" "The dwelling unit is located in NY, the NHGIS PUMA code is 01102" -in.puma "NY, 01201" "The dwelling unit is located in NY, the NHGIS PUMA code is 01201" -in.puma "NY, 01202" "The dwelling unit is located in NY, the NHGIS PUMA code is 01202" -in.puma "NY, 01203" "The dwelling unit is located in NY, the NHGIS PUMA code is 01203" -in.puma "NY, 01204" "The dwelling unit is located in NY, the NHGIS PUMA code is 01204" -in.puma "NY, 01205" "The dwelling unit is located in NY, the NHGIS PUMA code is 01205" -in.puma "NY, 01206" "The dwelling unit is located in NY, the NHGIS PUMA code is 01206" -in.puma "NY, 01207" "The dwelling unit is located in NY, the NHGIS PUMA code is 01207" -in.puma "NY, 01300" "The dwelling unit is located in NY, the NHGIS PUMA code is 01300" -in.puma "NY, 01400" "The dwelling unit is located in NY, the NHGIS PUMA code is 01400" -in.puma "NY, 01500" "The dwelling unit is located in NY, the NHGIS PUMA code is 01500" -in.puma "NY, 01600" "The dwelling unit is located in NY, the NHGIS PUMA code is 01600" -in.puma "NY, 01700" "The dwelling unit is located in NY, the NHGIS PUMA code is 01700" -in.puma "NY, 01801" "The dwelling unit is located in NY, the NHGIS PUMA code is 01801" -in.puma "NY, 01802" "The dwelling unit is located in NY, the NHGIS PUMA code is 01802" -in.puma "NY, 01900" "The dwelling unit is located in NY, the NHGIS PUMA code is 01900" -in.puma "NY, 02001" "The dwelling unit is located in NY, the NHGIS PUMA code is 02001" -in.puma "NY, 02002" "The dwelling unit is located in NY, the NHGIS PUMA code is 02002" -in.puma "NY, 02100" "The dwelling unit is located in NY, the NHGIS PUMA code is 02100" -in.puma "NY, 02201" "The dwelling unit is located in NY, the NHGIS PUMA code is 02201" -in.puma "NY, 02202" "The dwelling unit is located in NY, the NHGIS PUMA code is 02202" -in.puma "NY, 02203" "The dwelling unit is located in NY, the NHGIS PUMA code is 02203" -in.puma "NY, 02300" "The dwelling unit is located in NY, the NHGIS PUMA code is 02300" -in.puma "NY, 02401" "The dwelling unit is located in NY, the NHGIS PUMA code is 02401" -in.puma "NY, 02402" "The dwelling unit is located in NY, the NHGIS PUMA code is 02402" -in.puma "NY, 02500" "The dwelling unit is located in NY, the NHGIS PUMA code is 02500" -in.puma "NY, 02600" "The dwelling unit is located in NY, the NHGIS PUMA code is 02600" -in.puma "NY, 02701" "The dwelling unit is located in NY, the NHGIS PUMA code is 02701" -in.puma "NY, 02702" "The dwelling unit is located in NY, the NHGIS PUMA code is 02702" -in.puma "NY, 02801" "The dwelling unit is located in NY, the NHGIS PUMA code is 02801" -in.puma "NY, 02802" "The dwelling unit is located in NY, the NHGIS PUMA code is 02802" -in.puma "NY, 02901" "The dwelling unit is located in NY, the NHGIS PUMA code is 02901" -in.puma "NY, 02902" "The dwelling unit is located in NY, the NHGIS PUMA code is 02902" -in.puma "NY, 02903" "The dwelling unit is located in NY, the NHGIS PUMA code is 02903" -in.puma "NY, 03001" "The dwelling unit is located in NY, the NHGIS PUMA code is 03001" -in.puma "NY, 03002" "The dwelling unit is located in NY, the NHGIS PUMA code is 03002" -in.puma "NY, 03003" "The dwelling unit is located in NY, the NHGIS PUMA code is 03003" -in.puma "NY, 03101" "The dwelling unit is located in NY, the NHGIS PUMA code is 03101" -in.puma "NY, 03102" "The dwelling unit is located in NY, the NHGIS PUMA code is 03102" -in.puma "NY, 03103" "The dwelling unit is located in NY, the NHGIS PUMA code is 03103" -in.puma "NY, 03104" "The dwelling unit is located in NY, the NHGIS PUMA code is 03104" -in.puma "NY, 03105" "The dwelling unit is located in NY, the NHGIS PUMA code is 03105" -in.puma "NY, 03106" "The dwelling unit is located in NY, the NHGIS PUMA code is 03106" -in.puma "NY, 03107" "The dwelling unit is located in NY, the NHGIS PUMA code is 03107" -in.puma "NY, 03201" "The dwelling unit is located in NY, the NHGIS PUMA code is 03201" -in.puma "NY, 03202" "The dwelling unit is located in NY, the NHGIS PUMA code is 03202" -in.puma "NY, 03203" "The dwelling unit is located in NY, the NHGIS PUMA code is 03203" -in.puma "NY, 03204" "The dwelling unit is located in NY, the NHGIS PUMA code is 03204" -in.puma "NY, 03205" "The dwelling unit is located in NY, the NHGIS PUMA code is 03205" -in.puma "NY, 03206" "The dwelling unit is located in NY, the NHGIS PUMA code is 03206" -in.puma "NY, 03207" "The dwelling unit is located in NY, the NHGIS PUMA code is 03207" -in.puma "NY, 03208" "The dwelling unit is located in NY, the NHGIS PUMA code is 03208" -in.puma "NY, 03209" "The dwelling unit is located in NY, the NHGIS PUMA code is 03209" -in.puma "NY, 03210" "The dwelling unit is located in NY, the NHGIS PUMA code is 03210" -in.puma "NY, 03211" "The dwelling unit is located in NY, the NHGIS PUMA code is 03211" -in.puma "NY, 03212" "The dwelling unit is located in NY, the NHGIS PUMA code is 03212" -in.puma "NY, 03301" "The dwelling unit is located in NY, the NHGIS PUMA code is 03301" -in.puma "NY, 03302" "The dwelling unit is located in NY, the NHGIS PUMA code is 03302" -in.puma "NY, 03303" "The dwelling unit is located in NY, the NHGIS PUMA code is 03303" -in.puma "NY, 03304" "The dwelling unit is located in NY, the NHGIS PUMA code is 03304" -in.puma "NY, 03305" "The dwelling unit is located in NY, the NHGIS PUMA code is 03305" -in.puma "NY, 03306" "The dwelling unit is located in NY, the NHGIS PUMA code is 03306" -in.puma "NY, 03307" "The dwelling unit is located in NY, the NHGIS PUMA code is 03307" -in.puma "NY, 03308" "The dwelling unit is located in NY, the NHGIS PUMA code is 03308" -in.puma "NY, 03309" "The dwelling unit is located in NY, the NHGIS PUMA code is 03309" -in.puma "NY, 03310" "The dwelling unit is located in NY, the NHGIS PUMA code is 03310" -in.puma "NY, 03311" "The dwelling unit is located in NY, the NHGIS PUMA code is 03311" -in.puma "NY, 03312" "The dwelling unit is located in NY, the NHGIS PUMA code is 03312" -in.puma "NY, 03313" "The dwelling unit is located in NY, the NHGIS PUMA code is 03313" -in.puma "NY, 03701" "The dwelling unit is located in NY, the NHGIS PUMA code is 03701" -in.puma "NY, 03702" "The dwelling unit is located in NY, the NHGIS PUMA code is 03702" -in.puma "NY, 03703" "The dwelling unit is located in NY, the NHGIS PUMA code is 03703" -in.puma "NY, 03704" "The dwelling unit is located in NY, the NHGIS PUMA code is 03704" -in.puma "NY, 03705" "The dwelling unit is located in NY, the NHGIS PUMA code is 03705" -in.puma "NY, 03706" "The dwelling unit is located in NY, the NHGIS PUMA code is 03706" -in.puma "NY, 03707" "The dwelling unit is located in NY, the NHGIS PUMA code is 03707" -in.puma "NY, 03708" "The dwelling unit is located in NY, the NHGIS PUMA code is 03708" -in.puma "NY, 03709" "The dwelling unit is located in NY, the NHGIS PUMA code is 03709" -in.puma "NY, 03710" "The dwelling unit is located in NY, the NHGIS PUMA code is 03710" -in.puma "NY, 03801" "The dwelling unit is located in NY, the NHGIS PUMA code is 03801" -in.puma "NY, 03802" "The dwelling unit is located in NY, the NHGIS PUMA code is 03802" -in.puma "NY, 03803" "The dwelling unit is located in NY, the NHGIS PUMA code is 03803" -in.puma "NY, 03804" "The dwelling unit is located in NY, the NHGIS PUMA code is 03804" -in.puma "NY, 03805" "The dwelling unit is located in NY, the NHGIS PUMA code is 03805" -in.puma "NY, 03806" "The dwelling unit is located in NY, the NHGIS PUMA code is 03806" -in.puma "NY, 03807" "The dwelling unit is located in NY, the NHGIS PUMA code is 03807" -in.puma "NY, 03808" "The dwelling unit is located in NY, the NHGIS PUMA code is 03808" -in.puma "NY, 03809" "The dwelling unit is located in NY, the NHGIS PUMA code is 03809" -in.puma "NY, 03810" "The dwelling unit is located in NY, the NHGIS PUMA code is 03810" -in.puma "NY, 03901" "The dwelling unit is located in NY, the NHGIS PUMA code is 03901" -in.puma "NY, 03902" "The dwelling unit is located in NY, the NHGIS PUMA code is 03902" -in.puma "NY, 03903" "The dwelling unit is located in NY, the NHGIS PUMA code is 03903" -in.puma "NY, 04001" "The dwelling unit is located in NY, the NHGIS PUMA code is 04001" -in.puma "NY, 04002" "The dwelling unit is located in NY, the NHGIS PUMA code is 04002" -in.puma "NY, 04003" "The dwelling unit is located in NY, the NHGIS PUMA code is 04003" -in.puma "NY, 04004" "The dwelling unit is located in NY, the NHGIS PUMA code is 04004" -in.puma "NY, 04005" "The dwelling unit is located in NY, the NHGIS PUMA code is 04005" -in.puma "NY, 04006" "The dwelling unit is located in NY, the NHGIS PUMA code is 04006" -in.puma "NY, 04007" "The dwelling unit is located in NY, the NHGIS PUMA code is 04007" -in.puma "NY, 04008" "The dwelling unit is located in NY, the NHGIS PUMA code is 04008" -in.puma "NY, 04009" "The dwelling unit is located in NY, the NHGIS PUMA code is 04009" -in.puma "NY, 04010" "The dwelling unit is located in NY, the NHGIS PUMA code is 04010" -in.puma "NY, 04011" "The dwelling unit is located in NY, the NHGIS PUMA code is 04011" -in.puma "NY, 04012" "The dwelling unit is located in NY, the NHGIS PUMA code is 04012" -in.puma "NY, 04013" "The dwelling unit is located in NY, the NHGIS PUMA code is 04013" -in.puma "NY, 04014" "The dwelling unit is located in NY, the NHGIS PUMA code is 04014" -in.puma "NY, 04015" "The dwelling unit is located in NY, the NHGIS PUMA code is 04015" -in.puma "NY, 04016" "The dwelling unit is located in NY, the NHGIS PUMA code is 04016" -in.puma "NY, 04017" "The dwelling unit is located in NY, the NHGIS PUMA code is 04017" -in.puma "NY, 04018" "The dwelling unit is located in NY, the NHGIS PUMA code is 04018" -in.puma "NY, 04101" "The dwelling unit is located in NY, the NHGIS PUMA code is 04101" -in.puma "NY, 04102" "The dwelling unit is located in NY, the NHGIS PUMA code is 04102" -in.puma "NY, 04103" "The dwelling unit is located in NY, the NHGIS PUMA code is 04103" -in.puma "NY, 04104" "The dwelling unit is located in NY, the NHGIS PUMA code is 04104" -in.puma "NY, 04105" "The dwelling unit is located in NY, the NHGIS PUMA code is 04105" -in.puma "NY, 04106" "The dwelling unit is located in NY, the NHGIS PUMA code is 04106" -in.puma "NY, 04107" "The dwelling unit is located in NY, the NHGIS PUMA code is 04107" -in.puma "NY, 04108" "The dwelling unit is located in NY, the NHGIS PUMA code is 04108" -in.puma "NY, 04109" "The dwelling unit is located in NY, the NHGIS PUMA code is 04109" -in.puma "NY, 04110" "The dwelling unit is located in NY, the NHGIS PUMA code is 04110" -in.puma "NY, 04111" "The dwelling unit is located in NY, the NHGIS PUMA code is 04111" -in.puma "NY, 04112" "The dwelling unit is located in NY, the NHGIS PUMA code is 04112" -in.puma "NY, 04113" "The dwelling unit is located in NY, the NHGIS PUMA code is 04113" -in.puma "NY, 04114" "The dwelling unit is located in NY, the NHGIS PUMA code is 04114" -in.puma "OH, 00100" "The dwelling unit is located in OH, the NHGIS PUMA code is 00100" -in.puma "OH, 00200" "The dwelling unit is located in OH, the NHGIS PUMA code is 00200" -in.puma "OH, 00300" "The dwelling unit is located in OH, the NHGIS PUMA code is 00300" -in.puma "OH, 00400" "The dwelling unit is located in OH, the NHGIS PUMA code is 00400" -in.puma "OH, 00500" "The dwelling unit is located in OH, the NHGIS PUMA code is 00500" -in.puma "OH, 00600" "The dwelling unit is located in OH, the NHGIS PUMA code is 00600" -in.puma "OH, 00700" "The dwelling unit is located in OH, the NHGIS PUMA code is 00700" -in.puma "OH, 00801" "The dwelling unit is located in OH, the NHGIS PUMA code is 00801" -in.puma "OH, 00802" "The dwelling unit is located in OH, the NHGIS PUMA code is 00802" -in.puma "OH, 00901" "The dwelling unit is located in OH, the NHGIS PUMA code is 00901" -in.puma "OH, 00902" "The dwelling unit is located in OH, the NHGIS PUMA code is 00902" -in.puma "OH, 00903" "The dwelling unit is located in OH, the NHGIS PUMA code is 00903" -in.puma "OH, 00904" "The dwelling unit is located in OH, the NHGIS PUMA code is 00904" -in.puma "OH, 00905" "The dwelling unit is located in OH, the NHGIS PUMA code is 00905" -in.puma "OH, 00906" "The dwelling unit is located in OH, the NHGIS PUMA code is 00906" -in.puma "OH, 00907" "The dwelling unit is located in OH, the NHGIS PUMA code is 00907" -in.puma "OH, 00908" "The dwelling unit is located in OH, the NHGIS PUMA code is 00908" -in.puma "OH, 00909" "The dwelling unit is located in OH, the NHGIS PUMA code is 00909" -in.puma "OH, 00910" "The dwelling unit is located in OH, the NHGIS PUMA code is 00910" -in.puma "OH, 01000" "The dwelling unit is located in OH, the NHGIS PUMA code is 01000" -in.puma "OH, 01100" "The dwelling unit is located in OH, the NHGIS PUMA code is 01100" -in.puma "OH, 01200" "The dwelling unit is located in OH, the NHGIS PUMA code is 01200" -in.puma "OH, 01300" "The dwelling unit is located in OH, the NHGIS PUMA code is 01300" -in.puma "OH, 01400" "The dwelling unit is located in OH, the NHGIS PUMA code is 01400" -in.puma "OH, 01500" "The dwelling unit is located in OH, the NHGIS PUMA code is 01500" -in.puma "OH, 01600" "The dwelling unit is located in OH, the NHGIS PUMA code is 01600" -in.puma "OH, 01700" "The dwelling unit is located in OH, the NHGIS PUMA code is 01700" -in.puma "OH, 01801" "The dwelling unit is located in OH, the NHGIS PUMA code is 01801" -in.puma "OH, 01802" "The dwelling unit is located in OH, the NHGIS PUMA code is 01802" -in.puma "OH, 01803" "The dwelling unit is located in OH, the NHGIS PUMA code is 01803" -in.puma "OH, 01804" "The dwelling unit is located in OH, the NHGIS PUMA code is 01804" -in.puma "OH, 01805" "The dwelling unit is located in OH, the NHGIS PUMA code is 01805" -in.puma "OH, 01900" "The dwelling unit is located in OH, the NHGIS PUMA code is 01900" -in.puma "OH, 02000" "The dwelling unit is located in OH, the NHGIS PUMA code is 02000" -in.puma "OH, 02100" "The dwelling unit is located in OH, the NHGIS PUMA code is 02100" -in.puma "OH, 02200" "The dwelling unit is located in OH, the NHGIS PUMA code is 02200" -in.puma "OH, 02300" "The dwelling unit is located in OH, the NHGIS PUMA code is 02300" -in.puma "OH, 02400" "The dwelling unit is located in OH, the NHGIS PUMA code is 02400" -in.puma "OH, 02500" "The dwelling unit is located in OH, the NHGIS PUMA code is 02500" -in.puma "OH, 02600" "The dwelling unit is located in OH, the NHGIS PUMA code is 02600" -in.puma "OH, 02700" "The dwelling unit is located in OH, the NHGIS PUMA code is 02700" -in.puma "OH, 02800" "The dwelling unit is located in OH, the NHGIS PUMA code is 02800" -in.puma "OH, 02900" "The dwelling unit is located in OH, the NHGIS PUMA code is 02900" -in.puma "OH, 03000" "The dwelling unit is located in OH, the NHGIS PUMA code is 03000" -in.puma "OH, 03100" "The dwelling unit is located in OH, the NHGIS PUMA code is 03100" -in.puma "OH, 03200" "The dwelling unit is located in OH, the NHGIS PUMA code is 03200" -in.puma "OH, 03300" "The dwelling unit is located in OH, the NHGIS PUMA code is 03300" -in.puma "OH, 03400" "The dwelling unit is located in OH, the NHGIS PUMA code is 03400" -in.puma "OH, 03500" "The dwelling unit is located in OH, the NHGIS PUMA code is 03500" -in.puma "OH, 03600" "The dwelling unit is located in OH, the NHGIS PUMA code is 03600" -in.puma "OH, 03700" "The dwelling unit is located in OH, the NHGIS PUMA code is 03700" -in.puma "OH, 03800" "The dwelling unit is located in OH, the NHGIS PUMA code is 03800" -in.puma "OH, 03900" "The dwelling unit is located in OH, the NHGIS PUMA code is 03900" -in.puma "OH, 04000" "The dwelling unit is located in OH, the NHGIS PUMA code is 04000" -in.puma "OH, 04101" "The dwelling unit is located in OH, the NHGIS PUMA code is 04101" -in.puma "OH, 04102" "The dwelling unit is located in OH, the NHGIS PUMA code is 04102" -in.puma "OH, 04103" "The dwelling unit is located in OH, the NHGIS PUMA code is 04103" -in.puma "OH, 04104" "The dwelling unit is located in OH, the NHGIS PUMA code is 04104" -in.puma "OH, 04105" "The dwelling unit is located in OH, the NHGIS PUMA code is 04105" -in.puma "OH, 04106" "The dwelling unit is located in OH, the NHGIS PUMA code is 04106" -in.puma "OH, 04107" "The dwelling unit is located in OH, the NHGIS PUMA code is 04107" -in.puma "OH, 04108" "The dwelling unit is located in OH, the NHGIS PUMA code is 04108" -in.puma "OH, 04109" "The dwelling unit is located in OH, the NHGIS PUMA code is 04109" -in.puma "OH, 04110" "The dwelling unit is located in OH, the NHGIS PUMA code is 04110" -in.puma "OH, 04111" "The dwelling unit is located in OH, the NHGIS PUMA code is 04111" -in.puma "OH, 04200" "The dwelling unit is located in OH, the NHGIS PUMA code is 04200" -in.puma "OH, 04300" "The dwelling unit is located in OH, the NHGIS PUMA code is 04300" -in.puma "OH, 04400" "The dwelling unit is located in OH, the NHGIS PUMA code is 04400" -in.puma "OH, 04500" "The dwelling unit is located in OH, the NHGIS PUMA code is 04500" -in.puma "OH, 04601" "The dwelling unit is located in OH, the NHGIS PUMA code is 04601" -in.puma "OH, 04602" "The dwelling unit is located in OH, the NHGIS PUMA code is 04602" -in.puma "OH, 04603" "The dwelling unit is located in OH, the NHGIS PUMA code is 04603" -in.puma "OH, 04604" "The dwelling unit is located in OH, the NHGIS PUMA code is 04604" -in.puma "OH, 04700" "The dwelling unit is located in OH, the NHGIS PUMA code is 04700" -in.puma "OH, 04800" "The dwelling unit is located in OH, the NHGIS PUMA code is 04800" -in.puma "OH, 04900" "The dwelling unit is located in OH, the NHGIS PUMA code is 04900" -in.puma "OH, 05000" "The dwelling unit is located in OH, the NHGIS PUMA code is 05000" -in.puma "OH, 05100" "The dwelling unit is located in OH, the NHGIS PUMA code is 05100" -in.puma "OH, 05200" "The dwelling unit is located in OH, the NHGIS PUMA code is 05200" -in.puma "OH, 05301" "The dwelling unit is located in OH, the NHGIS PUMA code is 05301" -in.puma "OH, 05302" "The dwelling unit is located in OH, the NHGIS PUMA code is 05302" -in.puma "OH, 05401" "The dwelling unit is located in OH, the NHGIS PUMA code is 05401" -in.puma "OH, 05402" "The dwelling unit is located in OH, the NHGIS PUMA code is 05402" -in.puma "OH, 05403" "The dwelling unit is located in OH, the NHGIS PUMA code is 05403" -in.puma "OH, 05501" "The dwelling unit is located in OH, the NHGIS PUMA code is 05501" -in.puma "OH, 05502" "The dwelling unit is located in OH, the NHGIS PUMA code is 05502" -in.puma "OH, 05503" "The dwelling unit is located in OH, the NHGIS PUMA code is 05503" -in.puma "OH, 05504" "The dwelling unit is located in OH, the NHGIS PUMA code is 05504" -in.puma "OH, 05505" "The dwelling unit is located in OH, the NHGIS PUMA code is 05505" -in.puma "OH, 05506" "The dwelling unit is located in OH, the NHGIS PUMA code is 05506" -in.puma "OH, 05507" "The dwelling unit is located in OH, the NHGIS PUMA code is 05507" -in.puma "OH, 05600" "The dwelling unit is located in OH, the NHGIS PUMA code is 05600" -in.puma "OH, 05700" "The dwelling unit is located in OH, the NHGIS PUMA code is 05700" -in.puma "OK, 00100" "The dwelling unit is located in OK, the NHGIS PUMA code is 00100" -in.puma "OK, 00200" "The dwelling unit is located in OK, the NHGIS PUMA code is 00200" -in.puma "OK, 00300" "The dwelling unit is located in OK, the NHGIS PUMA code is 00300" -in.puma "OK, 00400" "The dwelling unit is located in OK, the NHGIS PUMA code is 00400" -in.puma "OK, 00500" "The dwelling unit is located in OK, the NHGIS PUMA code is 00500" -in.puma "OK, 00601" "The dwelling unit is located in OK, the NHGIS PUMA code is 00601" -in.puma "OK, 00602" "The dwelling unit is located in OK, the NHGIS PUMA code is 00602" -in.puma "OK, 00701" "The dwelling unit is located in OK, the NHGIS PUMA code is 00701" -in.puma "OK, 00702" "The dwelling unit is located in OK, the NHGIS PUMA code is 00702" -in.puma "OK, 00800" "The dwelling unit is located in OK, the NHGIS PUMA code is 00800" -in.puma "OK, 00900" "The dwelling unit is located in OK, the NHGIS PUMA code is 00900" -in.puma "OK, 01001" "The dwelling unit is located in OK, the NHGIS PUMA code is 01001" -in.puma "OK, 01002" "The dwelling unit is located in OK, the NHGIS PUMA code is 01002" -in.puma "OK, 01003" "The dwelling unit is located in OK, the NHGIS PUMA code is 01003" -in.puma "OK, 01004" "The dwelling unit is located in OK, the NHGIS PUMA code is 01004" -in.puma "OK, 01005" "The dwelling unit is located in OK, the NHGIS PUMA code is 01005" -in.puma "OK, 01006" "The dwelling unit is located in OK, the NHGIS PUMA code is 01006" -in.puma "OK, 01101" "The dwelling unit is located in OK, the NHGIS PUMA code is 01101" -in.puma "OK, 01102" "The dwelling unit is located in OK, the NHGIS PUMA code is 01102" -in.puma "OK, 01201" "The dwelling unit is located in OK, the NHGIS PUMA code is 01201" -in.puma "OK, 01202" "The dwelling unit is located in OK, the NHGIS PUMA code is 01202" -in.puma "OK, 01203" "The dwelling unit is located in OK, the NHGIS PUMA code is 01203" -in.puma "OK, 01204" "The dwelling unit is located in OK, the NHGIS PUMA code is 01204" -in.puma "OK, 01301" "The dwelling unit is located in OK, the NHGIS PUMA code is 01301" -in.puma "OK, 01302" "The dwelling unit is located in OK, the NHGIS PUMA code is 01302" -in.puma "OK, 01400" "The dwelling unit is located in OK, the NHGIS PUMA code is 01400" -in.puma "OK, 01501" "The dwelling unit is located in OK, the NHGIS PUMA code is 01501" -in.puma "OK, 01601" "The dwelling unit is located in OK, the NHGIS PUMA code is 01601" -in.puma "OR, 00100" "The dwelling unit is located in OR, the NHGIS PUMA code is 00100" -in.puma "OR, 00200" "The dwelling unit is located in OR, the NHGIS PUMA code is 00200" -in.puma "OR, 00300" "The dwelling unit is located in OR, the NHGIS PUMA code is 00300" -in.puma "OR, 00400" "The dwelling unit is located in OR, the NHGIS PUMA code is 00400" -in.puma "OR, 00500" "The dwelling unit is located in OR, the NHGIS PUMA code is 00500" -in.puma "OR, 00600" "The dwelling unit is located in OR, the NHGIS PUMA code is 00600" -in.puma "OR, 00703" "The dwelling unit is located in OR, the NHGIS PUMA code is 00703" -in.puma "OR, 00704" "The dwelling unit is located in OR, the NHGIS PUMA code is 00704" -in.puma "OR, 00705" "The dwelling unit is located in OR, the NHGIS PUMA code is 00705" -in.puma "OR, 00800" "The dwelling unit is located in OR, the NHGIS PUMA code is 00800" -in.puma "OR, 00901" "The dwelling unit is located in OR, the NHGIS PUMA code is 00901" -in.puma "OR, 00902" "The dwelling unit is located in OR, the NHGIS PUMA code is 00902" -in.puma "OR, 01000" "The dwelling unit is located in OR, the NHGIS PUMA code is 01000" -in.puma "OR, 01103" "The dwelling unit is located in OR, the NHGIS PUMA code is 01103" -in.puma "OR, 01104" "The dwelling unit is located in OR, the NHGIS PUMA code is 01104" -in.puma "OR, 01105" "The dwelling unit is located in OR, the NHGIS PUMA code is 01105" -in.puma "OR, 01200" "The dwelling unit is located in OR, the NHGIS PUMA code is 01200" -in.puma "OR, 01301" "The dwelling unit is located in OR, the NHGIS PUMA code is 01301" -in.puma "OR, 01302" "The dwelling unit is located in OR, the NHGIS PUMA code is 01302" -in.puma "OR, 01303" "The dwelling unit is located in OR, the NHGIS PUMA code is 01303" -in.puma "OR, 01305" "The dwelling unit is located in OR, the NHGIS PUMA code is 01305" -in.puma "OR, 01314" "The dwelling unit is located in OR, the NHGIS PUMA code is 01314" -in.puma "OR, 01316" "The dwelling unit is located in OR, the NHGIS PUMA code is 01316" -in.puma "OR, 01317" "The dwelling unit is located in OR, the NHGIS PUMA code is 01317" -in.puma "OR, 01318" "The dwelling unit is located in OR, the NHGIS PUMA code is 01318" -in.puma "OR, 01319" "The dwelling unit is located in OR, the NHGIS PUMA code is 01319" -in.puma "OR, 01320" "The dwelling unit is located in OR, the NHGIS PUMA code is 01320" -in.puma "OR, 01321" "The dwelling unit is located in OR, the NHGIS PUMA code is 01321" -in.puma "OR, 01322" "The dwelling unit is located in OR, the NHGIS PUMA code is 01322" -in.puma "OR, 01323" "The dwelling unit is located in OR, the NHGIS PUMA code is 01323" -in.puma "OR, 01324" "The dwelling unit is located in OR, the NHGIS PUMA code is 01324" -in.puma "PA, 00101" "The dwelling unit is located in PA, the NHGIS PUMA code is 00101" -in.puma "PA, 00102" "The dwelling unit is located in PA, the NHGIS PUMA code is 00102" -in.puma "PA, 00200" "The dwelling unit is located in PA, the NHGIS PUMA code is 00200" -in.puma "PA, 00300" "The dwelling unit is located in PA, the NHGIS PUMA code is 00300" -in.puma "PA, 00400" "The dwelling unit is located in PA, the NHGIS PUMA code is 00400" -in.puma "PA, 00500" "The dwelling unit is located in PA, the NHGIS PUMA code is 00500" -in.puma "PA, 00600" "The dwelling unit is located in PA, the NHGIS PUMA code is 00600" -in.puma "PA, 00701" "The dwelling unit is located in PA, the NHGIS PUMA code is 00701" -in.puma "PA, 00702" "The dwelling unit is located in PA, the NHGIS PUMA code is 00702" -in.puma "PA, 00801" "The dwelling unit is located in PA, the NHGIS PUMA code is 00801" -in.puma "PA, 00802" "The dwelling unit is located in PA, the NHGIS PUMA code is 00802" -in.puma "PA, 00803" "The dwelling unit is located in PA, the NHGIS PUMA code is 00803" -in.puma "PA, 00900" "The dwelling unit is located in PA, the NHGIS PUMA code is 00900" -in.puma "PA, 01000" "The dwelling unit is located in PA, the NHGIS PUMA code is 01000" -in.puma "PA, 01100" "The dwelling unit is located in PA, the NHGIS PUMA code is 01100" -in.puma "PA, 01200" "The dwelling unit is located in PA, the NHGIS PUMA code is 01200" -in.puma "PA, 01300" "The dwelling unit is located in PA, the NHGIS PUMA code is 01300" -in.puma "PA, 01400" "The dwelling unit is located in PA, the NHGIS PUMA code is 01400" -in.puma "PA, 01501" "The dwelling unit is located in PA, the NHGIS PUMA code is 01501" -in.puma "PA, 01502" "The dwelling unit is located in PA, the NHGIS PUMA code is 01502" -in.puma "PA, 01600" "The dwelling unit is located in PA, the NHGIS PUMA code is 01600" -in.puma "PA, 01701" "The dwelling unit is located in PA, the NHGIS PUMA code is 01701" -in.puma "PA, 01702" "The dwelling unit is located in PA, the NHGIS PUMA code is 01702" -in.puma "PA, 01801" "The dwelling unit is located in PA, the NHGIS PUMA code is 01801" -in.puma "PA, 01802" "The dwelling unit is located in PA, the NHGIS PUMA code is 01802" -in.puma "PA, 01803" "The dwelling unit is located in PA, the NHGIS PUMA code is 01803" -in.puma "PA, 01804" "The dwelling unit is located in PA, the NHGIS PUMA code is 01804" -in.puma "PA, 01805" "The dwelling unit is located in PA, the NHGIS PUMA code is 01805" -in.puma "PA, 01806" "The dwelling unit is located in PA, the NHGIS PUMA code is 01806" -in.puma "PA, 01807" "The dwelling unit is located in PA, the NHGIS PUMA code is 01807" -in.puma "PA, 01900" "The dwelling unit is located in PA, the NHGIS PUMA code is 01900" -in.puma "PA, 02001" "The dwelling unit is located in PA, the NHGIS PUMA code is 02001" -in.puma "PA, 02002" "The dwelling unit is located in PA, the NHGIS PUMA code is 02002" -in.puma "PA, 02003" "The dwelling unit is located in PA, the NHGIS PUMA code is 02003" -in.puma "PA, 02100" "The dwelling unit is located in PA, the NHGIS PUMA code is 02100" -in.puma "PA, 02200" "The dwelling unit is located in PA, the NHGIS PUMA code is 02200" -in.puma "PA, 02301" "The dwelling unit is located in PA, the NHGIS PUMA code is 02301" -in.puma "PA, 02302" "The dwelling unit is located in PA, the NHGIS PUMA code is 02302" -in.puma "PA, 02401" "The dwelling unit is located in PA, the NHGIS PUMA code is 02401" -in.puma "PA, 02402" "The dwelling unit is located in PA, the NHGIS PUMA code is 02402" -in.puma "PA, 02500" "The dwelling unit is located in PA, the NHGIS PUMA code is 02500" -in.puma "PA, 02600" "The dwelling unit is located in PA, the NHGIS PUMA code is 02600" -in.puma "PA, 02701" "The dwelling unit is located in PA, the NHGIS PUMA code is 02701" -in.puma "PA, 02702" "The dwelling unit is located in PA, the NHGIS PUMA code is 02702" -in.puma "PA, 02703" "The dwelling unit is located in PA, the NHGIS PUMA code is 02703" -in.puma "PA, 02801" "The dwelling unit is located in PA, the NHGIS PUMA code is 02801" -in.puma "PA, 02802" "The dwelling unit is located in PA, the NHGIS PUMA code is 02802" -in.puma "PA, 02803" "The dwelling unit is located in PA, the NHGIS PUMA code is 02803" -in.puma "PA, 02901" "The dwelling unit is located in PA, the NHGIS PUMA code is 02901" -in.puma "PA, 02902" "The dwelling unit is located in PA, the NHGIS PUMA code is 02902" -in.puma "PA, 03001" "The dwelling unit is located in PA, the NHGIS PUMA code is 03001" -in.puma "PA, 03002" "The dwelling unit is located in PA, the NHGIS PUMA code is 03002" -in.puma "PA, 03003" "The dwelling unit is located in PA, the NHGIS PUMA code is 03003" -in.puma "PA, 03004" "The dwelling unit is located in PA, the NHGIS PUMA code is 03004" -in.puma "PA, 03101" "The dwelling unit is located in PA, the NHGIS PUMA code is 03101" -in.puma "PA, 03102" "The dwelling unit is located in PA, the NHGIS PUMA code is 03102" -in.puma "PA, 03103" "The dwelling unit is located in PA, the NHGIS PUMA code is 03103" -in.puma "PA, 03104" "The dwelling unit is located in PA, the NHGIS PUMA code is 03104" -in.puma "PA, 03105" "The dwelling unit is located in PA, the NHGIS PUMA code is 03105" -in.puma "PA, 03106" "The dwelling unit is located in PA, the NHGIS PUMA code is 03106" -in.puma "PA, 03201" "The dwelling unit is located in PA, the NHGIS PUMA code is 03201" -in.puma "PA, 03202" "The dwelling unit is located in PA, the NHGIS PUMA code is 03202" -in.puma "PA, 03203" "The dwelling unit is located in PA, the NHGIS PUMA code is 03203" -in.puma "PA, 03204" "The dwelling unit is located in PA, the NHGIS PUMA code is 03204" -in.puma "PA, 03205" "The dwelling unit is located in PA, the NHGIS PUMA code is 03205" -in.puma "PA, 03206" "The dwelling unit is located in PA, the NHGIS PUMA code is 03206" -in.puma "PA, 03207" "The dwelling unit is located in PA, the NHGIS PUMA code is 03207" -in.puma "PA, 03208" "The dwelling unit is located in PA, the NHGIS PUMA code is 03208" -in.puma "PA, 03209" "The dwelling unit is located in PA, the NHGIS PUMA code is 03209" -in.puma "PA, 03210" "The dwelling unit is located in PA, the NHGIS PUMA code is 03210" -in.puma "PA, 03211" "The dwelling unit is located in PA, the NHGIS PUMA code is 03211" -in.puma "PA, 03301" "The dwelling unit is located in PA, the NHGIS PUMA code is 03301" -in.puma "PA, 03302" "The dwelling unit is located in PA, the NHGIS PUMA code is 03302" -in.puma "PA, 03303" "The dwelling unit is located in PA, the NHGIS PUMA code is 03303" -in.puma "PA, 03304" "The dwelling unit is located in PA, the NHGIS PUMA code is 03304" -in.puma "PA, 03401" "The dwelling unit is located in PA, the NHGIS PUMA code is 03401" -in.puma "PA, 03402" "The dwelling unit is located in PA, the NHGIS PUMA code is 03402" -in.puma "PA, 03403" "The dwelling unit is located in PA, the NHGIS PUMA code is 03403" -in.puma "PA, 03404" "The dwelling unit is located in PA, the NHGIS PUMA code is 03404" -in.puma "PA, 03501" "The dwelling unit is located in PA, the NHGIS PUMA code is 03501" -in.puma "PA, 03502" "The dwelling unit is located in PA, the NHGIS PUMA code is 03502" -in.puma "PA, 03503" "The dwelling unit is located in PA, the NHGIS PUMA code is 03503" -in.puma "PA, 03504" "The dwelling unit is located in PA, the NHGIS PUMA code is 03504" -in.puma "PA, 03601" "The dwelling unit is located in PA, the NHGIS PUMA code is 03601" -in.puma "PA, 03602" "The dwelling unit is located in PA, the NHGIS PUMA code is 03602" -in.puma "PA, 03603" "The dwelling unit is located in PA, the NHGIS PUMA code is 03603" -in.puma "PA, 03701" "The dwelling unit is located in PA, the NHGIS PUMA code is 03701" -in.puma "PA, 03702" "The dwelling unit is located in PA, the NHGIS PUMA code is 03702" -in.puma "PA, 03800" "The dwelling unit is located in PA, the NHGIS PUMA code is 03800" -in.puma "PA, 03900" "The dwelling unit is located in PA, the NHGIS PUMA code is 03900" -in.puma "PA, 04001" "The dwelling unit is located in PA, the NHGIS PUMA code is 04001" -in.puma "PA, 04002" "The dwelling unit is located in PA, the NHGIS PUMA code is 04002" -in.puma "RI, 00101" "The dwelling unit is located in RI, the NHGIS PUMA code is 00101" -in.puma "RI, 00102" "The dwelling unit is located in RI, the NHGIS PUMA code is 00102" -in.puma "RI, 00103" "The dwelling unit is located in RI, the NHGIS PUMA code is 00103" -in.puma "RI, 00104" "The dwelling unit is located in RI, the NHGIS PUMA code is 00104" -in.puma "RI, 00201" "The dwelling unit is located in RI, the NHGIS PUMA code is 00201" -in.puma "RI, 00300" "The dwelling unit is located in RI, the NHGIS PUMA code is 00300" -in.puma "RI, 00400" "The dwelling unit is located in RI, the NHGIS PUMA code is 00400" -in.puma "SC, 00101" "The dwelling unit is located in SC, the NHGIS PUMA code is 00101" -in.puma "SC, 00102" "The dwelling unit is located in SC, the NHGIS PUMA code is 00102" -in.puma "SC, 00103" "The dwelling unit is located in SC, the NHGIS PUMA code is 00103" -in.puma "SC, 00104" "The dwelling unit is located in SC, the NHGIS PUMA code is 00104" -in.puma "SC, 00105" "The dwelling unit is located in SC, the NHGIS PUMA code is 00105" -in.puma "SC, 00200" "The dwelling unit is located in SC, the NHGIS PUMA code is 00200" -in.puma "SC, 00301" "The dwelling unit is located in SC, the NHGIS PUMA code is 00301" -in.puma "SC, 00302" "The dwelling unit is located in SC, the NHGIS PUMA code is 00302" -in.puma "SC, 00400" "The dwelling unit is located in SC, the NHGIS PUMA code is 00400" -in.puma "SC, 00501" "The dwelling unit is located in SC, the NHGIS PUMA code is 00501" -in.puma "SC, 00502" "The dwelling unit is located in SC, the NHGIS PUMA code is 00502" -in.puma "SC, 00601" "The dwelling unit is located in SC, the NHGIS PUMA code is 00601" -in.puma "SC, 00602" "The dwelling unit is located in SC, the NHGIS PUMA code is 00602" -in.puma "SC, 00603" "The dwelling unit is located in SC, the NHGIS PUMA code is 00603" -in.puma "SC, 00604" "The dwelling unit is located in SC, the NHGIS PUMA code is 00604" -in.puma "SC, 00605" "The dwelling unit is located in SC, the NHGIS PUMA code is 00605" -in.puma "SC, 00700" "The dwelling unit is located in SC, the NHGIS PUMA code is 00700" -in.puma "SC, 00800" "The dwelling unit is located in SC, the NHGIS PUMA code is 00800" -in.puma "SC, 00900" "The dwelling unit is located in SC, the NHGIS PUMA code is 00900" -in.puma "SC, 01000" "The dwelling unit is located in SC, the NHGIS PUMA code is 01000" -in.puma "SC, 01101" "The dwelling unit is located in SC, the NHGIS PUMA code is 01101" -in.puma "SC, 01102" "The dwelling unit is located in SC, the NHGIS PUMA code is 01102" -in.puma "SC, 01201" "The dwelling unit is located in SC, the NHGIS PUMA code is 01201" -in.puma "SC, 01202" "The dwelling unit is located in SC, the NHGIS PUMA code is 01202" -in.puma "SC, 01203" "The dwelling unit is located in SC, the NHGIS PUMA code is 01203" -in.puma "SC, 01204" "The dwelling unit is located in SC, the NHGIS PUMA code is 01204" -in.puma "SC, 01300" "The dwelling unit is located in SC, the NHGIS PUMA code is 01300" -in.puma "SC, 01400" "The dwelling unit is located in SC, the NHGIS PUMA code is 01400" -in.puma "SC, 01500" "The dwelling unit is located in SC, the NHGIS PUMA code is 01500" -in.puma "SC, 01600" "The dwelling unit is located in SC, the NHGIS PUMA code is 01600" -in.puma "SD, 00100" "The dwelling unit is located in SD, the NHGIS PUMA code is 00100" -in.puma "SD, 00200" "The dwelling unit is located in SD, the NHGIS PUMA code is 00200" -in.puma "SD, 00300" "The dwelling unit is located in SD, the NHGIS PUMA code is 00300" -in.puma "SD, 00400" "The dwelling unit is located in SD, the NHGIS PUMA code is 00400" -in.puma "SD, 00500" "The dwelling unit is located in SD, the NHGIS PUMA code is 00500" -in.puma "SD, 00600" "The dwelling unit is located in SD, the NHGIS PUMA code is 00600" -in.puma "TN, 00100" "The dwelling unit is located in TN, the NHGIS PUMA code is 00100" -in.puma "TN, 00200" "The dwelling unit is located in TN, the NHGIS PUMA code is 00200" -in.puma "TN, 00300" "The dwelling unit is located in TN, the NHGIS PUMA code is 00300" -in.puma "TN, 00400" "The dwelling unit is located in TN, the NHGIS PUMA code is 00400" -in.puma "TN, 00500" "The dwelling unit is located in TN, the NHGIS PUMA code is 00500" -in.puma "TN, 00600" "The dwelling unit is located in TN, the NHGIS PUMA code is 00600" -in.puma "TN, 00700" "The dwelling unit is located in TN, the NHGIS PUMA code is 00700" -in.puma "TN, 00800" "The dwelling unit is located in TN, the NHGIS PUMA code is 00800" -in.puma "TN, 00900" "The dwelling unit is located in TN, the NHGIS PUMA code is 00900" -in.puma "TN, 01000" "The dwelling unit is located in TN, the NHGIS PUMA code is 01000" -in.puma "TN, 01100" "The dwelling unit is located in TN, the NHGIS PUMA code is 01100" -in.puma "TN, 01200" "The dwelling unit is located in TN, the NHGIS PUMA code is 01200" -in.puma "TN, 01300" "The dwelling unit is located in TN, the NHGIS PUMA code is 01300" -in.puma "TN, 01400" "The dwelling unit is located in TN, the NHGIS PUMA code is 01400" -in.puma "TN, 01500" "The dwelling unit is located in TN, the NHGIS PUMA code is 01500" -in.puma "TN, 01601" "The dwelling unit is located in TN, the NHGIS PUMA code is 01601" -in.puma "TN, 01602" "The dwelling unit is located in TN, the NHGIS PUMA code is 01602" -in.puma "TN, 01603" "The dwelling unit is located in TN, the NHGIS PUMA code is 01603" -in.puma "TN, 01604" "The dwelling unit is located in TN, the NHGIS PUMA code is 01604" -in.puma "TN, 01700" "The dwelling unit is located in TN, the NHGIS PUMA code is 01700" -in.puma "TN, 01800" "The dwelling unit is located in TN, the NHGIS PUMA code is 01800" -in.puma "TN, 01900" "The dwelling unit is located in TN, the NHGIS PUMA code is 01900" -in.puma "TN, 02001" "The dwelling unit is located in TN, the NHGIS PUMA code is 02001" -in.puma "TN, 02002" "The dwelling unit is located in TN, the NHGIS PUMA code is 02002" -in.puma "TN, 02003" "The dwelling unit is located in TN, the NHGIS PUMA code is 02003" -in.puma "TN, 02100" "The dwelling unit is located in TN, the NHGIS PUMA code is 02100" -in.puma "TN, 02200" "The dwelling unit is located in TN, the NHGIS PUMA code is 02200" -in.puma "TN, 02300" "The dwelling unit is located in TN, the NHGIS PUMA code is 02300" -in.puma "TN, 02401" "The dwelling unit is located in TN, the NHGIS PUMA code is 02401" -in.puma "TN, 02402" "The dwelling unit is located in TN, the NHGIS PUMA code is 02402" -in.puma "TN, 02501" "The dwelling unit is located in TN, the NHGIS PUMA code is 02501" -in.puma "TN, 02502" "The dwelling unit is located in TN, the NHGIS PUMA code is 02502" -in.puma "TN, 02503" "The dwelling unit is located in TN, the NHGIS PUMA code is 02503" -in.puma "TN, 02504" "The dwelling unit is located in TN, the NHGIS PUMA code is 02504" -in.puma "TN, 02505" "The dwelling unit is located in TN, the NHGIS PUMA code is 02505" -in.puma "TN, 02600" "The dwelling unit is located in TN, the NHGIS PUMA code is 02600" -in.puma "TN, 02700" "The dwelling unit is located in TN, the NHGIS PUMA code is 02700" -in.puma "TN, 02800" "The dwelling unit is located in TN, the NHGIS PUMA code is 02800" -in.puma "TN, 02900" "The dwelling unit is located in TN, the NHGIS PUMA code is 02900" -in.puma "TN, 03000" "The dwelling unit is located in TN, the NHGIS PUMA code is 03000" -in.puma "TN, 03100" "The dwelling unit is located in TN, the NHGIS PUMA code is 03100" -in.puma "TN, 03201" "The dwelling unit is located in TN, the NHGIS PUMA code is 03201" -in.puma "TN, 03202" "The dwelling unit is located in TN, the NHGIS PUMA code is 03202" -in.puma "TN, 03203" "The dwelling unit is located in TN, the NHGIS PUMA code is 03203" -in.puma "TN, 03204" "The dwelling unit is located in TN, the NHGIS PUMA code is 03204" -in.puma "TN, 03205" "The dwelling unit is located in TN, the NHGIS PUMA code is 03205" -in.puma "TN, 03206" "The dwelling unit is located in TN, the NHGIS PUMA code is 03206" -in.puma "TN, 03207" "The dwelling unit is located in TN, the NHGIS PUMA code is 03207" -in.puma "TN, 03208" "The dwelling unit is located in TN, the NHGIS PUMA code is 03208" -in.puma "TX, 00100" "The dwelling unit is located in TX, the NHGIS PUMA code is 00100" -in.puma "TX, 00200" "The dwelling unit is located in TX, the NHGIS PUMA code is 00200" -in.puma "TX, 00300" "The dwelling unit is located in TX, the NHGIS PUMA code is 00300" -in.puma "TX, 00400" "The dwelling unit is located in TX, the NHGIS PUMA code is 00400" -in.puma "TX, 00501" "The dwelling unit is located in TX, the NHGIS PUMA code is 00501" -in.puma "TX, 00502" "The dwelling unit is located in TX, the NHGIS PUMA code is 00502" -in.puma "TX, 00600" "The dwelling unit is located in TX, the NHGIS PUMA code is 00600" -in.puma "TX, 00700" "The dwelling unit is located in TX, the NHGIS PUMA code is 00700" -in.puma "TX, 00800" "The dwelling unit is located in TX, the NHGIS PUMA code is 00800" -in.puma "TX, 00900" "The dwelling unit is located in TX, the NHGIS PUMA code is 00900" -in.puma "TX, 01000" "The dwelling unit is located in TX, the NHGIS PUMA code is 01000" -in.puma "TX, 01100" "The dwelling unit is located in TX, the NHGIS PUMA code is 01100" -in.puma "TX, 01200" "The dwelling unit is located in TX, the NHGIS PUMA code is 01200" -in.puma "TX, 01300" "The dwelling unit is located in TX, the NHGIS PUMA code is 01300" -in.puma "TX, 01400" "The dwelling unit is located in TX, the NHGIS PUMA code is 01400" -in.puma "TX, 01501" "The dwelling unit is located in TX, the NHGIS PUMA code is 01501" -in.puma "TX, 01502" "The dwelling unit is located in TX, the NHGIS PUMA code is 01502" -in.puma "TX, 01600" "The dwelling unit is located in TX, the NHGIS PUMA code is 01600" -in.puma "TX, 01700" "The dwelling unit is located in TX, the NHGIS PUMA code is 01700" -in.puma "TX, 01800" "The dwelling unit is located in TX, the NHGIS PUMA code is 01800" -in.puma "TX, 01901" "The dwelling unit is located in TX, the NHGIS PUMA code is 01901" -in.puma "TX, 01902" "The dwelling unit is located in TX, the NHGIS PUMA code is 01902" -in.puma "TX, 01903" "The dwelling unit is located in TX, the NHGIS PUMA code is 01903" -in.puma "TX, 01904" "The dwelling unit is located in TX, the NHGIS PUMA code is 01904" -in.puma "TX, 01905" "The dwelling unit is located in TX, the NHGIS PUMA code is 01905" -in.puma "TX, 01906" "The dwelling unit is located in TX, the NHGIS PUMA code is 01906" -in.puma "TX, 01907" "The dwelling unit is located in TX, the NHGIS PUMA code is 01907" -in.puma "TX, 02001" "The dwelling unit is located in TX, the NHGIS PUMA code is 02001" -in.puma "TX, 02002" "The dwelling unit is located in TX, the NHGIS PUMA code is 02002" -in.puma "TX, 02003" "The dwelling unit is located in TX, the NHGIS PUMA code is 02003" -in.puma "TX, 02004" "The dwelling unit is located in TX, the NHGIS PUMA code is 02004" -in.puma "TX, 02005" "The dwelling unit is located in TX, the NHGIS PUMA code is 02005" -in.puma "TX, 02006" "The dwelling unit is located in TX, the NHGIS PUMA code is 02006" -in.puma "TX, 02101" "The dwelling unit is located in TX, the NHGIS PUMA code is 02101" -in.puma "TX, 02102" "The dwelling unit is located in TX, the NHGIS PUMA code is 02102" -in.puma "TX, 02200" "The dwelling unit is located in TX, the NHGIS PUMA code is 02200" -in.puma "TX, 02301" "The dwelling unit is located in TX, the NHGIS PUMA code is 02301" -in.puma "TX, 02302" "The dwelling unit is located in TX, the NHGIS PUMA code is 02302" -in.puma "TX, 02303" "The dwelling unit is located in TX, the NHGIS PUMA code is 02303" -in.puma "TX, 02304" "The dwelling unit is located in TX, the NHGIS PUMA code is 02304" -in.puma "TX, 02305" "The dwelling unit is located in TX, the NHGIS PUMA code is 02305" -in.puma "TX, 02306" "The dwelling unit is located in TX, the NHGIS PUMA code is 02306" -in.puma "TX, 02307" "The dwelling unit is located in TX, the NHGIS PUMA code is 02307" -in.puma "TX, 02308" "The dwelling unit is located in TX, the NHGIS PUMA code is 02308" -in.puma "TX, 02309" "The dwelling unit is located in TX, the NHGIS PUMA code is 02309" -in.puma "TX, 02310" "The dwelling unit is located in TX, the NHGIS PUMA code is 02310" -in.puma "TX, 02311" "The dwelling unit is located in TX, the NHGIS PUMA code is 02311" -in.puma "TX, 02312" "The dwelling unit is located in TX, the NHGIS PUMA code is 02312" -in.puma "TX, 02313" "The dwelling unit is located in TX, the NHGIS PUMA code is 02313" -in.puma "TX, 02314" "The dwelling unit is located in TX, the NHGIS PUMA code is 02314" -in.puma "TX, 02315" "The dwelling unit is located in TX, the NHGIS PUMA code is 02315" -in.puma "TX, 02316" "The dwelling unit is located in TX, the NHGIS PUMA code is 02316" -in.puma "TX, 02317" "The dwelling unit is located in TX, the NHGIS PUMA code is 02317" -in.puma "TX, 02318" "The dwelling unit is located in TX, the NHGIS PUMA code is 02318" -in.puma "TX, 02319" "The dwelling unit is located in TX, the NHGIS PUMA code is 02319" -in.puma "TX, 02320" "The dwelling unit is located in TX, the NHGIS PUMA code is 02320" -in.puma "TX, 02321" "The dwelling unit is located in TX, the NHGIS PUMA code is 02321" -in.puma "TX, 02322" "The dwelling unit is located in TX, the NHGIS PUMA code is 02322" -in.puma "TX, 02400" "The dwelling unit is located in TX, the NHGIS PUMA code is 02400" -in.puma "TX, 02501" "The dwelling unit is located in TX, the NHGIS PUMA code is 02501" -in.puma "TX, 02502" "The dwelling unit is located in TX, the NHGIS PUMA code is 02502" -in.puma "TX, 02503" "The dwelling unit is located in TX, the NHGIS PUMA code is 02503" -in.puma "TX, 02504" "The dwelling unit is located in TX, the NHGIS PUMA code is 02504" -in.puma "TX, 02505" "The dwelling unit is located in TX, the NHGIS PUMA code is 02505" -in.puma "TX, 02506" "The dwelling unit is located in TX, the NHGIS PUMA code is 02506" -in.puma "TX, 02507" "The dwelling unit is located in TX, the NHGIS PUMA code is 02507" -in.puma "TX, 02508" "The dwelling unit is located in TX, the NHGIS PUMA code is 02508" -in.puma "TX, 02509" "The dwelling unit is located in TX, the NHGIS PUMA code is 02509" -in.puma "TX, 02510" "The dwelling unit is located in TX, the NHGIS PUMA code is 02510" -in.puma "TX, 02511" "The dwelling unit is located in TX, the NHGIS PUMA code is 02511" -in.puma "TX, 02512" "The dwelling unit is located in TX, the NHGIS PUMA code is 02512" -in.puma "TX, 02513" "The dwelling unit is located in TX, the NHGIS PUMA code is 02513" -in.puma "TX, 02514" "The dwelling unit is located in TX, the NHGIS PUMA code is 02514" -in.puma "TX, 02515" "The dwelling unit is located in TX, the NHGIS PUMA code is 02515" -in.puma "TX, 02516" "The dwelling unit is located in TX, the NHGIS PUMA code is 02516" -in.puma "TX, 02600" "The dwelling unit is located in TX, the NHGIS PUMA code is 02600" -in.puma "TX, 02700" "The dwelling unit is located in TX, the NHGIS PUMA code is 02700" -in.puma "TX, 02800" "The dwelling unit is located in TX, the NHGIS PUMA code is 02800" -in.puma "TX, 02900" "The dwelling unit is located in TX, the NHGIS PUMA code is 02900" -in.puma "TX, 03000" "The dwelling unit is located in TX, the NHGIS PUMA code is 03000" -in.puma "TX, 03100" "The dwelling unit is located in TX, the NHGIS PUMA code is 03100" -in.puma "TX, 03200" "The dwelling unit is located in TX, the NHGIS PUMA code is 03200" -in.puma "TX, 03301" "The dwelling unit is located in TX, the NHGIS PUMA code is 03301" -in.puma "TX, 03302" "The dwelling unit is located in TX, the NHGIS PUMA code is 03302" -in.puma "TX, 03303" "The dwelling unit is located in TX, the NHGIS PUMA code is 03303" -in.puma "TX, 03304" "The dwelling unit is located in TX, the NHGIS PUMA code is 03304" -in.puma "TX, 03305" "The dwelling unit is located in TX, the NHGIS PUMA code is 03305" -in.puma "TX, 03306" "The dwelling unit is located in TX, the NHGIS PUMA code is 03306" -in.puma "TX, 03400" "The dwelling unit is located in TX, the NHGIS PUMA code is 03400" -in.puma "TX, 03501" "The dwelling unit is located in TX, the NHGIS PUMA code is 03501" -in.puma "TX, 03502" "The dwelling unit is located in TX, the NHGIS PUMA code is 03502" -in.puma "TX, 03601" "The dwelling unit is located in TX, the NHGIS PUMA code is 03601" -in.puma "TX, 03602" "The dwelling unit is located in TX, the NHGIS PUMA code is 03602" -in.puma "TX, 03700" "The dwelling unit is located in TX, the NHGIS PUMA code is 03700" -in.puma "TX, 03801" "The dwelling unit is located in TX, the NHGIS PUMA code is 03801" -in.puma "TX, 03802" "The dwelling unit is located in TX, the NHGIS PUMA code is 03802" -in.puma "TX, 03900" "The dwelling unit is located in TX, the NHGIS PUMA code is 03900" -in.puma "TX, 04000" "The dwelling unit is located in TX, the NHGIS PUMA code is 04000" -in.puma "TX, 04100" "The dwelling unit is located in TX, the NHGIS PUMA code is 04100" -in.puma "TX, 04200" "The dwelling unit is located in TX, the NHGIS PUMA code is 04200" -in.puma "TX, 04301" "The dwelling unit is located in TX, the NHGIS PUMA code is 04301" -in.puma "TX, 04302" "The dwelling unit is located in TX, the NHGIS PUMA code is 04302" -in.puma "TX, 04400" "The dwelling unit is located in TX, the NHGIS PUMA code is 04400" -in.puma "TX, 04501" "The dwelling unit is located in TX, the NHGIS PUMA code is 04501" -in.puma "TX, 04502" "The dwelling unit is located in TX, the NHGIS PUMA code is 04502" -in.puma "TX, 04503" "The dwelling unit is located in TX, the NHGIS PUMA code is 04503" -in.puma "TX, 04504" "The dwelling unit is located in TX, the NHGIS PUMA code is 04504" -in.puma "TX, 04601" "The dwelling unit is located in TX, the NHGIS PUMA code is 04601" -in.puma "TX, 04602" "The dwelling unit is located in TX, the NHGIS PUMA code is 04602" -in.puma "TX, 04603" "The dwelling unit is located in TX, the NHGIS PUMA code is 04603" -in.puma "TX, 04604" "The dwelling unit is located in TX, the NHGIS PUMA code is 04604" -in.puma "TX, 04605" "The dwelling unit is located in TX, the NHGIS PUMA code is 04605" -in.puma "TX, 04606" "The dwelling unit is located in TX, the NHGIS PUMA code is 04606" -in.puma "TX, 04607" "The dwelling unit is located in TX, the NHGIS PUMA code is 04607" -in.puma "TX, 04608" "The dwelling unit is located in TX, the NHGIS PUMA code is 04608" -in.puma "TX, 04609" "The dwelling unit is located in TX, the NHGIS PUMA code is 04609" -in.puma "TX, 04610" "The dwelling unit is located in TX, the NHGIS PUMA code is 04610" -in.puma "TX, 04611" "The dwelling unit is located in TX, the NHGIS PUMA code is 04611" -in.puma "TX, 04612" "The dwelling unit is located in TX, the NHGIS PUMA code is 04612" -in.puma "TX, 04613" "The dwelling unit is located in TX, the NHGIS PUMA code is 04613" -in.puma "TX, 04614" "The dwelling unit is located in TX, the NHGIS PUMA code is 04614" -in.puma "TX, 04615" "The dwelling unit is located in TX, the NHGIS PUMA code is 04615" -in.puma "TX, 04616" "The dwelling unit is located in TX, the NHGIS PUMA code is 04616" -in.puma "TX, 04617" "The dwelling unit is located in TX, the NHGIS PUMA code is 04617" -in.puma "TX, 04618" "The dwelling unit is located in TX, the NHGIS PUMA code is 04618" -in.puma "TX, 04619" "The dwelling unit is located in TX, the NHGIS PUMA code is 04619" -in.puma "TX, 04620" "The dwelling unit is located in TX, the NHGIS PUMA code is 04620" -in.puma "TX, 04621" "The dwelling unit is located in TX, the NHGIS PUMA code is 04621" -in.puma "TX, 04622" "The dwelling unit is located in TX, the NHGIS PUMA code is 04622" -in.puma "TX, 04623" "The dwelling unit is located in TX, the NHGIS PUMA code is 04623" -in.puma "TX, 04624" "The dwelling unit is located in TX, the NHGIS PUMA code is 04624" -in.puma "TX, 04625" "The dwelling unit is located in TX, the NHGIS PUMA code is 04625" -in.puma "TX, 04626" "The dwelling unit is located in TX, the NHGIS PUMA code is 04626" -in.puma "TX, 04627" "The dwelling unit is located in TX, the NHGIS PUMA code is 04627" -in.puma "TX, 04628" "The dwelling unit is located in TX, the NHGIS PUMA code is 04628" -in.puma "TX, 04629" "The dwelling unit is located in TX, the NHGIS PUMA code is 04629" -in.puma "TX, 04630" "The dwelling unit is located in TX, the NHGIS PUMA code is 04630" -in.puma "TX, 04631" "The dwelling unit is located in TX, the NHGIS PUMA code is 04631" -in.puma "TX, 04632" "The dwelling unit is located in TX, the NHGIS PUMA code is 04632" -in.puma "TX, 04633" "The dwelling unit is located in TX, the NHGIS PUMA code is 04633" -in.puma "TX, 04634" "The dwelling unit is located in TX, the NHGIS PUMA code is 04634" -in.puma "TX, 04635" "The dwelling unit is located in TX, the NHGIS PUMA code is 04635" -in.puma "TX, 04636" "The dwelling unit is located in TX, the NHGIS PUMA code is 04636" -in.puma "TX, 04637" "The dwelling unit is located in TX, the NHGIS PUMA code is 04637" -in.puma "TX, 04638" "The dwelling unit is located in TX, the NHGIS PUMA code is 04638" -in.puma "TX, 04701" "The dwelling unit is located in TX, the NHGIS PUMA code is 04701" -in.puma "TX, 04702" "The dwelling unit is located in TX, the NHGIS PUMA code is 04702" -in.puma "TX, 04801" "The dwelling unit is located in TX, the NHGIS PUMA code is 04801" -in.puma "TX, 04802" "The dwelling unit is located in TX, the NHGIS PUMA code is 04802" -in.puma "TX, 04803" "The dwelling unit is located in TX, the NHGIS PUMA code is 04803" -in.puma "TX, 04901" "The dwelling unit is located in TX, the NHGIS PUMA code is 04901" -in.puma "TX, 04902" "The dwelling unit is located in TX, the NHGIS PUMA code is 04902" -in.puma "TX, 04903" "The dwelling unit is located in TX, the NHGIS PUMA code is 04903" -in.puma "TX, 04904" "The dwelling unit is located in TX, the NHGIS PUMA code is 04904" -in.puma "TX, 04905" "The dwelling unit is located in TX, the NHGIS PUMA code is 04905" -in.puma "TX, 05000" "The dwelling unit is located in TX, the NHGIS PUMA code is 05000" -in.puma "TX, 05100" "The dwelling unit is located in TX, the NHGIS PUMA code is 05100" -in.puma "TX, 05201" "The dwelling unit is located in TX, the NHGIS PUMA code is 05201" -in.puma "TX, 05202" "The dwelling unit is located in TX, the NHGIS PUMA code is 05202" -in.puma "TX, 05203" "The dwelling unit is located in TX, the NHGIS PUMA code is 05203" -in.puma "TX, 05204" "The dwelling unit is located in TX, the NHGIS PUMA code is 05204" -in.puma "TX, 05301" "The dwelling unit is located in TX, the NHGIS PUMA code is 05301" -in.puma "TX, 05302" "The dwelling unit is located in TX, the NHGIS PUMA code is 05302" -in.puma "TX, 05303" "The dwelling unit is located in TX, the NHGIS PUMA code is 05303" -in.puma "TX, 05304" "The dwelling unit is located in TX, the NHGIS PUMA code is 05304" -in.puma "TX, 05305" "The dwelling unit is located in TX, the NHGIS PUMA code is 05305" -in.puma "TX, 05306" "The dwelling unit is located in TX, the NHGIS PUMA code is 05306" -in.puma "TX, 05307" "The dwelling unit is located in TX, the NHGIS PUMA code is 05307" -in.puma "TX, 05308" "The dwelling unit is located in TX, the NHGIS PUMA code is 05308" -in.puma "TX, 05309" "The dwelling unit is located in TX, the NHGIS PUMA code is 05309" -in.puma "TX, 05400" "The dwelling unit is located in TX, the NHGIS PUMA code is 05400" -in.puma "TX, 05500" "The dwelling unit is located in TX, the NHGIS PUMA code is 05500" -in.puma "TX, 05600" "The dwelling unit is located in TX, the NHGIS PUMA code is 05600" -in.puma "TX, 05700" "The dwelling unit is located in TX, the NHGIS PUMA code is 05700" -in.puma "TX, 05800" "The dwelling unit is located in TX, the NHGIS PUMA code is 05800" -in.puma "TX, 05901" "The dwelling unit is located in TX, the NHGIS PUMA code is 05901" -in.puma "TX, 05902" "The dwelling unit is located in TX, the NHGIS PUMA code is 05902" -in.puma "TX, 05903" "The dwelling unit is located in TX, the NHGIS PUMA code is 05903" -in.puma "TX, 05904" "The dwelling unit is located in TX, the NHGIS PUMA code is 05904" -in.puma "TX, 05905" "The dwelling unit is located in TX, the NHGIS PUMA code is 05905" -in.puma "TX, 05906" "The dwelling unit is located in TX, the NHGIS PUMA code is 05906" -in.puma "TX, 05907" "The dwelling unit is located in TX, the NHGIS PUMA code is 05907" -in.puma "TX, 05908" "The dwelling unit is located in TX, the NHGIS PUMA code is 05908" -in.puma "TX, 05909" "The dwelling unit is located in TX, the NHGIS PUMA code is 05909" -in.puma "TX, 05910" "The dwelling unit is located in TX, the NHGIS PUMA code is 05910" -in.puma "TX, 05911" "The dwelling unit is located in TX, the NHGIS PUMA code is 05911" -in.puma "TX, 05912" "The dwelling unit is located in TX, the NHGIS PUMA code is 05912" -in.puma "TX, 05913" "The dwelling unit is located in TX, the NHGIS PUMA code is 05913" -in.puma "TX, 05914" "The dwelling unit is located in TX, the NHGIS PUMA code is 05914" -in.puma "TX, 05915" "The dwelling unit is located in TX, the NHGIS PUMA code is 05915" -in.puma "TX, 05916" "The dwelling unit is located in TX, the NHGIS PUMA code is 05916" -in.puma "TX, 06000" "The dwelling unit is located in TX, the NHGIS PUMA code is 06000" -in.puma "TX, 06100" "The dwelling unit is located in TX, the NHGIS PUMA code is 06100" -in.puma "TX, 06200" "The dwelling unit is located in TX, the NHGIS PUMA code is 06200" -in.puma "TX, 06301" "The dwelling unit is located in TX, the NHGIS PUMA code is 06301" -in.puma "TX, 06302" "The dwelling unit is located in TX, the NHGIS PUMA code is 06302" -in.puma "TX, 06400" "The dwelling unit is located in TX, the NHGIS PUMA code is 06400" -in.puma "TX, 06500" "The dwelling unit is located in TX, the NHGIS PUMA code is 06500" -in.puma "TX, 06601" "The dwelling unit is located in TX, the NHGIS PUMA code is 06601" -in.puma "TX, 06602" "The dwelling unit is located in TX, the NHGIS PUMA code is 06602" -in.puma "TX, 06603" "The dwelling unit is located in TX, the NHGIS PUMA code is 06603" -in.puma "TX, 06701" "The dwelling unit is located in TX, the NHGIS PUMA code is 06701" -in.puma "TX, 06702" "The dwelling unit is located in TX, the NHGIS PUMA code is 06702" -in.puma "TX, 06703" "The dwelling unit is located in TX, the NHGIS PUMA code is 06703" -in.puma "TX, 06801" "The dwelling unit is located in TX, the NHGIS PUMA code is 06801" -in.puma "TX, 06802" "The dwelling unit is located in TX, the NHGIS PUMA code is 06802" -in.puma "TX, 06803" "The dwelling unit is located in TX, the NHGIS PUMA code is 06803" -in.puma "TX, 06804" "The dwelling unit is located in TX, the NHGIS PUMA code is 06804" -in.puma "TX, 06805" "The dwelling unit is located in TX, the NHGIS PUMA code is 06805" -in.puma "TX, 06806" "The dwelling unit is located in TX, the NHGIS PUMA code is 06806" -in.puma "TX, 06807" "The dwelling unit is located in TX, the NHGIS PUMA code is 06807" -in.puma "TX, 06900" "The dwelling unit is located in TX, the NHGIS PUMA code is 06900" -in.puma "UT, 03001" "The dwelling unit is located in UT, the NHGIS PUMA code is 03001" -in.puma "UT, 05001" "The dwelling unit is located in UT, the NHGIS PUMA code is 05001" -in.puma "UT, 11001" "The dwelling unit is located in UT, the NHGIS PUMA code is 11001" -in.puma "UT, 11002" "The dwelling unit is located in UT, the NHGIS PUMA code is 11002" -in.puma "UT, 13001" "The dwelling unit is located in UT, the NHGIS PUMA code is 13001" -in.puma "UT, 21001" "The dwelling unit is located in UT, the NHGIS PUMA code is 21001" -in.puma "UT, 35001" "The dwelling unit is located in UT, the NHGIS PUMA code is 35001" -in.puma "UT, 35002" "The dwelling unit is located in UT, the NHGIS PUMA code is 35002" -in.puma "UT, 35003" "The dwelling unit is located in UT, the NHGIS PUMA code is 35003" -in.puma "UT, 35004" "The dwelling unit is located in UT, the NHGIS PUMA code is 35004" -in.puma "UT, 35005" "The dwelling unit is located in UT, the NHGIS PUMA code is 35005" -in.puma "UT, 35006" "The dwelling unit is located in UT, the NHGIS PUMA code is 35006" -in.puma "UT, 35007" "The dwelling unit is located in UT, the NHGIS PUMA code is 35007" -in.puma "UT, 35008" "The dwelling unit is located in UT, the NHGIS PUMA code is 35008" -in.puma "UT, 35009" "The dwelling unit is located in UT, the NHGIS PUMA code is 35009" -in.puma "UT, 49001" "The dwelling unit is located in UT, the NHGIS PUMA code is 49001" -in.puma "UT, 49002" "The dwelling unit is located in UT, the NHGIS PUMA code is 49002" -in.puma "UT, 49003" "The dwelling unit is located in UT, the NHGIS PUMA code is 49003" -in.puma "UT, 49004" "The dwelling unit is located in UT, the NHGIS PUMA code is 49004" -in.puma "UT, 53001" "The dwelling unit is located in UT, the NHGIS PUMA code is 53001" -in.puma "UT, 57001" "The dwelling unit is located in UT, the NHGIS PUMA code is 57001" -in.puma "UT, 57002" "The dwelling unit is located in UT, the NHGIS PUMA code is 57002" -in.puma "VA, 01301" "The dwelling unit is located in VA, the NHGIS PUMA code is 01301" -in.puma "VA, 01302" "The dwelling unit is located in VA, the NHGIS PUMA code is 01302" -in.puma "VA, 04101" "The dwelling unit is located in VA, the NHGIS PUMA code is 04101" -in.puma "VA, 04102" "The dwelling unit is located in VA, the NHGIS PUMA code is 04102" -in.puma "VA, 04103" "The dwelling unit is located in VA, the NHGIS PUMA code is 04103" -in.puma "VA, 10701" "The dwelling unit is located in VA, the NHGIS PUMA code is 10701" -in.puma "VA, 10702" "The dwelling unit is located in VA, the NHGIS PUMA code is 10702" -in.puma "VA, 10703" "The dwelling unit is located in VA, the NHGIS PUMA code is 10703" -in.puma "VA, 51010" "The dwelling unit is located in VA, the NHGIS PUMA code is 51010" -in.puma "VA, 51020" "The dwelling unit is located in VA, the NHGIS PUMA code is 51020" -in.puma "VA, 51040" "The dwelling unit is located in VA, the NHGIS PUMA code is 51040" -in.puma "VA, 51044" "The dwelling unit is located in VA, the NHGIS PUMA code is 51044" -in.puma "VA, 51045" "The dwelling unit is located in VA, the NHGIS PUMA code is 51045" -in.puma "VA, 51080" "The dwelling unit is located in VA, the NHGIS PUMA code is 51080" -in.puma "VA, 51084" "The dwelling unit is located in VA, the NHGIS PUMA code is 51084" -in.puma "VA, 51085" "The dwelling unit is located in VA, the NHGIS PUMA code is 51085" -in.puma "VA, 51087" "The dwelling unit is located in VA, the NHGIS PUMA code is 51087" -in.puma "VA, 51089" "The dwelling unit is located in VA, the NHGIS PUMA code is 51089" -in.puma "VA, 51090" "The dwelling unit is located in VA, the NHGIS PUMA code is 51090" -in.puma "VA, 51095" "The dwelling unit is located in VA, the NHGIS PUMA code is 51095" -in.puma "VA, 51096" "The dwelling unit is located in VA, the NHGIS PUMA code is 51096" -in.puma "VA, 51097" "The dwelling unit is located in VA, the NHGIS PUMA code is 51097" -in.puma "VA, 51105" "The dwelling unit is located in VA, the NHGIS PUMA code is 51105" -in.puma "VA, 51110" "The dwelling unit is located in VA, the NHGIS PUMA code is 51110" -in.puma "VA, 51115" "The dwelling unit is located in VA, the NHGIS PUMA code is 51115" -in.puma "VA, 51120" "The dwelling unit is located in VA, the NHGIS PUMA code is 51120" -in.puma "VA, 51125" "The dwelling unit is located in VA, the NHGIS PUMA code is 51125" -in.puma "VA, 51135" "The dwelling unit is located in VA, the NHGIS PUMA code is 51135" -in.puma "VA, 51145" "The dwelling unit is located in VA, the NHGIS PUMA code is 51145" -in.puma "VA, 51154" "The dwelling unit is located in VA, the NHGIS PUMA code is 51154" -in.puma "VA, 51155" "The dwelling unit is located in VA, the NHGIS PUMA code is 51155" -in.puma "VA, 51164" "The dwelling unit is located in VA, the NHGIS PUMA code is 51164" -in.puma "VA, 51165" "The dwelling unit is located in VA, the NHGIS PUMA code is 51165" -in.puma "VA, 51167" "The dwelling unit is located in VA, the NHGIS PUMA code is 51167" -in.puma "VA, 51175" "The dwelling unit is located in VA, the NHGIS PUMA code is 51175" -in.puma "VA, 51186" "The dwelling unit is located in VA, the NHGIS PUMA code is 51186" -in.puma "VA, 51206" "The dwelling unit is located in VA, the NHGIS PUMA code is 51206" -in.puma "VA, 51215" "The dwelling unit is located in VA, the NHGIS PUMA code is 51215" -in.puma "VA, 51224" "The dwelling unit is located in VA, the NHGIS PUMA code is 51224" -in.puma "VA, 51225" "The dwelling unit is located in VA, the NHGIS PUMA code is 51225" -in.puma "VA, 51235" "The dwelling unit is located in VA, the NHGIS PUMA code is 51235" -in.puma "VA, 51244" "The dwelling unit is located in VA, the NHGIS PUMA code is 51244" -in.puma "VA, 51245" "The dwelling unit is located in VA, the NHGIS PUMA code is 51245" -in.puma "VA, 51246" "The dwelling unit is located in VA, the NHGIS PUMA code is 51246" -in.puma "VA, 51255" "The dwelling unit is located in VA, the NHGIS PUMA code is 51255" -in.puma "VA, 55001" "The dwelling unit is located in VA, the NHGIS PUMA code is 55001" -in.puma "VA, 55002" "The dwelling unit is located in VA, the NHGIS PUMA code is 55002" -in.puma "VA, 59301" "The dwelling unit is located in VA, the NHGIS PUMA code is 59301" -in.puma "VA, 59302" "The dwelling unit is located in VA, the NHGIS PUMA code is 59302" -in.puma "VA, 59303" "The dwelling unit is located in VA, the NHGIS PUMA code is 59303" -in.puma "VA, 59304" "The dwelling unit is located in VA, the NHGIS PUMA code is 59304" -in.puma "VA, 59305" "The dwelling unit is located in VA, the NHGIS PUMA code is 59305" -in.puma "VA, 59306" "The dwelling unit is located in VA, the NHGIS PUMA code is 59306" -in.puma "VA, 59307" "The dwelling unit is located in VA, the NHGIS PUMA code is 59307" -in.puma "VA, 59308" "The dwelling unit is located in VA, the NHGIS PUMA code is 59308" -in.puma "VA, 59309" "The dwelling unit is located in VA, the NHGIS PUMA code is 59309" -in.puma "VT, 00100" "The dwelling unit is located in VT, the NHGIS PUMA code is 00100" -in.puma "VT, 00200" "The dwelling unit is located in VT, the NHGIS PUMA code is 00200" -in.puma "VT, 00300" "The dwelling unit is located in VT, the NHGIS PUMA code is 00300" -in.puma "VT, 00400" "The dwelling unit is located in VT, the NHGIS PUMA code is 00400" -in.puma "WA, 10100" "The dwelling unit is located in WA, the NHGIS PUMA code is 10100" -in.puma "WA, 10200" "The dwelling unit is located in WA, the NHGIS PUMA code is 10200" -in.puma "WA, 10300" "The dwelling unit is located in WA, the NHGIS PUMA code is 10300" -in.puma "WA, 10400" "The dwelling unit is located in WA, the NHGIS PUMA code is 10400" -in.puma "WA, 10501" "The dwelling unit is located in WA, the NHGIS PUMA code is 10501" -in.puma "WA, 10502" "The dwelling unit is located in WA, the NHGIS PUMA code is 10502" -in.puma "WA, 10503" "The dwelling unit is located in WA, the NHGIS PUMA code is 10503" -in.puma "WA, 10504" "The dwelling unit is located in WA, the NHGIS PUMA code is 10504" -in.puma "WA, 10600" "The dwelling unit is located in WA, the NHGIS PUMA code is 10600" -in.puma "WA, 10701" "The dwelling unit is located in WA, the NHGIS PUMA code is 10701" -in.puma "WA, 10702" "The dwelling unit is located in WA, the NHGIS PUMA code is 10702" -in.puma "WA, 10703" "The dwelling unit is located in WA, the NHGIS PUMA code is 10703" -in.puma "WA, 10800" "The dwelling unit is located in WA, the NHGIS PUMA code is 10800" -in.puma "WA, 10901" "The dwelling unit is located in WA, the NHGIS PUMA code is 10901" -in.puma "WA, 10902" "The dwelling unit is located in WA, the NHGIS PUMA code is 10902" -in.puma "WA, 11000" "The dwelling unit is located in WA, the NHGIS PUMA code is 11000" -in.puma "WA, 11101" "The dwelling unit is located in WA, the NHGIS PUMA code is 11101" -in.puma "WA, 11102" "The dwelling unit is located in WA, the NHGIS PUMA code is 11102" -in.puma "WA, 11103" "The dwelling unit is located in WA, the NHGIS PUMA code is 11103" -in.puma "WA, 11104" "The dwelling unit is located in WA, the NHGIS PUMA code is 11104" -in.puma "WA, 11200" "The dwelling unit is located in WA, the NHGIS PUMA code is 11200" -in.puma "WA, 11300" "The dwelling unit is located in WA, the NHGIS PUMA code is 11300" -in.puma "WA, 11401" "The dwelling unit is located in WA, the NHGIS PUMA code is 11401" -in.puma "WA, 11402" "The dwelling unit is located in WA, the NHGIS PUMA code is 11402" -in.puma "WA, 11501" "The dwelling unit is located in WA, the NHGIS PUMA code is 11501" -in.puma "WA, 11502" "The dwelling unit is located in WA, the NHGIS PUMA code is 11502" -in.puma "WA, 11503" "The dwelling unit is located in WA, the NHGIS PUMA code is 11503" -in.puma "WA, 11504" "The dwelling unit is located in WA, the NHGIS PUMA code is 11504" -in.puma "WA, 11505" "The dwelling unit is located in WA, the NHGIS PUMA code is 11505" -in.puma "WA, 11506" "The dwelling unit is located in WA, the NHGIS PUMA code is 11506" -in.puma "WA, 11507" "The dwelling unit is located in WA, the NHGIS PUMA code is 11507" -in.puma "WA, 11601" "The dwelling unit is located in WA, the NHGIS PUMA code is 11601" -in.puma "WA, 11602" "The dwelling unit is located in WA, the NHGIS PUMA code is 11602" -in.puma "WA, 11603" "The dwelling unit is located in WA, the NHGIS PUMA code is 11603" -in.puma "WA, 11604" "The dwelling unit is located in WA, the NHGIS PUMA code is 11604" -in.puma "WA, 11605" "The dwelling unit is located in WA, the NHGIS PUMA code is 11605" -in.puma "WA, 11606" "The dwelling unit is located in WA, the NHGIS PUMA code is 11606" -in.puma "WA, 11607" "The dwelling unit is located in WA, the NHGIS PUMA code is 11607" -in.puma "WA, 11608" "The dwelling unit is located in WA, the NHGIS PUMA code is 11608" -in.puma "WA, 11609" "The dwelling unit is located in WA, the NHGIS PUMA code is 11609" -in.puma "WA, 11610" "The dwelling unit is located in WA, the NHGIS PUMA code is 11610" -in.puma "WA, 11611" "The dwelling unit is located in WA, the NHGIS PUMA code is 11611" -in.puma "WA, 11612" "The dwelling unit is located in WA, the NHGIS PUMA code is 11612" -in.puma "WA, 11613" "The dwelling unit is located in WA, the NHGIS PUMA code is 11613" -in.puma "WA, 11614" "The dwelling unit is located in WA, the NHGIS PUMA code is 11614" -in.puma "WA, 11615" "The dwelling unit is located in WA, the NHGIS PUMA code is 11615" -in.puma "WA, 11616" "The dwelling unit is located in WA, the NHGIS PUMA code is 11616" -in.puma "WA, 11701" "The dwelling unit is located in WA, the NHGIS PUMA code is 11701" -in.puma "WA, 11702" "The dwelling unit is located in WA, the NHGIS PUMA code is 11702" -in.puma "WA, 11703" "The dwelling unit is located in WA, the NHGIS PUMA code is 11703" -in.puma "WA, 11704" "The dwelling unit is located in WA, the NHGIS PUMA code is 11704" -in.puma "WA, 11705" "The dwelling unit is located in WA, the NHGIS PUMA code is 11705" -in.puma "WA, 11706" "The dwelling unit is located in WA, the NHGIS PUMA code is 11706" -in.puma "WA, 11801" "The dwelling unit is located in WA, the NHGIS PUMA code is 11801" -in.puma "WA, 11802" "The dwelling unit is located in WA, the NHGIS PUMA code is 11802" -in.puma "WA, 11900" "The dwelling unit is located in WA, the NHGIS PUMA code is 11900" -in.puma "WI, 00100" "The dwelling unit is located in WI, the NHGIS PUMA code is 00100" -in.puma "WI, 00101" "The dwelling unit is located in WI, the NHGIS PUMA code is 00101" -in.puma "WI, 00102" "The dwelling unit is located in WI, the NHGIS PUMA code is 00102" -in.puma "WI, 00103" "The dwelling unit is located in WI, the NHGIS PUMA code is 00103" -in.puma "WI, 00200" "The dwelling unit is located in WI, the NHGIS PUMA code is 00200" -in.puma "WI, 00300" "The dwelling unit is located in WI, the NHGIS PUMA code is 00300" -in.puma "WI, 00600" "The dwelling unit is located in WI, the NHGIS PUMA code is 00600" -in.puma "WI, 00700" "The dwelling unit is located in WI, the NHGIS PUMA code is 00700" -in.puma "WI, 00800" "The dwelling unit is located in WI, the NHGIS PUMA code is 00800" -in.puma "WI, 00900" "The dwelling unit is located in WI, the NHGIS PUMA code is 00900" -in.puma "WI, 01000" "The dwelling unit is located in WI, the NHGIS PUMA code is 01000" -in.puma "WI, 01001" "The dwelling unit is located in WI, the NHGIS PUMA code is 01001" -in.puma "WI, 01300" "The dwelling unit is located in WI, the NHGIS PUMA code is 01300" -in.puma "WI, 01301" "The dwelling unit is located in WI, the NHGIS PUMA code is 01301" -in.puma "WI, 01400" "The dwelling unit is located in WI, the NHGIS PUMA code is 01400" -in.puma "WI, 01401" "The dwelling unit is located in WI, the NHGIS PUMA code is 01401" -in.puma "WI, 01500" "The dwelling unit is located in WI, the NHGIS PUMA code is 01500" -in.puma "WI, 01501" "The dwelling unit is located in WI, the NHGIS PUMA code is 01501" -in.puma "WI, 01600" "The dwelling unit is located in WI, the NHGIS PUMA code is 01600" -in.puma "WI, 01601" "The dwelling unit is located in WI, the NHGIS PUMA code is 01601" -in.puma "WI, 02400" "The dwelling unit is located in WI, the NHGIS PUMA code is 02400" -in.puma "WI, 02500" "The dwelling unit is located in WI, the NHGIS PUMA code is 02500" -in.puma "WI, 10000" "The dwelling unit is located in WI, the NHGIS PUMA code is 10000" -in.puma "WI, 20000" "The dwelling unit is located in WI, the NHGIS PUMA code is 20000" -in.puma "WI, 30000" "The dwelling unit is located in WI, the NHGIS PUMA code is 30000" -in.puma "WI, 40101" "The dwelling unit is located in WI, the NHGIS PUMA code is 40101" -in.puma "WI, 40301" "The dwelling unit is located in WI, the NHGIS PUMA code is 40301" -in.puma "WI, 40701" "The dwelling unit is located in WI, the NHGIS PUMA code is 40701" -in.puma "WI, 41001" "The dwelling unit is located in WI, the NHGIS PUMA code is 41001" -in.puma "WI, 41002" "The dwelling unit is located in WI, the NHGIS PUMA code is 41002" -in.puma "WI, 41003" "The dwelling unit is located in WI, the NHGIS PUMA code is 41003" -in.puma "WI, 41004" "The dwelling unit is located in WI, the NHGIS PUMA code is 41004" -in.puma "WI, 41005" "The dwelling unit is located in WI, the NHGIS PUMA code is 41005" -in.puma "WI, 50000" "The dwelling unit is located in WI, the NHGIS PUMA code is 50000" -in.puma "WI, 55101" "The dwelling unit is located in WI, the NHGIS PUMA code is 55101" -in.puma "WI, 55102" "The dwelling unit is located in WI, the NHGIS PUMA code is 55102" -in.puma "WI, 55103" "The dwelling unit is located in WI, the NHGIS PUMA code is 55103" -in.puma "WI, 70101" "The dwelling unit is located in WI, the NHGIS PUMA code is 70101" -in.puma "WI, 70201" "The dwelling unit is located in WI, the NHGIS PUMA code is 70201" -in.puma "WI, 70301" "The dwelling unit is located in WI, the NHGIS PUMA code is 70301" -in.puma "WV, 00100" "The dwelling unit is located in WV, the NHGIS PUMA code is 00100" -in.puma "WV, 00200" "The dwelling unit is located in WV, the NHGIS PUMA code is 00200" -in.puma "WV, 00300" "The dwelling unit is located in WV, the NHGIS PUMA code is 00300" -in.puma "WV, 00400" "The dwelling unit is located in WV, the NHGIS PUMA code is 00400" -in.puma "WV, 00500" "The dwelling unit is located in WV, the NHGIS PUMA code is 00500" -in.puma "WV, 00600" "The dwelling unit is located in WV, the NHGIS PUMA code is 00600" -in.puma "WV, 00700" "The dwelling unit is located in WV, the NHGIS PUMA code is 00700" -in.puma "WV, 00800" "The dwelling unit is located in WV, the NHGIS PUMA code is 00800" -in.puma "WV, 00900" "The dwelling unit is located in WV, the NHGIS PUMA code is 00900" -in.puma "WV, 01000" "The dwelling unit is located in WV, the NHGIS PUMA code is 01000" -in.puma "WV, 01100" "The dwelling unit is located in WV, the NHGIS PUMA code is 01100" -in.puma "WV, 01200" "The dwelling unit is located in WV, the NHGIS PUMA code is 01200" -in.puma "WV, 01300" "The dwelling unit is located in WV, the NHGIS PUMA code is 01300" -in.puma "WY, 00100" "The dwelling unit is located in WY, the NHGIS PUMA code is 00100" -in.puma "WY, 00200" "The dwelling unit is located in WY, the NHGIS PUMA code is 00200" -in.puma "WY, 00300" "The dwelling unit is located in WY, the NHGIS PUMA code is 00300" -in.puma "WY, 00400" "The dwelling unit is located in WY, the NHGIS PUMA code is 00400" -in.puma "WY, 00500" "The dwelling unit is located in WY, the NHGIS PUMA code is 00500" -in.puma_metro_status "In metro area, not/partially in principal city" "PUMA is in metro area, but not principal city" -in.puma_metro_status "In metro area, principal city" "PUMA is in metro area, and in principal city" -in.puma_metro_status Not/partially in metro area PUMA is not in a full or partial metro area -in.pv_orientation East PV system is oriented to the east -in.pv_orientation None No PV system -in.pv_orientation North PV system is oriented to the north -in.pv_orientation Northeast PV system is oriented to the northeast -in.pv_orientation Northwest PV system is oriented to the northwest -in.pv_orientation South PV system is oriented to the south -in.pv_orientation Southeast PV system is oriented to the southeast -in.pv_orientation Southwest PV system is oriented to the southwest -in.pv_orientation West PV system is oriented to the west -in.pv_system_size 1.0 kWDC 1.0 kW PV system -in.pv_system_size 11.0 kWDC 11.0 kW PV system -in.pv_system_size 13.0 kWDC 13.0 kW PV system -in.pv_system_size 3.0 kWDC 3.0 kW PV system -in.pv_system_size 5.0 kWDC 5.0 kW PV system -in.pv_system_size 7.0 kWDC 7.0 kW PV system -in.pv_system_size 9.0 kWDC 9.0 kW PV system -in.pv_system_size None No PV system -in.radiant_barrier No Attic does not have a radiant barrier -in.radiant_barrier None Attic radiant barier is not applicable -in.range_spot_vent_hour Hour0 "Range spot ventilation occurs at hour 0, and lasts for 1 hour" -in.range_spot_vent_hour Hour1 "Range spot ventilation occurs at hour 1, and lasts for 1 hour" -in.range_spot_vent_hour Hour10 "Range spot ventilation occurs at hour 10, and lasts for 1 hour" -in.range_spot_vent_hour Hour11 "Range spot ventilation occurs at hour 11, and lasts for 1 hour" -in.range_spot_vent_hour Hour12 "Range spot ventilation occurs at hour 12, and lasts for 1 hour" -in.range_spot_vent_hour Hour13 "Range spot ventilation occurs at hour 13, and lasts for 1 hour" -in.range_spot_vent_hour Hour14 "Range spot ventilation occurs at hour 14, and lasts for 1 hour" -in.range_spot_vent_hour Hour15 "Range spot ventilation occurs at hour 15, and lasts for 1 hour" -in.range_spot_vent_hour Hour16 "Range spot ventilation occurs at hour 16, and lasts for 1 hour" -in.range_spot_vent_hour Hour17 "Range spot ventilation occurs at hour 17, and lasts for 1 hour" -in.range_spot_vent_hour Hour18 "Range spot ventilation occurs at hour 18, and lasts for 1 hour" -in.range_spot_vent_hour Hour19 "Range spot ventilation occurs at hour 19, and lasts for 1 hour" -in.range_spot_vent_hour Hour2 "Range spot ventilation occurs at hour 2, and lasts for 1 hour" -in.range_spot_vent_hour Hour20 "Range spot ventilation occurs at hour 20, and lasts for 1 hour" -in.range_spot_vent_hour Hour21 "Range spot ventilation occurs at hour 21, and lasts for 1 hour" -in.range_spot_vent_hour Hour22 "Range spot ventilation occurs at hour 22, and lasts for 1 hour" -in.range_spot_vent_hour Hour23 "Range spot ventilation occurs at hour 23, and lasts for 1 hour" -in.range_spot_vent_hour Hour3 "Range spot ventilation occurs at hour 3, and lasts for 1 hour" -in.range_spot_vent_hour Hour4 "Range spot ventilation occurs at hour 4, and lasts for 1 hour" -in.range_spot_vent_hour Hour5 "Range spot ventilation occurs at hour 5, and lasts for 1 hour" -in.range_spot_vent_hour Hour6 "Range spot ventilation occurs at hour 6, and lasts for 1 hour" -in.range_spot_vent_hour Hour7 "Range spot ventilation occurs at hour 7, and lasts for 1 hour" -in.range_spot_vent_hour Hour8 "Range spot ventilation occurs at hour 8, and lasts for 1 hour" -in.range_spot_vent_hour Hour9 "Range spot ventilation occurs at hour 9, and lasts for 1 hour" -in.reeds_balancing_area 1 Balancing area 1 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 2 Balancing area 2 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 3 Balancing area 3 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 4 Balancing area 4 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 5 Balancing area 5 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 6 Balancing area 6 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 7 Balancing area 7 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 8 Balancing area 8 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 9 Balancing area 9 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 10 Balancing area 10 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 11 Balancing area 11 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 12 Balancing area 12 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 13 Balancing area 13 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 14 Balancing area 14 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 15 Balancing area 15 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 16 Balancing area 16 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 17 Balancing area 17 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 18 Balancing area 18 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 19 Balancing area 19 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 20 Balancing area 20 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 21 Balancing area 21 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 22 Balancing area 22 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 23 Balancing area 23 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 24 Balancing area 24 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 25 Balancing area 25 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 26 Balancing area 26 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 27 Balancing area 27 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 28 Balancing area 28 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 29 Balancing area 29 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 30 Balancing area 30 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 31 Balancing area 31 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 32 Balancing area 32 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 33 Balancing area 33 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 34 Balancing area 34 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 35 Balancing area 35 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 36 Balancing area 36 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 37 Balancing area 37 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 38 Balancing area 38 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 39 Balancing area 39 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 40 Balancing area 40 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 41 Balancing area 41 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 42 Balancing area 42 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 43 Balancing area 43 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 44 Balancing area 44 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 45 Balancing area 45 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 46 Balancing area 46 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 47 Balancing area 47 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 48 Balancing area 48 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 49 Balancing area 49 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 50 Balancing area 50 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 51 Balancing area 51 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 52 Balancing area 52 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 53 Balancing area 53 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 54 Balancing area 54 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 55 Balancing area 55 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 56 Balancing area 56 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 57 Balancing area 57 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 58 Balancing area 58 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 59 Balancing area 59 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 60 Balancing area 60 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 61 Balancing area 61 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 62 Balancing area 62 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 63 Balancing area 63 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 64 Balancing area 64 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 65 Balancing area 65 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 66 Balancing area 66 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 67 Balancing area 67 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 68 Balancing area 68 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 69 Balancing area 69 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 70 Balancing area 70 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 71 Balancing area 71 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 72 Balancing area 72 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 73 Balancing area 73 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 74 Balancing area 74 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 75 Balancing area 75 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 76 Balancing area 76 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 77 Balancing area 77 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 78 Balancing area 78 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 79 Balancing area 79 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 80 Balancing area 80 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 81 Balancing area 81 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 82 Balancing area 82 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 83 Balancing area 83 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 84 Balancing area 84 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 85 Balancing area 85 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 86 Balancing area 86 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 87 Balancing area 87 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 88 Balancing area 88 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 89 Balancing area 89 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 90 Balancing area 90 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 91 Balancing area 91 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 92 Balancing area 92 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 93 Balancing area 93 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 94 Balancing area 94 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 95 Balancing area 95 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 96 Balancing area 96 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 97 Balancing area 97 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 98 Balancing area 98 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 99 Balancing area 99 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 100 Balancing area 100 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 101 Balancing area 101 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 102 Balancing area 102 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 103 Balancing area 103 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 104 Balancing area 104 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 105 Balancing area 105 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 106 Balancing area 106 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 107 Balancing area 107 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 108 Balancing area 108 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 109 Balancing area 109 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 110 Balancing area 110 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 111 Balancing area 111 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 112 Balancing area 112 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 113 Balancing area 113 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 114 Balancing area 114 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 115 Balancing area 115 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 116 Balancing area 116 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 117 Balancing area 117 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 118 Balancing area 118 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 119 Balancing area 119 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 120 Balancing area 120 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 121 Balancing area 121 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 122 Balancing area 122 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 123 Balancing area 123 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 124 Balancing area 124 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 125 Balancing area 125 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 126 Balancing area 126 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 127 Balancing area 127 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 128 Balancing area 128 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 129 Balancing area 129 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 130 Balancing area 130 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 131 Balancing area 131 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 132 Balancing area 132 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 133 Balancing area 133 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area 134 Balancing area 134 of the Regional Energy Deployment System Model Version 2019 -in.reeds_balancing_area None No information on the balancing area of the Regional Energy Deployment System Model -in.refrigerator EF 10.2 Refrigerator with energy factor 10.2 -in.refrigerator EF 10.5 Refrigerator with energy factor 10.5 -in.refrigerator EF 15.9 Refrigerator with energy factor 15.9 -in.refrigerator EF 17.6 Refrigerator with energy factor 17.6 -in.refrigerator EF 19.9 Refrigerator with energy factor 19.9 -in.refrigerator EF 21.9 Refrigerator with energy factor 21.9 -in.refrigerator EF 6.7 Refrigerator with energy factor 6.7 -in.refrigerator None No refrigerator -in.refrigerator_usage_level 100% Usage Refrigerator is at 100% the national average -in.refrigerator_usage_level 105% Usage Refrigerator is at 100% the national average -in.refrigerator_usage_level 95% Usage Refrigerator is at 100% the national average -in.representative_income 1 Representative total house income in the dwelling unit is $1 -in.representative_income 4 Representative total house income in the dwelling unit is $4 -in.representative_income 10 Representative total house income in the dwelling unit is $10 -in.representative_income 11 Representative total house income in the dwelling unit is $11 -in.representative_income 20 Representative total house income in the dwelling unit is $20 -in.representative_income 21 Representative total house income in the dwelling unit is $21 -in.representative_income 22 Representative total house income in the dwelling unit is $22 -in.representative_income 30 Representative total house income in the dwelling unit is $30 -in.representative_income 31 Representative total house income in the dwelling unit is $31 -in.representative_income 32 Representative total house income in the dwelling unit is $32 -in.representative_income 40 Representative total house income in the dwelling unit is $40 -in.representative_income 42 Representative total house income in the dwelling unit is $42 -in.representative_income 43 Representative total house income in the dwelling unit is $43 -in.representative_income 53 Representative total house income in the dwelling unit is $53 -in.representative_income 61 Representative total house income in the dwelling unit is $61 -in.representative_income 62 Representative total house income in the dwelling unit is $62 -in.representative_income 64 Representative total house income in the dwelling unit is $64 -in.representative_income 65 Representative total house income in the dwelling unit is $65 -in.representative_income 71 Representative total house income in the dwelling unit is $71 -in.representative_income 72 Representative total house income in the dwelling unit is $72 -in.representative_income 74 Representative total house income in the dwelling unit is $74 -in.representative_income 82 Representative total house income in the dwelling unit is $82 -in.representative_income 86 Representative total house income in the dwelling unit is $86 -in.representative_income 91 Representative total house income in the dwelling unit is $91 -in.representative_income 95 Representative total house income in the dwelling unit is $95 -in.representative_income 97 Representative total house income in the dwelling unit is $97 -in.representative_income 101 Representative total house income in the dwelling unit is $101 -in.representative_income 103 Representative total house income in the dwelling unit is $103 -in.representative_income 105 Representative total house income in the dwelling unit is $105 -in.representative_income 108 Representative total house income in the dwelling unit is $108 -in.representative_income 121 Representative total house income in the dwelling unit is $121 -in.representative_income 124 Representative total house income in the dwelling unit is $124 -in.representative_income 126 Representative total house income in the dwelling unit is $126 -in.representative_income 129 Representative total house income in the dwelling unit is $129 -in.representative_income 134 Representative total house income in the dwelling unit is $134 -in.representative_income 138 Representative total house income in the dwelling unit is $138 -in.representative_income 139 Representative total house income in the dwelling unit is $139 -in.representative_income 141 Representative total house income in the dwelling unit is $141 -in.representative_income 145 Representative total house income in the dwelling unit is $145 -in.representative_income 151 Representative total house income in the dwelling unit is $151 -in.representative_income 152 Representative total house income in the dwelling unit is $152 -in.representative_income 155 Representative total house income in the dwelling unit is $155 -in.representative_income 161 Representative total house income in the dwelling unit is $161 -in.representative_income 162 Representative total house income in the dwelling unit is $162 -in.representative_income 165 Representative total house income in the dwelling unit is $165 -in.representative_income 169 Representative total house income in the dwelling unit is $169 -in.representative_income 171 Representative total house income in the dwelling unit is $171 -in.representative_income 173 Representative total house income in the dwelling unit is $173 -in.representative_income 179 Representative total house income in the dwelling unit is $179 -in.representative_income 182 Representative total house income in the dwelling unit is $182 -in.representative_income 183 Representative total house income in the dwelling unit is $183 -in.representative_income 185 Representative total house income in the dwelling unit is $185 -in.representative_income 192 Representative total house income in the dwelling unit is $192 -in.representative_income 194 Representative total house income in the dwelling unit is $194 -in.representative_income 196 Representative total house income in the dwelling unit is $196 -in.representative_income 200 Representative total house income in the dwelling unit is $200 -in.representative_income 202 Representative total house income in the dwelling unit is $202 -in.representative_income 204 Representative total house income in the dwelling unit is $204 -in.representative_income 205 Representative total house income in the dwelling unit is $205 -in.representative_income 207 Representative total house income in the dwelling unit is $207 -in.representative_income 211 Representative total house income in the dwelling unit is $211 -in.representative_income 212 Representative total house income in the dwelling unit is $212 -in.representative_income 215 Representative total house income in the dwelling unit is $215 -in.representative_income 216 Representative total house income in the dwelling unit is $216 -in.representative_income 221 Representative total house income in the dwelling unit is $221 -in.representative_income 222 Representative total house income in the dwelling unit is $222 -in.representative_income 225 Representative total house income in the dwelling unit is $225 -in.representative_income 232 Representative total house income in the dwelling unit is $232 -in.representative_income 236 Representative total house income in the dwelling unit is $236 -in.representative_income 242 Representative total house income in the dwelling unit is $242 -in.representative_income 243 Representative total house income in the dwelling unit is $243 -in.representative_income 247 Representative total house income in the dwelling unit is $247 -in.representative_income 248 Representative total house income in the dwelling unit is $248 -in.representative_income 253 Representative total house income in the dwelling unit is $253 -in.representative_income 258 Representative total house income in the dwelling unit is $258 -in.representative_income 259 Representative total house income in the dwelling unit is $259 -in.representative_income 263 Representative total house income in the dwelling unit is $263 -in.representative_income 264 Representative total house income in the dwelling unit is $264 -in.representative_income 268 Representative total house income in the dwelling unit is $268 -in.representative_income 270 Representative total house income in the dwelling unit is $270 -in.representative_income 279 Representative total house income in the dwelling unit is $279 -in.representative_income 281 Representative total house income in the dwelling unit is $281 -in.representative_income 283 Representative total house income in the dwelling unit is $283 -in.representative_income 289 Representative total house income in the dwelling unit is $289 -in.representative_income 290 Representative total house income in the dwelling unit is $290 -in.representative_income 293 Representative total house income in the dwelling unit is $293 -in.representative_income 295 Representative total house income in the dwelling unit is $295 -in.representative_income 299 Representative total house income in the dwelling unit is $299 -in.representative_income 300 Representative total house income in the dwelling unit is $300 -in.representative_income 303 Representative total house income in the dwelling unit is $303 -in.representative_income 309 Representative total house income in the dwelling unit is $309 -in.representative_income 311 Representative total house income in the dwelling unit is $311 -in.representative_income 313 Representative total house income in the dwelling unit is $313 -in.representative_income 317 Representative total house income in the dwelling unit is $317 -in.representative_income 320 Representative total house income in the dwelling unit is $320 -in.representative_income 322 Representative total house income in the dwelling unit is $322 -in.representative_income 324 Representative total house income in the dwelling unit is $324 -in.representative_income 330 Representative total house income in the dwelling unit is $330 -in.representative_income 333 Representative total house income in the dwelling unit is $333 -in.representative_income 343 Representative total house income in the dwelling unit is $343 -in.representative_income 344 Representative total house income in the dwelling unit is $344 -in.representative_income 345 Representative total house income in the dwelling unit is $345 -in.representative_income 348 Representative total house income in the dwelling unit is $348 -in.representative_income 351 Representative total house income in the dwelling unit is $351 -in.representative_income 354 Representative total house income in the dwelling unit is $354 -in.representative_income 356 Representative total house income in the dwelling unit is $356 -in.representative_income 361 Representative total house income in the dwelling unit is $361 -in.representative_income 364 Representative total house income in the dwelling unit is $364 -in.representative_income 369 Representative total house income in the dwelling unit is $369 -in.representative_income 372 Representative total house income in the dwelling unit is $372 -in.representative_income 374 Representative total house income in the dwelling unit is $374 -in.representative_income 376 Representative total house income in the dwelling unit is $376 -in.representative_income 378 Representative total house income in the dwelling unit is $378 -in.representative_income 379 Representative total house income in the dwelling unit is $379 -in.representative_income 382 Representative total house income in the dwelling unit is $382 -in.representative_income 387 Representative total house income in the dwelling unit is $387 -in.representative_income 388 Representative total house income in the dwelling unit is $388 -in.representative_income 394 Representative total house income in the dwelling unit is $394 -in.representative_income 400 Representative total house income in the dwelling unit is $400 -in.representative_income 402 Representative total house income in the dwelling unit is $402 -in.representative_income 404 Representative total house income in the dwelling unit is $404 -in.representative_income 406 Representative total house income in the dwelling unit is $406 -in.representative_income 411 Representative total house income in the dwelling unit is $411 -in.representative_income 412 Representative total house income in the dwelling unit is $412 -in.representative_income 418 Representative total house income in the dwelling unit is $418 -in.representative_income 422 Representative total house income in the dwelling unit is $422 -in.representative_income 424 Representative total house income in the dwelling unit is $424 -in.representative_income 429 Representative total house income in the dwelling unit is $429 -in.representative_income 430 Representative total house income in the dwelling unit is $430 -in.representative_income 433 Representative total house income in the dwelling unit is $433 -in.representative_income 434 Representative total house income in the dwelling unit is $434 -in.representative_income 443 Representative total house income in the dwelling unit is $443 -in.representative_income 444 Representative total house income in the dwelling unit is $444 -in.representative_income 450 Representative total house income in the dwelling unit is $450 -in.representative_income 454 Representative total house income in the dwelling unit is $454 -in.representative_income 455 Representative total house income in the dwelling unit is $455 -in.representative_income 464 Representative total house income in the dwelling unit is $464 -in.representative_income 465 Representative total house income in the dwelling unit is $465 -in.representative_income 473 Representative total house income in the dwelling unit is $473 -in.representative_income 474 Representative total house income in the dwelling unit is $474 -in.representative_income 483 Representative total house income in the dwelling unit is $483 -in.representative_income 487 Representative total house income in the dwelling unit is $487 -in.representative_income 495 Representative total house income in the dwelling unit is $495 -in.representative_income 505 Representative total house income in the dwelling unit is $505 -in.representative_income 506 Representative total house income in the dwelling unit is $506 -in.representative_income 507 Representative total house income in the dwelling unit is $507 -in.representative_income 516 Representative total house income in the dwelling unit is $516 -in.representative_income 519 Representative total house income in the dwelling unit is $519 -in.representative_income 526 Representative total house income in the dwelling unit is $526 -in.representative_income 527 Representative total house income in the dwelling unit is $527 -in.representative_income 532 Representative total house income in the dwelling unit is $532 -in.representative_income 536 Representative total house income in the dwelling unit is $536 -in.representative_income 537 Representative total house income in the dwelling unit is $537 -in.representative_income 541 Representative total house income in the dwelling unit is $541 -in.representative_income 545 Representative total house income in the dwelling unit is $545 -in.representative_income 547 Representative total house income in the dwelling unit is $547 -in.representative_income 551 Representative total house income in the dwelling unit is $551 -in.representative_income 556 Representative total house income in the dwelling unit is $556 -in.representative_income 557 Representative total house income in the dwelling unit is $557 -in.representative_income 558 Representative total house income in the dwelling unit is $558 -in.representative_income 562 Representative total house income in the dwelling unit is $562 -in.representative_income 569 Representative total house income in the dwelling unit is $569 -in.representative_income 574 Representative total house income in the dwelling unit is $574 -in.representative_income 577 Representative total house income in the dwelling unit is $577 -in.representative_income 579 Representative total house income in the dwelling unit is $579 -in.representative_income 590 Representative total house income in the dwelling unit is $590 -in.representative_income 591 Representative total house income in the dwelling unit is $591 -in.representative_income 595 Representative total house income in the dwelling unit is $595 -in.representative_income 596 Representative total house income in the dwelling unit is $596 -in.representative_income 599 Representative total house income in the dwelling unit is $599 -in.representative_income 605 Representative total house income in the dwelling unit is $605 -in.representative_income 606 Representative total house income in the dwelling unit is $606 -in.representative_income 609 Representative total house income in the dwelling unit is $609 -in.representative_income 612 Representative total house income in the dwelling unit is $612 -in.representative_income 616 Representative total house income in the dwelling unit is $616 -in.representative_income 619 Representative total house income in the dwelling unit is $619 -in.representative_income 624 Representative total house income in the dwelling unit is $624 -in.representative_income 626 Representative total house income in the dwelling unit is $626 -in.representative_income 633 Representative total house income in the dwelling unit is $633 -in.representative_income 636 Representative total house income in the dwelling unit is $636 -in.representative_income 639 Representative total house income in the dwelling unit is $639 -in.representative_income 643 Representative total house income in the dwelling unit is $643 -in.representative_income 644 Representative total house income in the dwelling unit is $644 -in.representative_income 646 Representative total house income in the dwelling unit is $646 -in.representative_income 648 Representative total house income in the dwelling unit is $648 -in.representative_income 654 Representative total house income in the dwelling unit is $654 -in.representative_income 657 Representative total house income in the dwelling unit is $657 -in.representative_income 659 Representative total house income in the dwelling unit is $659 -in.representative_income 666 Representative total house income in the dwelling unit is $666 -in.representative_income 671 Representative total house income in the dwelling unit is $671 -in.representative_income 677 Representative total house income in the dwelling unit is $677 -in.representative_income 681 Representative total house income in the dwelling unit is $681 -in.representative_income 686 Representative total house income in the dwelling unit is $686 -in.representative_income 687 Representative total house income in the dwelling unit is $687 -in.representative_income 691 Representative total house income in the dwelling unit is $691 -in.representative_income 692 Representative total house income in the dwelling unit is $692 -in.representative_income 696 Representative total house income in the dwelling unit is $696 -in.representative_income 697 Representative total house income in the dwelling unit is $697 -in.representative_income 701 Representative total house income in the dwelling unit is $701 -in.representative_income 702 Representative total house income in the dwelling unit is $702 -in.representative_income 707 Representative total house income in the dwelling unit is $707 -in.representative_income 708 Representative total house income in the dwelling unit is $708 -in.representative_income 709 Representative total house income in the dwelling unit is $709 -in.representative_income 712 Representative total house income in the dwelling unit is $712 -in.representative_income 717 Representative total house income in the dwelling unit is $717 -in.representative_income 719 Representative total house income in the dwelling unit is $719 -in.representative_income 722 Representative total house income in the dwelling unit is $722 -in.representative_income 724 Representative total house income in the dwelling unit is $724 -in.representative_income 728 Representative total house income in the dwelling unit is $728 -in.representative_income 729 Representative total house income in the dwelling unit is $729 -in.representative_income 735 Representative total house income in the dwelling unit is $735 -in.representative_income 738 Representative total house income in the dwelling unit is $738 -in.representative_income 741 Representative total house income in the dwelling unit is $741 -in.representative_income 748 Representative total house income in the dwelling unit is $748 -in.representative_income 752 Representative total house income in the dwelling unit is $752 -in.representative_income 756 Representative total house income in the dwelling unit is $756 -in.representative_income 758 Representative total house income in the dwelling unit is $758 -in.representative_income 759 Representative total house income in the dwelling unit is $759 -in.representative_income 762 Representative total house income in the dwelling unit is $762 -in.representative_income 770 Representative total house income in the dwelling unit is $770 -in.representative_income 773 Representative total house income in the dwelling unit is $773 -in.representative_income 774 Representative total house income in the dwelling unit is $774 -in.representative_income 778 Representative total house income in the dwelling unit is $778 -in.representative_income 781 Representative total house income in the dwelling unit is $781 -in.representative_income 784 Representative total house income in the dwelling unit is $784 -in.representative_income 789 Representative total house income in the dwelling unit is $789 -in.representative_income 791 Representative total house income in the dwelling unit is $791 -in.representative_income 794 Representative total house income in the dwelling unit is $794 -in.representative_income 798 Representative total house income in the dwelling unit is $798 -in.representative_income 800 Representative total house income in the dwelling unit is $800 -in.representative_income 802 Representative total house income in the dwelling unit is $802 -in.representative_income 804 Representative total house income in the dwelling unit is $804 -in.representative_income 805 Representative total house income in the dwelling unit is $805 -in.representative_income 808 Representative total house income in the dwelling unit is $808 -in.representative_income 810 Representative total house income in the dwelling unit is $810 -in.representative_income 815 Representative total house income in the dwelling unit is $815 -in.representative_income 816 Representative total house income in the dwelling unit is $816 -in.representative_income 818 Representative total house income in the dwelling unit is $818 -in.representative_income 822 Representative total house income in the dwelling unit is $822 -in.representative_income 825 Representative total house income in the dwelling unit is $825 -in.representative_income 826 Representative total house income in the dwelling unit is $826 -in.representative_income 832 Representative total house income in the dwelling unit is $832 -in.representative_income 833 Representative total house income in the dwelling unit is $833 -in.representative_income 836 Representative total house income in the dwelling unit is $836 -in.representative_income 838 Representative total house income in the dwelling unit is $838 -in.representative_income 843 Representative total house income in the dwelling unit is $843 -in.representative_income 849 Representative total house income in the dwelling unit is $849 -in.representative_income 853 Representative total house income in the dwelling unit is $853 -in.representative_income 856 Representative total house income in the dwelling unit is $856 -in.representative_income 858 Representative total house income in the dwelling unit is $858 -in.representative_income 859 Representative total house income in the dwelling unit is $859 -in.representative_income 864 Representative total house income in the dwelling unit is $864 -in.representative_income 865 Representative total house income in the dwelling unit is $865 -in.representative_income 869 Representative total house income in the dwelling unit is $869 -in.representative_income 876 Representative total house income in the dwelling unit is $876 -in.representative_income 879 Representative total house income in the dwelling unit is $879 -in.representative_income 881 Representative total house income in the dwelling unit is $881 -in.representative_income 886 Representative total house income in the dwelling unit is $886 -in.representative_income 891 Representative total house income in the dwelling unit is $891 -in.representative_income 896 Representative total house income in the dwelling unit is $896 -in.representative_income 897 Representative total house income in the dwelling unit is $897 -in.representative_income 899 Representative total house income in the dwelling unit is $899 -in.representative_income 902 Representative total house income in the dwelling unit is $902 -in.representative_income 907 Representative total house income in the dwelling unit is $907 -in.representative_income 908 Representative total house income in the dwelling unit is $908 -in.representative_income 909 Representative total house income in the dwelling unit is $909 -in.representative_income 913 Representative total house income in the dwelling unit is $913 -in.representative_income 918 Representative total house income in the dwelling unit is $918 -in.representative_income 919 Representative total house income in the dwelling unit is $919 -in.representative_income 923 Representative total house income in the dwelling unit is $923 -in.representative_income 928 Representative total house income in the dwelling unit is $928 -in.representative_income 929 Representative total house income in the dwelling unit is $929 -in.representative_income 934 Representative total house income in the dwelling unit is $934 -in.representative_income 938 Representative total house income in the dwelling unit is $938 -in.representative_income 940 Representative total house income in the dwelling unit is $940 -in.representative_income 945 Representative total house income in the dwelling unit is $945 -in.representative_income 949 Representative total house income in the dwelling unit is $949 -in.representative_income 950 Representative total house income in the dwelling unit is $950 -in.representative_income 951 Representative total house income in the dwelling unit is $951 -in.representative_income 955 Representative total house income in the dwelling unit is $955 -in.representative_income 959 Representative total house income in the dwelling unit is $959 -in.representative_income 960 Representative total house income in the dwelling unit is $960 -in.representative_income 966 Representative total house income in the dwelling unit is $966 -in.representative_income 970 Representative total house income in the dwelling unit is $970 -in.representative_income 972 Representative total house income in the dwelling unit is $972 -in.representative_income 980 Representative total house income in the dwelling unit is $980 -in.representative_income 981 Representative total house income in the dwelling unit is $981 -in.representative_income 983 Representative total house income in the dwelling unit is $983 -in.representative_income 987 Representative total house income in the dwelling unit is $987 -in.representative_income 990 Representative total house income in the dwelling unit is $990 -in.representative_income 991 Representative total house income in the dwelling unit is $991 -in.representative_income 994 Representative total house income in the dwelling unit is $994 -in.representative_income 999 Representative total house income in the dwelling unit is $999 -in.representative_income 1000 Representative total house income in the dwelling unit is $1000 -in.representative_income 1001 Representative total house income in the dwelling unit is $1001 -in.representative_income 1002 Representative total house income in the dwelling unit is $1002 -in.representative_income 1005 Representative total house income in the dwelling unit is $1005 -in.representative_income 1009 Representative total house income in the dwelling unit is $1009 -in.representative_income 1010 Representative total house income in the dwelling unit is $1010 -in.representative_income 1011 Representative total house income in the dwelling unit is $1011 -in.representative_income 1012 Representative total house income in the dwelling unit is $1012 -in.representative_income 1015 Representative total house income in the dwelling unit is $1015 -in.representative_income 1016 Representative total house income in the dwelling unit is $1016 -in.representative_income 1020 Representative total house income in the dwelling unit is $1020 -in.representative_income 1021 Representative total house income in the dwelling unit is $1021 -in.representative_income 1023 Representative total house income in the dwelling unit is $1023 -in.representative_income 1026 Representative total house income in the dwelling unit is $1026 -in.representative_income 1031 Representative total house income in the dwelling unit is $1031 -in.representative_income 1041 Representative total house income in the dwelling unit is $1041 -in.representative_income 1048 Representative total house income in the dwelling unit is $1048 -in.representative_income 1052 Representative total house income in the dwelling unit is $1052 -in.representative_income 1055 Representative total house income in the dwelling unit is $1055 -in.representative_income 1059 Representative total house income in the dwelling unit is $1059 -in.representative_income 1061 Representative total house income in the dwelling unit is $1061 -in.representative_income 1065 Representative total house income in the dwelling unit is $1065 -in.representative_income 1071 Representative total house income in the dwelling unit is $1071 -in.representative_income 1073 Representative total house income in the dwelling unit is $1073 -in.representative_income 1076 Representative total house income in the dwelling unit is $1076 -in.representative_income 1080 Representative total house income in the dwelling unit is $1080 -in.representative_income 1083 Representative total house income in the dwelling unit is $1083 -in.representative_income 1091 Representative total house income in the dwelling unit is $1091 -in.representative_income 1092 Representative total house income in the dwelling unit is $1092 -in.representative_income 1095 Representative total house income in the dwelling unit is $1095 -in.representative_income 1105 Representative total house income in the dwelling unit is $1105 -in.representative_income 1106 Representative total house income in the dwelling unit is $1106 -in.representative_income 1107 Representative total house income in the dwelling unit is $1107 -in.representative_income 1111 Representative total house income in the dwelling unit is $1111 -in.representative_income 1112 Representative total house income in the dwelling unit is $1112 -in.representative_income 1116 Representative total house income in the dwelling unit is $1116 -in.representative_income 1121 Representative total house income in the dwelling unit is $1121 -in.representative_income 1125 Representative total house income in the dwelling unit is $1125 -in.representative_income 1127 Representative total house income in the dwelling unit is $1127 -in.representative_income 1135 Representative total house income in the dwelling unit is $1135 -in.representative_income 1141 Representative total house income in the dwelling unit is $1141 -in.representative_income 1150 Representative total house income in the dwelling unit is $1150 -in.representative_income 1160 Representative total house income in the dwelling unit is $1160 -in.representative_income 1162 Representative total house income in the dwelling unit is $1162 -in.representative_income 1166 Representative total house income in the dwelling unit is $1166 -in.representative_income 1170 Representative total house income in the dwelling unit is $1170 -in.representative_income 1171 Representative total house income in the dwelling unit is $1171 -in.representative_income 1177 Representative total house income in the dwelling unit is $1177 -in.representative_income 1181 Representative total house income in the dwelling unit is $1181 -in.representative_income 1189 Representative total house income in the dwelling unit is $1189 -in.representative_income 1202 Representative total house income in the dwelling unit is $1202 -in.representative_income 1212 Representative total house income in the dwelling unit is $1212 -in.representative_income 1222 Representative total house income in the dwelling unit is $1222 -in.representative_income 1238 Representative total house income in the dwelling unit is $1238 -in.representative_income 1244 Representative total house income in the dwelling unit is $1244 -in.representative_income 1248 Representative total house income in the dwelling unit is $1248 -in.representative_income 1253 Representative total house income in the dwelling unit is $1253 -in.representative_income 1258 Representative total house income in the dwelling unit is $1258 -in.representative_income 1265 Representative total house income in the dwelling unit is $1265 -in.representative_income 1266 Representative total house income in the dwelling unit is $1266 -in.representative_income 1279 Representative total house income in the dwelling unit is $1279 -in.representative_income 1286 Representative total house income in the dwelling unit is $1286 -in.representative_income 1288 Representative total house income in the dwelling unit is $1288 -in.representative_income 1297 Representative total house income in the dwelling unit is $1297 -in.representative_income 1313 Representative total house income in the dwelling unit is $1313 -in.representative_income 1319 Representative total house income in the dwelling unit is $1319 -in.representative_income 1329 Representative total house income in the dwelling unit is $1329 -in.representative_income 1330 Representative total house income in the dwelling unit is $1330 -in.representative_income 1331 Representative total house income in the dwelling unit is $1331 -in.representative_income 1341 Representative total house income in the dwelling unit is $1341 -in.representative_income 1350 Representative total house income in the dwelling unit is $1350 -in.representative_income 1351 Representative total house income in the dwelling unit is $1351 -in.representative_income 1354 Representative total house income in the dwelling unit is $1354 -in.representative_income 1362 Representative total house income in the dwelling unit is $1362 -in.representative_income 1363 Representative total house income in the dwelling unit is $1363 -in.representative_income 1364 Representative total house income in the dwelling unit is $1364 -in.representative_income 1371 Representative total house income in the dwelling unit is $1371 -in.representative_income 1372 Representative total house income in the dwelling unit is $1372 -in.representative_income 1374 Representative total house income in the dwelling unit is $1374 -in.representative_income 1381 Representative total house income in the dwelling unit is $1381 -in.representative_income 1392 Representative total house income in the dwelling unit is $1392 -in.representative_income 1396 Representative total house income in the dwelling unit is $1396 -in.representative_income 1403 Representative total house income in the dwelling unit is $1403 -in.representative_income 1405 Representative total house income in the dwelling unit is $1405 -in.representative_income 1407 Representative total house income in the dwelling unit is $1407 -in.representative_income 1414 Representative total house income in the dwelling unit is $1414 -in.representative_income 1423 Representative total house income in the dwelling unit is $1423 -in.representative_income 1434 Representative total house income in the dwelling unit is $1434 -in.representative_income 1441 Representative total house income in the dwelling unit is $1441 -in.representative_income 1444 Representative total house income in the dwelling unit is $1444 -in.representative_income 1445 Representative total house income in the dwelling unit is $1445 -in.representative_income 1448 Representative total house income in the dwelling unit is $1448 -in.representative_income 1455 Representative total house income in the dwelling unit is $1455 -in.representative_income 1459 Representative total house income in the dwelling unit is $1459 -in.representative_income 1460 Representative total house income in the dwelling unit is $1460 -in.representative_income 1465 Representative total house income in the dwelling unit is $1465 -in.representative_income 1475 Representative total house income in the dwelling unit is $1475 -in.representative_income 1476 Representative total house income in the dwelling unit is $1476 -in.representative_income 1481 Representative total house income in the dwelling unit is $1481 -in.representative_income 1490 Representative total house income in the dwelling unit is $1490 -in.representative_income 1491 Representative total house income in the dwelling unit is $1491 -in.representative_income 1495 Representative total house income in the dwelling unit is $1495 -in.representative_income 1502 Representative total house income in the dwelling unit is $1502 -in.representative_income 1503 Representative total house income in the dwelling unit is $1503 -in.representative_income 1508 Representative total house income in the dwelling unit is $1508 -in.representative_income 1509 Representative total house income in the dwelling unit is $1509 -in.representative_income 1510 Representative total house income in the dwelling unit is $1510 -in.representative_income 1513 Representative total house income in the dwelling unit is $1513 -in.representative_income 1515 Representative total house income in the dwelling unit is $1515 -in.representative_income 1517 Representative total house income in the dwelling unit is $1517 -in.representative_income 1519 Representative total house income in the dwelling unit is $1519 -in.representative_income 1524 Representative total house income in the dwelling unit is $1524 -in.representative_income 1534 Representative total house income in the dwelling unit is $1534 -in.representative_income 1535 Representative total house income in the dwelling unit is $1535 -in.representative_income 1540 Representative total house income in the dwelling unit is $1540 -in.representative_income 1546 Representative total house income in the dwelling unit is $1546 -in.representative_income 1547 Representative total house income in the dwelling unit is $1547 -in.representative_income 1549 Representative total house income in the dwelling unit is $1549 -in.representative_income 1561 Representative total house income in the dwelling unit is $1561 -in.representative_income 1567 Representative total house income in the dwelling unit is $1567 -in.representative_income 1568 Representative total house income in the dwelling unit is $1568 -in.representative_income 1581 Representative total house income in the dwelling unit is $1581 -in.representative_income 1587 Representative total house income in the dwelling unit is $1587 -in.representative_income 1609 Representative total house income in the dwelling unit is $1609 -in.representative_income 1610 Representative total house income in the dwelling unit is $1610 -in.representative_income 1614 Representative total house income in the dwelling unit is $1614 -in.representative_income 1616 Representative total house income in the dwelling unit is $1616 -in.representative_income 1621 Representative total house income in the dwelling unit is $1621 -in.representative_income 1622 Representative total house income in the dwelling unit is $1622 -in.representative_income 1626 Representative total house income in the dwelling unit is $1626 -in.representative_income 1647 Representative total house income in the dwelling unit is $1647 -in.representative_income 1650 Representative total house income in the dwelling unit is $1650 -in.representative_income 1653 Representative total house income in the dwelling unit is $1653 -in.representative_income 1654 Representative total house income in the dwelling unit is $1654 -in.representative_income 1671 Representative total house income in the dwelling unit is $1671 -in.representative_income 1677 Representative total house income in the dwelling unit is $1677 -in.representative_income 1682 Representative total house income in the dwelling unit is $1682 -in.representative_income 1685 Representative total house income in the dwelling unit is $1685 -in.representative_income 1687 Representative total house income in the dwelling unit is $1687 -in.representative_income 1688 Representative total house income in the dwelling unit is $1688 -in.representative_income 1696 Representative total house income in the dwelling unit is $1696 -in.representative_income 1697 Representative total house income in the dwelling unit is $1697 -in.representative_income 1702 Representative total house income in the dwelling unit is $1702 -in.representative_income 1707 Representative total house income in the dwelling unit is $1707 -in.representative_income 1717 Representative total house income in the dwelling unit is $1717 -in.representative_income 1718 Representative total house income in the dwelling unit is $1718 -in.representative_income 1729 Representative total house income in the dwelling unit is $1729 -in.representative_income 1732 Representative total house income in the dwelling unit is $1732 -in.representative_income 1737 Representative total house income in the dwelling unit is $1737 -in.representative_income 1739 Representative total house income in the dwelling unit is $1739 -in.representative_income 1740 Representative total house income in the dwelling unit is $1740 -in.representative_income 1754 Representative total house income in the dwelling unit is $1754 -in.representative_income 1764 Representative total house income in the dwelling unit is $1764 -in.representative_income 1772 Representative total house income in the dwelling unit is $1772 -in.representative_income 1778 Representative total house income in the dwelling unit is $1778 -in.representative_income 1783 Representative total house income in the dwelling unit is $1783 -in.representative_income 1784 Representative total house income in the dwelling unit is $1784 -in.representative_income 1793 Representative total house income in the dwelling unit is $1793 -in.representative_income 1804 Representative total house income in the dwelling unit is $1804 -in.representative_income 1805 Representative total house income in the dwelling unit is $1805 -in.representative_income 1814 Representative total house income in the dwelling unit is $1814 -in.representative_income 1815 Representative total house income in the dwelling unit is $1815 -in.representative_income 1818 Representative total house income in the dwelling unit is $1818 -in.representative_income 1825 Representative total house income in the dwelling unit is $1825 -in.representative_income 1835 Representative total house income in the dwelling unit is $1835 -in.representative_income 1836 Representative total house income in the dwelling unit is $1836 -in.representative_income 1838 Representative total house income in the dwelling unit is $1838 -in.representative_income 1845 Representative total house income in the dwelling unit is $1845 -in.representative_income 1857 Representative total house income in the dwelling unit is $1857 -in.representative_income 1858 Representative total house income in the dwelling unit is $1858 -in.representative_income 1868 Representative total house income in the dwelling unit is $1868 -in.representative_income 1869 Representative total house income in the dwelling unit is $1869 -in.representative_income 1877 Representative total house income in the dwelling unit is $1877 -in.representative_income 1880 Representative total house income in the dwelling unit is $1880 -in.representative_income 1887 Representative total house income in the dwelling unit is $1887 -in.representative_income 1889 Representative total house income in the dwelling unit is $1889 -in.representative_income 1890 Representative total house income in the dwelling unit is $1890 -in.representative_income 1893 Representative total house income in the dwelling unit is $1893 -in.representative_income 1898 Representative total house income in the dwelling unit is $1898 -in.representative_income 1901 Representative total house income in the dwelling unit is $1901 -in.representative_income 1909 Representative total house income in the dwelling unit is $1909 -in.representative_income 1910 Representative total house income in the dwelling unit is $1910 -in.representative_income 1919 Representative total house income in the dwelling unit is $1919 -in.representative_income 1928 Representative total house income in the dwelling unit is $1928 -in.representative_income 1929 Representative total house income in the dwelling unit is $1929 -in.representative_income 1933 Representative total house income in the dwelling unit is $1933 -in.representative_income 1937 Representative total house income in the dwelling unit is $1937 -in.representative_income 1944 Representative total house income in the dwelling unit is $1944 -in.representative_income 1959 Representative total house income in the dwelling unit is $1959 -in.representative_income 1970 Representative total house income in the dwelling unit is $1970 -in.representative_income 1975 Representative total house income in the dwelling unit is $1975 -in.representative_income 1977 Representative total house income in the dwelling unit is $1977 -in.representative_income 1980 Representative total house income in the dwelling unit is $1980 -in.representative_income 1981 Representative total house income in the dwelling unit is $1981 -in.representative_income 1986 Representative total house income in the dwelling unit is $1986 -in.representative_income 1991 Representative total house income in the dwelling unit is $1991 -in.representative_income 2000 Representative total house income in the dwelling unit is $2000 -in.representative_income 2004 Representative total house income in the dwelling unit is $2004 -in.representative_income 2018 Representative total house income in the dwelling unit is $2018 -in.representative_income 2020 Representative total house income in the dwelling unit is $2020 -in.representative_income 2021 Representative total house income in the dwelling unit is $2021 -in.representative_income 2022 Representative total house income in the dwelling unit is $2022 -in.representative_income 2024 Representative total house income in the dwelling unit is $2024 -in.representative_income 2036 Representative total house income in the dwelling unit is $2036 -in.representative_income 2039 Representative total house income in the dwelling unit is $2039 -in.representative_income 2040 Representative total house income in the dwelling unit is $2040 -in.representative_income 2046 Representative total house income in the dwelling unit is $2046 -in.representative_income 2053 Representative total house income in the dwelling unit is $2053 -in.representative_income 2057 Representative total house income in the dwelling unit is $2057 -in.representative_income 2058 Representative total house income in the dwelling unit is $2058 -in.representative_income 2063 Representative total house income in the dwelling unit is $2063 -in.representative_income 2072 Representative total house income in the dwelling unit is $2072 -in.representative_income 2073 Representative total house income in the dwelling unit is $2073 -in.representative_income 2075 Representative total house income in the dwelling unit is $2075 -in.representative_income 2076 Representative total house income in the dwelling unit is $2076 -in.representative_income 2088 Representative total house income in the dwelling unit is $2088 -in.representative_income 2096 Representative total house income in the dwelling unit is $2096 -in.representative_income 2098 Representative total house income in the dwelling unit is $2098 -in.representative_income 2104 Representative total house income in the dwelling unit is $2104 -in.representative_income 2106 Representative total house income in the dwelling unit is $2106 -in.representative_income 2107 Representative total house income in the dwelling unit is $2107 -in.representative_income 2109 Representative total house income in the dwelling unit is $2109 -in.representative_income 2121 Representative total house income in the dwelling unit is $2121 -in.representative_income 2129 Representative total house income in the dwelling unit is $2129 -in.representative_income 2131 Representative total house income in the dwelling unit is $2131 -in.representative_income 2140 Representative total house income in the dwelling unit is $2140 -in.representative_income 2141 Representative total house income in the dwelling unit is $2141 -in.representative_income 2146 Representative total house income in the dwelling unit is $2146 -in.representative_income 2147 Representative total house income in the dwelling unit is $2147 -in.representative_income 2148 Representative total house income in the dwelling unit is $2148 -in.representative_income 2150 Representative total house income in the dwelling unit is $2150 -in.representative_income 2151 Representative total house income in the dwelling unit is $2151 -in.representative_income 2156 Representative total house income in the dwelling unit is $2156 -in.representative_income 2159 Representative total house income in the dwelling unit is $2159 -in.representative_income 2161 Representative total house income in the dwelling unit is $2161 -in.representative_income 2162 Representative total house income in the dwelling unit is $2162 -in.representative_income 2166 Representative total house income in the dwelling unit is $2166 -in.representative_income 2168 Representative total house income in the dwelling unit is $2168 -in.representative_income 2172 Representative total house income in the dwelling unit is $2172 -in.representative_income 2179 Representative total house income in the dwelling unit is $2179 -in.representative_income 2183 Representative total house income in the dwelling unit is $2183 -in.representative_income 2189 Representative total house income in the dwelling unit is $2189 -in.representative_income 2193 Representative total house income in the dwelling unit is $2193 -in.representative_income 2201 Representative total house income in the dwelling unit is $2201 -in.representative_income 2204 Representative total house income in the dwelling unit is $2204 -in.representative_income 2212 Representative total house income in the dwelling unit is $2212 -in.representative_income 2215 Representative total house income in the dwelling unit is $2215 -in.representative_income 2220 Representative total house income in the dwelling unit is $2220 -in.representative_income 2222 Representative total house income in the dwelling unit is $2222 -in.representative_income 2226 Representative total house income in the dwelling unit is $2226 -in.representative_income 2228 Representative total house income in the dwelling unit is $2228 -in.representative_income 2232 Representative total house income in the dwelling unit is $2232 -in.representative_income 2233 Representative total house income in the dwelling unit is $2233 -in.representative_income 2238 Representative total house income in the dwelling unit is $2238 -in.representative_income 2243 Representative total house income in the dwelling unit is $2243 -in.representative_income 2246 Representative total house income in the dwelling unit is $2246 -in.representative_income 2254 Representative total house income in the dwelling unit is $2254 -in.representative_income 2257 Representative total house income in the dwelling unit is $2257 -in.representative_income 2259 Representative total house income in the dwelling unit is $2259 -in.representative_income 2260 Representative total house income in the dwelling unit is $2260 -in.representative_income 2269 Representative total house income in the dwelling unit is $2269 -in.representative_income 2273 Representative total house income in the dwelling unit is $2273 -in.representative_income 2276 Representative total house income in the dwelling unit is $2276 -in.representative_income 2279 Representative total house income in the dwelling unit is $2279 -in.representative_income 2285 Representative total house income in the dwelling unit is $2285 -in.representative_income 2288 Representative total house income in the dwelling unit is $2288 -in.representative_income 2291 Representative total house income in the dwelling unit is $2291 -in.representative_income 2300 Representative total house income in the dwelling unit is $2300 -in.representative_income 2308 Representative total house income in the dwelling unit is $2308 -in.representative_income 2312 Representative total house income in the dwelling unit is $2312 -in.representative_income 2320 Representative total house income in the dwelling unit is $2320 -in.representative_income 2321 Representative total house income in the dwelling unit is $2321 -in.representative_income 2323 Representative total house income in the dwelling unit is $2323 -in.representative_income 2331 Representative total house income in the dwelling unit is $2331 -in.representative_income 2334 Representative total house income in the dwelling unit is $2334 -in.representative_income 2336 Representative total house income in the dwelling unit is $2336 -in.representative_income 2338 Representative total house income in the dwelling unit is $2338 -in.representative_income 2340 Representative total house income in the dwelling unit is $2340 -in.representative_income 2341 Representative total house income in the dwelling unit is $2341 -in.representative_income 2342 Representative total house income in the dwelling unit is $2342 -in.representative_income 2343 Representative total house income in the dwelling unit is $2343 -in.representative_income 2352 Representative total house income in the dwelling unit is $2352 -in.representative_income 2353 Representative total house income in the dwelling unit is $2353 -in.representative_income 2354 Representative total house income in the dwelling unit is $2354 -in.representative_income 2355 Representative total house income in the dwelling unit is $2355 -in.representative_income 2362 Representative total house income in the dwelling unit is $2362 -in.representative_income 2366 Representative total house income in the dwelling unit is $2366 -in.representative_income 2373 Representative total house income in the dwelling unit is $2373 -in.representative_income 2374 Representative total house income in the dwelling unit is $2374 -in.representative_income 2377 Representative total house income in the dwelling unit is $2377 -in.representative_income 2383 Representative total house income in the dwelling unit is $2383 -in.representative_income 2384 Representative total house income in the dwelling unit is $2384 -in.representative_income 2394 Representative total house income in the dwelling unit is $2394 -in.representative_income 2399 Representative total house income in the dwelling unit is $2399 -in.representative_income 2403 Representative total house income in the dwelling unit is $2403 -in.representative_income 2405 Representative total house income in the dwelling unit is $2405 -in.representative_income 2408 Representative total house income in the dwelling unit is $2408 -in.representative_income 2414 Representative total house income in the dwelling unit is $2414 -in.representative_income 2415 Representative total house income in the dwelling unit is $2415 -in.representative_income 2420 Representative total house income in the dwelling unit is $2420 -in.representative_income 2424 Representative total house income in the dwelling unit is $2424 -in.representative_income 2426 Representative total house income in the dwelling unit is $2426 -in.representative_income 2431 Representative total house income in the dwelling unit is $2431 -in.representative_income 2442 Representative total house income in the dwelling unit is $2442 -in.representative_income 2455 Representative total house income in the dwelling unit is $2455 -in.representative_income 2457 Representative total house income in the dwelling unit is $2457 -in.representative_income 2466 Representative total house income in the dwelling unit is $2466 -in.representative_income 2467 Representative total house income in the dwelling unit is $2467 -in.representative_income 2469 Representative total house income in the dwelling unit is $2469 -in.representative_income 2470 Representative total house income in the dwelling unit is $2470 -in.representative_income 2475 Representative total house income in the dwelling unit is $2475 -in.representative_income 2478 Representative total house income in the dwelling unit is $2478 -in.representative_income 2485 Representative total house income in the dwelling unit is $2485 -in.representative_income 2491 Representative total house income in the dwelling unit is $2491 -in.representative_income 2503 Representative total house income in the dwelling unit is $2503 -in.representative_income 2505 Representative total house income in the dwelling unit is $2505 -in.representative_income 2515 Representative total house income in the dwelling unit is $2515 -in.representative_income 2517 Representative total house income in the dwelling unit is $2517 -in.representative_income 2523 Representative total house income in the dwelling unit is $2523 -in.representative_income 2525 Representative total house income in the dwelling unit is $2525 -in.representative_income 2527 Representative total house income in the dwelling unit is $2527 -in.representative_income 2531 Representative total house income in the dwelling unit is $2531 -in.representative_income 2533 Representative total house income in the dwelling unit is $2533 -in.representative_income 2538 Representative total house income in the dwelling unit is $2538 -in.representative_income 2539 Representative total house income in the dwelling unit is $2539 -in.representative_income 2544 Representative total house income in the dwelling unit is $2544 -in.representative_income 2550 Representative total house income in the dwelling unit is $2550 -in.representative_income 2556 Representative total house income in the dwelling unit is $2556 -in.representative_income 2558 Representative total house income in the dwelling unit is $2558 -in.representative_income 2571 Representative total house income in the dwelling unit is $2571 -in.representative_income 2573 Representative total house income in the dwelling unit is $2573 -in.representative_income 2576 Representative total house income in the dwelling unit is $2576 -in.representative_income 2578 Representative total house income in the dwelling unit is $2578 -in.representative_income 2580 Representative total house income in the dwelling unit is $2580 -in.representative_income 2584 Representative total house income in the dwelling unit is $2584 -in.representative_income 2586 Representative total house income in the dwelling unit is $2586 -in.representative_income 2587 Representative total house income in the dwelling unit is $2587 -in.representative_income 2593 Representative total house income in the dwelling unit is $2593 -in.representative_income 2594 Representative total house income in the dwelling unit is $2594 -in.representative_income 2598 Representative total house income in the dwelling unit is $2598 -in.representative_income 2606 Representative total house income in the dwelling unit is $2606 -in.representative_income 2609 Representative total house income in the dwelling unit is $2609 -in.representative_income 2626 Representative total house income in the dwelling unit is $2626 -in.representative_income 2630 Representative total house income in the dwelling unit is $2630 -in.representative_income 2636 Representative total house income in the dwelling unit is $2636 -in.representative_income 2640 Representative total house income in the dwelling unit is $2640 -in.representative_income 2641 Representative total house income in the dwelling unit is $2641 -in.representative_income 2642 Representative total house income in the dwelling unit is $2642 -in.representative_income 2647 Representative total house income in the dwelling unit is $2647 -in.representative_income 2651 Representative total house income in the dwelling unit is $2651 -in.representative_income 2661 Representative total house income in the dwelling unit is $2661 -in.representative_income 2669 Representative total house income in the dwelling unit is $2669 -in.representative_income 2677 Representative total house income in the dwelling unit is $2677 -in.representative_income 2682 Representative total house income in the dwelling unit is $2682 -in.representative_income 2683 Representative total house income in the dwelling unit is $2683 -in.representative_income 2689 Representative total house income in the dwelling unit is $2689 -in.representative_income 2694 Representative total house income in the dwelling unit is $2694 -in.representative_income 2700 Representative total house income in the dwelling unit is $2700 -in.representative_income 2701 Representative total house income in the dwelling unit is $2701 -in.representative_income 2703 Representative total house income in the dwelling unit is $2703 -in.representative_income 2707 Representative total house income in the dwelling unit is $2707 -in.representative_income 2712 Representative total house income in the dwelling unit is $2712 -in.representative_income 2713 Representative total house income in the dwelling unit is $2713 -in.representative_income 2715 Representative total house income in the dwelling unit is $2715 -in.representative_income 2727 Representative total house income in the dwelling unit is $2727 -in.representative_income 2729 Representative total house income in the dwelling unit is $2729 -in.representative_income 2742 Representative total house income in the dwelling unit is $2742 -in.representative_income 2748 Representative total house income in the dwelling unit is $2748 -in.representative_income 2755 Representative total house income in the dwelling unit is $2755 -in.representative_income 2756 Representative total house income in the dwelling unit is $2756 -in.representative_income 2766 Representative total house income in the dwelling unit is $2766 -in.representative_income 2770 Representative total house income in the dwelling unit is $2770 -in.representative_income 2775 Representative total house income in the dwelling unit is $2775 -in.representative_income 2777 Representative total house income in the dwelling unit is $2777 -in.representative_income 2778 Representative total house income in the dwelling unit is $2778 -in.representative_income 2785 Representative total house income in the dwelling unit is $2785 -in.representative_income 2788 Representative total house income in the dwelling unit is $2788 -in.representative_income 2791 Representative total house income in the dwelling unit is $2791 -in.representative_income 2798 Representative total house income in the dwelling unit is $2798 -in.representative_income 2805 Representative total house income in the dwelling unit is $2805 -in.representative_income 2808 Representative total house income in the dwelling unit is $2808 -in.representative_income 2810 Representative total house income in the dwelling unit is $2810 -in.representative_income 2815 Representative total house income in the dwelling unit is $2815 -in.representative_income 2816 Representative total house income in the dwelling unit is $2816 -in.representative_income 2820 Representative total house income in the dwelling unit is $2820 -in.representative_income 2826 Representative total house income in the dwelling unit is $2826 -in.representative_income 2828 Representative total house income in the dwelling unit is $2828 -in.representative_income 2836 Representative total house income in the dwelling unit is $2836 -in.representative_income 2837 Representative total house income in the dwelling unit is $2837 -in.representative_income 2842 Representative total house income in the dwelling unit is $2842 -in.representative_income 2844 Representative total house income in the dwelling unit is $2844 -in.representative_income 2848 Representative total house income in the dwelling unit is $2848 -in.representative_income 2856 Representative total house income in the dwelling unit is $2856 -in.representative_income 2858 Representative total house income in the dwelling unit is $2858 -in.representative_income 2864 Representative total house income in the dwelling unit is $2864 -in.representative_income 2877 Representative total house income in the dwelling unit is $2877 -in.representative_income 2888 Representative total house income in the dwelling unit is $2888 -in.representative_income 2898 Representative total house income in the dwelling unit is $2898 -in.representative_income 2918 Representative total house income in the dwelling unit is $2918 -in.representative_income 2921 Representative total house income in the dwelling unit is $2921 -in.representative_income 2929 Representative total house income in the dwelling unit is $2929 -in.representative_income 2939 Representative total house income in the dwelling unit is $2939 -in.representative_income 2953 Representative total house income in the dwelling unit is $2953 -in.representative_income 2957 Representative total house income in the dwelling unit is $2957 -in.representative_income 2960 Representative total house income in the dwelling unit is $2960 -in.representative_income 2966 Representative total house income in the dwelling unit is $2966 -in.representative_income 2973 Representative total house income in the dwelling unit is $2973 -in.representative_income 2979 Representative total house income in the dwelling unit is $2979 -in.representative_income 2981 Representative total house income in the dwelling unit is $2981 -in.representative_income 2984 Representative total house income in the dwelling unit is $2984 -in.representative_income 2992 Representative total house income in the dwelling unit is $2992 -in.representative_income 2993 Representative total house income in the dwelling unit is $2993 -in.representative_income 2996 Representative total house income in the dwelling unit is $2996 -in.representative_income 3005 Representative total house income in the dwelling unit is $3005 -in.representative_income 3006 Representative total house income in the dwelling unit is $3006 -in.representative_income 3010 Representative total house income in the dwelling unit is $3010 -in.representative_income 3012 Representative total house income in the dwelling unit is $3012 -in.representative_income 3015 Representative total house income in the dwelling unit is $3015 -in.representative_income 3016 Representative total house income in the dwelling unit is $3016 -in.representative_income 3017 Representative total house income in the dwelling unit is $3017 -in.representative_income 3022 Representative total house income in the dwelling unit is $3022 -in.representative_income 3025 Representative total house income in the dwelling unit is $3025 -in.representative_income 3027 Representative total house income in the dwelling unit is $3027 -in.representative_income 3030 Representative total house income in the dwelling unit is $3030 -in.representative_income 3032 Representative total house income in the dwelling unit is $3032 -in.representative_income 3042 Representative total house income in the dwelling unit is $3042 -in.representative_income 3045 Representative total house income in the dwelling unit is $3045 -in.representative_income 3047 Representative total house income in the dwelling unit is $3047 -in.representative_income 3051 Representative total house income in the dwelling unit is $3051 -in.representative_income 3059 Representative total house income in the dwelling unit is $3059 -in.representative_income 3066 Representative total house income in the dwelling unit is $3066 -in.representative_income 3070 Representative total house income in the dwelling unit is $3070 -in.representative_income 3082 Representative total house income in the dwelling unit is $3082 -in.representative_income 3090 Representative total house income in the dwelling unit is $3090 -in.representative_income 3091 Representative total house income in the dwelling unit is $3091 -in.representative_income 3094 Representative total house income in the dwelling unit is $3094 -in.representative_income 3100 Representative total house income in the dwelling unit is $3100 -in.representative_income 3101 Representative total house income in the dwelling unit is $3101 -in.representative_income 3111 Representative total house income in the dwelling unit is $3111 -in.representative_income 3113 Representative total house income in the dwelling unit is $3113 -in.representative_income 3124 Representative total house income in the dwelling unit is $3124 -in.representative_income 3125 Representative total house income in the dwelling unit is $3125 -in.representative_income 3131 Representative total house income in the dwelling unit is $3131 -in.representative_income 3133 Representative total house income in the dwelling unit is $3133 -in.representative_income 3135 Representative total house income in the dwelling unit is $3135 -in.representative_income 3146 Representative total house income in the dwelling unit is $3146 -in.representative_income 3153 Representative total house income in the dwelling unit is $3153 -in.representative_income 3164 Representative total house income in the dwelling unit is $3164 -in.representative_income 3174 Representative total house income in the dwelling unit is $3174 -in.representative_income 3179 Representative total house income in the dwelling unit is $3179 -in.representative_income 3182 Representative total house income in the dwelling unit is $3182 -in.representative_income 3185 Representative total house income in the dwelling unit is $3185 -in.representative_income 3187 Representative total house income in the dwelling unit is $3187 -in.representative_income 3197 Representative total house income in the dwelling unit is $3197 -in.representative_income 3198 Representative total house income in the dwelling unit is $3198 -in.representative_income 3199 Representative total house income in the dwelling unit is $3199 -in.representative_income 3217 Representative total house income in the dwelling unit is $3217 -in.representative_income 3220 Representative total house income in the dwelling unit is $3220 -in.representative_income 3227 Representative total house income in the dwelling unit is $3227 -in.representative_income 3232 Representative total house income in the dwelling unit is $3232 -in.representative_income 3237 Representative total house income in the dwelling unit is $3237 -in.representative_income 3241 Representative total house income in the dwelling unit is $3241 -in.representative_income 3243 Representative total house income in the dwelling unit is $3243 -in.representative_income 3248 Representative total house income in the dwelling unit is $3248 -in.representative_income 3259 Representative total house income in the dwelling unit is $3259 -in.representative_income 3263 Representative total house income in the dwelling unit is $3263 -in.representative_income 3264 Representative total house income in the dwelling unit is $3264 -in.representative_income 3269 Representative total house income in the dwelling unit is $3269 -in.representative_income 3273 Representative total house income in the dwelling unit is $3273 -in.representative_income 3274 Representative total house income in the dwelling unit is $3274 -in.representative_income 3291 Representative total house income in the dwelling unit is $3291 -in.representative_income 3293 Representative total house income in the dwelling unit is $3293 -in.representative_income 3296 Representative total house income in the dwelling unit is $3296 -in.representative_income 3301 Representative total house income in the dwelling unit is $3301 -in.representative_income 3306 Representative total house income in the dwelling unit is $3306 -in.representative_income 3317 Representative total house income in the dwelling unit is $3317 -in.representative_income 3321 Representative total house income in the dwelling unit is $3321 -in.representative_income 3322 Representative total house income in the dwelling unit is $3322 -in.representative_income 3328 Representative total house income in the dwelling unit is $3328 -in.representative_income 3333 Representative total house income in the dwelling unit is $3333 -in.representative_income 3343 Representative total house income in the dwelling unit is $3343 -in.representative_income 3349 Representative total house income in the dwelling unit is $3349 -in.representative_income 3352 Representative total house income in the dwelling unit is $3352 -in.representative_income 3360 Representative total house income in the dwelling unit is $3360 -in.representative_income 3363 Representative total house income in the dwelling unit is $3363 -in.representative_income 3365 Representative total house income in the dwelling unit is $3365 -in.representative_income 3371 Representative total house income in the dwelling unit is $3371 -in.representative_income 3372 Representative total house income in the dwelling unit is $3372 -in.representative_income 3374 Representative total house income in the dwelling unit is $3374 -in.representative_income 3383 Representative total house income in the dwelling unit is $3383 -in.representative_income 3385 Representative total house income in the dwelling unit is $3385 -in.representative_income 3391 Representative total house income in the dwelling unit is $3391 -in.representative_income 3392 Representative total house income in the dwelling unit is $3392 -in.representative_income 3394 Representative total house income in the dwelling unit is $3394 -in.representative_income 3395 Representative total house income in the dwelling unit is $3395 -in.representative_income 3403 Representative total house income in the dwelling unit is $3403 -in.representative_income 3404 Representative total house income in the dwelling unit is $3404 -in.representative_income 3414 Representative total house income in the dwelling unit is $3414 -in.representative_income 3424 Representative total house income in the dwelling unit is $3424 -in.representative_income 3427 Representative total house income in the dwelling unit is $3427 -in.representative_income 3428 Representative total house income in the dwelling unit is $3428 -in.representative_income 3434 Representative total house income in the dwelling unit is $3434 -in.representative_income 3435 Representative total house income in the dwelling unit is $3435 -in.representative_income 3446 Representative total house income in the dwelling unit is $3446 -in.representative_income 3448 Representative total house income in the dwelling unit is $3448 -in.representative_income 3454 Representative total house income in the dwelling unit is $3454 -in.representative_income 3455 Representative total house income in the dwelling unit is $3455 -in.representative_income 3456 Representative total house income in the dwelling unit is $3456 -in.representative_income 3457 Representative total house income in the dwelling unit is $3457 -in.representative_income 3465 Representative total house income in the dwelling unit is $3465 -in.representative_income 3467 Representative total house income in the dwelling unit is $3467 -in.representative_income 3478 Representative total house income in the dwelling unit is $3478 -in.representative_income 3479 Representative total house income in the dwelling unit is $3479 -in.representative_income 3481 Representative total house income in the dwelling unit is $3481 -in.representative_income 3486 Representative total house income in the dwelling unit is $3486 -in.representative_income 3491 Representative total house income in the dwelling unit is $3491 -in.representative_income 3496 Representative total house income in the dwelling unit is $3496 -in.representative_income 3499 Representative total house income in the dwelling unit is $3499 -in.representative_income 3506 Representative total house income in the dwelling unit is $3506 -in.representative_income 3507 Representative total house income in the dwelling unit is $3507 -in.representative_income 3510 Representative total house income in the dwelling unit is $3510 -in.representative_income 3511 Representative total house income in the dwelling unit is $3511 -in.representative_income 3512 Representative total house income in the dwelling unit is $3512 -in.representative_income 3517 Representative total house income in the dwelling unit is $3517 -in.representative_income 3533 Representative total house income in the dwelling unit is $3533 -in.representative_income 3536 Representative total house income in the dwelling unit is $3536 -in.representative_income 3543 Representative total house income in the dwelling unit is $3543 -in.representative_income 3546 Representative total house income in the dwelling unit is $3546 -in.representative_income 3548 Representative total house income in the dwelling unit is $3548 -in.representative_income 3552 Representative total house income in the dwelling unit is $3552 -in.representative_income 3559 Representative total house income in the dwelling unit is $3559 -in.representative_income 3561 Representative total house income in the dwelling unit is $3561 -in.representative_income 3564 Representative total house income in the dwelling unit is $3564 -in.representative_income 3566 Representative total house income in the dwelling unit is $3566 -in.representative_income 3575 Representative total house income in the dwelling unit is $3575 -in.representative_income 3583 Representative total house income in the dwelling unit is $3583 -in.representative_income 3586 Representative total house income in the dwelling unit is $3586 -in.representative_income 3588 Representative total house income in the dwelling unit is $3588 -in.representative_income 3589 Representative total house income in the dwelling unit is $3589 -in.representative_income 3592 Representative total house income in the dwelling unit is $3592 -in.representative_income 3596 Representative total house income in the dwelling unit is $3596 -in.representative_income 3598 Representative total house income in the dwelling unit is $3598 -in.representative_income 3607 Representative total house income in the dwelling unit is $3607 -in.representative_income 3609 Representative total house income in the dwelling unit is $3609 -in.representative_income 3610 Representative total house income in the dwelling unit is $3610 -in.representative_income 3616 Representative total house income in the dwelling unit is $3616 -in.representative_income 3617 Representative total house income in the dwelling unit is $3617 -in.representative_income 3628 Representative total house income in the dwelling unit is $3628 -in.representative_income 3631 Representative total house income in the dwelling unit is $3631 -in.representative_income 3633 Representative total house income in the dwelling unit is $3633 -in.representative_income 3637 Representative total house income in the dwelling unit is $3637 -in.representative_income 3638 Representative total house income in the dwelling unit is $3638 -in.representative_income 3645 Representative total house income in the dwelling unit is $3645 -in.representative_income 3647 Representative total house income in the dwelling unit is $3647 -in.representative_income 3649 Representative total house income in the dwelling unit is $3649 -in.representative_income 3657 Representative total house income in the dwelling unit is $3657 -in.representative_income 3659 Representative total house income in the dwelling unit is $3659 -in.representative_income 3661 Representative total house income in the dwelling unit is $3661 -in.representative_income 3667 Representative total house income in the dwelling unit is $3667 -in.representative_income 3671 Representative total house income in the dwelling unit is $3671 -in.representative_income 3674 Representative total house income in the dwelling unit is $3674 -in.representative_income 3675 Representative total house income in the dwelling unit is $3675 -in.representative_income 3681 Representative total house income in the dwelling unit is $3681 -in.representative_income 3689 Representative total house income in the dwelling unit is $3689 -in.representative_income 3691 Representative total house income in the dwelling unit is $3691 -in.representative_income 3696 Representative total house income in the dwelling unit is $3696 -in.representative_income 3703 Representative total house income in the dwelling unit is $3703 -in.representative_income 3704 Representative total house income in the dwelling unit is $3704 -in.representative_income 3713 Representative total house income in the dwelling unit is $3713 -in.representative_income 3717 Representative total house income in the dwelling unit is $3717 -in.representative_income 3723 Representative total house income in the dwelling unit is $3723 -in.representative_income 3728 Representative total house income in the dwelling unit is $3728 -in.representative_income 3735 Representative total house income in the dwelling unit is $3735 -in.representative_income 3738 Representative total house income in the dwelling unit is $3738 -in.representative_income 3739 Representative total house income in the dwelling unit is $3739 -in.representative_income 3743 Representative total house income in the dwelling unit is $3743 -in.representative_income 3744 Representative total house income in the dwelling unit is $3744 -in.representative_income 3746 Representative total house income in the dwelling unit is $3746 -in.representative_income 3749 Representative total house income in the dwelling unit is $3749 -in.representative_income 3755 Representative total house income in the dwelling unit is $3755 -in.representative_income 3757 Representative total house income in the dwelling unit is $3757 -in.representative_income 3760 Representative total house income in the dwelling unit is $3760 -in.representative_income 3771 Representative total house income in the dwelling unit is $3771 -in.representative_income 3775 Representative total house income in the dwelling unit is $3775 -in.representative_income 3782 Representative total house income in the dwelling unit is $3782 -in.representative_income 3786 Representative total house income in the dwelling unit is $3786 -in.representative_income 3788 Representative total house income in the dwelling unit is $3788 -in.representative_income 3790 Representative total house income in the dwelling unit is $3790 -in.representative_income 3793 Representative total house income in the dwelling unit is $3793 -in.representative_income 3796 Representative total house income in the dwelling unit is $3796 -in.representative_income 3797 Representative total house income in the dwelling unit is $3797 -in.representative_income 3803 Representative total house income in the dwelling unit is $3803 -in.representative_income 3808 Representative total house income in the dwelling unit is $3808 -in.representative_income 3811 Representative total house income in the dwelling unit is $3811 -in.representative_income 3816 Representative total house income in the dwelling unit is $3816 -in.representative_income 3817 Representative total house income in the dwelling unit is $3817 -in.representative_income 3822 Representative total house income in the dwelling unit is $3822 -in.representative_income 3836 Representative total house income in the dwelling unit is $3836 -in.representative_income 3838 Representative total house income in the dwelling unit is $3838 -in.representative_income 3839 Representative total house income in the dwelling unit is $3839 -in.representative_income 3843 Representative total house income in the dwelling unit is $3843 -in.representative_income 3850 Representative total house income in the dwelling unit is $3850 -in.representative_income 3858 Representative total house income in the dwelling unit is $3858 -in.representative_income 3860 Representative total house income in the dwelling unit is $3860 -in.representative_income 3864 Representative total house income in the dwelling unit is $3864 -in.representative_income 3865 Representative total house income in the dwelling unit is $3865 -in.representative_income 3878 Representative total house income in the dwelling unit is $3878 -in.representative_income 3879 Representative total house income in the dwelling unit is $3879 -in.representative_income 3886 Representative total house income in the dwelling unit is $3886 -in.representative_income 3888 Representative total house income in the dwelling unit is $3888 -in.representative_income 3889 Representative total house income in the dwelling unit is $3889 -in.representative_income 3890 Representative total house income in the dwelling unit is $3890 -in.representative_income 3899 Representative total house income in the dwelling unit is $3899 -in.representative_income 3902 Representative total house income in the dwelling unit is $3902 -in.representative_income 3910 Representative total house income in the dwelling unit is $3910 -in.representative_income 3919 Representative total house income in the dwelling unit is $3919 -in.representative_income 3920 Representative total house income in the dwelling unit is $3920 -in.representative_income 3922 Representative total house income in the dwelling unit is $3922 -in.representative_income 3929 Representative total house income in the dwelling unit is $3929 -in.representative_income 3940 Representative total house income in the dwelling unit is $3940 -in.representative_income 3950 Representative total house income in the dwelling unit is $3950 -in.representative_income 3951 Representative total house income in the dwelling unit is $3951 -in.representative_income 3952 Representative total house income in the dwelling unit is $3952 -in.representative_income 3954 Representative total house income in the dwelling unit is $3954 -in.representative_income 3955 Representative total house income in the dwelling unit is $3955 -in.representative_income 3970 Representative total house income in the dwelling unit is $3970 -in.representative_income 3971 Representative total house income in the dwelling unit is $3971 -in.representative_income 3972 Representative total house income in the dwelling unit is $3972 -in.representative_income 3983 Representative total house income in the dwelling unit is $3983 -in.representative_income 3984 Representative total house income in the dwelling unit is $3984 -in.representative_income 3998 Representative total house income in the dwelling unit is $3998 -in.representative_income 4004 Representative total house income in the dwelling unit is $4004 -in.representative_income 4007 Representative total house income in the dwelling unit is $4007 -in.representative_income 4011 Representative total house income in the dwelling unit is $4011 -in.representative_income 4018 Representative total house income in the dwelling unit is $4018 -in.representative_income 4019 Representative total house income in the dwelling unit is $4019 -in.representative_income 4023 Representative total house income in the dwelling unit is $4023 -in.representative_income 4025 Representative total house income in the dwelling unit is $4025 -in.representative_income 4030 Representative total house income in the dwelling unit is $4030 -in.representative_income 4034 Representative total house income in the dwelling unit is $4034 -in.representative_income 4041 Representative total house income in the dwelling unit is $4041 -in.representative_income 4046 Representative total house income in the dwelling unit is $4046 -in.representative_income 4051 Representative total house income in the dwelling unit is $4051 -in.representative_income 4052 Representative total house income in the dwelling unit is $4052 -in.representative_income 4058 Representative total house income in the dwelling unit is $4058 -in.representative_income 4060 Representative total house income in the dwelling unit is $4060 -in.representative_income 4062 Representative total house income in the dwelling unit is $4062 -in.representative_income 4069 Representative total house income in the dwelling unit is $4069 -in.representative_income 4071 Representative total house income in the dwelling unit is $4071 -in.representative_income 4075 Representative total house income in the dwelling unit is $4075 -in.representative_income 4079 Representative total house income in the dwelling unit is $4079 -in.representative_income 4084 Representative total house income in the dwelling unit is $4084 -in.representative_income 4085 Representative total house income in the dwelling unit is $4085 -in.representative_income 4091 Representative total house income in the dwelling unit is $4091 -in.representative_income 4094 Representative total house income in the dwelling unit is $4094 -in.representative_income 4101 Representative total house income in the dwelling unit is $4101 -in.representative_income 4105 Representative total house income in the dwelling unit is $4105 -in.representative_income 4106 Representative total house income in the dwelling unit is $4106 -in.representative_income 4113 Representative total house income in the dwelling unit is $4113 -in.representative_income 4114 Representative total house income in the dwelling unit is $4114 -in.representative_income 4116 Representative total house income in the dwelling unit is $4116 -in.representative_income 4121 Representative total house income in the dwelling unit is $4121 -in.representative_income 4124 Representative total house income in the dwelling unit is $4124 -in.representative_income 4125 Representative total house income in the dwelling unit is $4125 -in.representative_income 4127 Representative total house income in the dwelling unit is $4127 -in.representative_income 4133 Representative total house income in the dwelling unit is $4133 -in.representative_income 4142 Representative total house income in the dwelling unit is $4142 -in.representative_income 4147 Representative total house income in the dwelling unit is $4147 -in.representative_income 4149 Representative total house income in the dwelling unit is $4149 -in.representative_income 4152 Representative total house income in the dwelling unit is $4152 -in.representative_income 4154 Representative total house income in the dwelling unit is $4154 -in.representative_income 4157 Representative total house income in the dwelling unit is $4157 -in.representative_income 4166 Representative total house income in the dwelling unit is $4166 -in.representative_income 4167 Representative total house income in the dwelling unit is $4167 -in.representative_income 4175 Representative total house income in the dwelling unit is $4175 -in.representative_income 4177 Representative total house income in the dwelling unit is $4177 -in.representative_income 4181 Representative total house income in the dwelling unit is $4181 -in.representative_income 4182 Representative total house income in the dwelling unit is $4182 -in.representative_income 4187 Representative total house income in the dwelling unit is $4187 -in.representative_income 4188 Representative total house income in the dwelling unit is $4188 -in.representative_income 4192 Representative total house income in the dwelling unit is $4192 -in.representative_income 4197 Representative total house income in the dwelling unit is $4197 -in.representative_income 4198 Representative total house income in the dwelling unit is $4198 -in.representative_income 4214 Representative total house income in the dwelling unit is $4214 -in.representative_income 4217 Representative total house income in the dwelling unit is $4217 -in.representative_income 4219 Representative total house income in the dwelling unit is $4219 -in.representative_income 4224 Representative total house income in the dwelling unit is $4224 -in.representative_income 4229 Representative total house income in the dwelling unit is $4229 -in.representative_income 4233 Representative total house income in the dwelling unit is $4233 -in.representative_income 4235 Representative total house income in the dwelling unit is $4235 -in.representative_income 4243 Representative total house income in the dwelling unit is $4243 -in.representative_income 4246 Representative total house income in the dwelling unit is $4246 -in.representative_income 4247 Representative total house income in the dwelling unit is $4247 -in.representative_income 4260 Representative total house income in the dwelling unit is $4260 -in.representative_income 4267 Representative total house income in the dwelling unit is $4267 -in.representative_income 4268 Representative total house income in the dwelling unit is $4268 -in.representative_income 4271 Representative total house income in the dwelling unit is $4271 -in.representative_income 4272 Representative total house income in the dwelling unit is $4272 -in.representative_income 4280 Representative total house income in the dwelling unit is $4280 -in.representative_income 4290 Representative total house income in the dwelling unit is $4290 -in.representative_income 4292 Representative total house income in the dwelling unit is $4292 -in.representative_income 4293 Representative total house income in the dwelling unit is $4293 -in.representative_income 4295 Representative total house income in the dwelling unit is $4295 -in.representative_income 4313 Representative total house income in the dwelling unit is $4313 -in.representative_income 4314 Representative total house income in the dwelling unit is $4314 -in.representative_income 4315 Representative total house income in the dwelling unit is $4315 -in.representative_income 4321 Representative total house income in the dwelling unit is $4321 -in.representative_income 4323 Representative total house income in the dwelling unit is $4323 -in.representative_income 4324 Representative total house income in the dwelling unit is $4324 -in.representative_income 4332 Representative total house income in the dwelling unit is $4332 -in.representative_income 4337 Representative total house income in the dwelling unit is $4337 -in.representative_income 4344 Representative total house income in the dwelling unit is $4344 -in.representative_income 4348 Representative total house income in the dwelling unit is $4348 -in.representative_income 4357 Representative total house income in the dwelling unit is $4357 -in.representative_income 4361 Representative total house income in the dwelling unit is $4361 -in.representative_income 4366 Representative total house income in the dwelling unit is $4366 -in.representative_income 4374 Representative total house income in the dwelling unit is $4374 -in.representative_income 4376 Representative total house income in the dwelling unit is $4376 -in.representative_income 4380 Representative total house income in the dwelling unit is $4380 -in.representative_income 4388 Representative total house income in the dwelling unit is $4388 -in.representative_income 4401 Representative total house income in the dwelling unit is $4401 -in.representative_income 4414 Representative total house income in the dwelling unit is $4414 -in.representative_income 4419 Representative total house income in the dwelling unit is $4419 -in.representative_income 4422 Representative total house income in the dwelling unit is $4422 -in.representative_income 4424 Representative total house income in the dwelling unit is $4424 -in.representative_income 4429 Representative total house income in the dwelling unit is $4429 -in.representative_income 4430 Representative total house income in the dwelling unit is $4430 -in.representative_income 4435 Representative total house income in the dwelling unit is $4435 -in.representative_income 4440 Representative total house income in the dwelling unit is $4440 -in.representative_income 4444 Representative total house income in the dwelling unit is $4444 -in.representative_income 4445 Representative total house income in the dwelling unit is $4445 -in.representative_income 4450 Representative total house income in the dwelling unit is $4450 -in.representative_income 4461 Representative total house income in the dwelling unit is $4461 -in.representative_income 4473 Representative total house income in the dwelling unit is $4473 -in.representative_income 4475 Representative total house income in the dwelling unit is $4475 -in.representative_income 4476 Representative total house income in the dwelling unit is $4476 -in.representative_income 4477 Representative total house income in the dwelling unit is $4477 -in.representative_income 4503 Representative total house income in the dwelling unit is $4503 -in.representative_income 4506 Representative total house income in the dwelling unit is $4506 -in.representative_income 4507 Representative total house income in the dwelling unit is $4507 -in.representative_income 4509 Representative total house income in the dwelling unit is $4509 -in.representative_income 4515 Representative total house income in the dwelling unit is $4515 -in.representative_income 4517 Representative total house income in the dwelling unit is $4517 -in.representative_income 4519 Representative total house income in the dwelling unit is $4519 -in.representative_income 4523 Representative total house income in the dwelling unit is $4523 -in.representative_income 4535 Representative total house income in the dwelling unit is $4535 -in.representative_income 4536 Representative total house income in the dwelling unit is $4536 -in.representative_income 4538 Representative total house income in the dwelling unit is $4538 -in.representative_income 4539 Representative total house income in the dwelling unit is $4539 -in.representative_income 4545 Representative total house income in the dwelling unit is $4545 -in.representative_income 4546 Representative total house income in the dwelling unit is $4546 -in.representative_income 4551 Representative total house income in the dwelling unit is $4551 -in.representative_income 4562 Representative total house income in the dwelling unit is $4562 -in.representative_income 4573 Representative total house income in the dwelling unit is $4573 -in.representative_income 4576 Representative total house income in the dwelling unit is $4576 -in.representative_income 4579 Representative total house income in the dwelling unit is $4579 -in.representative_income 4581 Representative total house income in the dwelling unit is $4581 -in.representative_income 4582 Representative total house income in the dwelling unit is $4582 -in.representative_income 4585 Representative total house income in the dwelling unit is $4585 -in.representative_income 4588 Representative total house income in the dwelling unit is $4588 -in.representative_income 4590 Representative total house income in the dwelling unit is $4590 -in.representative_income 4591 Representative total house income in the dwelling unit is $4591 -in.representative_income 4594 Representative total house income in the dwelling unit is $4594 -in.representative_income 4598 Representative total house income in the dwelling unit is $4598 -in.representative_income 4600 Representative total house income in the dwelling unit is $4600 -in.representative_income 4616 Representative total house income in the dwelling unit is $4616 -in.representative_income 4619 Representative total house income in the dwelling unit is $4619 -in.representative_income 4637 Representative total house income in the dwelling unit is $4637 -in.representative_income 4640 Representative total house income in the dwelling unit is $4640 -in.representative_income 4642 Representative total house income in the dwelling unit is $4642 -in.representative_income 4646 Representative total house income in the dwelling unit is $4646 -in.representative_income 4647 Representative total house income in the dwelling unit is $4647 -in.representative_income 4648 Representative total house income in the dwelling unit is $4648 -in.representative_income 4662 Representative total house income in the dwelling unit is $4662 -in.representative_income 4667 Representative total house income in the dwelling unit is $4667 -in.representative_income 4672 Representative total house income in the dwelling unit is $4672 -in.representative_income 4679 Representative total house income in the dwelling unit is $4679 -in.representative_income 4680 Representative total house income in the dwelling unit is $4680 -in.representative_income 4683 Representative total house income in the dwelling unit is $4683 -in.representative_income 4687 Representative total house income in the dwelling unit is $4687 -in.representative_income 4691 Representative total house income in the dwelling unit is $4691 -in.representative_income 4693 Representative total house income in the dwelling unit is $4693 -in.representative_income 4697 Representative total house income in the dwelling unit is $4697 -in.representative_income 4701 Representative total house income in the dwelling unit is $4701 -in.representative_income 4708 Representative total house income in the dwelling unit is $4708 -in.representative_income 4724 Representative total house income in the dwelling unit is $4724 -in.representative_income 4732 Representative total house income in the dwelling unit is $4732 -in.representative_income 4734 Representative total house income in the dwelling unit is $4734 -in.representative_income 4735 Representative total house income in the dwelling unit is $4735 -in.representative_income 4743 Representative total house income in the dwelling unit is $4743 -in.representative_income 4744 Representative total house income in the dwelling unit is $4744 -in.representative_income 4746 Representative total house income in the dwelling unit is $4746 -in.representative_income 4748 Representative total house income in the dwelling unit is $4748 -in.representative_income 4752 Representative total house income in the dwelling unit is $4752 -in.representative_income 4754 Representative total house income in the dwelling unit is $4754 -in.representative_income 4755 Representative total house income in the dwelling unit is $4755 -in.representative_income 4757 Representative total house income in the dwelling unit is $4757 -in.representative_income 4776 Representative total house income in the dwelling unit is $4776 -in.representative_income 4777 Representative total house income in the dwelling unit is $4777 -in.representative_income 4778 Representative total house income in the dwelling unit is $4778 -in.representative_income 4786 Representative total house income in the dwelling unit is $4786 -in.representative_income 4788 Representative total house income in the dwelling unit is $4788 -in.representative_income 4796 Representative total house income in the dwelling unit is $4796 -in.representative_income 4808 Representative total house income in the dwelling unit is $4808 -in.representative_income 4809 Representative total house income in the dwelling unit is $4809 -in.representative_income 4819 Representative total house income in the dwelling unit is $4819 -in.representative_income 4830 Representative total house income in the dwelling unit is $4830 -in.representative_income 4838 Representative total house income in the dwelling unit is $4838 -in.representative_income 4840 Representative total house income in the dwelling unit is $4840 -in.representative_income 4841 Representative total house income in the dwelling unit is $4841 -in.representative_income 4842 Representative total house income in the dwelling unit is $4842 -in.representative_income 4845 Representative total house income in the dwelling unit is $4845 -in.representative_income 4848 Representative total house income in the dwelling unit is $4848 -in.representative_income 4849 Representative total house income in the dwelling unit is $4849 -in.representative_income 4850 Representative total house income in the dwelling unit is $4850 -in.representative_income 4852 Representative total house income in the dwelling unit is $4852 -in.representative_income 4858 Representative total house income in the dwelling unit is $4858 -in.representative_income 4859 Representative total house income in the dwelling unit is $4859 -in.representative_income 4862 Representative total house income in the dwelling unit is $4862 -in.representative_income 4869 Representative total house income in the dwelling unit is $4869 -in.representative_income 4872 Representative total house income in the dwelling unit is $4872 -in.representative_income 4880 Representative total house income in the dwelling unit is $4880 -in.representative_income 4883 Representative total house income in the dwelling unit is $4883 -in.representative_income 4884 Representative total house income in the dwelling unit is $4884 -in.representative_income 4889 Representative total house income in the dwelling unit is $4889 -in.representative_income 4893 Representative total house income in the dwelling unit is $4893 -in.representative_income 4894 Representative total house income in the dwelling unit is $4894 -in.representative_income 4898 Representative total house income in the dwelling unit is $4898 -in.representative_income 4899 Representative total house income in the dwelling unit is $4899 -in.representative_income 4902 Representative total house income in the dwelling unit is $4902 -in.representative_income 4909 Representative total house income in the dwelling unit is $4909 -in.representative_income 4916 Representative total house income in the dwelling unit is $4916 -in.representative_income 4938 Representative total house income in the dwelling unit is $4938 -in.representative_income 4940 Representative total house income in the dwelling unit is $4940 -in.representative_income 4946 Representative total house income in the dwelling unit is $4946 -in.representative_income 4950 Representative total house income in the dwelling unit is $4950 -in.representative_income 4951 Representative total house income in the dwelling unit is $4951 -in.representative_income 4952 Representative total house income in the dwelling unit is $4952 -in.representative_income 4957 Representative total house income in the dwelling unit is $4957 -in.representative_income 4959 Representative total house income in the dwelling unit is $4959 -in.representative_income 4970 Representative total house income in the dwelling unit is $4970 -in.representative_income 4981 Representative total house income in the dwelling unit is $4981 -in.representative_income 4982 Representative total house income in the dwelling unit is $4982 -in.representative_income 4990 Representative total house income in the dwelling unit is $4990 -in.representative_income 4992 Representative total house income in the dwelling unit is $4992 -in.representative_income 5001 Representative total house income in the dwelling unit is $5001 -in.representative_income 5009 Representative total house income in the dwelling unit is $5009 -in.representative_income 5010 Representative total house income in the dwelling unit is $5010 -in.representative_income 5013 Representative total house income in the dwelling unit is $5013 -in.representative_income 5024 Representative total house income in the dwelling unit is $5024 -in.representative_income 5033 Representative total house income in the dwelling unit is $5033 -in.representative_income 5035 Representative total house income in the dwelling unit is $5035 -in.representative_income 5045 Representative total house income in the dwelling unit is $5045 -in.representative_income 5051 Representative total house income in the dwelling unit is $5051 -in.representative_income 5054 Representative total house income in the dwelling unit is $5054 -in.representative_income 5056 Representative total house income in the dwelling unit is $5056 -in.representative_income 5062 Representative total house income in the dwelling unit is $5062 -in.representative_income 5066 Representative total house income in the dwelling unit is $5066 -in.representative_income 5067 Representative total house income in the dwelling unit is $5067 -in.representative_income 5071 Representative total house income in the dwelling unit is $5071 -in.representative_income 5078 Representative total house income in the dwelling unit is $5078 -in.representative_income 5081 Representative total house income in the dwelling unit is $5081 -in.representative_income 5091 Representative total house income in the dwelling unit is $5091 -in.representative_income 5093 Representative total house income in the dwelling unit is $5093 -in.representative_income 5104 Representative total house income in the dwelling unit is $5104 -in.representative_income 5105 Representative total house income in the dwelling unit is $5105 -in.representative_income 5111 Representative total house income in the dwelling unit is $5111 -in.representative_income 5115 Representative total house income in the dwelling unit is $5115 -in.representative_income 5119 Representative total house income in the dwelling unit is $5119 -in.representative_income 5121 Representative total house income in the dwelling unit is $5121 -in.representative_income 5131 Representative total house income in the dwelling unit is $5131 -in.representative_income 5136 Representative total house income in the dwelling unit is $5136 -in.representative_income 5143 Representative total house income in the dwelling unit is $5143 -in.representative_income 5147 Representative total house income in the dwelling unit is $5147 -in.representative_income 5152 Representative total house income in the dwelling unit is $5152 -in.representative_income 5153 Representative total house income in the dwelling unit is $5153 -in.representative_income 5154 Representative total house income in the dwelling unit is $5154 -in.representative_income 5158 Representative total house income in the dwelling unit is $5158 -in.representative_income 5165 Representative total house income in the dwelling unit is $5165 -in.representative_income 5167 Representative total house income in the dwelling unit is $5167 -in.representative_income 5170 Representative total house income in the dwelling unit is $5170 -in.representative_income 5178 Representative total house income in the dwelling unit is $5178 -in.representative_income 5187 Representative total house income in the dwelling unit is $5187 -in.representative_income 5188 Representative total house income in the dwelling unit is $5188 -in.representative_income 5191 Representative total house income in the dwelling unit is $5191 -in.representative_income 5192 Representative total house income in the dwelling unit is $5192 -in.representative_income 5202 Representative total house income in the dwelling unit is $5202 -in.representative_income 5203 Representative total house income in the dwelling unit is $5203 -in.representative_income 5208 Representative total house income in the dwelling unit is $5208 -in.representative_income 5211 Representative total house income in the dwelling unit is $5211 -in.representative_income 5216 Representative total house income in the dwelling unit is $5216 -in.representative_income 5219 Representative total house income in the dwelling unit is $5219 -in.representative_income 5229 Representative total house income in the dwelling unit is $5229 -in.representative_income 5231 Representative total house income in the dwelling unit is $5231 -in.representative_income 5240 Representative total house income in the dwelling unit is $5240 -in.representative_income 5241 Representative total house income in the dwelling unit is $5241 -in.representative_income 5243 Representative total house income in the dwelling unit is $5243 -in.representative_income 5245 Representative total house income in the dwelling unit is $5245 -in.representative_income 5253 Representative total house income in the dwelling unit is $5253 -in.representative_income 5260 Representative total house income in the dwelling unit is $5260 -in.representative_income 5262 Representative total house income in the dwelling unit is $5262 -in.representative_income 5263 Representative total house income in the dwelling unit is $5263 -in.representative_income 5271 Representative total house income in the dwelling unit is $5271 -in.representative_income 5273 Representative total house income in the dwelling unit is $5273 -in.representative_income 5282 Representative total house income in the dwelling unit is $5282 -in.representative_income 5283 Representative total house income in the dwelling unit is $5283 -in.representative_income 5293 Representative total house income in the dwelling unit is $5293 -in.representative_income 5295 Representative total house income in the dwelling unit is $5295 -in.representative_income 5304 Representative total house income in the dwelling unit is $5304 -in.representative_income 5305 Representative total house income in the dwelling unit is $5305 -in.representative_income 5307 Representative total house income in the dwelling unit is $5307 -in.representative_income 5315 Representative total house income in the dwelling unit is $5315 -in.representative_income 5318 Representative total house income in the dwelling unit is $5318 -in.representative_income 5322 Representative total house income in the dwelling unit is $5322 -in.representative_income 5324 Representative total house income in the dwelling unit is $5324 -in.representative_income 5327 Representative total house income in the dwelling unit is $5327 -in.representative_income 5335 Representative total house income in the dwelling unit is $5335 -in.representative_income 5344 Representative total house income in the dwelling unit is $5344 -in.representative_income 5349 Representative total house income in the dwelling unit is $5349 -in.representative_income 5354 Representative total house income in the dwelling unit is $5354 -in.representative_income 5363 Representative total house income in the dwelling unit is $5363 -in.representative_income 5365 Representative total house income in the dwelling unit is $5365 -in.representative_income 5367 Representative total house income in the dwelling unit is $5367 -in.representative_income 5368 Representative total house income in the dwelling unit is $5368 -in.representative_income 5372 Representative total house income in the dwelling unit is $5372 -in.representative_income 5377 Representative total house income in the dwelling unit is $5377 -in.representative_income 5378 Representative total house income in the dwelling unit is $5378 -in.representative_income 5379 Representative total house income in the dwelling unit is $5379 -in.representative_income 5381 Representative total house income in the dwelling unit is $5381 -in.representative_income 5384 Representative total house income in the dwelling unit is $5384 -in.representative_income 5385 Representative total house income in the dwelling unit is $5385 -in.representative_income 5389 Representative total house income in the dwelling unit is $5389 -in.representative_income 5392 Representative total house income in the dwelling unit is $5392 -in.representative_income 5400 Representative total house income in the dwelling unit is $5400 -in.representative_income 5403 Representative total house income in the dwelling unit is $5403 -in.representative_income 5410 Representative total house income in the dwelling unit is $5410 -in.representative_income 5421 Representative total house income in the dwelling unit is $5421 -in.representative_income 5424 Representative total house income in the dwelling unit is $5424 -in.representative_income 5429 Representative total house income in the dwelling unit is $5429 -in.representative_income 5431 Representative total house income in the dwelling unit is $5431 -in.representative_income 5435 Representative total house income in the dwelling unit is $5435 -in.representative_income 5440 Representative total house income in the dwelling unit is $5440 -in.representative_income 5442 Representative total house income in the dwelling unit is $5442 -in.representative_income 5446 Representative total house income in the dwelling unit is $5446 -in.representative_income 5455 Representative total house income in the dwelling unit is $5455 -in.representative_income 5462 Representative total house income in the dwelling unit is $5462 -in.representative_income 5464 Representative total house income in the dwelling unit is $5464 -in.representative_income 5467 Representative total house income in the dwelling unit is $5467 -in.representative_income 5474 Representative total house income in the dwelling unit is $5474 -in.representative_income 5475 Representative total house income in the dwelling unit is $5475 -in.representative_income 5484 Representative total house income in the dwelling unit is $5484 -in.representative_income 5485 Representative total house income in the dwelling unit is $5485 -in.representative_income 5495 Representative total house income in the dwelling unit is $5495 -in.representative_income 5508 Representative total house income in the dwelling unit is $5508 -in.representative_income 5510 Representative total house income in the dwelling unit is $5510 -in.representative_income 5515 Representative total house income in the dwelling unit is $5515 -in.representative_income 5516 Representative total house income in the dwelling unit is $5516 -in.representative_income 5518 Representative total house income in the dwelling unit is $5518 -in.representative_income 5521 Representative total house income in the dwelling unit is $5521 -in.representative_income 5528 Representative total house income in the dwelling unit is $5528 -in.representative_income 5536 Representative total house income in the dwelling unit is $5536 -in.representative_income 5539 Representative total house income in the dwelling unit is $5539 -in.representative_income 5543 Representative total house income in the dwelling unit is $5543 -in.representative_income 5547 Representative total house income in the dwelling unit is $5547 -in.representative_income 5550 Representative total house income in the dwelling unit is $5550 -in.representative_income 5554 Representative total house income in the dwelling unit is $5554 -in.representative_income 5556 Representative total house income in the dwelling unit is $5556 -in.representative_income 5564 Representative total house income in the dwelling unit is $5564 -in.representative_income 5565 Representative total house income in the dwelling unit is $5565 -in.representative_income 5570 Representative total house income in the dwelling unit is $5570 -in.representative_income 5576 Representative total house income in the dwelling unit is $5576 -in.representative_income 5578 Representative total house income in the dwelling unit is $5578 -in.representative_income 5580 Representative total house income in the dwelling unit is $5580 -in.representative_income 5582 Representative total house income in the dwelling unit is $5582 -in.representative_income 5588 Representative total house income in the dwelling unit is $5588 -in.representative_income 5590 Representative total house income in the dwelling unit is $5590 -in.representative_income 5593 Representative total house income in the dwelling unit is $5593 -in.representative_income 5597 Representative total house income in the dwelling unit is $5597 -in.representative_income 5603 Representative total house income in the dwelling unit is $5603 -in.representative_income 5606 Representative total house income in the dwelling unit is $5606 -in.representative_income 5608 Representative total house income in the dwelling unit is $5608 -in.representative_income 5610 Representative total house income in the dwelling unit is $5610 -in.representative_income 5618 Representative total house income in the dwelling unit is $5618 -in.representative_income 5625 Representative total house income in the dwelling unit is $5625 -in.representative_income 5627 Representative total house income in the dwelling unit is $5627 -in.representative_income 5629 Representative total house income in the dwelling unit is $5629 -in.representative_income 5637 Representative total house income in the dwelling unit is $5637 -in.representative_income 5647 Representative total house income in the dwelling unit is $5647 -in.representative_income 5657 Representative total house income in the dwelling unit is $5657 -in.representative_income 5662 Representative total house income in the dwelling unit is $5662 -in.representative_income 5667 Representative total house income in the dwelling unit is $5667 -in.representative_income 5673 Representative total house income in the dwelling unit is $5673 -in.representative_income 5683 Representative total house income in the dwelling unit is $5683 -in.representative_income 5689 Representative total house income in the dwelling unit is $5689 -in.representative_income 5692 Representative total house income in the dwelling unit is $5692 -in.representative_income 5693 Representative total house income in the dwelling unit is $5693 -in.representative_income 5694 Representative total house income in the dwelling unit is $5694 -in.representative_income 5695 Representative total house income in the dwelling unit is $5695 -in.representative_income 5697 Representative total house income in the dwelling unit is $5697 -in.representative_income 5699 Representative total house income in the dwelling unit is $5699 -in.representative_income 5707 Representative total house income in the dwelling unit is $5707 -in.representative_income 5711 Representative total house income in the dwelling unit is $5711 -in.representative_income 5721 Representative total house income in the dwelling unit is $5721 -in.representative_income 5725 Representative total house income in the dwelling unit is $5725 -in.representative_income 5726 Representative total house income in the dwelling unit is $5726 -in.representative_income 5732 Representative total house income in the dwelling unit is $5732 -in.representative_income 5746 Representative total house income in the dwelling unit is $5746 -in.representative_income 5755 Representative total house income in the dwelling unit is $5755 -in.representative_income 5758 Representative total house income in the dwelling unit is $5758 -in.representative_income 5769 Representative total house income in the dwelling unit is $5769 -in.representative_income 5776 Representative total house income in the dwelling unit is $5776 -in.representative_income 5778 Representative total house income in the dwelling unit is $5778 -in.representative_income 5791 Representative total house income in the dwelling unit is $5791 -in.representative_income 5797 Representative total house income in the dwelling unit is $5797 -in.representative_income 5800 Representative total house income in the dwelling unit is $5800 -in.representative_income 5804 Representative total house income in the dwelling unit is $5804 -in.representative_income 5806 Representative total house income in the dwelling unit is $5806 -in.representative_income 5807 Representative total house income in the dwelling unit is $5807 -in.representative_income 5808 Representative total house income in the dwelling unit is $5808 -in.representative_income 5811 Representative total house income in the dwelling unit is $5811 -in.representative_income 5813 Representative total house income in the dwelling unit is $5813 -in.representative_income 5821 Representative total house income in the dwelling unit is $5821 -in.representative_income 5827 Representative total house income in the dwelling unit is $5827 -in.representative_income 5829 Representative total house income in the dwelling unit is $5829 -in.representative_income 5832 Representative total house income in the dwelling unit is $5832 -in.representative_income 5834 Representative total house income in the dwelling unit is $5834 -in.representative_income 5838 Representative total house income in the dwelling unit is $5838 -in.representative_income 5840 Representative total house income in the dwelling unit is $5840 -in.representative_income 5849 Representative total house income in the dwelling unit is $5849 -in.representative_income 5853 Representative total house income in the dwelling unit is $5853 -in.representative_income 5859 Representative total house income in the dwelling unit is $5859 -in.representative_income 5871 Representative total house income in the dwelling unit is $5871 -in.representative_income 5872 Representative total house income in the dwelling unit is $5872 -in.representative_income 5879 Representative total house income in the dwelling unit is $5879 -in.representative_income 5904 Representative total house income in the dwelling unit is $5904 -in.representative_income 5905 Representative total house income in the dwelling unit is $5905 -in.representative_income 5906 Representative total house income in the dwelling unit is $5906 -in.representative_income 5908 Representative total house income in the dwelling unit is $5908 -in.representative_income 5909 Representative total house income in the dwelling unit is $5909 -in.representative_income 5919 Representative total house income in the dwelling unit is $5919 -in.representative_income 5921 Representative total house income in the dwelling unit is $5921 -in.representative_income 5931 Representative total house income in the dwelling unit is $5931 -in.representative_income 5941 Representative total house income in the dwelling unit is $5941 -in.representative_income 5943 Representative total house income in the dwelling unit is $5943 -in.representative_income 5951 Representative total house income in the dwelling unit is $5951 -in.representative_income 5952 Representative total house income in the dwelling unit is $5952 -in.representative_income 5958 Representative total house income in the dwelling unit is $5958 -in.representative_income 5959 Representative total house income in the dwelling unit is $5959 -in.representative_income 5960 Representative total house income in the dwelling unit is $5960 -in.representative_income 5968 Representative total house income in the dwelling unit is $5968 -in.representative_income 5969 Representative total house income in the dwelling unit is $5969 -in.representative_income 5979 Representative total house income in the dwelling unit is $5979 -in.representative_income 5980 Representative total house income in the dwelling unit is $5980 -in.representative_income 5982 Representative total house income in the dwelling unit is $5982 -in.representative_income 5989 Representative total house income in the dwelling unit is $5989 -in.representative_income 5997 Representative total house income in the dwelling unit is $5997 -in.representative_income 6008 Representative total house income in the dwelling unit is $6008 -in.representative_income 6010 Representative total house income in the dwelling unit is $6010 -in.representative_income 6011 Representative total house income in the dwelling unit is $6011 -in.representative_income 6012 Representative total house income in the dwelling unit is $6012 -in.representative_income 6022 Representative total house income in the dwelling unit is $6022 -in.representative_income 6032 Representative total house income in the dwelling unit is $6032 -in.representative_income 6037 Representative total house income in the dwelling unit is $6037 -in.representative_income 6040 Representative total house income in the dwelling unit is $6040 -in.representative_income 6051 Representative total house income in the dwelling unit is $6051 -in.representative_income 6055 Representative total house income in the dwelling unit is $6055 -in.representative_income 6057 Representative total house income in the dwelling unit is $6057 -in.representative_income 6061 Representative total house income in the dwelling unit is $6061 -in.representative_income 6062 Representative total house income in the dwelling unit is $6062 -in.representative_income 6063 Representative total house income in the dwelling unit is $6063 -in.representative_income 6065 Representative total house income in the dwelling unit is $6065 -in.representative_income 6071 Representative total house income in the dwelling unit is $6071 -in.representative_income 6073 Representative total house income in the dwelling unit is $6073 -in.representative_income 6081 Representative total house income in the dwelling unit is $6081 -in.representative_income 6085 Representative total house income in the dwelling unit is $6085 -in.representative_income 6086 Representative total house income in the dwelling unit is $6086 -in.representative_income 6087 Representative total house income in the dwelling unit is $6087 -in.representative_income 6091 Representative total house income in the dwelling unit is $6091 -in.representative_income 6101 Representative total house income in the dwelling unit is $6101 -in.representative_income 6103 Representative total house income in the dwelling unit is $6103 -in.representative_income 6105 Representative total house income in the dwelling unit is $6105 -in.representative_income 6106 Representative total house income in the dwelling unit is $6106 -in.representative_income 6116 Representative total house income in the dwelling unit is $6116 -in.representative_income 6117 Representative total house income in the dwelling unit is $6117 -in.representative_income 6119 Representative total house income in the dwelling unit is $6119 -in.representative_income 6121 Representative total house income in the dwelling unit is $6121 -in.representative_income 6129 Representative total house income in the dwelling unit is $6129 -in.representative_income 6137 Representative total house income in the dwelling unit is $6137 -in.representative_income 6148 Representative total house income in the dwelling unit is $6148 -in.representative_income 6151 Representative total house income in the dwelling unit is $6151 -in.representative_income 6159 Representative total house income in the dwelling unit is $6159 -in.representative_income 6160 Representative total house income in the dwelling unit is $6160 -in.representative_income 6162 Representative total house income in the dwelling unit is $6162 -in.representative_income 6167 Representative total house income in the dwelling unit is $6167 -in.representative_income 6180 Representative total house income in the dwelling unit is $6180 -in.representative_income 6182 Representative total house income in the dwelling unit is $6182 -in.representative_income 6189 Representative total house income in the dwelling unit is $6189 -in.representative_income 6202 Representative total house income in the dwelling unit is $6202 -in.representative_income 6212 Representative total house income in the dwelling unit is $6212 -in.representative_income 6213 Representative total house income in the dwelling unit is $6213 -in.representative_income 6219 Representative total house income in the dwelling unit is $6219 -in.representative_income 6222 Representative total house income in the dwelling unit is $6222 -in.representative_income 6224 Representative total house income in the dwelling unit is $6224 -in.representative_income 6226 Representative total house income in the dwelling unit is $6226 -in.representative_income 6243 Representative total house income in the dwelling unit is $6243 -in.representative_income 6245 Representative total house income in the dwelling unit is $6245 -in.representative_income 6247 Representative total house income in the dwelling unit is $6247 -in.representative_income 6261 Representative total house income in the dwelling unit is $6261 -in.representative_income 6263 Representative total house income in the dwelling unit is $6263 -in.representative_income 6267 Representative total house income in the dwelling unit is $6267 -in.representative_income 6273 Representative total house income in the dwelling unit is $6273 -in.representative_income 6278 Representative total house income in the dwelling unit is $6278 -in.representative_income 6279 Representative total house income in the dwelling unit is $6279 -in.representative_income 6286 Representative total house income in the dwelling unit is $6286 -in.representative_income 6292 Representative total house income in the dwelling unit is $6292 -in.representative_income 6293 Representative total house income in the dwelling unit is $6293 -in.representative_income 6305 Representative total house income in the dwelling unit is $6305 -in.representative_income 6313 Representative total house income in the dwelling unit is $6313 -in.representative_income 6323 Representative total house income in the dwelling unit is $6323 -in.representative_income 6328 Representative total house income in the dwelling unit is $6328 -in.representative_income 6334 Representative total house income in the dwelling unit is $6334 -in.representative_income 6336 Representative total house income in the dwelling unit is $6336 -in.representative_income 6342 Representative total house income in the dwelling unit is $6342 -in.representative_income 6348 Representative total house income in the dwelling unit is $6348 -in.representative_income 6354 Representative total house income in the dwelling unit is $6354 -in.representative_income 6355 Representative total house income in the dwelling unit is $6355 -in.representative_income 6359 Representative total house income in the dwelling unit is $6359 -in.representative_income 6364 Representative total house income in the dwelling unit is $6364 -in.representative_income 6369 Representative total house income in the dwelling unit is $6369 -in.representative_income 6375 Representative total house income in the dwelling unit is $6375 -in.representative_income 6381 Representative total house income in the dwelling unit is $6381 -in.representative_income 6394 Representative total house income in the dwelling unit is $6394 -in.representative_income 6395 Representative total house income in the dwelling unit is $6395 -in.representative_income 6398 Representative total house income in the dwelling unit is $6398 -in.representative_income 6406 Representative total house income in the dwelling unit is $6406 -in.representative_income 6407 Representative total house income in the dwelling unit is $6407 -in.representative_income 6422 Representative total house income in the dwelling unit is $6422 -in.representative_income 6425 Representative total house income in the dwelling unit is $6425 -in.representative_income 6429 Representative total house income in the dwelling unit is $6429 -in.representative_income 6433 Representative total house income in the dwelling unit is $6433 -in.representative_income 6435 Representative total house income in the dwelling unit is $6435 -in.representative_income 6441 Representative total house income in the dwelling unit is $6441 -in.representative_income 6443 Representative total house income in the dwelling unit is $6443 -in.representative_income 6447 Representative total house income in the dwelling unit is $6447 -in.representative_income 6456 Representative total house income in the dwelling unit is $6456 -in.representative_income 6459 Representative total house income in the dwelling unit is $6459 -in.representative_income 6462 Representative total house income in the dwelling unit is $6462 -in.representative_income 6465 Representative total house income in the dwelling unit is $6465 -in.representative_income 6469 Representative total house income in the dwelling unit is $6469 -in.representative_income 6475 Representative total house income in the dwelling unit is $6475 -in.representative_income 6480 Representative total house income in the dwelling unit is $6480 -in.representative_income 6483 Representative total house income in the dwelling unit is $6483 -in.representative_income 6484 Representative total house income in the dwelling unit is $6484 -in.representative_income 6486 Representative total house income in the dwelling unit is $6486 -in.representative_income 6491 Representative total house income in the dwelling unit is $6491 -in.representative_income 6494 Representative total house income in the dwelling unit is $6494 -in.representative_income 6498 Representative total house income in the dwelling unit is $6498 -in.representative_income 6507 Representative total house income in the dwelling unit is $6507 -in.representative_income 6515 Representative total house income in the dwelling unit is $6515 -in.representative_income 6517 Representative total house income in the dwelling unit is $6517 -in.representative_income 6519 Representative total house income in the dwelling unit is $6519 -in.representative_income 6526 Representative total house income in the dwelling unit is $6526 -in.representative_income 6535 Representative total house income in the dwelling unit is $6535 -in.representative_income 6536 Representative total house income in the dwelling unit is $6536 -in.representative_income 6537 Representative total house income in the dwelling unit is $6537 -in.representative_income 6538 Representative total house income in the dwelling unit is $6538 -in.representative_income 6540 Representative total house income in the dwelling unit is $6540 -in.representative_income 6546 Representative total house income in the dwelling unit is $6546 -in.representative_income 6548 Representative total house income in the dwelling unit is $6548 -in.representative_income 6549 Representative total house income in the dwelling unit is $6549 -in.representative_income 6550 Representative total house income in the dwelling unit is $6550 -in.representative_income 6556 Representative total house income in the dwelling unit is $6556 -in.representative_income 6560 Representative total house income in the dwelling unit is $6560 -in.representative_income 6561 Representative total house income in the dwelling unit is $6561 -in.representative_income 6566 Representative total house income in the dwelling unit is $6566 -in.representative_income 6569 Representative total house income in the dwelling unit is $6569 -in.representative_income 6580 Representative total house income in the dwelling unit is $6580 -in.representative_income 6586 Representative total house income in the dwelling unit is $6586 -in.representative_income 6591 Representative total house income in the dwelling unit is $6591 -in.representative_income 6601 Representative total house income in the dwelling unit is $6601 -in.representative_income 6606 Representative total house income in the dwelling unit is $6606 -in.representative_income 6611 Representative total house income in the dwelling unit is $6611 -in.representative_income 6612 Representative total house income in the dwelling unit is $6612 -in.representative_income 6616 Representative total house income in the dwelling unit is $6616 -in.representative_income 6623 Representative total house income in the dwelling unit is $6623 -in.representative_income 6624 Representative total house income in the dwelling unit is $6624 -in.representative_income 6644 Representative total house income in the dwelling unit is $6644 -in.representative_income 6645 Representative total house income in the dwelling unit is $6645 -in.representative_income 6653 Representative total house income in the dwelling unit is $6653 -in.representative_income 6655 Representative total house income in the dwelling unit is $6655 -in.representative_income 6665 Representative total house income in the dwelling unit is $6665 -in.representative_income 6667 Representative total house income in the dwelling unit is $6667 -in.representative_income 6677 Representative total house income in the dwelling unit is $6677 -in.representative_income 6686 Representative total house income in the dwelling unit is $6686 -in.representative_income 6687 Representative total house income in the dwelling unit is $6687 -in.representative_income 6688 Representative total house income in the dwelling unit is $6688 -in.representative_income 6698 Representative total house income in the dwelling unit is $6698 -in.representative_income 6699 Representative total house income in the dwelling unit is $6699 -in.representative_income 6705 Representative total house income in the dwelling unit is $6705 -in.representative_income 6707 Representative total house income in the dwelling unit is $6707 -in.representative_income 6709 Representative total house income in the dwelling unit is $6709 -in.representative_income 6710 Representative total house income in the dwelling unit is $6710 -in.representative_income 6717 Representative total house income in the dwelling unit is $6717 -in.representative_income 6719 Representative total house income in the dwelling unit is $6719 -in.representative_income 6720 Representative total house income in the dwelling unit is $6720 -in.representative_income 6737 Representative total house income in the dwelling unit is $6737 -in.representative_income 6739 Representative total house income in the dwelling unit is $6739 -in.representative_income 6741 Representative total house income in the dwelling unit is $6741 -in.representative_income 6745 Representative total house income in the dwelling unit is $6745 -in.representative_income 6748 Representative total house income in the dwelling unit is $6748 -in.representative_income 6750 Representative total house income in the dwelling unit is $6750 -in.representative_income 6756 Representative total house income in the dwelling unit is $6756 -in.representative_income 6760 Representative total house income in the dwelling unit is $6760 -in.representative_income 6763 Representative total house income in the dwelling unit is $6763 -in.representative_income 6764 Representative total house income in the dwelling unit is $6764 -in.representative_income 6768 Representative total house income in the dwelling unit is $6768 -in.representative_income 6777 Representative total house income in the dwelling unit is $6777 -in.representative_income 6784 Representative total house income in the dwelling unit is $6784 -in.representative_income 6787 Representative total house income in the dwelling unit is $6787 -in.representative_income 6795 Representative total house income in the dwelling unit is $6795 -in.representative_income 6807 Representative total house income in the dwelling unit is $6807 -in.representative_income 6808 Representative total house income in the dwelling unit is $6808 -in.representative_income 6818 Representative total house income in the dwelling unit is $6818 -in.representative_income 6824 Representative total house income in the dwelling unit is $6824 -in.representative_income 6828 Representative total house income in the dwelling unit is $6828 -in.representative_income 6829 Representative total house income in the dwelling unit is $6829 -in.representative_income 6834 Representative total house income in the dwelling unit is $6834 -in.representative_income 6838 Representative total house income in the dwelling unit is $6838 -in.representative_income 6849 Representative total house income in the dwelling unit is $6849 -in.representative_income 6855 Representative total house income in the dwelling unit is $6855 -in.representative_income 6859 Representative total house income in the dwelling unit is $6859 -in.representative_income 6861 Representative total house income in the dwelling unit is $6861 -in.representative_income 6866 Representative total house income in the dwelling unit is $6866 -in.representative_income 6869 Representative total house income in the dwelling unit is $6869 -in.representative_income 6870 Representative total house income in the dwelling unit is $6870 -in.representative_income 6886 Representative total house income in the dwelling unit is $6886 -in.representative_income 6900 Representative total house income in the dwelling unit is $6900 -in.representative_income 6910 Representative total house income in the dwelling unit is $6910 -in.representative_income 6913 Representative total house income in the dwelling unit is $6913 -in.representative_income 6915 Representative total house income in the dwelling unit is $6915 -in.representative_income 6919 Representative total house income in the dwelling unit is $6919 -in.representative_income 6937 Representative total house income in the dwelling unit is $6937 -in.representative_income 6940 Representative total house income in the dwelling unit is $6940 -in.representative_income 6952 Representative total house income in the dwelling unit is $6952 -in.representative_income 6958 Representative total house income in the dwelling unit is $6958 -in.representative_income 6959 Representative total house income in the dwelling unit is $6959 -in.representative_income 6960 Representative total house income in the dwelling unit is $6960 -in.representative_income 6962 Representative total house income in the dwelling unit is $6962 -in.representative_income 6966 Representative total house income in the dwelling unit is $6966 -in.representative_income 6970 Representative total house income in the dwelling unit is $6970 -in.representative_income 6978 Representative total house income in the dwelling unit is $6978 -in.representative_income 6982 Representative total house income in the dwelling unit is $6982 -in.representative_income 6994 Representative total house income in the dwelling unit is $6994 -in.representative_income 7002 Representative total house income in the dwelling unit is $7002 -in.representative_income 7011 Representative total house income in the dwelling unit is $7011 -in.representative_income 7012 Representative total house income in the dwelling unit is $7012 -in.representative_income 7014 Representative total house income in the dwelling unit is $7014 -in.representative_income 7018 Representative total house income in the dwelling unit is $7018 -in.representative_income 7021 Representative total house income in the dwelling unit is $7021 -in.representative_income 7023 Representative total house income in the dwelling unit is $7023 -in.representative_income 7024 Representative total house income in the dwelling unit is $7024 -in.representative_income 7028 Representative total house income in the dwelling unit is $7028 -in.representative_income 7031 Representative total house income in the dwelling unit is $7031 -in.representative_income 7035 Representative total house income in the dwelling unit is $7035 -in.representative_income 7041 Representative total house income in the dwelling unit is $7041 -in.representative_income 7045 Representative total house income in the dwelling unit is $7045 -in.representative_income 7055 Representative total house income in the dwelling unit is $7055 -in.representative_income 7063 Representative total house income in the dwelling unit is $7063 -in.representative_income 7066 Representative total house income in the dwelling unit is $7066 -in.representative_income 7071 Representative total house income in the dwelling unit is $7071 -in.representative_income 7081 Representative total house income in the dwelling unit is $7081 -in.representative_income 7084 Representative total house income in the dwelling unit is $7084 -in.representative_income 7087 Representative total house income in the dwelling unit is $7087 -in.representative_income 7094 Representative total house income in the dwelling unit is $7094 -in.representative_income 7110 Representative total house income in the dwelling unit is $7110 -in.representative_income 7117 Representative total house income in the dwelling unit is $7117 -in.representative_income 7119 Representative total house income in the dwelling unit is $7119 -in.representative_income 7128 Representative total house income in the dwelling unit is $7128 -in.representative_income 7131 Representative total house income in the dwelling unit is $7131 -in.representative_income 7132 Representative total house income in the dwelling unit is $7132 -in.representative_income 7139 Representative total house income in the dwelling unit is $7139 -in.representative_income 7142 Representative total house income in the dwelling unit is $7142 -in.representative_income 7148 Representative total house income in the dwelling unit is $7148 -in.representative_income 7149 Representative total house income in the dwelling unit is $7149 -in.representative_income 7150 Representative total house income in the dwelling unit is $7150 -in.representative_income 7160 Representative total house income in the dwelling unit is $7160 -in.representative_income 7161 Representative total house income in the dwelling unit is $7161 -in.representative_income 7169 Representative total house income in the dwelling unit is $7169 -in.representative_income 7171 Representative total house income in the dwelling unit is $7171 -in.representative_income 7172 Representative total house income in the dwelling unit is $7172 -in.representative_income 7174 Representative total house income in the dwelling unit is $7174 -in.representative_income 7175 Representative total house income in the dwelling unit is $7175 -in.representative_income 7179 Representative total house income in the dwelling unit is $7179 -in.representative_income 7181 Representative total house income in the dwelling unit is $7181 -in.representative_income 7185 Representative total house income in the dwelling unit is $7185 -in.representative_income 7192 Representative total house income in the dwelling unit is $7192 -in.representative_income 7196 Representative total house income in the dwelling unit is $7196 -in.representative_income 7199 Representative total house income in the dwelling unit is $7199 -in.representative_income 7202 Representative total house income in the dwelling unit is $7202 -in.representative_income 7203 Representative total house income in the dwelling unit is $7203 -in.representative_income 7212 Representative total house income in the dwelling unit is $7212 -in.representative_income 7214 Representative total house income in the dwelling unit is $7214 -in.representative_income 7220 Representative total house income in the dwelling unit is $7220 -in.representative_income 7223 Representative total house income in the dwelling unit is $7223 -in.representative_income 7230 Representative total house income in the dwelling unit is $7230 -in.representative_income 7233 Representative total house income in the dwelling unit is $7233 -in.representative_income 7235 Representative total house income in the dwelling unit is $7235 -in.representative_income 7239 Representative total house income in the dwelling unit is $7239 -in.representative_income 7246 Representative total house income in the dwelling unit is $7246 -in.representative_income 7255 Representative total house income in the dwelling unit is $7255 -in.representative_income 7262 Representative total house income in the dwelling unit is $7262 -in.representative_income 7268 Representative total house income in the dwelling unit is $7268 -in.representative_income 7271 Representative total house income in the dwelling unit is $7271 -in.representative_income 7273 Representative total house income in the dwelling unit is $7273 -in.representative_income 7277 Representative total house income in the dwelling unit is $7277 -in.representative_income 7299 Representative total house income in the dwelling unit is $7299 -in.representative_income 7304 Representative total house income in the dwelling unit is $7304 -in.representative_income 7310 Representative total house income in the dwelling unit is $7310 -in.representative_income 7324 Representative total house income in the dwelling unit is $7324 -in.representative_income 7331 Representative total house income in the dwelling unit is $7331 -in.representative_income 7336 Representative total house income in the dwelling unit is $7336 -in.representative_income 7347 Representative total house income in the dwelling unit is $7347 -in.representative_income 7350 Representative total house income in the dwelling unit is $7350 -in.representative_income 7351 Representative total house income in the dwelling unit is $7351 -in.representative_income 7354 Representative total house income in the dwelling unit is $7354 -in.representative_income 7369 Representative total house income in the dwelling unit is $7369 -in.representative_income 7374 Representative total house income in the dwelling unit is $7374 -in.representative_income 7379 Representative total house income in the dwelling unit is $7379 -in.representative_income 7383 Representative total house income in the dwelling unit is $7383 -in.representative_income 7394 Representative total house income in the dwelling unit is $7394 -in.representative_income 7407 Representative total house income in the dwelling unit is $7407 -in.representative_income 7408 Representative total house income in the dwelling unit is $7408 -in.representative_income 7416 Representative total house income in the dwelling unit is $7416 -in.representative_income 7426 Representative total house income in the dwelling unit is $7426 -in.representative_income 7428 Representative total house income in the dwelling unit is $7428 -in.representative_income 7433 Representative total house income in the dwelling unit is $7433 -in.representative_income 7435 Representative total house income in the dwelling unit is $7435 -in.representative_income 7444 Representative total house income in the dwelling unit is $7444 -in.representative_income 7446 Representative total house income in the dwelling unit is $7446 -in.representative_income 7450 Representative total house income in the dwelling unit is $7450 -in.representative_income 7455 Representative total house income in the dwelling unit is $7455 -in.representative_income 7459 Representative total house income in the dwelling unit is $7459 -in.representative_income 7467 Representative total house income in the dwelling unit is $7467 -in.representative_income 7471 Representative total house income in the dwelling unit is $7471 -in.representative_income 7475 Representative total house income in the dwelling unit is $7475 -in.representative_income 7477 Representative total house income in the dwelling unit is $7477 -in.representative_income 7478 Representative total house income in the dwelling unit is $7478 -in.representative_income 7488 Representative total house income in the dwelling unit is $7488 -in.representative_income 7498 Representative total house income in the dwelling unit is $7498 -in.representative_income 7500 Representative total house income in the dwelling unit is $7500 -in.representative_income 7504 Representative total house income in the dwelling unit is $7504 -in.representative_income 7507 Representative total house income in the dwelling unit is $7507 -in.representative_income 7509 Representative total house income in the dwelling unit is $7509 -in.representative_income 7515 Representative total house income in the dwelling unit is $7515 -in.representative_income 7516 Representative total house income in the dwelling unit is $7516 -in.representative_income 7519 Representative total house income in the dwelling unit is $7519 -in.representative_income 7520 Representative total house income in the dwelling unit is $7520 -in.representative_income 7529 Representative total house income in the dwelling unit is $7529 -in.representative_income 7536 Representative total house income in the dwelling unit is $7536 -in.representative_income 7539 Representative total house income in the dwelling unit is $7539 -in.representative_income 7540 Representative total house income in the dwelling unit is $7540 -in.representative_income 7542 Representative total house income in the dwelling unit is $7542 -in.representative_income 7547 Representative total house income in the dwelling unit is $7547 -in.representative_income 7551 Representative total house income in the dwelling unit is $7551 -in.representative_income 7561 Representative total house income in the dwelling unit is $7561 -in.representative_income 7562 Representative total house income in the dwelling unit is $7562 -in.representative_income 7564 Representative total house income in the dwelling unit is $7564 -in.representative_income 7572 Representative total house income in the dwelling unit is $7572 -in.representative_income 7576 Representative total house income in the dwelling unit is $7576 -in.representative_income 7578 Representative total house income in the dwelling unit is $7578 -in.representative_income 7581 Representative total house income in the dwelling unit is $7581 -in.representative_income 7585 Representative total house income in the dwelling unit is $7585 -in.representative_income 7589 Representative total house income in the dwelling unit is $7589 -in.representative_income 7593 Representative total house income in the dwelling unit is $7593 -in.representative_income 7600 Representative total house income in the dwelling unit is $7600 -in.representative_income 7621 Representative total house income in the dwelling unit is $7621 -in.representative_income 7624 Representative total house income in the dwelling unit is $7624 -in.representative_income 7632 Representative total house income in the dwelling unit is $7632 -in.representative_income 7633 Representative total house income in the dwelling unit is $7633 -in.representative_income 7657 Representative total house income in the dwelling unit is $7657 -in.representative_income 7665 Representative total house income in the dwelling unit is $7665 -in.representative_income 7668 Representative total house income in the dwelling unit is $7668 -in.representative_income 7672 Representative total house income in the dwelling unit is $7672 -in.representative_income 7675 Representative total house income in the dwelling unit is $7675 -in.representative_income 7677 Representative total house income in the dwelling unit is $7677 -in.representative_income 7688 Representative total house income in the dwelling unit is $7688 -in.representative_income 7698 Representative total house income in the dwelling unit is $7698 -in.representative_income 7705 Representative total house income in the dwelling unit is $7705 -in.representative_income 7715 Representative total house income in the dwelling unit is $7715 -in.representative_income 7729 Representative total house income in the dwelling unit is $7729 -in.representative_income 7730 Representative total house income in the dwelling unit is $7730 -in.representative_income 7731 Representative total house income in the dwelling unit is $7731 -in.representative_income 7736 Representative total house income in the dwelling unit is $7736 -in.representative_income 7741 Representative total house income in the dwelling unit is $7741 -in.representative_income 7778 Representative total house income in the dwelling unit is $7778 -in.representative_income 7780 Representative total house income in the dwelling unit is $7780 -in.representative_income 7783 Representative total house income in the dwelling unit is $7783 -in.representative_income 7788 Representative total house income in the dwelling unit is $7788 -in.representative_income 7790 Representative total house income in the dwelling unit is $7790 -in.representative_income 7804 Representative total house income in the dwelling unit is $7804 -in.representative_income 7805 Representative total house income in the dwelling unit is $7805 -in.representative_income 7836 Representative total house income in the dwelling unit is $7836 -in.representative_income 7839 Representative total house income in the dwelling unit is $7839 -in.representative_income 7849 Representative total house income in the dwelling unit is $7849 -in.representative_income 7857 Representative total house income in the dwelling unit is $7857 -in.representative_income 7868 Representative total house income in the dwelling unit is $7868 -in.representative_income 7869 Representative total house income in the dwelling unit is $7869 -in.representative_income 7879 Representative total house income in the dwelling unit is $7879 -in.representative_income 7883 Representative total house income in the dwelling unit is $7883 -in.representative_income 7887 Representative total house income in the dwelling unit is $7887 -in.representative_income 7888 Representative total house income in the dwelling unit is $7888 -in.representative_income 7889 Representative total house income in the dwelling unit is $7889 -in.representative_income 7891 Representative total house income in the dwelling unit is $7891 -in.representative_income 7910 Representative total house income in the dwelling unit is $7910 -in.representative_income 7921 Representative total house income in the dwelling unit is $7921 -in.representative_income 7931 Representative total house income in the dwelling unit is $7931 -in.representative_income 7943 Representative total house income in the dwelling unit is $7943 -in.representative_income 7944 Representative total house income in the dwelling unit is $7944 -in.representative_income 7950 Representative total house income in the dwelling unit is $7950 -in.representative_income 7952 Representative total house income in the dwelling unit is $7952 -in.representative_income 7976 Representative total house income in the dwelling unit is $7976 -in.representative_income 7980 Representative total house income in the dwelling unit is $7980 -in.representative_income 7985 Representative total house income in the dwelling unit is $7985 -in.representative_income 7990 Representative total house income in the dwelling unit is $7990 -in.representative_income 7993 Representative total house income in the dwelling unit is $7993 -in.representative_income 7995 Representative total house income in the dwelling unit is $7995 -in.representative_income 8010 Representative total house income in the dwelling unit is $8010 -in.representative_income 8015 Representative total house income in the dwelling unit is $8015 -in.representative_income 8028 Representative total house income in the dwelling unit is $8028 -in.representative_income 8029 Representative total house income in the dwelling unit is $8029 -in.representative_income 8031 Representative total house income in the dwelling unit is $8031 -in.representative_income 8039 Representative total house income in the dwelling unit is $8039 -in.representative_income 8041 Representative total house income in the dwelling unit is $8041 -in.representative_income 8045 Representative total house income in the dwelling unit is $8045 -in.representative_income 8051 Representative total house income in the dwelling unit is $8051 -in.representative_income 8055 Representative total house income in the dwelling unit is $8055 -in.representative_income 8057 Representative total house income in the dwelling unit is $8057 -in.representative_income 8062 Representative total house income in the dwelling unit is $8062 -in.representative_income 8066 Representative total house income in the dwelling unit is $8066 -in.representative_income 8076 Representative total house income in the dwelling unit is $8076 -in.representative_income 8081 Representative total house income in the dwelling unit is $8081 -in.representative_income 8091 Representative total house income in the dwelling unit is $8091 -in.representative_income 8100 Representative total house income in the dwelling unit is $8100 -in.representative_income 8101 Representative total house income in the dwelling unit is $8101 -in.representative_income 8103 Representative total house income in the dwelling unit is $8103 -in.representative_income 8105 Representative total house income in the dwelling unit is $8105 -in.representative_income 8108 Representative total house income in the dwelling unit is $8108 -in.representative_income 8110 Representative total house income in the dwelling unit is $8110 -in.representative_income 8118 Representative total house income in the dwelling unit is $8118 -in.representative_income 8121 Representative total house income in the dwelling unit is $8121 -in.representative_income 8138 Representative total house income in the dwelling unit is $8138 -in.representative_income 8148 Representative total house income in the dwelling unit is $8148 -in.representative_income 8152 Representative total house income in the dwelling unit is $8152 -in.representative_income 8158 Representative total house income in the dwelling unit is $8158 -in.representative_income 8169 Representative total house income in the dwelling unit is $8169 -in.representative_income 8180 Representative total house income in the dwelling unit is $8180 -in.representative_income 8182 Representative total house income in the dwelling unit is $8182 -in.representative_income 8204 Representative total house income in the dwelling unit is $8204 -in.representative_income 8211 Representative total house income in the dwelling unit is $8211 -in.representative_income 8212 Representative total house income in the dwelling unit is $8212 -in.representative_income 8219 Representative total house income in the dwelling unit is $8219 -in.representative_income 8223 Representative total house income in the dwelling unit is $8223 -in.representative_income 8226 Representative total house income in the dwelling unit is $8226 -in.representative_income 8244 Representative total house income in the dwelling unit is $8244 -in.representative_income 8247 Representative total house income in the dwelling unit is $8247 -in.representative_income 8252 Representative total house income in the dwelling unit is $8252 -in.representative_income 8253 Representative total house income in the dwelling unit is $8253 -in.representative_income 8263 Representative total house income in the dwelling unit is $8263 -in.representative_income 8265 Representative total house income in the dwelling unit is $8265 -in.representative_income 8279 Representative total house income in the dwelling unit is $8279 -in.representative_income 8283 Representative total house income in the dwelling unit is $8283 -in.representative_income 8287 Representative total house income in the dwelling unit is $8287 -in.representative_income 8289 Representative total house income in the dwelling unit is $8289 -in.representative_income 8297 Representative total house income in the dwelling unit is $8297 -in.representative_income 8303 Representative total house income in the dwelling unit is $8303 -in.representative_income 8310 Representative total house income in the dwelling unit is $8310 -in.representative_income 8318 Representative total house income in the dwelling unit is $8318 -in.representative_income 8320 Representative total house income in the dwelling unit is $8320 -in.representative_income 8331 Representative total house income in the dwelling unit is $8331 -in.representative_income 8341 Representative total house income in the dwelling unit is $8341 -in.representative_income 8352 Representative total house income in the dwelling unit is $8352 -in.representative_income 8355 Representative total house income in the dwelling unit is $8355 -in.representative_income 8362 Representative total house income in the dwelling unit is $8362 -in.representative_income 8373 Representative total house income in the dwelling unit is $8373 -in.representative_income 8374 Representative total house income in the dwelling unit is $8374 -in.representative_income 8375 Representative total house income in the dwelling unit is $8375 -in.representative_income 8384 Representative total house income in the dwelling unit is $8384 -in.representative_income 8385 Representative total house income in the dwelling unit is $8385 -in.representative_income 8394 Representative total house income in the dwelling unit is $8394 -in.representative_income 8399 Representative total house income in the dwelling unit is $8399 -in.representative_income 8404 Representative total house income in the dwelling unit is $8404 -in.representative_income 8406 Representative total house income in the dwelling unit is $8406 -in.representative_income 8416 Representative total house income in the dwelling unit is $8416 -in.representative_income 8426 Representative total house income in the dwelling unit is $8426 -in.representative_income 8428 Representative total house income in the dwelling unit is $8428 -in.representative_income 8432 Representative total house income in the dwelling unit is $8432 -in.representative_income 8436 Representative total house income in the dwelling unit is $8436 -in.representative_income 8451 Representative total house income in the dwelling unit is $8451 -in.representative_income 8457 Representative total house income in the dwelling unit is $8457 -in.representative_income 8458 Representative total house income in the dwelling unit is $8458 -in.representative_income 8469 Representative total house income in the dwelling unit is $8469 -in.representative_income 8479 Representative total house income in the dwelling unit is $8479 -in.representative_income 8480 Representative total house income in the dwelling unit is $8480 -in.representative_income 8481 Representative total house income in the dwelling unit is $8481 -in.representative_income 8482 Representative total house income in the dwelling unit is $8482 -in.representative_income 8485 Representative total house income in the dwelling unit is $8485 -in.representative_income 8487 Representative total house income in the dwelling unit is $8487 -in.representative_income 8489 Representative total house income in the dwelling unit is $8489 -in.representative_income 8491 Representative total house income in the dwelling unit is $8491 -in.representative_income 8497 Representative total house income in the dwelling unit is $8497 -in.representative_income 8500 Representative total house income in the dwelling unit is $8500 -in.representative_income 8502 Representative total house income in the dwelling unit is $8502 -in.representative_income 8505 Representative total house income in the dwelling unit is $8505 -in.representative_income 8514 Representative total house income in the dwelling unit is $8514 -in.representative_income 8520 Representative total house income in the dwelling unit is $8520 -in.representative_income 8521 Representative total house income in the dwelling unit is $8521 -in.representative_income 8525 Representative total house income in the dwelling unit is $8525 -in.representative_income 8531 Representative total house income in the dwelling unit is $8531 -in.representative_income 8536 Representative total house income in the dwelling unit is $8536 -in.representative_income 8543 Representative total house income in the dwelling unit is $8543 -in.representative_income 8556 Representative total house income in the dwelling unit is $8556 -in.representative_income 8558 Representative total house income in the dwelling unit is $8558 -in.representative_income 8561 Representative total house income in the dwelling unit is $8561 -in.representative_income 8564 Representative total house income in the dwelling unit is $8564 -in.representative_income 8567 Representative total house income in the dwelling unit is $8567 -in.representative_income 8586 Representative total house income in the dwelling unit is $8586 -in.representative_income 8588 Representative total house income in the dwelling unit is $8588 -in.representative_income 8590 Representative total house income in the dwelling unit is $8590 -in.representative_income 8606 Representative total house income in the dwelling unit is $8606 -in.representative_income 8609 Representative total house income in the dwelling unit is $8609 -in.representative_income 8612 Representative total house income in the dwelling unit is $8612 -in.representative_income 8616 Representative total house income in the dwelling unit is $8616 -in.representative_income 8617 Representative total house income in the dwelling unit is $8617 -in.representative_income 8626 Representative total house income in the dwelling unit is $8626 -in.representative_income 8644 Representative total house income in the dwelling unit is $8644 -in.representative_income 8645 Representative total house income in the dwelling unit is $8645 -in.representative_income 8648 Representative total house income in the dwelling unit is $8648 -in.representative_income 8654 Representative total house income in the dwelling unit is $8654 -in.representative_income 8664 Representative total house income in the dwelling unit is $8664 -in.representative_income 8673 Representative total house income in the dwelling unit is $8673 -in.representative_income 8687 Representative total house income in the dwelling unit is $8687 -in.representative_income 8694 Representative total house income in the dwelling unit is $8694 -in.representative_income 8706 Representative total house income in the dwelling unit is $8706 -in.representative_income 8711 Representative total house income in the dwelling unit is $8711 -in.representative_income 8716 Representative total house income in the dwelling unit is $8716 -in.representative_income 8728 Representative total house income in the dwelling unit is $8728 -in.representative_income 8748 Representative total house income in the dwelling unit is $8748 -in.representative_income 8751 Representative total house income in the dwelling unit is $8751 -in.representative_income 8752 Representative total house income in the dwelling unit is $8752 -in.representative_income 8753 Representative total house income in the dwelling unit is $8753 -in.representative_income 8758 Representative total house income in the dwelling unit is $8758 -in.representative_income 8767 Representative total house income in the dwelling unit is $8767 -in.representative_income 8770 Representative total house income in the dwelling unit is $8770 -in.representative_income 8779 Representative total house income in the dwelling unit is $8779 -in.representative_income 8784 Representative total house income in the dwelling unit is $8784 -in.representative_income 8788 Representative total house income in the dwelling unit is $8788 -in.representative_income 8791 Representative total house income in the dwelling unit is $8791 -in.representative_income 8795 Representative total house income in the dwelling unit is $8795 -in.representative_income 8798 Representative total house income in the dwelling unit is $8798 -in.representative_income 8802 Representative total house income in the dwelling unit is $8802 -in.representative_income 8806 Representative total house income in the dwelling unit is $8806 -in.representative_income 8808 Representative total house income in the dwelling unit is $8808 -in.representative_income 8809 Representative total house income in the dwelling unit is $8809 -in.representative_income 8819 Representative total house income in the dwelling unit is $8819 -in.representative_income 8827 Representative total house income in the dwelling unit is $8827 -in.representative_income 8829 Representative total house income in the dwelling unit is $8829 -in.representative_income 8849 Representative total house income in the dwelling unit is $8849 -in.representative_income 8856 Representative total house income in the dwelling unit is $8856 -in.representative_income 8859 Representative total house income in the dwelling unit is $8859 -in.representative_income 8860 Representative total house income in the dwelling unit is $8860 -in.representative_income 8868 Representative total house income in the dwelling unit is $8868 -in.representative_income 8869 Representative total house income in the dwelling unit is $8869 -in.representative_income 8871 Representative total house income in the dwelling unit is $8871 -in.representative_income 8880 Representative total house income in the dwelling unit is $8880 -in.representative_income 8889 Representative total house income in the dwelling unit is $8889 -in.representative_income 8890 Representative total house income in the dwelling unit is $8890 -in.representative_income 8910 Representative total house income in the dwelling unit is $8910 -in.representative_income 8912 Representative total house income in the dwelling unit is $8912 -in.representative_income 8914 Representative total house income in the dwelling unit is $8914 -in.representative_income 8915 Representative total house income in the dwelling unit is $8915 -in.representative_income 8917 Representative total house income in the dwelling unit is $8917 -in.representative_income 8922 Representative total house income in the dwelling unit is $8922 -in.representative_income 8931 Representative total house income in the dwelling unit is $8931 -in.representative_income 8932 Representative total house income in the dwelling unit is $8932 -in.representative_income 8963 Representative total house income in the dwelling unit is $8963 -in.representative_income 8964 Representative total house income in the dwelling unit is $8964 -in.representative_income 8968 Representative total house income in the dwelling unit is $8968 -in.representative_income 8974 Representative total house income in the dwelling unit is $8974 -in.representative_income 8980 Representative total house income in the dwelling unit is $8980 -in.representative_income 8990 Representative total house income in the dwelling unit is $8990 -in.representative_income 8996 Representative total house income in the dwelling unit is $8996 -in.representative_income 9017 Representative total house income in the dwelling unit is $9017 -in.representative_income 9018 Representative total house income in the dwelling unit is $9018 -in.representative_income 9030 Representative total house income in the dwelling unit is $9030 -in.representative_income 9038 Representative total house income in the dwelling unit is $9038 -in.representative_income 9051 Representative total house income in the dwelling unit is $9051 -in.representative_income 9054 Representative total house income in the dwelling unit is $9054 -in.representative_income 9056 Representative total house income in the dwelling unit is $9056 -in.representative_income 9069 Representative total house income in the dwelling unit is $9069 -in.representative_income 9071 Representative total house income in the dwelling unit is $9071 -in.representative_income 9075 Representative total house income in the dwelling unit is $9075 -in.representative_income 9076 Representative total house income in the dwelling unit is $9076 -in.representative_income 9080 Representative total house income in the dwelling unit is $9080 -in.representative_income 9086 Representative total house income in the dwelling unit is $9086 -in.representative_income 9091 Representative total house income in the dwelling unit is $9091 -in.representative_income 9108 Representative total house income in the dwelling unit is $9108 -in.representative_income 9119 Representative total house income in the dwelling unit is $9119 -in.representative_income 9125 Representative total house income in the dwelling unit is $9125 -in.representative_income 9132 Representative total house income in the dwelling unit is $9132 -in.representative_income 9142 Representative total house income in the dwelling unit is $9142 -in.representative_income 9145 Representative total house income in the dwelling unit is $9145 -in.representative_income 9154 Representative total house income in the dwelling unit is $9154 -in.representative_income 9157 Representative total house income in the dwelling unit is $9157 -in.representative_income 9163 Representative total house income in the dwelling unit is $9163 -in.representative_income 9176 Representative total house income in the dwelling unit is $9176 -in.representative_income 9180 Representative total house income in the dwelling unit is $9180 -in.representative_income 9184 Representative total house income in the dwelling unit is $9184 -in.representative_income 9185 Representative total house income in the dwelling unit is $9185 -in.representative_income 9186 Representative total house income in the dwelling unit is $9186 -in.representative_income 9189 Representative total house income in the dwelling unit is $9189 -in.representative_income 9192 Representative total house income in the dwelling unit is $9192 -in.representative_income 9196 Representative total house income in the dwelling unit is $9196 -in.representative_income 9206 Representative total house income in the dwelling unit is $9206 -in.representative_income 9213 Representative total house income in the dwelling unit is $9213 -in.representative_income 9232 Representative total house income in the dwelling unit is $9232 -in.representative_income 9238 Representative total house income in the dwelling unit is $9238 -in.representative_income 9253 Representative total house income in the dwelling unit is $9253 -in.representative_income 9256 Representative total house income in the dwelling unit is $9256 -in.representative_income 9271 Representative total house income in the dwelling unit is $9271 -in.representative_income 9275 Representative total house income in the dwelling unit is $9275 -in.representative_income 9281 Representative total house income in the dwelling unit is $9281 -in.representative_income 9283 Representative total house income in the dwelling unit is $9283 -in.representative_income 9285 Representative total house income in the dwelling unit is $9285 -in.representative_income 9292 Representative total house income in the dwelling unit is $9292 -in.representative_income 9293 Representative total house income in the dwelling unit is $9293 -in.representative_income 9314 Representative total house income in the dwelling unit is $9314 -in.representative_income 9333 Representative total house income in the dwelling unit is $9333 -in.representative_income 9334 Representative total house income in the dwelling unit is $9334 -in.representative_income 9335 Representative total house income in the dwelling unit is $9335 -in.representative_income 9339 Representative total house income in the dwelling unit is $9339 -in.representative_income 9366 Representative total house income in the dwelling unit is $9366 -in.representative_income 9376 Representative total house income in the dwelling unit is $9376 -in.representative_income 9386 Representative total house income in the dwelling unit is $9386 -in.representative_income 9394 Representative total house income in the dwelling unit is $9394 -in.representative_income 9400 Representative total house income in the dwelling unit is $9400 -in.representative_income 9415 Representative total house income in the dwelling unit is $9415 -in.representative_income 9440 Representative total house income in the dwelling unit is $9440 -in.representative_income 9446 Representative total house income in the dwelling unit is $9446 -in.representative_income 9448 Representative total house income in the dwelling unit is $9448 -in.representative_income 9450 Representative total house income in the dwelling unit is $9450 -in.representative_income 9454 Representative total house income in the dwelling unit is $9454 -in.representative_income 9457 Representative total house income in the dwelling unit is $9457 -in.representative_income 9468 Representative total house income in the dwelling unit is $9468 -in.representative_income 9481 Representative total house income in the dwelling unit is $9481 -in.representative_income 9490 Representative total house income in the dwelling unit is $9490 -in.representative_income 9491 Representative total house income in the dwelling unit is $9491 -in.representative_income 9495 Representative total house income in the dwelling unit is $9495 -in.representative_income 9508 Representative total house income in the dwelling unit is $9508 -in.representative_income 9510 Representative total house income in the dwelling unit is $9510 -in.representative_income 9512 Representative total house income in the dwelling unit is $9512 -in.representative_income 9523 Representative total house income in the dwelling unit is $9523 -in.representative_income 9532 Representative total house income in the dwelling unit is $9532 -in.representative_income 9541 Representative total house income in the dwelling unit is $9541 -in.representative_income 9545 Representative total house income in the dwelling unit is $9545 -in.representative_income 9551 Representative total house income in the dwelling unit is $9551 -in.representative_income 9554 Representative total house income in the dwelling unit is $9554 -in.representative_income 9562 Representative total house income in the dwelling unit is $9562 -in.representative_income 9592 Representative total house income in the dwelling unit is $9592 -in.representative_income 9596 Representative total house income in the dwelling unit is $9596 -in.representative_income 9597 Representative total house income in the dwelling unit is $9597 -in.representative_income 9616 Representative total house income in the dwelling unit is $9616 -in.representative_income 9617 Representative total house income in the dwelling unit is $9617 -in.representative_income 9618 Representative total house income in the dwelling unit is $9618 -in.representative_income 9629 Representative total house income in the dwelling unit is $9629 -in.representative_income 9640 Representative total house income in the dwelling unit is $9640 -in.representative_income 9647 Representative total house income in the dwelling unit is $9647 -in.representative_income 9661 Representative total house income in the dwelling unit is $9661 -in.representative_income 9672 Representative total house income in the dwelling unit is $9672 -in.representative_income 9681 Representative total house income in the dwelling unit is $9681 -in.representative_income 9695 Representative total house income in the dwelling unit is $9695 -in.representative_income 9697 Representative total house income in the dwelling unit is $9697 -in.representative_income 9702 Representative total house income in the dwelling unit is $9702 -in.representative_income 9724 Representative total house income in the dwelling unit is $9724 -in.representative_income 9737 Representative total house income in the dwelling unit is $9737 -in.representative_income 9747 Representative total house income in the dwelling unit is $9747 -in.representative_income 9755 Representative total house income in the dwelling unit is $9755 -in.representative_income 9757 Representative total house income in the dwelling unit is $9757 -in.representative_income 9766 Representative total house income in the dwelling unit is $9766 -in.representative_income 9769 Representative total house income in the dwelling unit is $9769 -in.representative_income 9771 Representative total house income in the dwelling unit is $9771 -in.representative_income 9797 Representative total house income in the dwelling unit is $9797 -in.representative_income 9798 Representative total house income in the dwelling unit is $9798 -in.representative_income 9799 Representative total house income in the dwelling unit is $9799 -in.representative_income 9808 Representative total house income in the dwelling unit is $9808 -in.representative_income 9809 Representative total house income in the dwelling unit is $9809 -in.representative_income 9810 Representative total house income in the dwelling unit is $9810 -in.representative_income 9812 Representative total house income in the dwelling unit is $9812 -in.representative_income 9819 Representative total house income in the dwelling unit is $9819 -in.representative_income 9832 Representative total house income in the dwelling unit is $9832 -in.representative_income 9849 Representative total house income in the dwelling unit is $9849 -in.representative_income 9853 Representative total house income in the dwelling unit is $9853 -in.representative_income 9875 Representative total house income in the dwelling unit is $9875 -in.representative_income 9879 Representative total house income in the dwelling unit is $9879 -in.representative_income 9886 Representative total house income in the dwelling unit is $9886 -in.representative_income 9899 Representative total house income in the dwelling unit is $9899 -in.representative_income 9902 Representative total house income in the dwelling unit is $9902 -in.representative_income 9903 Representative total house income in the dwelling unit is $9903 -in.representative_income 9914 Representative total house income in the dwelling unit is $9914 -in.representative_income 9930 Representative total house income in the dwelling unit is $9930 -in.representative_income 9934 Representative total house income in the dwelling unit is $9934 -in.representative_income 9940 Representative total house income in the dwelling unit is $9940 -in.representative_income 9941 Representative total house income in the dwelling unit is $9941 -in.representative_income 9945 Representative total house income in the dwelling unit is $9945 -in.representative_income 9950 Representative total house income in the dwelling unit is $9950 -in.representative_income 9954 Representative total house income in the dwelling unit is $9954 -in.representative_income 9960 Representative total house income in the dwelling unit is $9960 -in.representative_income 9972 Representative total house income in the dwelling unit is $9972 -in.representative_income 9983 Representative total house income in the dwelling unit is $9983 -in.representative_income 9988 Representative total house income in the dwelling unit is $9988 -in.representative_income 9998 Representative total house income in the dwelling unit is $9998 -in.representative_income 10000 Representative total house income in the dwelling unit is $10000 -in.representative_income 10004 Representative total house income in the dwelling unit is $10004 -in.representative_income 10005 Representative total house income in the dwelling unit is $10005 -in.representative_income 10019 Representative total house income in the dwelling unit is $10019 -in.representative_income 10037 Representative total house income in the dwelling unit is $10037 -in.representative_income 10038 Representative total house income in the dwelling unit is $10038 -in.representative_income 10049 Representative total house income in the dwelling unit is $10049 -in.representative_income 10080 Representative total house income in the dwelling unit is $10080 -in.representative_income 10081 Representative total house income in the dwelling unit is $10081 -in.representative_income 10090 Representative total house income in the dwelling unit is $10090 -in.representative_income 10091 Representative total house income in the dwelling unit is $10091 -in.representative_income 10101 Representative total house income in the dwelling unit is $10101 -in.representative_income 10109 Representative total house income in the dwelling unit is $10109 -in.representative_income 10112 Representative total house income in the dwelling unit is $10112 -in.representative_income 10114 Representative total house income in the dwelling unit is $10114 -in.representative_income 10119 Representative total house income in the dwelling unit is $10119 -in.representative_income 10122 Representative total house income in the dwelling unit is $10122 -in.representative_income 10124 Representative total house income in the dwelling unit is $10124 -in.representative_income 10132 Representative total house income in the dwelling unit is $10132 -in.representative_income 10135 Representative total house income in the dwelling unit is $10135 -in.representative_income 10144 Representative total house income in the dwelling unit is $10144 -in.representative_income 10146 Representative total house income in the dwelling unit is $10146 -in.representative_income 10154 Representative total house income in the dwelling unit is $10154 -in.representative_income 10157 Representative total house income in the dwelling unit is $10157 -in.representative_income 10166 Representative total house income in the dwelling unit is $10166 -in.representative_income 10170 Representative total house income in the dwelling unit is $10170 -in.representative_income 10198 Representative total house income in the dwelling unit is $10198 -in.representative_income 10202 Representative total house income in the dwelling unit is $10202 -in.representative_income 10211 Representative total house income in the dwelling unit is $10211 -in.representative_income 10221 Representative total house income in the dwelling unit is $10221 -in.representative_income 10229 Representative total house income in the dwelling unit is $10229 -in.representative_income 10230 Representative total house income in the dwelling unit is $10230 -in.representative_income 10251 Representative total house income in the dwelling unit is $10251 -in.representative_income 10265 Representative total house income in the dwelling unit is $10265 -in.representative_income 10273 Representative total house income in the dwelling unit is $10273 -in.representative_income 10283 Representative total house income in the dwelling unit is $10283 -in.representative_income 10293 Representative total house income in the dwelling unit is $10293 -in.representative_income 10301 Representative total house income in the dwelling unit is $10301 -in.representative_income 10303 Representative total house income in the dwelling unit is $10303 -in.representative_income 10306 Representative total house income in the dwelling unit is $10306 -in.representative_income 10314 Representative total house income in the dwelling unit is $10314 -in.representative_income 10324 Representative total house income in the dwelling unit is $10324 -in.representative_income 10325 Representative total house income in the dwelling unit is $10325 -in.representative_income 10334 Representative total house income in the dwelling unit is $10334 -in.representative_income 10335 Representative total house income in the dwelling unit is $10335 -in.representative_income 10336 Representative total house income in the dwelling unit is $10336 -in.representative_income 10346 Representative total house income in the dwelling unit is $10346 -in.representative_income 10351 Representative total house income in the dwelling unit is $10351 -in.representative_income 10359 Representative total house income in the dwelling unit is $10359 -in.representative_income 10366 Representative total house income in the dwelling unit is $10366 -in.representative_income 10369 Representative total house income in the dwelling unit is $10369 -in.representative_income 10372 Representative total house income in the dwelling unit is $10372 -in.representative_income 10380 Representative total house income in the dwelling unit is $10380 -in.representative_income 10392 Representative total house income in the dwelling unit is $10392 -in.representative_income 10394 Representative total house income in the dwelling unit is $10394 -in.representative_income 10404 Representative total house income in the dwelling unit is $10404 -in.representative_income 10412 Representative total house income in the dwelling unit is $10412 -in.representative_income 10418 Representative total house income in the dwelling unit is $10418 -in.representative_income 10426 Representative total house income in the dwelling unit is $10426 -in.representative_income 10437 Representative total house income in the dwelling unit is $10437 -in.representative_income 10441 Representative total house income in the dwelling unit is $10441 -in.representative_income 10448 Representative total house income in the dwelling unit is $10448 -in.representative_income 10451 Representative total house income in the dwelling unit is $10451 -in.representative_income 10456 Representative total house income in the dwelling unit is $10456 -in.representative_income 10459 Representative total house income in the dwelling unit is $10459 -in.representative_income 10466 Representative total house income in the dwelling unit is $10466 -in.representative_income 10469 Representative total house income in the dwelling unit is $10469 -in.representative_income 10479 Representative total house income in the dwelling unit is $10479 -in.representative_income 10480 Representative total house income in the dwelling unit is $10480 -in.representative_income 10481 Representative total house income in the dwelling unit is $10481 -in.representative_income 10483 Representative total house income in the dwelling unit is $10483 -in.representative_income 10485 Representative total house income in the dwelling unit is $10485 -in.representative_income 10490 Representative total house income in the dwelling unit is $10490 -in.representative_income 10491 Representative total house income in the dwelling unit is $10491 -in.representative_income 10498 Representative total house income in the dwelling unit is $10498 -in.representative_income 10502 Representative total house income in the dwelling unit is $10502 -in.representative_income 10506 Representative total house income in the dwelling unit is $10506 -in.representative_income 10509 Representative total house income in the dwelling unit is $10509 -in.representative_income 10513 Representative total house income in the dwelling unit is $10513 -in.representative_income 10520 Representative total house income in the dwelling unit is $10520 -in.representative_income 10521 Representative total house income in the dwelling unit is $10521 -in.representative_income 10534 Representative total house income in the dwelling unit is $10534 -in.representative_income 10546 Representative total house income in the dwelling unit is $10546 -in.representative_income 10555 Representative total house income in the dwelling unit is $10555 -in.representative_income 10557 Representative total house income in the dwelling unit is $10557 -in.representative_income 10563 Representative total house income in the dwelling unit is $10563 -in.representative_income 10569 Representative total house income in the dwelling unit is $10569 -in.representative_income 10584 Representative total house income in the dwelling unit is $10584 -in.representative_income 10585 Representative total house income in the dwelling unit is $10585 -in.representative_income 10586 Representative total house income in the dwelling unit is $10586 -in.representative_income 10588 Representative total house income in the dwelling unit is $10588 -in.representative_income 10590 Representative total house income in the dwelling unit is $10590 -in.representative_income 10593 Representative total house income in the dwelling unit is $10593 -in.representative_income 10595 Representative total house income in the dwelling unit is $10595 -in.representative_income 10599 Representative total house income in the dwelling unit is $10599 -in.representative_income 10603 Representative total house income in the dwelling unit is $10603 -in.representative_income 10606 Representative total house income in the dwelling unit is $10606 -in.representative_income 10607 Representative total house income in the dwelling unit is $10607 -in.representative_income 10611 Representative total house income in the dwelling unit is $10611 -in.representative_income 10621 Representative total house income in the dwelling unit is $10621 -in.representative_income 10624 Representative total house income in the dwelling unit is $10624 -in.representative_income 10627 Representative total house income in the dwelling unit is $10627 -in.representative_income 10628 Representative total house income in the dwelling unit is $10628 -in.representative_income 10631 Representative total house income in the dwelling unit is $10631 -in.representative_income 10635 Representative total house income in the dwelling unit is $10635 -in.representative_income 10636 Representative total house income in the dwelling unit is $10636 -in.representative_income 10638 Representative total house income in the dwelling unit is $10638 -in.representative_income 10640 Representative total house income in the dwelling unit is $10640 -in.representative_income 10642 Representative total house income in the dwelling unit is $10642 -in.representative_income 10645 Representative total house income in the dwelling unit is $10645 -in.representative_income 10648 Representative total house income in the dwelling unit is $10648 -in.representative_income 10652 Representative total house income in the dwelling unit is $10652 -in.representative_income 10653 Representative total house income in the dwelling unit is $10653 -in.representative_income 10659 Representative total house income in the dwelling unit is $10659 -in.representative_income 10662 Representative total house income in the dwelling unit is $10662 -in.representative_income 10665 Representative total house income in the dwelling unit is $10665 -in.representative_income 10667 Representative total house income in the dwelling unit is $10667 -in.representative_income 10673 Representative total house income in the dwelling unit is $10673 -in.representative_income 10675 Representative total house income in the dwelling unit is $10675 -in.representative_income 10676 Representative total house income in the dwelling unit is $10676 -in.representative_income 10683 Representative total house income in the dwelling unit is $10683 -in.representative_income 10686 Representative total house income in the dwelling unit is $10686 -in.representative_income 10693 Representative total house income in the dwelling unit is $10693 -in.representative_income 10695 Representative total house income in the dwelling unit is $10695 -in.representative_income 10697 Representative total house income in the dwelling unit is $10697 -in.representative_income 10698 Representative total house income in the dwelling unit is $10698 -in.representative_income 10706 Representative total house income in the dwelling unit is $10706 -in.representative_income 10708 Representative total house income in the dwelling unit is $10708 -in.representative_income 10713 Representative total house income in the dwelling unit is $10713 -in.representative_income 10717 Representative total house income in the dwelling unit is $10717 -in.representative_income 10718 Representative total house income in the dwelling unit is $10718 -in.representative_income 10719 Representative total house income in the dwelling unit is $10719 -in.representative_income 10727 Representative total house income in the dwelling unit is $10727 -in.representative_income 10728 Representative total house income in the dwelling unit is $10728 -in.representative_income 10735 Representative total house income in the dwelling unit is $10735 -in.representative_income 10736 Representative total house income in the dwelling unit is $10736 -in.representative_income 10740 Representative total house income in the dwelling unit is $10740 -in.representative_income 10756 Representative total house income in the dwelling unit is $10756 -in.representative_income 10757 Representative total house income in the dwelling unit is $10757 -in.representative_income 10762 Representative total house income in the dwelling unit is $10762 -in.representative_income 10766 Representative total house income in the dwelling unit is $10766 -in.representative_income 10767 Representative total house income in the dwelling unit is $10767 -in.representative_income 10768 Representative total house income in the dwelling unit is $10768 -in.representative_income 10770 Representative total house income in the dwelling unit is $10770 -in.representative_income 10772 Representative total house income in the dwelling unit is $10772 -in.representative_income 10773 Representative total house income in the dwelling unit is $10773 -in.representative_income 10778 Representative total house income in the dwelling unit is $10778 -in.representative_income 10782 Representative total house income in the dwelling unit is $10782 -in.representative_income 10783 Representative total house income in the dwelling unit is $10783 -in.representative_income 10788 Representative total house income in the dwelling unit is $10788 -in.representative_income 10792 Representative total house income in the dwelling unit is $10792 -in.representative_income 10794 Representative total house income in the dwelling unit is $10794 -in.representative_income 10805 Representative total house income in the dwelling unit is $10805 -in.representative_income 10809 Representative total house income in the dwelling unit is $10809 -in.representative_income 10810 Representative total house income in the dwelling unit is $10810 -in.representative_income 10816 Representative total house income in the dwelling unit is $10816 -in.representative_income 10817 Representative total house income in the dwelling unit is $10817 -in.representative_income 10819 Representative total house income in the dwelling unit is $10819 -in.representative_income 10827 Representative total house income in the dwelling unit is $10827 -in.representative_income 10830 Representative total house income in the dwelling unit is $10830 -in.representative_income 10832 Representative total house income in the dwelling unit is $10832 -in.representative_income 10837 Representative total house income in the dwelling unit is $10837 -in.representative_income 10839 Representative total house income in the dwelling unit is $10839 -in.representative_income 10842 Representative total house income in the dwelling unit is $10842 -in.representative_income 10848 Representative total house income in the dwelling unit is $10848 -in.representative_income 10851 Representative total house income in the dwelling unit is $10851 -in.representative_income 10852 Representative total house income in the dwelling unit is $10852 -in.representative_income 10859 Representative total house income in the dwelling unit is $10859 -in.representative_income 10861 Representative total house income in the dwelling unit is $10861 -in.representative_income 10862 Representative total house income in the dwelling unit is $10862 -in.representative_income 10863 Representative total house income in the dwelling unit is $10863 -in.representative_income 10870 Representative total house income in the dwelling unit is $10870 -in.representative_income 10873 Representative total house income in the dwelling unit is $10873 -in.representative_income 10874 Representative total house income in the dwelling unit is $10874 -in.representative_income 10882 Representative total house income in the dwelling unit is $10882 -in.representative_income 10885 Representative total house income in the dwelling unit is $10885 -in.representative_income 10891 Representative total house income in the dwelling unit is $10891 -in.representative_income 10892 Representative total house income in the dwelling unit is $10892 -in.representative_income 10895 Representative total house income in the dwelling unit is $10895 -in.representative_income 10896 Representative total house income in the dwelling unit is $10896 -in.representative_income 10900 Representative total house income in the dwelling unit is $10900 -in.representative_income 10903 Representative total house income in the dwelling unit is $10903 -in.representative_income 10905 Representative total house income in the dwelling unit is $10905 -in.representative_income 10910 Representative total house income in the dwelling unit is $10910 -in.representative_income 10913 Representative total house income in the dwelling unit is $10913 -in.representative_income 10915 Representative total house income in the dwelling unit is $10915 -in.representative_income 10926 Representative total house income in the dwelling unit is $10926 -in.representative_income 10933 Representative total house income in the dwelling unit is $10933 -in.representative_income 10938 Representative total house income in the dwelling unit is $10938 -in.representative_income 10940 Representative total house income in the dwelling unit is $10940 -in.representative_income 10949 Representative total house income in the dwelling unit is $10949 -in.representative_income 10950 Representative total house income in the dwelling unit is $10950 -in.representative_income 10968 Representative total house income in the dwelling unit is $10968 -in.representative_income 10970 Representative total house income in the dwelling unit is $10970 -in.representative_income 10971 Representative total house income in the dwelling unit is $10971 -in.representative_income 10978 Representative total house income in the dwelling unit is $10978 -in.representative_income 10980 Representative total house income in the dwelling unit is $10980 -in.representative_income 10984 Representative total house income in the dwelling unit is $10984 -in.representative_income 10985 Representative total house income in the dwelling unit is $10985 -in.representative_income 10989 Representative total house income in the dwelling unit is $10989 -in.representative_income 10991 Representative total house income in the dwelling unit is $10991 -in.representative_income 10993 Representative total house income in the dwelling unit is $10993 -in.representative_income 10995 Representative total house income in the dwelling unit is $10995 -in.representative_income 10999 Representative total house income in the dwelling unit is $10999 -in.representative_income 11000 Representative total house income in the dwelling unit is $11000 -in.representative_income 11001 Representative total house income in the dwelling unit is $11001 -in.representative_income 11006 Representative total house income in the dwelling unit is $11006 -in.representative_income 11010 Representative total house income in the dwelling unit is $11010 -in.representative_income 11011 Representative total house income in the dwelling unit is $11011 -in.representative_income 11021 Representative total house income in the dwelling unit is $11021 -in.representative_income 11037 Representative total house income in the dwelling unit is $11037 -in.representative_income 11051 Representative total house income in the dwelling unit is $11051 -in.representative_income 11052 Representative total house income in the dwelling unit is $11052 -in.representative_income 11056 Representative total house income in the dwelling unit is $11056 -in.representative_income 11057 Representative total house income in the dwelling unit is $11057 -in.representative_income 11061 Representative total house income in the dwelling unit is $11061 -in.representative_income 11062 Representative total house income in the dwelling unit is $11062 -in.representative_income 11063 Representative total house income in the dwelling unit is $11063 -in.representative_income 11064 Representative total house income in the dwelling unit is $11064 -in.representative_income 11067 Representative total house income in the dwelling unit is $11067 -in.representative_income 11071 Representative total house income in the dwelling unit is $11071 -in.representative_income 11074 Representative total house income in the dwelling unit is $11074 -in.representative_income 11075 Representative total house income in the dwelling unit is $11075 -in.representative_income 11081 Representative total house income in the dwelling unit is $11081 -in.representative_income 11084 Representative total house income in the dwelling unit is $11084 -in.representative_income 11090 Representative total house income in the dwelling unit is $11090 -in.representative_income 11091 Representative total house income in the dwelling unit is $11091 -in.representative_income 11098 Representative total house income in the dwelling unit is $11098 -in.representative_income 11105 Representative total house income in the dwelling unit is $11105 -in.representative_income 11107 Representative total house income in the dwelling unit is $11107 -in.representative_income 11111 Representative total house income in the dwelling unit is $11111 -in.representative_income 11112 Representative total house income in the dwelling unit is $11112 -in.representative_income 11121 Representative total house income in the dwelling unit is $11121 -in.representative_income 11122 Representative total house income in the dwelling unit is $11122 -in.representative_income 11126 Representative total house income in the dwelling unit is $11126 -in.representative_income 11129 Representative total house income in the dwelling unit is $11129 -in.representative_income 11132 Representative total house income in the dwelling unit is $11132 -in.representative_income 11140 Representative total house income in the dwelling unit is $11140 -in.representative_income 11142 Representative total house income in the dwelling unit is $11142 -in.representative_income 11150 Representative total house income in the dwelling unit is $11150 -in.representative_income 11152 Representative total house income in the dwelling unit is $11152 -in.representative_income 11153 Representative total house income in the dwelling unit is $11153 -in.representative_income 11160 Representative total house income in the dwelling unit is $11160 -in.representative_income 11162 Representative total house income in the dwelling unit is $11162 -in.representative_income 11164 Representative total house income in the dwelling unit is $11164 -in.representative_income 11165 Representative total house income in the dwelling unit is $11165 -in.representative_income 11169 Representative total house income in the dwelling unit is $11169 -in.representative_income 11172 Representative total house income in the dwelling unit is $11172 -in.representative_income 11179 Representative total house income in the dwelling unit is $11179 -in.representative_income 11183 Representative total house income in the dwelling unit is $11183 -in.representative_income 11185 Representative total house income in the dwelling unit is $11185 -in.representative_income 11192 Representative total house income in the dwelling unit is $11192 -in.representative_income 11194 Representative total house income in the dwelling unit is $11194 -in.representative_income 11196 Representative total house income in the dwelling unit is $11196 -in.representative_income 11210 Representative total house income in the dwelling unit is $11210 -in.representative_income 11212 Representative total house income in the dwelling unit is $11212 -in.representative_income 11213 Representative total house income in the dwelling unit is $11213 -in.representative_income 11221 Representative total house income in the dwelling unit is $11221 -in.representative_income 11222 Representative total house income in the dwelling unit is $11222 -in.representative_income 11226 Representative total house income in the dwelling unit is $11226 -in.representative_income 11231 Representative total house income in the dwelling unit is $11231 -in.representative_income 11233 Representative total house income in the dwelling unit is $11233 -in.representative_income 11237 Representative total house income in the dwelling unit is $11237 -in.representative_income 11242 Representative total house income in the dwelling unit is $11242 -in.representative_income 11243 Representative total house income in the dwelling unit is $11243 -in.representative_income 11250 Representative total house income in the dwelling unit is $11250 -in.representative_income 11253 Representative total house income in the dwelling unit is $11253 -in.representative_income 11263 Representative total house income in the dwelling unit is $11263 -in.representative_income 11264 Representative total house income in the dwelling unit is $11264 -in.representative_income 11271 Representative total house income in the dwelling unit is $11271 -in.representative_income 11274 Representative total house income in the dwelling unit is $11274 -in.representative_income 11283 Representative total house income in the dwelling unit is $11283 -in.representative_income 11284 Representative total house income in the dwelling unit is $11284 -in.representative_income 11291 Representative total house income in the dwelling unit is $11291 -in.representative_income 11293 Representative total house income in the dwelling unit is $11293 -in.representative_income 11304 Representative total house income in the dwelling unit is $11304 -in.representative_income 11308 Representative total house income in the dwelling unit is $11308 -in.representative_income 11314 Representative total house income in the dwelling unit is $11314 -in.representative_income 11315 Representative total house income in the dwelling unit is $11315 -in.representative_income 11316 Representative total house income in the dwelling unit is $11316 -in.representative_income 11323 Representative total house income in the dwelling unit is $11323 -in.representative_income 11330 Representative total house income in the dwelling unit is $11330 -in.representative_income 11331 Representative total house income in the dwelling unit is $11331 -in.representative_income 11334 Representative total house income in the dwelling unit is $11334 -in.representative_income 11336 Representative total house income in the dwelling unit is $11336 -in.representative_income 11344 Representative total house income in the dwelling unit is $11344 -in.representative_income 11345 Representative total house income in the dwelling unit is $11345 -in.representative_income 11346 Representative total house income in the dwelling unit is $11346 -in.representative_income 11348 Representative total house income in the dwelling unit is $11348 -in.representative_income 11354 Representative total house income in the dwelling unit is $11354 -in.representative_income 11356 Representative total house income in the dwelling unit is $11356 -in.representative_income 11358 Representative total house income in the dwelling unit is $11358 -in.representative_income 11364 Representative total house income in the dwelling unit is $11364 -in.representative_income 11365 Representative total house income in the dwelling unit is $11365 -in.representative_income 11366 Representative total house income in the dwelling unit is $11366 -in.representative_income 11368 Representative total house income in the dwelling unit is $11368 -in.representative_income 11374 Representative total house income in the dwelling unit is $11374 -in.representative_income 11379 Representative total house income in the dwelling unit is $11379 -in.representative_income 11384 Representative total house income in the dwelling unit is $11384 -in.representative_income 11387 Representative total house income in the dwelling unit is $11387 -in.representative_income 11390 Representative total house income in the dwelling unit is $11390 -in.representative_income 11394 Representative total house income in the dwelling unit is $11394 -in.representative_income 11397 Representative total house income in the dwelling unit is $11397 -in.representative_income 11400 Representative total house income in the dwelling unit is $11400 -in.representative_income 11405 Representative total house income in the dwelling unit is $11405 -in.representative_income 11407 Representative total house income in the dwelling unit is $11407 -in.representative_income 11409 Representative total house income in the dwelling unit is $11409 -in.representative_income 11415 Representative total house income in the dwelling unit is $11415 -in.representative_income 11419 Representative total house income in the dwelling unit is $11419 -in.representative_income 11420 Representative total house income in the dwelling unit is $11420 -in.representative_income 11424 Representative total house income in the dwelling unit is $11424 -in.representative_income 11425 Representative total house income in the dwelling unit is $11425 -in.representative_income 11429 Representative total house income in the dwelling unit is $11429 -in.representative_income 11431 Representative total house income in the dwelling unit is $11431 -in.representative_income 11432 Representative total house income in the dwelling unit is $11432 -in.representative_income 11443 Representative total house income in the dwelling unit is $11443 -in.representative_income 11449 Representative total house income in the dwelling unit is $11449 -in.representative_income 11451 Representative total house income in the dwelling unit is $11451 -in.representative_income 11453 Representative total house income in the dwelling unit is $11453 -in.representative_income 11457 Representative total house income in the dwelling unit is $11457 -in.representative_income 11464 Representative total house income in the dwelling unit is $11464 -in.representative_income 11465 Representative total house income in the dwelling unit is $11465 -in.representative_income 11469 Representative total house income in the dwelling unit is $11469 -in.representative_income 11474 Representative total house income in the dwelling unit is $11474 -in.representative_income 11475 Representative total house income in the dwelling unit is $11475 -in.representative_income 11485 Representative total house income in the dwelling unit is $11485 -in.representative_income 11490 Representative total house income in the dwelling unit is $11490 -in.representative_income 11491 Representative total house income in the dwelling unit is $11491 -in.representative_income 11495 Representative total house income in the dwelling unit is $11495 -in.representative_income 11503 Representative total house income in the dwelling unit is $11503 -in.representative_income 11507 Representative total house income in the dwelling unit is $11507 -in.representative_income 11511 Representative total house income in the dwelling unit is $11511 -in.representative_income 11515 Representative total house income in the dwelling unit is $11515 -in.representative_income 11516 Representative total house income in the dwelling unit is $11516 -in.representative_income 11518 Representative total house income in the dwelling unit is $11518 -in.representative_income 11519 Representative total house income in the dwelling unit is $11519 -in.representative_income 11540 Representative total house income in the dwelling unit is $11540 -in.representative_income 11548 Representative total house income in the dwelling unit is $11548 -in.representative_income 11551 Representative total house income in the dwelling unit is $11551 -in.representative_income 11552 Representative total house income in the dwelling unit is $11552 -in.representative_income 11559 Representative total house income in the dwelling unit is $11559 -in.representative_income 11561 Representative total house income in the dwelling unit is $11561 -in.representative_income 11562 Representative total house income in the dwelling unit is $11562 -in.representative_income 11563 Representative total house income in the dwelling unit is $11563 -in.representative_income 11566 Representative total house income in the dwelling unit is $11566 -in.representative_income 11571 Representative total house income in the dwelling unit is $11571 -in.representative_income 11572 Representative total house income in the dwelling unit is $11572 -in.representative_income 11573 Representative total house income in the dwelling unit is $11573 -in.representative_income 11590 Representative total house income in the dwelling unit is $11590 -in.representative_income 11593 Representative total house income in the dwelling unit is $11593 -in.representative_income 11594 Representative total house income in the dwelling unit is $11594 -in.representative_income 11596 Representative total house income in the dwelling unit is $11596 -in.representative_income 11600 Representative total house income in the dwelling unit is $11600 -in.representative_income 11604 Representative total house income in the dwelling unit is $11604 -in.representative_income 11605 Representative total house income in the dwelling unit is $11605 -in.representative_income 11608 Representative total house income in the dwelling unit is $11608 -in.representative_income 11611 Representative total house income in the dwelling unit is $11611 -in.representative_income 11615 Representative total house income in the dwelling unit is $11615 -in.representative_income 11617 Representative total house income in the dwelling unit is $11617 -in.representative_income 11618 Representative total house income in the dwelling unit is $11618 -in.representative_income 11624 Representative total house income in the dwelling unit is $11624 -in.representative_income 11626 Representative total house income in the dwelling unit is $11626 -in.representative_income 11628 Representative total house income in the dwelling unit is $11628 -in.representative_income 11633 Representative total house income in the dwelling unit is $11633 -in.representative_income 11634 Representative total house income in the dwelling unit is $11634 -in.representative_income 11656 Representative total house income in the dwelling unit is $11656 -in.representative_income 11657 Representative total house income in the dwelling unit is $11657 -in.representative_income 11664 Representative total house income in the dwelling unit is $11664 -in.representative_income 11666 Representative total house income in the dwelling unit is $11666 -in.representative_income 11667 Representative total house income in the dwelling unit is $11667 -in.representative_income 11669 Representative total house income in the dwelling unit is $11669 -in.representative_income 11685 Representative total house income in the dwelling unit is $11685 -in.representative_income 11695 Representative total house income in the dwelling unit is $11695 -in.representative_income 11700 Representative total house income in the dwelling unit is $11700 -in.representative_income 11703 Representative total house income in the dwelling unit is $11703 -in.representative_income 11705 Representative total house income in the dwelling unit is $11705 -in.representative_income 11707 Representative total house income in the dwelling unit is $11707 -in.representative_income 11713 Representative total house income in the dwelling unit is $11713 -in.representative_income 11717 Representative total house income in the dwelling unit is $11717 -in.representative_income 11718 Representative total house income in the dwelling unit is $11718 -in.representative_income 11719 Representative total house income in the dwelling unit is $11719 -in.representative_income 11722 Representative total house income in the dwelling unit is $11722 -in.representative_income 11727 Representative total house income in the dwelling unit is $11727 -in.representative_income 11728 Representative total house income in the dwelling unit is $11728 -in.representative_income 11730 Representative total house income in the dwelling unit is $11730 -in.representative_income 11734 Representative total house income in the dwelling unit is $11734 -in.representative_income 11738 Representative total house income in the dwelling unit is $11738 -in.representative_income 11744 Representative total house income in the dwelling unit is $11744 -in.representative_income 11745 Representative total house income in the dwelling unit is $11745 -in.representative_income 11748 Representative total house income in the dwelling unit is $11748 -in.representative_income 11755 Representative total house income in the dwelling unit is $11755 -in.representative_income 11756 Representative total house income in the dwelling unit is $11756 -in.representative_income 11757 Representative total house income in the dwelling unit is $11757 -in.representative_income 11758 Representative total house income in the dwelling unit is $11758 -in.representative_income 11759 Representative total house income in the dwelling unit is $11759 -in.representative_income 11760 Representative total house income in the dwelling unit is $11760 -in.representative_income 11763 Representative total house income in the dwelling unit is $11763 -in.representative_income 11765 Representative total house income in the dwelling unit is $11765 -in.representative_income 11768 Representative total house income in the dwelling unit is $11768 -in.representative_income 11769 Representative total house income in the dwelling unit is $11769 -in.representative_income 11776 Representative total house income in the dwelling unit is $11776 -in.representative_income 11777 Representative total house income in the dwelling unit is $11777 -in.representative_income 11778 Representative total house income in the dwelling unit is $11778 -in.representative_income 11781 Representative total house income in the dwelling unit is $11781 -in.representative_income 11787 Representative total house income in the dwelling unit is $11787 -in.representative_income 11788 Representative total house income in the dwelling unit is $11788 -in.representative_income 11789 Representative total house income in the dwelling unit is $11789 -in.representative_income 11790 Representative total house income in the dwelling unit is $11790 -in.representative_income 11800 Representative total house income in the dwelling unit is $11800 -in.representative_income 11808 Representative total house income in the dwelling unit is $11808 -in.representative_income 11810 Representative total house income in the dwelling unit is $11810 -in.representative_income 11812 Representative total house income in the dwelling unit is $11812 -in.representative_income 11819 Representative total house income in the dwelling unit is $11819 -in.representative_income 11833 Representative total house income in the dwelling unit is $11833 -in.representative_income 11834 Representative total house income in the dwelling unit is $11834 -in.representative_income 11835 Representative total house income in the dwelling unit is $11835 -in.representative_income 11840 Representative total house income in the dwelling unit is $11840 -in.representative_income 11842 Representative total house income in the dwelling unit is $11842 -in.representative_income 11843 Representative total house income in the dwelling unit is $11843 -in.representative_income 11846 Representative total house income in the dwelling unit is $11846 -in.representative_income 11849 Representative total house income in the dwelling unit is $11849 -in.representative_income 11851 Representative total house income in the dwelling unit is $11851 -in.representative_income 11854 Representative total house income in the dwelling unit is $11854 -in.representative_income 11861 Representative total house income in the dwelling unit is $11861 -in.representative_income 11862 Representative total house income in the dwelling unit is $11862 -in.representative_income 11869 Representative total house income in the dwelling unit is $11869 -in.representative_income 11872 Representative total house income in the dwelling unit is $11872 -in.representative_income 11874 Representative total house income in the dwelling unit is $11874 -in.representative_income 11879 Representative total house income in the dwelling unit is $11879 -in.representative_income 11882 Representative total house income in the dwelling unit is $11882 -in.representative_income 11885 Representative total house income in the dwelling unit is $11885 -in.representative_income 11894 Representative total house income in the dwelling unit is $11894 -in.representative_income 11896 Representative total house income in the dwelling unit is $11896 -in.representative_income 11903 Representative total house income in the dwelling unit is $11903 -in.representative_income 11910 Representative total house income in the dwelling unit is $11910 -in.representative_income 11913 Representative total house income in the dwelling unit is $11913 -in.representative_income 11916 Representative total house income in the dwelling unit is $11916 -in.representative_income 11917 Representative total house income in the dwelling unit is $11917 -in.representative_income 11918 Representative total house income in the dwelling unit is $11918 -in.representative_income 11920 Representative total house income in the dwelling unit is $11920 -in.representative_income 11923 Representative total house income in the dwelling unit is $11923 -in.representative_income 11926 Representative total house income in the dwelling unit is $11926 -in.representative_income 11928 Representative total house income in the dwelling unit is $11928 -in.representative_income 11930 Representative total house income in the dwelling unit is $11930 -in.representative_income 11938 Representative total house income in the dwelling unit is $11938 -in.representative_income 11939 Representative total house income in the dwelling unit is $11939 -in.representative_income 11944 Representative total house income in the dwelling unit is $11944 -in.representative_income 11948 Representative total house income in the dwelling unit is $11948 -in.representative_income 11949 Representative total house income in the dwelling unit is $11949 -in.representative_income 11958 Representative total house income in the dwelling unit is $11958 -in.representative_income 11959 Representative total house income in the dwelling unit is $11959 -in.representative_income 11960 Representative total house income in the dwelling unit is $11960 -in.representative_income 11965 Representative total house income in the dwelling unit is $11965 -in.representative_income 11973 Representative total house income in the dwelling unit is $11973 -in.representative_income 11975 Representative total house income in the dwelling unit is $11975 -in.representative_income 11981 Representative total house income in the dwelling unit is $11981 -in.representative_income 11986 Representative total house income in the dwelling unit is $11986 -in.representative_income 11989 Representative total house income in the dwelling unit is $11989 -in.representative_income 11990 Representative total house income in the dwelling unit is $11990 -in.representative_income 11991 Representative total house income in the dwelling unit is $11991 -in.representative_income 11993 Representative total house income in the dwelling unit is $11993 -in.representative_income 11996 Representative total house income in the dwelling unit is $11996 -in.representative_income 12004 Representative total house income in the dwelling unit is $12004 -in.representative_income 12006 Representative total house income in the dwelling unit is $12006 -in.representative_income 12011 Representative total house income in the dwelling unit is $12011 -in.representative_income 12015 Representative total house income in the dwelling unit is $12015 -in.representative_income 12021 Representative total house income in the dwelling unit is $12021 -in.representative_income 12022 Representative total house income in the dwelling unit is $12022 -in.representative_income 12023 Representative total house income in the dwelling unit is $12023 -in.representative_income 12033 Representative total house income in the dwelling unit is $12033 -in.representative_income 12036 Representative total house income in the dwelling unit is $12036 -in.representative_income 12048 Representative total house income in the dwelling unit is $12048 -in.representative_income 12058 Representative total house income in the dwelling unit is $12058 -in.representative_income 12061 Representative total house income in the dwelling unit is $12061 -in.representative_income 12068 Representative total house income in the dwelling unit is $12068 -in.representative_income 12069 Representative total house income in the dwelling unit is $12069 -in.representative_income 12071 Representative total house income in the dwelling unit is $12071 -in.representative_income 12076 Representative total house income in the dwelling unit is $12076 -in.representative_income 12079 Representative total house income in the dwelling unit is $12079 -in.representative_income 12081 Representative total house income in the dwelling unit is $12081 -in.representative_income 12086 Representative total house income in the dwelling unit is $12086 -in.representative_income 12088 Representative total house income in the dwelling unit is $12088 -in.representative_income 12096 Representative total house income in the dwelling unit is $12096 -in.representative_income 12099 Representative total house income in the dwelling unit is $12099 -in.representative_income 12101 Representative total house income in the dwelling unit is $12101 -in.representative_income 12102 Representative total house income in the dwelling unit is $12102 -in.representative_income 12108 Representative total house income in the dwelling unit is $12108 -in.representative_income 12110 Representative total house income in the dwelling unit is $12110 -in.representative_income 12112 Representative total house income in the dwelling unit is $12112 -in.representative_income 12120 Representative total house income in the dwelling unit is $12120 -in.representative_income 12122 Representative total house income in the dwelling unit is $12122 -in.representative_income 12123 Representative total house income in the dwelling unit is $12123 -in.representative_income 12128 Representative total house income in the dwelling unit is $12128 -in.representative_income 12130 Representative total house income in the dwelling unit is $12130 -in.representative_income 12132 Representative total house income in the dwelling unit is $12132 -in.representative_income 12133 Representative total house income in the dwelling unit is $12133 -in.representative_income 12148 Representative total house income in the dwelling unit is $12148 -in.representative_income 12152 Representative total house income in the dwelling unit is $12152 -in.representative_income 12155 Representative total house income in the dwelling unit is $12155 -in.representative_income 12160 Representative total house income in the dwelling unit is $12160 -in.representative_income 12166 Representative total house income in the dwelling unit is $12166 -in.representative_income 12171 Representative total house income in the dwelling unit is $12171 -in.representative_income 12177 Representative total house income in the dwelling unit is $12177 -in.representative_income 12181 Representative total house income in the dwelling unit is $12181 -in.representative_income 12184 Representative total house income in the dwelling unit is $12184 -in.representative_income 12187 Representative total house income in the dwelling unit is $12187 -in.representative_income 12192 Representative total house income in the dwelling unit is $12192 -in.representative_income 12195 Representative total house income in the dwelling unit is $12195 -in.representative_income 12202 Representative total house income in the dwelling unit is $12202 -in.representative_income 12203 Representative total house income in the dwelling unit is $12203 -in.representative_income 12209 Representative total house income in the dwelling unit is $12209 -in.representative_income 12210 Representative total house income in the dwelling unit is $12210 -in.representative_income 12220 Representative total house income in the dwelling unit is $12220 -in.representative_income 12223 Representative total house income in the dwelling unit is $12223 -in.representative_income 12227 Representative total house income in the dwelling unit is $12227 -in.representative_income 12230 Representative total house income in the dwelling unit is $12230 -in.representative_income 12233 Representative total house income in the dwelling unit is $12233 -in.representative_income 12237 Representative total house income in the dwelling unit is $12237 -in.representative_income 12243 Representative total house income in the dwelling unit is $12243 -in.representative_income 12246 Representative total house income in the dwelling unit is $12246 -in.representative_income 12248 Representative total house income in the dwelling unit is $12248 -in.representative_income 12253 Representative total house income in the dwelling unit is $12253 -in.representative_income 12255 Representative total house income in the dwelling unit is $12255 -in.representative_income 12258 Representative total house income in the dwelling unit is $12258 -in.representative_income 12263 Representative total house income in the dwelling unit is $12263 -in.representative_income 12264 Representative total house income in the dwelling unit is $12264 -in.representative_income 12273 Representative total house income in the dwelling unit is $12273 -in.representative_income 12274 Representative total house income in the dwelling unit is $12274 -in.representative_income 12275 Representative total house income in the dwelling unit is $12275 -in.representative_income 12283 Representative total house income in the dwelling unit is $12283 -in.representative_income 12295 Representative total house income in the dwelling unit is $12295 -in.representative_income 12314 Representative total house income in the dwelling unit is $12314 -in.representative_income 12315 Representative total house income in the dwelling unit is $12315 -in.representative_income 12318 Representative total house income in the dwelling unit is $12318 -in.representative_income 12323 Representative total house income in the dwelling unit is $12323 -in.representative_income 12324 Representative total house income in the dwelling unit is $12324 -in.representative_income 12326 Representative total house income in the dwelling unit is $12326 -in.representative_income 12328 Representative total house income in the dwelling unit is $12328 -in.representative_income 12334 Representative total house income in the dwelling unit is $12334 -in.representative_income 12339 Representative total house income in the dwelling unit is $12339 -in.representative_income 12345 Representative total house income in the dwelling unit is $12345 -in.representative_income 12347 Representative total house income in the dwelling unit is $12347 -in.representative_income 12355 Representative total house income in the dwelling unit is $12355 -in.representative_income 12366 Representative total house income in the dwelling unit is $12366 -in.representative_income 12371 Representative total house income in the dwelling unit is $12371 -in.representative_income 12372 Representative total house income in the dwelling unit is $12372 -in.representative_income 12374 Representative total house income in the dwelling unit is $12374 -in.representative_income 12377 Representative total house income in the dwelling unit is $12377 -in.representative_income 12383 Representative total house income in the dwelling unit is $12383 -in.representative_income 12387 Representative total house income in the dwelling unit is $12387 -in.representative_income 12388 Representative total house income in the dwelling unit is $12388 -in.representative_income 12392 Representative total house income in the dwelling unit is $12392 -in.representative_income 12393 Representative total house income in the dwelling unit is $12393 -in.representative_income 12394 Representative total house income in the dwelling unit is $12394 -in.representative_income 12398 Representative total house income in the dwelling unit is $12398 -in.representative_income 12404 Representative total house income in the dwelling unit is $12404 -in.representative_income 12408 Representative total house income in the dwelling unit is $12408 -in.representative_income 12419 Representative total house income in the dwelling unit is $12419 -in.representative_income 12420 Representative total house income in the dwelling unit is $12420 -in.representative_income 12423 Representative total house income in the dwelling unit is $12423 -in.representative_income 12425 Representative total house income in the dwelling unit is $12425 -in.representative_income 12426 Representative total house income in the dwelling unit is $12426 -in.representative_income 12429 Representative total house income in the dwelling unit is $12429 -in.representative_income 12434 Representative total house income in the dwelling unit is $12434 -in.representative_income 12440 Representative total house income in the dwelling unit is $12440 -in.representative_income 12445 Representative total house income in the dwelling unit is $12445 -in.representative_income 12447 Representative total house income in the dwelling unit is $12447 -in.representative_income 12452 Representative total house income in the dwelling unit is $12452 -in.representative_income 12468 Representative total house income in the dwelling unit is $12468 -in.representative_income 12469 Representative total house income in the dwelling unit is $12469 -in.representative_income 12475 Representative total house income in the dwelling unit is $12475 -in.representative_income 12480 Representative total house income in the dwelling unit is $12480 -in.representative_income 12485 Representative total house income in the dwelling unit is $12485 -in.representative_income 12490 Representative total house income in the dwelling unit is $12490 -in.representative_income 12495 Representative total house income in the dwelling unit is $12495 -in.representative_income 12497 Representative total house income in the dwelling unit is $12497 -in.representative_income 12501 Representative total house income in the dwelling unit is $12501 -in.representative_income 12512 Representative total house income in the dwelling unit is $12512 -in.representative_income 12516 Representative total house income in the dwelling unit is $12516 -in.representative_income 12523 Representative total house income in the dwelling unit is $12523 -in.representative_income 12526 Representative total house income in the dwelling unit is $12526 -in.representative_income 12527 Representative total house income in the dwelling unit is $12527 -in.representative_income 12529 Representative total house income in the dwelling unit is $12529 -in.representative_income 12534 Representative total house income in the dwelling unit is $12534 -in.representative_income 12542 Representative total house income in the dwelling unit is $12542 -in.representative_income 12550 Representative total house income in the dwelling unit is $12550 -in.representative_income 12552 Representative total house income in the dwelling unit is $12552 -in.representative_income 12560 Representative total house income in the dwelling unit is $12560 -in.representative_income 12571 Representative total house income in the dwelling unit is $12571 -in.representative_income 12577 Representative total house income in the dwelling unit is $12577 -in.representative_income 12581 Representative total house income in the dwelling unit is $12581 -in.representative_income 12584 Representative total house income in the dwelling unit is $12584 -in.representative_income 12588 Representative total house income in the dwelling unit is $12588 -in.representative_income 12590 Representative total house income in the dwelling unit is $12590 -in.representative_income 12592 Representative total house income in the dwelling unit is $12592 -in.representative_income 12593 Representative total house income in the dwelling unit is $12593 -in.representative_income 12603 Representative total house income in the dwelling unit is $12603 -in.representative_income 12604 Representative total house income in the dwelling unit is $12604 -in.representative_income 12613 Representative total house income in the dwelling unit is $12613 -in.representative_income 12618 Representative total house income in the dwelling unit is $12618 -in.representative_income 12624 Representative total house income in the dwelling unit is $12624 -in.representative_income 12627 Representative total house income in the dwelling unit is $12627 -in.representative_income 12637 Representative total house income in the dwelling unit is $12637 -in.representative_income 12640 Representative total house income in the dwelling unit is $12640 -in.representative_income 12642 Representative total house income in the dwelling unit is $12642 -in.representative_income 12643 Representative total house income in the dwelling unit is $12643 -in.representative_income 12645 Representative total house income in the dwelling unit is $12645 -in.representative_income 12652 Representative total house income in the dwelling unit is $12652 -in.representative_income 12655 Representative total house income in the dwelling unit is $12655 -in.representative_income 12657 Representative total house income in the dwelling unit is $12657 -in.representative_income 12659 Representative total house income in the dwelling unit is $12659 -in.representative_income 12663 Representative total house income in the dwelling unit is $12663 -in.representative_income 12666 Representative total house income in the dwelling unit is $12666 -in.representative_income 12675 Representative total house income in the dwelling unit is $12675 -in.representative_income 12676 Representative total house income in the dwelling unit is $12676 -in.representative_income 12687 Representative total house income in the dwelling unit is $12687 -in.representative_income 12696 Representative total house income in the dwelling unit is $12696 -in.representative_income 12706 Representative total house income in the dwelling unit is $12706 -in.representative_income 12707 Representative total house income in the dwelling unit is $12707 -in.representative_income 12708 Representative total house income in the dwelling unit is $12708 -in.representative_income 12713 Representative total house income in the dwelling unit is $12713 -in.representative_income 12717 Representative total house income in the dwelling unit is $12717 -in.representative_income 12719 Representative total house income in the dwelling unit is $12719 -in.representative_income 12728 Representative total house income in the dwelling unit is $12728 -in.representative_income 12729 Representative total house income in the dwelling unit is $12729 -in.representative_income 12739 Representative total house income in the dwelling unit is $12739 -in.representative_income 12740 Representative total house income in the dwelling unit is $12740 -in.representative_income 12749 Representative total house income in the dwelling unit is $12749 -in.representative_income 12753 Representative total house income in the dwelling unit is $12753 -in.representative_income 12756 Representative total house income in the dwelling unit is $12756 -in.representative_income 12759 Representative total house income in the dwelling unit is $12759 -in.representative_income 12761 Representative total house income in the dwelling unit is $12761 -in.representative_income 12771 Representative total house income in the dwelling unit is $12771 -in.representative_income 12774 Representative total house income in the dwelling unit is $12774 -in.representative_income 12784 Representative total house income in the dwelling unit is $12784 -in.representative_income 12790 Representative total house income in the dwelling unit is $12790 -in.representative_income 12793 Representative total house income in the dwelling unit is $12793 -in.representative_income 12795 Representative total house income in the dwelling unit is $12795 -in.representative_income 12800 Representative total house income in the dwelling unit is $12800 -in.representative_income 12803 Representative total house income in the dwelling unit is $12803 -in.representative_income 12804 Representative total house income in the dwelling unit is $12804 -in.representative_income 12810 Representative total house income in the dwelling unit is $12810 -in.representative_income 12814 Representative total house income in the dwelling unit is $12814 -in.representative_income 12819 Representative total house income in the dwelling unit is $12819 -in.representative_income 12829 Representative total house income in the dwelling unit is $12829 -in.representative_income 12833 Representative total house income in the dwelling unit is $12833 -in.representative_income 12836 Representative total house income in the dwelling unit is $12836 -in.representative_income 12842 Representative total house income in the dwelling unit is $12842 -in.representative_income 12846 Representative total house income in the dwelling unit is $12846 -in.representative_income 12855 Representative total house income in the dwelling unit is $12855 -in.representative_income 12857 Representative total house income in the dwelling unit is $12857 -in.representative_income 12860 Representative total house income in the dwelling unit is $12860 -in.representative_income 12866 Representative total house income in the dwelling unit is $12866 -in.representative_income 12881 Representative total house income in the dwelling unit is $12881 -in.representative_income 12882 Representative total house income in the dwelling unit is $12882 -in.representative_income 12890 Representative total house income in the dwelling unit is $12890 -in.representative_income 12892 Representative total house income in the dwelling unit is $12892 -in.representative_income 12893 Representative total house income in the dwelling unit is $12893 -in.representative_income 12903 Representative total house income in the dwelling unit is $12903 -in.representative_income 12911 Representative total house income in the dwelling unit is $12911 -in.representative_income 12913 Representative total house income in the dwelling unit is $12913 -in.representative_income 12914 Representative total house income in the dwelling unit is $12914 -in.representative_income 12919 Representative total house income in the dwelling unit is $12919 -in.representative_income 12923 Representative total house income in the dwelling unit is $12923 -in.representative_income 12926 Representative total house income in the dwelling unit is $12926 -in.representative_income 12929 Representative total house income in the dwelling unit is $12929 -in.representative_income 12930 Representative total house income in the dwelling unit is $12930 -in.representative_income 12934 Representative total house income in the dwelling unit is $12934 -in.representative_income 12940 Representative total house income in the dwelling unit is $12940 -in.representative_income 12944 Representative total house income in the dwelling unit is $12944 -in.representative_income 12950 Representative total house income in the dwelling unit is $12950 -in.representative_income 12954 Representative total house income in the dwelling unit is $12954 -in.representative_income 12957 Representative total house income in the dwelling unit is $12957 -in.representative_income 12961 Representative total house income in the dwelling unit is $12961 -in.representative_income 12965 Representative total house income in the dwelling unit is $12965 -in.representative_income 12966 Representative total house income in the dwelling unit is $12966 -in.representative_income 12972 Representative total house income in the dwelling unit is $12972 -in.representative_income 12976 Representative total house income in the dwelling unit is $12976 -in.representative_income 12984 Representative total house income in the dwelling unit is $12984 -in.representative_income 12987 Representative total house income in the dwelling unit is $12987 -in.representative_income 12989 Representative total house income in the dwelling unit is $12989 -in.representative_income 12990 Representative total house income in the dwelling unit is $12990 -in.representative_income 12993 Representative total house income in the dwelling unit is $12993 -in.representative_income 12996 Representative total house income in the dwelling unit is $12996 -in.representative_income 12998 Representative total house income in the dwelling unit is $12998 -in.representative_income 13000 Representative total house income in the dwelling unit is $13000 -in.representative_income 13001 Representative total house income in the dwelling unit is $13001 -in.representative_income 13006 Representative total house income in the dwelling unit is $13006 -in.representative_income 13008 Representative total house income in the dwelling unit is $13008 -in.representative_income 13010 Representative total house income in the dwelling unit is $13010 -in.representative_income 13017 Representative total house income in the dwelling unit is $13017 -in.representative_income 13019 Representative total house income in the dwelling unit is $13019 -in.representative_income 13021 Representative total house income in the dwelling unit is $13021 -in.representative_income 13025 Representative total house income in the dwelling unit is $13025 -in.representative_income 13030 Representative total house income in the dwelling unit is $13030 -in.representative_income 13031 Representative total house income in the dwelling unit is $13031 -in.representative_income 13032 Representative total house income in the dwelling unit is $13032 -in.representative_income 13042 Representative total house income in the dwelling unit is $13042 -in.representative_income 13045 Representative total house income in the dwelling unit is $13045 -in.representative_income 13048 Representative total house income in the dwelling unit is $13048 -in.representative_income 13049 Representative total house income in the dwelling unit is $13049 -in.representative_income 13054 Representative total house income in the dwelling unit is $13054 -in.representative_income 13058 Representative total house income in the dwelling unit is $13058 -in.representative_income 13067 Representative total house income in the dwelling unit is $13067 -in.representative_income 13071 Representative total house income in the dwelling unit is $13071 -in.representative_income 13074 Representative total house income in the dwelling unit is $13074 -in.representative_income 13075 Representative total house income in the dwelling unit is $13075 -in.representative_income 13077 Representative total house income in the dwelling unit is $13077 -in.representative_income 13081 Representative total house income in the dwelling unit is $13081 -in.representative_income 13084 Representative total house income in the dwelling unit is $13084 -in.representative_income 13085 Representative total house income in the dwelling unit is $13085 -in.representative_income 13091 Representative total house income in the dwelling unit is $13091 -in.representative_income 13096 Representative total house income in the dwelling unit is $13096 -in.representative_income 13098 Representative total house income in the dwelling unit is $13098 -in.representative_income 13099 Representative total house income in the dwelling unit is $13099 -in.representative_income 13107 Representative total house income in the dwelling unit is $13107 -in.representative_income 13112 Representative total house income in the dwelling unit is $13112 -in.representative_income 13117 Representative total house income in the dwelling unit is $13117 -in.representative_income 13128 Representative total house income in the dwelling unit is $13128 -in.representative_income 13132 Representative total house income in the dwelling unit is $13132 -in.representative_income 13139 Representative total house income in the dwelling unit is $13139 -in.representative_income 13141 Representative total house income in the dwelling unit is $13141 -in.representative_income 13150 Representative total house income in the dwelling unit is $13150 -in.representative_income 13151 Representative total house income in the dwelling unit is $13151 -in.representative_income 13152 Representative total house income in the dwelling unit is $13152 -in.representative_income 13161 Representative total house income in the dwelling unit is $13161 -in.representative_income 13171 Representative total house income in the dwelling unit is $13171 -in.representative_income 13172 Representative total house income in the dwelling unit is $13172 -in.representative_income 13174 Representative total house income in the dwelling unit is $13174 -in.representative_income 13182 Representative total house income in the dwelling unit is $13182 -in.representative_income 13183 Representative total house income in the dwelling unit is $13183 -in.representative_income 13190 Representative total house income in the dwelling unit is $13190 -in.representative_income 13192 Representative total house income in the dwelling unit is $13192 -in.representative_income 13203 Representative total house income in the dwelling unit is $13203 -in.representative_income 13204 Representative total house income in the dwelling unit is $13204 -in.representative_income 13205 Representative total house income in the dwelling unit is $13205 -in.representative_income 13214 Representative total house income in the dwelling unit is $13214 -in.representative_income 13215 Representative total house income in the dwelling unit is $13215 -in.representative_income 13225 Representative total house income in the dwelling unit is $13225 -in.representative_income 13233 Representative total house income in the dwelling unit is $13233 -in.representative_income 13235 Representative total house income in the dwelling unit is $13235 -in.representative_income 13236 Representative total house income in the dwelling unit is $13236 -in.representative_income 13247 Representative total house income in the dwelling unit is $13247 -in.representative_income 13257 Representative total house income in the dwelling unit is $13257 -in.representative_income 13258 Representative total house income in the dwelling unit is $13258 -in.representative_income 13263 Representative total house income in the dwelling unit is $13263 -in.representative_income 13267 Representative total house income in the dwelling unit is $13267 -in.representative_income 13268 Representative total house income in the dwelling unit is $13268 -in.representative_income 13272 Representative total house income in the dwelling unit is $13272 -in.representative_income 13275 Representative total house income in the dwelling unit is $13275 -in.representative_income 13279 Representative total house income in the dwelling unit is $13279 -in.representative_income 13283 Representative total house income in the dwelling unit is $13283 -in.representative_income 13285 Representative total house income in the dwelling unit is $13285 -in.representative_income 13288 Representative total house income in the dwelling unit is $13288 -in.representative_income 13289 Representative total house income in the dwelling unit is $13289 -in.representative_income 13290 Representative total house income in the dwelling unit is $13290 -in.representative_income 13294 Representative total house income in the dwelling unit is $13294 -in.representative_income 13296 Representative total house income in the dwelling unit is $13296 -in.representative_income 13300 Representative total house income in the dwelling unit is $13300 -in.representative_income 13301 Representative total house income in the dwelling unit is $13301 -in.representative_income 13304 Representative total house income in the dwelling unit is $13304 -in.representative_income 13305 Representative total house income in the dwelling unit is $13305 -in.representative_income 13306 Representative total house income in the dwelling unit is $13306 -in.representative_income 13309 Representative total house income in the dwelling unit is $13309 -in.representative_income 13311 Representative total house income in the dwelling unit is $13311 -in.representative_income 13312 Representative total house income in the dwelling unit is $13312 -in.representative_income 13314 Representative total house income in the dwelling unit is $13314 -in.representative_income 13319 Representative total house income in the dwelling unit is $13319 -in.representative_income 13321 Representative total house income in the dwelling unit is $13321 -in.representative_income 13331 Representative total house income in the dwelling unit is $13331 -in.representative_income 13332 Representative total house income in the dwelling unit is $13332 -in.representative_income 13333 Representative total house income in the dwelling unit is $13333 -in.representative_income 13334 Representative total house income in the dwelling unit is $13334 -in.representative_income 13336 Representative total house income in the dwelling unit is $13336 -in.representative_income 13338 Representative total house income in the dwelling unit is $13338 -in.representative_income 13344 Representative total house income in the dwelling unit is $13344 -in.representative_income 13350 Representative total house income in the dwelling unit is $13350 -in.representative_income 13354 Representative total house income in the dwelling unit is $13354 -in.representative_income 13357 Representative total house income in the dwelling unit is $13357 -in.representative_income 13358 Representative total house income in the dwelling unit is $13358 -in.representative_income 13359 Representative total house income in the dwelling unit is $13359 -in.representative_income 13361 Representative total house income in the dwelling unit is $13361 -in.representative_income 13362 Representative total house income in the dwelling unit is $13362 -in.representative_income 13364 Representative total house income in the dwelling unit is $13364 -in.representative_income 13365 Representative total house income in the dwelling unit is $13365 -in.representative_income 13366 Representative total house income in the dwelling unit is $13366 -in.representative_income 13376 Representative total house income in the dwelling unit is $13376 -in.representative_income 13384 Representative total house income in the dwelling unit is $13384 -in.representative_income 13388 Representative total house income in the dwelling unit is $13388 -in.representative_income 13393 Representative total house income in the dwelling unit is $13393 -in.representative_income 13395 Representative total house income in the dwelling unit is $13395 -in.representative_income 13397 Representative total house income in the dwelling unit is $13397 -in.representative_income 13398 Representative total house income in the dwelling unit is $13398 -in.representative_income 13404 Representative total house income in the dwelling unit is $13404 -in.representative_income 13405 Representative total house income in the dwelling unit is $13405 -in.representative_income 13407 Representative total house income in the dwelling unit is $13407 -in.representative_income 13409 Representative total house income in the dwelling unit is $13409 -in.representative_income 13411 Representative total house income in the dwelling unit is $13411 -in.representative_income 13414 Representative total house income in the dwelling unit is $13414 -in.representative_income 13415 Representative total house income in the dwelling unit is $13415 -in.representative_income 13418 Representative total house income in the dwelling unit is $13418 -in.representative_income 13419 Representative total house income in the dwelling unit is $13419 -in.representative_income 13423 Representative total house income in the dwelling unit is $13423 -in.representative_income 13426 Representative total house income in the dwelling unit is $13426 -in.representative_income 13435 Representative total house income in the dwelling unit is $13435 -in.representative_income 13436 Representative total house income in the dwelling unit is $13436 -in.representative_income 13439 Representative total house income in the dwelling unit is $13439 -in.representative_income 13445 Representative total house income in the dwelling unit is $13445 -in.representative_income 13446 Representative total house income in the dwelling unit is $13446 -in.representative_income 13450 Representative total house income in the dwelling unit is $13450 -in.representative_income 13455 Representative total house income in the dwelling unit is $13455 -in.representative_income 13460 Representative total house income in the dwelling unit is $13460 -in.representative_income 13463 Representative total house income in the dwelling unit is $13463 -in.representative_income 13465 Representative total house income in the dwelling unit is $13465 -in.representative_income 13466 Representative total house income in the dwelling unit is $13466 -in.representative_income 13471 Representative total house income in the dwelling unit is $13471 -in.representative_income 13475 Representative total house income in the dwelling unit is $13475 -in.representative_income 13478 Representative total house income in the dwelling unit is $13478 -in.representative_income 13484 Representative total house income in the dwelling unit is $13484 -in.representative_income 13485 Representative total house income in the dwelling unit is $13485 -in.representative_income 13488 Representative total house income in the dwelling unit is $13488 -in.representative_income 13494 Representative total house income in the dwelling unit is $13494 -in.representative_income 13499 Representative total house income in the dwelling unit is $13499 -in.representative_income 13504 Representative total house income in the dwelling unit is $13504 -in.representative_income 13506 Representative total house income in the dwelling unit is $13506 -in.representative_income 13507 Representative total house income in the dwelling unit is $13507 -in.representative_income 13509 Representative total house income in the dwelling unit is $13509 -in.representative_income 13512 Representative total house income in the dwelling unit is $13512 -in.representative_income 13516 Representative total house income in the dwelling unit is $13516 -in.representative_income 13517 Representative total house income in the dwelling unit is $13517 -in.representative_income 13521 Representative total house income in the dwelling unit is $13521 -in.representative_income 13523 Representative total house income in the dwelling unit is $13523 -in.representative_income 13526 Representative total house income in the dwelling unit is $13526 -in.representative_income 13531 Representative total house income in the dwelling unit is $13531 -in.representative_income 13533 Representative total house income in the dwelling unit is $13533 -in.representative_income 13536 Representative total house income in the dwelling unit is $13536 -in.representative_income 13552 Representative total house income in the dwelling unit is $13552 -in.representative_income 13560 Representative total house income in the dwelling unit is $13560 -in.representative_income 13567 Representative total house income in the dwelling unit is $13567 -in.representative_income 13568 Representative total house income in the dwelling unit is $13568 -in.representative_income 13569 Representative total house income in the dwelling unit is $13569 -in.representative_income 13570 Representative total house income in the dwelling unit is $13570 -in.representative_income 13576 Representative total house income in the dwelling unit is $13576 -in.representative_income 13579 Representative total house income in the dwelling unit is $13579 -in.representative_income 13581 Representative total house income in the dwelling unit is $13581 -in.representative_income 13588 Representative total house income in the dwelling unit is $13588 -in.representative_income 13590 Representative total house income in the dwelling unit is $13590 -in.representative_income 13592 Representative total house income in the dwelling unit is $13592 -in.representative_income 13593 Representative total house income in the dwelling unit is $13593 -in.representative_income 13595 Representative total house income in the dwelling unit is $13595 -in.representative_income 13605 Representative total house income in the dwelling unit is $13605 -in.representative_income 13607 Representative total house income in the dwelling unit is $13607 -in.representative_income 13611 Representative total house income in the dwelling unit is $13611 -in.representative_income 13612 Representative total house income in the dwelling unit is $13612 -in.representative_income 13614 Representative total house income in the dwelling unit is $13614 -in.representative_income 13615 Representative total house income in the dwelling unit is $13615 -in.representative_income 13618 Representative total house income in the dwelling unit is $13618 -in.representative_income 13623 Representative total house income in the dwelling unit is $13623 -in.representative_income 13625 Representative total house income in the dwelling unit is $13625 -in.representative_income 13626 Representative total house income in the dwelling unit is $13626 -in.representative_income 13627 Representative total house income in the dwelling unit is $13627 -in.representative_income 13633 Representative total house income in the dwelling unit is $13633 -in.representative_income 13634 Representative total house income in the dwelling unit is $13634 -in.representative_income 13635 Representative total house income in the dwelling unit is $13635 -in.representative_income 13636 Representative total house income in the dwelling unit is $13636 -in.representative_income 13637 Representative total house income in the dwelling unit is $13637 -in.representative_income 13643 Representative total house income in the dwelling unit is $13643 -in.representative_income 13644 Representative total house income in the dwelling unit is $13644 -in.representative_income 13646 Representative total house income in the dwelling unit is $13646 -in.representative_income 13654 Representative total house income in the dwelling unit is $13654 -in.representative_income 13657 Representative total house income in the dwelling unit is $13657 -in.representative_income 13665 Representative total house income in the dwelling unit is $13665 -in.representative_income 13667 Representative total house income in the dwelling unit is $13667 -in.representative_income 13668 Representative total house income in the dwelling unit is $13668 -in.representative_income 13676 Representative total house income in the dwelling unit is $13676 -in.representative_income 13687 Representative total house income in the dwelling unit is $13687 -in.representative_income 13688 Representative total house income in the dwelling unit is $13688 -in.representative_income 13697 Representative total house income in the dwelling unit is $13697 -in.representative_income 13698 Representative total house income in the dwelling unit is $13698 -in.representative_income 13700 Representative total house income in the dwelling unit is $13700 -in.representative_income 13706 Representative total house income in the dwelling unit is $13706 -in.representative_income 13708 Representative total house income in the dwelling unit is $13708 -in.representative_income 13710 Representative total house income in the dwelling unit is $13710 -in.representative_income 13714 Representative total house income in the dwelling unit is $13714 -in.representative_income 13718 Representative total house income in the dwelling unit is $13718 -in.representative_income 13722 Representative total house income in the dwelling unit is $13722 -in.representative_income 13723 Representative total house income in the dwelling unit is $13723 -in.representative_income 13724 Representative total house income in the dwelling unit is $13724 -in.representative_income 13729 Representative total house income in the dwelling unit is $13729 -in.representative_income 13731 Representative total house income in the dwelling unit is $13731 -in.representative_income 13738 Representative total house income in the dwelling unit is $13738 -in.representative_income 13740 Representative total house income in the dwelling unit is $13740 -in.representative_income 13741 Representative total house income in the dwelling unit is $13741 -in.representative_income 13750 Representative total house income in the dwelling unit is $13750 -in.representative_income 13752 Representative total house income in the dwelling unit is $13752 -in.representative_income 13754 Representative total house income in the dwelling unit is $13754 -in.representative_income 13758 Representative total house income in the dwelling unit is $13758 -in.representative_income 13765 Representative total house income in the dwelling unit is $13765 -in.representative_income 13766 Representative total house income in the dwelling unit is $13766 -in.representative_income 13773 Representative total house income in the dwelling unit is $13773 -in.representative_income 13774 Representative total house income in the dwelling unit is $13774 -in.representative_income 13776 Representative total house income in the dwelling unit is $13776 -in.representative_income 13779 Representative total house income in the dwelling unit is $13779 -in.representative_income 13781 Representative total house income in the dwelling unit is $13781 -in.representative_income 13783 Representative total house income in the dwelling unit is $13783 -in.representative_income 13784 Representative total house income in the dwelling unit is $13784 -in.representative_income 13794 Representative total house income in the dwelling unit is $13794 -in.representative_income 13795 Representative total house income in the dwelling unit is $13795 -in.representative_income 13800 Representative total house income in the dwelling unit is $13800 -in.representative_income 13805 Representative total house income in the dwelling unit is $13805 -in.representative_income 13808 Representative total house income in the dwelling unit is $13808 -in.representative_income 13815 Representative total house income in the dwelling unit is $13815 -in.representative_income 13822 Representative total house income in the dwelling unit is $13822 -in.representative_income 13826 Representative total house income in the dwelling unit is $13826 -in.representative_income 13830 Representative total house income in the dwelling unit is $13830 -in.representative_income 13839 Representative total house income in the dwelling unit is $13839 -in.representative_income 13847 Representative total house income in the dwelling unit is $13847 -in.representative_income 13848 Representative total house income in the dwelling unit is $13848 -in.representative_income 13851 Representative total house income in the dwelling unit is $13851 -in.representative_income 13863 Representative total house income in the dwelling unit is $13863 -in.representative_income 13864 Representative total house income in the dwelling unit is $13864 -in.representative_income 13868 Representative total house income in the dwelling unit is $13868 -in.representative_income 13873 Representative total house income in the dwelling unit is $13873 -in.representative_income 13874 Representative total house income in the dwelling unit is $13874 -in.representative_income 13875 Representative total house income in the dwelling unit is $13875 -in.representative_income 13876 Representative total house income in the dwelling unit is $13876 -in.representative_income 13879 Representative total house income in the dwelling unit is $13879 -in.representative_income 13883 Representative total house income in the dwelling unit is $13883 -in.representative_income 13889 Representative total house income in the dwelling unit is $13889 -in.representative_income 13891 Representative total house income in the dwelling unit is $13891 -in.representative_income 13892 Representative total house income in the dwelling unit is $13892 -in.representative_income 13894 Representative total house income in the dwelling unit is $13894 -in.representative_income 13900 Representative total house income in the dwelling unit is $13900 -in.representative_income 13901 Representative total house income in the dwelling unit is $13901 -in.representative_income 13904 Representative total house income in the dwelling unit is $13904 -in.representative_income 13910 Representative total house income in the dwelling unit is $13910 -in.representative_income 13912 Representative total house income in the dwelling unit is $13912 -in.representative_income 13915 Representative total house income in the dwelling unit is $13915 -in.representative_income 13917 Representative total house income in the dwelling unit is $13917 -in.representative_income 13921 Representative total house income in the dwelling unit is $13921 -in.representative_income 13923 Representative total house income in the dwelling unit is $13923 -in.representative_income 13925 Representative total house income in the dwelling unit is $13925 -in.representative_income 13928 Representative total house income in the dwelling unit is $13928 -in.representative_income 13930 Representative total house income in the dwelling unit is $13930 -in.representative_income 13938 Representative total house income in the dwelling unit is $13938 -in.representative_income 13940 Representative total house income in the dwelling unit is $13940 -in.representative_income 13942 Representative total house income in the dwelling unit is $13942 -in.representative_income 13945 Representative total house income in the dwelling unit is $13945 -in.representative_income 13950 Representative total house income in the dwelling unit is $13950 -in.representative_income 13952 Representative total house income in the dwelling unit is $13952 -in.representative_income 13955 Representative total house income in the dwelling unit is $13955 -in.representative_income 13959 Representative total house income in the dwelling unit is $13959 -in.representative_income 13960 Representative total house income in the dwelling unit is $13960 -in.representative_income 13962 Representative total house income in the dwelling unit is $13962 -in.representative_income 13965 Representative total house income in the dwelling unit is $13965 -in.representative_income 13966 Representative total house income in the dwelling unit is $13966 -in.representative_income 13973 Representative total house income in the dwelling unit is $13973 -in.representative_income 13974 Representative total house income in the dwelling unit is $13974 -in.representative_income 13976 Representative total house income in the dwelling unit is $13976 -in.representative_income 13983 Representative total house income in the dwelling unit is $13983 -in.representative_income 13984 Representative total house income in the dwelling unit is $13984 -in.representative_income 13992 Representative total house income in the dwelling unit is $13992 -in.representative_income 13995 Representative total house income in the dwelling unit is $13995 -in.representative_income 14000 Representative total house income in the dwelling unit is $14000 -in.representative_income 14001 Representative total house income in the dwelling unit is $14001 -in.representative_income 14007 Representative total house income in the dwelling unit is $14007 -in.representative_income 14008 Representative total house income in the dwelling unit is $14008 -in.representative_income 14011 Representative total house income in the dwelling unit is $14011 -in.representative_income 14021 Representative total house income in the dwelling unit is $14021 -in.representative_income 14026 Representative total house income in the dwelling unit is $14026 -in.representative_income 14027 Representative total house income in the dwelling unit is $14027 -in.representative_income 14041 Representative total house income in the dwelling unit is $14041 -in.representative_income 14046 Representative total house income in the dwelling unit is $14046 -in.representative_income 14051 Representative total house income in the dwelling unit is $14051 -in.representative_income 14052 Representative total house income in the dwelling unit is $14052 -in.representative_income 14057 Representative total house income in the dwelling unit is $14057 -in.representative_income 14058 Representative total house income in the dwelling unit is $14058 -in.representative_income 14061 Representative total house income in the dwelling unit is $14061 -in.representative_income 14062 Representative total house income in the dwelling unit is $14062 -in.representative_income 14071 Representative total house income in the dwelling unit is $14071 -in.representative_income 14079 Representative total house income in the dwelling unit is $14079 -in.representative_income 14086 Representative total house income in the dwelling unit is $14086 -in.representative_income 14089 Representative total house income in the dwelling unit is $14089 -in.representative_income 14090 Representative total house income in the dwelling unit is $14090 -in.representative_income 14094 Representative total house income in the dwelling unit is $14094 -in.representative_income 14095 Representative total house income in the dwelling unit is $14095 -in.representative_income 14099 Representative total house income in the dwelling unit is $14099 -in.representative_income 14100 Representative total house income in the dwelling unit is $14100 -in.representative_income 14101 Representative total house income in the dwelling unit is $14101 -in.representative_income 14102 Representative total house income in the dwelling unit is $14102 -in.representative_income 14109 Representative total house income in the dwelling unit is $14109 -in.representative_income 14110 Representative total house income in the dwelling unit is $14110 -in.representative_income 14111 Representative total house income in the dwelling unit is $14111 -in.representative_income 14121 Representative total house income in the dwelling unit is $14121 -in.representative_income 14124 Representative total house income in the dwelling unit is $14124 -in.representative_income 14126 Representative total house income in the dwelling unit is $14126 -in.representative_income 14131 Representative total house income in the dwelling unit is $14131 -in.representative_income 14132 Representative total house income in the dwelling unit is $14132 -in.representative_income 14133 Representative total house income in the dwelling unit is $14133 -in.representative_income 14137 Representative total house income in the dwelling unit is $14137 -in.representative_income 14142 Representative total house income in the dwelling unit is $14142 -in.representative_income 14143 Representative total house income in the dwelling unit is $14143 -in.representative_income 14152 Representative total house income in the dwelling unit is $14152 -in.representative_income 14154 Representative total house income in the dwelling unit is $14154 -in.representative_income 14156 Representative total house income in the dwelling unit is $14156 -in.representative_income 14162 Representative total house income in the dwelling unit is $14162 -in.representative_income 14170 Representative total house income in the dwelling unit is $14170 -in.representative_income 14182 Representative total house income in the dwelling unit is $14182 -in.representative_income 14187 Representative total house income in the dwelling unit is $14187 -in.representative_income 14191 Representative total house income in the dwelling unit is $14191 -in.representative_income 14202 Representative total house income in the dwelling unit is $14202 -in.representative_income 14212 Representative total house income in the dwelling unit is $14212 -in.representative_income 14214 Representative total house income in the dwelling unit is $14214 -in.representative_income 14219 Representative total house income in the dwelling unit is $14219 -in.representative_income 14223 Representative total house income in the dwelling unit is $14223 -in.representative_income 14225 Representative total house income in the dwelling unit is $14225 -in.representative_income 14233 Representative total house income in the dwelling unit is $14233 -in.representative_income 14234 Representative total house income in the dwelling unit is $14234 -in.representative_income 14238 Representative total house income in the dwelling unit is $14238 -in.representative_income 14241 Representative total house income in the dwelling unit is $14241 -in.representative_income 14243 Representative total house income in the dwelling unit is $14243 -in.representative_income 14254 Representative total house income in the dwelling unit is $14254 -in.representative_income 14255 Representative total house income in the dwelling unit is $14255 -in.representative_income 14262 Representative total house income in the dwelling unit is $14262 -in.representative_income 14265 Representative total house income in the dwelling unit is $14265 -in.representative_income 14269 Representative total house income in the dwelling unit is $14269 -in.representative_income 14273 Representative total house income in the dwelling unit is $14273 -in.representative_income 14277 Representative total house income in the dwelling unit is $14277 -in.representative_income 14286 Representative total house income in the dwelling unit is $14286 -in.representative_income 14291 Representative total house income in the dwelling unit is $14291 -in.representative_income 14294 Representative total house income in the dwelling unit is $14294 -in.representative_income 14295 Representative total house income in the dwelling unit is $14295 -in.representative_income 14300 Representative total house income in the dwelling unit is $14300 -in.representative_income 14306 Representative total house income in the dwelling unit is $14306 -in.representative_income 14316 Representative total house income in the dwelling unit is $14316 -in.representative_income 14324 Representative total house income in the dwelling unit is $14324 -in.representative_income 14331 Representative total house income in the dwelling unit is $14331 -in.representative_income 14334 Representative total house income in the dwelling unit is $14334 -in.representative_income 14337 Representative total house income in the dwelling unit is $14337 -in.representative_income 14341 Representative total house income in the dwelling unit is $14341 -in.representative_income 14343 Representative total house income in the dwelling unit is $14343 -in.representative_income 14344 Representative total house income in the dwelling unit is $14344 -in.representative_income 14363 Representative total house income in the dwelling unit is $14363 -in.representative_income 14364 Representative total house income in the dwelling unit is $14364 -in.representative_income 14370 Representative total house income in the dwelling unit is $14370 -in.representative_income 14371 Representative total house income in the dwelling unit is $14371 -in.representative_income 14384 Representative total house income in the dwelling unit is $14384 -in.representative_income 14388 Representative total house income in the dwelling unit is $14388 -in.representative_income 14389 Representative total house income in the dwelling unit is $14389 -in.representative_income 14392 Representative total house income in the dwelling unit is $14392 -in.representative_income 14395 Representative total house income in the dwelling unit is $14395 -in.representative_income 14399 Representative total house income in the dwelling unit is $14399 -in.representative_income 14415 Representative total house income in the dwelling unit is $14415 -in.representative_income 14418 Representative total house income in the dwelling unit is $14418 -in.representative_income 14424 Representative total house income in the dwelling unit is $14424 -in.representative_income 14428 Representative total house income in the dwelling unit is $14428 -in.representative_income 14435 Representative total house income in the dwelling unit is $14435 -in.representative_income 14438 Representative total house income in the dwelling unit is $14438 -in.representative_income 14441 Representative total house income in the dwelling unit is $14441 -in.representative_income 14444 Representative total house income in the dwelling unit is $14444 -in.representative_income 14445 Representative total house income in the dwelling unit is $14445 -in.representative_income 14448 Representative total house income in the dwelling unit is $14448 -in.representative_income 14451 Representative total house income in the dwelling unit is $14451 -in.representative_income 14459 Representative total house income in the dwelling unit is $14459 -in.representative_income 14461 Representative total house income in the dwelling unit is $14461 -in.representative_income 14478 Representative total house income in the dwelling unit is $14478 -in.representative_income 14485 Representative total house income in the dwelling unit is $14485 -in.representative_income 14491 Representative total house income in the dwelling unit is $14491 -in.representative_income 14492 Representative total house income in the dwelling unit is $14492 -in.representative_income 14500 Representative total house income in the dwelling unit is $14500 -in.representative_income 14516 Representative total house income in the dwelling unit is $14516 -in.representative_income 14543 Representative total house income in the dwelling unit is $14543 -in.representative_income 14546 Representative total house income in the dwelling unit is $14546 -in.representative_income 14554 Representative total house income in the dwelling unit is $14554 -in.representative_income 14556 Representative total house income in the dwelling unit is $14556 -in.representative_income 14572 Representative total house income in the dwelling unit is $14572 -in.representative_income 14574 Representative total house income in the dwelling unit is $14574 -in.representative_income 14575 Representative total house income in the dwelling unit is $14575 -in.representative_income 14578 Representative total house income in the dwelling unit is $14578 -in.representative_income 14585 Representative total house income in the dwelling unit is $14585 -in.representative_income 14586 Representative total house income in the dwelling unit is $14586 -in.representative_income 14588 Representative total house income in the dwelling unit is $14588 -in.representative_income 14599 Representative total house income in the dwelling unit is $14599 -in.representative_income 14607 Representative total house income in the dwelling unit is $14607 -in.representative_income 14626 Representative total house income in the dwelling unit is $14626 -in.representative_income 14636 Representative total house income in the dwelling unit is $14636 -in.representative_income 14646 Representative total house income in the dwelling unit is $14646 -in.representative_income 14647 Representative total house income in the dwelling unit is $14647 -in.representative_income 14652 Representative total house income in the dwelling unit is $14652 -in.representative_income 14657 Representative total house income in the dwelling unit is $14657 -in.representative_income 14659 Representative total house income in the dwelling unit is $14659 -in.representative_income 14662 Representative total house income in the dwelling unit is $14662 -in.representative_income 14668 Representative total house income in the dwelling unit is $14668 -in.representative_income 14676 Representative total house income in the dwelling unit is $14676 -in.representative_income 14677 Representative total house income in the dwelling unit is $14677 -in.representative_income 14688 Representative total house income in the dwelling unit is $14688 -in.representative_income 14695 Representative total house income in the dwelling unit is $14695 -in.representative_income 14707 Representative total house income in the dwelling unit is $14707 -in.representative_income 14716 Representative total house income in the dwelling unit is $14716 -in.representative_income 14728 Representative total house income in the dwelling unit is $14728 -in.representative_income 14743 Representative total house income in the dwelling unit is $14743 -in.representative_income 14748 Representative total house income in the dwelling unit is $14748 -in.representative_income 14750 Representative total house income in the dwelling unit is $14750 -in.representative_income 14760 Representative total house income in the dwelling unit is $14760 -in.representative_income 14764 Representative total house income in the dwelling unit is $14764 -in.representative_income 14792 Representative total house income in the dwelling unit is $14792 -in.representative_income 14803 Representative total house income in the dwelling unit is $14803 -in.representative_income 14807 Representative total house income in the dwelling unit is $14807 -in.representative_income 14814 Representative total house income in the dwelling unit is $14814 -in.representative_income 14833 Representative total house income in the dwelling unit is $14833 -in.representative_income 14846 Representative total house income in the dwelling unit is $14846 -in.representative_income 14849 Representative total house income in the dwelling unit is $14849 -in.representative_income 14853 Representative total house income in the dwelling unit is $14853 -in.representative_income 14861 Representative total house income in the dwelling unit is $14861 -in.representative_income 14867 Representative total house income in the dwelling unit is $14867 -in.representative_income 14870 Representative total house income in the dwelling unit is $14870 -in.representative_income 14910 Representative total house income in the dwelling unit is $14910 -in.representative_income 14911 Representative total house income in the dwelling unit is $14911 -in.representative_income 14921 Representative total house income in the dwelling unit is $14921 -in.representative_income 14925 Representative total house income in the dwelling unit is $14925 -in.representative_income 14932 Representative total house income in the dwelling unit is $14932 -in.representative_income 14950 Representative total house income in the dwelling unit is $14950 -in.representative_income 14956 Representative total house income in the dwelling unit is $14956 -in.representative_income 14965 Representative total house income in the dwelling unit is $14965 -in.representative_income 14976 Representative total house income in the dwelling unit is $14976 -in.representative_income 14997 Representative total house income in the dwelling unit is $14997 -in.representative_income 15019 Representative total house income in the dwelling unit is $15019 -in.representative_income 15028 Representative total house income in the dwelling unit is $15028 -in.representative_income 15031 Representative total house income in the dwelling unit is $15031 -in.representative_income 15039 Representative total house income in the dwelling unit is $15039 -in.representative_income 15049 Representative total house income in the dwelling unit is $15049 -in.representative_income 15051 Representative total house income in the dwelling unit is $15051 -in.representative_income 15060 Representative total house income in the dwelling unit is $15060 -in.representative_income 15081 Representative total house income in the dwelling unit is $15081 -in.representative_income 15082 Representative total house income in the dwelling unit is $15082 -in.representative_income 15083 Representative total house income in the dwelling unit is $15083 -in.representative_income 15090 Representative total house income in the dwelling unit is $15090 -in.representative_income 15112 Representative total house income in the dwelling unit is $15112 -in.representative_income 15116 Representative total house income in the dwelling unit is $15116 -in.representative_income 15125 Representative total house income in the dwelling unit is $15125 -in.representative_income 15126 Representative total house income in the dwelling unit is $15126 -in.representative_income 15131 Representative total house income in the dwelling unit is $15131 -in.representative_income 15136 Representative total house income in the dwelling unit is $15136 -in.representative_income 15137 Representative total house income in the dwelling unit is $15137 -in.representative_income 15146 Representative total house income in the dwelling unit is $15146 -in.representative_income 15148 Representative total house income in the dwelling unit is $15148 -in.representative_income 15152 Representative total house income in the dwelling unit is $15152 -in.representative_income 15162 Representative total house income in the dwelling unit is $15162 -in.representative_income 15170 Representative total house income in the dwelling unit is $15170 -in.representative_income 15178 Representative total house income in the dwelling unit is $15178 -in.representative_income 15185 Representative total house income in the dwelling unit is $15185 -in.representative_income 15186 Representative total house income in the dwelling unit is $15186 -in.representative_income 15200 Representative total house income in the dwelling unit is $15200 -in.representative_income 15203 Representative total house income in the dwelling unit is $15203 -in.representative_income 15211 Representative total house income in the dwelling unit is $15211 -in.representative_income 15213 Representative total house income in the dwelling unit is $15213 -in.representative_income 15220 Representative total house income in the dwelling unit is $15220 -in.representative_income 15223 Representative total house income in the dwelling unit is $15223 -in.representative_income 15234 Representative total house income in the dwelling unit is $15234 -in.representative_income 15238 Representative total house income in the dwelling unit is $15238 -in.representative_income 15243 Representative total house income in the dwelling unit is $15243 -in.representative_income 15253 Representative total house income in the dwelling unit is $15253 -in.representative_income 15265 Representative total house income in the dwelling unit is $15265 -in.representative_income 15269 Representative total house income in the dwelling unit is $15269 -in.representative_income 15286 Representative total house income in the dwelling unit is $15286 -in.representative_income 15287 Representative total house income in the dwelling unit is $15287 -in.representative_income 15292 Representative total house income in the dwelling unit is $15292 -in.representative_income 15296 Representative total house income in the dwelling unit is $15296 -in.representative_income 15299 Representative total house income in the dwelling unit is $15299 -in.representative_income 15302 Representative total house income in the dwelling unit is $15302 -in.representative_income 15322 Representative total house income in the dwelling unit is $15322 -in.representative_income 15327 Representative total house income in the dwelling unit is $15327 -in.representative_income 15334 Representative total house income in the dwelling unit is $15334 -in.representative_income 15342 Representative total house income in the dwelling unit is $15342 -in.representative_income 15351 Representative total house income in the dwelling unit is $15351 -in.representative_income 15354 Representative total house income in the dwelling unit is $15354 -in.representative_income 15369 Representative total house income in the dwelling unit is $15369 -in.representative_income 15395 Representative total house income in the dwelling unit is $15395 -in.representative_income 15397 Representative total house income in the dwelling unit is $15397 -in.representative_income 15415 Representative total house income in the dwelling unit is $15415 -in.representative_income 15419 Representative total house income in the dwelling unit is $15419 -in.representative_income 15425 Representative total house income in the dwelling unit is $15425 -in.representative_income 15429 Representative total house income in the dwelling unit is $15429 -in.representative_income 15430 Representative total house income in the dwelling unit is $15430 -in.representative_income 15440 Representative total house income in the dwelling unit is $15440 -in.representative_income 15451 Representative total house income in the dwelling unit is $15451 -in.representative_income 15455 Representative total house income in the dwelling unit is $15455 -in.representative_income 15457 Representative total house income in the dwelling unit is $15457 -in.representative_income 15460 Representative total house income in the dwelling unit is $15460 -in.representative_income 15472 Representative total house income in the dwelling unit is $15472 -in.representative_income 15480 Representative total house income in the dwelling unit is $15480 -in.representative_income 15492 Representative total house income in the dwelling unit is $15492 -in.representative_income 15494 Representative total house income in the dwelling unit is $15494 -in.representative_income 15503 Representative total house income in the dwelling unit is $15503 -in.representative_income 15506 Representative total house income in the dwelling unit is $15506 -in.representative_income 15508 Representative total house income in the dwelling unit is $15508 -in.representative_income 15524 Representative total house income in the dwelling unit is $15524 -in.representative_income 15543 Representative total house income in the dwelling unit is $15543 -in.representative_income 15556 Representative total house income in the dwelling unit is $15556 -in.representative_income 15559 Representative total house income in the dwelling unit is $15559 -in.representative_income 15560 Representative total house income in the dwelling unit is $15560 -in.representative_income 15564 Representative total house income in the dwelling unit is $15564 -in.representative_income 15565 Representative total house income in the dwelling unit is $15565 -in.representative_income 15572 Representative total house income in the dwelling unit is $15572 -in.representative_income 15575 Representative total house income in the dwelling unit is $15575 -in.representative_income 15576 Representative total house income in the dwelling unit is $15576 -in.representative_income 15585 Representative total house income in the dwelling unit is $15585 -in.representative_income 15586 Representative total house income in the dwelling unit is $15586 -in.representative_income 15596 Representative total house income in the dwelling unit is $15596 -in.representative_income 15602 Representative total house income in the dwelling unit is $15602 -in.representative_income 15606 Representative total house income in the dwelling unit is $15606 -in.representative_income 15608 Representative total house income in the dwelling unit is $15608 -in.representative_income 15615 Representative total house income in the dwelling unit is $15615 -in.representative_income 15616 Representative total house income in the dwelling unit is $15616 -in.representative_income 15626 Representative total house income in the dwelling unit is $15626 -in.representative_income 15635 Representative total house income in the dwelling unit is $15635 -in.representative_income 15637 Representative total house income in the dwelling unit is $15637 -in.representative_income 15647 Representative total house income in the dwelling unit is $15647 -in.representative_income 15650 Representative total house income in the dwelling unit is $15650 -in.representative_income 15653 Representative total house income in the dwelling unit is $15653 -in.representative_income 15657 Representative total house income in the dwelling unit is $15657 -in.representative_income 15661 Representative total house income in the dwelling unit is $15661 -in.representative_income 15662 Representative total house income in the dwelling unit is $15662 -in.representative_income 15667 Representative total house income in the dwelling unit is $15667 -in.representative_income 15671 Representative total house income in the dwelling unit is $15671 -in.representative_income 15672 Representative total house income in the dwelling unit is $15672 -in.representative_income 15678 Representative total house income in the dwelling unit is $15678 -in.representative_income 15689 Representative total house income in the dwelling unit is $15689 -in.representative_income 15694 Representative total house income in the dwelling unit is $15694 -in.representative_income 15699 Representative total house income in the dwelling unit is $15699 -in.representative_income 15700 Representative total house income in the dwelling unit is $15700 -in.representative_income 15703 Representative total house income in the dwelling unit is $15703 -in.representative_income 15714 Representative total house income in the dwelling unit is $15714 -in.representative_income 15715 Representative total house income in the dwelling unit is $15715 -in.representative_income 15718 Representative total house income in the dwelling unit is $15718 -in.representative_income 15719 Representative total house income in the dwelling unit is $15719 -in.representative_income 15729 Representative total house income in the dwelling unit is $15729 -in.representative_income 15730 Representative total house income in the dwelling unit is $15730 -in.representative_income 15732 Representative total house income in the dwelling unit is $15732 -in.representative_income 15733 Representative total house income in the dwelling unit is $15733 -in.representative_income 15735 Representative total house income in the dwelling unit is $15735 -in.representative_income 15739 Representative total house income in the dwelling unit is $15739 -in.representative_income 15743 Representative total house income in the dwelling unit is $15743 -in.representative_income 15744 Representative total house income in the dwelling unit is $15744 -in.representative_income 15758 Representative total house income in the dwelling unit is $15758 -in.representative_income 15759 Representative total house income in the dwelling unit is $15759 -in.representative_income 15769 Representative total house income in the dwelling unit is $15769 -in.representative_income 15775 Representative total house income in the dwelling unit is $15775 -in.representative_income 15780 Representative total house income in the dwelling unit is $15780 -in.representative_income 15781 Representative total house income in the dwelling unit is $15781 -in.representative_income 15782 Representative total house income in the dwelling unit is $15782 -in.representative_income 15799 Representative total house income in the dwelling unit is $15799 -in.representative_income 15802 Representative total house income in the dwelling unit is $15802 -in.representative_income 15819 Representative total house income in the dwelling unit is $15819 -in.representative_income 15828 Representative total house income in the dwelling unit is $15828 -in.representative_income 15829 Representative total house income in the dwelling unit is $15829 -in.representative_income 15833 Representative total house income in the dwelling unit is $15833 -in.representative_income 15834 Representative total house income in the dwelling unit is $15834 -in.representative_income 15839 Representative total house income in the dwelling unit is $15839 -in.representative_income 15840 Representative total house income in the dwelling unit is $15840 -in.representative_income 15850 Representative total house income in the dwelling unit is $15850 -in.representative_income 15851 Representative total house income in the dwelling unit is $15851 -in.representative_income 15853 Representative total house income in the dwelling unit is $15853 -in.representative_income 15859 Representative total house income in the dwelling unit is $15859 -in.representative_income 15869 Representative total house income in the dwelling unit is $15869 -in.representative_income 15872 Representative total house income in the dwelling unit is $15872 -in.representative_income 15877 Representative total house income in the dwelling unit is $15877 -in.representative_income 15883 Representative total house income in the dwelling unit is $15883 -in.representative_income 15884 Representative total house income in the dwelling unit is $15884 -in.representative_income 15887 Representative total house income in the dwelling unit is $15887 -in.representative_income 15888 Representative total house income in the dwelling unit is $15888 -in.representative_income 15890 Representative total house income in the dwelling unit is $15890 -in.representative_income 15892 Representative total house income in the dwelling unit is $15892 -in.representative_income 15900 Representative total house income in the dwelling unit is $15900 -in.representative_income 15903 Representative total house income in the dwelling unit is $15903 -in.representative_income 15910 Representative total house income in the dwelling unit is $15910 -in.representative_income 15914 Representative total house income in the dwelling unit is $15914 -in.representative_income 15920 Representative total house income in the dwelling unit is $15920 -in.representative_income 15921 Representative total house income in the dwelling unit is $15921 -in.representative_income 15924 Representative total house income in the dwelling unit is $15924 -in.representative_income 15930 Representative total house income in the dwelling unit is $15930 -in.representative_income 15936 Representative total house income in the dwelling unit is $15936 -in.representative_income 15937 Representative total house income in the dwelling unit is $15937 -in.representative_income 15939 Representative total house income in the dwelling unit is $15939 -in.representative_income 15945 Representative total house income in the dwelling unit is $15945 -in.representative_income 15948 Representative total house income in the dwelling unit is $15948 -in.representative_income 15957 Representative total house income in the dwelling unit is $15957 -in.representative_income 15960 Representative total house income in the dwelling unit is $15960 -in.representative_income 15966 Representative total house income in the dwelling unit is $15966 -in.representative_income 15967 Representative total house income in the dwelling unit is $15967 -in.representative_income 15970 Representative total house income in the dwelling unit is $15970 -in.representative_income 15977 Representative total house income in the dwelling unit is $15977 -in.representative_income 15988 Representative total house income in the dwelling unit is $15988 -in.representative_income 15991 Representative total house income in the dwelling unit is $15991 -in.representative_income 15994 Representative total house income in the dwelling unit is $15994 -in.representative_income 16002 Representative total house income in the dwelling unit is $16002 -in.representative_income 16006 Representative total house income in the dwelling unit is $16006 -in.representative_income 16008 Representative total house income in the dwelling unit is $16008 -in.representative_income 16009 Representative total house income in the dwelling unit is $16009 -in.representative_income 16011 Representative total house income in the dwelling unit is $16011 -in.representative_income 16012 Representative total house income in the dwelling unit is $16012 -in.representative_income 16021 Representative total house income in the dwelling unit is $16021 -in.representative_income 16024 Representative total house income in the dwelling unit is $16024 -in.representative_income 16027 Representative total house income in the dwelling unit is $16027 -in.representative_income 16030 Representative total house income in the dwelling unit is $16030 -in.representative_income 16031 Representative total house income in the dwelling unit is $16031 -in.representative_income 16034 Representative total house income in the dwelling unit is $16034 -in.representative_income 16038 Representative total house income in the dwelling unit is $16038 -in.representative_income 16039 Representative total house income in the dwelling unit is $16039 -in.representative_income 16040 Representative total house income in the dwelling unit is $16040 -in.representative_income 16045 Representative total house income in the dwelling unit is $16045 -in.representative_income 16048 Representative total house income in the dwelling unit is $16048 -in.representative_income 16051 Representative total house income in the dwelling unit is $16051 -in.representative_income 16056 Representative total house income in the dwelling unit is $16056 -in.representative_income 16061 Representative total house income in the dwelling unit is $16061 -in.representative_income 16066 Representative total house income in the dwelling unit is $16066 -in.representative_income 16070 Representative total house income in the dwelling unit is $16070 -in.representative_income 16072 Representative total house income in the dwelling unit is $16072 -in.representative_income 16091 Representative total house income in the dwelling unit is $16091 -in.representative_income 16093 Representative total house income in the dwelling unit is $16093 -in.representative_income 16099 Representative total house income in the dwelling unit is $16099 -in.representative_income 16101 Representative total house income in the dwelling unit is $16101 -in.representative_income 16103 Representative total house income in the dwelling unit is $16103 -in.representative_income 16106 Representative total house income in the dwelling unit is $16106 -in.representative_income 16111 Representative total house income in the dwelling unit is $16111 -in.representative_income 16112 Representative total house income in the dwelling unit is $16112 -in.representative_income 16118 Representative total house income in the dwelling unit is $16118 -in.representative_income 16119 Representative total house income in the dwelling unit is $16119 -in.representative_income 16123 Representative total house income in the dwelling unit is $16123 -in.representative_income 16131 Representative total house income in the dwelling unit is $16131 -in.representative_income 16132 Representative total house income in the dwelling unit is $16132 -in.representative_income 16133 Representative total house income in the dwelling unit is $16133 -in.representative_income 16136 Representative total house income in the dwelling unit is $16136 -in.representative_income 16143 Representative total house income in the dwelling unit is $16143 -in.representative_income 16145 Representative total house income in the dwelling unit is $16145 -in.representative_income 16149 Representative total house income in the dwelling unit is $16149 -in.representative_income 16152 Representative total house income in the dwelling unit is $16152 -in.representative_income 16153 Representative total house income in the dwelling unit is $16153 -in.representative_income 16154 Representative total house income in the dwelling unit is $16154 -in.representative_income 16162 Representative total house income in the dwelling unit is $16162 -in.representative_income 16163 Representative total house income in the dwelling unit is $16163 -in.representative_income 16172 Representative total house income in the dwelling unit is $16172 -in.representative_income 16173 Representative total house income in the dwelling unit is $16173 -in.representative_income 16178 Representative total house income in the dwelling unit is $16178 -in.representative_income 16182 Representative total house income in the dwelling unit is $16182 -in.representative_income 16183 Representative total house income in the dwelling unit is $16183 -in.representative_income 16185 Representative total house income in the dwelling unit is $16185 -in.representative_income 16188 Representative total house income in the dwelling unit is $16188 -in.representative_income 16193 Representative total house income in the dwelling unit is $16193 -in.representative_income 16197 Representative total house income in the dwelling unit is $16197 -in.representative_income 16199 Representative total house income in the dwelling unit is $16199 -in.representative_income 16200 Representative total house income in the dwelling unit is $16200 -in.representative_income 16204 Representative total house income in the dwelling unit is $16204 -in.representative_income 16207 Representative total house income in the dwelling unit is $16207 -in.representative_income 16208 Representative total house income in the dwelling unit is $16208 -in.representative_income 16209 Representative total house income in the dwelling unit is $16209 -in.representative_income 16213 Representative total house income in the dwelling unit is $16213 -in.representative_income 16215 Representative total house income in the dwelling unit is $16215 -in.representative_income 16217 Representative total house income in the dwelling unit is $16217 -in.representative_income 16219 Representative total house income in the dwelling unit is $16219 -in.representative_income 16220 Representative total house income in the dwelling unit is $16220 -in.representative_income 16222 Representative total house income in the dwelling unit is $16222 -in.representative_income 16225 Representative total house income in the dwelling unit is $16225 -in.representative_income 16228 Representative total house income in the dwelling unit is $16228 -in.representative_income 16231 Representative total house income in the dwelling unit is $16231 -in.representative_income 16233 Representative total house income in the dwelling unit is $16233 -in.representative_income 16235 Representative total house income in the dwelling unit is $16235 -in.representative_income 16240 Representative total house income in the dwelling unit is $16240 -in.representative_income 16241 Representative total house income in the dwelling unit is $16241 -in.representative_income 16251 Representative total house income in the dwelling unit is $16251 -in.representative_income 16252 Representative total house income in the dwelling unit is $16252 -in.representative_income 16261 Representative total house income in the dwelling unit is $16261 -in.representative_income 16262 Representative total house income in the dwelling unit is $16262 -in.representative_income 16263 Representative total house income in the dwelling unit is $16263 -in.representative_income 16269 Representative total house income in the dwelling unit is $16269 -in.representative_income 16272 Representative total house income in the dwelling unit is $16272 -in.representative_income 16273 Representative total house income in the dwelling unit is $16273 -in.representative_income 16274 Representative total house income in the dwelling unit is $16274 -in.representative_income 16276 Representative total house income in the dwelling unit is $16276 -in.representative_income 16282 Representative total house income in the dwelling unit is $16282 -in.representative_income 16283 Representative total house income in the dwelling unit is $16283 -in.representative_income 16284 Representative total house income in the dwelling unit is $16284 -in.representative_income 16287 Representative total house income in the dwelling unit is $16287 -in.representative_income 16293 Representative total house income in the dwelling unit is $16293 -in.representative_income 16294 Representative total house income in the dwelling unit is $16294 -in.representative_income 16297 Representative total house income in the dwelling unit is $16297 -in.representative_income 16302 Representative total house income in the dwelling unit is $16302 -in.representative_income 16305 Representative total house income in the dwelling unit is $16305 -in.representative_income 16306 Representative total house income in the dwelling unit is $16306 -in.representative_income 16307 Representative total house income in the dwelling unit is $16307 -in.representative_income 16311 Representative total house income in the dwelling unit is $16311 -in.representative_income 16315 Representative total house income in the dwelling unit is $16315 -in.representative_income 16317 Representative total house income in the dwelling unit is $16317 -in.representative_income 16318 Representative total house income in the dwelling unit is $16318 -in.representative_income 16326 Representative total house income in the dwelling unit is $16326 -in.representative_income 16330 Representative total house income in the dwelling unit is $16330 -in.representative_income 16331 Representative total house income in the dwelling unit is $16331 -in.representative_income 16332 Representative total house income in the dwelling unit is $16332 -in.representative_income 16336 Representative total house income in the dwelling unit is $16336 -in.representative_income 16337 Representative total house income in the dwelling unit is $16337 -in.representative_income 16338 Representative total house income in the dwelling unit is $16338 -in.representative_income 16344 Representative total house income in the dwelling unit is $16344 -in.representative_income 16347 Representative total house income in the dwelling unit is $16347 -in.representative_income 16349 Representative total house income in the dwelling unit is $16349 -in.representative_income 16355 Representative total house income in the dwelling unit is $16355 -in.representative_income 16357 Representative total house income in the dwelling unit is $16357 -in.representative_income 16359 Representative total house income in the dwelling unit is $16359 -in.representative_income 16364 Representative total house income in the dwelling unit is $16364 -in.representative_income 16367 Representative total house income in the dwelling unit is $16367 -in.representative_income 16370 Representative total house income in the dwelling unit is $16370 -in.representative_income 16385 Representative total house income in the dwelling unit is $16385 -in.representative_income 16388 Representative total house income in the dwelling unit is $16388 -in.representative_income 16400 Representative total house income in the dwelling unit is $16400 -in.representative_income 16401 Representative total house income in the dwelling unit is $16401 -in.representative_income 16402 Representative total house income in the dwelling unit is $16402 -in.representative_income 16410 Representative total house income in the dwelling unit is $16410 -in.representative_income 16413 Representative total house income in the dwelling unit is $16413 -in.representative_income 16415 Representative total house income in the dwelling unit is $16415 -in.representative_income 16420 Representative total house income in the dwelling unit is $16420 -in.representative_income 16423 Representative total house income in the dwelling unit is $16423 -in.representative_income 16424 Representative total house income in the dwelling unit is $16424 -in.representative_income 16425 Representative total house income in the dwelling unit is $16425 -in.representative_income 16426 Representative total house income in the dwelling unit is $16426 -in.representative_income 16427 Representative total house income in the dwelling unit is $16427 -in.representative_income 16435 Representative total house income in the dwelling unit is $16435 -in.representative_income 16441 Representative total house income in the dwelling unit is $16441 -in.representative_income 16442 Representative total house income in the dwelling unit is $16442 -in.representative_income 16445 Representative total house income in the dwelling unit is $16445 -in.representative_income 16452 Representative total house income in the dwelling unit is $16452 -in.representative_income 16455 Representative total house income in the dwelling unit is $16455 -in.representative_income 16456 Representative total house income in the dwelling unit is $16456 -in.representative_income 16462 Representative total house income in the dwelling unit is $16462 -in.representative_income 16463 Representative total house income in the dwelling unit is $16463 -in.representative_income 16465 Representative total house income in the dwelling unit is $16465 -in.representative_income 16467 Representative total house income in the dwelling unit is $16467 -in.representative_income 16472 Representative total house income in the dwelling unit is $16472 -in.representative_income 16473 Representative total house income in the dwelling unit is $16473 -in.representative_income 16477 Representative total house income in the dwelling unit is $16477 -in.representative_income 16483 Representative total house income in the dwelling unit is $16483 -in.representative_income 16485 Representative total house income in the dwelling unit is $16485 -in.representative_income 16486 Representative total house income in the dwelling unit is $16486 -in.representative_income 16487 Representative total house income in the dwelling unit is $16487 -in.representative_income 16488 Representative total house income in the dwelling unit is $16488 -in.representative_income 16493 Representative total house income in the dwelling unit is $16493 -in.representative_income 16495 Representative total house income in the dwelling unit is $16495 -in.representative_income 16496 Representative total house income in the dwelling unit is $16496 -in.representative_income 16497 Representative total house income in the dwelling unit is $16497 -in.representative_income 16503 Representative total house income in the dwelling unit is $16503 -in.representative_income 16506 Representative total house income in the dwelling unit is $16506 -in.representative_income 16509 Representative total house income in the dwelling unit is $16509 -in.representative_income 16513 Representative total house income in the dwelling unit is $16513 -in.representative_income 16520 Representative total house income in the dwelling unit is $16520 -in.representative_income 16521 Representative total house income in the dwelling unit is $16521 -in.representative_income 16526 Representative total house income in the dwelling unit is $16526 -in.representative_income 16531 Representative total house income in the dwelling unit is $16531 -in.representative_income 16532 Representative total house income in the dwelling unit is $16532 -in.representative_income 16533 Representative total house income in the dwelling unit is $16533 -in.representative_income 16536 Representative total house income in the dwelling unit is $16536 -in.representative_income 16537 Representative total house income in the dwelling unit is $16537 -in.representative_income 16542 Representative total house income in the dwelling unit is $16542 -in.representative_income 16545 Representative total house income in the dwelling unit is $16545 -in.representative_income 16547 Representative total house income in the dwelling unit is $16547 -in.representative_income 16553 Representative total house income in the dwelling unit is $16553 -in.representative_income 16557 Representative total house income in the dwelling unit is $16557 -in.representative_income 16566 Representative total house income in the dwelling unit is $16566 -in.representative_income 16568 Representative total house income in the dwelling unit is $16568 -in.representative_income 16571 Representative total house income in the dwelling unit is $16571 -in.representative_income 16584 Representative total house income in the dwelling unit is $16584 -in.representative_income 16585 Representative total house income in the dwelling unit is $16585 -in.representative_income 16589 Representative total house income in the dwelling unit is $16589 -in.representative_income 16596 Representative total house income in the dwelling unit is $16596 -in.representative_income 16597 Representative total house income in the dwelling unit is $16597 -in.representative_income 16600 Representative total house income in the dwelling unit is $16600 -in.representative_income 16601 Representative total house income in the dwelling unit is $16601 -in.representative_income 16603 Representative total house income in the dwelling unit is $16603 -in.representative_income 16605 Representative total house income in the dwelling unit is $16605 -in.representative_income 16607 Representative total house income in the dwelling unit is $16607 -in.representative_income 16610 Representative total house income in the dwelling unit is $16610 -in.representative_income 16612 Representative total house income in the dwelling unit is $16612 -in.representative_income 16617 Representative total house income in the dwelling unit is $16617 -in.representative_income 16625 Representative total house income in the dwelling unit is $16625 -in.representative_income 16627 Representative total house income in the dwelling unit is $16627 -in.representative_income 16637 Representative total house income in the dwelling unit is $16637 -in.representative_income 16638 Representative total house income in the dwelling unit is $16638 -in.representative_income 16639 Representative total house income in the dwelling unit is $16639 -in.representative_income 16640 Representative total house income in the dwelling unit is $16640 -in.representative_income 16642 Representative total house income in the dwelling unit is $16642 -in.representative_income 16644 Representative total house income in the dwelling unit is $16644 -in.representative_income 16647 Representative total house income in the dwelling unit is $16647 -in.representative_income 16650 Representative total house income in the dwelling unit is $16650 -in.representative_income 16654 Representative total house income in the dwelling unit is $16654 -in.representative_income 16656 Representative total house income in the dwelling unit is $16656 -in.representative_income 16657 Representative total house income in the dwelling unit is $16657 -in.representative_income 16662 Representative total house income in the dwelling unit is $16662 -in.representative_income 16666 Representative total house income in the dwelling unit is $16666 -in.representative_income 16667 Representative total house income in the dwelling unit is $16667 -in.representative_income 16668 Representative total house income in the dwelling unit is $16668 -in.representative_income 16670 Representative total house income in the dwelling unit is $16670 -in.representative_income 16671 Representative total house income in the dwelling unit is $16671 -in.representative_income 16672 Representative total house income in the dwelling unit is $16672 -in.representative_income 16677 Representative total house income in the dwelling unit is $16677 -in.representative_income 16682 Representative total house income in the dwelling unit is $16682 -in.representative_income 16684 Representative total house income in the dwelling unit is $16684 -in.representative_income 16685 Representative total house income in the dwelling unit is $16685 -in.representative_income 16692 Representative total house income in the dwelling unit is $16692 -in.representative_income 16693 Representative total house income in the dwelling unit is $16693 -in.representative_income 16704 Representative total house income in the dwelling unit is $16704 -in.representative_income 16705 Representative total house income in the dwelling unit is $16705 -in.representative_income 16708 Representative total house income in the dwelling unit is $16708 -in.representative_income 16710 Representative total house income in the dwelling unit is $16710 -in.representative_income 16713 Representative total house income in the dwelling unit is $16713 -in.representative_income 16716 Representative total house income in the dwelling unit is $16716 -in.representative_income 16724 Representative total house income in the dwelling unit is $16724 -in.representative_income 16726 Representative total house income in the dwelling unit is $16726 -in.representative_income 16735 Representative total house income in the dwelling unit is $16735 -in.representative_income 16736 Representative total house income in the dwelling unit is $16736 -in.representative_income 16737 Representative total house income in the dwelling unit is $16737 -in.representative_income 16738 Representative total house income in the dwelling unit is $16738 -in.representative_income 16746 Representative total house income in the dwelling unit is $16746 -in.representative_income 16747 Representative total house income in the dwelling unit is $16747 -in.representative_income 16748 Representative total house income in the dwelling unit is $16748 -in.representative_income 16751 Representative total house income in the dwelling unit is $16751 -in.representative_income 16756 Representative total house income in the dwelling unit is $16756 -in.representative_income 16757 Representative total house income in the dwelling unit is $16757 -in.representative_income 16758 Representative total house income in the dwelling unit is $16758 -in.representative_income 16767 Representative total house income in the dwelling unit is $16767 -in.representative_income 16768 Representative total house income in the dwelling unit is $16768 -in.representative_income 16769 Representative total house income in the dwelling unit is $16769 -in.representative_income 16772 Representative total house income in the dwelling unit is $16772 -in.representative_income 16778 Representative total house income in the dwelling unit is $16778 -in.representative_income 16779 Representative total house income in the dwelling unit is $16779 -in.representative_income 16780 Representative total house income in the dwelling unit is $16780 -in.representative_income 16790 Representative total house income in the dwelling unit is $16790 -in.representative_income 16792 Representative total house income in the dwelling unit is $16792 -in.representative_income 16799 Representative total house income in the dwelling unit is $16799 -in.representative_income 16800 Representative total house income in the dwelling unit is $16800 -in.representative_income 16801 Representative total house income in the dwelling unit is $16801 -in.representative_income 16810 Representative total house income in the dwelling unit is $16810 -in.representative_income 16812 Representative total house income in the dwelling unit is $16812 -in.representative_income 16819 Representative total house income in the dwelling unit is $16819 -in.representative_income 16821 Representative total house income in the dwelling unit is $16821 -in.representative_income 16823 Representative total house income in the dwelling unit is $16823 -in.representative_income 16831 Representative total house income in the dwelling unit is $16831 -in.representative_income 16839 Representative total house income in the dwelling unit is $16839 -in.representative_income 16843 Representative total house income in the dwelling unit is $16843 -in.representative_income 16844 Representative total house income in the dwelling unit is $16844 -in.representative_income 16853 Representative total house income in the dwelling unit is $16853 -in.representative_income 16854 Representative total house income in the dwelling unit is $16854 -in.representative_income 16855 Representative total house income in the dwelling unit is $16855 -in.representative_income 16859 Representative total house income in the dwelling unit is $16859 -in.representative_income 16862 Representative total house income in the dwelling unit is $16862 -in.representative_income 16864 Representative total house income in the dwelling unit is $16864 -in.representative_income 16869 Representative total house income in the dwelling unit is $16869 -in.representative_income 16872 Representative total house income in the dwelling unit is $16872 -in.representative_income 16873 Representative total house income in the dwelling unit is $16873 -in.representative_income 16874 Representative total house income in the dwelling unit is $16874 -in.representative_income 16875 Representative total house income in the dwelling unit is $16875 -in.representative_income 16877 Representative total house income in the dwelling unit is $16877 -in.representative_income 16880 Representative total house income in the dwelling unit is $16880 -in.representative_income 16884 Representative total house income in the dwelling unit is $16884 -in.representative_income 16890 Representative total house income in the dwelling unit is $16890 -in.representative_income 16895 Representative total house income in the dwelling unit is $16895 -in.representative_income 16898 Representative total house income in the dwelling unit is $16898 -in.representative_income 16905 Representative total house income in the dwelling unit is $16905 -in.representative_income 16916 Representative total house income in the dwelling unit is $16916 -in.representative_income 16919 Representative total house income in the dwelling unit is $16919 -in.representative_income 16920 Representative total house income in the dwelling unit is $16920 -in.representative_income 16936 Representative total house income in the dwelling unit is $16936 -in.representative_income 16937 Representative total house income in the dwelling unit is $16937 -in.representative_income 16941 Representative total house income in the dwelling unit is $16941 -in.representative_income 16950 Representative total house income in the dwelling unit is $16950 -in.representative_income 16952 Representative total house income in the dwelling unit is $16952 -in.representative_income 16961 Representative total house income in the dwelling unit is $16961 -in.representative_income 16962 Representative total house income in the dwelling unit is $16962 -in.representative_income 16963 Representative total house income in the dwelling unit is $16963 -in.representative_income 16967 Representative total house income in the dwelling unit is $16967 -in.representative_income 16970 Representative total house income in the dwelling unit is $16970 -in.representative_income 16971 Representative total house income in the dwelling unit is $16971 -in.representative_income 16977 Representative total house income in the dwelling unit is $16977 -in.representative_income 16978 Representative total house income in the dwelling unit is $16978 -in.representative_income 16979 Representative total house income in the dwelling unit is $16979 -in.representative_income 16985 Representative total house income in the dwelling unit is $16985 -in.representative_income 16996 Representative total house income in the dwelling unit is $16996 -in.representative_income 17010 Representative total house income in the dwelling unit is $17010 -in.representative_income 17011 Representative total house income in the dwelling unit is $17011 -in.representative_income 17014 Representative total house income in the dwelling unit is $17014 -in.representative_income 17015 Representative total house income in the dwelling unit is $17015 -in.representative_income 17017 Representative total house income in the dwelling unit is $17017 -in.representative_income 17019 Representative total house income in the dwelling unit is $17019 -in.representative_income 17021 Representative total house income in the dwelling unit is $17021 -in.representative_income 17023 Representative total house income in the dwelling unit is $17023 -in.representative_income 17024 Representative total house income in the dwelling unit is $17024 -in.representative_income 17028 Representative total house income in the dwelling unit is $17028 -in.representative_income 17031 Representative total house income in the dwelling unit is $17031 -in.representative_income 17035 Representative total house income in the dwelling unit is $17035 -in.representative_income 17039 Representative total house income in the dwelling unit is $17039 -in.representative_income 17040 Representative total house income in the dwelling unit is $17040 -in.representative_income 17041 Representative total house income in the dwelling unit is $17041 -in.representative_income 17042 Representative total house income in the dwelling unit is $17042 -in.representative_income 17046 Representative total house income in the dwelling unit is $17046 -in.representative_income 17050 Representative total house income in the dwelling unit is $17050 -in.representative_income 17051 Representative total house income in the dwelling unit is $17051 -in.representative_income 17057 Representative total house income in the dwelling unit is $17057 -in.representative_income 17064 Representative total house income in the dwelling unit is $17064 -in.representative_income 17068 Representative total house income in the dwelling unit is $17068 -in.representative_income 17071 Representative total house income in the dwelling unit is $17071 -in.representative_income 17072 Representative total house income in the dwelling unit is $17072 -in.representative_income 17074 Representative total house income in the dwelling unit is $17074 -in.representative_income 17083 Representative total house income in the dwelling unit is $17083 -in.representative_income 17085 Representative total house income in the dwelling unit is $17085 -in.representative_income 17090 Representative total house income in the dwelling unit is $17090 -in.representative_income 17091 Representative total house income in the dwelling unit is $17091 -in.representative_income 17092 Representative total house income in the dwelling unit is $17092 -in.representative_income 17093 Representative total house income in the dwelling unit is $17093 -in.representative_income 17095 Representative total house income in the dwelling unit is $17095 -in.representative_income 17102 Representative total house income in the dwelling unit is $17102 -in.representative_income 17106 Representative total house income in the dwelling unit is $17106 -in.representative_income 17112 Representative total house income in the dwelling unit is $17112 -in.representative_income 17122 Representative total house income in the dwelling unit is $17122 -in.representative_income 17126 Representative total house income in the dwelling unit is $17126 -in.representative_income 17132 Representative total house income in the dwelling unit is $17132 -in.representative_income 17137 Representative total house income in the dwelling unit is $17137 -in.representative_income 17138 Representative total house income in the dwelling unit is $17138 -in.representative_income 17143 Representative total house income in the dwelling unit is $17143 -in.representative_income 17151 Representative total house income in the dwelling unit is $17151 -in.representative_income 17152 Representative total house income in the dwelling unit is $17152 -in.representative_income 17155 Representative total house income in the dwelling unit is $17155 -in.representative_income 17158 Representative total house income in the dwelling unit is $17158 -in.representative_income 17172 Representative total house income in the dwelling unit is $17172 -in.representative_income 17174 Representative total house income in the dwelling unit is $17174 -in.representative_income 17175 Representative total house income in the dwelling unit is $17175 -in.representative_income 17180 Representative total house income in the dwelling unit is $17180 -in.representative_income 17181 Representative total house income in the dwelling unit is $17181 -in.representative_income 17184 Representative total house income in the dwelling unit is $17184 -in.representative_income 17190 Representative total house income in the dwelling unit is $17190 -in.representative_income 17194 Representative total house income in the dwelling unit is $17194 -in.representative_income 17197 Representative total house income in the dwelling unit is $17197 -in.representative_income 17200 Representative total house income in the dwelling unit is $17200 -in.representative_income 17203 Representative total house income in the dwelling unit is $17203 -in.representative_income 17207 Representative total house income in the dwelling unit is $17207 -in.representative_income 17208 Representative total house income in the dwelling unit is $17208 -in.representative_income 17213 Representative total house income in the dwelling unit is $17213 -in.representative_income 17222 Representative total house income in the dwelling unit is $17222 -in.representative_income 17223 Representative total house income in the dwelling unit is $17223 -in.representative_income 17226 Representative total house income in the dwelling unit is $17226 -in.representative_income 17227 Representative total house income in the dwelling unit is $17227 -in.representative_income 17229 Representative total house income in the dwelling unit is $17229 -in.representative_income 17234 Representative total house income in the dwelling unit is $17234 -in.representative_income 17243 Representative total house income in the dwelling unit is $17243 -in.representative_income 17245 Representative total house income in the dwelling unit is $17245 -in.representative_income 17248 Representative total house income in the dwelling unit is $17248 -in.representative_income 17250 Representative total house income in the dwelling unit is $17250 -in.representative_income 17254 Representative total house income in the dwelling unit is $17254 -in.representative_income 17256 Representative total house income in the dwelling unit is $17256 -in.representative_income 17261 Representative total house income in the dwelling unit is $17261 -in.representative_income 17263 Representative total house income in the dwelling unit is $17263 -in.representative_income 17264 Representative total house income in the dwelling unit is $17264 -in.representative_income 17266 Representative total house income in the dwelling unit is $17266 -in.representative_income 17273 Representative total house income in the dwelling unit is $17273 -in.representative_income 17276 Representative total house income in the dwelling unit is $17276 -in.representative_income 17278 Representative total house income in the dwelling unit is $17278 -in.representative_income 17281 Representative total house income in the dwelling unit is $17281 -in.representative_income 17282 Representative total house income in the dwelling unit is $17282 -in.representative_income 17285 Representative total house income in the dwelling unit is $17285 -in.representative_income 17288 Representative total house income in the dwelling unit is $17288 -in.representative_income 17289 Representative total house income in the dwelling unit is $17289 -in.representative_income 17292 Representative total house income in the dwelling unit is $17292 -in.representative_income 17295 Representative total house income in the dwelling unit is $17295 -in.representative_income 17298 Representative total house income in the dwelling unit is $17298 -in.representative_income 17307 Representative total house income in the dwelling unit is $17307 -in.representative_income 17308 Representative total house income in the dwelling unit is $17308 -in.representative_income 17309 Representative total house income in the dwelling unit is $17309 -in.representative_income 17318 Representative total house income in the dwelling unit is $17318 -in.representative_income 17328 Representative total house income in the dwelling unit is $17328 -in.representative_income 17334 Representative total house income in the dwelling unit is $17334 -in.representative_income 17342 Representative total house income in the dwelling unit is $17342 -in.representative_income 17344 Representative total house income in the dwelling unit is $17344 -in.representative_income 17347 Representative total house income in the dwelling unit is $17347 -in.representative_income 17348 Representative total house income in the dwelling unit is $17348 -in.representative_income 17354 Representative total house income in the dwelling unit is $17354 -in.representative_income 17359 Representative total house income in the dwelling unit is $17359 -in.representative_income 17364 Representative total house income in the dwelling unit is $17364 -in.representative_income 17367 Representative total house income in the dwelling unit is $17367 -in.representative_income 17369 Representative total house income in the dwelling unit is $17369 -in.representative_income 17374 Representative total house income in the dwelling unit is $17374 -in.representative_income 17379 Representative total house income in the dwelling unit is $17379 -in.representative_income 17390 Representative total house income in the dwelling unit is $17390 -in.representative_income 17394 Representative total house income in the dwelling unit is $17394 -in.representative_income 17395 Representative total house income in the dwelling unit is $17395 -in.representative_income 17396 Representative total house income in the dwelling unit is $17396 -in.representative_income 17401 Representative total house income in the dwelling unit is $17401 -in.representative_income 17410 Representative total house income in the dwelling unit is $17410 -in.representative_income 17411 Representative total house income in the dwelling unit is $17411 -in.representative_income 17412 Representative total house income in the dwelling unit is $17412 -in.representative_income 17415 Representative total house income in the dwelling unit is $17415 -in.representative_income 17417 Representative total house income in the dwelling unit is $17417 -in.representative_income 17431 Representative total house income in the dwelling unit is $17431 -in.representative_income 17435 Representative total house income in the dwelling unit is $17435 -in.representative_income 17441 Representative total house income in the dwelling unit is $17441 -in.representative_income 17443 Representative total house income in the dwelling unit is $17443 -in.representative_income 17445 Representative total house income in the dwelling unit is $17445 -in.representative_income 17446 Representative total house income in the dwelling unit is $17446 -in.representative_income 17450 Representative total house income in the dwelling unit is $17450 -in.representative_income 17453 Representative total house income in the dwelling unit is $17453 -in.representative_income 17454 Representative total house income in the dwelling unit is $17454 -in.representative_income 17455 Representative total house income in the dwelling unit is $17455 -in.representative_income 17465 Representative total house income in the dwelling unit is $17465 -in.representative_income 17474 Representative total house income in the dwelling unit is $17474 -in.representative_income 17476 Representative total house income in the dwelling unit is $17476 -in.representative_income 17487 Representative total house income in the dwelling unit is $17487 -in.representative_income 17493 Representative total house income in the dwelling unit is $17493 -in.representative_income 17496 Representative total house income in the dwelling unit is $17496 -in.representative_income 17497 Representative total house income in the dwelling unit is $17497 -in.representative_income 17500 Representative total house income in the dwelling unit is $17500 -in.representative_income 17504 Representative total house income in the dwelling unit is $17504 -in.representative_income 17507 Representative total house income in the dwelling unit is $17507 -in.representative_income 17513 Representative total house income in the dwelling unit is $17513 -in.representative_income 17517 Representative total house income in the dwelling unit is $17517 -in.representative_income 17519 Representative total house income in the dwelling unit is $17519 -in.representative_income 17525 Representative total house income in the dwelling unit is $17525 -in.representative_income 17535 Representative total house income in the dwelling unit is $17535 -in.representative_income 17540 Representative total house income in the dwelling unit is $17540 -in.representative_income 17554 Representative total house income in the dwelling unit is $17554 -in.representative_income 17561 Representative total house income in the dwelling unit is $17561 -in.representative_income 17575 Representative total house income in the dwelling unit is $17575 -in.representative_income 17577 Representative total house income in the dwelling unit is $17577 -in.representative_income 17581 Representative total house income in the dwelling unit is $17581 -in.representative_income 17583 Representative total house income in the dwelling unit is $17583 -in.representative_income 17586 Representative total house income in the dwelling unit is $17586 -in.representative_income 17587 Representative total house income in the dwelling unit is $17587 -in.representative_income 17596 Representative total house income in the dwelling unit is $17596 -in.representative_income 17597 Representative total house income in the dwelling unit is $17597 -in.representative_income 17605 Representative total house income in the dwelling unit is $17605 -in.representative_income 17606 Representative total house income in the dwelling unit is $17606 -in.representative_income 17609 Representative total house income in the dwelling unit is $17609 -in.representative_income 17611 Representative total house income in the dwelling unit is $17611 -in.representative_income 17612 Representative total house income in the dwelling unit is $17612 -in.representative_income 17627 Representative total house income in the dwelling unit is $17627 -in.representative_income 17638 Representative total house income in the dwelling unit is $17638 -in.representative_income 17644 Representative total house income in the dwelling unit is $17644 -in.representative_income 17648 Representative total house income in the dwelling unit is $17648 -in.representative_income 17657 Representative total house income in the dwelling unit is $17657 -in.representative_income 17662 Representative total house income in the dwelling unit is $17662 -in.representative_income 17664 Representative total house income in the dwelling unit is $17664 -in.representative_income 17665 Representative total house income in the dwelling unit is $17665 -in.representative_income 17669 Representative total house income in the dwelling unit is $17669 -in.representative_income 17675 Representative total house income in the dwelling unit is $17675 -in.representative_income 17678 Representative total house income in the dwelling unit is $17678 -in.representative_income 17680 Representative total house income in the dwelling unit is $17680 -in.representative_income 17686 Representative total house income in the dwelling unit is $17686 -in.representative_income 17690 Representative total house income in the dwelling unit is $17690 -in.representative_income 17698 Representative total house income in the dwelling unit is $17698 -in.representative_income 17707 Representative total house income in the dwelling unit is $17707 -in.representative_income 17712 Representative total house income in the dwelling unit is $17712 -in.representative_income 17717 Representative total house income in the dwelling unit is $17717 -in.representative_income 17719 Representative total house income in the dwelling unit is $17719 -in.representative_income 17720 Representative total house income in the dwelling unit is $17720 -in.representative_income 17730 Representative total house income in the dwelling unit is $17730 -in.representative_income 17734 Representative total house income in the dwelling unit is $17734 -in.representative_income 17741 Representative total house income in the dwelling unit is $17741 -in.representative_income 17744 Representative total house income in the dwelling unit is $17744 -in.representative_income 17758 Representative total house income in the dwelling unit is $17758 -in.representative_income 17769 Representative total house income in the dwelling unit is $17769 -in.representative_income 17770 Representative total house income in the dwelling unit is $17770 -in.representative_income 17772 Representative total house income in the dwelling unit is $17772 -in.representative_income 17778 Representative total house income in the dwelling unit is $17778 -in.representative_income 17779 Representative total house income in the dwelling unit is $17779 -in.representative_income 17782 Representative total house income in the dwelling unit is $17782 -in.representative_income 17793 Representative total house income in the dwelling unit is $17793 -in.representative_income 17799 Representative total house income in the dwelling unit is $17799 -in.representative_income 17803 Representative total house income in the dwelling unit is $17803 -in.representative_income 17812 Representative total house income in the dwelling unit is $17812 -in.representative_income 17819 Representative total house income in the dwelling unit is $17819 -in.representative_income 17823 Representative total house income in the dwelling unit is $17823 -in.representative_income 17824 Representative total house income in the dwelling unit is $17824 -in.representative_income 17828 Representative total house income in the dwelling unit is $17828 -in.representative_income 17830 Representative total house income in the dwelling unit is $17830 -in.representative_income 17836 Representative total house income in the dwelling unit is $17836 -in.representative_income 17839 Representative total house income in the dwelling unit is $17839 -in.representative_income 17844 Representative total house income in the dwelling unit is $17844 -in.representative_income 17849 Representative total house income in the dwelling unit is $17849 -in.representative_income 17863 Representative total house income in the dwelling unit is $17863 -in.representative_income 17873 Representative total house income in the dwelling unit is $17873 -in.representative_income 17876 Representative total house income in the dwelling unit is $17876 -in.representative_income 17880 Representative total house income in the dwelling unit is $17880 -in.representative_income 17882 Representative total house income in the dwelling unit is $17882 -in.representative_income 17884 Representative total house income in the dwelling unit is $17884 -in.representative_income 17886 Representative total house income in the dwelling unit is $17886 -in.representative_income 17888 Representative total house income in the dwelling unit is $17888 -in.representative_income 17895 Representative total house income in the dwelling unit is $17895 -in.representative_income 17900 Representative total house income in the dwelling unit is $17900 -in.representative_income 17905 Representative total house income in the dwelling unit is $17905 -in.representative_income 17907 Representative total house income in the dwelling unit is $17907 -in.representative_income 17910 Representative total house income in the dwelling unit is $17910 -in.representative_income 17917 Representative total house income in the dwelling unit is $17917 -in.representative_income 17920 Representative total house income in the dwelling unit is $17920 -in.representative_income 17925 Representative total house income in the dwelling unit is $17925 -in.representative_income 17927 Representative total house income in the dwelling unit is $17927 -in.representative_income 17928 Representative total house income in the dwelling unit is $17928 -in.representative_income 17930 Representative total house income in the dwelling unit is $17930 -in.representative_income 17931 Representative total house income in the dwelling unit is $17931 -in.representative_income 17936 Representative total house income in the dwelling unit is $17936 -in.representative_income 17943 Representative total house income in the dwelling unit is $17943 -in.representative_income 17947 Representative total house income in the dwelling unit is $17947 -in.representative_income 17948 Representative total house income in the dwelling unit is $17948 -in.representative_income 17960 Representative total house income in the dwelling unit is $17960 -in.representative_income 17966 Representative total house income in the dwelling unit is $17966 -in.representative_income 17968 Representative total house income in the dwelling unit is $17968 -in.representative_income 17969 Representative total house income in the dwelling unit is $17969 -in.representative_income 17971 Representative total house income in the dwelling unit is $17971 -in.representative_income 17980 Representative total house income in the dwelling unit is $17980 -in.representative_income 17981 Representative total house income in the dwelling unit is $17981 -in.representative_income 17984 Representative total house income in the dwelling unit is $17984 -in.representative_income 17991 Representative total house income in the dwelling unit is $17991 -in.representative_income 17999 Representative total house income in the dwelling unit is $17999 -in.representative_income 18001 Representative total house income in the dwelling unit is $18001 -in.representative_income 18012 Representative total house income in the dwelling unit is $18012 -in.representative_income 18013 Representative total house income in the dwelling unit is $18013 -in.representative_income 18023 Representative total house income in the dwelling unit is $18023 -in.representative_income 18033 Representative total house income in the dwelling unit is $18033 -in.representative_income 18034 Representative total house income in the dwelling unit is $18034 -in.representative_income 18035 Representative total house income in the dwelling unit is $18035 -in.representative_income 18040 Representative total house income in the dwelling unit is $18040 -in.representative_income 18041 Representative total house income in the dwelling unit is $18041 -in.representative_income 18044 Representative total house income in the dwelling unit is $18044 -in.representative_income 18050 Representative total house income in the dwelling unit is $18050 -in.representative_income 18055 Representative total house income in the dwelling unit is $18055 -in.representative_income 18067 Representative total house income in the dwelling unit is $18067 -in.representative_income 18078 Representative total house income in the dwelling unit is $18078 -in.representative_income 18082 Representative total house income in the dwelling unit is $18082 -in.representative_income 18086 Representative total house income in the dwelling unit is $18086 -in.representative_income 18090 Representative total house income in the dwelling unit is $18090 -in.representative_income 18092 Representative total house income in the dwelling unit is $18092 -in.representative_income 18102 Representative total house income in the dwelling unit is $18102 -in.representative_income 18107 Representative total house income in the dwelling unit is $18107 -in.representative_income 18112 Representative total house income in the dwelling unit is $18112 -in.representative_income 18114 Representative total house income in the dwelling unit is $18114 -in.representative_income 18122 Representative total house income in the dwelling unit is $18122 -in.representative_income 18132 Representative total house income in the dwelling unit is $18132 -in.representative_income 18140 Representative total house income in the dwelling unit is $18140 -in.representative_income 18142 Representative total house income in the dwelling unit is $18142 -in.representative_income 18146 Representative total house income in the dwelling unit is $18146 -in.representative_income 18152 Representative total house income in the dwelling unit is $18152 -in.representative_income 18154 Representative total house income in the dwelling unit is $18154 -in.representative_income 18160 Representative total house income in the dwelling unit is $18160 -in.representative_income 18167 Representative total house income in the dwelling unit is $18167 -in.representative_income 18174 Representative total house income in the dwelling unit is $18174 -in.representative_income 18183 Representative total house income in the dwelling unit is $18183 -in.representative_income 18184 Representative total house income in the dwelling unit is $18184 -in.representative_income 18185 Representative total house income in the dwelling unit is $18185 -in.representative_income 18192 Representative total house income in the dwelling unit is $18192 -in.representative_income 18193 Representative total house income in the dwelling unit is $18193 -in.representative_income 18195 Representative total house income in the dwelling unit is $18195 -in.representative_income 18206 Representative total house income in the dwelling unit is $18206 -in.representative_income 18213 Representative total house income in the dwelling unit is $18213 -in.representative_income 18216 Representative total house income in the dwelling unit is $18216 -in.representative_income 18217 Representative total house income in the dwelling unit is $18217 -in.representative_income 18220 Representative total house income in the dwelling unit is $18220 -in.representative_income 18224 Representative total house income in the dwelling unit is $18224 -in.representative_income 18245 Representative total house income in the dwelling unit is $18245 -in.representative_income 18248 Representative total house income in the dwelling unit is $18248 -in.representative_income 18255 Representative total house income in the dwelling unit is $18255 -in.representative_income 18257 Representative total house income in the dwelling unit is $18257 -in.representative_income 18260 Representative total house income in the dwelling unit is $18260 -in.representative_income 18266 Representative total house income in the dwelling unit is $18266 -in.representative_income 18267 Representative total house income in the dwelling unit is $18267 -in.representative_income 18271 Representative total house income in the dwelling unit is $18271 -in.representative_income 18275 Representative total house income in the dwelling unit is $18275 -in.representative_income 18277 Representative total house income in the dwelling unit is $18277 -in.representative_income 18281 Representative total house income in the dwelling unit is $18281 -in.representative_income 18284 Representative total house income in the dwelling unit is $18284 -in.representative_income 18292 Representative total house income in the dwelling unit is $18292 -in.representative_income 18294 Representative total house income in the dwelling unit is $18294 -in.representative_income 18303 Representative total house income in the dwelling unit is $18303 -in.representative_income 18305 Representative total house income in the dwelling unit is $18305 -in.representative_income 18324 Representative total house income in the dwelling unit is $18324 -in.representative_income 18340 Representative total house income in the dwelling unit is $18340 -in.representative_income 18350 Representative total house income in the dwelling unit is $18350 -in.representative_income 18356 Representative total house income in the dwelling unit is $18356 -in.representative_income 18357 Representative total house income in the dwelling unit is $18357 -in.representative_income 18359 Representative total house income in the dwelling unit is $18359 -in.representative_income 18361 Representative total house income in the dwelling unit is $18361 -in.representative_income 18363 Representative total house income in the dwelling unit is $18363 -in.representative_income 18364 Representative total house income in the dwelling unit is $18364 -in.representative_income 18368 Representative total house income in the dwelling unit is $18368 -in.representative_income 18369 Representative total house income in the dwelling unit is $18369 -in.representative_income 18377 Representative total house income in the dwelling unit is $18377 -in.representative_income 18379 Representative total house income in the dwelling unit is $18379 -in.representative_income 18385 Representative total house income in the dwelling unit is $18385 -in.representative_income 18388 Representative total house income in the dwelling unit is $18388 -in.representative_income 18389 Representative total house income in the dwelling unit is $18389 -in.representative_income 18396 Representative total house income in the dwelling unit is $18396 -in.representative_income 18406 Representative total house income in the dwelling unit is $18406 -in.representative_income 18407 Representative total house income in the dwelling unit is $18407 -in.representative_income 18410 Representative total house income in the dwelling unit is $18410 -in.representative_income 18419 Representative total house income in the dwelling unit is $18419 -in.representative_income 18420 Representative total house income in the dwelling unit is $18420 -in.representative_income 18422 Representative total house income in the dwelling unit is $18422 -in.representative_income 18435 Representative total house income in the dwelling unit is $18435 -in.representative_income 18445 Representative total house income in the dwelling unit is $18445 -in.representative_income 18453 Representative total house income in the dwelling unit is $18453 -in.representative_income 18454 Representative total house income in the dwelling unit is $18454 -in.representative_income 18455 Representative total house income in the dwelling unit is $18455 -in.representative_income 18458 Representative total house income in the dwelling unit is $18458 -in.representative_income 18463 Representative total house income in the dwelling unit is $18463 -in.representative_income 18464 Representative total house income in the dwelling unit is $18464 -in.representative_income 18474 Representative total house income in the dwelling unit is $18474 -in.representative_income 18475 Representative total house income in the dwelling unit is $18475 -in.representative_income 18476 Representative total house income in the dwelling unit is $18476 -in.representative_income 18486 Representative total house income in the dwelling unit is $18486 -in.representative_income 18488 Representative total house income in the dwelling unit is $18488 -in.representative_income 18494 Representative total house income in the dwelling unit is $18494 -in.representative_income 18495 Representative total house income in the dwelling unit is $18495 -in.representative_income 18498 Representative total house income in the dwelling unit is $18498 -in.representative_income 18506 Representative total house income in the dwelling unit is $18506 -in.representative_income 18508 Representative total house income in the dwelling unit is $18508 -in.representative_income 18509 Representative total house income in the dwelling unit is $18509 -in.representative_income 18536 Representative total house income in the dwelling unit is $18536 -in.representative_income 18539 Representative total house income in the dwelling unit is $18539 -in.representative_income 18546 Representative total house income in the dwelling unit is $18546 -in.representative_income 18550 Representative total house income in the dwelling unit is $18550 -in.representative_income 18560 Representative total house income in the dwelling unit is $18560 -in.representative_income 18561 Representative total house income in the dwelling unit is $18561 -in.representative_income 18563 Representative total house income in the dwelling unit is $18563 -in.representative_income 18566 Representative total house income in the dwelling unit is $18566 -in.representative_income 18571 Representative total house income in the dwelling unit is $18571 -in.representative_income 18573 Representative total house income in the dwelling unit is $18573 -in.representative_income 18584 Representative total house income in the dwelling unit is $18584 -in.representative_income 18586 Representative total house income in the dwelling unit is $18586 -in.representative_income 18587 Representative total house income in the dwelling unit is $18587 -in.representative_income 18605 Representative total house income in the dwelling unit is $18605 -in.representative_income 18613 Representative total house income in the dwelling unit is $18613 -in.representative_income 18614 Representative total house income in the dwelling unit is $18614 -in.representative_income 18617 Representative total house income in the dwelling unit is $18617 -in.representative_income 18618 Representative total house income in the dwelling unit is $18618 -in.representative_income 18624 Representative total house income in the dwelling unit is $18624 -in.representative_income 18628 Representative total house income in the dwelling unit is $18628 -in.representative_income 18638 Representative total house income in the dwelling unit is $18638 -in.representative_income 18645 Representative total house income in the dwelling unit is $18645 -in.representative_income 18649 Representative total house income in the dwelling unit is $18649 -in.representative_income 18660 Representative total house income in the dwelling unit is $18660 -in.representative_income 18667 Representative total house income in the dwelling unit is $18667 -in.representative_income 18669 Representative total house income in the dwelling unit is $18669 -in.representative_income 18671 Representative total house income in the dwelling unit is $18671 -in.representative_income 18672 Representative total house income in the dwelling unit is $18672 -in.representative_income 18677 Representative total house income in the dwelling unit is $18677 -in.representative_income 18678 Representative total house income in the dwelling unit is $18678 -in.representative_income 18683 Representative total house income in the dwelling unit is $18683 -in.representative_income 18688 Representative total house income in the dwelling unit is $18688 -in.representative_income 18693 Representative total house income in the dwelling unit is $18693 -in.representative_income 18698 Representative total house income in the dwelling unit is $18698 -in.representative_income 18700 Representative total house income in the dwelling unit is $18700 -in.representative_income 18711 Representative total house income in the dwelling unit is $18711 -in.representative_income 18720 Representative total house income in the dwelling unit is $18720 -in.representative_income 18721 Representative total house income in the dwelling unit is $18721 -in.representative_income 18729 Representative total house income in the dwelling unit is $18729 -in.representative_income 18730 Representative total house income in the dwelling unit is $18730 -in.representative_income 18731 Representative total house income in the dwelling unit is $18731 -in.representative_income 18751 Representative total house income in the dwelling unit is $18751 -in.representative_income 18758 Representative total house income in the dwelling unit is $18758 -in.representative_income 18763 Representative total house income in the dwelling unit is $18763 -in.representative_income 18764 Representative total house income in the dwelling unit is $18764 -in.representative_income 18772 Representative total house income in the dwelling unit is $18772 -in.representative_income 18773 Representative total house income in the dwelling unit is $18773 -in.representative_income 18774 Representative total house income in the dwelling unit is $18774 -in.representative_income 18779 Representative total house income in the dwelling unit is $18779 -in.representative_income 18785 Representative total house income in the dwelling unit is $18785 -in.representative_income 18786 Representative total house income in the dwelling unit is $18786 -in.representative_income 18789 Representative total house income in the dwelling unit is $18789 -in.representative_income 18791 Representative total house income in the dwelling unit is $18791 -in.representative_income 18793 Representative total house income in the dwelling unit is $18793 -in.representative_income 18794 Representative total house income in the dwelling unit is $18794 -in.representative_income 18799 Representative total house income in the dwelling unit is $18799 -in.representative_income 18800 Representative total house income in the dwelling unit is $18800 -in.representative_income 18804 Representative total house income in the dwelling unit is $18804 -in.representative_income 18822 Representative total house income in the dwelling unit is $18822 -in.representative_income 18824 Representative total house income in the dwelling unit is $18824 -in.representative_income 18829 Representative total house income in the dwelling unit is $18829 -in.representative_income 18834 Representative total house income in the dwelling unit is $18834 -in.representative_income 18835 Representative total house income in the dwelling unit is $18835 -in.representative_income 18839 Representative total house income in the dwelling unit is $18839 -in.representative_income 18855 Representative total house income in the dwelling unit is $18855 -in.representative_income 18860 Representative total house income in the dwelling unit is $18860 -in.representative_income 18865 Representative total house income in the dwelling unit is $18865 -in.representative_income 18870 Representative total house income in the dwelling unit is $18870 -in.representative_income 18876 Representative total house income in the dwelling unit is $18876 -in.representative_income 18878 Representative total house income in the dwelling unit is $18878 -in.representative_income 18882 Representative total house income in the dwelling unit is $18882 -in.representative_income 18885 Representative total house income in the dwelling unit is $18885 -in.representative_income 18886 Representative total house income in the dwelling unit is $18886 -in.representative_income 18890 Representative total house income in the dwelling unit is $18890 -in.representative_income 18892 Representative total house income in the dwelling unit is $18892 -in.representative_income 18896 Representative total house income in the dwelling unit is $18896 -in.representative_income 18898 Representative total house income in the dwelling unit is $18898 -in.representative_income 18903 Representative total house income in the dwelling unit is $18903 -in.representative_income 18908 Representative total house income in the dwelling unit is $18908 -in.representative_income 18910 Representative total house income in the dwelling unit is $18910 -in.representative_income 18914 Representative total house income in the dwelling unit is $18914 -in.representative_income 18919 Representative total house income in the dwelling unit is $18919 -in.representative_income 18941 Representative total house income in the dwelling unit is $18941 -in.representative_income 18957 Representative total house income in the dwelling unit is $18957 -in.representative_income 18960 Representative total house income in the dwelling unit is $18960 -in.representative_income 18962 Representative total house income in the dwelling unit is $18962 -in.representative_income 18971 Representative total house income in the dwelling unit is $18971 -in.representative_income 18978 Representative total house income in the dwelling unit is $18978 -in.representative_income 18983 Representative total house income in the dwelling unit is $18983 -in.representative_income 18989 Representative total house income in the dwelling unit is $18989 -in.representative_income 18991 Representative total house income in the dwelling unit is $18991 -in.representative_income 18992 Representative total house income in the dwelling unit is $18992 -in.representative_income 18995 Representative total house income in the dwelling unit is $18995 -in.representative_income 19000 Representative total house income in the dwelling unit is $19000 -in.representative_income 19001 Representative total house income in the dwelling unit is $19001 -in.representative_income 19004 Representative total house income in the dwelling unit is $19004 -in.representative_income 19007 Representative total house income in the dwelling unit is $19007 -in.representative_income 19014 Representative total house income in the dwelling unit is $19014 -in.representative_income 19016 Representative total house income in the dwelling unit is $19016 -in.representative_income 19017 Representative total house income in the dwelling unit is $19017 -in.representative_income 19021 Representative total house income in the dwelling unit is $19021 -in.representative_income 19030 Representative total house income in the dwelling unit is $19030 -in.representative_income 19032 Representative total house income in the dwelling unit is $19032 -in.representative_income 19036 Representative total house income in the dwelling unit is $19036 -in.representative_income 19038 Representative total house income in the dwelling unit is $19038 -in.representative_income 19040 Representative total house income in the dwelling unit is $19040 -in.representative_income 19041 Representative total house income in the dwelling unit is $19041 -in.representative_income 19043 Representative total house income in the dwelling unit is $19043 -in.representative_income 19046 Representative total house income in the dwelling unit is $19046 -in.representative_income 19049 Representative total house income in the dwelling unit is $19049 -in.representative_income 19053 Representative total house income in the dwelling unit is $19053 -in.representative_income 19061 Representative total house income in the dwelling unit is $19061 -in.representative_income 19067 Representative total house income in the dwelling unit is $19067 -in.representative_income 19072 Representative total house income in the dwelling unit is $19072 -in.representative_income 19076 Representative total house income in the dwelling unit is $19076 -in.representative_income 19082 Representative total house income in the dwelling unit is $19082 -in.representative_income 19088 Representative total house income in the dwelling unit is $19088 -in.representative_income 19092 Representative total house income in the dwelling unit is $19092 -in.representative_income 19096 Representative total house income in the dwelling unit is $19096 -in.representative_income 19099 Representative total house income in the dwelling unit is $19099 -in.representative_income 19107 Representative total house income in the dwelling unit is $19107 -in.representative_income 19113 Representative total house income in the dwelling unit is $19113 -in.representative_income 19120 Representative total house income in the dwelling unit is $19120 -in.representative_income 19124 Representative total house income in the dwelling unit is $19124 -in.representative_income 19133 Representative total house income in the dwelling unit is $19133 -in.representative_income 19142 Representative total house income in the dwelling unit is $19142 -in.representative_income 19146 Representative total house income in the dwelling unit is $19146 -in.representative_income 19150 Representative total house income in the dwelling unit is $19150 -in.representative_income 19152 Representative total house income in the dwelling unit is $19152 -in.representative_income 19154 Representative total house income in the dwelling unit is $19154 -in.representative_income 19167 Representative total house income in the dwelling unit is $19167 -in.representative_income 19171 Representative total house income in the dwelling unit is $19171 -in.representative_income 19173 Representative total house income in the dwelling unit is $19173 -in.representative_income 19175 Representative total house income in the dwelling unit is $19175 -in.representative_income 19178 Representative total house income in the dwelling unit is $19178 -in.representative_income 19182 Representative total house income in the dwelling unit is $19182 -in.representative_income 19183 Representative total house income in the dwelling unit is $19183 -in.representative_income 19185 Representative total house income in the dwelling unit is $19185 -in.representative_income 19193 Representative total house income in the dwelling unit is $19193 -in.representative_income 19194 Representative total house income in the dwelling unit is $19194 -in.representative_income 19195 Representative total house income in the dwelling unit is $19195 -in.representative_income 19203 Representative total house income in the dwelling unit is $19203 -in.representative_income 19204 Representative total house income in the dwelling unit is $19204 -in.representative_income 19205 Representative total house income in the dwelling unit is $19205 -in.representative_income 19211 Representative total house income in the dwelling unit is $19211 -in.representative_income 19213 Representative total house income in the dwelling unit is $19213 -in.representative_income 19215 Representative total house income in the dwelling unit is $19215 -in.representative_income 19216 Representative total house income in the dwelling unit is $19216 -in.representative_income 19218 Representative total house income in the dwelling unit is $19218 -in.representative_income 19226 Representative total house income in the dwelling unit is $19226 -in.representative_income 19227 Representative total house income in the dwelling unit is $19227 -in.representative_income 19232 Representative total house income in the dwelling unit is $19232 -in.representative_income 19233 Representative total house income in the dwelling unit is $19233 -in.representative_income 19237 Representative total house income in the dwelling unit is $19237 -in.representative_income 19241 Representative total house income in the dwelling unit is $19241 -in.representative_income 19243 Representative total house income in the dwelling unit is $19243 -in.representative_income 19244 Representative total house income in the dwelling unit is $19244 -in.representative_income 19247 Representative total house income in the dwelling unit is $19247 -in.representative_income 19254 Representative total house income in the dwelling unit is $19254 -in.representative_income 19257 Representative total house income in the dwelling unit is $19257 -in.representative_income 19258 Representative total house income in the dwelling unit is $19258 -in.representative_income 19264 Representative total house income in the dwelling unit is $19264 -in.representative_income 19265 Representative total house income in the dwelling unit is $19265 -in.representative_income 19268 Representative total house income in the dwelling unit is $19268 -in.representative_income 19284 Representative total house income in the dwelling unit is $19284 -in.representative_income 19286 Representative total house income in the dwelling unit is $19286 -in.representative_income 19288 Representative total house income in the dwelling unit is $19288 -in.representative_income 19294 Representative total house income in the dwelling unit is $19294 -in.representative_income 19300 Representative total house income in the dwelling unit is $19300 -in.representative_income 19304 Representative total house income in the dwelling unit is $19304 -in.representative_income 19305 Representative total house income in the dwelling unit is $19305 -in.representative_income 19314 Representative total house income in the dwelling unit is $19314 -in.representative_income 19318 Representative total house income in the dwelling unit is $19318 -in.representative_income 19319 Representative total house income in the dwelling unit is $19319 -in.representative_income 19321 Representative total house income in the dwelling unit is $19321 -in.representative_income 19323 Representative total house income in the dwelling unit is $19323 -in.representative_income 19327 Representative total house income in the dwelling unit is $19327 -in.representative_income 19329 Representative total house income in the dwelling unit is $19329 -in.representative_income 19330 Representative total house income in the dwelling unit is $19330 -in.representative_income 19333 Representative total house income in the dwelling unit is $19333 -in.representative_income 19334 Representative total house income in the dwelling unit is $19334 -in.representative_income 19340 Representative total house income in the dwelling unit is $19340 -in.representative_income 19344 Representative total house income in the dwelling unit is $19344 -in.representative_income 19351 Representative total house income in the dwelling unit is $19351 -in.representative_income 19355 Representative total house income in the dwelling unit is $19355 -in.representative_income 19357 Representative total house income in the dwelling unit is $19357 -in.representative_income 19359 Representative total house income in the dwelling unit is $19359 -in.representative_income 19362 Representative total house income in the dwelling unit is $19362 -in.representative_income 19372 Representative total house income in the dwelling unit is $19372 -in.representative_income 19375 Representative total house income in the dwelling unit is $19375 -in.representative_income 19376 Representative total house income in the dwelling unit is $19376 -in.representative_income 19381 Representative total house income in the dwelling unit is $19381 -in.representative_income 19386 Representative total house income in the dwelling unit is $19386 -in.representative_income 19387 Representative total house income in the dwelling unit is $19387 -in.representative_income 19392 Representative total house income in the dwelling unit is $19392 -in.representative_income 19394 Representative total house income in the dwelling unit is $19394 -in.representative_income 19395 Representative total house income in the dwelling unit is $19395 -in.representative_income 19402 Representative total house income in the dwelling unit is $19402 -in.representative_income 19405 Representative total house income in the dwelling unit is $19405 -in.representative_income 19412 Representative total house income in the dwelling unit is $19412 -in.representative_income 19415 Representative total house income in the dwelling unit is $19415 -in.representative_income 19416 Representative total house income in the dwelling unit is $19416 -in.representative_income 19418 Representative total house income in the dwelling unit is $19418 -in.representative_income 19422 Representative total house income in the dwelling unit is $19422 -in.representative_income 19427 Representative total house income in the dwelling unit is $19427 -in.representative_income 19429 Representative total house income in the dwelling unit is $19429 -in.representative_income 19440 Representative total house income in the dwelling unit is $19440 -in.representative_income 19445 Representative total house income in the dwelling unit is $19445 -in.representative_income 19447 Representative total house income in the dwelling unit is $19447 -in.representative_income 19449 Representative total house income in the dwelling unit is $19449 -in.representative_income 19450 Representative total house income in the dwelling unit is $19450 -in.representative_income 19453 Representative total house income in the dwelling unit is $19453 -in.representative_income 19455 Representative total house income in the dwelling unit is $19455 -in.representative_income 19460 Representative total house income in the dwelling unit is $19460 -in.representative_income 19462 Representative total house income in the dwelling unit is $19462 -in.representative_income 19465 Representative total house income in the dwelling unit is $19465 -in.representative_income 19470 Representative total house income in the dwelling unit is $19470 -in.representative_income 19473 Representative total house income in the dwelling unit is $19473 -in.representative_income 19474 Representative total house income in the dwelling unit is $19474 -in.representative_income 19481 Representative total house income in the dwelling unit is $19481 -in.representative_income 19482 Representative total house income in the dwelling unit is $19482 -in.representative_income 19483 Representative total house income in the dwelling unit is $19483 -in.representative_income 19484 Representative total house income in the dwelling unit is $19484 -in.representative_income 19489 Representative total house income in the dwelling unit is $19489 -in.representative_income 19492 Representative total house income in the dwelling unit is $19492 -in.representative_income 19494 Representative total house income in the dwelling unit is $19494 -in.representative_income 19496 Representative total house income in the dwelling unit is $19496 -in.representative_income 19500 Representative total house income in the dwelling unit is $19500 -in.representative_income 19505 Representative total house income in the dwelling unit is $19505 -in.representative_income 19510 Representative total house income in the dwelling unit is $19510 -in.representative_income 19514 Representative total house income in the dwelling unit is $19514 -in.representative_income 19515 Representative total house income in the dwelling unit is $19515 -in.representative_income 19516 Representative total house income in the dwelling unit is $19516 -in.representative_income 19524 Representative total house income in the dwelling unit is $19524 -in.representative_income 19526 Representative total house income in the dwelling unit is $19526 -in.representative_income 19531 Representative total house income in the dwelling unit is $19531 -in.representative_income 19535 Representative total house income in the dwelling unit is $19535 -in.representative_income 19536 Representative total house income in the dwelling unit is $19536 -in.representative_income 19537 Representative total house income in the dwelling unit is $19537 -in.representative_income 19546 Representative total house income in the dwelling unit is $19546 -in.representative_income 19557 Representative total house income in the dwelling unit is $19557 -in.representative_income 19562 Representative total house income in the dwelling unit is $19562 -in.representative_income 19563 Representative total house income in the dwelling unit is $19563 -in.representative_income 19567 Representative total house income in the dwelling unit is $19567 -in.representative_income 19576 Representative total house income in the dwelling unit is $19576 -in.representative_income 19578 Representative total house income in the dwelling unit is $19578 -in.representative_income 19579 Representative total house income in the dwelling unit is $19579 -in.representative_income 19587 Representative total house income in the dwelling unit is $19587 -in.representative_income 19589 Representative total house income in the dwelling unit is $19589 -in.representative_income 19591 Representative total house income in the dwelling unit is $19591 -in.representative_income 19597 Representative total house income in the dwelling unit is $19597 -in.representative_income 19602 Representative total house income in the dwelling unit is $19602 -in.representative_income 19616 Representative total house income in the dwelling unit is $19616 -in.representative_income 19622 Representative total house income in the dwelling unit is $19622 -in.representative_income 19626 Representative total house income in the dwelling unit is $19626 -in.representative_income 19629 Representative total house income in the dwelling unit is $19629 -in.representative_income 19632 Representative total house income in the dwelling unit is $19632 -in.representative_income 19639 Representative total house income in the dwelling unit is $19639 -in.representative_income 19644 Representative total house income in the dwelling unit is $19644 -in.representative_income 19647 Representative total house income in the dwelling unit is $19647 -in.representative_income 19649 Representative total house income in the dwelling unit is $19649 -in.representative_income 19654 Representative total house income in the dwelling unit is $19654 -in.representative_income 19655 Representative total house income in the dwelling unit is $19655 -in.representative_income 19657 Representative total house income in the dwelling unit is $19657 -in.representative_income 19658 Representative total house income in the dwelling unit is $19658 -in.representative_income 19659 Representative total house income in the dwelling unit is $19659 -in.representative_income 19665 Representative total house income in the dwelling unit is $19665 -in.representative_income 19668 Representative total house income in the dwelling unit is $19668 -in.representative_income 19678 Representative total house income in the dwelling unit is $19678 -in.representative_income 19686 Representative total house income in the dwelling unit is $19686 -in.representative_income 19688 Representative total house income in the dwelling unit is $19688 -in.representative_income 19697 Representative total house income in the dwelling unit is $19697 -in.representative_income 19698 Representative total house income in the dwelling unit is $19698 -in.representative_income 19700 Representative total house income in the dwelling unit is $19700 -in.representative_income 19701 Representative total house income in the dwelling unit is $19701 -in.representative_income 19708 Representative total house income in the dwelling unit is $19708 -in.representative_income 19721 Representative total house income in the dwelling unit is $19721 -in.representative_income 19728 Representative total house income in the dwelling unit is $19728 -in.representative_income 19741 Representative total house income in the dwelling unit is $19741 -in.representative_income 19752 Representative total house income in the dwelling unit is $19752 -in.representative_income 19754 Representative total house income in the dwelling unit is $19754 -in.representative_income 19762 Representative total house income in the dwelling unit is $19762 -in.representative_income 19773 Representative total house income in the dwelling unit is $19773 -in.representative_income 19774 Representative total house income in the dwelling unit is $19774 -in.representative_income 19782 Representative total house income in the dwelling unit is $19782 -in.representative_income 19795 Representative total house income in the dwelling unit is $19795 -in.representative_income 19799 Representative total house income in the dwelling unit is $19799 -in.representative_income 19804 Representative total house income in the dwelling unit is $19804 -in.representative_income 19812 Representative total house income in the dwelling unit is $19812 -in.representative_income 19816 Representative total house income in the dwelling unit is $19816 -in.representative_income 19826 Representative total house income in the dwelling unit is $19826 -in.representative_income 19837 Representative total house income in the dwelling unit is $19837 -in.representative_income 19856 Representative total house income in the dwelling unit is $19856 -in.representative_income 19859 Representative total house income in the dwelling unit is $19859 -in.representative_income 19870 Representative total house income in the dwelling unit is $19870 -in.representative_income 19881 Representative total house income in the dwelling unit is $19881 -in.representative_income 19886 Representative total house income in the dwelling unit is $19886 -in.representative_income 19894 Representative total house income in the dwelling unit is $19894 -in.representative_income 19900 Representative total house income in the dwelling unit is $19900 -in.representative_income 19907 Representative total house income in the dwelling unit is $19907 -in.representative_income 19923 Representative total house income in the dwelling unit is $19923 -in.representative_income 19932 Representative total house income in the dwelling unit is $19932 -in.representative_income 19935 Representative total house income in the dwelling unit is $19935 -in.representative_income 19948 Representative total house income in the dwelling unit is $19948 -in.representative_income 19966 Representative total house income in the dwelling unit is $19966 -in.representative_income 19969 Representative total house income in the dwelling unit is $19969 -in.representative_income 19979 Representative total house income in the dwelling unit is $19979 -in.representative_income 19985 Representative total house income in the dwelling unit is $19985 -in.representative_income 19988 Representative total house income in the dwelling unit is $19988 -in.representative_income 19999 Representative total house income in the dwelling unit is $19999 -in.representative_income 20000 Representative total house income in the dwelling unit is $20000 -in.representative_income 20001 Representative total house income in the dwelling unit is $20001 -in.representative_income 20010 Representative total house income in the dwelling unit is $20010 -in.representative_income 20038 Representative total house income in the dwelling unit is $20038 -in.representative_income 20041 Representative total house income in the dwelling unit is $20041 -in.representative_income 20051 Representative total house income in the dwelling unit is $20051 -in.representative_income 20070 Representative total house income in the dwelling unit is $20070 -in.representative_income 20073 Representative total house income in the dwelling unit is $20073 -in.representative_income 20096 Representative total house income in the dwelling unit is $20096 -in.representative_income 20102 Representative total house income in the dwelling unit is $20102 -in.representative_income 20113 Representative total house income in the dwelling unit is $20113 -in.representative_income 20129 Representative total house income in the dwelling unit is $20129 -in.representative_income 20133 Representative total house income in the dwelling unit is $20133 -in.representative_income 20140 Representative total house income in the dwelling unit is $20140 -in.representative_income 20142 Representative total house income in the dwelling unit is $20142 -in.representative_income 20143 Representative total house income in the dwelling unit is $20143 -in.representative_income 20150 Representative total house income in the dwelling unit is $20150 -in.representative_income 20162 Representative total house income in the dwelling unit is $20162 -in.representative_income 20181 Representative total house income in the dwelling unit is $20181 -in.representative_income 20192 Representative total house income in the dwelling unit is $20192 -in.representative_income 20195 Representative total house income in the dwelling unit is $20195 -in.representative_income 20203 Representative total house income in the dwelling unit is $20203 -in.representative_income 20205 Representative total house income in the dwelling unit is $20205 -in.representative_income 20207 Representative total house income in the dwelling unit is $20207 -in.representative_income 20213 Representative total house income in the dwelling unit is $20213 -in.representative_income 20216 Representative total house income in the dwelling unit is $20216 -in.representative_income 20238 Representative total house income in the dwelling unit is $20238 -in.representative_income 20245 Representative total house income in the dwelling unit is $20245 -in.representative_income 20248 Representative total house income in the dwelling unit is $20248 -in.representative_income 20253 Representative total house income in the dwelling unit is $20253 -in.representative_income 20258 Representative total house income in the dwelling unit is $20258 -in.representative_income 20259 Representative total house income in the dwelling unit is $20259 -in.representative_income 20264 Representative total house income in the dwelling unit is $20264 -in.representative_income 20267 Representative total house income in the dwelling unit is $20267 -in.representative_income 20269 Representative total house income in the dwelling unit is $20269 -in.representative_income 20278 Representative total house income in the dwelling unit is $20278 -in.representative_income 20284 Representative total house income in the dwelling unit is $20284 -in.representative_income 20288 Representative total house income in the dwelling unit is $20288 -in.representative_income 20292 Representative total house income in the dwelling unit is $20292 -in.representative_income 20294 Representative total house income in the dwelling unit is $20294 -in.representative_income 20302 Representative total house income in the dwelling unit is $20302 -in.representative_income 20304 Representative total house income in the dwelling unit is $20304 -in.representative_income 20310 Representative total house income in the dwelling unit is $20310 -in.representative_income 20313 Representative total house income in the dwelling unit is $20313 -in.representative_income 20320 Representative total house income in the dwelling unit is $20320 -in.representative_income 20324 Representative total house income in the dwelling unit is $20324 -in.representative_income 20340 Representative total house income in the dwelling unit is $20340 -in.representative_income 20344 Representative total house income in the dwelling unit is $20344 -in.representative_income 20354 Representative total house income in the dwelling unit is $20354 -in.representative_income 20367 Representative total house income in the dwelling unit is $20367 -in.representative_income 20375 Representative total house income in the dwelling unit is $20375 -in.representative_income 20378 Representative total house income in the dwelling unit is $20378 -in.representative_income 20396 Representative total house income in the dwelling unit is $20396 -in.representative_income 20402 Representative total house income in the dwelling unit is $20402 -in.representative_income 20405 Representative total house income in the dwelling unit is $20405 -in.representative_income 20407 Representative total house income in the dwelling unit is $20407 -in.representative_income 20421 Representative total house income in the dwelling unit is $20421 -in.representative_income 20423 Representative total house income in the dwelling unit is $20423 -in.representative_income 20443 Representative total house income in the dwelling unit is $20443 -in.representative_income 20453 Representative total house income in the dwelling unit is $20453 -in.representative_income 20459 Representative total house income in the dwelling unit is $20459 -in.representative_income 20467 Representative total house income in the dwelling unit is $20467 -in.representative_income 20496 Representative total house income in the dwelling unit is $20496 -in.representative_income 20502 Representative total house income in the dwelling unit is $20502 -in.representative_income 20506 Representative total house income in the dwelling unit is $20506 -in.representative_income 20507 Representative total house income in the dwelling unit is $20507 -in.representative_income 20515 Representative total house income in the dwelling unit is $20515 -in.representative_income 20517 Representative total house income in the dwelling unit is $20517 -in.representative_income 20526 Representative total house income in the dwelling unit is $20526 -in.representative_income 20529 Representative total house income in the dwelling unit is $20529 -in.representative_income 20551 Representative total house income in the dwelling unit is $20551 -in.representative_income 20556 Representative total house income in the dwelling unit is $20556 -in.representative_income 20557 Representative total house income in the dwelling unit is $20557 -in.representative_income 20565 Representative total house income in the dwelling unit is $20565 -in.representative_income 20567 Representative total house income in the dwelling unit is $20567 -in.representative_income 20570 Representative total house income in the dwelling unit is $20570 -in.representative_income 20572 Representative total house income in the dwelling unit is $20572 -in.representative_income 20586 Representative total house income in the dwelling unit is $20586 -in.representative_income 20597 Representative total house income in the dwelling unit is $20597 -in.representative_income 20607 Representative total house income in the dwelling unit is $20607 -in.representative_income 20610 Representative total house income in the dwelling unit is $20610 -in.representative_income 20618 Representative total house income in the dwelling unit is $20618 -in.representative_income 20619 Representative total house income in the dwelling unit is $20619 -in.representative_income 20629 Representative total house income in the dwelling unit is $20629 -in.representative_income 20633 Representative total house income in the dwelling unit is $20633 -in.representative_income 20637 Representative total house income in the dwelling unit is $20637 -in.representative_income 20640 Representative total house income in the dwelling unit is $20640 -in.representative_income 20650 Representative total house income in the dwelling unit is $20650 -in.representative_income 20654 Representative total house income in the dwelling unit is $20654 -in.representative_income 20657 Representative total house income in the dwelling unit is $20657 -in.representative_income 20668 Representative total house income in the dwelling unit is $20668 -in.representative_income 20671 Representative total house income in the dwelling unit is $20671 -in.representative_income 20675 Representative total house income in the dwelling unit is $20675 -in.representative_income 20678 Representative total house income in the dwelling unit is $20678 -in.representative_income 20680 Representative total house income in the dwelling unit is $20680 -in.representative_income 20687 Representative total house income in the dwelling unit is $20687 -in.representative_income 20691 Representative total house income in the dwelling unit is $20691 -in.representative_income 20698 Representative total house income in the dwelling unit is $20698 -in.representative_income 20708 Representative total house income in the dwelling unit is $20708 -in.representative_income 20718 Representative total house income in the dwelling unit is $20718 -in.representative_income 20732 Representative total house income in the dwelling unit is $20732 -in.representative_income 20745 Representative total house income in the dwelling unit is $20745 -in.representative_income 20748 Representative total house income in the dwelling unit is $20748 -in.representative_income 20750 Representative total house income in the dwelling unit is $20750 -in.representative_income 20766 Representative total house income in the dwelling unit is $20766 -in.representative_income 20769 Representative total house income in the dwelling unit is $20769 -in.representative_income 20776 Representative total house income in the dwelling unit is $20776 -in.representative_income 20777 Representative total house income in the dwelling unit is $20777 -in.representative_income 20784 Representative total house income in the dwelling unit is $20784 -in.representative_income 20788 Representative total house income in the dwelling unit is $20788 -in.representative_income 20799 Representative total house income in the dwelling unit is $20799 -in.representative_income 20804 Representative total house income in the dwelling unit is $20804 -in.representative_income 20805 Representative total house income in the dwelling unit is $20805 -in.representative_income 20809 Representative total house income in the dwelling unit is $20809 -in.representative_income 20810 Representative total house income in the dwelling unit is $20810 -in.representative_income 20825 Representative total house income in the dwelling unit is $20825 -in.representative_income 20835 Representative total house income in the dwelling unit is $20835 -in.representative_income 20838 Representative total house income in the dwelling unit is $20838 -in.representative_income 20853 Representative total house income in the dwelling unit is $20853 -in.representative_income 20858 Representative total house income in the dwelling unit is $20858 -in.representative_income 20881 Representative total house income in the dwelling unit is $20881 -in.representative_income 20885 Representative total house income in the dwelling unit is $20885 -in.representative_income 20890 Representative total house income in the dwelling unit is $20890 -in.representative_income 20896 Representative total house income in the dwelling unit is $20896 -in.representative_income 20900 Representative total house income in the dwelling unit is $20900 -in.representative_income 20907 Representative total house income in the dwelling unit is $20907 -in.representative_income 20910 Representative total house income in the dwelling unit is $20910 -in.representative_income 20917 Representative total house income in the dwelling unit is $20917 -in.representative_income 20919 Representative total house income in the dwelling unit is $20919 -in.representative_income 20933 Representative total house income in the dwelling unit is $20933 -in.representative_income 20937 Representative total house income in the dwelling unit is $20937 -in.representative_income 20939 Representative total house income in the dwelling unit is $20939 -in.representative_income 20943 Representative total house income in the dwelling unit is $20943 -in.representative_income 20948 Representative total house income in the dwelling unit is $20948 -in.representative_income 20949 Representative total house income in the dwelling unit is $20949 -in.representative_income 20957 Representative total house income in the dwelling unit is $20957 -in.representative_income 20961 Representative total house income in the dwelling unit is $20961 -in.representative_income 20971 Representative total house income in the dwelling unit is $20971 -in.representative_income 20975 Representative total house income in the dwelling unit is $20975 -in.representative_income 20981 Representative total house income in the dwelling unit is $20981 -in.representative_income 20986 Representative total house income in the dwelling unit is $20986 -in.representative_income 20987 Representative total house income in the dwelling unit is $20987 -in.representative_income 20991 Representative total house income in the dwelling unit is $20991 -in.representative_income 21007 Representative total house income in the dwelling unit is $21007 -in.representative_income 21011 Representative total house income in the dwelling unit is $21011 -in.representative_income 21013 Representative total house income in the dwelling unit is $21013 -in.representative_income 21031 Representative total house income in the dwelling unit is $21031 -in.representative_income 21039 Representative total house income in the dwelling unit is $21039 -in.representative_income 21042 Representative total house income in the dwelling unit is $21042 -in.representative_income 21048 Representative total house income in the dwelling unit is $21048 -in.representative_income 21050 Representative total house income in the dwelling unit is $21050 -in.representative_income 21051 Representative total house income in the dwelling unit is $21051 -in.representative_income 21060 Representative total house income in the dwelling unit is $21060 -in.representative_income 21069 Representative total house income in the dwelling unit is $21069 -in.representative_income 21070 Representative total house income in the dwelling unit is $21070 -in.representative_income 21071 Representative total house income in the dwelling unit is $21071 -in.representative_income 21092 Representative total house income in the dwelling unit is $21092 -in.representative_income 21103 Representative total house income in the dwelling unit is $21103 -in.representative_income 21104 Representative total house income in the dwelling unit is $21104 -in.representative_income 21112 Representative total house income in the dwelling unit is $21112 -in.representative_income 21114 Representative total house income in the dwelling unit is $21114 -in.representative_income 21119 Representative total house income in the dwelling unit is $21119 -in.representative_income 21130 Representative total house income in the dwelling unit is $21130 -in.representative_income 21132 Representative total house income in the dwelling unit is $21132 -in.representative_income 21142 Representative total house income in the dwelling unit is $21142 -in.representative_income 21144 Representative total house income in the dwelling unit is $21144 -in.representative_income 21147 Representative total house income in the dwelling unit is $21147 -in.representative_income 21153 Representative total house income in the dwelling unit is $21153 -in.representative_income 21155 Representative total house income in the dwelling unit is $21155 -in.representative_income 21159 Representative total house income in the dwelling unit is $21159 -in.representative_income 21167 Representative total house income in the dwelling unit is $21167 -in.representative_income 21168 Representative total house income in the dwelling unit is $21168 -in.representative_income 21176 Representative total house income in the dwelling unit is $21176 -in.representative_income 21177 Representative total house income in the dwelling unit is $21177 -in.representative_income 21181 Representative total house income in the dwelling unit is $21181 -in.representative_income 21186 Representative total house income in the dwelling unit is $21186 -in.representative_income 21190 Representative total house income in the dwelling unit is $21190 -in.representative_income 21198 Representative total house income in the dwelling unit is $21198 -in.representative_income 21207 Representative total house income in the dwelling unit is $21207 -in.representative_income 21208 Representative total house income in the dwelling unit is $21208 -in.representative_income 21210 Representative total house income in the dwelling unit is $21210 -in.representative_income 21213 Representative total house income in the dwelling unit is $21213 -in.representative_income 21219 Representative total house income in the dwelling unit is $21219 -in.representative_income 21221 Representative total house income in the dwelling unit is $21221 -in.representative_income 21222 Representative total house income in the dwelling unit is $21222 -in.representative_income 21223 Representative total house income in the dwelling unit is $21223 -in.representative_income 21229 Representative total house income in the dwelling unit is $21229 -in.representative_income 21238 Representative total house income in the dwelling unit is $21238 -in.representative_income 21248 Representative total house income in the dwelling unit is $21248 -in.representative_income 21254 Representative total house income in the dwelling unit is $21254 -in.representative_income 21255 Representative total house income in the dwelling unit is $21255 -in.representative_income 21261 Representative total house income in the dwelling unit is $21261 -in.representative_income 21265 Representative total house income in the dwelling unit is $21265 -in.representative_income 21269 Representative total house income in the dwelling unit is $21269 -in.representative_income 21273 Representative total house income in the dwelling unit is $21273 -in.representative_income 21281 Representative total house income in the dwelling unit is $21281 -in.representative_income 21285 Representative total house income in the dwelling unit is $21285 -in.representative_income 21286 Representative total house income in the dwelling unit is $21286 -in.representative_income 21296 Representative total house income in the dwelling unit is $21296 -in.representative_income 21297 Representative total house income in the dwelling unit is $21297 -in.representative_income 21303 Representative total house income in the dwelling unit is $21303 -in.representative_income 21304 Representative total house income in the dwelling unit is $21304 -in.representative_income 21314 Representative total house income in the dwelling unit is $21314 -in.representative_income 21324 Representative total house income in the dwelling unit is $21324 -in.representative_income 21329 Representative total house income in the dwelling unit is $21329 -in.representative_income 21334 Representative total house income in the dwelling unit is $21334 -in.representative_income 21341 Representative total house income in the dwelling unit is $21341 -in.representative_income 21344 Representative total house income in the dwelling unit is $21344 -in.representative_income 21350 Representative total house income in the dwelling unit is $21350 -in.representative_income 21351 Representative total house income in the dwelling unit is $21351 -in.representative_income 21355 Representative total house income in the dwelling unit is $21355 -in.representative_income 21361 Representative total house income in the dwelling unit is $21361 -in.representative_income 21362 Representative total house income in the dwelling unit is $21362 -in.representative_income 21366 Representative total house income in the dwelling unit is $21366 -in.representative_income 21375 Representative total house income in the dwelling unit is $21375 -in.representative_income 21383 Representative total house income in the dwelling unit is $21383 -in.representative_income 21385 Representative total house income in the dwelling unit is $21385 -in.representative_income 21388 Representative total house income in the dwelling unit is $21388 -in.representative_income 21393 Representative total house income in the dwelling unit is $21393 -in.representative_income 21394 Representative total house income in the dwelling unit is $21394 -in.representative_income 21405 Representative total house income in the dwelling unit is $21405 -in.representative_income 21408 Representative total house income in the dwelling unit is $21408 -in.representative_income 21409 Representative total house income in the dwelling unit is $21409 -in.representative_income 21411 Representative total house income in the dwelling unit is $21411 -in.representative_income 21415 Representative total house income in the dwelling unit is $21415 -in.representative_income 21426 Representative total house income in the dwelling unit is $21426 -in.representative_income 21436 Representative total house income in the dwelling unit is $21436 -in.representative_income 21440 Representative total house income in the dwelling unit is $21440 -in.representative_income 21444 Representative total house income in the dwelling unit is $21444 -in.representative_income 21447 Representative total house income in the dwelling unit is $21447 -in.representative_income 21448 Representative total house income in the dwelling unit is $21448 -in.representative_income 21454 Representative total house income in the dwelling unit is $21454 -in.representative_income 21461 Representative total house income in the dwelling unit is $21461 -in.representative_income 21469 Representative total house income in the dwelling unit is $21469 -in.representative_income 21470 Representative total house income in the dwelling unit is $21470 -in.representative_income 21472 Representative total house income in the dwelling unit is $21472 -in.representative_income 21474 Representative total house income in the dwelling unit is $21474 -in.representative_income 21476 Representative total house income in the dwelling unit is $21476 -in.representative_income 21480 Representative total house income in the dwelling unit is $21480 -in.representative_income 21485 Representative total house income in the dwelling unit is $21485 -in.representative_income 21486 Representative total house income in the dwelling unit is $21486 -in.representative_income 21490 Representative total house income in the dwelling unit is $21490 -in.representative_income 21491 Representative total house income in the dwelling unit is $21491 -in.representative_income 21492 Representative total house income in the dwelling unit is $21492 -in.representative_income 21496 Representative total house income in the dwelling unit is $21496 -in.representative_income 21501 Representative total house income in the dwelling unit is $21501 -in.representative_income 21506 Representative total house income in the dwelling unit is $21506 -in.representative_income 21508 Representative total house income in the dwelling unit is $21508 -in.representative_income 21509 Representative total house income in the dwelling unit is $21509 -in.representative_income 21514 Representative total house income in the dwelling unit is $21514 -in.representative_income 21516 Representative total house income in the dwelling unit is $21516 -in.representative_income 21523 Representative total house income in the dwelling unit is $21523 -in.representative_income 21526 Representative total house income in the dwelling unit is $21526 -in.representative_income 21533 Representative total house income in the dwelling unit is $21533 -in.representative_income 21539 Representative total house income in the dwelling unit is $21539 -in.representative_income 21544 Representative total house income in the dwelling unit is $21544 -in.representative_income 21545 Representative total house income in the dwelling unit is $21545 -in.representative_income 21547 Representative total house income in the dwelling unit is $21547 -in.representative_income 21555 Representative total house income in the dwelling unit is $21555 -in.representative_income 21557 Representative total house income in the dwelling unit is $21557 -in.representative_income 21558 Representative total house income in the dwelling unit is $21558 -in.representative_income 21562 Representative total house income in the dwelling unit is $21562 -in.representative_income 21565 Representative total house income in the dwelling unit is $21565 -in.representative_income 21566 Representative total house income in the dwelling unit is $21566 -in.representative_income 21567 Representative total house income in the dwelling unit is $21567 -in.representative_income 21576 Representative total house income in the dwelling unit is $21576 -in.representative_income 21577 Representative total house income in the dwelling unit is $21577 -in.representative_income 21588 Representative total house income in the dwelling unit is $21588 -in.representative_income 21593 Representative total house income in the dwelling unit is $21593 -in.representative_income 21597 Representative total house income in the dwelling unit is $21597 -in.representative_income 21598 Representative total house income in the dwelling unit is $21598 -in.representative_income 21603 Representative total house income in the dwelling unit is $21603 -in.representative_income 21607 Representative total house income in the dwelling unit is $21607 -in.representative_income 21609 Representative total house income in the dwelling unit is $21609 -in.representative_income 21610 Representative total house income in the dwelling unit is $21610 -in.representative_income 21617 Representative total house income in the dwelling unit is $21617 -in.representative_income 21619 Representative total house income in the dwelling unit is $21619 -in.representative_income 21620 Representative total house income in the dwelling unit is $21620 -in.representative_income 21630 Representative total house income in the dwelling unit is $21630 -in.representative_income 21631 Representative total house income in the dwelling unit is $21631 -in.representative_income 21635 Representative total house income in the dwelling unit is $21635 -in.representative_income 21640 Representative total house income in the dwelling unit is $21640 -in.representative_income 21641 Representative total house income in the dwelling unit is $21641 -in.representative_income 21643 Representative total house income in the dwelling unit is $21643 -in.representative_income 21646 Representative total house income in the dwelling unit is $21646 -in.representative_income 21652 Representative total house income in the dwelling unit is $21652 -in.representative_income 21654 Representative total house income in the dwelling unit is $21654 -in.representative_income 21660 Representative total house income in the dwelling unit is $21660 -in.representative_income 21662 Representative total house income in the dwelling unit is $21662 -in.representative_income 21668 Representative total house income in the dwelling unit is $21668 -in.representative_income 21672 Representative total house income in the dwelling unit is $21672 -in.representative_income 21678 Representative total house income in the dwelling unit is $21678 -in.representative_income 21681 Representative total house income in the dwelling unit is $21681 -in.representative_income 21683 Representative total house income in the dwelling unit is $21683 -in.representative_income 21688 Representative total house income in the dwelling unit is $21688 -in.representative_income 21691 Representative total house income in the dwelling unit is $21691 -in.representative_income 21692 Representative total house income in the dwelling unit is $21692 -in.representative_income 21694 Representative total house income in the dwelling unit is $21694 -in.representative_income 21695 Representative total house income in the dwelling unit is $21695 -in.representative_income 21698 Representative total house income in the dwelling unit is $21698 -in.representative_income 21702 Representative total house income in the dwelling unit is $21702 -in.representative_income 21704 Representative total house income in the dwelling unit is $21704 -in.representative_income 21706 Representative total house income in the dwelling unit is $21706 -in.representative_income 21712 Representative total house income in the dwelling unit is $21712 -in.representative_income 21714 Representative total house income in the dwelling unit is $21714 -in.representative_income 21716 Representative total house income in the dwelling unit is $21716 -in.representative_income 21717 Representative total house income in the dwelling unit is $21717 -in.representative_income 21718 Representative total house income in the dwelling unit is $21718 -in.representative_income 21719 Representative total house income in the dwelling unit is $21719 -in.representative_income 21723 Representative total house income in the dwelling unit is $21723 -in.representative_income 21724 Representative total house income in the dwelling unit is $21724 -in.representative_income 21727 Representative total house income in the dwelling unit is $21727 -in.representative_income 21728 Representative total house income in the dwelling unit is $21728 -in.representative_income 21738 Representative total house income in the dwelling unit is $21738 -in.representative_income 21739 Representative total house income in the dwelling unit is $21739 -in.representative_income 21746 Representative total house income in the dwelling unit is $21746 -in.representative_income 21748 Representative total house income in the dwelling unit is $21748 -in.representative_income 21749 Representative total house income in the dwelling unit is $21749 -in.representative_income 21754 Representative total house income in the dwelling unit is $21754 -in.representative_income 21759 Representative total house income in the dwelling unit is $21759 -in.representative_income 21760 Representative total house income in the dwelling unit is $21760 -in.representative_income 21763 Representative total house income in the dwelling unit is $21763 -in.representative_income 21767 Representative total house income in the dwelling unit is $21767 -in.representative_income 21772 Representative total house income in the dwelling unit is $21772 -in.representative_income 21779 Representative total house income in the dwelling unit is $21779 -in.representative_income 21780 Representative total house income in the dwelling unit is $21780 -in.representative_income 21782 Representative total house income in the dwelling unit is $21782 -in.representative_income 21785 Representative total house income in the dwelling unit is $21785 -in.representative_income 21788 Representative total house income in the dwelling unit is $21788 -in.representative_income 21789 Representative total house income in the dwelling unit is $21789 -in.representative_income 21791 Representative total house income in the dwelling unit is $21791 -in.representative_income 21792 Representative total house income in the dwelling unit is $21792 -in.representative_income 21795 Representative total house income in the dwelling unit is $21795 -in.representative_income 21798 Representative total house income in the dwelling unit is $21798 -in.representative_income 21804 Representative total house income in the dwelling unit is $21804 -in.representative_income 21805 Representative total house income in the dwelling unit is $21805 -in.representative_income 21808 Representative total house income in the dwelling unit is $21808 -in.representative_income 21812 Representative total house income in the dwelling unit is $21812 -in.representative_income 21815 Representative total house income in the dwelling unit is $21815 -in.representative_income 21816 Representative total house income in the dwelling unit is $21816 -in.representative_income 21819 Representative total house income in the dwelling unit is $21819 -in.representative_income 21823 Representative total house income in the dwelling unit is $21823 -in.representative_income 21824 Representative total house income in the dwelling unit is $21824 -in.representative_income 21826 Representative total house income in the dwelling unit is $21826 -in.representative_income 21831 Representative total house income in the dwelling unit is $21831 -in.representative_income 21834 Representative total house income in the dwelling unit is $21834 -in.representative_income 21836 Representative total house income in the dwelling unit is $21836 -in.representative_income 21839 Representative total house income in the dwelling unit is $21839 -in.representative_income 21845 Representative total house income in the dwelling unit is $21845 -in.representative_income 21846 Representative total house income in the dwelling unit is $21846 -in.representative_income 21852 Representative total house income in the dwelling unit is $21852 -in.representative_income 21856 Representative total house income in the dwelling unit is $21856 -in.representative_income 21866 Representative total house income in the dwelling unit is $21866 -in.representative_income 21867 Representative total house income in the dwelling unit is $21867 -in.representative_income 21874 Representative total house income in the dwelling unit is $21874 -in.representative_income 21877 Representative total house income in the dwelling unit is $21877 -in.representative_income 21880 Representative total house income in the dwelling unit is $21880 -in.representative_income 21883 Representative total house income in the dwelling unit is $21883 -in.representative_income 21887 Representative total house income in the dwelling unit is $21887 -in.representative_income 21888 Representative total house income in the dwelling unit is $21888 -in.representative_income 21898 Representative total house income in the dwelling unit is $21898 -in.representative_income 21900 Representative total house income in the dwelling unit is $21900 -in.representative_income 21901 Representative total house income in the dwelling unit is $21901 -in.representative_income 21908 Representative total house income in the dwelling unit is $21908 -in.representative_income 21909 Representative total house income in the dwelling unit is $21909 -in.representative_income 21914 Representative total house income in the dwelling unit is $21914 -in.representative_income 21916 Representative total house income in the dwelling unit is $21916 -in.representative_income 21918 Representative total house income in the dwelling unit is $21918 -in.representative_income 21920 Representative total house income in the dwelling unit is $21920 -in.representative_income 21926 Representative total house income in the dwelling unit is $21926 -in.representative_income 21928 Representative total house income in the dwelling unit is $21928 -in.representative_income 21930 Representative total house income in the dwelling unit is $21930 -in.representative_income 21934 Representative total house income in the dwelling unit is $21934 -in.representative_income 21936 Representative total house income in the dwelling unit is $21936 -in.representative_income 21941 Representative total house income in the dwelling unit is $21941 -in.representative_income 21949 Representative total house income in the dwelling unit is $21949 -in.representative_income 21950 Representative total house income in the dwelling unit is $21950 -in.representative_income 21952 Representative total house income in the dwelling unit is $21952 -in.representative_income 21961 Representative total house income in the dwelling unit is $21961 -in.representative_income 21966 Representative total house income in the dwelling unit is $21966 -in.representative_income 21970 Representative total house income in the dwelling unit is $21970 -in.representative_income 21971 Representative total house income in the dwelling unit is $21971 -in.representative_income 21973 Representative total house income in the dwelling unit is $21973 -in.representative_income 21977 Representative total house income in the dwelling unit is $21977 -in.representative_income 21988 Representative total house income in the dwelling unit is $21988 -in.representative_income 21990 Representative total house income in the dwelling unit is $21990 -in.representative_income 21991 Representative total house income in the dwelling unit is $21991 -in.representative_income 21994 Representative total house income in the dwelling unit is $21994 -in.representative_income 21996 Representative total house income in the dwelling unit is $21996 -in.representative_income 21997 Representative total house income in the dwelling unit is $21997 -in.representative_income 21999 Representative total house income in the dwelling unit is $21999 -in.representative_income 22000 Representative total house income in the dwelling unit is $22000 -in.representative_income 22001 Representative total house income in the dwelling unit is $22001 -in.representative_income 22006 Representative total house income in the dwelling unit is $22006 -in.representative_income 22017 Representative total house income in the dwelling unit is $22017 -in.representative_income 22021 Representative total house income in the dwelling unit is $22021 -in.representative_income 22027 Representative total house income in the dwelling unit is $22027 -in.representative_income 22031 Representative total house income in the dwelling unit is $22031 -in.representative_income 22032 Representative total house income in the dwelling unit is $22032 -in.representative_income 22038 Representative total house income in the dwelling unit is $22038 -in.representative_income 22041 Representative total house income in the dwelling unit is $22041 -in.representative_income 22042 Representative total house income in the dwelling unit is $22042 -in.representative_income 22043 Representative total house income in the dwelling unit is $22043 -in.representative_income 22049 Representative total house income in the dwelling unit is $22049 -in.representative_income 22051 Representative total house income in the dwelling unit is $22051 -in.representative_income 22058 Representative total house income in the dwelling unit is $22058 -in.representative_income 22059 Representative total house income in the dwelling unit is $22059 -in.representative_income 22062 Representative total house income in the dwelling unit is $22062 -in.representative_income 22063 Representative total house income in the dwelling unit is $22063 -in.representative_income 22070 Representative total house income in the dwelling unit is $22070 -in.representative_income 22072 Representative total house income in the dwelling unit is $22072 -in.representative_income 22073 Representative total house income in the dwelling unit is $22073 -in.representative_income 22077 Representative total house income in the dwelling unit is $22077 -in.representative_income 22083 Representative total house income in the dwelling unit is $22083 -in.representative_income 22085 Representative total house income in the dwelling unit is $22085 -in.representative_income 22086 Representative total house income in the dwelling unit is $22086 -in.representative_income 22090 Representative total house income in the dwelling unit is $22090 -in.representative_income 22091 Representative total house income in the dwelling unit is $22091 -in.representative_income 22093 Representative total house income in the dwelling unit is $22093 -in.representative_income 22094 Representative total house income in the dwelling unit is $22094 -in.representative_income 22096 Representative total house income in the dwelling unit is $22096 -in.representative_income 22097 Representative total house income in the dwelling unit is $22097 -in.representative_income 22102 Representative total house income in the dwelling unit is $22102 -in.representative_income 22107 Representative total house income in the dwelling unit is $22107 -in.representative_income 22109 Representative total house income in the dwelling unit is $22109 -in.representative_income 22110 Representative total house income in the dwelling unit is $22110 -in.representative_income 22114 Representative total house income in the dwelling unit is $22114 -in.representative_income 22115 Representative total house income in the dwelling unit is $22115 -in.representative_income 22122 Representative total house income in the dwelling unit is $22122 -in.representative_income 22125 Representative total house income in the dwelling unit is $22125 -in.representative_income 22128 Representative total house income in the dwelling unit is $22128 -in.representative_income 22132 Representative total house income in the dwelling unit is $22132 -in.representative_income 22133 Representative total house income in the dwelling unit is $22133 -in.representative_income 22142 Representative total house income in the dwelling unit is $22142 -in.representative_income 22145 Representative total house income in the dwelling unit is $22145 -in.representative_income 22147 Representative total house income in the dwelling unit is $22147 -in.representative_income 22148 Representative total house income in the dwelling unit is $22148 -in.representative_income 22150 Representative total house income in the dwelling unit is $22150 -in.representative_income 22154 Representative total house income in the dwelling unit is $22154 -in.representative_income 22156 Representative total house income in the dwelling unit is $22156 -in.representative_income 22157 Representative total house income in the dwelling unit is $22157 -in.representative_income 22162 Representative total house income in the dwelling unit is $22162 -in.representative_income 22163 Representative total house income in the dwelling unit is $22163 -in.representative_income 22167 Representative total house income in the dwelling unit is $22167 -in.representative_income 22168 Representative total house income in the dwelling unit is $22168 -in.representative_income 22173 Representative total house income in the dwelling unit is $22173 -in.representative_income 22177 Representative total house income in the dwelling unit is $22177 -in.representative_income 22178 Representative total house income in the dwelling unit is $22178 -in.representative_income 22182 Representative total house income in the dwelling unit is $22182 -in.representative_income 22183 Representative total house income in the dwelling unit is $22183 -in.representative_income 22187 Representative total house income in the dwelling unit is $22187 -in.representative_income 22193 Representative total house income in the dwelling unit is $22193 -in.representative_income 22199 Representative total house income in the dwelling unit is $22199 -in.representative_income 22200 Representative total house income in the dwelling unit is $22200 -in.representative_income 22203 Representative total house income in the dwelling unit is $22203 -in.representative_income 22204 Representative total house income in the dwelling unit is $22204 -in.representative_income 22205 Representative total house income in the dwelling unit is $22205 -in.representative_income 22209 Representative total house income in the dwelling unit is $22209 -in.representative_income 22213 Representative total house income in the dwelling unit is $22213 -in.representative_income 22215 Representative total house income in the dwelling unit is $22215 -in.representative_income 22217 Representative total house income in the dwelling unit is $22217 -in.representative_income 22220 Representative total house income in the dwelling unit is $22220 -in.representative_income 22221 Representative total house income in the dwelling unit is $22221 -in.representative_income 22222 Representative total house income in the dwelling unit is $22222 -in.representative_income 22223 Representative total house income in the dwelling unit is $22223 -in.representative_income 22224 Representative total house income in the dwelling unit is $22224 -in.representative_income 22228 Representative total house income in the dwelling unit is $22228 -in.representative_income 22231 Representative total house income in the dwelling unit is $22231 -in.representative_income 22233 Representative total house income in the dwelling unit is $22233 -in.representative_income 22236 Representative total house income in the dwelling unit is $22236 -in.representative_income 22237 Representative total house income in the dwelling unit is $22237 -in.representative_income 22238 Representative total house income in the dwelling unit is $22238 -in.representative_income 22239 Representative total house income in the dwelling unit is $22239 -in.representative_income 22241 Representative total house income in the dwelling unit is $22241 -in.representative_income 22242 Representative total house income in the dwelling unit is $22242 -in.representative_income 22247 Representative total house income in the dwelling unit is $22247 -in.representative_income 22249 Representative total house income in the dwelling unit is $22249 -in.representative_income 22252 Representative total house income in the dwelling unit is $22252 -in.representative_income 22253 Representative total house income in the dwelling unit is $22253 -in.representative_income 22257 Representative total house income in the dwelling unit is $22257 -in.representative_income 22258 Representative total house income in the dwelling unit is $22258 -in.representative_income 22262 Representative total house income in the dwelling unit is $22262 -in.representative_income 22264 Representative total house income in the dwelling unit is $22264 -in.representative_income 22268 Representative total house income in the dwelling unit is $22268 -in.representative_income 22273 Representative total house income in the dwelling unit is $22273 -in.representative_income 22274 Representative total house income in the dwelling unit is $22274 -in.representative_income 22279 Representative total house income in the dwelling unit is $22279 -in.representative_income 22284 Representative total house income in the dwelling unit is $22284 -in.representative_income 22286 Representative total house income in the dwelling unit is $22286 -in.representative_income 22290 Representative total house income in the dwelling unit is $22290 -in.representative_income 22292 Representative total house income in the dwelling unit is $22292 -in.representative_income 22294 Representative total house income in the dwelling unit is $22294 -in.representative_income 22295 Representative total house income in the dwelling unit is $22295 -in.representative_income 22296 Representative total house income in the dwelling unit is $22296 -in.representative_income 22300 Representative total house income in the dwelling unit is $22300 -in.representative_income 22304 Representative total house income in the dwelling unit is $22304 -in.representative_income 22306 Representative total house income in the dwelling unit is $22306 -in.representative_income 22310 Representative total house income in the dwelling unit is $22310 -in.representative_income 22312 Representative total house income in the dwelling unit is $22312 -in.representative_income 22314 Representative total house income in the dwelling unit is $22314 -in.representative_income 22316 Representative total house income in the dwelling unit is $22316 -in.representative_income 22322 Representative total house income in the dwelling unit is $22322 -in.representative_income 22324 Representative total house income in the dwelling unit is $22324 -in.representative_income 22328 Representative total house income in the dwelling unit is $22328 -in.representative_income 22332 Representative total house income in the dwelling unit is $22332 -in.representative_income 22333 Representative total house income in the dwelling unit is $22333 -in.representative_income 22336 Representative total house income in the dwelling unit is $22336 -in.representative_income 22341 Representative total house income in the dwelling unit is $22341 -in.representative_income 22344 Representative total house income in the dwelling unit is $22344 -in.representative_income 22346 Representative total house income in the dwelling unit is $22346 -in.representative_income 22347 Representative total house income in the dwelling unit is $22347 -in.representative_income 22348 Representative total house income in the dwelling unit is $22348 -in.representative_income 22349 Representative total house income in the dwelling unit is $22349 -in.representative_income 22351 Representative total house income in the dwelling unit is $22351 -in.representative_income 22352 Representative total house income in the dwelling unit is $22352 -in.representative_income 22355 Representative total house income in the dwelling unit is $22355 -in.representative_income 22357 Representative total house income in the dwelling unit is $22357 -in.representative_income 22360 Representative total house income in the dwelling unit is $22360 -in.representative_income 22365 Representative total house income in the dwelling unit is $22365 -in.representative_income 22369 Representative total house income in the dwelling unit is $22369 -in.representative_income 22372 Representative total house income in the dwelling unit is $22372 -in.representative_income 22375 Representative total house income in the dwelling unit is $22375 -in.representative_income 22377 Representative total house income in the dwelling unit is $22377 -in.representative_income 22379 Representative total house income in the dwelling unit is $22379 -in.representative_income 22382 Representative total house income in the dwelling unit is $22382 -in.representative_income 22383 Representative total house income in the dwelling unit is $22383 -in.representative_income 22385 Representative total house income in the dwelling unit is $22385 -in.representative_income 22392 Representative total house income in the dwelling unit is $22392 -in.representative_income 22393 Representative total house income in the dwelling unit is $22393 -in.representative_income 22396 Representative total house income in the dwelling unit is $22396 -in.representative_income 22400 Representative total house income in the dwelling unit is $22400 -in.representative_income 22404 Representative total house income in the dwelling unit is $22404 -in.representative_income 22405 Representative total house income in the dwelling unit is $22405 -in.representative_income 22410 Representative total house income in the dwelling unit is $22410 -in.representative_income 22414 Representative total house income in the dwelling unit is $22414 -in.representative_income 22419 Representative total house income in the dwelling unit is $22419 -in.representative_income 22420 Representative total house income in the dwelling unit is $22420 -in.representative_income 22425 Representative total house income in the dwelling unit is $22425 -in.representative_income 22428 Representative total house income in the dwelling unit is $22428 -in.representative_income 22430 Representative total house income in the dwelling unit is $22430 -in.representative_income 22434 Representative total house income in the dwelling unit is $22434 -in.representative_income 22435 Representative total house income in the dwelling unit is $22435 -in.representative_income 22436 Representative total house income in the dwelling unit is $22436 -in.representative_income 22439 Representative total house income in the dwelling unit is $22439 -in.representative_income 22440 Representative total house income in the dwelling unit is $22440 -in.representative_income 22441 Representative total house income in the dwelling unit is $22441 -in.representative_income 22445 Representative total house income in the dwelling unit is $22445 -in.representative_income 22446 Representative total house income in the dwelling unit is $22446 -in.representative_income 22452 Representative total house income in the dwelling unit is $22452 -in.representative_income 22454 Representative total house income in the dwelling unit is $22454 -in.representative_income 22456 Representative total house income in the dwelling unit is $22456 -in.representative_income 22460 Representative total house income in the dwelling unit is $22460 -in.representative_income 22461 Representative total house income in the dwelling unit is $22461 -in.representative_income 22464 Representative total house income in the dwelling unit is $22464 -in.representative_income 22465 Representative total house income in the dwelling unit is $22465 -in.representative_income 22467 Representative total house income in the dwelling unit is $22467 -in.representative_income 22469 Representative total house income in the dwelling unit is $22469 -in.representative_income 22473 Representative total house income in the dwelling unit is $22473 -in.representative_income 22476 Representative total house income in the dwelling unit is $22476 -in.representative_income 22478 Representative total house income in the dwelling unit is $22478 -in.representative_income 22484 Representative total house income in the dwelling unit is $22484 -in.representative_income 22486 Representative total house income in the dwelling unit is $22486 -in.representative_income 22488 Representative total house income in the dwelling unit is $22488 -in.representative_income 22489 Representative total house income in the dwelling unit is $22489 -in.representative_income 22495 Representative total house income in the dwelling unit is $22495 -in.representative_income 22496 Representative total house income in the dwelling unit is $22496 -in.representative_income 22499 Representative total house income in the dwelling unit is $22499 -in.representative_income 22500 Representative total house income in the dwelling unit is $22500 -in.representative_income 22501 Representative total house income in the dwelling unit is $22501 -in.representative_income 22503 Representative total house income in the dwelling unit is $22503 -in.representative_income 22505 Representative total house income in the dwelling unit is $22505 -in.representative_income 22506 Representative total house income in the dwelling unit is $22506 -in.representative_income 22507 Representative total house income in the dwelling unit is $22507 -in.representative_income 22511 Representative total house income in the dwelling unit is $22511 -in.representative_income 22512 Representative total house income in the dwelling unit is $22512 -in.representative_income 22516 Representative total house income in the dwelling unit is $22516 -in.representative_income 22517 Representative total house income in the dwelling unit is $22517 -in.representative_income 22521 Representative total house income in the dwelling unit is $22521 -in.representative_income 22523 Representative total house income in the dwelling unit is $22523 -in.representative_income 22526 Representative total house income in the dwelling unit is $22526 -in.representative_income 22527 Representative total house income in the dwelling unit is $22527 -in.representative_income 22532 Representative total house income in the dwelling unit is $22532 -in.representative_income 22537 Representative total house income in the dwelling unit is $22537 -in.representative_income 22538 Representative total house income in the dwelling unit is $22538 -in.representative_income 22542 Representative total house income in the dwelling unit is $22542 -in.representative_income 22543 Representative total house income in the dwelling unit is $22543 -in.representative_income 22546 Representative total house income in the dwelling unit is $22546 -in.representative_income 22547 Representative total house income in the dwelling unit is $22547 -in.representative_income 22558 Representative total house income in the dwelling unit is $22558 -in.representative_income 22560 Representative total house income in the dwelling unit is $22560 -in.representative_income 22562 Representative total house income in the dwelling unit is $22562 -in.representative_income 22564 Representative total house income in the dwelling unit is $22564 -in.representative_income 22568 Representative total house income in the dwelling unit is $22568 -in.representative_income 22569 Representative total house income in the dwelling unit is $22569 -in.representative_income 22571 Representative total house income in the dwelling unit is $22571 -in.representative_income 22579 Representative total house income in the dwelling unit is $22579 -in.representative_income 22582 Representative total house income in the dwelling unit is $22582 -in.representative_income 22583 Representative total house income in the dwelling unit is $22583 -in.representative_income 22585 Representative total house income in the dwelling unit is $22585 -in.representative_income 22587 Representative total house income in the dwelling unit is $22587 -in.representative_income 22588 Representative total house income in the dwelling unit is $22588 -in.representative_income 22589 Representative total house income in the dwelling unit is $22589 -in.representative_income 22590 Representative total house income in the dwelling unit is $22590 -in.representative_income 22595 Representative total house income in the dwelling unit is $22595 -in.representative_income 22597 Representative total house income in the dwelling unit is $22597 -in.representative_income 22599 Representative total house income in the dwelling unit is $22599 -in.representative_income 22604 Representative total house income in the dwelling unit is $22604 -in.representative_income 22607 Representative total house income in the dwelling unit is $22607 -in.representative_income 22608 Representative total house income in the dwelling unit is $22608 -in.representative_income 22615 Representative total house income in the dwelling unit is $22615 -in.representative_income 22616 Representative total house income in the dwelling unit is $22616 -in.representative_income 22617 Representative total house income in the dwelling unit is $22617 -in.representative_income 22618 Representative total house income in the dwelling unit is $22618 -in.representative_income 22619 Representative total house income in the dwelling unit is $22619 -in.representative_income 22620 Representative total house income in the dwelling unit is $22620 -in.representative_income 22621 Representative total house income in the dwelling unit is $22621 -in.representative_income 22623 Representative total house income in the dwelling unit is $22623 -in.representative_income 22625 Representative total house income in the dwelling unit is $22625 -in.representative_income 22626 Representative total house income in the dwelling unit is $22626 -in.representative_income 22627 Representative total house income in the dwelling unit is $22627 -in.representative_income 22631 Representative total house income in the dwelling unit is $22631 -in.representative_income 22636 Representative total house income in the dwelling unit is $22636 -in.representative_income 22637 Representative total house income in the dwelling unit is $22637 -in.representative_income 22647 Representative total house income in the dwelling unit is $22647 -in.representative_income 22650 Representative total house income in the dwelling unit is $22650 -in.representative_income 22651 Representative total house income in the dwelling unit is $22651 -in.representative_income 22653 Representative total house income in the dwelling unit is $22653 -in.representative_income 22658 Representative total house income in the dwelling unit is $22658 -in.representative_income 22663 Representative total house income in the dwelling unit is $22663 -in.representative_income 22664 Representative total house income in the dwelling unit is $22664 -in.representative_income 22668 Representative total house income in the dwelling unit is $22668 -in.representative_income 22670 Representative total house income in the dwelling unit is $22670 -in.representative_income 22671 Representative total house income in the dwelling unit is $22671 -in.representative_income 22672 Representative total house income in the dwelling unit is $22672 -in.representative_income 22674 Representative total house income in the dwelling unit is $22674 -in.representative_income 22678 Representative total house income in the dwelling unit is $22678 -in.representative_income 22679 Representative total house income in the dwelling unit is $22679 -in.representative_income 22681 Representative total house income in the dwelling unit is $22681 -in.representative_income 22683 Representative total house income in the dwelling unit is $22683 -in.representative_income 22688 Representative total house income in the dwelling unit is $22688 -in.representative_income 22690 Representative total house income in the dwelling unit is $22690 -in.representative_income 22691 Representative total house income in the dwelling unit is $22691 -in.representative_income 22692 Representative total house income in the dwelling unit is $22692 -in.representative_income 22695 Representative total house income in the dwelling unit is $22695 -in.representative_income 22701 Representative total house income in the dwelling unit is $22701 -in.representative_income 22703 Representative total house income in the dwelling unit is $22703 -in.representative_income 22708 Representative total house income in the dwelling unit is $22708 -in.representative_income 22712 Representative total house income in the dwelling unit is $22712 -in.representative_income 22713 Representative total house income in the dwelling unit is $22713 -in.representative_income 22714 Representative total house income in the dwelling unit is $22714 -in.representative_income 22716 Representative total house income in the dwelling unit is $22716 -in.representative_income 22718 Representative total house income in the dwelling unit is $22718 -in.representative_income 22723 Representative total house income in the dwelling unit is $22723 -in.representative_income 22726 Representative total house income in the dwelling unit is $22726 -in.representative_income 22728 Representative total house income in the dwelling unit is $22728 -in.representative_income 22733 Representative total house income in the dwelling unit is $22733 -in.representative_income 22736 Representative total house income in the dwelling unit is $22736 -in.representative_income 22737 Representative total house income in the dwelling unit is $22737 -in.representative_income 22738 Representative total house income in the dwelling unit is $22738 -in.representative_income 22743 Representative total house income in the dwelling unit is $22743 -in.representative_income 22744 Representative total house income in the dwelling unit is $22744 -in.representative_income 22745 Representative total house income in the dwelling unit is $22745 -in.representative_income 22746 Representative total house income in the dwelling unit is $22746 -in.representative_income 22748 Representative total house income in the dwelling unit is $22748 -in.representative_income 22754 Representative total house income in the dwelling unit is $22754 -in.representative_income 22755 Representative total house income in the dwelling unit is $22755 -in.representative_income 22757 Representative total house income in the dwelling unit is $22757 -in.representative_income 22759 Representative total house income in the dwelling unit is $22759 -in.representative_income 22763 Representative total house income in the dwelling unit is $22763 -in.representative_income 22766 Representative total house income in the dwelling unit is $22766 -in.representative_income 22767 Representative total house income in the dwelling unit is $22767 -in.representative_income 22768 Representative total house income in the dwelling unit is $22768 -in.representative_income 22777 Representative total house income in the dwelling unit is $22777 -in.representative_income 22779 Representative total house income in the dwelling unit is $22779 -in.representative_income 22783 Representative total house income in the dwelling unit is $22783 -in.representative_income 22785 Representative total house income in the dwelling unit is $22785 -in.representative_income 22789 Representative total house income in the dwelling unit is $22789 -in.representative_income 22795 Representative total house income in the dwelling unit is $22795 -in.representative_income 22798 Representative total house income in the dwelling unit is $22798 -in.representative_income 22799 Representative total house income in the dwelling unit is $22799 -in.representative_income 22800 Representative total house income in the dwelling unit is $22800 -in.representative_income 22806 Representative total house income in the dwelling unit is $22806 -in.representative_income 22809 Representative total house income in the dwelling unit is $22809 -in.representative_income 22811 Representative total house income in the dwelling unit is $22811 -in.representative_income 22816 Representative total house income in the dwelling unit is $22816 -in.representative_income 22819 Representative total house income in the dwelling unit is $22819 -in.representative_income 22820 Representative total house income in the dwelling unit is $22820 -in.representative_income 22822 Representative total house income in the dwelling unit is $22822 -in.representative_income 22826 Representative total house income in the dwelling unit is $22826 -in.representative_income 22829 Representative total house income in the dwelling unit is $22829 -in.representative_income 22835 Representative total house income in the dwelling unit is $22835 -in.representative_income 22839 Representative total house income in the dwelling unit is $22839 -in.representative_income 22841 Representative total house income in the dwelling unit is $22841 -in.representative_income 22843 Representative total house income in the dwelling unit is $22843 -in.representative_income 22846 Representative total house income in the dwelling unit is $22846 -in.representative_income 22849 Representative total house income in the dwelling unit is $22849 -in.representative_income 22852 Representative total house income in the dwelling unit is $22852 -in.representative_income 22856 Representative total house income in the dwelling unit is $22856 -in.representative_income 22864 Representative total house income in the dwelling unit is $22864 -in.representative_income 22871 Representative total house income in the dwelling unit is $22871 -in.representative_income 22872 Representative total house income in the dwelling unit is $22872 -in.representative_income 22874 Representative total house income in the dwelling unit is $22874 -in.representative_income 22875 Representative total house income in the dwelling unit is $22875 -in.representative_income 22878 Representative total house income in the dwelling unit is $22878 -in.representative_income 22880 Representative total house income in the dwelling unit is $22880 -in.representative_income 22885 Representative total house income in the dwelling unit is $22885 -in.representative_income 22888 Representative total house income in the dwelling unit is $22888 -in.representative_income 22895 Representative total house income in the dwelling unit is $22895 -in.representative_income 22898 Representative total house income in the dwelling unit is $22898 -in.representative_income 22906 Representative total house income in the dwelling unit is $22906 -in.representative_income 22908 Representative total house income in the dwelling unit is $22908 -in.representative_income 22910 Representative total house income in the dwelling unit is $22910 -in.representative_income 22917 Representative total house income in the dwelling unit is $22917 -in.representative_income 22918 Representative total house income in the dwelling unit is $22918 -in.representative_income 22919 Representative total house income in the dwelling unit is $22919 -in.representative_income 22920 Representative total house income in the dwelling unit is $22920 -in.representative_income 22928 Representative total house income in the dwelling unit is $22928 -in.representative_income 22930 Representative total house income in the dwelling unit is $22930 -in.representative_income 22933 Representative total house income in the dwelling unit is $22933 -in.representative_income 22938 Representative total house income in the dwelling unit is $22938 -in.representative_income 22940 Representative total house income in the dwelling unit is $22940 -in.representative_income 22948 Representative total house income in the dwelling unit is $22948 -in.representative_income 22949 Representative total house income in the dwelling unit is $22949 -in.representative_income 22950 Representative total house income in the dwelling unit is $22950 -in.representative_income 22960 Representative total house income in the dwelling unit is $22960 -in.representative_income 22961 Representative total house income in the dwelling unit is $22961 -in.representative_income 22963 Representative total house income in the dwelling unit is $22963 -in.representative_income 22969 Representative total house income in the dwelling unit is $22969 -in.representative_income 22971 Representative total house income in the dwelling unit is $22971 -in.representative_income 22972 Representative total house income in the dwelling unit is $22972 -in.representative_income 22980 Representative total house income in the dwelling unit is $22980 -in.representative_income 22981 Representative total house income in the dwelling unit is $22981 -in.representative_income 22982 Representative total house income in the dwelling unit is $22982 -in.representative_income 22985 Representative total house income in the dwelling unit is $22985 -in.representative_income 22990 Representative total house income in the dwelling unit is $22990 -in.representative_income 22991 Representative total house income in the dwelling unit is $22991 -in.representative_income 22993 Representative total house income in the dwelling unit is $22993 -in.representative_income 22997 Representative total house income in the dwelling unit is $22997 -in.representative_income 22998 Representative total house income in the dwelling unit is $22998 -in.representative_income 23001 Representative total house income in the dwelling unit is $23001 -in.representative_income 23002 Representative total house income in the dwelling unit is $23002 -in.representative_income 23003 Representative total house income in the dwelling unit is $23003 -in.representative_income 23007 Representative total house income in the dwelling unit is $23007 -in.representative_income 23008 Representative total house income in the dwelling unit is $23008 -in.representative_income 23012 Representative total house income in the dwelling unit is $23012 -in.representative_income 23014 Representative total house income in the dwelling unit is $23014 -in.representative_income 23016 Representative total house income in the dwelling unit is $23016 -in.representative_income 23022 Representative total house income in the dwelling unit is $23022 -in.representative_income 23025 Representative total house income in the dwelling unit is $23025 -in.representative_income 23026 Representative total house income in the dwelling unit is $23026 -in.representative_income 23031 Representative total house income in the dwelling unit is $23031 -in.representative_income 23033 Representative total house income in the dwelling unit is $23033 -in.representative_income 23036 Representative total house income in the dwelling unit is $23036 -in.representative_income 23041 Representative total house income in the dwelling unit is $23041 -in.representative_income 23043 Representative total house income in the dwelling unit is $23043 -in.representative_income 23047 Representative total house income in the dwelling unit is $23047 -in.representative_income 23052 Representative total house income in the dwelling unit is $23052 -in.representative_income 23053 Representative total house income in the dwelling unit is $23053 -in.representative_income 23057 Representative total house income in the dwelling unit is $23057 -in.representative_income 23062 Representative total house income in the dwelling unit is $23062 -in.representative_income 23063 Representative total house income in the dwelling unit is $23063 -in.representative_income 23064 Representative total house income in the dwelling unit is $23064 -in.representative_income 23067 Representative total house income in the dwelling unit is $23067 -in.representative_income 23069 Representative total house income in the dwelling unit is $23069 -in.representative_income 23072 Representative total house income in the dwelling unit is $23072 -in.representative_income 23074 Representative total house income in the dwelling unit is $23074 -in.representative_income 23079 Representative total house income in the dwelling unit is $23079 -in.representative_income 23080 Representative total house income in the dwelling unit is $23080 -in.representative_income 23082 Representative total house income in the dwelling unit is $23082 -in.representative_income 23085 Representative total house income in the dwelling unit is $23085 -in.representative_income 23087 Representative total house income in the dwelling unit is $23087 -in.representative_income 23090 Representative total house income in the dwelling unit is $23090 -in.representative_income 23096 Representative total house income in the dwelling unit is $23096 -in.representative_income 23099 Representative total house income in the dwelling unit is $23099 -in.representative_income 23104 Representative total house income in the dwelling unit is $23104 -in.representative_income 23105 Representative total house income in the dwelling unit is $23105 -in.representative_income 23107 Representative total house income in the dwelling unit is $23107 -in.representative_income 23109 Representative total house income in the dwelling unit is $23109 -in.representative_income 23111 Representative total house income in the dwelling unit is $23111 -in.representative_income 23112 Representative total house income in the dwelling unit is $23112 -in.representative_income 23122 Representative total house income in the dwelling unit is $23122 -in.representative_income 23123 Representative total house income in the dwelling unit is $23123 -in.representative_income 23132 Representative total house income in the dwelling unit is $23132 -in.representative_income 23133 Representative total house income in the dwelling unit is $23133 -in.representative_income 23135 Representative total house income in the dwelling unit is $23135 -in.representative_income 23142 Representative total house income in the dwelling unit is $23142 -in.representative_income 23143 Representative total house income in the dwelling unit is $23143 -in.representative_income 23146 Representative total house income in the dwelling unit is $23146 -in.representative_income 23154 Representative total house income in the dwelling unit is $23154 -in.representative_income 23156 Representative total house income in the dwelling unit is $23156 -in.representative_income 23160 Representative total house income in the dwelling unit is $23160 -in.representative_income 23162 Representative total house income in the dwelling unit is $23162 -in.representative_income 23165 Representative total house income in the dwelling unit is $23165 -in.representative_income 23166 Representative total house income in the dwelling unit is $23166 -in.representative_income 23170 Representative total house income in the dwelling unit is $23170 -in.representative_income 23173 Representative total house income in the dwelling unit is $23173 -in.representative_income 23180 Representative total house income in the dwelling unit is $23180 -in.representative_income 23183 Representative total house income in the dwelling unit is $23183 -in.representative_income 23186 Representative total house income in the dwelling unit is $23186 -in.representative_income 23187 Representative total house income in the dwelling unit is $23187 -in.representative_income 23191 Representative total house income in the dwelling unit is $23191 -in.representative_income 23194 Representative total house income in the dwelling unit is $23194 -in.representative_income 23197 Representative total house income in the dwelling unit is $23197 -in.representative_income 23202 Representative total house income in the dwelling unit is $23202 -in.representative_income 23205 Representative total house income in the dwelling unit is $23205 -in.representative_income 23207 Representative total house income in the dwelling unit is $23207 -in.representative_income 23208 Representative total house income in the dwelling unit is $23208 -in.representative_income 23210 Representative total house income in the dwelling unit is $23210 -in.representative_income 23212 Representative total house income in the dwelling unit is $23212 -in.representative_income 23213 Representative total house income in the dwelling unit is $23213 -in.representative_income 23218 Representative total house income in the dwelling unit is $23218 -in.representative_income 23219 Representative total house income in the dwelling unit is $23219 -in.representative_income 23223 Representative total house income in the dwelling unit is $23223 -in.representative_income 23229 Representative total house income in the dwelling unit is $23229 -in.representative_income 23230 Representative total house income in the dwelling unit is $23230 -in.representative_income 23231 Representative total house income in the dwelling unit is $23231 -in.representative_income 23232 Representative total house income in the dwelling unit is $23232 -in.representative_income 23233 Representative total house income in the dwelling unit is $23233 -in.representative_income 23238 Representative total house income in the dwelling unit is $23238 -in.representative_income 23240 Representative total house income in the dwelling unit is $23240 -in.representative_income 23243 Representative total house income in the dwelling unit is $23243 -in.representative_income 23249 Representative total house income in the dwelling unit is $23249 -in.representative_income 23254 Representative total house income in the dwelling unit is $23254 -in.representative_income 23260 Representative total house income in the dwelling unit is $23260 -in.representative_income 23263 Representative total house income in the dwelling unit is $23263 -in.representative_income 23264 Representative total house income in the dwelling unit is $23264 -in.representative_income 23268 Representative total house income in the dwelling unit is $23268 -in.representative_income 23272 Representative total house income in the dwelling unit is $23272 -in.representative_income 23273 Representative total house income in the dwelling unit is $23273 -in.representative_income 23276 Representative total house income in the dwelling unit is $23276 -in.representative_income 23280 Representative total house income in the dwelling unit is $23280 -in.representative_income 23284 Representative total house income in the dwelling unit is $23284 -in.representative_income 23293 Representative total house income in the dwelling unit is $23293 -in.representative_income 23296 Representative total house income in the dwelling unit is $23296 -in.representative_income 23298 Representative total house income in the dwelling unit is $23298 -in.representative_income 23300 Representative total house income in the dwelling unit is $23300 -in.representative_income 23304 Representative total house income in the dwelling unit is $23304 -in.representative_income 23305 Representative total house income in the dwelling unit is $23305 -in.representative_income 23307 Representative total house income in the dwelling unit is $23307 -in.representative_income 23310 Representative total house income in the dwelling unit is $23310 -in.representative_income 23316 Representative total house income in the dwelling unit is $23316 -in.representative_income 23324 Representative total house income in the dwelling unit is $23324 -in.representative_income 23328 Representative total house income in the dwelling unit is $23328 -in.representative_income 23333 Representative total house income in the dwelling unit is $23333 -in.representative_income 23334 Representative total house income in the dwelling unit is $23334 -in.representative_income 23338 Representative total house income in the dwelling unit is $23338 -in.representative_income 23344 Representative total house income in the dwelling unit is $23344 -in.representative_income 23347 Representative total house income in the dwelling unit is $23347 -in.representative_income 23348 Representative total house income in the dwelling unit is $23348 -in.representative_income 23355 Representative total house income in the dwelling unit is $23355 -in.representative_income 23359 Representative total house income in the dwelling unit is $23359 -in.representative_income 23362 Representative total house income in the dwelling unit is $23362 -in.representative_income 23382 Representative total house income in the dwelling unit is $23382 -in.representative_income 23385 Representative total house income in the dwelling unit is $23385 -in.representative_income 23391 Representative total house income in the dwelling unit is $23391 -in.representative_income 23393 Representative total house income in the dwelling unit is $23393 -in.representative_income 23401 Representative total house income in the dwelling unit is $23401 -in.representative_income 23402 Representative total house income in the dwelling unit is $23402 -in.representative_income 23405 Representative total house income in the dwelling unit is $23405 -in.representative_income 23409 Representative total house income in the dwelling unit is $23409 -in.representative_income 23412 Representative total house income in the dwelling unit is $23412 -in.representative_income 23414 Representative total house income in the dwelling unit is $23414 -in.representative_income 23420 Representative total house income in the dwelling unit is $23420 -in.representative_income 23422 Representative total house income in the dwelling unit is $23422 -in.representative_income 23424 Representative total house income in the dwelling unit is $23424 -in.representative_income 23425 Representative total house income in the dwelling unit is $23425 -in.representative_income 23433 Representative total house income in the dwelling unit is $23433 -in.representative_income 23435 Representative total house income in the dwelling unit is $23435 -in.representative_income 23438 Representative total house income in the dwelling unit is $23438 -in.representative_income 23443 Representative total house income in the dwelling unit is $23443 -in.representative_income 23445 Representative total house income in the dwelling unit is $23445 -in.representative_income 23447 Representative total house income in the dwelling unit is $23447 -in.representative_income 23452 Representative total house income in the dwelling unit is $23452 -in.representative_income 23455 Representative total house income in the dwelling unit is $23455 -in.representative_income 23456 Representative total house income in the dwelling unit is $23456 -in.representative_income 23457 Representative total house income in the dwelling unit is $23457 -in.representative_income 23465 Representative total house income in the dwelling unit is $23465 -in.representative_income 23466 Representative total house income in the dwelling unit is $23466 -in.representative_income 23477 Representative total house income in the dwelling unit is $23477 -in.representative_income 23479 Representative total house income in the dwelling unit is $23479 -in.representative_income 23482 Representative total house income in the dwelling unit is $23482 -in.representative_income 23486 Representative total house income in the dwelling unit is $23486 -in.representative_income 23487 Representative total house income in the dwelling unit is $23487 -in.representative_income 23490 Representative total house income in the dwelling unit is $23490 -in.representative_income 23491 Representative total house income in the dwelling unit is $23491 -in.representative_income 23497 Representative total house income in the dwelling unit is $23497 -in.representative_income 23498 Representative total house income in the dwelling unit is $23498 -in.representative_income 23501 Representative total house income in the dwelling unit is $23501 -in.representative_income 23506 Representative total house income in the dwelling unit is $23506 -in.representative_income 23507 Representative total house income in the dwelling unit is $23507 -in.representative_income 23508 Representative total house income in the dwelling unit is $23508 -in.representative_income 23514 Representative total house income in the dwelling unit is $23514 -in.representative_income 23517 Representative total house income in the dwelling unit is $23517 -in.representative_income 23527 Representative total house income in the dwelling unit is $23527 -in.representative_income 23528 Representative total house income in the dwelling unit is $23528 -in.representative_income 23536 Representative total house income in the dwelling unit is $23536 -in.representative_income 23538 Representative total house income in the dwelling unit is $23538 -in.representative_income 23540 Representative total house income in the dwelling unit is $23540 -in.representative_income 23542 Representative total house income in the dwelling unit is $23542 -in.representative_income 23544 Representative total house income in the dwelling unit is $23544 -in.representative_income 23551 Representative total house income in the dwelling unit is $23551 -in.representative_income 23555 Representative total house income in the dwelling unit is $23555 -in.representative_income 23559 Representative total house income in the dwelling unit is $23559 -in.representative_income 23565 Representative total house income in the dwelling unit is $23565 -in.representative_income 23568 Representative total house income in the dwelling unit is $23568 -in.representative_income 23587 Representative total house income in the dwelling unit is $23587 -in.representative_income 23608 Representative total house income in the dwelling unit is $23608 -in.representative_income 23616 Representative total house income in the dwelling unit is $23616 -in.representative_income 23620 Representative total house income in the dwelling unit is $23620 -in.representative_income 23622 Representative total house income in the dwelling unit is $23622 -in.representative_income 23623 Representative total house income in the dwelling unit is $23623 -in.representative_income 23630 Representative total house income in the dwelling unit is $23630 -in.representative_income 23637 Representative total house income in the dwelling unit is $23637 -in.representative_income 23645 Representative total house income in the dwelling unit is $23645 -in.representative_income 23648 Representative total house income in the dwelling unit is $23648 -in.representative_income 23662 Representative total house income in the dwelling unit is $23662 -in.representative_income 23669 Representative total house income in the dwelling unit is $23669 -in.representative_income 23672 Representative total house income in the dwelling unit is $23672 -in.representative_income 23673 Representative total house income in the dwelling unit is $23673 -in.representative_income 23676 Representative total house income in the dwelling unit is $23676 -in.representative_income 23678 Representative total house income in the dwelling unit is $23678 -in.representative_income 23682 Representative total house income in the dwelling unit is $23682 -in.representative_income 23684 Representative total house income in the dwelling unit is $23684 -in.representative_income 23691 Representative total house income in the dwelling unit is $23691 -in.representative_income 23692 Representative total house income in the dwelling unit is $23692 -in.representative_income 23697 Representative total house income in the dwelling unit is $23697 -in.representative_income 23716 Representative total house income in the dwelling unit is $23716 -in.representative_income 23724 Representative total house income in the dwelling unit is $23724 -in.representative_income 23729 Representative total house income in the dwelling unit is $23729 -in.representative_income 23738 Representative total house income in the dwelling unit is $23738 -in.representative_income 23739 Representative total house income in the dwelling unit is $23739 -in.representative_income 23744 Representative total house income in the dwelling unit is $23744 -in.representative_income 23754 Representative total house income in the dwelling unit is $23754 -in.representative_income 23770 Representative total house income in the dwelling unit is $23770 -in.representative_income 23771 Representative total house income in the dwelling unit is $23771 -in.representative_income 23775 Representative total house income in the dwelling unit is $23775 -in.representative_income 23781 Representative total house income in the dwelling unit is $23781 -in.representative_income 23791 Representative total house income in the dwelling unit is $23791 -in.representative_income 23802 Representative total house income in the dwelling unit is $23802 -in.representative_income 23803 Representative total house income in the dwelling unit is $23803 -in.representative_income 23809 Representative total house income in the dwelling unit is $23809 -in.representative_income 23813 Representative total house income in the dwelling unit is $23813 -in.representative_income 23814 Representative total house income in the dwelling unit is $23814 -in.representative_income 23827 Representative total house income in the dwelling unit is $23827 -in.representative_income 23830 Representative total house income in the dwelling unit is $23830 -in.representative_income 23831 Representative total house income in the dwelling unit is $23831 -in.representative_income 23834 Representative total house income in the dwelling unit is $23834 -in.representative_income 23839 Representative total house income in the dwelling unit is $23839 -in.representative_income 23852 Representative total house income in the dwelling unit is $23852 -in.representative_income 23857 Representative total house income in the dwelling unit is $23857 -in.representative_income 23876 Representative total house income in the dwelling unit is $23876 -in.representative_income 23878 Representative total house income in the dwelling unit is $23878 -in.representative_income 23890 Representative total house income in the dwelling unit is $23890 -in.representative_income 23900 Representative total house income in the dwelling unit is $23900 -in.representative_income 23908 Representative total house income in the dwelling unit is $23908 -in.representative_income 23915 Representative total house income in the dwelling unit is $23915 -in.representative_income 23929 Representative total house income in the dwelling unit is $23929 -in.representative_income 23932 Representative total house income in the dwelling unit is $23932 -in.representative_income 23938 Representative total house income in the dwelling unit is $23938 -in.representative_income 23939 Representative total house income in the dwelling unit is $23939 -in.representative_income 23940 Representative total house income in the dwelling unit is $23940 -in.representative_income 23951 Representative total house income in the dwelling unit is $23951 -in.representative_income 23954 Representative total house income in the dwelling unit is $23954 -in.representative_income 23961 Representative total house income in the dwelling unit is $23961 -in.representative_income 23971 Representative total house income in the dwelling unit is $23971 -in.representative_income 23972 Representative total house income in the dwelling unit is $23972 -in.representative_income 23978 Representative total house income in the dwelling unit is $23978 -in.representative_income 23981 Representative total house income in the dwelling unit is $23981 -in.representative_income 23986 Representative total house income in the dwelling unit is $23986 -in.representative_income 23991 Representative total house income in the dwelling unit is $23991 -in.representative_income 23992 Representative total house income in the dwelling unit is $23992 -in.representative_income 24007 Representative total house income in the dwelling unit is $24007 -in.representative_income 24013 Representative total house income in the dwelling unit is $24013 -in.representative_income 24024 Representative total house income in the dwelling unit is $24024 -in.representative_income 24033 Representative total house income in the dwelling unit is $24033 -in.representative_income 24038 Representative total house income in the dwelling unit is $24038 -in.representative_income 24040 Representative total house income in the dwelling unit is $24040 -in.representative_income 24041 Representative total house income in the dwelling unit is $24041 -in.representative_income 24043 Representative total house income in the dwelling unit is $24043 -in.representative_income 24045 Representative total house income in the dwelling unit is $24045 -in.representative_income 24051 Representative total house income in the dwelling unit is $24051 -in.representative_income 24056 Representative total house income in the dwelling unit is $24056 -in.representative_income 24057 Representative total house income in the dwelling unit is $24057 -in.representative_income 24071 Representative total house income in the dwelling unit is $24071 -in.representative_income 24078 Representative total house income in the dwelling unit is $24078 -in.representative_income 24086 Representative total house income in the dwelling unit is $24086 -in.representative_income 24094 Representative total house income in the dwelling unit is $24094 -in.representative_income 24098 Representative total house income in the dwelling unit is $24098 -in.representative_income 24116 Representative total house income in the dwelling unit is $24116 -in.representative_income 24122 Representative total house income in the dwelling unit is $24122 -in.representative_income 24131 Representative total house income in the dwelling unit is $24131 -in.representative_income 24136 Representative total house income in the dwelling unit is $24136 -in.representative_income 24142 Representative total house income in the dwelling unit is $24142 -in.representative_income 24146 Representative total house income in the dwelling unit is $24146 -in.representative_income 24150 Representative total house income in the dwelling unit is $24150 -in.representative_income 24153 Representative total house income in the dwelling unit is $24153 -in.representative_income 24163 Representative total house income in the dwelling unit is $24163 -in.representative_income 24190 Representative total house income in the dwelling unit is $24190 -in.representative_income 24200 Representative total house income in the dwelling unit is $24200 -in.representative_income 24203 Representative total house income in the dwelling unit is $24203 -in.representative_income 24204 Representative total house income in the dwelling unit is $24204 -in.representative_income 24213 Representative total house income in the dwelling unit is $24213 -in.representative_income 24223 Representative total house income in the dwelling unit is $24223 -in.representative_income 24225 Representative total house income in the dwelling unit is $24225 -in.representative_income 24239 Representative total house income in the dwelling unit is $24239 -in.representative_income 24243 Representative total house income in the dwelling unit is $24243 -in.representative_income 24254 Representative total house income in the dwelling unit is $24254 -in.representative_income 24256 Representative total house income in the dwelling unit is $24256 -in.representative_income 24260 Representative total house income in the dwelling unit is $24260 -in.representative_income 24261 Representative total house income in the dwelling unit is $24261 -in.representative_income 24264 Representative total house income in the dwelling unit is $24264 -in.representative_income 24267 Representative total house income in the dwelling unit is $24267 -in.representative_income 24274 Representative total house income in the dwelling unit is $24274 -in.representative_income 24300 Representative total house income in the dwelling unit is $24300 -in.representative_income 24310 Representative total house income in the dwelling unit is $24310 -in.representative_income 24311 Representative total house income in the dwelling unit is $24311 -in.representative_income 24314 Representative total house income in the dwelling unit is $24314 -in.representative_income 24343 Representative total house income in the dwelling unit is $24343 -in.representative_income 24344 Representative total house income in the dwelling unit is $24344 -in.representative_income 24350 Representative total house income in the dwelling unit is $24350 -in.representative_income 24351 Representative total house income in the dwelling unit is $24351 -in.representative_income 24362 Representative total house income in the dwelling unit is $24362 -in.representative_income 24368 Representative total house income in the dwelling unit is $24368 -in.representative_income 24383 Representative total house income in the dwelling unit is $24383 -in.representative_income 24393 Representative total house income in the dwelling unit is $24393 -in.representative_income 24395 Representative total house income in the dwelling unit is $24395 -in.representative_income 24404 Representative total house income in the dwelling unit is $24404 -in.representative_income 24408 Representative total house income in the dwelling unit is $24408 -in.representative_income 24419 Representative total house income in the dwelling unit is $24419 -in.representative_income 24421 Representative total house income in the dwelling unit is $24421 -in.representative_income 24432 Representative total house income in the dwelling unit is $24432 -in.representative_income 24445 Representative total house income in the dwelling unit is $24445 -in.representative_income 24446 Representative total house income in the dwelling unit is $24446 -in.representative_income 24448 Representative total house income in the dwelling unit is $24448 -in.representative_income 24467 Representative total house income in the dwelling unit is $24467 -in.representative_income 24474 Representative total house income in the dwelling unit is $24474 -in.representative_income 24476 Representative total house income in the dwelling unit is $24476 -in.representative_income 24478 Representative total house income in the dwelling unit is $24478 -in.representative_income 24479 Representative total house income in the dwelling unit is $24479 -in.representative_income 24484 Representative total house income in the dwelling unit is $24484 -in.representative_income 24505 Representative total house income in the dwelling unit is $24505 -in.representative_income 24509 Representative total house income in the dwelling unit is $24509 -in.representative_income 24527 Representative total house income in the dwelling unit is $24527 -in.representative_income 24528 Representative total house income in the dwelling unit is $24528 -in.representative_income 24529 Representative total house income in the dwelling unit is $24529 -in.representative_income 24530 Representative total house income in the dwelling unit is $24530 -in.representative_income 24541 Representative total house income in the dwelling unit is $24541 -in.representative_income 24547 Representative total house income in the dwelling unit is $24547 -in.representative_income 24548 Representative total house income in the dwelling unit is $24548 -in.representative_income 24549 Representative total house income in the dwelling unit is $24549 -in.representative_income 24557 Representative total house income in the dwelling unit is $24557 -in.representative_income 24572 Representative total house income in the dwelling unit is $24572 -in.representative_income 24581 Representative total house income in the dwelling unit is $24581 -in.representative_income 24582 Representative total house income in the dwelling unit is $24582 -in.representative_income 24601 Representative total house income in the dwelling unit is $24601 -in.representative_income 24624 Representative total house income in the dwelling unit is $24624 -in.representative_income 24625 Representative total house income in the dwelling unit is $24625 -in.representative_income 24635 Representative total house income in the dwelling unit is $24635 -in.representative_income 24636 Representative total house income in the dwelling unit is $24636 -in.representative_income 24637 Representative total house income in the dwelling unit is $24637 -in.representative_income 24645 Representative total house income in the dwelling unit is $24645 -in.representative_income 24648 Representative total house income in the dwelling unit is $24648 -in.representative_income 24652 Representative total house income in the dwelling unit is $24652 -in.representative_income 24657 Representative total house income in the dwelling unit is $24657 -in.representative_income 24672 Representative total house income in the dwelling unit is $24672 -in.representative_income 24678 Representative total house income in the dwelling unit is $24678 -in.representative_income 24689 Representative total house income in the dwelling unit is $24689 -in.representative_income 24711 Representative total house income in the dwelling unit is $24711 -in.representative_income 24713 Representative total house income in the dwelling unit is $24713 -in.representative_income 24718 Representative total house income in the dwelling unit is $24718 -in.representative_income 24732 Representative total house income in the dwelling unit is $24732 -in.representative_income 24743 Representative total house income in the dwelling unit is $24743 -in.representative_income 24749 Representative total house income in the dwelling unit is $24749 -in.representative_income 24753 Representative total house income in the dwelling unit is $24753 -in.representative_income 24755 Representative total house income in the dwelling unit is $24755 -in.representative_income 24775 Representative total house income in the dwelling unit is $24775 -in.representative_income 24779 Representative total house income in the dwelling unit is $24779 -in.representative_income 24783 Representative total house income in the dwelling unit is $24783 -in.representative_income 24797 Representative total house income in the dwelling unit is $24797 -in.representative_income 24817 Representative total house income in the dwelling unit is $24817 -in.representative_income 24850 Representative total house income in the dwelling unit is $24850 -in.representative_income 24858 Representative total house income in the dwelling unit is $24858 -in.representative_income 24861 Representative total house income in the dwelling unit is $24861 -in.representative_income 24888 Representative total house income in the dwelling unit is $24888 -in.representative_income 24893 Representative total house income in the dwelling unit is $24893 -in.representative_income 24899 Representative total house income in the dwelling unit is $24899 -in.representative_income 24904 Representative total house income in the dwelling unit is $24904 -in.representative_income 24910 Representative total house income in the dwelling unit is $24910 -in.representative_income 24951 Representative total house income in the dwelling unit is $24951 -in.representative_income 24959 Representative total house income in the dwelling unit is $24959 -in.representative_income 24961 Representative total house income in the dwelling unit is $24961 -in.representative_income 24973 Representative total house income in the dwelling unit is $24973 -in.representative_income 24982 Representative total house income in the dwelling unit is $24982 -in.representative_income 24990 Representative total house income in the dwelling unit is $24990 -in.representative_income 24993 Representative total house income in the dwelling unit is $24993 -in.representative_income 24995 Representative total house income in the dwelling unit is $24995 -in.representative_income 25001 Representative total house income in the dwelling unit is $25001 -in.representative_income 25011 Representative total house income in the dwelling unit is $25011 -in.representative_income 25036 Representative total house income in the dwelling unit is $25036 -in.representative_income 25052 Representative total house income in the dwelling unit is $25052 -in.representative_income 25057 Representative total house income in the dwelling unit is $25057 -in.representative_income 25064 Representative total house income in the dwelling unit is $25064 -in.representative_income 25067 Representative total house income in the dwelling unit is $25067 -in.representative_income 25082 Representative total house income in the dwelling unit is $25082 -in.representative_income 25089 Representative total house income in the dwelling unit is $25089 -in.representative_income 25100 Representative total house income in the dwelling unit is $25100 -in.representative_income 25102 Representative total house income in the dwelling unit is $25102 -in.representative_income 25112 Representative total house income in the dwelling unit is $25112 -in.representative_income 25116 Representative total house income in the dwelling unit is $25116 -in.representative_income 25119 Representative total house income in the dwelling unit is $25119 -in.representative_income 25132 Representative total house income in the dwelling unit is $25132 -in.representative_income 25137 Representative total house income in the dwelling unit is $25137 -in.representative_income 25140 Representative total house income in the dwelling unit is $25140 -in.representative_income 25142 Representative total house income in the dwelling unit is $25142 -in.representative_income 25153 Representative total house income in the dwelling unit is $25153 -in.representative_income 25159 Representative total house income in the dwelling unit is $25159 -in.representative_income 25167 Representative total house income in the dwelling unit is $25167 -in.representative_income 25175 Representative total house income in the dwelling unit is $25175 -in.representative_income 25181 Representative total house income in the dwelling unit is $25181 -in.representative_income 25186 Representative total house income in the dwelling unit is $25186 -in.representative_income 25205 Representative total house income in the dwelling unit is $25205 -in.representative_income 25208 Representative total house income in the dwelling unit is $25208 -in.representative_income 25215 Representative total house income in the dwelling unit is $25215 -in.representative_income 25223 Representative total house income in the dwelling unit is $25223 -in.representative_income 25226 Representative total house income in the dwelling unit is $25226 -in.representative_income 25233 Representative total house income in the dwelling unit is $25233 -in.representative_income 25247 Representative total house income in the dwelling unit is $25247 -in.representative_income 25254 Representative total house income in the dwelling unit is $25254 -in.representative_income 25264 Representative total house income in the dwelling unit is $25264 -in.representative_income 25268 Representative total house income in the dwelling unit is $25268 -in.representative_income 25269 Representative total house income in the dwelling unit is $25269 -in.representative_income 25271 Representative total house income in the dwelling unit is $25271 -in.representative_income 25279 Representative total house income in the dwelling unit is $25279 -in.representative_income 25281 Representative total house income in the dwelling unit is $25281 -in.representative_income 25282 Representative total house income in the dwelling unit is $25282 -in.representative_income 25283 Representative total house income in the dwelling unit is $25283 -in.representative_income 25284 Representative total house income in the dwelling unit is $25284 -in.representative_income 25290 Representative total house income in the dwelling unit is $25290 -in.representative_income 25294 Representative total house income in the dwelling unit is $25294 -in.representative_income 25305 Representative total house income in the dwelling unit is $25305 -in.representative_income 25306 Representative total house income in the dwelling unit is $25306 -in.representative_income 25310 Representative total house income in the dwelling unit is $25310 -in.representative_income 25322 Representative total house income in the dwelling unit is $25322 -in.representative_income 25331 Representative total house income in the dwelling unit is $25331 -in.representative_income 25334 Representative total house income in the dwelling unit is $25334 -in.representative_income 25348 Representative total house income in the dwelling unit is $25348 -in.representative_income 25355 Representative total house income in the dwelling unit is $25355 -in.representative_income 25374 Representative total house income in the dwelling unit is $25374 -in.representative_income 25391 Representative total house income in the dwelling unit is $25391 -in.representative_income 25395 Representative total house income in the dwelling unit is $25395 -in.representative_income 25398 Representative total house income in the dwelling unit is $25398 -in.representative_income 25416 Representative total house income in the dwelling unit is $25416 -in.representative_income 25437 Representative total house income in the dwelling unit is $25437 -in.representative_income 25441 Representative total house income in the dwelling unit is $25441 -in.representative_income 25445 Representative total house income in the dwelling unit is $25445 -in.representative_income 25456 Representative total house income in the dwelling unit is $25456 -in.representative_income 25458 Representative total house income in the dwelling unit is $25458 -in.representative_income 25469 Representative total house income in the dwelling unit is $25469 -in.representative_income 25476 Representative total house income in the dwelling unit is $25476 -in.representative_income 25477 Representative total house income in the dwelling unit is $25477 -in.representative_income 25494 Representative total house income in the dwelling unit is $25494 -in.representative_income 25499 Representative total house income in the dwelling unit is $25499 -in.representative_income 25516 Representative total house income in the dwelling unit is $25516 -in.representative_income 25520 Representative total house income in the dwelling unit is $25520 -in.representative_income 25521 Representative total house income in the dwelling unit is $25521 -in.representative_income 25526 Representative total house income in the dwelling unit is $25526 -in.representative_income 25534 Representative total house income in the dwelling unit is $25534 -in.representative_income 25537 Representative total house income in the dwelling unit is $25537 -in.representative_income 25548 Representative total house income in the dwelling unit is $25548 -in.representative_income 25557 Representative total house income in the dwelling unit is $25557 -in.representative_income 25558 Representative total house income in the dwelling unit is $25558 -in.representative_income 25570 Representative total house income in the dwelling unit is $25570 -in.representative_income 25577 Representative total house income in the dwelling unit is $25577 -in.representative_income 25580 Representative total house income in the dwelling unit is $25580 -in.representative_income 25585 Representative total house income in the dwelling unit is $25585 -in.representative_income 25607 Representative total house income in the dwelling unit is $25607 -in.representative_income 25621 Representative total house income in the dwelling unit is $25621 -in.representative_income 25627 Representative total house income in the dwelling unit is $25627 -in.representative_income 25628 Representative total house income in the dwelling unit is $25628 -in.representative_income 25637 Representative total house income in the dwelling unit is $25637 -in.representative_income 25650 Representative total house income in the dwelling unit is $25650 -in.representative_income 25655 Representative total house income in the dwelling unit is $25655 -in.representative_income 25658 Representative total house income in the dwelling unit is $25658 -in.representative_income 25677 Representative total house income in the dwelling unit is $25677 -in.representative_income 25679 Representative total house income in the dwelling unit is $25679 -in.representative_income 25683 Representative total house income in the dwelling unit is $25683 -in.representative_income 25699 Representative total house income in the dwelling unit is $25699 -in.representative_income 25705 Representative total house income in the dwelling unit is $25705 -in.representative_income 25708 Representative total house income in the dwelling unit is $25708 -in.representative_income 25715 Representative total house income in the dwelling unit is $25715 -in.representative_income 25720 Representative total house income in the dwelling unit is $25720 -in.representative_income 25733 Representative total house income in the dwelling unit is $25733 -in.representative_income 25749 Representative total house income in the dwelling unit is $25749 -in.representative_income 25751 Representative total house income in the dwelling unit is $25751 -in.representative_income 25753 Representative total house income in the dwelling unit is $25753 -in.representative_income 25759 Representative total house income in the dwelling unit is $25759 -in.representative_income 25763 Representative total house income in the dwelling unit is $25763 -in.representative_income 25767 Representative total house income in the dwelling unit is $25767 -in.representative_income 25785 Representative total house income in the dwelling unit is $25785 -in.representative_income 25786 Representative total house income in the dwelling unit is $25786 -in.representative_income 25795 Representative total house income in the dwelling unit is $25795 -in.representative_income 25805 Representative total house income in the dwelling unit is $25805 -in.representative_income 25817 Representative total house income in the dwelling unit is $25817 -in.representative_income 25824 Representative total house income in the dwelling unit is $25824 -in.representative_income 25828 Representative total house income in the dwelling unit is $25828 -in.representative_income 25834 Representative total house income in the dwelling unit is $25834 -in.representative_income 25838 Representative total house income in the dwelling unit is $25838 -in.representative_income 25860 Representative total house income in the dwelling unit is $25860 -in.representative_income 25870 Representative total house income in the dwelling unit is $25870 -in.representative_income 25881 Representative total house income in the dwelling unit is $25881 -in.representative_income 25890 Representative total house income in the dwelling unit is $25890 -in.representative_income 25902 Representative total house income in the dwelling unit is $25902 -in.representative_income 25913 Representative total house income in the dwelling unit is $25913 -in.representative_income 25932 Representative total house income in the dwelling unit is $25932 -in.representative_income 25933 Representative total house income in the dwelling unit is $25933 -in.representative_income 25934 Representative total house income in the dwelling unit is $25934 -in.representative_income 25942 Representative total house income in the dwelling unit is $25942 -in.representative_income 25943 Representative total house income in the dwelling unit is $25943 -in.representative_income 25945 Representative total house income in the dwelling unit is $25945 -in.representative_income 25953 Representative total house income in the dwelling unit is $25953 -in.representative_income 25961 Representative total house income in the dwelling unit is $25961 -in.representative_income 25970 Representative total house income in the dwelling unit is $25970 -in.representative_income 25972 Representative total house income in the dwelling unit is $25972 -in.representative_income 25975 Representative total house income in the dwelling unit is $25975 -in.representative_income 25978 Representative total house income in the dwelling unit is $25978 -in.representative_income 25981 Representative total house income in the dwelling unit is $25981 -in.representative_income 25989 Representative total house income in the dwelling unit is $25989 -in.representative_income 25991 Representative total house income in the dwelling unit is $25991 -in.representative_income 25993 Representative total house income in the dwelling unit is $25993 -in.representative_income 25999 Representative total house income in the dwelling unit is $25999 -in.representative_income 26003 Representative total house income in the dwelling unit is $26003 -in.representative_income 26009 Representative total house income in the dwelling unit is $26009 -in.representative_income 26017 Representative total house income in the dwelling unit is $26017 -in.representative_income 26020 Representative total house income in the dwelling unit is $26020 -in.representative_income 26025 Representative total house income in the dwelling unit is $26025 -in.representative_income 26031 Representative total house income in the dwelling unit is $26031 -in.representative_income 26035 Representative total house income in the dwelling unit is $26035 -in.representative_income 26039 Representative total house income in the dwelling unit is $26039 -in.representative_income 26042 Representative total house income in the dwelling unit is $26042 -in.representative_income 26044 Representative total house income in the dwelling unit is $26044 -in.representative_income 26049 Representative total house income in the dwelling unit is $26049 -in.representative_income 26050 Representative total house income in the dwelling unit is $26050 -in.representative_income 26055 Representative total house income in the dwelling unit is $26055 -in.representative_income 26059 Representative total house income in the dwelling unit is $26059 -in.representative_income 26061 Representative total house income in the dwelling unit is $26061 -in.representative_income 26062 Representative total house income in the dwelling unit is $26062 -in.representative_income 26072 Representative total house income in the dwelling unit is $26072 -in.representative_income 26076 Representative total house income in the dwelling unit is $26076 -in.representative_income 26084 Representative total house income in the dwelling unit is $26084 -in.representative_income 26091 Representative total house income in the dwelling unit is $26091 -in.representative_income 26092 Representative total house income in the dwelling unit is $26092 -in.representative_income 26093 Representative total house income in the dwelling unit is $26093 -in.representative_income 26095 Representative total house income in the dwelling unit is $26095 -in.representative_income 26096 Representative total house income in the dwelling unit is $26096 -in.representative_income 26101 Representative total house income in the dwelling unit is $26101 -in.representative_income 26102 Representative total house income in the dwelling unit is $26102 -in.representative_income 26117 Representative total house income in the dwelling unit is $26117 -in.representative_income 26120 Representative total house income in the dwelling unit is $26120 -in.representative_income 26137 Representative total house income in the dwelling unit is $26137 -in.representative_income 26147 Representative total house income in the dwelling unit is $26147 -in.representative_income 26154 Representative total house income in the dwelling unit is $26154 -in.representative_income 26158 Representative total house income in the dwelling unit is $26158 -in.representative_income 26163 Representative total house income in the dwelling unit is $26163 -in.representative_income 26180 Representative total house income in the dwelling unit is $26180 -in.representative_income 26186 Representative total house income in the dwelling unit is $26186 -in.representative_income 26192 Representative total house income in the dwelling unit is $26192 -in.representative_income 26193 Representative total house income in the dwelling unit is $26193 -in.representative_income 26197 Representative total house income in the dwelling unit is $26197 -in.representative_income 26199 Representative total house income in the dwelling unit is $26199 -in.representative_income 26203 Representative total house income in the dwelling unit is $26203 -in.representative_income 26220 Representative total house income in the dwelling unit is $26220 -in.representative_income 26223 Representative total house income in the dwelling unit is $26223 -in.representative_income 26233 Representative total house income in the dwelling unit is $26233 -in.representative_income 26255 Representative total house income in the dwelling unit is $26255 -in.representative_income 26256 Representative total house income in the dwelling unit is $26256 -in.representative_income 26260 Representative total house income in the dwelling unit is $26260 -in.representative_income 26264 Representative total house income in the dwelling unit is $26264 -in.representative_income 26271 Representative total house income in the dwelling unit is $26271 -in.representative_income 26277 Representative total house income in the dwelling unit is $26277 -in.representative_income 26284 Representative total house income in the dwelling unit is $26284 -in.representative_income 26299 Representative total house income in the dwelling unit is $26299 -in.representative_income 26301 Representative total house income in the dwelling unit is $26301 -in.representative_income 26302 Representative total house income in the dwelling unit is $26302 -in.representative_income 26304 Representative total house income in the dwelling unit is $26304 -in.representative_income 26309 Representative total house income in the dwelling unit is $26309 -in.representative_income 26319 Representative total house income in the dwelling unit is $26319 -in.representative_income 26322 Representative total house income in the dwelling unit is $26322 -in.representative_income 26323 Representative total house income in the dwelling unit is $26323 -in.representative_income 26344 Representative total house income in the dwelling unit is $26344 -in.representative_income 26353 Representative total house income in the dwelling unit is $26353 -in.representative_income 26363 Representative total house income in the dwelling unit is $26363 -in.representative_income 26364 Representative total house income in the dwelling unit is $26364 -in.representative_income 26365 Representative total house income in the dwelling unit is $26365 -in.representative_income 26377 Representative total house income in the dwelling unit is $26377 -in.representative_income 26385 Representative total house income in the dwelling unit is $26385 -in.representative_income 26386 Representative total house income in the dwelling unit is $26386 -in.representative_income 26388 Representative total house income in the dwelling unit is $26388 -in.representative_income 26396 Representative total house income in the dwelling unit is $26396 -in.representative_income 26397 Representative total house income in the dwelling unit is $26397 -in.representative_income 26405 Representative total house income in the dwelling unit is $26405 -in.representative_income 26407 Representative total house income in the dwelling unit is $26407 -in.representative_income 26415 Representative total house income in the dwelling unit is $26415 -in.representative_income 26416 Representative total house income in the dwelling unit is $26416 -in.representative_income 26417 Representative total house income in the dwelling unit is $26417 -in.representative_income 26418 Representative total house income in the dwelling unit is $26418 -in.representative_income 26420 Representative total house income in the dwelling unit is $26420 -in.representative_income 26428 Representative total house income in the dwelling unit is $26428 -in.representative_income 26436 Representative total house income in the dwelling unit is $26436 -in.representative_income 26439 Representative total house income in the dwelling unit is $26439 -in.representative_income 26450 Representative total house income in the dwelling unit is $26450 -in.representative_income 26453 Representative total house income in the dwelling unit is $26453 -in.representative_income 26457 Representative total house income in the dwelling unit is $26457 -in.representative_income 26466 Representative total house income in the dwelling unit is $26466 -in.representative_income 26471 Representative total house income in the dwelling unit is $26471 -in.representative_income 26472 Representative total house income in the dwelling unit is $26472 -in.representative_income 26476 Representative total house income in the dwelling unit is $26476 -in.representative_income 26482 Representative total house income in the dwelling unit is $26482 -in.representative_income 26493 Representative total house income in the dwelling unit is $26493 -in.representative_income 26496 Representative total house income in the dwelling unit is $26496 -in.representative_income 26508 Representative total house income in the dwelling unit is $26508 -in.representative_income 26509 Representative total house income in the dwelling unit is $26509 -in.representative_income 26512 Representative total house income in the dwelling unit is $26512 -in.representative_income 26515 Representative total house income in the dwelling unit is $26515 -in.representative_income 26516 Representative total house income in the dwelling unit is $26516 -in.representative_income 26523 Representative total house income in the dwelling unit is $26523 -in.representative_income 26525 Representative total house income in the dwelling unit is $26525 -in.representative_income 26526 Representative total house income in the dwelling unit is $26526 -in.representative_income 26529 Representative total house income in the dwelling unit is $26529 -in.representative_income 26537 Representative total house income in the dwelling unit is $26537 -in.representative_income 26548 Representative total house income in the dwelling unit is $26548 -in.representative_income 26550 Representative total house income in the dwelling unit is $26550 -in.representative_income 26555 Representative total house income in the dwelling unit is $26555 -in.representative_income 26566 Representative total house income in the dwelling unit is $26566 -in.representative_income 26567 Representative total house income in the dwelling unit is $26567 -in.representative_income 26568 Representative total house income in the dwelling unit is $26568 -in.representative_income 26570 Representative total house income in the dwelling unit is $26570 -in.representative_income 26576 Representative total house income in the dwelling unit is $26576 -in.representative_income 26580 Representative total house income in the dwelling unit is $26580 -in.representative_income 26581 Representative total house income in the dwelling unit is $26581 -in.representative_income 26586 Representative total house income in the dwelling unit is $26586 -in.representative_income 26597 Representative total house income in the dwelling unit is $26597 -in.representative_income 26598 Representative total house income in the dwelling unit is $26598 -in.representative_income 26600 Representative total house income in the dwelling unit is $26600 -in.representative_income 26601 Representative total house income in the dwelling unit is $26601 -in.representative_income 26607 Representative total house income in the dwelling unit is $26607 -in.representative_income 26609 Representative total house income in the dwelling unit is $26609 -in.representative_income 26610 Representative total house income in the dwelling unit is $26610 -in.representative_income 26611 Representative total house income in the dwelling unit is $26611 -in.representative_income 26612 Representative total house income in the dwelling unit is $26612 -in.representative_income 26621 Representative total house income in the dwelling unit is $26621 -in.representative_income 26622 Representative total house income in the dwelling unit is $26622 -in.representative_income 26640 Representative total house income in the dwelling unit is $26640 -in.representative_income 26642 Representative total house income in the dwelling unit is $26642 -in.representative_income 26648 Representative total house income in the dwelling unit is $26648 -in.representative_income 26649 Representative total house income in the dwelling unit is $26649 -in.representative_income 26651 Representative total house income in the dwelling unit is $26651 -in.representative_income 26653 Representative total house income in the dwelling unit is $26653 -in.representative_income 26654 Representative total house income in the dwelling unit is $26654 -in.representative_income 26656 Representative total house income in the dwelling unit is $26656 -in.representative_income 26663 Representative total house income in the dwelling unit is $26663 -in.representative_income 26666 Representative total house income in the dwelling unit is $26666 -in.representative_income 26668 Representative total house income in the dwelling unit is $26668 -in.representative_income 26671 Representative total house income in the dwelling unit is $26671 -in.representative_income 26678 Representative total house income in the dwelling unit is $26678 -in.representative_income 26681 Representative total house income in the dwelling unit is $26681 -in.representative_income 26684 Representative total house income in the dwelling unit is $26684 -in.representative_income 26687 Representative total house income in the dwelling unit is $26687 -in.representative_income 26688 Representative total house income in the dwelling unit is $26688 -in.representative_income 26689 Representative total house income in the dwelling unit is $26689 -in.representative_income 26692 Representative total house income in the dwelling unit is $26692 -in.representative_income 26701 Representative total house income in the dwelling unit is $26701 -in.representative_income 26709 Representative total house income in the dwelling unit is $26709 -in.representative_income 26714 Representative total house income in the dwelling unit is $26714 -in.representative_income 26718 Representative total house income in the dwelling unit is $26718 -in.representative_income 26724 Representative total house income in the dwelling unit is $26724 -in.representative_income 26729 Representative total house income in the dwelling unit is $26729 -in.representative_income 26733 Representative total house income in the dwelling unit is $26733 -in.representative_income 26734 Representative total house income in the dwelling unit is $26734 -in.representative_income 26736 Representative total house income in the dwelling unit is $26736 -in.representative_income 26742 Representative total house income in the dwelling unit is $26742 -in.representative_income 26746 Representative total house income in the dwelling unit is $26746 -in.representative_income 26749 Representative total house income in the dwelling unit is $26749 -in.representative_income 26750 Representative total house income in the dwelling unit is $26750 -in.representative_income 26751 Representative total house income in the dwelling unit is $26751 -in.representative_income 26752 Representative total house income in the dwelling unit is $26752 -in.representative_income 26755 Representative total house income in the dwelling unit is $26755 -in.representative_income 26759 Representative total house income in the dwelling unit is $26759 -in.representative_income 26762 Representative total house income in the dwelling unit is $26762 -in.representative_income 26763 Representative total house income in the dwelling unit is $26763 -in.representative_income 26766 Representative total house income in the dwelling unit is $26766 -in.representative_income 26767 Representative total house income in the dwelling unit is $26767 -in.representative_income 26769 Representative total house income in the dwelling unit is $26769 -in.representative_income 26772 Representative total house income in the dwelling unit is $26772 -in.representative_income 26773 Representative total house income in the dwelling unit is $26773 -in.representative_income 26779 Representative total house income in the dwelling unit is $26779 -in.representative_income 26783 Representative total house income in the dwelling unit is $26783 -in.representative_income 26785 Representative total house income in the dwelling unit is $26785 -in.representative_income 26787 Representative total house income in the dwelling unit is $26787 -in.representative_income 26794 Representative total house income in the dwelling unit is $26794 -in.representative_income 26796 Representative total house income in the dwelling unit is $26796 -in.representative_income 26799 Representative total house income in the dwelling unit is $26799 -in.representative_income 26804 Representative total house income in the dwelling unit is $26804 -in.representative_income 26808 Representative total house income in the dwelling unit is $26808 -in.representative_income 26809 Representative total house income in the dwelling unit is $26809 -in.representative_income 26818 Representative total house income in the dwelling unit is $26818 -in.representative_income 26819 Representative total house income in the dwelling unit is $26819 -in.representative_income 26822 Representative total house income in the dwelling unit is $26822 -in.representative_income 26825 Representative total house income in the dwelling unit is $26825 -in.representative_income 26827 Representative total house income in the dwelling unit is $26827 -in.representative_income 26828 Representative total house income in the dwelling unit is $26828 -in.representative_income 26836 Representative total house income in the dwelling unit is $26836 -in.representative_income 26838 Representative total house income in the dwelling unit is $26838 -in.representative_income 26839 Representative total house income in the dwelling unit is $26839 -in.representative_income 26840 Representative total house income in the dwelling unit is $26840 -in.representative_income 26847 Representative total house income in the dwelling unit is $26847 -in.representative_income 26849 Representative total house income in the dwelling unit is $26849 -in.representative_income 26850 Representative total house income in the dwelling unit is $26850 -in.representative_income 26853 Representative total house income in the dwelling unit is $26853 -in.representative_income 26855 Representative total house income in the dwelling unit is $26855 -in.representative_income 26859 Representative total house income in the dwelling unit is $26859 -in.representative_income 26861 Representative total house income in the dwelling unit is $26861 -in.representative_income 26869 Representative total house income in the dwelling unit is $26869 -in.representative_income 26870 Representative total house income in the dwelling unit is $26870 -in.representative_income 26871 Representative total house income in the dwelling unit is $26871 -in.representative_income 26882 Representative total house income in the dwelling unit is $26882 -in.representative_income 26890 Representative total house income in the dwelling unit is $26890 -in.representative_income 26892 Representative total house income in the dwelling unit is $26892 -in.representative_income 26893 Representative total house income in the dwelling unit is $26893 -in.representative_income 26900 Representative total house income in the dwelling unit is $26900 -in.representative_income 26901 Representative total house income in the dwelling unit is $26901 -in.representative_income 26904 Representative total house income in the dwelling unit is $26904 -in.representative_income 26908 Representative total house income in the dwelling unit is $26908 -in.representative_income 26914 Representative total house income in the dwelling unit is $26914 -in.representative_income 26915 Representative total house income in the dwelling unit is $26915 -in.representative_income 26917 Representative total house income in the dwelling unit is $26917 -in.representative_income 26920 Representative total house income in the dwelling unit is $26920 -in.representative_income 26921 Representative total house income in the dwelling unit is $26921 -in.representative_income 26922 Representative total house income in the dwelling unit is $26922 -in.representative_income 26924 Representative total house income in the dwelling unit is $26924 -in.representative_income 26925 Representative total house income in the dwelling unit is $26925 -in.representative_income 26930 Representative total house income in the dwelling unit is $26930 -in.representative_income 26931 Representative total house income in the dwelling unit is $26931 -in.representative_income 26933 Representative total house income in the dwelling unit is $26933 -in.representative_income 26934 Representative total house income in the dwelling unit is $26934 -in.representative_income 26935 Representative total house income in the dwelling unit is $26935 -in.representative_income 26936 Representative total house income in the dwelling unit is $26936 -in.representative_income 26941 Representative total house income in the dwelling unit is $26941 -in.representative_income 26944 Representative total house income in the dwelling unit is $26944 -in.representative_income 26945 Representative total house income in the dwelling unit is $26945 -in.representative_income 26952 Representative total house income in the dwelling unit is $26952 -in.representative_income 26958 Representative total house income in the dwelling unit is $26958 -in.representative_income 26965 Representative total house income in the dwelling unit is $26965 -in.representative_income 26966 Representative total house income in the dwelling unit is $26966 -in.representative_income 26968 Representative total house income in the dwelling unit is $26968 -in.representative_income 26971 Representative total house income in the dwelling unit is $26971 -in.representative_income 26972 Representative total house income in the dwelling unit is $26972 -in.representative_income 26973 Representative total house income in the dwelling unit is $26973 -in.representative_income 26977 Representative total house income in the dwelling unit is $26977 -in.representative_income 26978 Representative total house income in the dwelling unit is $26978 -in.representative_income 26979 Representative total house income in the dwelling unit is $26979 -in.representative_income 26981 Representative total house income in the dwelling unit is $26981 -in.representative_income 26982 Representative total house income in the dwelling unit is $26982 -in.representative_income 26983 Representative total house income in the dwelling unit is $26983 -in.representative_income 26986 Representative total house income in the dwelling unit is $26986 -in.representative_income 26988 Representative total house income in the dwelling unit is $26988 -in.representative_income 26989 Representative total house income in the dwelling unit is $26989 -in.representative_income 26991 Representative total house income in the dwelling unit is $26991 -in.representative_income 26993 Representative total house income in the dwelling unit is $26993 -in.representative_income 26997 Representative total house income in the dwelling unit is $26997 -in.representative_income 26998 Representative total house income in the dwelling unit is $26998 -in.representative_income 27001 Representative total house income in the dwelling unit is $27001 -in.representative_income 27003 Representative total house income in the dwelling unit is $27003 -in.representative_income 27011 Representative total house income in the dwelling unit is $27011 -in.representative_income 27012 Representative total house income in the dwelling unit is $27012 -in.representative_income 27013 Representative total house income in the dwelling unit is $27013 -in.representative_income 27014 Representative total house income in the dwelling unit is $27014 -in.representative_income 27018 Representative total house income in the dwelling unit is $27018 -in.representative_income 27019 Representative total house income in the dwelling unit is $27019 -in.representative_income 27020 Representative total house income in the dwelling unit is $27020 -in.representative_income 27021 Representative total house income in the dwelling unit is $27021 -in.representative_income 27023 Representative total house income in the dwelling unit is $27023 -in.representative_income 27024 Representative total house income in the dwelling unit is $27024 -in.representative_income 27030 Representative total house income in the dwelling unit is $27030 -in.representative_income 27031 Representative total house income in the dwelling unit is $27031 -in.representative_income 27033 Representative total house income in the dwelling unit is $27033 -in.representative_income 27034 Representative total house income in the dwelling unit is $27034 -in.representative_income 27041 Representative total house income in the dwelling unit is $27041 -in.representative_income 27044 Representative total house income in the dwelling unit is $27044 -in.representative_income 27051 Representative total house income in the dwelling unit is $27051 -in.representative_income 27052 Representative total house income in the dwelling unit is $27052 -in.representative_income 27055 Representative total house income in the dwelling unit is $27055 -in.representative_income 27061 Representative total house income in the dwelling unit is $27061 -in.representative_income 27062 Representative total house income in the dwelling unit is $27062 -in.representative_income 27064 Representative total house income in the dwelling unit is $27064 -in.representative_income 27065 Representative total house income in the dwelling unit is $27065 -in.representative_income 27066 Representative total house income in the dwelling unit is $27066 -in.representative_income 27072 Representative total house income in the dwelling unit is $27072 -in.representative_income 27074 Representative total house income in the dwelling unit is $27074 -in.representative_income 27076 Representative total house income in the dwelling unit is $27076 -in.representative_income 27083 Representative total house income in the dwelling unit is $27083 -in.representative_income 27086 Representative total house income in the dwelling unit is $27086 -in.representative_income 27087 Representative total house income in the dwelling unit is $27087 -in.representative_income 27089 Representative total house income in the dwelling unit is $27089 -in.representative_income 27092 Representative total house income in the dwelling unit is $27092 -in.representative_income 27093 Representative total house income in the dwelling unit is $27093 -in.representative_income 27094 Representative total house income in the dwelling unit is $27094 -in.representative_income 27096 Representative total house income in the dwelling unit is $27096 -in.representative_income 27103 Representative total house income in the dwelling unit is $27103 -in.representative_income 27104 Representative total house income in the dwelling unit is $27104 -in.representative_income 27107 Representative total house income in the dwelling unit is $27107 -in.representative_income 27116 Representative total house income in the dwelling unit is $27116 -in.representative_income 27120 Representative total house income in the dwelling unit is $27120 -in.representative_income 27121 Representative total house income in the dwelling unit is $27121 -in.representative_income 27128 Representative total house income in the dwelling unit is $27128 -in.representative_income 27130 Representative total house income in the dwelling unit is $27130 -in.representative_income 27132 Representative total house income in the dwelling unit is $27132 -in.representative_income 27136 Representative total house income in the dwelling unit is $27136 -in.representative_income 27138 Representative total house income in the dwelling unit is $27138 -in.representative_income 27139 Representative total house income in the dwelling unit is $27139 -in.representative_income 27143 Representative total house income in the dwelling unit is $27143 -in.representative_income 27145 Representative total house income in the dwelling unit is $27145 -in.representative_income 27147 Representative total house income in the dwelling unit is $27147 -in.representative_income 27148 Representative total house income in the dwelling unit is $27148 -in.representative_income 27152 Representative total house income in the dwelling unit is $27152 -in.representative_income 27153 Representative total house income in the dwelling unit is $27153 -in.representative_income 27156 Representative total house income in the dwelling unit is $27156 -in.representative_income 27159 Representative total house income in the dwelling unit is $27159 -in.representative_income 27163 Representative total house income in the dwelling unit is $27163 -in.representative_income 27167 Representative total house income in the dwelling unit is $27167 -in.representative_income 27169 Representative total house income in the dwelling unit is $27169 -in.representative_income 27173 Representative total house income in the dwelling unit is $27173 -in.representative_income 27174 Representative total house income in the dwelling unit is $27174 -in.representative_income 27180 Representative total house income in the dwelling unit is $27180 -in.representative_income 27184 Representative total house income in the dwelling unit is $27184 -in.representative_income 27188 Representative total house income in the dwelling unit is $27188 -in.representative_income 27189 Representative total house income in the dwelling unit is $27189 -in.representative_income 27191 Representative total house income in the dwelling unit is $27191 -in.representative_income 27198 Representative total house income in the dwelling unit is $27198 -in.representative_income 27200 Representative total house income in the dwelling unit is $27200 -in.representative_income 27209 Representative total house income in the dwelling unit is $27209 -in.representative_income 27212 Representative total house income in the dwelling unit is $27212 -in.representative_income 27227 Representative total house income in the dwelling unit is $27227 -in.representative_income 27229 Representative total house income in the dwelling unit is $27229 -in.representative_income 27230 Representative total house income in the dwelling unit is $27230 -in.representative_income 27231 Representative total house income in the dwelling unit is $27231 -in.representative_income 27232 Representative total house income in the dwelling unit is $27232 -in.representative_income 27238 Representative total house income in the dwelling unit is $27238 -in.representative_income 27240 Representative total house income in the dwelling unit is $27240 -in.representative_income 27251 Representative total house income in the dwelling unit is $27251 -in.representative_income 27256 Representative total house income in the dwelling unit is $27256 -in.representative_income 27260 Representative total house income in the dwelling unit is $27260 -in.representative_income 27262 Representative total house income in the dwelling unit is $27262 -in.representative_income 27265 Representative total house income in the dwelling unit is $27265 -in.representative_income 27270 Representative total house income in the dwelling unit is $27270 -in.representative_income 27271 Representative total house income in the dwelling unit is $27271 -in.representative_income 27274 Representative total house income in the dwelling unit is $27274 -in.representative_income 27281 Representative total house income in the dwelling unit is $27281 -in.representative_income 27282 Representative total house income in the dwelling unit is $27282 -in.representative_income 27287 Representative total house income in the dwelling unit is $27287 -in.representative_income 27291 Representative total house income in the dwelling unit is $27291 -in.representative_income 27292 Representative total house income in the dwelling unit is $27292 -in.representative_income 27293 Representative total house income in the dwelling unit is $27293 -in.representative_income 27294 Representative total house income in the dwelling unit is $27294 -in.representative_income 27295 Representative total house income in the dwelling unit is $27295 -in.representative_income 27303 Representative total house income in the dwelling unit is $27303 -in.representative_income 27314 Representative total house income in the dwelling unit is $27314 -in.representative_income 27318 Representative total house income in the dwelling unit is $27318 -in.representative_income 27319 Representative total house income in the dwelling unit is $27319 -in.representative_income 27320 Representative total house income in the dwelling unit is $27320 -in.representative_income 27324 Representative total house income in the dwelling unit is $27324 -in.representative_income 27325 Representative total house income in the dwelling unit is $27325 -in.representative_income 27326 Representative total house income in the dwelling unit is $27326 -in.representative_income 27333 Representative total house income in the dwelling unit is $27333 -in.representative_income 27335 Representative total house income in the dwelling unit is $27335 -in.representative_income 27336 Representative total house income in the dwelling unit is $27336 -in.representative_income 27342 Representative total house income in the dwelling unit is $27342 -in.representative_income 27347 Representative total house income in the dwelling unit is $27347 -in.representative_income 27349 Representative total house income in the dwelling unit is $27349 -in.representative_income 27352 Representative total house income in the dwelling unit is $27352 -in.representative_income 27357 Representative total house income in the dwelling unit is $27357 -in.representative_income 27358 Representative total house income in the dwelling unit is $27358 -in.representative_income 27365 Representative total house income in the dwelling unit is $27365 -in.representative_income 27369 Representative total house income in the dwelling unit is $27369 -in.representative_income 27373 Representative total house income in the dwelling unit is $27373 -in.representative_income 27375 Representative total house income in the dwelling unit is $27375 -in.representative_income 27380 Representative total house income in the dwelling unit is $27380 -in.representative_income 27385 Representative total house income in the dwelling unit is $27385 -in.representative_income 27391 Representative total house income in the dwelling unit is $27391 -in.representative_income 27394 Representative total house income in the dwelling unit is $27394 -in.representative_income 27395 Representative total house income in the dwelling unit is $27395 -in.representative_income 27398 Representative total house income in the dwelling unit is $27398 -in.representative_income 27401 Representative total house income in the dwelling unit is $27401 -in.representative_income 27405 Representative total house income in the dwelling unit is $27405 -in.representative_income 27415 Representative total house income in the dwelling unit is $27415 -in.representative_income 27416 Representative total house income in the dwelling unit is $27416 -in.representative_income 27419 Representative total house income in the dwelling unit is $27419 -in.representative_income 27423 Representative total house income in the dwelling unit is $27423 -in.representative_income 27425 Representative total house income in the dwelling unit is $27425 -in.representative_income 27427 Representative total house income in the dwelling unit is $27427 -in.representative_income 27431 Representative total house income in the dwelling unit is $27431 -in.representative_income 27436 Representative total house income in the dwelling unit is $27436 -in.representative_income 27437 Representative total house income in the dwelling unit is $27437 -in.representative_income 27441 Representative total house income in the dwelling unit is $27441 -in.representative_income 27444 Representative total house income in the dwelling unit is $27444 -in.representative_income 27445 Representative total house income in the dwelling unit is $27445 -in.representative_income 27448 Representative total house income in the dwelling unit is $27448 -in.representative_income 27452 Representative total house income in the dwelling unit is $27452 -in.representative_income 27456 Representative total house income in the dwelling unit is $27456 -in.representative_income 27457 Representative total house income in the dwelling unit is $27457 -in.representative_income 27459 Representative total house income in the dwelling unit is $27459 -in.representative_income 27466 Representative total house income in the dwelling unit is $27466 -in.representative_income 27467 Representative total house income in the dwelling unit is $27467 -in.representative_income 27470 Representative total house income in the dwelling unit is $27470 -in.representative_income 27472 Representative total house income in the dwelling unit is $27472 -in.representative_income 27476 Representative total house income in the dwelling unit is $27476 -in.representative_income 27480 Representative total house income in the dwelling unit is $27480 -in.representative_income 27483 Representative total house income in the dwelling unit is $27483 -in.representative_income 27484 Representative total house income in the dwelling unit is $27484 -in.representative_income 27488 Representative total house income in the dwelling unit is $27488 -in.representative_income 27492 Representative total house income in the dwelling unit is $27492 -in.representative_income 27493 Representative total house income in the dwelling unit is $27493 -in.representative_income 27496 Representative total house income in the dwelling unit is $27496 -in.representative_income 27498 Representative total house income in the dwelling unit is $27498 -in.representative_income 27502 Representative total house income in the dwelling unit is $27502 -in.representative_income 27504 Representative total house income in the dwelling unit is $27504 -in.representative_income 27509 Representative total house income in the dwelling unit is $27509 -in.representative_income 27510 Representative total house income in the dwelling unit is $27510 -in.representative_income 27514 Representative total house income in the dwelling unit is $27514 -in.representative_income 27519 Representative total house income in the dwelling unit is $27519 -in.representative_income 27520 Representative total house income in the dwelling unit is $27520 -in.representative_income 27523 Representative total house income in the dwelling unit is $27523 -in.representative_income 27526 Representative total house income in the dwelling unit is $27526 -in.representative_income 27531 Representative total house income in the dwelling unit is $27531 -in.representative_income 27533 Representative total house income in the dwelling unit is $27533 -in.representative_income 27534 Representative total house income in the dwelling unit is $27534 -in.representative_income 27537 Representative total house income in the dwelling unit is $27537 -in.representative_income 27540 Representative total house income in the dwelling unit is $27540 -in.representative_income 27541 Representative total house income in the dwelling unit is $27541 -in.representative_income 27542 Representative total house income in the dwelling unit is $27542 -in.representative_income 27544 Representative total house income in the dwelling unit is $27544 -in.representative_income 27546 Representative total house income in the dwelling unit is $27546 -in.representative_income 27547 Representative total house income in the dwelling unit is $27547 -in.representative_income 27550 Representative total house income in the dwelling unit is $27550 -in.representative_income 27552 Representative total house income in the dwelling unit is $27552 -in.representative_income 27557 Representative total house income in the dwelling unit is $27557 -in.representative_income 27559 Representative total house income in the dwelling unit is $27559 -in.representative_income 27560 Representative total house income in the dwelling unit is $27560 -in.representative_income 27562 Representative total house income in the dwelling unit is $27562 -in.representative_income 27563 Representative total house income in the dwelling unit is $27563 -in.representative_income 27567 Representative total house income in the dwelling unit is $27567 -in.representative_income 27570 Representative total house income in the dwelling unit is $27570 -in.representative_income 27577 Representative total house income in the dwelling unit is $27577 -in.representative_income 27578 Representative total house income in the dwelling unit is $27578 -in.representative_income 27583 Representative total house income in the dwelling unit is $27583 -in.representative_income 27586 Representative total house income in the dwelling unit is $27586 -in.representative_income 27587 Representative total house income in the dwelling unit is $27587 -in.representative_income 27588 Representative total house income in the dwelling unit is $27588 -in.representative_income 27597 Representative total house income in the dwelling unit is $27597 -in.representative_income 27599 Representative total house income in the dwelling unit is $27599 -in.representative_income 27606 Representative total house income in the dwelling unit is $27606 -in.representative_income 27609 Representative total house income in the dwelling unit is $27609 -in.representative_income 27610 Representative total house income in the dwelling unit is $27610 -in.representative_income 27611 Representative total house income in the dwelling unit is $27611 -in.representative_income 27612 Representative total house income in the dwelling unit is $27612 -in.representative_income 27617 Representative total house income in the dwelling unit is $27617 -in.representative_income 27621 Representative total house income in the dwelling unit is $27621 -in.representative_income 27627 Representative total house income in the dwelling unit is $27627 -in.representative_income 27630 Representative total house income in the dwelling unit is $27630 -in.representative_income 27631 Representative total house income in the dwelling unit is $27631 -in.representative_income 27635 Representative total house income in the dwelling unit is $27635 -in.representative_income 27638 Representative total house income in the dwelling unit is $27638 -in.representative_income 27639 Representative total house income in the dwelling unit is $27639 -in.representative_income 27641 Representative total house income in the dwelling unit is $27641 -in.representative_income 27643 Representative total house income in the dwelling unit is $27643 -in.representative_income 27646 Representative total house income in the dwelling unit is $27646 -in.representative_income 27652 Representative total house income in the dwelling unit is $27652 -in.representative_income 27653 Representative total house income in the dwelling unit is $27653 -in.representative_income 27654 Representative total house income in the dwelling unit is $27654 -in.representative_income 27660 Representative total house income in the dwelling unit is $27660 -in.representative_income 27661 Representative total house income in the dwelling unit is $27661 -in.representative_income 27664 Representative total house income in the dwelling unit is $27664 -in.representative_income 27669 Representative total house income in the dwelling unit is $27669 -in.representative_income 27671 Representative total house income in the dwelling unit is $27671 -in.representative_income 27674 Representative total house income in the dwelling unit is $27674 -in.representative_income 27678 Representative total house income in the dwelling unit is $27678 -in.representative_income 27682 Representative total house income in the dwelling unit is $27682 -in.representative_income 27683 Representative total house income in the dwelling unit is $27683 -in.representative_income 27692 Representative total house income in the dwelling unit is $27692 -in.representative_income 27695 Representative total house income in the dwelling unit is $27695 -in.representative_income 27696 Representative total house income in the dwelling unit is $27696 -in.representative_income 27698 Representative total house income in the dwelling unit is $27698 -in.representative_income 27703 Representative total house income in the dwelling unit is $27703 -in.representative_income 27705 Representative total house income in the dwelling unit is $27705 -in.representative_income 27706 Representative total house income in the dwelling unit is $27706 -in.representative_income 27717 Representative total house income in the dwelling unit is $27717 -in.representative_income 27720 Representative total house income in the dwelling unit is $27720 -in.representative_income 27726 Representative total house income in the dwelling unit is $27726 -in.representative_income 27727 Representative total house income in the dwelling unit is $27727 -in.representative_income 27734 Representative total house income in the dwelling unit is $27734 -in.representative_income 27736 Representative total house income in the dwelling unit is $27736 -in.representative_income 27738 Representative total house income in the dwelling unit is $27738 -in.representative_income 27739 Representative total house income in the dwelling unit is $27739 -in.representative_income 27746 Representative total house income in the dwelling unit is $27746 -in.representative_income 27747 Representative total house income in the dwelling unit is $27747 -in.representative_income 27749 Representative total house income in the dwelling unit is $27749 -in.representative_income 27750 Representative total house income in the dwelling unit is $27750 -in.representative_income 27754 Representative total house income in the dwelling unit is $27754 -in.representative_income 27759 Representative total house income in the dwelling unit is $27759 -in.representative_income 27768 Representative total house income in the dwelling unit is $27768 -in.representative_income 27772 Representative total house income in the dwelling unit is $27772 -in.representative_income 27775 Representative total house income in the dwelling unit is $27775 -in.representative_income 27777 Representative total house income in the dwelling unit is $27777 -in.representative_income 27779 Representative total house income in the dwelling unit is $27779 -in.representative_income 27786 Representative total house income in the dwelling unit is $27786 -in.representative_income 27787 Representative total house income in the dwelling unit is $27787 -in.representative_income 27788 Representative total house income in the dwelling unit is $27788 -in.representative_income 27790 Representative total house income in the dwelling unit is $27790 -in.representative_income 27791 Representative total house income in the dwelling unit is $27791 -in.representative_income 27794 Representative total house income in the dwelling unit is $27794 -in.representative_income 27799 Representative total house income in the dwelling unit is $27799 -in.representative_income 27800 Representative total house income in the dwelling unit is $27800 -in.representative_income 27802 Representative total house income in the dwelling unit is $27802 -in.representative_income 27803 Representative total house income in the dwelling unit is $27803 -in.representative_income 27805 Representative total house income in the dwelling unit is $27805 -in.representative_income 27808 Representative total house income in the dwelling unit is $27808 -in.representative_income 27809 Representative total house income in the dwelling unit is $27809 -in.representative_income 27819 Representative total house income in the dwelling unit is $27819 -in.representative_income 27822 Representative total house income in the dwelling unit is $27822 -in.representative_income 27824 Representative total house income in the dwelling unit is $27824 -in.representative_income 27829 Representative total house income in the dwelling unit is $27829 -in.representative_income 27835 Representative total house income in the dwelling unit is $27835 -in.representative_income 27840 Representative total house income in the dwelling unit is $27840 -in.representative_income 27842 Representative total house income in the dwelling unit is $27842 -in.representative_income 27847 Representative total house income in the dwelling unit is $27847 -in.representative_income 27849 Representative total house income in the dwelling unit is $27849 -in.representative_income 27852 Representative total house income in the dwelling unit is $27852 -in.representative_income 27856 Representative total house income in the dwelling unit is $27856 -in.representative_income 27859 Representative total house income in the dwelling unit is $27859 -in.representative_income 27860 Representative total house income in the dwelling unit is $27860 -in.representative_income 27861 Representative total house income in the dwelling unit is $27861 -in.representative_income 27867 Representative total house income in the dwelling unit is $27867 -in.representative_income 27870 Representative total house income in the dwelling unit is $27870 -in.representative_income 27876 Representative total house income in the dwelling unit is $27876 -in.representative_income 27877 Representative total house income in the dwelling unit is $27877 -in.representative_income 27879 Representative total house income in the dwelling unit is $27879 -in.representative_income 27880 Representative total house income in the dwelling unit is $27880 -in.representative_income 27887 Representative total house income in the dwelling unit is $27887 -in.representative_income 27888 Representative total house income in the dwelling unit is $27888 -in.representative_income 27890 Representative total house income in the dwelling unit is $27890 -in.representative_income 27891 Representative total house income in the dwelling unit is $27891 -in.representative_income 27894 Representative total house income in the dwelling unit is $27894 -in.representative_income 27898 Representative total house income in the dwelling unit is $27898 -in.representative_income 27900 Representative total house income in the dwelling unit is $27900 -in.representative_income 27901 Representative total house income in the dwelling unit is $27901 -in.representative_income 27909 Representative total house income in the dwelling unit is $27909 -in.representative_income 27910 Representative total house income in the dwelling unit is $27910 -in.representative_income 27911 Representative total house income in the dwelling unit is $27911 -in.representative_income 27914 Representative total house income in the dwelling unit is $27914 -in.representative_income 27919 Representative total house income in the dwelling unit is $27919 -in.representative_income 27930 Representative total house income in the dwelling unit is $27930 -in.representative_income 27931 Representative total house income in the dwelling unit is $27931 -in.representative_income 27932 Representative total house income in the dwelling unit is $27932 -in.representative_income 27941 Representative total house income in the dwelling unit is $27941 -in.representative_income 27947 Representative total house income in the dwelling unit is $27947 -in.representative_income 27952 Representative total house income in the dwelling unit is $27952 -in.representative_income 27954 Representative total house income in the dwelling unit is $27954 -in.representative_income 27957 Representative total house income in the dwelling unit is $27957 -in.representative_income 27962 Representative total house income in the dwelling unit is $27962 -in.representative_income 27964 Representative total house income in the dwelling unit is $27964 -in.representative_income 27971 Representative total house income in the dwelling unit is $27971 -in.representative_income 27974 Representative total house income in the dwelling unit is $27974 -in.representative_income 27981 Representative total house income in the dwelling unit is $27981 -in.representative_income 27984 Representative total house income in the dwelling unit is $27984 -in.representative_income 27994 Representative total house income in the dwelling unit is $27994 -in.representative_income 27995 Representative total house income in the dwelling unit is $27995 -in.representative_income 27996 Representative total house income in the dwelling unit is $27996 -in.representative_income 28006 Representative total house income in the dwelling unit is $28006 -in.representative_income 28010 Representative total house income in the dwelling unit is $28010 -in.representative_income 28016 Representative total house income in the dwelling unit is $28016 -in.representative_income 28017 Representative total house income in the dwelling unit is $28017 -in.representative_income 28024 Representative total house income in the dwelling unit is $28024 -in.representative_income 28028 Representative total house income in the dwelling unit is $28028 -in.representative_income 28038 Representative total house income in the dwelling unit is $28038 -in.representative_income 28042 Representative total house income in the dwelling unit is $28042 -in.representative_income 28049 Representative total house income in the dwelling unit is $28049 -in.representative_income 28052 Representative total house income in the dwelling unit is $28052 -in.representative_income 28056 Representative total house income in the dwelling unit is $28056 -in.representative_income 28060 Representative total house income in the dwelling unit is $28060 -in.representative_income 28062 Representative total house income in the dwelling unit is $28062 -in.representative_income 28063 Representative total house income in the dwelling unit is $28063 -in.representative_income 28067 Representative total house income in the dwelling unit is $28067 -in.representative_income 28070 Representative total house income in the dwelling unit is $28070 -in.representative_income 28072 Representative total house income in the dwelling unit is $28072 -in.representative_income 28076 Representative total house income in the dwelling unit is $28076 -in.representative_income 28081 Representative total house income in the dwelling unit is $28081 -in.representative_income 28082 Representative total house income in the dwelling unit is $28082 -in.representative_income 28084 Representative total house income in the dwelling unit is $28084 -in.representative_income 28086 Representative total house income in the dwelling unit is $28086 -in.representative_income 28092 Representative total house income in the dwelling unit is $28092 -in.representative_income 28093 Representative total house income in the dwelling unit is $28093 -in.representative_income 28095 Representative total house income in the dwelling unit is $28095 -in.representative_income 28097 Representative total house income in the dwelling unit is $28097 -in.representative_income 28103 Representative total house income in the dwelling unit is $28103 -in.representative_income 28105 Representative total house income in the dwelling unit is $28105 -in.representative_income 28107 Representative total house income in the dwelling unit is $28107 -in.representative_income 28109 Representative total house income in the dwelling unit is $28109 -in.representative_income 28111 Representative total house income in the dwelling unit is $28111 -in.representative_income 28113 Representative total house income in the dwelling unit is $28113 -in.representative_income 28114 Representative total house income in the dwelling unit is $28114 -in.representative_income 28116 Representative total house income in the dwelling unit is $28116 -in.representative_income 28125 Representative total house income in the dwelling unit is $28125 -in.representative_income 28127 Representative total house income in the dwelling unit is $28127 -in.representative_income 28133 Representative total house income in the dwelling unit is $28133 -in.representative_income 28137 Representative total house income in the dwelling unit is $28137 -in.representative_income 28146 Representative total house income in the dwelling unit is $28146 -in.representative_income 28147 Representative total house income in the dwelling unit is $28147 -in.representative_income 28148 Representative total house income in the dwelling unit is $28148 -in.representative_income 28158 Representative total house income in the dwelling unit is $28158 -in.representative_income 28159 Representative total house income in the dwelling unit is $28159 -in.representative_income 28162 Representative total house income in the dwelling unit is $28162 -in.representative_income 28163 Representative total house income in the dwelling unit is $28163 -in.representative_income 28168 Representative total house income in the dwelling unit is $28168 -in.representative_income 28169 Representative total house income in the dwelling unit is $28169 -in.representative_income 28179 Representative total house income in the dwelling unit is $28179 -in.representative_income 28182 Representative total house income in the dwelling unit is $28182 -in.representative_income 28183 Representative total house income in the dwelling unit is $28183 -in.representative_income 28186 Representative total house income in the dwelling unit is $28186 -in.representative_income 28188 Representative total house income in the dwelling unit is $28188 -in.representative_income 28190 Representative total house income in the dwelling unit is $28190 -in.representative_income 28199 Representative total house income in the dwelling unit is $28199 -in.representative_income 28200 Representative total house income in the dwelling unit is $28200 -in.representative_income 28201 Representative total house income in the dwelling unit is $28201 -in.representative_income 28203 Representative total house income in the dwelling unit is $28203 -in.representative_income 28205 Representative total house income in the dwelling unit is $28205 -in.representative_income 28211 Representative total house income in the dwelling unit is $28211 -in.representative_income 28213 Representative total house income in the dwelling unit is $28213 -in.representative_income 28216 Representative total house income in the dwelling unit is $28216 -in.representative_income 28222 Representative total house income in the dwelling unit is $28222 -in.representative_income 28223 Representative total house income in the dwelling unit is $28223 -in.representative_income 28232 Representative total house income in the dwelling unit is $28232 -in.representative_income 28233 Representative total house income in the dwelling unit is $28233 -in.representative_income 28234 Representative total house income in the dwelling unit is $28234 -in.representative_income 28236 Representative total house income in the dwelling unit is $28236 -in.representative_income 28238 Representative total house income in the dwelling unit is $28238 -in.representative_income 28243 Representative total house income in the dwelling unit is $28243 -in.representative_income 28244 Representative total house income in the dwelling unit is $28244 -in.representative_income 28253 Representative total house income in the dwelling unit is $28253 -in.representative_income 28255 Representative total house income in the dwelling unit is $28255 -in.representative_income 28261 Representative total house income in the dwelling unit is $28261 -in.representative_income 28264 Representative total house income in the dwelling unit is $28264 -in.representative_income 28276 Representative total house income in the dwelling unit is $28276 -in.representative_income 28283 Representative total house income in the dwelling unit is $28283 -in.representative_income 28284 Representative total house income in the dwelling unit is $28284 -in.representative_income 28285 Representative total house income in the dwelling unit is $28285 -in.representative_income 28296 Representative total house income in the dwelling unit is $28296 -in.representative_income 28309 Representative total house income in the dwelling unit is $28309 -in.representative_income 28310 Representative total house income in the dwelling unit is $28310 -in.representative_income 28313 Representative total house income in the dwelling unit is $28313 -in.representative_income 28314 Representative total house income in the dwelling unit is $28314 -in.representative_income 28317 Representative total house income in the dwelling unit is $28317 -in.representative_income 28328 Representative total house income in the dwelling unit is $28328 -in.representative_income 28330 Representative total house income in the dwelling unit is $28330 -in.representative_income 28334 Representative total house income in the dwelling unit is $28334 -in.representative_income 28335 Representative total house income in the dwelling unit is $28335 -in.representative_income 28339 Representative total house income in the dwelling unit is $28339 -in.representative_income 28344 Representative total house income in the dwelling unit is $28344 -in.representative_income 28345 Representative total house income in the dwelling unit is $28345 -in.representative_income 28349 Representative total house income in the dwelling unit is $28349 -in.representative_income 28350 Representative total house income in the dwelling unit is $28350 -in.representative_income 28352 Representative total house income in the dwelling unit is $28352 -in.representative_income 28355 Representative total house income in the dwelling unit is $28355 -in.representative_income 28359 Representative total house income in the dwelling unit is $28359 -in.representative_income 28363 Representative total house income in the dwelling unit is $28363 -in.representative_income 28365 Representative total house income in the dwelling unit is $28365 -in.representative_income 28369 Representative total house income in the dwelling unit is $28369 -in.representative_income 28371 Representative total house income in the dwelling unit is $28371 -in.representative_income 28372 Representative total house income in the dwelling unit is $28372 -in.representative_income 28376 Representative total house income in the dwelling unit is $28376 -in.representative_income 28379 Representative total house income in the dwelling unit is $28379 -in.representative_income 28382 Representative total house income in the dwelling unit is $28382 -in.representative_income 28384 Representative total house income in the dwelling unit is $28384 -in.representative_income 28385 Representative total house income in the dwelling unit is $28385 -in.representative_income 28393 Representative total house income in the dwelling unit is $28393 -in.representative_income 28395 Representative total house income in the dwelling unit is $28395 -in.representative_income 28404 Representative total house income in the dwelling unit is $28404 -in.representative_income 28406 Representative total house income in the dwelling unit is $28406 -in.representative_income 28416 Representative total house income in the dwelling unit is $28416 -in.representative_income 28422 Representative total house income in the dwelling unit is $28422 -in.representative_income 28425 Representative total house income in the dwelling unit is $28425 -in.representative_income 28436 Representative total house income in the dwelling unit is $28436 -in.representative_income 28446 Representative total house income in the dwelling unit is $28446 -in.representative_income 28455 Representative total house income in the dwelling unit is $28455 -in.representative_income 28457 Representative total house income in the dwelling unit is $28457 -in.representative_income 28459 Representative total house income in the dwelling unit is $28459 -in.representative_income 28467 Representative total house income in the dwelling unit is $28467 -in.representative_income 28468 Representative total house income in the dwelling unit is $28468 -in.representative_income 28471 Representative total house income in the dwelling unit is $28471 -in.representative_income 28474 Representative total house income in the dwelling unit is $28474 -in.representative_income 28481 Representative total house income in the dwelling unit is $28481 -in.representative_income 28485 Representative total house income in the dwelling unit is $28485 -in.representative_income 28486 Representative total house income in the dwelling unit is $28486 -in.representative_income 28488 Representative total house income in the dwelling unit is $28488 -in.representative_income 28492 Representative total house income in the dwelling unit is $28492 -in.representative_income 28494 Representative total house income in the dwelling unit is $28494 -in.representative_income 28495 Representative total house income in the dwelling unit is $28495 -in.representative_income 28496 Representative total house income in the dwelling unit is $28496 -in.representative_income 28500 Representative total house income in the dwelling unit is $28500 -in.representative_income 28506 Representative total house income in the dwelling unit is $28506 -in.representative_income 28511 Representative total house income in the dwelling unit is $28511 -in.representative_income 28516 Representative total house income in the dwelling unit is $28516 -in.representative_income 28524 Representative total house income in the dwelling unit is $28524 -in.representative_income 28525 Representative total house income in the dwelling unit is $28525 -in.representative_income 28554 Representative total house income in the dwelling unit is $28554 -in.representative_income 28557 Representative total house income in the dwelling unit is $28557 -in.representative_income 28571 Representative total house income in the dwelling unit is $28571 -in.representative_income 28580 Representative total house income in the dwelling unit is $28580 -in.representative_income 28582 Representative total house income in the dwelling unit is $28582 -in.representative_income 28587 Representative total house income in the dwelling unit is $28587 -in.representative_income 28589 Representative total house income in the dwelling unit is $28589 -in.representative_income 28596 Representative total house income in the dwelling unit is $28596 -in.representative_income 28600 Representative total house income in the dwelling unit is $28600 -in.representative_income 28607 Representative total house income in the dwelling unit is $28607 -in.representative_income 28611 Representative total house income in the dwelling unit is $28611 -in.representative_income 28613 Representative total house income in the dwelling unit is $28613 -in.representative_income 28617 Representative total house income in the dwelling unit is $28617 -in.representative_income 28623 Representative total house income in the dwelling unit is $28623 -in.representative_income 28626 Representative total house income in the dwelling unit is $28626 -in.representative_income 28632 Representative total house income in the dwelling unit is $28632 -in.representative_income 28633 Representative total house income in the dwelling unit is $28633 -in.representative_income 28638 Representative total house income in the dwelling unit is $28638 -in.representative_income 28654 Representative total house income in the dwelling unit is $28654 -in.representative_income 28661 Representative total house income in the dwelling unit is $28661 -in.representative_income 28665 Representative total house income in the dwelling unit is $28665 -in.representative_income 28666 Representative total house income in the dwelling unit is $28666 -in.representative_income 28668 Representative total house income in the dwelling unit is $28668 -in.representative_income 28671 Representative total house income in the dwelling unit is $28671 -in.representative_income 28674 Representative total house income in the dwelling unit is $28674 -in.representative_income 28675 Representative total house income in the dwelling unit is $28675 -in.representative_income 28685 Representative total house income in the dwelling unit is $28685 -in.representative_income 28688 Representative total house income in the dwelling unit is $28688 -in.representative_income 28695 Representative total house income in the dwelling unit is $28695 -in.representative_income 28697 Representative total house income in the dwelling unit is $28697 -in.representative_income 28707 Representative total house income in the dwelling unit is $28707 -in.representative_income 28719 Representative total house income in the dwelling unit is $28719 -in.representative_income 28726 Representative total house income in the dwelling unit is $28726 -in.representative_income 28734 Representative total house income in the dwelling unit is $28734 -in.representative_income 28739 Representative total house income in the dwelling unit is $28739 -in.representative_income 28740 Representative total house income in the dwelling unit is $28740 -in.representative_income 28746 Representative total house income in the dwelling unit is $28746 -in.representative_income 28758 Representative total house income in the dwelling unit is $28758 -in.representative_income 28769 Representative total house income in the dwelling unit is $28769 -in.representative_income 28770 Representative total house income in the dwelling unit is $28770 -in.representative_income 28771 Representative total house income in the dwelling unit is $28771 -in.representative_income 28777 Representative total house income in the dwelling unit is $28777 -in.representative_income 28789 Representative total house income in the dwelling unit is $28789 -in.representative_income 28791 Representative total house income in the dwelling unit is $28791 -in.representative_income 28794 Representative total house income in the dwelling unit is $28794 -in.representative_income 28802 Representative total house income in the dwelling unit is $28802 -in.representative_income 28808 Representative total house income in the dwelling unit is $28808 -in.representative_income 28812 Representative total house income in the dwelling unit is $28812 -in.representative_income 28822 Representative total house income in the dwelling unit is $28822 -in.representative_income 28843 Representative total house income in the dwelling unit is $28843 -in.representative_income 28848 Representative total house income in the dwelling unit is $28848 -in.representative_income 28852 Representative total house income in the dwelling unit is $28852 -in.representative_income 28860 Representative total house income in the dwelling unit is $28860 -in.representative_income 28870 Representative total house income in the dwelling unit is $28870 -in.representative_income 28872 Representative total house income in the dwelling unit is $28872 -in.representative_income 28875 Representative total house income in the dwelling unit is $28875 -in.representative_income 28880 Representative total house income in the dwelling unit is $28880 -in.representative_income 28890 Representative total house income in the dwelling unit is $28890 -in.representative_income 28896 Representative total house income in the dwelling unit is $28896 -in.representative_income 28902 Representative total house income in the dwelling unit is $28902 -in.representative_income 28912 Representative total house income in the dwelling unit is $28912 -in.representative_income 28916 Representative total house income in the dwelling unit is $28916 -in.representative_income 28920 Representative total house income in the dwelling unit is $28920 -in.representative_income 28925 Representative total house income in the dwelling unit is $28925 -in.representative_income 28931 Representative total house income in the dwelling unit is $28931 -in.representative_income 28932 Representative total house income in the dwelling unit is $28932 -in.representative_income 28957 Representative total house income in the dwelling unit is $28957 -in.representative_income 28963 Representative total house income in the dwelling unit is $28963 -in.representative_income 28979 Representative total house income in the dwelling unit is $28979 -in.representative_income 28981 Representative total house income in the dwelling unit is $28981 -in.representative_income 28983 Representative total house income in the dwelling unit is $28983 -in.representative_income 28984 Representative total house income in the dwelling unit is $28984 -in.representative_income 28991 Representative total house income in the dwelling unit is $28991 -in.representative_income 28994 Representative total house income in the dwelling unit is $28994 -in.representative_income 29000 Representative total house income in the dwelling unit is $29000 -in.representative_income 29002 Representative total house income in the dwelling unit is $29002 -in.representative_income 29011 Representative total house income in the dwelling unit is $29011 -in.representative_income 29032 Representative total house income in the dwelling unit is $29032 -in.representative_income 29037 Representative total house income in the dwelling unit is $29037 -in.representative_income 29038 Representative total house income in the dwelling unit is $29038 -in.representative_income 29045 Representative total house income in the dwelling unit is $29045 -in.representative_income 29048 Representative total house income in the dwelling unit is $29048 -in.representative_income 29065 Representative total house income in the dwelling unit is $29065 -in.representative_income 29067 Representative total house income in the dwelling unit is $29067 -in.representative_income 29069 Representative total house income in the dwelling unit is $29069 -in.representative_income 29080 Representative total house income in the dwelling unit is $29080 -in.representative_income 29087 Representative total house income in the dwelling unit is $29087 -in.representative_income 29090 Representative total house income in the dwelling unit is $29090 -in.representative_income 29092 Representative total house income in the dwelling unit is $29092 -in.representative_income 29097 Representative total house income in the dwelling unit is $29097 -in.representative_income 29107 Representative total house income in the dwelling unit is $29107 -in.representative_income 29112 Representative total house income in the dwelling unit is $29112 -in.representative_income 29117 Representative total house income in the dwelling unit is $29117 -in.representative_income 29122 Representative total house income in the dwelling unit is $29122 -in.representative_income 29128 Representative total house income in the dwelling unit is $29128 -in.representative_income 29139 Representative total house income in the dwelling unit is $29139 -in.representative_income 29143 Representative total house income in the dwelling unit is $29143 -in.representative_income 29144 Representative total house income in the dwelling unit is $29144 -in.representative_income 29151 Representative total house income in the dwelling unit is $29151 -in.representative_income 29153 Representative total house income in the dwelling unit is $29153 -in.representative_income 29173 Representative total house income in the dwelling unit is $29173 -in.representative_income 29175 Representative total house income in the dwelling unit is $29175 -in.representative_income 29177 Representative total house income in the dwelling unit is $29177 -in.representative_income 29189 Representative total house income in the dwelling unit is $29189 -in.representative_income 29190 Representative total house income in the dwelling unit is $29190 -in.representative_income 29193 Representative total house income in the dwelling unit is $29193 -in.representative_income 29198 Representative total house income in the dwelling unit is $29198 -in.representative_income 29205 Representative total house income in the dwelling unit is $29205 -in.representative_income 29212 Representative total house income in the dwelling unit is $29212 -in.representative_income 29223 Representative total house income in the dwelling unit is $29223 -in.representative_income 29252 Representative total house income in the dwelling unit is $29252 -in.representative_income 29262 Representative total house income in the dwelling unit is $29262 -in.representative_income 29281 Representative total house income in the dwelling unit is $29281 -in.representative_income 29294 Representative total house income in the dwelling unit is $29294 -in.representative_income 29299 Representative total house income in the dwelling unit is $29299 -in.representative_income 29301 Representative total house income in the dwelling unit is $29301 -in.representative_income 29305 Representative total house income in the dwelling unit is $29305 -in.representative_income 29318 Representative total house income in the dwelling unit is $29318 -in.representative_income 29324 Representative total house income in the dwelling unit is $29324 -in.representative_income 29329 Representative total house income in the dwelling unit is $29329 -in.representative_income 29335 Representative total house income in the dwelling unit is $29335 -in.representative_income 29339 Representative total house income in the dwelling unit is $29339 -in.representative_income 29345 Representative total house income in the dwelling unit is $29345 -in.representative_income 29347 Representative total house income in the dwelling unit is $29347 -in.representative_income 29365 Representative total house income in the dwelling unit is $29365 -in.representative_income 29366 Representative total house income in the dwelling unit is $29366 -in.representative_income 29371 Representative total house income in the dwelling unit is $29371 -in.representative_income 29381 Representative total house income in the dwelling unit is $29381 -in.representative_income 29389 Representative total house income in the dwelling unit is $29389 -in.representative_income 29395 Representative total house income in the dwelling unit is $29395 -in.representative_income 29396 Representative total house income in the dwelling unit is $29396 -in.representative_income 29402 Representative total house income in the dwelling unit is $29402 -in.representative_income 29405 Representative total house income in the dwelling unit is $29405 -in.representative_income 29407 Representative total house income in the dwelling unit is $29407 -in.representative_income 29413 Representative total house income in the dwelling unit is $29413 -in.representative_income 29424 Representative total house income in the dwelling unit is $29424 -in.representative_income 29426 Representative total house income in the dwelling unit is $29426 -in.representative_income 29443 Representative total house income in the dwelling unit is $29443 -in.representative_income 29488 Representative total house income in the dwelling unit is $29488 -in.representative_income 29496 Representative total house income in the dwelling unit is $29496 -in.representative_income 29497 Representative total house income in the dwelling unit is $29497 -in.representative_income 29498 Representative total house income in the dwelling unit is $29498 -in.representative_income 29499 Representative total house income in the dwelling unit is $29499 -in.representative_income 29506 Representative total house income in the dwelling unit is $29506 -in.representative_income 29508 Representative total house income in the dwelling unit is $29508 -in.representative_income 29509 Representative total house income in the dwelling unit is $29509 -in.representative_income 29520 Representative total house income in the dwelling unit is $29520 -in.representative_income 29529 Representative total house income in the dwelling unit is $29529 -in.representative_income 29561 Representative total house income in the dwelling unit is $29561 -in.representative_income 29597 Representative total house income in the dwelling unit is $29597 -in.representative_income 29603 Representative total house income in the dwelling unit is $29603 -in.representative_income 29604 Representative total house income in the dwelling unit is $29604 -in.representative_income 29615 Representative total house income in the dwelling unit is $29615 -in.representative_income 29627 Representative total house income in the dwelling unit is $29627 -in.representative_income 29635 Representative total house income in the dwelling unit is $29635 -in.representative_income 29645 Representative total house income in the dwelling unit is $29645 -in.representative_income 29658 Representative total house income in the dwelling unit is $29658 -in.representative_income 29687 Representative total house income in the dwelling unit is $29687 -in.representative_income 29696 Representative total house income in the dwelling unit is $29696 -in.representative_income 29698 Representative total house income in the dwelling unit is $29698 -in.representative_income 29706 Representative total house income in the dwelling unit is $29706 -in.representative_income 29713 Representative total house income in the dwelling unit is $29713 -in.representative_income 29735 Representative total house income in the dwelling unit is $29735 -in.representative_income 29740 Representative total house income in the dwelling unit is $29740 -in.representative_income 29746 Representative total house income in the dwelling unit is $29746 -in.representative_income 29749 Representative total house income in the dwelling unit is $29749 -in.representative_income 29778 Representative total house income in the dwelling unit is $29778 -in.representative_income 29789 Representative total house income in the dwelling unit is $29789 -in.representative_income 29799 Representative total house income in the dwelling unit is $29799 -in.representative_income 29809 Representative total house income in the dwelling unit is $29809 -in.representative_income 29811 Representative total house income in the dwelling unit is $29811 -in.representative_income 29819 Representative total house income in the dwelling unit is $29819 -in.representative_income 29821 Representative total house income in the dwelling unit is $29821 -in.representative_income 29842 Representative total house income in the dwelling unit is $29842 -in.representative_income 29845 Representative total house income in the dwelling unit is $29845 -in.representative_income 29850 Representative total house income in the dwelling unit is $29850 -in.representative_income 29864 Representative total house income in the dwelling unit is $29864 -in.representative_income 29870 Representative total house income in the dwelling unit is $29870 -in.representative_income 29897 Representative total house income in the dwelling unit is $29897 -in.representative_income 29900 Representative total house income in the dwelling unit is $29900 -in.representative_income 29912 Representative total house income in the dwelling unit is $29912 -in.representative_income 29917 Representative total house income in the dwelling unit is $29917 -in.representative_income 29927 Representative total house income in the dwelling unit is $29927 -in.representative_income 29929 Representative total house income in the dwelling unit is $29929 -in.representative_income 29943 Representative total house income in the dwelling unit is $29943 -in.representative_income 29950 Representative total house income in the dwelling unit is $29950 -in.representative_income 29951 Representative total house income in the dwelling unit is $29951 -in.representative_income 29971 Representative total house income in the dwelling unit is $29971 -in.representative_income 29985 Representative total house income in the dwelling unit is $29985 -in.representative_income 30001 Representative total house income in the dwelling unit is $30001 -in.representative_income 30003 Representative total house income in the dwelling unit is $30003 -in.representative_income 30004 Representative total house income in the dwelling unit is $30004 -in.representative_income 30015 Representative total house income in the dwelling unit is $30015 -in.representative_income 30035 Representative total house income in the dwelling unit is $30035 -in.representative_income 30037 Representative total house income in the dwelling unit is $30037 -in.representative_income 30046 Representative total house income in the dwelling unit is $30046 -in.representative_income 30056 Representative total house income in the dwelling unit is $30056 -in.representative_income 30057 Representative total house income in the dwelling unit is $30057 -in.representative_income 30102 Representative total house income in the dwelling unit is $30102 -in.representative_income 30118 Representative total house income in the dwelling unit is $30118 -in.representative_income 30128 Representative total house income in the dwelling unit is $30128 -in.representative_income 30145 Representative total house income in the dwelling unit is $30145 -in.representative_income 30152 Representative total house income in the dwelling unit is $30152 -in.representative_income 30162 Representative total house income in the dwelling unit is $30162 -in.representative_income 30164 Representative total house income in the dwelling unit is $30164 -in.representative_income 30165 Representative total house income in the dwelling unit is $30165 -in.representative_income 30170 Representative total house income in the dwelling unit is $30170 -in.representative_income 30174 Representative total house income in the dwelling unit is $30174 -in.representative_income 30180 Representative total house income in the dwelling unit is $30180 -in.representative_income 30185 Representative total house income in the dwelling unit is $30185 -in.representative_income 30191 Representative total house income in the dwelling unit is $30191 -in.representative_income 30203 Representative total house income in the dwelling unit is $30203 -in.representative_income 30218 Representative total house income in the dwelling unit is $30218 -in.representative_income 30222 Representative total house income in the dwelling unit is $30222 -in.representative_income 30250 Representative total house income in the dwelling unit is $30250 -in.representative_income 30253 Representative total house income in the dwelling unit is $30253 -in.representative_income 30267 Representative total house income in the dwelling unit is $30267 -in.representative_income 30271 Representative total house income in the dwelling unit is $30271 -in.representative_income 30272 Representative total house income in the dwelling unit is $30272 -in.representative_income 30276 Representative total house income in the dwelling unit is $30276 -in.representative_income 30296 Representative total house income in the dwelling unit is $30296 -in.representative_income 30304 Representative total house income in the dwelling unit is $30304 -in.representative_income 30307 Representative total house income in the dwelling unit is $30307 -in.representative_income 30308 Representative total house income in the dwelling unit is $30308 -in.representative_income 30314 Representative total house income in the dwelling unit is $30314 -in.representative_income 30318 Representative total house income in the dwelling unit is $30318 -in.representative_income 30325 Representative total house income in the dwelling unit is $30325 -in.representative_income 30335 Representative total house income in the dwelling unit is $30335 -in.representative_income 30341 Representative total house income in the dwelling unit is $30341 -in.representative_income 30345 Representative total house income in the dwelling unit is $30345 -in.representative_income 30355 Representative total house income in the dwelling unit is $30355 -in.representative_income 30361 Representative total house income in the dwelling unit is $30361 -in.representative_income 30368 Representative total house income in the dwelling unit is $30368 -in.representative_income 30373 Representative total house income in the dwelling unit is $30373 -in.representative_income 30379 Representative total house income in the dwelling unit is $30379 -in.representative_income 30383 Representative total house income in the dwelling unit is $30383 -in.representative_income 30389 Representative total house income in the dwelling unit is $30389 -in.representative_income 30393 Representative total house income in the dwelling unit is $30393 -in.representative_income 30395 Representative total house income in the dwelling unit is $30395 -in.representative_income 30400 Representative total house income in the dwelling unit is $30400 -in.representative_income 30404 Representative total house income in the dwelling unit is $30404 -in.representative_income 30405 Representative total house income in the dwelling unit is $30405 -in.representative_income 30411 Representative total house income in the dwelling unit is $30411 -in.representative_income 30422 Representative total house income in the dwelling unit is $30422 -in.representative_income 30426 Representative total house income in the dwelling unit is $30426 -in.representative_income 30427 Representative total house income in the dwelling unit is $30427 -in.representative_income 30429 Representative total house income in the dwelling unit is $30429 -in.representative_income 30444 Representative total house income in the dwelling unit is $30444 -in.representative_income 30446 Representative total house income in the dwelling unit is $30446 -in.representative_income 30466 Representative total house income in the dwelling unit is $30466 -in.representative_income 30467 Representative total house income in the dwelling unit is $30467 -in.representative_income 30469 Representative total house income in the dwelling unit is $30469 -in.representative_income 30476 Representative total house income in the dwelling unit is $30476 -in.representative_income 30478 Representative total house income in the dwelling unit is $30478 -in.representative_income 30486 Representative total house income in the dwelling unit is $30486 -in.representative_income 30491 Representative total house income in the dwelling unit is $30491 -in.representative_income 30499 Representative total house income in the dwelling unit is $30499 -in.representative_income 30506 Representative total house income in the dwelling unit is $30506 -in.representative_income 30513 Representative total house income in the dwelling unit is $30513 -in.representative_income 30521 Representative total house income in the dwelling unit is $30521 -in.representative_income 30531 Representative total house income in the dwelling unit is $30531 -in.representative_income 30539 Representative total house income in the dwelling unit is $30539 -in.representative_income 30552 Representative total house income in the dwelling unit is $30552 -in.representative_income 30557 Representative total house income in the dwelling unit is $30557 -in.representative_income 30566 Representative total house income in the dwelling unit is $30566 -in.representative_income 30578 Representative total house income in the dwelling unit is $30578 -in.representative_income 30583 Representative total house income in the dwelling unit is $30583 -in.representative_income 30588 Representative total house income in the dwelling unit is $30588 -in.representative_income 30593 Representative total house income in the dwelling unit is $30593 -in.representative_income 30597 Representative total house income in the dwelling unit is $30597 -in.representative_income 30604 Representative total house income in the dwelling unit is $30604 -in.representative_income 30607 Representative total house income in the dwelling unit is $30607 -in.representative_income 30617 Representative total house income in the dwelling unit is $30617 -in.representative_income 30626 Representative total house income in the dwelling unit is $30626 -in.representative_income 30632 Representative total house income in the dwelling unit is $30632 -in.representative_income 30634 Representative total house income in the dwelling unit is $30634 -in.representative_income 30636 Representative total house income in the dwelling unit is $30636 -in.representative_income 30638 Representative total house income in the dwelling unit is $30638 -in.representative_income 30642 Representative total house income in the dwelling unit is $30642 -in.representative_income 30647 Representative total house income in the dwelling unit is $30647 -in.representative_income 30648 Representative total house income in the dwelling unit is $30648 -in.representative_income 30658 Representative total house income in the dwelling unit is $30658 -in.representative_income 30668 Representative total house income in the dwelling unit is $30668 -in.representative_income 30676 Representative total house income in the dwelling unit is $30676 -in.representative_income 30686 Representative total house income in the dwelling unit is $30686 -in.representative_income 30688 Representative total house income in the dwelling unit is $30688 -in.representative_income 30689 Representative total house income in the dwelling unit is $30689 -in.representative_income 30698 Representative total house income in the dwelling unit is $30698 -in.representative_income 30700 Representative total house income in the dwelling unit is $30700 -in.representative_income 30701 Representative total house income in the dwelling unit is $30701 -in.representative_income 30705 Representative total house income in the dwelling unit is $30705 -in.representative_income 30708 Representative total house income in the dwelling unit is $30708 -in.representative_income 30710 Representative total house income in the dwelling unit is $30710 -in.representative_income 30729 Representative total house income in the dwelling unit is $30729 -in.representative_income 30732 Representative total house income in the dwelling unit is $30732 -in.representative_income 30737 Representative total house income in the dwelling unit is $30737 -in.representative_income 30755 Representative total house income in the dwelling unit is $30755 -in.representative_income 30764 Representative total house income in the dwelling unit is $30764 -in.representative_income 30765 Representative total house income in the dwelling unit is $30765 -in.representative_income 30767 Representative total house income in the dwelling unit is $30767 -in.representative_income 30769 Representative total house income in the dwelling unit is $30769 -in.representative_income 30779 Representative total house income in the dwelling unit is $30779 -in.representative_income 30789 Representative total house income in the dwelling unit is $30789 -in.representative_income 30792 Representative total house income in the dwelling unit is $30792 -in.representative_income 30794 Representative total house income in the dwelling unit is $30794 -in.representative_income 30795 Representative total house income in the dwelling unit is $30795 -in.representative_income 30808 Representative total house income in the dwelling unit is $30808 -in.representative_income 30809 Representative total house income in the dwelling unit is $30809 -in.representative_income 30812 Representative total house income in the dwelling unit is $30812 -in.representative_income 30820 Representative total house income in the dwelling unit is $30820 -in.representative_income 30826 Representative total house income in the dwelling unit is $30826 -in.representative_income 30829 Representative total house income in the dwelling unit is $30829 -in.representative_income 30840 Representative total house income in the dwelling unit is $30840 -in.representative_income 30841 Representative total house income in the dwelling unit is $30841 -in.representative_income 30847 Representative total house income in the dwelling unit is $30847 -in.representative_income 30851 Representative total house income in the dwelling unit is $30851 -in.representative_income 30858 Representative total house income in the dwelling unit is $30858 -in.representative_income 30885 Representative total house income in the dwelling unit is $30885 -in.representative_income 30900 Representative total house income in the dwelling unit is $30900 -in.representative_income 30901 Representative total house income in the dwelling unit is $30901 -in.representative_income 30910 Representative total house income in the dwelling unit is $30910 -in.representative_income 30916 Representative total house income in the dwelling unit is $30916 -in.representative_income 30917 Representative total house income in the dwelling unit is $30917 -in.representative_income 30923 Representative total house income in the dwelling unit is $30923 -in.representative_income 30933 Representative total house income in the dwelling unit is $30933 -in.representative_income 30944 Representative total house income in the dwelling unit is $30944 -in.representative_income 30945 Representative total house income in the dwelling unit is $30945 -in.representative_income 30951 Representative total house income in the dwelling unit is $30951 -in.representative_income 30952 Representative total house income in the dwelling unit is $30952 -in.representative_income 30961 Representative total house income in the dwelling unit is $30961 -in.representative_income 30962 Representative total house income in the dwelling unit is $30962 -in.representative_income 30964 Representative total house income in the dwelling unit is $30964 -in.representative_income 30969 Representative total house income in the dwelling unit is $30969 -in.representative_income 30971 Representative total house income in the dwelling unit is $30971 -in.representative_income 30978 Representative total house income in the dwelling unit is $30978 -in.representative_income 30979 Representative total house income in the dwelling unit is $30979 -in.representative_income 30984 Representative total house income in the dwelling unit is $30984 -in.representative_income 31001 Representative total house income in the dwelling unit is $31001 -in.representative_income 31005 Representative total house income in the dwelling unit is $31005 -in.representative_income 31009 Representative total house income in the dwelling unit is $31009 -in.representative_income 31011 Representative total house income in the dwelling unit is $31011 -in.representative_income 31012 Representative total house income in the dwelling unit is $31012 -in.representative_income 31016 Representative total house income in the dwelling unit is $31016 -in.representative_income 31017 Representative total house income in the dwelling unit is $31017 -in.representative_income 31023 Representative total house income in the dwelling unit is $31023 -in.representative_income 31028 Representative total house income in the dwelling unit is $31028 -in.representative_income 31031 Representative total house income in the dwelling unit is $31031 -in.representative_income 31034 Representative total house income in the dwelling unit is $31034 -in.representative_income 31036 Representative total house income in the dwelling unit is $31036 -in.representative_income 31044 Representative total house income in the dwelling unit is $31044 -in.representative_income 31046 Representative total house income in the dwelling unit is $31046 -in.representative_income 31058 Representative total house income in the dwelling unit is $31058 -in.representative_income 31068 Representative total house income in the dwelling unit is $31068 -in.representative_income 31070 Representative total house income in the dwelling unit is $31070 -in.representative_income 31072 Representative total house income in the dwelling unit is $31072 -in.representative_income 31076 Representative total house income in the dwelling unit is $31076 -in.representative_income 31078 Representative total house income in the dwelling unit is $31078 -in.representative_income 31079 Representative total house income in the dwelling unit is $31079 -in.representative_income 31087 Representative total house income in the dwelling unit is $31087 -in.representative_income 31088 Representative total house income in the dwelling unit is $31088 -in.representative_income 31111 Representative total house income in the dwelling unit is $31111 -in.representative_income 31112 Representative total house income in the dwelling unit is $31112 -in.representative_income 31117 Representative total house income in the dwelling unit is $31117 -in.representative_income 31118 Representative total house income in the dwelling unit is $31118 -in.representative_income 31121 Representative total house income in the dwelling unit is $31121 -in.representative_income 31123 Representative total house income in the dwelling unit is $31123 -in.representative_income 31128 Representative total house income in the dwelling unit is $31128 -in.representative_income 31129 Representative total house income in the dwelling unit is $31129 -in.representative_income 31130 Representative total house income in the dwelling unit is $31130 -in.representative_income 31131 Representative total house income in the dwelling unit is $31131 -in.representative_income 31140 Representative total house income in the dwelling unit is $31140 -in.representative_income 31148 Representative total house income in the dwelling unit is $31148 -in.representative_income 31150 Representative total house income in the dwelling unit is $31150 -in.representative_income 31152 Representative total house income in the dwelling unit is $31152 -in.representative_income 31160 Representative total house income in the dwelling unit is $31160 -in.representative_income 31163 Representative total house income in the dwelling unit is $31163 -in.representative_income 31164 Representative total house income in the dwelling unit is $31164 -in.representative_income 31169 Representative total house income in the dwelling unit is $31169 -in.representative_income 31171 Representative total house income in the dwelling unit is $31171 -in.representative_income 31174 Representative total house income in the dwelling unit is $31174 -in.representative_income 31183 Representative total house income in the dwelling unit is $31183 -in.representative_income 31185 Representative total house income in the dwelling unit is $31185 -in.representative_income 31193 Representative total house income in the dwelling unit is $31193 -in.representative_income 31195 Representative total house income in the dwelling unit is $31195 -in.representative_income 31205 Representative total house income in the dwelling unit is $31205 -in.representative_income 31211 Representative total house income in the dwelling unit is $31211 -in.representative_income 31213 Representative total house income in the dwelling unit is $31213 -in.representative_income 31216 Representative total house income in the dwelling unit is $31216 -in.representative_income 31225 Representative total house income in the dwelling unit is $31225 -in.representative_income 31226 Representative total house income in the dwelling unit is $31226 -in.representative_income 31227 Representative total house income in the dwelling unit is $31227 -in.representative_income 31228 Representative total house income in the dwelling unit is $31228 -in.representative_income 31234 Representative total house income in the dwelling unit is $31234 -in.representative_income 31237 Representative total house income in the dwelling unit is $31237 -in.representative_income 31239 Representative total house income in the dwelling unit is $31239 -in.representative_income 31241 Representative total house income in the dwelling unit is $31241 -in.representative_income 31247 Representative total house income in the dwelling unit is $31247 -in.representative_income 31253 Representative total house income in the dwelling unit is $31253 -in.representative_income 31264 Representative total house income in the dwelling unit is $31264 -in.representative_income 31269 Representative total house income in the dwelling unit is $31269 -in.representative_income 31273 Representative total house income in the dwelling unit is $31273 -in.representative_income 31274 Representative total house income in the dwelling unit is $31274 -in.representative_income 31275 Representative total house income in the dwelling unit is $31275 -in.representative_income 31277 Representative total house income in the dwelling unit is $31277 -in.representative_income 31281 Representative total house income in the dwelling unit is $31281 -in.representative_income 31291 Representative total house income in the dwelling unit is $31291 -in.representative_income 31299 Representative total house income in the dwelling unit is $31299 -in.representative_income 31314 Representative total house income in the dwelling unit is $31314 -in.representative_income 31315 Representative total house income in the dwelling unit is $31315 -in.representative_income 31322 Representative total house income in the dwelling unit is $31322 -in.representative_income 31323 Representative total house income in the dwelling unit is $31323 -in.representative_income 31324 Representative total house income in the dwelling unit is $31324 -in.representative_income 31325 Representative total house income in the dwelling unit is $31325 -in.representative_income 31328 Representative total house income in the dwelling unit is $31328 -in.representative_income 31330 Representative total house income in the dwelling unit is $31330 -in.representative_income 31334 Representative total house income in the dwelling unit is $31334 -in.representative_income 31343 Representative total house income in the dwelling unit is $31343 -in.representative_income 31345 Representative total house income in the dwelling unit is $31345 -in.representative_income 31353 Representative total house income in the dwelling unit is $31353 -in.representative_income 31355 Representative total house income in the dwelling unit is $31355 -in.representative_income 31356 Representative total house income in the dwelling unit is $31356 -in.representative_income 31364 Representative total house income in the dwelling unit is $31364 -in.representative_income 31365 Representative total house income in the dwelling unit is $31365 -in.representative_income 31366 Representative total house income in the dwelling unit is $31366 -in.representative_income 31369 Representative total house income in the dwelling unit is $31369 -in.representative_income 31374 Representative total house income in the dwelling unit is $31374 -in.representative_income 31377 Representative total house income in the dwelling unit is $31377 -in.representative_income 31385 Representative total house income in the dwelling unit is $31385 -in.representative_income 31395 Representative total house income in the dwelling unit is $31395 -in.representative_income 31398 Representative total house income in the dwelling unit is $31398 -in.representative_income 31405 Representative total house income in the dwelling unit is $31405 -in.representative_income 31408 Representative total house income in the dwelling unit is $31408 -in.representative_income 31416 Representative total house income in the dwelling unit is $31416 -in.representative_income 31420 Representative total house income in the dwelling unit is $31420 -in.representative_income 31428 Representative total house income in the dwelling unit is $31428 -in.representative_income 31431 Representative total house income in the dwelling unit is $31431 -in.representative_income 31433 Representative total house income in the dwelling unit is $31433 -in.representative_income 31436 Representative total house income in the dwelling unit is $31436 -in.representative_income 31438 Representative total house income in the dwelling unit is $31438 -in.representative_income 31442 Representative total house income in the dwelling unit is $31442 -in.representative_income 31443 Representative total house income in the dwelling unit is $31443 -in.representative_income 31446 Representative total house income in the dwelling unit is $31446 -in.representative_income 31451 Representative total house income in the dwelling unit is $31451 -in.representative_income 31452 Representative total house income in the dwelling unit is $31452 -in.representative_income 31456 Representative total house income in the dwelling unit is $31456 -in.representative_income 31460 Representative total house income in the dwelling unit is $31460 -in.representative_income 31463 Representative total house income in the dwelling unit is $31463 -in.representative_income 31474 Representative total house income in the dwelling unit is $31474 -in.representative_income 31476 Representative total house income in the dwelling unit is $31476 -in.representative_income 31480 Representative total house income in the dwelling unit is $31480 -in.representative_income 31484 Representative total house income in the dwelling unit is $31484 -in.representative_income 31490 Representative total house income in the dwelling unit is $31490 -in.representative_income 31495 Representative total house income in the dwelling unit is $31495 -in.representative_income 31496 Representative total house income in the dwelling unit is $31496 -in.representative_income 31500 Representative total house income in the dwelling unit is $31500 -in.representative_income 31505 Representative total house income in the dwelling unit is $31505 -in.representative_income 31507 Representative total house income in the dwelling unit is $31507 -in.representative_income 31516 Representative total house income in the dwelling unit is $31516 -in.representative_income 31517 Representative total house income in the dwelling unit is $31517 -in.representative_income 31526 Representative total house income in the dwelling unit is $31526 -in.representative_income 31527 Representative total house income in the dwelling unit is $31527 -in.representative_income 31533 Representative total house income in the dwelling unit is $31533 -in.representative_income 31538 Representative total house income in the dwelling unit is $31538 -in.representative_income 31545 Representative total house income in the dwelling unit is $31545 -in.representative_income 31550 Representative total house income in the dwelling unit is $31550 -in.representative_income 31560 Representative total house income in the dwelling unit is $31560 -in.representative_income 31561 Representative total house income in the dwelling unit is $31561 -in.representative_income 31562 Representative total house income in the dwelling unit is $31562 -in.representative_income 31567 Representative total house income in the dwelling unit is $31567 -in.representative_income 31571 Representative total house income in the dwelling unit is $31571 -in.representative_income 31573 Representative total house income in the dwelling unit is $31573 -in.representative_income 31574 Representative total house income in the dwelling unit is $31574 -in.representative_income 31583 Representative total house income in the dwelling unit is $31583 -in.representative_income 31587 Representative total house income in the dwelling unit is $31587 -in.representative_income 31593 Representative total house income in the dwelling unit is $31593 -in.representative_income 31604 Representative total house income in the dwelling unit is $31604 -in.representative_income 31612 Representative total house income in the dwelling unit is $31612 -in.representative_income 31613 Representative total house income in the dwelling unit is $31613 -in.representative_income 31614 Representative total house income in the dwelling unit is $31614 -in.representative_income 31615 Representative total house income in the dwelling unit is $31615 -in.representative_income 31617 Representative total house income in the dwelling unit is $31617 -in.representative_income 31618 Representative total house income in the dwelling unit is $31618 -in.representative_income 31624 Representative total house income in the dwelling unit is $31624 -in.representative_income 31628 Representative total house income in the dwelling unit is $31628 -in.representative_income 31636 Representative total house income in the dwelling unit is $31636 -in.representative_income 31638 Representative total house income in the dwelling unit is $31638 -in.representative_income 31645 Representative total house income in the dwelling unit is $31645 -in.representative_income 31648 Representative total house income in the dwelling unit is $31648 -in.representative_income 31649 Representative total house income in the dwelling unit is $31649 -in.representative_income 31652 Representative total house income in the dwelling unit is $31652 -in.representative_income 31654 Representative total house income in the dwelling unit is $31654 -in.representative_income 31655 Representative total house income in the dwelling unit is $31655 -in.representative_income 31658 Representative total house income in the dwelling unit is $31658 -in.representative_income 31659 Representative total house income in the dwelling unit is $31659 -in.representative_income 31662 Representative total house income in the dwelling unit is $31662 -in.representative_income 31665 Representative total house income in the dwelling unit is $31665 -in.representative_income 31666 Representative total house income in the dwelling unit is $31666 -in.representative_income 31668 Representative total house income in the dwelling unit is $31668 -in.representative_income 31669 Representative total house income in the dwelling unit is $31669 -in.representative_income 31678 Representative total house income in the dwelling unit is $31678 -in.representative_income 31679 Representative total house income in the dwelling unit is $31679 -in.representative_income 31681 Representative total house income in the dwelling unit is $31681 -in.representative_income 31689 Representative total house income in the dwelling unit is $31689 -in.representative_income 31690 Representative total house income in the dwelling unit is $31690 -in.representative_income 31691 Representative total house income in the dwelling unit is $31691 -in.representative_income 31695 Representative total house income in the dwelling unit is $31695 -in.representative_income 31698 Representative total house income in the dwelling unit is $31698 -in.representative_income 31703 Representative total house income in the dwelling unit is $31703 -in.representative_income 31705 Representative total house income in the dwelling unit is $31705 -in.representative_income 31710 Representative total house income in the dwelling unit is $31710 -in.representative_income 31713 Representative total house income in the dwelling unit is $31713 -in.representative_income 31716 Representative total house income in the dwelling unit is $31716 -in.representative_income 31717 Representative total house income in the dwelling unit is $31717 -in.representative_income 31719 Representative total house income in the dwelling unit is $31719 -in.representative_income 31720 Representative total house income in the dwelling unit is $31720 -in.representative_income 31723 Representative total house income in the dwelling unit is $31723 -in.representative_income 31727 Representative total house income in the dwelling unit is $31727 -in.representative_income 31728 Representative total house income in the dwelling unit is $31728 -in.representative_income 31731 Representative total house income in the dwelling unit is $31731 -in.representative_income 31733 Representative total house income in the dwelling unit is $31733 -in.representative_income 31742 Representative total house income in the dwelling unit is $31742 -in.representative_income 31743 Representative total house income in the dwelling unit is $31743 -in.representative_income 31744 Representative total house income in the dwelling unit is $31744 -in.representative_income 31754 Representative total house income in the dwelling unit is $31754 -in.representative_income 31755 Representative total house income in the dwelling unit is $31755 -in.representative_income 31756 Representative total house income in the dwelling unit is $31756 -in.representative_income 31759 Representative total house income in the dwelling unit is $31759 -in.representative_income 31760 Representative total house income in the dwelling unit is $31760 -in.representative_income 31764 Representative total house income in the dwelling unit is $31764 -in.representative_income 31766 Representative total house income in the dwelling unit is $31766 -in.representative_income 31767 Representative total house income in the dwelling unit is $31767 -in.representative_income 31769 Representative total house income in the dwelling unit is $31769 -in.representative_income 31770 Representative total house income in the dwelling unit is $31770 -in.representative_income 31774 Representative total house income in the dwelling unit is $31774 -in.representative_income 31776 Representative total house income in the dwelling unit is $31776 -in.representative_income 31777 Representative total house income in the dwelling unit is $31777 -in.representative_income 31779 Representative total house income in the dwelling unit is $31779 -in.representative_income 31784 Representative total house income in the dwelling unit is $31784 -in.representative_income 31786 Representative total house income in the dwelling unit is $31786 -in.representative_income 31789 Representative total house income in the dwelling unit is $31789 -in.representative_income 31794 Representative total house income in the dwelling unit is $31794 -in.representative_income 31795 Representative total house income in the dwelling unit is $31795 -in.representative_income 31797 Representative total house income in the dwelling unit is $31797 -in.representative_income 31799 Representative total house income in the dwelling unit is $31799 -in.representative_income 31802 Representative total house income in the dwelling unit is $31802 -in.representative_income 31807 Representative total house income in the dwelling unit is $31807 -in.representative_income 31809 Representative total house income in the dwelling unit is $31809 -in.representative_income 31810 Representative total house income in the dwelling unit is $31810 -in.representative_income 31813 Representative total house income in the dwelling unit is $31813 -in.representative_income 31817 Representative total house income in the dwelling unit is $31817 -in.representative_income 31820 Representative total house income in the dwelling unit is $31820 -in.representative_income 31825 Representative total house income in the dwelling unit is $31825 -in.representative_income 31828 Representative total house income in the dwelling unit is $31828 -in.representative_income 31840 Representative total house income in the dwelling unit is $31840 -in.representative_income 31841 Representative total house income in the dwelling unit is $31841 -in.representative_income 31849 Representative total house income in the dwelling unit is $31849 -in.representative_income 31850 Representative total house income in the dwelling unit is $31850 -in.representative_income 31859 Representative total house income in the dwelling unit is $31859 -in.representative_income 31860 Representative total house income in the dwelling unit is $31860 -in.representative_income 31862 Representative total house income in the dwelling unit is $31862 -in.representative_income 31863 Representative total house income in the dwelling unit is $31863 -in.representative_income 31871 Representative total house income in the dwelling unit is $31871 -in.representative_income 31872 Representative total house income in the dwelling unit is $31872 -in.representative_income 31874 Representative total house income in the dwelling unit is $31874 -in.representative_income 31875 Representative total house income in the dwelling unit is $31875 -in.representative_income 31878 Representative total house income in the dwelling unit is $31878 -in.representative_income 31880 Representative total house income in the dwelling unit is $31880 -in.representative_income 31881 Representative total house income in the dwelling unit is $31881 -in.representative_income 31882 Representative total house income in the dwelling unit is $31882 -in.representative_income 31884 Representative total house income in the dwelling unit is $31884 -in.representative_income 31891 Representative total house income in the dwelling unit is $31891 -in.representative_income 31892 Representative total house income in the dwelling unit is $31892 -in.representative_income 31897 Representative total house income in the dwelling unit is $31897 -in.representative_income 31898 Representative total house income in the dwelling unit is $31898 -in.representative_income 31903 Representative total house income in the dwelling unit is $31903 -in.representative_income 31905 Representative total house income in the dwelling unit is $31905 -in.representative_income 31906 Representative total house income in the dwelling unit is $31906 -in.representative_income 31910 Representative total house income in the dwelling unit is $31910 -in.representative_income 31912 Representative total house income in the dwelling unit is $31912 -in.representative_income 31917 Representative total house income in the dwelling unit is $31917 -in.representative_income 31921 Representative total house income in the dwelling unit is $31921 -in.representative_income 31923 Representative total house income in the dwelling unit is $31923 -in.representative_income 31924 Representative total house income in the dwelling unit is $31924 -in.representative_income 31928 Representative total house income in the dwelling unit is $31928 -in.representative_income 31931 Representative total house income in the dwelling unit is $31931 -in.representative_income 31933 Representative total house income in the dwelling unit is $31933 -in.representative_income 31934 Representative total house income in the dwelling unit is $31934 -in.representative_income 31936 Representative total house income in the dwelling unit is $31936 -in.representative_income 31938 Representative total house income in the dwelling unit is $31938 -in.representative_income 31944 Representative total house income in the dwelling unit is $31944 -in.representative_income 31951 Representative total house income in the dwelling unit is $31951 -in.representative_income 31955 Representative total house income in the dwelling unit is $31955 -in.representative_income 31965 Representative total house income in the dwelling unit is $31965 -in.representative_income 31968 Representative total house income in the dwelling unit is $31968 -in.representative_income 31971 Representative total house income in the dwelling unit is $31971 -in.representative_income 31975 Representative total house income in the dwelling unit is $31975 -in.representative_income 31981 Representative total house income in the dwelling unit is $31981 -in.representative_income 31982 Representative total house income in the dwelling unit is $31982 -in.representative_income 31983 Representative total house income in the dwelling unit is $31983 -in.representative_income 31985 Representative total house income in the dwelling unit is $31985 -in.representative_income 31986 Representative total house income in the dwelling unit is $31986 -in.representative_income 31989 Representative total house income in the dwelling unit is $31989 -in.representative_income 31990 Representative total house income in the dwelling unit is $31990 -in.representative_income 31992 Representative total house income in the dwelling unit is $31992 -in.representative_income 31993 Representative total house income in the dwelling unit is $31993 -in.representative_income 31996 Representative total house income in the dwelling unit is $31996 -in.representative_income 31997 Representative total house income in the dwelling unit is $31997 -in.representative_income 32000 Representative total house income in the dwelling unit is $32000 -in.representative_income 32001 Representative total house income in the dwelling unit is $32001 -in.representative_income 32003 Representative total house income in the dwelling unit is $32003 -in.representative_income 32007 Representative total house income in the dwelling unit is $32007 -in.representative_income 32014 Representative total house income in the dwelling unit is $32014 -in.representative_income 32016 Representative total house income in the dwelling unit is $32016 -in.representative_income 32022 Representative total house income in the dwelling unit is $32022 -in.representative_income 32025 Representative total house income in the dwelling unit is $32025 -in.representative_income 32027 Representative total house income in the dwelling unit is $32027 -in.representative_income 32031 Representative total house income in the dwelling unit is $32031 -in.representative_income 32032 Representative total house income in the dwelling unit is $32032 -in.representative_income 32035 Representative total house income in the dwelling unit is $32035 -in.representative_income 32037 Representative total house income in the dwelling unit is $32037 -in.representative_income 32039 Representative total house income in the dwelling unit is $32039 -in.representative_income 32042 Representative total house income in the dwelling unit is $32042 -in.representative_income 32050 Representative total house income in the dwelling unit is $32050 -in.representative_income 32057 Representative total house income in the dwelling unit is $32057 -in.representative_income 32060 Representative total house income in the dwelling unit is $32060 -in.representative_income 32071 Representative total house income in the dwelling unit is $32071 -in.representative_income 32072 Representative total house income in the dwelling unit is $32072 -in.representative_income 32075 Representative total house income in the dwelling unit is $32075 -in.representative_income 32078 Representative total house income in the dwelling unit is $32078 -in.representative_income 32079 Representative total house income in the dwelling unit is $32079 -in.representative_income 32082 Representative total house income in the dwelling unit is $32082 -in.representative_income 32086 Representative total house income in the dwelling unit is $32086 -in.representative_income 32090 Representative total house income in the dwelling unit is $32090 -in.representative_income 32092 Representative total house income in the dwelling unit is $32092 -in.representative_income 32095 Representative total house income in the dwelling unit is $32095 -in.representative_income 32096 Representative total house income in the dwelling unit is $32096 -in.representative_income 32099 Representative total house income in the dwelling unit is $32099 -in.representative_income 32101 Representative total house income in the dwelling unit is $32101 -in.representative_income 32102 Representative total house income in the dwelling unit is $32102 -in.representative_income 32106 Representative total house income in the dwelling unit is $32106 -in.representative_income 32109 Representative total house income in the dwelling unit is $32109 -in.representative_income 32112 Representative total house income in the dwelling unit is $32112 -in.representative_income 32113 Representative total house income in the dwelling unit is $32113 -in.representative_income 32117 Representative total house income in the dwelling unit is $32117 -in.representative_income 32119 Representative total house income in the dwelling unit is $32119 -in.representative_income 32122 Representative total house income in the dwelling unit is $32122 -in.representative_income 32123 Representative total house income in the dwelling unit is $32123 -in.representative_income 32129 Representative total house income in the dwelling unit is $32129 -in.representative_income 32133 Representative total house income in the dwelling unit is $32133 -in.representative_income 32134 Representative total house income in the dwelling unit is $32134 -in.representative_income 32141 Representative total house income in the dwelling unit is $32141 -in.representative_income 32143 Representative total house income in the dwelling unit is $32143 -in.representative_income 32147 Representative total house income in the dwelling unit is $32147 -in.representative_income 32148 Representative total house income in the dwelling unit is $32148 -in.representative_income 32150 Representative total house income in the dwelling unit is $32150 -in.representative_income 32153 Representative total house income in the dwelling unit is $32153 -in.representative_income 32155 Representative total house income in the dwelling unit is $32155 -in.representative_income 32161 Representative total house income in the dwelling unit is $32161 -in.representative_income 32163 Representative total house income in the dwelling unit is $32163 -in.representative_income 32165 Representative total house income in the dwelling unit is $32165 -in.representative_income 32166 Representative total house income in the dwelling unit is $32166 -in.representative_income 32174 Representative total house income in the dwelling unit is $32174 -in.representative_income 32180 Representative total house income in the dwelling unit is $32180 -in.representative_income 32181 Representative total house income in the dwelling unit is $32181 -in.representative_income 32185 Representative total house income in the dwelling unit is $32185 -in.representative_income 32186 Representative total house income in the dwelling unit is $32186 -in.representative_income 32191 Representative total house income in the dwelling unit is $32191 -in.representative_income 32192 Representative total house income in the dwelling unit is $32192 -in.representative_income 32195 Representative total house income in the dwelling unit is $32195 -in.representative_income 32197 Representative total house income in the dwelling unit is $32197 -in.representative_income 32198 Representative total house income in the dwelling unit is $32198 -in.representative_income 32202 Representative total house income in the dwelling unit is $32202 -in.representative_income 32204 Representative total house income in the dwelling unit is $32204 -in.representative_income 32205 Representative total house income in the dwelling unit is $32205 -in.representative_income 32207 Representative total house income in the dwelling unit is $32207 -in.representative_income 32208 Representative total house income in the dwelling unit is $32208 -in.representative_income 32214 Representative total house income in the dwelling unit is $32214 -in.representative_income 32215 Representative total house income in the dwelling unit is $32215 -in.representative_income 32219 Representative total house income in the dwelling unit is $32219 -in.representative_income 32224 Representative total house income in the dwelling unit is $32224 -in.representative_income 32225 Representative total house income in the dwelling unit is $32225 -in.representative_income 32231 Representative total house income in the dwelling unit is $32231 -in.representative_income 32233 Representative total house income in the dwelling unit is $32233 -in.representative_income 32236 Representative total house income in the dwelling unit is $32236 -in.representative_income 32237 Representative total house income in the dwelling unit is $32237 -in.representative_income 32240 Representative total house income in the dwelling unit is $32240 -in.representative_income 32242 Representative total house income in the dwelling unit is $32242 -in.representative_income 32243 Representative total house income in the dwelling unit is $32243 -in.representative_income 32246 Representative total house income in the dwelling unit is $32246 -in.representative_income 32247 Representative total house income in the dwelling unit is $32247 -in.representative_income 32250 Representative total house income in the dwelling unit is $32250 -in.representative_income 32252 Representative total house income in the dwelling unit is $32252 -in.representative_income 32253 Representative total house income in the dwelling unit is $32253 -in.representative_income 32254 Representative total house income in the dwelling unit is $32254 -in.representative_income 32255 Representative total house income in the dwelling unit is $32255 -in.representative_income 32257 Representative total house income in the dwelling unit is $32257 -in.representative_income 32260 Representative total house income in the dwelling unit is $32260 -in.representative_income 32263 Representative total house income in the dwelling unit is $32263 -in.representative_income 32264 Representative total house income in the dwelling unit is $32264 -in.representative_income 32271 Representative total house income in the dwelling unit is $32271 -in.representative_income 32274 Representative total house income in the dwelling unit is $32274 -in.representative_income 32281 Representative total house income in the dwelling unit is $32281 -in.representative_income 32284 Representative total house income in the dwelling unit is $32284 -in.representative_income 32289 Representative total house income in the dwelling unit is $32289 -in.representative_income 32294 Representative total house income in the dwelling unit is $32294 -in.representative_income 32302 Representative total house income in the dwelling unit is $32302 -in.representative_income 32304 Representative total house income in the dwelling unit is $32304 -in.representative_income 32305 Representative total house income in the dwelling unit is $32305 -in.representative_income 32306 Representative total house income in the dwelling unit is $32306 -in.representative_income 32309 Representative total house income in the dwelling unit is $32309 -in.representative_income 32310 Representative total house income in the dwelling unit is $32310 -in.representative_income 32321 Representative total house income in the dwelling unit is $32321 -in.representative_income 32324 Representative total house income in the dwelling unit is $32324 -in.representative_income 32325 Representative total house income in the dwelling unit is $32325 -in.representative_income 32326 Representative total house income in the dwelling unit is $32326 -in.representative_income 32329 Representative total house income in the dwelling unit is $32329 -in.representative_income 32334 Representative total house income in the dwelling unit is $32334 -in.representative_income 32335 Representative total house income in the dwelling unit is $32335 -in.representative_income 32342 Representative total house income in the dwelling unit is $32342 -in.representative_income 32343 Representative total house income in the dwelling unit is $32343 -in.representative_income 32345 Representative total house income in the dwelling unit is $32345 -in.representative_income 32348 Representative total house income in the dwelling unit is $32348 -in.representative_income 32355 Representative total house income in the dwelling unit is $32355 -in.representative_income 32360 Representative total house income in the dwelling unit is $32360 -in.representative_income 32365 Representative total house income in the dwelling unit is $32365 -in.representative_income 32369 Representative total house income in the dwelling unit is $32369 -in.representative_income 32371 Representative total house income in the dwelling unit is $32371 -in.representative_income 32375 Representative total house income in the dwelling unit is $32375 -in.representative_income 32376 Representative total house income in the dwelling unit is $32376 -in.representative_income 32378 Representative total house income in the dwelling unit is $32378 -in.representative_income 32382 Representative total house income in the dwelling unit is $32382 -in.representative_income 32385 Representative total house income in the dwelling unit is $32385 -in.representative_income 32388 Representative total house income in the dwelling unit is $32388 -in.representative_income 32393 Representative total house income in the dwelling unit is $32393 -in.representative_income 32397 Representative total house income in the dwelling unit is $32397 -in.representative_income 32399 Representative total house income in the dwelling unit is $32399 -in.representative_income 32408 Representative total house income in the dwelling unit is $32408 -in.representative_income 32414 Representative total house income in the dwelling unit is $32414 -in.representative_income 32415 Representative total house income in the dwelling unit is $32415 -in.representative_income 32416 Representative total house income in the dwelling unit is $32416 -in.representative_income 32418 Representative total house income in the dwelling unit is $32418 -in.representative_income 32425 Representative total house income in the dwelling unit is $32425 -in.representative_income 32426 Representative total house income in the dwelling unit is $32426 -in.representative_income 32429 Representative total house income in the dwelling unit is $32429 -in.representative_income 32435 Representative total house income in the dwelling unit is $32435 -in.representative_income 32436 Representative total house income in the dwelling unit is $32436 -in.representative_income 32440 Representative total house income in the dwelling unit is $32440 -in.representative_income 32447 Representative total house income in the dwelling unit is $32447 -in.representative_income 32450 Representative total house income in the dwelling unit is $32450 -in.representative_income 32452 Representative total house income in the dwelling unit is $32452 -in.representative_income 32456 Representative total house income in the dwelling unit is $32456 -in.representative_income 32461 Representative total house income in the dwelling unit is $32461 -in.representative_income 32466 Representative total house income in the dwelling unit is $32466 -in.representative_income 32468 Representative total house income in the dwelling unit is $32468 -in.representative_income 32472 Representative total house income in the dwelling unit is $32472 -in.representative_income 32476 Representative total house income in the dwelling unit is $32476 -in.representative_income 32479 Representative total house income in the dwelling unit is $32479 -in.representative_income 32481 Representative total house income in the dwelling unit is $32481 -in.representative_income 32483 Representative total house income in the dwelling unit is $32483 -in.representative_income 32486 Representative total house income in the dwelling unit is $32486 -in.representative_income 32490 Representative total house income in the dwelling unit is $32490 -in.representative_income 32491 Representative total house income in the dwelling unit is $32491 -in.representative_income 32493 Representative total house income in the dwelling unit is $32493 -in.representative_income 32496 Representative total house income in the dwelling unit is $32496 -in.representative_income 32501 Representative total house income in the dwelling unit is $32501 -in.representative_income 32503 Representative total house income in the dwelling unit is $32503 -in.representative_income 32504 Representative total house income in the dwelling unit is $32504 -in.representative_income 32507 Representative total house income in the dwelling unit is $32507 -in.representative_income 32515 Representative total house income in the dwelling unit is $32515 -in.representative_income 32517 Representative total house income in the dwelling unit is $32517 -in.representative_income 32522 Representative total house income in the dwelling unit is $32522 -in.representative_income 32523 Representative total house income in the dwelling unit is $32523 -in.representative_income 32524 Representative total house income in the dwelling unit is $32524 -in.representative_income 32526 Representative total house income in the dwelling unit is $32526 -in.representative_income 32527 Representative total house income in the dwelling unit is $32527 -in.representative_income 32529 Representative total house income in the dwelling unit is $32529 -in.representative_income 32530 Representative total house income in the dwelling unit is $32530 -in.representative_income 32533 Representative total house income in the dwelling unit is $32533 -in.representative_income 32535 Representative total house income in the dwelling unit is $32535 -in.representative_income 32545 Representative total house income in the dwelling unit is $32545 -in.representative_income 32553 Representative total house income in the dwelling unit is $32553 -in.representative_income 32554 Representative total house income in the dwelling unit is $32554 -in.representative_income 32557 Representative total house income in the dwelling unit is $32557 -in.representative_income 32559 Representative total house income in the dwelling unit is $32559 -in.representative_income 32561 Representative total house income in the dwelling unit is $32561 -in.representative_income 32566 Representative total house income in the dwelling unit is $32566 -in.representative_income 32568 Representative total house income in the dwelling unit is $32568 -in.representative_income 32571 Representative total house income in the dwelling unit is $32571 -in.representative_income 32576 Representative total house income in the dwelling unit is $32576 -in.representative_income 32577 Representative total house income in the dwelling unit is $32577 -in.representative_income 32579 Representative total house income in the dwelling unit is $32579 -in.representative_income 32583 Representative total house income in the dwelling unit is $32583 -in.representative_income 32586 Representative total house income in the dwelling unit is $32586 -in.representative_income 32587 Representative total house income in the dwelling unit is $32587 -in.representative_income 32588 Representative total house income in the dwelling unit is $32588 -in.representative_income 32589 Representative total house income in the dwelling unit is $32589 -in.representative_income 32594 Representative total house income in the dwelling unit is $32594 -in.representative_income 32598 Representative total house income in the dwelling unit is $32598 -in.representative_income 32607 Representative total house income in the dwelling unit is $32607 -in.representative_income 32608 Representative total house income in the dwelling unit is $32608 -in.representative_income 32612 Representative total house income in the dwelling unit is $32612 -in.representative_income 32615 Representative total house income in the dwelling unit is $32615 -in.representative_income 32618 Representative total house income in the dwelling unit is $32618 -in.representative_income 32622 Representative total house income in the dwelling unit is $32622 -in.representative_income 32625 Representative total house income in the dwelling unit is $32625 -in.representative_income 32628 Representative total house income in the dwelling unit is $32628 -in.representative_income 32630 Representative total house income in the dwelling unit is $32630 -in.representative_income 32631 Representative total house income in the dwelling unit is $32631 -in.representative_income 32633 Representative total house income in the dwelling unit is $32633 -in.representative_income 32634 Representative total house income in the dwelling unit is $32634 -in.representative_income 32638 Representative total house income in the dwelling unit is $32638 -in.representative_income 32640 Representative total house income in the dwelling unit is $32640 -in.representative_income 32643 Representative total house income in the dwelling unit is $32643 -in.representative_income 32645 Representative total house income in the dwelling unit is $32645 -in.representative_income 32650 Representative total house income in the dwelling unit is $32650 -in.representative_income 32658 Representative total house income in the dwelling unit is $32658 -in.representative_income 32659 Representative total house income in the dwelling unit is $32659 -in.representative_income 32661 Representative total house income in the dwelling unit is $32661 -in.representative_income 32676 Representative total house income in the dwelling unit is $32676 -in.representative_income 32678 Representative total house income in the dwelling unit is $32678 -in.representative_income 32683 Representative total house income in the dwelling unit is $32683 -in.representative_income 32684 Representative total house income in the dwelling unit is $32684 -in.representative_income 32686 Representative total house income in the dwelling unit is $32686 -in.representative_income 32687 Representative total house income in the dwelling unit is $32687 -in.representative_income 32693 Representative total house income in the dwelling unit is $32693 -in.representative_income 32695 Representative total house income in the dwelling unit is $32695 -in.representative_income 32697 Representative total house income in the dwelling unit is $32697 -in.representative_income 32699 Representative total house income in the dwelling unit is $32699 -in.representative_income 32703 Representative total house income in the dwelling unit is $32703 -in.representative_income 32706 Representative total house income in the dwelling unit is $32706 -in.representative_income 32708 Representative total house income in the dwelling unit is $32708 -in.representative_income 32712 Representative total house income in the dwelling unit is $32712 -in.representative_income 32714 Representative total house income in the dwelling unit is $32714 -in.representative_income 32716 Representative total house income in the dwelling unit is $32716 -in.representative_income 32718 Representative total house income in the dwelling unit is $32718 -in.representative_income 32724 Representative total house income in the dwelling unit is $32724 -in.representative_income 32727 Representative total house income in the dwelling unit is $32727 -in.representative_income 32729 Representative total house income in the dwelling unit is $32729 -in.representative_income 32735 Representative total house income in the dwelling unit is $32735 -in.representative_income 32738 Representative total house income in the dwelling unit is $32738 -in.representative_income 32739 Representative total house income in the dwelling unit is $32739 -in.representative_income 32741 Representative total house income in the dwelling unit is $32741 -in.representative_income 32748 Representative total house income in the dwelling unit is $32748 -in.representative_income 32758 Representative total house income in the dwelling unit is $32758 -in.representative_income 32761 Representative total house income in the dwelling unit is $32761 -in.representative_income 32769 Representative total house income in the dwelling unit is $32769 -in.representative_income 32770 Representative total house income in the dwelling unit is $32770 -in.representative_income 32780 Representative total house income in the dwelling unit is $32780 -in.representative_income 32788 Representative total house income in the dwelling unit is $32788 -in.representative_income 32792 Representative total house income in the dwelling unit is $32792 -in.representative_income 32794 Representative total house income in the dwelling unit is $32794 -in.representative_income 32798 Representative total house income in the dwelling unit is $32798 -in.representative_income 32800 Representative total house income in the dwelling unit is $32800 -in.representative_income 32802 Representative total house income in the dwelling unit is $32802 -in.representative_income 32803 Representative total house income in the dwelling unit is $32803 -in.representative_income 32820 Representative total house income in the dwelling unit is $32820 -in.representative_income 32824 Representative total house income in the dwelling unit is $32824 -in.representative_income 32830 Representative total house income in the dwelling unit is $32830 -in.representative_income 32831 Representative total house income in the dwelling unit is $32831 -in.representative_income 32840 Representative total house income in the dwelling unit is $32840 -in.representative_income 32842 Representative total house income in the dwelling unit is $32842 -in.representative_income 32846 Representative total house income in the dwelling unit is $32846 -in.representative_income 32847 Representative total house income in the dwelling unit is $32847 -in.representative_income 32850 Representative total house income in the dwelling unit is $32850 -in.representative_income 32852 Representative total house income in the dwelling unit is $32852 -in.representative_income 32862 Representative total house income in the dwelling unit is $32862 -in.representative_income 32870 Representative total house income in the dwelling unit is $32870 -in.representative_income 32874 Representative total house income in the dwelling unit is $32874 -in.representative_income 32876 Representative total house income in the dwelling unit is $32876 -in.representative_income 32879 Representative total house income in the dwelling unit is $32879 -in.representative_income 32880 Representative total house income in the dwelling unit is $32880 -in.representative_income 32890 Representative total house income in the dwelling unit is $32890 -in.representative_income 32901 Representative total house income in the dwelling unit is $32901 -in.representative_income 32903 Representative total house income in the dwelling unit is $32903 -in.representative_income 32904 Representative total house income in the dwelling unit is $32904 -in.representative_income 32905 Representative total house income in the dwelling unit is $32905 -in.representative_income 32909 Representative total house income in the dwelling unit is $32909 -in.representative_income 32914 Representative total house income in the dwelling unit is $32914 -in.representative_income 32921 Representative total house income in the dwelling unit is $32921 -in.representative_income 32924 Representative total house income in the dwelling unit is $32924 -in.representative_income 32931 Representative total house income in the dwelling unit is $32931 -in.representative_income 32937 Representative total house income in the dwelling unit is $32937 -in.representative_income 32941 Representative total house income in the dwelling unit is $32941 -in.representative_income 32945 Representative total house income in the dwelling unit is $32945 -in.representative_income 32946 Representative total house income in the dwelling unit is $32946 -in.representative_income 32955 Representative total house income in the dwelling unit is $32955 -in.representative_income 32957 Representative total house income in the dwelling unit is $32957 -in.representative_income 32960 Representative total house income in the dwelling unit is $32960 -in.representative_income 32961 Representative total house income in the dwelling unit is $32961 -in.representative_income 32965 Representative total house income in the dwelling unit is $32965 -in.representative_income 32966 Representative total house income in the dwelling unit is $32966 -in.representative_income 32969 Representative total house income in the dwelling unit is $32969 -in.representative_income 32976 Representative total house income in the dwelling unit is $32976 -in.representative_income 32979 Representative total house income in the dwelling unit is $32979 -in.representative_income 33007 Representative total house income in the dwelling unit is $33007 -in.representative_income 33009 Representative total house income in the dwelling unit is $33009 -in.representative_income 33017 Representative total house income in the dwelling unit is $33017 -in.representative_income 33019 Representative total house income in the dwelling unit is $33019 -in.representative_income 33020 Representative total house income in the dwelling unit is $33020 -in.representative_income 33027 Representative total house income in the dwelling unit is $33027 -in.representative_income 33032 Representative total house income in the dwelling unit is $33032 -in.representative_income 33034 Representative total house income in the dwelling unit is $33034 -in.representative_income 33041 Representative total house income in the dwelling unit is $33041 -in.representative_income 33042 Representative total house income in the dwelling unit is $33042 -in.representative_income 33052 Representative total house income in the dwelling unit is $33052 -in.representative_income 33056 Representative total house income in the dwelling unit is $33056 -in.representative_income 33058 Representative total house income in the dwelling unit is $33058 -in.representative_income 33062 Representative total house income in the dwelling unit is $33062 -in.representative_income 33063 Representative total house income in the dwelling unit is $33063 -in.representative_income 33066 Representative total house income in the dwelling unit is $33066 -in.representative_income 33073 Representative total house income in the dwelling unit is $33073 -in.representative_income 33075 Representative total house income in the dwelling unit is $33075 -in.representative_income 33082 Representative total house income in the dwelling unit is $33082 -in.representative_income 33092 Representative total house income in the dwelling unit is $33092 -in.representative_income 33095 Representative total house income in the dwelling unit is $33095 -in.representative_income 33099 Representative total house income in the dwelling unit is $33099 -in.representative_income 33105 Representative total house income in the dwelling unit is $33105 -in.representative_income 33110 Representative total house income in the dwelling unit is $33110 -in.representative_income 33114 Representative total house income in the dwelling unit is $33114 -in.representative_income 33117 Representative total house income in the dwelling unit is $33117 -in.representative_income 33120 Representative total house income in the dwelling unit is $33120 -in.representative_income 33130 Representative total house income in the dwelling unit is $33130 -in.representative_income 33133 Representative total house income in the dwelling unit is $33133 -in.representative_income 33135 Representative total house income in the dwelling unit is $33135 -in.representative_income 33138 Representative total house income in the dwelling unit is $33138 -in.representative_income 33142 Representative total house income in the dwelling unit is $33142 -in.representative_income 33143 Representative total house income in the dwelling unit is $33143 -in.representative_income 33146 Representative total house income in the dwelling unit is $33146 -in.representative_income 33160 Representative total house income in the dwelling unit is $33160 -in.representative_income 33161 Representative total house income in the dwelling unit is $33161 -in.representative_income 33163 Representative total house income in the dwelling unit is $33163 -in.representative_income 33167 Representative total house income in the dwelling unit is $33167 -in.representative_income 33170 Representative total house income in the dwelling unit is $33170 -in.representative_income 33171 Representative total house income in the dwelling unit is $33171 -in.representative_income 33180 Representative total house income in the dwelling unit is $33180 -in.representative_income 33181 Representative total house income in the dwelling unit is $33181 -in.representative_income 33183 Representative total house income in the dwelling unit is $33183 -in.representative_income 33191 Representative total house income in the dwelling unit is $33191 -in.representative_income 33192 Representative total house income in the dwelling unit is $33192 -in.representative_income 33196 Representative total house income in the dwelling unit is $33196 -in.representative_income 33199 Representative total house income in the dwelling unit is $33199 -in.representative_income 33202 Representative total house income in the dwelling unit is $33202 -in.representative_income 33203 Representative total house income in the dwelling unit is $33203 -in.representative_income 33209 Representative total house income in the dwelling unit is $33209 -in.representative_income 33212 Representative total house income in the dwelling unit is $33212 -in.representative_income 33220 Representative total house income in the dwelling unit is $33220 -in.representative_income 33223 Representative total house income in the dwelling unit is $33223 -in.representative_income 33234 Representative total house income in the dwelling unit is $33234 -in.representative_income 33235 Representative total house income in the dwelling unit is $33235 -in.representative_income 33247 Representative total house income in the dwelling unit is $33247 -in.representative_income 33252 Representative total house income in the dwelling unit is $33252 -in.representative_income 33257 Representative total house income in the dwelling unit is $33257 -in.representative_income 33262 Representative total house income in the dwelling unit is $33262 -in.representative_income 33268 Representative total house income in the dwelling unit is $33268 -in.representative_income 33274 Representative total house income in the dwelling unit is $33274 -in.representative_income 33277 Representative total house income in the dwelling unit is $33277 -in.representative_income 33278 Representative total house income in the dwelling unit is $33278 -in.representative_income 33282 Representative total house income in the dwelling unit is $33282 -in.representative_income 33285 Representative total house income in the dwelling unit is $33285 -in.representative_income 33289 Representative total house income in the dwelling unit is $33289 -in.representative_income 33294 Representative total house income in the dwelling unit is $33294 -in.representative_income 33299 Representative total house income in the dwelling unit is $33299 -in.representative_income 33300 Representative total house income in the dwelling unit is $33300 -in.representative_income 33304 Representative total house income in the dwelling unit is $33304 -in.representative_income 33305 Representative total house income in the dwelling unit is $33305 -in.representative_income 33309 Representative total house income in the dwelling unit is $33309 -in.representative_income 33316 Representative total house income in the dwelling unit is $33316 -in.representative_income 33320 Representative total house income in the dwelling unit is $33320 -in.representative_income 33326 Representative total house income in the dwelling unit is $33326 -in.representative_income 33332 Representative total house income in the dwelling unit is $33332 -in.representative_income 33335 Representative total house income in the dwelling unit is $33335 -in.representative_income 33336 Representative total house income in the dwelling unit is $33336 -in.representative_income 33337 Representative total house income in the dwelling unit is $33337 -in.representative_income 33343 Representative total house income in the dwelling unit is $33343 -in.representative_income 33345 Representative total house income in the dwelling unit is $33345 -in.representative_income 33347 Representative total house income in the dwelling unit is $33347 -in.representative_income 33354 Representative total house income in the dwelling unit is $33354 -in.representative_income 33357 Representative total house income in the dwelling unit is $33357 -in.representative_income 33363 Representative total house income in the dwelling unit is $33363 -in.representative_income 33365 Representative total house income in the dwelling unit is $33365 -in.representative_income 33367 Representative total house income in the dwelling unit is $33367 -in.representative_income 33377 Representative total house income in the dwelling unit is $33377 -in.representative_income 33378 Representative total house income in the dwelling unit is $33378 -in.representative_income 33379 Representative total house income in the dwelling unit is $33379 -in.representative_income 33384 Representative total house income in the dwelling unit is $33384 -in.representative_income 33385 Representative total house income in the dwelling unit is $33385 -in.representative_income 33386 Representative total house income in the dwelling unit is $33386 -in.representative_income 33397 Representative total house income in the dwelling unit is $33397 -in.representative_income 33407 Representative total house income in the dwelling unit is $33407 -in.representative_income 33408 Representative total house income in the dwelling unit is $33408 -in.representative_income 33416 Representative total house income in the dwelling unit is $33416 -in.representative_income 33419 Representative total house income in the dwelling unit is $33419 -in.representative_income 33430 Representative total house income in the dwelling unit is $33430 -in.representative_income 33431 Representative total house income in the dwelling unit is $33431 -in.representative_income 33436 Representative total house income in the dwelling unit is $33436 -in.representative_income 33450 Representative total house income in the dwelling unit is $33450 -in.representative_income 33451 Representative total house income in the dwelling unit is $33451 -in.representative_income 33459 Representative total house income in the dwelling unit is $33459 -in.representative_income 33467 Representative total house income in the dwelling unit is $33467 -in.representative_income 33476 Representative total house income in the dwelling unit is $33476 -in.representative_income 33483 Representative total house income in the dwelling unit is $33483 -in.representative_income 33491 Representative total house income in the dwelling unit is $33491 -in.representative_income 33494 Representative total house income in the dwelling unit is $33494 -in.representative_income 33500 Representative total house income in the dwelling unit is $33500 -in.representative_income 33516 Representative total house income in the dwelling unit is $33516 -in.representative_income 33522 Representative total house income in the dwelling unit is $33522 -in.representative_income 33526 Representative total house income in the dwelling unit is $33526 -in.representative_income 33535 Representative total house income in the dwelling unit is $33535 -in.representative_income 33536 Representative total house income in the dwelling unit is $33536 -in.representative_income 33537 Representative total house income in the dwelling unit is $33537 -in.representative_income 33541 Representative total house income in the dwelling unit is $33541 -in.representative_income 33546 Representative total house income in the dwelling unit is $33546 -in.representative_income 33547 Representative total house income in the dwelling unit is $33547 -in.representative_income 33581 Representative total house income in the dwelling unit is $33581 -in.representative_income 33588 Representative total house income in the dwelling unit is $33588 -in.representative_income 33599 Representative total house income in the dwelling unit is $33599 -in.representative_income 33600 Representative total house income in the dwelling unit is $33600 -in.representative_income 33602 Representative total house income in the dwelling unit is $33602 -in.representative_income 33604 Representative total house income in the dwelling unit is $33604 -in.representative_income 33613 Representative total house income in the dwelling unit is $33613 -in.representative_income 33615 Representative total house income in the dwelling unit is $33615 -in.representative_income 33621 Representative total house income in the dwelling unit is $33621 -in.representative_income 33624 Representative total house income in the dwelling unit is $33624 -in.representative_income 33625 Representative total house income in the dwelling unit is $33625 -in.representative_income 33626 Representative total house income in the dwelling unit is $33626 -in.representative_income 33636 Representative total house income in the dwelling unit is $33636 -in.representative_income 33638 Representative total house income in the dwelling unit is $33638 -in.representative_income 33642 Representative total house income in the dwelling unit is $33642 -in.representative_income 33645 Representative total house income in the dwelling unit is $33645 -in.representative_income 33656 Representative total house income in the dwelling unit is $33656 -in.representative_income 33663 Representative total house income in the dwelling unit is $33663 -in.representative_income 33664 Representative total house income in the dwelling unit is $33664 -in.representative_income 33684 Representative total house income in the dwelling unit is $33684 -in.representative_income 33688 Representative total house income in the dwelling unit is $33688 -in.representative_income 33706 Representative total house income in the dwelling unit is $33706 -in.representative_income 33711 Representative total house income in the dwelling unit is $33711 -in.representative_income 33718 Representative total house income in the dwelling unit is $33718 -in.representative_income 33722 Representative total house income in the dwelling unit is $33722 -in.representative_income 33726 Representative total house income in the dwelling unit is $33726 -in.representative_income 33728 Representative total house income in the dwelling unit is $33728 -in.representative_income 33733 Representative total house income in the dwelling unit is $33733 -in.representative_income 33739 Representative total house income in the dwelling unit is $33739 -in.representative_income 33747 Representative total house income in the dwelling unit is $33747 -in.representative_income 33749 Representative total house income in the dwelling unit is $33749 -in.representative_income 33760 Representative total house income in the dwelling unit is $33760 -in.representative_income 33761 Representative total house income in the dwelling unit is $33761 -in.representative_income 33765 Representative total house income in the dwelling unit is $33765 -in.representative_income 33769 Representative total house income in the dwelling unit is $33769 -in.representative_income 33775 Representative total house income in the dwelling unit is $33775 -in.representative_income 33800 Representative total house income in the dwelling unit is $33800 -in.representative_income 33814 Representative total house income in the dwelling unit is $33814 -in.representative_income 33815 Representative total house income in the dwelling unit is $33815 -in.representative_income 33819 Representative total house income in the dwelling unit is $33819 -in.representative_income 33821 Representative total house income in the dwelling unit is $33821 -in.representative_income 33831 Representative total house income in the dwelling unit is $33831 -in.representative_income 33840 Representative total house income in the dwelling unit is $33840 -in.representative_income 33841 Representative total house income in the dwelling unit is $33841 -in.representative_income 33848 Representative total house income in the dwelling unit is $33848 -in.representative_income 33851 Representative total house income in the dwelling unit is $33851 -in.representative_income 33853 Representative total house income in the dwelling unit is $33853 -in.representative_income 33862 Representative total house income in the dwelling unit is $33862 -in.representative_income 33873 Representative total house income in the dwelling unit is $33873 -in.representative_income 33880 Representative total house income in the dwelling unit is $33880 -in.representative_income 33890 Representative total house income in the dwelling unit is $33890 -in.representative_income 33910 Representative total house income in the dwelling unit is $33910 -in.representative_income 33919 Representative total house income in the dwelling unit is $33919 -in.representative_income 33920 Representative total house income in the dwelling unit is $33920 -in.representative_income 33921 Representative total house income in the dwelling unit is $33921 -in.representative_income 33927 Representative total house income in the dwelling unit is $33927 -in.representative_income 33935 Representative total house income in the dwelling unit is $33935 -in.representative_income 33937 Representative total house income in the dwelling unit is $33937 -in.representative_income 33941 Representative total house income in the dwelling unit is $33941 -in.representative_income 33943 Representative total house income in the dwelling unit is $33943 -in.representative_income 33949 Representative total house income in the dwelling unit is $33949 -in.representative_income 33953 Representative total house income in the dwelling unit is $33953 -in.representative_income 33959 Representative total house income in the dwelling unit is $33959 -in.representative_income 33970 Representative total house income in the dwelling unit is $33970 -in.representative_income 33974 Representative total house income in the dwelling unit is $33974 -in.representative_income 33975 Representative total house income in the dwelling unit is $33975 -in.representative_income 33981 Representative total house income in the dwelling unit is $33981 -in.representative_income 33986 Representative total house income in the dwelling unit is $33986 -in.representative_income 33992 Representative total house income in the dwelling unit is $33992 -in.representative_income 34012 Representative total house income in the dwelling unit is $34012 -in.representative_income 34028 Representative total house income in the dwelling unit is $34028 -in.representative_income 34029 Representative total house income in the dwelling unit is $34029 -in.representative_income 34032 Representative total house income in the dwelling unit is $34032 -in.representative_income 34035 Representative total house income in the dwelling unit is $34035 -in.representative_income 34038 Representative total house income in the dwelling unit is $34038 -in.representative_income 34039 Representative total house income in the dwelling unit is $34039 -in.representative_income 34042 Representative total house income in the dwelling unit is $34042 -in.representative_income 34051 Representative total house income in the dwelling unit is $34051 -in.representative_income 34056 Representative total house income in the dwelling unit is $34056 -in.representative_income 34061 Representative total house income in the dwelling unit is $34061 -in.representative_income 34064 Representative total house income in the dwelling unit is $34064 -in.representative_income 34072 Representative total house income in the dwelling unit is $34072 -in.representative_income 34080 Representative total house income in the dwelling unit is $34080 -in.representative_income 34082 Representative total house income in the dwelling unit is $34082 -in.representative_income 34088 Representative total house income in the dwelling unit is $34088 -in.representative_income 34092 Representative total house income in the dwelling unit is $34092 -in.representative_income 34095 Representative total house income in the dwelling unit is $34095 -in.representative_income 34100 Representative total house income in the dwelling unit is $34100 -in.representative_income 34101 Representative total house income in the dwelling unit is $34101 -in.representative_income 34102 Representative total house income in the dwelling unit is $34102 -in.representative_income 34106 Representative total house income in the dwelling unit is $34106 -in.representative_income 34110 Representative total house income in the dwelling unit is $34110 -in.representative_income 34114 Representative total house income in the dwelling unit is $34114 -in.representative_income 34117 Representative total house income in the dwelling unit is $34117 -in.representative_income 34120 Representative total house income in the dwelling unit is $34120 -in.representative_income 34127 Representative total house income in the dwelling unit is $34127 -in.representative_income 34132 Representative total house income in the dwelling unit is $34132 -in.representative_income 34136 Representative total house income in the dwelling unit is $34136 -in.representative_income 34137 Representative total house income in the dwelling unit is $34137 -in.representative_income 34140 Representative total house income in the dwelling unit is $34140 -in.representative_income 34141 Representative total house income in the dwelling unit is $34141 -in.representative_income 34143 Representative total house income in the dwelling unit is $34143 -in.representative_income 34147 Representative total house income in the dwelling unit is $34147 -in.representative_income 34153 Representative total house income in the dwelling unit is $34153 -in.representative_income 34154 Representative total house income in the dwelling unit is $34154 -in.representative_income 34157 Representative total house income in the dwelling unit is $34157 -in.representative_income 34162 Representative total house income in the dwelling unit is $34162 -in.representative_income 34164 Representative total house income in the dwelling unit is $34164 -in.representative_income 34169 Representative total house income in the dwelling unit is $34169 -in.representative_income 34189 Representative total house income in the dwelling unit is $34189 -in.representative_income 34198 Representative total house income in the dwelling unit is $34198 -in.representative_income 34200 Representative total house income in the dwelling unit is $34200 -in.representative_income 34218 Representative total house income in the dwelling unit is $34218 -in.representative_income 34222 Representative total house income in the dwelling unit is $34222 -in.representative_income 34232 Representative total house income in the dwelling unit is $34232 -in.representative_income 34243 Representative total house income in the dwelling unit is $34243 -in.representative_income 34244 Representative total house income in the dwelling unit is $34244 -in.representative_income 34245 Representative total house income in the dwelling unit is $34245 -in.representative_income 34251 Representative total house income in the dwelling unit is $34251 -in.representative_income 34255 Representative total house income in the dwelling unit is $34255 -in.representative_income 34257 Representative total house income in the dwelling unit is $34257 -in.representative_income 34265 Representative total house income in the dwelling unit is $34265 -in.representative_income 34274 Representative total house income in the dwelling unit is $34274 -in.representative_income 34284 Representative total house income in the dwelling unit is $34284 -in.representative_income 34285 Representative total house income in the dwelling unit is $34285 -in.representative_income 34294 Representative total house income in the dwelling unit is $34294 -in.representative_income 34295 Representative total house income in the dwelling unit is $34295 -in.representative_income 34296 Representative total house income in the dwelling unit is $34296 -in.representative_income 34301 Representative total house income in the dwelling unit is $34301 -in.representative_income 34305 Representative total house income in the dwelling unit is $34305 -in.representative_income 34307 Representative total house income in the dwelling unit is $34307 -in.representative_income 34314 Representative total house income in the dwelling unit is $34314 -in.representative_income 34315 Representative total house income in the dwelling unit is $34315 -in.representative_income 34325 Representative total house income in the dwelling unit is $34325 -in.representative_income 34327 Representative total house income in the dwelling unit is $34327 -in.representative_income 34328 Representative total house income in the dwelling unit is $34328 -in.representative_income 34337 Representative total house income in the dwelling unit is $34337 -in.representative_income 34345 Representative total house income in the dwelling unit is $34345 -in.representative_income 34347 Representative total house income in the dwelling unit is $34347 -in.representative_income 34348 Representative total house income in the dwelling unit is $34348 -in.representative_income 34349 Representative total house income in the dwelling unit is $34349 -in.representative_income 34351 Representative total house income in the dwelling unit is $34351 -in.representative_income 34358 Representative total house income in the dwelling unit is $34358 -in.representative_income 34359 Representative total house income in the dwelling unit is $34359 -in.representative_income 34361 Representative total house income in the dwelling unit is $34361 -in.representative_income 34365 Representative total house income in the dwelling unit is $34365 -in.representative_income 34366 Representative total house income in the dwelling unit is $34366 -in.representative_income 34369 Representative total house income in the dwelling unit is $34369 -in.representative_income 34375 Representative total house income in the dwelling unit is $34375 -in.representative_income 34380 Representative total house income in the dwelling unit is $34380 -in.representative_income 34383 Representative total house income in the dwelling unit is $34383 -in.representative_income 34391 Representative total house income in the dwelling unit is $34391 -in.representative_income 34395 Representative total house income in the dwelling unit is $34395 -in.representative_income 34399 Representative total house income in the dwelling unit is $34399 -in.representative_income 34404 Representative total house income in the dwelling unit is $34404 -in.representative_income 34406 Representative total house income in the dwelling unit is $34406 -in.representative_income 34409 Representative total house income in the dwelling unit is $34409 -in.representative_income 34420 Representative total house income in the dwelling unit is $34420 -in.representative_income 34423 Representative total house income in the dwelling unit is $34423 -in.representative_income 34425 Representative total house income in the dwelling unit is $34425 -in.representative_income 34434 Representative total house income in the dwelling unit is $34434 -in.representative_income 34436 Representative total house income in the dwelling unit is $34436 -in.representative_income 34446 Representative total house income in the dwelling unit is $34446 -in.representative_income 34450 Representative total house income in the dwelling unit is $34450 -in.representative_income 34453 Representative total house income in the dwelling unit is $34453 -in.representative_income 34456 Representative total house income in the dwelling unit is $34456 -in.representative_income 34457 Representative total house income in the dwelling unit is $34457 -in.representative_income 34463 Representative total house income in the dwelling unit is $34463 -in.representative_income 34466 Representative total house income in the dwelling unit is $34466 -in.representative_income 34467 Representative total house income in the dwelling unit is $34467 -in.representative_income 34473 Representative total house income in the dwelling unit is $34473 -in.representative_income 34480 Representative total house income in the dwelling unit is $34480 -in.representative_income 34483 Representative total house income in the dwelling unit is $34483 -in.representative_income 34486 Representative total house income in the dwelling unit is $34486 -in.representative_income 34489 Representative total house income in the dwelling unit is $34489 -in.representative_income 34496 Representative total house income in the dwelling unit is $34496 -in.representative_income 34501 Representative total house income in the dwelling unit is $34501 -in.representative_income 34507 Representative total house income in the dwelling unit is $34507 -in.representative_income 34511 Representative total house income in the dwelling unit is $34511 -in.representative_income 34512 Representative total house income in the dwelling unit is $34512 -in.representative_income 34513 Representative total house income in the dwelling unit is $34513 -in.representative_income 34547 Representative total house income in the dwelling unit is $34547 -in.representative_income 34554 Representative total house income in the dwelling unit is $34554 -in.representative_income 34565 Representative total house income in the dwelling unit is $34565 -in.representative_income 34567 Representative total house income in the dwelling unit is $34567 -in.representative_income 34571 Representative total house income in the dwelling unit is $34571 -in.representative_income 34575 Representative total house income in the dwelling unit is $34575 -in.representative_income 34576 Representative total house income in the dwelling unit is $34576 -in.representative_income 34580 Representative total house income in the dwelling unit is $34580 -in.representative_income 34581 Representative total house income in the dwelling unit is $34581 -in.representative_income 34586 Representative total house income in the dwelling unit is $34586 -in.representative_income 34591 Representative total house income in the dwelling unit is $34591 -in.representative_income 34595 Representative total house income in the dwelling unit is $34595 -in.representative_income 34597 Representative total house income in the dwelling unit is $34597 -in.representative_income 34608 Representative total house income in the dwelling unit is $34608 -in.representative_income 34611 Representative total house income in the dwelling unit is $34611 -in.representative_income 34612 Representative total house income in the dwelling unit is $34612 -in.representative_income 34618 Representative total house income in the dwelling unit is $34618 -in.representative_income 34619 Representative total house income in the dwelling unit is $34619 -in.representative_income 34633 Representative total house income in the dwelling unit is $34633 -in.representative_income 34634 Representative total house income in the dwelling unit is $34634 -in.representative_income 34640 Representative total house income in the dwelling unit is $34640 -in.representative_income 34648 Representative total house income in the dwelling unit is $34648 -in.representative_income 34657 Representative total house income in the dwelling unit is $34657 -in.representative_income 34667 Representative total house income in the dwelling unit is $34667 -in.representative_income 34668 Representative total house income in the dwelling unit is $34668 -in.representative_income 34672 Representative total house income in the dwelling unit is $34672 -in.representative_income 34678 Representative total house income in the dwelling unit is $34678 -in.representative_income 34683 Representative total house income in the dwelling unit is $34683 -in.representative_income 34686 Representative total house income in the dwelling unit is $34686 -in.representative_income 34687 Representative total house income in the dwelling unit is $34687 -in.representative_income 34688 Representative total house income in the dwelling unit is $34688 -in.representative_income 34697 Representative total house income in the dwelling unit is $34697 -in.representative_income 34698 Representative total house income in the dwelling unit is $34698 -in.representative_income 34716 Representative total house income in the dwelling unit is $34716 -in.representative_income 34719 Representative total house income in the dwelling unit is $34719 -in.representative_income 34737 Representative total house income in the dwelling unit is $34737 -in.representative_income 34749 Representative total house income in the dwelling unit is $34749 -in.representative_income 34750 Representative total house income in the dwelling unit is $34750 -in.representative_income 34760 Representative total house income in the dwelling unit is $34760 -in.representative_income 34764 Representative total house income in the dwelling unit is $34764 -in.representative_income 34769 Representative total house income in the dwelling unit is $34769 -in.representative_income 34771 Representative total house income in the dwelling unit is $34771 -in.representative_income 34780 Representative total house income in the dwelling unit is $34780 -in.representative_income 34781 Representative total house income in the dwelling unit is $34781 -in.representative_income 34791 Representative total house income in the dwelling unit is $34791 -in.representative_income 34801 Representative total house income in the dwelling unit is $34801 -in.representative_income 34802 Representative total house income in the dwelling unit is $34802 -in.representative_income 34811 Representative total house income in the dwelling unit is $34811 -in.representative_income 34823 Representative total house income in the dwelling unit is $34823 -in.representative_income 34832 Representative total house income in the dwelling unit is $34832 -in.representative_income 34834 Representative total house income in the dwelling unit is $34834 -in.representative_income 34850 Representative total house income in the dwelling unit is $34850 -in.representative_income 34863 Representative total house income in the dwelling unit is $34863 -in.representative_income 34866 Representative total house income in the dwelling unit is $34866 -in.representative_income 34878 Representative total house income in the dwelling unit is $34878 -in.representative_income 34884 Representative total house income in the dwelling unit is $34884 -in.representative_income 34887 Representative total house income in the dwelling unit is $34887 -in.representative_income 34890 Representative total house income in the dwelling unit is $34890 -in.representative_income 34898 Representative total house income in the dwelling unit is $34898 -in.representative_income 34899 Representative total house income in the dwelling unit is $34899 -in.representative_income 34907 Representative total house income in the dwelling unit is $34907 -in.representative_income 34914 Representative total house income in the dwelling unit is $34914 -in.representative_income 34921 Representative total house income in the dwelling unit is $34921 -in.representative_income 34931 Representative total house income in the dwelling unit is $34931 -in.representative_income 34950 Representative total house income in the dwelling unit is $34950 -in.representative_income 34951 Representative total house income in the dwelling unit is $34951 -in.representative_income 34953 Representative total house income in the dwelling unit is $34953 -in.representative_income 34966 Representative total house income in the dwelling unit is $34966 -in.representative_income 34995 Representative total house income in the dwelling unit is $34995 -in.representative_income 34997 Representative total house income in the dwelling unit is $34997 -in.representative_income 35007 Representative total house income in the dwelling unit is $35007 -in.representative_income 35012 Representative total house income in the dwelling unit is $35012 -in.representative_income 35016 Representative total house income in the dwelling unit is $35016 -in.representative_income 35045 Representative total house income in the dwelling unit is $35045 -in.representative_income 35052 Representative total house income in the dwelling unit is $35052 -in.representative_income 35069 Representative total house income in the dwelling unit is $35069 -in.representative_income 35092 Representative total house income in the dwelling unit is $35092 -in.representative_income 35093 Representative total house income in the dwelling unit is $35093 -in.representative_income 35101 Representative total house income in the dwelling unit is $35101 -in.representative_income 35103 Representative total house income in the dwelling unit is $35103 -in.representative_income 35115 Representative total house income in the dwelling unit is $35115 -in.representative_income 35119 Representative total house income in the dwelling unit is $35119 -in.representative_income 35127 Representative total house income in the dwelling unit is $35127 -in.representative_income 35133 Representative total house income in the dwelling unit is $35133 -in.representative_income 35147 Representative total house income in the dwelling unit is $35147 -in.representative_income 35151 Representative total house income in the dwelling unit is $35151 -in.representative_income 35153 Representative total house income in the dwelling unit is $35153 -in.representative_income 35160 Representative total house income in the dwelling unit is $35160 -in.representative_income 35163 Representative total house income in the dwelling unit is $35163 -in.representative_income 35171 Representative total house income in the dwelling unit is $35171 -in.representative_income 35173 Representative total house income in the dwelling unit is $35173 -in.representative_income 35180 Representative total house income in the dwelling unit is $35180 -in.representative_income 35193 Representative total house income in the dwelling unit is $35193 -in.representative_income 35200 Representative total house income in the dwelling unit is $35200 -in.representative_income 35209 Representative total house income in the dwelling unit is $35209 -in.representative_income 35213 Representative total house income in the dwelling unit is $35213 -in.representative_income 35214 Representative total house income in the dwelling unit is $35214 -in.representative_income 35223 Representative total house income in the dwelling unit is $35223 -in.representative_income 35224 Representative total house income in the dwelling unit is $35224 -in.representative_income 35234 Representative total house income in the dwelling unit is $35234 -in.representative_income 35254 Representative total house income in the dwelling unit is $35254 -in.representative_income 35256 Representative total house income in the dwelling unit is $35256 -in.representative_income 35265 Representative total house income in the dwelling unit is $35265 -in.representative_income 35276 Representative total house income in the dwelling unit is $35276 -in.representative_income 35294 Representative total house income in the dwelling unit is $35294 -in.representative_income 35305 Representative total house income in the dwelling unit is $35305 -in.representative_income 35316 Representative total house income in the dwelling unit is $35316 -in.representative_income 35317 Representative total house income in the dwelling unit is $35317 -in.representative_income 35329 Representative total house income in the dwelling unit is $35329 -in.representative_income 35332 Representative total house income in the dwelling unit is $35332 -in.representative_income 35343 Representative total house income in the dwelling unit is $35343 -in.representative_income 35348 Representative total house income in the dwelling unit is $35348 -in.representative_income 35355 Representative total house income in the dwelling unit is $35355 -in.representative_income 35361 Representative total house income in the dwelling unit is $35361 -in.representative_income 35365 Representative total house income in the dwelling unit is $35365 -in.representative_income 35371 Representative total house income in the dwelling unit is $35371 -in.representative_income 35375 Representative total house income in the dwelling unit is $35375 -in.representative_income 35378 Representative total house income in the dwelling unit is $35378 -in.representative_income 35406 Representative total house income in the dwelling unit is $35406 -in.representative_income 35407 Representative total house income in the dwelling unit is $35407 -in.representative_income 35416 Representative total house income in the dwelling unit is $35416 -in.representative_income 35424 Representative total house income in the dwelling unit is $35424 -in.representative_income 35426 Representative total house income in the dwelling unit is $35426 -in.representative_income 35435 Representative total house income in the dwelling unit is $35435 -in.representative_income 35440 Representative total house income in the dwelling unit is $35440 -in.representative_income 35456 Representative total house income in the dwelling unit is $35456 -in.representative_income 35461 Representative total house income in the dwelling unit is $35461 -in.representative_income 35463 Representative total house income in the dwelling unit is $35463 -in.representative_income 35466 Representative total house income in the dwelling unit is $35466 -in.representative_income 35467 Representative total house income in the dwelling unit is $35467 -in.representative_income 35476 Representative total house income in the dwelling unit is $35476 -in.representative_income 35482 Representative total house income in the dwelling unit is $35482 -in.representative_income 35483 Representative total house income in the dwelling unit is $35483 -in.representative_income 35486 Representative total house income in the dwelling unit is $35486 -in.representative_income 35492 Representative total house income in the dwelling unit is $35492 -in.representative_income 35498 Representative total house income in the dwelling unit is $35498 -in.representative_income 35499 Representative total house income in the dwelling unit is $35499 -in.representative_income 35500 Representative total house income in the dwelling unit is $35500 -in.representative_income 35504 Representative total house income in the dwelling unit is $35504 -in.representative_income 35507 Representative total house income in the dwelling unit is $35507 -in.representative_income 35509 Representative total house income in the dwelling unit is $35509 -in.representative_income 35515 Representative total house income in the dwelling unit is $35515 -in.representative_income 35522 Representative total house income in the dwelling unit is $35522 -in.representative_income 35532 Representative total house income in the dwelling unit is $35532 -in.representative_income 35540 Representative total house income in the dwelling unit is $35540 -in.representative_income 35544 Representative total house income in the dwelling unit is $35544 -in.representative_income 35547 Representative total house income in the dwelling unit is $35547 -in.representative_income 35548 Representative total house income in the dwelling unit is $35548 -in.representative_income 35557 Representative total house income in the dwelling unit is $35557 -in.representative_income 35577 Representative total house income in the dwelling unit is $35577 -in.representative_income 35585 Representative total house income in the dwelling unit is $35585 -in.representative_income 35587 Representative total house income in the dwelling unit is $35587 -in.representative_income 35593 Representative total house income in the dwelling unit is $35593 -in.representative_income 35598 Representative total house income in the dwelling unit is $35598 -in.representative_income 35605 Representative total house income in the dwelling unit is $35605 -in.representative_income 35608 Representative total house income in the dwelling unit is $35608 -in.representative_income 35616 Representative total house income in the dwelling unit is $35616 -in.representative_income 35638 Representative total house income in the dwelling unit is $35638 -in.representative_income 35642 Representative total house income in the dwelling unit is $35642 -in.representative_income 35645 Representative total house income in the dwelling unit is $35645 -in.representative_income 35646 Representative total house income in the dwelling unit is $35646 -in.representative_income 35650 Representative total house income in the dwelling unit is $35650 -in.representative_income 35655 Representative total house income in the dwelling unit is $35655 -in.representative_income 35657 Representative total house income in the dwelling unit is $35657 -in.representative_income 35658 Representative total house income in the dwelling unit is $35658 -in.representative_income 35668 Representative total house income in the dwelling unit is $35668 -in.representative_income 35677 Representative total house income in the dwelling unit is $35677 -in.representative_income 35678 Representative total house income in the dwelling unit is $35678 -in.representative_income 35688 Representative total house income in the dwelling unit is $35688 -in.representative_income 35692 Representative total house income in the dwelling unit is $35692 -in.representative_income 35693 Representative total house income in the dwelling unit is $35693 -in.representative_income 35699 Representative total house income in the dwelling unit is $35699 -in.representative_income 35702 Representative total house income in the dwelling unit is $35702 -in.representative_income 35703 Representative total house income in the dwelling unit is $35703 -in.representative_income 35717 Representative total house income in the dwelling unit is $35717 -in.representative_income 35724 Representative total house income in the dwelling unit is $35724 -in.representative_income 35729 Representative total house income in the dwelling unit is $35729 -in.representative_income 35730 Representative total house income in the dwelling unit is $35730 -in.representative_income 35735 Representative total house income in the dwelling unit is $35735 -in.representative_income 35740 Representative total house income in the dwelling unit is $35740 -in.representative_income 35742 Representative total house income in the dwelling unit is $35742 -in.representative_income 35746 Representative total house income in the dwelling unit is $35746 -in.representative_income 35752 Representative total house income in the dwelling unit is $35752 -in.representative_income 35758 Representative total house income in the dwelling unit is $35758 -in.representative_income 35759 Representative total house income in the dwelling unit is $35759 -in.representative_income 35762 Representative total house income in the dwelling unit is $35762 -in.representative_income 35763 Representative total house income in the dwelling unit is $35763 -in.representative_income 35770 Representative total house income in the dwelling unit is $35770 -in.representative_income 35775 Representative total house income in the dwelling unit is $35775 -in.representative_income 35783 Representative total house income in the dwelling unit is $35783 -in.representative_income 35789 Representative total house income in the dwelling unit is $35789 -in.representative_income 35792 Representative total house income in the dwelling unit is $35792 -in.representative_income 35800 Representative total house income in the dwelling unit is $35800 -in.representative_income 35802 Representative total house income in the dwelling unit is $35802 -in.representative_income 35807 Representative total house income in the dwelling unit is $35807 -in.representative_income 35808 Representative total house income in the dwelling unit is $35808 -in.representative_income 35810 Representative total house income in the dwelling unit is $35810 -in.representative_income 35811 Representative total house income in the dwelling unit is $35811 -in.representative_income 35825 Representative total house income in the dwelling unit is $35825 -in.representative_income 35840 Representative total house income in the dwelling unit is $35840 -in.representative_income 35853 Representative total house income in the dwelling unit is $35853 -in.representative_income 35857 Representative total house income in the dwelling unit is $35857 -in.representative_income 35860 Representative total house income in the dwelling unit is $35860 -in.representative_income 35867 Representative total house income in the dwelling unit is $35867 -in.representative_income 35871 Representative total house income in the dwelling unit is $35871 -in.representative_income 35873 Representative total house income in the dwelling unit is $35873 -in.representative_income 35874 Representative total house income in the dwelling unit is $35874 -in.representative_income 35893 Representative total house income in the dwelling unit is $35893 -in.representative_income 35895 Representative total house income in the dwelling unit is $35895 -in.representative_income 35901 Representative total house income in the dwelling unit is $35901 -in.representative_income 35911 Representative total house income in the dwelling unit is $35911 -in.representative_income 35921 Representative total house income in the dwelling unit is $35921 -in.representative_income 35925 Representative total house income in the dwelling unit is $35925 -in.representative_income 35939 Representative total house income in the dwelling unit is $35939 -in.representative_income 35941 Representative total house income in the dwelling unit is $35941 -in.representative_income 35946 Representative total house income in the dwelling unit is $35946 -in.representative_income 35947 Representative total house income in the dwelling unit is $35947 -in.representative_income 35958 Representative total house income in the dwelling unit is $35958 -in.representative_income 35961 Representative total house income in the dwelling unit is $35961 -in.representative_income 35962 Representative total house income in the dwelling unit is $35962 -in.representative_income 35965 Representative total house income in the dwelling unit is $35965 -in.representative_income 35968 Representative total house income in the dwelling unit is $35968 -in.representative_income 35971 Representative total house income in the dwelling unit is $35971 -in.representative_income 35972 Representative total house income in the dwelling unit is $35972 -in.representative_income 35973 Representative total house income in the dwelling unit is $35973 -in.representative_income 35975 Representative total house income in the dwelling unit is $35975 -in.representative_income 35977 Representative total house income in the dwelling unit is $35977 -in.representative_income 35979 Representative total house income in the dwelling unit is $35979 -in.representative_income 35981 Representative total house income in the dwelling unit is $35981 -in.representative_income 35991 Representative total house income in the dwelling unit is $35991 -in.representative_income 35993 Representative total house income in the dwelling unit is $35993 -in.representative_income 35997 Representative total house income in the dwelling unit is $35997 -in.representative_income 36014 Representative total house income in the dwelling unit is $36014 -in.representative_income 36015 Representative total house income in the dwelling unit is $36015 -in.representative_income 36025 Representative total house income in the dwelling unit is $36025 -in.representative_income 36026 Representative total house income in the dwelling unit is $36026 -in.representative_income 36029 Representative total house income in the dwelling unit is $36029 -in.representative_income 36031 Representative total house income in the dwelling unit is $36031 -in.representative_income 36033 Representative total house income in the dwelling unit is $36033 -in.representative_income 36042 Representative total house income in the dwelling unit is $36042 -in.representative_income 36045 Representative total house income in the dwelling unit is $36045 -in.representative_income 36046 Representative total house income in the dwelling unit is $36046 -in.representative_income 36047 Representative total house income in the dwelling unit is $36047 -in.representative_income 36049 Representative total house income in the dwelling unit is $36049 -in.representative_income 36052 Representative total house income in the dwelling unit is $36052 -in.representative_income 36059 Representative total house income in the dwelling unit is $36059 -in.representative_income 36062 Representative total house income in the dwelling unit is $36062 -in.representative_income 36067 Representative total house income in the dwelling unit is $36067 -in.representative_income 36068 Representative total house income in the dwelling unit is $36068 -in.representative_income 36073 Representative total house income in the dwelling unit is $36073 -in.representative_income 36078 Representative total house income in the dwelling unit is $36078 -in.representative_income 36079 Representative total house income in the dwelling unit is $36079 -in.representative_income 36082 Representative total house income in the dwelling unit is $36082 -in.representative_income 36088 Representative total house income in the dwelling unit is $36088 -in.representative_income 36090 Representative total house income in the dwelling unit is $36090 -in.representative_income 36092 Representative total house income in the dwelling unit is $36092 -in.representative_income 36094 Representative total house income in the dwelling unit is $36094 -in.representative_income 36100 Representative total house income in the dwelling unit is $36100 -in.representative_income 36101 Representative total house income in the dwelling unit is $36101 -in.representative_income 36103 Representative total house income in the dwelling unit is $36103 -in.representative_income 36109 Representative total house income in the dwelling unit is $36109 -in.representative_income 36110 Representative total house income in the dwelling unit is $36110 -in.representative_income 36111 Representative total house income in the dwelling unit is $36111 -in.representative_income 36113 Representative total house income in the dwelling unit is $36113 -in.representative_income 36121 Representative total house income in the dwelling unit is $36121 -in.representative_income 36123 Representative total house income in the dwelling unit is $36123 -in.representative_income 36126 Representative total house income in the dwelling unit is $36126 -in.representative_income 36132 Representative total house income in the dwelling unit is $36132 -in.representative_income 36141 Representative total house income in the dwelling unit is $36141 -in.representative_income 36142 Representative total house income in the dwelling unit is $36142 -in.representative_income 36148 Representative total house income in the dwelling unit is $36148 -in.representative_income 36152 Representative total house income in the dwelling unit is $36152 -in.representative_income 36153 Representative total house income in the dwelling unit is $36153 -in.representative_income 36163 Representative total house income in the dwelling unit is $36163 -in.representative_income 36165 Representative total house income in the dwelling unit is $36165 -in.representative_income 36166 Representative total house income in the dwelling unit is $36166 -in.representative_income 36173 Representative total house income in the dwelling unit is $36173 -in.representative_income 36175 Representative total house income in the dwelling unit is $36175 -in.representative_income 36177 Representative total house income in the dwelling unit is $36177 -in.representative_income 36180 Representative total house income in the dwelling unit is $36180 -in.representative_income 36182 Representative total house income in the dwelling unit is $36182 -in.representative_income 36184 Representative total house income in the dwelling unit is $36184 -in.representative_income 36185 Representative total house income in the dwelling unit is $36185 -in.representative_income 36186 Representative total house income in the dwelling unit is $36186 -in.representative_income 36193 Representative total house income in the dwelling unit is $36193 -in.representative_income 36196 Representative total house income in the dwelling unit is $36196 -in.representative_income 36202 Representative total house income in the dwelling unit is $36202 -in.representative_income 36204 Representative total house income in the dwelling unit is $36204 -in.representative_income 36207 Representative total house income in the dwelling unit is $36207 -in.representative_income 36208 Representative total house income in the dwelling unit is $36208 -in.representative_income 36214 Representative total house income in the dwelling unit is $36214 -in.representative_income 36216 Representative total house income in the dwelling unit is $36216 -in.representative_income 36224 Representative total house income in the dwelling unit is $36224 -in.representative_income 36228 Representative total house income in the dwelling unit is $36228 -in.representative_income 36230 Representative total house income in the dwelling unit is $36230 -in.representative_income 36233 Representative total house income in the dwelling unit is $36233 -in.representative_income 36236 Representative total house income in the dwelling unit is $36236 -in.representative_income 36240 Representative total house income in the dwelling unit is $36240 -in.representative_income 36244 Representative total house income in the dwelling unit is $36244 -in.representative_income 36250 Representative total house income in the dwelling unit is $36250 -in.representative_income 36256 Representative total house income in the dwelling unit is $36256 -in.representative_income 36257 Representative total house income in the dwelling unit is $36257 -in.representative_income 36259 Representative total house income in the dwelling unit is $36259 -in.representative_income 36261 Representative total house income in the dwelling unit is $36261 -in.representative_income 36264 Representative total house income in the dwelling unit is $36264 -in.representative_income 36273 Representative total house income in the dwelling unit is $36273 -in.representative_income 36278 Representative total house income in the dwelling unit is $36278 -in.representative_income 36280 Representative total house income in the dwelling unit is $36280 -in.representative_income 36282 Representative total house income in the dwelling unit is $36282 -in.representative_income 36283 Representative total house income in the dwelling unit is $36283 -in.representative_income 36286 Representative total house income in the dwelling unit is $36286 -in.representative_income 36289 Representative total house income in the dwelling unit is $36289 -in.representative_income 36293 Representative total house income in the dwelling unit is $36293 -in.representative_income 36299 Representative total house income in the dwelling unit is $36299 -in.representative_income 36304 Representative total house income in the dwelling unit is $36304 -in.representative_income 36305 Representative total house income in the dwelling unit is $36305 -in.representative_income 36307 Representative total house income in the dwelling unit is $36307 -in.representative_income 36308 Representative total house income in the dwelling unit is $36308 -in.representative_income 36310 Representative total house income in the dwelling unit is $36310 -in.representative_income 36315 Representative total house income in the dwelling unit is $36315 -in.representative_income 36318 Representative total house income in the dwelling unit is $36318 -in.representative_income 36321 Representative total house income in the dwelling unit is $36321 -in.representative_income 36322 Representative total house income in the dwelling unit is $36322 -in.representative_income 36326 Representative total house income in the dwelling unit is $36326 -in.representative_income 36331 Representative total house income in the dwelling unit is $36331 -in.representative_income 36335 Representative total house income in the dwelling unit is $36335 -in.representative_income 36336 Representative total house income in the dwelling unit is $36336 -in.representative_income 36338 Representative total house income in the dwelling unit is $36338 -in.representative_income 36347 Representative total house income in the dwelling unit is $36347 -in.representative_income 36348 Representative total house income in the dwelling unit is $36348 -in.representative_income 36350 Representative total house income in the dwelling unit is $36350 -in.representative_income 36355 Representative total house income in the dwelling unit is $36355 -in.representative_income 36358 Representative total house income in the dwelling unit is $36358 -in.representative_income 36359 Representative total house income in the dwelling unit is $36359 -in.representative_income 36365 Representative total house income in the dwelling unit is $36365 -in.representative_income 36375 Representative total house income in the dwelling unit is $36375 -in.representative_income 36379 Representative total house income in the dwelling unit is $36379 -in.representative_income 36382 Representative total house income in the dwelling unit is $36382 -in.representative_income 36384 Representative total house income in the dwelling unit is $36384 -in.representative_income 36385 Representative total house income in the dwelling unit is $36385 -in.representative_income 36388 Representative total house income in the dwelling unit is $36388 -in.representative_income 36389 Representative total house income in the dwelling unit is $36389 -in.representative_income 36390 Representative total house income in the dwelling unit is $36390 -in.representative_income 36395 Representative total house income in the dwelling unit is $36395 -in.representative_income 36396 Representative total house income in the dwelling unit is $36396 -in.representative_income 36400 Representative total house income in the dwelling unit is $36400 -in.representative_income 36401 Representative total house income in the dwelling unit is $36401 -in.representative_income 36405 Representative total house income in the dwelling unit is $36405 -in.representative_income 36411 Representative total house income in the dwelling unit is $36411 -in.representative_income 36412 Representative total house income in the dwelling unit is $36412 -in.representative_income 36413 Representative total house income in the dwelling unit is $36413 -in.representative_income 36416 Representative total house income in the dwelling unit is $36416 -in.representative_income 36423 Representative total house income in the dwelling unit is $36423 -in.representative_income 36426 Representative total house income in the dwelling unit is $36426 -in.representative_income 36431 Representative total house income in the dwelling unit is $36431 -in.representative_income 36436 Representative total house income in the dwelling unit is $36436 -in.representative_income 36443 Representative total house income in the dwelling unit is $36443 -in.representative_income 36446 Representative total house income in the dwelling unit is $36446 -in.representative_income 36448 Representative total house income in the dwelling unit is $36448 -in.representative_income 36451 Representative total house income in the dwelling unit is $36451 -in.representative_income 36455 Representative total house income in the dwelling unit is $36455 -in.representative_income 36457 Representative total house income in the dwelling unit is $36457 -in.representative_income 36460 Representative total house income in the dwelling unit is $36460 -in.representative_income 36466 Representative total house income in the dwelling unit is $36466 -in.representative_income 36482 Representative total house income in the dwelling unit is $36482 -in.representative_income 36486 Representative total house income in the dwelling unit is $36486 -in.representative_income 36487 Representative total house income in the dwelling unit is $36487 -in.representative_income 36490 Representative total house income in the dwelling unit is $36490 -in.representative_income 36491 Representative total house income in the dwelling unit is $36491 -in.representative_income 36497 Representative total house income in the dwelling unit is $36497 -in.representative_income 36498 Representative total house income in the dwelling unit is $36498 -in.representative_income 36500 Representative total house income in the dwelling unit is $36500 -in.representative_income 36502 Representative total house income in the dwelling unit is $36502 -in.representative_income 36503 Representative total house income in the dwelling unit is $36503 -in.representative_income 36507 Representative total house income in the dwelling unit is $36507 -in.representative_income 36511 Representative total house income in the dwelling unit is $36511 -in.representative_income 36513 Representative total house income in the dwelling unit is $36513 -in.representative_income 36517 Representative total house income in the dwelling unit is $36517 -in.representative_income 36519 Representative total house income in the dwelling unit is $36519 -in.representative_income 36520 Representative total house income in the dwelling unit is $36520 -in.representative_income 36524 Representative total house income in the dwelling unit is $36524 -in.representative_income 36531 Representative total house income in the dwelling unit is $36531 -in.representative_income 36537 Representative total house income in the dwelling unit is $36537 -in.representative_income 36539 Representative total house income in the dwelling unit is $36539 -in.representative_income 36540 Representative total house income in the dwelling unit is $36540 -in.representative_income 36542 Representative total house income in the dwelling unit is $36542 -in.representative_income 36547 Representative total house income in the dwelling unit is $36547 -in.representative_income 36551 Representative total house income in the dwelling unit is $36551 -in.representative_income 36552 Representative total house income in the dwelling unit is $36552 -in.representative_income 36557 Representative total house income in the dwelling unit is $36557 -in.representative_income 36561 Representative total house income in the dwelling unit is $36561 -in.representative_income 36565 Representative total house income in the dwelling unit is $36565 -in.representative_income 36567 Representative total house income in the dwelling unit is $36567 -in.representative_income 36574 Representative total house income in the dwelling unit is $36574 -in.representative_income 36584 Representative total house income in the dwelling unit is $36584 -in.representative_income 36586 Representative total house income in the dwelling unit is $36586 -in.representative_income 36587 Representative total house income in the dwelling unit is $36587 -in.representative_income 36592 Representative total house income in the dwelling unit is $36592 -in.representative_income 36594 Representative total house income in the dwelling unit is $36594 -in.representative_income 36595 Representative total house income in the dwelling unit is $36595 -in.representative_income 36596 Representative total house income in the dwelling unit is $36596 -in.representative_income 36598 Representative total house income in the dwelling unit is $36598 -in.representative_income 36600 Representative total house income in the dwelling unit is $36600 -in.representative_income 36605 Representative total house income in the dwelling unit is $36605 -in.representative_income 36616 Representative total house income in the dwelling unit is $36616 -in.representative_income 36617 Representative total house income in the dwelling unit is $36617 -in.representative_income 36618 Representative total house income in the dwelling unit is $36618 -in.representative_income 36626 Representative total house income in the dwelling unit is $36626 -in.representative_income 36627 Representative total house income in the dwelling unit is $36627 -in.representative_income 36628 Representative total house income in the dwelling unit is $36628 -in.representative_income 36637 Representative total house income in the dwelling unit is $36637 -in.representative_income 36638 Representative total house income in the dwelling unit is $36638 -in.representative_income 36643 Representative total house income in the dwelling unit is $36643 -in.representative_income 36648 Representative total house income in the dwelling unit is $36648 -in.representative_income 36649 Representative total house income in the dwelling unit is $36649 -in.representative_income 36658 Representative total house income in the dwelling unit is $36658 -in.representative_income 36660 Representative total house income in the dwelling unit is $36660 -in.representative_income 36661 Representative total house income in the dwelling unit is $36661 -in.representative_income 36668 Representative total house income in the dwelling unit is $36668 -in.representative_income 36671 Representative total house income in the dwelling unit is $36671 -in.representative_income 36678 Representative total house income in the dwelling unit is $36678 -in.representative_income 36682 Representative total house income in the dwelling unit is $36682 -in.representative_income 36687 Representative total house income in the dwelling unit is $36687 -in.representative_income 36688 Representative total house income in the dwelling unit is $36688 -in.representative_income 36697 Representative total house income in the dwelling unit is $36697 -in.representative_income 36699 Representative total house income in the dwelling unit is $36699 -in.representative_income 36700 Representative total house income in the dwelling unit is $36700 -in.representative_income 36711 Representative total house income in the dwelling unit is $36711 -in.representative_income 36719 Representative total house income in the dwelling unit is $36719 -in.representative_income 36720 Representative total house income in the dwelling unit is $36720 -in.representative_income 36725 Representative total house income in the dwelling unit is $36725 -in.representative_income 36730 Representative total house income in the dwelling unit is $36730 -in.representative_income 36731 Representative total house income in the dwelling unit is $36731 -in.representative_income 36736 Representative total house income in the dwelling unit is $36736 -in.representative_income 36737 Representative total house income in the dwelling unit is $36737 -in.representative_income 36740 Representative total house income in the dwelling unit is $36740 -in.representative_income 36743 Representative total house income in the dwelling unit is $36743 -in.representative_income 36744 Representative total house income in the dwelling unit is $36744 -in.representative_income 36749 Representative total house income in the dwelling unit is $36749 -in.representative_income 36751 Representative total house income in the dwelling unit is $36751 -in.representative_income 36755 Representative total house income in the dwelling unit is $36755 -in.representative_income 36757 Representative total house income in the dwelling unit is $36757 -in.representative_income 36766 Representative total house income in the dwelling unit is $36766 -in.representative_income 36768 Representative total house income in the dwelling unit is $36768 -in.representative_income 36769 Representative total house income in the dwelling unit is $36769 -in.representative_income 36772 Representative total house income in the dwelling unit is $36772 -in.representative_income 36777 Representative total house income in the dwelling unit is $36777 -in.representative_income 36779 Representative total house income in the dwelling unit is $36779 -in.representative_income 36782 Representative total house income in the dwelling unit is $36782 -in.representative_income 36785 Representative total house income in the dwelling unit is $36785 -in.representative_income 36790 Representative total house income in the dwelling unit is $36790 -in.representative_income 36798 Representative total house income in the dwelling unit is $36798 -in.representative_income 36800 Representative total house income in the dwelling unit is $36800 -in.representative_income 36802 Representative total house income in the dwelling unit is $36802 -in.representative_income 36803 Representative total house income in the dwelling unit is $36803 -in.representative_income 36805 Representative total house income in the dwelling unit is $36805 -in.representative_income 36806 Representative total house income in the dwelling unit is $36806 -in.representative_income 36816 Representative total house income in the dwelling unit is $36816 -in.representative_income 36819 Representative total house income in the dwelling unit is $36819 -in.representative_income 36820 Representative total house income in the dwelling unit is $36820 -in.representative_income 36821 Representative total house income in the dwelling unit is $36821 -in.representative_income 36822 Representative total house income in the dwelling unit is $36822 -in.representative_income 36823 Representative total house income in the dwelling unit is $36823 -in.representative_income 36824 Representative total house income in the dwelling unit is $36824 -in.representative_income 36826 Representative total house income in the dwelling unit is $36826 -in.representative_income 36830 Representative total house income in the dwelling unit is $36830 -in.representative_income 36836 Representative total house income in the dwelling unit is $36836 -in.representative_income 36840 Representative total house income in the dwelling unit is $36840 -in.representative_income 36845 Representative total house income in the dwelling unit is $36845 -in.representative_income 36846 Representative total house income in the dwelling unit is $36846 -in.representative_income 36848 Representative total house income in the dwelling unit is $36848 -in.representative_income 36850 Representative total house income in the dwelling unit is $36850 -in.representative_income 36855 Representative total house income in the dwelling unit is $36855 -in.representative_income 36863 Representative total house income in the dwelling unit is $36863 -in.representative_income 36870 Representative total house income in the dwelling unit is $36870 -in.representative_income 36873 Representative total house income in the dwelling unit is $36873 -in.representative_income 36875 Representative total house income in the dwelling unit is $36875 -in.representative_income 36880 Representative total house income in the dwelling unit is $36880 -in.representative_income 36884 Representative total house income in the dwelling unit is $36884 -in.representative_income 36888 Representative total house income in the dwelling unit is $36888 -in.representative_income 36890 Representative total house income in the dwelling unit is $36890 -in.representative_income 36905 Representative total house income in the dwelling unit is $36905 -in.representative_income 36911 Representative total house income in the dwelling unit is $36911 -in.representative_income 36916 Representative total house income in the dwelling unit is $36916 -in.representative_income 36919 Representative total house income in the dwelling unit is $36919 -in.representative_income 36926 Representative total house income in the dwelling unit is $36926 -in.representative_income 36927 Representative total house income in the dwelling unit is $36927 -in.representative_income 36931 Representative total house income in the dwelling unit is $36931 -in.representative_income 36933 Representative total house income in the dwelling unit is $36933 -in.representative_income 36934 Representative total house income in the dwelling unit is $36934 -in.representative_income 36937 Representative total house income in the dwelling unit is $36937 -in.representative_income 36941 Representative total house income in the dwelling unit is $36941 -in.representative_income 36952 Representative total house income in the dwelling unit is $36952 -in.representative_income 36953 Representative total house income in the dwelling unit is $36953 -in.representative_income 36957 Representative total house income in the dwelling unit is $36957 -in.representative_income 36964 Representative total house income in the dwelling unit is $36964 -in.representative_income 36971 Representative total house income in the dwelling unit is $36971 -in.representative_income 36974 Representative total house income in the dwelling unit is $36974 -in.representative_income 36978 Representative total house income in the dwelling unit is $36978 -in.representative_income 36980 Representative total house income in the dwelling unit is $36980 -in.representative_income 36985 Representative total house income in the dwelling unit is $36985 -in.representative_income 36990 Representative total house income in the dwelling unit is $36990 -in.representative_income 36991 Representative total house income in the dwelling unit is $36991 -in.representative_income 37002 Representative total house income in the dwelling unit is $37002 -in.representative_income 37006 Representative total house income in the dwelling unit is $37006 -in.representative_income 37013 Representative total house income in the dwelling unit is $37013 -in.representative_income 37017 Representative total house income in the dwelling unit is $37017 -in.representative_income 37019 Representative total house income in the dwelling unit is $37019 -in.representative_income 37022 Representative total house income in the dwelling unit is $37022 -in.representative_income 37029 Representative total house income in the dwelling unit is $37029 -in.representative_income 37030 Representative total house income in the dwelling unit is $37030 -in.representative_income 37033 Representative total house income in the dwelling unit is $37033 -in.representative_income 37034 Representative total house income in the dwelling unit is $37034 -in.representative_income 37038 Representative total house income in the dwelling unit is $37038 -in.representative_income 37042 Representative total house income in the dwelling unit is $37042 -in.representative_income 37050 Representative total house income in the dwelling unit is $37050 -in.representative_income 37060 Representative total house income in the dwelling unit is $37060 -in.representative_income 37066 Representative total house income in the dwelling unit is $37066 -in.representative_income 37069 Representative total house income in the dwelling unit is $37069 -in.representative_income 37071 Representative total house income in the dwelling unit is $37071 -in.representative_income 37072 Representative total house income in the dwelling unit is $37072 -in.representative_income 37080 Representative total house income in the dwelling unit is $37080 -in.representative_income 37085 Representative total house income in the dwelling unit is $37085 -in.representative_income 37088 Representative total house income in the dwelling unit is $37088 -in.representative_income 37091 Representative total house income in the dwelling unit is $37091 -in.representative_income 37092 Representative total house income in the dwelling unit is $37092 -in.representative_income 37093 Representative total house income in the dwelling unit is $37093 -in.representative_income 37098 Representative total house income in the dwelling unit is $37098 -in.representative_income 37101 Representative total house income in the dwelling unit is $37101 -in.representative_income 37103 Representative total house income in the dwelling unit is $37103 -in.representative_income 37112 Representative total house income in the dwelling unit is $37112 -in.representative_income 37113 Representative total house income in the dwelling unit is $37113 -in.representative_income 37117 Representative total house income in the dwelling unit is $37117 -in.representative_income 37122 Representative total house income in the dwelling unit is $37122 -in.representative_income 37123 Representative total house income in the dwelling unit is $37123 -in.representative_income 37132 Representative total house income in the dwelling unit is $37132 -in.representative_income 37133 Representative total house income in the dwelling unit is $37133 -in.representative_income 37135 Representative total house income in the dwelling unit is $37135 -in.representative_income 37136 Representative total house income in the dwelling unit is $37136 -in.representative_income 37137 Representative total house income in the dwelling unit is $37137 -in.representative_income 37142 Representative total house income in the dwelling unit is $37142 -in.representative_income 37143 Representative total house income in the dwelling unit is $37143 -in.representative_income 37146 Representative total house income in the dwelling unit is $37146 -in.representative_income 37153 Representative total house income in the dwelling unit is $37153 -in.representative_income 37154 Representative total house income in the dwelling unit is $37154 -in.representative_income 37158 Representative total house income in the dwelling unit is $37158 -in.representative_income 37163 Representative total house income in the dwelling unit is $37163 -in.representative_income 37164 Representative total house income in the dwelling unit is $37164 -in.representative_income 37168 Representative total house income in the dwelling unit is $37168 -in.representative_income 37169 Representative total house income in the dwelling unit is $37169 -in.representative_income 37173 Representative total house income in the dwelling unit is $37173 -in.representative_income 37174 Representative total house income in the dwelling unit is $37174 -in.representative_income 37177 Representative total house income in the dwelling unit is $37177 -in.representative_income 37184 Representative total house income in the dwelling unit is $37184 -in.representative_income 37190 Representative total house income in the dwelling unit is $37190 -in.representative_income 37194 Representative total house income in the dwelling unit is $37194 -in.representative_income 37195 Representative total house income in the dwelling unit is $37195 -in.representative_income 37202 Representative total house income in the dwelling unit is $37202 -in.representative_income 37204 Representative total house income in the dwelling unit is $37204 -in.representative_income 37205 Representative total house income in the dwelling unit is $37205 -in.representative_income 37206 Representative total house income in the dwelling unit is $37206 -in.representative_income 37207 Representative total house income in the dwelling unit is $37207 -in.representative_income 37210 Representative total house income in the dwelling unit is $37210 -in.representative_income 37211 Representative total house income in the dwelling unit is $37211 -in.representative_income 37214 Representative total house income in the dwelling unit is $37214 -in.representative_income 37215 Representative total house income in the dwelling unit is $37215 -in.representative_income 37222 Representative total house income in the dwelling unit is $37222 -in.representative_income 37224 Representative total house income in the dwelling unit is $37224 -in.representative_income 37227 Representative total house income in the dwelling unit is $37227 -in.representative_income 37228 Representative total house income in the dwelling unit is $37228 -in.representative_income 37233 Representative total house income in the dwelling unit is $37233 -in.representative_income 37235 Representative total house income in the dwelling unit is $37235 -in.representative_income 37241 Representative total house income in the dwelling unit is $37241 -in.representative_income 37246 Representative total house income in the dwelling unit is $37246 -in.representative_income 37249 Representative total house income in the dwelling unit is $37249 -in.representative_income 37259 Representative total house income in the dwelling unit is $37259 -in.representative_income 37267 Representative total house income in the dwelling unit is $37267 -in.representative_income 37269 Representative total house income in the dwelling unit is $37269 -in.representative_income 37270 Representative total house income in the dwelling unit is $37270 -in.representative_income 37274 Representative total house income in the dwelling unit is $37274 -in.representative_income 37276 Representative total house income in the dwelling unit is $37276 -in.representative_income 37281 Representative total house income in the dwelling unit is $37281 -in.representative_income 37287 Representative total house income in the dwelling unit is $37287 -in.representative_income 37291 Representative total house income in the dwelling unit is $37291 -in.representative_income 37292 Representative total house income in the dwelling unit is $37292 -in.representative_income 37295 Representative total house income in the dwelling unit is $37295 -in.representative_income 37297 Representative total house income in the dwelling unit is $37297 -in.representative_income 37298 Representative total house income in the dwelling unit is $37298 -in.representative_income 37325 Representative total house income in the dwelling unit is $37325 -in.representative_income 37330 Representative total house income in the dwelling unit is $37330 -in.representative_income 37333 Representative total house income in the dwelling unit is $37333 -in.representative_income 37339 Representative total house income in the dwelling unit is $37339 -in.representative_income 37345 Representative total house income in the dwelling unit is $37345 -in.representative_income 37351 Representative total house income in the dwelling unit is $37351 -in.representative_income 37354 Representative total house income in the dwelling unit is $37354 -in.representative_income 37356 Representative total house income in the dwelling unit is $37356 -in.representative_income 37359 Representative total house income in the dwelling unit is $37359 -in.representative_income 37362 Representative total house income in the dwelling unit is $37362 -in.representative_income 37364 Representative total house income in the dwelling unit is $37364 -in.representative_income 37365 Representative total house income in the dwelling unit is $37365 -in.representative_income 37366 Representative total house income in the dwelling unit is $37366 -in.representative_income 37369 Representative total house income in the dwelling unit is $37369 -in.representative_income 37375 Representative total house income in the dwelling unit is $37375 -in.representative_income 37380 Representative total house income in the dwelling unit is $37380 -in.representative_income 37384 Representative total house income in the dwelling unit is $37384 -in.representative_income 37386 Representative total house income in the dwelling unit is $37386 -in.representative_income 37388 Representative total house income in the dwelling unit is $37388 -in.representative_income 37389 Representative total house income in the dwelling unit is $37389 -in.representative_income 37390 Representative total house income in the dwelling unit is $37390 -in.representative_income 37398 Representative total house income in the dwelling unit is $37398 -in.representative_income 37401 Representative total house income in the dwelling unit is $37401 -in.representative_income 37410 Representative total house income in the dwelling unit is $37410 -in.representative_income 37411 Representative total house income in the dwelling unit is $37411 -in.representative_income 37413 Representative total house income in the dwelling unit is $37413 -in.representative_income 37416 Representative total house income in the dwelling unit is $37416 -in.representative_income 37421 Representative total house income in the dwelling unit is $37421 -in.representative_income 37424 Representative total house income in the dwelling unit is $37424 -in.representative_income 37427 Representative total house income in the dwelling unit is $37427 -in.representative_income 37428 Representative total house income in the dwelling unit is $37428 -in.representative_income 37431 Representative total house income in the dwelling unit is $37431 -in.representative_income 37436 Representative total house income in the dwelling unit is $37436 -in.representative_income 37438 Representative total house income in the dwelling unit is $37438 -in.representative_income 37442 Representative total house income in the dwelling unit is $37442 -in.representative_income 37446 Representative total house income in the dwelling unit is $37446 -in.representative_income 37451 Representative total house income in the dwelling unit is $37451 -in.representative_income 37459 Representative total house income in the dwelling unit is $37459 -in.representative_income 37463 Representative total house income in the dwelling unit is $37463 -in.representative_income 37464 Representative total house income in the dwelling unit is $37464 -in.representative_income 37472 Representative total house income in the dwelling unit is $37472 -in.representative_income 37473 Representative total house income in the dwelling unit is $37473 -in.representative_income 37474 Representative total house income in the dwelling unit is $37474 -in.representative_income 37476 Representative total house income in the dwelling unit is $37476 -in.representative_income 37481 Representative total house income in the dwelling unit is $37481 -in.representative_income 37483 Representative total house income in the dwelling unit is $37483 -in.representative_income 37484 Representative total house income in the dwelling unit is $37484 -in.representative_income 37485 Representative total house income in the dwelling unit is $37485 -in.representative_income 37491 Representative total house income in the dwelling unit is $37491 -in.representative_income 37492 Representative total house income in the dwelling unit is $37492 -in.representative_income 37497 Representative total house income in the dwelling unit is $37497 -in.representative_income 37512 Representative total house income in the dwelling unit is $37512 -in.representative_income 37514 Representative total house income in the dwelling unit is $37514 -in.representative_income 37518 Representative total house income in the dwelling unit is $37518 -in.representative_income 37524 Representative total house income in the dwelling unit is $37524 -in.representative_income 37527 Representative total house income in the dwelling unit is $37527 -in.representative_income 37544 Representative total house income in the dwelling unit is $37544 -in.representative_income 37546 Representative total house income in the dwelling unit is $37546 -in.representative_income 37554 Representative total house income in the dwelling unit is $37554 -in.representative_income 37557 Representative total house income in the dwelling unit is $37557 -in.representative_income 37558 Representative total house income in the dwelling unit is $37558 -in.representative_income 37567 Representative total house income in the dwelling unit is $37567 -in.representative_income 37571 Representative total house income in the dwelling unit is $37571 -in.representative_income 37572 Representative total house income in the dwelling unit is $37572 -in.representative_income 37573 Representative total house income in the dwelling unit is $37573 -in.representative_income 37574 Representative total house income in the dwelling unit is $37574 -in.representative_income 37575 Representative total house income in the dwelling unit is $37575 -in.representative_income 37576 Representative total house income in the dwelling unit is $37576 -in.representative_income 37577 Representative total house income in the dwelling unit is $37577 -in.representative_income 37578 Representative total house income in the dwelling unit is $37578 -in.representative_income 37581 Representative total house income in the dwelling unit is $37581 -in.representative_income 37586 Representative total house income in the dwelling unit is $37586 -in.representative_income 37587 Representative total house income in the dwelling unit is $37587 -in.representative_income 37596 Representative total house income in the dwelling unit is $37596 -in.representative_income 37598 Representative total house income in the dwelling unit is $37598 -in.representative_income 37600 Representative total house income in the dwelling unit is $37600 -in.representative_income 37607 Representative total house income in the dwelling unit is $37607 -in.representative_income 37613 Representative total house income in the dwelling unit is $37613 -in.representative_income 37618 Representative total house income in the dwelling unit is $37618 -in.representative_income 37621 Representative total house income in the dwelling unit is $37621 -in.representative_income 37625 Representative total house income in the dwelling unit is $37625 -in.representative_income 37627 Representative total house income in the dwelling unit is $37627 -in.representative_income 37633 Representative total house income in the dwelling unit is $37633 -in.representative_income 37635 Representative total house income in the dwelling unit is $37635 -in.representative_income 37638 Representative total house income in the dwelling unit is $37638 -in.representative_income 37640 Representative total house income in the dwelling unit is $37640 -in.representative_income 37646 Representative total house income in the dwelling unit is $37646 -in.representative_income 37648 Representative total house income in the dwelling unit is $37648 -in.representative_income 37650 Representative total house income in the dwelling unit is $37650 -in.representative_income 37653 Representative total house income in the dwelling unit is $37653 -in.representative_income 37658 Representative total house income in the dwelling unit is $37658 -in.representative_income 37668 Representative total house income in the dwelling unit is $37668 -in.representative_income 37669 Representative total house income in the dwelling unit is $37669 -in.representative_income 37676 Representative total house income in the dwelling unit is $37676 -in.representative_income 37678 Representative total house income in the dwelling unit is $37678 -in.representative_income 37679 Representative total house income in the dwelling unit is $37679 -in.representative_income 37685 Representative total house income in the dwelling unit is $37685 -in.representative_income 37688 Representative total house income in the dwelling unit is $37688 -in.representative_income 37689 Representative total house income in the dwelling unit is $37689 -in.representative_income 37692 Representative total house income in the dwelling unit is $37692 -in.representative_income 37694 Representative total house income in the dwelling unit is $37694 -in.representative_income 37695 Representative total house income in the dwelling unit is $37695 -in.representative_income 37698 Representative total house income in the dwelling unit is $37698 -in.representative_income 37701 Representative total house income in the dwelling unit is $37701 -in.representative_income 37709 Representative total house income in the dwelling unit is $37709 -in.representative_income 37710 Representative total house income in the dwelling unit is $37710 -in.representative_income 37712 Representative total house income in the dwelling unit is $37712 -in.representative_income 37713 Representative total house income in the dwelling unit is $37713 -in.representative_income 37721 Representative total house income in the dwelling unit is $37721 -in.representative_income 37723 Representative total house income in the dwelling unit is $37723 -in.representative_income 37729 Representative total house income in the dwelling unit is $37729 -in.representative_income 37730 Representative total house income in the dwelling unit is $37730 -in.representative_income 37732 Representative total house income in the dwelling unit is $37732 -in.representative_income 37734 Representative total house income in the dwelling unit is $37734 -in.representative_income 37742 Representative total house income in the dwelling unit is $37742 -in.representative_income 37745 Representative total house income in the dwelling unit is $37745 -in.representative_income 37747 Representative total house income in the dwelling unit is $37747 -in.representative_income 37748 Representative total house income in the dwelling unit is $37748 -in.representative_income 37751 Representative total house income in the dwelling unit is $37751 -in.representative_income 37755 Representative total house income in the dwelling unit is $37755 -in.representative_income 37759 Representative total house income in the dwelling unit is $37759 -in.representative_income 37763 Representative total house income in the dwelling unit is $37763 -in.representative_income 37764 Representative total house income in the dwelling unit is $37764 -in.representative_income 37769 Representative total house income in the dwelling unit is $37769 -in.representative_income 37771 Representative total house income in the dwelling unit is $37771 -in.representative_income 37774 Representative total house income in the dwelling unit is $37774 -in.representative_income 37779 Representative total house income in the dwelling unit is $37779 -in.representative_income 37784 Representative total house income in the dwelling unit is $37784 -in.representative_income 37786 Representative total house income in the dwelling unit is $37786 -in.representative_income 37787 Representative total house income in the dwelling unit is $37787 -in.representative_income 37793 Representative total house income in the dwelling unit is $37793 -in.representative_income 37797 Representative total house income in the dwelling unit is $37797 -in.representative_income 37800 Representative total house income in the dwelling unit is $37800 -in.representative_income 37801 Representative total house income in the dwelling unit is $37801 -in.representative_income 37803 Representative total house income in the dwelling unit is $37803 -in.representative_income 37807 Representative total house income in the dwelling unit is $37807 -in.representative_income 37813 Representative total house income in the dwelling unit is $37813 -in.representative_income 37817 Representative total house income in the dwelling unit is $37817 -in.representative_income 37818 Representative total house income in the dwelling unit is $37818 -in.representative_income 37821 Representative total house income in the dwelling unit is $37821 -in.representative_income 37828 Representative total house income in the dwelling unit is $37828 -in.representative_income 37829 Representative total house income in the dwelling unit is $37829 -in.representative_income 37834 Representative total house income in the dwelling unit is $37834 -in.representative_income 37837 Representative total house income in the dwelling unit is $37837 -in.representative_income 37838 Representative total house income in the dwelling unit is $37838 -in.representative_income 37840 Representative total house income in the dwelling unit is $37840 -in.representative_income 37849 Representative total house income in the dwelling unit is $37849 -in.representative_income 37854 Representative total house income in the dwelling unit is $37854 -in.representative_income 37860 Representative total house income in the dwelling unit is $37860 -in.representative_income 37865 Representative total house income in the dwelling unit is $37865 -in.representative_income 37867 Representative total house income in the dwelling unit is $37867 -in.representative_income 37871 Representative total house income in the dwelling unit is $37871 -in.representative_income 37873 Representative total house income in the dwelling unit is $37873 -in.representative_income 37880 Representative total house income in the dwelling unit is $37880 -in.representative_income 37881 Representative total house income in the dwelling unit is $37881 -in.representative_income 37891 Representative total house income in the dwelling unit is $37891 -in.representative_income 37892 Representative total house income in the dwelling unit is $37892 -in.representative_income 37893 Representative total house income in the dwelling unit is $37893 -in.representative_income 37898 Representative total house income in the dwelling unit is $37898 -in.representative_income 37902 Representative total house income in the dwelling unit is $37902 -in.representative_income 37903 Representative total house income in the dwelling unit is $37903 -in.representative_income 37904 Representative total house income in the dwelling unit is $37904 -in.representative_income 37906 Representative total house income in the dwelling unit is $37906 -in.representative_income 37910 Representative total house income in the dwelling unit is $37910 -in.representative_income 37914 Representative total house income in the dwelling unit is $37914 -in.representative_income 37917 Representative total house income in the dwelling unit is $37917 -in.representative_income 37922 Representative total house income in the dwelling unit is $37922 -in.representative_income 37923 Representative total house income in the dwelling unit is $37923 -in.representative_income 37925 Representative total house income in the dwelling unit is $37925 -in.representative_income 37935 Representative total house income in the dwelling unit is $37935 -in.representative_income 37941 Representative total house income in the dwelling unit is $37941 -in.representative_income 37951 Representative total house income in the dwelling unit is $37951 -in.representative_income 37957 Representative total house income in the dwelling unit is $37957 -in.representative_income 37958 Representative total house income in the dwelling unit is $37958 -in.representative_income 37962 Representative total house income in the dwelling unit is $37962 -in.representative_income 37963 Representative total house income in the dwelling unit is $37963 -in.representative_income 37966 Representative total house income in the dwelling unit is $37966 -in.representative_income 37968 Representative total house income in the dwelling unit is $37968 -in.representative_income 37970 Representative total house income in the dwelling unit is $37970 -in.representative_income 37971 Representative total house income in the dwelling unit is $37971 -in.representative_income 37976 Representative total house income in the dwelling unit is $37976 -in.representative_income 37979 Representative total house income in the dwelling unit is $37979 -in.representative_income 37981 Representative total house income in the dwelling unit is $37981 -in.representative_income 37987 Representative total house income in the dwelling unit is $37987 -in.representative_income 37990 Representative total house income in the dwelling unit is $37990 -in.representative_income 37992 Representative total house income in the dwelling unit is $37992 -in.representative_income 37997 Representative total house income in the dwelling unit is $37997 -in.representative_income 38000 Representative total house income in the dwelling unit is $38000 -in.representative_income 38002 Representative total house income in the dwelling unit is $38002 -in.representative_income 38004 Representative total house income in the dwelling unit is $38004 -in.representative_income 38008 Representative total house income in the dwelling unit is $38008 -in.representative_income 38011 Representative total house income in the dwelling unit is $38011 -in.representative_income 38012 Representative total house income in the dwelling unit is $38012 -in.representative_income 38019 Representative total house income in the dwelling unit is $38019 -in.representative_income 38020 Representative total house income in the dwelling unit is $38020 -in.representative_income 38029 Representative total house income in the dwelling unit is $38029 -in.representative_income 38033 Representative total house income in the dwelling unit is $38033 -in.representative_income 38037 Representative total house income in the dwelling unit is $38037 -in.representative_income 38043 Representative total house income in the dwelling unit is $38043 -in.representative_income 38044 Representative total house income in the dwelling unit is $38044 -in.representative_income 38050 Representative total house income in the dwelling unit is $38050 -in.representative_income 38052 Representative total house income in the dwelling unit is $38052 -in.representative_income 38054 Representative total house income in the dwelling unit is $38054 -in.representative_income 38058 Representative total house income in the dwelling unit is $38058 -in.representative_income 38061 Representative total house income in the dwelling unit is $38061 -in.representative_income 38062 Representative total house income in the dwelling unit is $38062 -in.representative_income 38063 Representative total house income in the dwelling unit is $38063 -in.representative_income 38065 Representative total house income in the dwelling unit is $38065 -in.representative_income 38071 Representative total house income in the dwelling unit is $38071 -in.representative_income 38082 Representative total house income in the dwelling unit is $38082 -in.representative_income 38084 Representative total house income in the dwelling unit is $38084 -in.representative_income 38086 Representative total house income in the dwelling unit is $38086 -in.representative_income 38088 Representative total house income in the dwelling unit is $38088 -in.representative_income 38093 Representative total house income in the dwelling unit is $38093 -in.representative_income 38103 Representative total house income in the dwelling unit is $38103 -in.representative_income 38107 Representative total house income in the dwelling unit is $38107 -in.representative_income 38108 Representative total house income in the dwelling unit is $38108 -in.representative_income 38112 Representative total house income in the dwelling unit is $38112 -in.representative_income 38113 Representative total house income in the dwelling unit is $38113 -in.representative_income 38114 Representative total house income in the dwelling unit is $38114 -in.representative_income 38123 Representative total house income in the dwelling unit is $38123 -in.representative_income 38124 Representative total house income in the dwelling unit is $38124 -in.representative_income 38130 Representative total house income in the dwelling unit is $38130 -in.representative_income 38135 Representative total house income in the dwelling unit is $38135 -in.representative_income 38140 Representative total house income in the dwelling unit is $38140 -in.representative_income 38143 Representative total house income in the dwelling unit is $38143 -in.representative_income 38153 Representative total house income in the dwelling unit is $38153 -in.representative_income 38155 Representative total house income in the dwelling unit is $38155 -in.representative_income 38162 Representative total house income in the dwelling unit is $38162 -in.representative_income 38163 Representative total house income in the dwelling unit is $38163 -in.representative_income 38175 Representative total house income in the dwelling unit is $38175 -in.representative_income 38176 Representative total house income in the dwelling unit is $38176 -in.representative_income 38177 Representative total house income in the dwelling unit is $38177 -in.representative_income 38178 Representative total house income in the dwelling unit is $38178 -in.representative_income 38180 Representative total house income in the dwelling unit is $38180 -in.representative_income 38183 Representative total house income in the dwelling unit is $38183 -in.representative_income 38185 Representative total house income in the dwelling unit is $38185 -in.representative_income 38188 Representative total house income in the dwelling unit is $38188 -in.representative_income 38192 Representative total house income in the dwelling unit is $38192 -in.representative_income 38194 Representative total house income in the dwelling unit is $38194 -in.representative_income 38196 Representative total house income in the dwelling unit is $38196 -in.representative_income 38214 Representative total house income in the dwelling unit is $38214 -in.representative_income 38215 Representative total house income in the dwelling unit is $38215 -in.representative_income 38224 Representative total house income in the dwelling unit is $38224 -in.representative_income 38229 Representative total house income in the dwelling unit is $38229 -in.representative_income 38230 Representative total house income in the dwelling unit is $38230 -in.representative_income 38234 Representative total house income in the dwelling unit is $38234 -in.representative_income 38244 Representative total house income in the dwelling unit is $38244 -in.representative_income 38246 Representative total house income in the dwelling unit is $38246 -in.representative_income 38248 Representative total house income in the dwelling unit is $38248 -in.representative_income 38250 Representative total house income in the dwelling unit is $38250 -in.representative_income 38261 Representative total house income in the dwelling unit is $38261 -in.representative_income 38267 Representative total house income in the dwelling unit is $38267 -in.representative_income 38268 Representative total house income in the dwelling unit is $38268 -in.representative_income 38274 Representative total house income in the dwelling unit is $38274 -in.representative_income 38277 Representative total house income in the dwelling unit is $38277 -in.representative_income 38283 Representative total house income in the dwelling unit is $38283 -in.representative_income 38284 Representative total house income in the dwelling unit is $38284 -in.representative_income 38287 Representative total house income in the dwelling unit is $38287 -in.representative_income 38293 Representative total house income in the dwelling unit is $38293 -in.representative_income 38302 Representative total house income in the dwelling unit is $38302 -in.representative_income 38303 Representative total house income in the dwelling unit is $38303 -in.representative_income 38313 Representative total house income in the dwelling unit is $38313 -in.representative_income 38314 Representative total house income in the dwelling unit is $38314 -in.representative_income 38315 Representative total house income in the dwelling unit is $38315 -in.representative_income 38323 Representative total house income in the dwelling unit is $38323 -in.representative_income 38324 Representative total house income in the dwelling unit is $38324 -in.representative_income 38325 Representative total house income in the dwelling unit is $38325 -in.representative_income 38329 Representative total house income in the dwelling unit is $38329 -in.representative_income 38335 Representative total house income in the dwelling unit is $38335 -in.representative_income 38350 Representative total house income in the dwelling unit is $38350 -in.representative_income 38355 Representative total house income in the dwelling unit is $38355 -in.representative_income 38356 Representative total house income in the dwelling unit is $38356 -in.representative_income 38357 Representative total house income in the dwelling unit is $38357 -in.representative_income 38360 Representative total house income in the dwelling unit is $38360 -in.representative_income 38363 Representative total house income in the dwelling unit is $38363 -in.representative_income 38365 Representative total house income in the dwelling unit is $38365 -in.representative_income 38370 Representative total house income in the dwelling unit is $38370 -in.representative_income 38376 Representative total house income in the dwelling unit is $38376 -in.representative_income 38379 Representative total house income in the dwelling unit is $38379 -in.representative_income 38380 Representative total house income in the dwelling unit is $38380 -in.representative_income 38386 Representative total house income in the dwelling unit is $38386 -in.representative_income 38388 Representative total house income in the dwelling unit is $38388 -in.representative_income 38389 Representative total house income in the dwelling unit is $38389 -in.representative_income 38390 Representative total house income in the dwelling unit is $38390 -in.representative_income 38396 Representative total house income in the dwelling unit is $38396 -in.representative_income 38404 Representative total house income in the dwelling unit is $38404 -in.representative_income 38406 Representative total house income in the dwelling unit is $38406 -in.representative_income 38410 Representative total house income in the dwelling unit is $38410 -in.representative_income 38416 Representative total house income in the dwelling unit is $38416 -in.representative_income 38419 Representative total house income in the dwelling unit is $38419 -in.representative_income 38422 Representative total house income in the dwelling unit is $38422 -in.representative_income 38423 Representative total house income in the dwelling unit is $38423 -in.representative_income 38429 Representative total house income in the dwelling unit is $38429 -in.representative_income 38430 Representative total house income in the dwelling unit is $38430 -in.representative_income 38431 Representative total house income in the dwelling unit is $38431 -in.representative_income 38432 Representative total house income in the dwelling unit is $38432 -in.representative_income 38433 Representative total house income in the dwelling unit is $38433 -in.representative_income 38436 Representative total house income in the dwelling unit is $38436 -in.representative_income 38440 Representative total house income in the dwelling unit is $38440 -in.representative_income 38444 Representative total house income in the dwelling unit is $38444 -in.representative_income 38450 Representative total house income in the dwelling unit is $38450 -in.representative_income 38451 Representative total house income in the dwelling unit is $38451 -in.representative_income 38462 Representative total house income in the dwelling unit is $38462 -in.representative_income 38465 Representative total house income in the dwelling unit is $38465 -in.representative_income 38469 Representative total house income in the dwelling unit is $38469 -in.representative_income 38473 Representative total house income in the dwelling unit is $38473 -in.representative_income 38476 Representative total house income in the dwelling unit is $38476 -in.representative_income 38482 Representative total house income in the dwelling unit is $38482 -in.representative_income 38487 Representative total house income in the dwelling unit is $38487 -in.representative_income 38493 Representative total house income in the dwelling unit is $38493 -in.representative_income 38494 Representative total house income in the dwelling unit is $38494 -in.representative_income 38498 Representative total house income in the dwelling unit is $38498 -in.representative_income 38504 Representative total house income in the dwelling unit is $38504 -in.representative_income 38507 Representative total house income in the dwelling unit is $38507 -in.representative_income 38508 Representative total house income in the dwelling unit is $38508 -in.representative_income 38514 Representative total house income in the dwelling unit is $38514 -in.representative_income 38515 Representative total house income in the dwelling unit is $38515 -in.representative_income 38522 Representative total house income in the dwelling unit is $38522 -in.representative_income 38524 Representative total house income in the dwelling unit is $38524 -in.representative_income 38525 Representative total house income in the dwelling unit is $38525 -in.representative_income 38535 Representative total house income in the dwelling unit is $38535 -in.representative_income 38537 Representative total house income in the dwelling unit is $38537 -in.representative_income 38541 Representative total house income in the dwelling unit is $38541 -in.representative_income 38545 Representative total house income in the dwelling unit is $38545 -in.representative_income 38546 Representative total house income in the dwelling unit is $38546 -in.representative_income 38547 Representative total house income in the dwelling unit is $38547 -in.representative_income 38554 Representative total house income in the dwelling unit is $38554 -in.representative_income 38555 Representative total house income in the dwelling unit is $38555 -in.representative_income 38567 Representative total house income in the dwelling unit is $38567 -in.representative_income 38573 Representative total house income in the dwelling unit is $38573 -in.representative_income 38576 Representative total house income in the dwelling unit is $38576 -in.representative_income 38577 Representative total house income in the dwelling unit is $38577 -in.representative_income 38579 Representative total house income in the dwelling unit is $38579 -in.representative_income 38584 Representative total house income in the dwelling unit is $38584 -in.representative_income 38587 Representative total house income in the dwelling unit is $38587 -in.representative_income 38588 Representative total house income in the dwelling unit is $38588 -in.representative_income 38591 Representative total house income in the dwelling unit is $38591 -in.representative_income 38597 Representative total house income in the dwelling unit is $38597 -in.representative_income 38598 Representative total house income in the dwelling unit is $38598 -in.representative_income 38603 Representative total house income in the dwelling unit is $38603 -in.representative_income 38605 Representative total house income in the dwelling unit is $38605 -in.representative_income 38607 Representative total house income in the dwelling unit is $38607 -in.representative_income 38608 Representative total house income in the dwelling unit is $38608 -in.representative_income 38616 Representative total house income in the dwelling unit is $38616 -in.representative_income 38618 Representative total house income in the dwelling unit is $38618 -in.representative_income 38619 Representative total house income in the dwelling unit is $38619 -in.representative_income 38621 Representative total house income in the dwelling unit is $38621 -in.representative_income 38627 Representative total house income in the dwelling unit is $38627 -in.representative_income 38630 Representative total house income in the dwelling unit is $38630 -in.representative_income 38633 Representative total house income in the dwelling unit is $38633 -in.representative_income 38639 Representative total house income in the dwelling unit is $38639 -in.representative_income 38641 Representative total house income in the dwelling unit is $38641 -in.representative_income 38644 Representative total house income in the dwelling unit is $38644 -in.representative_income 38648 Representative total house income in the dwelling unit is $38648 -in.representative_income 38652 Representative total house income in the dwelling unit is $38652 -in.representative_income 38655 Representative total house income in the dwelling unit is $38655 -in.representative_income 38659 Representative total house income in the dwelling unit is $38659 -in.representative_income 38665 Representative total house income in the dwelling unit is $38665 -in.representative_income 38668 Representative total house income in the dwelling unit is $38668 -in.representative_income 38679 Representative total house income in the dwelling unit is $38679 -in.representative_income 38681 Representative total house income in the dwelling unit is $38681 -in.representative_income 38683 Representative total house income in the dwelling unit is $38683 -in.representative_income 38687 Representative total house income in the dwelling unit is $38687 -in.representative_income 38689 Representative total house income in the dwelling unit is $38689 -in.representative_income 38693 Representative total house income in the dwelling unit is $38693 -in.representative_income 38697 Representative total house income in the dwelling unit is $38697 -in.representative_income 38703 Representative total house income in the dwelling unit is $38703 -in.representative_income 38704 Representative total house income in the dwelling unit is $38704 -in.representative_income 38709 Representative total house income in the dwelling unit is $38709 -in.representative_income 38713 Representative total house income in the dwelling unit is $38713 -in.representative_income 38716 Representative total house income in the dwelling unit is $38716 -in.representative_income 38717 Representative total house income in the dwelling unit is $38717 -in.representative_income 38719 Representative total house income in the dwelling unit is $38719 -in.representative_income 38720 Representative total house income in the dwelling unit is $38720 -in.representative_income 38724 Representative total house income in the dwelling unit is $38724 -in.representative_income 38731 Representative total house income in the dwelling unit is $38731 -in.representative_income 38735 Representative total house income in the dwelling unit is $38735 -in.representative_income 38736 Representative total house income in the dwelling unit is $38736 -in.representative_income 38739 Representative total house income in the dwelling unit is $38739 -in.representative_income 38742 Representative total house income in the dwelling unit is $38742 -in.representative_income 38749 Representative total house income in the dwelling unit is $38749 -in.representative_income 38752 Representative total house income in the dwelling unit is $38752 -in.representative_income 38764 Representative total house income in the dwelling unit is $38764 -in.representative_income 38767 Representative total house income in the dwelling unit is $38767 -in.representative_income 38769 Representative total house income in the dwelling unit is $38769 -in.representative_income 38771 Representative total house income in the dwelling unit is $38771 -in.representative_income 38779 Representative total house income in the dwelling unit is $38779 -in.representative_income 38782 Representative total house income in the dwelling unit is $38782 -in.representative_income 38784 Representative total house income in the dwelling unit is $38784 -in.representative_income 38787 Representative total house income in the dwelling unit is $38787 -in.representative_income 38789 Representative total house income in the dwelling unit is $38789 -in.representative_income 38790 Representative total house income in the dwelling unit is $38790 -in.representative_income 38792 Representative total house income in the dwelling unit is $38792 -in.representative_income 38800 Representative total house income in the dwelling unit is $38800 -in.representative_income 38804 Representative total house income in the dwelling unit is $38804 -in.representative_income 38809 Representative total house income in the dwelling unit is $38809 -in.representative_income 38826 Representative total house income in the dwelling unit is $38826 -in.representative_income 38837 Representative total house income in the dwelling unit is $38837 -in.representative_income 38840 Representative total house income in the dwelling unit is $38840 -in.representative_income 38843 Representative total house income in the dwelling unit is $38843 -in.representative_income 38849 Representative total house income in the dwelling unit is $38849 -in.representative_income 38851 Representative total house income in the dwelling unit is $38851 -in.representative_income 38859 Representative total house income in the dwelling unit is $38859 -in.representative_income 38864 Representative total house income in the dwelling unit is $38864 -in.representative_income 38870 Representative total house income in the dwelling unit is $38870 -in.representative_income 38873 Representative total house income in the dwelling unit is $38873 -in.representative_income 38881 Representative total house income in the dwelling unit is $38881 -in.representative_income 38883 Representative total house income in the dwelling unit is $38883 -in.representative_income 38884 Representative total house income in the dwelling unit is $38884 -in.representative_income 38886 Representative total house income in the dwelling unit is $38886 -in.representative_income 38891 Representative total house income in the dwelling unit is $38891 -in.representative_income 38897 Representative total house income in the dwelling unit is $38897 -in.representative_income 38898 Representative total house income in the dwelling unit is $38898 -in.representative_income 38901 Representative total house income in the dwelling unit is $38901 -in.representative_income 38904 Representative total house income in the dwelling unit is $38904 -in.representative_income 38906 Representative total house income in the dwelling unit is $38906 -in.representative_income 38908 Representative total house income in the dwelling unit is $38908 -in.representative_income 38911 Representative total house income in the dwelling unit is $38911 -in.representative_income 38912 Representative total house income in the dwelling unit is $38912 -in.representative_income 38915 Representative total house income in the dwelling unit is $38915 -in.representative_income 38918 Representative total house income in the dwelling unit is $38918 -in.representative_income 38929 Representative total house income in the dwelling unit is $38929 -in.representative_income 38934 Representative total house income in the dwelling unit is $38934 -in.representative_income 38948 Representative total house income in the dwelling unit is $38948 -in.representative_income 38962 Representative total house income in the dwelling unit is $38962 -in.representative_income 38966 Representative total house income in the dwelling unit is $38966 -in.representative_income 38968 Representative total house income in the dwelling unit is $38968 -in.representative_income 38972 Representative total house income in the dwelling unit is $38972 -in.representative_income 38988 Representative total house income in the dwelling unit is $38988 -in.representative_income 38989 Representative total house income in the dwelling unit is $38989 -in.representative_income 38992 Representative total house income in the dwelling unit is $38992 -in.representative_income 38999 Representative total house income in the dwelling unit is $38999 -in.representative_income 39005 Representative total house income in the dwelling unit is $39005 -in.representative_income 39006 Representative total house income in the dwelling unit is $39006 -in.representative_income 39009 Representative total house income in the dwelling unit is $39009 -in.representative_income 39010 Representative total house income in the dwelling unit is $39010 -in.representative_income 39012 Representative total house income in the dwelling unit is $39012 -in.representative_income 39014 Representative total house income in the dwelling unit is $39014 -in.representative_income 39020 Representative total house income in the dwelling unit is $39020 -in.representative_income 39021 Representative total house income in the dwelling unit is $39021 -in.representative_income 39031 Representative total house income in the dwelling unit is $39031 -in.representative_income 39042 Representative total house income in the dwelling unit is $39042 -in.representative_income 39046 Representative total house income in the dwelling unit is $39046 -in.representative_income 39049 Representative total house income in the dwelling unit is $39049 -in.representative_income 39058 Representative total house income in the dwelling unit is $39058 -in.representative_income 39059 Representative total house income in the dwelling unit is $39059 -in.representative_income 39062 Representative total house income in the dwelling unit is $39062 -in.representative_income 39071 Representative total house income in the dwelling unit is $39071 -in.representative_income 39073 Representative total house income in the dwelling unit is $39073 -in.representative_income 39083 Representative total house income in the dwelling unit is $39083 -in.representative_income 39084 Representative total house income in the dwelling unit is $39084 -in.representative_income 39092 Representative total house income in the dwelling unit is $39092 -in.representative_income 39093 Representative total house income in the dwelling unit is $39093 -in.representative_income 39095 Representative total house income in the dwelling unit is $39095 -in.representative_income 39113 Representative total house income in the dwelling unit is $39113 -in.representative_income 39121 Representative total house income in the dwelling unit is $39121 -in.representative_income 39123 Representative total house income in the dwelling unit is $39123 -in.representative_income 39126 Representative total house income in the dwelling unit is $39126 -in.representative_income 39134 Representative total house income in the dwelling unit is $39134 -in.representative_income 39144 Representative total house income in the dwelling unit is $39144 -in.representative_income 39147 Representative total house income in the dwelling unit is $39147 -in.representative_income 39148 Representative total house income in the dwelling unit is $39148 -in.representative_income 39154 Representative total house income in the dwelling unit is $39154 -in.representative_income 39157 Representative total house income in the dwelling unit is $39157 -in.representative_income 39163 Representative total house income in the dwelling unit is $39163 -in.representative_income 39170 Representative total house income in the dwelling unit is $39170 -in.representative_income 39173 Representative total house income in the dwelling unit is $39173 -in.representative_income 39181 Representative total house income in the dwelling unit is $39181 -in.representative_income 39185 Representative total house income in the dwelling unit is $39185 -in.representative_income 39188 Representative total house income in the dwelling unit is $39188 -in.representative_income 39191 Representative total house income in the dwelling unit is $39191 -in.representative_income 39194 Representative total house income in the dwelling unit is $39194 -in.representative_income 39195 Representative total house income in the dwelling unit is $39195 -in.representative_income 39202 Representative total house income in the dwelling unit is $39202 -in.representative_income 39206 Representative total house income in the dwelling unit is $39206 -in.representative_income 39208 Representative total house income in the dwelling unit is $39208 -in.representative_income 39213 Representative total house income in the dwelling unit is $39213 -in.representative_income 39214 Representative total house income in the dwelling unit is $39214 -in.representative_income 39216 Representative total house income in the dwelling unit is $39216 -in.representative_income 39222 Representative total house income in the dwelling unit is $39222 -in.representative_income 39223 Representative total house income in the dwelling unit is $39223 -in.representative_income 39231 Representative total house income in the dwelling unit is $39231 -in.representative_income 39234 Representative total house income in the dwelling unit is $39234 -in.representative_income 39237 Representative total house income in the dwelling unit is $39237 -in.representative_income 39238 Representative total house income in the dwelling unit is $39238 -in.representative_income 39243 Representative total house income in the dwelling unit is $39243 -in.representative_income 39244 Representative total house income in the dwelling unit is $39244 -in.representative_income 39246 Representative total house income in the dwelling unit is $39246 -in.representative_income 39254 Representative total house income in the dwelling unit is $39254 -in.representative_income 39274 Representative total house income in the dwelling unit is $39274 -in.representative_income 39278 Representative total house income in the dwelling unit is $39278 -in.representative_income 39284 Representative total house income in the dwelling unit is $39284 -in.representative_income 39288 Representative total house income in the dwelling unit is $39288 -in.representative_income 39295 Representative total house income in the dwelling unit is $39295 -in.representative_income 39298 Representative total house income in the dwelling unit is $39298 -in.representative_income 39315 Representative total house income in the dwelling unit is $39315 -in.representative_income 39319 Representative total house income in the dwelling unit is $39319 -in.representative_income 39329 Representative total house income in the dwelling unit is $39329 -in.representative_income 39331 Representative total house income in the dwelling unit is $39331 -in.representative_income 39337 Representative total house income in the dwelling unit is $39337 -in.representative_income 39342 Representative total house income in the dwelling unit is $39342 -in.representative_income 39345 Representative total house income in the dwelling unit is $39345 -in.representative_income 39350 Representative total house income in the dwelling unit is $39350 -in.representative_income 39351 Representative total house income in the dwelling unit is $39351 -in.representative_income 39360 Representative total house income in the dwelling unit is $39360 -in.representative_income 39362 Representative total house income in the dwelling unit is $39362 -in.representative_income 39363 Representative total house income in the dwelling unit is $39363 -in.representative_income 39369 Representative total house income in the dwelling unit is $39369 -in.representative_income 39381 Representative total house income in the dwelling unit is $39381 -in.representative_income 39383 Representative total house income in the dwelling unit is $39383 -in.representative_income 39396 Representative total house income in the dwelling unit is $39396 -in.representative_income 39401 Representative total house income in the dwelling unit is $39401 -in.representative_income 39406 Representative total house income in the dwelling unit is $39406 -in.representative_income 39413 Representative total house income in the dwelling unit is $39413 -in.representative_income 39436 Representative total house income in the dwelling unit is $39436 -in.representative_income 39437 Representative total house income in the dwelling unit is $39437 -in.representative_income 39438 Representative total house income in the dwelling unit is $39438 -in.representative_income 39442 Representative total house income in the dwelling unit is $39442 -in.representative_income 39446 Representative total house income in the dwelling unit is $39446 -in.representative_income 39463 Representative total house income in the dwelling unit is $39463 -in.representative_income 39473 Representative total house income in the dwelling unit is $39473 -in.representative_income 39486 Representative total house income in the dwelling unit is $39486 -in.representative_income 39491 Representative total house income in the dwelling unit is $39491 -in.representative_income 39497 Representative total house income in the dwelling unit is $39497 -in.representative_income 39502 Representative total house income in the dwelling unit is $39502 -in.representative_income 39505 Representative total house income in the dwelling unit is $39505 -in.representative_income 39510 Representative total house income in the dwelling unit is $39510 -in.representative_income 39515 Representative total house income in the dwelling unit is $39515 -in.representative_income 39527 Representative total house income in the dwelling unit is $39527 -in.representative_income 39535 Representative total house income in the dwelling unit is $39535 -in.representative_income 39545 Representative total house income in the dwelling unit is $39545 -in.representative_income 39547 Representative total house income in the dwelling unit is $39547 -in.representative_income 39548 Representative total house income in the dwelling unit is $39548 -in.representative_income 39556 Representative total house income in the dwelling unit is $39556 -in.representative_income 39559 Representative total house income in the dwelling unit is $39559 -in.representative_income 39567 Representative total house income in the dwelling unit is $39567 -in.representative_income 39569 Representative total house income in the dwelling unit is $39569 -in.representative_income 39587 Representative total house income in the dwelling unit is $39587 -in.representative_income 39598 Representative total house income in the dwelling unit is $39598 -in.representative_income 39599 Representative total house income in the dwelling unit is $39599 -in.representative_income 39608 Representative total house income in the dwelling unit is $39608 -in.representative_income 39610 Representative total house income in the dwelling unit is $39610 -in.representative_income 39618 Representative total house income in the dwelling unit is $39618 -in.representative_income 39628 Representative total house income in the dwelling unit is $39628 -in.representative_income 39632 Representative total house income in the dwelling unit is $39632 -in.representative_income 39653 Representative total house income in the dwelling unit is $39653 -in.representative_income 39658 Representative total house income in the dwelling unit is $39658 -in.representative_income 39664 Representative total house income in the dwelling unit is $39664 -in.representative_income 39675 Representative total house income in the dwelling unit is $39675 -in.representative_income 39690 Representative total house income in the dwelling unit is $39690 -in.representative_income 39699 Representative total house income in the dwelling unit is $39699 -in.representative_income 39711 Representative total house income in the dwelling unit is $39711 -in.representative_income 39718 Representative total house income in the dwelling unit is $39718 -in.representative_income 39719 Representative total house income in the dwelling unit is $39719 -in.representative_income 39732 Representative total house income in the dwelling unit is $39732 -in.representative_income 39738 Representative total house income in the dwelling unit is $39738 -in.representative_income 39740 Representative total house income in the dwelling unit is $39740 -in.representative_income 39759 Representative total house income in the dwelling unit is $39759 -in.representative_income 39760 Representative total house income in the dwelling unit is $39760 -in.representative_income 39761 Representative total house income in the dwelling unit is $39761 -in.representative_income 39772 Representative total house income in the dwelling unit is $39772 -in.representative_income 39780 Representative total house income in the dwelling unit is $39780 -in.representative_income 39800 Representative total house income in the dwelling unit is $39800 -in.representative_income 39814 Representative total house income in the dwelling unit is $39814 -in.representative_income 39825 Representative total house income in the dwelling unit is $39825 -in.representative_income 39840 Representative total house income in the dwelling unit is $39840 -in.representative_income 39845 Representative total house income in the dwelling unit is $39845 -in.representative_income 39864 Representative total house income in the dwelling unit is $39864 -in.representative_income 39869 Representative total house income in the dwelling unit is $39869 -in.representative_income 39880 Representative total house income in the dwelling unit is $39880 -in.representative_income 39901 Representative total house income in the dwelling unit is $39901 -in.representative_income 39917 Representative total house income in the dwelling unit is $39917 -in.representative_income 39933 Representative total house income in the dwelling unit is $39933 -in.representative_income 39965 Representative total house income in the dwelling unit is $39965 -in.representative_income 39969 Representative total house income in the dwelling unit is $39969 -in.representative_income 39977 Representative total house income in the dwelling unit is $39977 -in.representative_income 39978 Representative total house income in the dwelling unit is $39978 -in.representative_income 39981 Representative total house income in the dwelling unit is $39981 -in.representative_income 40002 Representative total house income in the dwelling unit is $40002 -in.representative_income 40020 Representative total house income in the dwelling unit is $40020 -in.representative_income 40039 Representative total house income in the dwelling unit is $40039 -in.representative_income 40040 Representative total house income in the dwelling unit is $40040 -in.representative_income 40072 Representative total house income in the dwelling unit is $40072 -in.representative_income 40075 Representative total house income in the dwelling unit is $40075 -in.representative_income 40086 Representative total house income in the dwelling unit is $40086 -in.representative_income 40096 Representative total house income in the dwelling unit is $40096 -in.representative_income 40103 Representative total house income in the dwelling unit is $40103 -in.representative_income 40114 Representative total house income in the dwelling unit is $40114 -in.representative_income 40124 Representative total house income in the dwelling unit is $40124 -in.representative_income 40147 Representative total house income in the dwelling unit is $40147 -in.representative_income 40153 Representative total house income in the dwelling unit is $40153 -in.representative_income 40181 Representative total house income in the dwelling unit is $40181 -in.representative_income 40186 Representative total house income in the dwelling unit is $40186 -in.representative_income 40194 Representative total house income in the dwelling unit is $40194 -in.representative_income 40201 Representative total house income in the dwelling unit is $40201 -in.representative_income 40204 Representative total house income in the dwelling unit is $40204 -in.representative_income 40216 Representative total house income in the dwelling unit is $40216 -in.representative_income 40227 Representative total house income in the dwelling unit is $40227 -in.representative_income 40233 Representative total house income in the dwelling unit is $40233 -in.representative_income 40241 Representative total house income in the dwelling unit is $40241 -in.representative_income 40254 Representative total house income in the dwelling unit is $40254 -in.representative_income 40256 Representative total house income in the dwelling unit is $40256 -in.representative_income 40258 Representative total house income in the dwelling unit is $40258 -in.representative_income 40275 Representative total house income in the dwelling unit is $40275 -in.representative_income 40286 Representative total house income in the dwelling unit is $40286 -in.representative_income 40302 Representative total house income in the dwelling unit is $40302 -in.representative_income 40305 Representative total house income in the dwelling unit is $40305 -in.representative_income 40317 Representative total house income in the dwelling unit is $40317 -in.representative_income 40319 Representative total house income in the dwelling unit is $40319 -in.representative_income 40329 Representative total house income in the dwelling unit is $40329 -in.representative_income 40346 Representative total house income in the dwelling unit is $40346 -in.representative_income 40357 Representative total house income in the dwelling unit is $40357 -in.representative_income 40362 Representative total house income in the dwelling unit is $40362 -in.representative_income 40391 Representative total house income in the dwelling unit is $40391 -in.representative_income 40398 Representative total house income in the dwelling unit is $40398 -in.representative_income 40406 Representative total house income in the dwelling unit is $40406 -in.representative_income 40410 Representative total house income in the dwelling unit is $40410 -in.representative_income 40412 Representative total house income in the dwelling unit is $40412 -in.representative_income 40416 Representative total house income in the dwelling unit is $40416 -in.representative_income 40424 Representative total house income in the dwelling unit is $40424 -in.representative_income 40433 Representative total house income in the dwelling unit is $40433 -in.representative_income 40436 Representative total house income in the dwelling unit is $40436 -in.representative_income 40446 Representative total house income in the dwelling unit is $40446 -in.representative_income 40454 Representative total house income in the dwelling unit is $40454 -in.representative_income 40469 Representative total house income in the dwelling unit is $40469 -in.representative_income 40484 Representative total house income in the dwelling unit is $40484 -in.representative_income 40496 Representative total house income in the dwelling unit is $40496 -in.representative_income 40497 Representative total house income in the dwelling unit is $40497 -in.representative_income 40504 Representative total house income in the dwelling unit is $40504 -in.representative_income 40507 Representative total house income in the dwelling unit is $40507 -in.representative_income 40516 Representative total house income in the dwelling unit is $40516 -in.representative_income 40517 Representative total house income in the dwelling unit is $40517 -in.representative_income 40523 Representative total house income in the dwelling unit is $40523 -in.representative_income 40526 Representative total house income in the dwelling unit is $40526 -in.representative_income 40536 Representative total house income in the dwelling unit is $40536 -in.representative_income 40537 Representative total house income in the dwelling unit is $40537 -in.representative_income 40539 Representative total house income in the dwelling unit is $40539 -in.representative_income 40561 Representative total house income in the dwelling unit is $40561 -in.representative_income 40577 Representative total house income in the dwelling unit is $40577 -in.representative_income 40588 Representative total house income in the dwelling unit is $40588 -in.representative_income 40598 Representative total house income in the dwelling unit is $40598 -in.representative_income 40602 Representative total house income in the dwelling unit is $40602 -in.representative_income 40603 Representative total house income in the dwelling unit is $40603 -in.representative_income 40604 Representative total house income in the dwelling unit is $40604 -in.representative_income 40608 Representative total house income in the dwelling unit is $40608 -in.representative_income 40624 Representative total house income in the dwelling unit is $40624 -in.representative_income 40625 Representative total house income in the dwelling unit is $40625 -in.representative_income 40631 Representative total house income in the dwelling unit is $40631 -in.representative_income 40639 Representative total house income in the dwelling unit is $40639 -in.representative_income 40641 Representative total house income in the dwelling unit is $40641 -in.representative_income 40648 Representative total house income in the dwelling unit is $40648 -in.representative_income 40658 Representative total house income in the dwelling unit is $40658 -in.representative_income 40660 Representative total house income in the dwelling unit is $40660 -in.representative_income 40679 Representative total house income in the dwelling unit is $40679 -in.representative_income 40683 Representative total house income in the dwelling unit is $40683 -in.representative_income 40684 Representative total house income in the dwelling unit is $40684 -in.representative_income 40688 Representative total house income in the dwelling unit is $40688 -in.representative_income 40707 Representative total house income in the dwelling unit is $40707 -in.representative_income 40709 Representative total house income in the dwelling unit is $40709 -in.representative_income 40719 Representative total house income in the dwelling unit is $40719 -in.representative_income 40722 Representative total house income in the dwelling unit is $40722 -in.representative_income 40726 Representative total house income in the dwelling unit is $40726 -in.representative_income 40727 Representative total house income in the dwelling unit is $40727 -in.representative_income 40732 Representative total house income in the dwelling unit is $40732 -in.representative_income 40733 Representative total house income in the dwelling unit is $40733 -in.representative_income 40742 Representative total house income in the dwelling unit is $40742 -in.representative_income 40743 Representative total house income in the dwelling unit is $40743 -in.representative_income 40760 Representative total house income in the dwelling unit is $40760 -in.representative_income 40770 Representative total house income in the dwelling unit is $40770 -in.representative_income 40791 Representative total house income in the dwelling unit is $40791 -in.representative_income 40800 Representative total house income in the dwelling unit is $40800 -in.representative_income 40802 Representative total house income in the dwelling unit is $40802 -in.representative_income 40810 Representative total house income in the dwelling unit is $40810 -in.representative_income 40812 Representative total house income in the dwelling unit is $40812 -in.representative_income 40814 Representative total house income in the dwelling unit is $40814 -in.representative_income 40821 Representative total house income in the dwelling unit is $40821 -in.representative_income 40825 Representative total house income in the dwelling unit is $40825 -in.representative_income 40830 Representative total house income in the dwelling unit is $40830 -in.representative_income 40832 Representative total house income in the dwelling unit is $40832 -in.representative_income 40834 Representative total house income in the dwelling unit is $40834 -in.representative_income 40842 Representative total house income in the dwelling unit is $40842 -in.representative_income 40845 Representative total house income in the dwelling unit is $40845 -in.representative_income 40856 Representative total house income in the dwelling unit is $40856 -in.representative_income 40864 Representative total house income in the dwelling unit is $40864 -in.representative_income 40867 Representative total house income in the dwelling unit is $40867 -in.representative_income 40877 Representative total house income in the dwelling unit is $40877 -in.representative_income 40887 Representative total house income in the dwelling unit is $40887 -in.representative_income 40897 Representative total house income in the dwelling unit is $40897 -in.representative_income 40898 Representative total house income in the dwelling unit is $40898 -in.representative_income 40901 Representative total house income in the dwelling unit is $40901 -in.representative_income 40908 Representative total house income in the dwelling unit is $40908 -in.representative_income 40911 Representative total house income in the dwelling unit is $40911 -in.representative_income 40919 Representative total house income in the dwelling unit is $40919 -in.representative_income 40920 Representative total house income in the dwelling unit is $40920 -in.representative_income 40925 Representative total house income in the dwelling unit is $40925 -in.representative_income 40948 Representative total house income in the dwelling unit is $40948 -in.representative_income 40950 Representative total house income in the dwelling unit is $40950 -in.representative_income 40953 Representative total house income in the dwelling unit is $40953 -in.representative_income 40961 Representative total house income in the dwelling unit is $40961 -in.representative_income 40970 Representative total house income in the dwelling unit is $40970 -in.representative_income 40971 Representative total house income in the dwelling unit is $40971 -in.representative_income 40980 Representative total house income in the dwelling unit is $40980 -in.representative_income 40982 Representative total house income in the dwelling unit is $40982 -in.representative_income 40985 Representative total house income in the dwelling unit is $40985 -in.representative_income 40992 Representative total house income in the dwelling unit is $40992 -in.representative_income 41004 Representative total house income in the dwelling unit is $41004 -in.representative_income 41006 Representative total house income in the dwelling unit is $41006 -in.representative_income 41010 Representative total house income in the dwelling unit is $41010 -in.representative_income 41012 Representative total house income in the dwelling unit is $41012 -in.representative_income 41014 Representative total house income in the dwelling unit is $41014 -in.representative_income 41015 Representative total house income in the dwelling unit is $41015 -in.representative_income 41024 Representative total house income in the dwelling unit is $41024 -in.representative_income 41027 Representative total house income in the dwelling unit is $41027 -in.representative_income 41031 Representative total house income in the dwelling unit is $41031 -in.representative_income 41032 Representative total house income in the dwelling unit is $41032 -in.representative_income 41037 Representative total house income in the dwelling unit is $41037 -in.representative_income 41052 Representative total house income in the dwelling unit is $41052 -in.representative_income 41058 Representative total house income in the dwelling unit is $41058 -in.representative_income 41059 Representative total house income in the dwelling unit is $41059 -in.representative_income 41062 Representative total house income in the dwelling unit is $41062 -in.representative_income 41068 Representative total house income in the dwelling unit is $41068 -in.representative_income 41069 Representative total house income in the dwelling unit is $41069 -in.representative_income 41077 Representative total house income in the dwelling unit is $41077 -in.representative_income 41087 Representative total house income in the dwelling unit is $41087 -in.representative_income 41090 Representative total house income in the dwelling unit is $41090 -in.representative_income 41093 Representative total house income in the dwelling unit is $41093 -in.representative_income 41113 Representative total house income in the dwelling unit is $41113 -in.representative_income 41122 Representative total house income in the dwelling unit is $41122 -in.representative_income 41124 Representative total house income in the dwelling unit is $41124 -in.representative_income 41130 Representative total house income in the dwelling unit is $41130 -in.representative_income 41133 Representative total house income in the dwelling unit is $41133 -in.representative_income 41135 Representative total house income in the dwelling unit is $41135 -in.representative_income 41137 Representative total house income in the dwelling unit is $41137 -in.representative_income 41143 Representative total house income in the dwelling unit is $41143 -in.representative_income 41145 Representative total house income in the dwelling unit is $41145 -in.representative_income 41150 Representative total house income in the dwelling unit is $41150 -in.representative_income 41153 Representative total house income in the dwelling unit is $41153 -in.representative_income 41155 Representative total house income in the dwelling unit is $41155 -in.representative_income 41158 Representative total house income in the dwelling unit is $41158 -in.representative_income 41166 Representative total house income in the dwelling unit is $41166 -in.representative_income 41167 Representative total house income in the dwelling unit is $41167 -in.representative_income 41172 Representative total house income in the dwelling unit is $41172 -in.representative_income 41177 Representative total house income in the dwelling unit is $41177 -in.representative_income 41183 Representative total house income in the dwelling unit is $41183 -in.representative_income 41184 Representative total house income in the dwelling unit is $41184 -in.representative_income 41185 Representative total house income in the dwelling unit is $41185 -in.representative_income 41186 Representative total house income in the dwelling unit is $41186 -in.representative_income 41193 Representative total house income in the dwelling unit is $41193 -in.representative_income 41198 Representative total house income in the dwelling unit is $41198 -in.representative_income 41207 Representative total house income in the dwelling unit is $41207 -in.representative_income 41209 Representative total house income in the dwelling unit is $41209 -in.representative_income 41214 Representative total house income in the dwelling unit is $41214 -in.representative_income 41220 Representative total house income in the dwelling unit is $41220 -in.representative_income 41221 Representative total house income in the dwelling unit is $41221 -in.representative_income 41232 Representative total house income in the dwelling unit is $41232 -in.representative_income 41234 Representative total house income in the dwelling unit is $41234 -in.representative_income 41235 Representative total house income in the dwelling unit is $41235 -in.representative_income 41240 Representative total house income in the dwelling unit is $41240 -in.representative_income 41247 Representative total house income in the dwelling unit is $41247 -in.representative_income 41258 Representative total house income in the dwelling unit is $41258 -in.representative_income 41262 Representative total house income in the dwelling unit is $41262 -in.representative_income 41266 Representative total house income in the dwelling unit is $41266 -in.representative_income 41267 Representative total house income in the dwelling unit is $41267 -in.representative_income 41269 Representative total house income in the dwelling unit is $41269 -in.representative_income 41272 Representative total house income in the dwelling unit is $41272 -in.representative_income 41273 Representative total house income in the dwelling unit is $41273 -in.representative_income 41274 Representative total house income in the dwelling unit is $41274 -in.representative_income 41278 Representative total house income in the dwelling unit is $41278 -in.representative_income 41279 Representative total house income in the dwelling unit is $41279 -in.representative_income 41287 Representative total house income in the dwelling unit is $41287 -in.representative_income 41289 Representative total house income in the dwelling unit is $41289 -in.representative_income 41295 Representative total house income in the dwelling unit is $41295 -in.representative_income 41299 Representative total house income in the dwelling unit is $41299 -in.representative_income 41305 Representative total house income in the dwelling unit is $41305 -in.representative_income 41306 Representative total house income in the dwelling unit is $41306 -in.representative_income 41310 Representative total house income in the dwelling unit is $41310 -in.representative_income 41315 Representative total house income in the dwelling unit is $41315 -in.representative_income 41320 Representative total house income in the dwelling unit is $41320 -in.representative_income 41327 Representative total house income in the dwelling unit is $41327 -in.representative_income 41328 Representative total house income in the dwelling unit is $41328 -in.representative_income 41338 Representative total house income in the dwelling unit is $41338 -in.representative_income 41340 Representative total house income in the dwelling unit is $41340 -in.representative_income 41349 Representative total house income in the dwelling unit is $41349 -in.representative_income 41356 Representative total house income in the dwelling unit is $41356 -in.representative_income 41360 Representative total house income in the dwelling unit is $41360 -in.representative_income 41362 Representative total house income in the dwelling unit is $41362 -in.representative_income 41366 Representative total house income in the dwelling unit is $41366 -in.representative_income 41371 Representative total house income in the dwelling unit is $41371 -in.representative_income 41372 Representative total house income in the dwelling unit is $41372 -in.representative_income 41376 Representative total house income in the dwelling unit is $41376 -in.representative_income 41382 Representative total house income in the dwelling unit is $41382 -in.representative_income 41383 Representative total house income in the dwelling unit is $41383 -in.representative_income 41386 Representative total house income in the dwelling unit is $41386 -in.representative_income 41393 Representative total house income in the dwelling unit is $41393 -in.representative_income 41402 Representative total house income in the dwelling unit is $41402 -in.representative_income 41403 Representative total house income in the dwelling unit is $41403 -in.representative_income 41406 Representative total house income in the dwelling unit is $41406 -in.representative_income 41412 Representative total house income in the dwelling unit is $41412 -in.representative_income 41414 Representative total house income in the dwelling unit is $41414 -in.representative_income 41416 Representative total house income in the dwelling unit is $41416 -in.representative_income 41425 Representative total house income in the dwelling unit is $41425 -in.representative_income 41426 Representative total house income in the dwelling unit is $41426 -in.representative_income 41434 Representative total house income in the dwelling unit is $41434 -in.representative_income 41435 Representative total house income in the dwelling unit is $41435 -in.representative_income 41436 Representative total house income in the dwelling unit is $41436 -in.representative_income 41439 Representative total house income in the dwelling unit is $41439 -in.representative_income 41446 Representative total house income in the dwelling unit is $41446 -in.representative_income 41451 Representative total house income in the dwelling unit is $41451 -in.representative_income 41454 Representative total house income in the dwelling unit is $41454 -in.representative_income 41458 Representative total house income in the dwelling unit is $41458 -in.representative_income 41464 Representative total house income in the dwelling unit is $41464 -in.representative_income 41468 Representative total house income in the dwelling unit is $41468 -in.representative_income 41490 Representative total house income in the dwelling unit is $41490 -in.representative_income 41500 Representative total house income in the dwelling unit is $41500 -in.representative_income 41504 Representative total house income in the dwelling unit is $41504 -in.representative_income 41506 Representative total house income in the dwelling unit is $41506 -in.representative_income 41507 Representative total house income in the dwelling unit is $41507 -in.representative_income 41508 Representative total house income in the dwelling unit is $41508 -in.representative_income 41511 Representative total house income in the dwelling unit is $41511 -in.representative_income 41516 Representative total house income in the dwelling unit is $41516 -in.representative_income 41517 Representative total house income in the dwelling unit is $41517 -in.representative_income 41531 Representative total house income in the dwelling unit is $41531 -in.representative_income 41543 Representative total house income in the dwelling unit is $41543 -in.representative_income 41544 Representative total house income in the dwelling unit is $41544 -in.representative_income 41552 Representative total house income in the dwelling unit is $41552 -in.representative_income 41553 Representative total house income in the dwelling unit is $41553 -in.representative_income 41557 Representative total house income in the dwelling unit is $41557 -in.representative_income 41558 Representative total house income in the dwelling unit is $41558 -in.representative_income 41562 Representative total house income in the dwelling unit is $41562 -in.representative_income 41563 Representative total house income in the dwelling unit is $41563 -in.representative_income 41567 Representative total house income in the dwelling unit is $41567 -in.representative_income 41576 Representative total house income in the dwelling unit is $41576 -in.representative_income 41582 Representative total house income in the dwelling unit is $41582 -in.representative_income 41583 Representative total house income in the dwelling unit is $41583 -in.representative_income 41585 Representative total house income in the dwelling unit is $41585 -in.representative_income 41588 Representative total house income in the dwelling unit is $41588 -in.representative_income 41589 Representative total house income in the dwelling unit is $41589 -in.representative_income 41596 Representative total house income in the dwelling unit is $41596 -in.representative_income 41598 Representative total house income in the dwelling unit is $41598 -in.representative_income 41599 Representative total house income in the dwelling unit is $41599 -in.representative_income 41604 Representative total house income in the dwelling unit is $41604 -in.representative_income 41609 Representative total house income in the dwelling unit is $41609 -in.representative_income 41618 Representative total house income in the dwelling unit is $41618 -in.representative_income 41619 Representative total house income in the dwelling unit is $41619 -in.representative_income 41620 Representative total house income in the dwelling unit is $41620 -in.representative_income 41628 Representative total house income in the dwelling unit is $41628 -in.representative_income 41631 Representative total house income in the dwelling unit is $41631 -in.representative_income 41640 Representative total house income in the dwelling unit is $41640 -in.representative_income 41642 Representative total house income in the dwelling unit is $41642 -in.representative_income 41647 Representative total house income in the dwelling unit is $41647 -in.representative_income 41650 Representative total house income in the dwelling unit is $41650 -in.representative_income 41654 Representative total house income in the dwelling unit is $41654 -in.representative_income 41657 Representative total house income in the dwelling unit is $41657 -in.representative_income 41660 Representative total house income in the dwelling unit is $41660 -in.representative_income 41668 Representative total house income in the dwelling unit is $41668 -in.representative_income 41669 Representative total house income in the dwelling unit is $41669 -in.representative_income 41671 Representative total house income in the dwelling unit is $41671 -in.representative_income 41672 Representative total house income in the dwelling unit is $41672 -in.representative_income 41674 Representative total house income in the dwelling unit is $41674 -in.representative_income 41679 Representative total house income in the dwelling unit is $41679 -in.representative_income 41698 Representative total house income in the dwelling unit is $41698 -in.representative_income 41699 Representative total house income in the dwelling unit is $41699 -in.representative_income 41706 Representative total house income in the dwelling unit is $41706 -in.representative_income 41710 Representative total house income in the dwelling unit is $41710 -in.representative_income 41719 Representative total house income in the dwelling unit is $41719 -in.representative_income 41721 Representative total house income in the dwelling unit is $41721 -in.representative_income 41722 Representative total house income in the dwelling unit is $41722 -in.representative_income 41729 Representative total house income in the dwelling unit is $41729 -in.representative_income 41741 Representative total house income in the dwelling unit is $41741 -in.representative_income 41752 Representative total house income in the dwelling unit is $41752 -in.representative_income 41753 Representative total house income in the dwelling unit is $41753 -in.representative_income 41757 Representative total house income in the dwelling unit is $41757 -in.representative_income 41759 Representative total house income in the dwelling unit is $41759 -in.representative_income 41762 Representative total house income in the dwelling unit is $41762 -in.representative_income 41767 Representative total house income in the dwelling unit is $41767 -in.representative_income 41769 Representative total house income in the dwelling unit is $41769 -in.representative_income 41773 Representative total house income in the dwelling unit is $41773 -in.representative_income 41774 Representative total house income in the dwelling unit is $41774 -in.representative_income 41790 Representative total house income in the dwelling unit is $41790 -in.representative_income 41791 Representative total house income in the dwelling unit is $41791 -in.representative_income 41793 Representative total house income in the dwelling unit is $41793 -in.representative_income 41801 Representative total house income in the dwelling unit is $41801 -in.representative_income 41804 Representative total house income in the dwelling unit is $41804 -in.representative_income 41811 Representative total house income in the dwelling unit is $41811 -in.representative_income 41814 Representative total house income in the dwelling unit is $41814 -in.representative_income 41815 Representative total house income in the dwelling unit is $41815 -in.representative_income 41820 Representative total house income in the dwelling unit is $41820 -in.representative_income 41825 Representative total house income in the dwelling unit is $41825 -in.representative_income 41826 Representative total house income in the dwelling unit is $41826 -in.representative_income 41840 Representative total house income in the dwelling unit is $41840 -in.representative_income 41847 Representative total house income in the dwelling unit is $41847 -in.representative_income 41850 Representative total house income in the dwelling unit is $41850 -in.representative_income 41857 Representative total house income in the dwelling unit is $41857 -in.representative_income 41858 Representative total house income in the dwelling unit is $41858 -in.representative_income 41861 Representative total house income in the dwelling unit is $41861 -in.representative_income 41864 Representative total house income in the dwelling unit is $41864 -in.representative_income 41866 Representative total house income in the dwelling unit is $41866 -in.representative_income 41868 Representative total house income in the dwelling unit is $41868 -in.representative_income 41871 Representative total house income in the dwelling unit is $41871 -in.representative_income 41875 Representative total house income in the dwelling unit is $41875 -in.representative_income 41877 Representative total house income in the dwelling unit is $41877 -in.representative_income 41886 Representative total house income in the dwelling unit is $41886 -in.representative_income 41888 Representative total house income in the dwelling unit is $41888 -in.representative_income 41889 Representative total house income in the dwelling unit is $41889 -in.representative_income 41890 Representative total house income in the dwelling unit is $41890 -in.representative_income 41893 Representative total house income in the dwelling unit is $41893 -in.representative_income 41900 Representative total house income in the dwelling unit is $41900 -in.representative_income 41901 Representative total house income in the dwelling unit is $41901 -in.representative_income 41908 Representative total house income in the dwelling unit is $41908 -in.representative_income 41915 Representative total house income in the dwelling unit is $41915 -in.representative_income 41919 Representative total house income in the dwelling unit is $41919 -in.representative_income 41920 Representative total house income in the dwelling unit is $41920 -in.representative_income 41921 Representative total house income in the dwelling unit is $41921 -in.representative_income 41922 Representative total house income in the dwelling unit is $41922 -in.representative_income 41928 Representative total house income in the dwelling unit is $41928 -in.representative_income 41929 Representative total house income in the dwelling unit is $41929 -in.representative_income 41931 Representative total house income in the dwelling unit is $41931 -in.representative_income 41939 Representative total house income in the dwelling unit is $41939 -in.representative_income 41940 Representative total house income in the dwelling unit is $41940 -in.representative_income 41941 Representative total house income in the dwelling unit is $41941 -in.representative_income 41943 Representative total house income in the dwelling unit is $41943 -in.representative_income 41944 Representative total house income in the dwelling unit is $41944 -in.representative_income 41948 Representative total house income in the dwelling unit is $41948 -in.representative_income 41949 Representative total house income in the dwelling unit is $41949 -in.representative_income 41950 Representative total house income in the dwelling unit is $41950 -in.representative_income 41958 Representative total house income in the dwelling unit is $41958 -in.representative_income 41962 Representative total house income in the dwelling unit is $41962 -in.representative_income 41965 Representative total house income in the dwelling unit is $41965 -in.representative_income 41972 Representative total house income in the dwelling unit is $41972 -in.representative_income 41973 Representative total house income in the dwelling unit is $41973 -in.representative_income 41974 Representative total house income in the dwelling unit is $41974 -in.representative_income 41976 Representative total house income in the dwelling unit is $41976 -in.representative_income 41980 Representative total house income in the dwelling unit is $41980 -in.representative_income 41982 Representative total house income in the dwelling unit is $41982 -in.representative_income 41984 Representative total house income in the dwelling unit is $41984 -in.representative_income 41987 Representative total house income in the dwelling unit is $41987 -in.representative_income 41998 Representative total house income in the dwelling unit is $41998 -in.representative_income 42001 Representative total house income in the dwelling unit is $42001 -in.representative_income 42009 Representative total house income in the dwelling unit is $42009 -in.representative_income 42012 Representative total house income in the dwelling unit is $42012 -in.representative_income 42013 Representative total house income in the dwelling unit is $42013 -in.representative_income 42014 Representative total house income in the dwelling unit is $42014 -in.representative_income 42021 Representative total house income in the dwelling unit is $42021 -in.representative_income 42022 Representative total house income in the dwelling unit is $42022 -in.representative_income 42024 Representative total house income in the dwelling unit is $42024 -in.representative_income 42025 Representative total house income in the dwelling unit is $42025 -in.representative_income 42030 Representative total house income in the dwelling unit is $42030 -in.representative_income 42031 Representative total house income in the dwelling unit is $42031 -in.representative_income 42032 Representative total house income in the dwelling unit is $42032 -in.representative_income 42036 Representative total house income in the dwelling unit is $42036 -in.representative_income 42037 Representative total house income in the dwelling unit is $42037 -in.representative_income 42042 Representative total house income in the dwelling unit is $42042 -in.representative_income 42053 Representative total house income in the dwelling unit is $42053 -in.representative_income 42056 Representative total house income in the dwelling unit is $42056 -in.representative_income 42060 Representative total house income in the dwelling unit is $42060 -in.representative_income 42063 Representative total house income in the dwelling unit is $42063 -in.representative_income 42069 Representative total house income in the dwelling unit is $42069 -in.representative_income 42078 Representative total house income in the dwelling unit is $42078 -in.representative_income 42079 Representative total house income in the dwelling unit is $42079 -in.representative_income 42081 Representative total house income in the dwelling unit is $42081 -in.representative_income 42083 Representative total house income in the dwelling unit is $42083 -in.representative_income 42084 Representative total house income in the dwelling unit is $42084 -in.representative_income 42088 Representative total house income in the dwelling unit is $42088 -in.representative_income 42090 Representative total house income in the dwelling unit is $42090 -in.representative_income 42093 Representative total house income in the dwelling unit is $42093 -in.representative_income 42095 Representative total house income in the dwelling unit is $42095 -in.representative_income 42098 Representative total house income in the dwelling unit is $42098 -in.representative_income 42099 Representative total house income in the dwelling unit is $42099 -in.representative_income 42101 Representative total house income in the dwelling unit is $42101 -in.representative_income 42104 Representative total house income in the dwelling unit is $42104 -in.representative_income 42109 Representative total house income in the dwelling unit is $42109 -in.representative_income 42111 Representative total house income in the dwelling unit is $42111 -in.representative_income 42114 Representative total house income in the dwelling unit is $42114 -in.representative_income 42117 Representative total house income in the dwelling unit is $42117 -in.representative_income 42123 Representative total house income in the dwelling unit is $42123 -in.representative_income 42125 Representative total house income in the dwelling unit is $42125 -in.representative_income 42131 Representative total house income in the dwelling unit is $42131 -in.representative_income 42133 Representative total house income in the dwelling unit is $42133 -in.representative_income 42135 Representative total house income in the dwelling unit is $42135 -in.representative_income 42138 Representative total house income in the dwelling unit is $42138 -in.representative_income 42142 Representative total house income in the dwelling unit is $42142 -in.representative_income 42145 Representative total house income in the dwelling unit is $42145 -in.representative_income 42153 Representative total house income in the dwelling unit is $42153 -in.representative_income 42154 Representative total house income in the dwelling unit is $42154 -in.representative_income 42160 Representative total house income in the dwelling unit is $42160 -in.representative_income 42161 Representative total house income in the dwelling unit is $42161 -in.representative_income 42163 Representative total house income in the dwelling unit is $42163 -in.representative_income 42164 Representative total house income in the dwelling unit is $42164 -in.representative_income 42166 Representative total house income in the dwelling unit is $42166 -in.representative_income 42170 Representative total house income in the dwelling unit is $42170 -in.representative_income 42172 Representative total house income in the dwelling unit is $42172 -in.representative_income 42174 Representative total house income in the dwelling unit is $42174 -in.representative_income 42176 Representative total house income in the dwelling unit is $42176 -in.representative_income 42181 Representative total house income in the dwelling unit is $42181 -in.representative_income 42184 Representative total house income in the dwelling unit is $42184 -in.representative_income 42185 Representative total house income in the dwelling unit is $42185 -in.representative_income 42186 Representative total house income in the dwelling unit is $42186 -in.representative_income 42187 Representative total house income in the dwelling unit is $42187 -in.representative_income 42188 Representative total house income in the dwelling unit is $42188 -in.representative_income 42191 Representative total house income in the dwelling unit is $42191 -in.representative_income 42195 Representative total house income in the dwelling unit is $42195 -in.representative_income 42197 Representative total house income in the dwelling unit is $42197 -in.representative_income 42203 Representative total house income in the dwelling unit is $42203 -in.representative_income 42204 Representative total house income in the dwelling unit is $42204 -in.representative_income 42205 Representative total house income in the dwelling unit is $42205 -in.representative_income 42214 Representative total house income in the dwelling unit is $42214 -in.representative_income 42216 Representative total house income in the dwelling unit is $42216 -in.representative_income 42221 Representative total house income in the dwelling unit is $42221 -in.representative_income 42224 Representative total house income in the dwelling unit is $42224 -in.representative_income 42229 Representative total house income in the dwelling unit is $42229 -in.representative_income 42234 Representative total house income in the dwelling unit is $42234 -in.representative_income 42237 Representative total house income in the dwelling unit is $42237 -in.representative_income 42238 Representative total house income in the dwelling unit is $42238 -in.representative_income 42239 Representative total house income in the dwelling unit is $42239 -in.representative_income 42240 Representative total house income in the dwelling unit is $42240 -in.representative_income 42244 Representative total house income in the dwelling unit is $42244 -in.representative_income 42246 Representative total house income in the dwelling unit is $42246 -in.representative_income 42250 Representative total house income in the dwelling unit is $42250 -in.representative_income 42254 Representative total house income in the dwelling unit is $42254 -in.representative_income 42258 Representative total house income in the dwelling unit is $42258 -in.representative_income 42268 Representative total house income in the dwelling unit is $42268 -in.representative_income 42275 Representative total house income in the dwelling unit is $42275 -in.representative_income 42277 Representative total house income in the dwelling unit is $42277 -in.representative_income 42279 Representative total house income in the dwelling unit is $42279 -in.representative_income 42280 Representative total house income in the dwelling unit is $42280 -in.representative_income 42283 Representative total house income in the dwelling unit is $42283 -in.representative_income 42288 Representative total house income in the dwelling unit is $42288 -in.representative_income 42289 Representative total house income in the dwelling unit is $42289 -in.representative_income 42290 Representative total house income in the dwelling unit is $42290 -in.representative_income 42293 Representative total house income in the dwelling unit is $42293 -in.representative_income 42294 Representative total house income in the dwelling unit is $42294 -in.representative_income 42300 Representative total house income in the dwelling unit is $42300 -in.representative_income 42305 Representative total house income in the dwelling unit is $42305 -in.representative_income 42310 Representative total house income in the dwelling unit is $42310 -in.representative_income 42311 Representative total house income in the dwelling unit is $42311 -in.representative_income 42316 Representative total house income in the dwelling unit is $42316 -in.representative_income 42320 Representative total house income in the dwelling unit is $42320 -in.representative_income 42322 Representative total house income in the dwelling unit is $42322 -in.representative_income 42323 Representative total house income in the dwelling unit is $42323 -in.representative_income 42325 Representative total house income in the dwelling unit is $42325 -in.representative_income 42331 Representative total house income in the dwelling unit is $42331 -in.representative_income 42332 Representative total house income in the dwelling unit is $42332 -in.representative_income 42334 Representative total house income in the dwelling unit is $42334 -in.representative_income 42339 Representative total house income in the dwelling unit is $42339 -in.representative_income 42341 Representative total house income in the dwelling unit is $42341 -in.representative_income 42342 Representative total house income in the dwelling unit is $42342 -in.representative_income 42344 Representative total house income in the dwelling unit is $42344 -in.representative_income 42346 Representative total house income in the dwelling unit is $42346 -in.representative_income 42347 Representative total house income in the dwelling unit is $42347 -in.representative_income 42348 Representative total house income in the dwelling unit is $42348 -in.representative_income 42349 Representative total house income in the dwelling unit is $42349 -in.representative_income 42352 Representative total house income in the dwelling unit is $42352 -in.representative_income 42353 Representative total house income in the dwelling unit is $42353 -in.representative_income 42354 Representative total house income in the dwelling unit is $42354 -in.representative_income 42355 Representative total house income in the dwelling unit is $42355 -in.representative_income 42358 Representative total house income in the dwelling unit is $42358 -in.representative_income 42365 Representative total house income in the dwelling unit is $42365 -in.representative_income 42370 Representative total house income in the dwelling unit is $42370 -in.representative_income 42374 Representative total house income in the dwelling unit is $42374 -in.representative_income 42376 Representative total house income in the dwelling unit is $42376 -in.representative_income 42379 Representative total house income in the dwelling unit is $42379 -in.representative_income 42380 Representative total house income in the dwelling unit is $42380 -in.representative_income 42385 Representative total house income in the dwelling unit is $42385 -in.representative_income 42387 Representative total house income in the dwelling unit is $42387 -in.representative_income 42390 Representative total house income in the dwelling unit is $42390 -in.representative_income 42393 Representative total house income in the dwelling unit is $42393 -in.representative_income 42395 Representative total house income in the dwelling unit is $42395 -in.representative_income 42401 Representative total house income in the dwelling unit is $42401 -in.representative_income 42403 Representative total house income in the dwelling unit is $42403 -in.representative_income 42405 Representative total house income in the dwelling unit is $42405 -in.representative_income 42406 Representative total house income in the dwelling unit is $42406 -in.representative_income 42409 Representative total house income in the dwelling unit is $42409 -in.representative_income 42411 Representative total house income in the dwelling unit is $42411 -in.representative_income 42412 Representative total house income in the dwelling unit is $42412 -in.representative_income 42413 Representative total house income in the dwelling unit is $42413 -in.representative_income 42414 Representative total house income in the dwelling unit is $42414 -in.representative_income 42416 Representative total house income in the dwelling unit is $42416 -in.representative_income 42420 Representative total house income in the dwelling unit is $42420 -in.representative_income 42422 Representative total house income in the dwelling unit is $42422 -in.representative_income 42426 Representative total house income in the dwelling unit is $42426 -in.representative_income 42430 Representative total house income in the dwelling unit is $42430 -in.representative_income 42434 Representative total house income in the dwelling unit is $42434 -in.representative_income 42436 Representative total house income in the dwelling unit is $42436 -in.representative_income 42438 Representative total house income in the dwelling unit is $42438 -in.representative_income 42441 Representative total house income in the dwelling unit is $42441 -in.representative_income 42442 Representative total house income in the dwelling unit is $42442 -in.representative_income 42445 Representative total house income in the dwelling unit is $42445 -in.representative_income 42446 Representative total house income in the dwelling unit is $42446 -in.representative_income 42448 Representative total house income in the dwelling unit is $42448 -in.representative_income 42455 Representative total house income in the dwelling unit is $42455 -in.representative_income 42456 Representative total house income in the dwelling unit is $42456 -in.representative_income 42463 Representative total house income in the dwelling unit is $42463 -in.representative_income 42464 Representative total house income in the dwelling unit is $42464 -in.representative_income 42465 Representative total house income in the dwelling unit is $42465 -in.representative_income 42466 Representative total house income in the dwelling unit is $42466 -in.representative_income 42469 Representative total house income in the dwelling unit is $42469 -in.representative_income 42474 Representative total house income in the dwelling unit is $42474 -in.representative_income 42475 Representative total house income in the dwelling unit is $42475 -in.representative_income 42479 Representative total house income in the dwelling unit is $42479 -in.representative_income 42485 Representative total house income in the dwelling unit is $42485 -in.representative_income 42487 Representative total house income in the dwelling unit is $42487 -in.representative_income 42489 Representative total house income in the dwelling unit is $42489 -in.representative_income 42495 Representative total house income in the dwelling unit is $42495 -in.representative_income 42500 Representative total house income in the dwelling unit is $42500 -in.representative_income 42503 Representative total house income in the dwelling unit is $42503 -in.representative_income 42506 Representative total house income in the dwelling unit is $42506 -in.representative_income 42507 Representative total house income in the dwelling unit is $42507 -in.representative_income 42508 Representative total house income in the dwelling unit is $42508 -in.representative_income 42513 Representative total house income in the dwelling unit is $42513 -in.representative_income 42517 Representative total house income in the dwelling unit is $42517 -in.representative_income 42519 Representative total house income in the dwelling unit is $42519 -in.representative_income 42521 Representative total house income in the dwelling unit is $42521 -in.representative_income 42527 Representative total house income in the dwelling unit is $42527 -in.representative_income 42531 Representative total house income in the dwelling unit is $42531 -in.representative_income 42533 Representative total house income in the dwelling unit is $42533 -in.representative_income 42537 Representative total house income in the dwelling unit is $42537 -in.representative_income 42541 Representative total house income in the dwelling unit is $42541 -in.representative_income 42547 Representative total house income in the dwelling unit is $42547 -in.representative_income 42551 Representative total house income in the dwelling unit is $42551 -in.representative_income 42553 Representative total house income in the dwelling unit is $42553 -in.representative_income 42558 Representative total house income in the dwelling unit is $42558 -in.representative_income 42561 Representative total house income in the dwelling unit is $42561 -in.representative_income 42562 Representative total house income in the dwelling unit is $42562 -in.representative_income 42563 Representative total house income in the dwelling unit is $42563 -in.representative_income 42571 Representative total house income in the dwelling unit is $42571 -in.representative_income 42572 Representative total house income in the dwelling unit is $42572 -in.representative_income 42573 Representative total house income in the dwelling unit is $42573 -in.representative_income 42577 Representative total house income in the dwelling unit is $42577 -in.representative_income 42578 Representative total house income in the dwelling unit is $42578 -in.representative_income 42582 Representative total house income in the dwelling unit is $42582 -in.representative_income 42592 Representative total house income in the dwelling unit is $42592 -in.representative_income 42595 Representative total house income in the dwelling unit is $42595 -in.representative_income 42599 Representative total house income in the dwelling unit is $42599 -in.representative_income 42603 Representative total house income in the dwelling unit is $42603 -in.representative_income 42606 Representative total house income in the dwelling unit is $42606 -in.representative_income 42607 Representative total house income in the dwelling unit is $42607 -in.representative_income 42616 Representative total house income in the dwelling unit is $42616 -in.representative_income 42617 Representative total house income in the dwelling unit is $42617 -in.representative_income 42620 Representative total house income in the dwelling unit is $42620 -in.representative_income 42622 Representative total house income in the dwelling unit is $42622 -in.representative_income 42625 Representative total house income in the dwelling unit is $42625 -in.representative_income 42628 Representative total house income in the dwelling unit is $42628 -in.representative_income 42636 Representative total house income in the dwelling unit is $42636 -in.representative_income 42638 Representative total house income in the dwelling unit is $42638 -in.representative_income 42643 Representative total house income in the dwelling unit is $42643 -in.representative_income 42646 Representative total house income in the dwelling unit is $42646 -in.representative_income 42648 Representative total house income in the dwelling unit is $42648 -in.representative_income 42654 Representative total house income in the dwelling unit is $42654 -in.representative_income 42658 Representative total house income in the dwelling unit is $42658 -in.representative_income 42659 Representative total house income in the dwelling unit is $42659 -in.representative_income 42661 Representative total house income in the dwelling unit is $42661 -in.representative_income 42668 Representative total house income in the dwelling unit is $42668 -in.representative_income 42674 Representative total house income in the dwelling unit is $42674 -in.representative_income 42679 Representative total house income in the dwelling unit is $42679 -in.representative_income 42680 Representative total house income in the dwelling unit is $42680 -in.representative_income 42682 Representative total house income in the dwelling unit is $42682 -in.representative_income 42690 Representative total house income in the dwelling unit is $42690 -in.representative_income 42700 Representative total house income in the dwelling unit is $42700 -in.representative_income 42701 Representative total house income in the dwelling unit is $42701 -in.representative_income 42702 Representative total house income in the dwelling unit is $42702 -in.representative_income 42705 Representative total house income in the dwelling unit is $42705 -in.representative_income 42711 Representative total house income in the dwelling unit is $42711 -in.representative_income 42712 Representative total house income in the dwelling unit is $42712 -in.representative_income 42716 Representative total house income in the dwelling unit is $42716 -in.representative_income 42717 Representative total house income in the dwelling unit is $42717 -in.representative_income 42723 Representative total house income in the dwelling unit is $42723 -in.representative_income 42724 Representative total house income in the dwelling unit is $42724 -in.representative_income 42729 Representative total house income in the dwelling unit is $42729 -in.representative_income 42733 Representative total house income in the dwelling unit is $42733 -in.representative_income 42739 Representative total house income in the dwelling unit is $42739 -in.representative_income 42743 Representative total house income in the dwelling unit is $42743 -in.representative_income 42744 Representative total house income in the dwelling unit is $42744 -in.representative_income 42745 Representative total house income in the dwelling unit is $42745 -in.representative_income 42754 Representative total house income in the dwelling unit is $42754 -in.representative_income 42764 Representative total house income in the dwelling unit is $42764 -in.representative_income 42766 Representative total house income in the dwelling unit is $42766 -in.representative_income 42770 Representative total house income in the dwelling unit is $42770 -in.representative_income 42776 Representative total house income in the dwelling unit is $42776 -in.representative_income 42777 Representative total house income in the dwelling unit is $42777 -in.representative_income 42780 Representative total house income in the dwelling unit is $42780 -in.representative_income 42787 Representative total house income in the dwelling unit is $42787 -in.representative_income 42790 Representative total house income in the dwelling unit is $42790 -in.representative_income 42791 Representative total house income in the dwelling unit is $42791 -in.representative_income 42797 Representative total house income in the dwelling unit is $42797 -in.representative_income 42800 Representative total house income in the dwelling unit is $42800 -in.representative_income 42805 Representative total house income in the dwelling unit is $42805 -in.representative_income 42807 Representative total house income in the dwelling unit is $42807 -in.representative_income 42808 Representative total house income in the dwelling unit is $42808 -in.representative_income 42810 Representative total house income in the dwelling unit is $42810 -in.representative_income 42815 Representative total house income in the dwelling unit is $42815 -in.representative_income 42816 Representative total house income in the dwelling unit is $42816 -in.representative_income 42817 Representative total house income in the dwelling unit is $42817 -in.representative_income 42819 Representative total house income in the dwelling unit is $42819 -in.representative_income 42824 Representative total house income in the dwelling unit is $42824 -in.representative_income 42826 Representative total house income in the dwelling unit is $42826 -in.representative_income 42828 Representative total house income in the dwelling unit is $42828 -in.representative_income 42830 Representative total house income in the dwelling unit is $42830 -in.representative_income 42831 Representative total house income in the dwelling unit is $42831 -in.representative_income 42838 Representative total house income in the dwelling unit is $42838 -in.representative_income 42840 Representative total house income in the dwelling unit is $42840 -in.representative_income 42841 Representative total house income in the dwelling unit is $42841 -in.representative_income 42849 Representative total house income in the dwelling unit is $42849 -in.representative_income 42852 Representative total house income in the dwelling unit is $42852 -in.representative_income 42859 Representative total house income in the dwelling unit is $42859 -in.representative_income 42862 Representative total house income in the dwelling unit is $42862 -in.representative_income 42867 Representative total house income in the dwelling unit is $42867 -in.representative_income 42869 Representative total house income in the dwelling unit is $42869 -in.representative_income 42871 Representative total house income in the dwelling unit is $42871 -in.representative_income 42872 Representative total house income in the dwelling unit is $42872 -in.representative_income 42873 Representative total house income in the dwelling unit is $42873 -in.representative_income 42874 Representative total house income in the dwelling unit is $42874 -in.representative_income 42880 Representative total house income in the dwelling unit is $42880 -in.representative_income 42887 Representative total house income in the dwelling unit is $42887 -in.representative_income 42891 Representative total house income in the dwelling unit is $42891 -in.representative_income 42894 Representative total house income in the dwelling unit is $42894 -in.representative_income 42902 Representative total house income in the dwelling unit is $42902 -in.representative_income 42909 Representative total house income in the dwelling unit is $42909 -in.representative_income 42912 Representative total house income in the dwelling unit is $42912 -in.representative_income 42916 Representative total house income in the dwelling unit is $42916 -in.representative_income 42917 Representative total house income in the dwelling unit is $42917 -in.representative_income 42918 Representative total house income in the dwelling unit is $42918 -in.representative_income 42923 Representative total house income in the dwelling unit is $42923 -in.representative_income 42924 Representative total house income in the dwelling unit is $42924 -in.representative_income 42927 Representative total house income in the dwelling unit is $42927 -in.representative_income 42929 Representative total house income in the dwelling unit is $42929 -in.representative_income 42931 Representative total house income in the dwelling unit is $42931 -in.representative_income 42933 Representative total house income in the dwelling unit is $42933 -in.representative_income 42938 Representative total house income in the dwelling unit is $42938 -in.representative_income 42939 Representative total house income in the dwelling unit is $42939 -in.representative_income 42942 Representative total house income in the dwelling unit is $42942 -in.representative_income 42948 Representative total house income in the dwelling unit is $42948 -in.representative_income 42949 Representative total house income in the dwelling unit is $42949 -in.representative_income 42951 Representative total house income in the dwelling unit is $42951 -in.representative_income 42954 Representative total house income in the dwelling unit is $42954 -in.representative_income 42960 Representative total house income in the dwelling unit is $42960 -in.representative_income 42961 Representative total house income in the dwelling unit is $42961 -in.representative_income 42964 Representative total house income in the dwelling unit is $42964 -in.representative_income 42970 Representative total house income in the dwelling unit is $42970 -in.representative_income 42971 Representative total house income in the dwelling unit is $42971 -in.representative_income 42972 Representative total house income in the dwelling unit is $42972 -in.representative_income 42976 Representative total house income in the dwelling unit is $42976 -in.representative_income 42978 Representative total house income in the dwelling unit is $42978 -in.representative_income 42981 Representative total house income in the dwelling unit is $42981 -in.representative_income 42983 Representative total house income in the dwelling unit is $42983 -in.representative_income 42986 Representative total house income in the dwelling unit is $42986 -in.representative_income 42992 Representative total house income in the dwelling unit is $42992 -in.representative_income 43002 Representative total house income in the dwelling unit is $43002 -in.representative_income 43009 Representative total house income in the dwelling unit is $43009 -in.representative_income 43012 Representative total house income in the dwelling unit is $43012 -in.representative_income 43017 Representative total house income in the dwelling unit is $43017 -in.representative_income 43022 Representative total house income in the dwelling unit is $43022 -in.representative_income 43024 Representative total house income in the dwelling unit is $43024 -in.representative_income 43026 Representative total house income in the dwelling unit is $43026 -in.representative_income 43028 Representative total house income in the dwelling unit is $43028 -in.representative_income 43030 Representative total house income in the dwelling unit is $43030 -in.representative_income 43032 Representative total house income in the dwelling unit is $43032 -in.representative_income 43034 Representative total house income in the dwelling unit is $43034 -in.representative_income 43042 Representative total house income in the dwelling unit is $43042 -in.representative_income 43045 Representative total house income in the dwelling unit is $43045 -in.representative_income 43049 Representative total house income in the dwelling unit is $43049 -in.representative_income 43053 Representative total house income in the dwelling unit is $43053 -in.representative_income 43062 Representative total house income in the dwelling unit is $43062 -in.representative_income 43066 Representative total house income in the dwelling unit is $43066 -in.representative_income 43067 Representative total house income in the dwelling unit is $43067 -in.representative_income 43071 Representative total house income in the dwelling unit is $43071 -in.representative_income 43073 Representative total house income in the dwelling unit is $43073 -in.representative_income 43077 Representative total house income in the dwelling unit is $43077 -in.representative_income 43078 Representative total house income in the dwelling unit is $43078 -in.representative_income 43081 Representative total house income in the dwelling unit is $43081 -in.representative_income 43089 Representative total house income in the dwelling unit is $43089 -in.representative_income 43098 Representative total house income in the dwelling unit is $43098 -in.representative_income 43099 Representative total house income in the dwelling unit is $43099 -in.representative_income 43103 Representative total house income in the dwelling unit is $43103 -in.representative_income 43110 Representative total house income in the dwelling unit is $43110 -in.representative_income 43114 Representative total house income in the dwelling unit is $43114 -in.representative_income 43121 Representative total house income in the dwelling unit is $43121 -in.representative_income 43126 Representative total house income in the dwelling unit is $43126 -in.representative_income 43128 Representative total house income in the dwelling unit is $43128 -in.representative_income 43130 Representative total house income in the dwelling unit is $43130 -in.representative_income 43131 Representative total house income in the dwelling unit is $43131 -in.representative_income 43132 Representative total house income in the dwelling unit is $43132 -in.representative_income 43133 Representative total house income in the dwelling unit is $43133 -in.representative_income 43141 Representative total house income in the dwelling unit is $43141 -in.representative_income 43143 Representative total house income in the dwelling unit is $43143 -in.representative_income 43152 Representative total house income in the dwelling unit is $43152 -in.representative_income 43153 Representative total house income in the dwelling unit is $43153 -in.representative_income 43157 Representative total house income in the dwelling unit is $43157 -in.representative_income 43163 Representative total house income in the dwelling unit is $43163 -in.representative_income 43166 Representative total house income in the dwelling unit is $43166 -in.representative_income 43174 Representative total house income in the dwelling unit is $43174 -in.representative_income 43185 Representative total house income in the dwelling unit is $43185 -in.representative_income 43197 Representative total house income in the dwelling unit is $43197 -in.representative_income 43198 Representative total house income in the dwelling unit is $43198 -in.representative_income 43206 Representative total house income in the dwelling unit is $43206 -in.representative_income 43208 Representative total house income in the dwelling unit is $43208 -in.representative_income 43218 Representative total house income in the dwelling unit is $43218 -in.representative_income 43219 Representative total house income in the dwelling unit is $43219 -in.representative_income 43220 Representative total house income in the dwelling unit is $43220 -in.representative_income 43224 Representative total house income in the dwelling unit is $43224 -in.representative_income 43228 Representative total house income in the dwelling unit is $43228 -in.representative_income 43234 Representative total house income in the dwelling unit is $43234 -in.representative_income 43238 Representative total house income in the dwelling unit is $43238 -in.representative_income 43239 Representative total house income in the dwelling unit is $43239 -in.representative_income 43250 Representative total house income in the dwelling unit is $43250 -in.representative_income 43252 Representative total house income in the dwelling unit is $43252 -in.representative_income 43260 Representative total house income in the dwelling unit is $43260 -in.representative_income 43269 Representative total house income in the dwelling unit is $43269 -in.representative_income 43270 Representative total house income in the dwelling unit is $43270 -in.representative_income 43271 Representative total house income in the dwelling unit is $43271 -in.representative_income 43273 Representative total house income in the dwelling unit is $43273 -in.representative_income 43280 Representative total house income in the dwelling unit is $43280 -in.representative_income 43284 Representative total house income in the dwelling unit is $43284 -in.representative_income 43292 Representative total house income in the dwelling unit is $43292 -in.representative_income 43293 Representative total house income in the dwelling unit is $43293 -in.representative_income 43301 Representative total house income in the dwelling unit is $43301 -in.representative_income 43306 Representative total house income in the dwelling unit is $43306 -in.representative_income 43313 Representative total house income in the dwelling unit is $43313 -in.representative_income 43315 Representative total house income in the dwelling unit is $43315 -in.representative_income 43321 Representative total house income in the dwelling unit is $43321 -in.representative_income 43324 Representative total house income in the dwelling unit is $43324 -in.representative_income 43327 Representative total house income in the dwelling unit is $43327 -in.representative_income 43331 Representative total house income in the dwelling unit is $43331 -in.representative_income 43335 Representative total house income in the dwelling unit is $43335 -in.representative_income 43337 Representative total house income in the dwelling unit is $43337 -in.representative_income 43344 Representative total house income in the dwelling unit is $43344 -in.representative_income 43345 Representative total house income in the dwelling unit is $43345 -in.representative_income 43351 Representative total house income in the dwelling unit is $43351 -in.representative_income 43368 Representative total house income in the dwelling unit is $43368 -in.representative_income 43373 Representative total house income in the dwelling unit is $43373 -in.representative_income 43376 Representative total house income in the dwelling unit is $43376 -in.representative_income 43381 Representative total house income in the dwelling unit is $43381 -in.representative_income 43383 Representative total house income in the dwelling unit is $43383 -in.representative_income 43386 Representative total house income in the dwelling unit is $43386 -in.representative_income 43389 Representative total house income in the dwelling unit is $43389 -in.representative_income 43407 Representative total house income in the dwelling unit is $43407 -in.representative_income 43416 Representative total house income in the dwelling unit is $43416 -in.representative_income 43424 Representative total house income in the dwelling unit is $43424 -in.representative_income 43435 Representative total house income in the dwelling unit is $43435 -in.representative_income 43436 Representative total house income in the dwelling unit is $43436 -in.representative_income 43439 Representative total house income in the dwelling unit is $43439 -in.representative_income 43442 Representative total house income in the dwelling unit is $43442 -in.representative_income 43445 Representative total house income in the dwelling unit is $43445 -in.representative_income 43446 Representative total house income in the dwelling unit is $43446 -in.representative_income 43450 Representative total house income in the dwelling unit is $43450 -in.representative_income 43455 Representative total house income in the dwelling unit is $43455 -in.representative_income 43456 Representative total house income in the dwelling unit is $43456 -in.representative_income 43457 Representative total house income in the dwelling unit is $43457 -in.representative_income 43460 Representative total house income in the dwelling unit is $43460 -in.representative_income 43463 Representative total house income in the dwelling unit is $43463 -in.representative_income 43465 Representative total house income in the dwelling unit is $43465 -in.representative_income 43467 Representative total house income in the dwelling unit is $43467 -in.representative_income 43474 Representative total house income in the dwelling unit is $43474 -in.representative_income 43475 Representative total house income in the dwelling unit is $43475 -in.representative_income 43476 Representative total house income in the dwelling unit is $43476 -in.representative_income 43477 Representative total house income in the dwelling unit is $43477 -in.representative_income 43480 Representative total house income in the dwelling unit is $43480 -in.representative_income 43487 Representative total house income in the dwelling unit is $43487 -in.representative_income 43489 Representative total house income in the dwelling unit is $43489 -in.representative_income 43498 Representative total house income in the dwelling unit is $43498 -in.representative_income 43500 Representative total house income in the dwelling unit is $43500 -in.representative_income 43506 Representative total house income in the dwelling unit is $43506 -in.representative_income 43507 Representative total house income in the dwelling unit is $43507 -in.representative_income 43528 Representative total house income in the dwelling unit is $43528 -in.representative_income 43529 Representative total house income in the dwelling unit is $43529 -in.representative_income 43532 Representative total house income in the dwelling unit is $43532 -in.representative_income 43537 Representative total house income in the dwelling unit is $43537 -in.representative_income 43543 Representative total house income in the dwelling unit is $43543 -in.representative_income 43545 Representative total house income in the dwelling unit is $43545 -in.representative_income 43548 Representative total house income in the dwelling unit is $43548 -in.representative_income 43549 Representative total house income in the dwelling unit is $43549 -in.representative_income 43555 Representative total house income in the dwelling unit is $43555 -in.representative_income 43568 Representative total house income in the dwelling unit is $43568 -in.representative_income 43571 Representative total house income in the dwelling unit is $43571 -in.representative_income 43579 Representative total house income in the dwelling unit is $43579 -in.representative_income 43582 Representative total house income in the dwelling unit is $43582 -in.representative_income 43583 Representative total house income in the dwelling unit is $43583 -in.representative_income 43586 Representative total house income in the dwelling unit is $43586 -in.representative_income 43587 Representative total house income in the dwelling unit is $43587 -in.representative_income 43588 Representative total house income in the dwelling unit is $43588 -in.representative_income 43597 Representative total house income in the dwelling unit is $43597 -in.representative_income 43600 Representative total house income in the dwelling unit is $43600 -in.representative_income 43603 Representative total house income in the dwelling unit is $43603 -in.representative_income 43610 Representative total house income in the dwelling unit is $43610 -in.representative_income 43614 Representative total house income in the dwelling unit is $43614 -in.representative_income 43616 Representative total house income in the dwelling unit is $43616 -in.representative_income 43630 Representative total house income in the dwelling unit is $43630 -in.representative_income 43638 Representative total house income in the dwelling unit is $43638 -in.representative_income 43640 Representative total house income in the dwelling unit is $43640 -in.representative_income 43648 Representative total house income in the dwelling unit is $43648 -in.representative_income 43651 Representative total house income in the dwelling unit is $43651 -in.representative_income 43657 Representative total house income in the dwelling unit is $43657 -in.representative_income 43661 Representative total house income in the dwelling unit is $43661 -in.representative_income 43671 Representative total house income in the dwelling unit is $43671 -in.representative_income 43689 Representative total house income in the dwelling unit is $43689 -in.representative_income 43694 Representative total house income in the dwelling unit is $43694 -in.representative_income 43703 Representative total house income in the dwelling unit is $43703 -in.representative_income 43711 Representative total house income in the dwelling unit is $43711 -in.representative_income 43713 Representative total house income in the dwelling unit is $43713 -in.representative_income 43732 Representative total house income in the dwelling unit is $43732 -in.representative_income 43733 Representative total house income in the dwelling unit is $43733 -in.representative_income 43739 Representative total house income in the dwelling unit is $43739 -in.representative_income 43755 Representative total house income in the dwelling unit is $43755 -in.representative_income 43759 Representative total house income in the dwelling unit is $43759 -in.representative_income 43766 Representative total house income in the dwelling unit is $43766 -in.representative_income 43770 Representative total house income in the dwelling unit is $43770 -in.representative_income 43775 Representative total house income in the dwelling unit is $43775 -in.representative_income 43776 Representative total house income in the dwelling unit is $43776 -in.representative_income 43782 Representative total house income in the dwelling unit is $43782 -in.representative_income 43795 Representative total house income in the dwelling unit is $43795 -in.representative_income 43797 Representative total house income in the dwelling unit is $43797 -in.representative_income 43798 Representative total house income in the dwelling unit is $43798 -in.representative_income 43810 Representative total house income in the dwelling unit is $43810 -in.representative_income 43818 Representative total house income in the dwelling unit is $43818 -in.representative_income 43820 Representative total house income in the dwelling unit is $43820 -in.representative_income 43824 Representative total house income in the dwelling unit is $43824 -in.representative_income 43827 Representative total house income in the dwelling unit is $43827 -in.representative_income 43834 Representative total house income in the dwelling unit is $43834 -in.representative_income 43837 Representative total house income in the dwelling unit is $43837 -in.representative_income 43840 Representative total house income in the dwelling unit is $43840 -in.representative_income 43845 Representative total house income in the dwelling unit is $43845 -in.representative_income 43852 Representative total house income in the dwelling unit is $43852 -in.representative_income 43865 Representative total house income in the dwelling unit is $43865 -in.representative_income 43867 Representative total house income in the dwelling unit is $43867 -in.representative_income 43871 Representative total house income in the dwelling unit is $43871 -in.representative_income 43877 Representative total house income in the dwelling unit is $43877 -in.representative_income 43889 Representative total house income in the dwelling unit is $43889 -in.representative_income 43904 Representative total house income in the dwelling unit is $43904 -in.representative_income 43914 Representative total house income in the dwelling unit is $43914 -in.representative_income 43921 Representative total house income in the dwelling unit is $43921 -in.representative_income 43931 Representative total house income in the dwelling unit is $43931 -in.representative_income 43940 Representative total house income in the dwelling unit is $43940 -in.representative_income 43941 Representative total house income in the dwelling unit is $43941 -in.representative_income 43947 Representative total house income in the dwelling unit is $43947 -in.representative_income 43958 Representative total house income in the dwelling unit is $43958 -in.representative_income 43976 Representative total house income in the dwelling unit is $43976 -in.representative_income 43977 Representative total house income in the dwelling unit is $43977 -in.representative_income 43994 Representative total house income in the dwelling unit is $43994 -in.representative_income 44005 Representative total house income in the dwelling unit is $44005 -in.representative_income 44011 Representative total house income in the dwelling unit is $44011 -in.representative_income 44019 Representative total house income in the dwelling unit is $44019 -in.representative_income 44022 Representative total house income in the dwelling unit is $44022 -in.representative_income 44030 Representative total house income in the dwelling unit is $44030 -in.representative_income 44033 Representative total house income in the dwelling unit is $44033 -in.representative_income 44042 Representative total house income in the dwelling unit is $44042 -in.representative_income 44043 Representative total house income in the dwelling unit is $44043 -in.representative_income 44065 Representative total house income in the dwelling unit is $44065 -in.representative_income 44074 Representative total house income in the dwelling unit is $44074 -in.representative_income 44080 Representative total house income in the dwelling unit is $44080 -in.representative_income 44083 Representative total house income in the dwelling unit is $44083 -in.representative_income 44084 Representative total house income in the dwelling unit is $44084 -in.representative_income 44088 Representative total house income in the dwelling unit is $44088 -in.representative_income 44093 Representative total house income in the dwelling unit is $44093 -in.representative_income 44112 Representative total house income in the dwelling unit is $44112 -in.representative_income 44116 Representative total house income in the dwelling unit is $44116 -in.representative_income 44119 Representative total house income in the dwelling unit is $44119 -in.representative_income 44129 Representative total house income in the dwelling unit is $44129 -in.representative_income 44135 Representative total house income in the dwelling unit is $44135 -in.representative_income 44143 Representative total house income in the dwelling unit is $44143 -in.representative_income 44145 Representative total house income in the dwelling unit is $44145 -in.representative_income 44146 Representative total house income in the dwelling unit is $44146 -in.representative_income 44154 Representative total house income in the dwelling unit is $44154 -in.representative_income 44167 Representative total house income in the dwelling unit is $44167 -in.representative_income 44179 Representative total house income in the dwelling unit is $44179 -in.representative_income 44187 Representative total house income in the dwelling unit is $44187 -in.representative_income 44188 Representative total house income in the dwelling unit is $44188 -in.representative_income 44191 Representative total house income in the dwelling unit is $44191 -in.representative_income 44194 Representative total house income in the dwelling unit is $44194 -in.representative_income 44198 Representative total house income in the dwelling unit is $44198 -in.representative_income 44209 Representative total house income in the dwelling unit is $44209 -in.representative_income 44226 Representative total house income in the dwelling unit is $44226 -in.representative_income 44237 Representative total house income in the dwelling unit is $44237 -in.representative_income 44244 Representative total house income in the dwelling unit is $44244 -in.representative_income 44249 Representative total house income in the dwelling unit is $44249 -in.representative_income 44258 Representative total house income in the dwelling unit is $44258 -in.representative_income 44262 Representative total house income in the dwelling unit is $44262 -in.representative_income 44270 Representative total house income in the dwelling unit is $44270 -in.representative_income 44279 Representative total house income in the dwelling unit is $44279 -in.representative_income 44280 Representative total house income in the dwelling unit is $44280 -in.representative_income 44293 Representative total house income in the dwelling unit is $44293 -in.representative_income 44296 Representative total house income in the dwelling unit is $44296 -in.representative_income 44297 Representative total house income in the dwelling unit is $44297 -in.representative_income 44299 Representative total house income in the dwelling unit is $44299 -in.representative_income 44314 Representative total house income in the dwelling unit is $44314 -in.representative_income 44316 Representative total house income in the dwelling unit is $44316 -in.representative_income 44334 Representative total house income in the dwelling unit is $44334 -in.representative_income 44335 Representative total house income in the dwelling unit is $44335 -in.representative_income 44342 Representative total house income in the dwelling unit is $44342 -in.representative_income 44343 Representative total house income in the dwelling unit is $44343 -in.representative_income 44344 Representative total house income in the dwelling unit is $44344 -in.representative_income 44345 Representative total house income in the dwelling unit is $44345 -in.representative_income 44348 Representative total house income in the dwelling unit is $44348 -in.representative_income 44352 Representative total house income in the dwelling unit is $44352 -in.representative_income 44355 Representative total house income in the dwelling unit is $44355 -in.representative_income 44357 Representative total house income in the dwelling unit is $44357 -in.representative_income 44376 Representative total house income in the dwelling unit is $44376 -in.representative_income 44378 Representative total house income in the dwelling unit is $44378 -in.representative_income 44388 Representative total house income in the dwelling unit is $44388 -in.representative_income 44394 Representative total house income in the dwelling unit is $44394 -in.representative_income 44396 Representative total house income in the dwelling unit is $44396 -in.representative_income 44399 Representative total house income in the dwelling unit is $44399 -in.representative_income 44404 Representative total house income in the dwelling unit is $44404 -in.representative_income 44407 Representative total house income in the dwelling unit is $44407 -in.representative_income 44420 Representative total house income in the dwelling unit is $44420 -in.representative_income 44441 Representative total house income in the dwelling unit is $44441 -in.representative_income 44446 Representative total house income in the dwelling unit is $44446 -in.representative_income 44452 Representative total house income in the dwelling unit is $44452 -in.representative_income 44456 Representative total house income in the dwelling unit is $44456 -in.representative_income 44461 Representative total house income in the dwelling unit is $44461 -in.representative_income 44473 Representative total house income in the dwelling unit is $44473 -in.representative_income 44474 Representative total house income in the dwelling unit is $44474 -in.representative_income 44486 Representative total house income in the dwelling unit is $44486 -in.representative_income 44487 Representative total house income in the dwelling unit is $44487 -in.representative_income 44494 Representative total house income in the dwelling unit is $44494 -in.representative_income 44495 Representative total house income in the dwelling unit is $44495 -in.representative_income 44504 Representative total house income in the dwelling unit is $44504 -in.representative_income 44507 Representative total house income in the dwelling unit is $44507 -in.representative_income 44515 Representative total house income in the dwelling unit is $44515 -in.representative_income 44520 Representative total house income in the dwelling unit is $44520 -in.representative_income 44537 Representative total house income in the dwelling unit is $44537 -in.representative_income 44547 Representative total house income in the dwelling unit is $44547 -in.representative_income 44548 Representative total house income in the dwelling unit is $44548 -in.representative_income 44556 Representative total house income in the dwelling unit is $44556 -in.representative_income 44557 Representative total house income in the dwelling unit is $44557 -in.representative_income 44559 Representative total house income in the dwelling unit is $44559 -in.representative_income 44569 Representative total house income in the dwelling unit is $44569 -in.representative_income 44578 Representative total house income in the dwelling unit is $44578 -in.representative_income 44580 Representative total house income in the dwelling unit is $44580 -in.representative_income 44608 Representative total house income in the dwelling unit is $44608 -in.representative_income 44610 Representative total house income in the dwelling unit is $44610 -in.representative_income 44612 Representative total house income in the dwelling unit is $44612 -in.representative_income 44623 Representative total house income in the dwelling unit is $44623 -in.representative_income 44648 Representative total house income in the dwelling unit is $44648 -in.representative_income 44655 Representative total house income in the dwelling unit is $44655 -in.representative_income 44662 Representative total house income in the dwelling unit is $44662 -in.representative_income 44666 Representative total house income in the dwelling unit is $44666 -in.representative_income 44699 Representative total house income in the dwelling unit is $44699 -in.representative_income 44715 Representative total house income in the dwelling unit is $44715 -in.representative_income 44731 Representative total house income in the dwelling unit is $44731 -in.representative_income 44749 Representative total house income in the dwelling unit is $44749 -in.representative_income 44763 Representative total house income in the dwelling unit is $44763 -in.representative_income 44764 Representative total house income in the dwelling unit is $44764 -in.representative_income 44765 Representative total house income in the dwelling unit is $44765 -in.representative_income 44768 Representative total house income in the dwelling unit is $44768 -in.representative_income 44797 Representative total house income in the dwelling unit is $44797 -in.representative_income 44800 Representative total house income in the dwelling unit is $44800 -in.representative_income 44821 Representative total house income in the dwelling unit is $44821 -in.representative_income 44840 Representative total house income in the dwelling unit is $44840 -in.representative_income 44850 Representative total house income in the dwelling unit is $44850 -in.representative_income 44868 Representative total house income in the dwelling unit is $44868 -in.representative_income 44870 Representative total house income in the dwelling unit is $44870 -in.representative_income 44872 Representative total house income in the dwelling unit is $44872 -in.representative_income 44909 Representative total house income in the dwelling unit is $44909 -in.representative_income 44926 Representative total house income in the dwelling unit is $44926 -in.representative_income 44931 Representative total house income in the dwelling unit is $44931 -in.representative_income 44948 Representative total house income in the dwelling unit is $44948 -in.representative_income 44951 Representative total house income in the dwelling unit is $44951 -in.representative_income 44969 Representative total house income in the dwelling unit is $44969 -in.representative_income 44971 Representative total house income in the dwelling unit is $44971 -in.representative_income 44978 Representative total house income in the dwelling unit is $44978 -in.representative_income 44990 Representative total house income in the dwelling unit is $44990 -in.representative_income 44991 Representative total house income in the dwelling unit is $44991 -in.representative_income 45002 Representative total house income in the dwelling unit is $45002 -in.representative_income 45031 Representative total house income in the dwelling unit is $45031 -in.representative_income 45052 Representative total house income in the dwelling unit is $45052 -in.representative_income 45056 Representative total house income in the dwelling unit is $45056 -in.representative_income 45075 Representative total house income in the dwelling unit is $45075 -in.representative_income 45085 Representative total house income in the dwelling unit is $45085 -in.representative_income 45119 Representative total house income in the dwelling unit is $45119 -in.representative_income 45137 Representative total house income in the dwelling unit is $45137 -in.representative_income 45153 Representative total house income in the dwelling unit is $45153 -in.representative_income 45164 Representative total house income in the dwelling unit is $45164 -in.representative_income 45171 Representative total house income in the dwelling unit is $45171 -in.representative_income 45174 Representative total house income in the dwelling unit is $45174 -in.representative_income 45178 Representative total house income in the dwelling unit is $45178 -in.representative_income 45192 Representative total house income in the dwelling unit is $45192 -in.representative_income 45196 Representative total house income in the dwelling unit is $45196 -in.representative_income 45235 Representative total house income in the dwelling unit is $45235 -in.representative_income 45239 Representative total house income in the dwelling unit is $45239 -in.representative_income 45243 Representative total house income in the dwelling unit is $45243 -in.representative_income 45250 Representative total house income in the dwelling unit is $45250 -in.representative_income 45253 Representative total house income in the dwelling unit is $45253 -in.representative_income 45254 Representative total house income in the dwelling unit is $45254 -in.representative_income 45272 Representative total house income in the dwelling unit is $45272 -in.representative_income 45278 Representative total house income in the dwelling unit is $45278 -in.representative_income 45280 Representative total house income in the dwelling unit is $45280 -in.representative_income 45292 Representative total house income in the dwelling unit is $45292 -in.representative_income 45299 Representative total house income in the dwelling unit is $45299 -in.representative_income 45325 Representative total house income in the dwelling unit is $45325 -in.representative_income 45340 Representative total house income in the dwelling unit is $45340 -in.representative_income 45348 Representative total house income in the dwelling unit is $45348 -in.representative_income 45356 Representative total house income in the dwelling unit is $45356 -in.representative_income 45369 Representative total house income in the dwelling unit is $45369 -in.representative_income 45376 Representative total house income in the dwelling unit is $45376 -in.representative_income 45379 Representative total house income in the dwelling unit is $45379 -in.representative_income 45384 Representative total house income in the dwelling unit is $45384 -in.representative_income 45390 Representative total house income in the dwelling unit is $45390 -in.representative_income 45400 Representative total house income in the dwelling unit is $45400 -in.representative_income 45401 Representative total house income in the dwelling unit is $45401 -in.representative_income 45407 Representative total house income in the dwelling unit is $45407 -in.representative_income 45415 Representative total house income in the dwelling unit is $45415 -in.representative_income 45418 Representative total house income in the dwelling unit is $45418 -in.representative_income 45420 Representative total house income in the dwelling unit is $45420 -in.representative_income 45423 Representative total house income in the dwelling unit is $45423 -in.representative_income 45454 Representative total house income in the dwelling unit is $45454 -in.representative_income 45455 Representative total house income in the dwelling unit is $45455 -in.representative_income 45457 Representative total house income in the dwelling unit is $45457 -in.representative_income 45466 Representative total house income in the dwelling unit is $45466 -in.representative_income 45467 Representative total house income in the dwelling unit is $45467 -in.representative_income 45477 Representative total house income in the dwelling unit is $45477 -in.representative_income 45485 Representative total house income in the dwelling unit is $45485 -in.representative_income 45487 Representative total house income in the dwelling unit is $45487 -in.representative_income 45493 Representative total house income in the dwelling unit is $45493 -in.representative_income 45514 Representative total house income in the dwelling unit is $45514 -in.representative_income 45525 Representative total house income in the dwelling unit is $45525 -in.representative_income 45557 Representative total house income in the dwelling unit is $45557 -in.representative_income 45558 Representative total house income in the dwelling unit is $45558 -in.representative_income 45559 Representative total house income in the dwelling unit is $45559 -in.representative_income 45568 Representative total house income in the dwelling unit is $45568 -in.representative_income 45580 Representative total house income in the dwelling unit is $45580 -in.representative_income 45589 Representative total house income in the dwelling unit is $45589 -in.representative_income 45590 Representative total house income in the dwelling unit is $45590 -in.representative_income 45596 Representative total house income in the dwelling unit is $45596 -in.representative_income 45598 Representative total house income in the dwelling unit is $45598 -in.representative_income 45601 Representative total house income in the dwelling unit is $45601 -in.representative_income 45608 Representative total house income in the dwelling unit is $45608 -in.representative_income 45610 Representative total house income in the dwelling unit is $45610 -in.representative_income 45622 Representative total house income in the dwelling unit is $45622 -in.representative_income 45638 Representative total house income in the dwelling unit is $45638 -in.representative_income 45639 Representative total house income in the dwelling unit is $45639 -in.representative_income 45640 Representative total house income in the dwelling unit is $45640 -in.representative_income 45643 Representative total house income in the dwelling unit is $45643 -in.representative_income 45648 Representative total house income in the dwelling unit is $45648 -in.representative_income 45650 Representative total house income in the dwelling unit is $45650 -in.representative_income 45653 Representative total house income in the dwelling unit is $45653 -in.representative_income 45659 Representative total house income in the dwelling unit is $45659 -in.representative_income 45664 Representative total house income in the dwelling unit is $45664 -in.representative_income 45694 Representative total house income in the dwelling unit is $45694 -in.representative_income 45704 Representative total house income in the dwelling unit is $45704 -in.representative_income 45709 Representative total house income in the dwelling unit is $45709 -in.representative_income 45729 Representative total house income in the dwelling unit is $45729 -in.representative_income 45746 Representative total house income in the dwelling unit is $45746 -in.representative_income 45749 Representative total house income in the dwelling unit is $45749 -in.representative_income 45760 Representative total house income in the dwelling unit is $45760 -in.representative_income 45762 Representative total house income in the dwelling unit is $45762 -in.representative_income 45769 Representative total house income in the dwelling unit is $45769 -in.representative_income 45770 Representative total house income in the dwelling unit is $45770 -in.representative_income 45796 Representative total house income in the dwelling unit is $45796 -in.representative_income 45797 Representative total house income in the dwelling unit is $45797 -in.representative_income 45810 Representative total house income in the dwelling unit is $45810 -in.representative_income 45812 Representative total house income in the dwelling unit is $45812 -in.representative_income 45836 Representative total house income in the dwelling unit is $45836 -in.representative_income 45843 Representative total house income in the dwelling unit is $45843 -in.representative_income 45848 Representative total house income in the dwelling unit is $45848 -in.representative_income 45861 Representative total house income in the dwelling unit is $45861 -in.representative_income 45865 Representative total house income in the dwelling unit is $45865 -in.representative_income 45866 Representative total house income in the dwelling unit is $45866 -in.representative_income 45876 Representative total house income in the dwelling unit is $45876 -in.representative_income 45880 Representative total house income in the dwelling unit is $45880 -in.representative_income 45898 Representative total house income in the dwelling unit is $45898 -in.representative_income 45899 Representative total house income in the dwelling unit is $45899 -in.representative_income 45901 Representative total house income in the dwelling unit is $45901 -in.representative_income 45917 Representative total house income in the dwelling unit is $45917 -in.representative_income 45920 Representative total house income in the dwelling unit is $45920 -in.representative_income 45921 Representative total house income in the dwelling unit is $45921 -in.representative_income 45931 Representative total house income in the dwelling unit is $45931 -in.representative_income 45944 Representative total house income in the dwelling unit is $45944 -in.representative_income 45951 Representative total house income in the dwelling unit is $45951 -in.representative_income 45952 Representative total house income in the dwelling unit is $45952 -in.representative_income 45954 Representative total house income in the dwelling unit is $45954 -in.representative_income 45962 Representative total house income in the dwelling unit is $45962 -in.representative_income 45965 Representative total house income in the dwelling unit is $45965 -in.representative_income 45981 Representative total house income in the dwelling unit is $45981 -in.representative_income 45985 Representative total house income in the dwelling unit is $45985 -in.representative_income 45990 Representative total house income in the dwelling unit is $45990 -in.representative_income 45992 Representative total house income in the dwelling unit is $45992 -in.representative_income 45997 Representative total house income in the dwelling unit is $45997 -in.representative_income 46002 Representative total house income in the dwelling unit is $46002 -in.representative_income 46003 Representative total house income in the dwelling unit is $46003 -in.representative_income 46017 Representative total house income in the dwelling unit is $46017 -in.representative_income 46022 Representative total house income in the dwelling unit is $46022 -in.representative_income 46023 Representative total house income in the dwelling unit is $46023 -in.representative_income 46028 Representative total house income in the dwelling unit is $46028 -in.representative_income 46039 Representative total house income in the dwelling unit is $46039 -in.representative_income 46044 Representative total house income in the dwelling unit is $46044 -in.representative_income 46047 Representative total house income in the dwelling unit is $46047 -in.representative_income 46051 Representative total house income in the dwelling unit is $46051 -in.representative_income 46053 Representative total house income in the dwelling unit is $46053 -in.representative_income 46060 Representative total house income in the dwelling unit is $46060 -in.representative_income 46063 Representative total house income in the dwelling unit is $46063 -in.representative_income 46065 Representative total house income in the dwelling unit is $46065 -in.representative_income 46075 Representative total house income in the dwelling unit is $46075 -in.representative_income 46083 Representative total house income in the dwelling unit is $46083 -in.representative_income 46086 Representative total house income in the dwelling unit is $46086 -in.representative_income 46097 Representative total house income in the dwelling unit is $46097 -in.representative_income 46106 Representative total house income in the dwelling unit is $46106 -in.representative_income 46113 Representative total house income in the dwelling unit is $46113 -in.representative_income 46116 Representative total house income in the dwelling unit is $46116 -in.representative_income 46126 Representative total house income in the dwelling unit is $46126 -in.representative_income 46136 Representative total house income in the dwelling unit is $46136 -in.representative_income 46139 Representative total house income in the dwelling unit is $46139 -in.representative_income 46143 Representative total house income in the dwelling unit is $46143 -in.representative_income 46147 Representative total house income in the dwelling unit is $46147 -in.representative_income 46157 Representative total house income in the dwelling unit is $46157 -in.representative_income 46158 Representative total house income in the dwelling unit is $46158 -in.representative_income 46159 Representative total house income in the dwelling unit is $46159 -in.representative_income 46164 Representative total house income in the dwelling unit is $46164 -in.representative_income 46168 Representative total house income in the dwelling unit is $46168 -in.representative_income 46169 Representative total house income in the dwelling unit is $46169 -in.representative_income 46184 Representative total house income in the dwelling unit is $46184 -in.representative_income 46190 Representative total house income in the dwelling unit is $46190 -in.representative_income 46191 Representative total house income in the dwelling unit is $46191 -in.representative_income 46192 Representative total house income in the dwelling unit is $46192 -in.representative_income 46199 Representative total house income in the dwelling unit is $46199 -in.representative_income 46209 Representative total house income in the dwelling unit is $46209 -in.representative_income 46214 Representative total house income in the dwelling unit is $46214 -in.representative_income 46220 Representative total house income in the dwelling unit is $46220 -in.representative_income 46222 Representative total house income in the dwelling unit is $46222 -in.representative_income 46223 Representative total house income in the dwelling unit is $46223 -in.representative_income 46229 Representative total house income in the dwelling unit is $46229 -in.representative_income 46233 Representative total house income in the dwelling unit is $46233 -in.representative_income 46240 Representative total house income in the dwelling unit is $46240 -in.representative_income 46244 Representative total house income in the dwelling unit is $46244 -in.representative_income 46245 Representative total house income in the dwelling unit is $46245 -in.representative_income 46248 Representative total house income in the dwelling unit is $46248 -in.representative_income 46255 Representative total house income in the dwelling unit is $46255 -in.representative_income 46265 Representative total house income in the dwelling unit is $46265 -in.representative_income 46266 Representative total house income in the dwelling unit is $46266 -in.representative_income 46279 Representative total house income in the dwelling unit is $46279 -in.representative_income 46281 Representative total house income in the dwelling unit is $46281 -in.representative_income 46288 Representative total house income in the dwelling unit is $46288 -in.representative_income 46297 Representative total house income in the dwelling unit is $46297 -in.representative_income 46298 Representative total house income in the dwelling unit is $46298 -in.representative_income 46302 Representative total house income in the dwelling unit is $46302 -in.representative_income 46306 Representative total house income in the dwelling unit is $46306 -in.representative_income 46308 Representative total house income in the dwelling unit is $46308 -in.representative_income 46312 Representative total house income in the dwelling unit is $46312 -in.representative_income 46319 Representative total house income in the dwelling unit is $46319 -in.representative_income 46335 Representative total house income in the dwelling unit is $46335 -in.representative_income 46340 Representative total house income in the dwelling unit is $46340 -in.representative_income 46352 Representative total house income in the dwelling unit is $46352 -in.representative_income 46353 Representative total house income in the dwelling unit is $46353 -in.representative_income 46357 Representative total house income in the dwelling unit is $46357 -in.representative_income 46363 Representative total house income in the dwelling unit is $46363 -in.representative_income 46366 Representative total house income in the dwelling unit is $46366 -in.representative_income 46373 Representative total house income in the dwelling unit is $46373 -in.representative_income 46375 Representative total house income in the dwelling unit is $46375 -in.representative_income 46377 Representative total house income in the dwelling unit is $46377 -in.representative_income 46381 Representative total house income in the dwelling unit is $46381 -in.representative_income 46383 Representative total house income in the dwelling unit is $46383 -in.representative_income 46385 Representative total house income in the dwelling unit is $46385 -in.representative_income 46394 Representative total house income in the dwelling unit is $46394 -in.representative_income 46402 Representative total house income in the dwelling unit is $46402 -in.representative_income 46415 Representative total house income in the dwelling unit is $46415 -in.representative_income 46418 Representative total house income in the dwelling unit is $46418 -in.representative_income 46425 Representative total house income in the dwelling unit is $46425 -in.representative_income 46432 Representative total house income in the dwelling unit is $46432 -in.representative_income 46434 Representative total house income in the dwelling unit is $46434 -in.representative_income 46439 Representative total house income in the dwelling unit is $46439 -in.representative_income 46444 Representative total house income in the dwelling unit is $46444 -in.representative_income 46445 Representative total house income in the dwelling unit is $46445 -in.representative_income 46455 Representative total house income in the dwelling unit is $46455 -in.representative_income 46457 Representative total house income in the dwelling unit is $46457 -in.representative_income 46461 Representative total house income in the dwelling unit is $46461 -in.representative_income 46462 Representative total house income in the dwelling unit is $46462 -in.representative_income 46467 Representative total house income in the dwelling unit is $46467 -in.representative_income 46480 Representative total house income in the dwelling unit is $46480 -in.representative_income 46482 Representative total house income in the dwelling unit is $46482 -in.representative_income 46485 Representative total house income in the dwelling unit is $46485 -in.representative_income 46498 Representative total house income in the dwelling unit is $46498 -in.representative_income 46499 Representative total house income in the dwelling unit is $46499 -in.representative_income 46501 Representative total house income in the dwelling unit is $46501 -in.representative_income 46502 Representative total house income in the dwelling unit is $46502 -in.representative_income 46507 Representative total house income in the dwelling unit is $46507 -in.representative_income 46508 Representative total house income in the dwelling unit is $46508 -in.representative_income 46514 Representative total house income in the dwelling unit is $46514 -in.representative_income 46517 Representative total house income in the dwelling unit is $46517 -in.representative_income 46518 Representative total house income in the dwelling unit is $46518 -in.representative_income 46519 Representative total house income in the dwelling unit is $46519 -in.representative_income 46534 Representative total house income in the dwelling unit is $46534 -in.representative_income 46536 Representative total house income in the dwelling unit is $46536 -in.representative_income 46539 Representative total house income in the dwelling unit is $46539 -in.representative_income 46540 Representative total house income in the dwelling unit is $46540 -in.representative_income 46544 Representative total house income in the dwelling unit is $46544 -in.representative_income 46545 Representative total house income in the dwelling unit is $46545 -in.representative_income 46550 Representative total house income in the dwelling unit is $46550 -in.representative_income 46553 Representative total house income in the dwelling unit is $46553 -in.representative_income 46556 Representative total house income in the dwelling unit is $46556 -in.representative_income 46567 Representative total house income in the dwelling unit is $46567 -in.representative_income 46568 Representative total house income in the dwelling unit is $46568 -in.representative_income 46570 Representative total house income in the dwelling unit is $46570 -in.representative_income 46571 Representative total house income in the dwelling unit is $46571 -in.representative_income 46578 Representative total house income in the dwelling unit is $46578 -in.representative_income 46588 Representative total house income in the dwelling unit is $46588 -in.representative_income 46590 Representative total house income in the dwelling unit is $46590 -in.representative_income 46601 Representative total house income in the dwelling unit is $46601 -in.representative_income 46603 Representative total house income in the dwelling unit is $46603 -in.representative_income 46614 Representative total house income in the dwelling unit is $46614 -in.representative_income 46616 Representative total house income in the dwelling unit is $46616 -in.representative_income 46618 Representative total house income in the dwelling unit is $46618 -in.representative_income 46620 Representative total house income in the dwelling unit is $46620 -in.representative_income 46622 Representative total house income in the dwelling unit is $46622 -in.representative_income 46628 Representative total house income in the dwelling unit is $46628 -in.representative_income 46630 Representative total house income in the dwelling unit is $46630 -in.representative_income 46633 Representative total house income in the dwelling unit is $46633 -in.representative_income 46639 Representative total house income in the dwelling unit is $46639 -in.representative_income 46656 Representative total house income in the dwelling unit is $46656 -in.representative_income 46666 Representative total house income in the dwelling unit is $46666 -in.representative_income 46669 Representative total house income in the dwelling unit is $46669 -in.representative_income 46676 Representative total house income in the dwelling unit is $46676 -in.representative_income 46677 Representative total house income in the dwelling unit is $46677 -in.representative_income 46678 Representative total house income in the dwelling unit is $46678 -in.representative_income 46685 Representative total house income in the dwelling unit is $46685 -in.representative_income 46694 Representative total house income in the dwelling unit is $46694 -in.representative_income 46695 Representative total house income in the dwelling unit is $46695 -in.representative_income 46699 Representative total house income in the dwelling unit is $46699 -in.representative_income 46715 Representative total house income in the dwelling unit is $46715 -in.representative_income 46718 Representative total house income in the dwelling unit is $46718 -in.representative_income 46719 Representative total house income in the dwelling unit is $46719 -in.representative_income 46720 Representative total house income in the dwelling unit is $46720 -in.representative_income 46723 Representative total house income in the dwelling unit is $46723 -in.representative_income 46725 Representative total house income in the dwelling unit is $46725 -in.representative_income 46729 Representative total house income in the dwelling unit is $46729 -in.representative_income 46730 Representative total house income in the dwelling unit is $46730 -in.representative_income 46734 Representative total house income in the dwelling unit is $46734 -in.representative_income 46735 Representative total house income in the dwelling unit is $46735 -in.representative_income 46741 Representative total house income in the dwelling unit is $46741 -in.representative_income 46743 Representative total house income in the dwelling unit is $46743 -in.representative_income 46744 Representative total house income in the dwelling unit is $46744 -in.representative_income 46745 Representative total house income in the dwelling unit is $46745 -in.representative_income 46747 Representative total house income in the dwelling unit is $46747 -in.representative_income 46750 Representative total house income in the dwelling unit is $46750 -in.representative_income 46755 Representative total house income in the dwelling unit is $46755 -in.representative_income 46759 Representative total house income in the dwelling unit is $46759 -in.representative_income 46763 Representative total house income in the dwelling unit is $46763 -in.representative_income 46766 Representative total house income in the dwelling unit is $46766 -in.representative_income 46770 Representative total house income in the dwelling unit is $46770 -in.representative_income 46777 Representative total house income in the dwelling unit is $46777 -in.representative_income 46781 Representative total house income in the dwelling unit is $46781 -in.representative_income 46783 Representative total house income in the dwelling unit is $46783 -in.representative_income 46784 Representative total house income in the dwelling unit is $46784 -in.representative_income 46785 Representative total house income in the dwelling unit is $46785 -in.representative_income 46797 Representative total house income in the dwelling unit is $46797 -in.representative_income 46802 Representative total house income in the dwelling unit is $46802 -in.representative_income 46804 Representative total house income in the dwelling unit is $46804 -in.representative_income 46806 Representative total house income in the dwelling unit is $46806 -in.representative_income 46808 Representative total house income in the dwelling unit is $46808 -in.representative_income 46814 Representative total house income in the dwelling unit is $46814 -in.representative_income 46817 Representative total house income in the dwelling unit is $46817 -in.representative_income 46823 Representative total house income in the dwelling unit is $46823 -in.representative_income 46824 Representative total house income in the dwelling unit is $46824 -in.representative_income 46828 Representative total house income in the dwelling unit is $46828 -in.representative_income 46830 Representative total house income in the dwelling unit is $46830 -in.representative_income 46839 Representative total house income in the dwelling unit is $46839 -in.representative_income 46840 Representative total house income in the dwelling unit is $46840 -in.representative_income 46845 Representative total house income in the dwelling unit is $46845 -in.representative_income 46849 Representative total house income in the dwelling unit is $46849 -in.representative_income 46851 Representative total house income in the dwelling unit is $46851 -in.representative_income 46856 Representative total house income in the dwelling unit is $46856 -in.representative_income 46859 Representative total house income in the dwelling unit is $46859 -in.representative_income 46860 Representative total house income in the dwelling unit is $46860 -in.representative_income 46869 Representative total house income in the dwelling unit is $46869 -in.representative_income 46871 Representative total house income in the dwelling unit is $46871 -in.representative_income 46879 Representative total house income in the dwelling unit is $46879 -in.representative_income 46881 Representative total house income in the dwelling unit is $46881 -in.representative_income 46890 Representative total house income in the dwelling unit is $46890 -in.representative_income 46892 Representative total house income in the dwelling unit is $46892 -in.representative_income 46900 Representative total house income in the dwelling unit is $46900 -in.representative_income 46901 Representative total house income in the dwelling unit is $46901 -in.representative_income 46903 Representative total house income in the dwelling unit is $46903 -in.representative_income 46909 Representative total house income in the dwelling unit is $46909 -in.representative_income 46911 Representative total house income in the dwelling unit is $46911 -in.representative_income 46914 Representative total house income in the dwelling unit is $46914 -in.representative_income 46920 Representative total house income in the dwelling unit is $46920 -in.representative_income 46921 Representative total house income in the dwelling unit is $46921 -in.representative_income 46925 Representative total house income in the dwelling unit is $46925 -in.representative_income 46930 Representative total house income in the dwelling unit is $46930 -in.representative_income 46931 Representative total house income in the dwelling unit is $46931 -in.representative_income 46941 Representative total house income in the dwelling unit is $46941 -in.representative_income 46942 Representative total house income in the dwelling unit is $46942 -in.representative_income 46952 Representative total house income in the dwelling unit is $46952 -in.representative_income 46957 Representative total house income in the dwelling unit is $46957 -in.representative_income 46959 Representative total house income in the dwelling unit is $46959 -in.representative_income 46962 Representative total house income in the dwelling unit is $46962 -in.representative_income 46972 Representative total house income in the dwelling unit is $46972 -in.representative_income 46982 Representative total house income in the dwelling unit is $46982 -in.representative_income 46983 Representative total house income in the dwelling unit is $46983 -in.representative_income 46985 Representative total house income in the dwelling unit is $46985 -in.representative_income 46993 Representative total house income in the dwelling unit is $46993 -in.representative_income 47000 Representative total house income in the dwelling unit is $47000 -in.representative_income 47001 Representative total house income in the dwelling unit is $47001 -in.representative_income 47004 Representative total house income in the dwelling unit is $47004 -in.representative_income 47011 Representative total house income in the dwelling unit is $47011 -in.representative_income 47012 Representative total house income in the dwelling unit is $47012 -in.representative_income 47014 Representative total house income in the dwelling unit is $47014 -in.representative_income 47017 Representative total house income in the dwelling unit is $47017 -in.representative_income 47024 Representative total house income in the dwelling unit is $47024 -in.representative_income 47028 Representative total house income in the dwelling unit is $47028 -in.representative_income 47034 Representative total house income in the dwelling unit is $47034 -in.representative_income 47035 Representative total house income in the dwelling unit is $47035 -in.representative_income 47043 Representative total house income in the dwelling unit is $47043 -in.representative_income 47044 Representative total house income in the dwelling unit is $47044 -in.representative_income 47046 Representative total house income in the dwelling unit is $47046 -in.representative_income 47055 Representative total house income in the dwelling unit is $47055 -in.representative_income 47058 Representative total house income in the dwelling unit is $47058 -in.representative_income 47060 Representative total house income in the dwelling unit is $47060 -in.representative_income 47065 Representative total house income in the dwelling unit is $47065 -in.representative_income 47071 Representative total house income in the dwelling unit is $47071 -in.representative_income 47073 Representative total house income in the dwelling unit is $47073 -in.representative_income 47076 Representative total house income in the dwelling unit is $47076 -in.representative_income 47086 Representative total house income in the dwelling unit is $47086 -in.representative_income 47088 Representative total house income in the dwelling unit is $47088 -in.representative_income 47091 Representative total house income in the dwelling unit is $47091 -in.representative_income 47093 Representative total house income in the dwelling unit is $47093 -in.representative_income 47097 Representative total house income in the dwelling unit is $47097 -in.representative_income 47103 Representative total house income in the dwelling unit is $47103 -in.representative_income 47105 Representative total house income in the dwelling unit is $47105 -in.representative_income 47108 Representative total house income in the dwelling unit is $47108 -in.representative_income 47109 Representative total house income in the dwelling unit is $47109 -in.representative_income 47117 Representative total house income in the dwelling unit is $47117 -in.representative_income 47119 Representative total house income in the dwelling unit is $47119 -in.representative_income 47123 Representative total house income in the dwelling unit is $47123 -in.representative_income 47125 Representative total house income in the dwelling unit is $47125 -in.representative_income 47130 Representative total house income in the dwelling unit is $47130 -in.representative_income 47137 Representative total house income in the dwelling unit is $47137 -in.representative_income 47141 Representative total house income in the dwelling unit is $47141 -in.representative_income 47146 Representative total house income in the dwelling unit is $47146 -in.representative_income 47152 Representative total house income in the dwelling unit is $47152 -in.representative_income 47156 Representative total house income in the dwelling unit is $47156 -in.representative_income 47157 Representative total house income in the dwelling unit is $47157 -in.representative_income 47162 Representative total house income in the dwelling unit is $47162 -in.representative_income 47163 Representative total house income in the dwelling unit is $47163 -in.representative_income 47164 Representative total house income in the dwelling unit is $47164 -in.representative_income 47167 Representative total house income in the dwelling unit is $47167 -in.representative_income 47169 Representative total house income in the dwelling unit is $47169 -in.representative_income 47170 Representative total house income in the dwelling unit is $47170 -in.representative_income 47171 Representative total house income in the dwelling unit is $47171 -in.representative_income 47173 Representative total house income in the dwelling unit is $47173 -in.representative_income 47174 Representative total house income in the dwelling unit is $47174 -in.representative_income 47178 Representative total house income in the dwelling unit is $47178 -in.representative_income 47179 Representative total house income in the dwelling unit is $47179 -in.representative_income 47183 Representative total house income in the dwelling unit is $47183 -in.representative_income 47185 Representative total house income in the dwelling unit is $47185 -in.representative_income 47189 Representative total house income in the dwelling unit is $47189 -in.representative_income 47193 Representative total house income in the dwelling unit is $47193 -in.representative_income 47194 Representative total house income in the dwelling unit is $47194 -in.representative_income 47195 Representative total house income in the dwelling unit is $47195 -in.representative_income 47206 Representative total house income in the dwelling unit is $47206 -in.representative_income 47209 Representative total house income in the dwelling unit is $47209 -in.representative_income 47211 Representative total house income in the dwelling unit is $47211 -in.representative_income 47214 Representative total house income in the dwelling unit is $47214 -in.representative_income 47217 Representative total house income in the dwelling unit is $47217 -in.representative_income 47219 Representative total house income in the dwelling unit is $47219 -in.representative_income 47224 Representative total house income in the dwelling unit is $47224 -in.representative_income 47226 Representative total house income in the dwelling unit is $47226 -in.representative_income 47228 Representative total house income in the dwelling unit is $47228 -in.representative_income 47232 Representative total house income in the dwelling unit is $47232 -in.representative_income 47234 Representative total house income in the dwelling unit is $47234 -in.representative_income 47236 Representative total house income in the dwelling unit is $47236 -in.representative_income 47241 Representative total house income in the dwelling unit is $47241 -in.representative_income 47242 Representative total house income in the dwelling unit is $47242 -in.representative_income 47243 Representative total house income in the dwelling unit is $47243 -in.representative_income 47247 Representative total house income in the dwelling unit is $47247 -in.representative_income 47251 Representative total house income in the dwelling unit is $47251 -in.representative_income 47253 Representative total house income in the dwelling unit is $47253 -in.representative_income 47255 Representative total house income in the dwelling unit is $47255 -in.representative_income 47260 Representative total house income in the dwelling unit is $47260 -in.representative_income 47264 Representative total house income in the dwelling unit is $47264 -in.representative_income 47271 Representative total house income in the dwelling unit is $47271 -in.representative_income 47272 Representative total house income in the dwelling unit is $47272 -in.representative_income 47275 Representative total house income in the dwelling unit is $47275 -in.representative_income 47280 Representative total house income in the dwelling unit is $47280 -in.representative_income 47285 Representative total house income in the dwelling unit is $47285 -in.representative_income 47286 Representative total house income in the dwelling unit is $47286 -in.representative_income 47288 Representative total house income in the dwelling unit is $47288 -in.representative_income 47292 Representative total house income in the dwelling unit is $47292 -in.representative_income 47295 Representative total house income in the dwelling unit is $47295 -in.representative_income 47296 Representative total house income in the dwelling unit is $47296 -in.representative_income 47299 Representative total house income in the dwelling unit is $47299 -in.representative_income 47303 Representative total house income in the dwelling unit is $47303 -in.representative_income 47305 Representative total house income in the dwelling unit is $47305 -in.representative_income 47307 Representative total house income in the dwelling unit is $47307 -in.representative_income 47314 Representative total house income in the dwelling unit is $47314 -in.representative_income 47317 Representative total house income in the dwelling unit is $47317 -in.representative_income 47323 Representative total house income in the dwelling unit is $47323 -in.representative_income 47325 Representative total house income in the dwelling unit is $47325 -in.representative_income 47327 Representative total house income in the dwelling unit is $47327 -in.representative_income 47328 Representative total house income in the dwelling unit is $47328 -in.representative_income 47331 Representative total house income in the dwelling unit is $47331 -in.representative_income 47334 Representative total house income in the dwelling unit is $47334 -in.representative_income 47336 Representative total house income in the dwelling unit is $47336 -in.representative_income 47340 Representative total house income in the dwelling unit is $47340 -in.representative_income 47344 Representative total house income in the dwelling unit is $47344 -in.representative_income 47346 Representative total house income in the dwelling unit is $47346 -in.representative_income 47350 Representative total house income in the dwelling unit is $47350 -in.representative_income 47352 Representative total house income in the dwelling unit is $47352 -in.representative_income 47356 Representative total house income in the dwelling unit is $47356 -in.representative_income 47361 Representative total house income in the dwelling unit is $47361 -in.representative_income 47364 Representative total house income in the dwelling unit is $47364 -in.representative_income 47366 Representative total house income in the dwelling unit is $47366 -in.representative_income 47368 Representative total house income in the dwelling unit is $47368 -in.representative_income 47373 Representative total house income in the dwelling unit is $47373 -in.representative_income 47376 Representative total house income in the dwelling unit is $47376 -in.representative_income 47379 Representative total house income in the dwelling unit is $47379 -in.representative_income 47380 Representative total house income in the dwelling unit is $47380 -in.representative_income 47385 Representative total house income in the dwelling unit is $47385 -in.representative_income 47386 Representative total house income in the dwelling unit is $47386 -in.representative_income 47388 Representative total house income in the dwelling unit is $47388 -in.representative_income 47396 Representative total house income in the dwelling unit is $47396 -in.representative_income 47399 Representative total house income in the dwelling unit is $47399 -in.representative_income 47400 Representative total house income in the dwelling unit is $47400 -in.representative_income 47405 Representative total house income in the dwelling unit is $47405 -in.representative_income 47406 Representative total house income in the dwelling unit is $47406 -in.representative_income 47414 Representative total house income in the dwelling unit is $47414 -in.representative_income 47415 Representative total house income in the dwelling unit is $47415 -in.representative_income 47416 Representative total house income in the dwelling unit is $47416 -in.representative_income 47426 Representative total house income in the dwelling unit is $47426 -in.representative_income 47433 Representative total house income in the dwelling unit is $47433 -in.representative_income 47436 Representative total house income in the dwelling unit is $47436 -in.representative_income 47444 Representative total house income in the dwelling unit is $47444 -in.representative_income 47446 Representative total house income in the dwelling unit is $47446 -in.representative_income 47447 Representative total house income in the dwelling unit is $47447 -in.representative_income 47450 Representative total house income in the dwelling unit is $47450 -in.representative_income 47452 Representative total house income in the dwelling unit is $47452 -in.representative_income 47454 Representative total house income in the dwelling unit is $47454 -in.representative_income 47457 Representative total house income in the dwelling unit is $47457 -in.representative_income 47458 Representative total house income in the dwelling unit is $47458 -in.representative_income 47462 Representative total house income in the dwelling unit is $47462 -in.representative_income 47465 Representative total house income in the dwelling unit is $47465 -in.representative_income 47467 Representative total house income in the dwelling unit is $47467 -in.representative_income 47468 Representative total house income in the dwelling unit is $47468 -in.representative_income 47471 Representative total house income in the dwelling unit is $47471 -in.representative_income 47476 Representative total house income in the dwelling unit is $47476 -in.representative_income 47477 Representative total house income in the dwelling unit is $47477 -in.representative_income 47478 Representative total house income in the dwelling unit is $47478 -in.representative_income 47479 Representative total house income in the dwelling unit is $47479 -in.representative_income 47480 Representative total house income in the dwelling unit is $47480 -in.representative_income 47487 Representative total house income in the dwelling unit is $47487 -in.representative_income 47488 Representative total house income in the dwelling unit is $47488 -in.representative_income 47494 Representative total house income in the dwelling unit is $47494 -in.representative_income 47497 Representative total house income in the dwelling unit is $47497 -in.representative_income 47499 Representative total house income in the dwelling unit is $47499 -in.representative_income 47500 Representative total house income in the dwelling unit is $47500 -in.representative_income 47503 Representative total house income in the dwelling unit is $47503 -in.representative_income 47506 Representative total house income in the dwelling unit is $47506 -in.representative_income 47507 Representative total house income in the dwelling unit is $47507 -in.representative_income 47510 Representative total house income in the dwelling unit is $47510 -in.representative_income 47515 Representative total house income in the dwelling unit is $47515 -in.representative_income 47517 Representative total house income in the dwelling unit is $47517 -in.representative_income 47519 Representative total house income in the dwelling unit is $47519 -in.representative_income 47521 Representative total house income in the dwelling unit is $47521 -in.representative_income 47522 Representative total house income in the dwelling unit is $47522 -in.representative_income 47524 Representative total house income in the dwelling unit is $47524 -in.representative_income 47527 Representative total house income in the dwelling unit is $47527 -in.representative_income 47531 Representative total house income in the dwelling unit is $47531 -in.representative_income 47532 Representative total house income in the dwelling unit is $47532 -in.representative_income 47541 Representative total house income in the dwelling unit is $47541 -in.representative_income 47542 Representative total house income in the dwelling unit is $47542 -in.representative_income 47545 Representative total house income in the dwelling unit is $47545 -in.representative_income 47548 Representative total house income in the dwelling unit is $47548 -in.representative_income 47550 Representative total house income in the dwelling unit is $47550 -in.representative_income 47551 Representative total house income in the dwelling unit is $47551 -in.representative_income 47554 Representative total house income in the dwelling unit is $47554 -in.representative_income 47560 Representative total house income in the dwelling unit is $47560 -in.representative_income 47562 Representative total house income in the dwelling unit is $47562 -in.representative_income 47563 Representative total house income in the dwelling unit is $47563 -in.representative_income 47570 Representative total house income in the dwelling unit is $47570 -in.representative_income 47571 Representative total house income in the dwelling unit is $47571 -in.representative_income 47573 Representative total house income in the dwelling unit is $47573 -in.representative_income 47574 Representative total house income in the dwelling unit is $47574 -in.representative_income 47575 Representative total house income in the dwelling unit is $47575 -in.representative_income 47578 Representative total house income in the dwelling unit is $47578 -in.representative_income 47584 Representative total house income in the dwelling unit is $47584 -in.representative_income 47591 Representative total house income in the dwelling unit is $47591 -in.representative_income 47595 Representative total house income in the dwelling unit is $47595 -in.representative_income 47599 Representative total house income in the dwelling unit is $47599 -in.representative_income 47601 Representative total house income in the dwelling unit is $47601 -in.representative_income 47605 Representative total house income in the dwelling unit is $47605 -in.representative_income 47608 Representative total house income in the dwelling unit is $47608 -in.representative_income 47616 Representative total house income in the dwelling unit is $47616 -in.representative_income 47618 Representative total house income in the dwelling unit is $47618 -in.representative_income 47626 Representative total house income in the dwelling unit is $47626 -in.representative_income 47627 Representative total house income in the dwelling unit is $47627 -in.representative_income 47631 Representative total house income in the dwelling unit is $47631 -in.representative_income 47633 Representative total house income in the dwelling unit is $47633 -in.representative_income 47638 Representative total house income in the dwelling unit is $47638 -in.representative_income 47640 Representative total house income in the dwelling unit is $47640 -in.representative_income 47643 Representative total house income in the dwelling unit is $47643 -in.representative_income 47649 Representative total house income in the dwelling unit is $47649 -in.representative_income 47653 Representative total house income in the dwelling unit is $47653 -in.representative_income 47657 Representative total house income in the dwelling unit is $47657 -in.representative_income 47659 Representative total house income in the dwelling unit is $47659 -in.representative_income 47661 Representative total house income in the dwelling unit is $47661 -in.representative_income 47662 Representative total house income in the dwelling unit is $47662 -in.representative_income 47663 Representative total house income in the dwelling unit is $47663 -in.representative_income 47665 Representative total house income in the dwelling unit is $47665 -in.representative_income 47666 Representative total house income in the dwelling unit is $47666 -in.representative_income 47668 Representative total house income in the dwelling unit is $47668 -in.representative_income 47670 Representative total house income in the dwelling unit is $47670 -in.representative_income 47672 Representative total house income in the dwelling unit is $47672 -in.representative_income 47673 Representative total house income in the dwelling unit is $47673 -in.representative_income 47678 Representative total house income in the dwelling unit is $47678 -in.representative_income 47679 Representative total house income in the dwelling unit is $47679 -in.representative_income 47681 Representative total house income in the dwelling unit is $47681 -in.representative_income 47683 Representative total house income in the dwelling unit is $47683 -in.representative_income 47689 Representative total house income in the dwelling unit is $47689 -in.representative_income 47693 Representative total house income in the dwelling unit is $47693 -in.representative_income 47695 Representative total house income in the dwelling unit is $47695 -in.representative_income 47699 Representative total house income in the dwelling unit is $47699 -in.representative_income 47703 Representative total house income in the dwelling unit is $47703 -in.representative_income 47704 Representative total house income in the dwelling unit is $47704 -in.representative_income 47705 Representative total house income in the dwelling unit is $47705 -in.representative_income 47709 Representative total house income in the dwelling unit is $47709 -in.representative_income 47710 Representative total house income in the dwelling unit is $47710 -in.representative_income 47712 Representative total house income in the dwelling unit is $47712 -in.representative_income 47713 Representative total house income in the dwelling unit is $47713 -in.representative_income 47714 Representative total house income in the dwelling unit is $47714 -in.representative_income 47721 Representative total house income in the dwelling unit is $47721 -in.representative_income 47725 Representative total house income in the dwelling unit is $47725 -in.representative_income 47729 Representative total house income in the dwelling unit is $47729 -in.representative_income 47731 Representative total house income in the dwelling unit is $47731 -in.representative_income 47735 Representative total house income in the dwelling unit is $47735 -in.representative_income 47742 Representative total house income in the dwelling unit is $47742 -in.representative_income 47756 Representative total house income in the dwelling unit is $47756 -in.representative_income 47758 Representative total house income in the dwelling unit is $47758 -in.representative_income 47760 Representative total house income in the dwelling unit is $47760 -in.representative_income 47761 Representative total house income in the dwelling unit is $47761 -in.representative_income 47764 Representative total house income in the dwelling unit is $47764 -in.representative_income 47765 Representative total house income in the dwelling unit is $47765 -in.representative_income 47767 Representative total house income in the dwelling unit is $47767 -in.representative_income 47769 Representative total house income in the dwelling unit is $47769 -in.representative_income 47770 Representative total house income in the dwelling unit is $47770 -in.representative_income 47774 Representative total house income in the dwelling unit is $47774 -in.representative_income 47777 Representative total house income in the dwelling unit is $47777 -in.representative_income 47778 Representative total house income in the dwelling unit is $47778 -in.representative_income 47780 Representative total house income in the dwelling unit is $47780 -in.representative_income 47784 Representative total house income in the dwelling unit is $47784 -in.representative_income 47787 Representative total house income in the dwelling unit is $47787 -in.representative_income 47789 Representative total house income in the dwelling unit is $47789 -in.representative_income 47790 Representative total house income in the dwelling unit is $47790 -in.representative_income 47798 Representative total house income in the dwelling unit is $47798 -in.representative_income 47808 Representative total house income in the dwelling unit is $47808 -in.representative_income 47816 Representative total house income in the dwelling unit is $47816 -in.representative_income 47818 Representative total house income in the dwelling unit is $47818 -in.representative_income 47821 Representative total house income in the dwelling unit is $47821 -in.representative_income 47822 Representative total house income in the dwelling unit is $47822 -in.representative_income 47825 Representative total house income in the dwelling unit is $47825 -in.representative_income 47826 Representative total house income in the dwelling unit is $47826 -in.representative_income 47829 Representative total house income in the dwelling unit is $47829 -in.representative_income 47833 Representative total house income in the dwelling unit is $47833 -in.representative_income 47838 Representative total house income in the dwelling unit is $47838 -in.representative_income 47840 Representative total house income in the dwelling unit is $47840 -in.representative_income 47852 Representative total house income in the dwelling unit is $47852 -in.representative_income 47854 Representative total house income in the dwelling unit is $47854 -in.representative_income 47858 Representative total house income in the dwelling unit is $47858 -in.representative_income 47860 Representative total house income in the dwelling unit is $47860 -in.representative_income 47862 Representative total house income in the dwelling unit is $47862 -in.representative_income 47864 Representative total house income in the dwelling unit is $47864 -in.representative_income 47869 Representative total house income in the dwelling unit is $47869 -in.representative_income 47870 Representative total house income in the dwelling unit is $47870 -in.representative_income 47872 Representative total house income in the dwelling unit is $47872 -in.representative_income 47876 Representative total house income in the dwelling unit is $47876 -in.representative_income 47879 Representative total house income in the dwelling unit is $47879 -in.representative_income 47880 Representative total house income in the dwelling unit is $47880 -in.representative_income 47881 Representative total house income in the dwelling unit is $47881 -in.representative_income 47890 Representative total house income in the dwelling unit is $47890 -in.representative_income 47891 Representative total house income in the dwelling unit is $47891 -in.representative_income 47897 Representative total house income in the dwelling unit is $47897 -in.representative_income 47899 Representative total house income in the dwelling unit is $47899 -in.representative_income 47900 Representative total house income in the dwelling unit is $47900 -in.representative_income 47901 Representative total house income in the dwelling unit is $47901 -in.representative_income 47911 Representative total house income in the dwelling unit is $47911 -in.representative_income 47918 Representative total house income in the dwelling unit is $47918 -in.representative_income 47919 Representative total house income in the dwelling unit is $47919 -in.representative_income 47920 Representative total house income in the dwelling unit is $47920 -in.representative_income 47930 Representative total house income in the dwelling unit is $47930 -in.representative_income 47931 Representative total house income in the dwelling unit is $47931 -in.representative_income 47941 Representative total house income in the dwelling unit is $47941 -in.representative_income 47942 Representative total house income in the dwelling unit is $47942 -in.representative_income 47944 Representative total house income in the dwelling unit is $47944 -in.representative_income 47951 Representative total house income in the dwelling unit is $47951 -in.representative_income 47953 Representative total house income in the dwelling unit is $47953 -in.representative_income 47962 Representative total house income in the dwelling unit is $47962 -in.representative_income 47967 Representative total house income in the dwelling unit is $47967 -in.representative_income 47973 Representative total house income in the dwelling unit is $47973 -in.representative_income 47974 Representative total house income in the dwelling unit is $47974 -in.representative_income 47977 Representative total house income in the dwelling unit is $47977 -in.representative_income 47979 Representative total house income in the dwelling unit is $47979 -in.representative_income 47982 Representative total house income in the dwelling unit is $47982 -in.representative_income 47983 Representative total house income in the dwelling unit is $47983 -in.representative_income 47984 Representative total house income in the dwelling unit is $47984 -in.representative_income 47985 Representative total house income in the dwelling unit is $47985 -in.representative_income 47992 Representative total house income in the dwelling unit is $47992 -in.representative_income 47993 Representative total house income in the dwelling unit is $47993 -in.representative_income 48014 Representative total house income in the dwelling unit is $48014 -in.representative_income 48016 Representative total house income in the dwelling unit is $48016 -in.representative_income 48019 Representative total house income in the dwelling unit is $48019 -in.representative_income 48026 Representative total house income in the dwelling unit is $48026 -in.representative_income 48027 Representative total house income in the dwelling unit is $48027 -in.representative_income 48030 Representative total house income in the dwelling unit is $48030 -in.representative_income 48032 Representative total house income in the dwelling unit is $48032 -in.representative_income 48033 Representative total house income in the dwelling unit is $48033 -in.representative_income 48034 Representative total house income in the dwelling unit is $48034 -in.representative_income 48037 Representative total house income in the dwelling unit is $48037 -in.representative_income 48038 Representative total house income in the dwelling unit is $48038 -in.representative_income 48039 Representative total house income in the dwelling unit is $48039 -in.representative_income 48042 Representative total house income in the dwelling unit is $48042 -in.representative_income 48048 Representative total house income in the dwelling unit is $48048 -in.representative_income 48049 Representative total house income in the dwelling unit is $48049 -in.representative_income 48058 Representative total house income in the dwelling unit is $48058 -in.representative_income 48060 Representative total house income in the dwelling unit is $48060 -in.representative_income 48065 Representative total house income in the dwelling unit is $48065 -in.representative_income 48069 Representative total house income in the dwelling unit is $48069 -in.representative_income 48081 Representative total house income in the dwelling unit is $48081 -in.representative_income 48083 Representative total house income in the dwelling unit is $48083 -in.representative_income 48085 Representative total house income in the dwelling unit is $48085 -in.representative_income 48090 Representative total house income in the dwelling unit is $48090 -in.representative_income 48097 Representative total house income in the dwelling unit is $48097 -in.representative_income 48101 Representative total house income in the dwelling unit is $48101 -in.representative_income 48133 Representative total house income in the dwelling unit is $48133 -in.representative_income 48139 Representative total house income in the dwelling unit is $48139 -in.representative_income 48143 Representative total house income in the dwelling unit is $48143 -in.representative_income 48153 Representative total house income in the dwelling unit is $48153 -in.representative_income 48155 Representative total house income in the dwelling unit is $48155 -in.representative_income 48157 Representative total house income in the dwelling unit is $48157 -in.representative_income 48164 Representative total house income in the dwelling unit is $48164 -in.representative_income 48168 Representative total house income in the dwelling unit is $48168 -in.representative_income 48169 Representative total house income in the dwelling unit is $48169 -in.representative_income 48184 Representative total house income in the dwelling unit is $48184 -in.representative_income 48189 Representative total house income in the dwelling unit is $48189 -in.representative_income 48195 Representative total house income in the dwelling unit is $48195 -in.representative_income 48197 Representative total house income in the dwelling unit is $48197 -in.representative_income 48198 Representative total house income in the dwelling unit is $48198 -in.representative_income 48206 Representative total house income in the dwelling unit is $48206 -in.representative_income 48209 Representative total house income in the dwelling unit is $48209 -in.representative_income 48217 Representative total house income in the dwelling unit is $48217 -in.representative_income 48220 Representative total house income in the dwelling unit is $48220 -in.representative_income 48227 Representative total house income in the dwelling unit is $48227 -in.representative_income 48232 Representative total house income in the dwelling unit is $48232 -in.representative_income 48234 Representative total house income in the dwelling unit is $48234 -in.representative_income 48237 Representative total house income in the dwelling unit is $48237 -in.representative_income 48238 Representative total house income in the dwelling unit is $48238 -in.representative_income 48243 Representative total house income in the dwelling unit is $48243 -in.representative_income 48245 Representative total house income in the dwelling unit is $48245 -in.representative_income 48248 Representative total house income in the dwelling unit is $48248 -in.representative_income 48251 Representative total house income in the dwelling unit is $48251 -in.representative_income 48254 Representative total house income in the dwelling unit is $48254 -in.representative_income 48259 Representative total house income in the dwelling unit is $48259 -in.representative_income 48262 Representative total house income in the dwelling unit is $48262 -in.representative_income 48264 Representative total house income in the dwelling unit is $48264 -in.representative_income 48265 Representative total house income in the dwelling unit is $48265 -in.representative_income 48272 Representative total house income in the dwelling unit is $48272 -in.representative_income 48285 Representative total house income in the dwelling unit is $48285 -in.representative_income 48292 Representative total house income in the dwelling unit is $48292 -in.representative_income 48295 Representative total house income in the dwelling unit is $48295 -in.representative_income 48297 Representative total house income in the dwelling unit is $48297 -in.representative_income 48300 Representative total house income in the dwelling unit is $48300 -in.representative_income 48301 Representative total house income in the dwelling unit is $48301 -in.representative_income 48305 Representative total house income in the dwelling unit is $48305 -in.representative_income 48308 Representative total house income in the dwelling unit is $48308 -in.representative_income 48310 Representative total house income in the dwelling unit is $48310 -in.representative_income 48315 Representative total house income in the dwelling unit is $48315 -in.representative_income 48316 Representative total house income in the dwelling unit is $48316 -in.representative_income 48322 Representative total house income in the dwelling unit is $48322 -in.representative_income 48324 Representative total house income in the dwelling unit is $48324 -in.representative_income 48327 Representative total house income in the dwelling unit is $48327 -in.representative_income 48337 Representative total house income in the dwelling unit is $48337 -in.representative_income 48344 Representative total house income in the dwelling unit is $48344 -in.representative_income 48348 Representative total house income in the dwelling unit is $48348 -in.representative_income 48354 Representative total house income in the dwelling unit is $48354 -in.representative_income 48359 Representative total house income in the dwelling unit is $48359 -in.representative_income 48362 Representative total house income in the dwelling unit is $48362 -in.representative_income 48364 Representative total house income in the dwelling unit is $48364 -in.representative_income 48369 Representative total house income in the dwelling unit is $48369 -in.representative_income 48374 Representative total house income in the dwelling unit is $48374 -in.representative_income 48375 Representative total house income in the dwelling unit is $48375 -in.representative_income 48380 Representative total house income in the dwelling unit is $48380 -in.representative_income 48383 Representative total house income in the dwelling unit is $48383 -in.representative_income 48385 Representative total house income in the dwelling unit is $48385 -in.representative_income 48386 Representative total house income in the dwelling unit is $48386 -in.representative_income 48392 Representative total house income in the dwelling unit is $48392 -in.representative_income 48396 Representative total house income in the dwelling unit is $48396 -in.representative_income 48405 Representative total house income in the dwelling unit is $48405 -in.representative_income 48406 Representative total house income in the dwelling unit is $48406 -in.representative_income 48407 Representative total house income in the dwelling unit is $48407 -in.representative_income 48413 Representative total house income in the dwelling unit is $48413 -in.representative_income 48427 Representative total house income in the dwelling unit is $48427 -in.representative_income 48434 Representative total house income in the dwelling unit is $48434 -in.representative_income 48456 Representative total house income in the dwelling unit is $48456 -in.representative_income 48457 Representative total house income in the dwelling unit is $48457 -in.representative_income 48463 Representative total house income in the dwelling unit is $48463 -in.representative_income 48466 Representative total house income in the dwelling unit is $48466 -in.representative_income 48467 Representative total house income in the dwelling unit is $48467 -in.representative_income 48468 Representative total house income in the dwelling unit is $48468 -in.representative_income 48469 Representative total house income in the dwelling unit is $48469 -in.representative_income 48479 Representative total house income in the dwelling unit is $48479 -in.representative_income 48480 Representative total house income in the dwelling unit is $48480 -in.representative_income 48487 Representative total house income in the dwelling unit is $48487 -in.representative_income 48489 Representative total house income in the dwelling unit is $48489 -in.representative_income 48491 Representative total house income in the dwelling unit is $48491 -in.representative_income 48495 Representative total house income in the dwelling unit is $48495 -in.representative_income 48496 Representative total house income in the dwelling unit is $48496 -in.representative_income 48497 Representative total house income in the dwelling unit is $48497 -in.representative_income 48498 Representative total house income in the dwelling unit is $48498 -in.representative_income 48499 Representative total house income in the dwelling unit is $48499 -in.representative_income 48507 Representative total house income in the dwelling unit is $48507 -in.representative_income 48509 Representative total house income in the dwelling unit is $48509 -in.representative_income 48512 Representative total house income in the dwelling unit is $48512 -in.representative_income 48513 Representative total house income in the dwelling unit is $48513 -in.representative_income 48517 Representative total house income in the dwelling unit is $48517 -in.representative_income 48519 Representative total house income in the dwelling unit is $48519 -in.representative_income 48522 Representative total house income in the dwelling unit is $48522 -in.representative_income 48524 Representative total house income in the dwelling unit is $48524 -in.representative_income 48529 Representative total house income in the dwelling unit is $48529 -in.representative_income 48543 Representative total house income in the dwelling unit is $48543 -in.representative_income 48546 Representative total house income in the dwelling unit is $48546 -in.representative_income 48548 Representative total house income in the dwelling unit is $48548 -in.representative_income 48552 Representative total house income in the dwelling unit is $48552 -in.representative_income 48554 Representative total house income in the dwelling unit is $48554 -in.representative_income 48558 Representative total house income in the dwelling unit is $48558 -in.representative_income 48563 Representative total house income in the dwelling unit is $48563 -in.representative_income 48564 Representative total house income in the dwelling unit is $48564 -in.representative_income 48567 Representative total house income in the dwelling unit is $48567 -in.representative_income 48574 Representative total house income in the dwelling unit is $48574 -in.representative_income 48581 Representative total house income in the dwelling unit is $48581 -in.representative_income 48586 Representative total house income in the dwelling unit is $48586 -in.representative_income 48588 Representative total house income in the dwelling unit is $48588 -in.representative_income 48589 Representative total house income in the dwelling unit is $48589 -in.representative_income 48607 Representative total house income in the dwelling unit is $48607 -in.representative_income 48617 Representative total house income in the dwelling unit is $48617 -in.representative_income 48618 Representative total house income in the dwelling unit is $48618 -in.representative_income 48621 Representative total house income in the dwelling unit is $48621 -in.representative_income 48623 Representative total house income in the dwelling unit is $48623 -in.representative_income 48625 Representative total house income in the dwelling unit is $48625 -in.representative_income 48627 Representative total house income in the dwelling unit is $48627 -in.representative_income 48628 Representative total house income in the dwelling unit is $48628 -in.representative_income 48633 Representative total house income in the dwelling unit is $48633 -in.representative_income 48638 Representative total house income in the dwelling unit is $48638 -in.representative_income 48642 Representative total house income in the dwelling unit is $48642 -in.representative_income 48644 Representative total house income in the dwelling unit is $48644 -in.representative_income 48653 Representative total house income in the dwelling unit is $48653 -in.representative_income 48655 Representative total house income in the dwelling unit is $48655 -in.representative_income 48659 Representative total house income in the dwelling unit is $48659 -in.representative_income 48668 Representative total house income in the dwelling unit is $48668 -in.representative_income 48684 Representative total house income in the dwelling unit is $48684 -in.representative_income 48686 Representative total house income in the dwelling unit is $48686 -in.representative_income 48689 Representative total house income in the dwelling unit is $48689 -in.representative_income 48692 Representative total house income in the dwelling unit is $48692 -in.representative_income 48696 Representative total house income in the dwelling unit is $48696 -in.representative_income 48699 Representative total house income in the dwelling unit is $48699 -in.representative_income 48706 Representative total house income in the dwelling unit is $48706 -in.representative_income 48709 Representative total house income in the dwelling unit is $48709 -in.representative_income 48713 Representative total house income in the dwelling unit is $48713 -in.representative_income 48719 Representative total house income in the dwelling unit is $48719 -in.representative_income 48723 Representative total house income in the dwelling unit is $48723 -in.representative_income 48730 Representative total house income in the dwelling unit is $48730 -in.representative_income 48732 Representative total house income in the dwelling unit is $48732 -in.representative_income 48735 Representative total house income in the dwelling unit is $48735 -in.representative_income 48746 Representative total house income in the dwelling unit is $48746 -in.representative_income 48751 Representative total house income in the dwelling unit is $48751 -in.representative_income 48759 Representative total house income in the dwelling unit is $48759 -in.representative_income 48770 Representative total house income in the dwelling unit is $48770 -in.representative_income 48777 Representative total house income in the dwelling unit is $48777 -in.representative_income 48788 Representative total house income in the dwelling unit is $48788 -in.representative_income 48790 Representative total house income in the dwelling unit is $48790 -in.representative_income 48805 Representative total house income in the dwelling unit is $48805 -in.representative_income 48807 Representative total house income in the dwelling unit is $48807 -in.representative_income 48828 Representative total house income in the dwelling unit is $48828 -in.representative_income 48829 Representative total house income in the dwelling unit is $48829 -in.representative_income 48838 Representative total house income in the dwelling unit is $48838 -in.representative_income 48842 Representative total house income in the dwelling unit is $48842 -in.representative_income 48850 Representative total house income in the dwelling unit is $48850 -in.representative_income 48861 Representative total house income in the dwelling unit is $48861 -in.representative_income 48881 Representative total house income in the dwelling unit is $48881 -in.representative_income 48889 Representative total house income in the dwelling unit is $48889 -in.representative_income 48891 Representative total house income in the dwelling unit is $48891 -in.representative_income 48892 Representative total house income in the dwelling unit is $48892 -in.representative_income 48895 Representative total house income in the dwelling unit is $48895 -in.representative_income 48907 Representative total house income in the dwelling unit is $48907 -in.representative_income 48933 Representative total house income in the dwelling unit is $48933 -in.representative_income 48942 Representative total house income in the dwelling unit is $48942 -in.representative_income 48945 Representative total house income in the dwelling unit is $48945 -in.representative_income 48950 Representative total house income in the dwelling unit is $48950 -in.representative_income 48973 Representative total house income in the dwelling unit is $48973 -in.representative_income 48978 Representative total house income in the dwelling unit is $48978 -in.representative_income 48992 Representative total house income in the dwelling unit is $48992 -in.representative_income 48994 Representative total house income in the dwelling unit is $48994 -in.representative_income 49000 Representative total house income in the dwelling unit is $49000 -in.representative_income 49007 Representative total house income in the dwelling unit is $49007 -in.representative_income 49010 Representative total house income in the dwelling unit is $49010 -in.representative_income 49018 Representative total house income in the dwelling unit is $49018 -in.representative_income 49024 Representative total house income in the dwelling unit is $49024 -in.representative_income 49035 Representative total house income in the dwelling unit is $49035 -in.representative_income 49040 Representative total house income in the dwelling unit is $49040 -in.representative_income 49053 Representative total house income in the dwelling unit is $49053 -in.representative_income 49056 Representative total house income in the dwelling unit is $49056 -in.representative_income 49060 Representative total house income in the dwelling unit is $49060 -in.representative_income 49068 Representative total house income in the dwelling unit is $49068 -in.representative_income 49076 Representative total house income in the dwelling unit is $49076 -in.representative_income 49078 Representative total house income in the dwelling unit is $49078 -in.representative_income 49086 Representative total house income in the dwelling unit is $49086 -in.representative_income 49093 Representative total house income in the dwelling unit is $49093 -in.representative_income 49097 Representative total house income in the dwelling unit is $49097 -in.representative_income 49100 Representative total house income in the dwelling unit is $49100 -in.representative_income 49107 Representative total house income in the dwelling unit is $49107 -in.representative_income 49113 Representative total house income in the dwelling unit is $49113 -in.representative_income 49144 Representative total house income in the dwelling unit is $49144 -in.representative_income 49145 Representative total house income in the dwelling unit is $49145 -in.representative_income 49152 Representative total house income in the dwelling unit is $49152 -in.representative_income 49161 Representative total house income in the dwelling unit is $49161 -in.representative_income 49164 Representative total house income in the dwelling unit is $49164 -in.representative_income 49168 Representative total house income in the dwelling unit is $49168 -in.representative_income 49183 Representative total house income in the dwelling unit is $49183 -in.representative_income 49190 Representative total house income in the dwelling unit is $49190 -in.representative_income 49194 Representative total house income in the dwelling unit is $49194 -in.representative_income 49200 Representative total house income in the dwelling unit is $49200 -in.representative_income 49201 Representative total house income in the dwelling unit is $49201 -in.representative_income 49215 Representative total house income in the dwelling unit is $49215 -in.representative_income 49218 Representative total house income in the dwelling unit is $49218 -in.representative_income 49234 Representative total house income in the dwelling unit is $49234 -in.representative_income 49250 Representative total house income in the dwelling unit is $49250 -in.representative_income 49268 Representative total house income in the dwelling unit is $49268 -in.representative_income 49269 Representative total house income in the dwelling unit is $49269 -in.representative_income 49271 Representative total house income in the dwelling unit is $49271 -in.representative_income 49280 Representative total house income in the dwelling unit is $49280 -in.representative_income 49283 Representative total house income in the dwelling unit is $49283 -in.representative_income 49295 Representative total house income in the dwelling unit is $49295 -in.representative_income 49303 Representative total house income in the dwelling unit is $49303 -in.representative_income 49314 Representative total house income in the dwelling unit is $49314 -in.representative_income 49323 Representative total house income in the dwelling unit is $49323 -in.representative_income 49335 Representative total house income in the dwelling unit is $49335 -in.representative_income 49355 Representative total house income in the dwelling unit is $49355 -in.representative_income 49356 Representative total house income in the dwelling unit is $49356 -in.representative_income 49375 Representative total house income in the dwelling unit is $49375 -in.representative_income 49377 Representative total house income in the dwelling unit is $49377 -in.representative_income 49378 Representative total house income in the dwelling unit is $49378 -in.representative_income 49379 Representative total house income in the dwelling unit is $49379 -in.representative_income 49396 Representative total house income in the dwelling unit is $49396 -in.representative_income 49407 Representative total house income in the dwelling unit is $49407 -in.representative_income 49413 Representative total house income in the dwelling unit is $49413 -in.representative_income 49427 Representative total house income in the dwelling unit is $49427 -in.representative_income 49453 Representative total house income in the dwelling unit is $49453 -in.representative_income 49461 Representative total house income in the dwelling unit is $49461 -in.representative_income 49477 Representative total house income in the dwelling unit is $49477 -in.representative_income 49485 Representative total house income in the dwelling unit is $49485 -in.representative_income 49486 Representative total house income in the dwelling unit is $49486 -in.representative_income 49493 Representative total house income in the dwelling unit is $49493 -in.representative_income 49497 Representative total house income in the dwelling unit is $49497 -in.representative_income 49508 Representative total house income in the dwelling unit is $49508 -in.representative_income 49510 Representative total house income in the dwelling unit is $49510 -in.representative_income 49514 Representative total house income in the dwelling unit is $49514 -in.representative_income 49538 Representative total house income in the dwelling unit is $49538 -in.representative_income 49540 Representative total house income in the dwelling unit is $49540 -in.representative_income 49566 Representative total house income in the dwelling unit is $49566 -in.representative_income 49593 Representative total house income in the dwelling unit is $49593 -in.representative_income 49594 Representative total house income in the dwelling unit is $49594 -in.representative_income 49598 Representative total house income in the dwelling unit is $49598 -in.representative_income 49608 Representative total house income in the dwelling unit is $49608 -in.representative_income 49612 Representative total house income in the dwelling unit is $49612 -in.representative_income 49637 Representative total house income in the dwelling unit is $49637 -in.representative_income 49644 Representative total house income in the dwelling unit is $49644 -in.representative_income 49647 Representative total house income in the dwelling unit is $49647 -in.representative_income 49650 Representative total house income in the dwelling unit is $49650 -in.representative_income 49659 Representative total house income in the dwelling unit is $49659 -in.representative_income 49672 Representative total house income in the dwelling unit is $49672 -in.representative_income 49689 Representative total house income in the dwelling unit is $49689 -in.representative_income 49695 Representative total house income in the dwelling unit is $49695 -in.representative_income 49699 Representative total house income in the dwelling unit is $49699 -in.representative_income 49700 Representative total house income in the dwelling unit is $49700 -in.representative_income 49702 Representative total house income in the dwelling unit is $49702 -in.representative_income 49703 Representative total house income in the dwelling unit is $49703 -in.representative_income 49712 Representative total house income in the dwelling unit is $49712 -in.representative_income 49716 Representative total house income in the dwelling unit is $49716 -in.representative_income 49729 Representative total house income in the dwelling unit is $49729 -in.representative_income 49755 Representative total house income in the dwelling unit is $49755 -in.representative_income 49767 Representative total house income in the dwelling unit is $49767 -in.representative_income 49777 Representative total house income in the dwelling unit is $49777 -in.representative_income 49778 Representative total house income in the dwelling unit is $49778 -in.representative_income 49800 Representative total house income in the dwelling unit is $49800 -in.representative_income 49808 Representative total house income in the dwelling unit is $49808 -in.representative_income 49810 Representative total house income in the dwelling unit is $49810 -in.representative_income 49811 Representative total house income in the dwelling unit is $49811 -in.representative_income 49819 Representative total house income in the dwelling unit is $49819 -in.representative_income 49830 Representative total house income in the dwelling unit is $49830 -in.representative_income 49831 Representative total house income in the dwelling unit is $49831 -in.representative_income 49840 Representative total house income in the dwelling unit is $49840 -in.representative_income 49841 Representative total house income in the dwelling unit is $49841 -in.representative_income 49862 Representative total house income in the dwelling unit is $49862 -in.representative_income 49871 Representative total house income in the dwelling unit is $49871 -in.representative_income 49881 Representative total house income in the dwelling unit is $49881 -in.representative_income 49883 Representative total house income in the dwelling unit is $49883 -in.representative_income 49901 Representative total house income in the dwelling unit is $49901 -in.representative_income 49914 Representative total house income in the dwelling unit is $49914 -in.representative_income 49915 Representative total house income in the dwelling unit is $49915 -in.representative_income 49918 Representative total house income in the dwelling unit is $49918 -in.representative_income 49922 Representative total house income in the dwelling unit is $49922 -in.representative_income 49947 Representative total house income in the dwelling unit is $49947 -in.representative_income 49969 Representative total house income in the dwelling unit is $49969 -in.representative_income 49982 Representative total house income in the dwelling unit is $49982 -in.representative_income 49985 Representative total house income in the dwelling unit is $49985 -in.representative_income 49988 Representative total house income in the dwelling unit is $49988 -in.representative_income 49999 Representative total house income in the dwelling unit is $49999 -in.representative_income 50002 Representative total house income in the dwelling unit is $50002 -in.representative_income 50012 Representative total house income in the dwelling unit is $50012 -in.representative_income 50023 Representative total house income in the dwelling unit is $50023 -in.representative_income 50026 Representative total house income in the dwelling unit is $50026 -in.representative_income 50036 Representative total house income in the dwelling unit is $50036 -in.representative_income 50041 Representative total house income in the dwelling unit is $50041 -in.representative_income 50047 Representative total house income in the dwelling unit is $50047 -in.representative_income 50073 Representative total house income in the dwelling unit is $50073 -in.representative_income 50093 Representative total house income in the dwelling unit is $50093 -in.representative_income 50103 Representative total house income in the dwelling unit is $50103 -in.representative_income 50104 Representative total house income in the dwelling unit is $50104 -in.representative_income 50108 Representative total house income in the dwelling unit is $50108 -in.representative_income 50129 Representative total house income in the dwelling unit is $50129 -in.representative_income 50131 Representative total house income in the dwelling unit is $50131 -in.representative_income 50134 Representative total house income in the dwelling unit is $50134 -in.representative_income 50141 Representative total house income in the dwelling unit is $50141 -in.representative_income 50147 Representative total house income in the dwelling unit is $50147 -in.representative_income 50180 Representative total house income in the dwelling unit is $50180 -in.representative_income 50184 Representative total house income in the dwelling unit is $50184 -in.representative_income 50199 Representative total house income in the dwelling unit is $50199 -in.representative_income 50204 Representative total house income in the dwelling unit is $50204 -in.representative_income 50220 Representative total house income in the dwelling unit is $50220 -in.representative_income 50221 Representative total house income in the dwelling unit is $50221 -in.representative_income 50231 Representative total house income in the dwelling unit is $50231 -in.representative_income 50237 Representative total house income in the dwelling unit is $50237 -in.representative_income 50241 Representative total house income in the dwelling unit is $50241 -in.representative_income 50242 Representative total house income in the dwelling unit is $50242 -in.representative_income 50253 Representative total house income in the dwelling unit is $50253 -in.representative_income 50258 Representative total house income in the dwelling unit is $50258 -in.representative_income 50263 Representative total house income in the dwelling unit is $50263 -in.representative_income 50266 Representative total house income in the dwelling unit is $50266 -in.representative_income 50271 Representative total house income in the dwelling unit is $50271 -in.representative_income 50275 Representative total house income in the dwelling unit is $50275 -in.representative_income 50281 Representative total house income in the dwelling unit is $50281 -in.representative_income 50302 Representative total house income in the dwelling unit is $50302 -in.representative_income 50304 Representative total house income in the dwelling unit is $50304 -in.representative_income 50305 Representative total house income in the dwelling unit is $50305 -in.representative_income 50315 Representative total house income in the dwelling unit is $50315 -in.representative_income 50323 Representative total house income in the dwelling unit is $50323 -in.representative_income 50335 Representative total house income in the dwelling unit is $50335 -in.representative_income 50345 Representative total house income in the dwelling unit is $50345 -in.representative_income 50346 Representative total house income in the dwelling unit is $50346 -in.representative_income 50350 Representative total house income in the dwelling unit is $50350 -in.representative_income 50355 Representative total house income in the dwelling unit is $50355 -in.representative_income 50356 Representative total house income in the dwelling unit is $50356 -in.representative_income 50357 Representative total house income in the dwelling unit is $50357 -in.representative_income 50366 Representative total house income in the dwelling unit is $50366 -in.representative_income 50374 Representative total house income in the dwelling unit is $50374 -in.representative_income 50376 Representative total house income in the dwelling unit is $50376 -in.representative_income 50378 Representative total house income in the dwelling unit is $50378 -in.representative_income 50393 Representative total house income in the dwelling unit is $50393 -in.representative_income 50396 Representative total house income in the dwelling unit is $50396 -in.representative_income 50399 Representative total house income in the dwelling unit is $50399 -in.representative_income 50401 Representative total house income in the dwelling unit is $50401 -in.representative_income 50404 Representative total house income in the dwelling unit is $50404 -in.representative_income 50406 Representative total house income in the dwelling unit is $50406 -in.representative_income 50408 Representative total house income in the dwelling unit is $50408 -in.representative_income 50410 Representative total house income in the dwelling unit is $50410 -in.representative_income 50421 Representative total house income in the dwelling unit is $50421 -in.representative_income 50423 Representative total house income in the dwelling unit is $50423 -in.representative_income 50426 Representative total house income in the dwelling unit is $50426 -in.representative_income 50431 Representative total house income in the dwelling unit is $50431 -in.representative_income 50438 Representative total house income in the dwelling unit is $50438 -in.representative_income 50442 Representative total house income in the dwelling unit is $50442 -in.representative_income 50447 Representative total house income in the dwelling unit is $50447 -in.representative_income 50452 Representative total house income in the dwelling unit is $50452 -in.representative_income 50455 Representative total house income in the dwelling unit is $50455 -in.representative_income 50456 Representative total house income in the dwelling unit is $50456 -in.representative_income 50458 Representative total house income in the dwelling unit is $50458 -in.representative_income 50463 Representative total house income in the dwelling unit is $50463 -in.representative_income 50473 Representative total house income in the dwelling unit is $50473 -in.representative_income 50474 Representative total house income in the dwelling unit is $50474 -in.representative_income 50480 Representative total house income in the dwelling unit is $50480 -in.representative_income 50484 Representative total house income in the dwelling unit is $50484 -in.representative_income 50486 Representative total house income in the dwelling unit is $50486 -in.representative_income 50490 Representative total house income in the dwelling unit is $50490 -in.representative_income 50491 Representative total house income in the dwelling unit is $50491 -in.representative_income 50495 Representative total house income in the dwelling unit is $50495 -in.representative_income 50501 Representative total house income in the dwelling unit is $50501 -in.representative_income 50507 Representative total house income in the dwelling unit is $50507 -in.representative_income 50516 Representative total house income in the dwelling unit is $50516 -in.representative_income 50517 Representative total house income in the dwelling unit is $50517 -in.representative_income 50524 Representative total house income in the dwelling unit is $50524 -in.representative_income 50531 Representative total house income in the dwelling unit is $50531 -in.representative_income 50537 Representative total house income in the dwelling unit is $50537 -in.representative_income 50541 Representative total house income in the dwelling unit is $50541 -in.representative_income 50546 Representative total house income in the dwelling unit is $50546 -in.representative_income 50549 Representative total house income in the dwelling unit is $50549 -in.representative_income 50552 Representative total house income in the dwelling unit is $50552 -in.representative_income 50554 Representative total house income in the dwelling unit is $50554 -in.representative_income 50558 Representative total house income in the dwelling unit is $50558 -in.representative_income 50560 Representative total house income in the dwelling unit is $50560 -in.representative_income 50566 Representative total house income in the dwelling unit is $50566 -in.representative_income 50568 Representative total house income in the dwelling unit is $50568 -in.representative_income 50569 Representative total house income in the dwelling unit is $50569 -in.representative_income 50572 Representative total house income in the dwelling unit is $50572 -in.representative_income 50578 Representative total house income in the dwelling unit is $50578 -in.representative_income 50581 Representative total house income in the dwelling unit is $50581 -in.representative_income 50588 Representative total house income in the dwelling unit is $50588 -in.representative_income 50593 Representative total house income in the dwelling unit is $50593 -in.representative_income 50599 Representative total house income in the dwelling unit is $50599 -in.representative_income 50604 Representative total house income in the dwelling unit is $50604 -in.representative_income 50608 Representative total house income in the dwelling unit is $50608 -in.representative_income 50609 Representative total house income in the dwelling unit is $50609 -in.representative_income 50615 Representative total house income in the dwelling unit is $50615 -in.representative_income 50621 Representative total house income in the dwelling unit is $50621 -in.representative_income 50631 Representative total house income in the dwelling unit is $50631 -in.representative_income 50634 Representative total house income in the dwelling unit is $50634 -in.representative_income 50639 Representative total house income in the dwelling unit is $50639 -in.representative_income 50642 Representative total house income in the dwelling unit is $50642 -in.representative_income 50645 Representative total house income in the dwelling unit is $50645 -in.representative_income 50648 Representative total house income in the dwelling unit is $50648 -in.representative_income 50652 Representative total house income in the dwelling unit is $50652 -in.representative_income 50656 Representative total house income in the dwelling unit is $50656 -in.representative_income 50659 Representative total house income in the dwelling unit is $50659 -in.representative_income 50663 Representative total house income in the dwelling unit is $50663 -in.representative_income 50667 Representative total house income in the dwelling unit is $50667 -in.representative_income 50674 Representative total house income in the dwelling unit is $50674 -in.representative_income 50675 Representative total house income in the dwelling unit is $50675 -in.representative_income 50695 Representative total house income in the dwelling unit is $50695 -in.representative_income 50709 Representative total house income in the dwelling unit is $50709 -in.representative_income 50726 Representative total house income in the dwelling unit is $50726 -in.representative_income 50727 Representative total house income in the dwelling unit is $50727 -in.representative_income 50728 Representative total house income in the dwelling unit is $50728 -in.representative_income 50729 Representative total house income in the dwelling unit is $50729 -in.representative_income 50747 Representative total house income in the dwelling unit is $50747 -in.representative_income 50760 Representative total house income in the dwelling unit is $50760 -in.representative_income 50769 Representative total house income in the dwelling unit is $50769 -in.representative_income 50774 Representative total house income in the dwelling unit is $50774 -in.representative_income 50775 Representative total house income in the dwelling unit is $50775 -in.representative_income 50782 Representative total house income in the dwelling unit is $50782 -in.representative_income 50784 Representative total house income in the dwelling unit is $50784 -in.representative_income 50789 Representative total house income in the dwelling unit is $50789 -in.representative_income 50796 Representative total house income in the dwelling unit is $50796 -in.representative_income 50799 Representative total house income in the dwelling unit is $50799 -in.representative_income 50807 Representative total house income in the dwelling unit is $50807 -in.representative_income 50810 Representative total house income in the dwelling unit is $50810 -in.representative_income 50832 Representative total house income in the dwelling unit is $50832 -in.representative_income 50841 Representative total house income in the dwelling unit is $50841 -in.representative_income 50850 Representative total house income in the dwelling unit is $50850 -in.representative_income 50853 Representative total house income in the dwelling unit is $50853 -in.representative_income 50868 Representative total house income in the dwelling unit is $50868 -in.representative_income 50881 Representative total house income in the dwelling unit is $50881 -in.representative_income 50882 Representative total house income in the dwelling unit is $50882 -in.representative_income 50885 Representative total house income in the dwelling unit is $50885 -in.representative_income 50890 Representative total house income in the dwelling unit is $50890 -in.representative_income 50891 Representative total house income in the dwelling unit is $50891 -in.representative_income 50911 Representative total house income in the dwelling unit is $50911 -in.representative_income 50922 Representative total house income in the dwelling unit is $50922 -in.representative_income 50938 Representative total house income in the dwelling unit is $50938 -in.representative_income 50954 Representative total house income in the dwelling unit is $50954 -in.representative_income 50955 Representative total house income in the dwelling unit is $50955 -in.representative_income 50980 Representative total house income in the dwelling unit is $50980 -in.representative_income 50989 Representative total house income in the dwelling unit is $50989 -in.representative_income 50992 Representative total house income in the dwelling unit is $50992 -in.representative_income 50998 Representative total house income in the dwelling unit is $50998 -in.representative_income 51012 Representative total house income in the dwelling unit is $51012 -in.representative_income 51033 Representative total house income in the dwelling unit is $51033 -in.representative_income 51040 Representative total house income in the dwelling unit is $51040 -in.representative_income 51043 Representative total house income in the dwelling unit is $51043 -in.representative_income 51046 Representative total house income in the dwelling unit is $51046 -in.representative_income 51057 Representative total house income in the dwelling unit is $51057 -in.representative_income 51077 Representative total house income in the dwelling unit is $51077 -in.representative_income 51083 Representative total house income in the dwelling unit is $51083 -in.representative_income 51095 Representative total house income in the dwelling unit is $51095 -in.representative_income 51096 Representative total house income in the dwelling unit is $51096 -in.representative_income 51099 Representative total house income in the dwelling unit is $51099 -in.representative_income 51107 Representative total house income in the dwelling unit is $51107 -in.representative_income 51109 Representative total house income in the dwelling unit is $51109 -in.representative_income 51113 Representative total house income in the dwelling unit is $51113 -in.representative_income 51117 Representative total house income in the dwelling unit is $51117 -in.representative_income 51128 Representative total house income in the dwelling unit is $51128 -in.representative_income 51148 Representative total house income in the dwelling unit is $51148 -in.representative_income 51159 Representative total house income in the dwelling unit is $51159 -in.representative_income 51160 Representative total house income in the dwelling unit is $51160 -in.representative_income 51163 Representative total house income in the dwelling unit is $51163 -in.representative_income 51187 Representative total house income in the dwelling unit is $51187 -in.representative_income 51192 Representative total house income in the dwelling unit is $51192 -in.representative_income 51202 Representative total house income in the dwelling unit is $51202 -in.representative_income 51204 Representative total house income in the dwelling unit is $51204 -in.representative_income 51212 Representative total house income in the dwelling unit is $51212 -in.representative_income 51214 Representative total house income in the dwelling unit is $51214 -in.representative_income 51215 Representative total house income in the dwelling unit is $51215 -in.representative_income 51222 Representative total house income in the dwelling unit is $51222 -in.representative_income 51231 Representative total house income in the dwelling unit is $51231 -in.representative_income 51245 Representative total house income in the dwelling unit is $51245 -in.representative_income 51247 Representative total house income in the dwelling unit is $51247 -in.representative_income 51254 Representative total house income in the dwelling unit is $51254 -in.representative_income 51255 Representative total house income in the dwelling unit is $51255 -in.representative_income 51258 Representative total house income in the dwelling unit is $51258 -in.representative_income 51263 Representative total house income in the dwelling unit is $51263 -in.representative_income 51265 Representative total house income in the dwelling unit is $51265 -in.representative_income 51285 Representative total house income in the dwelling unit is $51285 -in.representative_income 51310 Representative total house income in the dwelling unit is $51310 -in.representative_income 51315 Representative total house income in the dwelling unit is $51315 -in.representative_income 51322 Representative total house income in the dwelling unit is $51322 -in.representative_income 51323 Representative total house income in the dwelling unit is $51323 -in.representative_income 51333 Representative total house income in the dwelling unit is $51333 -in.representative_income 51343 Representative total house income in the dwelling unit is $51343 -in.representative_income 51354 Representative total house income in the dwelling unit is $51354 -in.representative_income 51355 Representative total house income in the dwelling unit is $51355 -in.representative_income 51359 Representative total house income in the dwelling unit is $51359 -in.representative_income 51366 Representative total house income in the dwelling unit is $51366 -in.representative_income 51376 Representative total house income in the dwelling unit is $51376 -in.representative_income 51397 Representative total house income in the dwelling unit is $51397 -in.representative_income 51412 Representative total house income in the dwelling unit is $51412 -in.representative_income 51416 Representative total house income in the dwelling unit is $51416 -in.representative_income 51418 Representative total house income in the dwelling unit is $51418 -in.representative_income 51430 Representative total house income in the dwelling unit is $51430 -in.representative_income 51439 Representative total house income in the dwelling unit is $51439 -in.representative_income 51450 Representative total house income in the dwelling unit is $51450 -in.representative_income 51464 Representative total house income in the dwelling unit is $51464 -in.representative_income 51467 Representative total house income in the dwelling unit is $51467 -in.representative_income 51469 Representative total house income in the dwelling unit is $51469 -in.representative_income 51472 Representative total house income in the dwelling unit is $51472 -in.representative_income 51474 Representative total house income in the dwelling unit is $51474 -in.representative_income 51493 Representative total house income in the dwelling unit is $51493 -in.representative_income 51501 Representative total house income in the dwelling unit is $51501 -in.representative_income 51517 Representative total house income in the dwelling unit is $51517 -in.representative_income 51526 Representative total house income in the dwelling unit is $51526 -in.representative_income 51527 Representative total house income in the dwelling unit is $51527 -in.representative_income 51528 Representative total house income in the dwelling unit is $51528 -in.representative_income 51530 Representative total house income in the dwelling unit is $51530 -in.representative_income 51532 Representative total house income in the dwelling unit is $51532 -in.representative_income 51534 Representative total house income in the dwelling unit is $51534 -in.representative_income 51538 Representative total house income in the dwelling unit is $51538 -in.representative_income 51568 Representative total house income in the dwelling unit is $51568 -in.representative_income 51571 Representative total house income in the dwelling unit is $51571 -in.representative_income 51573 Representative total house income in the dwelling unit is $51573 -in.representative_income 51581 Representative total house income in the dwelling unit is $51581 -in.representative_income 51582 Representative total house income in the dwelling unit is $51582 -in.representative_income 51593 Representative total house income in the dwelling unit is $51593 -in.representative_income 51601 Representative total house income in the dwelling unit is $51601 -in.representative_income 51614 Representative total house income in the dwelling unit is $51614 -in.representative_income 51618 Representative total house income in the dwelling unit is $51618 -in.representative_income 51619 Representative total house income in the dwelling unit is $51619 -in.representative_income 51633 Representative total house income in the dwelling unit is $51633 -in.representative_income 51639 Representative total house income in the dwelling unit is $51639 -in.representative_income 51646 Representative total house income in the dwelling unit is $51646 -in.representative_income 51649 Representative total house income in the dwelling unit is $51649 -in.representative_income 51651 Representative total house income in the dwelling unit is $51651 -in.representative_income 51655 Representative total house income in the dwelling unit is $51655 -in.representative_income 51665 Representative total house income in the dwelling unit is $51665 -in.representative_income 51666 Representative total house income in the dwelling unit is $51666 -in.representative_income 51676 Representative total house income in the dwelling unit is $51676 -in.representative_income 51686 Representative total house income in the dwelling unit is $51686 -in.representative_income 51696 Representative total house income in the dwelling unit is $51696 -in.representative_income 51700 Representative total house income in the dwelling unit is $51700 -in.representative_income 51718 Representative total house income in the dwelling unit is $51718 -in.representative_income 51719 Representative total house income in the dwelling unit is $51719 -in.representative_income 51728 Representative total house income in the dwelling unit is $51728 -in.representative_income 51741 Representative total house income in the dwelling unit is $51741 -in.representative_income 51750 Representative total house income in the dwelling unit is $51750 -in.representative_income 51754 Representative total house income in the dwelling unit is $51754 -in.representative_income 51770 Representative total house income in the dwelling unit is $51770 -in.representative_income 51776 Representative total house income in the dwelling unit is $51776 -in.representative_income 51779 Representative total house income in the dwelling unit is $51779 -in.representative_income 51781 Representative total house income in the dwelling unit is $51781 -in.representative_income 51794 Representative total house income in the dwelling unit is $51794 -in.representative_income 51800 Representative total house income in the dwelling unit is $51800 -in.representative_income 51802 Representative total house income in the dwelling unit is $51802 -in.representative_income 51810 Representative total house income in the dwelling unit is $51810 -in.representative_income 51820 Representative total house income in the dwelling unit is $51820 -in.representative_income 51830 Representative total house income in the dwelling unit is $51830 -in.representative_income 51834 Representative total house income in the dwelling unit is $51834 -in.representative_income 51836 Representative total house income in the dwelling unit is $51836 -in.representative_income 51841 Representative total house income in the dwelling unit is $51841 -in.representative_income 51847 Representative total house income in the dwelling unit is $51847 -in.representative_income 51851 Representative total house income in the dwelling unit is $51851 -in.representative_income 51855 Representative total house income in the dwelling unit is $51855 -in.representative_income 51862 Representative total house income in the dwelling unit is $51862 -in.representative_income 51863 Representative total house income in the dwelling unit is $51863 -in.representative_income 51873 Representative total house income in the dwelling unit is $51873 -in.representative_income 51882 Representative total house income in the dwelling unit is $51882 -in.representative_income 51885 Representative total house income in the dwelling unit is $51885 -in.representative_income 51886 Representative total house income in the dwelling unit is $51886 -in.representative_income 51895 Representative total house income in the dwelling unit is $51895 -in.representative_income 51900 Representative total house income in the dwelling unit is $51900 -in.representative_income 51913 Representative total house income in the dwelling unit is $51913 -in.representative_income 51917 Representative total house income in the dwelling unit is $51917 -in.representative_income 51921 Representative total house income in the dwelling unit is $51921 -in.representative_income 51929 Representative total house income in the dwelling unit is $51929 -in.representative_income 51939 Representative total house income in the dwelling unit is $51939 -in.representative_income 51941 Representative total house income in the dwelling unit is $51941 -in.representative_income 51942 Representative total house income in the dwelling unit is $51942 -in.representative_income 51944 Representative total house income in the dwelling unit is $51944 -in.representative_income 51949 Representative total house income in the dwelling unit is $51949 -in.representative_income 51955 Representative total house income in the dwelling unit is $51955 -in.representative_income 51965 Representative total house income in the dwelling unit is $51965 -in.representative_income 51971 Representative total house income in the dwelling unit is $51971 -in.representative_income 51975 Representative total house income in the dwelling unit is $51975 -in.representative_income 51985 Representative total house income in the dwelling unit is $51985 -in.representative_income 51992 Representative total house income in the dwelling unit is $51992 -in.representative_income 51993 Representative total house income in the dwelling unit is $51993 -in.representative_income 51995 Representative total house income in the dwelling unit is $51995 -in.representative_income 52002 Representative total house income in the dwelling unit is $52002 -in.representative_income 52011 Representative total house income in the dwelling unit is $52011 -in.representative_income 52016 Representative total house income in the dwelling unit is $52016 -in.representative_income 52022 Representative total house income in the dwelling unit is $52022 -in.representative_income 52027 Representative total house income in the dwelling unit is $52027 -in.representative_income 52036 Representative total house income in the dwelling unit is $52036 -in.representative_income 52037 Representative total house income in the dwelling unit is $52037 -in.representative_income 52044 Representative total house income in the dwelling unit is $52044 -in.representative_income 52045 Representative total house income in the dwelling unit is $52045 -in.representative_income 52052 Representative total house income in the dwelling unit is $52052 -in.representative_income 52062 Representative total house income in the dwelling unit is $52062 -in.representative_income 52068 Representative total house income in the dwelling unit is $52068 -in.representative_income 52079 Representative total house income in the dwelling unit is $52079 -in.representative_income 52083 Representative total house income in the dwelling unit is $52083 -in.representative_income 52088 Representative total house income in the dwelling unit is $52088 -in.representative_income 52093 Representative total house income in the dwelling unit is $52093 -in.representative_income 52097 Representative total house income in the dwelling unit is $52097 -in.representative_income 52103 Representative total house income in the dwelling unit is $52103 -in.representative_income 52108 Representative total house income in the dwelling unit is $52108 -in.representative_income 52111 Representative total house income in the dwelling unit is $52111 -in.representative_income 52123 Representative total house income in the dwelling unit is $52123 -in.representative_income 52128 Representative total house income in the dwelling unit is $52128 -in.representative_income 52129 Representative total house income in the dwelling unit is $52129 -in.representative_income 52138 Representative total house income in the dwelling unit is $52138 -in.representative_income 52159 Representative total house income in the dwelling unit is $52159 -in.representative_income 52170 Representative total house income in the dwelling unit is $52170 -in.representative_income 52187 Representative total house income in the dwelling unit is $52187 -in.representative_income 52192 Representative total house income in the dwelling unit is $52192 -in.representative_income 52195 Representative total house income in the dwelling unit is $52195 -in.representative_income 52203 Representative total house income in the dwelling unit is $52203 -in.representative_income 52224 Representative total house income in the dwelling unit is $52224 -in.representative_income 52241 Representative total house income in the dwelling unit is $52241 -in.representative_income 52243 Representative total house income in the dwelling unit is $52243 -in.representative_income 52254 Representative total house income in the dwelling unit is $52254 -in.representative_income 52274 Representative total house income in the dwelling unit is $52274 -in.representative_income 52277 Representative total house income in the dwelling unit is $52277 -in.representative_income 52295 Representative total house income in the dwelling unit is $52295 -in.representative_income 52296 Representative total house income in the dwelling unit is $52296 -in.representative_income 52298 Representative total house income in the dwelling unit is $52298 -in.representative_income 52299 Representative total house income in the dwelling unit is $52299 -in.representative_income 52306 Representative total house income in the dwelling unit is $52306 -in.representative_income 52309 Representative total house income in the dwelling unit is $52309 -in.representative_income 52315 Representative total house income in the dwelling unit is $52315 -in.representative_income 52319 Representative total house income in the dwelling unit is $52319 -in.representative_income 52326 Representative total house income in the dwelling unit is $52326 -in.representative_income 52331 Representative total house income in the dwelling unit is $52331 -in.representative_income 52338 Representative total house income in the dwelling unit is $52338 -in.representative_income 52346 Representative total house income in the dwelling unit is $52346 -in.representative_income 52349 Representative total house income in the dwelling unit is $52349 -in.representative_income 52350 Representative total house income in the dwelling unit is $52350 -in.representative_income 52358 Representative total house income in the dwelling unit is $52358 -in.representative_income 52363 Representative total house income in the dwelling unit is $52363 -in.representative_income 52367 Representative total house income in the dwelling unit is $52367 -in.representative_income 52381 Representative total house income in the dwelling unit is $52381 -in.representative_income 52385 Representative total house income in the dwelling unit is $52385 -in.representative_income 52386 Representative total house income in the dwelling unit is $52386 -in.representative_income 52392 Representative total house income in the dwelling unit is $52392 -in.representative_income 52393 Representative total house income in the dwelling unit is $52393 -in.representative_income 52396 Representative total house income in the dwelling unit is $52396 -in.representative_income 52397 Representative total house income in the dwelling unit is $52397 -in.representative_income 52403 Representative total house income in the dwelling unit is $52403 -in.representative_income 52406 Representative total house income in the dwelling unit is $52406 -in.representative_income 52414 Representative total house income in the dwelling unit is $52414 -in.representative_income 52417 Representative total house income in the dwelling unit is $52417 -in.representative_income 52419 Representative total house income in the dwelling unit is $52419 -in.representative_income 52427 Representative total house income in the dwelling unit is $52427 -in.representative_income 52430 Representative total house income in the dwelling unit is $52430 -in.representative_income 52438 Representative total house income in the dwelling unit is $52438 -in.representative_income 52449 Representative total house income in the dwelling unit is $52449 -in.representative_income 52457 Representative total house income in the dwelling unit is $52457 -in.representative_income 52467 Representative total house income in the dwelling unit is $52467 -in.representative_income 52472 Representative total house income in the dwelling unit is $52472 -in.representative_income 52491 Representative total house income in the dwelling unit is $52491 -in.representative_income 52498 Representative total house income in the dwelling unit is $52498 -in.representative_income 52501 Representative total house income in the dwelling unit is $52501 -in.representative_income 52511 Representative total house income in the dwelling unit is $52511 -in.representative_income 52514 Representative total house income in the dwelling unit is $52514 -in.representative_income 52519 Representative total house income in the dwelling unit is $52519 -in.representative_income 52528 Representative total house income in the dwelling unit is $52528 -in.representative_income 52538 Representative total house income in the dwelling unit is $52538 -in.representative_income 52542 Representative total house income in the dwelling unit is $52542 -in.representative_income 52548 Representative total house income in the dwelling unit is $52548 -in.representative_income 52551 Representative total house income in the dwelling unit is $52551 -in.representative_income 52566 Representative total house income in the dwelling unit is $52566 -in.representative_income 52578 Representative total house income in the dwelling unit is $52578 -in.representative_income 52584 Representative total house income in the dwelling unit is $52584 -in.representative_income 52592 Representative total house income in the dwelling unit is $52592 -in.representative_income 52599 Representative total house income in the dwelling unit is $52599 -in.representative_income 52600 Representative total house income in the dwelling unit is $52600 -in.representative_income 52604 Representative total house income in the dwelling unit is $52604 -in.representative_income 52614 Representative total house income in the dwelling unit is $52614 -in.representative_income 52618 Representative total house income in the dwelling unit is $52618 -in.representative_income 52620 Representative total house income in the dwelling unit is $52620 -in.representative_income 52624 Representative total house income in the dwelling unit is $52624 -in.representative_income 52625 Representative total house income in the dwelling unit is $52625 -in.representative_income 52629 Representative total house income in the dwelling unit is $52629 -in.representative_income 52635 Representative total house income in the dwelling unit is $52635 -in.representative_income 52642 Representative total house income in the dwelling unit is $52642 -in.representative_income 52646 Representative total house income in the dwelling unit is $52646 -in.representative_income 52667 Representative total house income in the dwelling unit is $52667 -in.representative_income 52678 Representative total house income in the dwelling unit is $52678 -in.representative_income 52679 Representative total house income in the dwelling unit is $52679 -in.representative_income 52688 Representative total house income in the dwelling unit is $52688 -in.representative_income 52696 Representative total house income in the dwelling unit is $52696 -in.representative_income 52705 Representative total house income in the dwelling unit is $52705 -in.representative_income 52706 Representative total house income in the dwelling unit is $52706 -in.representative_income 52707 Representative total house income in the dwelling unit is $52707 -in.representative_income 52719 Representative total house income in the dwelling unit is $52719 -in.representative_income 52720 Representative total house income in the dwelling unit is $52720 -in.representative_income 52727 Representative total house income in the dwelling unit is $52727 -in.representative_income 52730 Representative total house income in the dwelling unit is $52730 -in.representative_income 52740 Representative total house income in the dwelling unit is $52740 -in.representative_income 52741 Representative total house income in the dwelling unit is $52741 -in.representative_income 52749 Representative total house income in the dwelling unit is $52749 -in.representative_income 52752 Representative total house income in the dwelling unit is $52752 -in.representative_income 52760 Representative total house income in the dwelling unit is $52760 -in.representative_income 52762 Representative total house income in the dwelling unit is $52762 -in.representative_income 52770 Representative total house income in the dwelling unit is $52770 -in.representative_income 52773 Representative total house income in the dwelling unit is $52773 -in.representative_income 52779 Representative total house income in the dwelling unit is $52779 -in.representative_income 52780 Representative total house income in the dwelling unit is $52780 -in.representative_income 52781 Representative total house income in the dwelling unit is $52781 -in.representative_income 52783 Representative total house income in the dwelling unit is $52783 -in.representative_income 52789 Representative total house income in the dwelling unit is $52789 -in.representative_income 52792 Representative total house income in the dwelling unit is $52792 -in.representative_income 52804 Representative total house income in the dwelling unit is $52804 -in.representative_income 52811 Representative total house income in the dwelling unit is $52811 -in.representative_income 52814 Representative total house income in the dwelling unit is $52814 -in.representative_income 52820 Representative total house income in the dwelling unit is $52820 -in.representative_income 52825 Representative total house income in the dwelling unit is $52825 -in.representative_income 52831 Representative total house income in the dwelling unit is $52831 -in.representative_income 52835 Representative total house income in the dwelling unit is $52835 -in.representative_income 52836 Representative total house income in the dwelling unit is $52836 -in.representative_income 52841 Representative total house income in the dwelling unit is $52841 -in.representative_income 52847 Representative total house income in the dwelling unit is $52847 -in.representative_income 52857 Representative total house income in the dwelling unit is $52857 -in.representative_income 52867 Representative total house income in the dwelling unit is $52867 -in.representative_income 52871 Representative total house income in the dwelling unit is $52871 -in.representative_income 52881 Representative total house income in the dwelling unit is $52881 -in.representative_income 52888 Representative total house income in the dwelling unit is $52888 -in.representative_income 52889 Representative total house income in the dwelling unit is $52889 -in.representative_income 52913 Representative total house income in the dwelling unit is $52913 -in.representative_income 52921 Representative total house income in the dwelling unit is $52921 -in.representative_income 52922 Representative total house income in the dwelling unit is $52922 -in.representative_income 52932 Representative total house income in the dwelling unit is $52932 -in.representative_income 52941 Representative total house income in the dwelling unit is $52941 -in.representative_income 52943 Representative total house income in the dwelling unit is $52943 -in.representative_income 52945 Representative total house income in the dwelling unit is $52945 -in.representative_income 52953 Representative total house income in the dwelling unit is $52953 -in.representative_income 52954 Representative total house income in the dwelling unit is $52954 -in.representative_income 52964 Representative total house income in the dwelling unit is $52964 -in.representative_income 52965 Representative total house income in the dwelling unit is $52965 -in.representative_income 52975 Representative total house income in the dwelling unit is $52975 -in.representative_income 52976 Representative total house income in the dwelling unit is $52976 -in.representative_income 52982 Representative total house income in the dwelling unit is $52982 -in.representative_income 52983 Representative total house income in the dwelling unit is $52983 -in.representative_income 52994 Representative total house income in the dwelling unit is $52994 -in.representative_income 52997 Representative total house income in the dwelling unit is $52997 -in.representative_income 53007 Representative total house income in the dwelling unit is $53007 -in.representative_income 53008 Representative total house income in the dwelling unit is $53008 -in.representative_income 53016 Representative total house income in the dwelling unit is $53016 -in.representative_income 53026 Representative total house income in the dwelling unit is $53026 -in.representative_income 53028 Representative total house income in the dwelling unit is $53028 -in.representative_income 53030 Representative total house income in the dwelling unit is $53030 -in.representative_income 53033 Representative total house income in the dwelling unit is $53033 -in.representative_income 53047 Representative total house income in the dwelling unit is $53047 -in.representative_income 53051 Representative total house income in the dwelling unit is $53051 -in.representative_income 53061 Representative total house income in the dwelling unit is $53061 -in.representative_income 53063 Representative total house income in the dwelling unit is $53063 -in.representative_income 53078 Representative total house income in the dwelling unit is $53078 -in.representative_income 53083 Representative total house income in the dwelling unit is $53083 -in.representative_income 53084 Representative total house income in the dwelling unit is $53084 -in.representative_income 53093 Representative total house income in the dwelling unit is $53093 -in.representative_income 53094 Representative total house income in the dwelling unit is $53094 -in.representative_income 53110 Representative total house income in the dwelling unit is $53110 -in.representative_income 53120 Representative total house income in the dwelling unit is $53120 -in.representative_income 53121 Representative total house income in the dwelling unit is $53121 -in.representative_income 53134 Representative total house income in the dwelling unit is $53134 -in.representative_income 53136 Representative total house income in the dwelling unit is $53136 -in.representative_income 53137 Representative total house income in the dwelling unit is $53137 -in.representative_income 53151 Representative total house income in the dwelling unit is $53151 -in.representative_income 53152 Representative total house income in the dwelling unit is $53152 -in.representative_income 53156 Representative total house income in the dwelling unit is $53156 -in.representative_income 53157 Representative total house income in the dwelling unit is $53157 -in.representative_income 53159 Representative total house income in the dwelling unit is $53159 -in.representative_income 53162 Representative total house income in the dwelling unit is $53162 -in.representative_income 53170 Representative total house income in the dwelling unit is $53170 -in.representative_income 53174 Representative total house income in the dwelling unit is $53174 -in.representative_income 53176 Representative total house income in the dwelling unit is $53176 -in.representative_income 53183 Representative total house income in the dwelling unit is $53183 -in.representative_income 53194 Representative total house income in the dwelling unit is $53194 -in.representative_income 53195 Representative total house income in the dwelling unit is $53195 -in.representative_income 53201 Representative total house income in the dwelling unit is $53201 -in.representative_income 53205 Representative total house income in the dwelling unit is $53205 -in.representative_income 53207 Representative total house income in the dwelling unit is $53207 -in.representative_income 53211 Representative total house income in the dwelling unit is $53211 -in.representative_income 53223 Representative total house income in the dwelling unit is $53223 -in.representative_income 53235 Representative total house income in the dwelling unit is $53235 -in.representative_income 53238 Representative total house income in the dwelling unit is $53238 -in.representative_income 53240 Representative total house income in the dwelling unit is $53240 -in.representative_income 53243 Representative total house income in the dwelling unit is $53243 -in.representative_income 53247 Representative total house income in the dwelling unit is $53247 -in.representative_income 53257 Representative total house income in the dwelling unit is $53257 -in.representative_income 53258 Representative total house income in the dwelling unit is $53258 -in.representative_income 53262 Representative total house income in the dwelling unit is $53262 -in.representative_income 53267 Representative total house income in the dwelling unit is $53267 -in.representative_income 53269 Representative total house income in the dwelling unit is $53269 -in.representative_income 53270 Representative total house income in the dwelling unit is $53270 -in.representative_income 53285 Representative total house income in the dwelling unit is $53285 -in.representative_income 53286 Representative total house income in the dwelling unit is $53286 -in.representative_income 53288 Representative total house income in the dwelling unit is $53288 -in.representative_income 53295 Representative total house income in the dwelling unit is $53295 -in.representative_income 53296 Representative total house income in the dwelling unit is $53296 -in.representative_income 53297 Representative total house income in the dwelling unit is $53297 -in.representative_income 53299 Representative total house income in the dwelling unit is $53299 -in.representative_income 53319 Representative total house income in the dwelling unit is $53319 -in.representative_income 53321 Representative total house income in the dwelling unit is $53321 -in.representative_income 53326 Representative total house income in the dwelling unit is $53326 -in.representative_income 53329 Representative total house income in the dwelling unit is $53329 -in.representative_income 53336 Representative total house income in the dwelling unit is $53336 -in.representative_income 53337 Representative total house income in the dwelling unit is $53337 -in.representative_income 53340 Representative total house income in the dwelling unit is $53340 -in.representative_income 53342 Representative total house income in the dwelling unit is $53342 -in.representative_income 53351 Representative total house income in the dwelling unit is $53351 -in.representative_income 53353 Representative total house income in the dwelling unit is $53353 -in.representative_income 53356 Representative total house income in the dwelling unit is $53356 -in.representative_income 53359 Representative total house income in the dwelling unit is $53359 -in.representative_income 53363 Representative total house income in the dwelling unit is $53363 -in.representative_income 53364 Representative total house income in the dwelling unit is $53364 -in.representative_income 53366 Representative total house income in the dwelling unit is $53366 -in.representative_income 53372 Representative total house income in the dwelling unit is $53372 -in.representative_income 53374 Representative total house income in the dwelling unit is $53374 -in.representative_income 53375 Representative total house income in the dwelling unit is $53375 -in.representative_income 53376 Representative total house income in the dwelling unit is $53376 -in.representative_income 53377 Representative total house income in the dwelling unit is $53377 -in.representative_income 53393 Representative total house income in the dwelling unit is $53393 -in.representative_income 53396 Representative total house income in the dwelling unit is $53396 -in.representative_income 53398 Representative total house income in the dwelling unit is $53398 -in.representative_income 53404 Representative total house income in the dwelling unit is $53404 -in.representative_income 53406 Representative total house income in the dwelling unit is $53406 -in.representative_income 53411 Representative total house income in the dwelling unit is $53411 -in.representative_income 53415 Representative total house income in the dwelling unit is $53415 -in.representative_income 53416 Representative total house income in the dwelling unit is $53416 -in.representative_income 53422 Representative total house income in the dwelling unit is $53422 -in.representative_income 53429 Representative total house income in the dwelling unit is $53429 -in.representative_income 53430 Representative total house income in the dwelling unit is $53430 -in.representative_income 53437 Representative total house income in the dwelling unit is $53437 -in.representative_income 53447 Representative total house income in the dwelling unit is $53447 -in.representative_income 53458 Representative total house income in the dwelling unit is $53458 -in.representative_income 53461 Representative total house income in the dwelling unit is $53461 -in.representative_income 53469 Representative total house income in the dwelling unit is $53469 -in.representative_income 53470 Representative total house income in the dwelling unit is $53470 -in.representative_income 53479 Representative total house income in the dwelling unit is $53479 -in.representative_income 53484 Representative total house income in the dwelling unit is $53484 -in.representative_income 53487 Representative total house income in the dwelling unit is $53487 -in.representative_income 53490 Representative total house income in the dwelling unit is $53490 -in.representative_income 53495 Representative total house income in the dwelling unit is $53495 -in.representative_income 53511 Representative total house income in the dwelling unit is $53511 -in.representative_income 53521 Representative total house income in the dwelling unit is $53521 -in.representative_income 53522 Representative total house income in the dwelling unit is $53522 -in.representative_income 53532 Representative total house income in the dwelling unit is $53532 -in.representative_income 53538 Representative total house income in the dwelling unit is $53538 -in.representative_income 53548 Representative total house income in the dwelling unit is $53548 -in.representative_income 53553 Representative total house income in the dwelling unit is $53553 -in.representative_income 53554 Representative total house income in the dwelling unit is $53554 -in.representative_income 53558 Representative total house income in the dwelling unit is $53558 -in.representative_income 53562 Representative total house income in the dwelling unit is $53562 -in.representative_income 53563 Representative total house income in the dwelling unit is $53563 -in.representative_income 53565 Representative total house income in the dwelling unit is $53565 -in.representative_income 53566 Representative total house income in the dwelling unit is $53566 -in.representative_income 53574 Representative total house income in the dwelling unit is $53574 -in.representative_income 53575 Representative total house income in the dwelling unit is $53575 -in.representative_income 53587 Representative total house income in the dwelling unit is $53587 -in.representative_income 53592 Representative total house income in the dwelling unit is $53592 -in.representative_income 53597 Representative total house income in the dwelling unit is $53597 -in.representative_income 53602 Representative total house income in the dwelling unit is $53602 -in.representative_income 53605 Representative total house income in the dwelling unit is $53605 -in.representative_income 53614 Representative total house income in the dwelling unit is $53614 -in.representative_income 53616 Representative total house income in the dwelling unit is $53616 -in.representative_income 53619 Representative total house income in the dwelling unit is $53619 -in.representative_income 53621 Representative total house income in the dwelling unit is $53621 -in.representative_income 53623 Representative total house income in the dwelling unit is $53623 -in.representative_income 53626 Representative total house income in the dwelling unit is $53626 -in.representative_income 53629 Representative total house income in the dwelling unit is $53629 -in.representative_income 53635 Representative total house income in the dwelling unit is $53635 -in.representative_income 53637 Representative total house income in the dwelling unit is $53637 -in.representative_income 53639 Representative total house income in the dwelling unit is $53639 -in.representative_income 53646 Representative total house income in the dwelling unit is $53646 -in.representative_income 53651 Representative total house income in the dwelling unit is $53651 -in.representative_income 53654 Representative total house income in the dwelling unit is $53654 -in.representative_income 53655 Representative total house income in the dwelling unit is $53655 -in.representative_income 53656 Representative total house income in the dwelling unit is $53656 -in.representative_income 53659 Representative total house income in the dwelling unit is $53659 -in.representative_income 53667 Representative total house income in the dwelling unit is $53667 -in.representative_income 53669 Representative total house income in the dwelling unit is $53669 -in.representative_income 53672 Representative total house income in the dwelling unit is $53672 -in.representative_income 53673 Representative total house income in the dwelling unit is $53673 -in.representative_income 53677 Representative total house income in the dwelling unit is $53677 -in.representative_income 53679 Representative total house income in the dwelling unit is $53679 -in.representative_income 53683 Representative total house income in the dwelling unit is $53683 -in.representative_income 53684 Representative total house income in the dwelling unit is $53684 -in.representative_income 53687 Representative total house income in the dwelling unit is $53687 -in.representative_income 53690 Representative total house income in the dwelling unit is $53690 -in.representative_income 53693 Representative total house income in the dwelling unit is $53693 -in.representative_income 53694 Representative total house income in the dwelling unit is $53694 -in.representative_income 53697 Representative total house income in the dwelling unit is $53697 -in.representative_income 53698 Representative total house income in the dwelling unit is $53698 -in.representative_income 53700 Representative total house income in the dwelling unit is $53700 -in.representative_income 53701 Representative total house income in the dwelling unit is $53701 -in.representative_income 53704 Representative total house income in the dwelling unit is $53704 -in.representative_income 53708 Representative total house income in the dwelling unit is $53708 -in.representative_income 53710 Representative total house income in the dwelling unit is $53710 -in.representative_income 53716 Representative total house income in the dwelling unit is $53716 -in.representative_income 53718 Representative total house income in the dwelling unit is $53718 -in.representative_income 53722 Representative total house income in the dwelling unit is $53722 -in.representative_income 53727 Representative total house income in the dwelling unit is $53727 -in.representative_income 53729 Representative total house income in the dwelling unit is $53729 -in.representative_income 53737 Representative total house income in the dwelling unit is $53737 -in.representative_income 53739 Representative total house income in the dwelling unit is $53739 -in.representative_income 53740 Representative total house income in the dwelling unit is $53740 -in.representative_income 53744 Representative total house income in the dwelling unit is $53744 -in.representative_income 53745 Representative total house income in the dwelling unit is $53745 -in.representative_income 53748 Representative total house income in the dwelling unit is $53748 -in.representative_income 53758 Representative total house income in the dwelling unit is $53758 -in.representative_income 53759 Representative total house income in the dwelling unit is $53759 -in.representative_income 53760 Representative total house income in the dwelling unit is $53760 -in.representative_income 53769 Representative total house income in the dwelling unit is $53769 -in.representative_income 53775 Representative total house income in the dwelling unit is $53775 -in.representative_income 53780 Representative total house income in the dwelling unit is $53780 -in.representative_income 53781 Representative total house income in the dwelling unit is $53781 -in.representative_income 53785 Representative total house income in the dwelling unit is $53785 -in.representative_income 53790 Representative total house income in the dwelling unit is $53790 -in.representative_income 53795 Representative total house income in the dwelling unit is $53795 -in.representative_income 53800 Representative total house income in the dwelling unit is $53800 -in.representative_income 53801 Representative total house income in the dwelling unit is $53801 -in.representative_income 53806 Representative total house income in the dwelling unit is $53806 -in.representative_income 53807 Representative total house income in the dwelling unit is $53807 -in.representative_income 53810 Representative total house income in the dwelling unit is $53810 -in.representative_income 53812 Representative total house income in the dwelling unit is $53812 -in.representative_income 53816 Representative total house income in the dwelling unit is $53816 -in.representative_income 53829 Representative total house income in the dwelling unit is $53829 -in.representative_income 53833 Representative total house income in the dwelling unit is $53833 -in.representative_income 53838 Representative total house income in the dwelling unit is $53838 -in.representative_income 53840 Representative total house income in the dwelling unit is $53840 -in.representative_income 53841 Representative total house income in the dwelling unit is $53841 -in.representative_income 53842 Representative total house income in the dwelling unit is $53842 -in.representative_income 53844 Representative total house income in the dwelling unit is $53844 -in.representative_income 53848 Representative total house income in the dwelling unit is $53848 -in.representative_income 53851 Representative total house income in the dwelling unit is $53851 -in.representative_income 53854 Representative total house income in the dwelling unit is $53854 -in.representative_income 53855 Representative total house income in the dwelling unit is $53855 -in.representative_income 53866 Representative total house income in the dwelling unit is $53866 -in.representative_income 53869 Representative total house income in the dwelling unit is $53869 -in.representative_income 53877 Representative total house income in the dwelling unit is $53877 -in.representative_income 53878 Representative total house income in the dwelling unit is $53878 -in.representative_income 53887 Representative total house income in the dwelling unit is $53887 -in.representative_income 53890 Representative total house income in the dwelling unit is $53890 -in.representative_income 53898 Representative total house income in the dwelling unit is $53898 -in.representative_income 53901 Representative total house income in the dwelling unit is $53901 -in.representative_income 53908 Representative total house income in the dwelling unit is $53908 -in.representative_income 53909 Representative total house income in the dwelling unit is $53909 -in.representative_income 53912 Representative total house income in the dwelling unit is $53912 -in.representative_income 53915 Representative total house income in the dwelling unit is $53915 -in.representative_income 53919 Representative total house income in the dwelling unit is $53919 -in.representative_income 53920 Representative total house income in the dwelling unit is $53920 -in.representative_income 53922 Representative total house income in the dwelling unit is $53922 -in.representative_income 53924 Representative total house income in the dwelling unit is $53924 -in.representative_income 53925 Representative total house income in the dwelling unit is $53925 -in.representative_income 53930 Representative total house income in the dwelling unit is $53930 -in.representative_income 53933 Representative total house income in the dwelling unit is $53933 -in.representative_income 53941 Representative total house income in the dwelling unit is $53941 -in.representative_income 53942 Representative total house income in the dwelling unit is $53942 -in.representative_income 53943 Representative total house income in the dwelling unit is $53943 -in.representative_income 53945 Representative total house income in the dwelling unit is $53945 -in.representative_income 53951 Representative total house income in the dwelling unit is $53951 -in.representative_income 53955 Representative total house income in the dwelling unit is $53955 -in.representative_income 53959 Representative total house income in the dwelling unit is $53959 -in.representative_income 53963 Representative total house income in the dwelling unit is $53963 -in.representative_income 53964 Representative total house income in the dwelling unit is $53964 -in.representative_income 53969 Representative total house income in the dwelling unit is $53969 -in.representative_income 53970 Representative total house income in the dwelling unit is $53970 -in.representative_income 53976 Representative total house income in the dwelling unit is $53976 -in.representative_income 53992 Representative total house income in the dwelling unit is $53992 -in.representative_income 53995 Representative total house income in the dwelling unit is $53995 -in.representative_income 54002 Representative total house income in the dwelling unit is $54002 -in.representative_income 54006 Representative total house income in the dwelling unit is $54006 -in.representative_income 54012 Representative total house income in the dwelling unit is $54012 -in.representative_income 54016 Representative total house income in the dwelling unit is $54016 -in.representative_income 54017 Representative total house income in the dwelling unit is $54017 -in.representative_income 54023 Representative total house income in the dwelling unit is $54023 -in.representative_income 54024 Representative total house income in the dwelling unit is $54024 -in.representative_income 54028 Representative total house income in the dwelling unit is $54028 -in.representative_income 54034 Representative total house income in the dwelling unit is $54034 -in.representative_income 54038 Representative total house income in the dwelling unit is $54038 -in.representative_income 54041 Representative total house income in the dwelling unit is $54041 -in.representative_income 54043 Representative total house income in the dwelling unit is $54043 -in.representative_income 54045 Representative total house income in the dwelling unit is $54045 -in.representative_income 54048 Representative total house income in the dwelling unit is $54048 -in.representative_income 54051 Representative total house income in the dwelling unit is $54051 -in.representative_income 54053 Representative total house income in the dwelling unit is $54053 -in.representative_income 54056 Representative total house income in the dwelling unit is $54056 -in.representative_income 54059 Representative total house income in the dwelling unit is $54059 -in.representative_income 54062 Representative total house income in the dwelling unit is $54062 -in.representative_income 54063 Representative total house income in the dwelling unit is $54063 -in.representative_income 54066 Representative total house income in the dwelling unit is $54066 -in.representative_income 54067 Representative total house income in the dwelling unit is $54067 -in.representative_income 54069 Representative total house income in the dwelling unit is $54069 -in.representative_income 54073 Representative total house income in the dwelling unit is $54073 -in.representative_income 54077 Representative total house income in the dwelling unit is $54077 -in.representative_income 54079 Representative total house income in the dwelling unit is $54079 -in.representative_income 54089 Representative total house income in the dwelling unit is $54089 -in.representative_income 54096 Representative total house income in the dwelling unit is $54096 -in.representative_income 54099 Representative total house income in the dwelling unit is $54099 -in.representative_income 54101 Representative total house income in the dwelling unit is $54101 -in.representative_income 54102 Representative total house income in the dwelling unit is $54102 -in.representative_income 54110 Representative total house income in the dwelling unit is $54110 -in.representative_income 54113 Representative total house income in the dwelling unit is $54113 -in.representative_income 54118 Representative total house income in the dwelling unit is $54118 -in.representative_income 54120 Representative total house income in the dwelling unit is $54120 -in.representative_income 54122 Representative total house income in the dwelling unit is $54122 -in.representative_income 54124 Representative total house income in the dwelling unit is $54124 -in.representative_income 54126 Representative total house income in the dwelling unit is $54126 -in.representative_income 54131 Representative total house income in the dwelling unit is $54131 -in.representative_income 54133 Representative total house income in the dwelling unit is $54133 -in.representative_income 54134 Representative total house income in the dwelling unit is $54134 -in.representative_income 54144 Representative total house income in the dwelling unit is $54144 -in.representative_income 54146 Representative total house income in the dwelling unit is $54146 -in.representative_income 54151 Representative total house income in the dwelling unit is $54151 -in.representative_income 54153 Representative total house income in the dwelling unit is $54153 -in.representative_income 54154 Representative total house income in the dwelling unit is $54154 -in.representative_income 54155 Representative total house income in the dwelling unit is $54155 -in.representative_income 54158 Representative total house income in the dwelling unit is $54158 -in.representative_income 54164 Representative total house income in the dwelling unit is $54164 -in.representative_income 54168 Representative total house income in the dwelling unit is $54168 -in.representative_income 54174 Representative total house income in the dwelling unit is $54174 -in.representative_income 54175 Representative total house income in the dwelling unit is $54175 -in.representative_income 54182 Representative total house income in the dwelling unit is $54182 -in.representative_income 54185 Representative total house income in the dwelling unit is $54185 -in.representative_income 54194 Representative total house income in the dwelling unit is $54194 -in.representative_income 54203 Representative total house income in the dwelling unit is $54203 -in.representative_income 54204 Representative total house income in the dwelling unit is $54204 -in.representative_income 54207 Representative total house income in the dwelling unit is $54207 -in.representative_income 54209 Representative total house income in the dwelling unit is $54209 -in.representative_income 54211 Representative total house income in the dwelling unit is $54211 -in.representative_income 54220 Representative total house income in the dwelling unit is $54220 -in.representative_income 54228 Representative total house income in the dwelling unit is $54228 -in.representative_income 54230 Representative total house income in the dwelling unit is $54230 -in.representative_income 54235 Representative total house income in the dwelling unit is $54235 -in.representative_income 54236 Representative total house income in the dwelling unit is $54236 -in.representative_income 54238 Representative total house income in the dwelling unit is $54238 -in.representative_income 54239 Representative total house income in the dwelling unit is $54239 -in.representative_income 54241 Representative total house income in the dwelling unit is $54241 -in.representative_income 54245 Representative total house income in the dwelling unit is $54245 -in.representative_income 54247 Representative total house income in the dwelling unit is $54247 -in.representative_income 54249 Representative total house income in the dwelling unit is $54249 -in.representative_income 54250 Representative total house income in the dwelling unit is $54250 -in.representative_income 54254 Representative total house income in the dwelling unit is $54254 -in.representative_income 54259 Representative total house income in the dwelling unit is $54259 -in.representative_income 54265 Representative total house income in the dwelling unit is $54265 -in.representative_income 54266 Representative total house income in the dwelling unit is $54266 -in.representative_income 54271 Representative total house income in the dwelling unit is $54271 -in.representative_income 54272 Representative total house income in the dwelling unit is $54272 -in.representative_income 54274 Representative total house income in the dwelling unit is $54274 -in.representative_income 54275 Representative total house income in the dwelling unit is $54275 -in.representative_income 54277 Representative total house income in the dwelling unit is $54277 -in.representative_income 54278 Representative total house income in the dwelling unit is $54278 -in.representative_income 54286 Representative total house income in the dwelling unit is $54286 -in.representative_income 54294 Representative total house income in the dwelling unit is $54294 -in.representative_income 54295 Representative total house income in the dwelling unit is $54295 -in.representative_income 54302 Representative total house income in the dwelling unit is $54302 -in.representative_income 54307 Representative total house income in the dwelling unit is $54307 -in.representative_income 54308 Representative total house income in the dwelling unit is $54308 -in.representative_income 54309 Representative total house income in the dwelling unit is $54309 -in.representative_income 54312 Representative total house income in the dwelling unit is $54312 -in.representative_income 54316 Representative total house income in the dwelling unit is $54316 -in.representative_income 54323 Representative total house income in the dwelling unit is $54323 -in.representative_income 54326 Representative total house income in the dwelling unit is $54326 -in.representative_income 54327 Representative total house income in the dwelling unit is $54327 -in.representative_income 54333 Representative total house income in the dwelling unit is $54333 -in.representative_income 54336 Representative total house income in the dwelling unit is $54336 -in.representative_income 54338 Representative total house income in the dwelling unit is $54338 -in.representative_income 54346 Representative total house income in the dwelling unit is $54346 -in.representative_income 54348 Representative total house income in the dwelling unit is $54348 -in.representative_income 54354 Representative total house income in the dwelling unit is $54354 -in.representative_income 54358 Representative total house income in the dwelling unit is $54358 -in.representative_income 54359 Representative total house income in the dwelling unit is $54359 -in.representative_income 54360 Representative total house income in the dwelling unit is $54360 -in.representative_income 54365 Representative total house income in the dwelling unit is $54365 -in.representative_income 54370 Representative total house income in the dwelling unit is $54370 -in.representative_income 54376 Representative total house income in the dwelling unit is $54376 -in.representative_income 54378 Representative total house income in the dwelling unit is $54378 -in.representative_income 54381 Representative total house income in the dwelling unit is $54381 -in.representative_income 54385 Representative total house income in the dwelling unit is $54385 -in.representative_income 54388 Representative total house income in the dwelling unit is $54388 -in.representative_income 54396 Representative total house income in the dwelling unit is $54396 -in.representative_income 54397 Representative total house income in the dwelling unit is $54397 -in.representative_income 54399 Representative total house income in the dwelling unit is $54399 -in.representative_income 54402 Representative total house income in the dwelling unit is $54402 -in.representative_income 54409 Representative total house income in the dwelling unit is $54409 -in.representative_income 54413 Representative total house income in the dwelling unit is $54413 -in.representative_income 54417 Representative total house income in the dwelling unit is $54417 -in.representative_income 54418 Representative total house income in the dwelling unit is $54418 -in.representative_income 54420 Representative total house income in the dwelling unit is $54420 -in.representative_income 54421 Representative total house income in the dwelling unit is $54421 -in.representative_income 54424 Representative total house income in the dwelling unit is $54424 -in.representative_income 54430 Representative total house income in the dwelling unit is $54430 -in.representative_income 54432 Representative total house income in the dwelling unit is $54432 -in.representative_income 54434 Representative total house income in the dwelling unit is $54434 -in.representative_income 54435 Representative total house income in the dwelling unit is $54435 -in.representative_income 54437 Representative total house income in the dwelling unit is $54437 -in.representative_income 54438 Representative total house income in the dwelling unit is $54438 -in.representative_income 54445 Representative total house income in the dwelling unit is $54445 -in.representative_income 54447 Representative total house income in the dwelling unit is $54447 -in.representative_income 54450 Representative total house income in the dwelling unit is $54450 -in.representative_income 54456 Representative total house income in the dwelling unit is $54456 -in.representative_income 54461 Representative total house income in the dwelling unit is $54461 -in.representative_income 54467 Representative total house income in the dwelling unit is $54467 -in.representative_income 54471 Representative total house income in the dwelling unit is $54471 -in.representative_income 54477 Representative total house income in the dwelling unit is $54477 -in.representative_income 54478 Representative total house income in the dwelling unit is $54478 -in.representative_income 54480 Representative total house income in the dwelling unit is $54480 -in.representative_income 54481 Representative total house income in the dwelling unit is $54481 -in.representative_income 54487 Representative total house income in the dwelling unit is $54487 -in.representative_income 54488 Representative total house income in the dwelling unit is $54488 -in.representative_income 54499 Representative total house income in the dwelling unit is $54499 -in.representative_income 54507 Representative total house income in the dwelling unit is $54507 -in.representative_income 54508 Representative total house income in the dwelling unit is $54508 -in.representative_income 54510 Representative total house income in the dwelling unit is $54510 -in.representative_income 54521 Representative total house income in the dwelling unit is $54521 -in.representative_income 54523 Representative total house income in the dwelling unit is $54523 -in.representative_income 54532 Representative total house income in the dwelling unit is $54532 -in.representative_income 54533 Representative total house income in the dwelling unit is $54533 -in.representative_income 54534 Representative total house income in the dwelling unit is $54534 -in.representative_income 54536 Representative total house income in the dwelling unit is $54536 -in.representative_income 54540 Representative total house income in the dwelling unit is $54540 -in.representative_income 54542 Representative total house income in the dwelling unit is $54542 -in.representative_income 54548 Representative total house income in the dwelling unit is $54548 -in.representative_income 54558 Representative total house income in the dwelling unit is $54558 -in.representative_income 54563 Representative total house income in the dwelling unit is $54563 -in.representative_income 54564 Representative total house income in the dwelling unit is $54564 -in.representative_income 54566 Representative total house income in the dwelling unit is $54566 -in.representative_income 54568 Representative total house income in the dwelling unit is $54568 -in.representative_income 54576 Representative total house income in the dwelling unit is $54576 -in.representative_income 54578 Representative total house income in the dwelling unit is $54578 -in.representative_income 54585 Representative total house income in the dwelling unit is $54585 -in.representative_income 54586 Representative total house income in the dwelling unit is $54586 -in.representative_income 54588 Representative total house income in the dwelling unit is $54588 -in.representative_income 54595 Representative total house income in the dwelling unit is $54595 -in.representative_income 54596 Representative total house income in the dwelling unit is $54596 -in.representative_income 54598 Representative total house income in the dwelling unit is $54598 -in.representative_income 54599 Representative total house income in the dwelling unit is $54599 -in.representative_income 54607 Representative total house income in the dwelling unit is $54607 -in.representative_income 54608 Representative total house income in the dwelling unit is $54608 -in.representative_income 54615 Representative total house income in the dwelling unit is $54615 -in.representative_income 54617 Representative total house income in the dwelling unit is $54617 -in.representative_income 54618 Representative total house income in the dwelling unit is $54618 -in.representative_income 54619 Representative total house income in the dwelling unit is $54619 -in.representative_income 54623 Representative total house income in the dwelling unit is $54623 -in.representative_income 54626 Representative total house income in the dwelling unit is $54626 -in.representative_income 54627 Representative total house income in the dwelling unit is $54627 -in.representative_income 54628 Representative total house income in the dwelling unit is $54628 -in.representative_income 54629 Representative total house income in the dwelling unit is $54629 -in.representative_income 54638 Representative total house income in the dwelling unit is $54638 -in.representative_income 54639 Representative total house income in the dwelling unit is $54639 -in.representative_income 54645 Representative total house income in the dwelling unit is $54645 -in.representative_income 54649 Representative total house income in the dwelling unit is $54649 -in.representative_income 54650 Representative total house income in the dwelling unit is $54650 -in.representative_income 54657 Representative total house income in the dwelling unit is $54657 -in.representative_income 54659 Representative total house income in the dwelling unit is $54659 -in.representative_income 54667 Representative total house income in the dwelling unit is $54667 -in.representative_income 54669 Representative total house income in the dwelling unit is $54669 -in.representative_income 54671 Representative total house income in the dwelling unit is $54671 -in.representative_income 54672 Representative total house income in the dwelling unit is $54672 -in.representative_income 54673 Representative total house income in the dwelling unit is $54673 -in.representative_income 54679 Representative total house income in the dwelling unit is $54679 -in.representative_income 54681 Representative total house income in the dwelling unit is $54681 -in.representative_income 54688 Representative total house income in the dwelling unit is $54688 -in.representative_income 54689 Representative total house income in the dwelling unit is $54689 -in.representative_income 54692 Representative total house income in the dwelling unit is $54692 -in.representative_income 54698 Representative total house income in the dwelling unit is $54698 -in.representative_income 54700 Representative total house income in the dwelling unit is $54700 -in.representative_income 54702 Representative total house income in the dwelling unit is $54702 -in.representative_income 54704 Representative total house income in the dwelling unit is $54704 -in.representative_income 54705 Representative total house income in the dwelling unit is $54705 -in.representative_income 54707 Representative total house income in the dwelling unit is $54707 -in.representative_income 54708 Representative total house income in the dwelling unit is $54708 -in.representative_income 54709 Representative total house income in the dwelling unit is $54709 -in.representative_income 54718 Representative total house income in the dwelling unit is $54718 -in.representative_income 54720 Representative total house income in the dwelling unit is $54720 -in.representative_income 54726 Representative total house income in the dwelling unit is $54726 -in.representative_income 54730 Representative total house income in the dwelling unit is $54730 -in.representative_income 54733 Representative total house income in the dwelling unit is $54733 -in.representative_income 54734 Representative total house income in the dwelling unit is $54734 -in.representative_income 54736 Representative total house income in the dwelling unit is $54736 -in.representative_income 54740 Representative total house income in the dwelling unit is $54740 -in.representative_income 54746 Representative total house income in the dwelling unit is $54746 -in.representative_income 54747 Representative total house income in the dwelling unit is $54747 -in.representative_income 54748 Representative total house income in the dwelling unit is $54748 -in.representative_income 54750 Representative total house income in the dwelling unit is $54750 -in.representative_income 54753 Representative total house income in the dwelling unit is $54753 -in.representative_income 54754 Representative total house income in the dwelling unit is $54754 -in.representative_income 54756 Representative total house income in the dwelling unit is $54756 -in.representative_income 54760 Representative total house income in the dwelling unit is $54760 -in.representative_income 54761 Representative total house income in the dwelling unit is $54761 -in.representative_income 54762 Representative total house income in the dwelling unit is $54762 -in.representative_income 54767 Representative total house income in the dwelling unit is $54767 -in.representative_income 54769 Representative total house income in the dwelling unit is $54769 -in.representative_income 54770 Representative total house income in the dwelling unit is $54770 -in.representative_income 54774 Representative total house income in the dwelling unit is $54774 -in.representative_income 54779 Representative total house income in the dwelling unit is $54779 -in.representative_income 54780 Representative total house income in the dwelling unit is $54780 -in.representative_income 54784 Representative total house income in the dwelling unit is $54784 -in.representative_income 54787 Representative total house income in the dwelling unit is $54787 -in.representative_income 54790 Representative total house income in the dwelling unit is $54790 -in.representative_income 54793 Representative total house income in the dwelling unit is $54793 -in.representative_income 54797 Representative total house income in the dwelling unit is $54797 -in.representative_income 54800 Representative total house income in the dwelling unit is $54800 -in.representative_income 54811 Representative total house income in the dwelling unit is $54811 -in.representative_income 54812 Representative total house income in the dwelling unit is $54812 -in.representative_income 54815 Representative total house income in the dwelling unit is $54815 -in.representative_income 54816 Representative total house income in the dwelling unit is $54816 -in.representative_income 54819 Representative total house income in the dwelling unit is $54819 -in.representative_income 54821 Representative total house income in the dwelling unit is $54821 -in.representative_income 54822 Representative total house income in the dwelling unit is $54822 -in.representative_income 54823 Representative total house income in the dwelling unit is $54823 -in.representative_income 54829 Representative total house income in the dwelling unit is $54829 -in.representative_income 54831 Representative total house income in the dwelling unit is $54831 -in.representative_income 54832 Representative total house income in the dwelling unit is $54832 -in.representative_income 54834 Representative total house income in the dwelling unit is $54834 -in.representative_income 54840 Representative total house income in the dwelling unit is $54840 -in.representative_income 54842 Representative total house income in the dwelling unit is $54842 -in.representative_income 54843 Representative total house income in the dwelling unit is $54843 -in.representative_income 54844 Representative total house income in the dwelling unit is $54844 -in.representative_income 54850 Representative total house income in the dwelling unit is $54850 -in.representative_income 54851 Representative total house income in the dwelling unit is $54851 -in.representative_income 54853 Representative total house income in the dwelling unit is $54853 -in.representative_income 54861 Representative total house income in the dwelling unit is $54861 -in.representative_income 54866 Representative total house income in the dwelling unit is $54866 -in.representative_income 54871 Representative total house income in the dwelling unit is $54871 -in.representative_income 54873 Representative total house income in the dwelling unit is $54873 -in.representative_income 54874 Representative total house income in the dwelling unit is $54874 -in.representative_income 54881 Representative total house income in the dwelling unit is $54881 -in.representative_income 54884 Representative total house income in the dwelling unit is $54884 -in.representative_income 54885 Representative total house income in the dwelling unit is $54885 -in.representative_income 54888 Representative total house income in the dwelling unit is $54888 -in.representative_income 54891 Representative total house income in the dwelling unit is $54891 -in.representative_income 54896 Representative total house income in the dwelling unit is $54896 -in.representative_income 54903 Representative total house income in the dwelling unit is $54903 -in.representative_income 54904 Representative total house income in the dwelling unit is $54904 -in.representative_income 54906 Representative total house income in the dwelling unit is $54906 -in.representative_income 54908 Representative total house income in the dwelling unit is $54908 -in.representative_income 54911 Representative total house income in the dwelling unit is $54911 -in.representative_income 54913 Representative total house income in the dwelling unit is $54913 -in.representative_income 54914 Representative total house income in the dwelling unit is $54914 -in.representative_income 54918 Representative total house income in the dwelling unit is $54918 -in.representative_income 54920 Representative total house income in the dwelling unit is $54920 -in.representative_income 54925 Representative total house income in the dwelling unit is $54925 -in.representative_income 54931 Representative total house income in the dwelling unit is $54931 -in.representative_income 54942 Representative total house income in the dwelling unit is $54942 -in.representative_income 54944 Representative total house income in the dwelling unit is $54944 -in.representative_income 54945 Representative total house income in the dwelling unit is $54945 -in.representative_income 54952 Representative total house income in the dwelling unit is $54952 -in.representative_income 54955 Representative total house income in the dwelling unit is $54955 -in.representative_income 54957 Representative total house income in the dwelling unit is $54957 -in.representative_income 54960 Representative total house income in the dwelling unit is $54960 -in.representative_income 54961 Representative total house income in the dwelling unit is $54961 -in.representative_income 54963 Representative total house income in the dwelling unit is $54963 -in.representative_income 54968 Representative total house income in the dwelling unit is $54968 -in.representative_income 54972 Representative total house income in the dwelling unit is $54972 -in.representative_income 54974 Representative total house income in the dwelling unit is $54974 -in.representative_income 54976 Representative total house income in the dwelling unit is $54976 -in.representative_income 54977 Representative total house income in the dwelling unit is $54977 -in.representative_income 54993 Representative total house income in the dwelling unit is $54993 -in.representative_income 54995 Representative total house income in the dwelling unit is $54995 -in.representative_income 54997 Representative total house income in the dwelling unit is $54997 -in.representative_income 54998 Representative total house income in the dwelling unit is $54998 -in.representative_income 55002 Representative total house income in the dwelling unit is $55002 -in.representative_income 55012 Representative total house income in the dwelling unit is $55012 -in.representative_income 55017 Representative total house income in the dwelling unit is $55017 -in.representative_income 55019 Representative total house income in the dwelling unit is $55019 -in.representative_income 55028 Representative total house income in the dwelling unit is $55028 -in.representative_income 55039 Representative total house income in the dwelling unit is $55039 -in.representative_income 55040 Representative total house income in the dwelling unit is $55040 -in.representative_income 55043 Representative total house income in the dwelling unit is $55043 -in.representative_income 55044 Representative total house income in the dwelling unit is $55044 -in.representative_income 55049 Representative total house income in the dwelling unit is $55049 -in.representative_income 55050 Representative total house income in the dwelling unit is $55050 -in.representative_income 55053 Representative total house income in the dwelling unit is $55053 -in.representative_income 55059 Representative total house income in the dwelling unit is $55059 -in.representative_income 55061 Representative total house income in the dwelling unit is $55061 -in.representative_income 55063 Representative total house income in the dwelling unit is $55063 -in.representative_income 55068 Representative total house income in the dwelling unit is $55068 -in.representative_income 55073 Representative total house income in the dwelling unit is $55073 -in.representative_income 55079 Representative total house income in the dwelling unit is $55079 -in.representative_income 55083 Representative total house income in the dwelling unit is $55083 -in.representative_income 55093 Representative total house income in the dwelling unit is $55093 -in.representative_income 55094 Representative total house income in the dwelling unit is $55094 -in.representative_income 55095 Representative total house income in the dwelling unit is $55095 -in.representative_income 55097 Representative total house income in the dwelling unit is $55097 -in.representative_income 55100 Representative total house income in the dwelling unit is $55100 -in.representative_income 55101 Representative total house income in the dwelling unit is $55101 -in.representative_income 55103 Representative total house income in the dwelling unit is $55103 -in.representative_income 55104 Representative total house income in the dwelling unit is $55104 -in.representative_income 55105 Representative total house income in the dwelling unit is $55105 -in.representative_income 55109 Representative total house income in the dwelling unit is $55109 -in.representative_income 55114 Representative total house income in the dwelling unit is $55114 -in.representative_income 55115 Representative total house income in the dwelling unit is $55115 -in.representative_income 55121 Representative total house income in the dwelling unit is $55121 -in.representative_income 55124 Representative total house income in the dwelling unit is $55124 -in.representative_income 55126 Representative total house income in the dwelling unit is $55126 -in.representative_income 55132 Representative total house income in the dwelling unit is $55132 -in.representative_income 55134 Representative total house income in the dwelling unit is $55134 -in.representative_income 55135 Representative total house income in the dwelling unit is $55135 -in.representative_income 55148 Representative total house income in the dwelling unit is $55148 -in.representative_income 55153 Representative total house income in the dwelling unit is $55153 -in.representative_income 55154 Representative total house income in the dwelling unit is $55154 -in.representative_income 55156 Representative total house income in the dwelling unit is $55156 -in.representative_income 55158 Representative total house income in the dwelling unit is $55158 -in.representative_income 55159 Representative total house income in the dwelling unit is $55159 -in.representative_income 55162 Representative total house income in the dwelling unit is $55162 -in.representative_income 55164 Representative total house income in the dwelling unit is $55164 -in.representative_income 55169 Representative total house income in the dwelling unit is $55169 -in.representative_income 55174 Representative total house income in the dwelling unit is $55174 -in.representative_income 55175 Representative total house income in the dwelling unit is $55175 -in.representative_income 55176 Representative total house income in the dwelling unit is $55176 -in.representative_income 55177 Representative total house income in the dwelling unit is $55177 -in.representative_income 55179 Representative total house income in the dwelling unit is $55179 -in.representative_income 55180 Representative total house income in the dwelling unit is $55180 -in.representative_income 55182 Representative total house income in the dwelling unit is $55182 -in.representative_income 55183 Representative total house income in the dwelling unit is $55183 -in.representative_income 55184 Representative total house income in the dwelling unit is $55184 -in.representative_income 55186 Representative total house income in the dwelling unit is $55186 -in.representative_income 55191 Representative total house income in the dwelling unit is $55191 -in.representative_income 55193 Representative total house income in the dwelling unit is $55193 -in.representative_income 55197 Representative total house income in the dwelling unit is $55197 -in.representative_income 55202 Representative total house income in the dwelling unit is $55202 -in.representative_income 55204 Representative total house income in the dwelling unit is $55204 -in.representative_income 55208 Representative total house income in the dwelling unit is $55208 -in.representative_income 55209 Representative total house income in the dwelling unit is $55209 -in.representative_income 55212 Representative total house income in the dwelling unit is $55212 -in.representative_income 55215 Representative total house income in the dwelling unit is $55215 -in.representative_income 55224 Representative total house income in the dwelling unit is $55224 -in.representative_income 55229 Representative total house income in the dwelling unit is $55229 -in.representative_income 55230 Representative total house income in the dwelling unit is $55230 -in.representative_income 55232 Representative total house income in the dwelling unit is $55232 -in.representative_income 55234 Representative total house income in the dwelling unit is $55234 -in.representative_income 55235 Representative total house income in the dwelling unit is $55235 -in.representative_income 55237 Representative total house income in the dwelling unit is $55237 -in.representative_income 55239 Representative total house income in the dwelling unit is $55239 -in.representative_income 55240 Representative total house income in the dwelling unit is $55240 -in.representative_income 55243 Representative total house income in the dwelling unit is $55243 -in.representative_income 55245 Representative total house income in the dwelling unit is $55245 -in.representative_income 55255 Representative total house income in the dwelling unit is $55255 -in.representative_income 55261 Representative total house income in the dwelling unit is $55261 -in.representative_income 55265 Representative total house income in the dwelling unit is $55265 -in.representative_income 55266 Representative total house income in the dwelling unit is $55266 -in.representative_income 55267 Representative total house income in the dwelling unit is $55267 -in.representative_income 55272 Representative total house income in the dwelling unit is $55272 -in.representative_income 55274 Representative total house income in the dwelling unit is $55274 -in.representative_income 55276 Representative total house income in the dwelling unit is $55276 -in.representative_income 55277 Representative total house income in the dwelling unit is $55277 -in.representative_income 55281 Representative total house income in the dwelling unit is $55281 -in.representative_income 55282 Representative total house income in the dwelling unit is $55282 -in.representative_income 55286 Representative total house income in the dwelling unit is $55286 -in.representative_income 55293 Representative total house income in the dwelling unit is $55293 -in.representative_income 55295 Representative total house income in the dwelling unit is $55295 -in.representative_income 55299 Representative total house income in the dwelling unit is $55299 -in.representative_income 55304 Representative total house income in the dwelling unit is $55304 -in.representative_income 55305 Representative total house income in the dwelling unit is $55305 -in.representative_income 55306 Representative total house income in the dwelling unit is $55306 -in.representative_income 55309 Representative total house income in the dwelling unit is $55309 -in.representative_income 55313 Representative total house income in the dwelling unit is $55313 -in.representative_income 55316 Representative total house income in the dwelling unit is $55316 -in.representative_income 55320 Representative total house income in the dwelling unit is $55320 -in.representative_income 55321 Representative total house income in the dwelling unit is $55321 -in.representative_income 55326 Representative total house income in the dwelling unit is $55326 -in.representative_income 55331 Representative total house income in the dwelling unit is $55331 -in.representative_income 55336 Representative total house income in the dwelling unit is $55336 -in.representative_income 55337 Representative total house income in the dwelling unit is $55337 -in.representative_income 55347 Representative total house income in the dwelling unit is $55347 -in.representative_income 55348 Representative total house income in the dwelling unit is $55348 -in.representative_income 55355 Representative total house income in the dwelling unit is $55355 -in.representative_income 55356 Representative total house income in the dwelling unit is $55356 -in.representative_income 55358 Representative total house income in the dwelling unit is $55358 -in.representative_income 55361 Representative total house income in the dwelling unit is $55361 -in.representative_income 55366 Representative total house income in the dwelling unit is $55366 -in.representative_income 55367 Representative total house income in the dwelling unit is $55367 -in.representative_income 55369 Representative total house income in the dwelling unit is $55369 -in.representative_income 55374 Representative total house income in the dwelling unit is $55374 -in.representative_income 55376 Representative total house income in the dwelling unit is $55376 -in.representative_income 55377 Representative total house income in the dwelling unit is $55377 -in.representative_income 55378 Representative total house income in the dwelling unit is $55378 -in.representative_income 55379 Representative total house income in the dwelling unit is $55379 -in.representative_income 55385 Representative total house income in the dwelling unit is $55385 -in.representative_income 55387 Representative total house income in the dwelling unit is $55387 -in.representative_income 55389 Representative total house income in the dwelling unit is $55389 -in.representative_income 55390 Representative total house income in the dwelling unit is $55390 -in.representative_income 55396 Representative total house income in the dwelling unit is $55396 -in.representative_income 55400 Representative total house income in the dwelling unit is $55400 -in.representative_income 55401 Representative total house income in the dwelling unit is $55401 -in.representative_income 55406 Representative total house income in the dwelling unit is $55406 -in.representative_income 55411 Representative total house income in the dwelling unit is $55411 -in.representative_income 55412 Representative total house income in the dwelling unit is $55412 -in.representative_income 55414 Representative total house income in the dwelling unit is $55414 -in.representative_income 55417 Representative total house income in the dwelling unit is $55417 -in.representative_income 55419 Representative total house income in the dwelling unit is $55419 -in.representative_income 55420 Representative total house income in the dwelling unit is $55420 -in.representative_income 55424 Representative total house income in the dwelling unit is $55424 -in.representative_income 55428 Representative total house income in the dwelling unit is $55428 -in.representative_income 55431 Representative total house income in the dwelling unit is $55431 -in.representative_income 55432 Representative total house income in the dwelling unit is $55432 -in.representative_income 55440 Representative total house income in the dwelling unit is $55440 -in.representative_income 55441 Representative total house income in the dwelling unit is $55441 -in.representative_income 55452 Representative total house income in the dwelling unit is $55452 -in.representative_income 55456 Representative total house income in the dwelling unit is $55456 -in.representative_income 55457 Representative total house income in the dwelling unit is $55457 -in.representative_income 55460 Representative total house income in the dwelling unit is $55460 -in.representative_income 55465 Representative total house income in the dwelling unit is $55465 -in.representative_income 55472 Representative total house income in the dwelling unit is $55472 -in.representative_income 55474 Representative total house income in the dwelling unit is $55474 -in.representative_income 55475 Representative total house income in the dwelling unit is $55475 -in.representative_income 55476 Representative total house income in the dwelling unit is $55476 -in.representative_income 55482 Representative total house income in the dwelling unit is $55482 -in.representative_income 55487 Representative total house income in the dwelling unit is $55487 -in.representative_income 55488 Representative total house income in the dwelling unit is $55488 -in.representative_income 55492 Representative total house income in the dwelling unit is $55492 -in.representative_income 55493 Representative total house income in the dwelling unit is $55493 -in.representative_income 55496 Representative total house income in the dwelling unit is $55496 -in.representative_income 55497 Representative total house income in the dwelling unit is $55497 -in.representative_income 55504 Representative total house income in the dwelling unit is $55504 -in.representative_income 55507 Representative total house income in the dwelling unit is $55507 -in.representative_income 55509 Representative total house income in the dwelling unit is $55509 -in.representative_income 55514 Representative total house income in the dwelling unit is $55514 -in.representative_income 55518 Representative total house income in the dwelling unit is $55518 -in.representative_income 55519 Representative total house income in the dwelling unit is $55519 -in.representative_income 55523 Representative total house income in the dwelling unit is $55523 -in.representative_income 55528 Representative total house income in the dwelling unit is $55528 -in.representative_income 55533 Representative total house income in the dwelling unit is $55533 -in.representative_income 55536 Representative total house income in the dwelling unit is $55536 -in.representative_income 55537 Representative total house income in the dwelling unit is $55537 -in.representative_income 55538 Representative total house income in the dwelling unit is $55538 -in.representative_income 55540 Representative total house income in the dwelling unit is $55540 -in.representative_income 55541 Representative total house income in the dwelling unit is $55541 -in.representative_income 55546 Representative total house income in the dwelling unit is $55546 -in.representative_income 55548 Representative total house income in the dwelling unit is $55548 -in.representative_income 55551 Representative total house income in the dwelling unit is $55551 -in.representative_income 55554 Representative total house income in the dwelling unit is $55554 -in.representative_income 55558 Representative total house income in the dwelling unit is $55558 -in.representative_income 55568 Representative total house income in the dwelling unit is $55568 -in.representative_income 55574 Representative total house income in the dwelling unit is $55574 -in.representative_income 55578 Representative total house income in the dwelling unit is $55578 -in.representative_income 55588 Representative total house income in the dwelling unit is $55588 -in.representative_income 55590 Representative total house income in the dwelling unit is $55590 -in.representative_income 55594 Representative total house income in the dwelling unit is $55594 -in.representative_income 55596 Representative total house income in the dwelling unit is $55596 -in.representative_income 55598 Representative total house income in the dwelling unit is $55598 -in.representative_income 55601 Representative total house income in the dwelling unit is $55601 -in.representative_income 55605 Representative total house income in the dwelling unit is $55605 -in.representative_income 55606 Representative total house income in the dwelling unit is $55606 -in.representative_income 55608 Representative total house income in the dwelling unit is $55608 -in.representative_income 55609 Representative total house income in the dwelling unit is $55609 -in.representative_income 55613 Representative total house income in the dwelling unit is $55613 -in.representative_income 55616 Representative total house income in the dwelling unit is $55616 -in.representative_income 55617 Representative total house income in the dwelling unit is $55617 -in.representative_income 55619 Representative total house income in the dwelling unit is $55619 -in.representative_income 55622 Representative total house income in the dwelling unit is $55622 -in.representative_income 55626 Representative total house income in the dwelling unit is $55626 -in.representative_income 55629 Representative total house income in the dwelling unit is $55629 -in.representative_income 55631 Representative total house income in the dwelling unit is $55631 -in.representative_income 55633 Representative total house income in the dwelling unit is $55633 -in.representative_income 55637 Representative total house income in the dwelling unit is $55637 -in.representative_income 55638 Representative total house income in the dwelling unit is $55638 -in.representative_income 55639 Representative total house income in the dwelling unit is $55639 -in.representative_income 55642 Representative total house income in the dwelling unit is $55642 -in.representative_income 55644 Representative total house income in the dwelling unit is $55644 -in.representative_income 55647 Representative total house income in the dwelling unit is $55647 -in.representative_income 55648 Representative total house income in the dwelling unit is $55648 -in.representative_income 55649 Representative total house income in the dwelling unit is $55649 -in.representative_income 55659 Representative total house income in the dwelling unit is $55659 -in.representative_income 55662 Representative total house income in the dwelling unit is $55662 -in.representative_income 55664 Representative total house income in the dwelling unit is $55664 -in.representative_income 55666 Representative total house income in the dwelling unit is $55666 -in.representative_income 55669 Representative total house income in the dwelling unit is $55669 -in.representative_income 55671 Representative total house income in the dwelling unit is $55671 -in.representative_income 55679 Representative total house income in the dwelling unit is $55679 -in.representative_income 55683 Representative total house income in the dwelling unit is $55683 -in.representative_income 55687 Representative total house income in the dwelling unit is $55687 -in.representative_income 55688 Representative total house income in the dwelling unit is $55688 -in.representative_income 55689 Representative total house income in the dwelling unit is $55689 -in.representative_income 55690 Representative total house income in the dwelling unit is $55690 -in.representative_income 55698 Representative total house income in the dwelling unit is $55698 -in.representative_income 55699 Representative total house income in the dwelling unit is $55699 -in.representative_income 55704 Representative total house income in the dwelling unit is $55704 -in.representative_income 55709 Representative total house income in the dwelling unit is $55709 -in.representative_income 55712 Representative total house income in the dwelling unit is $55712 -in.representative_income 55726 Representative total house income in the dwelling unit is $55726 -in.representative_income 55727 Representative total house income in the dwelling unit is $55727 -in.representative_income 55729 Representative total house income in the dwelling unit is $55729 -in.representative_income 55730 Representative total house income in the dwelling unit is $55730 -in.representative_income 55733 Representative total house income in the dwelling unit is $55733 -in.representative_income 55736 Representative total house income in the dwelling unit is $55736 -in.representative_income 55740 Representative total house income in the dwelling unit is $55740 -in.representative_income 55746 Representative total house income in the dwelling unit is $55746 -in.representative_income 55750 Representative total house income in the dwelling unit is $55750 -in.representative_income 55752 Representative total house income in the dwelling unit is $55752 -in.representative_income 55756 Representative total house income in the dwelling unit is $55756 -in.representative_income 55760 Representative total house income in the dwelling unit is $55760 -in.representative_income 55765 Representative total house income in the dwelling unit is $55765 -in.representative_income 55766 Representative total house income in the dwelling unit is $55766 -in.representative_income 55767 Representative total house income in the dwelling unit is $55767 -in.representative_income 55769 Representative total house income in the dwelling unit is $55769 -in.representative_income 55780 Representative total house income in the dwelling unit is $55780 -in.representative_income 55781 Representative total house income in the dwelling unit is $55781 -in.representative_income 55787 Representative total house income in the dwelling unit is $55787 -in.representative_income 55788 Representative total house income in the dwelling unit is $55788 -in.representative_income 55795 Representative total house income in the dwelling unit is $55795 -in.representative_income 55799 Representative total house income in the dwelling unit is $55799 -in.representative_income 55800 Representative total house income in the dwelling unit is $55800 -in.representative_income 55801 Representative total house income in the dwelling unit is $55801 -in.representative_income 55806 Representative total house income in the dwelling unit is $55806 -in.representative_income 55808 Representative total house income in the dwelling unit is $55808 -in.representative_income 55811 Representative total house income in the dwelling unit is $55811 -in.representative_income 55819 Representative total house income in the dwelling unit is $55819 -in.representative_income 55820 Representative total house income in the dwelling unit is $55820 -in.representative_income 55830 Representative total house income in the dwelling unit is $55830 -in.representative_income 55831 Representative total house income in the dwelling unit is $55831 -in.representative_income 55841 Representative total house income in the dwelling unit is $55841 -in.representative_income 55843 Representative total house income in the dwelling unit is $55843 -in.representative_income 55847 Representative total house income in the dwelling unit is $55847 -in.representative_income 55850 Representative total house income in the dwelling unit is $55850 -in.representative_income 55852 Representative total house income in the dwelling unit is $55852 -in.representative_income 55858 Representative total house income in the dwelling unit is $55858 -in.representative_income 55861 Representative total house income in the dwelling unit is $55861 -in.representative_income 55863 Representative total house income in the dwelling unit is $55863 -in.representative_income 55866 Representative total house income in the dwelling unit is $55866 -in.representative_income 55871 Representative total house income in the dwelling unit is $55871 -in.representative_income 55873 Representative total house income in the dwelling unit is $55873 -in.representative_income 55881 Representative total house income in the dwelling unit is $55881 -in.representative_income 55883 Representative total house income in the dwelling unit is $55883 -in.representative_income 55884 Representative total house income in the dwelling unit is $55884 -in.representative_income 55890 Representative total house income in the dwelling unit is $55890 -in.representative_income 55894 Representative total house income in the dwelling unit is $55894 -in.representative_income 55895 Representative total house income in the dwelling unit is $55895 -in.representative_income 55904 Representative total house income in the dwelling unit is $55904 -in.representative_income 55905 Representative total house income in the dwelling unit is $55905 -in.representative_income 55912 Representative total house income in the dwelling unit is $55912 -in.representative_income 55915 Representative total house income in the dwelling unit is $55915 -in.representative_income 55916 Representative total house income in the dwelling unit is $55916 -in.representative_income 55917 Representative total house income in the dwelling unit is $55917 -in.representative_income 55925 Representative total house income in the dwelling unit is $55925 -in.representative_income 55926 Representative total house income in the dwelling unit is $55926 -in.representative_income 55927 Representative total house income in the dwelling unit is $55927 -in.representative_income 55932 Representative total house income in the dwelling unit is $55932 -in.representative_income 55936 Representative total house income in the dwelling unit is $55936 -in.representative_income 55937 Representative total house income in the dwelling unit is $55937 -in.representative_income 55941 Representative total house income in the dwelling unit is $55941 -in.representative_income 55945 Representative total house income in the dwelling unit is $55945 -in.representative_income 55947 Representative total house income in the dwelling unit is $55947 -in.representative_income 55948 Representative total house income in the dwelling unit is $55948 -in.representative_income 55957 Representative total house income in the dwelling unit is $55957 -in.representative_income 55962 Representative total house income in the dwelling unit is $55962 -in.representative_income 55964 Representative total house income in the dwelling unit is $55964 -in.representative_income 55967 Representative total house income in the dwelling unit is $55967 -in.representative_income 55969 Representative total house income in the dwelling unit is $55969 -in.representative_income 55972 Representative total house income in the dwelling unit is $55972 -in.representative_income 55977 Representative total house income in the dwelling unit is $55977 -in.representative_income 55980 Representative total house income in the dwelling unit is $55980 -in.representative_income 55981 Representative total house income in the dwelling unit is $55981 -in.representative_income 55986 Representative total house income in the dwelling unit is $55986 -in.representative_income 55990 Representative total house income in the dwelling unit is $55990 -in.representative_income 55998 Representative total house income in the dwelling unit is $55998 -in.representative_income 56000 Representative total house income in the dwelling unit is $56000 -in.representative_income 56001 Representative total house income in the dwelling unit is $56001 -in.representative_income 56003 Representative total house income in the dwelling unit is $56003 -in.representative_income 56008 Representative total house income in the dwelling unit is $56008 -in.representative_income 56010 Representative total house income in the dwelling unit is $56010 -in.representative_income 56013 Representative total house income in the dwelling unit is $56013 -in.representative_income 56018 Representative total house income in the dwelling unit is $56018 -in.representative_income 56021 Representative total house income in the dwelling unit is $56021 -in.representative_income 56023 Representative total house income in the dwelling unit is $56023 -in.representative_income 56028 Representative total house income in the dwelling unit is $56028 -in.representative_income 56033 Representative total house income in the dwelling unit is $56033 -in.representative_income 56034 Representative total house income in the dwelling unit is $56034 -in.representative_income 56038 Representative total house income in the dwelling unit is $56038 -in.representative_income 56042 Representative total house income in the dwelling unit is $56042 -in.representative_income 56054 Representative total house income in the dwelling unit is $56054 -in.representative_income 56055 Representative total house income in the dwelling unit is $56055 -in.representative_income 56063 Representative total house income in the dwelling unit is $56063 -in.representative_income 56073 Representative total house income in the dwelling unit is $56073 -in.representative_income 56077 Representative total house income in the dwelling unit is $56077 -in.representative_income 56083 Representative total house income in the dwelling unit is $56083 -in.representative_income 56087 Representative total house income in the dwelling unit is $56087 -in.representative_income 56089 Representative total house income in the dwelling unit is $56089 -in.representative_income 56097 Representative total house income in the dwelling unit is $56097 -in.representative_income 56102 Representative total house income in the dwelling unit is $56102 -in.representative_income 56105 Representative total house income in the dwelling unit is $56105 -in.representative_income 56111 Representative total house income in the dwelling unit is $56111 -in.representative_income 56114 Representative total house income in the dwelling unit is $56114 -in.representative_income 56122 Representative total house income in the dwelling unit is $56122 -in.representative_income 56131 Representative total house income in the dwelling unit is $56131 -in.representative_income 56132 Representative total house income in the dwelling unit is $56132 -in.representative_income 56136 Representative total house income in the dwelling unit is $56136 -in.representative_income 56141 Representative total house income in the dwelling unit is $56141 -in.representative_income 56142 Representative total house income in the dwelling unit is $56142 -in.representative_income 56144 Representative total house income in the dwelling unit is $56144 -in.representative_income 56152 Representative total house income in the dwelling unit is $56152 -in.representative_income 56154 Representative total house income in the dwelling unit is $56154 -in.representative_income 56157 Representative total house income in the dwelling unit is $56157 -in.representative_income 56159 Representative total house income in the dwelling unit is $56159 -in.representative_income 56163 Representative total house income in the dwelling unit is $56163 -in.representative_income 56164 Representative total house income in the dwelling unit is $56164 -in.representative_income 56174 Representative total house income in the dwelling unit is $56174 -in.representative_income 56176 Representative total house income in the dwelling unit is $56176 -in.representative_income 56181 Representative total house income in the dwelling unit is $56181 -in.representative_income 56183 Representative total house income in the dwelling unit is $56183 -in.representative_income 56184 Representative total house income in the dwelling unit is $56184 -in.representative_income 56189 Representative total house income in the dwelling unit is $56189 -in.representative_income 56190 Representative total house income in the dwelling unit is $56190 -in.representative_income 56194 Representative total house income in the dwelling unit is $56194 -in.representative_income 56195 Representative total house income in the dwelling unit is $56195 -in.representative_income 56200 Representative total house income in the dwelling unit is $56200 -in.representative_income 56204 Representative total house income in the dwelling unit is $56204 -in.representative_income 56206 Representative total house income in the dwelling unit is $56206 -in.representative_income 56211 Representative total house income in the dwelling unit is $56211 -in.representative_income 56214 Representative total house income in the dwelling unit is $56214 -in.representative_income 56216 Representative total house income in the dwelling unit is $56216 -in.representative_income 56221 Representative total house income in the dwelling unit is $56221 -in.representative_income 56228 Representative total house income in the dwelling unit is $56228 -in.representative_income 56230 Representative total house income in the dwelling unit is $56230 -in.representative_income 56231 Representative total house income in the dwelling unit is $56231 -in.representative_income 56238 Representative total house income in the dwelling unit is $56238 -in.representative_income 56245 Representative total house income in the dwelling unit is $56245 -in.representative_income 56249 Representative total house income in the dwelling unit is $56249 -in.representative_income 56253 Representative total house income in the dwelling unit is $56253 -in.representative_income 56255 Representative total house income in the dwelling unit is $56255 -in.representative_income 56265 Representative total house income in the dwelling unit is $56265 -in.representative_income 56271 Representative total house income in the dwelling unit is $56271 -in.representative_income 56274 Representative total house income in the dwelling unit is $56274 -in.representative_income 56277 Representative total house income in the dwelling unit is $56277 -in.representative_income 56282 Representative total house income in the dwelling unit is $56282 -in.representative_income 56285 Representative total house income in the dwelling unit is $56285 -in.representative_income 56292 Representative total house income in the dwelling unit is $56292 -in.representative_income 56293 Representative total house income in the dwelling unit is $56293 -in.representative_income 56302 Representative total house income in the dwelling unit is $56302 -in.representative_income 56305 Representative total house income in the dwelling unit is $56305 -in.representative_income 56314 Representative total house income in the dwelling unit is $56314 -in.representative_income 56316 Representative total house income in the dwelling unit is $56316 -in.representative_income 56317 Representative total house income in the dwelling unit is $56317 -in.representative_income 56326 Representative total house income in the dwelling unit is $56326 -in.representative_income 56336 Representative total house income in the dwelling unit is $56336 -in.representative_income 56338 Representative total house income in the dwelling unit is $56338 -in.representative_income 56346 Representative total house income in the dwelling unit is $56346 -in.representative_income 56356 Representative total house income in the dwelling unit is $56356 -in.representative_income 56359 Representative total house income in the dwelling unit is $56359 -in.representative_income 56365 Representative total house income in the dwelling unit is $56365 -in.representative_income 56366 Representative total house income in the dwelling unit is $56366 -in.representative_income 56376 Representative total house income in the dwelling unit is $56376 -in.representative_income 56384 Representative total house income in the dwelling unit is $56384 -in.representative_income 56396 Representative total house income in the dwelling unit is $56396 -in.representative_income 56400 Representative total house income in the dwelling unit is $56400 -in.representative_income 56405 Representative total house income in the dwelling unit is $56405 -in.representative_income 56406 Representative total house income in the dwelling unit is $56406 -in.representative_income 56410 Representative total house income in the dwelling unit is $56410 -in.representative_income 56414 Representative total house income in the dwelling unit is $56414 -in.representative_income 56420 Representative total house income in the dwelling unit is $56420 -in.representative_income 56421 Representative total house income in the dwelling unit is $56421 -in.representative_income 56422 Representative total house income in the dwelling unit is $56422 -in.representative_income 56424 Representative total house income in the dwelling unit is $56424 -in.representative_income 56438 Representative total house income in the dwelling unit is $56438 -in.representative_income 56439 Representative total house income in the dwelling unit is $56439 -in.representative_income 56442 Representative total house income in the dwelling unit is $56442 -in.representative_income 56447 Representative total house income in the dwelling unit is $56447 -in.representative_income 56454 Representative total house income in the dwelling unit is $56454 -in.representative_income 56462 Representative total house income in the dwelling unit is $56462 -in.representative_income 56463 Representative total house income in the dwelling unit is $56463 -in.representative_income 56465 Representative total house income in the dwelling unit is $56465 -in.representative_income 56467 Representative total house income in the dwelling unit is $56467 -in.representative_income 56472 Representative total house income in the dwelling unit is $56472 -in.representative_income 56476 Representative total house income in the dwelling unit is $56476 -in.representative_income 56481 Representative total house income in the dwelling unit is $56481 -in.representative_income 56485 Representative total house income in the dwelling unit is $56485 -in.representative_income 56486 Representative total house income in the dwelling unit is $56486 -in.representative_income 56495 Representative total house income in the dwelling unit is $56495 -in.representative_income 56506 Representative total house income in the dwelling unit is $56506 -in.representative_income 56507 Representative total house income in the dwelling unit is $56507 -in.representative_income 56508 Representative total house income in the dwelling unit is $56508 -in.representative_income 56511 Representative total house income in the dwelling unit is $56511 -in.representative_income 56512 Representative total house income in the dwelling unit is $56512 -in.representative_income 56513 Representative total house income in the dwelling unit is $56513 -in.representative_income 56514 Representative total house income in the dwelling unit is $56514 -in.representative_income 56516 Representative total house income in the dwelling unit is $56516 -in.representative_income 56517 Representative total house income in the dwelling unit is $56517 -in.representative_income 56518 Representative total house income in the dwelling unit is $56518 -in.representative_income 56524 Representative total house income in the dwelling unit is $56524 -in.representative_income 56526 Representative total house income in the dwelling unit is $56526 -in.representative_income 56528 Representative total house income in the dwelling unit is $56528 -in.representative_income 56538 Representative total house income in the dwelling unit is $56538 -in.representative_income 56544 Representative total house income in the dwelling unit is $56544 -in.representative_income 56546 Representative total house income in the dwelling unit is $56546 -in.representative_income 56548 Representative total house income in the dwelling unit is $56548 -in.representative_income 56554 Representative total house income in the dwelling unit is $56554 -in.representative_income 56562 Representative total house income in the dwelling unit is $56562 -in.representative_income 56568 Representative total house income in the dwelling unit is $56568 -in.representative_income 56571 Representative total house income in the dwelling unit is $56571 -in.representative_income 56575 Representative total house income in the dwelling unit is $56575 -in.representative_income 56578 Representative total house income in the dwelling unit is $56578 -in.representative_income 56580 Representative total house income in the dwelling unit is $56580 -in.representative_income 56586 Representative total house income in the dwelling unit is $56586 -in.representative_income 56588 Representative total house income in the dwelling unit is $56588 -in.representative_income 56592 Representative total house income in the dwelling unit is $56592 -in.representative_income 56596 Representative total house income in the dwelling unit is $56596 -in.representative_income 56598 Representative total house income in the dwelling unit is $56598 -in.representative_income 56603 Representative total house income in the dwelling unit is $56603 -in.representative_income 56605 Representative total house income in the dwelling unit is $56605 -in.representative_income 56616 Representative total house income in the dwelling unit is $56616 -in.representative_income 56619 Representative total house income in the dwelling unit is $56619 -in.representative_income 56627 Representative total house income in the dwelling unit is $56627 -in.representative_income 56628 Representative total house income in the dwelling unit is $56628 -in.representative_income 56629 Representative total house income in the dwelling unit is $56629 -in.representative_income 56633 Representative total house income in the dwelling unit is $56633 -in.representative_income 56636 Representative total house income in the dwelling unit is $56636 -in.representative_income 56646 Representative total house income in the dwelling unit is $56646 -in.representative_income 56650 Representative total house income in the dwelling unit is $56650 -in.representative_income 56654 Representative total house income in the dwelling unit is $56654 -in.representative_income 56664 Representative total house income in the dwelling unit is $56664 -in.representative_income 56666 Representative total house income in the dwelling unit is $56666 -in.representative_income 56668 Representative total house income in the dwelling unit is $56668 -in.representative_income 56669 Representative total house income in the dwelling unit is $56669 -in.representative_income 56671 Representative total house income in the dwelling unit is $56671 -in.representative_income 56674 Representative total house income in the dwelling unit is $56674 -in.representative_income 56678 Representative total house income in the dwelling unit is $56678 -in.representative_income 56679 Representative total house income in the dwelling unit is $56679 -in.representative_income 56682 Representative total house income in the dwelling unit is $56682 -in.representative_income 56685 Representative total house income in the dwelling unit is $56685 -in.representative_income 56699 Representative total house income in the dwelling unit is $56699 -in.representative_income 56710 Representative total house income in the dwelling unit is $56710 -in.representative_income 56717 Representative total house income in the dwelling unit is $56717 -in.representative_income 56720 Representative total house income in the dwelling unit is $56720 -in.representative_income 56725 Representative total house income in the dwelling unit is $56725 -in.representative_income 56726 Representative total house income in the dwelling unit is $56726 -in.representative_income 56728 Representative total house income in the dwelling unit is $56728 -in.representative_income 56729 Representative total house income in the dwelling unit is $56729 -in.representative_income 56736 Representative total house income in the dwelling unit is $56736 -in.representative_income 56738 Representative total house income in the dwelling unit is $56738 -in.representative_income 56750 Representative total house income in the dwelling unit is $56750 -in.representative_income 56751 Representative total house income in the dwelling unit is $56751 -in.representative_income 56757 Representative total house income in the dwelling unit is $56757 -in.representative_income 56759 Representative total house income in the dwelling unit is $56759 -in.representative_income 56761 Representative total house income in the dwelling unit is $56761 -in.representative_income 56770 Representative total house income in the dwelling unit is $56770 -in.representative_income 56771 Representative total house income in the dwelling unit is $56771 -in.representative_income 56780 Representative total house income in the dwelling unit is $56780 -in.representative_income 56781 Representative total house income in the dwelling unit is $56781 -in.representative_income 56785 Representative total house income in the dwelling unit is $56785 -in.representative_income 56786 Representative total house income in the dwelling unit is $56786 -in.representative_income 56792 Representative total house income in the dwelling unit is $56792 -in.representative_income 56802 Representative total house income in the dwelling unit is $56802 -in.representative_income 56811 Representative total house income in the dwelling unit is $56811 -in.representative_income 56818 Representative total house income in the dwelling unit is $56818 -in.representative_income 56833 Representative total house income in the dwelling unit is $56833 -in.representative_income 56843 Representative total house income in the dwelling unit is $56843 -in.representative_income 56851 Representative total house income in the dwelling unit is $56851 -in.representative_income 56854 Representative total house income in the dwelling unit is $56854 -in.representative_income 56864 Representative total house income in the dwelling unit is $56864 -in.representative_income 56871 Representative total house income in the dwelling unit is $56871 -in.representative_income 56876 Representative total house income in the dwelling unit is $56876 -in.representative_income 56881 Representative total house income in the dwelling unit is $56881 -in.representative_income 56885 Representative total house income in the dwelling unit is $56885 -in.representative_income 56887 Representative total house income in the dwelling unit is $56887 -in.representative_income 56890 Representative total house income in the dwelling unit is $56890 -in.representative_income 56892 Representative total house income in the dwelling unit is $56892 -in.representative_income 56897 Representative total house income in the dwelling unit is $56897 -in.representative_income 56898 Representative total house income in the dwelling unit is $56898 -in.representative_income 56901 Representative total house income in the dwelling unit is $56901 -in.representative_income 56909 Representative total house income in the dwelling unit is $56909 -in.representative_income 56915 Representative total house income in the dwelling unit is $56915 -in.representative_income 56916 Representative total house income in the dwelling unit is $56916 -in.representative_income 56917 Representative total house income in the dwelling unit is $56917 -in.representative_income 56919 Representative total house income in the dwelling unit is $56919 -in.representative_income 56920 Representative total house income in the dwelling unit is $56920 -in.representative_income 56922 Representative total house income in the dwelling unit is $56922 -in.representative_income 56925 Representative total house income in the dwelling unit is $56925 -in.representative_income 56936 Representative total house income in the dwelling unit is $56936 -in.representative_income 56941 Representative total house income in the dwelling unit is $56941 -in.representative_income 56947 Representative total house income in the dwelling unit is $56947 -in.representative_income 56949 Representative total house income in the dwelling unit is $56949 -in.representative_income 56952 Representative total house income in the dwelling unit is $56952 -in.representative_income 56959 Representative total house income in the dwelling unit is $56959 -in.representative_income 56967 Representative total house income in the dwelling unit is $56967 -in.representative_income 56968 Representative total house income in the dwelling unit is $56968 -in.representative_income 56969 Representative total house income in the dwelling unit is $56969 -in.representative_income 56972 Representative total house income in the dwelling unit is $56972 -in.representative_income 56981 Representative total house income in the dwelling unit is $56981 -in.representative_income 56986 Representative total house income in the dwelling unit is $56986 -in.representative_income 56998 Representative total house income in the dwelling unit is $56998 -in.representative_income 56999 Representative total house income in the dwelling unit is $56999 -in.representative_income 57000 Representative total house income in the dwelling unit is $57000 -in.representative_income 57002 Representative total house income in the dwelling unit is $57002 -in.representative_income 57022 Representative total house income in the dwelling unit is $57022 -in.representative_income 57023 Representative total house income in the dwelling unit is $57023 -in.representative_income 57027 Representative total house income in the dwelling unit is $57027 -in.representative_income 57039 Representative total house income in the dwelling unit is $57039 -in.representative_income 57040 Representative total house income in the dwelling unit is $57040 -in.representative_income 57043 Representative total house income in the dwelling unit is $57043 -in.representative_income 57049 Representative total house income in the dwelling unit is $57049 -in.representative_income 57054 Representative total house income in the dwelling unit is $57054 -in.representative_income 57057 Representative total house income in the dwelling unit is $57057 -in.representative_income 57062 Representative total house income in the dwelling unit is $57062 -in.representative_income 57065 Representative total house income in the dwelling unit is $57065 -in.representative_income 57073 Representative total house income in the dwelling unit is $57073 -in.representative_income 57079 Representative total house income in the dwelling unit is $57079 -in.representative_income 57086 Representative total house income in the dwelling unit is $57086 -in.representative_income 57093 Representative total house income in the dwelling unit is $57093 -in.representative_income 57101 Representative total house income in the dwelling unit is $57101 -in.representative_income 57107 Representative total house income in the dwelling unit is $57107 -in.representative_income 57110 Representative total house income in the dwelling unit is $57110 -in.representative_income 57118 Representative total house income in the dwelling unit is $57118 -in.representative_income 57124 Representative total house income in the dwelling unit is $57124 -in.representative_income 57128 Representative total house income in the dwelling unit is $57128 -in.representative_income 57139 Representative total house income in the dwelling unit is $57139 -in.representative_income 57143 Representative total house income in the dwelling unit is $57143 -in.representative_income 57146 Representative total house income in the dwelling unit is $57146 -in.representative_income 57149 Representative total house income in the dwelling unit is $57149 -in.representative_income 57157 Representative total house income in the dwelling unit is $57157 -in.representative_income 57159 Representative total house income in the dwelling unit is $57159 -in.representative_income 57161 Representative total house income in the dwelling unit is $57161 -in.representative_income 57174 Representative total house income in the dwelling unit is $57174 -in.representative_income 57194 Representative total house income in the dwelling unit is $57194 -in.representative_income 57202 Representative total house income in the dwelling unit is $57202 -in.representative_income 57205 Representative total house income in the dwelling unit is $57205 -in.representative_income 57215 Representative total house income in the dwelling unit is $57215 -in.representative_income 57225 Representative total house income in the dwelling unit is $57225 -in.representative_income 57246 Representative total house income in the dwelling unit is $57246 -in.representative_income 57254 Representative total house income in the dwelling unit is $57254 -in.representative_income 57265 Representative total house income in the dwelling unit is $57265 -in.representative_income 57266 Representative total house income in the dwelling unit is $57266 -in.representative_income 57268 Representative total house income in the dwelling unit is $57268 -in.representative_income 57269 Representative total house income in the dwelling unit is $57269 -in.representative_income 57270 Representative total house income in the dwelling unit is $57270 -in.representative_income 57275 Representative total house income in the dwelling unit is $57275 -in.representative_income 57276 Representative total house income in the dwelling unit is $57276 -in.representative_income 57285 Representative total house income in the dwelling unit is $57285 -in.representative_income 57287 Representative total house income in the dwelling unit is $57287 -in.representative_income 57297 Representative total house income in the dwelling unit is $57297 -in.representative_income 57299 Representative total house income in the dwelling unit is $57299 -in.representative_income 57301 Representative total house income in the dwelling unit is $57301 -in.representative_income 57306 Representative total house income in the dwelling unit is $57306 -in.representative_income 57308 Representative total house income in the dwelling unit is $57308 -in.representative_income 57312 Representative total house income in the dwelling unit is $57312 -in.representative_income 57316 Representative total house income in the dwelling unit is $57316 -in.representative_income 57319 Representative total house income in the dwelling unit is $57319 -in.representative_income 57321 Representative total house income in the dwelling unit is $57321 -in.representative_income 57322 Representative total house income in the dwelling unit is $57322 -in.representative_income 57328 Representative total house income in the dwelling unit is $57328 -in.representative_income 57340 Representative total house income in the dwelling unit is $57340 -in.representative_income 57344 Representative total house income in the dwelling unit is $57344 -in.representative_income 57346 Representative total house income in the dwelling unit is $57346 -in.representative_income 57348 Representative total house income in the dwelling unit is $57348 -in.representative_income 57356 Representative total house income in the dwelling unit is $57356 -in.representative_income 57360 Representative total house income in the dwelling unit is $57360 -in.representative_income 57362 Representative total house income in the dwelling unit is $57362 -in.representative_income 57366 Representative total house income in the dwelling unit is $57366 -in.representative_income 57371 Representative total house income in the dwelling unit is $57371 -in.representative_income 57373 Representative total house income in the dwelling unit is $57373 -in.representative_income 57376 Representative total house income in the dwelling unit is $57376 -in.representative_income 57378 Representative total house income in the dwelling unit is $57378 -in.representative_income 57383 Representative total house income in the dwelling unit is $57383 -in.representative_income 57418 Representative total house income in the dwelling unit is $57418 -in.representative_income 57422 Representative total house income in the dwelling unit is $57422 -in.representative_income 57429 Representative total house income in the dwelling unit is $57429 -in.representative_income 57434 Representative total house income in the dwelling unit is $57434 -in.representative_income 57452 Representative total house income in the dwelling unit is $57452 -in.representative_income 57455 Representative total house income in the dwelling unit is $57455 -in.representative_income 57461 Representative total house income in the dwelling unit is $57461 -in.representative_income 57463 Representative total house income in the dwelling unit is $57463 -in.representative_income 57476 Representative total house income in the dwelling unit is $57476 -in.representative_income 57477 Representative total house income in the dwelling unit is $57477 -in.representative_income 57481 Representative total house income in the dwelling unit is $57481 -in.representative_income 57483 Representative total house income in the dwelling unit is $57483 -in.representative_income 57486 Representative total house income in the dwelling unit is $57486 -in.representative_income 57488 Representative total house income in the dwelling unit is $57488 -in.representative_income 57497 Representative total house income in the dwelling unit is $57497 -in.representative_income 57503 Representative total house income in the dwelling unit is $57503 -in.representative_income 57505 Representative total house income in the dwelling unit is $57505 -in.representative_income 57508 Representative total house income in the dwelling unit is $57508 -in.representative_income 57513 Representative total house income in the dwelling unit is $57513 -in.representative_income 57514 Representative total house income in the dwelling unit is $57514 -in.representative_income 57518 Representative total house income in the dwelling unit is $57518 -in.representative_income 57537 Representative total house income in the dwelling unit is $57537 -in.representative_income 57538 Representative total house income in the dwelling unit is $57538 -in.representative_income 57545 Representative total house income in the dwelling unit is $57545 -in.representative_income 57555 Representative total house income in the dwelling unit is $57555 -in.representative_income 57578 Representative total house income in the dwelling unit is $57578 -in.representative_income 57581 Representative total house income in the dwelling unit is $57581 -in.representative_income 57589 Representative total house income in the dwelling unit is $57589 -in.representative_income 57591 Representative total house income in the dwelling unit is $57591 -in.representative_income 57602 Representative total house income in the dwelling unit is $57602 -in.representative_income 57619 Representative total house income in the dwelling unit is $57619 -in.representative_income 57622 Representative total house income in the dwelling unit is $57622 -in.representative_income 57624 Representative total house income in the dwelling unit is $57624 -in.representative_income 57634 Representative total house income in the dwelling unit is $57634 -in.representative_income 57639 Representative total house income in the dwelling unit is $57639 -in.representative_income 57644 Representative total house income in the dwelling unit is $57644 -in.representative_income 57645 Representative total house income in the dwelling unit is $57645 -in.representative_income 57655 Representative total house income in the dwelling unit is $57655 -in.representative_income 57658 Representative total house income in the dwelling unit is $57658 -in.representative_income 57666 Representative total house income in the dwelling unit is $57666 -in.representative_income 57679 Representative total house income in the dwelling unit is $57679 -in.representative_income 57687 Representative total house income in the dwelling unit is $57687 -in.representative_income 57697 Representative total house income in the dwelling unit is $57697 -in.representative_income 57699 Representative total house income in the dwelling unit is $57699 -in.representative_income 57719 Representative total house income in the dwelling unit is $57719 -in.representative_income 57730 Representative total house income in the dwelling unit is $57730 -in.representative_income 57751 Representative total house income in the dwelling unit is $57751 -in.representative_income 57752 Representative total house income in the dwelling unit is $57752 -in.representative_income 57761 Representative total house income in the dwelling unit is $57761 -in.representative_income 57762 Representative total house income in the dwelling unit is $57762 -in.representative_income 57780 Representative total house income in the dwelling unit is $57780 -in.representative_income 57782 Representative total house income in the dwelling unit is $57782 -in.representative_income 57786 Representative total house income in the dwelling unit is $57786 -in.representative_income 57792 Representative total house income in the dwelling unit is $57792 -in.representative_income 57794 Representative total house income in the dwelling unit is $57794 -in.representative_income 57802 Representative total house income in the dwelling unit is $57802 -in.representative_income 57805 Representative total house income in the dwelling unit is $57805 -in.representative_income 57824 Representative total house income in the dwelling unit is $57824 -in.representative_income 57838 Representative total house income in the dwelling unit is $57838 -in.representative_income 57859 Representative total house income in the dwelling unit is $57859 -in.representative_income 57863 Representative total house income in the dwelling unit is $57863 -in.representative_income 57864 Representative total house income in the dwelling unit is $57864 -in.representative_income 57866 Representative total house income in the dwelling unit is $57866 -in.representative_income 57871 Representative total house income in the dwelling unit is $57871 -in.representative_income 57881 Representative total house income in the dwelling unit is $57881 -in.representative_income 57882 Representative total house income in the dwelling unit is $57882 -in.representative_income 57885 Representative total house income in the dwelling unit is $57885 -in.representative_income 57897 Representative total house income in the dwelling unit is $57897 -in.representative_income 57898 Representative total house income in the dwelling unit is $57898 -in.representative_income 57901 Representative total house income in the dwelling unit is $57901 -in.representative_income 57902 Representative total house income in the dwelling unit is $57902 -in.representative_income 57912 Representative total house income in the dwelling unit is $57912 -in.representative_income 57913 Representative total house income in the dwelling unit is $57913 -in.representative_income 57922 Representative total house income in the dwelling unit is $57922 -in.representative_income 57932 Representative total house income in the dwelling unit is $57932 -in.representative_income 57937 Representative total house income in the dwelling unit is $57937 -in.representative_income 57956 Representative total house income in the dwelling unit is $57956 -in.representative_income 57962 Representative total house income in the dwelling unit is $57962 -in.representative_income 57967 Representative total house income in the dwelling unit is $57967 -in.representative_income 57971 Representative total house income in the dwelling unit is $57971 -in.representative_income 57977 Representative total house income in the dwelling unit is $57977 -in.representative_income 57982 Representative total house income in the dwelling unit is $57982 -in.representative_income 57988 Representative total house income in the dwelling unit is $57988 -in.representative_income 57999 Representative total house income in the dwelling unit is $57999 -in.representative_income 58003 Representative total house income in the dwelling unit is $58003 -in.representative_income 58004 Representative total house income in the dwelling unit is $58004 -in.representative_income 58014 Representative total house income in the dwelling unit is $58014 -in.representative_income 58021 Representative total house income in the dwelling unit is $58021 -in.representative_income 58024 Representative total house income in the dwelling unit is $58024 -in.representative_income 58032 Representative total house income in the dwelling unit is $58032 -in.representative_income 58035 Representative total house income in the dwelling unit is $58035 -in.representative_income 58056 Representative total house income in the dwelling unit is $58056 -in.representative_income 58071 Representative total house income in the dwelling unit is $58071 -in.representative_income 58073 Representative total house income in the dwelling unit is $58073 -in.representative_income 58083 Representative total house income in the dwelling unit is $58083 -in.representative_income 58093 Representative total house income in the dwelling unit is $58093 -in.representative_income 58098 Representative total house income in the dwelling unit is $58098 -in.representative_income 58107 Representative total house income in the dwelling unit is $58107 -in.representative_income 58109 Representative total house income in the dwelling unit is $58109 -in.representative_income 58117 Representative total house income in the dwelling unit is $58117 -in.representative_income 58120 Representative total house income in the dwelling unit is $58120 -in.representative_income 58122 Representative total house income in the dwelling unit is $58122 -in.representative_income 58129 Representative total house income in the dwelling unit is $58129 -in.representative_income 58130 Representative total house income in the dwelling unit is $58130 -in.representative_income 58152 Representative total house income in the dwelling unit is $58152 -in.representative_income 58164 Representative total house income in the dwelling unit is $58164 -in.representative_income 58170 Representative total house income in the dwelling unit is $58170 -in.representative_income 58172 Representative total house income in the dwelling unit is $58172 -in.representative_income 58173 Representative total house income in the dwelling unit is $58173 -in.representative_income 58174 Representative total house income in the dwelling unit is $58174 -in.representative_income 58181 Representative total house income in the dwelling unit is $58181 -in.representative_income 58182 Representative total house income in the dwelling unit is $58182 -in.representative_income 58184 Representative total house income in the dwelling unit is $58184 -in.representative_income 58191 Representative total house income in the dwelling unit is $58191 -in.representative_income 58202 Representative total house income in the dwelling unit is $58202 -in.representative_income 58204 Representative total house income in the dwelling unit is $58204 -in.representative_income 58205 Representative total house income in the dwelling unit is $58205 -in.representative_income 58214 Representative total house income in the dwelling unit is $58214 -in.representative_income 58225 Representative total house income in the dwelling unit is $58225 -in.representative_income 58235 Representative total house income in the dwelling unit is $58235 -in.representative_income 58236 Representative total house income in the dwelling unit is $58236 -in.representative_income 58238 Representative total house income in the dwelling unit is $58238 -in.representative_income 58246 Representative total house income in the dwelling unit is $58246 -in.representative_income 58256 Representative total house income in the dwelling unit is $58256 -in.representative_income 58277 Representative total house income in the dwelling unit is $58277 -in.representative_income 58278 Representative total house income in the dwelling unit is $58278 -in.representative_income 58285 Representative total house income in the dwelling unit is $58285 -in.representative_income 58288 Representative total house income in the dwelling unit is $58288 -in.representative_income 58299 Representative total house income in the dwelling unit is $58299 -in.representative_income 58310 Representative total house income in the dwelling unit is $58310 -in.representative_income 58316 Representative total house income in the dwelling unit is $58316 -in.representative_income 58318 Representative total house income in the dwelling unit is $58318 -in.representative_income 58319 Representative total house income in the dwelling unit is $58319 -in.representative_income 58320 Representative total house income in the dwelling unit is $58320 -in.representative_income 58329 Representative total house income in the dwelling unit is $58329 -in.representative_income 58331 Representative total house income in the dwelling unit is $58331 -in.representative_income 58337 Representative total house income in the dwelling unit is $58337 -in.representative_income 58346 Representative total house income in the dwelling unit is $58346 -in.representative_income 58350 Representative total house income in the dwelling unit is $58350 -in.representative_income 58357 Representative total house income in the dwelling unit is $58357 -in.representative_income 58367 Representative total house income in the dwelling unit is $58367 -in.representative_income 58380 Representative total house income in the dwelling unit is $58380 -in.representative_income 58386 Representative total house income in the dwelling unit is $58386 -in.representative_income 58396 Representative total house income in the dwelling unit is $58396 -in.representative_income 58400 Representative total house income in the dwelling unit is $58400 -in.representative_income 58410 Representative total house income in the dwelling unit is $58410 -in.representative_income 58411 Representative total house income in the dwelling unit is $58411 -in.representative_income 58421 Representative total house income in the dwelling unit is $58421 -in.representative_income 58425 Representative total house income in the dwelling unit is $58425 -in.representative_income 58454 Representative total house income in the dwelling unit is $58454 -in.representative_income 58478 Representative total house income in the dwelling unit is $58478 -in.representative_income 58483 Representative total house income in the dwelling unit is $58483 -in.representative_income 58487 Representative total house income in the dwelling unit is $58487 -in.representative_income 58503 Representative total house income in the dwelling unit is $58503 -in.representative_income 58531 Representative total house income in the dwelling unit is $58531 -in.representative_income 58538 Representative total house income in the dwelling unit is $58538 -in.representative_income 58540 Representative total house income in the dwelling unit is $58540 -in.representative_income 58545 Representative total house income in the dwelling unit is $58545 -in.representative_income 58557 Representative total house income in the dwelling unit is $58557 -in.representative_income 58562 Representative total house income in the dwelling unit is $58562 -in.representative_income 58563 Representative total house income in the dwelling unit is $58563 -in.representative_income 58566 Representative total house income in the dwelling unit is $58566 -in.representative_income 58578 Representative total house income in the dwelling unit is $58578 -in.representative_income 58583 Representative total house income in the dwelling unit is $58583 -in.representative_income 58586 Representative total house income in the dwelling unit is $58586 -in.representative_income 58588 Representative total house income in the dwelling unit is $58588 -in.representative_income 58610 Representative total house income in the dwelling unit is $58610 -in.representative_income 58632 Representative total house income in the dwelling unit is $58632 -in.representative_income 58636 Representative total house income in the dwelling unit is $58636 -in.representative_income 58657 Representative total house income in the dwelling unit is $58657 -in.representative_income 58662 Representative total house income in the dwelling unit is $58662 -in.representative_income 58664 Representative total house income in the dwelling unit is $58664 -in.representative_income 58669 Representative total house income in the dwelling unit is $58669 -in.representative_income 58679 Representative total house income in the dwelling unit is $58679 -in.representative_income 58689 Representative total house income in the dwelling unit is $58689 -in.representative_income 58690 Representative total house income in the dwelling unit is $58690 -in.representative_income 58696 Representative total house income in the dwelling unit is $58696 -in.representative_income 58717 Representative total house income in the dwelling unit is $58717 -in.representative_income 58720 Representative total house income in the dwelling unit is $58720 -in.representative_income 58742 Representative total house income in the dwelling unit is $58742 -in.representative_income 58752 Representative total house income in the dwelling unit is $58752 -in.representative_income 58770 Representative total house income in the dwelling unit is $58770 -in.representative_income 58773 Representative total house income in the dwelling unit is $58773 -in.representative_income 58777 Representative total house income in the dwelling unit is $58777 -in.representative_income 58790 Representative total house income in the dwelling unit is $58790 -in.representative_income 58793 Representative total house income in the dwelling unit is $58793 -in.representative_income 58801 Representative total house income in the dwelling unit is $58801 -in.representative_income 58825 Representative total house income in the dwelling unit is $58825 -in.representative_income 58845 Representative total house income in the dwelling unit is $58845 -in.representative_income 58847 Representative total house income in the dwelling unit is $58847 -in.representative_income 58881 Representative total house income in the dwelling unit is $58881 -in.representative_income 58885 Representative total house income in the dwelling unit is $58885 -in.representative_income 58891 Representative total house income in the dwelling unit is $58891 -in.representative_income 58896 Representative total house income in the dwelling unit is $58896 -in.representative_income 58900 Representative total house income in the dwelling unit is $58900 -in.representative_income 58921 Representative total house income in the dwelling unit is $58921 -in.representative_income 58922 Representative total house income in the dwelling unit is $58922 -in.representative_income 58933 Representative total house income in the dwelling unit is $58933 -in.representative_income 58952 Representative total house income in the dwelling unit is $58952 -in.representative_income 58968 Representative total house income in the dwelling unit is $58968 -in.representative_income 58992 Representative total house income in the dwelling unit is $58992 -in.representative_income 58993 Representative total house income in the dwelling unit is $58993 -in.representative_income 58999 Representative total house income in the dwelling unit is $58999 -in.representative_income 59026 Representative total house income in the dwelling unit is $59026 -in.representative_income 59040 Representative total house income in the dwelling unit is $59040 -in.representative_income 59044 Representative total house income in the dwelling unit is $59044 -in.representative_income 59048 Representative total house income in the dwelling unit is $59048 -in.representative_income 59050 Representative total house income in the dwelling unit is $59050 -in.representative_income 59057 Representative total house income in the dwelling unit is $59057 -in.representative_income 59070 Representative total house income in the dwelling unit is $59070 -in.representative_income 59072 Representative total house income in the dwelling unit is $59072 -in.representative_income 59073 Representative total house income in the dwelling unit is $59073 -in.representative_income 59079 Representative total house income in the dwelling unit is $59079 -in.representative_income 59093 Representative total house income in the dwelling unit is $59093 -in.representative_income 59102 Representative total house income in the dwelling unit is $59102 -in.representative_income 59113 Representative total house income in the dwelling unit is $59113 -in.representative_income 59124 Representative total house income in the dwelling unit is $59124 -in.representative_income 59147 Representative total house income in the dwelling unit is $59147 -in.representative_income 59154 Representative total house income in the dwelling unit is $59154 -in.representative_income 59164 Representative total house income in the dwelling unit is $59164 -in.representative_income 59178 Representative total house income in the dwelling unit is $59178 -in.representative_income 59184 Representative total house income in the dwelling unit is $59184 -in.representative_income 59194 Representative total house income in the dwelling unit is $59194 -in.representative_income 59201 Representative total house income in the dwelling unit is $59201 -in.representative_income 59205 Representative total house income in the dwelling unit is $59205 -in.representative_income 59210 Representative total house income in the dwelling unit is $59210 -in.representative_income 59221 Representative total house income in the dwelling unit is $59221 -in.representative_income 59233 Representative total house income in the dwelling unit is $59233 -in.representative_income 59237 Representative total house income in the dwelling unit is $59237 -in.representative_income 59242 Representative total house income in the dwelling unit is $59242 -in.representative_income 59243 Representative total house income in the dwelling unit is $59243 -in.representative_income 59248 Representative total house income in the dwelling unit is $59248 -in.representative_income 59254 Representative total house income in the dwelling unit is $59254 -in.representative_income 59269 Representative total house income in the dwelling unit is $59269 -in.representative_income 59296 Representative total house income in the dwelling unit is $59296 -in.representative_income 59309 Representative total house income in the dwelling unit is $59309 -in.representative_income 59318 Representative total house income in the dwelling unit is $59318 -in.representative_income 59319 Representative total house income in the dwelling unit is $59319 -in.representative_income 59320 Representative total house income in the dwelling unit is $59320 -in.representative_income 59340 Representative total house income in the dwelling unit is $59340 -in.representative_income 59353 Representative total house income in the dwelling unit is $59353 -in.representative_income 59362 Representative total house income in the dwelling unit is $59362 -in.representative_income 59364 Representative total house income in the dwelling unit is $59364 -in.representative_income 59366 Representative total house income in the dwelling unit is $59366 -in.representative_income 59372 Representative total house income in the dwelling unit is $59372 -in.representative_income 59374 Representative total house income in the dwelling unit is $59374 -in.representative_income 59385 Representative total house income in the dwelling unit is $59385 -in.representative_income 59397 Representative total house income in the dwelling unit is $59397 -in.representative_income 59412 Representative total house income in the dwelling unit is $59412 -in.representative_income 59415 Representative total house income in the dwelling unit is $59415 -in.representative_income 59426 Representative total house income in the dwelling unit is $59426 -in.representative_income 59430 Representative total house income in the dwelling unit is $59430 -in.representative_income 59437 Representative total house income in the dwelling unit is $59437 -in.representative_income 59447 Representative total house income in the dwelling unit is $59447 -in.representative_income 59459 Representative total house income in the dwelling unit is $59459 -in.representative_income 59469 Representative total house income in the dwelling unit is $59469 -in.representative_income 59480 Representative total house income in the dwelling unit is $59480 -in.representative_income 59484 Representative total house income in the dwelling unit is $59484 -in.representative_income 59498 Representative total house income in the dwelling unit is $59498 -in.representative_income 59514 Representative total house income in the dwelling unit is $59514 -in.representative_income 59533 Representative total house income in the dwelling unit is $59533 -in.representative_income 59534 Representative total house income in the dwelling unit is $59534 -in.representative_income 59568 Representative total house income in the dwelling unit is $59568 -in.representative_income 59577 Representative total house income in the dwelling unit is $59577 -in.representative_income 59585 Representative total house income in the dwelling unit is $59585 -in.representative_income 59599 Representative total house income in the dwelling unit is $59599 -in.representative_income 59618 Representative total house income in the dwelling unit is $59618 -in.representative_income 59625 Representative total house income in the dwelling unit is $59625 -in.representative_income 59642 Representative total house income in the dwelling unit is $59642 -in.representative_income 59659 Representative total house income in the dwelling unit is $59659 -in.representative_income 59662 Representative total house income in the dwelling unit is $59662 -in.representative_income 59679 Representative total house income in the dwelling unit is $59679 -in.representative_income 59680 Representative total house income in the dwelling unit is $59680 -in.representative_income 59683 Representative total house income in the dwelling unit is $59683 -in.representative_income 59690 Representative total house income in the dwelling unit is $59690 -in.representative_income 59700 Representative total house income in the dwelling unit is $59700 -in.representative_income 59720 Representative total house income in the dwelling unit is $59720 -in.representative_income 59721 Representative total house income in the dwelling unit is $59721 -in.representative_income 59740 Representative total house income in the dwelling unit is $59740 -in.representative_income 59743 Representative total house income in the dwelling unit is $59743 -in.representative_income 59750 Representative total house income in the dwelling unit is $59750 -in.representative_income 59791 Representative total house income in the dwelling unit is $59791 -in.representative_income 59796 Representative total house income in the dwelling unit is $59796 -in.representative_income 59801 Representative total house income in the dwelling unit is $59801 -in.representative_income 59824 Representative total house income in the dwelling unit is $59824 -in.representative_income 59837 Representative total house income in the dwelling unit is $59837 -in.representative_income 59845 Representative total house income in the dwelling unit is $59845 -in.representative_income 59858 Representative total house income in the dwelling unit is $59858 -in.representative_income 59888 Representative total house income in the dwelling unit is $59888 -in.representative_income 59898 Representative total house income in the dwelling unit is $59898 -in.representative_income 59902 Representative total house income in the dwelling unit is $59902 -in.representative_income 59928 Representative total house income in the dwelling unit is $59928 -in.representative_income 59934 Representative total house income in the dwelling unit is $59934 -in.representative_income 59966 Representative total house income in the dwelling unit is $59966 -in.representative_income 60003 Representative total house income in the dwelling unit is $60003 -in.representative_income 60006 Representative total house income in the dwelling unit is $60006 -in.representative_income 60007 Representative total house income in the dwelling unit is $60007 -in.representative_income 60017 Representative total house income in the dwelling unit is $60017 -in.representative_income 60023 Representative total house income in the dwelling unit is $60023 -in.representative_income 60030 Representative total house income in the dwelling unit is $60030 -in.representative_income 60058 Representative total house income in the dwelling unit is $60058 -in.representative_income 60074 Representative total house income in the dwelling unit is $60074 -in.representative_income 60085 Representative total house income in the dwelling unit is $60085 -in.representative_income 60093 Representative total house income in the dwelling unit is $60093 -in.representative_income 60104 Representative total house income in the dwelling unit is $60104 -in.representative_income 60112 Representative total house income in the dwelling unit is $60112 -in.representative_income 60113 Representative total house income in the dwelling unit is $60113 -in.representative_income 60133 Representative total house income in the dwelling unit is $60133 -in.representative_income 60159 Representative total house income in the dwelling unit is $60159 -in.representative_income 60177 Representative total house income in the dwelling unit is $60177 -in.representative_income 60182 Representative total house income in the dwelling unit is $60182 -in.representative_income 60184 Representative total house income in the dwelling unit is $60184 -in.representative_income 60197 Representative total house income in the dwelling unit is $60197 -in.representative_income 60205 Representative total house income in the dwelling unit is $60205 -in.representative_income 60218 Representative total house income in the dwelling unit is $60218 -in.representative_income 60221 Representative total house income in the dwelling unit is $60221 -in.representative_income 60225 Representative total house income in the dwelling unit is $60225 -in.representative_income 60237 Representative total house income in the dwelling unit is $60237 -in.representative_income 60290 Representative total house income in the dwelling unit is $60290 -in.representative_income 60306 Representative total house income in the dwelling unit is $60306 -in.representative_income 60312 Representative total house income in the dwelling unit is $60312 -in.representative_income 60323 Representative total house income in the dwelling unit is $60323 -in.representative_income 60326 Representative total house income in the dwelling unit is $60326 -in.representative_income 60328 Representative total house income in the dwelling unit is $60328 -in.representative_income 60340 Representative total house income in the dwelling unit is $60340 -in.representative_income 60345 Representative total house income in the dwelling unit is $60345 -in.representative_income 60350 Representative total house income in the dwelling unit is $60350 -in.representative_income 60366 Representative total house income in the dwelling unit is $60366 -in.representative_income 60387 Representative total house income in the dwelling unit is $60387 -in.representative_income 60392 Representative total house income in the dwelling unit is $60392 -in.representative_income 60398 Representative total house income in the dwelling unit is $60398 -in.representative_income 60407 Representative total house income in the dwelling unit is $60407 -in.representative_income 60429 Representative total house income in the dwelling unit is $60429 -in.representative_income 60435 Representative total house income in the dwelling unit is $60435 -in.representative_income 60443 Representative total house income in the dwelling unit is $60443 -in.representative_income 60465 Representative total house income in the dwelling unit is $60465 -in.representative_income 60477 Representative total house income in the dwelling unit is $60477 -in.representative_income 60482 Representative total house income in the dwelling unit is $60482 -in.representative_income 60484 Representative total house income in the dwelling unit is $60484 -in.representative_income 60506 Representative total house income in the dwelling unit is $60506 -in.representative_income 60508 Representative total house income in the dwelling unit is $60508 -in.representative_income 60535 Representative total house income in the dwelling unit is $60535 -in.representative_income 60543 Representative total house income in the dwelling unit is $60543 -in.representative_income 60547 Representative total house income in the dwelling unit is $60547 -in.representative_income 60581 Representative total house income in the dwelling unit is $60581 -in.representative_income 60609 Representative total house income in the dwelling unit is $60609 -in.representative_income 60615 Representative total house income in the dwelling unit is $60615 -in.representative_income 60616 Representative total house income in the dwelling unit is $60616 -in.representative_income 60619 Representative total house income in the dwelling unit is $60619 -in.representative_income 60640 Representative total house income in the dwelling unit is $60640 -in.representative_income 60649 Representative total house income in the dwelling unit is $60649 -in.representative_income 60650 Representative total house income in the dwelling unit is $60650 -in.representative_income 60669 Representative total house income in the dwelling unit is $60669 -in.representative_income 60679 Representative total house income in the dwelling unit is $60679 -in.representative_income 60680 Representative total house income in the dwelling unit is $60680 -in.representative_income 60682 Representative total house income in the dwelling unit is $60682 -in.representative_income 60687 Representative total house income in the dwelling unit is $60687 -in.representative_income 60701 Representative total house income in the dwelling unit is $60701 -in.representative_income 60710 Representative total house income in the dwelling unit is $60710 -in.representative_income 60723 Representative total house income in the dwelling unit is $60723 -in.representative_income 60740 Representative total house income in the dwelling unit is $60740 -in.representative_income 60745 Representative total house income in the dwelling unit is $60745 -in.representative_income 60751 Representative total house income in the dwelling unit is $60751 -in.representative_income 60752 Representative total house income in the dwelling unit is $60752 -in.representative_income 60758 Representative total house income in the dwelling unit is $60758 -in.representative_income 60760 Representative total house income in the dwelling unit is $60760 -in.representative_income 60779 Representative total house income in the dwelling unit is $60779 -in.representative_income 60786 Representative total house income in the dwelling unit is $60786 -in.representative_income 60789 Representative total house income in the dwelling unit is $60789 -in.representative_income 60791 Representative total house income in the dwelling unit is $60791 -in.representative_income 60811 Representative total house income in the dwelling unit is $60811 -in.representative_income 60830 Representative total house income in the dwelling unit is $60830 -in.representative_income 60831 Representative total house income in the dwelling unit is $60831 -in.representative_income 60841 Representative total house income in the dwelling unit is $60841 -in.representative_income 60843 Representative total house income in the dwelling unit is $60843 -in.representative_income 60845 Representative total house income in the dwelling unit is $60845 -in.representative_income 60850 Representative total house income in the dwelling unit is $60850 -in.representative_income 60852 Representative total house income in the dwelling unit is $60852 -in.representative_income 60856 Representative total house income in the dwelling unit is $60856 -in.representative_income 60861 Representative total house income in the dwelling unit is $60861 -in.representative_income 60864 Representative total house income in the dwelling unit is $60864 -in.representative_income 60876 Representative total house income in the dwelling unit is $60876 -in.representative_income 60885 Representative total house income in the dwelling unit is $60885 -in.representative_income 60888 Representative total house income in the dwelling unit is $60888 -in.representative_income 60892 Representative total house income in the dwelling unit is $60892 -in.representative_income 60908 Representative total house income in the dwelling unit is $60908 -in.representative_income 60912 Representative total house income in the dwelling unit is $60912 -in.representative_income 60917 Representative total house income in the dwelling unit is $60917 -in.representative_income 60918 Representative total house income in the dwelling unit is $60918 -in.representative_income 60928 Representative total house income in the dwelling unit is $60928 -in.representative_income 60939 Representative total house income in the dwelling unit is $60939 -in.representative_income 60956 Representative total house income in the dwelling unit is $60956 -in.representative_income 60959 Representative total house income in the dwelling unit is $60959 -in.representative_income 60972 Representative total house income in the dwelling unit is $60972 -in.representative_income 60979 Representative total house income in the dwelling unit is $60979 -in.representative_income 61013 Representative total house income in the dwelling unit is $61013 -in.representative_income 61014 Representative total house income in the dwelling unit is $61014 -in.representative_income 61046 Representative total house income in the dwelling unit is $61046 -in.representative_income 61062 Representative total house income in the dwelling unit is $61062 -in.representative_income 61063 Representative total house income in the dwelling unit is $61063 -in.representative_income 61068 Representative total house income in the dwelling unit is $61068 -in.representative_income 61079 Representative total house income in the dwelling unit is $61079 -in.representative_income 61083 Representative total house income in the dwelling unit is $61083 -in.representative_income 61100 Representative total house income in the dwelling unit is $61100 -in.representative_income 61114 Representative total house income in the dwelling unit is $61114 -in.representative_income 61122 Representative total house income in the dwelling unit is $61122 -in.representative_income 61154 Representative total house income in the dwelling unit is $61154 -in.representative_income 61165 Representative total house income in the dwelling unit is $61165 -in.representative_income 61167 Representative total house income in the dwelling unit is $61167 -in.representative_income 61168 Representative total house income in the dwelling unit is $61168 -in.representative_income 61187 Representative total house income in the dwelling unit is $61187 -in.representative_income 61188 Representative total house income in the dwelling unit is $61188 -in.representative_income 61196 Representative total house income in the dwelling unit is $61196 -in.representative_income 61199 Representative total house income in the dwelling unit is $61199 -in.representative_income 61208 Representative total house income in the dwelling unit is $61208 -in.representative_income 61215 Representative total house income in the dwelling unit is $61215 -in.representative_income 61225 Representative total house income in the dwelling unit is $61225 -in.representative_income 61230 Representative total house income in the dwelling unit is $61230 -in.representative_income 61235 Representative total house income in the dwelling unit is $61235 -in.representative_income 61248 Representative total house income in the dwelling unit is $61248 -in.representative_income 61251 Representative total house income in the dwelling unit is $61251 -in.representative_income 61255 Representative total house income in the dwelling unit is $61255 -in.representative_income 61262 Representative total house income in the dwelling unit is $61262 -in.representative_income 61265 Representative total house income in the dwelling unit is $61265 -in.representative_income 61268 Representative total house income in the dwelling unit is $61268 -in.representative_income 61273 Representative total house income in the dwelling unit is $61273 -in.representative_income 61283 Representative total house income in the dwelling unit is $61283 -in.representative_income 61294 Representative total house income in the dwelling unit is $61294 -in.representative_income 61299 Representative total house income in the dwelling unit is $61299 -in.representative_income 61305 Representative total house income in the dwelling unit is $61305 -in.representative_income 61316 Representative total house income in the dwelling unit is $61316 -in.representative_income 61326 Representative total house income in the dwelling unit is $61326 -in.representative_income 61336 Representative total house income in the dwelling unit is $61336 -in.representative_income 61340 Representative total house income in the dwelling unit is $61340 -in.representative_income 61342 Representative total house income in the dwelling unit is $61342 -in.representative_income 61348 Representative total house income in the dwelling unit is $61348 -in.representative_income 61349 Representative total house income in the dwelling unit is $61349 -in.representative_income 61351 Representative total house income in the dwelling unit is $61351 -in.representative_income 61370 Representative total house income in the dwelling unit is $61370 -in.representative_income 61371 Representative total house income in the dwelling unit is $61371 -in.representative_income 61376 Representative total house income in the dwelling unit is $61376 -in.representative_income 61378 Representative total house income in the dwelling unit is $61378 -in.representative_income 61382 Representative total house income in the dwelling unit is $61382 -in.representative_income 61390 Representative total house income in the dwelling unit is $61390 -in.representative_income 61401 Representative total house income in the dwelling unit is $61401 -in.representative_income 61410 Representative total house income in the dwelling unit is $61410 -in.representative_income 61414 Representative total house income in the dwelling unit is $61414 -in.representative_income 61415 Representative total house income in the dwelling unit is $61415 -in.representative_income 61417 Representative total house income in the dwelling unit is $61417 -in.representative_income 61427 Representative total house income in the dwelling unit is $61427 -in.representative_income 61436 Representative total house income in the dwelling unit is $61436 -in.representative_income 61445 Representative total house income in the dwelling unit is $61445 -in.representative_income 61453 Representative total house income in the dwelling unit is $61453 -in.representative_income 61455 Representative total house income in the dwelling unit is $61455 -in.representative_income 61458 Representative total house income in the dwelling unit is $61458 -in.representative_income 61466 Representative total house income in the dwelling unit is $61466 -in.representative_income 61468 Representative total house income in the dwelling unit is $61468 -in.representative_income 61475 Representative total house income in the dwelling unit is $61475 -in.representative_income 61479 Representative total house income in the dwelling unit is $61479 -in.representative_income 61483 Representative total house income in the dwelling unit is $61483 -in.representative_income 61494 Representative total house income in the dwelling unit is $61494 -in.representative_income 61508 Representative total house income in the dwelling unit is $61508 -in.representative_income 61518 Representative total house income in the dwelling unit is $61518 -in.representative_income 61527 Representative total house income in the dwelling unit is $61527 -in.representative_income 61530 Representative total house income in the dwelling unit is $61530 -in.representative_income 61536 Representative total house income in the dwelling unit is $61536 -in.representative_income 61557 Representative total house income in the dwelling unit is $61557 -in.representative_income 61563 Representative total house income in the dwelling unit is $61563 -in.representative_income 61578 Representative total house income in the dwelling unit is $61578 -in.representative_income 61587 Representative total house income in the dwelling unit is $61587 -in.representative_income 61588 Representative total house income in the dwelling unit is $61588 -in.representative_income 61589 Representative total house income in the dwelling unit is $61589 -in.representative_income 61590 Representative total house income in the dwelling unit is $61590 -in.representative_income 61616 Representative total house income in the dwelling unit is $61616 -in.representative_income 61619 Representative total house income in the dwelling unit is $61619 -in.representative_income 61630 Representative total house income in the dwelling unit is $61630 -in.representative_income 61639 Representative total house income in the dwelling unit is $61639 -in.representative_income 61641 Representative total house income in the dwelling unit is $61641 -in.representative_income 61659 Representative total house income in the dwelling unit is $61659 -in.representative_income 61669 Representative total house income in the dwelling unit is $61669 -in.representative_income 61680 Representative total house income in the dwelling unit is $61680 -in.representative_income 61681 Representative total house income in the dwelling unit is $61681 -in.representative_income 61695 Representative total house income in the dwelling unit is $61695 -in.representative_income 61707 Representative total house income in the dwelling unit is $61707 -in.representative_income 61710 Representative total house income in the dwelling unit is $61710 -in.representative_income 61716 Representative total house income in the dwelling unit is $61716 -in.representative_income 61720 Representative total house income in the dwelling unit is $61720 -in.representative_income 61723 Representative total house income in the dwelling unit is $61723 -in.representative_income 61726 Representative total house income in the dwelling unit is $61726 -in.representative_income 61729 Representative total house income in the dwelling unit is $61729 -in.representative_income 61732 Representative total house income in the dwelling unit is $61732 -in.representative_income 61747 Representative total house income in the dwelling unit is $61747 -in.representative_income 61749 Representative total house income in the dwelling unit is $61749 -in.representative_income 61756 Representative total house income in the dwelling unit is $61756 -in.representative_income 61781 Representative total house income in the dwelling unit is $61781 -in.representative_income 61784 Representative total house income in the dwelling unit is $61784 -in.representative_income 61796 Representative total house income in the dwelling unit is $61796 -in.representative_income 61800 Representative total house income in the dwelling unit is $61800 -in.representative_income 61803 Representative total house income in the dwelling unit is $61803 -in.representative_income 61805 Representative total house income in the dwelling unit is $61805 -in.representative_income 61809 Representative total house income in the dwelling unit is $61809 -in.representative_income 61811 Representative total house income in the dwelling unit is $61811 -in.representative_income 61814 Representative total house income in the dwelling unit is $61814 -in.representative_income 61815 Representative total house income in the dwelling unit is $61815 -in.representative_income 61821 Representative total house income in the dwelling unit is $61821 -in.representative_income 61831 Representative total house income in the dwelling unit is $61831 -in.representative_income 61841 Representative total house income in the dwelling unit is $61841 -in.representative_income 61852 Representative total house income in the dwelling unit is $61852 -in.representative_income 61861 Representative total house income in the dwelling unit is $61861 -in.representative_income 61864 Representative total house income in the dwelling unit is $61864 -in.representative_income 61876 Representative total house income in the dwelling unit is $61876 -in.representative_income 61881 Representative total house income in the dwelling unit is $61881 -in.representative_income 61883 Representative total house income in the dwelling unit is $61883 -in.representative_income 61884 Representative total house income in the dwelling unit is $61884 -in.representative_income 61887 Representative total house income in the dwelling unit is $61887 -in.representative_income 61889 Representative total house income in the dwelling unit is $61889 -in.representative_income 61895 Representative total house income in the dwelling unit is $61895 -in.representative_income 61905 Representative total house income in the dwelling unit is $61905 -in.representative_income 61907 Representative total house income in the dwelling unit is $61907 -in.representative_income 61911 Representative total house income in the dwelling unit is $61911 -in.representative_income 61918 Representative total house income in the dwelling unit is $61918 -in.representative_income 61922 Representative total house income in the dwelling unit is $61922 -in.representative_income 61923 Representative total house income in the dwelling unit is $61923 -in.representative_income 61927 Representative total house income in the dwelling unit is $61927 -in.representative_income 61929 Representative total house income in the dwelling unit is $61929 -in.representative_income 61935 Representative total house income in the dwelling unit is $61935 -in.representative_income 61937 Representative total house income in the dwelling unit is $61937 -in.representative_income 61938 Representative total house income in the dwelling unit is $61938 -in.representative_income 61939 Representative total house income in the dwelling unit is $61939 -in.representative_income 61942 Representative total house income in the dwelling unit is $61942 -in.representative_income 61953 Representative total house income in the dwelling unit is $61953 -in.representative_income 61959 Representative total house income in the dwelling unit is $61959 -in.representative_income 61960 Representative total house income in the dwelling unit is $61960 -in.representative_income 61962 Representative total house income in the dwelling unit is $61962 -in.representative_income 61971 Representative total house income in the dwelling unit is $61971 -in.representative_income 61990 Representative total house income in the dwelling unit is $61990 -in.representative_income 61993 Representative total house income in the dwelling unit is $61993 -in.representative_income 62011 Representative total house income in the dwelling unit is $62011 -in.representative_income 62019 Representative total house income in the dwelling unit is $62019 -in.representative_income 62023 Representative total house income in the dwelling unit is $62023 -in.representative_income 62024 Representative total house income in the dwelling unit is $62024 -in.representative_income 62033 Representative total house income in the dwelling unit is $62033 -in.representative_income 62040 Representative total house income in the dwelling unit is $62040 -in.representative_income 62042 Representative total house income in the dwelling unit is $62042 -in.representative_income 62043 Representative total house income in the dwelling unit is $62043 -in.representative_income 62045 Representative total house income in the dwelling unit is $62045 -in.representative_income 62052 Representative total house income in the dwelling unit is $62052 -in.representative_income 62056 Representative total house income in the dwelling unit is $62056 -in.representative_income 62062 Representative total house income in the dwelling unit is $62062 -in.representative_income 62063 Representative total house income in the dwelling unit is $62063 -in.representative_income 62064 Representative total house income in the dwelling unit is $62064 -in.representative_income 62066 Representative total house income in the dwelling unit is $62066 -in.representative_income 62073 Representative total house income in the dwelling unit is $62073 -in.representative_income 62082 Representative total house income in the dwelling unit is $62082 -in.representative_income 62084 Representative total house income in the dwelling unit is $62084 -in.representative_income 62094 Representative total house income in the dwelling unit is $62094 -in.representative_income 62095 Representative total house income in the dwelling unit is $62095 -in.representative_income 62099 Representative total house income in the dwelling unit is $62099 -in.representative_income 62104 Representative total house income in the dwelling unit is $62104 -in.representative_income 62109 Representative total house income in the dwelling unit is $62109 -in.representative_income 62116 Representative total house income in the dwelling unit is $62116 -in.representative_income 62123 Representative total house income in the dwelling unit is $62123 -in.representative_income 62124 Representative total house income in the dwelling unit is $62124 -in.representative_income 62127 Representative total house income in the dwelling unit is $62127 -in.representative_income 62134 Representative total house income in the dwelling unit is $62134 -in.representative_income 62145 Representative total house income in the dwelling unit is $62145 -in.representative_income 62148 Representative total house income in the dwelling unit is $62148 -in.representative_income 62153 Representative total house income in the dwelling unit is $62153 -in.representative_income 62156 Representative total house income in the dwelling unit is $62156 -in.representative_income 62160 Representative total house income in the dwelling unit is $62160 -in.representative_income 62169 Representative total house income in the dwelling unit is $62169 -in.representative_income 62171 Representative total house income in the dwelling unit is $62171 -in.representative_income 62186 Representative total house income in the dwelling unit is $62186 -in.representative_income 62188 Representative total house income in the dwelling unit is $62188 -in.representative_income 62195 Representative total house income in the dwelling unit is $62195 -in.representative_income 62197 Representative total house income in the dwelling unit is $62197 -in.representative_income 62200 Representative total house income in the dwelling unit is $62200 -in.representative_income 62214 Representative total house income in the dwelling unit is $62214 -in.representative_income 62215 Representative total house income in the dwelling unit is $62215 -in.representative_income 62221 Representative total house income in the dwelling unit is $62221 -in.representative_income 62225 Representative total house income in the dwelling unit is $62225 -in.representative_income 62227 Representative total house income in the dwelling unit is $62227 -in.representative_income 62233 Representative total house income in the dwelling unit is $62233 -in.representative_income 62235 Representative total house income in the dwelling unit is $62235 -in.representative_income 62245 Representative total house income in the dwelling unit is $62245 -in.representative_income 62246 Representative total house income in the dwelling unit is $62246 -in.representative_income 62248 Representative total house income in the dwelling unit is $62248 -in.representative_income 62254 Representative total house income in the dwelling unit is $62254 -in.representative_income 62257 Representative total house income in the dwelling unit is $62257 -in.representative_income 62260 Representative total house income in the dwelling unit is $62260 -in.representative_income 62264 Representative total house income in the dwelling unit is $62264 -in.representative_income 62269 Representative total house income in the dwelling unit is $62269 -in.representative_income 62270 Representative total house income in the dwelling unit is $62270 -in.representative_income 62275 Representative total house income in the dwelling unit is $62275 -in.representative_income 62285 Representative total house income in the dwelling unit is $62285 -in.representative_income 62292 Representative total house income in the dwelling unit is $62292 -in.representative_income 62296 Representative total house income in the dwelling unit is $62296 -in.representative_income 62299 Representative total house income in the dwelling unit is $62299 -in.representative_income 62300 Representative total house income in the dwelling unit is $62300 -in.representative_income 62303 Representative total house income in the dwelling unit is $62303 -in.representative_income 62305 Representative total house income in the dwelling unit is $62305 -in.representative_income 62311 Representative total house income in the dwelling unit is $62311 -in.representative_income 62312 Representative total house income in the dwelling unit is $62312 -in.representative_income 62313 Representative total house income in the dwelling unit is $62313 -in.representative_income 62318 Representative total house income in the dwelling unit is $62318 -in.representative_income 62321 Representative total house income in the dwelling unit is $62321 -in.representative_income 62322 Representative total house income in the dwelling unit is $62322 -in.representative_income 62326 Representative total house income in the dwelling unit is $62326 -in.representative_income 62328 Representative total house income in the dwelling unit is $62328 -in.representative_income 62336 Representative total house income in the dwelling unit is $62336 -in.representative_income 62338 Representative total house income in the dwelling unit is $62338 -in.representative_income 62343 Representative total house income in the dwelling unit is $62343 -in.representative_income 62344 Representative total house income in the dwelling unit is $62344 -in.representative_income 62368 Representative total house income in the dwelling unit is $62368 -in.representative_income 62375 Representative total house income in the dwelling unit is $62375 -in.representative_income 62376 Representative total house income in the dwelling unit is $62376 -in.representative_income 62380 Representative total house income in the dwelling unit is $62380 -in.representative_income 62382 Representative total house income in the dwelling unit is $62382 -in.representative_income 62397 Representative total house income in the dwelling unit is $62397 -in.representative_income 62403 Representative total house income in the dwelling unit is $62403 -in.representative_income 62407 Representative total house income in the dwelling unit is $62407 -in.representative_income 62417 Representative total house income in the dwelling unit is $62417 -in.representative_income 62427 Representative total house income in the dwelling unit is $62427 -in.representative_income 62433 Representative total house income in the dwelling unit is $62433 -in.representative_income 62434 Representative total house income in the dwelling unit is $62434 -in.representative_income 62437 Representative total house income in the dwelling unit is $62437 -in.representative_income 62443 Representative total house income in the dwelling unit is $62443 -in.representative_income 62451 Representative total house income in the dwelling unit is $62451 -in.representative_income 62454 Representative total house income in the dwelling unit is $62454 -in.representative_income 62463 Representative total house income in the dwelling unit is $62463 -in.representative_income 62464 Representative total house income in the dwelling unit is $62464 -in.representative_income 62474 Representative total house income in the dwelling unit is $62474 -in.representative_income 62486 Representative total house income in the dwelling unit is $62486 -in.representative_income 62488 Representative total house income in the dwelling unit is $62488 -in.representative_income 62494 Representative total house income in the dwelling unit is $62494 -in.representative_income 62498 Representative total house income in the dwelling unit is $62498 -in.representative_income 62505 Representative total house income in the dwelling unit is $62505 -in.representative_income 62506 Representative total house income in the dwelling unit is $62506 -in.representative_income 62516 Representative total house income in the dwelling unit is $62516 -in.representative_income 62520 Representative total house income in the dwelling unit is $62520 -in.representative_income 62528 Representative total house income in the dwelling unit is $62528 -in.representative_income 62529 Representative total house income in the dwelling unit is $62529 -in.representative_income 62538 Representative total house income in the dwelling unit is $62538 -in.representative_income 62558 Representative total house income in the dwelling unit is $62558 -in.representative_income 62559 Representative total house income in the dwelling unit is $62559 -in.representative_income 62569 Representative total house income in the dwelling unit is $62569 -in.representative_income 62573 Representative total house income in the dwelling unit is $62573 -in.representative_income 62578 Representative total house income in the dwelling unit is $62578 -in.representative_income 62582 Representative total house income in the dwelling unit is $62582 -in.representative_income 62591 Representative total house income in the dwelling unit is $62591 -in.representative_income 62598 Representative total house income in the dwelling unit is $62598 -in.representative_income 62602 Representative total house income in the dwelling unit is $62602 -in.representative_income 62603 Representative total house income in the dwelling unit is $62603 -in.representative_income 62609 Representative total house income in the dwelling unit is $62609 -in.representative_income 62613 Representative total house income in the dwelling unit is $62613 -in.representative_income 62623 Representative total house income in the dwelling unit is $62623 -in.representative_income 62629 Representative total house income in the dwelling unit is $62629 -in.representative_income 62635 Representative total house income in the dwelling unit is $62635 -in.representative_income 62640 Representative total house income in the dwelling unit is $62640 -in.representative_income 62643 Representative total house income in the dwelling unit is $62643 -in.representative_income 62647 Representative total house income in the dwelling unit is $62647 -in.representative_income 62648 Representative total house income in the dwelling unit is $62648 -in.representative_income 62654 Representative total house income in the dwelling unit is $62654 -in.representative_income 62657 Representative total house income in the dwelling unit is $62657 -in.representative_income 62661 Representative total house income in the dwelling unit is $62661 -in.representative_income 62667 Representative total house income in the dwelling unit is $62667 -in.representative_income 62668 Representative total house income in the dwelling unit is $62668 -in.representative_income 62669 Representative total house income in the dwelling unit is $62669 -in.representative_income 62678 Representative total house income in the dwelling unit is $62678 -in.representative_income 62679 Representative total house income in the dwelling unit is $62679 -in.representative_income 62689 Representative total house income in the dwelling unit is $62689 -in.representative_income 62691 Representative total house income in the dwelling unit is $62691 -in.representative_income 62695 Representative total house income in the dwelling unit is $62695 -in.representative_income 62700 Representative total house income in the dwelling unit is $62700 -in.representative_income 62707 Representative total house income in the dwelling unit is $62707 -in.representative_income 62713 Representative total house income in the dwelling unit is $62713 -in.representative_income 62721 Representative total house income in the dwelling unit is $62721 -in.representative_income 62723 Representative total house income in the dwelling unit is $62723 -in.representative_income 62730 Representative total house income in the dwelling unit is $62730 -in.representative_income 62732 Representative total house income in the dwelling unit is $62732 -in.representative_income 62733 Representative total house income in the dwelling unit is $62733 -in.representative_income 62743 Representative total house income in the dwelling unit is $62743 -in.representative_income 62744 Representative total house income in the dwelling unit is $62744 -in.representative_income 62749 Representative total house income in the dwelling unit is $62749 -in.representative_income 62750 Representative total house income in the dwelling unit is $62750 -in.representative_income 62753 Representative total house income in the dwelling unit is $62753 -in.representative_income 62754 Representative total house income in the dwelling unit is $62754 -in.representative_income 62760 Representative total house income in the dwelling unit is $62760 -in.representative_income 62762 Representative total house income in the dwelling unit is $62762 -in.representative_income 62765 Representative total house income in the dwelling unit is $62765 -in.representative_income 62774 Representative total house income in the dwelling unit is $62774 -in.representative_income 62775 Representative total house income in the dwelling unit is $62775 -in.representative_income 62781 Representative total house income in the dwelling unit is $62781 -in.representative_income 62791 Representative total house income in the dwelling unit is $62791 -in.representative_income 62797 Representative total house income in the dwelling unit is $62797 -in.representative_income 62807 Representative total house income in the dwelling unit is $62807 -in.representative_income 62815 Representative total house income in the dwelling unit is $62815 -in.representative_income 62818 Representative total house income in the dwelling unit is $62818 -in.representative_income 62829 Representative total house income in the dwelling unit is $62829 -in.representative_income 62831 Representative total house income in the dwelling unit is $62831 -in.representative_income 62839 Representative total house income in the dwelling unit is $62839 -in.representative_income 62844 Representative total house income in the dwelling unit is $62844 -in.representative_income 62850 Representative total house income in the dwelling unit is $62850 -in.representative_income 62851 Representative total house income in the dwelling unit is $62851 -in.representative_income 62854 Representative total house income in the dwelling unit is $62854 -in.representative_income 62857 Representative total house income in the dwelling unit is $62857 -in.representative_income 62861 Representative total house income in the dwelling unit is $62861 -in.representative_income 62867 Representative total house income in the dwelling unit is $62867 -in.representative_income 62871 Representative total house income in the dwelling unit is $62871 -in.representative_income 62882 Representative total house income in the dwelling unit is $62882 -in.representative_income 62883 Representative total house income in the dwelling unit is $62883 -in.representative_income 62887 Representative total house income in the dwelling unit is $62887 -in.representative_income 62893 Representative total house income in the dwelling unit is $62893 -in.representative_income 62902 Representative total house income in the dwelling unit is $62902 -in.representative_income 62904 Representative total house income in the dwelling unit is $62904 -in.representative_income 62915 Representative total house income in the dwelling unit is $62915 -in.representative_income 62918 Representative total house income in the dwelling unit is $62918 -in.representative_income 62926 Representative total house income in the dwelling unit is $62926 -in.representative_income 62929 Representative total house income in the dwelling unit is $62929 -in.representative_income 62932 Representative total house income in the dwelling unit is $62932 -in.representative_income 62937 Representative total house income in the dwelling unit is $62937 -in.representative_income 62940 Representative total house income in the dwelling unit is $62940 -in.representative_income 62942 Representative total house income in the dwelling unit is $62942 -in.representative_income 62948 Representative total house income in the dwelling unit is $62948 -in.representative_income 62950 Representative total house income in the dwelling unit is $62950 -in.representative_income 62958 Representative total house income in the dwelling unit is $62958 -in.representative_income 62960 Representative total house income in the dwelling unit is $62960 -in.representative_income 62962 Representative total house income in the dwelling unit is $62962 -in.representative_income 62969 Representative total house income in the dwelling unit is $62969 -in.representative_income 62977 Representative total house income in the dwelling unit is $62977 -in.representative_income 62981 Representative total house income in the dwelling unit is $62981 -in.representative_income 62983 Representative total house income in the dwelling unit is $62983 -in.representative_income 62988 Representative total house income in the dwelling unit is $62988 -in.representative_income 62990 Representative total house income in the dwelling unit is $62990 -in.representative_income 62992 Representative total house income in the dwelling unit is $62992 -in.representative_income 62996 Representative total house income in the dwelling unit is $62996 -in.representative_income 63012 Representative total house income in the dwelling unit is $63012 -in.representative_income 63022 Representative total house income in the dwelling unit is $63022 -in.representative_income 63029 Representative total house income in the dwelling unit is $63029 -in.representative_income 63032 Representative total house income in the dwelling unit is $63032 -in.representative_income 63033 Representative total house income in the dwelling unit is $63033 -in.representative_income 63035 Representative total house income in the dwelling unit is $63035 -in.representative_income 63053 Representative total house income in the dwelling unit is $63053 -in.representative_income 63055 Representative total house income in the dwelling unit is $63055 -in.representative_income 63066 Representative total house income in the dwelling unit is $63066 -in.representative_income 63067 Representative total house income in the dwelling unit is $63067 -in.representative_income 63073 Representative total house income in the dwelling unit is $63073 -in.representative_income 63084 Representative total house income in the dwelling unit is $63084 -in.representative_income 63086 Representative total house income in the dwelling unit is $63086 -in.representative_income 63089 Representative total house income in the dwelling unit is $63089 -in.representative_income 63090 Representative total house income in the dwelling unit is $63090 -in.representative_income 63093 Representative total house income in the dwelling unit is $63093 -in.representative_income 63094 Representative total house income in the dwelling unit is $63094 -in.representative_income 63097 Representative total house income in the dwelling unit is $63097 -in.representative_income 63099 Representative total house income in the dwelling unit is $63099 -in.representative_income 63100 Representative total house income in the dwelling unit is $63100 -in.representative_income 63101 Representative total house income in the dwelling unit is $63101 -in.representative_income 63102 Representative total house income in the dwelling unit is $63102 -in.representative_income 63111 Representative total house income in the dwelling unit is $63111 -in.representative_income 63112 Representative total house income in the dwelling unit is $63112 -in.representative_income 63115 Representative total house income in the dwelling unit is $63115 -in.representative_income 63118 Representative total house income in the dwelling unit is $63118 -in.representative_income 63122 Representative total house income in the dwelling unit is $63122 -in.representative_income 63125 Representative total house income in the dwelling unit is $63125 -in.representative_income 63134 Representative total house income in the dwelling unit is $63134 -in.representative_income 63141 Representative total house income in the dwelling unit is $63141 -in.representative_income 63143 Representative total house income in the dwelling unit is $63143 -in.representative_income 63144 Representative total house income in the dwelling unit is $63144 -in.representative_income 63150 Representative total house income in the dwelling unit is $63150 -in.representative_income 63151 Representative total house income in the dwelling unit is $63151 -in.representative_income 63171 Representative total house income in the dwelling unit is $63171 -in.representative_income 63173 Representative total house income in the dwelling unit is $63173 -in.representative_income 63177 Representative total house income in the dwelling unit is $63177 -in.representative_income 63178 Representative total house income in the dwelling unit is $63178 -in.representative_income 63181 Representative total house income in the dwelling unit is $63181 -in.representative_income 63183 Representative total house income in the dwelling unit is $63183 -in.representative_income 63185 Representative total house income in the dwelling unit is $63185 -in.representative_income 63186 Representative total house income in the dwelling unit is $63186 -in.representative_income 63192 Representative total house income in the dwelling unit is $63192 -in.representative_income 63197 Representative total house income in the dwelling unit is $63197 -in.representative_income 63201 Representative total house income in the dwelling unit is $63201 -in.representative_income 63208 Representative total house income in the dwelling unit is $63208 -in.representative_income 63217 Representative total house income in the dwelling unit is $63217 -in.representative_income 63224 Representative total house income in the dwelling unit is $63224 -in.representative_income 63226 Representative total house income in the dwelling unit is $63226 -in.representative_income 63227 Representative total house income in the dwelling unit is $63227 -in.representative_income 63228 Representative total house income in the dwelling unit is $63228 -in.representative_income 63229 Representative total house income in the dwelling unit is $63229 -in.representative_income 63234 Representative total house income in the dwelling unit is $63234 -in.representative_income 63235 Representative total house income in the dwelling unit is $63235 -in.representative_income 63240 Representative total house income in the dwelling unit is $63240 -in.representative_income 63255 Representative total house income in the dwelling unit is $63255 -in.representative_income 63258 Representative total house income in the dwelling unit is $63258 -in.representative_income 63265 Representative total house income in the dwelling unit is $63265 -in.representative_income 63269 Representative total house income in the dwelling unit is $63269 -in.representative_income 63275 Representative total house income in the dwelling unit is $63275 -in.representative_income 63276 Representative total house income in the dwelling unit is $63276 -in.representative_income 63280 Representative total house income in the dwelling unit is $63280 -in.representative_income 63287 Representative total house income in the dwelling unit is $63287 -in.representative_income 63294 Representative total house income in the dwelling unit is $63294 -in.representative_income 63296 Representative total house income in the dwelling unit is $63296 -in.representative_income 63297 Representative total house income in the dwelling unit is $63297 -in.representative_income 63302 Representative total house income in the dwelling unit is $63302 -in.representative_income 63303 Representative total house income in the dwelling unit is $63303 -in.representative_income 63305 Representative total house income in the dwelling unit is $63305 -in.representative_income 63308 Representative total house income in the dwelling unit is $63308 -in.representative_income 63310 Representative total house income in the dwelling unit is $63310 -in.representative_income 63316 Representative total house income in the dwelling unit is $63316 -in.representative_income 63319 Representative total house income in the dwelling unit is $63319 -in.representative_income 63321 Representative total house income in the dwelling unit is $63321 -in.representative_income 63323 Representative total house income in the dwelling unit is $63323 -in.representative_income 63329 Representative total house income in the dwelling unit is $63329 -in.representative_income 63331 Representative total house income in the dwelling unit is $63331 -in.representative_income 63334 Representative total house income in the dwelling unit is $63334 -in.representative_income 63336 Representative total house income in the dwelling unit is $63336 -in.representative_income 63337 Representative total house income in the dwelling unit is $63337 -in.representative_income 63338 Representative total house income in the dwelling unit is $63338 -in.representative_income 63340 Representative total house income in the dwelling unit is $63340 -in.representative_income 63341 Representative total house income in the dwelling unit is $63341 -in.representative_income 63344 Representative total house income in the dwelling unit is $63344 -in.representative_income 63346 Representative total house income in the dwelling unit is $63346 -in.representative_income 63348 Representative total house income in the dwelling unit is $63348 -in.representative_income 63350 Representative total house income in the dwelling unit is $63350 -in.representative_income 63355 Representative total house income in the dwelling unit is $63355 -in.representative_income 63357 Representative total house income in the dwelling unit is $63357 -in.representative_income 63361 Representative total house income in the dwelling unit is $63361 -in.representative_income 63362 Representative total house income in the dwelling unit is $63362 -in.representative_income 63365 Representative total house income in the dwelling unit is $63365 -in.representative_income 63370 Representative total house income in the dwelling unit is $63370 -in.representative_income 63372 Representative total house income in the dwelling unit is $63372 -in.representative_income 63376 Representative total house income in the dwelling unit is $63376 -in.representative_income 63378 Representative total house income in the dwelling unit is $63378 -in.representative_income 63381 Representative total house income in the dwelling unit is $63381 -in.representative_income 63382 Representative total house income in the dwelling unit is $63382 -in.representative_income 63387 Representative total house income in the dwelling unit is $63387 -in.representative_income 63395 Representative total house income in the dwelling unit is $63395 -in.representative_income 63403 Representative total house income in the dwelling unit is $63403 -in.representative_income 63407 Representative total house income in the dwelling unit is $63407 -in.representative_income 63409 Representative total house income in the dwelling unit is $63409 -in.representative_income 63413 Representative total house income in the dwelling unit is $63413 -in.representative_income 63414 Representative total house income in the dwelling unit is $63414 -in.representative_income 63417 Representative total house income in the dwelling unit is $63417 -in.representative_income 63420 Representative total house income in the dwelling unit is $63420 -in.representative_income 63424 Representative total house income in the dwelling unit is $63424 -in.representative_income 63433 Representative total house income in the dwelling unit is $63433 -in.representative_income 63434 Representative total house income in the dwelling unit is $63434 -in.representative_income 63435 Representative total house income in the dwelling unit is $63435 -in.representative_income 63437 Representative total house income in the dwelling unit is $63437 -in.representative_income 63439 Representative total house income in the dwelling unit is $63439 -in.representative_income 63441 Representative total house income in the dwelling unit is $63441 -in.representative_income 63445 Representative total house income in the dwelling unit is $63445 -in.representative_income 63462 Representative total house income in the dwelling unit is $63462 -in.representative_income 63468 Representative total house income in the dwelling unit is $63468 -in.representative_income 63471 Representative total house income in the dwelling unit is $63471 -in.representative_income 63473 Representative total house income in the dwelling unit is $63473 -in.representative_income 63476 Representative total house income in the dwelling unit is $63476 -in.representative_income 63477 Representative total house income in the dwelling unit is $63477 -in.representative_income 63478 Representative total house income in the dwelling unit is $63478 -in.representative_income 63480 Representative total house income in the dwelling unit is $63480 -in.representative_income 63484 Representative total house income in the dwelling unit is $63484 -in.representative_income 63488 Representative total house income in the dwelling unit is $63488 -in.representative_income 63491 Representative total house income in the dwelling unit is $63491 -in.representative_income 63498 Representative total house income in the dwelling unit is $63498 -in.representative_income 63505 Representative total house income in the dwelling unit is $63505 -in.representative_income 63507 Representative total house income in the dwelling unit is $63507 -in.representative_income 63510 Representative total house income in the dwelling unit is $63510 -in.representative_income 63512 Representative total house income in the dwelling unit is $63512 -in.representative_income 63516 Representative total house income in the dwelling unit is $63516 -in.representative_income 63518 Representative total house income in the dwelling unit is $63518 -in.representative_income 63519 Representative total house income in the dwelling unit is $63519 -in.representative_income 63526 Representative total house income in the dwelling unit is $63526 -in.representative_income 63531 Representative total house income in the dwelling unit is $63531 -in.representative_income 63532 Representative total house income in the dwelling unit is $63532 -in.representative_income 63537 Representative total house income in the dwelling unit is $63537 -in.representative_income 63538 Representative total house income in the dwelling unit is $63538 -in.representative_income 63540 Representative total house income in the dwelling unit is $63540 -in.representative_income 63548 Representative total house income in the dwelling unit is $63548 -in.representative_income 63549 Representative total house income in the dwelling unit is $63549 -in.representative_income 63550 Representative total house income in the dwelling unit is $63550 -in.representative_income 63553 Representative total house income in the dwelling unit is $63553 -in.representative_income 63558 Representative total house income in the dwelling unit is $63558 -in.representative_income 63561 Representative total house income in the dwelling unit is $63561 -in.representative_income 63562 Representative total house income in the dwelling unit is $63562 -in.representative_income 63568 Representative total house income in the dwelling unit is $63568 -in.representative_income 63571 Representative total house income in the dwelling unit is $63571 -in.representative_income 63575 Representative total house income in the dwelling unit is $63575 -in.representative_income 63579 Representative total house income in the dwelling unit is $63579 -in.representative_income 63583 Representative total house income in the dwelling unit is $63583 -in.representative_income 63588 Representative total house income in the dwelling unit is $63588 -in.representative_income 63589 Representative total house income in the dwelling unit is $63589 -in.representative_income 63592 Representative total house income in the dwelling unit is $63592 -in.representative_income 63593 Representative total house income in the dwelling unit is $63593 -in.representative_income 63602 Representative total house income in the dwelling unit is $63602 -in.representative_income 63603 Representative total house income in the dwelling unit is $63603 -in.representative_income 63613 Representative total house income in the dwelling unit is $63613 -in.representative_income 63614 Representative total house income in the dwelling unit is $63614 -in.representative_income 63616 Representative total house income in the dwelling unit is $63616 -in.representative_income 63619 Representative total house income in the dwelling unit is $63619 -in.representative_income 63622 Representative total house income in the dwelling unit is $63622 -in.representative_income 63624 Representative total house income in the dwelling unit is $63624 -in.representative_income 63634 Representative total house income in the dwelling unit is $63634 -in.representative_income 63635 Representative total house income in the dwelling unit is $63635 -in.representative_income 63639 Representative total house income in the dwelling unit is $63639 -in.representative_income 63641 Representative total house income in the dwelling unit is $63641 -in.representative_income 63643 Representative total house income in the dwelling unit is $63643 -in.representative_income 63645 Representative total house income in the dwelling unit is $63645 -in.representative_income 63649 Representative total house income in the dwelling unit is $63649 -in.representative_income 63650 Representative total house income in the dwelling unit is $63650 -in.representative_income 63651 Representative total house income in the dwelling unit is $63651 -in.representative_income 63655 Representative total house income in the dwelling unit is $63655 -in.representative_income 63659 Representative total house income in the dwelling unit is $63659 -in.representative_income 63661 Representative total house income in the dwelling unit is $63661 -in.representative_income 63668 Representative total house income in the dwelling unit is $63668 -in.representative_income 63669 Representative total house income in the dwelling unit is $63669 -in.representative_income 63670 Representative total house income in the dwelling unit is $63670 -in.representative_income 63671 Representative total house income in the dwelling unit is $63671 -in.representative_income 63677 Representative total house income in the dwelling unit is $63677 -in.representative_income 63680 Representative total house income in the dwelling unit is $63680 -in.representative_income 63690 Representative total house income in the dwelling unit is $63690 -in.representative_income 63692 Representative total house income in the dwelling unit is $63692 -in.representative_income 63693 Representative total house income in the dwelling unit is $63693 -in.representative_income 63698 Representative total house income in the dwelling unit is $63698 -in.representative_income 63704 Representative total house income in the dwelling unit is $63704 -in.representative_income 63715 Representative total house income in the dwelling unit is $63715 -in.representative_income 63717 Representative total house income in the dwelling unit is $63717 -in.representative_income 63719 Representative total house income in the dwelling unit is $63719 -in.representative_income 63726 Representative total house income in the dwelling unit is $63726 -in.representative_income 63727 Representative total house income in the dwelling unit is $63727 -in.representative_income 63728 Representative total house income in the dwelling unit is $63728 -in.representative_income 63731 Representative total house income in the dwelling unit is $63731 -in.representative_income 63736 Representative total house income in the dwelling unit is $63736 -in.representative_income 63740 Representative total house income in the dwelling unit is $63740 -in.representative_income 63744 Representative total house income in the dwelling unit is $63744 -in.representative_income 63747 Representative total house income in the dwelling unit is $63747 -in.representative_income 63748 Representative total house income in the dwelling unit is $63748 -in.representative_income 63749 Representative total house income in the dwelling unit is $63749 -in.representative_income 63751 Representative total house income in the dwelling unit is $63751 -in.representative_income 63752 Representative total house income in the dwelling unit is $63752 -in.representative_income 63754 Representative total house income in the dwelling unit is $63754 -in.representative_income 63761 Representative total house income in the dwelling unit is $63761 -in.representative_income 63763 Representative total house income in the dwelling unit is $63763 -in.representative_income 63764 Representative total house income in the dwelling unit is $63764 -in.representative_income 63769 Representative total house income in the dwelling unit is $63769 -in.representative_income 63776 Representative total house income in the dwelling unit is $63776 -in.representative_income 63781 Representative total house income in the dwelling unit is $63781 -in.representative_income 63782 Representative total house income in the dwelling unit is $63782 -in.representative_income 63784 Representative total house income in the dwelling unit is $63784 -in.representative_income 63791 Representative total house income in the dwelling unit is $63791 -in.representative_income 63800 Representative total house income in the dwelling unit is $63800 -in.representative_income 63802 Representative total house income in the dwelling unit is $63802 -in.representative_income 63803 Representative total house income in the dwelling unit is $63803 -in.representative_income 63804 Representative total house income in the dwelling unit is $63804 -in.representative_income 63806 Representative total house income in the dwelling unit is $63806 -in.representative_income 63809 Representative total house income in the dwelling unit is $63809 -in.representative_income 63823 Representative total house income in the dwelling unit is $63823 -in.representative_income 63824 Representative total house income in the dwelling unit is $63824 -in.representative_income 63825 Representative total house income in the dwelling unit is $63825 -in.representative_income 63828 Representative total house income in the dwelling unit is $63828 -in.representative_income 63831 Representative total house income in the dwelling unit is $63831 -in.representative_income 63835 Representative total house income in the dwelling unit is $63835 -in.representative_income 63838 Representative total house income in the dwelling unit is $63838 -in.representative_income 63841 Representative total house income in the dwelling unit is $63841 -in.representative_income 63842 Representative total house income in the dwelling unit is $63842 -in.representative_income 63846 Representative total house income in the dwelling unit is $63846 -in.representative_income 63856 Representative total house income in the dwelling unit is $63856 -in.representative_income 63857 Representative total house income in the dwelling unit is $63857 -in.representative_income 63858 Representative total house income in the dwelling unit is $63858 -in.representative_income 63859 Representative total house income in the dwelling unit is $63859 -in.representative_income 63865 Representative total house income in the dwelling unit is $63865 -in.representative_income 63866 Representative total house income in the dwelling unit is $63866 -in.representative_income 63867 Representative total house income in the dwelling unit is $63867 -in.representative_income 63870 Representative total house income in the dwelling unit is $63870 -in.representative_income 63871 Representative total house income in the dwelling unit is $63871 -in.representative_income 63882 Representative total house income in the dwelling unit is $63882 -in.representative_income 63888 Representative total house income in the dwelling unit is $63888 -in.representative_income 63891 Representative total house income in the dwelling unit is $63891 -in.representative_income 63892 Representative total house income in the dwelling unit is $63892 -in.representative_income 63895 Representative total house income in the dwelling unit is $63895 -in.representative_income 63898 Representative total house income in the dwelling unit is $63898 -in.representative_income 63899 Representative total house income in the dwelling unit is $63899 -in.representative_income 63902 Representative total house income in the dwelling unit is $63902 -in.representative_income 63909 Representative total house income in the dwelling unit is $63909 -in.representative_income 63910 Representative total house income in the dwelling unit is $63910 -in.representative_income 63912 Representative total house income in the dwelling unit is $63912 -in.representative_income 63919 Representative total house income in the dwelling unit is $63919 -in.representative_income 63921 Representative total house income in the dwelling unit is $63921 -in.representative_income 63922 Representative total house income in the dwelling unit is $63922 -in.representative_income 63923 Representative total house income in the dwelling unit is $63923 -in.representative_income 63930 Representative total house income in the dwelling unit is $63930 -in.representative_income 63941 Representative total house income in the dwelling unit is $63941 -in.representative_income 63942 Representative total house income in the dwelling unit is $63942 -in.representative_income 63950 Representative total house income in the dwelling unit is $63950 -in.representative_income 63952 Representative total house income in the dwelling unit is $63952 -in.representative_income 63953 Representative total house income in the dwelling unit is $63953 -in.representative_income 63963 Representative total house income in the dwelling unit is $63963 -in.representative_income 63964 Representative total house income in the dwelling unit is $63964 -in.representative_income 63965 Representative total house income in the dwelling unit is $63965 -in.representative_income 63966 Representative total house income in the dwelling unit is $63966 -in.representative_income 63971 Representative total house income in the dwelling unit is $63971 -in.representative_income 63973 Representative total house income in the dwelling unit is $63973 -in.representative_income 63978 Representative total house income in the dwelling unit is $63978 -in.representative_income 63979 Representative total house income in the dwelling unit is $63979 -in.representative_income 63983 Representative total house income in the dwelling unit is $63983 -in.representative_income 63988 Representative total house income in the dwelling unit is $63988 -in.representative_income 63992 Representative total house income in the dwelling unit is $63992 -in.representative_income 63999 Representative total house income in the dwelling unit is $63999 -in.representative_income 64001 Representative total house income in the dwelling unit is $64001 -in.representative_income 64003 Representative total house income in the dwelling unit is $64003 -in.representative_income 64011 Representative total house income in the dwelling unit is $64011 -in.representative_income 64012 Representative total house income in the dwelling unit is $64012 -in.representative_income 64014 Representative total house income in the dwelling unit is $64014 -in.representative_income 64018 Representative total house income in the dwelling unit is $64018 -in.representative_income 64019 Representative total house income in the dwelling unit is $64019 -in.representative_income 64023 Representative total house income in the dwelling unit is $64023 -in.representative_income 64025 Representative total house income in the dwelling unit is $64025 -in.representative_income 64029 Representative total house income in the dwelling unit is $64029 -in.representative_income 64031 Representative total house income in the dwelling unit is $64031 -in.representative_income 64033 Representative total house income in the dwelling unit is $64033 -in.representative_income 64036 Representative total house income in the dwelling unit is $64036 -in.representative_income 64043 Representative total house income in the dwelling unit is $64043 -in.representative_income 64053 Representative total house income in the dwelling unit is $64053 -in.representative_income 64063 Representative total house income in the dwelling unit is $64063 -in.representative_income 64065 Representative total house income in the dwelling unit is $64065 -in.representative_income 64072 Representative total house income in the dwelling unit is $64072 -in.representative_income 64075 Representative total house income in the dwelling unit is $64075 -in.representative_income 64076 Representative total house income in the dwelling unit is $64076 -in.representative_income 64077 Representative total house income in the dwelling unit is $64077 -in.representative_income 64078 Representative total house income in the dwelling unit is $64078 -in.representative_income 64080 Representative total house income in the dwelling unit is $64080 -in.representative_income 64084 Representative total house income in the dwelling unit is $64084 -in.representative_income 64085 Representative total house income in the dwelling unit is $64085 -in.representative_income 64086 Representative total house income in the dwelling unit is $64086 -in.representative_income 64088 Representative total house income in the dwelling unit is $64088 -in.representative_income 64090 Representative total house income in the dwelling unit is $64090 -in.representative_income 64094 Representative total house income in the dwelling unit is $64094 -in.representative_income 64096 Representative total house income in the dwelling unit is $64096 -in.representative_income 64101 Representative total house income in the dwelling unit is $64101 -in.representative_income 64104 Representative total house income in the dwelling unit is $64104 -in.representative_income 64106 Representative total house income in the dwelling unit is $64106 -in.representative_income 64109 Representative total house income in the dwelling unit is $64109 -in.representative_income 64113 Representative total house income in the dwelling unit is $64113 -in.representative_income 64115 Representative total house income in the dwelling unit is $64115 -in.representative_income 64121 Representative total house income in the dwelling unit is $64121 -in.representative_income 64126 Representative total house income in the dwelling unit is $64126 -in.representative_income 64128 Representative total house income in the dwelling unit is $64128 -in.representative_income 64129 Representative total house income in the dwelling unit is $64129 -in.representative_income 64131 Representative total house income in the dwelling unit is $64131 -in.representative_income 64136 Representative total house income in the dwelling unit is $64136 -in.representative_income 64139 Representative total house income in the dwelling unit is $64139 -in.representative_income 64144 Representative total house income in the dwelling unit is $64144 -in.representative_income 64146 Representative total house income in the dwelling unit is $64146 -in.representative_income 64154 Representative total house income in the dwelling unit is $64154 -in.representative_income 64156 Representative total house income in the dwelling unit is $64156 -in.representative_income 64160 Representative total house income in the dwelling unit is $64160 -in.representative_income 64162 Representative total house income in the dwelling unit is $64162 -in.representative_income 64164 Representative total house income in the dwelling unit is $64164 -in.representative_income 64167 Representative total house income in the dwelling unit is $64167 -in.representative_income 64178 Representative total house income in the dwelling unit is $64178 -in.representative_income 64180 Representative total house income in the dwelling unit is $64180 -in.representative_income 64183 Representative total house income in the dwelling unit is $64183 -in.representative_income 64187 Representative total house income in the dwelling unit is $64187 -in.representative_income 64189 Representative total house income in the dwelling unit is $64189 -in.representative_income 64191 Representative total house income in the dwelling unit is $64191 -in.representative_income 64192 Representative total house income in the dwelling unit is $64192 -in.representative_income 64195 Representative total house income in the dwelling unit is $64195 -in.representative_income 64198 Representative total house income in the dwelling unit is $64198 -in.representative_income 64200 Representative total house income in the dwelling unit is $64200 -in.representative_income 64201 Representative total house income in the dwelling unit is $64201 -in.representative_income 64208 Representative total house income in the dwelling unit is $64208 -in.representative_income 64215 Representative total house income in the dwelling unit is $64215 -in.representative_income 64216 Representative total house income in the dwelling unit is $64216 -in.representative_income 64225 Representative total house income in the dwelling unit is $64225 -in.representative_income 64226 Representative total house income in the dwelling unit is $64226 -in.representative_income 64230 Representative total house income in the dwelling unit is $64230 -in.representative_income 64234 Representative total house income in the dwelling unit is $64234 -in.representative_income 64235 Representative total house income in the dwelling unit is $64235 -in.representative_income 64236 Representative total house income in the dwelling unit is $64236 -in.representative_income 64245 Representative total house income in the dwelling unit is $64245 -in.representative_income 64246 Representative total house income in the dwelling unit is $64246 -in.representative_income 64260 Representative total house income in the dwelling unit is $64260 -in.representative_income 64266 Representative total house income in the dwelling unit is $64266 -in.representative_income 64268 Representative total house income in the dwelling unit is $64268 -in.representative_income 64276 Representative total house income in the dwelling unit is $64276 -in.representative_income 64277 Representative total house income in the dwelling unit is $64277 -in.representative_income 64288 Representative total house income in the dwelling unit is $64288 -in.representative_income 64299 Representative total house income in the dwelling unit is $64299 -in.representative_income 64310 Representative total house income in the dwelling unit is $64310 -in.representative_income 64311 Representative total house income in the dwelling unit is $64311 -in.representative_income 64315 Representative total house income in the dwelling unit is $64315 -in.representative_income 64326 Representative total house income in the dwelling unit is $64326 -in.representative_income 64331 Representative total house income in the dwelling unit is $64331 -in.representative_income 64337 Representative total house income in the dwelling unit is $64337 -in.representative_income 64340 Representative total house income in the dwelling unit is $64340 -in.representative_income 64342 Representative total house income in the dwelling unit is $64342 -in.representative_income 64346 Representative total house income in the dwelling unit is $64346 -in.representative_income 64352 Representative total house income in the dwelling unit is $64352 -in.representative_income 64353 Representative total house income in the dwelling unit is $64353 -in.representative_income 64354 Representative total house income in the dwelling unit is $64354 -in.representative_income 64357 Representative total house income in the dwelling unit is $64357 -in.representative_income 64362 Representative total house income in the dwelling unit is $64362 -in.representative_income 64363 Representative total house income in the dwelling unit is $64363 -in.representative_income 64366 Representative total house income in the dwelling unit is $64366 -in.representative_income 64374 Representative total house income in the dwelling unit is $64374 -in.representative_income 64375 Representative total house income in the dwelling unit is $64375 -in.representative_income 64377 Representative total house income in the dwelling unit is $64377 -in.representative_income 64393 Representative total house income in the dwelling unit is $64393 -in.representative_income 64396 Representative total house income in the dwelling unit is $64396 -in.representative_income 64397 Representative total house income in the dwelling unit is $64397 -in.representative_income 64402 Representative total house income in the dwelling unit is $64402 -in.representative_income 64404 Representative total house income in the dwelling unit is $64404 -in.representative_income 64406 Representative total house income in the dwelling unit is $64406 -in.representative_income 64407 Representative total house income in the dwelling unit is $64407 -in.representative_income 64408 Representative total house income in the dwelling unit is $64408 -in.representative_income 64411 Representative total house income in the dwelling unit is $64411 -in.representative_income 64414 Representative total house income in the dwelling unit is $64414 -in.representative_income 64416 Representative total house income in the dwelling unit is $64416 -in.representative_income 64417 Representative total house income in the dwelling unit is $64417 -in.representative_income 64418 Representative total house income in the dwelling unit is $64418 -in.representative_income 64428 Representative total house income in the dwelling unit is $64428 -in.representative_income 64436 Representative total house income in the dwelling unit is $64436 -in.representative_income 64437 Representative total house income in the dwelling unit is $64437 -in.representative_income 64438 Representative total house income in the dwelling unit is $64438 -in.representative_income 64439 Representative total house income in the dwelling unit is $64439 -in.representative_income 64445 Representative total house income in the dwelling unit is $64445 -in.representative_income 64447 Representative total house income in the dwelling unit is $64447 -in.representative_income 64448 Representative total house income in the dwelling unit is $64448 -in.representative_income 64450 Representative total house income in the dwelling unit is $64450 -in.representative_income 64456 Representative total house income in the dwelling unit is $64456 -in.representative_income 64457 Representative total house income in the dwelling unit is $64457 -in.representative_income 64460 Representative total house income in the dwelling unit is $64460 -in.representative_income 64465 Representative total house income in the dwelling unit is $64465 -in.representative_income 64468 Representative total house income in the dwelling unit is $64468 -in.representative_income 64474 Representative total house income in the dwelling unit is $64474 -in.representative_income 64478 Representative total house income in the dwelling unit is $64478 -in.representative_income 64482 Representative total house income in the dwelling unit is $64482 -in.representative_income 64487 Representative total house income in the dwelling unit is $64487 -in.representative_income 64489 Representative total house income in the dwelling unit is $64489 -in.representative_income 64490 Representative total house income in the dwelling unit is $64490 -in.representative_income 64493 Representative total house income in the dwelling unit is $64493 -in.representative_income 64498 Representative total house income in the dwelling unit is $64498 -in.representative_income 64504 Representative total house income in the dwelling unit is $64504 -in.representative_income 64514 Representative total house income in the dwelling unit is $64514 -in.representative_income 64517 Representative total house income in the dwelling unit is $64517 -in.representative_income 64525 Representative total house income in the dwelling unit is $64525 -in.representative_income 64526 Representative total house income in the dwelling unit is $64526 -in.representative_income 64527 Representative total house income in the dwelling unit is $64527 -in.representative_income 64531 Representative total house income in the dwelling unit is $64531 -in.representative_income 64536 Representative total house income in the dwelling unit is $64536 -in.representative_income 64538 Representative total house income in the dwelling unit is $64538 -in.representative_income 64542 Representative total house income in the dwelling unit is $64542 -in.representative_income 64546 Representative total house income in the dwelling unit is $64546 -in.representative_income 64547 Representative total house income in the dwelling unit is $64547 -in.representative_income 64548 Representative total house income in the dwelling unit is $64548 -in.representative_income 64552 Representative total house income in the dwelling unit is $64552 -in.representative_income 64559 Representative total house income in the dwelling unit is $64559 -in.representative_income 64568 Representative total house income in the dwelling unit is $64568 -in.representative_income 64569 Representative total house income in the dwelling unit is $64569 -in.representative_income 64574 Representative total house income in the dwelling unit is $64574 -in.representative_income 64584 Representative total house income in the dwelling unit is $64584 -in.representative_income 64590 Representative total house income in the dwelling unit is $64590 -in.representative_income 64591 Representative total house income in the dwelling unit is $64591 -in.representative_income 64595 Representative total house income in the dwelling unit is $64595 -in.representative_income 64599 Representative total house income in the dwelling unit is $64599 -in.representative_income 64600 Representative total house income in the dwelling unit is $64600 -in.representative_income 64602 Representative total house income in the dwelling unit is $64602 -in.representative_income 64605 Representative total house income in the dwelling unit is $64605 -in.representative_income 64610 Representative total house income in the dwelling unit is $64610 -in.representative_income 64612 Representative total house income in the dwelling unit is $64612 -in.representative_income 64613 Representative total house income in the dwelling unit is $64613 -in.representative_income 64616 Representative total house income in the dwelling unit is $64616 -in.representative_income 64617 Representative total house income in the dwelling unit is $64617 -in.representative_income 64620 Representative total house income in the dwelling unit is $64620 -in.representative_income 64622 Representative total house income in the dwelling unit is $64622 -in.representative_income 64623 Representative total house income in the dwelling unit is $64623 -in.representative_income 64629 Representative total house income in the dwelling unit is $64629 -in.representative_income 64641 Representative total house income in the dwelling unit is $64641 -in.representative_income 64643 Representative total house income in the dwelling unit is $64643 -in.representative_income 64645 Representative total house income in the dwelling unit is $64645 -in.representative_income 64647 Representative total house income in the dwelling unit is $64647 -in.representative_income 64649 Representative total house income in the dwelling unit is $64649 -in.representative_income 64654 Representative total house income in the dwelling unit is $64654 -in.representative_income 64659 Representative total house income in the dwelling unit is $64659 -in.representative_income 64662 Representative total house income in the dwelling unit is $64662 -in.representative_income 64665 Representative total house income in the dwelling unit is $64665 -in.representative_income 64666 Representative total house income in the dwelling unit is $64666 -in.representative_income 64669 Representative total house income in the dwelling unit is $64669 -in.representative_income 64670 Representative total house income in the dwelling unit is $64670 -in.representative_income 64671 Representative total house income in the dwelling unit is $64671 -in.representative_income 64672 Representative total house income in the dwelling unit is $64672 -in.representative_income 64675 Representative total house income in the dwelling unit is $64675 -in.representative_income 64680 Representative total house income in the dwelling unit is $64680 -in.representative_income 64681 Representative total house income in the dwelling unit is $64681 -in.representative_income 64686 Representative total house income in the dwelling unit is $64686 -in.representative_income 64688 Representative total house income in the dwelling unit is $64688 -in.representative_income 64690 Representative total house income in the dwelling unit is $64690 -in.representative_income 64694 Representative total house income in the dwelling unit is $64694 -in.representative_income 64699 Representative total house income in the dwelling unit is $64699 -in.representative_income 64700 Representative total house income in the dwelling unit is $64700 -in.representative_income 64707 Representative total house income in the dwelling unit is $64707 -in.representative_income 64708 Representative total house income in the dwelling unit is $64708 -in.representative_income 64714 Representative total house income in the dwelling unit is $64714 -in.representative_income 64718 Representative total house income in the dwelling unit is $64718 -in.representative_income 64720 Representative total house income in the dwelling unit is $64720 -in.representative_income 64729 Representative total house income in the dwelling unit is $64729 -in.representative_income 64731 Representative total house income in the dwelling unit is $64731 -in.representative_income 64739 Representative total house income in the dwelling unit is $64739 -in.representative_income 64750 Representative total house income in the dwelling unit is $64750 -in.representative_income 64753 Representative total house income in the dwelling unit is $64753 -in.representative_income 64754 Representative total house income in the dwelling unit is $64754 -in.representative_income 64764 Representative total house income in the dwelling unit is $64764 -in.representative_income 64770 Representative total house income in the dwelling unit is $64770 -in.representative_income 64775 Representative total house income in the dwelling unit is $64775 -in.representative_income 64780 Representative total house income in the dwelling unit is $64780 -in.representative_income 64783 Representative total house income in the dwelling unit is $64783 -in.representative_income 64785 Representative total house income in the dwelling unit is $64785 -in.representative_income 64791 Representative total house income in the dwelling unit is $64791 -in.representative_income 64802 Representative total house income in the dwelling unit is $64802 -in.representative_income 64807 Representative total house income in the dwelling unit is $64807 -in.representative_income 64809 Representative total house income in the dwelling unit is $64809 -in.representative_income 64811 Representative total house income in the dwelling unit is $64811 -in.representative_income 64815 Representative total house income in the dwelling unit is $64815 -in.representative_income 64828 Representative total house income in the dwelling unit is $64828 -in.representative_income 64829 Representative total house income in the dwelling unit is $64829 -in.representative_income 64831 Representative total house income in the dwelling unit is $64831 -in.representative_income 64833 Representative total house income in the dwelling unit is $64833 -in.representative_income 64836 Representative total house income in the dwelling unit is $64836 -in.representative_income 64837 Representative total house income in the dwelling unit is $64837 -in.representative_income 64839 Representative total house income in the dwelling unit is $64839 -in.representative_income 64841 Representative total house income in the dwelling unit is $64841 -in.representative_income 64843 Representative total house income in the dwelling unit is $64843 -in.representative_income 64850 Representative total house income in the dwelling unit is $64850 -in.representative_income 64851 Representative total house income in the dwelling unit is $64851 -in.representative_income 64857 Representative total house income in the dwelling unit is $64857 -in.representative_income 64859 Representative total house income in the dwelling unit is $64859 -in.representative_income 64861 Representative total house income in the dwelling unit is $64861 -in.representative_income 64869 Representative total house income in the dwelling unit is $64869 -in.representative_income 64879 Representative total house income in the dwelling unit is $64879 -in.representative_income 64882 Representative total house income in the dwelling unit is $64882 -in.representative_income 64886 Representative total house income in the dwelling unit is $64886 -in.representative_income 64890 Representative total house income in the dwelling unit is $64890 -in.representative_income 64893 Representative total house income in the dwelling unit is $64893 -in.representative_income 64896 Representative total house income in the dwelling unit is $64896 -in.representative_income 64898 Representative total house income in the dwelling unit is $64898 -in.representative_income 64899 Representative total house income in the dwelling unit is $64899 -in.representative_income 64901 Representative total house income in the dwelling unit is $64901 -in.representative_income 64902 Representative total house income in the dwelling unit is $64902 -in.representative_income 64906 Representative total house income in the dwelling unit is $64906 -in.representative_income 64911 Representative total house income in the dwelling unit is $64911 -in.representative_income 64915 Representative total house income in the dwelling unit is $64915 -in.representative_income 64921 Representative total house income in the dwelling unit is $64921 -in.representative_income 64925 Representative total house income in the dwelling unit is $64925 -in.representative_income 64932 Representative total house income in the dwelling unit is $64932 -in.representative_income 64936 Representative total house income in the dwelling unit is $64936 -in.representative_income 64941 Representative total house income in the dwelling unit is $64941 -in.representative_income 64944 Representative total house income in the dwelling unit is $64944 -in.representative_income 64947 Representative total house income in the dwelling unit is $64947 -in.representative_income 64952 Representative total house income in the dwelling unit is $64952 -in.representative_income 64953 Representative total house income in the dwelling unit is $64953 -in.representative_income 64956 Representative total house income in the dwelling unit is $64956 -in.representative_income 64958 Representative total house income in the dwelling unit is $64958 -in.representative_income 64964 Representative total house income in the dwelling unit is $64964 -in.representative_income 64967 Representative total house income in the dwelling unit is $64967 -in.representative_income 64969 Representative total house income in the dwelling unit is $64969 -in.representative_income 64973 Representative total house income in the dwelling unit is $64973 -in.representative_income 64980 Representative total house income in the dwelling unit is $64980 -in.representative_income 64981 Representative total house income in the dwelling unit is $64981 -in.representative_income 64990 Representative total house income in the dwelling unit is $64990 -in.representative_income 64991 Representative total house income in the dwelling unit is $64991 -in.representative_income 64992 Representative total house income in the dwelling unit is $64992 -in.representative_income 65003 Representative total house income in the dwelling unit is $65003 -in.representative_income 65006 Representative total house income in the dwelling unit is $65006 -in.representative_income 65009 Representative total house income in the dwelling unit is $65009 -in.representative_income 65012 Representative total house income in the dwelling unit is $65012 -in.representative_income 65015 Representative total house income in the dwelling unit is $65015 -in.representative_income 65016 Representative total house income in the dwelling unit is $65016 -in.representative_income 65023 Representative total house income in the dwelling unit is $65023 -in.representative_income 65025 Representative total house income in the dwelling unit is $65025 -in.representative_income 65028 Representative total house income in the dwelling unit is $65028 -in.representative_income 65033 Representative total house income in the dwelling unit is $65033 -in.representative_income 65044 Representative total house income in the dwelling unit is $65044 -in.representative_income 65048 Representative total house income in the dwelling unit is $65048 -in.representative_income 65051 Representative total house income in the dwelling unit is $65051 -in.representative_income 65053 Representative total house income in the dwelling unit is $65053 -in.representative_income 65055 Representative total house income in the dwelling unit is $65055 -in.representative_income 65057 Representative total house income in the dwelling unit is $65057 -in.representative_income 65062 Representative total house income in the dwelling unit is $65062 -in.representative_income 65063 Representative total house income in the dwelling unit is $65063 -in.representative_income 65069 Representative total house income in the dwelling unit is $65069 -in.representative_income 65073 Representative total house income in the dwelling unit is $65073 -in.representative_income 65074 Representative total house income in the dwelling unit is $65074 -in.representative_income 65083 Representative total house income in the dwelling unit is $65083 -in.representative_income 65084 Representative total house income in the dwelling unit is $65084 -in.representative_income 65094 Representative total house income in the dwelling unit is $65094 -in.representative_income 65098 Representative total house income in the dwelling unit is $65098 -in.representative_income 65101 Representative total house income in the dwelling unit is $65101 -in.representative_income 65107 Representative total house income in the dwelling unit is $65107 -in.representative_income 65109 Representative total house income in the dwelling unit is $65109 -in.representative_income 65111 Representative total house income in the dwelling unit is $65111 -in.representative_income 65115 Representative total house income in the dwelling unit is $65115 -in.representative_income 65122 Representative total house income in the dwelling unit is $65122 -in.representative_income 65144 Representative total house income in the dwelling unit is $65144 -in.representative_income 65152 Representative total house income in the dwelling unit is $65152 -in.representative_income 65154 Representative total house income in the dwelling unit is $65154 -in.representative_income 65159 Representative total house income in the dwelling unit is $65159 -in.representative_income 65160 Representative total house income in the dwelling unit is $65160 -in.representative_income 65169 Representative total house income in the dwelling unit is $65169 -in.representative_income 65174 Representative total house income in the dwelling unit is $65174 -in.representative_income 65183 Representative total house income in the dwelling unit is $65183 -in.representative_income 65184 Representative total house income in the dwelling unit is $65184 -in.representative_income 65188 Representative total house income in the dwelling unit is $65188 -in.representative_income 65203 Representative total house income in the dwelling unit is $65203 -in.representative_income 65206 Representative total house income in the dwelling unit is $65206 -in.representative_income 65212 Representative total house income in the dwelling unit is $65212 -in.representative_income 65213 Representative total house income in the dwelling unit is $65213 -in.representative_income 65219 Representative total house income in the dwelling unit is $65219 -in.representative_income 65228 Representative total house income in the dwelling unit is $65228 -in.representative_income 65233 Representative total house income in the dwelling unit is $65233 -in.representative_income 65255 Representative total house income in the dwelling unit is $65255 -in.representative_income 65260 Representative total house income in the dwelling unit is $65260 -in.representative_income 65265 Representative total house income in the dwelling unit is $65265 -in.representative_income 65266 Representative total house income in the dwelling unit is $65266 -in.representative_income 65267 Representative total house income in the dwelling unit is $65267 -in.representative_income 65269 Representative total house income in the dwelling unit is $65269 -in.representative_income 65276 Representative total house income in the dwelling unit is $65276 -in.representative_income 65278 Representative total house income in the dwelling unit is $65278 -in.representative_income 65280 Representative total house income in the dwelling unit is $65280 -in.representative_income 65291 Representative total house income in the dwelling unit is $65291 -in.representative_income 65309 Representative total house income in the dwelling unit is $65309 -in.representative_income 65319 Representative total house income in the dwelling unit is $65319 -in.representative_income 65321 Representative total house income in the dwelling unit is $65321 -in.representative_income 65322 Representative total house income in the dwelling unit is $65322 -in.representative_income 65330 Representative total house income in the dwelling unit is $65330 -in.representative_income 65333 Representative total house income in the dwelling unit is $65333 -in.representative_income 65342 Representative total house income in the dwelling unit is $65342 -in.representative_income 65343 Representative total house income in the dwelling unit is $65343 -in.representative_income 65351 Representative total house income in the dwelling unit is $65351 -in.representative_income 65356 Representative total house income in the dwelling unit is $65356 -in.representative_income 65369 Representative total house income in the dwelling unit is $65369 -in.representative_income 65370 Representative total house income in the dwelling unit is $65370 -in.representative_income 65371 Representative total house income in the dwelling unit is $65371 -in.representative_income 65373 Representative total house income in the dwelling unit is $65373 -in.representative_income 65383 Representative total house income in the dwelling unit is $65383 -in.representative_income 65386 Representative total house income in the dwelling unit is $65386 -in.representative_income 65394 Representative total house income in the dwelling unit is $65394 -in.representative_income 65396 Representative total house income in the dwelling unit is $65396 -in.representative_income 65407 Representative total house income in the dwelling unit is $65407 -in.representative_income 65421 Representative total house income in the dwelling unit is $65421 -in.representative_income 65425 Representative total house income in the dwelling unit is $65425 -in.representative_income 65427 Representative total house income in the dwelling unit is $65427 -in.representative_income 65433 Representative total house income in the dwelling unit is $65433 -in.representative_income 65436 Representative total house income in the dwelling unit is $65436 -in.representative_income 65456 Representative total house income in the dwelling unit is $65456 -in.representative_income 65457 Representative total house income in the dwelling unit is $65457 -in.representative_income 65470 Representative total house income in the dwelling unit is $65470 -in.representative_income 65476 Representative total house income in the dwelling unit is $65476 -in.representative_income 65477 Representative total house income in the dwelling unit is $65477 -in.representative_income 65478 Representative total house income in the dwelling unit is $65478 -in.representative_income 65480 Representative total house income in the dwelling unit is $65480 -in.representative_income 65481 Representative total house income in the dwelling unit is $65481 -in.representative_income 65485 Representative total house income in the dwelling unit is $65485 -in.representative_income 65491 Representative total house income in the dwelling unit is $65491 -in.representative_income 65497 Representative total house income in the dwelling unit is $65497 -in.representative_income 65502 Representative total house income in the dwelling unit is $65502 -in.representative_income 65508 Representative total house income in the dwelling unit is $65508 -in.representative_income 65509 Representative total house income in the dwelling unit is $65509 -in.representative_income 65510 Representative total house income in the dwelling unit is $65510 -in.representative_income 65518 Representative total house income in the dwelling unit is $65518 -in.representative_income 65523 Representative total house income in the dwelling unit is $65523 -in.representative_income 65528 Representative total house income in the dwelling unit is $65528 -in.representative_income 65542 Representative total house income in the dwelling unit is $65542 -in.representative_income 65553 Representative total house income in the dwelling unit is $65553 -in.representative_income 65558 Representative total house income in the dwelling unit is $65558 -in.representative_income 65563 Representative total house income in the dwelling unit is $65563 -in.representative_income 65570 Representative total house income in the dwelling unit is $65570 -in.representative_income 65577 Representative total house income in the dwelling unit is $65577 -in.representative_income 65579 Representative total house income in the dwelling unit is $65579 -in.representative_income 65585 Representative total house income in the dwelling unit is $65585 -in.representative_income 65586 Representative total house income in the dwelling unit is $65586 -in.representative_income 65588 Representative total house income in the dwelling unit is $65588 -in.representative_income 65597 Representative total house income in the dwelling unit is $65597 -in.representative_income 65598 Representative total house income in the dwelling unit is $65598 -in.representative_income 65599 Representative total house income in the dwelling unit is $65599 -in.representative_income 65600 Representative total house income in the dwelling unit is $65600 -in.representative_income 65607 Representative total house income in the dwelling unit is $65607 -in.representative_income 65617 Representative total house income in the dwelling unit is $65617 -in.representative_income 65619 Representative total house income in the dwelling unit is $65619 -in.representative_income 65620 Representative total house income in the dwelling unit is $65620 -in.representative_income 65623 Representative total house income in the dwelling unit is $65623 -in.representative_income 65631 Representative total house income in the dwelling unit is $65631 -in.representative_income 65639 Representative total house income in the dwelling unit is $65639 -in.representative_income 65649 Representative total house income in the dwelling unit is $65649 -in.representative_income 65653 Representative total house income in the dwelling unit is $65653 -in.representative_income 65659 Representative total house income in the dwelling unit is $65659 -in.representative_income 65660 Representative total house income in the dwelling unit is $65660 -in.representative_income 65662 Representative total house income in the dwelling unit is $65662 -in.representative_income 65666 Representative total house income in the dwelling unit is $65666 -in.representative_income 65671 Representative total house income in the dwelling unit is $65671 -in.representative_income 65674 Representative total house income in the dwelling unit is $65674 -in.representative_income 65676 Representative total house income in the dwelling unit is $65676 -in.representative_income 65680 Representative total house income in the dwelling unit is $65680 -in.representative_income 65683 Representative total house income in the dwelling unit is $65683 -in.representative_income 65690 Representative total house income in the dwelling unit is $65690 -in.representative_income 65693 Representative total house income in the dwelling unit is $65693 -in.representative_income 65695 Representative total house income in the dwelling unit is $65695 -in.representative_income 65700 Representative total house income in the dwelling unit is $65700 -in.representative_income 65702 Representative total house income in the dwelling unit is $65702 -in.representative_income 65703 Representative total house income in the dwelling unit is $65703 -in.representative_income 65710 Representative total house income in the dwelling unit is $65710 -in.representative_income 65714 Representative total house income in the dwelling unit is $65714 -in.representative_income 65720 Representative total house income in the dwelling unit is $65720 -in.representative_income 65730 Representative total house income in the dwelling unit is $65730 -in.representative_income 65738 Representative total house income in the dwelling unit is $65738 -in.representative_income 65740 Representative total house income in the dwelling unit is $65740 -in.representative_income 65747 Representative total house income in the dwelling unit is $65747 -in.representative_income 65749 Representative total house income in the dwelling unit is $65749 -in.representative_income 65755 Representative total house income in the dwelling unit is $65755 -in.representative_income 65757 Representative total house income in the dwelling unit is $65757 -in.representative_income 65759 Representative total house income in the dwelling unit is $65759 -in.representative_income 65760 Representative total house income in the dwelling unit is $65760 -in.representative_income 65801 Representative total house income in the dwelling unit is $65801 -in.representative_income 65803 Representative total house income in the dwelling unit is $65803 -in.representative_income 65805 Representative total house income in the dwelling unit is $65805 -in.representative_income 65807 Representative total house income in the dwelling unit is $65807 -in.representative_income 65822 Representative total house income in the dwelling unit is $65822 -in.representative_income 65827 Representative total house income in the dwelling unit is $65827 -in.representative_income 65836 Representative total house income in the dwelling unit is $65836 -in.representative_income 65837 Representative total house income in the dwelling unit is $65837 -in.representative_income 65841 Representative total house income in the dwelling unit is $65841 -in.representative_income 65845 Representative total house income in the dwelling unit is $65845 -in.representative_income 65851 Representative total house income in the dwelling unit is $65851 -in.representative_income 65854 Representative total house income in the dwelling unit is $65854 -in.representative_income 65858 Representative total house income in the dwelling unit is $65858 -in.representative_income 65860 Representative total house income in the dwelling unit is $65860 -in.representative_income 65861 Representative total house income in the dwelling unit is $65861 -in.representative_income 65865 Representative total house income in the dwelling unit is $65865 -in.representative_income 65871 Representative total house income in the dwelling unit is $65871 -in.representative_income 65872 Representative total house income in the dwelling unit is $65872 -in.representative_income 65875 Representative total house income in the dwelling unit is $65875 -in.representative_income 65876 Representative total house income in the dwelling unit is $65876 -in.representative_income 65887 Representative total house income in the dwelling unit is $65887 -in.representative_income 65892 Representative total house income in the dwelling unit is $65892 -in.representative_income 65902 Representative total house income in the dwelling unit is $65902 -in.representative_income 65908 Representative total house income in the dwelling unit is $65908 -in.representative_income 65909 Representative total house income in the dwelling unit is $65909 -in.representative_income 65910 Representative total house income in the dwelling unit is $65910 -in.representative_income 65912 Representative total house income in the dwelling unit is $65912 -in.representative_income 65913 Representative total house income in the dwelling unit is $65913 -in.representative_income 65919 Representative total house income in the dwelling unit is $65919 -in.representative_income 65942 Representative total house income in the dwelling unit is $65942 -in.representative_income 65945 Representative total house income in the dwelling unit is $65945 -in.representative_income 65946 Representative total house income in the dwelling unit is $65946 -in.representative_income 65952 Representative total house income in the dwelling unit is $65952 -in.representative_income 65962 Representative total house income in the dwelling unit is $65962 -in.representative_income 65972 Representative total house income in the dwelling unit is $65972 -in.representative_income 65974 Representative total house income in the dwelling unit is $65974 -in.representative_income 65983 Representative total house income in the dwelling unit is $65983 -in.representative_income 65988 Representative total house income in the dwelling unit is $65988 -in.representative_income 65993 Representative total house income in the dwelling unit is $65993 -in.representative_income 65996 Representative total house income in the dwelling unit is $65996 -in.representative_income 66013 Representative total house income in the dwelling unit is $66013 -in.representative_income 66016 Representative total house income in the dwelling unit is $66016 -in.representative_income 66017 Representative total house income in the dwelling unit is $66017 -in.representative_income 66019 Representative total house income in the dwelling unit is $66019 -in.representative_income 66050 Representative total house income in the dwelling unit is $66050 -in.representative_income 66054 Representative total house income in the dwelling unit is $66054 -in.representative_income 66055 Representative total house income in the dwelling unit is $66055 -in.representative_income 66063 Representative total house income in the dwelling unit is $66063 -in.representative_income 66064 Representative total house income in the dwelling unit is $66064 -in.representative_income 66081 Representative total house income in the dwelling unit is $66081 -in.representative_income 66084 Representative total house income in the dwelling unit is $66084 -in.representative_income 66106 Representative total house income in the dwelling unit is $66106 -in.representative_income 66116 Representative total house income in the dwelling unit is $66116 -in.representative_income 66120 Representative total house income in the dwelling unit is $66120 -in.representative_income 66124 Representative total house income in the dwelling unit is $66124 -in.representative_income 66150 Representative total house income in the dwelling unit is $66150 -in.representative_income 66158 Representative total house income in the dwelling unit is $66158 -in.representative_income 66165 Representative total house income in the dwelling unit is $66165 -in.representative_income 66167 Representative total house income in the dwelling unit is $66167 -in.representative_income 66177 Representative total house income in the dwelling unit is $66177 -in.representative_income 66178 Representative total house income in the dwelling unit is $66178 -in.representative_income 66219 Representative total house income in the dwelling unit is $66219 -in.representative_income 66223 Representative total house income in the dwelling unit is $66223 -in.representative_income 66229 Representative total house income in the dwelling unit is $66229 -in.representative_income 66232 Representative total house income in the dwelling unit is $66232 -in.representative_income 66233 Representative total house income in the dwelling unit is $66233 -in.representative_income 66240 Representative total house income in the dwelling unit is $66240 -in.representative_income 66245 Representative total house income in the dwelling unit is $66245 -in.representative_income 66253 Representative total house income in the dwelling unit is $66253 -in.representative_income 66262 Representative total house income in the dwelling unit is $66262 -in.representative_income 66266 Representative total house income in the dwelling unit is $66266 -in.representative_income 66271 Representative total house income in the dwelling unit is $66271 -in.representative_income 66286 Representative total house income in the dwelling unit is $66286 -in.representative_income 66287 Representative total house income in the dwelling unit is $66287 -in.representative_income 66308 Representative total house income in the dwelling unit is $66308 -in.representative_income 66317 Representative total house income in the dwelling unit is $66317 -in.representative_income 66322 Representative total house income in the dwelling unit is $66322 -in.representative_income 66335 Representative total house income in the dwelling unit is $66335 -in.representative_income 66336 Representative total house income in the dwelling unit is $66336 -in.representative_income 66340 Representative total house income in the dwelling unit is $66340 -in.representative_income 66341 Representative total house income in the dwelling unit is $66341 -in.representative_income 66352 Representative total house income in the dwelling unit is $66352 -in.representative_income 66356 Representative total house income in the dwelling unit is $66356 -in.representative_income 66361 Representative total house income in the dwelling unit is $66361 -in.representative_income 66367 Representative total house income in the dwelling unit is $66367 -in.representative_income 66384 Representative total house income in the dwelling unit is $66384 -in.representative_income 66397 Representative total house income in the dwelling unit is $66397 -in.representative_income 66426 Representative total house income in the dwelling unit is $66426 -in.representative_income 66427 Representative total house income in the dwelling unit is $66427 -in.representative_income 66437 Representative total house income in the dwelling unit is $66437 -in.representative_income 66440 Representative total house income in the dwelling unit is $66440 -in.representative_income 66446 Representative total house income in the dwelling unit is $66446 -in.representative_income 66449 Representative total house income in the dwelling unit is $66449 -in.representative_income 66461 Representative total house income in the dwelling unit is $66461 -in.representative_income 66467 Representative total house income in the dwelling unit is $66467 -in.representative_income 66468 Representative total house income in the dwelling unit is $66468 -in.representative_income 66474 Representative total house income in the dwelling unit is $66474 -in.representative_income 66481 Representative total house income in the dwelling unit is $66481 -in.representative_income 66502 Representative total house income in the dwelling unit is $66502 -in.representative_income 66504 Representative total house income in the dwelling unit is $66504 -in.representative_income 66506 Representative total house income in the dwelling unit is $66506 -in.representative_income 66527 Representative total house income in the dwelling unit is $66527 -in.representative_income 66528 Representative total house income in the dwelling unit is $66528 -in.representative_income 66529 Representative total house income in the dwelling unit is $66529 -in.representative_income 66531 Representative total house income in the dwelling unit is $66531 -in.representative_income 66545 Representative total house income in the dwelling unit is $66545 -in.representative_income 66554 Representative total house income in the dwelling unit is $66554 -in.representative_income 66556 Representative total house income in the dwelling unit is $66556 -in.representative_income 66557 Representative total house income in the dwelling unit is $66557 -in.representative_income 66567 Representative total house income in the dwelling unit is $66567 -in.representative_income 66569 Representative total house income in the dwelling unit is $66569 -in.representative_income 66575 Representative total house income in the dwelling unit is $66575 -in.representative_income 66580 Representative total house income in the dwelling unit is $66580 -in.representative_income 66597 Representative total house income in the dwelling unit is $66597 -in.representative_income 66599 Representative total house income in the dwelling unit is $66599 -in.representative_income 66604 Representative total house income in the dwelling unit is $66604 -in.representative_income 66605 Representative total house income in the dwelling unit is $66605 -in.representative_income 66608 Representative total house income in the dwelling unit is $66608 -in.representative_income 66611 Representative total house income in the dwelling unit is $66611 -in.representative_income 66612 Representative total house income in the dwelling unit is $66612 -in.representative_income 66619 Representative total house income in the dwelling unit is $66619 -in.representative_income 66629 Representative total house income in the dwelling unit is $66629 -in.representative_income 66631 Representative total house income in the dwelling unit is $66631 -in.representative_income 66639 Representative total house income in the dwelling unit is $66639 -in.representative_income 66643 Representative total house income in the dwelling unit is $66643 -in.representative_income 66652 Representative total house income in the dwelling unit is $66652 -in.representative_income 66659 Representative total house income in the dwelling unit is $66659 -in.representative_income 66661 Representative total house income in the dwelling unit is $66661 -in.representative_income 66665 Representative total house income in the dwelling unit is $66665 -in.representative_income 66670 Representative total house income in the dwelling unit is $66670 -in.representative_income 66672 Representative total house income in the dwelling unit is $66672 -in.representative_income 66683 Representative total house income in the dwelling unit is $66683 -in.representative_income 66693 Representative total house income in the dwelling unit is $66693 -in.representative_income 66714 Representative total house income in the dwelling unit is $66714 -in.representative_income 66719 Representative total house income in the dwelling unit is $66719 -in.representative_income 66720 Representative total house income in the dwelling unit is $66720 -in.representative_income 66730 Representative total house income in the dwelling unit is $66730 -in.representative_income 66735 Representative total house income in the dwelling unit is $66735 -in.representative_income 66745 Representative total house income in the dwelling unit is $66745 -in.representative_income 66757 Representative total house income in the dwelling unit is $66757 -in.representative_income 66758 Representative total house income in the dwelling unit is $66758 -in.representative_income 66769 Representative total house income in the dwelling unit is $66769 -in.representative_income 66771 Representative total house income in the dwelling unit is $66771 -in.representative_income 66773 Representative total house income in the dwelling unit is $66773 -in.representative_income 66774 Representative total house income in the dwelling unit is $66774 -in.representative_income 66775 Representative total house income in the dwelling unit is $66775 -in.representative_income 66776 Representative total house income in the dwelling unit is $66776 -in.representative_income 66799 Representative total house income in the dwelling unit is $66799 -in.representative_income 66801 Representative total house income in the dwelling unit is $66801 -in.representative_income 66809 Representative total house income in the dwelling unit is $66809 -in.representative_income 66811 Representative total house income in the dwelling unit is $66811 -in.representative_income 66830 Representative total house income in the dwelling unit is $66830 -in.representative_income 66833 Representative total house income in the dwelling unit is $66833 -in.representative_income 66836 Representative total house income in the dwelling unit is $66836 -in.representative_income 66838 Representative total house income in the dwelling unit is $66838 -in.representative_income 66841 Representative total house income in the dwelling unit is $66841 -in.representative_income 66848 Representative total house income in the dwelling unit is $66848 -in.representative_income 66852 Representative total house income in the dwelling unit is $66852 -in.representative_income 66854 Representative total house income in the dwelling unit is $66854 -in.representative_income 66862 Representative total house income in the dwelling unit is $66862 -in.representative_income 66872 Representative total house income in the dwelling unit is $66872 -in.representative_income 66876 Representative total house income in the dwelling unit is $66876 -in.representative_income 66880 Representative total house income in the dwelling unit is $66880 -in.representative_income 66881 Representative total house income in the dwelling unit is $66881 -in.representative_income 66890 Representative total house income in the dwelling unit is $66890 -in.representative_income 66898 Representative total house income in the dwelling unit is $66898 -in.representative_income 66909 Representative total house income in the dwelling unit is $66909 -in.representative_income 66913 Representative total house income in the dwelling unit is $66913 -in.representative_income 66920 Representative total house income in the dwelling unit is $66920 -in.representative_income 66922 Representative total house income in the dwelling unit is $66922 -in.representative_income 66930 Representative total house income in the dwelling unit is $66930 -in.representative_income 66936 Representative total house income in the dwelling unit is $66936 -in.representative_income 66941 Representative total house income in the dwelling unit is $66941 -in.representative_income 66957 Representative total house income in the dwelling unit is $66957 -in.representative_income 66967 Representative total house income in the dwelling unit is $66967 -in.representative_income 66968 Representative total house income in the dwelling unit is $66968 -in.representative_income 66973 Representative total house income in the dwelling unit is $66973 -in.representative_income 66983 Representative total house income in the dwelling unit is $66983 -in.representative_income 66987 Representative total house income in the dwelling unit is $66987 -in.representative_income 66990 Representative total house income in the dwelling unit is $66990 -in.representative_income 66993 Representative total house income in the dwelling unit is $66993 -in.representative_income 66994 Representative total house income in the dwelling unit is $66994 -in.representative_income 67000 Representative total house income in the dwelling unit is $67000 -in.representative_income 67006 Representative total house income in the dwelling unit is $67006 -in.representative_income 67009 Representative total house income in the dwelling unit is $67009 -in.representative_income 67011 Representative total house income in the dwelling unit is $67011 -in.representative_income 67013 Representative total house income in the dwelling unit is $67013 -in.representative_income 67017 Representative total house income in the dwelling unit is $67017 -in.representative_income 67026 Representative total house income in the dwelling unit is $67026 -in.representative_income 67031 Representative total house income in the dwelling unit is $67031 -in.representative_income 67044 Representative total house income in the dwelling unit is $67044 -in.representative_income 67045 Representative total house income in the dwelling unit is $67045 -in.representative_income 67054 Representative total house income in the dwelling unit is $67054 -in.representative_income 67055 Representative total house income in the dwelling unit is $67055 -in.representative_income 67065 Representative total house income in the dwelling unit is $67065 -in.representative_income 67073 Representative total house income in the dwelling unit is $67073 -in.representative_income 67074 Representative total house income in the dwelling unit is $67074 -in.representative_income 67076 Representative total house income in the dwelling unit is $67076 -in.representative_income 67080 Representative total house income in the dwelling unit is $67080 -in.representative_income 67090 Representative total house income in the dwelling unit is $67090 -in.representative_income 67096 Representative total house income in the dwelling unit is $67096 -in.representative_income 67097 Representative total house income in the dwelling unit is $67097 -in.representative_income 67107 Representative total house income in the dwelling unit is $67107 -in.representative_income 67110 Representative total house income in the dwelling unit is $67110 -in.representative_income 67112 Representative total house income in the dwelling unit is $67112 -in.representative_income 67117 Representative total house income in the dwelling unit is $67117 -in.representative_income 67126 Representative total house income in the dwelling unit is $67126 -in.representative_income 67136 Representative total house income in the dwelling unit is $67136 -in.representative_income 67145 Representative total house income in the dwelling unit is $67145 -in.representative_income 67147 Representative total house income in the dwelling unit is $67147 -in.representative_income 67151 Representative total house income in the dwelling unit is $67151 -in.representative_income 67165 Representative total house income in the dwelling unit is $67165 -in.representative_income 67175 Representative total house income in the dwelling unit is $67175 -in.representative_income 67178 Representative total house income in the dwelling unit is $67178 -in.representative_income 67195 Representative total house income in the dwelling unit is $67195 -in.representative_income 67198 Representative total house income in the dwelling unit is $67198 -in.representative_income 67205 Representative total house income in the dwelling unit is $67205 -in.representative_income 67215 Representative total house income in the dwelling unit is $67215 -in.representative_income 67216 Representative total house income in the dwelling unit is $67216 -in.representative_income 67219 Representative total house income in the dwelling unit is $67219 -in.representative_income 67230 Representative total house income in the dwelling unit is $67230 -in.representative_income 67238 Representative total house income in the dwelling unit is $67238 -in.representative_income 67240 Representative total house income in the dwelling unit is $67240 -in.representative_income 67250 Representative total house income in the dwelling unit is $67250 -in.representative_income 67251 Representative total house income in the dwelling unit is $67251 -in.representative_income 67259 Representative total house income in the dwelling unit is $67259 -in.representative_income 67266 Representative total house income in the dwelling unit is $67266 -in.representative_income 67267 Representative total house income in the dwelling unit is $67267 -in.representative_income 67270 Representative total house income in the dwelling unit is $67270 -in.representative_income 67273 Representative total house income in the dwelling unit is $67273 -in.representative_income 67276 Representative total house income in the dwelling unit is $67276 -in.representative_income 67280 Representative total house income in the dwelling unit is $67280 -in.representative_income 67284 Representative total house income in the dwelling unit is $67284 -in.representative_income 67287 Representative total house income in the dwelling unit is $67287 -in.representative_income 67295 Representative total house income in the dwelling unit is $67295 -in.representative_income 67302 Representative total house income in the dwelling unit is $67302 -in.representative_income 67305 Representative total house income in the dwelling unit is $67305 -in.representative_income 67313 Representative total house income in the dwelling unit is $67313 -in.representative_income 67316 Representative total house income in the dwelling unit is $67316 -in.representative_income 67326 Representative total house income in the dwelling unit is $67326 -in.representative_income 67327 Representative total house income in the dwelling unit is $67327 -in.representative_income 67336 Representative total house income in the dwelling unit is $67336 -in.representative_income 67341 Representative total house income in the dwelling unit is $67341 -in.representative_income 67354 Representative total house income in the dwelling unit is $67354 -in.representative_income 67356 Representative total house income in the dwelling unit is $67356 -in.representative_income 67374 Representative total house income in the dwelling unit is $67374 -in.representative_income 67377 Representative total house income in the dwelling unit is $67377 -in.representative_income 67379 Representative total house income in the dwelling unit is $67379 -in.representative_income 67390 Representative total house income in the dwelling unit is $67390 -in.representative_income 67397 Representative total house income in the dwelling unit is $67397 -in.representative_income 67400 Representative total house income in the dwelling unit is $67400 -in.representative_income 67402 Representative total house income in the dwelling unit is $67402 -in.representative_income 67407 Representative total house income in the dwelling unit is $67407 -in.representative_income 67411 Representative total house income in the dwelling unit is $67411 -in.representative_income 67413 Representative total house income in the dwelling unit is $67413 -in.representative_income 67421 Representative total house income in the dwelling unit is $67421 -in.representative_income 67424 Representative total house income in the dwelling unit is $67424 -in.representative_income 67431 Representative total house income in the dwelling unit is $67431 -in.representative_income 67443 Representative total house income in the dwelling unit is $67443 -in.representative_income 67457 Representative total house income in the dwelling unit is $67457 -in.representative_income 67464 Representative total house income in the dwelling unit is $67464 -in.representative_income 67466 Representative total house income in the dwelling unit is $67466 -in.representative_income 67477 Representative total house income in the dwelling unit is $67477 -in.representative_income 67478 Representative total house income in the dwelling unit is $67478 -in.representative_income 67488 Representative total house income in the dwelling unit is $67488 -in.representative_income 67495 Representative total house income in the dwelling unit is $67495 -in.representative_income 67498 Representative total house income in the dwelling unit is $67498 -in.representative_income 67518 Representative total house income in the dwelling unit is $67518 -in.representative_income 67519 Representative total house income in the dwelling unit is $67519 -in.representative_income 67529 Representative total house income in the dwelling unit is $67529 -in.representative_income 67539 Representative total house income in the dwelling unit is $67539 -in.representative_income 67540 Representative total house income in the dwelling unit is $67540 -in.representative_income 67548 Representative total house income in the dwelling unit is $67548 -in.representative_income 67550 Representative total house income in the dwelling unit is $67550 -in.representative_income 67551 Representative total house income in the dwelling unit is $67551 -in.representative_income 67552 Representative total house income in the dwelling unit is $67552 -in.representative_income 67558 Representative total house income in the dwelling unit is $67558 -in.representative_income 67560 Representative total house income in the dwelling unit is $67560 -in.representative_income 67573 Representative total house income in the dwelling unit is $67573 -in.representative_income 67579 Representative total house income in the dwelling unit is $67579 -in.representative_income 67581 Representative total house income in the dwelling unit is $67581 -in.representative_income 67587 Representative total house income in the dwelling unit is $67587 -in.representative_income 67591 Representative total house income in the dwelling unit is $67591 -in.representative_income 67600 Representative total house income in the dwelling unit is $67600 -in.representative_income 67619 Representative total house income in the dwelling unit is $67619 -in.representative_income 67620 Representative total house income in the dwelling unit is $67620 -in.representative_income 67621 Representative total house income in the dwelling unit is $67621 -in.representative_income 67627 Representative total house income in the dwelling unit is $67627 -in.representative_income 67629 Representative total house income in the dwelling unit is $67629 -in.representative_income 67634 Representative total house income in the dwelling unit is $67634 -in.representative_income 67637 Representative total house income in the dwelling unit is $67637 -in.representative_income 67653 Representative total house income in the dwelling unit is $67653 -in.representative_income 67659 Representative total house income in the dwelling unit is $67659 -in.representative_income 67660 Representative total house income in the dwelling unit is $67660 -in.representative_income 67664 Representative total house income in the dwelling unit is $67664 -in.representative_income 67680 Representative total house income in the dwelling unit is $67680 -in.representative_income 67690 Representative total house income in the dwelling unit is $67690 -in.representative_income 67694 Representative total house income in the dwelling unit is $67694 -in.representative_income 67700 Representative total house income in the dwelling unit is $67700 -in.representative_income 67706 Representative total house income in the dwelling unit is $67706 -in.representative_income 67724 Representative total house income in the dwelling unit is $67724 -in.representative_income 67730 Representative total house income in the dwelling unit is $67730 -in.representative_income 67735 Representative total house income in the dwelling unit is $67735 -in.representative_income 67740 Representative total house income in the dwelling unit is $67740 -in.representative_income 67746 Representative total house income in the dwelling unit is $67746 -in.representative_income 67759 Representative total house income in the dwelling unit is $67759 -in.representative_income 67761 Representative total house income in the dwelling unit is $67761 -in.representative_income 67766 Representative total house income in the dwelling unit is $67766 -in.representative_income 67773 Representative total house income in the dwelling unit is $67773 -in.representative_income 67781 Representative total house income in the dwelling unit is $67781 -in.representative_income 67789 Representative total house income in the dwelling unit is $67789 -in.representative_income 67797 Representative total house income in the dwelling unit is $67797 -in.representative_income 67811 Representative total house income in the dwelling unit is $67811 -in.representative_income 67815 Representative total house income in the dwelling unit is $67815 -in.representative_income 67818 Representative total house income in the dwelling unit is $67818 -in.representative_income 67821 Representative total house income in the dwelling unit is $67821 -in.representative_income 67824 Representative total house income in the dwelling unit is $67824 -in.representative_income 67831 Representative total house income in the dwelling unit is $67831 -in.representative_income 67838 Representative total house income in the dwelling unit is $67838 -in.representative_income 67841 Representative total house income in the dwelling unit is $67841 -in.representative_income 67842 Representative total house income in the dwelling unit is $67842 -in.representative_income 67853 Representative total house income in the dwelling unit is $67853 -in.representative_income 67854 Representative total house income in the dwelling unit is $67854 -in.representative_income 67863 Representative total house income in the dwelling unit is $67863 -in.representative_income 67864 Representative total house income in the dwelling unit is $67864 -in.representative_income 67869 Representative total house income in the dwelling unit is $67869 -in.representative_income 67874 Representative total house income in the dwelling unit is $67874 -in.representative_income 67882 Representative total house income in the dwelling unit is $67882 -in.representative_income 67884 Representative total house income in the dwelling unit is $67884 -in.representative_income 67895 Representative total house income in the dwelling unit is $67895 -in.representative_income 67912 Representative total house income in the dwelling unit is $67912 -in.representative_income 67917 Representative total house income in the dwelling unit is $67917 -in.representative_income 67921 Representative total house income in the dwelling unit is $67921 -in.representative_income 67922 Representative total house income in the dwelling unit is $67922 -in.representative_income 67929 Representative total house income in the dwelling unit is $67929 -in.representative_income 67930 Representative total house income in the dwelling unit is $67930 -in.representative_income 67941 Representative total house income in the dwelling unit is $67941 -in.representative_income 67948 Representative total house income in the dwelling unit is $67948 -in.representative_income 67950 Representative total house income in the dwelling unit is $67950 -in.representative_income 67959 Representative total house income in the dwelling unit is $67959 -in.representative_income 67962 Representative total house income in the dwelling unit is $67962 -in.representative_income 67963 Representative total house income in the dwelling unit is $67963 -in.representative_income 67970 Representative total house income in the dwelling unit is $67970 -in.representative_income 67973 Representative total house income in the dwelling unit is $67973 -in.representative_income 67983 Representative total house income in the dwelling unit is $67983 -in.representative_income 67986 Representative total house income in the dwelling unit is $67986 -in.representative_income 67990 Representative total house income in the dwelling unit is $67990 -in.representative_income 68003 Representative total house income in the dwelling unit is $68003 -in.representative_income 68016 Representative total house income in the dwelling unit is $68016 -in.representative_income 68022 Representative total house income in the dwelling unit is $68022 -in.representative_income 68026 Representative total house income in the dwelling unit is $68026 -in.representative_income 68043 Representative total house income in the dwelling unit is $68043 -in.representative_income 68045 Representative total house income in the dwelling unit is $68045 -in.representative_income 68057 Representative total house income in the dwelling unit is $68057 -in.representative_income 68064 Representative total house income in the dwelling unit is $68064 -in.representative_income 68068 Representative total house income in the dwelling unit is $68068 -in.representative_income 68070 Representative total house income in the dwelling unit is $68070 -in.representative_income 68073 Representative total house income in the dwelling unit is $68073 -in.representative_income 68075 Representative total house income in the dwelling unit is $68075 -in.representative_income 68076 Representative total house income in the dwelling unit is $68076 -in.representative_income 68080 Representative total house income in the dwelling unit is $68080 -in.representative_income 68084 Representative total house income in the dwelling unit is $68084 -in.representative_income 68085 Representative total house income in the dwelling unit is $68085 -in.representative_income 68089 Representative total house income in the dwelling unit is $68089 -in.representative_income 68091 Representative total house income in the dwelling unit is $68091 -in.representative_income 68110 Representative total house income in the dwelling unit is $68110 -in.representative_income 68113 Representative total house income in the dwelling unit is $68113 -in.representative_income 68118 Representative total house income in the dwelling unit is $68118 -in.representative_income 68128 Representative total house income in the dwelling unit is $68128 -in.representative_income 68134 Representative total house income in the dwelling unit is $68134 -in.representative_income 68144 Representative total house income in the dwelling unit is $68144 -in.representative_income 68145 Representative total house income in the dwelling unit is $68145 -in.representative_income 68164 Representative total house income in the dwelling unit is $68164 -in.representative_income 68178 Representative total house income in the dwelling unit is $68178 -in.representative_income 68179 Representative total house income in the dwelling unit is $68179 -in.representative_income 68180 Representative total house income in the dwelling unit is $68180 -in.representative_income 68185 Representative total house income in the dwelling unit is $68185 -in.representative_income 68189 Representative total house income in the dwelling unit is $68189 -in.representative_income 68207 Representative total house income in the dwelling unit is $68207 -in.representative_income 68215 Representative total house income in the dwelling unit is $68215 -in.representative_income 68222 Representative total house income in the dwelling unit is $68222 -in.representative_income 68225 Representative total house income in the dwelling unit is $68225 -in.representative_income 68232 Representative total house income in the dwelling unit is $68232 -in.representative_income 68233 Representative total house income in the dwelling unit is $68233 -in.representative_income 68235 Representative total house income in the dwelling unit is $68235 -in.representative_income 68237 Representative total house income in the dwelling unit is $68237 -in.representative_income 68239 Representative total house income in the dwelling unit is $68239 -in.representative_income 68241 Representative total house income in the dwelling unit is $68241 -in.representative_income 68242 Representative total house income in the dwelling unit is $68242 -in.representative_income 68250 Representative total house income in the dwelling unit is $68250 -in.representative_income 68251 Representative total house income in the dwelling unit is $68251 -in.representative_income 68262 Representative total house income in the dwelling unit is $68262 -in.representative_income 68264 Representative total house income in the dwelling unit is $68264 -in.representative_income 68271 Representative total house income in the dwelling unit is $68271 -in.representative_income 68275 Representative total house income in the dwelling unit is $68275 -in.representative_income 68282 Representative total house income in the dwelling unit is $68282 -in.representative_income 68285 Representative total house income in the dwelling unit is $68285 -in.representative_income 68286 Representative total house income in the dwelling unit is $68286 -in.representative_income 68310 Representative total house income in the dwelling unit is $68310 -in.representative_income 68323 Representative total house income in the dwelling unit is $68323 -in.representative_income 68338 Representative total house income in the dwelling unit is $68338 -in.representative_income 68349 Representative total house income in the dwelling unit is $68349 -in.representative_income 68350 Representative total house income in the dwelling unit is $68350 -in.representative_income 68364 Representative total house income in the dwelling unit is $68364 -in.representative_income 68377 Representative total house income in the dwelling unit is $68377 -in.representative_income 68379 Representative total house income in the dwelling unit is $68379 -in.representative_income 68380 Representative total house income in the dwelling unit is $68380 -in.representative_income 68385 Representative total house income in the dwelling unit is $68385 -in.representative_income 68387 Representative total house income in the dwelling unit is $68387 -in.representative_income 68391 Representative total house income in the dwelling unit is $68391 -in.representative_income 68393 Representative total house income in the dwelling unit is $68393 -in.representative_income 68398 Representative total house income in the dwelling unit is $68398 -in.representative_income 68402 Representative total house income in the dwelling unit is $68402 -in.representative_income 68404 Representative total house income in the dwelling unit is $68404 -in.representative_income 68406 Representative total house income in the dwelling unit is $68406 -in.representative_income 68412 Representative total house income in the dwelling unit is $68412 -in.representative_income 68414 Representative total house income in the dwelling unit is $68414 -in.representative_income 68417 Representative total house income in the dwelling unit is $68417 -in.representative_income 68437 Representative total house income in the dwelling unit is $68437 -in.representative_income 68444 Representative total house income in the dwelling unit is $68444 -in.representative_income 68447 Representative total house income in the dwelling unit is $68447 -in.representative_income 68465 Representative total house income in the dwelling unit is $68465 -in.representative_income 68468 Representative total house income in the dwelling unit is $68468 -in.representative_income 68478 Representative total house income in the dwelling unit is $68478 -in.representative_income 68486 Representative total house income in the dwelling unit is $68486 -in.representative_income 68488 Representative total house income in the dwelling unit is $68488 -in.representative_income 68491 Representative total house income in the dwelling unit is $68491 -in.representative_income 68497 Representative total house income in the dwelling unit is $68497 -in.representative_income 68499 Representative total house income in the dwelling unit is $68499 -in.representative_income 68501 Representative total house income in the dwelling unit is $68501 -in.representative_income 68509 Representative total house income in the dwelling unit is $68509 -in.representative_income 68512 Representative total house income in the dwelling unit is $68512 -in.representative_income 68515 Representative total house income in the dwelling unit is $68515 -in.representative_income 68518 Representative total house income in the dwelling unit is $68518 -in.representative_income 68520 Representative total house income in the dwelling unit is $68520 -in.representative_income 68529 Representative total house income in the dwelling unit is $68529 -in.representative_income 68547 Representative total house income in the dwelling unit is $68547 -in.representative_income 68550 Representative total house income in the dwelling unit is $68550 -in.representative_income 68559 Representative total house income in the dwelling unit is $68559 -in.representative_income 68560 Representative total house income in the dwelling unit is $68560 -in.representative_income 68567 Representative total house income in the dwelling unit is $68567 -in.representative_income 68570 Representative total house income in the dwelling unit is $68570 -in.representative_income 68571 Representative total house income in the dwelling unit is $68571 -in.representative_income 68572 Representative total house income in the dwelling unit is $68572 -in.representative_income 68581 Representative total house income in the dwelling unit is $68581 -in.representative_income 68589 Representative total house income in the dwelling unit is $68589 -in.representative_income 68592 Representative total house income in the dwelling unit is $68592 -in.representative_income 68594 Representative total house income in the dwelling unit is $68594 -in.representative_income 68602 Representative total house income in the dwelling unit is $68602 -in.representative_income 68610 Representative total house income in the dwelling unit is $68610 -in.representative_income 68612 Representative total house income in the dwelling unit is $68612 -in.representative_income 68615 Representative total house income in the dwelling unit is $68615 -in.representative_income 68619 Representative total house income in the dwelling unit is $68619 -in.representative_income 68623 Representative total house income in the dwelling unit is $68623 -in.representative_income 68625 Representative total house income in the dwelling unit is $68625 -in.representative_income 68626 Representative total house income in the dwelling unit is $68626 -in.representative_income 68639 Representative total house income in the dwelling unit is $68639 -in.representative_income 68641 Representative total house income in the dwelling unit is $68641 -in.representative_income 68643 Representative total house income in the dwelling unit is $68643 -in.representative_income 68649 Representative total house income in the dwelling unit is $68649 -in.representative_income 68654 Representative total house income in the dwelling unit is $68654 -in.representative_income 68655 Representative total house income in the dwelling unit is $68655 -in.representative_income 68668 Representative total house income in the dwelling unit is $68668 -in.representative_income 68679 Representative total house income in the dwelling unit is $68679 -in.representative_income 68686 Representative total house income in the dwelling unit is $68686 -in.representative_income 68690 Representative total house income in the dwelling unit is $68690 -in.representative_income 68695 Representative total house income in the dwelling unit is $68695 -in.representative_income 68697 Representative total house income in the dwelling unit is $68697 -in.representative_income 68700 Representative total house income in the dwelling unit is $68700 -in.representative_income 68705 Representative total house income in the dwelling unit is $68705 -in.representative_income 68710 Representative total house income in the dwelling unit is $68710 -in.representative_income 68715 Representative total house income in the dwelling unit is $68715 -in.representative_income 68718 Representative total house income in the dwelling unit is $68718 -in.representative_income 68728 Representative total house income in the dwelling unit is $68728 -in.representative_income 68729 Representative total house income in the dwelling unit is $68729 -in.representative_income 68733 Representative total house income in the dwelling unit is $68733 -in.representative_income 68736 Representative total house income in the dwelling unit is $68736 -in.representative_income 68740 Representative total house income in the dwelling unit is $68740 -in.representative_income 68742 Representative total house income in the dwelling unit is $68742 -in.representative_income 68750 Representative total house income in the dwelling unit is $68750 -in.representative_income 68755 Representative total house income in the dwelling unit is $68755 -in.representative_income 68760 Representative total house income in the dwelling unit is $68760 -in.representative_income 68761 Representative total house income in the dwelling unit is $68761 -in.representative_income 68765 Representative total house income in the dwelling unit is $68765 -in.representative_income 68776 Representative total house income in the dwelling unit is $68776 -in.representative_income 68781 Representative total house income in the dwelling unit is $68781 -in.representative_income 68783 Representative total house income in the dwelling unit is $68783 -in.representative_income 68787 Representative total house income in the dwelling unit is $68787 -in.representative_income 68791 Representative total house income in the dwelling unit is $68791 -in.representative_income 68797 Representative total house income in the dwelling unit is $68797 -in.representative_income 68802 Representative total house income in the dwelling unit is $68802 -in.representative_income 68804 Representative total house income in the dwelling unit is $68804 -in.representative_income 68808 Representative total house income in the dwelling unit is $68808 -in.representative_income 68809 Representative total house income in the dwelling unit is $68809 -in.representative_income 68811 Representative total house income in the dwelling unit is $68811 -in.representative_income 68813 Representative total house income in the dwelling unit is $68813 -in.representative_income 68820 Representative total house income in the dwelling unit is $68820 -in.representative_income 68826 Representative total house income in the dwelling unit is $68826 -in.representative_income 68828 Representative total house income in the dwelling unit is $68828 -in.representative_income 68829 Representative total house income in the dwelling unit is $68829 -in.representative_income 68830 Representative total house income in the dwelling unit is $68830 -in.representative_income 68839 Representative total house income in the dwelling unit is $68839 -in.representative_income 68849 Representative total house income in the dwelling unit is $68849 -in.representative_income 68850 Representative total house income in the dwelling unit is $68850 -in.representative_income 68856 Representative total house income in the dwelling unit is $68856 -in.representative_income 68858 Representative total house income in the dwelling unit is $68858 -in.representative_income 68866 Representative total house income in the dwelling unit is $68866 -in.representative_income 68874 Representative total house income in the dwelling unit is $68874 -in.representative_income 68880 Representative total house income in the dwelling unit is $68880 -in.representative_income 68892 Representative total house income in the dwelling unit is $68892 -in.representative_income 68901 Representative total house income in the dwelling unit is $68901 -in.representative_income 68905 Representative total house income in the dwelling unit is $68905 -in.representative_income 68908 Representative total house income in the dwelling unit is $68908 -in.representative_income 68911 Representative total house income in the dwelling unit is $68911 -in.representative_income 68912 Representative total house income in the dwelling unit is $68912 -in.representative_income 68915 Representative total house income in the dwelling unit is $68915 -in.representative_income 68919 Representative total house income in the dwelling unit is $68919 -in.representative_income 68923 Representative total house income in the dwelling unit is $68923 -in.representative_income 68929 Representative total house income in the dwelling unit is $68929 -in.representative_income 68934 Representative total house income in the dwelling unit is $68934 -in.representative_income 68937 Representative total house income in the dwelling unit is $68937 -in.representative_income 68942 Representative total house income in the dwelling unit is $68942 -in.representative_income 68950 Representative total house income in the dwelling unit is $68950 -in.representative_income 68963 Representative total house income in the dwelling unit is $68963 -in.representative_income 68966 Representative total house income in the dwelling unit is $68966 -in.representative_income 68971 Representative total house income in the dwelling unit is $68971 -in.representative_income 68972 Representative total house income in the dwelling unit is $68972 -in.representative_income 68977 Representative total house income in the dwelling unit is $68977 -in.representative_income 68979 Representative total house income in the dwelling unit is $68979 -in.representative_income 68983 Representative total house income in the dwelling unit is $68983 -in.representative_income 68988 Representative total house income in the dwelling unit is $68988 -in.representative_income 68991 Representative total house income in the dwelling unit is $68991 -in.representative_income 68992 Representative total house income in the dwelling unit is $68992 -in.representative_income 68993 Representative total house income in the dwelling unit is $68993 -in.representative_income 68997 Representative total house income in the dwelling unit is $68997 -in.representative_income 69002 Representative total house income in the dwelling unit is $69002 -in.representative_income 69003 Representative total house income in the dwelling unit is $69003 -in.representative_income 69004 Representative total house income in the dwelling unit is $69004 -in.representative_income 69007 Representative total house income in the dwelling unit is $69007 -in.representative_income 69014 Representative total house income in the dwelling unit is $69014 -in.representative_income 69023 Representative total house income in the dwelling unit is $69023 -in.representative_income 69024 Representative total house income in the dwelling unit is $69024 -in.representative_income 69028 Representative total house income in the dwelling unit is $69028 -in.representative_income 69033 Representative total house income in the dwelling unit is $69033 -in.representative_income 69035 Representative total house income in the dwelling unit is $69035 -in.representative_income 69042 Representative total house income in the dwelling unit is $69042 -in.representative_income 69046 Representative total house income in the dwelling unit is $69046 -in.representative_income 69050 Representative total house income in the dwelling unit is $69050 -in.representative_income 69053 Representative total house income in the dwelling unit is $69053 -in.representative_income 69056 Representative total house income in the dwelling unit is $69056 -in.representative_income 69063 Representative total house income in the dwelling unit is $69063 -in.representative_income 69065 Representative total house income in the dwelling unit is $69065 -in.representative_income 69076 Representative total house income in the dwelling unit is $69076 -in.representative_income 69077 Representative total house income in the dwelling unit is $69077 -in.representative_income 69084 Representative total house income in the dwelling unit is $69084 -in.representative_income 69085 Representative total house income in the dwelling unit is $69085 -in.representative_income 69087 Representative total house income in the dwelling unit is $69087 -in.representative_income 69094 Representative total house income in the dwelling unit is $69094 -in.representative_income 69096 Representative total house income in the dwelling unit is $69096 -in.representative_income 69097 Representative total house income in the dwelling unit is $69097 -in.representative_income 69099 Representative total house income in the dwelling unit is $69099 -in.representative_income 69103 Representative total house income in the dwelling unit is $69103 -in.representative_income 69104 Representative total house income in the dwelling unit is $69104 -in.representative_income 69107 Representative total house income in the dwelling unit is $69107 -in.representative_income 69118 Representative total house income in the dwelling unit is $69118 -in.representative_income 69119 Representative total house income in the dwelling unit is $69119 -in.representative_income 69125 Representative total house income in the dwelling unit is $69125 -in.representative_income 69128 Representative total house income in the dwelling unit is $69128 -in.representative_income 69129 Representative total house income in the dwelling unit is $69129 -in.representative_income 69131 Representative total house income in the dwelling unit is $69131 -in.representative_income 69138 Representative total house income in the dwelling unit is $69138 -in.representative_income 69141 Representative total house income in the dwelling unit is $69141 -in.representative_income 69149 Representative total house income in the dwelling unit is $69149 -in.representative_income 69150 Representative total house income in the dwelling unit is $69150 -in.representative_income 69159 Representative total house income in the dwelling unit is $69159 -in.representative_income 69161 Representative total house income in the dwelling unit is $69161 -in.representative_income 69162 Representative total house income in the dwelling unit is $69162 -in.representative_income 69164 Representative total house income in the dwelling unit is $69164 -in.representative_income 69173 Representative total house income in the dwelling unit is $69173 -in.representative_income 69182 Representative total house income in the dwelling unit is $69182 -in.representative_income 69183 Representative total house income in the dwelling unit is $69183 -in.representative_income 69195 Representative total house income in the dwelling unit is $69195 -in.representative_income 69203 Representative total house income in the dwelling unit is $69203 -in.representative_income 69211 Representative total house income in the dwelling unit is $69211 -in.representative_income 69221 Representative total house income in the dwelling unit is $69221 -in.representative_income 69225 Representative total house income in the dwelling unit is $69225 -in.representative_income 69226 Representative total house income in the dwelling unit is $69226 -in.representative_income 69231 Representative total house income in the dwelling unit is $69231 -in.representative_income 69235 Representative total house income in the dwelling unit is $69235 -in.representative_income 69237 Representative total house income in the dwelling unit is $69237 -in.representative_income 69239 Representative total house income in the dwelling unit is $69239 -in.representative_income 69247 Representative total house income in the dwelling unit is $69247 -in.representative_income 69258 Representative total house income in the dwelling unit is $69258 -in.representative_income 69262 Representative total house income in the dwelling unit is $69262 -in.representative_income 69276 Representative total house income in the dwelling unit is $69276 -in.representative_income 69286 Representative total house income in the dwelling unit is $69286 -in.representative_income 69288 Representative total house income in the dwelling unit is $69288 -in.representative_income 69290 Representative total house income in the dwelling unit is $69290 -in.representative_income 69296 Representative total house income in the dwelling unit is $69296 -in.representative_income 69313 Representative total house income in the dwelling unit is $69313 -in.representative_income 69314 Representative total house income in the dwelling unit is $69314 -in.representative_income 69316 Representative total house income in the dwelling unit is $69316 -in.representative_income 69330 Representative total house income in the dwelling unit is $69330 -in.representative_income 69340 Representative total house income in the dwelling unit is $69340 -in.representative_income 69345 Representative total house income in the dwelling unit is $69345 -in.representative_income 69346 Representative total house income in the dwelling unit is $69346 -in.representative_income 69365 Representative total house income in the dwelling unit is $69365 -in.representative_income 69367 Representative total house income in the dwelling unit is $69367 -in.representative_income 69386 Representative total house income in the dwelling unit is $69386 -in.representative_income 69393 Representative total house income in the dwelling unit is $69393 -in.representative_income 69397 Representative total house income in the dwelling unit is $69397 -in.representative_income 69416 Representative total house income in the dwelling unit is $69416 -in.representative_income 69417 Representative total house income in the dwelling unit is $69417 -in.representative_income 69441 Representative total house income in the dwelling unit is $69441 -in.representative_income 69442 Representative total house income in the dwelling unit is $69442 -in.representative_income 69452 Representative total house income in the dwelling unit is $69452 -in.representative_income 69464 Representative total house income in the dwelling unit is $69464 -in.representative_income 69475 Representative total house income in the dwelling unit is $69475 -in.representative_income 69478 Representative total house income in the dwelling unit is $69478 -in.representative_income 69485 Representative total house income in the dwelling unit is $69485 -in.representative_income 69498 Representative total house income in the dwelling unit is $69498 -in.representative_income 69499 Representative total house income in the dwelling unit is $69499 -in.representative_income 69517 Representative total house income in the dwelling unit is $69517 -in.representative_income 69518 Representative total house income in the dwelling unit is $69518 -in.representative_income 69520 Representative total house income in the dwelling unit is $69520 -in.representative_income 69528 Representative total house income in the dwelling unit is $69528 -in.representative_income 69535 Representative total house income in the dwelling unit is $69535 -in.representative_income 69541 Representative total house income in the dwelling unit is $69541 -in.representative_income 69548 Representative total house income in the dwelling unit is $69548 -in.representative_income 69552 Representative total house income in the dwelling unit is $69552 -in.representative_income 69560 Representative total house income in the dwelling unit is $69560 -in.representative_income 69561 Representative total house income in the dwelling unit is $69561 -in.representative_income 69571 Representative total house income in the dwelling unit is $69571 -in.representative_income 69582 Representative total house income in the dwelling unit is $69582 -in.representative_income 69599 Representative total house income in the dwelling unit is $69599 -in.representative_income 69604 Representative total house income in the dwelling unit is $69604 -in.representative_income 69614 Representative total house income in the dwelling unit is $69614 -in.representative_income 69623 Representative total house income in the dwelling unit is $69623 -in.representative_income 69643 Representative total house income in the dwelling unit is $69643 -in.representative_income 69667 Representative total house income in the dwelling unit is $69667 -in.representative_income 69675 Representative total house income in the dwelling unit is $69675 -in.representative_income 69678 Representative total house income in the dwelling unit is $69678 -in.representative_income 69687 Representative total house income in the dwelling unit is $69687 -in.representative_income 69690 Representative total house income in the dwelling unit is $69690 -in.representative_income 69700 Representative total house income in the dwelling unit is $69700 -in.representative_income 69705 Representative total house income in the dwelling unit is $69705 -in.representative_income 69709 Representative total house income in the dwelling unit is $69709 -in.representative_income 69710 Representative total house income in the dwelling unit is $69710 -in.representative_income 69721 Representative total house income in the dwelling unit is $69721 -in.representative_income 69726 Representative total house income in the dwelling unit is $69726 -in.representative_income 69730 Representative total house income in the dwelling unit is $69730 -in.representative_income 69733 Representative total house income in the dwelling unit is $69733 -in.representative_income 69747 Representative total house income in the dwelling unit is $69747 -in.representative_income 69774 Representative total house income in the dwelling unit is $69774 -in.representative_income 69778 Representative total house income in the dwelling unit is $69778 -in.representative_income 69788 Representative total house income in the dwelling unit is $69788 -in.representative_income 69798 Representative total house income in the dwelling unit is $69798 -in.representative_income 69799 Representative total house income in the dwelling unit is $69799 -in.representative_income 69802 Representative total house income in the dwelling unit is $69802 -in.representative_income 69815 Representative total house income in the dwelling unit is $69815 -in.representative_income 69830 Representative total house income in the dwelling unit is $69830 -in.representative_income 69836 Representative total house income in the dwelling unit is $69836 -in.representative_income 69850 Representative total house income in the dwelling unit is $69850 -in.representative_income 69877 Representative total house income in the dwelling unit is $69877 -in.representative_income 69880 Representative total house income in the dwelling unit is $69880 -in.representative_income 69881 Representative total house income in the dwelling unit is $69881 -in.representative_income 69892 Representative total house income in the dwelling unit is $69892 -in.representative_income 69902 Representative total house income in the dwelling unit is $69902 -in.representative_income 69903 Representative total house income in the dwelling unit is $69903 -in.representative_income 69906 Representative total house income in the dwelling unit is $69906 -in.representative_income 69912 Representative total house income in the dwelling unit is $69912 -in.representative_income 69921 Representative total house income in the dwelling unit is $69921 -in.representative_income 69922 Representative total house income in the dwelling unit is $69922 -in.representative_income 69932 Representative total house income in the dwelling unit is $69932 -in.representative_income 69936 Representative total house income in the dwelling unit is $69936 -in.representative_income 69942 Representative total house income in the dwelling unit is $69942 -in.representative_income 69989 Representative total house income in the dwelling unit is $69989 -in.representative_income 70003 Representative total house income in the dwelling unit is $70003 -in.representative_income 70014 Representative total house income in the dwelling unit is $70014 -in.representative_income 70026 Representative total house income in the dwelling unit is $70026 -in.representative_income 70031 Representative total house income in the dwelling unit is $70031 -in.representative_income 70035 Representative total house income in the dwelling unit is $70035 -in.representative_income 70054 Representative total house income in the dwelling unit is $70054 -in.representative_income 70096 Representative total house income in the dwelling unit is $70096 -in.representative_income 70104 Representative total house income in the dwelling unit is $70104 -in.representative_income 70121 Representative total house income in the dwelling unit is $70121 -in.representative_income 70123 Representative total house income in the dwelling unit is $70123 -in.representative_income 70128 Representative total house income in the dwelling unit is $70128 -in.representative_income 70131 Representative total house income in the dwelling unit is $70131 -in.representative_income 70139 Representative total house income in the dwelling unit is $70139 -in.representative_income 70145 Representative total house income in the dwelling unit is $70145 -in.representative_income 70204 Representative total house income in the dwelling unit is $70204 -in.representative_income 70205 Representative total house income in the dwelling unit is $70205 -in.representative_income 70231 Representative total house income in the dwelling unit is $70231 -in.representative_income 70236 Representative total house income in the dwelling unit is $70236 -in.representative_income 70237 Representative total house income in the dwelling unit is $70237 -in.representative_income 70242 Representative total house income in the dwelling unit is $70242 -in.representative_income 70252 Representative total house income in the dwelling unit is $70252 -in.representative_income 70262 Representative total house income in the dwelling unit is $70262 -in.representative_income 70272 Representative total house income in the dwelling unit is $70272 -in.representative_income 70285 Representative total house income in the dwelling unit is $70285 -in.representative_income 70306 Representative total house income in the dwelling unit is $70306 -in.representative_income 70311 Representative total house income in the dwelling unit is $70311 -in.representative_income 70339 Representative total house income in the dwelling unit is $70339 -in.representative_income 70345 Representative total house income in the dwelling unit is $70345 -in.representative_income 70386 Representative total house income in the dwelling unit is $70386 -in.representative_income 70397 Representative total house income in the dwelling unit is $70397 -in.representative_income 70407 Representative total house income in the dwelling unit is $70407 -in.representative_income 70417 Representative total house income in the dwelling unit is $70417 -in.representative_income 70418 Representative total house income in the dwelling unit is $70418 -in.representative_income 70447 Representative total house income in the dwelling unit is $70447 -in.representative_income 70448 Representative total house income in the dwelling unit is $70448 -in.representative_income 70490 Representative total house income in the dwelling unit is $70490 -in.representative_income 70508 Representative total house income in the dwelling unit is $70508 -in.representative_income 70518 Representative total house income in the dwelling unit is $70518 -in.representative_income 70525 Representative total house income in the dwelling unit is $70525 -in.representative_income 70551 Representative total house income in the dwelling unit is $70551 -in.representative_income 70553 Representative total house income in the dwelling unit is $70553 -in.representative_income 70555 Representative total house income in the dwelling unit is $70555 -in.representative_income 70559 Representative total house income in the dwelling unit is $70559 -in.representative_income 70564 Representative total house income in the dwelling unit is $70564 -in.representative_income 70595 Representative total house income in the dwelling unit is $70595 -in.representative_income 70609 Representative total house income in the dwelling unit is $70609 -in.representative_income 70626 Representative total house income in the dwelling unit is $70626 -in.representative_income 70633 Representative total house income in the dwelling unit is $70633 -in.representative_income 70654 Representative total house income in the dwelling unit is $70654 -in.representative_income 70659 Representative total house income in the dwelling unit is $70659 -in.representative_income 70663 Representative total house income in the dwelling unit is $70663 -in.representative_income 70680 Representative total house income in the dwelling unit is $70680 -in.representative_income 70699 Representative total house income in the dwelling unit is $70699 -in.representative_income 70710 Representative total house income in the dwelling unit is $70710 -in.representative_income 70716 Representative total house income in the dwelling unit is $70716 -in.representative_income 70725 Representative total house income in the dwelling unit is $70725 -in.representative_income 70740 Representative total house income in the dwelling unit is $70740 -in.representative_income 70741 Representative total house income in the dwelling unit is $70741 -in.representative_income 70751 Representative total house income in the dwelling unit is $70751 -in.representative_income 70758 Representative total house income in the dwelling unit is $70758 -in.representative_income 70764 Representative total house income in the dwelling unit is $70764 -in.representative_income 70770 Representative total house income in the dwelling unit is $70770 -in.representative_income 70785 Representative total house income in the dwelling unit is $70785 -in.representative_income 70791 Representative total house income in the dwelling unit is $70791 -in.representative_income 70799 Representative total house income in the dwelling unit is $70799 -in.representative_income 70804 Representative total house income in the dwelling unit is $70804 -in.representative_income 70811 Representative total house income in the dwelling unit is $70811 -in.representative_income 70817 Representative total house income in the dwelling unit is $70817 -in.representative_income 70826 Representative total house income in the dwelling unit is $70826 -in.representative_income 70848 Representative total house income in the dwelling unit is $70848 -in.representative_income 70861 Representative total house income in the dwelling unit is $70861 -in.representative_income 70862 Representative total house income in the dwelling unit is $70862 -in.representative_income 70869 Representative total house income in the dwelling unit is $70869 -in.representative_income 70878 Representative total house income in the dwelling unit is $70878 -in.representative_income 70912 Representative total house income in the dwelling unit is $70912 -in.representative_income 70913 Representative total house income in the dwelling unit is $70913 -in.representative_income 70943 Representative total house income in the dwelling unit is $70943 -in.representative_income 70944 Representative total house income in the dwelling unit is $70944 -in.representative_income 70955 Representative total house income in the dwelling unit is $70955 -in.representative_income 70963 Representative total house income in the dwelling unit is $70963 -in.representative_income 70964 Representative total house income in the dwelling unit is $70964 -in.representative_income 70966 Representative total house income in the dwelling unit is $70966 -in.representative_income 70975 Representative total house income in the dwelling unit is $70975 -in.representative_income 70987 Representative total house income in the dwelling unit is $70987 -in.representative_income 70993 Representative total house income in the dwelling unit is $70993 -in.representative_income 70995 Representative total house income in the dwelling unit is $70995 -in.representative_income 71013 Representative total house income in the dwelling unit is $71013 -in.representative_income 71028 Representative total house income in the dwelling unit is $71028 -in.representative_income 71041 Representative total house income in the dwelling unit is $71041 -in.representative_income 71062 Representative total house income in the dwelling unit is $71062 -in.representative_income 71064 Representative total house income in the dwelling unit is $71064 -in.representative_income 71067 Representative total house income in the dwelling unit is $71067 -in.representative_income 71081 Representative total house income in the dwelling unit is $71081 -in.representative_income 71095 Representative total house income in the dwelling unit is $71095 -in.representative_income 71108 Representative total house income in the dwelling unit is $71108 -in.representative_income 71114 Representative total house income in the dwelling unit is $71114 -in.representative_income 71116 Representative total house income in the dwelling unit is $71116 -in.representative_income 71117 Representative total house income in the dwelling unit is $71117 -in.representative_income 71123 Representative total house income in the dwelling unit is $71123 -in.representative_income 71148 Representative total house income in the dwelling unit is $71148 -in.representative_income 71155 Representative total house income in the dwelling unit is $71155 -in.representative_income 71170 Representative total house income in the dwelling unit is $71170 -in.representative_income 71186 Representative total house income in the dwelling unit is $71186 -in.representative_income 71190 Representative total house income in the dwelling unit is $71190 -in.representative_income 71201 Representative total house income in the dwelling unit is $71201 -in.representative_income 71203 Representative total house income in the dwelling unit is $71203 -in.representative_income 71215 Representative total house income in the dwelling unit is $71215 -in.representative_income 71273 Representative total house income in the dwelling unit is $71273 -in.representative_income 71277 Representative total house income in the dwelling unit is $71277 -in.representative_income 71291 Representative total house income in the dwelling unit is $71291 -in.representative_income 71299 Representative total house income in the dwelling unit is $71299 -in.representative_income 71311 Representative total house income in the dwelling unit is $71311 -in.representative_income 71315 Representative total house income in the dwelling unit is $71315 -in.representative_income 71316 Representative total house income in the dwelling unit is $71316 -in.representative_income 71322 Representative total house income in the dwelling unit is $71322 -in.representative_income 71331 Representative total house income in the dwelling unit is $71331 -in.representative_income 71336 Representative total house income in the dwelling unit is $71336 -in.representative_income 71342 Representative total house income in the dwelling unit is $71342 -in.representative_income 71354 Representative total house income in the dwelling unit is $71354 -in.representative_income 71365 Representative total house income in the dwelling unit is $71365 -in.representative_income 71377 Representative total house income in the dwelling unit is $71377 -in.representative_income 71384 Representative total house income in the dwelling unit is $71384 -in.representative_income 71385 Representative total house income in the dwelling unit is $71385 -in.representative_income 71397 Representative total house income in the dwelling unit is $71397 -in.representative_income 71417 Representative total house income in the dwelling unit is $71417 -in.representative_income 71419 Representative total house income in the dwelling unit is $71419 -in.representative_income 71427 Representative total house income in the dwelling unit is $71427 -in.representative_income 71451 Representative total house income in the dwelling unit is $71451 -in.representative_income 71462 Representative total house income in the dwelling unit is $71462 -in.representative_income 71480 Representative total house income in the dwelling unit is $71480 -in.representative_income 71491 Representative total house income in the dwelling unit is $71491 -in.representative_income 71496 Representative total house income in the dwelling unit is $71496 -in.representative_income 71502 Representative total house income in the dwelling unit is $71502 -in.representative_income 71508 Representative total house income in the dwelling unit is $71508 -in.representative_income 71518 Representative total house income in the dwelling unit is $71518 -in.representative_income 71527 Representative total house income in the dwelling unit is $71527 -in.representative_income 71535 Representative total house income in the dwelling unit is $71535 -in.representative_income 71569 Representative total house income in the dwelling unit is $71569 -in.representative_income 71578 Representative total house income in the dwelling unit is $71578 -in.representative_income 71582 Representative total house income in the dwelling unit is $71582 -in.representative_income 71583 Representative total house income in the dwelling unit is $71583 -in.representative_income 71599 Representative total house income in the dwelling unit is $71599 -in.representative_income 71602 Representative total house income in the dwelling unit is $71602 -in.representative_income 71607 Representative total house income in the dwelling unit is $71607 -in.representative_income 71608 Representative total house income in the dwelling unit is $71608 -in.representative_income 71609 Representative total house income in the dwelling unit is $71609 -in.representative_income 71613 Representative total house income in the dwelling unit is $71613 -in.representative_income 71619 Representative total house income in the dwelling unit is $71619 -in.representative_income 71635 Representative total house income in the dwelling unit is $71635 -in.representative_income 71644 Representative total house income in the dwelling unit is $71644 -in.representative_income 71650 Representative total house income in the dwelling unit is $71650 -in.representative_income 71681 Representative total house income in the dwelling unit is $71681 -in.representative_income 71686 Representative total house income in the dwelling unit is $71686 -in.representative_income 71690 Representative total house income in the dwelling unit is $71690 -in.representative_income 71700 Representative total house income in the dwelling unit is $71700 -in.representative_income 71706 Representative total house income in the dwelling unit is $71706 -in.representative_income 71711 Representative total house income in the dwelling unit is $71711 -in.representative_income 71714 Representative total house income in the dwelling unit is $71714 -in.representative_income 71720 Representative total house income in the dwelling unit is $71720 -in.representative_income 71724 Representative total house income in the dwelling unit is $71724 -in.representative_income 71737 Representative total house income in the dwelling unit is $71737 -in.representative_income 71738 Representative total house income in the dwelling unit is $71738 -in.representative_income 71744 Representative total house income in the dwelling unit is $71744 -in.representative_income 71751 Representative total house income in the dwelling unit is $71751 -in.representative_income 71755 Representative total house income in the dwelling unit is $71755 -in.representative_income 71758 Representative total house income in the dwelling unit is $71758 -in.representative_income 71771 Representative total house income in the dwelling unit is $71771 -in.representative_income 71776 Representative total house income in the dwelling unit is $71776 -in.representative_income 71789 Representative total house income in the dwelling unit is $71789 -in.representative_income 71814 Representative total house income in the dwelling unit is $71814 -in.representative_income 71819 Representative total house income in the dwelling unit is $71819 -in.representative_income 71821 Representative total house income in the dwelling unit is $71821 -in.representative_income 71842 Representative total house income in the dwelling unit is $71842 -in.representative_income 71852 Representative total house income in the dwelling unit is $71852 -in.representative_income 71871 Representative total house income in the dwelling unit is $71871 -in.representative_income 71878 Representative total house income in the dwelling unit is $71878 -in.representative_income 71882 Representative total house income in the dwelling unit is $71882 -in.representative_income 71892 Representative total house income in the dwelling unit is $71892 -in.representative_income 71899 Representative total house income in the dwelling unit is $71899 -in.representative_income 71900 Representative total house income in the dwelling unit is $71900 -in.representative_income 71905 Representative total house income in the dwelling unit is $71905 -in.representative_income 71912 Representative total house income in the dwelling unit is $71912 -in.representative_income 71921 Representative total house income in the dwelling unit is $71921 -in.representative_income 71922 Representative total house income in the dwelling unit is $71922 -in.representative_income 71924 Representative total house income in the dwelling unit is $71924 -in.representative_income 71943 Representative total house income in the dwelling unit is $71943 -in.representative_income 71959 Representative total house income in the dwelling unit is $71959 -in.representative_income 71973 Representative total house income in the dwelling unit is $71973 -in.representative_income 71975 Representative total house income in the dwelling unit is $71975 -in.representative_income 71983 Representative total house income in the dwelling unit is $71983 -in.representative_income 71984 Representative total house income in the dwelling unit is $71984 -in.representative_income 71996 Representative total house income in the dwelling unit is $71996 -in.representative_income 72006 Representative total house income in the dwelling unit is $72006 -in.representative_income 72013 Representative total house income in the dwelling unit is $72013 -in.representative_income 72023 Representative total house income in the dwelling unit is $72023 -in.representative_income 72028 Representative total house income in the dwelling unit is $72028 -in.representative_income 72030 Representative total house income in the dwelling unit is $72030 -in.representative_income 72040 Representative total house income in the dwelling unit is $72040 -in.representative_income 72061 Representative total house income in the dwelling unit is $72061 -in.representative_income 72067 Representative total house income in the dwelling unit is $72067 -in.representative_income 72068 Representative total house income in the dwelling unit is $72068 -in.representative_income 72082 Representative total house income in the dwelling unit is $72082 -in.representative_income 72091 Representative total house income in the dwelling unit is $72091 -in.representative_income 72094 Representative total house income in the dwelling unit is $72094 -in.representative_income 72098 Representative total house income in the dwelling unit is $72098 -in.representative_income 72100 Representative total house income in the dwelling unit is $72100 -in.representative_income 72121 Representative total house income in the dwelling unit is $72121 -in.representative_income 72124 Representative total house income in the dwelling unit is $72124 -in.representative_income 72135 Representative total house income in the dwelling unit is $72135 -in.representative_income 72136 Representative total house income in the dwelling unit is $72136 -in.representative_income 72139 Representative total house income in the dwelling unit is $72139 -in.representative_income 72143 Representative total house income in the dwelling unit is $72143 -in.representative_income 72145 Representative total house income in the dwelling unit is $72145 -in.representative_income 72175 Representative total house income in the dwelling unit is $72175 -in.representative_income 72182 Representative total house income in the dwelling unit is $72182 -in.representative_income 72201 Representative total house income in the dwelling unit is $72201 -in.representative_income 72205 Representative total house income in the dwelling unit is $72205 -in.representative_income 72212 Representative total house income in the dwelling unit is $72212 -in.representative_income 72219 Representative total house income in the dwelling unit is $72219 -in.representative_income 72223 Representative total house income in the dwelling unit is $72223 -in.representative_income 72225 Representative total house income in the dwelling unit is $72225 -in.representative_income 72229 Representative total house income in the dwelling unit is $72229 -in.representative_income 72233 Representative total house income in the dwelling unit is $72233 -in.representative_income 72240 Representative total house income in the dwelling unit is $72240 -in.representative_income 72241 Representative total house income in the dwelling unit is $72241 -in.representative_income 72243 Representative total house income in the dwelling unit is $72243 -in.representative_income 72256 Representative total house income in the dwelling unit is $72256 -in.representative_income 72263 Representative total house income in the dwelling unit is $72263 -in.representative_income 72267 Representative total house income in the dwelling unit is $72267 -in.representative_income 72283 Representative total house income in the dwelling unit is $72283 -in.representative_income 72286 Representative total house income in the dwelling unit is $72286 -in.representative_income 72293 Representative total house income in the dwelling unit is $72293 -in.representative_income 72294 Representative total house income in the dwelling unit is $72294 -in.representative_income 72296 Representative total house income in the dwelling unit is $72296 -in.representative_income 72305 Representative total house income in the dwelling unit is $72305 -in.representative_income 72325 Representative total house income in the dwelling unit is $72325 -in.representative_income 72326 Representative total house income in the dwelling unit is $72326 -in.representative_income 72337 Representative total house income in the dwelling unit is $72337 -in.representative_income 72346 Representative total house income in the dwelling unit is $72346 -in.representative_income 72351 Representative total house income in the dwelling unit is $72351 -in.representative_income 72378 Representative total house income in the dwelling unit is $72378 -in.representative_income 72382 Representative total house income in the dwelling unit is $72382 -in.representative_income 72391 Representative total house income in the dwelling unit is $72391 -in.representative_income 72399 Representative total house income in the dwelling unit is $72399 -in.representative_income 72402 Representative total house income in the dwelling unit is $72402 -in.representative_income 72408 Representative total house income in the dwelling unit is $72408 -in.representative_income 72413 Representative total house income in the dwelling unit is $72413 -in.representative_income 72415 Representative total house income in the dwelling unit is $72415 -in.representative_income 72418 Representative total house income in the dwelling unit is $72418 -in.representative_income 72423 Representative total house income in the dwelling unit is $72423 -in.representative_income 72427 Representative total house income in the dwelling unit is $72427 -in.representative_income 72434 Representative total house income in the dwelling unit is $72434 -in.representative_income 72437 Representative total house income in the dwelling unit is $72437 -in.representative_income 72445 Representative total house income in the dwelling unit is $72445 -in.representative_income 72448 Representative total house income in the dwelling unit is $72448 -in.representative_income 72452 Representative total house income in the dwelling unit is $72452 -in.representative_income 72458 Representative total house income in the dwelling unit is $72458 -in.representative_income 72460 Representative total house income in the dwelling unit is $72460 -in.representative_income 72462 Representative total house income in the dwelling unit is $72462 -in.representative_income 72478 Representative total house income in the dwelling unit is $72478 -in.representative_income 72479 Representative total house income in the dwelling unit is $72479 -in.representative_income 72490 Representative total house income in the dwelling unit is $72490 -in.representative_income 72497 Representative total house income in the dwelling unit is $72497 -in.representative_income 72500 Representative total house income in the dwelling unit is $72500 -in.representative_income 72501 Representative total house income in the dwelling unit is $72501 -in.representative_income 72503 Representative total house income in the dwelling unit is $72503 -in.representative_income 72504 Representative total house income in the dwelling unit is $72504 -in.representative_income 72511 Representative total house income in the dwelling unit is $72511 -in.representative_income 72522 Representative total house income in the dwelling unit is $72522 -in.representative_income 72528 Representative total house income in the dwelling unit is $72528 -in.representative_income 72543 Representative total house income in the dwelling unit is $72543 -in.representative_income 72557 Representative total house income in the dwelling unit is $72557 -in.representative_income 72559 Representative total house income in the dwelling unit is $72559 -in.representative_income 72565 Representative total house income in the dwelling unit is $72565 -in.representative_income 72608 Representative total house income in the dwelling unit is $72608 -in.representative_income 72611 Representative total house income in the dwelling unit is $72611 -in.representative_income 72615 Representative total house income in the dwelling unit is $72615 -in.representative_income 72629 Representative total house income in the dwelling unit is $72629 -in.representative_income 72635 Representative total house income in the dwelling unit is $72635 -in.representative_income 72640 Representative total house income in the dwelling unit is $72640 -in.representative_income 72651 Representative total house income in the dwelling unit is $72651 -in.representative_income 72652 Representative total house income in the dwelling unit is $72652 -in.representative_income 72655 Representative total house income in the dwelling unit is $72655 -in.representative_income 72662 Representative total house income in the dwelling unit is $72662 -in.representative_income 72663 Representative total house income in the dwelling unit is $72663 -in.representative_income 72672 Representative total house income in the dwelling unit is $72672 -in.representative_income 72683 Representative total house income in the dwelling unit is $72683 -in.representative_income 72708 Representative total house income in the dwelling unit is $72708 -in.representative_income 72716 Representative total house income in the dwelling unit is $72716 -in.representative_income 72717 Representative total house income in the dwelling unit is $72717 -in.representative_income 72726 Representative total house income in the dwelling unit is $72726 -in.representative_income 72727 Representative total house income in the dwelling unit is $72727 -in.representative_income 72730 Representative total house income in the dwelling unit is $72730 -in.representative_income 72741 Representative total house income in the dwelling unit is $72741 -in.representative_income 72742 Representative total house income in the dwelling unit is $72742 -in.representative_income 72757 Representative total house income in the dwelling unit is $72757 -in.representative_income 72768 Representative total house income in the dwelling unit is $72768 -in.representative_income 72769 Representative total house income in the dwelling unit is $72769 -in.representative_income 72770 Representative total house income in the dwelling unit is $72770 -in.representative_income 72780 Representative total house income in the dwelling unit is $72780 -in.representative_income 72781 Representative total house income in the dwelling unit is $72781 -in.representative_income 72800 Representative total house income in the dwelling unit is $72800 -in.representative_income 72801 Representative total house income in the dwelling unit is $72801 -in.representative_income 72802 Representative total house income in the dwelling unit is $72802 -in.representative_income 72810 Representative total house income in the dwelling unit is $72810 -in.representative_income 72811 Representative total house income in the dwelling unit is $72811 -in.representative_income 72820 Representative total house income in the dwelling unit is $72820 -in.representative_income 72824 Representative total house income in the dwelling unit is $72824 -in.representative_income 72825 Representative total house income in the dwelling unit is $72825 -in.representative_income 72831 Representative total house income in the dwelling unit is $72831 -in.representative_income 72835 Representative total house income in the dwelling unit is $72835 -in.representative_income 72845 Representative total house income in the dwelling unit is $72845 -in.representative_income 72849 Representative total house income in the dwelling unit is $72849 -in.representative_income 72852 Representative total house income in the dwelling unit is $72852 -in.representative_income 72856 Representative total house income in the dwelling unit is $72856 -in.representative_income 72872 Representative total house income in the dwelling unit is $72872 -in.representative_income 72873 Representative total house income in the dwelling unit is $72873 -in.representative_income 72878 Representative total house income in the dwelling unit is $72878 -in.representative_income 72887 Representative total house income in the dwelling unit is $72887 -in.representative_income 72888 Representative total house income in the dwelling unit is $72888 -in.representative_income 72895 Representative total house income in the dwelling unit is $72895 -in.representative_income 72898 Representative total house income in the dwelling unit is $72898 -in.representative_income 72909 Representative total house income in the dwelling unit is $72909 -in.representative_income 72916 Representative total house income in the dwelling unit is $72916 -in.representative_income 72919 Representative total house income in the dwelling unit is $72919 -in.representative_income 72924 Representative total house income in the dwelling unit is $72924 -in.representative_income 72926 Representative total house income in the dwelling unit is $72926 -in.representative_income 72932 Representative total house income in the dwelling unit is $72932 -in.representative_income 72936 Representative total house income in the dwelling unit is $72936 -in.representative_income 72947 Representative total house income in the dwelling unit is $72947 -in.representative_income 72962 Representative total house income in the dwelling unit is $72962 -in.representative_income 72965 Representative total house income in the dwelling unit is $72965 -in.representative_income 72975 Representative total house income in the dwelling unit is $72975 -in.representative_income 72979 Representative total house income in the dwelling unit is $72979 -in.representative_income 72983 Representative total house income in the dwelling unit is $72983 -in.representative_income 72984 Representative total house income in the dwelling unit is $72984 -in.representative_income 72986 Representative total house income in the dwelling unit is $72986 -in.representative_income 72995 Representative total house income in the dwelling unit is $72995 -in.representative_income 72996 Representative total house income in the dwelling unit is $72996 -in.representative_income 72999 Representative total house income in the dwelling unit is $72999 -in.representative_income 73005 Representative total house income in the dwelling unit is $73005 -in.representative_income 73012 Representative total house income in the dwelling unit is $73012 -in.representative_income 73015 Representative total house income in the dwelling unit is $73015 -in.representative_income 73016 Representative total house income in the dwelling unit is $73016 -in.representative_income 73027 Representative total house income in the dwelling unit is $73027 -in.representative_income 73029 Representative total house income in the dwelling unit is $73029 -in.representative_income 73031 Representative total house income in the dwelling unit is $73031 -in.representative_income 73033 Representative total house income in the dwelling unit is $73033 -in.representative_income 73039 Representative total house income in the dwelling unit is $73039 -in.representative_income 73040 Representative total house income in the dwelling unit is $73040 -in.representative_income 73042 Representative total house income in the dwelling unit is $73042 -in.representative_income 73043 Representative total house income in the dwelling unit is $73043 -in.representative_income 73048 Representative total house income in the dwelling unit is $73048 -in.representative_income 73052 Representative total house income in the dwelling unit is $73052 -in.representative_income 73074 Representative total house income in the dwelling unit is $73074 -in.representative_income 73078 Representative total house income in the dwelling unit is $73078 -in.representative_income 73079 Representative total house income in the dwelling unit is $73079 -in.representative_income 73080 Representative total house income in the dwelling unit is $73080 -in.representative_income 73084 Representative total house income in the dwelling unit is $73084 -in.representative_income 73094 Representative total house income in the dwelling unit is $73094 -in.representative_income 73095 Representative total house income in the dwelling unit is $73095 -in.representative_income 73099 Representative total house income in the dwelling unit is $73099 -in.representative_income 73102 Representative total house income in the dwelling unit is $73102 -in.representative_income 73109 Representative total house income in the dwelling unit is $73109 -in.representative_income 73113 Representative total house income in the dwelling unit is $73113 -in.representative_income 73119 Representative total house income in the dwelling unit is $73119 -in.representative_income 73124 Representative total house income in the dwelling unit is $73124 -in.representative_income 73125 Representative total house income in the dwelling unit is $73125 -in.representative_income 73130 Representative total house income in the dwelling unit is $73130 -in.representative_income 73135 Representative total house income in the dwelling unit is $73135 -in.representative_income 73145 Representative total house income in the dwelling unit is $73145 -in.representative_income 73147 Representative total house income in the dwelling unit is $73147 -in.representative_income 73156 Representative total house income in the dwelling unit is $73156 -in.representative_income 73160 Representative total house income in the dwelling unit is $73160 -in.representative_income 73185 Representative total house income in the dwelling unit is $73185 -in.representative_income 73190 Representative total house income in the dwelling unit is $73190 -in.representative_income 73205 Representative total house income in the dwelling unit is $73205 -in.representative_income 73206 Representative total house income in the dwelling unit is $73206 -in.representative_income 73209 Representative total house income in the dwelling unit is $73209 -in.representative_income 73211 Representative total house income in the dwelling unit is $73211 -in.representative_income 73212 Representative total house income in the dwelling unit is $73212 -in.representative_income 73220 Representative total house income in the dwelling unit is $73220 -in.representative_income 73233 Representative total house income in the dwelling unit is $73233 -in.representative_income 73236 Representative total house income in the dwelling unit is $73236 -in.representative_income 73242 Representative total house income in the dwelling unit is $73242 -in.representative_income 73244 Representative total house income in the dwelling unit is $73244 -in.representative_income 73254 Representative total house income in the dwelling unit is $73254 -in.representative_income 73255 Representative total house income in the dwelling unit is $73255 -in.representative_income 73264 Representative total house income in the dwelling unit is $73264 -in.representative_income 73269 Representative total house income in the dwelling unit is $73269 -in.representative_income 73271 Representative total house income in the dwelling unit is $73271 -in.representative_income 73274 Representative total house income in the dwelling unit is $73274 -in.representative_income 73276 Representative total house income in the dwelling unit is $73276 -in.representative_income 73278 Representative total house income in the dwelling unit is $73278 -in.representative_income 73285 Representative total house income in the dwelling unit is $73285 -in.representative_income 73295 Representative total house income in the dwelling unit is $73295 -in.representative_income 73298 Representative total house income in the dwelling unit is $73298 -in.representative_income 73301 Representative total house income in the dwelling unit is $73301 -in.representative_income 73302 Representative total house income in the dwelling unit is $73302 -in.representative_income 73316 Representative total house income in the dwelling unit is $73316 -in.representative_income 73326 Representative total house income in the dwelling unit is $73326 -in.representative_income 73336 Representative total house income in the dwelling unit is $73336 -in.representative_income 73337 Representative total house income in the dwelling unit is $73337 -in.representative_income 73346 Representative total house income in the dwelling unit is $73346 -in.representative_income 73348 Representative total house income in the dwelling unit is $73348 -in.representative_income 73364 Representative total house income in the dwelling unit is $73364 -in.representative_income 73367 Representative total house income in the dwelling unit is $73367 -in.representative_income 73377 Representative total house income in the dwelling unit is $73377 -in.representative_income 73380 Representative total house income in the dwelling unit is $73380 -in.representative_income 73387 Representative total house income in the dwelling unit is $73387 -in.representative_income 73388 Representative total house income in the dwelling unit is $73388 -in.representative_income 73400 Representative total house income in the dwelling unit is $73400 -in.representative_income 73407 Representative total house income in the dwelling unit is $73407 -in.representative_income 73409 Representative total house income in the dwelling unit is $73409 -in.representative_income 73418 Representative total house income in the dwelling unit is $73418 -in.representative_income 73421 Representative total house income in the dwelling unit is $73421 -in.representative_income 73424 Representative total house income in the dwelling unit is $73424 -in.representative_income 73428 Representative total house income in the dwelling unit is $73428 -in.representative_income 73438 Representative total house income in the dwelling unit is $73438 -in.representative_income 73439 Representative total house income in the dwelling unit is $73439 -in.representative_income 73443 Representative total house income in the dwelling unit is $73443 -in.representative_income 73445 Representative total house income in the dwelling unit is $73445 -in.representative_income 73460 Representative total house income in the dwelling unit is $73460 -in.representative_income 73472 Representative total house income in the dwelling unit is $73472 -in.representative_income 73481 Representative total house income in the dwelling unit is $73481 -in.representative_income 73483 Representative total house income in the dwelling unit is $73483 -in.representative_income 73488 Representative total house income in the dwelling unit is $73488 -in.representative_income 73494 Representative total house income in the dwelling unit is $73494 -in.representative_income 73505 Representative total house income in the dwelling unit is $73505 -in.representative_income 73506 Representative total house income in the dwelling unit is $73506 -in.representative_income 73515 Representative total house income in the dwelling unit is $73515 -in.representative_income 73516 Representative total house income in the dwelling unit is $73516 -in.representative_income 73519 Representative total house income in the dwelling unit is $73519 -in.representative_income 73526 Representative total house income in the dwelling unit is $73526 -in.representative_income 73528 Representative total house income in the dwelling unit is $73528 -in.representative_income 73532 Representative total house income in the dwelling unit is $73532 -in.representative_income 73533 Representative total house income in the dwelling unit is $73533 -in.representative_income 73539 Representative total house income in the dwelling unit is $73539 -in.representative_income 73543 Representative total house income in the dwelling unit is $73543 -in.representative_income 73548 Representative total house income in the dwelling unit is $73548 -in.representative_income 73553 Representative total house income in the dwelling unit is $73553 -in.representative_income 73559 Representative total house income in the dwelling unit is $73559 -in.representative_income 73563 Representative total house income in the dwelling unit is $73563 -in.representative_income 73569 Representative total house income in the dwelling unit is $73569 -in.representative_income 73580 Representative total house income in the dwelling unit is $73580 -in.representative_income 73591 Representative total house income in the dwelling unit is $73591 -in.representative_income 73594 Representative total house income in the dwelling unit is $73594 -in.representative_income 73606 Representative total house income in the dwelling unit is $73606 -in.representative_income 73612 Representative total house income in the dwelling unit is $73612 -in.representative_income 73619 Representative total house income in the dwelling unit is $73619 -in.representative_income 73620 Representative total house income in the dwelling unit is $73620 -in.representative_income 73623 Representative total house income in the dwelling unit is $73623 -in.representative_income 73625 Representative total house income in the dwelling unit is $73625 -in.representative_income 73629 Representative total house income in the dwelling unit is $73629 -in.representative_income 73639 Representative total house income in the dwelling unit is $73639 -in.representative_income 73640 Representative total house income in the dwelling unit is $73640 -in.representative_income 73646 Representative total house income in the dwelling unit is $73646 -in.representative_income 73650 Representative total house income in the dwelling unit is $73650 -in.representative_income 73660 Representative total house income in the dwelling unit is $73660 -in.representative_income 73670 Representative total house income in the dwelling unit is $73670 -in.representative_income 73673 Representative total house income in the dwelling unit is $73673 -in.representative_income 73687 Representative total house income in the dwelling unit is $73687 -in.representative_income 73688 Representative total house income in the dwelling unit is $73688 -in.representative_income 73695 Representative total house income in the dwelling unit is $73695 -in.representative_income 73698 Representative total house income in the dwelling unit is $73698 -in.representative_income 73703 Representative total house income in the dwelling unit is $73703 -in.representative_income 73710 Representative total house income in the dwelling unit is $73710 -in.representative_income 73714 Representative total house income in the dwelling unit is $73714 -in.representative_income 73717 Representative total house income in the dwelling unit is $73717 -in.representative_income 73720 Representative total house income in the dwelling unit is $73720 -in.representative_income 73724 Representative total house income in the dwelling unit is $73724 -in.representative_income 73729 Representative total house income in the dwelling unit is $73729 -in.representative_income 73738 Representative total house income in the dwelling unit is $73738 -in.representative_income 73741 Representative total house income in the dwelling unit is $73741 -in.representative_income 73744 Representative total house income in the dwelling unit is $73744 -in.representative_income 73746 Representative total house income in the dwelling unit is $73746 -in.representative_income 73748 Representative total house income in the dwelling unit is $73748 -in.representative_income 73751 Representative total house income in the dwelling unit is $73751 -in.representative_income 73759 Representative total house income in the dwelling unit is $73759 -in.representative_income 73761 Representative total house income in the dwelling unit is $73761 -in.representative_income 73764 Representative total house income in the dwelling unit is $73764 -in.representative_income 73769 Representative total house income in the dwelling unit is $73769 -in.representative_income 73770 Representative total house income in the dwelling unit is $73770 -in.representative_income 73775 Representative total house income in the dwelling unit is $73775 -in.representative_income 73780 Representative total house income in the dwelling unit is $73780 -in.representative_income 73781 Representative total house income in the dwelling unit is $73781 -in.representative_income 73782 Representative total house income in the dwelling unit is $73782 -in.representative_income 73789 Representative total house income in the dwelling unit is $73789 -in.representative_income 73791 Representative total house income in the dwelling unit is $73791 -in.representative_income 73796 Representative total house income in the dwelling unit is $73796 -in.representative_income 73800 Representative total house income in the dwelling unit is $73800 -in.representative_income 73811 Representative total house income in the dwelling unit is $73811 -in.representative_income 73818 Representative total house income in the dwelling unit is $73818 -in.representative_income 73821 Representative total house income in the dwelling unit is $73821 -in.representative_income 73823 Representative total house income in the dwelling unit is $73823 -in.representative_income 73832 Representative total house income in the dwelling unit is $73832 -in.representative_income 73833 Representative total house income in the dwelling unit is $73833 -in.representative_income 73836 Representative total house income in the dwelling unit is $73836 -in.representative_income 73839 Representative total house income in the dwelling unit is $73839 -in.representative_income 73841 Representative total house income in the dwelling unit is $73841 -in.representative_income 73842 Representative total house income in the dwelling unit is $73842 -in.representative_income 73843 Representative total house income in the dwelling unit is $73843 -in.representative_income 73850 Representative total house income in the dwelling unit is $73850 -in.representative_income 73852 Representative total house income in the dwelling unit is $73852 -in.representative_income 73853 Representative total house income in the dwelling unit is $73853 -in.representative_income 73854 Representative total house income in the dwelling unit is $73854 -in.representative_income 73864 Representative total house income in the dwelling unit is $73864 -in.representative_income 73872 Representative total house income in the dwelling unit is $73872 -in.representative_income 73873 Representative total house income in the dwelling unit is $73873 -in.representative_income 73875 Representative total house income in the dwelling unit is $73875 -in.representative_income 73883 Representative total house income in the dwelling unit is $73883 -in.representative_income 73884 Representative total house income in the dwelling unit is $73884 -in.representative_income 73892 Representative total house income in the dwelling unit is $73892 -in.representative_income 73893 Representative total house income in the dwelling unit is $73893 -in.representative_income 73897 Representative total house income in the dwelling unit is $73897 -in.representative_income 73898 Representative total house income in the dwelling unit is $73898 -in.representative_income 73902 Representative total house income in the dwelling unit is $73902 -in.representative_income 73904 Representative total house income in the dwelling unit is $73904 -in.representative_income 73914 Representative total house income in the dwelling unit is $73914 -in.representative_income 73915 Representative total house income in the dwelling unit is $73915 -in.representative_income 73917 Representative total house income in the dwelling unit is $73917 -in.representative_income 73922 Representative total house income in the dwelling unit is $73922 -in.representative_income 73925 Representative total house income in the dwelling unit is $73925 -in.representative_income 73928 Representative total house income in the dwelling unit is $73928 -in.representative_income 73929 Representative total house income in the dwelling unit is $73929 -in.representative_income 73936 Representative total house income in the dwelling unit is $73936 -in.representative_income 73939 Representative total house income in the dwelling unit is $73939 -in.representative_income 73943 Representative total house income in the dwelling unit is $73943 -in.representative_income 73948 Representative total house income in the dwelling unit is $73948 -in.representative_income 73949 Representative total house income in the dwelling unit is $73949 -in.representative_income 73955 Representative total house income in the dwelling unit is $73955 -in.representative_income 73958 Representative total house income in the dwelling unit is $73958 -in.representative_income 73959 Representative total house income in the dwelling unit is $73959 -in.representative_income 73960 Representative total house income in the dwelling unit is $73960 -in.representative_income 73961 Representative total house income in the dwelling unit is $73961 -in.representative_income 73971 Representative total house income in the dwelling unit is $73971 -in.representative_income 73981 Representative total house income in the dwelling unit is $73981 -in.representative_income 73991 Representative total house income in the dwelling unit is $73991 -in.representative_income 73993 Representative total house income in the dwelling unit is $73993 -in.representative_income 74002 Representative total house income in the dwelling unit is $74002 -in.representative_income 74003 Representative total house income in the dwelling unit is $74003 -in.representative_income 74007 Representative total house income in the dwelling unit is $74007 -in.representative_income 74011 Representative total house income in the dwelling unit is $74011 -in.representative_income 74012 Representative total house income in the dwelling unit is $74012 -in.representative_income 74014 Representative total house income in the dwelling unit is $74014 -in.representative_income 74017 Representative total house income in the dwelling unit is $74017 -in.representative_income 74018 Representative total house income in the dwelling unit is $74018 -in.representative_income 74022 Representative total house income in the dwelling unit is $74022 -in.representative_income 74025 Representative total house income in the dwelling unit is $74025 -in.representative_income 74027 Representative total house income in the dwelling unit is $74027 -in.representative_income 74033 Representative total house income in the dwelling unit is $74033 -in.representative_income 74042 Representative total house income in the dwelling unit is $74042 -in.representative_income 74043 Representative total house income in the dwelling unit is $74043 -in.representative_income 74044 Representative total house income in the dwelling unit is $74044 -in.representative_income 74049 Representative total house income in the dwelling unit is $74049 -in.representative_income 74054 Representative total house income in the dwelling unit is $74054 -in.representative_income 74055 Representative total house income in the dwelling unit is $74055 -in.representative_income 74056 Representative total house income in the dwelling unit is $74056 -in.representative_income 74058 Representative total house income in the dwelling unit is $74058 -in.representative_income 74061 Representative total house income in the dwelling unit is $74061 -in.representative_income 74065 Representative total house income in the dwelling unit is $74065 -in.representative_income 74066 Representative total house income in the dwelling unit is $74066 -in.representative_income 74068 Representative total house income in the dwelling unit is $74068 -in.representative_income 74069 Representative total house income in the dwelling unit is $74069 -in.representative_income 74074 Representative total house income in the dwelling unit is $74074 -in.representative_income 74076 Representative total house income in the dwelling unit is $74076 -in.representative_income 74077 Representative total house income in the dwelling unit is $74077 -in.representative_income 74086 Representative total house income in the dwelling unit is $74086 -in.representative_income 74089 Representative total house income in the dwelling unit is $74089 -in.representative_income 74094 Representative total house income in the dwelling unit is $74094 -in.representative_income 74104 Representative total house income in the dwelling unit is $74104 -in.representative_income 74106 Representative total house income in the dwelling unit is $74106 -in.representative_income 74110 Representative total house income in the dwelling unit is $74110 -in.representative_income 74114 Representative total house income in the dwelling unit is $74114 -in.representative_income 74117 Representative total house income in the dwelling unit is $74117 -in.representative_income 74121 Representative total house income in the dwelling unit is $74121 -in.representative_income 74128 Representative total house income in the dwelling unit is $74128 -in.representative_income 74130 Representative total house income in the dwelling unit is $74130 -in.representative_income 74131 Representative total house income in the dwelling unit is $74131 -in.representative_income 74138 Representative total house income in the dwelling unit is $74138 -in.representative_income 74143 Representative total house income in the dwelling unit is $74143 -in.representative_income 74144 Representative total house income in the dwelling unit is $74144 -in.representative_income 74145 Representative total house income in the dwelling unit is $74145 -in.representative_income 74147 Representative total house income in the dwelling unit is $74147 -in.representative_income 74151 Representative total house income in the dwelling unit is $74151 -in.representative_income 74153 Representative total house income in the dwelling unit is $74153 -in.representative_income 74157 Representative total house income in the dwelling unit is $74157 -in.representative_income 74160 Representative total house income in the dwelling unit is $74160 -in.representative_income 74162 Representative total house income in the dwelling unit is $74162 -in.representative_income 74165 Representative total house income in the dwelling unit is $74165 -in.representative_income 74166 Representative total house income in the dwelling unit is $74166 -in.representative_income 74170 Representative total house income in the dwelling unit is $74170 -in.representative_income 74171 Representative total house income in the dwelling unit is $74171 -in.representative_income 74173 Representative total house income in the dwelling unit is $74173 -in.representative_income 74175 Representative total house income in the dwelling unit is $74175 -in.representative_income 74176 Representative total house income in the dwelling unit is $74176 -in.representative_income 74182 Representative total house income in the dwelling unit is $74182 -in.representative_income 74185 Representative total house income in the dwelling unit is $74185 -in.representative_income 74192 Representative total house income in the dwelling unit is $74192 -in.representative_income 74195 Representative total house income in the dwelling unit is $74195 -in.representative_income 74196 Representative total house income in the dwelling unit is $74196 -in.representative_income 74197 Representative total house income in the dwelling unit is $74197 -in.representative_income 74200 Representative total house income in the dwelling unit is $74200 -in.representative_income 74202 Representative total house income in the dwelling unit is $74202 -in.representative_income 74216 Representative total house income in the dwelling unit is $74216 -in.representative_income 74218 Representative total house income in the dwelling unit is $74218 -in.representative_income 74224 Representative total house income in the dwelling unit is $74224 -in.representative_income 74229 Representative total house income in the dwelling unit is $74229 -in.representative_income 74230 Representative total house income in the dwelling unit is $74230 -in.representative_income 74234 Representative total house income in the dwelling unit is $74234 -in.representative_income 74239 Representative total house income in the dwelling unit is $74239 -in.representative_income 74245 Representative total house income in the dwelling unit is $74245 -in.representative_income 74246 Representative total house income in the dwelling unit is $74246 -in.representative_income 74250 Representative total house income in the dwelling unit is $74250 -in.representative_income 74254 Representative total house income in the dwelling unit is $74254 -in.representative_income 74255 Representative total house income in the dwelling unit is $74255 -in.representative_income 74261 Representative total house income in the dwelling unit is $74261 -in.representative_income 74264 Representative total house income in the dwelling unit is $74264 -in.representative_income 74266 Representative total house income in the dwelling unit is $74266 -in.representative_income 74270 Representative total house income in the dwelling unit is $74270 -in.representative_income 74275 Representative total house income in the dwelling unit is $74275 -in.representative_income 74276 Representative total house income in the dwelling unit is $74276 -in.representative_income 74280 Representative total house income in the dwelling unit is $74280 -in.representative_income 74282 Representative total house income in the dwelling unit is $74282 -in.representative_income 74285 Representative total house income in the dwelling unit is $74285 -in.representative_income 74295 Representative total house income in the dwelling unit is $74295 -in.representative_income 74297 Representative total house income in the dwelling unit is $74297 -in.representative_income 74305 Representative total house income in the dwelling unit is $74305 -in.representative_income 74306 Representative total house income in the dwelling unit is $74306 -in.representative_income 74307 Representative total house income in the dwelling unit is $74307 -in.representative_income 74310 Representative total house income in the dwelling unit is $74310 -in.representative_income 74312 Representative total house income in the dwelling unit is $74312 -in.representative_income 74315 Representative total house income in the dwelling unit is $74315 -in.representative_income 74316 Representative total house income in the dwelling unit is $74316 -in.representative_income 74326 Representative total house income in the dwelling unit is $74326 -in.representative_income 74327 Representative total house income in the dwelling unit is $74327 -in.representative_income 74328 Representative total house income in the dwelling unit is $74328 -in.representative_income 74331 Representative total house income in the dwelling unit is $74331 -in.representative_income 74332 Representative total house income in the dwelling unit is $74332 -in.representative_income 74336 Representative total house income in the dwelling unit is $74336 -in.representative_income 74337 Representative total house income in the dwelling unit is $74337 -in.representative_income 74347 Representative total house income in the dwelling unit is $74347 -in.representative_income 74348 Representative total house income in the dwelling unit is $74348 -in.representative_income 74350 Representative total house income in the dwelling unit is $74350 -in.representative_income 74357 Representative total house income in the dwelling unit is $74357 -in.representative_income 74360 Representative total house income in the dwelling unit is $74360 -in.representative_income 74367 Representative total house income in the dwelling unit is $74367 -in.representative_income 74371 Representative total house income in the dwelling unit is $74371 -in.representative_income 74372 Representative total house income in the dwelling unit is $74372 -in.representative_income 74375 Representative total house income in the dwelling unit is $74375 -in.representative_income 74376 Representative total house income in the dwelling unit is $74376 -in.representative_income 74381 Representative total house income in the dwelling unit is $74381 -in.representative_income 74390 Representative total house income in the dwelling unit is $74390 -in.representative_income 74397 Representative total house income in the dwelling unit is $74397 -in.representative_income 74399 Representative total house income in the dwelling unit is $74399 -in.representative_income 74402 Representative total house income in the dwelling unit is $74402 -in.representative_income 74408 Representative total house income in the dwelling unit is $74408 -in.representative_income 74413 Representative total house income in the dwelling unit is $74413 -in.representative_income 74417 Representative total house income in the dwelling unit is $74417 -in.representative_income 74419 Representative total house income in the dwelling unit is $74419 -in.representative_income 74420 Representative total house income in the dwelling unit is $74420 -in.representative_income 74422 Representative total house income in the dwelling unit is $74422 -in.representative_income 74429 Representative total house income in the dwelling unit is $74429 -in.representative_income 74433 Representative total house income in the dwelling unit is $74433 -in.representative_income 74438 Representative total house income in the dwelling unit is $74438 -in.representative_income 74439 Representative total house income in the dwelling unit is $74439 -in.representative_income 74444 Representative total house income in the dwelling unit is $74444 -in.representative_income 74448 Representative total house income in the dwelling unit is $74448 -in.representative_income 74451 Representative total house income in the dwelling unit is $74451 -in.representative_income 74453 Representative total house income in the dwelling unit is $74453 -in.representative_income 74455 Representative total house income in the dwelling unit is $74455 -in.representative_income 74466 Representative total house income in the dwelling unit is $74466 -in.representative_income 74470 Representative total house income in the dwelling unit is $74470 -in.representative_income 74471 Representative total house income in the dwelling unit is $74471 -in.representative_income 74476 Representative total house income in the dwelling unit is $74476 -in.representative_income 74481 Representative total house income in the dwelling unit is $74481 -in.representative_income 74487 Representative total house income in the dwelling unit is $74487 -in.representative_income 74488 Representative total house income in the dwelling unit is $74488 -in.representative_income 74491 Representative total house income in the dwelling unit is $74491 -in.representative_income 74497 Representative total house income in the dwelling unit is $74497 -in.representative_income 74500 Representative total house income in the dwelling unit is $74500 -in.representative_income 74508 Representative total house income in the dwelling unit is $74508 -in.representative_income 74509 Representative total house income in the dwelling unit is $74509 -in.representative_income 74511 Representative total house income in the dwelling unit is $74511 -in.representative_income 74514 Representative total house income in the dwelling unit is $74514 -in.representative_income 74516 Representative total house income in the dwelling unit is $74516 -in.representative_income 74522 Representative total house income in the dwelling unit is $74522 -in.representative_income 74529 Representative total house income in the dwelling unit is $74529 -in.representative_income 74531 Representative total house income in the dwelling unit is $74531 -in.representative_income 74539 Representative total house income in the dwelling unit is $74539 -in.representative_income 74540 Representative total house income in the dwelling unit is $74540 -in.representative_income 74549 Representative total house income in the dwelling unit is $74549 -in.representative_income 74551 Representative total house income in the dwelling unit is $74551 -in.representative_income 74552 Representative total house income in the dwelling unit is $74552 -in.representative_income 74557 Representative total house income in the dwelling unit is $74557 -in.representative_income 74561 Representative total house income in the dwelling unit is $74561 -in.representative_income 74562 Representative total house income in the dwelling unit is $74562 -in.representative_income 74563 Representative total house income in the dwelling unit is $74563 -in.representative_income 74574 Representative total house income in the dwelling unit is $74574 -in.representative_income 74581 Representative total house income in the dwelling unit is $74581 -in.representative_income 74582 Representative total house income in the dwelling unit is $74582 -in.representative_income 74594 Representative total house income in the dwelling unit is $74594 -in.representative_income 74602 Representative total house income in the dwelling unit is $74602 -in.representative_income 74604 Representative total house income in the dwelling unit is $74604 -in.representative_income 74605 Representative total house income in the dwelling unit is $74605 -in.representative_income 74606 Representative total house income in the dwelling unit is $74606 -in.representative_income 74609 Representative total house income in the dwelling unit is $74609 -in.representative_income 74614 Representative total house income in the dwelling unit is $74614 -in.representative_income 74616 Representative total house income in the dwelling unit is $74616 -in.representative_income 74617 Representative total house income in the dwelling unit is $74617 -in.representative_income 74619 Representative total house income in the dwelling unit is $74619 -in.representative_income 74637 Representative total house income in the dwelling unit is $74637 -in.representative_income 74639 Representative total house income in the dwelling unit is $74639 -in.representative_income 74646 Representative total house income in the dwelling unit is $74646 -in.representative_income 74649 Representative total house income in the dwelling unit is $74649 -in.representative_income 74650 Representative total house income in the dwelling unit is $74650 -in.representative_income 74651 Representative total house income in the dwelling unit is $74651 -in.representative_income 74655 Representative total house income in the dwelling unit is $74655 -in.representative_income 74660 Representative total house income in the dwelling unit is $74660 -in.representative_income 74666 Representative total house income in the dwelling unit is $74666 -in.representative_income 74674 Representative total house income in the dwelling unit is $74674 -in.representative_income 74677 Representative total house income in the dwelling unit is $74677 -in.representative_income 74679 Representative total house income in the dwelling unit is $74679 -in.representative_income 74680 Representative total house income in the dwelling unit is $74680 -in.representative_income 74682 Representative total house income in the dwelling unit is $74682 -in.representative_income 74687 Representative total house income in the dwelling unit is $74687 -in.representative_income 74690 Representative total house income in the dwelling unit is $74690 -in.representative_income 74698 Representative total house income in the dwelling unit is $74698 -in.representative_income 74700 Representative total house income in the dwelling unit is $74700 -in.representative_income 74702 Representative total house income in the dwelling unit is $74702 -in.representative_income 74703 Representative total house income in the dwelling unit is $74703 -in.representative_income 74708 Representative total house income in the dwelling unit is $74708 -in.representative_income 74710 Representative total house income in the dwelling unit is $74710 -in.representative_income 74712 Representative total house income in the dwelling unit is $74712 -in.representative_income 74714 Representative total house income in the dwelling unit is $74714 -in.representative_income 74717 Representative total house income in the dwelling unit is $74717 -in.representative_income 74718 Representative total house income in the dwelling unit is $74718 -in.representative_income 74719 Representative total house income in the dwelling unit is $74719 -in.representative_income 74725 Representative total house income in the dwelling unit is $74725 -in.representative_income 74736 Representative total house income in the dwelling unit is $74736 -in.representative_income 74739 Representative total house income in the dwelling unit is $74739 -in.representative_income 74740 Representative total house income in the dwelling unit is $74740 -in.representative_income 74744 Representative total house income in the dwelling unit is $74744 -in.representative_income 74750 Representative total house income in the dwelling unit is $74750 -in.representative_income 74751 Representative total house income in the dwelling unit is $74751 -in.representative_income 74755 Representative total house income in the dwelling unit is $74755 -in.representative_income 74757 Representative total house income in the dwelling unit is $74757 -in.representative_income 74759 Representative total house income in the dwelling unit is $74759 -in.representative_income 74760 Representative total house income in the dwelling unit is $74760 -in.representative_income 74761 Representative total house income in the dwelling unit is $74761 -in.representative_income 74768 Representative total house income in the dwelling unit is $74768 -in.representative_income 74771 Representative total house income in the dwelling unit is $74771 -in.representative_income 74779 Representative total house income in the dwelling unit is $74779 -in.representative_income 74780 Representative total house income in the dwelling unit is $74780 -in.representative_income 74781 Representative total house income in the dwelling unit is $74781 -in.representative_income 74782 Representative total house income in the dwelling unit is $74782 -in.representative_income 74787 Representative total house income in the dwelling unit is $74787 -in.representative_income 74790 Representative total house income in the dwelling unit is $74790 -in.representative_income 74792 Representative total house income in the dwelling unit is $74792 -in.representative_income 74798 Representative total house income in the dwelling unit is $74798 -in.representative_income 74800 Representative total house income in the dwelling unit is $74800 -in.representative_income 74801 Representative total house income in the dwelling unit is $74801 -in.representative_income 74802 Representative total house income in the dwelling unit is $74802 -in.representative_income 74803 Representative total house income in the dwelling unit is $74803 -in.representative_income 74811 Representative total house income in the dwelling unit is $74811 -in.representative_income 74814 Representative total house income in the dwelling unit is $74814 -in.representative_income 74819 Representative total house income in the dwelling unit is $74819 -in.representative_income 74821 Representative total house income in the dwelling unit is $74821 -in.representative_income 74824 Representative total house income in the dwelling unit is $74824 -in.representative_income 74831 Representative total house income in the dwelling unit is $74831 -in.representative_income 74832 Representative total house income in the dwelling unit is $74832 -in.representative_income 74843 Representative total house income in the dwelling unit is $74843 -in.representative_income 74847 Representative total house income in the dwelling unit is $74847 -in.representative_income 74848 Representative total house income in the dwelling unit is $74848 -in.representative_income 74852 Representative total house income in the dwelling unit is $74852 -in.representative_income 74862 Representative total house income in the dwelling unit is $74862 -in.representative_income 74863 Representative total house income in the dwelling unit is $74863 -in.representative_income 74865 Representative total house income in the dwelling unit is $74865 -in.representative_income 74873 Representative total house income in the dwelling unit is $74873 -in.representative_income 74877 Representative total house income in the dwelling unit is $74877 -in.representative_income 74883 Representative total house income in the dwelling unit is $74883 -in.representative_income 74888 Representative total house income in the dwelling unit is $74888 -in.representative_income 74892 Representative total house income in the dwelling unit is $74892 -in.representative_income 74895 Representative total house income in the dwelling unit is $74895 -in.representative_income 74898 Representative total house income in the dwelling unit is $74898 -in.representative_income 74899 Representative total house income in the dwelling unit is $74899 -in.representative_income 74909 Representative total house income in the dwelling unit is $74909 -in.representative_income 74914 Representative total house income in the dwelling unit is $74914 -in.representative_income 74920 Representative total house income in the dwelling unit is $74920 -in.representative_income 74926 Representative total house income in the dwelling unit is $74926 -in.representative_income 74927 Representative total house income in the dwelling unit is $74927 -in.representative_income 74930 Representative total house income in the dwelling unit is $74930 -in.representative_income 74931 Representative total house income in the dwelling unit is $74931 -in.representative_income 74934 Representative total house income in the dwelling unit is $74934 -in.representative_income 74935 Representative total house income in the dwelling unit is $74935 -in.representative_income 74940 Representative total house income in the dwelling unit is $74940 -in.representative_income 74946 Representative total house income in the dwelling unit is $74946 -in.representative_income 74948 Representative total house income in the dwelling unit is $74948 -in.representative_income 74950 Representative total house income in the dwelling unit is $74950 -in.representative_income 74952 Representative total house income in the dwelling unit is $74952 -in.representative_income 74953 Representative total house income in the dwelling unit is $74953 -in.representative_income 74956 Representative total house income in the dwelling unit is $74956 -in.representative_income 74961 Representative total house income in the dwelling unit is $74961 -in.representative_income 74963 Representative total house income in the dwelling unit is $74963 -in.representative_income 74968 Representative total house income in the dwelling unit is $74968 -in.representative_income 74969 Representative total house income in the dwelling unit is $74969 -in.representative_income 74972 Representative total house income in the dwelling unit is $74972 -in.representative_income 74973 Representative total house income in the dwelling unit is $74973 -in.representative_income 74981 Representative total house income in the dwelling unit is $74981 -in.representative_income 74982 Representative total house income in the dwelling unit is $74982 -in.representative_income 74983 Representative total house income in the dwelling unit is $74983 -in.representative_income 74985 Representative total house income in the dwelling unit is $74985 -in.representative_income 74986 Representative total house income in the dwelling unit is $74986 -in.representative_income 74993 Representative total house income in the dwelling unit is $74993 -in.representative_income 75004 Representative total house income in the dwelling unit is $75004 -in.representative_income 75012 Representative total house income in the dwelling unit is $75012 -in.representative_income 75013 Representative total house income in the dwelling unit is $75013 -in.representative_income 75014 Representative total house income in the dwelling unit is $75014 -in.representative_income 75017 Representative total house income in the dwelling unit is $75017 -in.representative_income 75023 Representative total house income in the dwelling unit is $75023 -in.representative_income 75028 Representative total house income in the dwelling unit is $75028 -in.representative_income 75034 Representative total house income in the dwelling unit is $75034 -in.representative_income 75035 Representative total house income in the dwelling unit is $75035 -in.representative_income 75038 Representative total house income in the dwelling unit is $75038 -in.representative_income 75049 Representative total house income in the dwelling unit is $75049 -in.representative_income 75054 Representative total house income in the dwelling unit is $75054 -in.representative_income 75057 Representative total house income in the dwelling unit is $75057 -in.representative_income 75058 Representative total house income in the dwelling unit is $75058 -in.representative_income 75062 Representative total house income in the dwelling unit is $75062 -in.representative_income 75064 Representative total house income in the dwelling unit is $75064 -in.representative_income 75088 Representative total house income in the dwelling unit is $75088 -in.representative_income 75089 Representative total house income in the dwelling unit is $75089 -in.representative_income 75090 Representative total house income in the dwelling unit is $75090 -in.representative_income 75093 Representative total house income in the dwelling unit is $75093 -in.representative_income 75097 Representative total house income in the dwelling unit is $75097 -in.representative_income 75098 Representative total house income in the dwelling unit is $75098 -in.representative_income 75099 Representative total house income in the dwelling unit is $75099 -in.representative_income 75104 Representative total house income in the dwelling unit is $75104 -in.representative_income 75109 Representative total house income in the dwelling unit is $75109 -in.representative_income 75114 Representative total house income in the dwelling unit is $75114 -in.representative_income 75117 Representative total house income in the dwelling unit is $75117 -in.representative_income 75119 Representative total house income in the dwelling unit is $75119 -in.representative_income 75124 Representative total house income in the dwelling unit is $75124 -in.representative_income 75131 Representative total house income in the dwelling unit is $75131 -in.representative_income 75136 Representative total house income in the dwelling unit is $75136 -in.representative_income 75142 Representative total house income in the dwelling unit is $75142 -in.representative_income 75143 Representative total house income in the dwelling unit is $75143 -in.representative_income 75146 Representative total house income in the dwelling unit is $75146 -in.representative_income 75152 Representative total house income in the dwelling unit is $75152 -in.representative_income 75155 Representative total house income in the dwelling unit is $75155 -in.representative_income 75156 Representative total house income in the dwelling unit is $75156 -in.representative_income 75158 Representative total house income in the dwelling unit is $75158 -in.representative_income 75162 Representative total house income in the dwelling unit is $75162 -in.representative_income 75163 Representative total house income in the dwelling unit is $75163 -in.representative_income 75165 Representative total house income in the dwelling unit is $75165 -in.representative_income 75167 Representative total house income in the dwelling unit is $75167 -in.representative_income 75171 Representative total house income in the dwelling unit is $75171 -in.representative_income 75172 Representative total house income in the dwelling unit is $75172 -in.representative_income 75174 Representative total house income in the dwelling unit is $75174 -in.representative_income 75175 Representative total house income in the dwelling unit is $75175 -in.representative_income 75184 Representative total house income in the dwelling unit is $75184 -in.representative_income 75190 Representative total house income in the dwelling unit is $75190 -in.representative_income 75193 Representative total house income in the dwelling unit is $75193 -in.representative_income 75195 Representative total house income in the dwelling unit is $75195 -in.representative_income 75201 Representative total house income in the dwelling unit is $75201 -in.representative_income 75203 Representative total house income in the dwelling unit is $75203 -in.representative_income 75205 Representative total house income in the dwelling unit is $75205 -in.representative_income 75213 Representative total house income in the dwelling unit is $75213 -in.representative_income 75214 Representative total house income in the dwelling unit is $75214 -in.representative_income 75215 Representative total house income in the dwelling unit is $75215 -in.representative_income 75216 Representative total house income in the dwelling unit is $75216 -in.representative_income 75219 Representative total house income in the dwelling unit is $75219 -in.representative_income 75224 Representative total house income in the dwelling unit is $75224 -in.representative_income 75225 Representative total house income in the dwelling unit is $75225 -in.representative_income 75235 Representative total house income in the dwelling unit is $75235 -in.representative_income 75238 Representative total house income in the dwelling unit is $75238 -in.representative_income 75244 Representative total house income in the dwelling unit is $75244 -in.representative_income 75245 Representative total house income in the dwelling unit is $75245 -in.representative_income 75247 Representative total house income in the dwelling unit is $75247 -in.representative_income 75249 Representative total house income in the dwelling unit is $75249 -in.representative_income 75255 Representative total house income in the dwelling unit is $75255 -in.representative_income 75256 Representative total house income in the dwelling unit is $75256 -in.representative_income 75275 Representative total house income in the dwelling unit is $75275 -in.representative_income 75279 Representative total house income in the dwelling unit is $75279 -in.representative_income 75286 Representative total house income in the dwelling unit is $75286 -in.representative_income 75288 Representative total house income in the dwelling unit is $75288 -in.representative_income 75292 Representative total house income in the dwelling unit is $75292 -in.representative_income 75296 Representative total house income in the dwelling unit is $75296 -in.representative_income 75298 Representative total house income in the dwelling unit is $75298 -in.representative_income 75299 Representative total house income in the dwelling unit is $75299 -in.representative_income 75302 Representative total house income in the dwelling unit is $75302 -in.representative_income 75303 Representative total house income in the dwelling unit is $75303 -in.representative_income 75309 Representative total house income in the dwelling unit is $75309 -in.representative_income 75310 Representative total house income in the dwelling unit is $75310 -in.representative_income 75313 Representative total house income in the dwelling unit is $75313 -in.representative_income 75317 Representative total house income in the dwelling unit is $75317 -in.representative_income 75324 Representative total house income in the dwelling unit is $75324 -in.representative_income 75327 Representative total house income in the dwelling unit is $75327 -in.representative_income 75333 Representative total house income in the dwelling unit is $75333 -in.representative_income 75337 Representative total house income in the dwelling unit is $75337 -in.representative_income 75341 Representative total house income in the dwelling unit is $75341 -in.representative_income 75357 Representative total house income in the dwelling unit is $75357 -in.representative_income 75363 Representative total house income in the dwelling unit is $75363 -in.representative_income 75367 Representative total house income in the dwelling unit is $75367 -in.representative_income 75368 Representative total house income in the dwelling unit is $75368 -in.representative_income 75373 Representative total house income in the dwelling unit is $75373 -in.representative_income 75378 Representative total house income in the dwelling unit is $75378 -in.representative_income 75381 Representative total house income in the dwelling unit is $75381 -in.representative_income 75387 Representative total house income in the dwelling unit is $75387 -in.representative_income 75390 Representative total house income in the dwelling unit is $75390 -in.representative_income 75395 Representative total house income in the dwelling unit is $75395 -in.representative_income 75399 Representative total house income in the dwelling unit is $75399 -in.representative_income 75404 Representative total house income in the dwelling unit is $75404 -in.representative_income 75410 Representative total house income in the dwelling unit is $75410 -in.representative_income 75417 Representative total house income in the dwelling unit is $75417 -in.representative_income 75419 Representative total house income in the dwelling unit is $75419 -in.representative_income 75421 Representative total house income in the dwelling unit is $75421 -in.representative_income 75426 Representative total house income in the dwelling unit is $75426 -in.representative_income 75427 Representative total house income in the dwelling unit is $75427 -in.representative_income 75430 Representative total house income in the dwelling unit is $75430 -in.representative_income 75435 Representative total house income in the dwelling unit is $75435 -in.representative_income 75437 Representative total house income in the dwelling unit is $75437 -in.representative_income 75440 Representative total house income in the dwelling unit is $75440 -in.representative_income 75449 Representative total house income in the dwelling unit is $75449 -in.representative_income 75450 Representative total house income in the dwelling unit is $75450 -in.representative_income 75451 Representative total house income in the dwelling unit is $75451 -in.representative_income 75458 Representative total house income in the dwelling unit is $75458 -in.representative_income 75462 Representative total house income in the dwelling unit is $75462 -in.representative_income 75463 Representative total house income in the dwelling unit is $75463 -in.representative_income 75464 Representative total house income in the dwelling unit is $75464 -in.representative_income 75468 Representative total house income in the dwelling unit is $75468 -in.representative_income 75474 Representative total house income in the dwelling unit is $75474 -in.representative_income 75481 Representative total house income in the dwelling unit is $75481 -in.representative_income 75484 Representative total house income in the dwelling unit is $75484 -in.representative_income 75502 Representative total house income in the dwelling unit is $75502 -in.representative_income 75505 Representative total house income in the dwelling unit is $75505 -in.representative_income 75510 Representative total house income in the dwelling unit is $75510 -in.representative_income 75512 Representative total house income in the dwelling unit is $75512 -in.representative_income 75517 Representative total house income in the dwelling unit is $75517 -in.representative_income 75518 Representative total house income in the dwelling unit is $75518 -in.representative_income 75521 Representative total house income in the dwelling unit is $75521 -in.representative_income 75523 Representative total house income in the dwelling unit is $75523 -in.representative_income 75524 Representative total house income in the dwelling unit is $75524 -in.representative_income 75526 Representative total house income in the dwelling unit is $75526 -in.representative_income 75544 Representative total house income in the dwelling unit is $75544 -in.representative_income 75545 Representative total house income in the dwelling unit is $75545 -in.representative_income 75549 Representative total house income in the dwelling unit is $75549 -in.representative_income 75559 Representative total house income in the dwelling unit is $75559 -in.representative_income 75560 Representative total house income in the dwelling unit is $75560 -in.representative_income 75567 Representative total house income in the dwelling unit is $75567 -in.representative_income 75571 Representative total house income in the dwelling unit is $75571 -in.representative_income 75573 Representative total house income in the dwelling unit is $75573 -in.representative_income 75574 Representative total house income in the dwelling unit is $75574 -in.representative_income 75575 Representative total house income in the dwelling unit is $75575 -in.representative_income 75579 Representative total house income in the dwelling unit is $75579 -in.representative_income 75585 Representative total house income in the dwelling unit is $75585 -in.representative_income 75594 Representative total house income in the dwelling unit is $75594 -in.representative_income 75596 Representative total house income in the dwelling unit is $75596 -in.representative_income 75603 Representative total house income in the dwelling unit is $75603 -in.representative_income 75605 Representative total house income in the dwelling unit is $75605 -in.representative_income 75609 Representative total house income in the dwelling unit is $75609 -in.representative_income 75611 Representative total house income in the dwelling unit is $75611 -in.representative_income 75616 Representative total house income in the dwelling unit is $75616 -in.representative_income 75625 Representative total house income in the dwelling unit is $75625 -in.representative_income 75626 Representative total house income in the dwelling unit is $75626 -in.representative_income 75631 Representative total house income in the dwelling unit is $75631 -in.representative_income 75632 Representative total house income in the dwelling unit is $75632 -in.representative_income 75633 Representative total house income in the dwelling unit is $75633 -in.representative_income 75640 Representative total house income in the dwelling unit is $75640 -in.representative_income 75643 Representative total house income in the dwelling unit is $75643 -in.representative_income 75646 Representative total house income in the dwelling unit is $75646 -in.representative_income 75647 Representative total house income in the dwelling unit is $75647 -in.representative_income 75655 Representative total house income in the dwelling unit is $75655 -in.representative_income 75660 Representative total house income in the dwelling unit is $75660 -in.representative_income 75666 Representative total house income in the dwelling unit is $75666 -in.representative_income 75668 Representative total house income in the dwelling unit is $75668 -in.representative_income 75670 Representative total house income in the dwelling unit is $75670 -in.representative_income 75671 Representative total house income in the dwelling unit is $75671 -in.representative_income 75677 Representative total house income in the dwelling unit is $75677 -in.representative_income 75678 Representative total house income in the dwelling unit is $75678 -in.representative_income 75687 Representative total house income in the dwelling unit is $75687 -in.representative_income 75695 Representative total house income in the dwelling unit is $75695 -in.representative_income 75697 Representative total house income in the dwelling unit is $75697 -in.representative_income 75698 Representative total house income in the dwelling unit is $75698 -in.representative_income 75700 Representative total house income in the dwelling unit is $75700 -in.representative_income 75705 Representative total house income in the dwelling unit is $75705 -in.representative_income 75709 Representative total house income in the dwelling unit is $75709 -in.representative_income 75713 Representative total house income in the dwelling unit is $75713 -in.representative_income 75719 Representative total house income in the dwelling unit is $75719 -in.representative_income 75720 Representative total house income in the dwelling unit is $75720 -in.representative_income 75721 Representative total house income in the dwelling unit is $75721 -in.representative_income 75732 Representative total house income in the dwelling unit is $75732 -in.representative_income 75741 Representative total house income in the dwelling unit is $75741 -in.representative_income 75745 Representative total house income in the dwelling unit is $75745 -in.representative_income 75761 Representative total house income in the dwelling unit is $75761 -in.representative_income 75763 Representative total house income in the dwelling unit is $75763 -in.representative_income 75774 Representative total house income in the dwelling unit is $75774 -in.representative_income 75781 Representative total house income in the dwelling unit is $75781 -in.representative_income 75784 Representative total house income in the dwelling unit is $75784 -in.representative_income 75786 Representative total house income in the dwelling unit is $75786 -in.representative_income 75791 Representative total house income in the dwelling unit is $75791 -in.representative_income 75795 Representative total house income in the dwelling unit is $75795 -in.representative_income 75796 Representative total house income in the dwelling unit is $75796 -in.representative_income 75801 Representative total house income in the dwelling unit is $75801 -in.representative_income 75806 Representative total house income in the dwelling unit is $75806 -in.representative_income 75807 Representative total house income in the dwelling unit is $75807 -in.representative_income 75811 Representative total house income in the dwelling unit is $75811 -in.representative_income 75812 Representative total house income in the dwelling unit is $75812 -in.representative_income 75813 Representative total house income in the dwelling unit is $75813 -in.representative_income 75818 Representative total house income in the dwelling unit is $75818 -in.representative_income 75821 Representative total house income in the dwelling unit is $75821 -in.representative_income 75822 Representative total house income in the dwelling unit is $75822 -in.representative_income 75824 Representative total house income in the dwelling unit is $75824 -in.representative_income 75826 Representative total house income in the dwelling unit is $75826 -in.representative_income 75828 Representative total house income in the dwelling unit is $75828 -in.representative_income 75832 Representative total house income in the dwelling unit is $75832 -in.representative_income 75839 Representative total house income in the dwelling unit is $75839 -in.representative_income 75846 Representative total house income in the dwelling unit is $75846 -in.representative_income 75849 Representative total house income in the dwelling unit is $75849 -in.representative_income 75852 Representative total house income in the dwelling unit is $75852 -in.representative_income 75854 Representative total house income in the dwelling unit is $75854 -in.representative_income 75856 Representative total house income in the dwelling unit is $75856 -in.representative_income 75860 Representative total house income in the dwelling unit is $75860 -in.representative_income 75862 Representative total house income in the dwelling unit is $75862 -in.representative_income 75864 Representative total house income in the dwelling unit is $75864 -in.representative_income 75870 Representative total house income in the dwelling unit is $75870 -in.representative_income 75871 Representative total house income in the dwelling unit is $75871 -in.representative_income 75872 Representative total house income in the dwelling unit is $75872 -in.representative_income 75881 Representative total house income in the dwelling unit is $75881 -in.representative_income 75882 Representative total house income in the dwelling unit is $75882 -in.representative_income 75892 Representative total house income in the dwelling unit is $75892 -in.representative_income 75893 Representative total house income in the dwelling unit is $75893 -in.representative_income 75894 Representative total house income in the dwelling unit is $75894 -in.representative_income 75902 Representative total house income in the dwelling unit is $75902 -in.representative_income 75903 Representative total house income in the dwelling unit is $75903 -in.representative_income 75912 Representative total house income in the dwelling unit is $75912 -in.representative_income 75914 Representative total house income in the dwelling unit is $75914 -in.representative_income 75915 Representative total house income in the dwelling unit is $75915 -in.representative_income 75923 Representative total house income in the dwelling unit is $75923 -in.representative_income 75924 Representative total house income in the dwelling unit is $75924 -in.representative_income 75925 Representative total house income in the dwelling unit is $75925 -in.representative_income 75931 Representative total house income in the dwelling unit is $75931 -in.representative_income 75933 Representative total house income in the dwelling unit is $75933 -in.representative_income 75936 Representative total house income in the dwelling unit is $75936 -in.representative_income 75942 Representative total house income in the dwelling unit is $75942 -in.representative_income 75946 Representative total house income in the dwelling unit is $75946 -in.representative_income 75947 Representative total house income in the dwelling unit is $75947 -in.representative_income 75952 Representative total house income in the dwelling unit is $75952 -in.representative_income 75956 Representative total house income in the dwelling unit is $75956 -in.representative_income 75957 Representative total house income in the dwelling unit is $75957 -in.representative_income 75963 Representative total house income in the dwelling unit is $75963 -in.representative_income 75964 Representative total house income in the dwelling unit is $75964 -in.representative_income 75968 Representative total house income in the dwelling unit is $75968 -in.representative_income 75973 Representative total house income in the dwelling unit is $75973 -in.representative_income 75979 Representative total house income in the dwelling unit is $75979 -in.representative_income 75980 Representative total house income in the dwelling unit is $75980 -in.representative_income 75985 Representative total house income in the dwelling unit is $75985 -in.representative_income 75987 Representative total house income in the dwelling unit is $75987 -in.representative_income 75988 Representative total house income in the dwelling unit is $75988 -in.representative_income 75993 Representative total house income in the dwelling unit is $75993 -in.representative_income 76000 Representative total house income in the dwelling unit is $76000 -in.representative_income 76004 Representative total house income in the dwelling unit is $76004 -in.representative_income 76005 Representative total house income in the dwelling unit is $76005 -in.representative_income 76013 Representative total house income in the dwelling unit is $76013 -in.representative_income 76018 Representative total house income in the dwelling unit is $76018 -in.representative_income 76026 Representative total house income in the dwelling unit is $76026 -in.representative_income 76037 Representative total house income in the dwelling unit is $76037 -in.representative_income 76044 Representative total house income in the dwelling unit is $76044 -in.representative_income 76047 Representative total house income in the dwelling unit is $76047 -in.representative_income 76054 Representative total house income in the dwelling unit is $76054 -in.representative_income 76057 Representative total house income in the dwelling unit is $76057 -in.representative_income 76064 Representative total house income in the dwelling unit is $76064 -in.representative_income 76065 Representative total house income in the dwelling unit is $76065 -in.representative_income 76066 Representative total house income in the dwelling unit is $76066 -in.representative_income 76083 Representative total house income in the dwelling unit is $76083 -in.representative_income 76086 Representative total house income in the dwelling unit is $76086 -in.representative_income 76087 Representative total house income in the dwelling unit is $76087 -in.representative_income 76090 Representative total house income in the dwelling unit is $76090 -in.representative_income 76094 Representative total house income in the dwelling unit is $76094 -in.representative_income 76107 Representative total house income in the dwelling unit is $76107 -in.representative_income 76114 Representative total house income in the dwelling unit is $76114 -in.representative_income 76121 Representative total house income in the dwelling unit is $76121 -in.representative_income 76129 Representative total house income in the dwelling unit is $76129 -in.representative_income 76143 Representative total house income in the dwelling unit is $76143 -in.representative_income 76149 Representative total house income in the dwelling unit is $76149 -in.representative_income 76151 Representative total house income in the dwelling unit is $76151 -in.representative_income 76162 Representative total house income in the dwelling unit is $76162 -in.representative_income 76163 Representative total house income in the dwelling unit is $76163 -in.representative_income 76164 Representative total house income in the dwelling unit is $76164 -in.representative_income 76165 Representative total house income in the dwelling unit is $76165 -in.representative_income 76166 Representative total house income in the dwelling unit is $76166 -in.representative_income 76172 Representative total house income in the dwelling unit is $76172 -in.representative_income 76173 Representative total house income in the dwelling unit is $76173 -in.representative_income 76174 Representative total house income in the dwelling unit is $76174 -in.representative_income 76183 Representative total house income in the dwelling unit is $76183 -in.representative_income 76184 Representative total house income in the dwelling unit is $76184 -in.representative_income 76193 Representative total house income in the dwelling unit is $76193 -in.representative_income 76194 Representative total house income in the dwelling unit is $76194 -in.representative_income 76195 Representative total house income in the dwelling unit is $76195 -in.representative_income 76215 Representative total house income in the dwelling unit is $76215 -in.representative_income 76224 Representative total house income in the dwelling unit is $76224 -in.representative_income 76227 Representative total house income in the dwelling unit is $76227 -in.representative_income 76248 Representative total house income in the dwelling unit is $76248 -in.representative_income 76250 Representative total house income in the dwelling unit is $76250 -in.representative_income 76266 Representative total house income in the dwelling unit is $76266 -in.representative_income 76271 Representative total house income in the dwelling unit is $76271 -in.representative_income 76281 Representative total house income in the dwelling unit is $76281 -in.representative_income 76283 Representative total house income in the dwelling unit is $76283 -in.representative_income 76306 Representative total house income in the dwelling unit is $76306 -in.representative_income 76309 Representative total house income in the dwelling unit is $76309 -in.representative_income 76322 Representative total house income in the dwelling unit is $76322 -in.representative_income 76324 Representative total house income in the dwelling unit is $76324 -in.representative_income 76328 Representative total house income in the dwelling unit is $76328 -in.representative_income 76333 Representative total house income in the dwelling unit is $76333 -in.representative_income 76335 Representative total house income in the dwelling unit is $76335 -in.representative_income 76337 Representative total house income in the dwelling unit is $76337 -in.representative_income 76338 Representative total house income in the dwelling unit is $76338 -in.representative_income 76343 Representative total house income in the dwelling unit is $76343 -in.representative_income 76347 Representative total house income in the dwelling unit is $76347 -in.representative_income 76354 Representative total house income in the dwelling unit is $76354 -in.representative_income 76356 Representative total house income in the dwelling unit is $76356 -in.representative_income 76367 Representative total house income in the dwelling unit is $76367 -in.representative_income 76376 Representative total house income in the dwelling unit is $76376 -in.representative_income 76379 Representative total house income in the dwelling unit is $76379 -in.representative_income 76389 Representative total house income in the dwelling unit is $76389 -in.representative_income 76390 Representative total house income in the dwelling unit is $76390 -in.representative_income 76398 Representative total house income in the dwelling unit is $76398 -in.representative_income 76407 Representative total house income in the dwelling unit is $76407 -in.representative_income 76430 Representative total house income in the dwelling unit is $76430 -in.representative_income 76431 Representative total house income in the dwelling unit is $76431 -in.representative_income 76459 Representative total house income in the dwelling unit is $76459 -in.representative_income 76465 Representative total house income in the dwelling unit is $76465 -in.representative_income 76468 Representative total house income in the dwelling unit is $76468 -in.representative_income 76483 Representative total house income in the dwelling unit is $76483 -in.representative_income 76493 Representative total house income in the dwelling unit is $76493 -in.representative_income 76498 Representative total house income in the dwelling unit is $76498 -in.representative_income 76502 Representative total house income in the dwelling unit is $76502 -in.representative_income 76512 Representative total house income in the dwelling unit is $76512 -in.representative_income 76514 Representative total house income in the dwelling unit is $76514 -in.representative_income 76518 Representative total house income in the dwelling unit is $76518 -in.representative_income 76526 Representative total house income in the dwelling unit is $76526 -in.representative_income 76533 Representative total house income in the dwelling unit is $76533 -in.representative_income 76537 Representative total house income in the dwelling unit is $76537 -in.representative_income 76543 Representative total house income in the dwelling unit is $76543 -in.representative_income 76555 Representative total house income in the dwelling unit is $76555 -in.representative_income 76559 Representative total house income in the dwelling unit is $76559 -in.representative_income 76564 Representative total house income in the dwelling unit is $76564 -in.representative_income 76569 Representative total house income in the dwelling unit is $76569 -in.representative_income 76579 Representative total house income in the dwelling unit is $76579 -in.representative_income 76584 Representative total house income in the dwelling unit is $76584 -in.representative_income 76585 Representative total house income in the dwelling unit is $76585 -in.representative_income 76589 Representative total house income in the dwelling unit is $76589 -in.representative_income 76598 Representative total house income in the dwelling unit is $76598 -in.representative_income 76601 Representative total house income in the dwelling unit is $76601 -in.representative_income 76606 Representative total house income in the dwelling unit is $76606 -in.representative_income 76612 Representative total house income in the dwelling unit is $76612 -in.representative_income 76620 Representative total house income in the dwelling unit is $76620 -in.representative_income 76626 Representative total house income in the dwelling unit is $76626 -in.representative_income 76630 Representative total house income in the dwelling unit is $76630 -in.representative_income 76637 Representative total house income in the dwelling unit is $76637 -in.representative_income 76644 Representative total house income in the dwelling unit is $76644 -in.representative_income 76655 Representative total house income in the dwelling unit is $76655 -in.representative_income 76669 Representative total house income in the dwelling unit is $76669 -in.representative_income 76670 Representative total house income in the dwelling unit is $76670 -in.representative_income 76676 Representative total house income in the dwelling unit is $76676 -in.representative_income 76688 Representative total house income in the dwelling unit is $76688 -in.representative_income 76691 Representative total house income in the dwelling unit is $76691 -in.representative_income 76714 Representative total house income in the dwelling unit is $76714 -in.representative_income 76724 Representative total house income in the dwelling unit is $76724 -in.representative_income 76735 Representative total house income in the dwelling unit is $76735 -in.representative_income 76740 Representative total house income in the dwelling unit is $76740 -in.representative_income 76746 Representative total house income in the dwelling unit is $76746 -in.representative_income 76752 Representative total house income in the dwelling unit is $76752 -in.representative_income 76753 Representative total house income in the dwelling unit is $76753 -in.representative_income 76757 Representative total house income in the dwelling unit is $76757 -in.representative_income 76760 Representative total house income in the dwelling unit is $76760 -in.representative_income 76761 Representative total house income in the dwelling unit is $76761 -in.representative_income 76767 Representative total house income in the dwelling unit is $76767 -in.representative_income 76771 Representative total house income in the dwelling unit is $76771 -in.representative_income 76776 Representative total house income in the dwelling unit is $76776 -in.representative_income 76781 Representative total house income in the dwelling unit is $76781 -in.representative_income 76797 Representative total house income in the dwelling unit is $76797 -in.representative_income 76805 Representative total house income in the dwelling unit is $76805 -in.representative_income 76811 Representative total house income in the dwelling unit is $76811 -in.representative_income 76813 Representative total house income in the dwelling unit is $76813 -in.representative_income 76817 Representative total house income in the dwelling unit is $76817 -in.representative_income 76821 Representative total house income in the dwelling unit is $76821 -in.representative_income 76831 Representative total house income in the dwelling unit is $76831 -in.representative_income 76832 Representative total house income in the dwelling unit is $76832 -in.representative_income 76834 Representative total house income in the dwelling unit is $76834 -in.representative_income 76838 Representative total house income in the dwelling unit is $76838 -in.representative_income 76843 Representative total house income in the dwelling unit is $76843 -in.representative_income 76852 Representative total house income in the dwelling unit is $76852 -in.representative_income 76859 Representative total house income in the dwelling unit is $76859 -in.representative_income 76864 Representative total house income in the dwelling unit is $76864 -in.representative_income 76872 Representative total house income in the dwelling unit is $76872 -in.representative_income 76874 Representative total house income in the dwelling unit is $76874 -in.representative_income 76881 Representative total house income in the dwelling unit is $76881 -in.representative_income 76902 Representative total house income in the dwelling unit is $76902 -in.representative_income 76912 Representative total house income in the dwelling unit is $76912 -in.representative_income 76915 Representative total house income in the dwelling unit is $76915 -in.representative_income 76916 Representative total house income in the dwelling unit is $76916 -in.representative_income 76923 Representative total house income in the dwelling unit is $76923 -in.representative_income 76929 Representative total house income in the dwelling unit is $76929 -in.representative_income 76933 Representative total house income in the dwelling unit is $76933 -in.representative_income 76947 Representative total house income in the dwelling unit is $76947 -in.representative_income 76957 Representative total house income in the dwelling unit is $76957 -in.representative_income 76967 Representative total house income in the dwelling unit is $76967 -in.representative_income 76973 Representative total house income in the dwelling unit is $76973 -in.representative_income 76986 Representative total house income in the dwelling unit is $76986 -in.representative_income 76996 Representative total house income in the dwelling unit is $76996 -in.representative_income 76997 Representative total house income in the dwelling unit is $76997 -in.representative_income 76999 Representative total house income in the dwelling unit is $76999 -in.representative_income 77003 Representative total house income in the dwelling unit is $77003 -in.representative_income 77031 Representative total house income in the dwelling unit is $77031 -in.representative_income 77036 Representative total house income in the dwelling unit is $77036 -in.representative_income 77037 Representative total house income in the dwelling unit is $77037 -in.representative_income 77048 Representative total house income in the dwelling unit is $77048 -in.representative_income 77049 Representative total house income in the dwelling unit is $77049 -in.representative_income 77059 Representative total house income in the dwelling unit is $77059 -in.representative_income 77070 Representative total house income in the dwelling unit is $77070 -in.representative_income 77073 Representative total house income in the dwelling unit is $77073 -in.representative_income 77074 Representative total house income in the dwelling unit is $77074 -in.representative_income 77077 Representative total house income in the dwelling unit is $77077 -in.representative_income 77092 Representative total house income in the dwelling unit is $77092 -in.representative_income 77102 Representative total house income in the dwelling unit is $77102 -in.representative_income 77106 Representative total house income in the dwelling unit is $77106 -in.representative_income 77111 Representative total house income in the dwelling unit is $77111 -in.representative_income 77114 Representative total house income in the dwelling unit is $77114 -in.representative_income 77127 Representative total house income in the dwelling unit is $77127 -in.representative_income 77142 Representative total house income in the dwelling unit is $77142 -in.representative_income 77145 Representative total house income in the dwelling unit is $77145 -in.representative_income 77152 Representative total house income in the dwelling unit is $77152 -in.representative_income 77159 Representative total house income in the dwelling unit is $77159 -in.representative_income 77170 Representative total house income in the dwelling unit is $77170 -in.representative_income 77172 Representative total house income in the dwelling unit is $77172 -in.representative_income 77175 Representative total house income in the dwelling unit is $77175 -in.representative_income 77181 Representative total house income in the dwelling unit is $77181 -in.representative_income 77197 Representative total house income in the dwelling unit is $77197 -in.representative_income 77204 Representative total house income in the dwelling unit is $77204 -in.representative_income 77240 Representative total house income in the dwelling unit is $77240 -in.representative_income 77250 Representative total house income in the dwelling unit is $77250 -in.representative_income 77254 Representative total house income in the dwelling unit is $77254 -in.representative_income 77256 Representative total house income in the dwelling unit is $77256 -in.representative_income 77259 Representative total house income in the dwelling unit is $77259 -in.representative_income 77265 Representative total house income in the dwelling unit is $77265 -in.representative_income 77267 Representative total house income in the dwelling unit is $77267 -in.representative_income 77269 Representative total house income in the dwelling unit is $77269 -in.representative_income 77276 Representative total house income in the dwelling unit is $77276 -in.representative_income 77282 Representative total house income in the dwelling unit is $77282 -in.representative_income 77288 Representative total house income in the dwelling unit is $77288 -in.representative_income 77289 Representative total house income in the dwelling unit is $77289 -in.representative_income 77297 Representative total house income in the dwelling unit is $77297 -in.representative_income 77302 Representative total house income in the dwelling unit is $77302 -in.representative_income 77308 Representative total house income in the dwelling unit is $77308 -in.representative_income 77310 Representative total house income in the dwelling unit is $77310 -in.representative_income 77320 Representative total house income in the dwelling unit is $77320 -in.representative_income 77323 Representative total house income in the dwelling unit is $77323 -in.representative_income 77346 Representative total house income in the dwelling unit is $77346 -in.representative_income 77353 Representative total house income in the dwelling unit is $77353 -in.representative_income 77359 Representative total house income in the dwelling unit is $77359 -in.representative_income 77362 Representative total house income in the dwelling unit is $77362 -in.representative_income 77364 Representative total house income in the dwelling unit is $77364 -in.representative_income 77368 Representative total house income in the dwelling unit is $77368 -in.representative_income 77377 Representative total house income in the dwelling unit is $77377 -in.representative_income 77379 Representative total house income in the dwelling unit is $77379 -in.representative_income 77396 Representative total house income in the dwelling unit is $77396 -in.representative_income 77405 Representative total house income in the dwelling unit is $77405 -in.representative_income 77409 Representative total house income in the dwelling unit is $77409 -in.representative_income 77411 Representative total house income in the dwelling unit is $77411 -in.representative_income 77421 Representative total house income in the dwelling unit is $77421 -in.representative_income 77428 Representative total house income in the dwelling unit is $77428 -in.representative_income 77440 Representative total house income in the dwelling unit is $77440 -in.representative_income 77449 Representative total house income in the dwelling unit is $77449 -in.representative_income 77462 Representative total house income in the dwelling unit is $77462 -in.representative_income 77470 Representative total house income in the dwelling unit is $77470 -in.representative_income 77472 Representative total house income in the dwelling unit is $77472 -in.representative_income 77473 Representative total house income in the dwelling unit is $77473 -in.representative_income 77478 Representative total house income in the dwelling unit is $77478 -in.representative_income 77483 Representative total house income in the dwelling unit is $77483 -in.representative_income 77489 Representative total house income in the dwelling unit is $77489 -in.representative_income 77497 Representative total house income in the dwelling unit is $77497 -in.representative_income 77503 Representative total house income in the dwelling unit is $77503 -in.representative_income 77514 Representative total house income in the dwelling unit is $77514 -in.representative_income 77524 Representative total house income in the dwelling unit is $77524 -in.representative_income 77525 Representative total house income in the dwelling unit is $77525 -in.representative_income 77565 Representative total house income in the dwelling unit is $77565 -in.representative_income 77577 Representative total house income in the dwelling unit is $77577 -in.representative_income 77578 Representative total house income in the dwelling unit is $77578 -in.representative_income 77579 Representative total house income in the dwelling unit is $77579 -in.representative_income 77586 Representative total house income in the dwelling unit is $77586 -in.representative_income 77589 Representative total house income in the dwelling unit is $77589 -in.representative_income 77598 Representative total house income in the dwelling unit is $77598 -in.representative_income 77599 Representative total house income in the dwelling unit is $77599 -in.representative_income 77610 Representative total house income in the dwelling unit is $77610 -in.representative_income 77616 Representative total house income in the dwelling unit is $77616 -in.representative_income 77619 Representative total house income in the dwelling unit is $77619 -in.representative_income 77621 Representative total house income in the dwelling unit is $77621 -in.representative_income 77664 Representative total house income in the dwelling unit is $77664 -in.representative_income 77668 Representative total house income in the dwelling unit is $77668 -in.representative_income 77678 Representative total house income in the dwelling unit is $77678 -in.representative_income 77680 Representative total house income in the dwelling unit is $77680 -in.representative_income 77686 Representative total house income in the dwelling unit is $77686 -in.representative_income 77700 Representative total house income in the dwelling unit is $77700 -in.representative_income 77717 Representative total house income in the dwelling unit is $77717 -in.representative_income 77724 Representative total house income in the dwelling unit is $77724 -in.representative_income 77728 Representative total house income in the dwelling unit is $77728 -in.representative_income 77730 Representative total house income in the dwelling unit is $77730 -in.representative_income 77740 Representative total house income in the dwelling unit is $77740 -in.representative_income 77753 Representative total house income in the dwelling unit is $77753 -in.representative_income 77756 Representative total house income in the dwelling unit is $77756 -in.representative_income 77761 Representative total house income in the dwelling unit is $77761 -in.representative_income 77767 Representative total house income in the dwelling unit is $77767 -in.representative_income 77771 Representative total house income in the dwelling unit is $77771 -in.representative_income 77781 Representative total house income in the dwelling unit is $77781 -in.representative_income 77791 Representative total house income in the dwelling unit is $77791 -in.representative_income 77794 Representative total house income in the dwelling unit is $77794 -in.representative_income 77804 Representative total house income in the dwelling unit is $77804 -in.representative_income 77825 Representative total house income in the dwelling unit is $77825 -in.representative_income 77830 Representative total house income in the dwelling unit is $77830 -in.representative_income 77832 Representative total house income in the dwelling unit is $77832 -in.representative_income 77858 Representative total house income in the dwelling unit is $77858 -in.representative_income 77865 Representative total house income in the dwelling unit is $77865 -in.representative_income 77872 Representative total house income in the dwelling unit is $77872 -in.representative_income 77875 Representative total house income in the dwelling unit is $77875 -in.representative_income 77878 Representative total house income in the dwelling unit is $77878 -in.representative_income 77880 Representative total house income in the dwelling unit is $77880 -in.representative_income 77882 Representative total house income in the dwelling unit is $77882 -in.representative_income 77885 Representative total house income in the dwelling unit is $77885 -in.representative_income 77902 Representative total house income in the dwelling unit is $77902 -in.representative_income 77917 Representative total house income in the dwelling unit is $77917 -in.representative_income 77933 Representative total house income in the dwelling unit is $77933 -in.representative_income 77935 Representative total house income in the dwelling unit is $77935 -in.representative_income 77947 Representative total house income in the dwelling unit is $77947 -in.representative_income 77956 Representative total house income in the dwelling unit is $77956 -in.representative_income 77964 Representative total house income in the dwelling unit is $77964 -in.representative_income 77978 Representative total house income in the dwelling unit is $77978 -in.representative_income 77983 Representative total house income in the dwelling unit is $77983 -in.representative_income 77993 Representative total house income in the dwelling unit is $77993 -in.representative_income 77998 Representative total house income in the dwelling unit is $77998 -in.representative_income 78007 Representative total house income in the dwelling unit is $78007 -in.representative_income 78009 Representative total house income in the dwelling unit is $78009 -in.representative_income 78034 Representative total house income in the dwelling unit is $78034 -in.representative_income 78040 Representative total house income in the dwelling unit is $78040 -in.representative_income 78041 Representative total house income in the dwelling unit is $78041 -in.representative_income 78043 Representative total house income in the dwelling unit is $78043 -in.representative_income 78052 Representative total house income in the dwelling unit is $78052 -in.representative_income 78060 Representative total house income in the dwelling unit is $78060 -in.representative_income 78081 Representative total house income in the dwelling unit is $78081 -in.representative_income 78083 Representative total house income in the dwelling unit is $78083 -in.representative_income 78084 Representative total house income in the dwelling unit is $78084 -in.representative_income 78104 Representative total house income in the dwelling unit is $78104 -in.representative_income 78118 Representative total house income in the dwelling unit is $78118 -in.representative_income 78125 Representative total house income in the dwelling unit is $78125 -in.representative_income 78132 Representative total house income in the dwelling unit is $78132 -in.representative_income 78136 Representative total house income in the dwelling unit is $78136 -in.representative_income 78143 Representative total house income in the dwelling unit is $78143 -in.representative_income 78145 Representative total house income in the dwelling unit is $78145 -in.representative_income 78147 Representative total house income in the dwelling unit is $78147 -in.representative_income 78148 Representative total house income in the dwelling unit is $78148 -in.representative_income 78157 Representative total house income in the dwelling unit is $78157 -in.representative_income 78171 Representative total house income in the dwelling unit is $78171 -in.representative_income 78184 Representative total house income in the dwelling unit is $78184 -in.representative_income 78185 Representative total house income in the dwelling unit is $78185 -in.representative_income 78199 Representative total house income in the dwelling unit is $78199 -in.representative_income 78226 Representative total house income in the dwelling unit is $78226 -in.representative_income 78231 Representative total house income in the dwelling unit is $78231 -in.representative_income 78252 Representative total house income in the dwelling unit is $78252 -in.representative_income 78254 Representative total house income in the dwelling unit is $78254 -in.representative_income 78266 Representative total house income in the dwelling unit is $78266 -in.representative_income 78280 Representative total house income in the dwelling unit is $78280 -in.representative_income 78286 Representative total house income in the dwelling unit is $78286 -in.representative_income 78287 Representative total house income in the dwelling unit is $78287 -in.representative_income 78311 Representative total house income in the dwelling unit is $78311 -in.representative_income 78313 Representative total house income in the dwelling unit is $78313 -in.representative_income 78334 Representative total house income in the dwelling unit is $78334 -in.representative_income 78357 Representative total house income in the dwelling unit is $78357 -in.representative_income 78362 Representative total house income in the dwelling unit is $78362 -in.representative_income 78372 Representative total house income in the dwelling unit is $78372 -in.representative_income 78378 Representative total house income in the dwelling unit is $78378 -in.representative_income 78385 Representative total house income in the dwelling unit is $78385 -in.representative_income 78387 Representative total house income in the dwelling unit is $78387 -in.representative_income 78390 Representative total house income in the dwelling unit is $78390 -in.representative_income 78411 Representative total house income in the dwelling unit is $78411 -in.representative_income 78422 Representative total house income in the dwelling unit is $78422 -in.representative_income 78437 Representative total house income in the dwelling unit is $78437 -in.representative_income 78438 Representative total house income in the dwelling unit is $78438 -in.representative_income 78442 Representative total house income in the dwelling unit is $78442 -in.representative_income 78443 Representative total house income in the dwelling unit is $78443 -in.representative_income 78462 Representative total house income in the dwelling unit is $78462 -in.representative_income 78469 Representative total house income in the dwelling unit is $78469 -in.representative_income 78476 Representative total house income in the dwelling unit is $78476 -in.representative_income 78488 Representative total house income in the dwelling unit is $78488 -in.representative_income 78494 Representative total house income in the dwelling unit is $78494 -in.representative_income 78545 Representative total house income in the dwelling unit is $78545 -in.representative_income 78550 Representative total house income in the dwelling unit is $78550 -in.representative_income 78568 Representative total house income in the dwelling unit is $78568 -in.representative_income 78574 Representative total house income in the dwelling unit is $78574 -in.representative_income 78577 Representative total house income in the dwelling unit is $78577 -in.representative_income 78589 Representative total house income in the dwelling unit is $78589 -in.representative_income 78597 Representative total house income in the dwelling unit is $78597 -in.representative_income 78604 Representative total house income in the dwelling unit is $78604 -in.representative_income 78609 Representative total house income in the dwelling unit is $78609 -in.representative_income 78615 Representative total house income in the dwelling unit is $78615 -in.representative_income 78626 Representative total house income in the dwelling unit is $78626 -in.representative_income 78638 Representative total house income in the dwelling unit is $78638 -in.representative_income 78648 Representative total house income in the dwelling unit is $78648 -in.representative_income 78658 Representative total house income in the dwelling unit is $78658 -in.representative_income 78659 Representative total house income in the dwelling unit is $78659 -in.representative_income 78666 Representative total house income in the dwelling unit is $78666 -in.representative_income 78669 Representative total house income in the dwelling unit is $78669 -in.representative_income 78670 Representative total house income in the dwelling unit is $78670 -in.representative_income 78674 Representative total house income in the dwelling unit is $78674 -in.representative_income 78684 Representative total house income in the dwelling unit is $78684 -in.representative_income 78689 Representative total house income in the dwelling unit is $78689 -in.representative_income 78690 Representative total house income in the dwelling unit is $78690 -in.representative_income 78699 Representative total house income in the dwelling unit is $78699 -in.representative_income 78701 Representative total house income in the dwelling unit is $78701 -in.representative_income 78737 Representative total house income in the dwelling unit is $78737 -in.representative_income 78741 Representative total house income in the dwelling unit is $78741 -in.representative_income 78766 Representative total house income in the dwelling unit is $78766 -in.representative_income 78779 Representative total house income in the dwelling unit is $78779 -in.representative_income 78791 Representative total house income in the dwelling unit is $78791 -in.representative_income 78797 Representative total house income in the dwelling unit is $78797 -in.representative_income 78801 Representative total house income in the dwelling unit is $78801 -in.representative_income 78803 Representative total house income in the dwelling unit is $78803 -in.representative_income 78812 Representative total house income in the dwelling unit is $78812 -in.representative_income 78822 Representative total house income in the dwelling unit is $78822 -in.representative_income 78842 Representative total house income in the dwelling unit is $78842 -in.representative_income 78875 Representative total house income in the dwelling unit is $78875 -in.representative_income 78885 Representative total house income in the dwelling unit is $78885 -in.representative_income 78892 Representative total house income in the dwelling unit is $78892 -in.representative_income 78898 Representative total house income in the dwelling unit is $78898 -in.representative_income 78901 Representative total house income in the dwelling unit is $78901 -in.representative_income 78906 Representative total house income in the dwelling unit is $78906 -in.representative_income 78913 Representative total house income in the dwelling unit is $78913 -in.representative_income 78929 Representative total house income in the dwelling unit is $78929 -in.representative_income 78937 Representative total house income in the dwelling unit is $78937 -in.representative_income 78943 Representative total house income in the dwelling unit is $78943 -in.representative_income 78963 Representative total house income in the dwelling unit is $78963 -in.representative_income 78974 Representative total house income in the dwelling unit is $78974 -in.representative_income 78978 Representative total house income in the dwelling unit is $78978 -in.representative_income 78983 Representative total house income in the dwelling unit is $78983 -in.representative_income 78985 Representative total house income in the dwelling unit is $78985 -in.representative_income 78988 Representative total house income in the dwelling unit is $78988 -in.representative_income 78990 Representative total house income in the dwelling unit is $78990 -in.representative_income 78993 Representative total house income in the dwelling unit is $78993 -in.representative_income 79006 Representative total house income in the dwelling unit is $79006 -in.representative_income 79007 Representative total house income in the dwelling unit is $79007 -in.representative_income 79009 Representative total house income in the dwelling unit is $79009 -in.representative_income 79037 Representative total house income in the dwelling unit is $79037 -in.representative_income 79048 Representative total house income in the dwelling unit is $79048 -in.representative_income 79071 Representative total house income in the dwelling unit is $79071 -in.representative_income 79091 Representative total house income in the dwelling unit is $79091 -in.representative_income 79094 Representative total house income in the dwelling unit is $79094 -in.representative_income 79095 Representative total house income in the dwelling unit is $79095 -in.representative_income 79106 Representative total house income in the dwelling unit is $79106 -in.representative_income 79113 Representative total house income in the dwelling unit is $79113 -in.representative_income 79125 Representative total house income in the dwelling unit is $79125 -in.representative_income 79138 Representative total house income in the dwelling unit is $79138 -in.representative_income 79144 Representative total house income in the dwelling unit is $79144 -in.representative_income 79164 Representative total house income in the dwelling unit is $79164 -in.representative_income 79190 Representative total house income in the dwelling unit is $79190 -in.representative_income 79195 Representative total house income in the dwelling unit is $79195 -in.representative_income 79198 Representative total house income in the dwelling unit is $79198 -in.representative_income 79201 Representative total house income in the dwelling unit is $79201 -in.representative_income 79215 Representative total house income in the dwelling unit is $79215 -in.representative_income 79220 Representative total house income in the dwelling unit is $79220 -in.representative_income 79221 Representative total house income in the dwelling unit is $79221 -in.representative_income 79222 Representative total house income in the dwelling unit is $79222 -in.representative_income 79242 Representative total house income in the dwelling unit is $79242 -in.representative_income 79251 Representative total house income in the dwelling unit is $79251 -in.representative_income 79253 Representative total house income in the dwelling unit is $79253 -in.representative_income 79257 Representative total house income in the dwelling unit is $79257 -in.representative_income 79267 Representative total house income in the dwelling unit is $79267 -in.representative_income 79296 Representative total house income in the dwelling unit is $79296 -in.representative_income 79306 Representative total house income in the dwelling unit is $79306 -in.representative_income 79307 Representative total house income in the dwelling unit is $79307 -in.representative_income 79317 Representative total house income in the dwelling unit is $79317 -in.representative_income 79318 Representative total house income in the dwelling unit is $79318 -in.representative_income 79327 Representative total house income in the dwelling unit is $79327 -in.representative_income 79339 Representative total house income in the dwelling unit is $79339 -in.representative_income 79340 Representative total house income in the dwelling unit is $79340 -in.representative_income 79370 Representative total house income in the dwelling unit is $79370 -in.representative_income 79397 Representative total house income in the dwelling unit is $79397 -in.representative_income 79412 Representative total house income in the dwelling unit is $79412 -in.representative_income 79414 Representative total house income in the dwelling unit is $79414 -in.representative_income 79422 Representative total house income in the dwelling unit is $79422 -in.representative_income 79423 Representative total house income in the dwelling unit is $79423 -in.representative_income 79433 Representative total house income in the dwelling unit is $79433 -in.representative_income 79435 Representative total house income in the dwelling unit is $79435 -in.representative_income 79463 Representative total house income in the dwelling unit is $79463 -in.representative_income 79464 Representative total house income in the dwelling unit is $79464 -in.representative_income 79498 Representative total house income in the dwelling unit is $79498 -in.representative_income 79517 Representative total house income in the dwelling unit is $79517 -in.representative_income 79522 Representative total house income in the dwelling unit is $79522 -in.representative_income 79525 Representative total house income in the dwelling unit is $79525 -in.representative_income 79543 Representative total house income in the dwelling unit is $79543 -in.representative_income 79545 Representative total house income in the dwelling unit is $79545 -in.representative_income 79577 Representative total house income in the dwelling unit is $79577 -in.representative_income 79599 Representative total house income in the dwelling unit is $79599 -in.representative_income 79623 Representative total house income in the dwelling unit is $79623 -in.representative_income 79628 Representative total house income in the dwelling unit is $79628 -in.representative_income 79631 Representative total house income in the dwelling unit is $79631 -in.representative_income 79639 Representative total house income in the dwelling unit is $79639 -in.representative_income 79650 Representative total house income in the dwelling unit is $79650 -in.representative_income 79669 Representative total house income in the dwelling unit is $79669 -in.representative_income 79700 Representative total house income in the dwelling unit is $79700 -in.representative_income 79703 Representative total house income in the dwelling unit is $79703 -in.representative_income 79728 Representative total house income in the dwelling unit is $79728 -in.representative_income 79732 Representative total house income in the dwelling unit is $79732 -in.representative_income 79739 Representative total house income in the dwelling unit is $79739 -in.representative_income 79758 Representative total house income in the dwelling unit is $79758 -in.representative_income 79779 Representative total house income in the dwelling unit is $79779 -in.representative_income 79793 Representative total house income in the dwelling unit is $79793 -in.representative_income 79800 Representative total house income in the dwelling unit is $79800 -in.representative_income 79801 Representative total house income in the dwelling unit is $79801 -in.representative_income 79833 Representative total house income in the dwelling unit is $79833 -in.representative_income 79834 Representative total house income in the dwelling unit is $79834 -in.representative_income 79843 Representative total house income in the dwelling unit is $79843 -in.representative_income 79847 Representative total house income in the dwelling unit is $79847 -in.representative_income 79864 Representative total house income in the dwelling unit is $79864 -in.representative_income 79876 Representative total house income in the dwelling unit is $79876 -in.representative_income 79897 Representative total house income in the dwelling unit is $79897 -in.representative_income 79902 Representative total house income in the dwelling unit is $79902 -in.representative_income 79908 Representative total house income in the dwelling unit is $79908 -in.representative_income 79918 Representative total house income in the dwelling unit is $79918 -in.representative_income 79937 Representative total house income in the dwelling unit is $79937 -in.representative_income 79940 Representative total house income in the dwelling unit is $79940 -in.representative_income 79955 Representative total house income in the dwelling unit is $79955 -in.representative_income 79972 Representative total house income in the dwelling unit is $79972 -in.representative_income 80003 Representative total house income in the dwelling unit is $80003 -in.representative_income 80041 Representative total house income in the dwelling unit is $80041 -in.representative_income 80045 Representative total house income in the dwelling unit is $80045 -in.representative_income 80079 Representative total house income in the dwelling unit is $80079 -in.representative_income 80084 Representative total house income in the dwelling unit is $80084 -in.representative_income 80105 Representative total house income in the dwelling unit is $80105 -in.representative_income 80144 Representative total house income in the dwelling unit is $80144 -in.representative_income 80150 Representative total house income in the dwelling unit is $80150 -in.representative_income 80171 Representative total house income in the dwelling unit is $80171 -in.representative_income 80187 Representative total house income in the dwelling unit is $80187 -in.representative_income 80196 Representative total house income in the dwelling unit is $80196 -in.representative_income 80203 Representative total house income in the dwelling unit is $80203 -in.representative_income 80206 Representative total house income in the dwelling unit is $80206 -in.representative_income 80240 Representative total house income in the dwelling unit is $80240 -in.representative_income 80247 Representative total house income in the dwelling unit is $80247 -in.representative_income 80255 Representative total house income in the dwelling unit is $80255 -in.representative_income 80274 Representative total house income in the dwelling unit is $80274 -in.representative_income 80279 Representative total house income in the dwelling unit is $80279 -in.representative_income 80294 Representative total house income in the dwelling unit is $80294 -in.representative_income 80307 Representative total house income in the dwelling unit is $80307 -in.representative_income 80309 Representative total house income in the dwelling unit is $80309 -in.representative_income 80350 Representative total house income in the dwelling unit is $80350 -in.representative_income 80361 Representative total house income in the dwelling unit is $80361 -in.representative_income 80386 Representative total house income in the dwelling unit is $80386 -in.representative_income 80401 Representative total house income in the dwelling unit is $80401 -in.representative_income 80408 Representative total house income in the dwelling unit is $80408 -in.representative_income 80409 Representative total house income in the dwelling unit is $80409 -in.representative_income 80453 Representative total house income in the dwelling unit is $80453 -in.representative_income 80466 Representative total house income in the dwelling unit is $80466 -in.representative_income 80468 Representative total house income in the dwelling unit is $80468 -in.representative_income 80474 Representative total house income in the dwelling unit is $80474 -in.representative_income 80488 Representative total house income in the dwelling unit is $80488 -in.representative_income 80495 Representative total house income in the dwelling unit is $80495 -in.representative_income 80498 Representative total house income in the dwelling unit is $80498 -in.representative_income 80508 Representative total house income in the dwelling unit is $80508 -in.representative_income 80509 Representative total house income in the dwelling unit is $80509 -in.representative_income 80513 Representative total house income in the dwelling unit is $80513 -in.representative_income 80556 Representative total house income in the dwelling unit is $80556 -in.representative_income 80559 Representative total house income in the dwelling unit is $80559 -in.representative_income 80572 Representative total house income in the dwelling unit is $80572 -in.representative_income 80584 Representative total house income in the dwelling unit is $80584 -in.representative_income 80593 Representative total house income in the dwelling unit is $80593 -in.representative_income 80598 Representative total house income in the dwelling unit is $80598 -in.representative_income 80603 Representative total house income in the dwelling unit is $80603 -in.representative_income 80608 Representative total house income in the dwelling unit is $80608 -in.representative_income 80610 Representative total house income in the dwelling unit is $80610 -in.representative_income 80614 Representative total house income in the dwelling unit is $80614 -in.representative_income 80616 Representative total house income in the dwelling unit is $80616 -in.representative_income 80624 Representative total house income in the dwelling unit is $80624 -in.representative_income 80630 Representative total house income in the dwelling unit is $80630 -in.representative_income 80637 Representative total house income in the dwelling unit is $80637 -in.representative_income 80648 Representative total house income in the dwelling unit is $80648 -in.representative_income 80660 Representative total house income in the dwelling unit is $80660 -in.representative_income 80670 Representative total house income in the dwelling unit is $80670 -in.representative_income 80678 Representative total house income in the dwelling unit is $80678 -in.representative_income 80681 Representative total house income in the dwelling unit is $80681 -in.representative_income 80711 Representative total house income in the dwelling unit is $80711 -in.representative_income 80723 Representative total house income in the dwelling unit is $80723 -in.representative_income 80741 Representative total house income in the dwelling unit is $80741 -in.representative_income 80763 Representative total house income in the dwelling unit is $80763 -in.representative_income 80783 Representative total house income in the dwelling unit is $80783 -in.representative_income 80798 Representative total house income in the dwelling unit is $80798 -in.representative_income 80812 Representative total house income in the dwelling unit is $80812 -in.representative_income 80819 Representative total house income in the dwelling unit is $80819 -in.representative_income 80831 Representative total house income in the dwelling unit is $80831 -in.representative_income 80851 Representative total house income in the dwelling unit is $80851 -in.representative_income 80862 Representative total house income in the dwelling unit is $80862 -in.representative_income 80863 Representative total house income in the dwelling unit is $80863 -in.representative_income 80865 Representative total house income in the dwelling unit is $80865 -in.representative_income 80872 Representative total house income in the dwelling unit is $80872 -in.representative_income 80877 Representative total house income in the dwelling unit is $80877 -in.representative_income 80888 Representative total house income in the dwelling unit is $80888 -in.representative_income 80903 Representative total house income in the dwelling unit is $80903 -in.representative_income 80913 Representative total house income in the dwelling unit is $80913 -in.representative_income 80921 Representative total house income in the dwelling unit is $80921 -in.representative_income 80923 Representative total house income in the dwelling unit is $80923 -in.representative_income 80927 Representative total house income in the dwelling unit is $80927 -in.representative_income 80933 Representative total house income in the dwelling unit is $80933 -in.representative_income 80938 Representative total house income in the dwelling unit is $80938 -in.representative_income 80939 Representative total house income in the dwelling unit is $80939 -in.representative_income 80941 Representative total house income in the dwelling unit is $80941 -in.representative_income 80943 Representative total house income in the dwelling unit is $80943 -in.representative_income 80969 Representative total house income in the dwelling unit is $80969 -in.representative_income 80992 Representative total house income in the dwelling unit is $80992 -in.representative_income 80994 Representative total house income in the dwelling unit is $80994 -in.representative_income 80996 Representative total house income in the dwelling unit is $80996 -in.representative_income 81014 Representative total house income in the dwelling unit is $81014 -in.representative_income 81035 Representative total house income in the dwelling unit is $81035 -in.representative_income 81036 Representative total house income in the dwelling unit is $81036 -in.representative_income 81045 Representative total house income in the dwelling unit is $81045 -in.representative_income 81046 Representative total house income in the dwelling unit is $81046 -in.representative_income 81064 Representative total house income in the dwelling unit is $81064 -in.representative_income 81067 Representative total house income in the dwelling unit is $81067 -in.representative_income 81068 Representative total house income in the dwelling unit is $81068 -in.representative_income 81072 Representative total house income in the dwelling unit is $81072 -in.representative_income 81074 Representative total house income in the dwelling unit is $81074 -in.representative_income 81078 Representative total house income in the dwelling unit is $81078 -in.representative_income 81092 Representative total house income in the dwelling unit is $81092 -in.representative_income 81099 Representative total house income in the dwelling unit is $81099 -in.representative_income 81115 Representative total house income in the dwelling unit is $81115 -in.representative_income 81121 Representative total house income in the dwelling unit is $81121 -in.representative_income 81131 Representative total house income in the dwelling unit is $81131 -in.representative_income 81135 Representative total house income in the dwelling unit is $81135 -in.representative_income 81143 Representative total house income in the dwelling unit is $81143 -in.representative_income 81152 Representative total house income in the dwelling unit is $81152 -in.representative_income 81153 Representative total house income in the dwelling unit is $81153 -in.representative_income 81165 Representative total house income in the dwelling unit is $81165 -in.representative_income 81175 Representative total house income in the dwelling unit is $81175 -in.representative_income 81183 Representative total house income in the dwelling unit is $81183 -in.representative_income 81185 Representative total house income in the dwelling unit is $81185 -in.representative_income 81198 Representative total house income in the dwelling unit is $81198 -in.representative_income 81205 Representative total house income in the dwelling unit is $81205 -in.representative_income 81216 Representative total house income in the dwelling unit is $81216 -in.representative_income 81239 Representative total house income in the dwelling unit is $81239 -in.representative_income 81249 Representative total house income in the dwelling unit is $81249 -in.representative_income 81252 Representative total house income in the dwelling unit is $81252 -in.representative_income 81260 Representative total house income in the dwelling unit is $81260 -in.representative_income 81274 Representative total house income in the dwelling unit is $81274 -in.representative_income 81278 Representative total house income in the dwelling unit is $81278 -in.representative_income 81279 Representative total house income in the dwelling unit is $81279 -in.representative_income 81295 Representative total house income in the dwelling unit is $81295 -in.representative_income 81300 Representative total house income in the dwelling unit is $81300 -in.representative_income 81310 Representative total house income in the dwelling unit is $81310 -in.representative_income 81313 Representative total house income in the dwelling unit is $81313 -in.representative_income 81317 Representative total house income in the dwelling unit is $81317 -in.representative_income 81332 Representative total house income in the dwelling unit is $81332 -in.representative_income 81337 Representative total house income in the dwelling unit is $81337 -in.representative_income 81341 Representative total house income in the dwelling unit is $81341 -in.representative_income 81360 Representative total house income in the dwelling unit is $81360 -in.representative_income 81368 Representative total house income in the dwelling unit is $81368 -in.representative_income 81382 Representative total house income in the dwelling unit is $81382 -in.representative_income 81400 Representative total house income in the dwelling unit is $81400 -in.representative_income 81410 Representative total house income in the dwelling unit is $81410 -in.representative_income 81416 Representative total house income in the dwelling unit is $81416 -in.representative_income 81418 Representative total house income in the dwelling unit is $81418 -in.representative_income 81424 Representative total house income in the dwelling unit is $81424 -in.representative_income 81457 Representative total house income in the dwelling unit is $81457 -in.representative_income 81464 Representative total house income in the dwelling unit is $81464 -in.representative_income 81468 Representative total house income in the dwelling unit is $81468 -in.representative_income 81475 Representative total house income in the dwelling unit is $81475 -in.representative_income 81484 Representative total house income in the dwelling unit is $81484 -in.representative_income 81489 Representative total house income in the dwelling unit is $81489 -in.representative_income 81511 Representative total house income in the dwelling unit is $81511 -in.representative_income 81516 Representative total house income in the dwelling unit is $81516 -in.representative_income 81519 Representative total house income in the dwelling unit is $81519 -in.representative_income 81521 Representative total house income in the dwelling unit is $81521 -in.representative_income 81522 Representative total house income in the dwelling unit is $81522 -in.representative_income 81526 Representative total house income in the dwelling unit is $81526 -in.representative_income 81552 Representative total house income in the dwelling unit is $81552 -in.representative_income 81567 Representative total house income in the dwelling unit is $81567 -in.representative_income 81574 Representative total house income in the dwelling unit is $81574 -in.representative_income 81575 Representative total house income in the dwelling unit is $81575 -in.representative_income 81582 Representative total house income in the dwelling unit is $81582 -in.representative_income 81588 Representative total house income in the dwelling unit is $81588 -in.representative_income 81597 Representative total house income in the dwelling unit is $81597 -in.representative_income 81608 Representative total house income in the dwelling unit is $81608 -in.representative_income 81620 Representative total house income in the dwelling unit is $81620 -in.representative_income 81626 Representative total house income in the dwelling unit is $81626 -in.representative_income 81639 Representative total house income in the dwelling unit is $81639 -in.representative_income 81653 Representative total house income in the dwelling unit is $81653 -in.representative_income 81657 Representative total house income in the dwelling unit is $81657 -in.representative_income 81668 Representative total house income in the dwelling unit is $81668 -in.representative_income 81683 Representative total house income in the dwelling unit is $81683 -in.representative_income 81689 Representative total house income in the dwelling unit is $81689 -in.representative_income 81691 Representative total house income in the dwelling unit is $81691 -in.representative_income 81705 Representative total house income in the dwelling unit is $81705 -in.representative_income 81721 Representative total house income in the dwelling unit is $81721 -in.representative_income 81732 Representative total house income in the dwelling unit is $81732 -in.representative_income 81733 Representative total house income in the dwelling unit is $81733 -in.representative_income 81744 Representative total house income in the dwelling unit is $81744 -in.representative_income 81748 Representative total house income in the dwelling unit is $81748 -in.representative_income 81753 Representative total house income in the dwelling unit is $81753 -in.representative_income 81754 Representative total house income in the dwelling unit is $81754 -in.representative_income 81785 Representative total house income in the dwelling unit is $81785 -in.representative_income 81791 Representative total house income in the dwelling unit is $81791 -in.representative_income 81794 Representative total house income in the dwelling unit is $81794 -in.representative_income 81795 Representative total house income in the dwelling unit is $81795 -in.representative_income 81797 Representative total house income in the dwelling unit is $81797 -in.representative_income 81801 Representative total house income in the dwelling unit is $81801 -in.representative_income 81806 Representative total house income in the dwelling unit is $81806 -in.representative_income 81816 Representative total house income in the dwelling unit is $81816 -in.representative_income 81822 Representative total house income in the dwelling unit is $81822 -in.representative_income 81825 Representative total house income in the dwelling unit is $81825 -in.representative_income 81838 Representative total house income in the dwelling unit is $81838 -in.representative_income 81839 Representative total house income in the dwelling unit is $81839 -in.representative_income 81845 Representative total house income in the dwelling unit is $81845 -in.representative_income 81860 Representative total house income in the dwelling unit is $81860 -in.representative_income 81861 Representative total house income in the dwelling unit is $81861 -in.representative_income 81862 Representative total house income in the dwelling unit is $81862 -in.representative_income 81872 Representative total house income in the dwelling unit is $81872 -in.representative_income 81878 Representative total house income in the dwelling unit is $81878 -in.representative_income 81898 Representative total house income in the dwelling unit is $81898 -in.representative_income 81899 Representative total house income in the dwelling unit is $81899 -in.representative_income 81903 Representative total house income in the dwelling unit is $81903 -in.representative_income 81904 Representative total house income in the dwelling unit is $81904 -in.representative_income 81923 Representative total house income in the dwelling unit is $81923 -in.representative_income 81926 Representative total house income in the dwelling unit is $81926 -in.representative_income 81943 Representative total house income in the dwelling unit is $81943 -in.representative_income 81956 Representative total house income in the dwelling unit is $81956 -in.representative_income 81968 Representative total house income in the dwelling unit is $81968 -in.representative_income 81977 Representative total house income in the dwelling unit is $81977 -in.representative_income 81980 Representative total house income in the dwelling unit is $81980 -in.representative_income 81993 Representative total house income in the dwelling unit is $81993 -in.representative_income 81995 Representative total house income in the dwelling unit is $81995 -in.representative_income 82000 Representative total house income in the dwelling unit is $82000 -in.representative_income 82004 Representative total house income in the dwelling unit is $82004 -in.representative_income 82008 Representative total house income in the dwelling unit is $82008 -in.representative_income 82012 Representative total house income in the dwelling unit is $82012 -in.representative_income 82024 Representative total house income in the dwelling unit is $82024 -in.representative_income 82048 Representative total house income in the dwelling unit is $82048 -in.representative_income 82059 Representative total house income in the dwelling unit is $82059 -in.representative_income 82064 Representative total house income in the dwelling unit is $82064 -in.representative_income 82103 Representative total house income in the dwelling unit is $82103 -in.representative_income 82116 Representative total house income in the dwelling unit is $82116 -in.representative_income 82118 Representative total house income in the dwelling unit is $82118 -in.representative_income 82120 Representative total house income in the dwelling unit is $82120 -in.representative_income 82125 Representative total house income in the dwelling unit is $82125 -in.representative_income 82127 Representative total house income in the dwelling unit is $82127 -in.representative_income 82133 Representative total house income in the dwelling unit is $82133 -in.representative_income 82135 Representative total house income in the dwelling unit is $82135 -in.representative_income 82145 Representative total house income in the dwelling unit is $82145 -in.representative_income 82148 Representative total house income in the dwelling unit is $82148 -in.representative_income 82154 Representative total house income in the dwelling unit is $82154 -in.representative_income 82155 Representative total house income in the dwelling unit is $82155 -in.representative_income 82169 Representative total house income in the dwelling unit is $82169 -in.representative_income 82170 Representative total house income in the dwelling unit is $82170 -in.representative_income 82175 Representative total house income in the dwelling unit is $82175 -in.representative_income 82206 Representative total house income in the dwelling unit is $82206 -in.representative_income 82207 Representative total house income in the dwelling unit is $82207 -in.representative_income 82210 Representative total house income in the dwelling unit is $82210 -in.representative_income 82224 Representative total house income in the dwelling unit is $82224 -in.representative_income 82226 Representative total house income in the dwelling unit is $82226 -in.representative_income 82228 Representative total house income in the dwelling unit is $82228 -in.representative_income 82247 Representative total house income in the dwelling unit is $82247 -in.representative_income 82259 Representative total house income in the dwelling unit is $82259 -in.representative_income 82270 Representative total house income in the dwelling unit is $82270 -in.representative_income 82276 Representative total house income in the dwelling unit is $82276 -in.representative_income 82280 Representative total house income in the dwelling unit is $82280 -in.representative_income 82310 Representative total house income in the dwelling unit is $82310 -in.representative_income 82312 Representative total house income in the dwelling unit is $82312 -in.representative_income 82316 Representative total house income in the dwelling unit is $82316 -in.representative_income 82327 Representative total house income in the dwelling unit is $82327 -in.representative_income 82332 Representative total house income in the dwelling unit is $82332 -in.representative_income 82333 Representative total house income in the dwelling unit is $82333 -in.representative_income 82338 Representative total house income in the dwelling unit is $82338 -in.representative_income 82351 Representative total house income in the dwelling unit is $82351 -in.representative_income 82353 Representative total house income in the dwelling unit is $82353 -in.representative_income 82357 Representative total house income in the dwelling unit is $82357 -in.representative_income 82364 Representative total house income in the dwelling unit is $82364 -in.representative_income 82372 Representative total house income in the dwelling unit is $82372 -in.representative_income 82375 Representative total house income in the dwelling unit is $82375 -in.representative_income 82376 Representative total house income in the dwelling unit is $82376 -in.representative_income 82377 Representative total house income in the dwelling unit is $82377 -in.representative_income 82386 Representative total house income in the dwelling unit is $82386 -in.representative_income 82387 Representative total house income in the dwelling unit is $82387 -in.representative_income 82397 Representative total house income in the dwelling unit is $82397 -in.representative_income 82398 Representative total house income in the dwelling unit is $82398 -in.representative_income 82399 Representative total house income in the dwelling unit is $82399 -in.representative_income 82407 Representative total house income in the dwelling unit is $82407 -in.representative_income 82408 Representative total house income in the dwelling unit is $82408 -in.representative_income 82413 Representative total house income in the dwelling unit is $82413 -in.representative_income 82416 Representative total house income in the dwelling unit is $82416 -in.representative_income 82418 Representative total house income in the dwelling unit is $82418 -in.representative_income 82421 Representative total house income in the dwelling unit is $82421 -in.representative_income 82428 Representative total house income in the dwelling unit is $82428 -in.representative_income 82430 Representative total house income in the dwelling unit is $82430 -in.representative_income 82440 Representative total house income in the dwelling unit is $82440 -in.representative_income 82441 Representative total house income in the dwelling unit is $82441 -in.representative_income 82442 Representative total house income in the dwelling unit is $82442 -in.representative_income 82444 Representative total house income in the dwelling unit is $82444 -in.representative_income 82451 Representative total house income in the dwelling unit is $82451 -in.representative_income 82462 Representative total house income in the dwelling unit is $82462 -in.representative_income 82468 Representative total house income in the dwelling unit is $82468 -in.representative_income 82471 Representative total house income in the dwelling unit is $82471 -in.representative_income 82478 Representative total house income in the dwelling unit is $82478 -in.representative_income 82494 Representative total house income in the dwelling unit is $82494 -in.representative_income 82506 Representative total house income in the dwelling unit is $82506 -in.representative_income 82516 Representative total house income in the dwelling unit is $82516 -in.representative_income 82521 Representative total house income in the dwelling unit is $82521 -in.representative_income 82523 Representative total house income in the dwelling unit is $82523 -in.representative_income 82526 Representative total house income in the dwelling unit is $82526 -in.representative_income 82527 Representative total house income in the dwelling unit is $82527 -in.representative_income 82528 Representative total house income in the dwelling unit is $82528 -in.representative_income 82529 Representative total house income in the dwelling unit is $82529 -in.representative_income 82534 Representative total house income in the dwelling unit is $82534 -in.representative_income 82537 Representative total house income in the dwelling unit is $82537 -in.representative_income 82548 Representative total house income in the dwelling unit is $82548 -in.representative_income 82549 Representative total house income in the dwelling unit is $82549 -in.representative_income 82556 Representative total house income in the dwelling unit is $82556 -in.representative_income 82567 Representative total house income in the dwelling unit is $82567 -in.representative_income 82569 Representative total house income in the dwelling unit is $82569 -in.representative_income 82571 Representative total house income in the dwelling unit is $82571 -in.representative_income 82573 Representative total house income in the dwelling unit is $82573 -in.representative_income 82576 Representative total house income in the dwelling unit is $82576 -in.representative_income 82589 Representative total house income in the dwelling unit is $82589 -in.representative_income 82609 Representative total house income in the dwelling unit is $82609 -in.representative_income 82610 Representative total house income in the dwelling unit is $82610 -in.representative_income 82612 Representative total house income in the dwelling unit is $82612 -in.representative_income 82619 Representative total house income in the dwelling unit is $82619 -in.representative_income 82623 Representative total house income in the dwelling unit is $82623 -in.representative_income 82628 Representative total house income in the dwelling unit is $82628 -in.representative_income 82630 Representative total house income in the dwelling unit is $82630 -in.representative_income 82650 Representative total house income in the dwelling unit is $82650 -in.representative_income 82655 Representative total house income in the dwelling unit is $82655 -in.representative_income 82656 Representative total house income in the dwelling unit is $82656 -in.representative_income 82660 Representative total house income in the dwelling unit is $82660 -in.representative_income 82666 Representative total house income in the dwelling unit is $82666 -in.representative_income 82671 Representative total house income in the dwelling unit is $82671 -in.representative_income 82677 Representative total house income in the dwelling unit is $82677 -in.representative_income 82681 Representative total house income in the dwelling unit is $82681 -in.representative_income 82710 Representative total house income in the dwelling unit is $82710 -in.representative_income 82712 Representative total house income in the dwelling unit is $82712 -in.representative_income 82722 Representative total house income in the dwelling unit is $82722 -in.representative_income 82731 Representative total house income in the dwelling unit is $82731 -in.representative_income 82743 Representative total house income in the dwelling unit is $82743 -in.representative_income 82761 Representative total house income in the dwelling unit is $82761 -in.representative_income 82763 Representative total house income in the dwelling unit is $82763 -in.representative_income 82764 Representative total house income in the dwelling unit is $82764 -in.representative_income 82766 Representative total house income in the dwelling unit is $82766 -in.representative_income 82768 Representative total house income in the dwelling unit is $82768 -in.representative_income 82786 Representative total house income in the dwelling unit is $82786 -in.representative_income 82792 Representative total house income in the dwelling unit is $82792 -in.representative_income 82796 Representative total house income in the dwelling unit is $82796 -in.representative_income 82807 Representative total house income in the dwelling unit is $82807 -in.representative_income 82809 Representative total house income in the dwelling unit is $82809 -in.representative_income 82826 Representative total house income in the dwelling unit is $82826 -in.representative_income 82828 Representative total house income in the dwelling unit is $82828 -in.representative_income 82832 Representative total house income in the dwelling unit is $82832 -in.representative_income 82840 Representative total house income in the dwelling unit is $82840 -in.representative_income 82842 Representative total house income in the dwelling unit is $82842 -in.representative_income 82865 Representative total house income in the dwelling unit is $82865 -in.representative_income 82870 Representative total house income in the dwelling unit is $82870 -in.representative_income 82872 Representative total house income in the dwelling unit is $82872 -in.representative_income 82881 Representative total house income in the dwelling unit is $82881 -in.representative_income 82892 Representative total house income in the dwelling unit is $82892 -in.representative_income 82894 Representative total house income in the dwelling unit is $82894 -in.representative_income 82908 Representative total house income in the dwelling unit is $82908 -in.representative_income 82923 Representative total house income in the dwelling unit is $82923 -in.representative_income 82926 Representative total house income in the dwelling unit is $82926 -in.representative_income 82929 Representative total house income in the dwelling unit is $82929 -in.representative_income 82933 Representative total house income in the dwelling unit is $82933 -in.representative_income 82935 Representative total house income in the dwelling unit is $82935 -in.representative_income 82952 Representative total house income in the dwelling unit is $82952 -in.representative_income 82956 Representative total house income in the dwelling unit is $82956 -in.representative_income 82978 Representative total house income in the dwelling unit is $82978 -in.representative_income 82979 Representative total house income in the dwelling unit is $82979 -in.representative_income 82980 Representative total house income in the dwelling unit is $82980 -in.representative_income 82981 Representative total house income in the dwelling unit is $82981 -in.representative_income 82988 Representative total house income in the dwelling unit is $82988 -in.representative_income 82991 Representative total house income in the dwelling unit is $82991 -in.representative_income 82997 Representative total house income in the dwelling unit is $82997 -in.representative_income 83001 Representative total house income in the dwelling unit is $83001 -in.representative_income 83003 Representative total house income in the dwelling unit is $83003 -in.representative_income 83009 Representative total house income in the dwelling unit is $83009 -in.representative_income 83013 Representative total house income in the dwelling unit is $83013 -in.representative_income 83019 Representative total house income in the dwelling unit is $83019 -in.representative_income 83024 Representative total house income in the dwelling unit is $83024 -in.representative_income 83029 Representative total house income in the dwelling unit is $83029 -in.representative_income 83031 Representative total house income in the dwelling unit is $83031 -in.representative_income 83034 Representative total house income in the dwelling unit is $83034 -in.representative_income 83043 Representative total house income in the dwelling unit is $83043 -in.representative_income 83063 Representative total house income in the dwelling unit is $83063 -in.representative_income 83064 Representative total house income in the dwelling unit is $83064 -in.representative_income 83067 Representative total house income in the dwelling unit is $83067 -in.representative_income 83084 Representative total house income in the dwelling unit is $83084 -in.representative_income 83085 Representative total house income in the dwelling unit is $83085 -in.representative_income 83088 Representative total house income in the dwelling unit is $83088 -in.representative_income 83095 Representative total house income in the dwelling unit is $83095 -in.representative_income 83099 Representative total house income in the dwelling unit is $83099 -in.representative_income 83102 Representative total house income in the dwelling unit is $83102 -in.representative_income 83103 Representative total house income in the dwelling unit is $83103 -in.representative_income 83121 Representative total house income in the dwelling unit is $83121 -in.representative_income 83122 Representative total house income in the dwelling unit is $83122 -in.representative_income 83135 Representative total house income in the dwelling unit is $83135 -in.representative_income 83139 Representative total house income in the dwelling unit is $83139 -in.representative_income 83142 Representative total house income in the dwelling unit is $83142 -in.representative_income 83145 Representative total house income in the dwelling unit is $83145 -in.representative_income 83156 Representative total house income in the dwelling unit is $83156 -in.representative_income 83165 Representative total house income in the dwelling unit is $83165 -in.representative_income 83186 Representative total house income in the dwelling unit is $83186 -in.representative_income 83193 Representative total house income in the dwelling unit is $83193 -in.representative_income 83194 Representative total house income in the dwelling unit is $83194 -in.representative_income 83196 Representative total house income in the dwelling unit is $83196 -in.representative_income 83197 Representative total house income in the dwelling unit is $83197 -in.representative_income 83200 Representative total house income in the dwelling unit is $83200 -in.representative_income 83208 Representative total house income in the dwelling unit is $83208 -in.representative_income 83209 Representative total house income in the dwelling unit is $83209 -in.representative_income 83211 Representative total house income in the dwelling unit is $83211 -in.representative_income 83214 Representative total house income in the dwelling unit is $83214 -in.representative_income 83229 Representative total house income in the dwelling unit is $83229 -in.representative_income 83236 Representative total house income in the dwelling unit is $83236 -in.representative_income 83238 Representative total house income in the dwelling unit is $83238 -in.representative_income 83246 Representative total house income in the dwelling unit is $83246 -in.representative_income 83255 Representative total house income in the dwelling unit is $83255 -in.representative_income 83257 Representative total house income in the dwelling unit is $83257 -in.representative_income 83261 Representative total house income in the dwelling unit is $83261 -in.representative_income 83271 Representative total house income in the dwelling unit is $83271 -in.representative_income 83282 Representative total house income in the dwelling unit is $83282 -in.representative_income 83299 Representative total house income in the dwelling unit is $83299 -in.representative_income 83304 Representative total house income in the dwelling unit is $83304 -in.representative_income 83307 Representative total house income in the dwelling unit is $83307 -in.representative_income 83310 Representative total house income in the dwelling unit is $83310 -in.representative_income 83314 Representative total house income in the dwelling unit is $83314 -in.representative_income 83324 Representative total house income in the dwelling unit is $83324 -in.representative_income 83326 Representative total house income in the dwelling unit is $83326 -in.representative_income 83329 Representative total house income in the dwelling unit is $83329 -in.representative_income 83332 Representative total house income in the dwelling unit is $83332 -in.representative_income 83337 Representative total house income in the dwelling unit is $83337 -in.representative_income 83341 Representative total house income in the dwelling unit is $83341 -in.representative_income 83357 Representative total house income in the dwelling unit is $83357 -in.representative_income 83366 Representative total house income in the dwelling unit is $83366 -in.representative_income 83367 Representative total house income in the dwelling unit is $83367 -in.representative_income 83369 Representative total house income in the dwelling unit is $83369 -in.representative_income 83388 Representative total house income in the dwelling unit is $83388 -in.representative_income 83407 Representative total house income in the dwelling unit is $83407 -in.representative_income 83409 Representative total house income in the dwelling unit is $83409 -in.representative_income 83412 Representative total house income in the dwelling unit is $83412 -in.representative_income 83419 Representative total house income in the dwelling unit is $83419 -in.representative_income 83428 Representative total house income in the dwelling unit is $83428 -in.representative_income 83438 Representative total house income in the dwelling unit is $83438 -in.representative_income 83445 Representative total house income in the dwelling unit is $83445 -in.representative_income 83458 Representative total house income in the dwelling unit is $83458 -in.representative_income 83464 Representative total house income in the dwelling unit is $83464 -in.representative_income 83465 Representative total house income in the dwelling unit is $83465 -in.representative_income 83478 Representative total house income in the dwelling unit is $83478 -in.representative_income 83482 Representative total house income in the dwelling unit is $83482 -in.representative_income 83493 Representative total house income in the dwelling unit is $83493 -in.representative_income 83495 Representative total house income in the dwelling unit is $83495 -in.representative_income 83499 Representative total house income in the dwelling unit is $83499 -in.representative_income 83506 Representative total house income in the dwelling unit is $83506 -in.representative_income 83514 Representative total house income in the dwelling unit is $83514 -in.representative_income 83520 Representative total house income in the dwelling unit is $83520 -in.representative_income 83525 Representative total house income in the dwelling unit is $83525 -in.representative_income 83527 Representative total house income in the dwelling unit is $83527 -in.representative_income 83531 Representative total house income in the dwelling unit is $83531 -in.representative_income 83532 Representative total house income in the dwelling unit is $83532 -in.representative_income 83537 Representative total house income in the dwelling unit is $83537 -in.representative_income 83539 Representative total house income in the dwelling unit is $83539 -in.representative_income 83546 Representative total house income in the dwelling unit is $83546 -in.representative_income 83548 Representative total house income in the dwelling unit is $83548 -in.representative_income 83569 Representative total house income in the dwelling unit is $83569 -in.representative_income 83589 Representative total house income in the dwelling unit is $83589 -in.representative_income 83600 Representative total house income in the dwelling unit is $83600 -in.representative_income 83610 Representative total house income in the dwelling unit is $83610 -in.representative_income 83615 Representative total house income in the dwelling unit is $83615 -in.representative_income 83622 Representative total house income in the dwelling unit is $83622 -in.representative_income 83629 Representative total house income in the dwelling unit is $83629 -in.representative_income 83630 Representative total house income in the dwelling unit is $83630 -in.representative_income 83640 Representative total house income in the dwelling unit is $83640 -in.representative_income 83643 Representative total house income in the dwelling unit is $83643 -in.representative_income 83647 Representative total house income in the dwelling unit is $83647 -in.representative_income 83650 Representative total house income in the dwelling unit is $83650 -in.representative_income 83659 Representative total house income in the dwelling unit is $83659 -in.representative_income 83665 Representative total house income in the dwelling unit is $83665 -in.representative_income 83666 Representative total house income in the dwelling unit is $83666 -in.representative_income 83672 Representative total house income in the dwelling unit is $83672 -in.representative_income 83680 Representative total house income in the dwelling unit is $83680 -in.representative_income 83714 Representative total house income in the dwelling unit is $83714 -in.representative_income 83718 Representative total house income in the dwelling unit is $83718 -in.representative_income 83722 Representative total house income in the dwelling unit is $83722 -in.representative_income 83729 Representative total house income in the dwelling unit is $83729 -in.representative_income 83731 Representative total house income in the dwelling unit is $83731 -in.representative_income 83734 Representative total house income in the dwelling unit is $83734 -in.representative_income 83736 Representative total house income in the dwelling unit is $83736 -in.representative_income 83737 Representative total house income in the dwelling unit is $83737 -in.representative_income 83740 Representative total house income in the dwelling unit is $83740 -in.representative_income 83741 Representative total house income in the dwelling unit is $83741 -in.representative_income 83746 Representative total house income in the dwelling unit is $83746 -in.representative_income 83751 Representative total house income in the dwelling unit is $83751 -in.representative_income 83754 Representative total house income in the dwelling unit is $83754 -in.representative_income 83764 Representative total house income in the dwelling unit is $83764 -in.representative_income 83792 Representative total house income in the dwelling unit is $83792 -in.representative_income 83809 Representative total house income in the dwelling unit is $83809 -in.representative_income 83822 Representative total house income in the dwelling unit is $83822 -in.representative_income 83836 Representative total house income in the dwelling unit is $83836 -in.representative_income 83839 Representative total house income in the dwelling unit is $83839 -in.representative_income 83841 Representative total house income in the dwelling unit is $83841 -in.representative_income 83842 Representative total house income in the dwelling unit is $83842 -in.representative_income 83844 Representative total house income in the dwelling unit is $83844 -in.representative_income 83845 Representative total house income in the dwelling unit is $83845 -in.representative_income 83857 Representative total house income in the dwelling unit is $83857 -in.representative_income 83869 Representative total house income in the dwelling unit is $83869 -in.representative_income 83873 Representative total house income in the dwelling unit is $83873 -in.representative_income 83888 Representative total house income in the dwelling unit is $83888 -in.representative_income 83894 Representative total house income in the dwelling unit is $83894 -in.representative_income 83943 Representative total house income in the dwelling unit is $83943 -in.representative_income 83944 Representative total house income in the dwelling unit is $83944 -in.representative_income 83947 Representative total house income in the dwelling unit is $83947 -in.representative_income 83953 Representative total house income in the dwelling unit is $83953 -in.representative_income 83960 Representative total house income in the dwelling unit is $83960 -in.representative_income 83968 Representative total house income in the dwelling unit is $83968 -in.representative_income 83973 Representative total house income in the dwelling unit is $83973 -in.representative_income 83993 Representative total house income in the dwelling unit is $83993 -in.representative_income 84044 Representative total house income in the dwelling unit is $84044 -in.representative_income 84046 Representative total house income in the dwelling unit is $84046 -in.representative_income 84050 Representative total house income in the dwelling unit is $84050 -in.representative_income 84051 Representative total house income in the dwelling unit is $84051 -in.representative_income 84052 Representative total house income in the dwelling unit is $84052 -in.representative_income 84060 Representative total house income in the dwelling unit is $84060 -in.representative_income 84064 Representative total house income in the dwelling unit is $84064 -in.representative_income 84069 Representative total house income in the dwelling unit is $84069 -in.representative_income 84074 Representative total house income in the dwelling unit is $84074 -in.representative_income 84080 Representative total house income in the dwelling unit is $84080 -in.representative_income 84095 Representative total house income in the dwelling unit is $84095 -in.representative_income 84136 Representative total house income in the dwelling unit is $84136 -in.representative_income 84145 Representative total house income in the dwelling unit is $84145 -in.representative_income 84156 Representative total house income in the dwelling unit is $84156 -in.representative_income 84157 Representative total house income in the dwelling unit is $84157 -in.representative_income 84159 Representative total house income in the dwelling unit is $84159 -in.representative_income 84166 Representative total house income in the dwelling unit is $84166 -in.representative_income 84168 Representative total house income in the dwelling unit is $84168 -in.representative_income 84178 Representative total house income in the dwelling unit is $84178 -in.representative_income 84206 Representative total house income in the dwelling unit is $84206 -in.representative_income 84212 Representative total house income in the dwelling unit is $84212 -in.representative_income 84216 Representative total house income in the dwelling unit is $84216 -in.representative_income 84226 Representative total house income in the dwelling unit is $84226 -in.representative_income 84246 Representative total house income in the dwelling unit is $84246 -in.representative_income 84252 Representative total house income in the dwelling unit is $84252 -in.representative_income 84263 Representative total house income in the dwelling unit is $84263 -in.representative_income 84266 Representative total house income in the dwelling unit is $84266 -in.representative_income 84269 Representative total house income in the dwelling unit is $84269 -in.representative_income 84276 Representative total house income in the dwelling unit is $84276 -in.representative_income 84281 Representative total house income in the dwelling unit is $84281 -in.representative_income 84287 Representative total house income in the dwelling unit is $84287 -in.representative_income 84298 Representative total house income in the dwelling unit is $84298 -in.representative_income 84308 Representative total house income in the dwelling unit is $84308 -in.representative_income 84309 Representative total house income in the dwelling unit is $84309 -in.representative_income 84311 Representative total house income in the dwelling unit is $84311 -in.representative_income 84319 Representative total house income in the dwelling unit is $84319 -in.representative_income 84347 Representative total house income in the dwelling unit is $84347 -in.representative_income 84348 Representative total house income in the dwelling unit is $84348 -in.representative_income 84369 Representative total house income in the dwelling unit is $84369 -in.representative_income 84373 Representative total house income in the dwelling unit is $84373 -in.representative_income 84379 Representative total house income in the dwelling unit is $84379 -in.representative_income 84381 Representative total house income in the dwelling unit is $84381 -in.representative_income 84384 Representative total house income in the dwelling unit is $84384 -in.representative_income 84385 Representative total house income in the dwelling unit is $84385 -in.representative_income 84390 Representative total house income in the dwelling unit is $84390 -in.representative_income 84396 Representative total house income in the dwelling unit is $84396 -in.representative_income 84398 Representative total house income in the dwelling unit is $84398 -in.representative_income 84400 Representative total house income in the dwelling unit is $84400 -in.representative_income 84411 Representative total house income in the dwelling unit is $84411 -in.representative_income 84418 Representative total house income in the dwelling unit is $84418 -in.representative_income 84421 Representative total house income in the dwelling unit is $84421 -in.representative_income 84438 Representative total house income in the dwelling unit is $84438 -in.representative_income 84446 Representative total house income in the dwelling unit is $84446 -in.representative_income 84448 Representative total house income in the dwelling unit is $84448 -in.representative_income 84452 Representative total house income in the dwelling unit is $84452 -in.representative_income 84474 Representative total house income in the dwelling unit is $84474 -in.representative_income 84476 Representative total house income in the dwelling unit is $84476 -in.representative_income 84480 Representative total house income in the dwelling unit is $84480 -in.representative_income 84482 Representative total house income in the dwelling unit is $84482 -in.representative_income 84493 Representative total house income in the dwelling unit is $84493 -in.representative_income 84497 Representative total house income in the dwelling unit is $84497 -in.representative_income 84504 Representative total house income in the dwelling unit is $84504 -in.representative_income 84512 Representative total house income in the dwelling unit is $84512 -in.representative_income 84526 Representative total house income in the dwelling unit is $84526 -in.representative_income 84529 Representative total house income in the dwelling unit is $84529 -in.representative_income 84532 Representative total house income in the dwelling unit is $84532 -in.representative_income 84538 Representative total house income in the dwelling unit is $84538 -in.representative_income 84549 Representative total house income in the dwelling unit is $84549 -in.representative_income 84553 Representative total house income in the dwelling unit is $84553 -in.representative_income 84576 Representative total house income in the dwelling unit is $84576 -in.representative_income 84579 Representative total house income in the dwelling unit is $84579 -in.representative_income 84586 Representative total house income in the dwelling unit is $84586 -in.representative_income 84588 Representative total house income in the dwelling unit is $84588 -in.representative_income 84596 Representative total house income in the dwelling unit is $84596 -in.representative_income 84598 Representative total house income in the dwelling unit is $84598 -in.representative_income 84601 Representative total house income in the dwelling unit is $84601 -in.representative_income 84621 Representative total house income in the dwelling unit is $84621 -in.representative_income 84623 Representative total house income in the dwelling unit is $84623 -in.representative_income 84632 Representative total house income in the dwelling unit is $84632 -in.representative_income 84635 Representative total house income in the dwelling unit is $84635 -in.representative_income 84643 Representative total house income in the dwelling unit is $84643 -in.representative_income 84650 Representative total house income in the dwelling unit is $84650 -in.representative_income 84655 Representative total house income in the dwelling unit is $84655 -in.representative_income 84674 Representative total house income in the dwelling unit is $84674 -in.representative_income 84682 Representative total house income in the dwelling unit is $84682 -in.representative_income 84685 Representative total house income in the dwelling unit is $84685 -in.representative_income 84695 Representative total house income in the dwelling unit is $84695 -in.representative_income 84706 Representative total house income in the dwelling unit is $84706 -in.representative_income 84709 Representative total house income in the dwelling unit is $84709 -in.representative_income 84726 Representative total house income in the dwelling unit is $84726 -in.representative_income 84751 Representative total house income in the dwelling unit is $84751 -in.representative_income 84771 Representative total house income in the dwelling unit is $84771 -in.representative_income 84785 Representative total house income in the dwelling unit is $84785 -in.representative_income 84790 Representative total house income in the dwelling unit is $84790 -in.representative_income 84799 Representative total house income in the dwelling unit is $84799 -in.representative_income 84802 Representative total house income in the dwelling unit is $84802 -in.representative_income 84803 Representative total house income in the dwelling unit is $84803 -in.representative_income 84816 Representative total house income in the dwelling unit is $84816 -in.representative_income 84817 Representative total house income in the dwelling unit is $84817 -in.representative_income 84824 Representative total house income in the dwelling unit is $84824 -in.representative_income 84837 Representative total house income in the dwelling unit is $84837 -in.representative_income 84842 Representative total house income in the dwelling unit is $84842 -in.representative_income 84852 Representative total house income in the dwelling unit is $84852 -in.representative_income 84888 Representative total house income in the dwelling unit is $84888 -in.representative_income 84891 Representative total house income in the dwelling unit is $84891 -in.representative_income 84895 Representative total house income in the dwelling unit is $84895 -in.representative_income 84907 Representative total house income in the dwelling unit is $84907 -in.representative_income 84909 Representative total house income in the dwelling unit is $84909 -in.representative_income 84925 Representative total house income in the dwelling unit is $84925 -in.representative_income 84928 Representative total house income in the dwelling unit is $84928 -in.representative_income 84938 Representative total house income in the dwelling unit is $84938 -in.representative_income 84953 Representative total house income in the dwelling unit is $84953 -in.representative_income 84954 Representative total house income in the dwelling unit is $84954 -in.representative_income 84959 Representative total house income in the dwelling unit is $84959 -in.representative_income 84974 Representative total house income in the dwelling unit is $84974 -in.representative_income 84992 Representative total house income in the dwelling unit is $84992 -in.representative_income 85002 Representative total house income in the dwelling unit is $85002 -in.representative_income 85012 Representative total house income in the dwelling unit is $85012 -in.representative_income 85014 Representative total house income in the dwelling unit is $85014 -in.representative_income 85017 Representative total house income in the dwelling unit is $85017 -in.representative_income 85028 Representative total house income in the dwelling unit is $85028 -in.representative_income 85033 Representative total house income in the dwelling unit is $85033 -in.representative_income 85044 Representative total house income in the dwelling unit is $85044 -in.representative_income 85054 Representative total house income in the dwelling unit is $85054 -in.representative_income 85059 Representative total house income in the dwelling unit is $85059 -in.representative_income 85069 Representative total house income in the dwelling unit is $85069 -in.representative_income 85075 Representative total house income in the dwelling unit is $85075 -in.representative_income 85076 Representative total house income in the dwelling unit is $85076 -in.representative_income 85082 Representative total house income in the dwelling unit is $85082 -in.representative_income 85095 Representative total house income in the dwelling unit is $85095 -in.representative_income 85107 Representative total house income in the dwelling unit is $85107 -in.representative_income 85115 Representative total house income in the dwelling unit is $85115 -in.representative_income 85124 Representative total house income in the dwelling unit is $85124 -in.representative_income 85125 Representative total house income in the dwelling unit is $85125 -in.representative_income 85128 Representative total house income in the dwelling unit is $85128 -in.representative_income 85140 Representative total house income in the dwelling unit is $85140 -in.representative_income 85141 Representative total house income in the dwelling unit is $85141 -in.representative_income 85155 Representative total house income in the dwelling unit is $85155 -in.representative_income 85160 Representative total house income in the dwelling unit is $85160 -in.representative_income 85163 Representative total house income in the dwelling unit is $85163 -in.representative_income 85170 Representative total house income in the dwelling unit is $85170 -in.representative_income 85175 Representative total house income in the dwelling unit is $85175 -in.representative_income 85178 Representative total house income in the dwelling unit is $85178 -in.representative_income 85185 Representative total house income in the dwelling unit is $85185 -in.representative_income 85191 Representative total house income in the dwelling unit is $85191 -in.representative_income 85198 Representative total house income in the dwelling unit is $85198 -in.representative_income 85212 Representative total house income in the dwelling unit is $85212 -in.representative_income 85228 Representative total house income in the dwelling unit is $85228 -in.representative_income 85232 Representative total house income in the dwelling unit is $85232 -in.representative_income 85241 Representative total house income in the dwelling unit is $85241 -in.representative_income 85249 Representative total house income in the dwelling unit is $85249 -in.representative_income 85256 Representative total house income in the dwelling unit is $85256 -in.representative_income 85260 Representative total house income in the dwelling unit is $85260 -in.representative_income 85264 Representative total house income in the dwelling unit is $85264 -in.representative_income 85269 Representative total house income in the dwelling unit is $85269 -in.representative_income 85279 Representative total house income in the dwelling unit is $85279 -in.representative_income 85285 Representative total house income in the dwelling unit is $85285 -in.representative_income 85287 Representative total house income in the dwelling unit is $85287 -in.representative_income 85296 Representative total house income in the dwelling unit is $85296 -in.representative_income 85301 Representative total house income in the dwelling unit is $85301 -in.representative_income 85312 Representative total house income in the dwelling unit is $85312 -in.representative_income 85314 Representative total house income in the dwelling unit is $85314 -in.representative_income 85318 Representative total house income in the dwelling unit is $85318 -in.representative_income 85322 Representative total house income in the dwelling unit is $85322 -in.representative_income 85336 Representative total house income in the dwelling unit is $85336 -in.representative_income 85340 Representative total house income in the dwelling unit is $85340 -in.representative_income 85356 Representative total house income in the dwelling unit is $85356 -in.representative_income 85357 Representative total house income in the dwelling unit is $85357 -in.representative_income 85358 Representative total house income in the dwelling unit is $85358 -in.representative_income 85368 Representative total house income in the dwelling unit is $85368 -in.representative_income 85377 Representative total house income in the dwelling unit is $85377 -in.representative_income 85398 Representative total house income in the dwelling unit is $85398 -in.representative_income 85404 Representative total house income in the dwelling unit is $85404 -in.representative_income 85411 Representative total house income in the dwelling unit is $85411 -in.representative_income 85423 Representative total house income in the dwelling unit is $85423 -in.representative_income 85427 Representative total house income in the dwelling unit is $85427 -in.representative_income 85430 Representative total house income in the dwelling unit is $85430 -in.representative_income 85433 Representative total house income in the dwelling unit is $85433 -in.representative_income 85446 Representative total house income in the dwelling unit is $85446 -in.representative_income 85448 Representative total house income in the dwelling unit is $85448 -in.representative_income 85454 Representative total house income in the dwelling unit is $85454 -in.representative_income 85458 Representative total house income in the dwelling unit is $85458 -in.representative_income 85465 Representative total house income in the dwelling unit is $85465 -in.representative_income 85466 Representative total house income in the dwelling unit is $85466 -in.representative_income 85476 Representative total house income in the dwelling unit is $85476 -in.representative_income 85477 Representative total house income in the dwelling unit is $85477 -in.representative_income 85486 Representative total house income in the dwelling unit is $85486 -in.representative_income 85497 Representative total house income in the dwelling unit is $85497 -in.representative_income 85507 Representative total house income in the dwelling unit is $85507 -in.representative_income 85519 Representative total house income in the dwelling unit is $85519 -in.representative_income 85525 Representative total house income in the dwelling unit is $85525 -in.representative_income 85528 Representative total house income in the dwelling unit is $85528 -in.representative_income 85539 Representative total house income in the dwelling unit is $85539 -in.representative_income 85541 Representative total house income in the dwelling unit is $85541 -in.representative_income 85544 Representative total house income in the dwelling unit is $85544 -in.representative_income 85554 Representative total house income in the dwelling unit is $85554 -in.representative_income 85559 Representative total house income in the dwelling unit is $85559 -in.representative_income 85569 Representative total house income in the dwelling unit is $85569 -in.representative_income 85571 Representative total house income in the dwelling unit is $85571 -in.representative_income 85573 Representative total house income in the dwelling unit is $85573 -in.representative_income 85575 Representative total house income in the dwelling unit is $85575 -in.representative_income 85590 Representative total house income in the dwelling unit is $85590 -in.representative_income 85597 Representative total house income in the dwelling unit is $85597 -in.representative_income 85608 Representative total house income in the dwelling unit is $85608 -in.representative_income 85611 Representative total house income in the dwelling unit is $85611 -in.representative_income 85612 Representative total house income in the dwelling unit is $85612 -in.representative_income 85616 Representative total house income in the dwelling unit is $85616 -in.representative_income 85621 Representative total house income in the dwelling unit is $85621 -in.representative_income 85623 Representative total house income in the dwelling unit is $85623 -in.representative_income 85634 Representative total house income in the dwelling unit is $85634 -in.representative_income 85640 Representative total house income in the dwelling unit is $85640 -in.representative_income 85641 Representative total house income in the dwelling unit is $85641 -in.representative_income 85643 Representative total house income in the dwelling unit is $85643 -in.representative_income 85650 Representative total house income in the dwelling unit is $85650 -in.representative_income 85660 Representative total house income in the dwelling unit is $85660 -in.representative_income 85661 Representative total house income in the dwelling unit is $85661 -in.representative_income 85662 Representative total house income in the dwelling unit is $85662 -in.representative_income 85665 Representative total house income in the dwelling unit is $85665 -in.representative_income 85670 Representative total house income in the dwelling unit is $85670 -in.representative_income 85681 Representative total house income in the dwelling unit is $85681 -in.representative_income 85714 Representative total house income in the dwelling unit is $85714 -in.representative_income 85715 Representative total house income in the dwelling unit is $85715 -in.representative_income 85722 Representative total house income in the dwelling unit is $85722 -in.representative_income 85740 Representative total house income in the dwelling unit is $85740 -in.representative_income 85743 Representative total house income in the dwelling unit is $85743 -in.representative_income 85750 Representative total house income in the dwelling unit is $85750 -in.representative_income 85753 Representative total house income in the dwelling unit is $85753 -in.representative_income 85761 Representative total house income in the dwelling unit is $85761 -in.representative_income 85767 Representative total house income in the dwelling unit is $85767 -in.representative_income 85769 Representative total house income in the dwelling unit is $85769 -in.representative_income 85786 Representative total house income in the dwelling unit is $85786 -in.representative_income 85789 Representative total house income in the dwelling unit is $85789 -in.representative_income 85816 Representative total house income in the dwelling unit is $85816 -in.representative_income 85833 Representative total house income in the dwelling unit is $85833 -in.representative_income 85842 Representative total house income in the dwelling unit is $85842 -in.representative_income 85843 Representative total house income in the dwelling unit is $85843 -in.representative_income 85845 Representative total house income in the dwelling unit is $85845 -in.representative_income 85855 Representative total house income in the dwelling unit is $85855 -in.representative_income 85862 Representative total house income in the dwelling unit is $85862 -in.representative_income 85868 Representative total house income in the dwelling unit is $85868 -in.representative_income 85872 Representative total house income in the dwelling unit is $85872 -in.representative_income 85876 Representative total house income in the dwelling unit is $85876 -in.representative_income 85877 Representative total house income in the dwelling unit is $85877 -in.representative_income 85878 Representative total house income in the dwelling unit is $85878 -in.representative_income 85880 Representative total house income in the dwelling unit is $85880 -in.representative_income 85883 Representative total house income in the dwelling unit is $85883 -in.representative_income 85887 Representative total house income in the dwelling unit is $85887 -in.representative_income 85893 Representative total house income in the dwelling unit is $85893 -in.representative_income 85897 Representative total house income in the dwelling unit is $85897 -in.representative_income 85898 Representative total house income in the dwelling unit is $85898 -in.representative_income 85901 Representative total house income in the dwelling unit is $85901 -in.representative_income 85903 Representative total house income in the dwelling unit is $85903 -in.representative_income 85908 Representative total house income in the dwelling unit is $85908 -in.representative_income 85913 Representative total house income in the dwelling unit is $85913 -in.representative_income 85917 Representative total house income in the dwelling unit is $85917 -in.representative_income 85919 Representative total house income in the dwelling unit is $85919 -in.representative_income 85920 Representative total house income in the dwelling unit is $85920 -in.representative_income 85929 Representative total house income in the dwelling unit is $85929 -in.representative_income 85933 Representative total house income in the dwelling unit is $85933 -in.representative_income 85950 Representative total house income in the dwelling unit is $85950 -in.representative_income 85961 Representative total house income in the dwelling unit is $85961 -in.representative_income 85963 Representative total house income in the dwelling unit is $85963 -in.representative_income 85967 Representative total house income in the dwelling unit is $85967 -in.representative_income 85982 Representative total house income in the dwelling unit is $85982 -in.representative_income 85984 Representative total house income in the dwelling unit is $85984 -in.representative_income 86003 Representative total house income in the dwelling unit is $86003 -in.representative_income 86005 Representative total house income in the dwelling unit is $86005 -in.representative_income 86006 Representative total house income in the dwelling unit is $86006 -in.representative_income 86013 Representative total house income in the dwelling unit is $86013 -in.representative_income 86019 Representative total house income in the dwelling unit is $86019 -in.representative_income 86023 Representative total house income in the dwelling unit is $86023 -in.representative_income 86033 Representative total house income in the dwelling unit is $86033 -in.representative_income 86035 Representative total house income in the dwelling unit is $86035 -in.representative_income 86036 Representative total house income in the dwelling unit is $86036 -in.representative_income 86037 Representative total house income in the dwelling unit is $86037 -in.representative_income 86044 Representative total house income in the dwelling unit is $86044 -in.representative_income 86048 Representative total house income in the dwelling unit is $86048 -in.representative_income 86056 Representative total house income in the dwelling unit is $86056 -in.representative_income 86060 Representative total house income in the dwelling unit is $86060 -in.representative_income 86064 Representative total house income in the dwelling unit is $86064 -in.representative_income 86085 Representative total house income in the dwelling unit is $86085 -in.representative_income 86090 Representative total house income in the dwelling unit is $86090 -in.representative_income 86114 Representative total house income in the dwelling unit is $86114 -in.representative_income 86115 Representative total house income in the dwelling unit is $86115 -in.representative_income 86126 Representative total house income in the dwelling unit is $86126 -in.representative_income 86135 Representative total house income in the dwelling unit is $86135 -in.representative_income 86137 Representative total house income in the dwelling unit is $86137 -in.representative_income 86149 Representative total house income in the dwelling unit is $86149 -in.representative_income 86150 Representative total house income in the dwelling unit is $86150 -in.representative_income 86156 Representative total house income in the dwelling unit is $86156 -in.representative_income 86161 Representative total house income in the dwelling unit is $86161 -in.representative_income 86165 Representative total house income in the dwelling unit is $86165 -in.representative_income 86177 Representative total house income in the dwelling unit is $86177 -in.representative_income 86183 Representative total house income in the dwelling unit is $86183 -in.representative_income 86188 Representative total house income in the dwelling unit is $86188 -in.representative_income 86198 Representative total house income in the dwelling unit is $86198 -in.representative_income 86211 Representative total house income in the dwelling unit is $86211 -in.representative_income 86214 Representative total house income in the dwelling unit is $86214 -in.representative_income 86218 Representative total house income in the dwelling unit is $86218 -in.representative_income 86222 Representative total house income in the dwelling unit is $86222 -in.representative_income 86224 Representative total house income in the dwelling unit is $86224 -in.representative_income 86226 Representative total house income in the dwelling unit is $86226 -in.representative_income 86230 Representative total house income in the dwelling unit is $86230 -in.representative_income 86246 Representative total house income in the dwelling unit is $86246 -in.representative_income 86263 Representative total house income in the dwelling unit is $86263 -in.representative_income 86266 Representative total house income in the dwelling unit is $86266 -in.representative_income 86267 Representative total house income in the dwelling unit is $86267 -in.representative_income 86276 Representative total house income in the dwelling unit is $86276 -in.representative_income 86298 Representative total house income in the dwelling unit is $86298 -in.representative_income 86302 Representative total house income in the dwelling unit is $86302 -in.representative_income 86305 Representative total house income in the dwelling unit is $86305 -in.representative_income 86330 Representative total house income in the dwelling unit is $86330 -in.representative_income 86332 Representative total house income in the dwelling unit is $86332 -in.representative_income 86337 Representative total house income in the dwelling unit is $86337 -in.representative_income 86340 Representative total house income in the dwelling unit is $86340 -in.representative_income 86362 Representative total house income in the dwelling unit is $86362 -in.representative_income 86367 Representative total house income in the dwelling unit is $86367 -in.representative_income 86372 Representative total house income in the dwelling unit is $86372 -in.representative_income 86398 Representative total house income in the dwelling unit is $86398 -in.representative_income 86413 Representative total house income in the dwelling unit is $86413 -in.representative_income 86415 Representative total house income in the dwelling unit is $86415 -in.representative_income 86424 Representative total house income in the dwelling unit is $86424 -in.representative_income 86425 Representative total house income in the dwelling unit is $86425 -in.representative_income 86435 Representative total house income in the dwelling unit is $86435 -in.representative_income 86437 Representative total house income in the dwelling unit is $86437 -in.representative_income 86439 Representative total house income in the dwelling unit is $86439 -in.representative_income 86440 Representative total house income in the dwelling unit is $86440 -in.representative_income 86442 Representative total house income in the dwelling unit is $86442 -in.representative_income 86448 Representative total house income in the dwelling unit is $86448 -in.representative_income 86458 Representative total house income in the dwelling unit is $86458 -in.representative_income 86459 Representative total house income in the dwelling unit is $86459 -in.representative_income 86466 Representative total house income in the dwelling unit is $86466 -in.representative_income 86468 Representative total house income in the dwelling unit is $86468 -in.representative_income 86470 Representative total house income in the dwelling unit is $86470 -in.representative_income 86477 Representative total house income in the dwelling unit is $86477 -in.representative_income 86478 Representative total house income in the dwelling unit is $86478 -in.representative_income 86491 Representative total house income in the dwelling unit is $86491 -in.representative_income 86498 Representative total house income in the dwelling unit is $86498 -in.representative_income 86499 Representative total house income in the dwelling unit is $86499 -in.representative_income 86502 Representative total house income in the dwelling unit is $86502 -in.representative_income 86508 Representative total house income in the dwelling unit is $86508 -in.representative_income 86515 Representative total house income in the dwelling unit is $86515 -in.representative_income 86519 Representative total house income in the dwelling unit is $86519 -in.representative_income 86520 Representative total house income in the dwelling unit is $86520 -in.representative_income 86527 Representative total house income in the dwelling unit is $86527 -in.representative_income 86530 Representative total house income in the dwelling unit is $86530 -in.representative_income 86539 Representative total house income in the dwelling unit is $86539 -in.representative_income 86542 Representative total house income in the dwelling unit is $86542 -in.representative_income 86545 Representative total house income in the dwelling unit is $86545 -in.representative_income 86548 Representative total house income in the dwelling unit is $86548 -in.representative_income 86552 Representative total house income in the dwelling unit is $86552 -in.representative_income 86553 Representative total house income in the dwelling unit is $86553 -in.representative_income 86559 Representative total house income in the dwelling unit is $86559 -in.representative_income 86562 Representative total house income in the dwelling unit is $86562 -in.representative_income 86563 Representative total house income in the dwelling unit is $86563 -in.representative_income 86567 Representative total house income in the dwelling unit is $86567 -in.representative_income 86569 Representative total house income in the dwelling unit is $86569 -in.representative_income 86580 Representative total house income in the dwelling unit is $86580 -in.representative_income 86583 Representative total house income in the dwelling unit is $86583 -in.representative_income 86590 Representative total house income in the dwelling unit is $86590 -in.representative_income 86599 Representative total house income in the dwelling unit is $86599 -in.representative_income 86600 Representative total house income in the dwelling unit is $86600 -in.representative_income 86604 Representative total house income in the dwelling unit is $86604 -in.representative_income 86614 Representative total house income in the dwelling unit is $86614 -in.representative_income 86620 Representative total house income in the dwelling unit is $86620 -in.representative_income 86627 Representative total house income in the dwelling unit is $86627 -in.representative_income 86636 Representative total house income in the dwelling unit is $86636 -in.representative_income 86638 Representative total house income in the dwelling unit is $86638 -in.representative_income 86642 Representative total house income in the dwelling unit is $86642 -in.representative_income 86647 Representative total house income in the dwelling unit is $86647 -in.representative_income 86652 Representative total house income in the dwelling unit is $86652 -in.representative_income 86653 Representative total house income in the dwelling unit is $86653 -in.representative_income 86657 Representative total house income in the dwelling unit is $86657 -in.representative_income 86660 Representative total house income in the dwelling unit is $86660 -in.representative_income 86670 Representative total house income in the dwelling unit is $86670 -in.representative_income 86671 Representative total house income in the dwelling unit is $86671 -in.representative_income 86681 Representative total house income in the dwelling unit is $86681 -in.representative_income 86688 Representative total house income in the dwelling unit is $86688 -in.representative_income 86690 Representative total house income in the dwelling unit is $86690 -in.representative_income 86692 Representative total house income in the dwelling unit is $86692 -in.representative_income 86694 Representative total house income in the dwelling unit is $86694 -in.representative_income 86696 Representative total house income in the dwelling unit is $86696 -in.representative_income 86697 Representative total house income in the dwelling unit is $86697 -in.representative_income 86704 Representative total house income in the dwelling unit is $86704 -in.representative_income 86707 Representative total house income in the dwelling unit is $86707 -in.representative_income 86714 Representative total house income in the dwelling unit is $86714 -in.representative_income 86718 Representative total house income in the dwelling unit is $86718 -in.representative_income 86724 Representative total house income in the dwelling unit is $86724 -in.representative_income 86729 Representative total house income in the dwelling unit is $86729 -in.representative_income 86730 Representative total house income in the dwelling unit is $86730 -in.representative_income 86734 Representative total house income in the dwelling unit is $86734 -in.representative_income 86742 Representative total house income in the dwelling unit is $86742 -in.representative_income 86745 Representative total house income in the dwelling unit is $86745 -in.representative_income 86762 Representative total house income in the dwelling unit is $86762 -in.representative_income 86771 Representative total house income in the dwelling unit is $86771 -in.representative_income 86773 Representative total house income in the dwelling unit is $86773 -in.representative_income 86776 Representative total house income in the dwelling unit is $86776 -in.representative_income 86786 Representative total house income in the dwelling unit is $86786 -in.representative_income 86789 Representative total house income in the dwelling unit is $86789 -in.representative_income 86793 Representative total house income in the dwelling unit is $86793 -in.representative_income 86794 Representative total house income in the dwelling unit is $86794 -in.representative_income 86795 Representative total house income in the dwelling unit is $86795 -in.representative_income 86799 Representative total house income in the dwelling unit is $86799 -in.representative_income 86802 Representative total house income in the dwelling unit is $86802 -in.representative_income 86807 Representative total house income in the dwelling unit is $86807 -in.representative_income 86816 Representative total house income in the dwelling unit is $86816 -in.representative_income 86822 Representative total house income in the dwelling unit is $86822 -in.representative_income 86839 Representative total house income in the dwelling unit is $86839 -in.representative_income 86842 Representative total house income in the dwelling unit is $86842 -in.representative_income 86847 Representative total house income in the dwelling unit is $86847 -in.representative_income 86849 Representative total house income in the dwelling unit is $86849 -in.representative_income 86852 Representative total house income in the dwelling unit is $86852 -in.representative_income 86859 Representative total house income in the dwelling unit is $86859 -in.representative_income 86870 Representative total house income in the dwelling unit is $86870 -in.representative_income 86872 Representative total house income in the dwelling unit is $86872 -in.representative_income 86874 Representative total house income in the dwelling unit is $86874 -in.representative_income 86879 Representative total house income in the dwelling unit is $86879 -in.representative_income 86889 Representative total house income in the dwelling unit is $86889 -in.representative_income 86893 Representative total house income in the dwelling unit is $86893 -in.representative_income 86900 Representative total house income in the dwelling unit is $86900 -in.representative_income 86911 Representative total house income in the dwelling unit is $86911 -in.representative_income 86913 Representative total house income in the dwelling unit is $86913 -in.representative_income 86924 Representative total house income in the dwelling unit is $86924 -in.representative_income 86928 Representative total house income in the dwelling unit is $86928 -in.representative_income 86933 Representative total house income in the dwelling unit is $86933 -in.representative_income 86935 Representative total house income in the dwelling unit is $86935 -in.representative_income 86949 Representative total house income in the dwelling unit is $86949 -in.representative_income 86950 Representative total house income in the dwelling unit is $86950 -in.representative_income 86951 Representative total house income in the dwelling unit is $86951 -in.representative_income 86952 Representative total house income in the dwelling unit is $86952 -in.representative_income 86953 Representative total house income in the dwelling unit is $86953 -in.representative_income 86960 Representative total house income in the dwelling unit is $86960 -in.representative_income 86971 Representative total house income in the dwelling unit is $86971 -in.representative_income 86973 Representative total house income in the dwelling unit is $86973 -in.representative_income 86975 Representative total house income in the dwelling unit is $86975 -in.representative_income 86978 Representative total house income in the dwelling unit is $86978 -in.representative_income 86982 Representative total house income in the dwelling unit is $86982 -in.representative_income 86989 Representative total house income in the dwelling unit is $86989 -in.representative_income 86995 Representative total house income in the dwelling unit is $86995 -in.representative_income 87001 Representative total house income in the dwelling unit is $87001 -in.representative_income 87003 Representative total house income in the dwelling unit is $87003 -in.representative_income 87005 Representative total house income in the dwelling unit is $87005 -in.representative_income 87013 Representative total house income in the dwelling unit is $87013 -in.representative_income 87016 Representative total house income in the dwelling unit is $87016 -in.representative_income 87024 Representative total house income in the dwelling unit is $87024 -in.representative_income 87025 Representative total house income in the dwelling unit is $87025 -in.representative_income 87026 Representative total house income in the dwelling unit is $87026 -in.representative_income 87032 Representative total house income in the dwelling unit is $87032 -in.representative_income 87034 Representative total house income in the dwelling unit is $87034 -in.representative_income 87043 Representative total house income in the dwelling unit is $87043 -in.representative_income 87054 Representative total house income in the dwelling unit is $87054 -in.representative_income 87057 Representative total house income in the dwelling unit is $87057 -in.representative_income 87075 Representative total house income in the dwelling unit is $87075 -in.representative_income 87078 Representative total house income in the dwelling unit is $87078 -in.representative_income 87080 Representative total house income in the dwelling unit is $87080 -in.representative_income 87086 Representative total house income in the dwelling unit is $87086 -in.representative_income 87095 Representative total house income in the dwelling unit is $87095 -in.representative_income 87097 Representative total house income in the dwelling unit is $87097 -in.representative_income 87106 Representative total house income in the dwelling unit is $87106 -in.representative_income 87111 Representative total house income in the dwelling unit is $87111 -in.representative_income 87112 Representative total house income in the dwelling unit is $87112 -in.representative_income 87118 Representative total house income in the dwelling unit is $87118 -in.representative_income 87119 Representative total house income in the dwelling unit is $87119 -in.representative_income 87121 Representative total house income in the dwelling unit is $87121 -in.representative_income 87125 Representative total house income in the dwelling unit is $87125 -in.representative_income 87128 Representative total house income in the dwelling unit is $87128 -in.representative_income 87133 Representative total house income in the dwelling unit is $87133 -in.representative_income 87155 Representative total house income in the dwelling unit is $87155 -in.representative_income 87158 Representative total house income in the dwelling unit is $87158 -in.representative_income 87164 Representative total house income in the dwelling unit is $87164 -in.representative_income 87174 Representative total house income in the dwelling unit is $87174 -in.representative_income 87176 Representative total house income in the dwelling unit is $87176 -in.representative_income 87183 Representative total house income in the dwelling unit is $87183 -in.representative_income 87194 Representative total house income in the dwelling unit is $87194 -in.representative_income 87195 Representative total house income in the dwelling unit is $87195 -in.representative_income 87196 Representative total house income in the dwelling unit is $87196 -in.representative_income 87197 Representative total house income in the dwelling unit is $87197 -in.representative_income 87209 Representative total house income in the dwelling unit is $87209 -in.representative_income 87216 Representative total house income in the dwelling unit is $87216 -in.representative_income 87226 Representative total house income in the dwelling unit is $87226 -in.representative_income 87236 Representative total house income in the dwelling unit is $87236 -in.representative_income 87237 Representative total house income in the dwelling unit is $87237 -in.representative_income 87239 Representative total house income in the dwelling unit is $87239 -in.representative_income 87244 Representative total house income in the dwelling unit is $87244 -in.representative_income 87247 Representative total house income in the dwelling unit is $87247 -in.representative_income 87248 Representative total house income in the dwelling unit is $87248 -in.representative_income 87259 Representative total house income in the dwelling unit is $87259 -in.representative_income 87261 Representative total house income in the dwelling unit is $87261 -in.representative_income 87271 Representative total house income in the dwelling unit is $87271 -in.representative_income 87273 Representative total house income in the dwelling unit is $87273 -in.representative_income 87277 Representative total house income in the dwelling unit is $87277 -in.representative_income 87290 Representative total house income in the dwelling unit is $87290 -in.representative_income 87297 Representative total house income in the dwelling unit is $87297 -in.representative_income 87302 Representative total house income in the dwelling unit is $87302 -in.representative_income 87321 Representative total house income in the dwelling unit is $87321 -in.representative_income 87323 Representative total house income in the dwelling unit is $87323 -in.representative_income 87327 Representative total house income in the dwelling unit is $87327 -in.representative_income 87332 Representative total house income in the dwelling unit is $87332 -in.representative_income 87343 Representative total house income in the dwelling unit is $87343 -in.representative_income 87353 Representative total house income in the dwelling unit is $87353 -in.representative_income 87356 Representative total house income in the dwelling unit is $87356 -in.representative_income 87357 Representative total house income in the dwelling unit is $87357 -in.representative_income 87364 Representative total house income in the dwelling unit is $87364 -in.representative_income 87366 Representative total house income in the dwelling unit is $87366 -in.representative_income 87374 Representative total house income in the dwelling unit is $87374 -in.representative_income 87377 Representative total house income in the dwelling unit is $87377 -in.representative_income 87378 Representative total house income in the dwelling unit is $87378 -in.representative_income 87379 Representative total house income in the dwelling unit is $87379 -in.representative_income 87383 Representative total house income in the dwelling unit is $87383 -in.representative_income 87388 Representative total house income in the dwelling unit is $87388 -in.representative_income 87398 Representative total house income in the dwelling unit is $87398 -in.representative_income 87405 Representative total house income in the dwelling unit is $87405 -in.representative_income 87406 Representative total house income in the dwelling unit is $87406 -in.representative_income 87410 Representative total house income in the dwelling unit is $87410 -in.representative_income 87414 Representative total house income in the dwelling unit is $87414 -in.representative_income 87415 Representative total house income in the dwelling unit is $87415 -in.representative_income 87416 Representative total house income in the dwelling unit is $87416 -in.representative_income 87419 Representative total house income in the dwelling unit is $87419 -in.representative_income 87420 Representative total house income in the dwelling unit is $87420 -in.representative_income 87422 Representative total house income in the dwelling unit is $87422 -in.representative_income 87426 Representative total house income in the dwelling unit is $87426 -in.representative_income 87432 Representative total house income in the dwelling unit is $87432 -in.representative_income 87446 Representative total house income in the dwelling unit is $87446 -in.representative_income 87453 Representative total house income in the dwelling unit is $87453 -in.representative_income 87465 Representative total house income in the dwelling unit is $87465 -in.representative_income 87467 Representative total house income in the dwelling unit is $87467 -in.representative_income 87475 Representative total house income in the dwelling unit is $87475 -in.representative_income 87479 Representative total house income in the dwelling unit is $87479 -in.representative_income 87486 Representative total house income in the dwelling unit is $87486 -in.representative_income 87493 Representative total house income in the dwelling unit is $87493 -in.representative_income 87508 Representative total house income in the dwelling unit is $87508 -in.representative_income 87518 Representative total house income in the dwelling unit is $87518 -in.representative_income 87523 Representative total house income in the dwelling unit is $87523 -in.representative_income 87526 Representative total house income in the dwelling unit is $87526 -in.representative_income 87529 Representative total house income in the dwelling unit is $87529 -in.representative_income 87533 Representative total house income in the dwelling unit is $87533 -in.representative_income 87537 Representative total house income in the dwelling unit is $87537 -in.representative_income 87540 Representative total house income in the dwelling unit is $87540 -in.representative_income 87543 Representative total house income in the dwelling unit is $87543 -in.representative_income 87551 Representative total house income in the dwelling unit is $87551 -in.representative_income 87554 Representative total house income in the dwelling unit is $87554 -in.representative_income 87557 Representative total house income in the dwelling unit is $87557 -in.representative_income 87570 Representative total house income in the dwelling unit is $87570 -in.representative_income 87571 Representative total house income in the dwelling unit is $87571 -in.representative_income 87573 Representative total house income in the dwelling unit is $87573 -in.representative_income 87580 Representative total house income in the dwelling unit is $87580 -in.representative_income 87583 Representative total house income in the dwelling unit is $87583 -in.representative_income 87585 Representative total house income in the dwelling unit is $87585 -in.representative_income 87591 Representative total house income in the dwelling unit is $87591 -in.representative_income 87594 Representative total house income in the dwelling unit is $87594 -in.representative_income 87595 Representative total house income in the dwelling unit is $87595 -in.representative_income 87610 Representative total house income in the dwelling unit is $87610 -in.representative_income 87616 Representative total house income in the dwelling unit is $87616 -in.representative_income 87626 Representative total house income in the dwelling unit is $87626 -in.representative_income 87630 Representative total house income in the dwelling unit is $87630 -in.representative_income 87634 Representative total house income in the dwelling unit is $87634 -in.representative_income 87636 Representative total house income in the dwelling unit is $87636 -in.representative_income 87637 Representative total house income in the dwelling unit is $87637 -in.representative_income 87638 Representative total house income in the dwelling unit is $87638 -in.representative_income 87640 Representative total house income in the dwelling unit is $87640 -in.representative_income 87641 Representative total house income in the dwelling unit is $87641 -in.representative_income 87648 Representative total house income in the dwelling unit is $87648 -in.representative_income 87650 Representative total house income in the dwelling unit is $87650 -in.representative_income 87659 Representative total house income in the dwelling unit is $87659 -in.representative_income 87661 Representative total house income in the dwelling unit is $87661 -in.representative_income 87673 Representative total house income in the dwelling unit is $87673 -in.representative_income 87680 Representative total house income in the dwelling unit is $87680 -in.representative_income 87681 Representative total house income in the dwelling unit is $87681 -in.representative_income 87684 Representative total house income in the dwelling unit is $87684 -in.representative_income 87690 Representative total house income in the dwelling unit is $87690 -in.representative_income 87694 Representative total house income in the dwelling unit is $87694 -in.representative_income 87700 Representative total house income in the dwelling unit is $87700 -in.representative_income 87705 Representative total house income in the dwelling unit is $87705 -in.representative_income 87707 Representative total house income in the dwelling unit is $87707 -in.representative_income 87715 Representative total house income in the dwelling unit is $87715 -in.representative_income 87721 Representative total house income in the dwelling unit is $87721 -in.representative_income 87725 Representative total house income in the dwelling unit is $87725 -in.representative_income 87728 Representative total house income in the dwelling unit is $87728 -in.representative_income 87734 Representative total house income in the dwelling unit is $87734 -in.representative_income 87739 Representative total house income in the dwelling unit is $87739 -in.representative_income 87741 Representative total house income in the dwelling unit is $87741 -in.representative_income 87743 Representative total house income in the dwelling unit is $87743 -in.representative_income 87755 Representative total house income in the dwelling unit is $87755 -in.representative_income 87767 Representative total house income in the dwelling unit is $87767 -in.representative_income 87777 Representative total house income in the dwelling unit is $87777 -in.representative_income 87778 Representative total house income in the dwelling unit is $87778 -in.representative_income 87782 Representative total house income in the dwelling unit is $87782 -in.representative_income 87787 Representative total house income in the dwelling unit is $87787 -in.representative_income 87795 Representative total house income in the dwelling unit is $87795 -in.representative_income 87802 Representative total house income in the dwelling unit is $87802 -in.representative_income 87806 Representative total house income in the dwelling unit is $87806 -in.representative_income 87807 Representative total house income in the dwelling unit is $87807 -in.representative_income 87808 Representative total house income in the dwelling unit is $87808 -in.representative_income 87828 Representative total house income in the dwelling unit is $87828 -in.representative_income 87829 Representative total house income in the dwelling unit is $87829 -in.representative_income 87839 Representative total house income in the dwelling unit is $87839 -in.representative_income 87842 Representative total house income in the dwelling unit is $87842 -in.representative_income 87848 Representative total house income in the dwelling unit is $87848 -in.representative_income 87849 Representative total house income in the dwelling unit is $87849 -in.representative_income 87852 Representative total house income in the dwelling unit is $87852 -in.representative_income 87859 Representative total house income in the dwelling unit is $87859 -in.representative_income 87864 Representative total house income in the dwelling unit is $87864 -in.representative_income 87869 Representative total house income in the dwelling unit is $87869 -in.representative_income 87879 Representative total house income in the dwelling unit is $87879 -in.representative_income 87880 Representative total house income in the dwelling unit is $87880 -in.representative_income 87883 Representative total house income in the dwelling unit is $87883 -in.representative_income 87887 Representative total house income in the dwelling unit is $87887 -in.representative_income 87889 Representative total house income in the dwelling unit is $87889 -in.representative_income 87890 Representative total house income in the dwelling unit is $87890 -in.representative_income 87893 Representative total house income in the dwelling unit is $87893 -in.representative_income 87900 Representative total house income in the dwelling unit is $87900 -in.representative_income 87902 Representative total house income in the dwelling unit is $87902 -in.representative_income 87903 Representative total house income in the dwelling unit is $87903 -in.representative_income 87907 Representative total house income in the dwelling unit is $87907 -in.representative_income 87910 Representative total house income in the dwelling unit is $87910 -in.representative_income 87912 Representative total house income in the dwelling unit is $87912 -in.representative_income 87915 Representative total house income in the dwelling unit is $87915 -in.representative_income 87919 Representative total house income in the dwelling unit is $87919 -in.representative_income 87930 Representative total house income in the dwelling unit is $87930 -in.representative_income 87932 Representative total house income in the dwelling unit is $87932 -in.representative_income 87937 Representative total house income in the dwelling unit is $87937 -in.representative_income 87945 Representative total house income in the dwelling unit is $87945 -in.representative_income 87947 Representative total house income in the dwelling unit is $87947 -in.representative_income 87950 Representative total house income in the dwelling unit is $87950 -in.representative_income 87954 Representative total house income in the dwelling unit is $87954 -in.representative_income 87963 Representative total house income in the dwelling unit is $87963 -in.representative_income 87972 Representative total house income in the dwelling unit is $87972 -in.representative_income 87982 Representative total house income in the dwelling unit is $87982 -in.representative_income 87984 Representative total house income in the dwelling unit is $87984 -in.representative_income 87986 Representative total house income in the dwelling unit is $87986 -in.representative_income 87997 Representative total house income in the dwelling unit is $87997 -in.representative_income 88003 Representative total house income in the dwelling unit is $88003 -in.representative_income 88004 Representative total house income in the dwelling unit is $88004 -in.representative_income 88007 Representative total house income in the dwelling unit is $88007 -in.representative_income 88023 Representative total house income in the dwelling unit is $88023 -in.representative_income 88024 Representative total house income in the dwelling unit is $88024 -in.representative_income 88027 Representative total house income in the dwelling unit is $88027 -in.representative_income 88034 Representative total house income in the dwelling unit is $88034 -in.representative_income 88038 Representative total house income in the dwelling unit is $88038 -in.representative_income 88040 Representative total house income in the dwelling unit is $88040 -in.representative_income 88044 Representative total house income in the dwelling unit is $88044 -in.representative_income 88045 Representative total house income in the dwelling unit is $88045 -in.representative_income 88055 Representative total house income in the dwelling unit is $88055 -in.representative_income 88058 Representative total house income in the dwelling unit is $88058 -in.representative_income 88059 Representative total house income in the dwelling unit is $88059 -in.representative_income 88066 Representative total house income in the dwelling unit is $88066 -in.representative_income 88069 Representative total house income in the dwelling unit is $88069 -in.representative_income 88076 Representative total house income in the dwelling unit is $88076 -in.representative_income 88085 Representative total house income in the dwelling unit is $88085 -in.representative_income 88086 Representative total house income in the dwelling unit is $88086 -in.representative_income 88087 Representative total house income in the dwelling unit is $88087 -in.representative_income 88095 Representative total house income in the dwelling unit is $88095 -in.representative_income 88096 Representative total house income in the dwelling unit is $88096 -in.representative_income 88102 Representative total house income in the dwelling unit is $88102 -in.representative_income 88127 Representative total house income in the dwelling unit is $88127 -in.representative_income 88130 Representative total house income in the dwelling unit is $88130 -in.representative_income 88135 Representative total house income in the dwelling unit is $88135 -in.representative_income 88136 Representative total house income in the dwelling unit is $88136 -in.representative_income 88137 Representative total house income in the dwelling unit is $88137 -in.representative_income 88152 Representative total house income in the dwelling unit is $88152 -in.representative_income 88155 Representative total house income in the dwelling unit is $88155 -in.representative_income 88159 Representative total house income in the dwelling unit is $88159 -in.representative_income 88165 Representative total house income in the dwelling unit is $88165 -in.representative_income 88166 Representative total house income in the dwelling unit is $88166 -in.representative_income 88173 Representative total house income in the dwelling unit is $88173 -in.representative_income 88177 Representative total house income in the dwelling unit is $88177 -in.representative_income 88184 Representative total house income in the dwelling unit is $88184 -in.representative_income 88186 Representative total house income in the dwelling unit is $88186 -in.representative_income 88189 Representative total house income in the dwelling unit is $88189 -in.representative_income 88190 Representative total house income in the dwelling unit is $88190 -in.representative_income 88206 Representative total house income in the dwelling unit is $88206 -in.representative_income 88216 Representative total house income in the dwelling unit is $88216 -in.representative_income 88220 Representative total house income in the dwelling unit is $88220 -in.representative_income 88222 Representative total house income in the dwelling unit is $88222 -in.representative_income 88226 Representative total house income in the dwelling unit is $88226 -in.representative_income 88231 Representative total house income in the dwelling unit is $88231 -in.representative_income 88238 Representative total house income in the dwelling unit is $88238 -in.representative_income 88254 Representative total house income in the dwelling unit is $88254 -in.representative_income 88271 Representative total house income in the dwelling unit is $88271 -in.representative_income 88274 Representative total house income in the dwelling unit is $88274 -in.representative_income 88281 Representative total house income in the dwelling unit is $88281 -in.representative_income 88282 Representative total house income in the dwelling unit is $88282 -in.representative_income 88285 Representative total house income in the dwelling unit is $88285 -in.representative_income 88287 Representative total house income in the dwelling unit is $88287 -in.representative_income 88291 Representative total house income in the dwelling unit is $88291 -in.representative_income 88292 Representative total house income in the dwelling unit is $88292 -in.representative_income 88296 Representative total house income in the dwelling unit is $88296 -in.representative_income 88303 Representative total house income in the dwelling unit is $88303 -in.representative_income 88306 Representative total house income in the dwelling unit is $88306 -in.representative_income 88307 Representative total house income in the dwelling unit is $88307 -in.representative_income 88308 Representative total house income in the dwelling unit is $88308 -in.representative_income 88311 Representative total house income in the dwelling unit is $88311 -in.representative_income 88313 Representative total house income in the dwelling unit is $88313 -in.representative_income 88323 Representative total house income in the dwelling unit is $88323 -in.representative_income 88329 Representative total house income in the dwelling unit is $88329 -in.representative_income 88345 Representative total house income in the dwelling unit is $88345 -in.representative_income 88347 Representative total house income in the dwelling unit is $88347 -in.representative_income 88354 Representative total house income in the dwelling unit is $88354 -in.representative_income 88355 Representative total house income in the dwelling unit is $88355 -in.representative_income 88364 Representative total house income in the dwelling unit is $88364 -in.representative_income 88376 Representative total house income in the dwelling unit is $88376 -in.representative_income 88382 Representative total house income in the dwelling unit is $88382 -in.representative_income 88383 Representative total house income in the dwelling unit is $88383 -in.representative_income 88385 Representative total house income in the dwelling unit is $88385 -in.representative_income 88386 Representative total house income in the dwelling unit is $88386 -in.representative_income 88388 Representative total house income in the dwelling unit is $88388 -in.representative_income 88396 Representative total house income in the dwelling unit is $88396 -in.representative_income 88398 Representative total house income in the dwelling unit is $88398 -in.representative_income 88404 Representative total house income in the dwelling unit is $88404 -in.representative_income 88407 Representative total house income in the dwelling unit is $88407 -in.representative_income 88409 Representative total house income in the dwelling unit is $88409 -in.representative_income 88415 Representative total house income in the dwelling unit is $88415 -in.representative_income 88418 Representative total house income in the dwelling unit is $88418 -in.representative_income 88429 Representative total house income in the dwelling unit is $88429 -in.representative_income 88436 Representative total house income in the dwelling unit is $88436 -in.representative_income 88437 Representative total house income in the dwelling unit is $88437 -in.representative_income 88440 Representative total house income in the dwelling unit is $88440 -in.representative_income 88447 Representative total house income in the dwelling unit is $88447 -in.representative_income 88452 Representative total house income in the dwelling unit is $88452 -in.representative_income 88456 Representative total house income in the dwelling unit is $88456 -in.representative_income 88458 Representative total house income in the dwelling unit is $88458 -in.representative_income 88463 Representative total house income in the dwelling unit is $88463 -in.representative_income 88464 Representative total house income in the dwelling unit is $88464 -in.representative_income 88469 Representative total house income in the dwelling unit is $88469 -in.representative_income 88473 Representative total house income in the dwelling unit is $88473 -in.representative_income 88481 Representative total house income in the dwelling unit is $88481 -in.representative_income 88489 Representative total house income in the dwelling unit is $88489 -in.representative_income 88491 Representative total house income in the dwelling unit is $88491 -in.representative_income 88495 Representative total house income in the dwelling unit is $88495 -in.representative_income 88499 Representative total house income in the dwelling unit is $88499 -in.representative_income 88506 Representative total house income in the dwelling unit is $88506 -in.representative_income 88514 Representative total house income in the dwelling unit is $88514 -in.representative_income 88517 Representative total house income in the dwelling unit is $88517 -in.representative_income 88519 Representative total house income in the dwelling unit is $88519 -in.representative_income 88524 Representative total house income in the dwelling unit is $88524 -in.representative_income 88529 Representative total house income in the dwelling unit is $88529 -in.representative_income 88533 Representative total house income in the dwelling unit is $88533 -in.representative_income 88535 Representative total house income in the dwelling unit is $88535 -in.representative_income 88540 Representative total house income in the dwelling unit is $88540 -in.representative_income 88545 Representative total house income in the dwelling unit is $88545 -in.representative_income 88549 Representative total house income in the dwelling unit is $88549 -in.representative_income 88559 Representative total house income in the dwelling unit is $88559 -in.representative_income 88560 Representative total house income in the dwelling unit is $88560 -in.representative_income 88564 Representative total house income in the dwelling unit is $88564 -in.representative_income 88566 Representative total house income in the dwelling unit is $88566 -in.representative_income 88587 Representative total house income in the dwelling unit is $88587 -in.representative_income 88588 Representative total house income in the dwelling unit is $88588 -in.representative_income 88590 Representative total house income in the dwelling unit is $88590 -in.representative_income 88593 Representative total house income in the dwelling unit is $88593 -in.representative_income 88597 Representative total house income in the dwelling unit is $88597 -in.representative_income 88599 Representative total house income in the dwelling unit is $88599 -in.representative_income 88601 Representative total house income in the dwelling unit is $88601 -in.representative_income 88602 Representative total house income in the dwelling unit is $88602 -in.representative_income 88608 Representative total house income in the dwelling unit is $88608 -in.representative_income 88609 Representative total house income in the dwelling unit is $88609 -in.representative_income 88613 Representative total house income in the dwelling unit is $88613 -in.representative_income 88618 Representative total house income in the dwelling unit is $88618 -in.representative_income 88619 Representative total house income in the dwelling unit is $88619 -in.representative_income 88620 Representative total house income in the dwelling unit is $88620 -in.representative_income 88623 Representative total house income in the dwelling unit is $88623 -in.representative_income 88629 Representative total house income in the dwelling unit is $88629 -in.representative_income 88631 Representative total house income in the dwelling unit is $88631 -in.representative_income 88635 Representative total house income in the dwelling unit is $88635 -in.representative_income 88640 Representative total house income in the dwelling unit is $88640 -in.representative_income 88646 Representative total house income in the dwelling unit is $88646 -in.representative_income 88650 Representative total house income in the dwelling unit is $88650 -in.representative_income 88653 Representative total house income in the dwelling unit is $88653 -in.representative_income 88656 Representative total house income in the dwelling unit is $88656 -in.representative_income 88660 Representative total house income in the dwelling unit is $88660 -in.representative_income 88667 Representative total house income in the dwelling unit is $88667 -in.representative_income 88685 Representative total house income in the dwelling unit is $88685 -in.representative_income 88691 Representative total house income in the dwelling unit is $88691 -in.representative_income 88692 Representative total house income in the dwelling unit is $88692 -in.representative_income 88705 Representative total house income in the dwelling unit is $88705 -in.representative_income 88707 Representative total house income in the dwelling unit is $88707 -in.representative_income 88717 Representative total house income in the dwelling unit is $88717 -in.representative_income 88728 Representative total house income in the dwelling unit is $88728 -in.representative_income 88741 Representative total house income in the dwelling unit is $88741 -in.representative_income 88746 Representative total house income in the dwelling unit is $88746 -in.representative_income 88752 Representative total house income in the dwelling unit is $88752 -in.representative_income 88756 Representative total house income in the dwelling unit is $88756 -in.representative_income 88761 Representative total house income in the dwelling unit is $88761 -in.representative_income 88771 Representative total house income in the dwelling unit is $88771 -in.representative_income 88775 Representative total house income in the dwelling unit is $88775 -in.representative_income 88776 Representative total house income in the dwelling unit is $88776 -in.representative_income 88782 Representative total house income in the dwelling unit is $88782 -in.representative_income 88792 Representative total house income in the dwelling unit is $88792 -in.representative_income 88798 Representative total house income in the dwelling unit is $88798 -in.representative_income 88808 Representative total house income in the dwelling unit is $88808 -in.representative_income 88812 Representative total house income in the dwelling unit is $88812 -in.representative_income 88814 Representative total house income in the dwelling unit is $88814 -in.representative_income 88819 Representative total house income in the dwelling unit is $88819 -in.representative_income 88828 Representative total house income in the dwelling unit is $88828 -in.representative_income 88832 Representative total house income in the dwelling unit is $88832 -in.representative_income 88840 Representative total house income in the dwelling unit is $88840 -in.representative_income 88843 Representative total house income in the dwelling unit is $88843 -in.representative_income 88848 Representative total house income in the dwelling unit is $88848 -in.representative_income 88851 Representative total house income in the dwelling unit is $88851 -in.representative_income 88858 Representative total house income in the dwelling unit is $88858 -in.representative_income 88860 Representative total house income in the dwelling unit is $88860 -in.representative_income 88862 Representative total house income in the dwelling unit is $88862 -in.representative_income 88863 Representative total house income in the dwelling unit is $88863 -in.representative_income 88868 Representative total house income in the dwelling unit is $88868 -in.representative_income 88869 Representative total house income in the dwelling unit is $88869 -in.representative_income 88881 Representative total house income in the dwelling unit is $88881 -in.representative_income 88883 Representative total house income in the dwelling unit is $88883 -in.representative_income 88890 Representative total house income in the dwelling unit is $88890 -in.representative_income 88892 Representative total house income in the dwelling unit is $88892 -in.representative_income 88893 Representative total house income in the dwelling unit is $88893 -in.representative_income 88898 Representative total house income in the dwelling unit is $88898 -in.representative_income 88904 Representative total house income in the dwelling unit is $88904 -in.representative_income 88908 Representative total house income in the dwelling unit is $88908 -in.representative_income 88911 Representative total house income in the dwelling unit is $88911 -in.representative_income 88922 Representative total house income in the dwelling unit is $88922 -in.representative_income 88932 Representative total house income in the dwelling unit is $88932 -in.representative_income 88944 Representative total house income in the dwelling unit is $88944 -in.representative_income 88956 Representative total house income in the dwelling unit is $88956 -in.representative_income 88959 Representative total house income in the dwelling unit is $88959 -in.representative_income 88967 Representative total house income in the dwelling unit is $88967 -in.representative_income 88974 Representative total house income in the dwelling unit is $88974 -in.representative_income 88976 Representative total house income in the dwelling unit is $88976 -in.representative_income 88989 Representative total house income in the dwelling unit is $88989 -in.representative_income 88994 Representative total house income in the dwelling unit is $88994 -in.representative_income 88998 Representative total house income in the dwelling unit is $88998 -in.representative_income 89005 Representative total house income in the dwelling unit is $89005 -in.representative_income 89008 Representative total house income in the dwelling unit is $89008 -in.representative_income 89009 Representative total house income in the dwelling unit is $89009 -in.representative_income 89015 Representative total house income in the dwelling unit is $89015 -in.representative_income 89020 Representative total house income in the dwelling unit is $89020 -in.representative_income 89024 Representative total house income in the dwelling unit is $89024 -in.representative_income 89030 Representative total house income in the dwelling unit is $89030 -in.representative_income 89059 Representative total house income in the dwelling unit is $89059 -in.representative_income 89061 Representative total house income in the dwelling unit is $89061 -in.representative_income 89064 Representative total house income in the dwelling unit is $89064 -in.representative_income 89066 Representative total house income in the dwelling unit is $89066 -in.representative_income 89072 Representative total house income in the dwelling unit is $89072 -in.representative_income 89093 Representative total house income in the dwelling unit is $89093 -in.representative_income 89095 Representative total house income in the dwelling unit is $89095 -in.representative_income 89096 Representative total house income in the dwelling unit is $89096 -in.representative_income 89101 Representative total house income in the dwelling unit is $89101 -in.representative_income 89105 Representative total house income in the dwelling unit is $89105 -in.representative_income 89111 Representative total house income in the dwelling unit is $89111 -in.representative_income 89114 Representative total house income in the dwelling unit is $89114 -in.representative_income 89115 Representative total house income in the dwelling unit is $89115 -in.representative_income 89117 Representative total house income in the dwelling unit is $89117 -in.representative_income 89118 Representative total house income in the dwelling unit is $89118 -in.representative_income 89125 Representative total house income in the dwelling unit is $89125 -in.representative_income 89128 Representative total house income in the dwelling unit is $89128 -in.representative_income 89138 Representative total house income in the dwelling unit is $89138 -in.representative_income 89139 Representative total house income in the dwelling unit is $89139 -in.representative_income 89144 Representative total house income in the dwelling unit is $89144 -in.representative_income 89150 Representative total house income in the dwelling unit is $89150 -in.representative_income 89151 Representative total house income in the dwelling unit is $89151 -in.representative_income 89166 Representative total house income in the dwelling unit is $89166 -in.representative_income 89167 Representative total house income in the dwelling unit is $89167 -in.representative_income 89169 Representative total house income in the dwelling unit is $89169 -in.representative_income 89173 Representative total house income in the dwelling unit is $89173 -in.representative_income 89174 Representative total house income in the dwelling unit is $89174 -in.representative_income 89175 Representative total house income in the dwelling unit is $89175 -in.representative_income 89176 Representative total house income in the dwelling unit is $89176 -in.representative_income 89178 Representative total house income in the dwelling unit is $89178 -in.representative_income 89183 Representative total house income in the dwelling unit is $89183 -in.representative_income 89188 Representative total house income in the dwelling unit is $89188 -in.representative_income 89196 Representative total house income in the dwelling unit is $89196 -in.representative_income 89199 Representative total house income in the dwelling unit is $89199 -in.representative_income 89200 Representative total house income in the dwelling unit is $89200 -in.representative_income 89204 Representative total house income in the dwelling unit is $89204 -in.representative_income 89208 Representative total house income in the dwelling unit is $89208 -in.representative_income 89219 Representative total house income in the dwelling unit is $89219 -in.representative_income 89220 Representative total house income in the dwelling unit is $89220 -in.representative_income 89227 Representative total house income in the dwelling unit is $89227 -in.representative_income 89230 Representative total house income in the dwelling unit is $89230 -in.representative_income 89231 Representative total house income in the dwelling unit is $89231 -in.representative_income 89236 Representative total house income in the dwelling unit is $89236 -in.representative_income 89240 Representative total house income in the dwelling unit is $89240 -in.representative_income 89244 Representative total house income in the dwelling unit is $89244 -in.representative_income 89246 Representative total house income in the dwelling unit is $89246 -in.representative_income 89247 Representative total house income in the dwelling unit is $89247 -in.representative_income 89258 Representative total house income in the dwelling unit is $89258 -in.representative_income 89272 Representative total house income in the dwelling unit is $89272 -in.representative_income 89273 Representative total house income in the dwelling unit is $89273 -in.representative_income 89280 Representative total house income in the dwelling unit is $89280 -in.representative_income 89290 Representative total house income in the dwelling unit is $89290 -in.representative_income 89291 Representative total house income in the dwelling unit is $89291 -in.representative_income 89292 Representative total house income in the dwelling unit is $89292 -in.representative_income 89293 Representative total house income in the dwelling unit is $89293 -in.representative_income 89295 Representative total house income in the dwelling unit is $89295 -in.representative_income 89297 Representative total house income in the dwelling unit is $89297 -in.representative_income 89301 Representative total house income in the dwelling unit is $89301 -in.representative_income 89303 Representative total house income in the dwelling unit is $89303 -in.representative_income 89305 Representative total house income in the dwelling unit is $89305 -in.representative_income 89306 Representative total house income in the dwelling unit is $89306 -in.representative_income 89311 Representative total house income in the dwelling unit is $89311 -in.representative_income 89324 Representative total house income in the dwelling unit is $89324 -in.representative_income 89325 Representative total house income in the dwelling unit is $89325 -in.representative_income 89326 Representative total house income in the dwelling unit is $89326 -in.representative_income 89333 Representative total house income in the dwelling unit is $89333 -in.representative_income 89334 Representative total house income in the dwelling unit is $89334 -in.representative_income 89336 Representative total house income in the dwelling unit is $89336 -in.representative_income 89343 Representative total house income in the dwelling unit is $89343 -in.representative_income 89347 Representative total house income in the dwelling unit is $89347 -in.representative_income 89355 Representative total house income in the dwelling unit is $89355 -in.representative_income 89363 Representative total house income in the dwelling unit is $89363 -in.representative_income 89364 Representative total house income in the dwelling unit is $89364 -in.representative_income 89365 Representative total house income in the dwelling unit is $89365 -in.representative_income 89375 Representative total house income in the dwelling unit is $89375 -in.representative_income 89378 Representative total house income in the dwelling unit is $89378 -in.representative_income 89384 Representative total house income in the dwelling unit is $89384 -in.representative_income 89386 Representative total house income in the dwelling unit is $89386 -in.representative_income 89398 Representative total house income in the dwelling unit is $89398 -in.representative_income 89406 Representative total house income in the dwelling unit is $89406 -in.representative_income 89416 Representative total house income in the dwelling unit is $89416 -in.representative_income 89418 Representative total house income in the dwelling unit is $89418 -in.representative_income 89423 Representative total house income in the dwelling unit is $89423 -in.representative_income 89427 Representative total house income in the dwelling unit is $89427 -in.representative_income 89429 Representative total house income in the dwelling unit is $89429 -in.representative_income 89431 Representative total house income in the dwelling unit is $89431 -in.representative_income 89434 Representative total house income in the dwelling unit is $89434 -in.representative_income 89437 Representative total house income in the dwelling unit is $89437 -in.representative_income 89438 Representative total house income in the dwelling unit is $89438 -in.representative_income 89440 Representative total house income in the dwelling unit is $89440 -in.representative_income 89441 Representative total house income in the dwelling unit is $89441 -in.representative_income 89451 Representative total house income in the dwelling unit is $89451 -in.representative_income 89452 Representative total house income in the dwelling unit is $89452 -in.representative_income 89463 Representative total house income in the dwelling unit is $89463 -in.representative_income 89471 Representative total house income in the dwelling unit is $89471 -in.representative_income 89472 Representative total house income in the dwelling unit is $89472 -in.representative_income 89483 Representative total house income in the dwelling unit is $89483 -in.representative_income 89485 Representative total house income in the dwelling unit is $89485 -in.representative_income 89489 Representative total house income in the dwelling unit is $89489 -in.representative_income 89493 Representative total house income in the dwelling unit is $89493 -in.representative_income 89499 Representative total house income in the dwelling unit is $89499 -in.representative_income 89500 Representative total house income in the dwelling unit is $89500 -in.representative_income 89501 Representative total house income in the dwelling unit is $89501 -in.representative_income 89508 Representative total house income in the dwelling unit is $89508 -in.representative_income 89515 Representative total house income in the dwelling unit is $89515 -in.representative_income 89517 Representative total house income in the dwelling unit is $89517 -in.representative_income 89524 Representative total house income in the dwelling unit is $89524 -in.representative_income 89525 Representative total house income in the dwelling unit is $89525 -in.representative_income 89528 Representative total house income in the dwelling unit is $89528 -in.representative_income 89530 Representative total house income in the dwelling unit is $89530 -in.representative_income 89536 Representative total house income in the dwelling unit is $89536 -in.representative_income 89539 Representative total house income in the dwelling unit is $89539 -in.representative_income 89547 Representative total house income in the dwelling unit is $89547 -in.representative_income 89549 Representative total house income in the dwelling unit is $89549 -in.representative_income 89550 Representative total house income in the dwelling unit is $89550 -in.representative_income 89552 Representative total house income in the dwelling unit is $89552 -in.representative_income 89567 Representative total house income in the dwelling unit is $89567 -in.representative_income 89570 Representative total house income in the dwelling unit is $89570 -in.representative_income 89571 Representative total house income in the dwelling unit is $89571 -in.representative_income 89580 Representative total house income in the dwelling unit is $89580 -in.representative_income 89582 Representative total house income in the dwelling unit is $89582 -in.representative_income 89590 Representative total house income in the dwelling unit is $89590 -in.representative_income 89592 Representative total house income in the dwelling unit is $89592 -in.representative_income 89600 Representative total house income in the dwelling unit is $89600 -in.representative_income 89603 Representative total house income in the dwelling unit is $89603 -in.representative_income 89620 Representative total house income in the dwelling unit is $89620 -in.representative_income 89621 Representative total house income in the dwelling unit is $89621 -in.representative_income 89630 Representative total house income in the dwelling unit is $89630 -in.representative_income 89633 Representative total house income in the dwelling unit is $89633 -in.representative_income 89637 Representative total house income in the dwelling unit is $89637 -in.representative_income 89642 Representative total house income in the dwelling unit is $89642 -in.representative_income 89657 Representative total house income in the dwelling unit is $89657 -in.representative_income 89660 Representative total house income in the dwelling unit is $89660 -in.representative_income 89661 Representative total house income in the dwelling unit is $89661 -in.representative_income 89662 Representative total house income in the dwelling unit is $89662 -in.representative_income 89665 Representative total house income in the dwelling unit is $89665 -in.representative_income 89673 Representative total house income in the dwelling unit is $89673 -in.representative_income 89679 Representative total house income in the dwelling unit is $89679 -in.representative_income 89680 Representative total house income in the dwelling unit is $89680 -in.representative_income 89683 Representative total house income in the dwelling unit is $89683 -in.representative_income 89689 Representative total house income in the dwelling unit is $89689 -in.representative_income 89690 Representative total house income in the dwelling unit is $89690 -in.representative_income 89694 Representative total house income in the dwelling unit is $89694 -in.representative_income 89700 Representative total house income in the dwelling unit is $89700 -in.representative_income 89701 Representative total house income in the dwelling unit is $89701 -in.representative_income 89705 Representative total house income in the dwelling unit is $89705 -in.representative_income 89708 Representative total house income in the dwelling unit is $89708 -in.representative_income 89709 Representative total house income in the dwelling unit is $89709 -in.representative_income 89710 Representative total house income in the dwelling unit is $89710 -in.representative_income 89711 Representative total house income in the dwelling unit is $89711 -in.representative_income 89714 Representative total house income in the dwelling unit is $89714 -in.representative_income 89716 Representative total house income in the dwelling unit is $89716 -in.representative_income 89722 Representative total house income in the dwelling unit is $89722 -in.representative_income 89731 Representative total house income in the dwelling unit is $89731 -in.representative_income 89733 Representative total house income in the dwelling unit is $89733 -in.representative_income 89736 Representative total house income in the dwelling unit is $89736 -in.representative_income 89738 Representative total house income in the dwelling unit is $89738 -in.representative_income 89741 Representative total house income in the dwelling unit is $89741 -in.representative_income 89742 Representative total house income in the dwelling unit is $89742 -in.representative_income 89746 Representative total house income in the dwelling unit is $89746 -in.representative_income 89747 Representative total house income in the dwelling unit is $89747 -in.representative_income 89751 Representative total house income in the dwelling unit is $89751 -in.representative_income 89757 Representative total house income in the dwelling unit is $89757 -in.representative_income 89759 Representative total house income in the dwelling unit is $89759 -in.representative_income 89762 Representative total house income in the dwelling unit is $89762 -in.representative_income 89768 Representative total house income in the dwelling unit is $89768 -in.representative_income 89778 Representative total house income in the dwelling unit is $89778 -in.representative_income 89783 Representative total house income in the dwelling unit is $89783 -in.representative_income 89787 Representative total house income in the dwelling unit is $89787 -in.representative_income 89788 Representative total house income in the dwelling unit is $89788 -in.representative_income 89792 Representative total house income in the dwelling unit is $89792 -in.representative_income 89798 Representative total house income in the dwelling unit is $89798 -in.representative_income 89802 Representative total house income in the dwelling unit is $89802 -in.representative_income 89804 Representative total house income in the dwelling unit is $89804 -in.representative_income 89808 Representative total house income in the dwelling unit is $89808 -in.representative_income 89810 Representative total house income in the dwelling unit is $89810 -in.representative_income 89823 Representative total house income in the dwelling unit is $89823 -in.representative_income 89826 Representative total house income in the dwelling unit is $89826 -in.representative_income 89829 Representative total house income in the dwelling unit is $89829 -in.representative_income 89830 Representative total house income in the dwelling unit is $89830 -in.representative_income 89832 Representative total house income in the dwelling unit is $89832 -in.representative_income 89839 Representative total house income in the dwelling unit is $89839 -in.representative_income 89842 Representative total house income in the dwelling unit is $89842 -in.representative_income 89848 Representative total house income in the dwelling unit is $89848 -in.representative_income 89851 Representative total house income in the dwelling unit is $89851 -in.representative_income 89852 Representative total house income in the dwelling unit is $89852 -in.representative_income 89862 Representative total house income in the dwelling unit is $89862 -in.representative_income 89873 Representative total house income in the dwelling unit is $89873 -in.representative_income 89881 Representative total house income in the dwelling unit is $89881 -in.representative_income 89891 Representative total house income in the dwelling unit is $89891 -in.representative_income 89893 Representative total house income in the dwelling unit is $89893 -in.representative_income 89895 Representative total house income in the dwelling unit is $89895 -in.representative_income 89899 Representative total house income in the dwelling unit is $89899 -in.representative_income 89903 Representative total house income in the dwelling unit is $89903 -in.representative_income 89905 Representative total house income in the dwelling unit is $89905 -in.representative_income 89906 Representative total house income in the dwelling unit is $89906 -in.representative_income 89912 Representative total house income in the dwelling unit is $89912 -in.representative_income 89913 Representative total house income in the dwelling unit is $89913 -in.representative_income 89917 Representative total house income in the dwelling unit is $89917 -in.representative_income 89921 Representative total house income in the dwelling unit is $89921 -in.representative_income 89923 Representative total house income in the dwelling unit is $89923 -in.representative_income 89928 Representative total house income in the dwelling unit is $89928 -in.representative_income 89930 Representative total house income in the dwelling unit is $89930 -in.representative_income 89933 Representative total house income in the dwelling unit is $89933 -in.representative_income 89939 Representative total house income in the dwelling unit is $89939 -in.representative_income 89943 Representative total house income in the dwelling unit is $89943 -in.representative_income 89950 Representative total house income in the dwelling unit is $89950 -in.representative_income 89953 Representative total house income in the dwelling unit is $89953 -in.representative_income 89955 Representative total house income in the dwelling unit is $89955 -in.representative_income 89957 Representative total house income in the dwelling unit is $89957 -in.representative_income 89960 Representative total house income in the dwelling unit is $89960 -in.representative_income 89963 Representative total house income in the dwelling unit is $89963 -in.representative_income 89973 Representative total house income in the dwelling unit is $89973 -in.representative_income 89974 Representative total house income in the dwelling unit is $89974 -in.representative_income 89979 Representative total house income in the dwelling unit is $89979 -in.representative_income 89982 Representative total house income in the dwelling unit is $89982 -in.representative_income 89984 Representative total house income in the dwelling unit is $89984 -in.representative_income 89988 Representative total house income in the dwelling unit is $89988 -in.representative_income 89994 Representative total house income in the dwelling unit is $89994 -in.representative_income 90000 Representative total house income in the dwelling unit is $90000 -in.representative_income 90004 Representative total house income in the dwelling unit is $90004 -in.representative_income 90005 Representative total house income in the dwelling unit is $90005 -in.representative_income 90009 Representative total house income in the dwelling unit is $90009 -in.representative_income 90011 Representative total house income in the dwelling unit is $90011 -in.representative_income 90014 Representative total house income in the dwelling unit is $90014 -in.representative_income 90017 Representative total house income in the dwelling unit is $90017 -in.representative_income 90020 Representative total house income in the dwelling unit is $90020 -in.representative_income 90024 Representative total house income in the dwelling unit is $90024 -in.representative_income 90025 Representative total house income in the dwelling unit is $90025 -in.representative_income 90046 Representative total house income in the dwelling unit is $90046 -in.representative_income 90054 Representative total house income in the dwelling unit is $90054 -in.representative_income 90062 Representative total house income in the dwelling unit is $90062 -in.representative_income 90064 Representative total house income in the dwelling unit is $90064 -in.representative_income 90069 Representative total house income in the dwelling unit is $90069 -in.representative_income 90079 Representative total house income in the dwelling unit is $90079 -in.representative_income 90085 Representative total house income in the dwelling unit is $90085 -in.representative_income 90087 Representative total house income in the dwelling unit is $90087 -in.representative_income 90088 Representative total house income in the dwelling unit is $90088 -in.representative_income 90090 Representative total house income in the dwelling unit is $90090 -in.representative_income 90095 Representative total house income in the dwelling unit is $90095 -in.representative_income 90098 Representative total house income in the dwelling unit is $90098 -in.representative_income 90105 Representative total house income in the dwelling unit is $90105 -in.representative_income 90107 Representative total house income in the dwelling unit is $90107 -in.representative_income 90111 Representative total house income in the dwelling unit is $90111 -in.representative_income 90112 Representative total house income in the dwelling unit is $90112 -in.representative_income 90116 Representative total house income in the dwelling unit is $90116 -in.representative_income 90122 Representative total house income in the dwelling unit is $90122 -in.representative_income 90125 Representative total house income in the dwelling unit is $90125 -in.representative_income 90128 Representative total house income in the dwelling unit is $90128 -in.representative_income 90137 Representative total house income in the dwelling unit is $90137 -in.representative_income 90140 Representative total house income in the dwelling unit is $90140 -in.representative_income 90144 Representative total house income in the dwelling unit is $90144 -in.representative_income 90149 Representative total house income in the dwelling unit is $90149 -in.representative_income 90160 Representative total house income in the dwelling unit is $90160 -in.representative_income 90165 Representative total house income in the dwelling unit is $90165 -in.representative_income 90169 Representative total house income in the dwelling unit is $90169 -in.representative_income 90170 Representative total house income in the dwelling unit is $90170 -in.representative_income 90174 Representative total house income in the dwelling unit is $90174 -in.representative_income 90176 Representative total house income in the dwelling unit is $90176 -in.representative_income 90179 Representative total house income in the dwelling unit is $90179 -in.representative_income 90180 Representative total house income in the dwelling unit is $90180 -in.representative_income 90181 Representative total house income in the dwelling unit is $90181 -in.representative_income 90190 Representative total house income in the dwelling unit is $90190 -in.representative_income 90206 Representative total house income in the dwelling unit is $90206 -in.representative_income 90216 Representative total house income in the dwelling unit is $90216 -in.representative_income 90219 Representative total house income in the dwelling unit is $90219 -in.representative_income 90221 Representative total house income in the dwelling unit is $90221 -in.representative_income 90223 Representative total house income in the dwelling unit is $90223 -in.representative_income 90228 Representative total house income in the dwelling unit is $90228 -in.representative_income 90230 Representative total house income in the dwelling unit is $90230 -in.representative_income 90252 Representative total house income in the dwelling unit is $90252 -in.representative_income 90262 Representative total house income in the dwelling unit is $90262 -in.representative_income 90264 Representative total house income in the dwelling unit is $90264 -in.representative_income 90273 Representative total house income in the dwelling unit is $90273 -in.representative_income 90274 Representative total house income in the dwelling unit is $90274 -in.representative_income 90277 Representative total house income in the dwelling unit is $90277 -in.representative_income 90286 Representative total house income in the dwelling unit is $90286 -in.representative_income 90303 Representative total house income in the dwelling unit is $90303 -in.representative_income 90306 Representative total house income in the dwelling unit is $90306 -in.representative_income 90307 Representative total house income in the dwelling unit is $90307 -in.representative_income 90314 Representative total house income in the dwelling unit is $90314 -in.representative_income 90327 Representative total house income in the dwelling unit is $90327 -in.representative_income 90337 Representative total house income in the dwelling unit is $90337 -in.representative_income 90338 Representative total house income in the dwelling unit is $90338 -in.representative_income 90340 Representative total house income in the dwelling unit is $90340 -in.representative_income 90348 Representative total house income in the dwelling unit is $90348 -in.representative_income 90349 Representative total house income in the dwelling unit is $90349 -in.representative_income 90351 Representative total house income in the dwelling unit is $90351 -in.representative_income 90352 Representative total house income in the dwelling unit is $90352 -in.representative_income 90353 Representative total house income in the dwelling unit is $90353 -in.representative_income 90355 Representative total house income in the dwelling unit is $90355 -in.representative_income 90357 Representative total house income in the dwelling unit is $90357 -in.representative_income 90360 Representative total house income in the dwelling unit is $90360 -in.representative_income 90378 Representative total house income in the dwelling unit is $90378 -in.representative_income 90380 Representative total house income in the dwelling unit is $90380 -in.representative_income 90381 Representative total house income in the dwelling unit is $90381 -in.representative_income 90382 Representative total house income in the dwelling unit is $90382 -in.representative_income 90385 Representative total house income in the dwelling unit is $90385 -in.representative_income 90386 Representative total house income in the dwelling unit is $90386 -in.representative_income 90392 Representative total house income in the dwelling unit is $90392 -in.representative_income 90395 Representative total house income in the dwelling unit is $90395 -in.representative_income 90397 Representative total house income in the dwelling unit is $90397 -in.representative_income 90405 Representative total house income in the dwelling unit is $90405 -in.representative_income 90407 Representative total house income in the dwelling unit is $90407 -in.representative_income 90408 Representative total house income in the dwelling unit is $90408 -in.representative_income 90411 Representative total house income in the dwelling unit is $90411 -in.representative_income 90414 Representative total house income in the dwelling unit is $90414 -in.representative_income 90425 Representative total house income in the dwelling unit is $90425 -in.representative_income 90427 Representative total house income in the dwelling unit is $90427 -in.representative_income 90435 Representative total house income in the dwelling unit is $90435 -in.representative_income 90438 Representative total house income in the dwelling unit is $90438 -in.representative_income 90443 Representative total house income in the dwelling unit is $90443 -in.representative_income 90457 Representative total house income in the dwelling unit is $90457 -in.representative_income 90458 Representative total house income in the dwelling unit is $90458 -in.representative_income 90461 Representative total house income in the dwelling unit is $90461 -in.representative_income 90467 Representative total house income in the dwelling unit is $90467 -in.representative_income 90475 Representative total house income in the dwelling unit is $90475 -in.representative_income 90478 Representative total house income in the dwelling unit is $90478 -in.representative_income 90485 Representative total house income in the dwelling unit is $90485 -in.representative_income 90489 Representative total house income in the dwelling unit is $90489 -in.representative_income 90491 Representative total house income in the dwelling unit is $90491 -in.representative_income 90506 Representative total house income in the dwelling unit is $90506 -in.representative_income 90509 Representative total house income in the dwelling unit is $90509 -in.representative_income 90519 Representative total house income in the dwelling unit is $90519 -in.representative_income 90524 Representative total house income in the dwelling unit is $90524 -in.representative_income 90535 Representative total house income in the dwelling unit is $90535 -in.representative_income 90543 Representative total house income in the dwelling unit is $90543 -in.representative_income 90546 Representative total house income in the dwelling unit is $90546 -in.representative_income 90562 Representative total house income in the dwelling unit is $90562 -in.representative_income 90570 Representative total house income in the dwelling unit is $90570 -in.representative_income 90576 Representative total house income in the dwelling unit is $90576 -in.representative_income 90590 Representative total house income in the dwelling unit is $90590 -in.representative_income 90593 Representative total house income in the dwelling unit is $90593 -in.representative_income 90599 Representative total house income in the dwelling unit is $90599 -in.representative_income 90608 Representative total house income in the dwelling unit is $90608 -in.representative_income 90610 Representative total house income in the dwelling unit is $90610 -in.representative_income 90612 Representative total house income in the dwelling unit is $90612 -in.representative_income 90629 Representative total house income in the dwelling unit is $90629 -in.representative_income 90632 Representative total house income in the dwelling unit is $90632 -in.representative_income 90634 Representative total house income in the dwelling unit is $90634 -in.representative_income 90640 Representative total house income in the dwelling unit is $90640 -in.representative_income 90643 Representative total house income in the dwelling unit is $90643 -in.representative_income 90644 Representative total house income in the dwelling unit is $90644 -in.representative_income 90651 Representative total house income in the dwelling unit is $90651 -in.representative_income 90653 Representative total house income in the dwelling unit is $90653 -in.representative_income 90654 Representative total house income in the dwelling unit is $90654 -in.representative_income 90661 Representative total house income in the dwelling unit is $90661 -in.representative_income 90662 Representative total house income in the dwelling unit is $90662 -in.representative_income 90664 Representative total house income in the dwelling unit is $90664 -in.representative_income 90665 Representative total house income in the dwelling unit is $90665 -in.representative_income 90671 Representative total house income in the dwelling unit is $90671 -in.representative_income 90683 Representative total house income in the dwelling unit is $90683 -in.representative_income 90697 Representative total house income in the dwelling unit is $90697 -in.representative_income 90702 Representative total house income in the dwelling unit is $90702 -in.representative_income 90706 Representative total house income in the dwelling unit is $90706 -in.representative_income 90707 Representative total house income in the dwelling unit is $90707 -in.representative_income 90709 Representative total house income in the dwelling unit is $90709 -in.representative_income 90711 Representative total house income in the dwelling unit is $90711 -in.representative_income 90717 Representative total house income in the dwelling unit is $90717 -in.representative_income 90728 Representative total house income in the dwelling unit is $90728 -in.representative_income 90738 Representative total house income in the dwelling unit is $90738 -in.representative_income 90749 Representative total house income in the dwelling unit is $90749 -in.representative_income 90759 Representative total house income in the dwelling unit is $90759 -in.representative_income 90760 Representative total house income in the dwelling unit is $90760 -in.representative_income 90761 Representative total house income in the dwelling unit is $90761 -in.representative_income 90763 Representative total house income in the dwelling unit is $90763 -in.representative_income 90764 Representative total house income in the dwelling unit is $90764 -in.representative_income 90767 Representative total house income in the dwelling unit is $90767 -in.representative_income 90770 Representative total house income in the dwelling unit is $90770 -in.representative_income 90771 Representative total house income in the dwelling unit is $90771 -in.representative_income 90779 Representative total house income in the dwelling unit is $90779 -in.representative_income 90781 Representative total house income in the dwelling unit is $90781 -in.representative_income 90789 Representative total house income in the dwelling unit is $90789 -in.representative_income 90802 Representative total house income in the dwelling unit is $90802 -in.representative_income 90809 Representative total house income in the dwelling unit is $90809 -in.representative_income 90812 Representative total house income in the dwelling unit is $90812 -in.representative_income 90814 Representative total house income in the dwelling unit is $90814 -in.representative_income 90817 Representative total house income in the dwelling unit is $90817 -in.representative_income 90819 Representative total house income in the dwelling unit is $90819 -in.representative_income 90822 Representative total house income in the dwelling unit is $90822 -in.representative_income 90825 Representative total house income in the dwelling unit is $90825 -in.representative_income 90829 Representative total house income in the dwelling unit is $90829 -in.representative_income 90832 Representative total house income in the dwelling unit is $90832 -in.representative_income 90833 Representative total house income in the dwelling unit is $90833 -in.representative_income 90835 Representative total house income in the dwelling unit is $90835 -in.representative_income 90840 Representative total house income in the dwelling unit is $90840 -in.representative_income 90844 Representative total house income in the dwelling unit is $90844 -in.representative_income 90846 Representative total house income in the dwelling unit is $90846 -in.representative_income 90847 Representative total house income in the dwelling unit is $90847 -in.representative_income 90852 Representative total house income in the dwelling unit is $90852 -in.representative_income 90854 Representative total house income in the dwelling unit is $90854 -in.representative_income 90862 Representative total house income in the dwelling unit is $90862 -in.representative_income 90864 Representative total house income in the dwelling unit is $90864 -in.representative_income 90868 Representative total house income in the dwelling unit is $90868 -in.representative_income 90871 Representative total house income in the dwelling unit is $90871 -in.representative_income 90878 Representative total house income in the dwelling unit is $90878 -in.representative_income 90881 Representative total house income in the dwelling unit is $90881 -in.representative_income 90890 Representative total house income in the dwelling unit is $90890 -in.representative_income 90892 Representative total house income in the dwelling unit is $90892 -in.representative_income 90896 Representative total house income in the dwelling unit is $90896 -in.representative_income 90897 Representative total house income in the dwelling unit is $90897 -in.representative_income 90900 Representative total house income in the dwelling unit is $90900 -in.representative_income 90902 Representative total house income in the dwelling unit is $90902 -in.representative_income 90907 Representative total house income in the dwelling unit is $90907 -in.representative_income 90912 Representative total house income in the dwelling unit is $90912 -in.representative_income 90913 Representative total house income in the dwelling unit is $90913 -in.representative_income 90921 Representative total house income in the dwelling unit is $90921 -in.representative_income 90922 Representative total house income in the dwelling unit is $90922 -in.representative_income 90923 Representative total house income in the dwelling unit is $90923 -in.representative_income 90933 Representative total house income in the dwelling unit is $90933 -in.representative_income 90943 Representative total house income in the dwelling unit is $90943 -in.representative_income 90953 Representative total house income in the dwelling unit is $90953 -in.representative_income 90964 Representative total house income in the dwelling unit is $90964 -in.representative_income 90970 Representative total house income in the dwelling unit is $90970 -in.representative_income 90974 Representative total house income in the dwelling unit is $90974 -in.representative_income 90976 Representative total house income in the dwelling unit is $90976 -in.representative_income 90984 Representative total house income in the dwelling unit is $90984 -in.representative_income 90994 Representative total house income in the dwelling unit is $90994 -in.representative_income 90996 Representative total house income in the dwelling unit is $90996 -in.representative_income 91000 Representative total house income in the dwelling unit is $91000 -in.representative_income 91004 Representative total house income in the dwelling unit is $91004 -in.representative_income 91005 Representative total house income in the dwelling unit is $91005 -in.representative_income 91012 Representative total house income in the dwelling unit is $91012 -in.representative_income 91014 Representative total house income in the dwelling unit is $91014 -in.representative_income 91023 Representative total house income in the dwelling unit is $91023 -in.representative_income 91029 Representative total house income in the dwelling unit is $91029 -in.representative_income 91030 Representative total house income in the dwelling unit is $91030 -in.representative_income 91034 Representative total house income in the dwelling unit is $91034 -in.representative_income 91047 Representative total house income in the dwelling unit is $91047 -in.representative_income 91055 Representative total house income in the dwelling unit is $91055 -in.representative_income 91063 Representative total house income in the dwelling unit is $91063 -in.representative_income 91065 Representative total house income in the dwelling unit is $91065 -in.representative_income 91077 Representative total house income in the dwelling unit is $91077 -in.representative_income 91078 Representative total house income in the dwelling unit is $91078 -in.representative_income 91084 Representative total house income in the dwelling unit is $91084 -in.representative_income 91090 Representative total house income in the dwelling unit is $91090 -in.representative_income 91096 Representative total house income in the dwelling unit is $91096 -in.representative_income 91105 Representative total house income in the dwelling unit is $91105 -in.representative_income 91114 Representative total house income in the dwelling unit is $91114 -in.representative_income 91115 Representative total house income in the dwelling unit is $91115 -in.representative_income 91118 Representative total house income in the dwelling unit is $91118 -in.representative_income 91119 Representative total house income in the dwelling unit is $91119 -in.representative_income 91135 Representative total house income in the dwelling unit is $91135 -in.representative_income 91136 Representative total house income in the dwelling unit is $91136 -in.representative_income 91145 Representative total house income in the dwelling unit is $91145 -in.representative_income 91150 Representative total house income in the dwelling unit is $91150 -in.representative_income 91157 Representative total house income in the dwelling unit is $91157 -in.representative_income 91159 Representative total house income in the dwelling unit is $91159 -in.representative_income 91166 Representative total house income in the dwelling unit is $91166 -in.representative_income 91171 Representative total house income in the dwelling unit is $91171 -in.representative_income 91181 Representative total house income in the dwelling unit is $91181 -in.representative_income 91186 Representative total house income in the dwelling unit is $91186 -in.representative_income 91190 Representative total house income in the dwelling unit is $91190 -in.representative_income 91192 Representative total house income in the dwelling unit is $91192 -in.representative_income 91196 Representative total house income in the dwelling unit is $91196 -in.representative_income 91216 Representative total house income in the dwelling unit is $91216 -in.representative_income 91221 Representative total house income in the dwelling unit is $91221 -in.representative_income 91222 Representative total house income in the dwelling unit is $91222 -in.representative_income 91223 Representative total house income in the dwelling unit is $91223 -in.representative_income 91232 Representative total house income in the dwelling unit is $91232 -in.representative_income 91234 Representative total house income in the dwelling unit is $91234 -in.representative_income 91241 Representative total house income in the dwelling unit is $91241 -in.representative_income 91243 Representative total house income in the dwelling unit is $91243 -in.representative_income 91244 Representative total house income in the dwelling unit is $91244 -in.representative_income 91247 Representative total house income in the dwelling unit is $91247 -in.representative_income 91254 Representative total house income in the dwelling unit is $91254 -in.representative_income 91267 Representative total house income in the dwelling unit is $91267 -in.representative_income 91275 Representative total house income in the dwelling unit is $91275 -in.representative_income 91277 Representative total house income in the dwelling unit is $91277 -in.representative_income 91283 Representative total house income in the dwelling unit is $91283 -in.representative_income 91287 Representative total house income in the dwelling unit is $91287 -in.representative_income 91294 Representative total house income in the dwelling unit is $91294 -in.representative_income 91297 Representative total house income in the dwelling unit is $91297 -in.representative_income 91299 Representative total house income in the dwelling unit is $91299 -in.representative_income 91307 Representative total house income in the dwelling unit is $91307 -in.representative_income 91308 Representative total house income in the dwelling unit is $91308 -in.representative_income 91317 Representative total house income in the dwelling unit is $91317 -in.representative_income 91329 Representative total house income in the dwelling unit is $91329 -in.representative_income 91334 Representative total house income in the dwelling unit is $91334 -in.representative_income 91351 Representative total house income in the dwelling unit is $91351 -in.representative_income 91355 Representative total house income in the dwelling unit is $91355 -in.representative_income 91361 Representative total house income in the dwelling unit is $91361 -in.representative_income 91366 Representative total house income in the dwelling unit is $91366 -in.representative_income 91369 Representative total house income in the dwelling unit is $91369 -in.representative_income 91386 Representative total house income in the dwelling unit is $91386 -in.representative_income 91394 Representative total house income in the dwelling unit is $91394 -in.representative_income 91398 Representative total house income in the dwelling unit is $91398 -in.representative_income 91407 Representative total house income in the dwelling unit is $91407 -in.representative_income 91418 Representative total house income in the dwelling unit is $91418 -in.representative_income 91424 Representative total house income in the dwelling unit is $91424 -in.representative_income 91428 Representative total house income in the dwelling unit is $91428 -in.representative_income 91435 Representative total house income in the dwelling unit is $91435 -in.representative_income 91440 Representative total house income in the dwelling unit is $91440 -in.representative_income 91445 Representative total house income in the dwelling unit is $91445 -in.representative_income 91448 Representative total house income in the dwelling unit is $91448 -in.representative_income 91458 Representative total house income in the dwelling unit is $91458 -in.representative_income 91462 Representative total house income in the dwelling unit is $91462 -in.representative_income 91463 Representative total house income in the dwelling unit is $91463 -in.representative_income 91469 Representative total house income in the dwelling unit is $91469 -in.representative_income 91483 Representative total house income in the dwelling unit is $91483 -in.representative_income 91487 Representative total house income in the dwelling unit is $91487 -in.representative_income 91490 Representative total house income in the dwelling unit is $91490 -in.representative_income 91495 Representative total house income in the dwelling unit is $91495 -in.representative_income 91499 Representative total house income in the dwelling unit is $91499 -in.representative_income 91505 Representative total house income in the dwelling unit is $91505 -in.representative_income 91506 Representative total house income in the dwelling unit is $91506 -in.representative_income 91509 Representative total house income in the dwelling unit is $91509 -in.representative_income 91510 Representative total house income in the dwelling unit is $91510 -in.representative_income 91511 Representative total house income in the dwelling unit is $91511 -in.representative_income 91516 Representative total house income in the dwelling unit is $91516 -in.representative_income 91519 Representative total house income in the dwelling unit is $91519 -in.representative_income 91523 Representative total house income in the dwelling unit is $91523 -in.representative_income 91531 Representative total house income in the dwelling unit is $91531 -in.representative_income 91538 Representative total house income in the dwelling unit is $91538 -in.representative_income 91540 Representative total house income in the dwelling unit is $91540 -in.representative_income 91542 Representative total house income in the dwelling unit is $91542 -in.representative_income 91552 Representative total house income in the dwelling unit is $91552 -in.representative_income 91558 Representative total house income in the dwelling unit is $91558 -in.representative_income 91561 Representative total house income in the dwelling unit is $91561 -in.representative_income 91566 Representative total house income in the dwelling unit is $91566 -in.representative_income 91570 Representative total house income in the dwelling unit is $91570 -in.representative_income 91580 Representative total house income in the dwelling unit is $91580 -in.representative_income 91583 Representative total house income in the dwelling unit is $91583 -in.representative_income 91585 Representative total house income in the dwelling unit is $91585 -in.representative_income 91587 Representative total house income in the dwelling unit is $91587 -in.representative_income 91590 Representative total house income in the dwelling unit is $91590 -in.representative_income 91593 Representative total house income in the dwelling unit is $91593 -in.representative_income 91598 Representative total house income in the dwelling unit is $91598 -in.representative_income 91603 Representative total house income in the dwelling unit is $91603 -in.representative_income 91610 Representative total house income in the dwelling unit is $91610 -in.representative_income 91615 Representative total house income in the dwelling unit is $91615 -in.representative_income 91619 Representative total house income in the dwelling unit is $91619 -in.representative_income 91620 Representative total house income in the dwelling unit is $91620 -in.representative_income 91624 Representative total house income in the dwelling unit is $91624 -in.representative_income 91640 Representative total house income in the dwelling unit is $91640 -in.representative_income 91645 Representative total house income in the dwelling unit is $91645 -in.representative_income 91659 Representative total house income in the dwelling unit is $91659 -in.representative_income 91670 Representative total house income in the dwelling unit is $91670 -in.representative_income 91672 Representative total house income in the dwelling unit is $91672 -in.representative_income 91674 Representative total house income in the dwelling unit is $91674 -in.representative_income 91675 Representative total house income in the dwelling unit is $91675 -in.representative_income 91678 Representative total house income in the dwelling unit is $91678 -in.representative_income 91696 Representative total house income in the dwelling unit is $91696 -in.representative_income 91698 Representative total house income in the dwelling unit is $91698 -in.representative_income 91717 Representative total house income in the dwelling unit is $91717 -in.representative_income 91721 Representative total house income in the dwelling unit is $91721 -in.representative_income 91726 Representative total house income in the dwelling unit is $91726 -in.representative_income 91732 Representative total house income in the dwelling unit is $91732 -in.representative_income 91735 Representative total house income in the dwelling unit is $91735 -in.representative_income 91736 Representative total house income in the dwelling unit is $91736 -in.representative_income 91738 Representative total house income in the dwelling unit is $91738 -in.representative_income 91750 Representative total house income in the dwelling unit is $91750 -in.representative_income 91751 Representative total house income in the dwelling unit is $91751 -in.representative_income 91754 Representative total house income in the dwelling unit is $91754 -in.representative_income 91761 Representative total house income in the dwelling unit is $91761 -in.representative_income 91762 Representative total house income in the dwelling unit is $91762 -in.representative_income 91764 Representative total house income in the dwelling unit is $91764 -in.representative_income 91768 Representative total house income in the dwelling unit is $91768 -in.representative_income 91772 Representative total house income in the dwelling unit is $91772 -in.representative_income 91777 Representative total house income in the dwelling unit is $91777 -in.representative_income 91778 Representative total house income in the dwelling unit is $91778 -in.representative_income 91780 Representative total house income in the dwelling unit is $91780 -in.representative_income 91783 Representative total house income in the dwelling unit is $91783 -in.representative_income 91799 Representative total house income in the dwelling unit is $91799 -in.representative_income 91802 Representative total house income in the dwelling unit is $91802 -in.representative_income 91804 Representative total house income in the dwelling unit is $91804 -in.representative_income 91810 Representative total house income in the dwelling unit is $91810 -in.representative_income 91812 Representative total house income in the dwelling unit is $91812 -in.representative_income 91814 Representative total house income in the dwelling unit is $91814 -in.representative_income 91819 Representative total house income in the dwelling unit is $91819 -in.representative_income 91820 Representative total house income in the dwelling unit is $91820 -in.representative_income 91822 Representative total house income in the dwelling unit is $91822 -in.representative_income 91837 Representative total house income in the dwelling unit is $91837 -in.representative_income 91840 Representative total house income in the dwelling unit is $91840 -in.representative_income 91841 Representative total house income in the dwelling unit is $91841 -in.representative_income 91844 Representative total house income in the dwelling unit is $91844 -in.representative_income 91850 Representative total house income in the dwelling unit is $91850 -in.representative_income 91851 Representative total house income in the dwelling unit is $91851 -in.representative_income 91856 Representative total house income in the dwelling unit is $91856 -in.representative_income 91862 Representative total house income in the dwelling unit is $91862 -in.representative_income 91873 Representative total house income in the dwelling unit is $91873 -in.representative_income 91878 Representative total house income in the dwelling unit is $91878 -in.representative_income 91883 Representative total house income in the dwelling unit is $91883 -in.representative_income 91887 Representative total house income in the dwelling unit is $91887 -in.representative_income 91888 Representative total house income in the dwelling unit is $91888 -in.representative_income 91889 Representative total house income in the dwelling unit is $91889 -in.representative_income 91894 Representative total house income in the dwelling unit is $91894 -in.representative_income 91902 Representative total house income in the dwelling unit is $91902 -in.representative_income 91904 Representative total house income in the dwelling unit is $91904 -in.representative_income 91905 Representative total house income in the dwelling unit is $91905 -in.representative_income 91908 Representative total house income in the dwelling unit is $91908 -in.representative_income 91916 Representative total house income in the dwelling unit is $91916 -in.representative_income 91923 Representative total house income in the dwelling unit is $91923 -in.representative_income 91926 Representative total house income in the dwelling unit is $91926 -in.representative_income 91933 Representative total house income in the dwelling unit is $91933 -in.representative_income 91940 Representative total house income in the dwelling unit is $91940 -in.representative_income 91941 Representative total house income in the dwelling unit is $91941 -in.representative_income 91943 Representative total house income in the dwelling unit is $91943 -in.representative_income 91948 Representative total house income in the dwelling unit is $91948 -in.representative_income 91949 Representative total house income in the dwelling unit is $91949 -in.representative_income 91954 Representative total house income in the dwelling unit is $91954 -in.representative_income 91962 Representative total house income in the dwelling unit is $91962 -in.representative_income 91974 Representative total house income in the dwelling unit is $91974 -in.representative_income 91977 Representative total house income in the dwelling unit is $91977 -in.representative_income 91984 Representative total house income in the dwelling unit is $91984 -in.representative_income 91993 Representative total house income in the dwelling unit is $91993 -in.representative_income 91995 Representative total house income in the dwelling unit is $91995 -in.representative_income 92002 Representative total house income in the dwelling unit is $92002 -in.representative_income 92004 Representative total house income in the dwelling unit is $92004 -in.representative_income 92005 Representative total house income in the dwelling unit is $92005 -in.representative_income 92006 Representative total house income in the dwelling unit is $92006 -in.representative_income 92014 Representative total house income in the dwelling unit is $92014 -in.representative_income 92016 Representative total house income in the dwelling unit is $92016 -in.representative_income 92017 Representative total house income in the dwelling unit is $92017 -in.representative_income 92018 Representative total house income in the dwelling unit is $92018 -in.representative_income 92023 Representative total house income in the dwelling unit is $92023 -in.representative_income 92024 Representative total house income in the dwelling unit is $92024 -in.representative_income 92034 Representative total house income in the dwelling unit is $92034 -in.representative_income 92044 Representative total house income in the dwelling unit is $92044 -in.representative_income 92056 Representative total house income in the dwelling unit is $92056 -in.representative_income 92057 Representative total house income in the dwelling unit is $92057 -in.representative_income 92067 Representative total house income in the dwelling unit is $92067 -in.representative_income 92075 Representative total house income in the dwelling unit is $92075 -in.representative_income 92082 Representative total house income in the dwelling unit is $92082 -in.representative_income 92102 Representative total house income in the dwelling unit is $92102 -in.representative_income 92109 Representative total house income in the dwelling unit is $92109 -in.representative_income 92115 Representative total house income in the dwelling unit is $92115 -in.representative_income 92119 Representative total house income in the dwelling unit is $92119 -in.representative_income 92125 Representative total house income in the dwelling unit is $92125 -in.representative_income 92131 Representative total house income in the dwelling unit is $92131 -in.representative_income 92153 Representative total house income in the dwelling unit is $92153 -in.representative_income 92164 Representative total house income in the dwelling unit is $92164 -in.representative_income 92166 Representative total house income in the dwelling unit is $92166 -in.representative_income 92171 Representative total house income in the dwelling unit is $92171 -in.representative_income 92173 Representative total house income in the dwelling unit is $92173 -in.representative_income 92185 Representative total house income in the dwelling unit is $92185 -in.representative_income 92191 Representative total house income in the dwelling unit is $92191 -in.representative_income 92209 Representative total house income in the dwelling unit is $92209 -in.representative_income 92212 Representative total house income in the dwelling unit is $92212 -in.representative_income 92216 Representative total house income in the dwelling unit is $92216 -in.representative_income 92225 Representative total house income in the dwelling unit is $92225 -in.representative_income 92226 Representative total house income in the dwelling unit is $92226 -in.representative_income 92251 Representative total house income in the dwelling unit is $92251 -in.representative_income 92254 Representative total house income in the dwelling unit is $92254 -in.representative_income 92267 Representative total house income in the dwelling unit is $92267 -in.representative_income 92272 Representative total house income in the dwelling unit is $92272 -in.representative_income 92277 Representative total house income in the dwelling unit is $92277 -in.representative_income 92278 Representative total house income in the dwelling unit is $92278 -in.representative_income 92283 Representative total house income in the dwelling unit is $92283 -in.representative_income 92287 Representative total house income in the dwelling unit is $92287 -in.representative_income 92291 Representative total house income in the dwelling unit is $92291 -in.representative_income 92295 Representative total house income in the dwelling unit is $92295 -in.representative_income 92297 Representative total house income in the dwelling unit is $92297 -in.representative_income 92306 Representative total house income in the dwelling unit is $92306 -in.representative_income 92315 Representative total house income in the dwelling unit is $92315 -in.representative_income 92316 Representative total house income in the dwelling unit is $92316 -in.representative_income 92317 Representative total house income in the dwelling unit is $92317 -in.representative_income 92325 Representative total house income in the dwelling unit is $92325 -in.representative_income 92327 Representative total house income in the dwelling unit is $92327 -in.representative_income 92331 Representative total house income in the dwelling unit is $92331 -in.representative_income 92336 Representative total house income in the dwelling unit is $92336 -in.representative_income 92337 Representative total house income in the dwelling unit is $92337 -in.representative_income 92358 Representative total house income in the dwelling unit is $92358 -in.representative_income 92360 Representative total house income in the dwelling unit is $92360 -in.representative_income 92366 Representative total house income in the dwelling unit is $92366 -in.representative_income 92367 Representative total house income in the dwelling unit is $92367 -in.representative_income 92371 Representative total house income in the dwelling unit is $92371 -in.representative_income 92381 Representative total house income in the dwelling unit is $92381 -in.representative_income 92383 Representative total house income in the dwelling unit is $92383 -in.representative_income 92386 Representative total house income in the dwelling unit is $92386 -in.representative_income 92394 Representative total house income in the dwelling unit is $92394 -in.representative_income 92403 Representative total house income in the dwelling unit is $92403 -in.representative_income 92404 Representative total house income in the dwelling unit is $92404 -in.representative_income 92408 Representative total house income in the dwelling unit is $92408 -in.representative_income 92418 Representative total house income in the dwelling unit is $92418 -in.representative_income 92424 Representative total house income in the dwelling unit is $92424 -in.representative_income 92428 Representative total house income in the dwelling unit is $92428 -in.representative_income 92448 Representative total house income in the dwelling unit is $92448 -in.representative_income 92456 Representative total house income in the dwelling unit is $92456 -in.representative_income 92457 Representative total house income in the dwelling unit is $92457 -in.representative_income 92459 Representative total house income in the dwelling unit is $92459 -in.representative_income 92467 Representative total house income in the dwelling unit is $92467 -in.representative_income 92469 Representative total house income in the dwelling unit is $92469 -in.representative_income 92477 Representative total house income in the dwelling unit is $92477 -in.representative_income 92478 Representative total house income in the dwelling unit is $92478 -in.representative_income 92488 Representative total house income in the dwelling unit is $92488 -in.representative_income 92489 Representative total house income in the dwelling unit is $92489 -in.representative_income 92493 Representative total house income in the dwelling unit is $92493 -in.representative_income 92508 Representative total house income in the dwelling unit is $92508 -in.representative_income 92514 Representative total house income in the dwelling unit is $92514 -in.representative_income 92521 Representative total house income in the dwelling unit is $92521 -in.representative_income 92529 Representative total house income in the dwelling unit is $92529 -in.representative_income 92531 Representative total house income in the dwelling unit is $92531 -in.representative_income 92532 Representative total house income in the dwelling unit is $92532 -in.representative_income 92570 Representative total house income in the dwelling unit is $92570 -in.representative_income 92573 Representative total house income in the dwelling unit is $92573 -in.representative_income 92590 Representative total house income in the dwelling unit is $92590 -in.representative_income 92593 Representative total house income in the dwelling unit is $92593 -in.representative_income 92595 Representative total house income in the dwelling unit is $92595 -in.representative_income 92596 Representative total house income in the dwelling unit is $92596 -in.representative_income 92600 Representative total house income in the dwelling unit is $92600 -in.representative_income 92605 Representative total house income in the dwelling unit is $92605 -in.representative_income 92608 Representative total house income in the dwelling unit is $92608 -in.representative_income 92610 Representative total house income in the dwelling unit is $92610 -in.representative_income 92624 Representative total house income in the dwelling unit is $92624 -in.representative_income 92630 Representative total house income in the dwelling unit is $92630 -in.representative_income 92639 Representative total house income in the dwelling unit is $92639 -in.representative_income 92640 Representative total house income in the dwelling unit is $92640 -in.representative_income 92650 Representative total house income in the dwelling unit is $92650 -in.representative_income 92666 Representative total house income in the dwelling unit is $92666 -in.representative_income 92681 Representative total house income in the dwelling unit is $92681 -in.representative_income 92686 Representative total house income in the dwelling unit is $92686 -in.representative_income 92690 Representative total house income in the dwelling unit is $92690 -in.representative_income 92700 Representative total house income in the dwelling unit is $92700 -in.representative_income 92704 Representative total house income in the dwelling unit is $92704 -in.representative_income 92726 Representative total house income in the dwelling unit is $92726 -in.representative_income 92728 Representative total house income in the dwelling unit is $92728 -in.representative_income 92731 Representative total house income in the dwelling unit is $92731 -in.representative_income 92735 Representative total house income in the dwelling unit is $92735 -in.representative_income 92746 Representative total house income in the dwelling unit is $92746 -in.representative_income 92747 Representative total house income in the dwelling unit is $92747 -in.representative_income 92748 Representative total house income in the dwelling unit is $92748 -in.representative_income 92752 Representative total house income in the dwelling unit is $92752 -in.representative_income 92769 Representative total house income in the dwelling unit is $92769 -in.representative_income 92789 Representative total house income in the dwelling unit is $92789 -in.representative_income 92791 Representative total house income in the dwelling unit is $92791 -in.representative_income 92800 Representative total house income in the dwelling unit is $92800 -in.representative_income 92805 Representative total house income in the dwelling unit is $92805 -in.representative_income 92812 Representative total house income in the dwelling unit is $92812 -in.representative_income 92816 Representative total house income in the dwelling unit is $92816 -in.representative_income 92819 Representative total house income in the dwelling unit is $92819 -in.representative_income 92826 Representative total house income in the dwelling unit is $92826 -in.representative_income 92831 Representative total house income in the dwelling unit is $92831 -in.representative_income 92832 Representative total house income in the dwelling unit is $92832 -in.representative_income 92837 Representative total house income in the dwelling unit is $92837 -in.representative_income 92841 Representative total house income in the dwelling unit is $92841 -in.representative_income 92842 Representative total house income in the dwelling unit is $92842 -in.representative_income 92847 Representative total house income in the dwelling unit is $92847 -in.representative_income 92851 Representative total house income in the dwelling unit is $92851 -in.representative_income 92853 Representative total house income in the dwelling unit is $92853 -in.representative_income 92856 Representative total house income in the dwelling unit is $92856 -in.representative_income 92877 Representative total house income in the dwelling unit is $92877 -in.representative_income 92882 Representative total house income in the dwelling unit is $92882 -in.representative_income 92890 Representative total house income in the dwelling unit is $92890 -in.representative_income 92893 Representative total house income in the dwelling unit is $92893 -in.representative_income 92903 Representative total house income in the dwelling unit is $92903 -in.representative_income 92911 Representative total house income in the dwelling unit is $92911 -in.representative_income 92920 Representative total house income in the dwelling unit is $92920 -in.representative_income 92924 Representative total house income in the dwelling unit is $92924 -in.representative_income 92933 Representative total house income in the dwelling unit is $92933 -in.representative_income 92942 Representative total house income in the dwelling unit is $92942 -in.representative_income 92945 Representative total house income in the dwelling unit is $92945 -in.representative_income 92954 Representative total house income in the dwelling unit is $92954 -in.representative_income 92961 Representative total house income in the dwelling unit is $92961 -in.representative_income 92962 Representative total house income in the dwelling unit is $92962 -in.representative_income 92963 Representative total house income in the dwelling unit is $92963 -in.representative_income 92964 Representative total house income in the dwelling unit is $92964 -in.representative_income 92974 Representative total house income in the dwelling unit is $92974 -in.representative_income 92984 Representative total house income in the dwelling unit is $92984 -in.representative_income 92985 Representative total house income in the dwelling unit is $92985 -in.representative_income 92992 Representative total house income in the dwelling unit is $92992 -in.representative_income 92996 Representative total house income in the dwelling unit is $92996 -in.representative_income 93006 Representative total house income in the dwelling unit is $93006 -in.representative_income 93012 Representative total house income in the dwelling unit is $93012 -in.representative_income 93014 Representative total house income in the dwelling unit is $93014 -in.representative_income 93016 Representative total house income in the dwelling unit is $93016 -in.representative_income 93017 Representative total house income in the dwelling unit is $93017 -in.representative_income 93028 Representative total house income in the dwelling unit is $93028 -in.representative_income 93034 Representative total house income in the dwelling unit is $93034 -in.representative_income 93037 Representative total house income in the dwelling unit is $93037 -in.representative_income 93038 Representative total house income in the dwelling unit is $93038 -in.representative_income 93039 Representative total house income in the dwelling unit is $93039 -in.representative_income 93050 Representative total house income in the dwelling unit is $93050 -in.representative_income 93060 Representative total house income in the dwelling unit is $93060 -in.representative_income 93068 Representative total house income in the dwelling unit is $93068 -in.representative_income 93075 Representative total house income in the dwelling unit is $93075 -in.representative_income 93085 Representative total house income in the dwelling unit is $93085 -in.representative_income 93086 Representative total house income in the dwelling unit is $93086 -in.representative_income 93088 Representative total house income in the dwelling unit is $93088 -in.representative_income 93094 Representative total house income in the dwelling unit is $93094 -in.representative_income 93099 Representative total house income in the dwelling unit is $93099 -in.representative_income 93111 Representative total house income in the dwelling unit is $93111 -in.representative_income 93121 Representative total house income in the dwelling unit is $93121 -in.representative_income 93122 Representative total house income in the dwelling unit is $93122 -in.representative_income 93135 Representative total house income in the dwelling unit is $93135 -in.representative_income 93137 Representative total house income in the dwelling unit is $93137 -in.representative_income 93140 Representative total house income in the dwelling unit is $93140 -in.representative_income 93143 Representative total house income in the dwelling unit is $93143 -in.representative_income 93153 Representative total house income in the dwelling unit is $93153 -in.representative_income 93160 Representative total house income in the dwelling unit is $93160 -in.representative_income 93164 Representative total house income in the dwelling unit is $93164 -in.representative_income 93169 Representative total house income in the dwelling unit is $93169 -in.representative_income 93176 Representative total house income in the dwelling unit is $93176 -in.representative_income 93180 Representative total house income in the dwelling unit is $93180 -in.representative_income 93182 Representative total house income in the dwelling unit is $93182 -in.representative_income 93186 Representative total house income in the dwelling unit is $93186 -in.representative_income 93203 Representative total house income in the dwelling unit is $93203 -in.representative_income 93212 Representative total house income in the dwelling unit is $93212 -in.representative_income 93228 Representative total house income in the dwelling unit is $93228 -in.representative_income 93236 Representative total house income in the dwelling unit is $93236 -in.representative_income 93243 Representative total house income in the dwelling unit is $93243 -in.representative_income 93245 Representative total house income in the dwelling unit is $93245 -in.representative_income 93266 Representative total house income in the dwelling unit is $93266 -in.representative_income 93267 Representative total house income in the dwelling unit is $93267 -in.representative_income 93279 Representative total house income in the dwelling unit is $93279 -in.representative_income 93283 Representative total house income in the dwelling unit is $93283 -in.representative_income 93284 Representative total house income in the dwelling unit is $93284 -in.representative_income 93285 Representative total house income in the dwelling unit is $93285 -in.representative_income 93299 Representative total house income in the dwelling unit is $93299 -in.representative_income 93307 Representative total house income in the dwelling unit is $93307 -in.representative_income 93309 Representative total house income in the dwelling unit is $93309 -in.representative_income 93331 Representative total house income in the dwelling unit is $93331 -in.representative_income 93333 Representative total house income in the dwelling unit is $93333 -in.representative_income 93337 Representative total house income in the dwelling unit is $93337 -in.representative_income 93347 Representative total house income in the dwelling unit is $93347 -in.representative_income 93353 Representative total house income in the dwelling unit is $93353 -in.representative_income 93364 Representative total house income in the dwelling unit is $93364 -in.representative_income 93367 Representative total house income in the dwelling unit is $93367 -in.representative_income 93390 Representative total house income in the dwelling unit is $93390 -in.representative_income 93391 Representative total house income in the dwelling unit is $93391 -in.representative_income 93396 Representative total house income in the dwelling unit is $93396 -in.representative_income 93400 Representative total house income in the dwelling unit is $93400 -in.representative_income 93402 Representative total house income in the dwelling unit is $93402 -in.representative_income 93406 Representative total house income in the dwelling unit is $93406 -in.representative_income 93408 Representative total house income in the dwelling unit is $93408 -in.representative_income 93411 Representative total house income in the dwelling unit is $93411 -in.representative_income 93418 Representative total house income in the dwelling unit is $93418 -in.representative_income 93419 Representative total house income in the dwelling unit is $93419 -in.representative_income 93428 Representative total house income in the dwelling unit is $93428 -in.representative_income 93430 Representative total house income in the dwelling unit is $93430 -in.representative_income 93438 Representative total house income in the dwelling unit is $93438 -in.representative_income 93441 Representative total house income in the dwelling unit is $93441 -in.representative_income 93442 Representative total house income in the dwelling unit is $93442 -in.representative_income 93444 Representative total house income in the dwelling unit is $93444 -in.representative_income 93449 Representative total house income in the dwelling unit is $93449 -in.representative_income 93460 Representative total house income in the dwelling unit is $93460 -in.representative_income 93461 Representative total house income in the dwelling unit is $93461 -in.representative_income 93484 Representative total house income in the dwelling unit is $93484 -in.representative_income 93497 Representative total house income in the dwelling unit is $93497 -in.representative_income 93499 Representative total house income in the dwelling unit is $93499 -in.representative_income 93502 Representative total house income in the dwelling unit is $93502 -in.representative_income 93509 Representative total house income in the dwelling unit is $93509 -in.representative_income 93532 Representative total house income in the dwelling unit is $93532 -in.representative_income 93539 Representative total house income in the dwelling unit is $93539 -in.representative_income 93543 Representative total house income in the dwelling unit is $93543 -in.representative_income 93552 Representative total house income in the dwelling unit is $93552 -in.representative_income 93562 Representative total house income in the dwelling unit is $93562 -in.representative_income 93569 Representative total house income in the dwelling unit is $93569 -in.representative_income 93578 Representative total house income in the dwelling unit is $93578 -in.representative_income 93584 Representative total house income in the dwelling unit is $93584 -in.representative_income 93594 Representative total house income in the dwelling unit is $93594 -in.representative_income 93605 Representative total house income in the dwelling unit is $93605 -in.representative_income 93614 Representative total house income in the dwelling unit is $93614 -in.representative_income 93623 Representative total house income in the dwelling unit is $93623 -in.representative_income 93625 Representative total house income in the dwelling unit is $93625 -in.representative_income 93640 Representative total house income in the dwelling unit is $93640 -in.representative_income 93644 Representative total house income in the dwelling unit is $93644 -in.representative_income 93647 Representative total house income in the dwelling unit is $93647 -in.representative_income 93648 Representative total house income in the dwelling unit is $93648 -in.representative_income 93649 Representative total house income in the dwelling unit is $93649 -in.representative_income 93656 Representative total house income in the dwelling unit is $93656 -in.representative_income 93658 Representative total house income in the dwelling unit is $93658 -in.representative_income 93660 Representative total house income in the dwelling unit is $93660 -in.representative_income 93661 Representative total house income in the dwelling unit is $93661 -in.representative_income 93676 Representative total house income in the dwelling unit is $93676 -in.representative_income 93681 Representative total house income in the dwelling unit is $93681 -in.representative_income 93691 Representative total house income in the dwelling unit is $93691 -in.representative_income 93712 Representative total house income in the dwelling unit is $93712 -in.representative_income 93730 Representative total house income in the dwelling unit is $93730 -in.representative_income 93741 Representative total house income in the dwelling unit is $93741 -in.representative_income 93754 Representative total house income in the dwelling unit is $93754 -in.representative_income 93759 Representative total house income in the dwelling unit is $93759 -in.representative_income 93772 Representative total house income in the dwelling unit is $93772 -in.representative_income 93776 Representative total house income in the dwelling unit is $93776 -in.representative_income 93777 Representative total house income in the dwelling unit is $93777 -in.representative_income 93784 Representative total house income in the dwelling unit is $93784 -in.representative_income 93792 Representative total house income in the dwelling unit is $93792 -in.representative_income 93794 Representative total house income in the dwelling unit is $93794 -in.representative_income 93806 Representative total house income in the dwelling unit is $93806 -in.representative_income 93820 Representative total house income in the dwelling unit is $93820 -in.representative_income 93831 Representative total house income in the dwelling unit is $93831 -in.representative_income 93832 Representative total house income in the dwelling unit is $93832 -in.representative_income 93842 Representative total house income in the dwelling unit is $93842 -in.representative_income 93844 Representative total house income in the dwelling unit is $93844 -in.representative_income 93852 Representative total house income in the dwelling unit is $93852 -in.representative_income 93860 Representative total house income in the dwelling unit is $93860 -in.representative_income 93862 Representative total house income in the dwelling unit is $93862 -in.representative_income 93863 Representative total house income in the dwelling unit is $93863 -in.representative_income 93873 Representative total house income in the dwelling unit is $93873 -in.representative_income 93883 Representative total house income in the dwelling unit is $93883 -in.representative_income 93892 Representative total house income in the dwelling unit is $93892 -in.representative_income 93893 Representative total house income in the dwelling unit is $93893 -in.representative_income 93898 Representative total house income in the dwelling unit is $93898 -in.representative_income 93902 Representative total house income in the dwelling unit is $93902 -in.representative_income 93913 Representative total house income in the dwelling unit is $93913 -in.representative_income 93915 Representative total house income in the dwelling unit is $93915 -in.representative_income 93916 Representative total house income in the dwelling unit is $93916 -in.representative_income 93923 Representative total house income in the dwelling unit is $93923 -in.representative_income 93926 Representative total house income in the dwelling unit is $93926 -in.representative_income 93943 Representative total house income in the dwelling unit is $93943 -in.representative_income 93947 Representative total house income in the dwelling unit is $93947 -in.representative_income 93959 Representative total house income in the dwelling unit is $93959 -in.representative_income 93962 Representative total house income in the dwelling unit is $93962 -in.representative_income 93966 Representative total house income in the dwelling unit is $93966 -in.representative_income 93970 Representative total house income in the dwelling unit is $93970 -in.representative_income 93983 Representative total house income in the dwelling unit is $93983 -in.representative_income 93994 Representative total house income in the dwelling unit is $93994 -in.representative_income 94001 Representative total house income in the dwelling unit is $94001 -in.representative_income 94002 Representative total house income in the dwelling unit is $94002 -in.representative_income 94005 Representative total house income in the dwelling unit is $94005 -in.representative_income 94012 Representative total house income in the dwelling unit is $94012 -in.representative_income 94018 Representative total house income in the dwelling unit is $94018 -in.representative_income 94023 Representative total house income in the dwelling unit is $94023 -in.representative_income 94024 Representative total house income in the dwelling unit is $94024 -in.representative_income 94026 Representative total house income in the dwelling unit is $94026 -in.representative_income 94028 Representative total house income in the dwelling unit is $94028 -in.representative_income 94034 Representative total house income in the dwelling unit is $94034 -in.representative_income 94038 Representative total house income in the dwelling unit is $94038 -in.representative_income 94045 Representative total house income in the dwelling unit is $94045 -in.representative_income 94065 Representative total house income in the dwelling unit is $94065 -in.representative_income 94068 Representative total house income in the dwelling unit is $94068 -in.representative_income 94071 Representative total house income in the dwelling unit is $94071 -in.representative_income 94079 Representative total house income in the dwelling unit is $94079 -in.representative_income 94085 Representative total house income in the dwelling unit is $94085 -in.representative_income 94096 Representative total house income in the dwelling unit is $94096 -in.representative_income 94099 Representative total house income in the dwelling unit is $94099 -in.representative_income 94109 Representative total house income in the dwelling unit is $94109 -in.representative_income 94113 Representative total house income in the dwelling unit is $94113 -in.representative_income 94138 Representative total house income in the dwelling unit is $94138 -in.representative_income 94141 Representative total house income in the dwelling unit is $94141 -in.representative_income 94142 Representative total house income in the dwelling unit is $94142 -in.representative_income 94146 Representative total house income in the dwelling unit is $94146 -in.representative_income 94163 Representative total house income in the dwelling unit is $94163 -in.representative_income 94166 Representative total house income in the dwelling unit is $94166 -in.representative_income 94171 Representative total house income in the dwelling unit is $94171 -in.representative_income 94172 Representative total house income in the dwelling unit is $94172 -in.representative_income 94176 Representative total house income in the dwelling unit is $94176 -in.representative_income 94197 Representative total house income in the dwelling unit is $94197 -in.representative_income 94217 Representative total house income in the dwelling unit is $94217 -in.representative_income 94226 Representative total house income in the dwelling unit is $94226 -in.representative_income 94236 Representative total house income in the dwelling unit is $94236 -in.representative_income 94247 Representative total house income in the dwelling unit is $94247 -in.representative_income 94248 Representative total house income in the dwelling unit is $94248 -in.representative_income 94249 Representative total house income in the dwelling unit is $94249 -in.representative_income 94250 Representative total house income in the dwelling unit is $94250 -in.representative_income 94255 Representative total house income in the dwelling unit is $94255 -in.representative_income 94270 Representative total house income in the dwelling unit is $94270 -in.representative_income 94275 Representative total house income in the dwelling unit is $94275 -in.representative_income 94277 Representative total house income in the dwelling unit is $94277 -in.representative_income 94279 Representative total house income in the dwelling unit is $94279 -in.representative_income 94282 Representative total house income in the dwelling unit is $94282 -in.representative_income 94285 Representative total house income in the dwelling unit is $94285 -in.representative_income 94302 Representative total house income in the dwelling unit is $94302 -in.representative_income 94303 Representative total house income in the dwelling unit is $94303 -in.representative_income 94314 Representative total house income in the dwelling unit is $94314 -in.representative_income 94325 Representative total house income in the dwelling unit is $94325 -in.representative_income 94326 Representative total house income in the dwelling unit is $94326 -in.representative_income 94331 Representative total house income in the dwelling unit is $94331 -in.representative_income 94347 Representative total house income in the dwelling unit is $94347 -in.representative_income 94348 Representative total house income in the dwelling unit is $94348 -in.representative_income 94356 Representative total house income in the dwelling unit is $94356 -in.representative_income 94357 Representative total house income in the dwelling unit is $94357 -in.representative_income 94378 Representative total house income in the dwelling unit is $94378 -in.representative_income 94387 Representative total house income in the dwelling unit is $94387 -in.representative_income 94388 Representative total house income in the dwelling unit is $94388 -in.representative_income 94398 Representative total house income in the dwelling unit is $94398 -in.representative_income 94410 Representative total house income in the dwelling unit is $94410 -in.representative_income 94418 Representative total house income in the dwelling unit is $94418 -in.representative_income 94428 Representative total house income in the dwelling unit is $94428 -in.representative_income 94433 Representative total house income in the dwelling unit is $94433 -in.representative_income 94440 Representative total house income in the dwelling unit is $94440 -in.representative_income 94449 Representative total house income in the dwelling unit is $94449 -in.representative_income 94463 Representative total house income in the dwelling unit is $94463 -in.representative_income 94469 Representative total house income in the dwelling unit is $94469 -in.representative_income 94474 Representative total house income in the dwelling unit is $94474 -in.representative_income 94481 Representative total house income in the dwelling unit is $94481 -in.representative_income 94485 Representative total house income in the dwelling unit is $94485 -in.representative_income 94493 Representative total house income in the dwelling unit is $94493 -in.representative_income 94496 Representative total house income in the dwelling unit is $94496 -in.representative_income 94497 Representative total house income in the dwelling unit is $94497 -in.representative_income 94507 Representative total house income in the dwelling unit is $94507 -in.representative_income 94517 Representative total house income in the dwelling unit is $94517 -in.representative_income 94529 Representative total house income in the dwelling unit is $94529 -in.representative_income 94533 Representative total house income in the dwelling unit is $94533 -in.representative_income 94541 Representative total house income in the dwelling unit is $94541 -in.representative_income 94550 Representative total house income in the dwelling unit is $94550 -in.representative_income 94556 Representative total house income in the dwelling unit is $94556 -in.representative_income 94570 Representative total house income in the dwelling unit is $94570 -in.representative_income 94571 Representative total house income in the dwelling unit is $94571 -in.representative_income 94577 Representative total house income in the dwelling unit is $94577 -in.representative_income 94582 Representative total house income in the dwelling unit is $94582 -in.representative_income 94584 Representative total house income in the dwelling unit is $94584 -in.representative_income 94598 Representative total house income in the dwelling unit is $94598 -in.representative_income 94603 Representative total house income in the dwelling unit is $94603 -in.representative_income 94607 Representative total house income in the dwelling unit is $94607 -in.representative_income 94627 Representative total house income in the dwelling unit is $94627 -in.representative_income 94649 Representative total house income in the dwelling unit is $94649 -in.representative_income 94651 Representative total house income in the dwelling unit is $94651 -in.representative_income 94661 Representative total house income in the dwelling unit is $94661 -in.representative_income 94677 Representative total house income in the dwelling unit is $94677 -in.representative_income 94678 Representative total house income in the dwelling unit is $94678 -in.representative_income 94687 Representative total house income in the dwelling unit is $94687 -in.representative_income 94689 Representative total house income in the dwelling unit is $94689 -in.representative_income 94704 Representative total house income in the dwelling unit is $94704 -in.representative_income 94731 Representative total house income in the dwelling unit is $94731 -in.representative_income 94735 Representative total house income in the dwelling unit is $94735 -in.representative_income 94739 Representative total house income in the dwelling unit is $94739 -in.representative_income 94741 Representative total house income in the dwelling unit is $94741 -in.representative_income 94752 Representative total house income in the dwelling unit is $94752 -in.representative_income 94758 Representative total house income in the dwelling unit is $94758 -in.representative_income 94767 Representative total house income in the dwelling unit is $94767 -in.representative_income 94770 Representative total house income in the dwelling unit is $94770 -in.representative_income 94783 Representative total house income in the dwelling unit is $94783 -in.representative_income 94784 Representative total house income in the dwelling unit is $94784 -in.representative_income 94786 Representative total house income in the dwelling unit is $94786 -in.representative_income 94790 Representative total house income in the dwelling unit is $94790 -in.representative_income 94801 Representative total house income in the dwelling unit is $94801 -in.representative_income 94809 Representative total house income in the dwelling unit is $94809 -in.representative_income 94822 Representative total house income in the dwelling unit is $94822 -in.representative_income 94824 Representative total house income in the dwelling unit is $94824 -in.representative_income 94830 Representative total house income in the dwelling unit is $94830 -in.representative_income 94847 Representative total house income in the dwelling unit is $94847 -in.representative_income 94852 Representative total house income in the dwelling unit is $94852 -in.representative_income 94853 Representative total house income in the dwelling unit is $94853 -in.representative_income 94865 Representative total house income in the dwelling unit is $94865 -in.representative_income 94873 Representative total house income in the dwelling unit is $94873 -in.representative_income 94880 Representative total house income in the dwelling unit is $94880 -in.representative_income 94893 Representative total house income in the dwelling unit is $94893 -in.representative_income 94894 Representative total house income in the dwelling unit is $94894 -in.representative_income 94898 Representative total house income in the dwelling unit is $94898 -in.representative_income 94913 Representative total house income in the dwelling unit is $94913 -in.representative_income 94914 Representative total house income in the dwelling unit is $94914 -in.representative_income 94924 Representative total house income in the dwelling unit is $94924 -in.representative_income 94925 Representative total house income in the dwelling unit is $94925 -in.representative_income 94928 Representative total house income in the dwelling unit is $94928 -in.representative_income 94947 Representative total house income in the dwelling unit is $94947 -in.representative_income 94954 Representative total house income in the dwelling unit is $94954 -in.representative_income 94967 Representative total house income in the dwelling unit is $94967 -in.representative_income 94973 Representative total house income in the dwelling unit is $94973 -in.representative_income 94986 Representative total house income in the dwelling unit is $94986 -in.representative_income 94997 Representative total house income in the dwelling unit is $94997 -in.representative_income 95000 Representative total house income in the dwelling unit is $95000 -in.representative_income 95017 Representative total house income in the dwelling unit is $95017 -in.representative_income 95020 Representative total house income in the dwelling unit is $95020 -in.representative_income 95022 Representative total house income in the dwelling unit is $95022 -in.representative_income 95038 Representative total house income in the dwelling unit is $95038 -in.representative_income 95052 Representative total house income in the dwelling unit is $95052 -in.representative_income 95054 Representative total house income in the dwelling unit is $95054 -in.representative_income 95055 Representative total house income in the dwelling unit is $95055 -in.representative_income 95065 Representative total house income in the dwelling unit is $95065 -in.representative_income 95069 Representative total house income in the dwelling unit is $95069 -in.representative_income 95073 Representative total house income in the dwelling unit is $95073 -in.representative_income 95081 Representative total house income in the dwelling unit is $95081 -in.representative_income 95083 Representative total house income in the dwelling unit is $95083 -in.representative_income 95099 Representative total house income in the dwelling unit is $95099 -in.representative_income 95107 Representative total house income in the dwelling unit is $95107 -in.representative_income 95114 Representative total house income in the dwelling unit is $95114 -in.representative_income 95123 Representative total house income in the dwelling unit is $95123 -in.representative_income 95126 Representative total house income in the dwelling unit is $95126 -in.representative_income 95135 Representative total house income in the dwelling unit is $95135 -in.representative_income 95136 Representative total house income in the dwelling unit is $95136 -in.representative_income 95151 Representative total house income in the dwelling unit is $95151 -in.representative_income 95156 Representative total house income in the dwelling unit is $95156 -in.representative_income 95162 Representative total house income in the dwelling unit is $95162 -in.representative_income 95168 Representative total house income in the dwelling unit is $95168 -in.representative_income 95173 Representative total house income in the dwelling unit is $95173 -in.representative_income 95176 Representative total house income in the dwelling unit is $95176 -in.representative_income 95178 Representative total house income in the dwelling unit is $95178 -in.representative_income 95189 Representative total house income in the dwelling unit is $95189 -in.representative_income 95194 Representative total house income in the dwelling unit is $95194 -in.representative_income 95199 Representative total house income in the dwelling unit is $95199 -in.representative_income 95203 Representative total house income in the dwelling unit is $95203 -in.representative_income 95206 Representative total house income in the dwelling unit is $95206 -in.representative_income 95212 Representative total house income in the dwelling unit is $95212 -in.representative_income 95215 Representative total house income in the dwelling unit is $95215 -in.representative_income 95231 Representative total house income in the dwelling unit is $95231 -in.representative_income 95232 Representative total house income in the dwelling unit is $95232 -in.representative_income 95234 Representative total house income in the dwelling unit is $95234 -in.representative_income 95247 Representative total house income in the dwelling unit is $95247 -in.representative_income 95254 Representative total house income in the dwelling unit is $95254 -in.representative_income 95257 Representative total house income in the dwelling unit is $95257 -in.representative_income 95277 Representative total house income in the dwelling unit is $95277 -in.representative_income 95283 Representative total house income in the dwelling unit is $95283 -in.representative_income 95286 Representative total house income in the dwelling unit is $95286 -in.representative_income 95287 Representative total house income in the dwelling unit is $95287 -in.representative_income 95290 Representative total house income in the dwelling unit is $95290 -in.representative_income 95297 Representative total house income in the dwelling unit is $95297 -in.representative_income 95306 Representative total house income in the dwelling unit is $95306 -in.representative_income 95312 Representative total house income in the dwelling unit is $95312 -in.representative_income 95322 Representative total house income in the dwelling unit is $95322 -in.representative_income 95331 Representative total house income in the dwelling unit is $95331 -in.representative_income 95336 Representative total house income in the dwelling unit is $95336 -in.representative_income 95348 Representative total house income in the dwelling unit is $95348 -in.representative_income 95354 Representative total house income in the dwelling unit is $95354 -in.representative_income 95358 Representative total house income in the dwelling unit is $95358 -in.representative_income 95361 Representative total house income in the dwelling unit is $95361 -in.representative_income 95365 Representative total house income in the dwelling unit is $95365 -in.representative_income 95378 Representative total house income in the dwelling unit is $95378 -in.representative_income 95389 Representative total house income in the dwelling unit is $95389 -in.representative_income 95390 Representative total house income in the dwelling unit is $95390 -in.representative_income 95405 Representative total house income in the dwelling unit is $95405 -in.representative_income 95406 Representative total house income in the dwelling unit is $95406 -in.representative_income 95409 Representative total house income in the dwelling unit is $95409 -in.representative_income 95420 Representative total house income in the dwelling unit is $95420 -in.representative_income 95427 Representative total house income in the dwelling unit is $95427 -in.representative_income 95430 Representative total house income in the dwelling unit is $95430 -in.representative_income 95442 Representative total house income in the dwelling unit is $95442 -in.representative_income 95446 Representative total house income in the dwelling unit is $95446 -in.representative_income 95459 Representative total house income in the dwelling unit is $95459 -in.representative_income 95460 Representative total house income in the dwelling unit is $95460 -in.representative_income 95463 Representative total house income in the dwelling unit is $95463 -in.representative_income 95513 Representative total house income in the dwelling unit is $95513 -in.representative_income 95514 Representative total house income in the dwelling unit is $95514 -in.representative_income 95522 Representative total house income in the dwelling unit is $95522 -in.representative_income 95526 Representative total house income in the dwelling unit is $95526 -in.representative_income 95536 Representative total house income in the dwelling unit is $95536 -in.representative_income 95538 Representative total house income in the dwelling unit is $95538 -in.representative_income 95542 Representative total house income in the dwelling unit is $95542 -in.representative_income 95545 Representative total house income in the dwelling unit is $95545 -in.representative_income 95547 Representative total house income in the dwelling unit is $95547 -in.representative_income 95548 Representative total house income in the dwelling unit is $95548 -in.representative_income 95560 Representative total house income in the dwelling unit is $95560 -in.representative_income 95580 Representative total house income in the dwelling unit is $95580 -in.representative_income 95589 Representative total house income in the dwelling unit is $95589 -in.representative_income 95616 Representative total house income in the dwelling unit is $95616 -in.representative_income 95622 Representative total house income in the dwelling unit is $95622 -in.representative_income 95633 Representative total house income in the dwelling unit is $95633 -in.representative_income 95644 Representative total house income in the dwelling unit is $95644 -in.representative_income 95652 Representative total house income in the dwelling unit is $95652 -in.representative_income 95655 Representative total house income in the dwelling unit is $95655 -in.representative_income 95661 Representative total house income in the dwelling unit is $95661 -in.representative_income 95665 Representative total house income in the dwelling unit is $95665 -in.representative_income 95718 Representative total house income in the dwelling unit is $95718 -in.representative_income 95721 Representative total house income in the dwelling unit is $95721 -in.representative_income 95730 Representative total house income in the dwelling unit is $95730 -in.representative_income 95737 Representative total house income in the dwelling unit is $95737 -in.representative_income 95751 Representative total house income in the dwelling unit is $95751 -in.representative_income 95752 Representative total house income in the dwelling unit is $95752 -in.representative_income 95759 Representative total house income in the dwelling unit is $95759 -in.representative_income 95762 Representative total house income in the dwelling unit is $95762 -in.representative_income 95772 Representative total house income in the dwelling unit is $95772 -in.representative_income 95806 Representative total house income in the dwelling unit is $95806 -in.representative_income 95816 Representative total house income in the dwelling unit is $95816 -in.representative_income 95822 Representative total house income in the dwelling unit is $95822 -in.representative_income 95838 Representative total house income in the dwelling unit is $95838 -in.representative_income 95839 Representative total house income in the dwelling unit is $95839 -in.representative_income 95853 Representative total house income in the dwelling unit is $95853 -in.representative_income 95859 Representative total house income in the dwelling unit is $95859 -in.representative_income 95863 Representative total house income in the dwelling unit is $95863 -in.representative_income 95864 Representative total house income in the dwelling unit is $95864 -in.representative_income 95884 Representative total house income in the dwelling unit is $95884 -in.representative_income 95891 Representative total house income in the dwelling unit is $95891 -in.representative_income 95892 Representative total house income in the dwelling unit is $95892 -in.representative_income 95912 Representative total house income in the dwelling unit is $95912 -in.representative_income 95913 Representative total house income in the dwelling unit is $95913 -in.representative_income 95925 Representative total house income in the dwelling unit is $95925 -in.representative_income 95935 Representative total house income in the dwelling unit is $95935 -in.representative_income 95945 Representative total house income in the dwelling unit is $95945 -in.representative_income 95946 Representative total house income in the dwelling unit is $95946 -in.representative_income 95964 Representative total house income in the dwelling unit is $95964 -in.representative_income 95966 Representative total house income in the dwelling unit is $95966 -in.representative_income 95967 Representative total house income in the dwelling unit is $95967 -in.representative_income 95969 Representative total house income in the dwelling unit is $95969 -in.representative_income 95974 Representative total house income in the dwelling unit is $95974 -in.representative_income 95977 Representative total house income in the dwelling unit is $95977 -in.representative_income 95984 Representative total house income in the dwelling unit is $95984 -in.representative_income 95990 Representative total house income in the dwelling unit is $95990 -in.representative_income 95994 Representative total house income in the dwelling unit is $95994 -in.representative_income 96004 Representative total house income in the dwelling unit is $96004 -in.representative_income 96009 Representative total house income in the dwelling unit is $96009 -in.representative_income 96014 Representative total house income in the dwelling unit is $96014 -in.representative_income 96028 Representative total house income in the dwelling unit is $96028 -in.representative_income 96054 Representative total house income in the dwelling unit is $96054 -in.representative_income 96065 Representative total house income in the dwelling unit is $96065 -in.representative_income 96074 Representative total house income in the dwelling unit is $96074 -in.representative_income 96075 Representative total house income in the dwelling unit is $96075 -in.representative_income 96096 Representative total house income in the dwelling unit is $96096 -in.representative_income 96118 Representative total house income in the dwelling unit is $96118 -in.representative_income 96127 Representative total house income in the dwelling unit is $96127 -in.representative_income 96128 Representative total house income in the dwelling unit is $96128 -in.representative_income 96132 Representative total house income in the dwelling unit is $96132 -in.representative_income 96133 Representative total house income in the dwelling unit is $96133 -in.representative_income 96161 Representative total house income in the dwelling unit is $96161 -in.representative_income 96166 Representative total house income in the dwelling unit is $96166 -in.representative_income 96174 Representative total house income in the dwelling unit is $96174 -in.representative_income 96176 Representative total house income in the dwelling unit is $96176 -in.representative_income 96180 Representative total house income in the dwelling unit is $96180 -in.representative_income 96181 Representative total house income in the dwelling unit is $96181 -in.representative_income 96201 Representative total house income in the dwelling unit is $96201 -in.representative_income 96216 Representative total house income in the dwelling unit is $96216 -in.representative_income 96233 Representative total house income in the dwelling unit is $96233 -in.representative_income 96234 Representative total house income in the dwelling unit is $96234 -in.representative_income 96265 Representative total house income in the dwelling unit is $96265 -in.representative_income 96267 Representative total house income in the dwelling unit is $96267 -in.representative_income 96270 Representative total house income in the dwelling unit is $96270 -in.representative_income 96285 Representative total house income in the dwelling unit is $96285 -in.representative_income 96288 Representative total house income in the dwelling unit is $96288 -in.representative_income 96337 Representative total house income in the dwelling unit is $96337 -in.representative_income 96349 Representative total house income in the dwelling unit is $96349 -in.representative_income 96368 Representative total house income in the dwelling unit is $96368 -in.representative_income 96378 Representative total house income in the dwelling unit is $96378 -in.representative_income 96391 Representative total house income in the dwelling unit is $96391 -in.representative_income 96396 Representative total house income in the dwelling unit is $96396 -in.representative_income 96400 Representative total house income in the dwelling unit is $96400 -in.representative_income 96417 Representative total house income in the dwelling unit is $96417 -in.representative_income 96428 Representative total house income in the dwelling unit is $96428 -in.representative_income 96441 Representative total house income in the dwelling unit is $96441 -in.representative_income 96444 Representative total house income in the dwelling unit is $96444 -in.representative_income 96449 Representative total house income in the dwelling unit is $96449 -in.representative_income 96469 Representative total house income in the dwelling unit is $96469 -in.representative_income 96474 Representative total house income in the dwelling unit is $96474 -in.representative_income 96479 Representative total house income in the dwelling unit is $96479 -in.representative_income 96486 Representative total house income in the dwelling unit is $96486 -in.representative_income 96494 Representative total house income in the dwelling unit is $96494 -in.representative_income 96497 Representative total house income in the dwelling unit is $96497 -in.representative_income 96503 Representative total house income in the dwelling unit is $96503 -in.representative_income 96519 Representative total house income in the dwelling unit is $96519 -in.representative_income 96523 Representative total house income in the dwelling unit is $96523 -in.representative_income 96544 Representative total house income in the dwelling unit is $96544 -in.representative_income 96549 Representative total house income in the dwelling unit is $96549 -in.representative_income 96570 Representative total house income in the dwelling unit is $96570 -in.representative_income 96594 Representative total house income in the dwelling unit is $96594 -in.representative_income 96602 Representative total house income in the dwelling unit is $96602 -in.representative_income 96611 Representative total house income in the dwelling unit is $96611 -in.representative_income 96612 Representative total house income in the dwelling unit is $96612 -in.representative_income 96615 Representative total house income in the dwelling unit is $96615 -in.representative_income 96616 Representative total house income in the dwelling unit is $96616 -in.representative_income 96632 Representative total house income in the dwelling unit is $96632 -in.representative_income 96643 Representative total house income in the dwelling unit is $96643 -in.representative_income 96644 Representative total house income in the dwelling unit is $96644 -in.representative_income 96647 Representative total house income in the dwelling unit is $96647 -in.representative_income 96671 Representative total house income in the dwelling unit is $96671 -in.representative_income 96675 Representative total house income in the dwelling unit is $96675 -in.representative_income 96696 Representative total house income in the dwelling unit is $96696 -in.representative_income 96702 Representative total house income in the dwelling unit is $96702 -in.representative_income 96707 Representative total house income in the dwelling unit is $96707 -in.representative_income 96717 Representative total house income in the dwelling unit is $96717 -in.representative_income 96724 Representative total house income in the dwelling unit is $96724 -in.representative_income 96738 Representative total house income in the dwelling unit is $96738 -in.representative_income 96740 Representative total house income in the dwelling unit is $96740 -in.representative_income 96750 Representative total house income in the dwelling unit is $96750 -in.representative_income 96762 Representative total house income in the dwelling unit is $96762 -in.representative_income 96772 Representative total house income in the dwelling unit is $96772 -in.representative_income 96807 Representative total house income in the dwelling unit is $96807 -in.representative_income 96810 Representative total house income in the dwelling unit is $96810 -in.representative_income 96813 Representative total house income in the dwelling unit is $96813 -in.representative_income 96825 Representative total house income in the dwelling unit is $96825 -in.representative_income 96833 Representative total house income in the dwelling unit is $96833 -in.representative_income 96853 Representative total house income in the dwelling unit is $96853 -in.representative_income 96873 Representative total house income in the dwelling unit is $96873 -in.representative_income 96879 Representative total house income in the dwelling unit is $96879 -in.representative_income 96893 Representative total house income in the dwelling unit is $96893 -in.representative_income 96918 Representative total house income in the dwelling unit is $96918 -in.representative_income 96923 Representative total house income in the dwelling unit is $96923 -in.representative_income 96932 Representative total house income in the dwelling unit is $96932 -in.representative_income 96937 Representative total house income in the dwelling unit is $96937 -in.representative_income 96950 Representative total house income in the dwelling unit is $96950 -in.representative_income 96956 Representative total house income in the dwelling unit is $96956 -in.representative_income 96974 Representative total house income in the dwelling unit is $96974 -in.representative_income 96984 Representative total house income in the dwelling unit is $96984 -in.representative_income 97008 Representative total house income in the dwelling unit is $97008 -in.representative_income 97024 Representative total house income in the dwelling unit is $97024 -in.representative_income 97026 Representative total house income in the dwelling unit is $97026 -in.representative_income 97040 Representative total house income in the dwelling unit is $97040 -in.representative_income 97041 Representative total house income in the dwelling unit is $97041 -in.representative_income 97048 Representative total house income in the dwelling unit is $97048 -in.representative_income 97050 Representative total house income in the dwelling unit is $97050 -in.representative_income 97055 Representative total house income in the dwelling unit is $97055 -in.representative_income 97060 Representative total house income in the dwelling unit is $97060 -in.representative_income 97075 Representative total house income in the dwelling unit is $97075 -in.representative_income 97076 Representative total house income in the dwelling unit is $97076 -in.representative_income 97105 Representative total house income in the dwelling unit is $97105 -in.representative_income 97108 Representative total house income in the dwelling unit is $97108 -in.representative_income 97111 Representative total house income in the dwelling unit is $97111 -in.representative_income 97122 Representative total house income in the dwelling unit is $97122 -in.representative_income 97125 Representative total house income in the dwelling unit is $97125 -in.representative_income 97129 Representative total house income in the dwelling unit is $97129 -in.representative_income 97136 Representative total house income in the dwelling unit is $97136 -in.representative_income 97146 Representative total house income in the dwelling unit is $97146 -in.representative_income 97148 Representative total house income in the dwelling unit is $97148 -in.representative_income 97163 Representative total house income in the dwelling unit is $97163 -in.representative_income 97176 Representative total house income in the dwelling unit is $97176 -in.representative_income 97235 Representative total house income in the dwelling unit is $97235 -in.representative_income 97243 Representative total house income in the dwelling unit is $97243 -in.representative_income 97253 Representative total house income in the dwelling unit is $97253 -in.representative_income 97254 Representative total house income in the dwelling unit is $97254 -in.representative_income 97266 Representative total house income in the dwelling unit is $97266 -in.representative_income 97277 Representative total house income in the dwelling unit is $97277 -in.representative_income 97287 Representative total house income in the dwelling unit is $97287 -in.representative_income 97340 Representative total house income in the dwelling unit is $97340 -in.representative_income 97350 Representative total house income in the dwelling unit is $97350 -in.representative_income 97362 Representative total house income in the dwelling unit is $97362 -in.representative_income 97369 Representative total house income in the dwelling unit is $97369 -in.representative_income 97370 Representative total house income in the dwelling unit is $97370 -in.representative_income 97372 Representative total house income in the dwelling unit is $97372 -in.representative_income 97377 Representative total house income in the dwelling unit is $97377 -in.representative_income 97378 Representative total house income in the dwelling unit is $97378 -in.representative_income 97382 Representative total house income in the dwelling unit is $97382 -in.representative_income 97390 Representative total house income in the dwelling unit is $97390 -in.representative_income 97408 Representative total house income in the dwelling unit is $97408 -in.representative_income 97445 Representative total house income in the dwelling unit is $97445 -in.representative_income 97453 Representative total house income in the dwelling unit is $97453 -in.representative_income 97458 Representative total house income in the dwelling unit is $97458 -in.representative_income 97459 Representative total house income in the dwelling unit is $97459 -in.representative_income 97469 Representative total house income in the dwelling unit is $97469 -in.representative_income 97472 Representative total house income in the dwelling unit is $97472 -in.representative_income 97479 Representative total house income in the dwelling unit is $97479 -in.representative_income 97493 Representative total house income in the dwelling unit is $97493 -in.representative_income 97501 Representative total house income in the dwelling unit is $97501 -in.representative_income 97503 Representative total house income in the dwelling unit is $97503 -in.representative_income 97512 Representative total house income in the dwelling unit is $97512 -in.representative_income 97522 Representative total house income in the dwelling unit is $97522 -in.representative_income 97551 Representative total house income in the dwelling unit is $97551 -in.representative_income 97566 Representative total house income in the dwelling unit is $97566 -in.representative_income 97575 Representative total house income in the dwelling unit is $97575 -in.representative_income 97577 Representative total house income in the dwelling unit is $97577 -in.representative_income 97580 Representative total house income in the dwelling unit is $97580 -in.representative_income 97599 Representative total house income in the dwelling unit is $97599 -in.representative_income 97609 Representative total house income in the dwelling unit is $97609 -in.representative_income 97614 Representative total house income in the dwelling unit is $97614 -in.representative_income 97615 Representative total house income in the dwelling unit is $97615 -in.representative_income 97617 Representative total house income in the dwelling unit is $97617 -in.representative_income 97627 Representative total house income in the dwelling unit is $97627 -in.representative_income 97631 Representative total house income in the dwelling unit is $97631 -in.representative_income 97657 Representative total house income in the dwelling unit is $97657 -in.representative_income 97669 Representative total house income in the dwelling unit is $97669 -in.representative_income 97674 Representative total house income in the dwelling unit is $97674 -in.representative_income 97679 Representative total house income in the dwelling unit is $97679 -in.representative_income 97681 Representative total house income in the dwelling unit is $97681 -in.representative_income 97684 Representative total house income in the dwelling unit is $97684 -in.representative_income 97709 Representative total house income in the dwelling unit is $97709 -in.representative_income 97711 Representative total house income in the dwelling unit is $97711 -in.representative_income 97717 Representative total house income in the dwelling unit is $97717 -in.representative_income 97730 Representative total house income in the dwelling unit is $97730 -in.representative_income 97748 Representative total house income in the dwelling unit is $97748 -in.representative_income 97750 Representative total house income in the dwelling unit is $97750 -in.representative_income 97762 Representative total house income in the dwelling unit is $97762 -in.representative_income 97782 Representative total house income in the dwelling unit is $97782 -in.representative_income 97791 Representative total house income in the dwelling unit is $97791 -in.representative_income 97793 Representative total house income in the dwelling unit is $97793 -in.representative_income 97833 Representative total house income in the dwelling unit is $97833 -in.representative_income 97863 Representative total house income in the dwelling unit is $97863 -in.representative_income 97867 Representative total house income in the dwelling unit is $97867 -in.representative_income 97879 Representative total house income in the dwelling unit is $97879 -in.representative_income 97883 Representative total house income in the dwelling unit is $97883 -in.representative_income 97884 Representative total house income in the dwelling unit is $97884 -in.representative_income 97891 Representative total house income in the dwelling unit is $97891 -in.representative_income 97898 Representative total house income in the dwelling unit is $97898 -in.representative_income 97899 Representative total house income in the dwelling unit is $97899 -in.representative_income 97934 Representative total house income in the dwelling unit is $97934 -in.representative_income 97953 Representative total house income in the dwelling unit is $97953 -in.representative_income 97973 Representative total house income in the dwelling unit is $97973 -in.representative_income 97983 Representative total house income in the dwelling unit is $97983 -in.representative_income 97984 Representative total house income in the dwelling unit is $97984 -in.representative_income 97988 Representative total house income in the dwelling unit is $97988 -in.representative_income 97994 Representative total house income in the dwelling unit is $97994 -in.representative_income 97999 Representative total house income in the dwelling unit is $97999 -in.representative_income 98006 Representative total house income in the dwelling unit is $98006 -in.representative_income 98010 Representative total house income in the dwelling unit is $98010 -in.representative_income 98035 Representative total house income in the dwelling unit is $98035 -in.representative_income 98036 Representative total house income in the dwelling unit is $98036 -in.representative_income 98078 Representative total house income in the dwelling unit is $98078 -in.representative_income 98085 Representative total house income in the dwelling unit is $98085 -in.representative_income 98091 Representative total house income in the dwelling unit is $98091 -in.representative_income 98107 Representative total house income in the dwelling unit is $98107 -in.representative_income 98113 Representative total house income in the dwelling unit is $98113 -in.representative_income 98139 Representative total house income in the dwelling unit is $98139 -in.representative_income 98143 Representative total house income in the dwelling unit is $98143 -in.representative_income 98167 Representative total house income in the dwelling unit is $98167 -in.representative_income 98183 Representative total house income in the dwelling unit is $98183 -in.representative_income 98186 Representative total house income in the dwelling unit is $98186 -in.representative_income 98194 Representative total house income in the dwelling unit is $98194 -in.representative_income 98206 Representative total house income in the dwelling unit is $98206 -in.representative_income 98215 Representative total house income in the dwelling unit is $98215 -in.representative_income 98221 Representative total house income in the dwelling unit is $98221 -in.representative_income 98287 Representative total house income in the dwelling unit is $98287 -in.representative_income 98298 Representative total house income in the dwelling unit is $98298 -in.representative_income 98318 Representative total house income in the dwelling unit is $98318 -in.representative_income 98323 Representative total house income in the dwelling unit is $98323 -in.representative_income 98327 Representative total house income in the dwelling unit is $98327 -in.representative_income 98366 Representative total house income in the dwelling unit is $98366 -in.representative_income 98388 Representative total house income in the dwelling unit is $98388 -in.representative_income 98395 Representative total house income in the dwelling unit is $98395 -in.representative_income 98400 Representative total house income in the dwelling unit is $98400 -in.representative_income 98431 Representative total house income in the dwelling unit is $98431 -in.representative_income 98435 Representative total house income in the dwelling unit is $98435 -in.representative_income 98469 Representative total house income in the dwelling unit is $98469 -in.representative_income 98477 Representative total house income in the dwelling unit is $98477 -in.representative_income 98489 Representative total house income in the dwelling unit is $98489 -in.representative_income 98500 Representative total house income in the dwelling unit is $98500 -in.representative_income 98503 Representative total house income in the dwelling unit is $98503 -in.representative_income 98538 Representative total house income in the dwelling unit is $98538 -in.representative_income 98543 Representative total house income in the dwelling unit is $98543 -in.representative_income 98590 Representative total house income in the dwelling unit is $98590 -in.representative_income 98606 Representative total house income in the dwelling unit is $98606 -in.representative_income 98607 Representative total house income in the dwelling unit is $98607 -in.representative_income 98647 Representative total house income in the dwelling unit is $98647 -in.representative_income 98648 Representative total house income in the dwelling unit is $98648 -in.representative_income 98650 Representative total house income in the dwelling unit is $98650 -in.representative_income 98680 Representative total house income in the dwelling unit is $98680 -in.representative_income 98682 Representative total house income in the dwelling unit is $98682 -in.representative_income 98691 Representative total house income in the dwelling unit is $98691 -in.representative_income 98701 Representative total house income in the dwelling unit is $98701 -in.representative_income 98710 Representative total house income in the dwelling unit is $98710 -in.representative_income 98711 Representative total house income in the dwelling unit is $98711 -in.representative_income 98734 Representative total house income in the dwelling unit is $98734 -in.representative_income 98742 Representative total house income in the dwelling unit is $98742 -in.representative_income 98755 Representative total house income in the dwelling unit is $98755 -in.representative_income 98758 Representative total house income in the dwelling unit is $98758 -in.representative_income 98759 Representative total house income in the dwelling unit is $98759 -in.representative_income 98762 Representative total house income in the dwelling unit is $98762 -in.representative_income 98790 Representative total house income in the dwelling unit is $98790 -in.representative_income 98792 Representative total house income in the dwelling unit is $98792 -in.representative_income 98811 Representative total house income in the dwelling unit is $98811 -in.representative_income 98813 Representative total house income in the dwelling unit is $98813 -in.representative_income 98816 Representative total house income in the dwelling unit is $98816 -in.representative_income 98843 Representative total house income in the dwelling unit is $98843 -in.representative_income 98863 Representative total house income in the dwelling unit is $98863 -in.representative_income 98865 Representative total house income in the dwelling unit is $98865 -in.representative_income 98874 Representative total house income in the dwelling unit is $98874 -in.representative_income 98893 Representative total house income in the dwelling unit is $98893 -in.representative_income 98901 Representative total house income in the dwelling unit is $98901 -in.representative_income 98906 Representative total house income in the dwelling unit is $98906 -in.representative_income 98917 Representative total house income in the dwelling unit is $98917 -in.representative_income 98922 Representative total house income in the dwelling unit is $98922 -in.representative_income 98928 Representative total house income in the dwelling unit is $98928 -in.representative_income 98971 Representative total house income in the dwelling unit is $98971 -in.representative_income 98972 Representative total house income in the dwelling unit is $98972 -in.representative_income 98994 Representative total house income in the dwelling unit is $98994 -in.representative_income 99014 Representative total house income in the dwelling unit is $99014 -in.representative_income 99019 Representative total house income in the dwelling unit is $99019 -in.representative_income 99025 Representative total house income in the dwelling unit is $99025 -in.representative_income 99026 Representative total house income in the dwelling unit is $99026 -in.representative_income 99028 Representative total house income in the dwelling unit is $99028 -in.representative_income 99035 Representative total house income in the dwelling unit is $99035 -in.representative_income 99055 Representative total house income in the dwelling unit is $99055 -in.representative_income 99071 Representative total house income in the dwelling unit is $99071 -in.representative_income 99079 Representative total house income in the dwelling unit is $99079 -in.representative_income 99090 Representative total house income in the dwelling unit is $99090 -in.representative_income 99095 Representative total house income in the dwelling unit is $99095 -in.representative_income 99115 Representative total house income in the dwelling unit is $99115 -in.representative_income 99122 Representative total house income in the dwelling unit is $99122 -in.representative_income 99126 Representative total house income in the dwelling unit is $99126 -in.representative_income 99133 Representative total house income in the dwelling unit is $99133 -in.representative_income 99176 Representative total house income in the dwelling unit is $99176 -in.representative_income 99187 Representative total house income in the dwelling unit is $99187 -in.representative_income 99196 Representative total house income in the dwelling unit is $99196 -in.representative_income 99207 Representative total house income in the dwelling unit is $99207 -in.representative_income 99226 Representative total house income in the dwelling unit is $99226 -in.representative_income 99238 Representative total house income in the dwelling unit is $99238 -in.representative_income 99246 Representative total house income in the dwelling unit is $99246 -in.representative_income 99294 Representative total house income in the dwelling unit is $99294 -in.representative_income 99295 Representative total house income in the dwelling unit is $99295 -in.representative_income 99297 Representative total house income in the dwelling unit is $99297 -in.representative_income 99327 Representative total house income in the dwelling unit is $99327 -in.representative_income 99329 Representative total house income in the dwelling unit is $99329 -in.representative_income 99344 Representative total house income in the dwelling unit is $99344 -in.representative_income 99370 Representative total house income in the dwelling unit is $99370 -in.representative_income 99381 Representative total house income in the dwelling unit is $99381 -in.representative_income 99397 Representative total house income in the dwelling unit is $99397 -in.representative_income 99398 Representative total house income in the dwelling unit is $99398 -in.representative_income 99402 Representative total house income in the dwelling unit is $99402 -in.representative_income 99403 Representative total house income in the dwelling unit is $99403 -in.representative_income 99415 Representative total house income in the dwelling unit is $99415 -in.representative_income 99432 Representative total house income in the dwelling unit is $99432 -in.representative_income 99449 Representative total house income in the dwelling unit is $99449 -in.representative_income 99499 Representative total house income in the dwelling unit is $99499 -in.representative_income 99502 Representative total house income in the dwelling unit is $99502 -in.representative_income 99508 Representative total house income in the dwelling unit is $99508 -in.representative_income 99512 Representative total house income in the dwelling unit is $99512 -in.representative_income 99535 Representative total house income in the dwelling unit is $99535 -in.representative_income 99555 Representative total house income in the dwelling unit is $99555 -in.representative_income 99600 Representative total house income in the dwelling unit is $99600 -in.representative_income 99616 Representative total house income in the dwelling unit is $99616 -in.representative_income 99617 Representative total house income in the dwelling unit is $99617 -in.representative_income 99620 Representative total house income in the dwelling unit is $99620 -in.representative_income 99638 Representative total house income in the dwelling unit is $99638 -in.representative_income 99652 Representative total house income in the dwelling unit is $99652 -in.representative_income 99660 Representative total house income in the dwelling unit is $99660 -in.representative_income 99674 Representative total house income in the dwelling unit is $99674 -in.representative_income 99701 Representative total house income in the dwelling unit is $99701 -in.representative_income 99723 Representative total house income in the dwelling unit is $99723 -in.representative_income 99727 Representative total house income in the dwelling unit is $99727 -in.representative_income 99741 Representative total house income in the dwelling unit is $99741 -in.representative_income 99766 Representative total house income in the dwelling unit is $99766 -in.representative_income 99787 Representative total house income in the dwelling unit is $99787 -in.representative_income 99802 Representative total house income in the dwelling unit is $99802 -in.representative_income 99831 Representative total house income in the dwelling unit is $99831 -in.representative_income 99835 Representative total house income in the dwelling unit is $99835 -in.representative_income 99845 Representative total house income in the dwelling unit is $99845 -in.representative_income 99850 Representative total house income in the dwelling unit is $99850 -in.representative_income 99871 Representative total house income in the dwelling unit is $99871 -in.representative_income 99903 Representative total house income in the dwelling unit is $99903 -in.representative_income 99938 Representative total house income in the dwelling unit is $99938 -in.representative_income 99943 Representative total house income in the dwelling unit is $99943 -in.representative_income 99948 Representative total house income in the dwelling unit is $99948 -in.representative_income 99960 Representative total house income in the dwelling unit is $99960 -in.representative_income 99976 Representative total house income in the dwelling unit is $99976 -in.representative_income 100004 Representative total house income in the dwelling unit is $100004 -in.representative_income 100025 Representative total house income in the dwelling unit is $100025 -in.representative_income 100045 Representative total house income in the dwelling unit is $100045 -in.representative_income 100050 Representative total house income in the dwelling unit is $100050 -in.representative_income 100051 Representative total house income in the dwelling unit is $100051 -in.representative_income 100084 Representative total house income in the dwelling unit is $100084 -in.representative_income 100105 Representative total house income in the dwelling unit is $100105 -in.representative_income 100153 Representative total house income in the dwelling unit is $100153 -in.representative_income 100154 Representative total house income in the dwelling unit is $100154 -in.representative_income 100159 Representative total house income in the dwelling unit is $100159 -in.representative_income 100174 Representative total house income in the dwelling unit is $100174 -in.representative_income 100188 Representative total house income in the dwelling unit is $100188 -in.representative_income 100206 Representative total house income in the dwelling unit is $100206 -in.representative_income 100219 Representative total house income in the dwelling unit is $100219 -in.representative_income 100249 Representative total house income in the dwelling unit is $100249 -in.representative_income 100257 Representative total house income in the dwelling unit is $100257 -in.representative_income 100260 Representative total house income in the dwelling unit is $100260 -in.representative_income 100268 Representative total house income in the dwelling unit is $100268 -in.representative_income 100269 Representative total house income in the dwelling unit is $100269 -in.representative_income 100271 Representative total house income in the dwelling unit is $100271 -in.representative_income 100293 Representative total house income in the dwelling unit is $100293 -in.representative_income 100307 Representative total house income in the dwelling unit is $100307 -in.representative_income 100360 Representative total house income in the dwelling unit is $100360 -in.representative_income 100368 Representative total house income in the dwelling unit is $100368 -in.representative_income 100376 Representative total house income in the dwelling unit is $100376 -in.representative_income 100381 Representative total house income in the dwelling unit is $100381 -in.representative_income 100399 Representative total house income in the dwelling unit is $100399 -in.representative_income 100408 Representative total house income in the dwelling unit is $100408 -in.representative_income 100464 Representative total house income in the dwelling unit is $100464 -in.representative_income 100475 Representative total house income in the dwelling unit is $100475 -in.representative_income 100484 Representative total house income in the dwelling unit is $100484 -in.representative_income 100504 Representative total house income in the dwelling unit is $100504 -in.representative_income 100508 Representative total house income in the dwelling unit is $100508 -in.representative_income 100509 Representative total house income in the dwelling unit is $100509 -in.representative_income 100535 Representative total house income in the dwelling unit is $100535 -in.representative_income 100560 Representative total house income in the dwelling unit is $100560 -in.representative_income 100566 Representative total house income in the dwelling unit is $100566 -in.representative_income 100582 Representative total house income in the dwelling unit is $100582 -in.representative_income 100592 Representative total house income in the dwelling unit is $100592 -in.representative_income 100601 Representative total house income in the dwelling unit is $100601 -in.representative_income 100604 Representative total house income in the dwelling unit is $100604 -in.representative_income 100608 Representative total house income in the dwelling unit is $100608 -in.representative_income 100609 Representative total house income in the dwelling unit is $100609 -in.representative_income 100610 Representative total house income in the dwelling unit is $100610 -in.representative_income 100624 Representative total house income in the dwelling unit is $100624 -in.representative_income 100668 Representative total house income in the dwelling unit is $100668 -in.representative_income 100669 Representative total house income in the dwelling unit is $100669 -in.representative_income 100689 Representative total house income in the dwelling unit is $100689 -in.representative_income 100691 Representative total house income in the dwelling unit is $100691 -in.representative_income 100700 Representative total house income in the dwelling unit is $100700 -in.representative_income 100701 Representative total house income in the dwelling unit is $100701 -in.representative_income 100711 Representative total house income in the dwelling unit is $100711 -in.representative_income 100714 Representative total house income in the dwelling unit is $100714 -in.representative_income 100730 Representative total house income in the dwelling unit is $100730 -in.representative_income 100731 Representative total house income in the dwelling unit is $100731 -in.representative_income 100742 Representative total house income in the dwelling unit is $100742 -in.representative_income 100773 Representative total house income in the dwelling unit is $100773 -in.representative_income 100797 Representative total house income in the dwelling unit is $100797 -in.representative_income 100808 Representative total house income in the dwelling unit is $100808 -in.representative_income 100812 Representative total house income in the dwelling unit is $100812 -in.representative_income 100818 Representative total house income in the dwelling unit is $100818 -in.representative_income 100821 Representative total house income in the dwelling unit is $100821 -in.representative_income 100824 Representative total house income in the dwelling unit is $100824 -in.representative_income 100842 Representative total house income in the dwelling unit is $100842 -in.representative_income 100876 Representative total house income in the dwelling unit is $100876 -in.representative_income 100904 Representative total house income in the dwelling unit is $100904 -in.representative_income 100913 Representative total house income in the dwelling unit is $100913 -in.representative_income 100915 Representative total house income in the dwelling unit is $100915 -in.representative_income 100926 Representative total house income in the dwelling unit is $100926 -in.representative_income 100933 Representative total house income in the dwelling unit is $100933 -in.representative_income 100968 Representative total house income in the dwelling unit is $100968 -in.representative_income 100979 Representative total house income in the dwelling unit is $100979 -in.representative_income 100991 Representative total house income in the dwelling unit is $100991 -in.representative_income 101012 Representative total house income in the dwelling unit is $101012 -in.representative_income 101015 Representative total house income in the dwelling unit is $101015 -in.representative_income 101024 Representative total house income in the dwelling unit is $101024 -in.representative_income 101029 Representative total house income in the dwelling unit is $101029 -in.representative_income 101031 Representative total house income in the dwelling unit is $101031 -in.representative_income 101035 Representative total house income in the dwelling unit is $101035 -in.representative_income 101043 Representative total house income in the dwelling unit is $101043 -in.representative_income 101052 Representative total house income in the dwelling unit is $101052 -in.representative_income 101083 Representative total house income in the dwelling unit is $101083 -in.representative_income 101108 Representative total house income in the dwelling unit is $101108 -in.representative_income 101116 Representative total house income in the dwelling unit is $101116 -in.representative_income 101119 Representative total house income in the dwelling unit is $101119 -in.representative_income 101132 Representative total house income in the dwelling unit is $101132 -in.representative_income 101137 Representative total house income in the dwelling unit is $101137 -in.representative_income 101141 Representative total house income in the dwelling unit is $101141 -in.representative_income 101173 Representative total house income in the dwelling unit is $101173 -in.representative_income 101185 Representative total house income in the dwelling unit is $101185 -in.representative_income 101217 Representative total house income in the dwelling unit is $101217 -in.representative_income 101226 Representative total house income in the dwelling unit is $101226 -in.representative_income 101228 Representative total house income in the dwelling unit is $101228 -in.representative_income 101237 Representative total house income in the dwelling unit is $101237 -in.representative_income 101240 Representative total house income in the dwelling unit is $101240 -in.representative_income 101242 Representative total house income in the dwelling unit is $101242 -in.representative_income 101245 Representative total house income in the dwelling unit is $101245 -in.representative_income 101254 Representative total house income in the dwelling unit is $101254 -in.representative_income 101264 Representative total house income in the dwelling unit is $101264 -in.representative_income 101267 Representative total house income in the dwelling unit is $101267 -in.representative_income 101270 Representative total house income in the dwelling unit is $101270 -in.representative_income 101274 Representative total house income in the dwelling unit is $101274 -in.representative_income 101288 Representative total house income in the dwelling unit is $101288 -in.representative_income 101297 Representative total house income in the dwelling unit is $101297 -in.representative_income 101307 Representative total house income in the dwelling unit is $101307 -in.representative_income 101312 Representative total house income in the dwelling unit is $101312 -in.representative_income 101318 Representative total house income in the dwelling unit is $101318 -in.representative_income 101326 Representative total house income in the dwelling unit is $101326 -in.representative_income 101333 Representative total house income in the dwelling unit is $101333 -in.representative_income 101337 Representative total house income in the dwelling unit is $101337 -in.representative_income 101347 Representative total house income in the dwelling unit is $101347 -in.representative_income 101348 Representative total house income in the dwelling unit is $101348 -in.representative_income 101359 Representative total house income in the dwelling unit is $101359 -in.representative_income 101368 Representative total house income in the dwelling unit is $101368 -in.representative_income 101392 Representative total house income in the dwelling unit is $101392 -in.representative_income 101419 Representative total house income in the dwelling unit is $101419 -in.representative_income 101430 Representative total house income in the dwelling unit is $101430 -in.representative_income 101441 Representative total house income in the dwelling unit is $101441 -in.representative_income 101443 Representative total house income in the dwelling unit is $101443 -in.representative_income 101453 Representative total house income in the dwelling unit is $101453 -in.representative_income 101456 Representative total house income in the dwelling unit is $101456 -in.representative_income 101467 Representative total house income in the dwelling unit is $101467 -in.representative_income 101469 Representative total house income in the dwelling unit is $101469 -in.representative_income 101474 Representative total house income in the dwelling unit is $101474 -in.representative_income 101484 Representative total house income in the dwelling unit is $101484 -in.representative_income 101488 Representative total house income in the dwelling unit is $101488 -in.representative_income 101489 Representative total house income in the dwelling unit is $101489 -in.representative_income 101495 Representative total house income in the dwelling unit is $101495 -in.representative_income 101509 Representative total house income in the dwelling unit is $101509 -in.representative_income 101520 Representative total house income in the dwelling unit is $101520 -in.representative_income 101542 Representative total house income in the dwelling unit is $101542 -in.representative_income 101549 Representative total house income in the dwelling unit is $101549 -in.representative_income 101559 Representative total house income in the dwelling unit is $101559 -in.representative_income 101564 Representative total house income in the dwelling unit is $101564 -in.representative_income 101567 Representative total house income in the dwelling unit is $101567 -in.representative_income 101570 Representative total house income in the dwelling unit is $101570 -in.representative_income 101586 Representative total house income in the dwelling unit is $101586 -in.representative_income 101598 Representative total house income in the dwelling unit is $101598 -in.representative_income 101621 Representative total house income in the dwelling unit is $101621 -in.representative_income 101627 Representative total house income in the dwelling unit is $101627 -in.representative_income 101651 Representative total house income in the dwelling unit is $101651 -in.representative_income 101656 Representative total house income in the dwelling unit is $101656 -in.representative_income 101663 Representative total house income in the dwelling unit is $101663 -in.representative_income 101664 Representative total house income in the dwelling unit is $101664 -in.representative_income 101672 Representative total house income in the dwelling unit is $101672 -in.representative_income 101683 Representative total house income in the dwelling unit is $101683 -in.representative_income 101691 Representative total house income in the dwelling unit is $101691 -in.representative_income 101692 Representative total house income in the dwelling unit is $101692 -in.representative_income 101693 Representative total house income in the dwelling unit is $101693 -in.representative_income 101695 Representative total house income in the dwelling unit is $101695 -in.representative_income 101699 Representative total house income in the dwelling unit is $101699 -in.representative_income 101701 Representative total house income in the dwelling unit is $101701 -in.representative_income 101712 Representative total house income in the dwelling unit is $101712 -in.representative_income 101715 Representative total house income in the dwelling unit is $101715 -in.representative_income 101722 Representative total house income in the dwelling unit is $101722 -in.representative_income 101732 Representative total house income in the dwelling unit is $101732 -in.representative_income 101763 Representative total house income in the dwelling unit is $101763 -in.representative_income 101769 Representative total house income in the dwelling unit is $101769 -in.representative_income 101773 Representative total house income in the dwelling unit is $101773 -in.representative_income 101780 Representative total house income in the dwelling unit is $101780 -in.representative_income 101804 Representative total house income in the dwelling unit is $101804 -in.representative_income 101823 Representative total house income in the dwelling unit is $101823 -in.representative_income 101838 Representative total house income in the dwelling unit is $101838 -in.representative_income 101843 Representative total house income in the dwelling unit is $101843 -in.representative_income 101870 Representative total house income in the dwelling unit is $101870 -in.representative_income 101875 Representative total house income in the dwelling unit is $101875 -in.representative_income 101889 Representative total house income in the dwelling unit is $101889 -in.representative_income 101907 Representative total house income in the dwelling unit is $101907 -in.representative_income 101914 Representative total house income in the dwelling unit is $101914 -in.representative_income 101924 Representative total house income in the dwelling unit is $101924 -in.representative_income 101967 Representative total house income in the dwelling unit is $101967 -in.representative_income 101978 Representative total house income in the dwelling unit is $101978 -in.representative_income 101980 Representative total house income in the dwelling unit is $101980 -in.representative_income 101982 Representative total house income in the dwelling unit is $101982 -in.representative_income 101988 Representative total house income in the dwelling unit is $101988 -in.representative_income 101989 Representative total house income in the dwelling unit is $101989 -in.representative_income 101997 Representative total house income in the dwelling unit is $101997 -in.representative_income 102004 Representative total house income in the dwelling unit is $102004 -in.representative_income 102011 Representative total house income in the dwelling unit is $102011 -in.representative_income 102020 Representative total house income in the dwelling unit is $102020 -in.representative_income 102025 Representative total house income in the dwelling unit is $102025 -in.representative_income 102031 Representative total house income in the dwelling unit is $102031 -in.representative_income 102033 Representative total house income in the dwelling unit is $102033 -in.representative_income 102062 Representative total house income in the dwelling unit is $102062 -in.representative_income 102085 Representative total house income in the dwelling unit is $102085 -in.representative_income 102086 Representative total house income in the dwelling unit is $102086 -in.representative_income 102102 Representative total house income in the dwelling unit is $102102 -in.representative_income 102104 Representative total house income in the dwelling unit is $102104 -in.representative_income 102114 Representative total house income in the dwelling unit is $102114 -in.representative_income 102117 Representative total house income in the dwelling unit is $102117 -in.representative_income 102124 Representative total house income in the dwelling unit is $102124 -in.representative_income 102126 Representative total house income in the dwelling unit is $102126 -in.representative_income 102138 Representative total house income in the dwelling unit is $102138 -in.representative_income 102149 Representative total house income in the dwelling unit is $102149 -in.representative_income 102158 Representative total house income in the dwelling unit is $102158 -in.representative_income 102176 Representative total house income in the dwelling unit is $102176 -in.representative_income 102180 Representative total house income in the dwelling unit is $102180 -in.representative_income 102192 Representative total house income in the dwelling unit is $102192 -in.representative_income 102193 Representative total house income in the dwelling unit is $102193 -in.representative_income 102206 Representative total house income in the dwelling unit is $102206 -in.representative_income 102207 Representative total house income in the dwelling unit is $102207 -in.representative_income 102212 Representative total house income in the dwelling unit is $102212 -in.representative_income 102216 Representative total house income in the dwelling unit is $102216 -in.representative_income 102223 Representative total house income in the dwelling unit is $102223 -in.representative_income 102227 Representative total house income in the dwelling unit is $102227 -in.representative_income 102235 Representative total house income in the dwelling unit is $102235 -in.representative_income 102237 Representative total house income in the dwelling unit is $102237 -in.representative_income 102248 Representative total house income in the dwelling unit is $102248 -in.representative_income 102256 Representative total house income in the dwelling unit is $102256 -in.representative_income 102262 Representative total house income in the dwelling unit is $102262 -in.representative_income 102267 Representative total house income in the dwelling unit is $102267 -in.representative_income 102279 Representative total house income in the dwelling unit is $102279 -in.representative_income 102297 Representative total house income in the dwelling unit is $102297 -in.representative_income 102299 Representative total house income in the dwelling unit is $102299 -in.representative_income 102306 Representative total house income in the dwelling unit is $102306 -in.representative_income 102318 Representative total house income in the dwelling unit is $102318 -in.representative_income 102320 Representative total house income in the dwelling unit is $102320 -in.representative_income 102328 Representative total house income in the dwelling unit is $102328 -in.representative_income 102354 Representative total house income in the dwelling unit is $102354 -in.representative_income 102374 Representative total house income in the dwelling unit is $102374 -in.representative_income 102378 Representative total house income in the dwelling unit is $102378 -in.representative_income 102400 Representative total house income in the dwelling unit is $102400 -in.representative_income 102402 Representative total house income in the dwelling unit is $102402 -in.representative_income 102407 Representative total house income in the dwelling unit is $102407 -in.representative_income 102423 Representative total house income in the dwelling unit is $102423 -in.representative_income 102428 Representative total house income in the dwelling unit is $102428 -in.representative_income 102429 Representative total house income in the dwelling unit is $102429 -in.representative_income 102450 Representative total house income in the dwelling unit is $102450 -in.representative_income 102461 Representative total house income in the dwelling unit is $102461 -in.representative_income 102465 Representative total house income in the dwelling unit is $102465 -in.representative_income 102506 Representative total house income in the dwelling unit is $102506 -in.representative_income 102507 Representative total house income in the dwelling unit is $102507 -in.representative_income 102514 Representative total house income in the dwelling unit is $102514 -in.representative_income 102526 Representative total house income in the dwelling unit is $102526 -in.representative_income 102530 Representative total house income in the dwelling unit is $102530 -in.representative_income 102536 Representative total house income in the dwelling unit is $102536 -in.representative_income 102570 Representative total house income in the dwelling unit is $102570 -in.representative_income 102613 Representative total house income in the dwelling unit is $102613 -in.representative_income 102622 Representative total house income in the dwelling unit is $102622 -in.representative_income 102630 Representative total house income in the dwelling unit is $102630 -in.representative_income 102631 Representative total house income in the dwelling unit is $102631 -in.representative_income 102645 Representative total house income in the dwelling unit is $102645 -in.representative_income 102656 Representative total house income in the dwelling unit is $102656 -in.representative_income 102666 Representative total house income in the dwelling unit is $102666 -in.representative_income 102667 Representative total house income in the dwelling unit is $102667 -in.representative_income 102699 Representative total house income in the dwelling unit is $102699 -in.representative_income 102719 Representative total house income in the dwelling unit is $102719 -in.representative_income 102729 Representative total house income in the dwelling unit is $102729 -in.representative_income 102732 Representative total house income in the dwelling unit is $102732 -in.representative_income 102733 Representative total house income in the dwelling unit is $102733 -in.representative_income 102752 Representative total house income in the dwelling unit is $102752 -in.representative_income 102753 Representative total house income in the dwelling unit is $102753 -in.representative_income 102770 Representative total house income in the dwelling unit is $102770 -in.representative_income 102783 Representative total house income in the dwelling unit is $102783 -in.representative_income 102824 Representative total house income in the dwelling unit is $102824 -in.representative_income 102833 Representative total house income in the dwelling unit is $102833 -in.representative_income 102835 Representative total house income in the dwelling unit is $102835 -in.representative_income 102836 Representative total house income in the dwelling unit is $102836 -in.representative_income 102861 Representative total house income in the dwelling unit is $102861 -in.representative_income 102877 Representative total house income in the dwelling unit is $102877 -in.representative_income 102903 Representative total house income in the dwelling unit is $102903 -in.representative_income 102904 Representative total house income in the dwelling unit is $102904 -in.representative_income 102930 Representative total house income in the dwelling unit is $102930 -in.representative_income 102934 Representative total house income in the dwelling unit is $102934 -in.representative_income 102939 Representative total house income in the dwelling unit is $102939 -in.representative_income 102944 Representative total house income in the dwelling unit is $102944 -in.representative_income 102950 Representative total house income in the dwelling unit is $102950 -in.representative_income 102969 Representative total house income in the dwelling unit is $102969 -in.representative_income 103011 Representative total house income in the dwelling unit is $103011 -in.representative_income 103035 Representative total house income in the dwelling unit is $103035 -in.representative_income 103040 Representative total house income in the dwelling unit is $103040 -in.representative_income 103042 Representative total house income in the dwelling unit is $103042 -in.representative_income 103051 Representative total house income in the dwelling unit is $103051 -in.representative_income 103052 Representative total house income in the dwelling unit is $103052 -in.representative_income 103062 Representative total house income in the dwelling unit is $103062 -in.representative_income 103077 Representative total house income in the dwelling unit is $103077 -in.representative_income 103085 Representative total house income in the dwelling unit is $103085 -in.representative_income 103104 Representative total house income in the dwelling unit is $103104 -in.representative_income 103111 Representative total house income in the dwelling unit is $103111 -in.representative_income 103128 Representative total house income in the dwelling unit is $103128 -in.representative_income 103136 Representative total house income in the dwelling unit is $103136 -in.representative_income 103140 Representative total house income in the dwelling unit is $103140 -in.representative_income 103145 Representative total house income in the dwelling unit is $103145 -in.representative_income 103156 Representative total house income in the dwelling unit is $103156 -in.representative_income 103159 Representative total house income in the dwelling unit is $103159 -in.representative_income 103166 Representative total house income in the dwelling unit is $103166 -in.representative_income 103176 Representative total house income in the dwelling unit is $103176 -in.representative_income 103185 Representative total house income in the dwelling unit is $103185 -in.representative_income 103197 Representative total house income in the dwelling unit is $103197 -in.representative_income 103207 Representative total house income in the dwelling unit is $103207 -in.representative_income 103217 Representative total house income in the dwelling unit is $103217 -in.representative_income 103237 Representative total house income in the dwelling unit is $103237 -in.representative_income 103245 Representative total house income in the dwelling unit is $103245 -in.representative_income 103249 Representative total house income in the dwelling unit is $103249 -in.representative_income 103255 Representative total house income in the dwelling unit is $103255 -in.representative_income 103266 Representative total house income in the dwelling unit is $103266 -in.representative_income 103267 Representative total house income in the dwelling unit is $103267 -in.representative_income 103272 Representative total house income in the dwelling unit is $103272 -in.representative_income 103293 Representative total house income in the dwelling unit is $103293 -in.representative_income 103319 Representative total house income in the dwelling unit is $103319 -in.representative_income 103338 Representative total house income in the dwelling unit is $103338 -in.representative_income 103346 Representative total house income in the dwelling unit is $103346 -in.representative_income 103351 Representative total house income in the dwelling unit is $103351 -in.representative_income 103352 Representative total house income in the dwelling unit is $103352 -in.representative_income 103373 Representative total house income in the dwelling unit is $103373 -in.representative_income 103386 Representative total house income in the dwelling unit is $103386 -in.representative_income 103401 Representative total house income in the dwelling unit is $103401 -in.representative_income 103404 Representative total house income in the dwelling unit is $103404 -in.representative_income 103424 Representative total house income in the dwelling unit is $103424 -in.representative_income 103434 Representative total house income in the dwelling unit is $103434 -in.representative_income 103435 Representative total house income in the dwelling unit is $103435 -in.representative_income 103439 Representative total house income in the dwelling unit is $103439 -in.representative_income 103440 Representative total house income in the dwelling unit is $103440 -in.representative_income 103454 Representative total house income in the dwelling unit is $103454 -in.representative_income 103457 Representative total house income in the dwelling unit is $103457 -in.representative_income 103465 Representative total house income in the dwelling unit is $103465 -in.representative_income 103478 Representative total house income in the dwelling unit is $103478 -in.representative_income 103480 Representative total house income in the dwelling unit is $103480 -in.representative_income 103509 Representative total house income in the dwelling unit is $103509 -in.representative_income 103531 Representative total house income in the dwelling unit is $103531 -in.representative_income 103538 Representative total house income in the dwelling unit is $103538 -in.representative_income 103540 Representative total house income in the dwelling unit is $103540 -in.representative_income 103548 Representative total house income in the dwelling unit is $103548 -in.representative_income 103558 Representative total house income in the dwelling unit is $103558 -in.representative_income 103562 Representative total house income in the dwelling unit is $103562 -in.representative_income 103583 Representative total house income in the dwelling unit is $103583 -in.representative_income 103588 Representative total house income in the dwelling unit is $103588 -in.representative_income 103615 Representative total house income in the dwelling unit is $103615 -in.representative_income 103617 Representative total house income in the dwelling unit is $103617 -in.representative_income 103641 Representative total house income in the dwelling unit is $103641 -in.representative_income 103648 Representative total house income in the dwelling unit is $103648 -in.representative_income 103649 Representative total house income in the dwelling unit is $103649 -in.representative_income 103661 Representative total house income in the dwelling unit is $103661 -in.representative_income 103668 Representative total house income in the dwelling unit is $103668 -in.representative_income 103671 Representative total house income in the dwelling unit is $103671 -in.representative_income 103695 Representative total house income in the dwelling unit is $103695 -in.representative_income 103725 Representative total house income in the dwelling unit is $103725 -in.representative_income 103727 Representative total house income in the dwelling unit is $103727 -in.representative_income 103736 Representative total house income in the dwelling unit is $103736 -in.representative_income 103742 Representative total house income in the dwelling unit is $103742 -in.representative_income 103749 Representative total house income in the dwelling unit is $103749 -in.representative_income 103764 Representative total house income in the dwelling unit is $103764 -in.representative_income 103768 Representative total house income in the dwelling unit is $103768 -in.representative_income 103773 Representative total house income in the dwelling unit is $103773 -in.representative_income 103779 Representative total house income in the dwelling unit is $103779 -in.representative_income 103803 Representative total house income in the dwelling unit is $103803 -in.representative_income 103826 Representative total house income in the dwelling unit is $103826 -in.representative_income 103833 Representative total house income in the dwelling unit is $103833 -in.representative_income 103843 Representative total house income in the dwelling unit is $103843 -in.representative_income 103844 Representative total house income in the dwelling unit is $103844 -in.representative_income 103846 Representative total house income in the dwelling unit is $103846 -in.representative_income 103867 Representative total house income in the dwelling unit is $103867 -in.representative_income 103873 Representative total house income in the dwelling unit is $103873 -in.representative_income 103877 Representative total house income in the dwelling unit is $103877 -in.representative_income 103878 Representative total house income in the dwelling unit is $103878 -in.representative_income 103910 Representative total house income in the dwelling unit is $103910 -in.representative_income 103930 Representative total house income in the dwelling unit is $103930 -in.representative_income 103944 Representative total house income in the dwelling unit is $103944 -in.representative_income 103952 Representative total house income in the dwelling unit is $103952 -in.representative_income 103970 Representative total house income in the dwelling unit is $103970 -in.representative_income 103985 Representative total house income in the dwelling unit is $103985 -in.representative_income 103995 Representative total house income in the dwelling unit is $103995 -in.representative_income 104006 Representative total house income in the dwelling unit is $104006 -in.representative_income 104017 Representative total house income in the dwelling unit is $104017 -in.representative_income 104025 Representative total house income in the dwelling unit is $104025 -in.representative_income 104026 Representative total house income in the dwelling unit is $104026 -in.representative_income 104037 Representative total house income in the dwelling unit is $104037 -in.representative_income 104045 Representative total house income in the dwelling unit is $104045 -in.representative_income 104049 Representative total house income in the dwelling unit is $104049 -in.representative_income 104055 Representative total house income in the dwelling unit is $104055 -in.representative_income 104071 Representative total house income in the dwelling unit is $104071 -in.representative_income 104073 Representative total house income in the dwelling unit is $104073 -in.representative_income 104084 Representative total house income in the dwelling unit is $104084 -in.representative_income 104090 Representative total house income in the dwelling unit is $104090 -in.representative_income 104120 Representative total house income in the dwelling unit is $104120 -in.representative_income 104124 Representative total house income in the dwelling unit is $104124 -in.representative_income 104125 Representative total house income in the dwelling unit is $104125 -in.representative_income 104129 Representative total house income in the dwelling unit is $104129 -in.representative_income 104142 Representative total house income in the dwelling unit is $104142 -in.representative_income 104145 Representative total house income in the dwelling unit is $104145 -in.representative_income 104146 Representative total house income in the dwelling unit is $104146 -in.representative_income 104151 Representative total house income in the dwelling unit is $104151 -in.representative_income 104152 Representative total house income in the dwelling unit is $104152 -in.representative_income 104157 Representative total house income in the dwelling unit is $104157 -in.representative_income 104177 Representative total house income in the dwelling unit is $104177 -in.representative_income 104179 Representative total house income in the dwelling unit is $104179 -in.representative_income 104187 Representative total house income in the dwelling unit is $104187 -in.representative_income 104195 Representative total house income in the dwelling unit is $104195 -in.representative_income 104207 Representative total house income in the dwelling unit is $104207 -in.representative_income 104212 Representative total house income in the dwelling unit is $104212 -in.representative_income 104228 Representative total house income in the dwelling unit is $104228 -in.representative_income 104232 Representative total house income in the dwelling unit is $104232 -in.representative_income 104247 Representative total house income in the dwelling unit is $104247 -in.representative_income 104259 Representative total house income in the dwelling unit is $104259 -in.representative_income 104266 Representative total house income in the dwelling unit is $104266 -in.representative_income 104280 Representative total house income in the dwelling unit is $104280 -in.representative_income 104290 Representative total house income in the dwelling unit is $104290 -in.representative_income 104297 Representative total house income in the dwelling unit is $104297 -in.representative_income 104300 Representative total house income in the dwelling unit is $104300 -in.representative_income 104310 Representative total house income in the dwelling unit is $104310 -in.representative_income 104332 Representative total house income in the dwelling unit is $104332 -in.representative_income 104339 Representative total house income in the dwelling unit is $104339 -in.representative_income 104348 Representative total house income in the dwelling unit is $104348 -in.representative_income 104350 Representative total house income in the dwelling unit is $104350 -in.representative_income 104358 Representative total house income in the dwelling unit is $104358 -in.representative_income 104370 Representative total house income in the dwelling unit is $104370 -in.representative_income 104374 Representative total house income in the dwelling unit is $104374 -in.representative_income 104383 Representative total house income in the dwelling unit is $104383 -in.representative_income 104388 Representative total house income in the dwelling unit is $104388 -in.representative_income 104393 Representative total house income in the dwelling unit is $104393 -in.representative_income 104403 Representative total house income in the dwelling unit is $104403 -in.representative_income 104406 Representative total house income in the dwelling unit is $104406 -in.representative_income 104447 Representative total house income in the dwelling unit is $104447 -in.representative_income 104449 Representative total house income in the dwelling unit is $104449 -in.representative_income 104459 Representative total house income in the dwelling unit is $104459 -in.representative_income 104482 Representative total house income in the dwelling unit is $104482 -in.representative_income 104486 Representative total house income in the dwelling unit is $104486 -in.representative_income 104500 Representative total house income in the dwelling unit is $104500 -in.representative_income 104510 Representative total house income in the dwelling unit is $104510 -in.representative_income 104511 Representative total house income in the dwelling unit is $104511 -in.representative_income 104550 Representative total house income in the dwelling unit is $104550 -in.representative_income 104554 Representative total house income in the dwelling unit is $104554 -in.representative_income 104570 Representative total house income in the dwelling unit is $104570 -in.representative_income 104589 Representative total house income in the dwelling unit is $104589 -in.representative_income 104617 Representative total house income in the dwelling unit is $104617 -in.representative_income 104625 Representative total house income in the dwelling unit is $104625 -in.representative_income 104629 Representative total house income in the dwelling unit is $104629 -in.representative_income 104634 Representative total house income in the dwelling unit is $104634 -in.representative_income 104649 Representative total house income in the dwelling unit is $104649 -in.representative_income 104651 Representative total house income in the dwelling unit is $104651 -in.representative_income 104661 Representative total house income in the dwelling unit is $104661 -in.representative_income 104692 Representative total house income in the dwelling unit is $104692 -in.representative_income 104697 Representative total house income in the dwelling unit is $104697 -in.representative_income 104702 Representative total house income in the dwelling unit is $104702 -in.representative_income 104723 Representative total house income in the dwelling unit is $104723 -in.representative_income 104733 Representative total house income in the dwelling unit is $104733 -in.representative_income 104752 Representative total house income in the dwelling unit is $104752 -in.representative_income 104769 Representative total house income in the dwelling unit is $104769 -in.representative_income 104773 Representative total house income in the dwelling unit is $104773 -in.representative_income 104777 Representative total house income in the dwelling unit is $104777 -in.representative_income 104782 Representative total house income in the dwelling unit is $104782 -in.representative_income 104785 Representative total house income in the dwelling unit is $104785 -in.representative_income 104796 Representative total house income in the dwelling unit is $104796 -in.representative_income 104805 Representative total house income in the dwelling unit is $104805 -in.representative_income 104816 Representative total house income in the dwelling unit is $104816 -in.representative_income 104828 Representative total house income in the dwelling unit is $104828 -in.representative_income 104853 Representative total house income in the dwelling unit is $104853 -in.representative_income 104857 Representative total house income in the dwelling unit is $104857 -in.representative_income 104859 Representative total house income in the dwelling unit is $104859 -in.representative_income 104876 Representative total house income in the dwelling unit is $104876 -in.representative_income 104892 Representative total house income in the dwelling unit is $104892 -in.representative_income 104899 Representative total house income in the dwelling unit is $104899 -in.representative_income 104913 Representative total house income in the dwelling unit is $104913 -in.representative_income 104933 Representative total house income in the dwelling unit is $104933 -in.representative_income 104935 Representative total house income in the dwelling unit is $104935 -in.representative_income 104950 Representative total house income in the dwelling unit is $104950 -in.representative_income 104954 Representative total house income in the dwelling unit is $104954 -in.representative_income 104961 Representative total house income in the dwelling unit is $104961 -in.representative_income 104968 Representative total house income in the dwelling unit is $104968 -in.representative_income 104984 Representative total house income in the dwelling unit is $104984 -in.representative_income 105000 Representative total house income in the dwelling unit is $105000 -in.representative_income 105001 Representative total house income in the dwelling unit is $105001 -in.representative_income 105022 Representative total house income in the dwelling unit is $105022 -in.representative_income 105035 Representative total house income in the dwelling unit is $105035 -in.representative_income 105038 Representative total house income in the dwelling unit is $105038 -in.representative_income 105045 Representative total house income in the dwelling unit is $105045 -in.representative_income 105055 Representative total house income in the dwelling unit is $105055 -in.representative_income 105065 Representative total house income in the dwelling unit is $105065 -in.representative_income 105071 Representative total house income in the dwelling unit is $105071 -in.representative_income 105090 Representative total house income in the dwelling unit is $105090 -in.representative_income 105095 Representative total house income in the dwelling unit is $105095 -in.representative_income 105105 Representative total house income in the dwelling unit is $105105 -in.representative_income 105116 Representative total house income in the dwelling unit is $105116 -in.representative_income 105130 Representative total house income in the dwelling unit is $105130 -in.representative_income 105144 Representative total house income in the dwelling unit is $105144 -in.representative_income 105156 Representative total house income in the dwelling unit is $105156 -in.representative_income 105173 Representative total house income in the dwelling unit is $105173 -in.representative_income 105195 Representative total house income in the dwelling unit is $105195 -in.representative_income 105198 Representative total house income in the dwelling unit is $105198 -in.representative_income 105207 Representative total house income in the dwelling unit is $105207 -in.representative_income 105208 Representative total house income in the dwelling unit is $105208 -in.representative_income 105217 Representative total house income in the dwelling unit is $105217 -in.representative_income 105218 Representative total house income in the dwelling unit is $105218 -in.representative_income 105230 Representative total house income in the dwelling unit is $105230 -in.representative_income 105238 Representative total house income in the dwelling unit is $105238 -in.representative_income 105241 Representative total house income in the dwelling unit is $105241 -in.representative_income 105245 Representative total house income in the dwelling unit is $105245 -in.representative_income 105250 Representative total house income in the dwelling unit is $105250 -in.representative_income 105253 Representative total house income in the dwelling unit is $105253 -in.representative_income 105257 Representative total house income in the dwelling unit is $105257 -in.representative_income 105271 Representative total house income in the dwelling unit is $105271 -in.representative_income 105286 Representative total house income in the dwelling unit is $105286 -in.representative_income 105287 Representative total house income in the dwelling unit is $105287 -in.representative_income 105290 Representative total house income in the dwelling unit is $105290 -in.representative_income 105295 Representative total house income in the dwelling unit is $105295 -in.representative_income 105305 Representative total house income in the dwelling unit is $105305 -in.representative_income 105310 Representative total house income in the dwelling unit is $105310 -in.representative_income 105311 Representative total house income in the dwelling unit is $105311 -in.representative_income 105327 Representative total house income in the dwelling unit is $105327 -in.representative_income 105341 Representative total house income in the dwelling unit is $105341 -in.representative_income 105346 Representative total house income in the dwelling unit is $105346 -in.representative_income 105348 Representative total house income in the dwelling unit is $105348 -in.representative_income 105350 Representative total house income in the dwelling unit is $105350 -in.representative_income 105353 Representative total house income in the dwelling unit is $105353 -in.representative_income 105355 Representative total house income in the dwelling unit is $105355 -in.representative_income 105357 Representative total house income in the dwelling unit is $105357 -in.representative_income 105358 Representative total house income in the dwelling unit is $105358 -in.representative_income 105359 Representative total house income in the dwelling unit is $105359 -in.representative_income 105376 Representative total house income in the dwelling unit is $105376 -in.representative_income 105381 Representative total house income in the dwelling unit is $105381 -in.representative_income 105413 Representative total house income in the dwelling unit is $105413 -in.representative_income 105415 Representative total house income in the dwelling unit is $105415 -in.representative_income 105434 Representative total house income in the dwelling unit is $105434 -in.representative_income 105454 Representative total house income in the dwelling unit is $105454 -in.representative_income 105459 Representative total house income in the dwelling unit is $105459 -in.representative_income 105461 Representative total house income in the dwelling unit is $105461 -in.representative_income 105466 Representative total house income in the dwelling unit is $105466 -in.representative_income 105471 Representative total house income in the dwelling unit is $105471 -in.representative_income 105475 Representative total house income in the dwelling unit is $105475 -in.representative_income 105481 Representative total house income in the dwelling unit is $105481 -in.representative_income 105489 Representative total house income in the dwelling unit is $105489 -in.representative_income 105492 Representative total house income in the dwelling unit is $105492 -in.representative_income 105502 Representative total house income in the dwelling unit is $105502 -in.representative_income 105508 Representative total house income in the dwelling unit is $105508 -in.representative_income 105510 Representative total house income in the dwelling unit is $105510 -in.representative_income 105514 Representative total house income in the dwelling unit is $105514 -in.representative_income 105517 Representative total house income in the dwelling unit is $105517 -in.representative_income 105520 Representative total house income in the dwelling unit is $105520 -in.representative_income 105529 Representative total house income in the dwelling unit is $105529 -in.representative_income 105534 Representative total house income in the dwelling unit is $105534 -in.representative_income 105542 Representative total house income in the dwelling unit is $105542 -in.representative_income 105550 Representative total house income in the dwelling unit is $105550 -in.representative_income 105555 Representative total house income in the dwelling unit is $105555 -in.representative_income 105560 Representative total house income in the dwelling unit is $105560 -in.representative_income 105562 Representative total house income in the dwelling unit is $105562 -in.representative_income 105566 Representative total house income in the dwelling unit is $105566 -in.representative_income 105574 Representative total house income in the dwelling unit is $105574 -in.representative_income 105595 Representative total house income in the dwelling unit is $105595 -in.representative_income 105619 Representative total house income in the dwelling unit is $105619 -in.representative_income 105620 Representative total house income in the dwelling unit is $105620 -in.representative_income 105627 Representative total house income in the dwelling unit is $105627 -in.representative_income 105629 Representative total house income in the dwelling unit is $105629 -in.representative_income 105631 Representative total house income in the dwelling unit is $105631 -in.representative_income 105632 Representative total house income in the dwelling unit is $105632 -in.representative_income 105649 Representative total house income in the dwelling unit is $105649 -in.representative_income 105650 Representative total house income in the dwelling unit is $105650 -in.representative_income 105651 Representative total house income in the dwelling unit is $105651 -in.representative_income 105661 Representative total house income in the dwelling unit is $105661 -in.representative_income 105670 Representative total house income in the dwelling unit is $105670 -in.representative_income 105671 Representative total house income in the dwelling unit is $105671 -in.representative_income 105682 Representative total house income in the dwelling unit is $105682 -in.representative_income 105691 Representative total house income in the dwelling unit is $105691 -in.representative_income 105693 Representative total house income in the dwelling unit is $105693 -in.representative_income 105695 Representative total house income in the dwelling unit is $105695 -in.representative_income 105704 Representative total house income in the dwelling unit is $105704 -in.representative_income 105724 Representative total house income in the dwelling unit is $105724 -in.representative_income 105734 Representative total house income in the dwelling unit is $105734 -in.representative_income 105759 Representative total house income in the dwelling unit is $105759 -in.representative_income 105762 Representative total house income in the dwelling unit is $105762 -in.representative_income 105771 Representative total house income in the dwelling unit is $105771 -in.representative_income 105775 Representative total house income in the dwelling unit is $105775 -in.representative_income 105777 Representative total house income in the dwelling unit is $105777 -in.representative_income 105778 Representative total house income in the dwelling unit is $105778 -in.representative_income 105827 Representative total house income in the dwelling unit is $105827 -in.representative_income 105842 Representative total house income in the dwelling unit is $105842 -in.representative_income 105843 Representative total house income in the dwelling unit is $105843 -in.representative_income 105857 Representative total house income in the dwelling unit is $105857 -in.representative_income 105863 Representative total house income in the dwelling unit is $105863 -in.representative_income 105879 Representative total house income in the dwelling unit is $105879 -in.representative_income 105883 Representative total house income in the dwelling unit is $105883 -in.representative_income 105886 Representative total house income in the dwelling unit is $105886 -in.representative_income 105894 Representative total house income in the dwelling unit is $105894 -in.representative_income 105897 Representative total house income in the dwelling unit is $105897 -in.representative_income 105904 Representative total house income in the dwelling unit is $105904 -in.representative_income 105908 Representative total house income in the dwelling unit is $105908 -in.representative_income 105914 Representative total house income in the dwelling unit is $105914 -in.representative_income 105919 Representative total house income in the dwelling unit is $105919 -in.representative_income 105924 Representative total house income in the dwelling unit is $105924 -in.representative_income 105928 Representative total house income in the dwelling unit is $105928 -in.representative_income 105930 Representative total house income in the dwelling unit is $105930 -in.representative_income 105937 Representative total house income in the dwelling unit is $105937 -in.representative_income 105950 Representative total house income in the dwelling unit is $105950 -in.representative_income 105964 Representative total house income in the dwelling unit is $105964 -in.representative_income 105975 Representative total house income in the dwelling unit is $105975 -in.representative_income 105982 Representative total house income in the dwelling unit is $105982 -in.representative_income 105988 Representative total house income in the dwelling unit is $105988 -in.representative_income 105994 Representative total house income in the dwelling unit is $105994 -in.representative_income 106002 Representative total house income in the dwelling unit is $106002 -in.representative_income 106019 Representative total house income in the dwelling unit is $106019 -in.representative_income 106034 Representative total house income in the dwelling unit is $106034 -in.representative_income 106035 Representative total house income in the dwelling unit is $106035 -in.representative_income 106051 Representative total house income in the dwelling unit is $106051 -in.representative_income 106057 Representative total house income in the dwelling unit is $106057 -in.representative_income 106062 Representative total house income in the dwelling unit is $106062 -in.representative_income 106065 Representative total house income in the dwelling unit is $106065 -in.representative_income 106069 Representative total house income in the dwelling unit is $106069 -in.representative_income 106073 Representative total house income in the dwelling unit is $106073 -in.representative_income 106083 Representative total house income in the dwelling unit is $106083 -in.representative_income 106093 Representative total house income in the dwelling unit is $106093 -in.representative_income 106096 Representative total house income in the dwelling unit is $106096 -in.representative_income 106102 Representative total house income in the dwelling unit is $106102 -in.representative_income 106112 Representative total house income in the dwelling unit is $106112 -in.representative_income 106116 Representative total house income in the dwelling unit is $106116 -in.representative_income 106121 Representative total house income in the dwelling unit is $106121 -in.representative_income 106135 Representative total house income in the dwelling unit is $106135 -in.representative_income 106136 Representative total house income in the dwelling unit is $106136 -in.representative_income 106146 Representative total house income in the dwelling unit is $106146 -in.representative_income 106157 Representative total house income in the dwelling unit is $106157 -in.representative_income 106165 Representative total house income in the dwelling unit is $106165 -in.representative_income 106166 Representative total house income in the dwelling unit is $106166 -in.representative_income 106188 Representative total house income in the dwelling unit is $106188 -in.representative_income 106197 Representative total house income in the dwelling unit is $106197 -in.representative_income 106198 Representative total house income in the dwelling unit is $106198 -in.representative_income 106199 Representative total house income in the dwelling unit is $106199 -in.representative_income 106210 Representative total house income in the dwelling unit is $106210 -in.representative_income 106239 Representative total house income in the dwelling unit is $106239 -in.representative_income 106250 Representative total house income in the dwelling unit is $106250 -in.representative_income 106261 Representative total house income in the dwelling unit is $106261 -in.representative_income 106267 Representative total house income in the dwelling unit is $106267 -in.representative_income 106271 Representative total house income in the dwelling unit is $106271 -in.representative_income 106272 Representative total house income in the dwelling unit is $106272 -in.representative_income 106275 Representative total house income in the dwelling unit is $106275 -in.representative_income 106281 Representative total house income in the dwelling unit is $106281 -in.representative_income 106282 Representative total house income in the dwelling unit is $106282 -in.representative_income 106296 Representative total house income in the dwelling unit is $106296 -in.representative_income 106304 Representative total house income in the dwelling unit is $106304 -in.representative_income 106308 Representative total house income in the dwelling unit is $106308 -in.representative_income 106318 Representative total house income in the dwelling unit is $106318 -in.representative_income 106338 Representative total house income in the dwelling unit is $106338 -in.representative_income 106343 Representative total house income in the dwelling unit is $106343 -in.representative_income 106368 Representative total house income in the dwelling unit is $106368 -in.representative_income 106379 Representative total house income in the dwelling unit is $106379 -in.representative_income 106384 Representative total house income in the dwelling unit is $106384 -in.representative_income 106388 Representative total house income in the dwelling unit is $106388 -in.representative_income 106399 Representative total house income in the dwelling unit is $106399 -in.representative_income 106400 Representative total house income in the dwelling unit is $106400 -in.representative_income 106403 Representative total house income in the dwelling unit is $106403 -in.representative_income 106409 Representative total house income in the dwelling unit is $106409 -in.representative_income 106419 Representative total house income in the dwelling unit is $106419 -in.representative_income 106425 Representative total house income in the dwelling unit is $106425 -in.representative_income 106426 Representative total house income in the dwelling unit is $106426 -in.representative_income 106439 Representative total house income in the dwelling unit is $106439 -in.representative_income 106442 Representative total house income in the dwelling unit is $106442 -in.representative_income 106446 Representative total house income in the dwelling unit is $106446 -in.representative_income 106464 Representative total house income in the dwelling unit is $106464 -in.representative_income 106469 Representative total house income in the dwelling unit is $106469 -in.representative_income 106480 Representative total house income in the dwelling unit is $106480 -in.representative_income 106486 Representative total house income in the dwelling unit is $106486 -in.representative_income 106490 Representative total house income in the dwelling unit is $106490 -in.representative_income 106501 Representative total house income in the dwelling unit is $106501 -in.representative_income 106510 Representative total house income in the dwelling unit is $106510 -in.representative_income 106516 Representative total house income in the dwelling unit is $106516 -in.representative_income 106518 Representative total house income in the dwelling unit is $106518 -in.representative_income 106523 Representative total house income in the dwelling unit is $106523 -in.representative_income 106526 Representative total house income in the dwelling unit is $106526 -in.representative_income 106534 Representative total house income in the dwelling unit is $106534 -in.representative_income 106549 Representative total house income in the dwelling unit is $106549 -in.representative_income 106570 Representative total house income in the dwelling unit is $106570 -in.representative_income 106578 Representative total house income in the dwelling unit is $106578 -in.representative_income 106580 Representative total house income in the dwelling unit is $106580 -in.representative_income 106594 Representative total house income in the dwelling unit is $106594 -in.representative_income 106600 Representative total house income in the dwelling unit is $106600 -in.representative_income 106621 Representative total house income in the dwelling unit is $106621 -in.representative_income 106643 Representative total house income in the dwelling unit is $106643 -in.representative_income 106644 Representative total house income in the dwelling unit is $106644 -in.representative_income 106652 Representative total house income in the dwelling unit is $106652 -in.representative_income 106657 Representative total house income in the dwelling unit is $106657 -in.representative_income 106668 Representative total house income in the dwelling unit is $106668 -in.representative_income 106671 Representative total house income in the dwelling unit is $106671 -in.representative_income 106693 Representative total house income in the dwelling unit is $106693 -in.representative_income 106697 Representative total house income in the dwelling unit is $106697 -in.representative_income 106701 Representative total house income in the dwelling unit is $106701 -in.representative_income 106705 Representative total house income in the dwelling unit is $106705 -in.representative_income 106706 Representative total house income in the dwelling unit is $106706 -in.representative_income 106716 Representative total house income in the dwelling unit is $106716 -in.representative_income 106718 Representative total house income in the dwelling unit is $106718 -in.representative_income 106726 Representative total house income in the dwelling unit is $106726 -in.representative_income 106733 Representative total house income in the dwelling unit is $106733 -in.representative_income 106735 Representative total house income in the dwelling unit is $106735 -in.representative_income 106741 Representative total house income in the dwelling unit is $106741 -in.representative_income 106744 Representative total house income in the dwelling unit is $106744 -in.representative_income 106747 Representative total house income in the dwelling unit is $106747 -in.representative_income 106751 Representative total house income in the dwelling unit is $106751 -in.representative_income 106755 Representative total house income in the dwelling unit is $106755 -in.representative_income 106765 Representative total house income in the dwelling unit is $106765 -in.representative_income 106772 Representative total house income in the dwelling unit is $106772 -in.representative_income 106783 Representative total house income in the dwelling unit is $106783 -in.representative_income 106787 Representative total house income in the dwelling unit is $106787 -in.representative_income 106808 Representative total house income in the dwelling unit is $106808 -in.representative_income 106831 Representative total house income in the dwelling unit is $106831 -in.representative_income 106836 Representative total house income in the dwelling unit is $106836 -in.representative_income 106837 Representative total house income in the dwelling unit is $106837 -in.representative_income 106852 Representative total house income in the dwelling unit is $106852 -in.representative_income 106858 Representative total house income in the dwelling unit is $106858 -in.representative_income 106859 Representative total house income in the dwelling unit is $106859 -in.representative_income 106873 Representative total house income in the dwelling unit is $106873 -in.representative_income 106883 Representative total house income in the dwelling unit is $106883 -in.representative_income 106891 Representative total house income in the dwelling unit is $106891 -in.representative_income 106894 Representative total house income in the dwelling unit is $106894 -in.representative_income 106912 Representative total house income in the dwelling unit is $106912 -in.representative_income 106915 Representative total house income in the dwelling unit is $106915 -in.representative_income 106926 Representative total house income in the dwelling unit is $106926 -in.representative_income 106937 Representative total house income in the dwelling unit is $106937 -in.representative_income 106945 Representative total house income in the dwelling unit is $106945 -in.representative_income 106962 Representative total house income in the dwelling unit is $106962 -in.representative_income 106966 Representative total house income in the dwelling unit is $106966 -in.representative_income 106967 Representative total house income in the dwelling unit is $106967 -in.representative_income 106970 Representative total house income in the dwelling unit is $106970 -in.representative_income 106971 Representative total house income in the dwelling unit is $106971 -in.representative_income 106972 Representative total house income in the dwelling unit is $106972 -in.representative_income 106974 Representative total house income in the dwelling unit is $106974 -in.representative_income 106977 Representative total house income in the dwelling unit is $106977 -in.representative_income 106988 Representative total house income in the dwelling unit is $106988 -in.representative_income 106991 Representative total house income in the dwelling unit is $106991 -in.representative_income 106999 Representative total house income in the dwelling unit is $106999 -in.representative_income 107005 Representative total house income in the dwelling unit is $107005 -in.representative_income 107013 Representative total house income in the dwelling unit is $107013 -in.representative_income 107020 Representative total house income in the dwelling unit is $107020 -in.representative_income 107023 Representative total house income in the dwelling unit is $107023 -in.representative_income 107025 Representative total house income in the dwelling unit is $107025 -in.representative_income 107042 Representative total house income in the dwelling unit is $107042 -in.representative_income 107053 Representative total house income in the dwelling unit is $107053 -in.representative_income 107065 Representative total house income in the dwelling unit is $107065 -in.representative_income 107074 Representative total house income in the dwelling unit is $107074 -in.representative_income 107075 Representative total house income in the dwelling unit is $107075 -in.representative_income 107087 Representative total house income in the dwelling unit is $107087 -in.representative_income 107095 Representative total house income in the dwelling unit is $107095 -in.representative_income 107096 Representative total house income in the dwelling unit is $107096 -in.representative_income 107102 Representative total house income in the dwelling unit is $107102 -in.representative_income 107106 Representative total house income in the dwelling unit is $107106 -in.representative_income 107120 Representative total house income in the dwelling unit is $107120 -in.representative_income 107128 Representative total house income in the dwelling unit is $107128 -in.representative_income 107130 Representative total house income in the dwelling unit is $107130 -in.representative_income 107131 Representative total house income in the dwelling unit is $107131 -in.representative_income 107148 Representative total house income in the dwelling unit is $107148 -in.representative_income 107152 Representative total house income in the dwelling unit is $107152 -in.representative_income 107159 Representative total house income in the dwelling unit is $107159 -in.representative_income 107166 Representative total house income in the dwelling unit is $107166 -in.representative_income 107167 Representative total house income in the dwelling unit is $107167 -in.representative_income 107176 Representative total house income in the dwelling unit is $107176 -in.representative_income 107182 Representative total house income in the dwelling unit is $107182 -in.representative_income 107184 Representative total house income in the dwelling unit is $107184 -in.representative_income 107197 Representative total house income in the dwelling unit is $107197 -in.representative_income 107205 Representative total house income in the dwelling unit is $107205 -in.representative_income 107224 Representative total house income in the dwelling unit is $107224 -in.representative_income 107225 Representative total house income in the dwelling unit is $107225 -in.representative_income 107236 Representative total house income in the dwelling unit is $107236 -in.representative_income 107238 Representative total house income in the dwelling unit is $107238 -in.representative_income 107242 Representative total house income in the dwelling unit is $107242 -in.representative_income 107251 Representative total house income in the dwelling unit is $107251 -in.representative_income 107252 Representative total house income in the dwelling unit is $107252 -in.representative_income 107254 Representative total house income in the dwelling unit is $107254 -in.representative_income 107261 Representative total house income in the dwelling unit is $107261 -in.representative_income 107264 Representative total house income in the dwelling unit is $107264 -in.representative_income 107270 Representative total house income in the dwelling unit is $107270 -in.representative_income 107271 Representative total house income in the dwelling unit is $107271 -in.representative_income 107277 Representative total house income in the dwelling unit is $107277 -in.representative_income 107281 Representative total house income in the dwelling unit is $107281 -in.representative_income 107290 Representative total house income in the dwelling unit is $107290 -in.representative_income 107292 Representative total house income in the dwelling unit is $107292 -in.representative_income 107298 Representative total house income in the dwelling unit is $107298 -in.representative_income 107318 Representative total house income in the dwelling unit is $107318 -in.representative_income 107322 Representative total house income in the dwelling unit is $107322 -in.representative_income 107323 Representative total house income in the dwelling unit is $107323 -in.representative_income 107338 Representative total house income in the dwelling unit is $107338 -in.representative_income 107345 Representative total house income in the dwelling unit is $107345 -in.representative_income 107346 Representative total house income in the dwelling unit is $107346 -in.representative_income 107349 Representative total house income in the dwelling unit is $107349 -in.representative_income 107352 Representative total house income in the dwelling unit is $107352 -in.representative_income 107355 Representative total house income in the dwelling unit is $107355 -in.representative_income 107359 Representative total house income in the dwelling unit is $107359 -in.representative_income 107367 Representative total house income in the dwelling unit is $107367 -in.representative_income 107368 Representative total house income in the dwelling unit is $107368 -in.representative_income 107374 Representative total house income in the dwelling unit is $107374 -in.representative_income 107375 Representative total house income in the dwelling unit is $107375 -in.representative_income 107377 Representative total house income in the dwelling unit is $107377 -in.representative_income 107378 Representative total house income in the dwelling unit is $107378 -in.representative_income 107388 Representative total house income in the dwelling unit is $107388 -in.representative_income 107399 Representative total house income in the dwelling unit is $107399 -in.representative_income 107402 Representative total house income in the dwelling unit is $107402 -in.representative_income 107410 Representative total house income in the dwelling unit is $107410 -in.representative_income 107412 Representative total house income in the dwelling unit is $107412 -in.representative_income 107429 Representative total house income in the dwelling unit is $107429 -in.representative_income 107431 Representative total house income in the dwelling unit is $107431 -in.representative_income 107437 Representative total house income in the dwelling unit is $107437 -in.representative_income 107446 Representative total house income in the dwelling unit is $107446 -in.representative_income 107452 Representative total house income in the dwelling unit is $107452 -in.representative_income 107458 Representative total house income in the dwelling unit is $107458 -in.representative_income 107459 Representative total house income in the dwelling unit is $107459 -in.representative_income 107463 Representative total house income in the dwelling unit is $107463 -in.representative_income 107464 Representative total house income in the dwelling unit is $107464 -in.representative_income 107473 Representative total house income in the dwelling unit is $107473 -in.representative_income 107477 Representative total house income in the dwelling unit is $107477 -in.representative_income 107479 Representative total house income in the dwelling unit is $107479 -in.representative_income 107480 Representative total house income in the dwelling unit is $107480 -in.representative_income 107485 Representative total house income in the dwelling unit is $107485 -in.representative_income 107504 Representative total house income in the dwelling unit is $107504 -in.representative_income 107507 Representative total house income in the dwelling unit is $107507 -in.representative_income 107517 Representative total house income in the dwelling unit is $107517 -in.representative_income 107528 Representative total house income in the dwelling unit is $107528 -in.representative_income 107529 Representative total house income in the dwelling unit is $107529 -in.representative_income 107549 Representative total house income in the dwelling unit is $107549 -in.representative_income 107560 Representative total house income in the dwelling unit is $107560 -in.representative_income 107561 Representative total house income in the dwelling unit is $107561 -in.representative_income 107570 Representative total house income in the dwelling unit is $107570 -in.representative_income 107580 Representative total house income in the dwelling unit is $107580 -in.representative_income 107581 Representative total house income in the dwelling unit is $107581 -in.representative_income 107593 Representative total house income in the dwelling unit is $107593 -in.representative_income 107596 Representative total house income in the dwelling unit is $107596 -in.representative_income 107613 Representative total house income in the dwelling unit is $107613 -in.representative_income 107615 Representative total house income in the dwelling unit is $107615 -in.representative_income 107616 Representative total house income in the dwelling unit is $107616 -in.representative_income 107623 Representative total house income in the dwelling unit is $107623 -in.representative_income 107631 Representative total house income in the dwelling unit is $107631 -in.representative_income 107632 Representative total house income in the dwelling unit is $107632 -in.representative_income 107644 Representative total house income in the dwelling unit is $107644 -in.representative_income 107667 Representative total house income in the dwelling unit is $107667 -in.representative_income 107671 Representative total house income in the dwelling unit is $107671 -in.representative_income 107675 Representative total house income in the dwelling unit is $107675 -in.representative_income 107681 Representative total house income in the dwelling unit is $107681 -in.representative_income 107684 Representative total house income in the dwelling unit is $107684 -in.representative_income 107688 Representative total house income in the dwelling unit is $107688 -in.representative_income 107690 Representative total house income in the dwelling unit is $107690 -in.representative_income 107697 Representative total house income in the dwelling unit is $107697 -in.representative_income 107698 Representative total house income in the dwelling unit is $107698 -in.representative_income 107712 Representative total house income in the dwelling unit is $107712 -in.representative_income 107720 Representative total house income in the dwelling unit is $107720 -in.representative_income 107723 Representative total house income in the dwelling unit is $107723 -in.representative_income 107731 Representative total house income in the dwelling unit is $107731 -in.representative_income 107733 Representative total house income in the dwelling unit is $107733 -in.representative_income 107735 Representative total house income in the dwelling unit is $107735 -in.representative_income 107742 Representative total house income in the dwelling unit is $107742 -in.representative_income 107744 Representative total house income in the dwelling unit is $107744 -in.representative_income 107749 Representative total house income in the dwelling unit is $107749 -in.representative_income 107752 Representative total house income in the dwelling unit is $107752 -in.representative_income 107763 Representative total house income in the dwelling unit is $107763 -in.representative_income 107772 Representative total house income in the dwelling unit is $107772 -in.representative_income 107775 Representative total house income in the dwelling unit is $107775 -in.representative_income 107780 Representative total house income in the dwelling unit is $107780 -in.representative_income 107781 Representative total house income in the dwelling unit is $107781 -in.representative_income 107782 Representative total house income in the dwelling unit is $107782 -in.representative_income 107786 Representative total house income in the dwelling unit is $107786 -in.representative_income 107787 Representative total house income in the dwelling unit is $107787 -in.representative_income 107788 Representative total house income in the dwelling unit is $107788 -in.representative_income 107792 Representative total house income in the dwelling unit is $107792 -in.representative_income 107798 Representative total house income in the dwelling unit is $107798 -in.representative_income 107802 Representative total house income in the dwelling unit is $107802 -in.representative_income 107803 Representative total house income in the dwelling unit is $107803 -in.representative_income 107807 Representative total house income in the dwelling unit is $107807 -in.representative_income 107818 Representative total house income in the dwelling unit is $107818 -in.representative_income 107823 Representative total house income in the dwelling unit is $107823 -in.representative_income 107824 Representative total house income in the dwelling unit is $107824 -in.representative_income 107831 Representative total house income in the dwelling unit is $107831 -in.representative_income 107833 Representative total house income in the dwelling unit is $107833 -in.representative_income 107873 Representative total house income in the dwelling unit is $107873 -in.representative_income 107874 Representative total house income in the dwelling unit is $107874 -in.representative_income 107881 Representative total house income in the dwelling unit is $107881 -in.representative_income 107882 Representative total house income in the dwelling unit is $107882 -in.representative_income 107883 Representative total house income in the dwelling unit is $107883 -in.representative_income 107886 Representative total house income in the dwelling unit is $107886 -in.representative_income 107890 Representative total house income in the dwelling unit is $107890 -in.representative_income 107897 Representative total house income in the dwelling unit is $107897 -in.representative_income 107904 Representative total house income in the dwelling unit is $107904 -in.representative_income 107912 Representative total house income in the dwelling unit is $107912 -in.representative_income 107917 Representative total house income in the dwelling unit is $107917 -in.representative_income 107930 Representative total house income in the dwelling unit is $107930 -in.representative_income 107935 Representative total house income in the dwelling unit is $107935 -in.representative_income 107939 Representative total house income in the dwelling unit is $107939 -in.representative_income 107949 Representative total house income in the dwelling unit is $107949 -in.representative_income 107962 Representative total house income in the dwelling unit is $107962 -in.representative_income 107966 Representative total house income in the dwelling unit is $107966 -in.representative_income 107982 Representative total house income in the dwelling unit is $107982 -in.representative_income 107985 Representative total house income in the dwelling unit is $107985 -in.representative_income 107989 Representative total house income in the dwelling unit is $107989 -in.representative_income 107992 Representative total house income in the dwelling unit is $107992 -in.representative_income 107993 Representative total house income in the dwelling unit is $107993 -in.representative_income 107995 Representative total house income in the dwelling unit is $107995 -in.representative_income 108003 Representative total house income in the dwelling unit is $108003 -in.representative_income 108013 Representative total house income in the dwelling unit is $108013 -in.representative_income 108018 Representative total house income in the dwelling unit is $108018 -in.representative_income 108023 Representative total house income in the dwelling unit is $108023 -in.representative_income 108026 Representative total house income in the dwelling unit is $108026 -in.representative_income 108037 Representative total house income in the dwelling unit is $108037 -in.representative_income 108039 Representative total house income in the dwelling unit is $108039 -in.representative_income 108044 Representative total house income in the dwelling unit is $108044 -in.representative_income 108047 Representative total house income in the dwelling unit is $108047 -in.representative_income 108048 Representative total house income in the dwelling unit is $108048 -in.representative_income 108055 Representative total house income in the dwelling unit is $108055 -in.representative_income 108057 Representative total house income in the dwelling unit is $108057 -in.representative_income 108066 Representative total house income in the dwelling unit is $108066 -in.representative_income 108068 Representative total house income in the dwelling unit is $108068 -in.representative_income 108075 Representative total house income in the dwelling unit is $108075 -in.representative_income 108076 Representative total house income in the dwelling unit is $108076 -in.representative_income 108079 Representative total house income in the dwelling unit is $108079 -in.representative_income 108086 Representative total house income in the dwelling unit is $108086 -in.representative_income 108090 Representative total house income in the dwelling unit is $108090 -in.representative_income 108091 Representative total house income in the dwelling unit is $108091 -in.representative_income 108096 Representative total house income in the dwelling unit is $108096 -in.representative_income 108097 Representative total house income in the dwelling unit is $108097 -in.representative_income 108101 Representative total house income in the dwelling unit is $108101 -in.representative_income 108107 Representative total house income in the dwelling unit is $108107 -in.representative_income 108116 Representative total house income in the dwelling unit is $108116 -in.representative_income 108118 Representative total house income in the dwelling unit is $108118 -in.representative_income 108122 Representative total house income in the dwelling unit is $108122 -in.representative_income 108126 Representative total house income in the dwelling unit is $108126 -in.representative_income 108134 Representative total house income in the dwelling unit is $108134 -in.representative_income 108136 Representative total house income in the dwelling unit is $108136 -in.representative_income 108140 Representative total house income in the dwelling unit is $108140 -in.representative_income 108145 Representative total house income in the dwelling unit is $108145 -in.representative_income 108146 Representative total house income in the dwelling unit is $108146 -in.representative_income 108150 Representative total house income in the dwelling unit is $108150 -in.representative_income 108155 Representative total house income in the dwelling unit is $108155 -in.representative_income 108174 Representative total house income in the dwelling unit is $108174 -in.representative_income 108175 Representative total house income in the dwelling unit is $108175 -in.representative_income 108177 Representative total house income in the dwelling unit is $108177 -in.representative_income 108183 Representative total house income in the dwelling unit is $108183 -in.representative_income 108187 Representative total house income in the dwelling unit is $108187 -in.representative_income 108188 Representative total house income in the dwelling unit is $108188 -in.representative_income 108193 Representative total house income in the dwelling unit is $108193 -in.representative_income 108194 Representative total house income in the dwelling unit is $108194 -in.representative_income 108197 Representative total house income in the dwelling unit is $108197 -in.representative_income 108199 Representative total house income in the dwelling unit is $108199 -in.representative_income 108200 Representative total house income in the dwelling unit is $108200 -in.representative_income 108202 Representative total house income in the dwelling unit is $108202 -in.representative_income 108204 Representative total house income in the dwelling unit is $108204 -in.representative_income 108209 Representative total house income in the dwelling unit is $108209 -in.representative_income 108220 Representative total house income in the dwelling unit is $108220 -in.representative_income 108233 Representative total house income in the dwelling unit is $108233 -in.representative_income 108252 Representative total house income in the dwelling unit is $108252 -in.representative_income 108257 Representative total house income in the dwelling unit is $108257 -in.representative_income 108263 Representative total house income in the dwelling unit is $108263 -in.representative_income 108288 Representative total house income in the dwelling unit is $108288 -in.representative_income 108296 Representative total house income in the dwelling unit is $108296 -in.representative_income 108302 Representative total house income in the dwelling unit is $108302 -in.representative_income 108307 Representative total house income in the dwelling unit is $108307 -in.representative_income 108308 Representative total house income in the dwelling unit is $108308 -in.representative_income 108309 Representative total house income in the dwelling unit is $108309 -in.representative_income 108311 Representative total house income in the dwelling unit is $108311 -in.representative_income 108313 Representative total house income in the dwelling unit is $108313 -in.representative_income 108317 Representative total house income in the dwelling unit is $108317 -in.representative_income 108320 Representative total house income in the dwelling unit is $108320 -in.representative_income 108328 Representative total house income in the dwelling unit is $108328 -in.representative_income 108333 Representative total house income in the dwelling unit is $108333 -in.representative_income 108336 Representative total house income in the dwelling unit is $108336 -in.representative_income 108338 Representative total house income in the dwelling unit is $108338 -in.representative_income 108343 Representative total house income in the dwelling unit is $108343 -in.representative_income 108350 Representative total house income in the dwelling unit is $108350 -in.representative_income 108354 Representative total house income in the dwelling unit is $108354 -in.representative_income 108355 Representative total house income in the dwelling unit is $108355 -in.representative_income 108360 Representative total house income in the dwelling unit is $108360 -in.representative_income 108364 Representative total house income in the dwelling unit is $108364 -in.representative_income 108365 Representative total house income in the dwelling unit is $108365 -in.representative_income 108366 Representative total house income in the dwelling unit is $108366 -in.representative_income 108368 Representative total house income in the dwelling unit is $108368 -in.representative_income 108371 Representative total house income in the dwelling unit is $108371 -in.representative_income 108385 Representative total house income in the dwelling unit is $108385 -in.representative_income 108389 Representative total house income in the dwelling unit is $108389 -in.representative_income 108390 Representative total house income in the dwelling unit is $108390 -in.representative_income 108392 Representative total house income in the dwelling unit is $108392 -in.representative_income 108393 Representative total house income in the dwelling unit is $108393 -in.representative_income 108394 Representative total house income in the dwelling unit is $108394 -in.representative_income 108395 Representative total house income in the dwelling unit is $108395 -in.representative_income 108405 Representative total house income in the dwelling unit is $108405 -in.representative_income 108414 Representative total house income in the dwelling unit is $108414 -in.representative_income 108418 Representative total house income in the dwelling unit is $108418 -in.representative_income 108419 Representative total house income in the dwelling unit is $108419 -in.representative_income 108423 Representative total house income in the dwelling unit is $108423 -in.representative_income 108424 Representative total house income in the dwelling unit is $108424 -in.representative_income 108427 Representative total house income in the dwelling unit is $108427 -in.representative_income 108436 Representative total house income in the dwelling unit is $108436 -in.representative_income 108440 Representative total house income in the dwelling unit is $108440 -in.representative_income 108451 Representative total house income in the dwelling unit is $108451 -in.representative_income 108456 Representative total house income in the dwelling unit is $108456 -in.representative_income 108457 Representative total house income in the dwelling unit is $108457 -in.representative_income 108459 Representative total house income in the dwelling unit is $108459 -in.representative_income 108461 Representative total house income in the dwelling unit is $108461 -in.representative_income 108463 Representative total house income in the dwelling unit is $108463 -in.representative_income 108466 Representative total house income in the dwelling unit is $108466 -in.representative_income 108479 Representative total house income in the dwelling unit is $108479 -in.representative_income 108490 Representative total house income in the dwelling unit is $108490 -in.representative_income 108503 Representative total house income in the dwelling unit is $108503 -in.representative_income 108509 Representative total house income in the dwelling unit is $108509 -in.representative_income 108510 Representative total house income in the dwelling unit is $108510 -in.representative_income 108519 Representative total house income in the dwelling unit is $108519 -in.representative_income 108525 Representative total house income in the dwelling unit is $108525 -in.representative_income 108533 Representative total house income in the dwelling unit is $108533 -in.representative_income 108536 Representative total house income in the dwelling unit is $108536 -in.representative_income 108540 Representative total house income in the dwelling unit is $108540 -in.representative_income 108552 Representative total house income in the dwelling unit is $108552 -in.representative_income 108555 Representative total house income in the dwelling unit is $108555 -in.representative_income 108560 Representative total house income in the dwelling unit is $108560 -in.representative_income 108567 Representative total house income in the dwelling unit is $108567 -in.representative_income 108582 Representative total house income in the dwelling unit is $108582 -in.representative_income 108587 Representative total house income in the dwelling unit is $108587 -in.representative_income 108588 Representative total house income in the dwelling unit is $108588 -in.representative_income 108591 Representative total house income in the dwelling unit is $108591 -in.representative_income 108601 Representative total house income in the dwelling unit is $108601 -in.representative_income 108604 Representative total house income in the dwelling unit is $108604 -in.representative_income 108609 Representative total house income in the dwelling unit is $108609 -in.representative_income 108612 Representative total house income in the dwelling unit is $108612 -in.representative_income 108618 Representative total house income in the dwelling unit is $108618 -in.representative_income 108621 Representative total house income in the dwelling unit is $108621 -in.representative_income 108624 Representative total house income in the dwelling unit is $108624 -in.representative_income 108633 Representative total house income in the dwelling unit is $108633 -in.representative_income 108635 Representative total house income in the dwelling unit is $108635 -in.representative_income 108652 Representative total house income in the dwelling unit is $108652 -in.representative_income 108654 Representative total house income in the dwelling unit is $108654 -in.representative_income 108661 Representative total house income in the dwelling unit is $108661 -in.representative_income 108664 Representative total house income in the dwelling unit is $108664 -in.representative_income 108684 Representative total house income in the dwelling unit is $108684 -in.representative_income 108688 Representative total house income in the dwelling unit is $108688 -in.representative_income 108692 Representative total house income in the dwelling unit is $108692 -in.representative_income 108695 Representative total house income in the dwelling unit is $108695 -in.representative_income 108698 Representative total house income in the dwelling unit is $108698 -in.representative_income 108709 Representative total house income in the dwelling unit is $108709 -in.representative_income 108715 Representative total house income in the dwelling unit is $108715 -in.representative_income 108717 Representative total house income in the dwelling unit is $108717 -in.representative_income 108718 Representative total house income in the dwelling unit is $108718 -in.representative_income 108719 Representative total house income in the dwelling unit is $108719 -in.representative_income 108726 Representative total house income in the dwelling unit is $108726 -in.representative_income 108730 Representative total house income in the dwelling unit is $108730 -in.representative_income 108738 Representative total house income in the dwelling unit is $108738 -in.representative_income 108740 Representative total house income in the dwelling unit is $108740 -in.representative_income 108742 Representative total house income in the dwelling unit is $108742 -in.representative_income 108749 Representative total house income in the dwelling unit is $108749 -in.representative_income 108751 Representative total house income in the dwelling unit is $108751 -in.representative_income 108756 Representative total house income in the dwelling unit is $108756 -in.representative_income 108757 Representative total house income in the dwelling unit is $108757 -in.representative_income 108762 Representative total house income in the dwelling unit is $108762 -in.representative_income 108769 Representative total house income in the dwelling unit is $108769 -in.representative_income 108772 Representative total house income in the dwelling unit is $108772 -in.representative_income 108783 Representative total house income in the dwelling unit is $108783 -in.representative_income 108793 Representative total house income in the dwelling unit is $108793 -in.representative_income 108794 Representative total house income in the dwelling unit is $108794 -in.representative_income 108803 Representative total house income in the dwelling unit is $108803 -in.representative_income 108804 Representative total house income in the dwelling unit is $108804 -in.representative_income 108818 Representative total house income in the dwelling unit is $108818 -in.representative_income 108835 Representative total house income in the dwelling unit is $108835 -in.representative_income 108839 Representative total house income in the dwelling unit is $108839 -in.representative_income 108848 Representative total house income in the dwelling unit is $108848 -in.representative_income 108849 Representative total house income in the dwelling unit is $108849 -in.representative_income 108852 Representative total house income in the dwelling unit is $108852 -in.representative_income 108857 Representative total house income in the dwelling unit is $108857 -in.representative_income 108863 Representative total house income in the dwelling unit is $108863 -in.representative_income 108864 Representative total house income in the dwelling unit is $108864 -in.representative_income 108869 Representative total house income in the dwelling unit is $108869 -in.representative_income 108871 Representative total house income in the dwelling unit is $108871 -in.representative_income 108877 Representative total house income in the dwelling unit is $108877 -in.representative_income 108878 Representative total house income in the dwelling unit is $108878 -in.representative_income 108888 Representative total house income in the dwelling unit is $108888 -in.representative_income 108891 Representative total house income in the dwelling unit is $108891 -in.representative_income 108894 Representative total house income in the dwelling unit is $108894 -in.representative_income 108899 Representative total house income in the dwelling unit is $108899 -in.representative_income 108901 Representative total house income in the dwelling unit is $108901 -in.representative_income 108909 Representative total house income in the dwelling unit is $108909 -in.representative_income 108911 Representative total house income in the dwelling unit is $108911 -in.representative_income 108912 Representative total house income in the dwelling unit is $108912 -in.representative_income 108914 Representative total house income in the dwelling unit is $108914 -in.representative_income 108921 Representative total house income in the dwelling unit is $108921 -in.representative_income 108923 Representative total house income in the dwelling unit is $108923 -in.representative_income 108927 Representative total house income in the dwelling unit is $108927 -in.representative_income 108933 Representative total house income in the dwelling unit is $108933 -in.representative_income 108940 Representative total house income in the dwelling unit is $108940 -in.representative_income 108944 Representative total house income in the dwelling unit is $108944 -in.representative_income 108956 Representative total house income in the dwelling unit is $108956 -in.representative_income 108965 Representative total house income in the dwelling unit is $108965 -in.representative_income 108973 Representative total house income in the dwelling unit is $108973 -in.representative_income 108977 Representative total house income in the dwelling unit is $108977 -in.representative_income 108983 Representative total house income in the dwelling unit is $108983 -in.representative_income 108985 Representative total house income in the dwelling unit is $108985 -in.representative_income 108993 Representative total house income in the dwelling unit is $108993 -in.representative_income 108995 Representative total house income in the dwelling unit is $108995 -in.representative_income 109017 Representative total house income in the dwelling unit is $109017 -in.representative_income 109020 Representative total house income in the dwelling unit is $109020 -in.representative_income 109024 Representative total house income in the dwelling unit is $109024 -in.representative_income 109031 Representative total house income in the dwelling unit is $109031 -in.representative_income 109042 Representative total house income in the dwelling unit is $109042 -in.representative_income 109045 Representative total house income in the dwelling unit is $109045 -in.representative_income 109047 Representative total house income in the dwelling unit is $109047 -in.representative_income 109057 Representative total house income in the dwelling unit is $109057 -in.representative_income 109062 Representative total house income in the dwelling unit is $109062 -in.representative_income 109074 Representative total house income in the dwelling unit is $109074 -in.representative_income 109076 Representative total house income in the dwelling unit is $109076 -in.representative_income 109083 Representative total house income in the dwelling unit is $109083 -in.representative_income 109096 Representative total house income in the dwelling unit is $109096 -in.representative_income 109098 Representative total house income in the dwelling unit is $109098 -in.representative_income 109106 Representative total house income in the dwelling unit is $109106 -in.representative_income 109112 Representative total house income in the dwelling unit is $109112 -in.representative_income 109116 Representative total house income in the dwelling unit is $109116 -in.representative_income 109127 Representative total house income in the dwelling unit is $109127 -in.representative_income 109128 Representative total house income in the dwelling unit is $109128 -in.representative_income 109132 Representative total house income in the dwelling unit is $109132 -in.representative_income 109133 Representative total house income in the dwelling unit is $109133 -in.representative_income 109138 Representative total house income in the dwelling unit is $109138 -in.representative_income 109146 Representative total house income in the dwelling unit is $109146 -in.representative_income 109152 Representative total house income in the dwelling unit is $109152 -in.representative_income 109156 Representative total house income in the dwelling unit is $109156 -in.representative_income 109158 Representative total house income in the dwelling unit is $109158 -in.representative_income 109160 Representative total house income in the dwelling unit is $109160 -in.representative_income 109162 Representative total house income in the dwelling unit is $109162 -in.representative_income 109166 Representative total house income in the dwelling unit is $109166 -in.representative_income 109170 Representative total house income in the dwelling unit is $109170 -in.representative_income 109182 Representative total house income in the dwelling unit is $109182 -in.representative_income 109183 Representative total house income in the dwelling unit is $109183 -in.representative_income 109191 Representative total house income in the dwelling unit is $109191 -in.representative_income 109192 Representative total house income in the dwelling unit is $109192 -in.representative_income 109194 Representative total house income in the dwelling unit is $109194 -in.representative_income 109197 Representative total house income in the dwelling unit is $109197 -in.representative_income 109200 Representative total house income in the dwelling unit is $109200 -in.representative_income 109202 Representative total house income in the dwelling unit is $109202 -in.representative_income 109213 Representative total house income in the dwelling unit is $109213 -in.representative_income 109214 Representative total house income in the dwelling unit is $109214 -in.representative_income 109217 Representative total house income in the dwelling unit is $109217 -in.representative_income 109221 Representative total house income in the dwelling unit is $109221 -in.representative_income 109224 Representative total house income in the dwelling unit is $109224 -in.representative_income 109225 Representative total house income in the dwelling unit is $109225 -in.representative_income 109228 Representative total house income in the dwelling unit is $109228 -in.representative_income 109231 Representative total house income in the dwelling unit is $109231 -in.representative_income 109236 Representative total house income in the dwelling unit is $109236 -in.representative_income 109237 Representative total house income in the dwelling unit is $109237 -in.representative_income 109246 Representative total house income in the dwelling unit is $109246 -in.representative_income 109247 Representative total house income in the dwelling unit is $109247 -in.representative_income 109256 Representative total house income in the dwelling unit is $109256 -in.representative_income 109257 Representative total house income in the dwelling unit is $109257 -in.representative_income 109262 Representative total house income in the dwelling unit is $109262 -in.representative_income 109268 Representative total house income in the dwelling unit is $109268 -in.representative_income 109272 Representative total house income in the dwelling unit is $109272 -in.representative_income 109276 Representative total house income in the dwelling unit is $109276 -in.representative_income 109277 Representative total house income in the dwelling unit is $109277 -in.representative_income 109282 Representative total house income in the dwelling unit is $109282 -in.representative_income 109288 Representative total house income in the dwelling unit is $109288 -in.representative_income 109290 Representative total house income in the dwelling unit is $109290 -in.representative_income 109294 Representative total house income in the dwelling unit is $109294 -in.representative_income 109298 Representative total house income in the dwelling unit is $109298 -in.representative_income 109308 Representative total house income in the dwelling unit is $109308 -in.representative_income 109309 Representative total house income in the dwelling unit is $109309 -in.representative_income 109313 Representative total house income in the dwelling unit is $109313 -in.representative_income 109328 Representative total house income in the dwelling unit is $109328 -in.representative_income 109333 Representative total house income in the dwelling unit is $109333 -in.representative_income 109336 Representative total house income in the dwelling unit is $109336 -in.representative_income 109344 Representative total house income in the dwelling unit is $109344 -in.representative_income 109345 Representative total house income in the dwelling unit is $109345 -in.representative_income 109348 Representative total house income in the dwelling unit is $109348 -in.representative_income 109355 Representative total house income in the dwelling unit is $109355 -in.representative_income 109361 Representative total house income in the dwelling unit is $109361 -in.representative_income 109362 Representative total house income in the dwelling unit is $109362 -in.representative_income 109363 Representative total house income in the dwelling unit is $109363 -in.representative_income 109365 Representative total house income in the dwelling unit is $109365 -in.representative_income 109370 Representative total house income in the dwelling unit is $109370 -in.representative_income 109373 Representative total house income in the dwelling unit is $109373 -in.representative_income 109385 Representative total house income in the dwelling unit is $109385 -in.representative_income 109386 Representative total house income in the dwelling unit is $109386 -in.representative_income 109396 Representative total house income in the dwelling unit is $109396 -in.representative_income 109397 Representative total house income in the dwelling unit is $109397 -in.representative_income 109399 Representative total house income in the dwelling unit is $109399 -in.representative_income 109406 Representative total house income in the dwelling unit is $109406 -in.representative_income 109408 Representative total house income in the dwelling unit is $109408 -in.representative_income 109416 Representative total house income in the dwelling unit is $109416 -in.representative_income 109417 Representative total house income in the dwelling unit is $109417 -in.representative_income 109419 Representative total house income in the dwelling unit is $109419 -in.representative_income 109427 Representative total house income in the dwelling unit is $109427 -in.representative_income 109429 Representative total house income in the dwelling unit is $109429 -in.representative_income 109437 Representative total house income in the dwelling unit is $109437 -in.representative_income 109438 Representative total house income in the dwelling unit is $109438 -in.representative_income 109451 Representative total house income in the dwelling unit is $109451 -in.representative_income 109452 Representative total house income in the dwelling unit is $109452 -in.representative_income 109454 Representative total house income in the dwelling unit is $109454 -in.representative_income 109458 Representative total house income in the dwelling unit is $109458 -in.representative_income 109468 Representative total house income in the dwelling unit is $109468 -in.representative_income 109472 Representative total house income in the dwelling unit is $109472 -in.representative_income 109478 Representative total house income in the dwelling unit is $109478 -in.representative_income 109480 Representative total house income in the dwelling unit is $109480 -in.representative_income 109488 Representative total house income in the dwelling unit is $109488 -in.representative_income 109492 Representative total house income in the dwelling unit is $109492 -in.representative_income 109493 Representative total house income in the dwelling unit is $109493 -in.representative_income 109500 Representative total house income in the dwelling unit is $109500 -in.representative_income 109503 Representative total house income in the dwelling unit is $109503 -in.representative_income 109505 Representative total house income in the dwelling unit is $109505 -in.representative_income 109506 Representative total house income in the dwelling unit is $109506 -in.representative_income 109511 Representative total house income in the dwelling unit is $109511 -in.representative_income 109514 Representative total house income in the dwelling unit is $109514 -in.representative_income 109516 Representative total house income in the dwelling unit is $109516 -in.representative_income 109524 Representative total house income in the dwelling unit is $109524 -in.representative_income 109535 Representative total house income in the dwelling unit is $109535 -in.representative_income 109540 Representative total house income in the dwelling unit is $109540 -in.representative_income 109546 Representative total house income in the dwelling unit is $109546 -in.representative_income 109550 Representative total house income in the dwelling unit is $109550 -in.representative_income 109559 Representative total house income in the dwelling unit is $109559 -in.representative_income 109560 Representative total house income in the dwelling unit is $109560 -in.representative_income 109573 Representative total house income in the dwelling unit is $109573 -in.representative_income 109580 Representative total house income in the dwelling unit is $109580 -in.representative_income 109592 Representative total house income in the dwelling unit is $109592 -in.representative_income 109599 Representative total house income in the dwelling unit is $109599 -in.representative_income 109601 Representative total house income in the dwelling unit is $109601 -in.representative_income 109602 Representative total house income in the dwelling unit is $109602 -in.representative_income 109613 Representative total house income in the dwelling unit is $109613 -in.representative_income 109626 Representative total house income in the dwelling unit is $109626 -in.representative_income 109633 Representative total house income in the dwelling unit is $109633 -in.representative_income 109637 Representative total house income in the dwelling unit is $109637 -in.representative_income 109641 Representative total house income in the dwelling unit is $109641 -in.representative_income 109643 Representative total house income in the dwelling unit is $109643 -in.representative_income 109644 Representative total house income in the dwelling unit is $109644 -in.representative_income 109653 Representative total house income in the dwelling unit is $109653 -in.representative_income 109654 Representative total house income in the dwelling unit is $109654 -in.representative_income 109661 Representative total house income in the dwelling unit is $109661 -in.representative_income 109664 Representative total house income in the dwelling unit is $109664 -in.representative_income 109667 Representative total house income in the dwelling unit is $109667 -in.representative_income 109674 Representative total house income in the dwelling unit is $109674 -in.representative_income 109679 Representative total house income in the dwelling unit is $109679 -in.representative_income 109682 Representative total house income in the dwelling unit is $109682 -in.representative_income 109685 Representative total house income in the dwelling unit is $109685 -in.representative_income 109689 Representative total house income in the dwelling unit is $109689 -in.representative_income 109690 Representative total house income in the dwelling unit is $109690 -in.representative_income 109692 Representative total house income in the dwelling unit is $109692 -in.representative_income 109700 Representative total house income in the dwelling unit is $109700 -in.representative_income 109702 Representative total house income in the dwelling unit is $109702 -in.representative_income 109704 Representative total house income in the dwelling unit is $109704 -in.representative_income 109706 Representative total house income in the dwelling unit is $109706 -in.representative_income 109711 Representative total house income in the dwelling unit is $109711 -in.representative_income 109721 Representative total house income in the dwelling unit is $109721 -in.representative_income 109726 Representative total house income in the dwelling unit is $109726 -in.representative_income 109727 Representative total house income in the dwelling unit is $109727 -in.representative_income 109732 Representative total house income in the dwelling unit is $109732 -in.representative_income 109734 Representative total house income in the dwelling unit is $109734 -in.representative_income 109736 Representative total house income in the dwelling unit is $109736 -in.representative_income 109738 Representative total house income in the dwelling unit is $109738 -in.representative_income 109741 Representative total house income in the dwelling unit is $109741 -in.representative_income 109742 Representative total house income in the dwelling unit is $109742 -in.representative_income 109747 Representative total house income in the dwelling unit is $109747 -in.representative_income 109752 Representative total house income in the dwelling unit is $109752 -in.representative_income 109755 Representative total house income in the dwelling unit is $109755 -in.representative_income 109761 Representative total house income in the dwelling unit is $109761 -in.representative_income 109767 Representative total house income in the dwelling unit is $109767 -in.representative_income 109769 Representative total house income in the dwelling unit is $109769 -in.representative_income 109774 Representative total house income in the dwelling unit is $109774 -in.representative_income 109776 Representative total house income in the dwelling unit is $109776 -in.representative_income 109785 Representative total house income in the dwelling unit is $109785 -in.representative_income 109798 Representative total house income in the dwelling unit is $109798 -in.representative_income 109803 Representative total house income in the dwelling unit is $109803 -in.representative_income 109809 Representative total house income in the dwelling unit is $109809 -in.representative_income 109814 Representative total house income in the dwelling unit is $109814 -in.representative_income 109816 Representative total house income in the dwelling unit is $109816 -in.representative_income 109818 Representative total house income in the dwelling unit is $109818 -in.representative_income 109819 Representative total house income in the dwelling unit is $109819 -in.representative_income 109823 Representative total house income in the dwelling unit is $109823 -in.representative_income 109830 Representative total house income in the dwelling unit is $109830 -in.representative_income 109834 Representative total house income in the dwelling unit is $109834 -in.representative_income 109835 Representative total house income in the dwelling unit is $109835 -in.representative_income 109850 Representative total house income in the dwelling unit is $109850 -in.representative_income 109853 Representative total house income in the dwelling unit is $109853 -in.representative_income 109870 Representative total house income in the dwelling unit is $109870 -in.representative_income 109880 Representative total house income in the dwelling unit is $109880 -in.representative_income 109881 Representative total house income in the dwelling unit is $109881 -in.representative_income 109884 Representative total house income in the dwelling unit is $109884 -in.representative_income 109887 Representative total house income in the dwelling unit is $109887 -in.representative_income 109890 Representative total house income in the dwelling unit is $109890 -in.representative_income 109892 Representative total house income in the dwelling unit is $109892 -in.representative_income 109895 Representative total house income in the dwelling unit is $109895 -in.representative_income 109904 Representative total house income in the dwelling unit is $109904 -in.representative_income 109918 Representative total house income in the dwelling unit is $109918 -in.representative_income 109921 Representative total house income in the dwelling unit is $109921 -in.representative_income 109926 Representative total house income in the dwelling unit is $109926 -in.representative_income 109927 Representative total house income in the dwelling unit is $109927 -in.representative_income 109929 Representative total house income in the dwelling unit is $109929 -in.representative_income 109943 Representative total house income in the dwelling unit is $109943 -in.representative_income 109952 Representative total house income in the dwelling unit is $109952 -in.representative_income 109956 Representative total house income in the dwelling unit is $109956 -in.representative_income 109964 Representative total house income in the dwelling unit is $109964 -in.representative_income 109975 Representative total house income in the dwelling unit is $109975 -in.representative_income 109992 Representative total house income in the dwelling unit is $109992 -in.representative_income 109995 Representative total house income in the dwelling unit is $109995 -in.representative_income 109996 Representative total house income in the dwelling unit is $109996 -in.representative_income 109997 Representative total house income in the dwelling unit is $109997 -in.representative_income 110005 Representative total house income in the dwelling unit is $110005 -in.representative_income 110006 Representative total house income in the dwelling unit is $110006 -in.representative_income 110018 Representative total house income in the dwelling unit is $110018 -in.representative_income 110024 Representative total house income in the dwelling unit is $110024 -in.representative_income 110025 Representative total house income in the dwelling unit is $110025 -in.representative_income 110028 Representative total house income in the dwelling unit is $110028 -in.representative_income 110029 Representative total house income in the dwelling unit is $110029 -in.representative_income 110033 Representative total house income in the dwelling unit is $110033 -in.representative_income 110045 Representative total house income in the dwelling unit is $110045 -in.representative_income 110049 Representative total house income in the dwelling unit is $110049 -in.representative_income 110050 Representative total house income in the dwelling unit is $110050 -in.representative_income 110056 Representative total house income in the dwelling unit is $110056 -in.representative_income 110061 Representative total house income in the dwelling unit is $110061 -in.representative_income 110078 Representative total house income in the dwelling unit is $110078 -in.representative_income 110082 Representative total house income in the dwelling unit is $110082 -in.representative_income 110084 Representative total house income in the dwelling unit is $110084 -in.representative_income 110086 Representative total house income in the dwelling unit is $110086 -in.representative_income 110093 Representative total house income in the dwelling unit is $110093 -in.representative_income 110100 Representative total house income in the dwelling unit is $110100 -in.representative_income 110101 Representative total house income in the dwelling unit is $110101 -in.representative_income 110106 Representative total house income in the dwelling unit is $110106 -in.representative_income 110111 Representative total house income in the dwelling unit is $110111 -in.representative_income 110118 Representative total house income in the dwelling unit is $110118 -in.representative_income 110121 Representative total house income in the dwelling unit is $110121 -in.representative_income 110122 Representative total house income in the dwelling unit is $110122 -in.representative_income 110125 Representative total house income in the dwelling unit is $110125 -in.representative_income 110126 Representative total house income in the dwelling unit is $110126 -in.representative_income 110128 Representative total house income in the dwelling unit is $110128 -in.representative_income 110135 Representative total house income in the dwelling unit is $110135 -in.representative_income 110136 Representative total house income in the dwelling unit is $110136 -in.representative_income 110139 Representative total house income in the dwelling unit is $110139 -in.representative_income 110143 Representative total house income in the dwelling unit is $110143 -in.representative_income 110147 Representative total house income in the dwelling unit is $110147 -in.representative_income 110156 Representative total house income in the dwelling unit is $110156 -in.representative_income 110159 Representative total house income in the dwelling unit is $110159 -in.representative_income 110165 Representative total house income in the dwelling unit is $110165 -in.representative_income 110175 Representative total house income in the dwelling unit is $110175 -in.representative_income 110183 Representative total house income in the dwelling unit is $110183 -in.representative_income 110185 Representative total house income in the dwelling unit is $110185 -in.representative_income 110186 Representative total house income in the dwelling unit is $110186 -in.representative_income 110187 Representative total house income in the dwelling unit is $110187 -in.representative_income 110190 Representative total house income in the dwelling unit is $110190 -in.representative_income 110206 Representative total house income in the dwelling unit is $110206 -in.representative_income 110207 Representative total house income in the dwelling unit is $110207 -in.representative_income 110208 Representative total house income in the dwelling unit is $110208 -in.representative_income 110209 Representative total house income in the dwelling unit is $110209 -in.representative_income 110210 Representative total house income in the dwelling unit is $110210 -in.representative_income 110212 Representative total house income in the dwelling unit is $110212 -in.representative_income 110217 Representative total house income in the dwelling unit is $110217 -in.representative_income 110225 Representative total house income in the dwelling unit is $110225 -in.representative_income 110227 Representative total house income in the dwelling unit is $110227 -in.representative_income 110228 Representative total house income in the dwelling unit is $110228 -in.representative_income 110229 Representative total house income in the dwelling unit is $110229 -in.representative_income 110243 Representative total house income in the dwelling unit is $110243 -in.representative_income 110251 Representative total house income in the dwelling unit is $110251 -in.representative_income 110257 Representative total house income in the dwelling unit is $110257 -in.representative_income 110258 Representative total house income in the dwelling unit is $110258 -in.representative_income 110262 Representative total house income in the dwelling unit is $110262 -in.representative_income 110264 Representative total house income in the dwelling unit is $110264 -in.representative_income 110275 Representative total house income in the dwelling unit is $110275 -in.representative_income 110279 Representative total house income in the dwelling unit is $110279 -in.representative_income 110283 Representative total house income in the dwelling unit is $110283 -in.representative_income 110294 Representative total house income in the dwelling unit is $110294 -in.representative_income 110296 Representative total house income in the dwelling unit is $110296 -in.representative_income 110304 Representative total house income in the dwelling unit is $110304 -in.representative_income 110305 Representative total house income in the dwelling unit is $110305 -in.representative_income 110308 Representative total house income in the dwelling unit is $110308 -in.representative_income 110312 Representative total house income in the dwelling unit is $110312 -in.representative_income 110314 Representative total house income in the dwelling unit is $110314 -in.representative_income 110316 Representative total house income in the dwelling unit is $110316 -in.representative_income 110318 Representative total house income in the dwelling unit is $110318 -in.representative_income 110319 Representative total house income in the dwelling unit is $110319 -in.representative_income 110336 Representative total house income in the dwelling unit is $110336 -in.representative_income 110337 Representative total house income in the dwelling unit is $110337 -in.representative_income 110351 Representative total house income in the dwelling unit is $110351 -in.representative_income 110352 Representative total house income in the dwelling unit is $110352 -in.representative_income 110358 Representative total house income in the dwelling unit is $110358 -in.representative_income 110366 Representative total house income in the dwelling unit is $110366 -in.representative_income 110380 Representative total house income in the dwelling unit is $110380 -in.representative_income 110389 Representative total house income in the dwelling unit is $110389 -in.representative_income 110396 Representative total house income in the dwelling unit is $110396 -in.representative_income 110399 Representative total house income in the dwelling unit is $110399 -in.representative_income 110402 Representative total house income in the dwelling unit is $110402 -in.representative_income 110409 Representative total house income in the dwelling unit is $110409 -in.representative_income 110412 Representative total house income in the dwelling unit is $110412 -in.representative_income 110413 Representative total house income in the dwelling unit is $110413 -in.representative_income 110417 Representative total house income in the dwelling unit is $110417 -in.representative_income 110420 Representative total house income in the dwelling unit is $110420 -in.representative_income 110424 Representative total house income in the dwelling unit is $110424 -in.representative_income 110429 Representative total house income in the dwelling unit is $110429 -in.representative_income 110431 Representative total house income in the dwelling unit is $110431 -in.representative_income 110434 Representative total house income in the dwelling unit is $110434 -in.representative_income 110438 Representative total house income in the dwelling unit is $110438 -in.representative_income 110449 Representative total house income in the dwelling unit is $110449 -in.representative_income 110458 Representative total house income in the dwelling unit is $110458 -in.representative_income 110459 Representative total house income in the dwelling unit is $110459 -in.representative_income 110467 Representative total house income in the dwelling unit is $110467 -in.representative_income 110468 Representative total house income in the dwelling unit is $110468 -in.representative_income 110470 Representative total house income in the dwelling unit is $110470 -in.representative_income 110510 Representative total house income in the dwelling unit is $110510 -in.representative_income 110520 Representative total house income in the dwelling unit is $110520 -in.representative_income 110522 Representative total house income in the dwelling unit is $110522 -in.representative_income 110523 Representative total house income in the dwelling unit is $110523 -in.representative_income 110530 Representative total house income in the dwelling unit is $110530 -in.representative_income 110533 Representative total house income in the dwelling unit is $110533 -in.representative_income 110556 Representative total house income in the dwelling unit is $110556 -in.representative_income 110560 Representative total house income in the dwelling unit is $110560 -in.representative_income 110561 Representative total house income in the dwelling unit is $110561 -in.representative_income 110566 Representative total house income in the dwelling unit is $110566 -in.representative_income 110568 Representative total house income in the dwelling unit is $110568 -in.representative_income 110570 Representative total house income in the dwelling unit is $110570 -in.representative_income 110571 Representative total house income in the dwelling unit is $110571 -in.representative_income 110572 Representative total house income in the dwelling unit is $110572 -in.representative_income 110576 Representative total house income in the dwelling unit is $110576 -in.representative_income 110586 Representative total house income in the dwelling unit is $110586 -in.representative_income 110587 Representative total house income in the dwelling unit is $110587 -in.representative_income 110593 Representative total house income in the dwelling unit is $110593 -in.representative_income 110598 Representative total house income in the dwelling unit is $110598 -in.representative_income 110603 Representative total house income in the dwelling unit is $110603 -in.representative_income 110607 Representative total house income in the dwelling unit is $110607 -in.representative_income 110611 Representative total house income in the dwelling unit is $110611 -in.representative_income 110621 Representative total house income in the dwelling unit is $110621 -in.representative_income 110623 Representative total house income in the dwelling unit is $110623 -in.representative_income 110628 Representative total house income in the dwelling unit is $110628 -in.representative_income 110640 Representative total house income in the dwelling unit is $110640 -in.representative_income 110642 Representative total house income in the dwelling unit is $110642 -in.representative_income 110645 Representative total house income in the dwelling unit is $110645 -in.representative_income 110647 Representative total house income in the dwelling unit is $110647 -in.representative_income 110649 Representative total house income in the dwelling unit is $110649 -in.representative_income 110659 Representative total house income in the dwelling unit is $110659 -in.representative_income 110662 Representative total house income in the dwelling unit is $110662 -in.representative_income 110672 Representative total house income in the dwelling unit is $110672 -in.representative_income 110675 Representative total house income in the dwelling unit is $110675 -in.representative_income 110692 Representative total house income in the dwelling unit is $110692 -in.representative_income 110705 Representative total house income in the dwelling unit is $110705 -in.representative_income 110712 Representative total house income in the dwelling unit is $110712 -in.representative_income 110716 Representative total house income in the dwelling unit is $110716 -in.representative_income 110723 Representative total house income in the dwelling unit is $110723 -in.representative_income 110733 Representative total house income in the dwelling unit is $110733 -in.representative_income 110741 Representative total house income in the dwelling unit is $110741 -in.representative_income 110744 Representative total house income in the dwelling unit is $110744 -in.representative_income 110748 Representative total house income in the dwelling unit is $110748 -in.representative_income 110749 Representative total house income in the dwelling unit is $110749 -in.representative_income 110755 Representative total house income in the dwelling unit is $110755 -in.representative_income 110766 Representative total house income in the dwelling unit is $110766 -in.representative_income 110770 Representative total house income in the dwelling unit is $110770 -in.representative_income 110776 Representative total house income in the dwelling unit is $110776 -in.representative_income 110778 Representative total house income in the dwelling unit is $110778 -in.representative_income 110780 Representative total house income in the dwelling unit is $110780 -in.representative_income 110783 Representative total house income in the dwelling unit is $110783 -in.representative_income 110786 Representative total house income in the dwelling unit is $110786 -in.representative_income 110788 Representative total house income in the dwelling unit is $110788 -in.representative_income 110797 Representative total house income in the dwelling unit is $110797 -in.representative_income 110801 Representative total house income in the dwelling unit is $110801 -in.representative_income 110807 Representative total house income in the dwelling unit is $110807 -in.representative_income 110809 Representative total house income in the dwelling unit is $110809 -in.representative_income 110813 Representative total house income in the dwelling unit is $110813 -in.representative_income 110818 Representative total house income in the dwelling unit is $110818 -in.representative_income 110823 Representative total house income in the dwelling unit is $110823 -in.representative_income 110828 Representative total house income in the dwelling unit is $110828 -in.representative_income 110839 Representative total house income in the dwelling unit is $110839 -in.representative_income 110845 Representative total house income in the dwelling unit is $110845 -in.representative_income 110856 Representative total house income in the dwelling unit is $110856 -in.representative_income 110860 Representative total house income in the dwelling unit is $110860 -in.representative_income 110861 Representative total house income in the dwelling unit is $110861 -in.representative_income 110874 Representative total house income in the dwelling unit is $110874 -in.representative_income 110881 Representative total house income in the dwelling unit is $110881 -in.representative_income 110887 Representative total house income in the dwelling unit is $110887 -in.representative_income 110889 Representative total house income in the dwelling unit is $110889 -in.representative_income 110891 Representative total house income in the dwelling unit is $110891 -in.representative_income 110892 Representative total house income in the dwelling unit is $110892 -in.representative_income 110902 Representative total house income in the dwelling unit is $110902 -in.representative_income 110914 Representative total house income in the dwelling unit is $110914 -in.representative_income 110918 Representative total house income in the dwelling unit is $110918 -in.representative_income 110923 Representative total house income in the dwelling unit is $110923 -in.representative_income 110925 Representative total house income in the dwelling unit is $110925 -in.representative_income 110927 Representative total house income in the dwelling unit is $110927 -in.representative_income 110932 Representative total house income in the dwelling unit is $110932 -in.representative_income 110933 Representative total house income in the dwelling unit is $110933 -in.representative_income 110934 Representative total house income in the dwelling unit is $110934 -in.representative_income 110940 Representative total house income in the dwelling unit is $110940 -in.representative_income 110944 Representative total house income in the dwelling unit is $110944 -in.representative_income 110945 Representative total house income in the dwelling unit is $110945 -in.representative_income 110963 Representative total house income in the dwelling unit is $110963 -in.representative_income 110964 Representative total house income in the dwelling unit is $110964 -in.representative_income 110975 Representative total house income in the dwelling unit is $110975 -in.representative_income 110984 Representative total house income in the dwelling unit is $110984 -in.representative_income 110986 Representative total house income in the dwelling unit is $110986 -in.representative_income 110989 Representative total house income in the dwelling unit is $110989 -in.representative_income 110995 Representative total house income in the dwelling unit is $110995 -in.representative_income 110997 Representative total house income in the dwelling unit is $110997 -in.representative_income 111003 Representative total house income in the dwelling unit is $111003 -in.representative_income 111005 Representative total house income in the dwelling unit is $111005 -in.representative_income 111007 Representative total house income in the dwelling unit is $111007 -in.representative_income 111015 Representative total house income in the dwelling unit is $111015 -in.representative_income 111018 Representative total house income in the dwelling unit is $111018 -in.representative_income 111025 Representative total house income in the dwelling unit is $111025 -in.representative_income 111029 Representative total house income in the dwelling unit is $111029 -in.representative_income 111035 Representative total house income in the dwelling unit is $111035 -in.representative_income 111037 Representative total house income in the dwelling unit is $111037 -in.representative_income 111040 Representative total house income in the dwelling unit is $111040 -in.representative_income 111050 Representative total house income in the dwelling unit is $111050 -in.representative_income 111059 Representative total house income in the dwelling unit is $111059 -in.representative_income 111072 Representative total house income in the dwelling unit is $111072 -in.representative_income 111081 Representative total house income in the dwelling unit is $111081 -in.representative_income 111087 Representative total house income in the dwelling unit is $111087 -in.representative_income 111102 Representative total house income in the dwelling unit is $111102 -in.representative_income 111103 Representative total house income in the dwelling unit is $111103 -in.representative_income 111105 Representative total house income in the dwelling unit is $111105 -in.representative_income 111116 Representative total house income in the dwelling unit is $111116 -in.representative_income 111126 Representative total house income in the dwelling unit is $111126 -in.representative_income 111136 Representative total house income in the dwelling unit is $111136 -in.representative_income 111137 Representative total house income in the dwelling unit is $111137 -in.representative_income 111139 Representative total house income in the dwelling unit is $111139 -in.representative_income 111155 Representative total house income in the dwelling unit is $111155 -in.representative_income 111156 Representative total house income in the dwelling unit is $111156 -in.representative_income 111168 Representative total house income in the dwelling unit is $111168 -in.representative_income 111170 Representative total house income in the dwelling unit is $111170 -in.representative_income 111180 Representative total house income in the dwelling unit is $111180 -in.representative_income 111187 Representative total house income in the dwelling unit is $111187 -in.representative_income 111190 Representative total house income in the dwelling unit is $111190 -in.representative_income 111191 Representative total house income in the dwelling unit is $111191 -in.representative_income 111197 Representative total house income in the dwelling unit is $111197 -in.representative_income 111210 Representative total house income in the dwelling unit is $111210 -in.representative_income 111217 Representative total house income in the dwelling unit is $111217 -in.representative_income 111232 Representative total house income in the dwelling unit is $111232 -in.representative_income 111237 Representative total house income in the dwelling unit is $111237 -in.representative_income 111242 Representative total house income in the dwelling unit is $111242 -in.representative_income 111247 Representative total house income in the dwelling unit is $111247 -in.representative_income 111252 Representative total house income in the dwelling unit is $111252 -in.representative_income 111261 Representative total house income in the dwelling unit is $111261 -in.representative_income 111267 Representative total house income in the dwelling unit is $111267 -in.representative_income 111269 Representative total house income in the dwelling unit is $111269 -in.representative_income 111274 Representative total house income in the dwelling unit is $111274 -in.representative_income 111282 Representative total house income in the dwelling unit is $111282 -in.representative_income 111284 Representative total house income in the dwelling unit is $111284 -in.representative_income 111288 Representative total house income in the dwelling unit is $111288 -in.representative_income 111294 Representative total house income in the dwelling unit is $111294 -in.representative_income 111298 Representative total house income in the dwelling unit is $111298 -in.representative_income 111300 Representative total house income in the dwelling unit is $111300 -in.representative_income 111307 Representative total house income in the dwelling unit is $111307 -in.representative_income 111310 Representative total house income in the dwelling unit is $111310 -in.representative_income 111316 Representative total house income in the dwelling unit is $111316 -in.representative_income 111318 Representative total house income in the dwelling unit is $111318 -in.representative_income 111332 Representative total house income in the dwelling unit is $111332 -in.representative_income 111335 Representative total house income in the dwelling unit is $111335 -in.representative_income 111343 Representative total house income in the dwelling unit is $111343 -in.representative_income 111345 Representative total house income in the dwelling unit is $111345 -in.representative_income 111366 Representative total house income in the dwelling unit is $111366 -in.representative_income 111368 Representative total house income in the dwelling unit is $111368 -in.representative_income 111376 Representative total house income in the dwelling unit is $111376 -in.representative_income 111387 Representative total house income in the dwelling unit is $111387 -in.representative_income 111397 Representative total house income in the dwelling unit is $111397 -in.representative_income 111407 Representative total house income in the dwelling unit is $111407 -in.representative_income 111419 Representative total house income in the dwelling unit is $111419 -in.representative_income 111424 Representative total house income in the dwelling unit is $111424 -in.representative_income 111429 Representative total house income in the dwelling unit is $111429 -in.representative_income 111430 Representative total house income in the dwelling unit is $111430 -in.representative_income 111431 Representative total house income in the dwelling unit is $111431 -in.representative_income 111449 Representative total house income in the dwelling unit is $111449 -in.representative_income 111462 Representative total house income in the dwelling unit is $111462 -in.representative_income 111470 Representative total house income in the dwelling unit is $111470 -in.representative_income 111471 Representative total house income in the dwelling unit is $111471 -in.representative_income 111483 Representative total house income in the dwelling unit is $111483 -in.representative_income 111500 Representative total house income in the dwelling unit is $111500 -in.representative_income 111505 Representative total house income in the dwelling unit is $111505 -in.representative_income 111520 Representative total house income in the dwelling unit is $111520 -in.representative_income 111521 Representative total house income in the dwelling unit is $111521 -in.representative_income 111531 Representative total house income in the dwelling unit is $111531 -in.representative_income 111542 Representative total house income in the dwelling unit is $111542 -in.representative_income 111549 Representative total house income in the dwelling unit is $111549 -in.representative_income 111559 Representative total house income in the dwelling unit is $111559 -in.representative_income 111567 Representative total house income in the dwelling unit is $111567 -in.representative_income 111572 Representative total house income in the dwelling unit is $111572 -in.representative_income 111574 Representative total house income in the dwelling unit is $111574 -in.representative_income 111578 Representative total house income in the dwelling unit is $111578 -in.representative_income 111581 Representative total house income in the dwelling unit is $111581 -in.representative_income 111593 Representative total house income in the dwelling unit is $111593 -in.representative_income 111603 Representative total house income in the dwelling unit is $111603 -in.representative_income 111613 Representative total house income in the dwelling unit is $111613 -in.representative_income 111621 Representative total house income in the dwelling unit is $111621 -in.representative_income 111634 Representative total house income in the dwelling unit is $111634 -in.representative_income 111639 Representative total house income in the dwelling unit is $111639 -in.representative_income 111643 Representative total house income in the dwelling unit is $111643 -in.representative_income 111650 Representative total house income in the dwelling unit is $111650 -in.representative_income 111656 Representative total house income in the dwelling unit is $111656 -in.representative_income 111660 Representative total house income in the dwelling unit is $111660 -in.representative_income 111665 Representative total house income in the dwelling unit is $111665 -in.representative_income 111667 Representative total house income in the dwelling unit is $111667 -in.representative_income 111672 Representative total house income in the dwelling unit is $111672 -in.representative_income 111683 Representative total house income in the dwelling unit is $111683 -in.representative_income 111685 Representative total house income in the dwelling unit is $111685 -in.representative_income 111692 Representative total house income in the dwelling unit is $111692 -in.representative_income 111704 Representative total house income in the dwelling unit is $111704 -in.representative_income 111706 Representative total house income in the dwelling unit is $111706 -in.representative_income 111707 Representative total house income in the dwelling unit is $111707 -in.representative_income 111718 Representative total house income in the dwelling unit is $111718 -in.representative_income 111721 Representative total house income in the dwelling unit is $111721 -in.representative_income 111722 Representative total house income in the dwelling unit is $111722 -in.representative_income 111723 Representative total house income in the dwelling unit is $111723 -in.representative_income 111735 Representative total house income in the dwelling unit is $111735 -in.representative_income 111740 Representative total house income in the dwelling unit is $111740 -in.representative_income 111742 Representative total house income in the dwelling unit is $111742 -in.representative_income 111746 Representative total house income in the dwelling unit is $111746 -in.representative_income 111755 Representative total house income in the dwelling unit is $111755 -in.representative_income 111757 Representative total house income in the dwelling unit is $111757 -in.representative_income 111761 Representative total house income in the dwelling unit is $111761 -in.representative_income 111762 Representative total house income in the dwelling unit is $111762 -in.representative_income 111773 Representative total house income in the dwelling unit is $111773 -in.representative_income 111774 Representative total house income in the dwelling unit is $111774 -in.representative_income 111778 Representative total house income in the dwelling unit is $111778 -in.representative_income 111788 Representative total house income in the dwelling unit is $111788 -in.representative_income 111789 Representative total house income in the dwelling unit is $111789 -in.representative_income 111796 Representative total house income in the dwelling unit is $111796 -in.representative_income 111799 Representative total house income in the dwelling unit is $111799 -in.representative_income 111800 Representative total house income in the dwelling unit is $111800 -in.representative_income 111809 Representative total house income in the dwelling unit is $111809 -in.representative_income 111810 Representative total house income in the dwelling unit is $111810 -in.representative_income 111823 Representative total house income in the dwelling unit is $111823 -in.representative_income 111828 Representative total house income in the dwelling unit is $111828 -in.representative_income 111830 Representative total house income in the dwelling unit is $111830 -in.representative_income 111832 Representative total house income in the dwelling unit is $111832 -in.representative_income 111833 Representative total house income in the dwelling unit is $111833 -in.representative_income 111841 Representative total house income in the dwelling unit is $111841 -in.representative_income 111843 Representative total house income in the dwelling unit is $111843 -in.representative_income 111850 Representative total house income in the dwelling unit is $111850 -in.representative_income 111853 Representative total house income in the dwelling unit is $111853 -in.representative_income 111861 Representative total house income in the dwelling unit is $111861 -in.representative_income 111864 Representative total house income in the dwelling unit is $111864 -in.representative_income 111869 Representative total house income in the dwelling unit is $111869 -in.representative_income 111882 Representative total house income in the dwelling unit is $111882 -in.representative_income 111883 Representative total house income in the dwelling unit is $111883 -in.representative_income 111893 Representative total house income in the dwelling unit is $111893 -in.representative_income 111894 Representative total house income in the dwelling unit is $111894 -in.representative_income 111904 Representative total house income in the dwelling unit is $111904 -in.representative_income 111907 Representative total house income in the dwelling unit is $111907 -in.representative_income 111913 Representative total house income in the dwelling unit is $111913 -in.representative_income 111915 Representative total house income in the dwelling unit is $111915 -in.representative_income 111918 Representative total house income in the dwelling unit is $111918 -in.representative_income 111924 Representative total house income in the dwelling unit is $111924 -in.representative_income 111925 Representative total house income in the dwelling unit is $111925 -in.representative_income 111936 Representative total house income in the dwelling unit is $111936 -in.representative_income 111961 Representative total house income in the dwelling unit is $111961 -in.representative_income 111999 Representative total house income in the dwelling unit is $111999 -in.representative_income 112002 Representative total house income in the dwelling unit is $112002 -in.representative_income 112009 Representative total house income in the dwelling unit is $112009 -in.representative_income 112016 Representative total house income in the dwelling unit is $112016 -in.representative_income 112025 Representative total house income in the dwelling unit is $112025 -in.representative_income 112034 Representative total house income in the dwelling unit is $112034 -in.representative_income 112035 Representative total house income in the dwelling unit is $112035 -in.representative_income 112044 Representative total house income in the dwelling unit is $112044 -in.representative_income 112045 Representative total house income in the dwelling unit is $112045 -in.representative_income 112055 Representative total house income in the dwelling unit is $112055 -in.representative_income 112068 Representative total house income in the dwelling unit is $112068 -in.representative_income 112076 Representative total house income in the dwelling unit is $112076 -in.representative_income 112078 Representative total house income in the dwelling unit is $112078 -in.representative_income 112086 Representative total house income in the dwelling unit is $112086 -in.representative_income 112104 Representative total house income in the dwelling unit is $112104 -in.representative_income 112111 Representative total house income in the dwelling unit is $112111 -in.representative_income 112118 Representative total house income in the dwelling unit is $112118 -in.representative_income 112121 Representative total house income in the dwelling unit is $112121 -in.representative_income 112126 Representative total house income in the dwelling unit is $112126 -in.representative_income 112153 Representative total house income in the dwelling unit is $112153 -in.representative_income 112164 Representative total house income in the dwelling unit is $112164 -in.representative_income 112168 Representative total house income in the dwelling unit is $112168 -in.representative_income 112176 Representative total house income in the dwelling unit is $112176 -in.representative_income 112177 Representative total house income in the dwelling unit is $112177 -in.representative_income 112207 Representative total house income in the dwelling unit is $112207 -in.representative_income 112208 Representative total house income in the dwelling unit is $112208 -in.representative_income 112210 Representative total house income in the dwelling unit is $112210 -in.representative_income 112222 Representative total house income in the dwelling unit is $112222 -in.representative_income 112226 Representative total house income in the dwelling unit is $112226 -in.representative_income 112227 Representative total house income in the dwelling unit is $112227 -in.representative_income 112229 Representative total house income in the dwelling unit is $112229 -in.representative_income 112232 Representative total house income in the dwelling unit is $112232 -in.representative_income 112247 Representative total house income in the dwelling unit is $112247 -in.representative_income 112250 Representative total house income in the dwelling unit is $112250 -in.representative_income 112261 Representative total house income in the dwelling unit is $112261 -in.representative_income 112271 Representative total house income in the dwelling unit is $112271 -in.representative_income 112283 Representative total house income in the dwelling unit is $112283 -in.representative_income 112288 Representative total house income in the dwelling unit is $112288 -in.representative_income 112295 Representative total house income in the dwelling unit is $112295 -in.representative_income 112305 Representative total house income in the dwelling unit is $112305 -in.representative_income 112308 Representative total house income in the dwelling unit is $112308 -in.representative_income 112316 Representative total house income in the dwelling unit is $112316 -in.representative_income 112325 Representative total house income in the dwelling unit is $112325 -in.representative_income 112326 Representative total house income in the dwelling unit is $112326 -in.representative_income 112328 Representative total house income in the dwelling unit is $112328 -in.representative_income 112336 Representative total house income in the dwelling unit is $112336 -in.representative_income 112338 Representative total house income in the dwelling unit is $112338 -in.representative_income 112345 Representative total house income in the dwelling unit is $112345 -in.representative_income 112368 Representative total house income in the dwelling unit is $112368 -in.representative_income 112369 Representative total house income in the dwelling unit is $112369 -in.representative_income 112370 Representative total house income in the dwelling unit is $112370 -in.representative_income 112378 Representative total house income in the dwelling unit is $112378 -in.representative_income 112390 Representative total house income in the dwelling unit is $112390 -in.representative_income 112409 Representative total house income in the dwelling unit is $112409 -in.representative_income 112412 Representative total house income in the dwelling unit is $112412 -in.representative_income 112415 Representative total house income in the dwelling unit is $112415 -in.representative_income 112418 Representative total house income in the dwelling unit is $112418 -in.representative_income 112421 Representative total house income in the dwelling unit is $112421 -in.representative_income 112423 Representative total house income in the dwelling unit is $112423 -in.representative_income 112428 Representative total house income in the dwelling unit is $112428 -in.representative_income 112429 Representative total house income in the dwelling unit is $112429 -in.representative_income 112466 Representative total house income in the dwelling unit is $112466 -in.representative_income 112471 Representative total house income in the dwelling unit is $112471 -in.representative_income 112477 Representative total house income in the dwelling unit is $112477 -in.representative_income 112480 Representative total house income in the dwelling unit is $112480 -in.representative_income 112496 Representative total house income in the dwelling unit is $112496 -in.representative_income 112497 Representative total house income in the dwelling unit is $112497 -in.representative_income 112498 Representative total house income in the dwelling unit is $112498 -in.representative_income 112502 Representative total house income in the dwelling unit is $112502 -in.representative_income 112511 Representative total house income in the dwelling unit is $112511 -in.representative_income 112526 Representative total house income in the dwelling unit is $112526 -in.representative_income 112530 Representative total house income in the dwelling unit is $112530 -in.representative_income 112531 Representative total house income in the dwelling unit is $112531 -in.representative_income 112532 Representative total house income in the dwelling unit is $112532 -in.representative_income 112538 Representative total house income in the dwelling unit is $112538 -in.representative_income 112540 Representative total house income in the dwelling unit is $112540 -in.representative_income 112550 Representative total house income in the dwelling unit is $112550 -in.representative_income 112583 Representative total house income in the dwelling unit is $112583 -in.representative_income 112585 Representative total house income in the dwelling unit is $112585 -in.representative_income 112605 Representative total house income in the dwelling unit is $112605 -in.representative_income 112621 Representative total house income in the dwelling unit is $112621 -in.representative_income 112629 Representative total house income in the dwelling unit is $112629 -in.representative_income 112631 Representative total house income in the dwelling unit is $112631 -in.representative_income 112632 Representative total house income in the dwelling unit is $112632 -in.representative_income 112634 Representative total house income in the dwelling unit is $112634 -in.representative_income 112639 Representative total house income in the dwelling unit is $112639 -in.representative_income 112641 Representative total house income in the dwelling unit is $112641 -in.representative_income 112650 Representative total house income in the dwelling unit is $112650 -in.representative_income 112653 Representative total house income in the dwelling unit is $112653 -in.representative_income 112655 Representative total house income in the dwelling unit is $112655 -in.representative_income 112666 Representative total house income in the dwelling unit is $112666 -in.representative_income 112693 Representative total house income in the dwelling unit is $112693 -in.representative_income 112696 Representative total house income in the dwelling unit is $112696 -in.representative_income 112697 Representative total house income in the dwelling unit is $112697 -in.representative_income 112702 Representative total house income in the dwelling unit is $112702 -in.representative_income 112704 Representative total house income in the dwelling unit is $112704 -in.representative_income 112708 Representative total house income in the dwelling unit is $112708 -in.representative_income 112712 Representative total house income in the dwelling unit is $112712 -in.representative_income 112714 Representative total house income in the dwelling unit is $112714 -in.representative_income 112717 Representative total house income in the dwelling unit is $112717 -in.representative_income 112723 Representative total house income in the dwelling unit is $112723 -in.representative_income 112732 Representative total house income in the dwelling unit is $112732 -in.representative_income 112734 Representative total house income in the dwelling unit is $112734 -in.representative_income 112737 Representative total house income in the dwelling unit is $112737 -in.representative_income 112752 Representative total house income in the dwelling unit is $112752 -in.representative_income 112772 Representative total house income in the dwelling unit is $112772 -in.representative_income 112790 Representative total house income in the dwelling unit is $112790 -in.representative_income 112801 Representative total house income in the dwelling unit is $112801 -in.representative_income 112820 Representative total house income in the dwelling unit is $112820 -in.representative_income 112821 Representative total house income in the dwelling unit is $112821 -in.representative_income 112833 Representative total house income in the dwelling unit is $112833 -in.representative_income 112841 Representative total house income in the dwelling unit is $112841 -in.representative_income 112843 Representative total house income in the dwelling unit is $112843 -in.representative_income 112851 Representative total house income in the dwelling unit is $112851 -in.representative_income 112861 Representative total house income in the dwelling unit is $112861 -in.representative_income 112873 Representative total house income in the dwelling unit is $112873 -in.representative_income 112874 Representative total house income in the dwelling unit is $112874 -in.representative_income 112876 Representative total house income in the dwelling unit is $112876 -in.representative_income 112884 Representative total house income in the dwelling unit is $112884 -in.representative_income 112885 Representative total house income in the dwelling unit is $112885 -in.representative_income 112901 Representative total house income in the dwelling unit is $112901 -in.representative_income 112905 Representative total house income in the dwelling unit is $112905 -in.representative_income 112910 Representative total house income in the dwelling unit is $112910 -in.representative_income 112911 Representative total house income in the dwelling unit is $112911 -in.representative_income 112913 Representative total house income in the dwelling unit is $112913 -in.representative_income 112926 Representative total house income in the dwelling unit is $112926 -in.representative_income 112934 Representative total house income in the dwelling unit is $112934 -in.representative_income 112944 Representative total house income in the dwelling unit is $112944 -in.representative_income 112948 Representative total house income in the dwelling unit is $112948 -in.representative_income 112954 Representative total house income in the dwelling unit is $112954 -in.representative_income 112964 Representative total house income in the dwelling unit is $112964 -in.representative_income 112996 Representative total house income in the dwelling unit is $112996 -in.representative_income 113015 Representative total house income in the dwelling unit is $113015 -in.representative_income 113017 Representative total house income in the dwelling unit is $113017 -in.representative_income 113022 Representative total house income in the dwelling unit is $113022 -in.representative_income 113034 Representative total house income in the dwelling unit is $113034 -in.representative_income 113035 Representative total house income in the dwelling unit is $113035 -in.representative_income 113046 Representative total house income in the dwelling unit is $113046 -in.representative_income 113047 Representative total house income in the dwelling unit is $113047 -in.representative_income 113054 Representative total house income in the dwelling unit is $113054 -in.representative_income 113061 Representative total house income in the dwelling unit is $113061 -in.representative_income 113075 Representative total house income in the dwelling unit is $113075 -in.representative_income 113076 Representative total house income in the dwelling unit is $113076 -in.representative_income 113078 Representative total house income in the dwelling unit is $113078 -in.representative_income 113128 Representative total house income in the dwelling unit is $113128 -in.representative_income 113136 Representative total house income in the dwelling unit is $113136 -in.representative_income 113141 Representative total house income in the dwelling unit is $113141 -in.representative_income 113151 Representative total house income in the dwelling unit is $113151 -in.representative_income 113159 Representative total house income in the dwelling unit is $113159 -in.representative_income 113167 Representative total house income in the dwelling unit is $113167 -in.representative_income 113187 Representative total house income in the dwelling unit is $113187 -in.representative_income 113191 Representative total house income in the dwelling unit is $113191 -in.representative_income 113195 Representative total house income in the dwelling unit is $113195 -in.representative_income 113204 Representative total house income in the dwelling unit is $113204 -in.representative_income 113210 Representative total house income in the dwelling unit is $113210 -in.representative_income 113233 Representative total house income in the dwelling unit is $113233 -in.representative_income 113237 Representative total house income in the dwelling unit is $113237 -in.representative_income 113238 Representative total house income in the dwelling unit is $113238 -in.representative_income 113249 Representative total house income in the dwelling unit is $113249 -in.representative_income 113253 Representative total house income in the dwelling unit is $113253 -in.representative_income 113264 Representative total house income in the dwelling unit is $113264 -in.representative_income 113278 Representative total house income in the dwelling unit is $113278 -in.representative_income 113281 Representative total house income in the dwelling unit is $113281 -in.representative_income 113288 Representative total house income in the dwelling unit is $113288 -in.representative_income 113298 Representative total house income in the dwelling unit is $113298 -in.representative_income 113302 Representative total house income in the dwelling unit is $113302 -in.representative_income 113305 Representative total house income in the dwelling unit is $113305 -in.representative_income 113307 Representative total house income in the dwelling unit is $113307 -in.representative_income 113338 Representative total house income in the dwelling unit is $113338 -in.representative_income 113341 Representative total house income in the dwelling unit is $113341 -in.representative_income 113356 Representative total house income in the dwelling unit is $113356 -in.representative_income 113357 Representative total house income in the dwelling unit is $113357 -in.representative_income 113369 Representative total house income in the dwelling unit is $113369 -in.representative_income 113370 Representative total house income in the dwelling unit is $113370 -in.representative_income 113423 Representative total house income in the dwelling unit is $113423 -in.representative_income 113431 Representative total house income in the dwelling unit is $113431 -in.representative_income 113439 Representative total house income in the dwelling unit is $113439 -in.representative_income 113449 Representative total house income in the dwelling unit is $113449 -in.representative_income 113450 Representative total house income in the dwelling unit is $113450 -in.representative_income 113451 Representative total house income in the dwelling unit is $113451 -in.representative_income 113460 Representative total house income in the dwelling unit is $113460 -in.representative_income 113463 Representative total house income in the dwelling unit is $113463 -in.representative_income 113470 Representative total house income in the dwelling unit is $113470 -in.representative_income 113476 Representative total house income in the dwelling unit is $113476 -in.representative_income 113511 Representative total house income in the dwelling unit is $113511 -in.representative_income 113518 Representative total house income in the dwelling unit is $113518 -in.representative_income 113539 Representative total house income in the dwelling unit is $113539 -in.representative_income 113540 Representative total house income in the dwelling unit is $113540 -in.representative_income 113542 Representative total house income in the dwelling unit is $113542 -in.representative_income 113545 Representative total house income in the dwelling unit is $113545 -in.representative_income 113551 Representative total house income in the dwelling unit is $113551 -in.representative_income 113557 Representative total house income in the dwelling unit is $113557 -in.representative_income 113563 Representative total house income in the dwelling unit is $113563 -in.representative_income 113571 Representative total house income in the dwelling unit is $113571 -in.representative_income 113581 Representative total house income in the dwelling unit is $113581 -in.representative_income 113601 Representative total house income in the dwelling unit is $113601 -in.representative_income 113614 Representative total house income in the dwelling unit is $113614 -in.representative_income 113615 Representative total house income in the dwelling unit is $113615 -in.representative_income 113623 Representative total house income in the dwelling unit is $113623 -in.representative_income 113641 Representative total house income in the dwelling unit is $113641 -in.representative_income 113665 Representative total house income in the dwelling unit is $113665 -in.representative_income 113666 Representative total house income in the dwelling unit is $113666 -in.representative_income 113677 Representative total house income in the dwelling unit is $113677 -in.representative_income 113678 Representative total house income in the dwelling unit is $113678 -in.representative_income 113679 Representative total house income in the dwelling unit is $113679 -in.representative_income 113687 Representative total house income in the dwelling unit is $113687 -in.representative_income 113698 Representative total house income in the dwelling unit is $113698 -in.representative_income 113707 Representative total house income in the dwelling unit is $113707 -in.representative_income 113709 Representative total house income in the dwelling unit is $113709 -in.representative_income 113717 Representative total house income in the dwelling unit is $113717 -in.representative_income 113742 Representative total house income in the dwelling unit is $113742 -in.representative_income 113769 Representative total house income in the dwelling unit is $113769 -in.representative_income 113774 Representative total house income in the dwelling unit is $113774 -in.representative_income 113786 Representative total house income in the dwelling unit is $113786 -in.representative_income 113790 Representative total house income in the dwelling unit is $113790 -in.representative_income 113792 Representative total house income in the dwelling unit is $113792 -in.representative_income 113793 Representative total house income in the dwelling unit is $113793 -in.representative_income 113796 Representative total house income in the dwelling unit is $113796 -in.representative_income 113798 Representative total house income in the dwelling unit is $113798 -in.representative_income 113817 Representative total house income in the dwelling unit is $113817 -in.representative_income 113828 Representative total house income in the dwelling unit is $113828 -in.representative_income 113833 Representative total house income in the dwelling unit is $113833 -in.representative_income 113839 Representative total house income in the dwelling unit is $113839 -in.representative_income 113842 Representative total house income in the dwelling unit is $113842 -in.representative_income 113843 Representative total house income in the dwelling unit is $113843 -in.representative_income 113845 Representative total house income in the dwelling unit is $113845 -in.representative_income 113872 Representative total house income in the dwelling unit is $113872 -in.representative_income 113882 Representative total house income in the dwelling unit is $113882 -in.representative_income 113887 Representative total house income in the dwelling unit is $113887 -in.representative_income 113893 Representative total house income in the dwelling unit is $113893 -in.representative_income 113897 Representative total house income in the dwelling unit is $113897 -in.representative_income 113908 Representative total house income in the dwelling unit is $113908 -in.representative_income 113911 Representative total house income in the dwelling unit is $113911 -in.representative_income 113919 Representative total house income in the dwelling unit is $113919 -in.representative_income 113944 Representative total house income in the dwelling unit is $113944 -in.representative_income 113946 Representative total house income in the dwelling unit is $113946 -in.representative_income 113947 Representative total house income in the dwelling unit is $113947 -in.representative_income 113950 Representative total house income in the dwelling unit is $113950 -in.representative_income 113975 Representative total house income in the dwelling unit is $113975 -in.representative_income 113990 Representative total house income in the dwelling unit is $113990 -in.representative_income 114001 Representative total house income in the dwelling unit is $114001 -in.representative_income 114002 Representative total house income in the dwelling unit is $114002 -in.representative_income 114037 Representative total house income in the dwelling unit is $114037 -in.representative_income 114045 Representative total house income in the dwelling unit is $114045 -in.representative_income 114079 Representative total house income in the dwelling unit is $114079 -in.representative_income 114097 Representative total house income in the dwelling unit is $114097 -in.representative_income 114098 Representative total house income in the dwelling unit is $114098 -in.representative_income 114107 Representative total house income in the dwelling unit is $114107 -in.representative_income 114109 Representative total house income in the dwelling unit is $114109 -in.representative_income 114141 Representative total house income in the dwelling unit is $114141 -in.representative_income 114146 Representative total house income in the dwelling unit is $114146 -in.representative_income 114150 Representative total house income in the dwelling unit is $114150 -in.representative_income 114157 Representative total house income in the dwelling unit is $114157 -in.representative_income 114182 Representative total house income in the dwelling unit is $114182 -in.representative_income 114205 Representative total house income in the dwelling unit is $114205 -in.representative_income 114214 Representative total house income in the dwelling unit is $114214 -in.representative_income 114215 Representative total house income in the dwelling unit is $114215 -in.representative_income 114235 Representative total house income in the dwelling unit is $114235 -in.representative_income 114247 Representative total house income in the dwelling unit is $114247 -in.representative_income 114259 Representative total house income in the dwelling unit is $114259 -in.representative_income 114284 Representative total house income in the dwelling unit is $114284 -in.representative_income 114313 Representative total house income in the dwelling unit is $114313 -in.representative_income 114319 Representative total house income in the dwelling unit is $114319 -in.representative_income 114322 Representative total house income in the dwelling unit is $114322 -in.representative_income 114340 Representative total house income in the dwelling unit is $114340 -in.representative_income 114348 Representative total house income in the dwelling unit is $114348 -in.representative_income 114365 Representative total house income in the dwelling unit is $114365 -in.representative_income 114369 Representative total house income in the dwelling unit is $114369 -in.representative_income 114376 Representative total house income in the dwelling unit is $114376 -in.representative_income 114388 Representative total house income in the dwelling unit is $114388 -in.representative_income 114389 Representative total house income in the dwelling unit is $114389 -in.representative_income 114421 Representative total house income in the dwelling unit is $114421 -in.representative_income 114425 Representative total house income in the dwelling unit is $114425 -in.representative_income 114430 Representative total house income in the dwelling unit is $114430 -in.representative_income 114449 Representative total house income in the dwelling unit is $114449 -in.representative_income 114467 Representative total house income in the dwelling unit is $114467 -in.representative_income 114480 Representative total house income in the dwelling unit is $114480 -in.representative_income 114481 Representative total house income in the dwelling unit is $114481 -in.representative_income 114490 Representative total house income in the dwelling unit is $114490 -in.representative_income 114491 Representative total house income in the dwelling unit is $114491 -in.representative_income 114509 Representative total house income in the dwelling unit is $114509 -in.representative_income 114530 Representative total house income in the dwelling unit is $114530 -in.representative_income 114537 Representative total house income in the dwelling unit is $114537 -in.representative_income 114550 Representative total house income in the dwelling unit is $114550 -in.representative_income 114552 Representative total house income in the dwelling unit is $114552 -in.representative_income 114594 Representative total house income in the dwelling unit is $114594 -in.representative_income 114598 Representative total house income in the dwelling unit is $114598 -in.representative_income 114606 Representative total house income in the dwelling unit is $114606 -in.representative_income 114615 Representative total house income in the dwelling unit is $114615 -in.representative_income 114635 Representative total house income in the dwelling unit is $114635 -in.representative_income 114638 Representative total house income in the dwelling unit is $114638 -in.representative_income 114644 Representative total house income in the dwelling unit is $114644 -in.representative_income 114651 Representative total house income in the dwelling unit is $114651 -in.representative_income 114688 Representative total house income in the dwelling unit is $114688 -in.representative_income 114692 Representative total house income in the dwelling unit is $114692 -in.representative_income 114698 Representative total house income in the dwelling unit is $114698 -in.representative_income 114709 Representative total house income in the dwelling unit is $114709 -in.representative_income 114741 Representative total house income in the dwelling unit is $114741 -in.representative_income 114746 Representative total house income in the dwelling unit is $114746 -in.representative_income 114752 Representative total house income in the dwelling unit is $114752 -in.representative_income 114801 Representative total house income in the dwelling unit is $114801 -in.representative_income 114803 Representative total house income in the dwelling unit is $114803 -in.representative_income 114847 Representative total house income in the dwelling unit is $114847 -in.representative_income 114853 Representative total house income in the dwelling unit is $114853 -in.representative_income 114854 Representative total house income in the dwelling unit is $114854 -in.representative_income 114855 Representative total house income in the dwelling unit is $114855 -in.representative_income 114859 Representative total house income in the dwelling unit is $114859 -in.representative_income 114860 Representative total house income in the dwelling unit is $114860 -in.representative_income 114894 Representative total house income in the dwelling unit is $114894 -in.representative_income 114903 Representative total house income in the dwelling unit is $114903 -in.representative_income 114952 Representative total house income in the dwelling unit is $114952 -in.representative_income 114955 Representative total house income in the dwelling unit is $114955 -in.representative_income 114962 Representative total house income in the dwelling unit is $114962 -in.representative_income 114967 Representative total house income in the dwelling unit is $114967 -in.representative_income 115007 Representative total house income in the dwelling unit is $115007 -in.representative_income 115016 Representative total house income in the dwelling unit is $115016 -in.representative_income 115031 Representative total house income in the dwelling unit is $115031 -in.representative_income 115056 Representative total house income in the dwelling unit is $115056 -in.representative_income 115057 Representative total house income in the dwelling unit is $115057 -in.representative_income 115070 Representative total house income in the dwelling unit is $115070 -in.representative_income 115074 Representative total house income in the dwelling unit is $115074 -in.representative_income 115110 Representative total house income in the dwelling unit is $115110 -in.representative_income 115120 Representative total house income in the dwelling unit is $115120 -in.representative_income 115124 Representative total house income in the dwelling unit is $115124 -in.representative_income 115136 Representative total house income in the dwelling unit is $115136 -in.representative_income 115157 Representative total house income in the dwelling unit is $115157 -in.representative_income 115162 Representative total house income in the dwelling unit is $115162 -in.representative_income 115163 Representative total house income in the dwelling unit is $115163 -in.representative_income 115178 Representative total house income in the dwelling unit is $115178 -in.representative_income 115181 Representative total house income in the dwelling unit is $115181 -in.representative_income 115213 Representative total house income in the dwelling unit is $115213 -in.representative_income 115247 Representative total house income in the dwelling unit is $115247 -in.representative_income 115258 Representative total house income in the dwelling unit is $115258 -in.representative_income 115268 Representative total house income in the dwelling unit is $115268 -in.representative_income 115277 Representative total house income in the dwelling unit is $115277 -in.representative_income 115287 Representative total house income in the dwelling unit is $115287 -in.representative_income 115288 Representative total house income in the dwelling unit is $115288 -in.representative_income 115298 Representative total house income in the dwelling unit is $115298 -in.representative_income 115317 Representative total house income in the dwelling unit is $115317 -in.representative_income 115352 Representative total house income in the dwelling unit is $115352 -in.representative_income 115359 Representative total house income in the dwelling unit is $115359 -in.representative_income 115374 Representative total house income in the dwelling unit is $115374 -in.representative_income 115379 Representative total house income in the dwelling unit is $115379 -in.representative_income 115385 Representative total house income in the dwelling unit is $115385 -in.representative_income 115394 Representative total house income in the dwelling unit is $115394 -in.representative_income 115396 Representative total house income in the dwelling unit is $115396 -in.representative_income 115409 Representative total house income in the dwelling unit is $115409 -in.representative_income 115419 Representative total house income in the dwelling unit is $115419 -in.representative_income 115460 Representative total house income in the dwelling unit is $115460 -in.representative_income 115480 Representative total house income in the dwelling unit is $115480 -in.representative_income 115502 Representative total house income in the dwelling unit is $115502 -in.representative_income 115503 Representative total house income in the dwelling unit is $115503 -in.representative_income 115522 Representative total house income in the dwelling unit is $115522 -in.representative_income 115561 Representative total house income in the dwelling unit is $115561 -in.representative_income 115571 Representative total house income in the dwelling unit is $115571 -in.representative_income 115585 Representative total house income in the dwelling unit is $115585 -in.representative_income 115610 Representative total house income in the dwelling unit is $115610 -in.representative_income 115611 Representative total house income in the dwelling unit is $115611 -in.representative_income 115626 Representative total house income in the dwelling unit is $115626 -in.representative_income 115648 Representative total house income in the dwelling unit is $115648 -in.representative_income 115653 Representative total house income in the dwelling unit is $115653 -in.representative_income 115662 Representative total house income in the dwelling unit is $115662 -in.representative_income 115688 Representative total house income in the dwelling unit is $115688 -in.representative_income 115690 Representative total house income in the dwelling unit is $115690 -in.representative_income 115717 Representative total house income in the dwelling unit is $115717 -in.representative_income 115718 Representative total house income in the dwelling unit is $115718 -in.representative_income 115729 Representative total house income in the dwelling unit is $115729 -in.representative_income 115743 Representative total house income in the dwelling unit is $115743 -in.representative_income 115763 Representative total house income in the dwelling unit is $115763 -in.representative_income 115772 Representative total house income in the dwelling unit is $115772 -in.representative_income 115783 Representative total house income in the dwelling unit is $115783 -in.representative_income 115795 Representative total house income in the dwelling unit is $115795 -in.representative_income 115825 Representative total house income in the dwelling unit is $115825 -in.representative_income 115826 Representative total house income in the dwelling unit is $115826 -in.representative_income 115828 Representative total house income in the dwelling unit is $115828 -in.representative_income 115829 Representative total house income in the dwelling unit is $115829 -in.representative_income 115832 Representative total house income in the dwelling unit is $115832 -in.representative_income 115864 Representative total house income in the dwelling unit is $115864 -in.representative_income 115894 Representative total house income in the dwelling unit is $115894 -in.representative_income 115901 Representative total house income in the dwelling unit is $115901 -in.representative_income 115932 Representative total house income in the dwelling unit is $115932 -in.representative_income 115933 Representative total house income in the dwelling unit is $115933 -in.representative_income 115934 Representative total house income in the dwelling unit is $115934 -in.representative_income 115935 Representative total house income in the dwelling unit is $115935 -in.representative_income 115943 Representative total house income in the dwelling unit is $115943 -in.representative_income 115956 Representative total house income in the dwelling unit is $115956 -in.representative_income 115965 Representative total house income in the dwelling unit is $115965 -in.representative_income 115985 Representative total house income in the dwelling unit is $115985 -in.representative_income 115986 Representative total house income in the dwelling unit is $115986 -in.representative_income 115997 Representative total house income in the dwelling unit is $115997 -in.representative_income 116007 Representative total house income in the dwelling unit is $116007 -in.representative_income 116038 Representative total house income in the dwelling unit is $116038 -in.representative_income 116040 Representative total house income in the dwelling unit is $116040 -in.representative_income 116042 Representative total house income in the dwelling unit is $116042 -in.representative_income 116048 Representative total house income in the dwelling unit is $116048 -in.representative_income 116059 Representative total house income in the dwelling unit is $116059 -in.representative_income 116066 Representative total house income in the dwelling unit is $116066 -in.representative_income 116090 Representative total house income in the dwelling unit is $116090 -in.representative_income 116112 Representative total house income in the dwelling unit is $116112 -in.representative_income 116141 Representative total house income in the dwelling unit is $116141 -in.representative_income 116147 Representative total house income in the dwelling unit is $116147 -in.representative_income 116151 Representative total house income in the dwelling unit is $116151 -in.representative_income 116155 Representative total house income in the dwelling unit is $116155 -in.representative_income 116167 Representative total house income in the dwelling unit is $116167 -in.representative_income 116197 Representative total house income in the dwelling unit is $116197 -in.representative_income 116211 Representative total house income in the dwelling unit is $116211 -in.representative_income 116212 Representative total house income in the dwelling unit is $116212 -in.representative_income 116218 Representative total house income in the dwelling unit is $116218 -in.representative_income 116237 Representative total house income in the dwelling unit is $116237 -in.representative_income 116244 Representative total house income in the dwelling unit is $116244 -in.representative_income 116245 Representative total house income in the dwelling unit is $116245 -in.representative_income 116254 Representative total house income in the dwelling unit is $116254 -in.representative_income 116255 Representative total house income in the dwelling unit is $116255 -in.representative_income 116259 Representative total house income in the dwelling unit is $116259 -in.representative_income 116268 Representative total house income in the dwelling unit is $116268 -in.representative_income 116308 Representative total house income in the dwelling unit is $116308 -in.representative_income 116323 Representative total house income in the dwelling unit is $116323 -in.representative_income 116348 Representative total house income in the dwelling unit is $116348 -in.representative_income 116362 Representative total house income in the dwelling unit is $116362 -in.representative_income 116367 Representative total house income in the dwelling unit is $116367 -in.representative_income 116369 Representative total house income in the dwelling unit is $116369 -in.representative_income 116428 Representative total house income in the dwelling unit is $116428 -in.representative_income 116450 Representative total house income in the dwelling unit is $116450 -in.representative_income 116451 Representative total house income in the dwelling unit is $116451 -in.representative_income 116469 Representative total house income in the dwelling unit is $116469 -in.representative_income 116470 Representative total house income in the dwelling unit is $116470 -in.representative_income 116475 Representative total house income in the dwelling unit is $116475 -in.representative_income 116481 Representative total house income in the dwelling unit is $116481 -in.representative_income 116482 Representative total house income in the dwelling unit is $116482 -in.representative_income 116533 Representative total house income in the dwelling unit is $116533 -in.representative_income 116554 Representative total house income in the dwelling unit is $116554 -in.representative_income 116555 Representative total house income in the dwelling unit is $116555 -in.representative_income 116571 Representative total house income in the dwelling unit is $116571 -in.representative_income 116577 Representative total house income in the dwelling unit is $116577 -in.representative_income 116581 Representative total house income in the dwelling unit is $116581 -in.representative_income 116583 Representative total house income in the dwelling unit is $116583 -in.representative_income 116587 Representative total house income in the dwelling unit is $116587 -in.representative_income 116604 Representative total house income in the dwelling unit is $116604 -in.representative_income 116607 Representative total house income in the dwelling unit is $116607 -in.representative_income 116640 Representative total house income in the dwelling unit is $116640 -in.representative_income 116657 Representative total house income in the dwelling unit is $116657 -in.representative_income 116662 Representative total house income in the dwelling unit is $116662 -in.representative_income 116672 Representative total house income in the dwelling unit is $116672 -in.representative_income 116684 Representative total house income in the dwelling unit is $116684 -in.representative_income 116690 Representative total house income in the dwelling unit is $116690 -in.representative_income 116712 Representative total house income in the dwelling unit is $116712 -in.representative_income 116745 Representative total house income in the dwelling unit is $116745 -in.representative_income 116760 Representative total house income in the dwelling unit is $116760 -in.representative_income 116773 Representative total house income in the dwelling unit is $116773 -in.representative_income 116792 Representative total house income in the dwelling unit is $116792 -in.representative_income 116812 Representative total house income in the dwelling unit is $116812 -in.representative_income 116850 Representative total house income in the dwelling unit is $116850 -in.representative_income 116853 Representative total house income in the dwelling unit is $116853 -in.representative_income 116864 Representative total house income in the dwelling unit is $116864 -in.representative_income 116874 Representative total house income in the dwelling unit is $116874 -in.representative_income 116898 Representative total house income in the dwelling unit is $116898 -in.representative_income 116907 Representative total house income in the dwelling unit is $116907 -in.representative_income 116956 Representative total house income in the dwelling unit is $116956 -in.representative_income 116967 Representative total house income in the dwelling unit is $116967 -in.representative_income 116975 Representative total house income in the dwelling unit is $116975 -in.representative_income 117006 Representative total house income in the dwelling unit is $117006 -in.representative_income 117015 Representative total house income in the dwelling unit is $117015 -in.representative_income 117027 Representative total house income in the dwelling unit is $117027 -in.representative_income 117061 Representative total house income in the dwelling unit is $117061 -in.representative_income 117069 Representative total house income in the dwelling unit is $117069 -in.representative_income 117123 Representative total house income in the dwelling unit is $117123 -in.representative_income 117124 Representative total house income in the dwelling unit is $117124 -in.representative_income 117157 Representative total house income in the dwelling unit is $117157 -in.representative_income 117166 Representative total house income in the dwelling unit is $117166 -in.representative_income 117177 Representative total house income in the dwelling unit is $117177 -in.representative_income 117178 Representative total house income in the dwelling unit is $117178 -in.representative_income 117188 Representative total house income in the dwelling unit is $117188 -in.representative_income 117221 Representative total house income in the dwelling unit is $117221 -in.representative_income 117231 Representative total house income in the dwelling unit is $117231 -in.representative_income 117268 Representative total house income in the dwelling unit is $117268 -in.representative_income 117273 Representative total house income in the dwelling unit is $117273 -in.representative_income 117276 Representative total house income in the dwelling unit is $117276 -in.representative_income 117328 Representative total house income in the dwelling unit is $117328 -in.representative_income 117339 Representative total house income in the dwelling unit is $117339 -in.representative_income 117360 Representative total house income in the dwelling unit is $117360 -in.representative_income 117378 Representative total house income in the dwelling unit is $117378 -in.representative_income 117379 Representative total house income in the dwelling unit is $117379 -in.representative_income 117393 Representative total house income in the dwelling unit is $117393 -in.representative_income 117435 Representative total house income in the dwelling unit is $117435 -in.representative_income 117447 Representative total house income in the dwelling unit is $117447 -in.representative_income 117480 Representative total house income in the dwelling unit is $117480 -in.representative_income 117483 Representative total house income in the dwelling unit is $117483 -in.representative_income 117542 Representative total house income in the dwelling unit is $117542 -in.representative_income 117555 Representative total house income in the dwelling unit is $117555 -in.representative_income 117585 Representative total house income in the dwelling unit is $117585 -in.representative_income 117588 Representative total house income in the dwelling unit is $117588 -in.representative_income 117606 Representative total house income in the dwelling unit is $117606 -in.representative_income 117619 Representative total house income in the dwelling unit is $117619 -in.representative_income 117627 Representative total house income in the dwelling unit is $117627 -in.representative_income 117637 Representative total house income in the dwelling unit is $117637 -in.representative_income 117650 Representative total house income in the dwelling unit is $117650 -in.representative_income 117664 Representative total house income in the dwelling unit is $117664 -in.representative_income 117688 Representative total house income in the dwelling unit is $117688 -in.representative_income 117694 Representative total house income in the dwelling unit is $117694 -in.representative_income 117720 Representative total house income in the dwelling unit is $117720 -in.representative_income 117772 Representative total house income in the dwelling unit is $117772 -in.representative_income 117776 Representative total house income in the dwelling unit is $117776 -in.representative_income 117783 Representative total house income in the dwelling unit is $117783 -in.representative_income 117792 Representative total house income in the dwelling unit is $117792 -in.representative_income 117799 Representative total house income in the dwelling unit is $117799 -in.representative_income 117875 Representative total house income in the dwelling unit is $117875 -in.representative_income 117879 Representative total house income in the dwelling unit is $117879 -in.representative_income 117884 Representative total house income in the dwelling unit is $117884 -in.representative_income 117895 Representative total house income in the dwelling unit is $117895 -in.representative_income 117905 Representative total house income in the dwelling unit is $117905 -in.representative_income 117972 Representative total house income in the dwelling unit is $117972 -in.representative_income 117985 Representative total house income in the dwelling unit is $117985 -in.representative_income 117987 Representative total house income in the dwelling unit is $117987 -in.representative_income 117998 Representative total house income in the dwelling unit is $117998 -in.representative_income 118079 Representative total house income in the dwelling unit is $118079 -in.representative_income 118083 Representative total house income in the dwelling unit is $118083 -in.representative_income 118086 Representative total house income in the dwelling unit is $118086 -in.representative_income 118090 Representative total house income in the dwelling unit is $118090 -in.representative_income 118095 Representative total house income in the dwelling unit is $118095 -in.representative_income 118101 Representative total house income in the dwelling unit is $118101 -in.representative_income 118116 Representative total house income in the dwelling unit is $118116 -in.representative_income 118169 Representative total house income in the dwelling unit is $118169 -in.representative_income 118179 Representative total house income in the dwelling unit is $118179 -in.representative_income 118187 Representative total house income in the dwelling unit is $118187 -in.representative_income 118204 Representative total house income in the dwelling unit is $118204 -in.representative_income 118221 Representative total house income in the dwelling unit is $118221 -in.representative_income 118264 Representative total house income in the dwelling unit is $118264 -in.representative_income 118273 Representative total house income in the dwelling unit is $118273 -in.representative_income 118294 Representative total house income in the dwelling unit is $118294 -in.representative_income 118307 Representative total house income in the dwelling unit is $118307 -in.representative_income 118326 Representative total house income in the dwelling unit is $118326 -in.representative_income 118347 Representative total house income in the dwelling unit is $118347 -in.representative_income 118348 Representative total house income in the dwelling unit is $118348 -in.representative_income 118349 Representative total house income in the dwelling unit is $118349 -in.representative_income 118389 Representative total house income in the dwelling unit is $118389 -in.representative_income 118419 Representative total house income in the dwelling unit is $118419 -in.representative_income 118432 Representative total house income in the dwelling unit is $118432 -in.representative_income 118443 Representative total house income in the dwelling unit is $118443 -in.representative_income 118490 Representative total house income in the dwelling unit is $118490 -in.representative_income 118508 Representative total house income in the dwelling unit is $118508 -in.representative_income 118538 Representative total house income in the dwelling unit is $118538 -in.representative_income 118591 Representative total house income in the dwelling unit is $118591 -in.representative_income 118616 Representative total house income in the dwelling unit is $118616 -in.representative_income 118617 Representative total house income in the dwelling unit is $118617 -in.representative_income 118636 Representative total house income in the dwelling unit is $118636 -in.representative_income 118643 Representative total house income in the dwelling unit is $118643 -in.representative_income 118668 Representative total house income in the dwelling unit is $118668 -in.representative_income 118692 Representative total house income in the dwelling unit is $118692 -in.representative_income 118720 Representative total house income in the dwelling unit is $118720 -in.representative_income 118723 Representative total house income in the dwelling unit is $118723 -in.representative_income 118733 Representative total house income in the dwelling unit is $118733 -in.representative_income 118741 Representative total house income in the dwelling unit is $118741 -in.representative_income 118744 Representative total house income in the dwelling unit is $118744 -in.representative_income 118749 Representative total house income in the dwelling unit is $118749 -in.representative_income 118753 Representative total house income in the dwelling unit is $118753 -in.representative_income 118793 Representative total house income in the dwelling unit is $118793 -in.representative_income 118813 Representative total house income in the dwelling unit is $118813 -in.representative_income 118823 Representative total house income in the dwelling unit is $118823 -in.representative_income 118831 Representative total house income in the dwelling unit is $118831 -in.representative_income 118852 Representative total house income in the dwelling unit is $118852 -in.representative_income 118853 Representative total house income in the dwelling unit is $118853 -in.representative_income 118854 Representative total house income in the dwelling unit is $118854 -in.representative_income 118862 Representative total house income in the dwelling unit is $118862 -in.representative_income 118875 Representative total house income in the dwelling unit is $118875 -in.representative_income 118894 Representative total house income in the dwelling unit is $118894 -in.representative_income 118926 Representative total house income in the dwelling unit is $118926 -in.representative_income 118938 Representative total house income in the dwelling unit is $118938 -in.representative_income 118945 Representative total house income in the dwelling unit is $118945 -in.representative_income 118947 Representative total house income in the dwelling unit is $118947 -in.representative_income 118960 Representative total house income in the dwelling unit is $118960 -in.representative_income 118968 Representative total house income in the dwelling unit is $118968 -in.representative_income 119003 Representative total house income in the dwelling unit is $119003 -in.representative_income 119030 Representative total house income in the dwelling unit is $119030 -in.representative_income 119046 Representative total house income in the dwelling unit is $119046 -in.representative_income 119067 Representative total house income in the dwelling unit is $119067 -in.representative_income 119096 Representative total house income in the dwelling unit is $119096 -in.representative_income 119133 Representative total house income in the dwelling unit is $119133 -in.representative_income 119153 Representative total house income in the dwelling unit is $119153 -in.representative_income 119170 Representative total house income in the dwelling unit is $119170 -in.representative_income 119171 Representative total house income in the dwelling unit is $119171 -in.representative_income 119175 Representative total house income in the dwelling unit is $119175 -in.representative_income 119181 Representative total house income in the dwelling unit is $119181 -in.representative_income 119186 Representative total house income in the dwelling unit is $119186 -in.representative_income 119196 Representative total house income in the dwelling unit is $119196 -in.representative_income 119197 Representative total house income in the dwelling unit is $119197 -in.representative_income 119235 Representative total house income in the dwelling unit is $119235 -in.representative_income 119241 Representative total house income in the dwelling unit is $119241 -in.representative_income 119252 Representative total house income in the dwelling unit is $119252 -in.representative_income 119260 Representative total house income in the dwelling unit is $119260 -in.representative_income 119284 Representative total house income in the dwelling unit is $119284 -in.representative_income 119298 Representative total house income in the dwelling unit is $119298 -in.representative_income 119308 Representative total house income in the dwelling unit is $119308 -in.representative_income 119339 Representative total house income in the dwelling unit is $119339 -in.representative_income 119381 Representative total house income in the dwelling unit is $119381 -in.representative_income 119392 Representative total house income in the dwelling unit is $119392 -in.representative_income 119399 Representative total house income in the dwelling unit is $119399 -in.representative_income 119442 Representative total house income in the dwelling unit is $119442 -in.representative_income 119475 Representative total house income in the dwelling unit is $119475 -in.representative_income 119487 Representative total house income in the dwelling unit is $119487 -in.representative_income 119500 Representative total house income in the dwelling unit is $119500 -in.representative_income 119583 Representative total house income in the dwelling unit is $119583 -in.representative_income 119586 Representative total house income in the dwelling unit is $119586 -in.representative_income 119592 Representative total house income in the dwelling unit is $119592 -in.representative_income 119601 Representative total house income in the dwelling unit is $119601 -in.representative_income 119608 Representative total house income in the dwelling unit is $119608 -in.representative_income 119649 Representative total house income in the dwelling unit is $119649 -in.representative_income 119697 Representative total house income in the dwelling unit is $119697 -in.representative_income 119702 Representative total house income in the dwelling unit is $119702 -in.representative_income 119716 Representative total house income in the dwelling unit is $119716 -in.representative_income 119719 Representative total house income in the dwelling unit is $119719 -in.representative_income 119797 Representative total house income in the dwelling unit is $119797 -in.representative_income 119804 Representative total house income in the dwelling unit is $119804 -in.representative_income 119824 Representative total house income in the dwelling unit is $119824 -in.representative_income 119854 Representative total house income in the dwelling unit is $119854 -in.representative_income 119904 Representative total house income in the dwelling unit is $119904 -in.representative_income 119909 Representative total house income in the dwelling unit is $119909 -in.representative_income 119914 Representative total house income in the dwelling unit is $119914 -in.representative_income 119932 Representative total house income in the dwelling unit is $119932 -in.representative_income 119958 Representative total house income in the dwelling unit is $119958 -in.representative_income 119968 Representative total house income in the dwelling unit is $119968 -in.representative_income 120012 Representative total house income in the dwelling unit is $120012 -in.representative_income 120014 Representative total house income in the dwelling unit is $120014 -in.representative_income 120041 Representative total house income in the dwelling unit is $120041 -in.representative_income 120061 Representative total house income in the dwelling unit is $120061 -in.representative_income 120106 Representative total house income in the dwelling unit is $120106 -in.representative_income 120119 Representative total house income in the dwelling unit is $120119 -in.representative_income 120149 Representative total house income in the dwelling unit is $120149 -in.representative_income 120164 Representative total house income in the dwelling unit is $120164 -in.representative_income 120207 Representative total house income in the dwelling unit is $120207 -in.representative_income 120225 Representative total house income in the dwelling unit is $120225 -in.representative_income 120226 Representative total house income in the dwelling unit is $120226 -in.representative_income 120227 Representative total house income in the dwelling unit is $120227 -in.representative_income 120248 Representative total house income in the dwelling unit is $120248 -in.representative_income 120256 Representative total house income in the dwelling unit is $120256 -in.representative_income 120268 Representative total house income in the dwelling unit is $120268 -in.representative_income 120269 Representative total house income in the dwelling unit is $120269 -in.representative_income 120278 Representative total house income in the dwelling unit is $120278 -in.representative_income 120288 Representative total house income in the dwelling unit is $120288 -in.representative_income 120308 Representative total house income in the dwelling unit is $120308 -in.representative_income 120310 Representative total house income in the dwelling unit is $120310 -in.representative_income 120330 Representative total house income in the dwelling unit is $120330 -in.representative_income 120364 Representative total house income in the dwelling unit is $120364 -in.representative_income 120389 Representative total house income in the dwelling unit is $120389 -in.representative_income 120391 Representative total house income in the dwelling unit is $120391 -in.representative_income 120409 Representative total house income in the dwelling unit is $120409 -in.representative_income 120441 Representative total house income in the dwelling unit is $120441 -in.representative_income 120472 Representative total house income in the dwelling unit is $120472 -in.representative_income 120473 Representative total house income in the dwelling unit is $120473 -in.representative_income 120542 Representative total house income in the dwelling unit is $120542 -in.representative_income 120577 Representative total house income in the dwelling unit is $120577 -in.representative_income 120580 Representative total house income in the dwelling unit is $120580 -in.representative_income 120597 Representative total house income in the dwelling unit is $120597 -in.representative_income 120611 Representative total house income in the dwelling unit is $120611 -in.representative_income 120647 Representative total house income in the dwelling unit is $120647 -in.representative_income 120680 Representative total house income in the dwelling unit is $120680 -in.representative_income 120688 Representative total house income in the dwelling unit is $120688 -in.representative_income 120700 Representative total house income in the dwelling unit is $120700 -in.representative_income 120711 Representative total house income in the dwelling unit is $120711 -in.representative_income 120712 Representative total house income in the dwelling unit is $120712 -in.representative_income 120763 Representative total house income in the dwelling unit is $120763 -in.representative_income 120813 Representative total house income in the dwelling unit is $120813 -in.representative_income 120857 Representative total house income in the dwelling unit is $120857 -in.representative_income 120870 Representative total house income in the dwelling unit is $120870 -in.representative_income 120886 Representative total house income in the dwelling unit is $120886 -in.representative_income 120890 Representative total house income in the dwelling unit is $120890 -in.representative_income 120905 Representative total house income in the dwelling unit is $120905 -in.representative_income 120914 Representative total house income in the dwelling unit is $120914 -in.representative_income 120989 Representative total house income in the dwelling unit is $120989 -in.representative_income 121013 Representative total house income in the dwelling unit is $121013 -in.representative_income 121015 Representative total house income in the dwelling unit is $121015 -in.representative_income 121069 Representative total house income in the dwelling unit is $121069 -in.representative_income 121085 Representative total house income in the dwelling unit is $121085 -in.representative_income 121092 Representative total house income in the dwelling unit is $121092 -in.representative_income 121116 Representative total house income in the dwelling unit is $121116 -in.representative_income 121174 Representative total house income in the dwelling unit is $121174 -in.representative_income 121196 Representative total house income in the dwelling unit is $121196 -in.representative_income 121217 Representative total house income in the dwelling unit is $121217 -in.representative_income 121229 Representative total house income in the dwelling unit is $121229 -in.representative_income 121238 Representative total house income in the dwelling unit is $121238 -in.representative_income 121278 Representative total house income in the dwelling unit is $121278 -in.representative_income 121280 Representative total house income in the dwelling unit is $121280 -in.representative_income 121284 Representative total house income in the dwelling unit is $121284 -in.representative_income 121299 Representative total house income in the dwelling unit is $121299 -in.representative_income 121318 Representative total house income in the dwelling unit is $121318 -in.representative_income 121321 Representative total house income in the dwelling unit is $121321 -in.representative_income 121337 Representative total house income in the dwelling unit is $121337 -in.representative_income 121339 Representative total house income in the dwelling unit is $121339 -in.representative_income 121385 Representative total house income in the dwelling unit is $121385 -in.representative_income 121407 Representative total house income in the dwelling unit is $121407 -in.representative_income 121419 Representative total house income in the dwelling unit is $121419 -in.representative_income 121444 Representative total house income in the dwelling unit is $121444 -in.representative_income 121450 Representative total house income in the dwelling unit is $121450 -in.representative_income 121451 Representative total house income in the dwelling unit is $121451 -in.representative_income 121453 Representative total house income in the dwelling unit is $121453 -in.representative_income 121505 Representative total house income in the dwelling unit is $121505 -in.representative_income 121512 Representative total house income in the dwelling unit is $121512 -in.representative_income 121514 Representative total house income in the dwelling unit is $121514 -in.representative_income 121520 Representative total house income in the dwelling unit is $121520 -in.representative_income 121552 Representative total house income in the dwelling unit is $121552 -in.representative_income 121596 Representative total house income in the dwelling unit is $121596 -in.representative_income 121608 Representative total house income in the dwelling unit is $121608 -in.representative_income 121611 Representative total house income in the dwelling unit is $121611 -in.representative_income 121621 Representative total house income in the dwelling unit is $121621 -in.representative_income 121622 Representative total house income in the dwelling unit is $121622 -in.representative_income 121702 Representative total house income in the dwelling unit is $121702 -in.representative_income 121711 Representative total house income in the dwelling unit is $121711 -in.representative_income 121729 Representative total house income in the dwelling unit is $121729 -in.representative_income 121733 Representative total house income in the dwelling unit is $121733 -in.representative_income 121740 Representative total house income in the dwelling unit is $121740 -in.representative_income 121775 Representative total house income in the dwelling unit is $121775 -in.representative_income 121804 Representative total house income in the dwelling unit is $121804 -in.representative_income 121807 Representative total house income in the dwelling unit is $121807 -in.representative_income 121815 Representative total house income in the dwelling unit is $121815 -in.representative_income 121823 Representative total house income in the dwelling unit is $121823 -in.representative_income 121837 Representative total house income in the dwelling unit is $121837 -in.representative_income 121845 Representative total house income in the dwelling unit is $121845 -in.representative_income 121864 Representative total house income in the dwelling unit is $121864 -in.representative_income 121912 Representative total house income in the dwelling unit is $121912 -in.representative_income 121918 Representative total house income in the dwelling unit is $121918 -in.representative_income 121925 Representative total house income in the dwelling unit is $121925 -in.representative_income 121928 Representative total house income in the dwelling unit is $121928 -in.representative_income 121943 Representative total house income in the dwelling unit is $121943 -in.representative_income 121954 Representative total house income in the dwelling unit is $121954 -in.representative_income 121970 Representative total house income in the dwelling unit is $121970 -in.representative_income 121985 Representative total house income in the dwelling unit is $121985 -in.representative_income 122018 Representative total house income in the dwelling unit is $122018 -in.representative_income 122026 Representative total house income in the dwelling unit is $122026 -in.representative_income 122046 Representative total house income in the dwelling unit is $122046 -in.representative_income 122093 Representative total house income in the dwelling unit is $122093 -in.representative_income 122123 Representative total house income in the dwelling unit is $122123 -in.representative_income 122124 Representative total house income in the dwelling unit is $122124 -in.representative_income 122127 Representative total house income in the dwelling unit is $122127 -in.representative_income 122155 Representative total house income in the dwelling unit is $122155 -in.representative_income 122158 Representative total house income in the dwelling unit is $122158 -in.representative_income 122201 Representative total house income in the dwelling unit is $122201 -in.representative_income 122227 Representative total house income in the dwelling unit is $122227 -in.representative_income 122228 Representative total house income in the dwelling unit is $122228 -in.representative_income 122238 Representative total house income in the dwelling unit is $122238 -in.representative_income 122240 Representative total house income in the dwelling unit is $122240 -in.representative_income 122244 Representative total house income in the dwelling unit is $122244 -in.representative_income 122309 Representative total house income in the dwelling unit is $122309 -in.representative_income 122329 Representative total house income in the dwelling unit is $122329 -in.representative_income 122330 Representative total house income in the dwelling unit is $122330 -in.representative_income 122335 Representative total house income in the dwelling unit is $122335 -in.representative_income 122366 Representative total house income in the dwelling unit is $122366 -in.representative_income 122374 Representative total house income in the dwelling unit is $122374 -in.representative_income 122413 Representative total house income in the dwelling unit is $122413 -in.representative_income 122418 Representative total house income in the dwelling unit is $122418 -in.representative_income 122430 Representative total house income in the dwelling unit is $122430 -in.representative_income 122434 Representative total house income in the dwelling unit is $122434 -in.representative_income 122440 Representative total house income in the dwelling unit is $122440 -in.representative_income 122450 Representative total house income in the dwelling unit is $122450 -in.representative_income 122461 Representative total house income in the dwelling unit is $122461 -in.representative_income 122480 Representative total house income in the dwelling unit is $122480 -in.representative_income 122485 Representative total house income in the dwelling unit is $122485 -in.representative_income 122526 Representative total house income in the dwelling unit is $122526 -in.representative_income 122531 Representative total house income in the dwelling unit is $122531 -in.representative_income 122536 Representative total house income in the dwelling unit is $122536 -in.representative_income 122545 Representative total house income in the dwelling unit is $122545 -in.representative_income 122551 Representative total house income in the dwelling unit is $122551 -in.representative_income 122588 Representative total house income in the dwelling unit is $122588 -in.representative_income 122611 Representative total house income in the dwelling unit is $122611 -in.representative_income 122632 Representative total house income in the dwelling unit is $122632 -in.representative_income 122634 Representative total house income in the dwelling unit is $122634 -in.representative_income 122639 Representative total house income in the dwelling unit is $122639 -in.representative_income 122650 Representative total house income in the dwelling unit is $122650 -in.representative_income 122666 Representative total house income in the dwelling unit is $122666 -in.representative_income 122695 Representative total house income in the dwelling unit is $122695 -in.representative_income 122733 Representative total house income in the dwelling unit is $122733 -in.representative_income 122741 Representative total house income in the dwelling unit is $122741 -in.representative_income 122743 Representative total house income in the dwelling unit is $122743 -in.representative_income 122756 Representative total house income in the dwelling unit is $122756 -in.representative_income 122774 Representative total house income in the dwelling unit is $122774 -in.representative_income 122803 Representative total house income in the dwelling unit is $122803 -in.representative_income 122834 Representative total house income in the dwelling unit is $122834 -in.representative_income 122845 Representative total house income in the dwelling unit is $122845 -in.representative_income 122846 Representative total house income in the dwelling unit is $122846 -in.representative_income 122849 Representative total house income in the dwelling unit is $122849 -in.representative_income 122861 Representative total house income in the dwelling unit is $122861 -in.representative_income 122887 Representative total house income in the dwelling unit is $122887 -in.representative_income 122910 Representative total house income in the dwelling unit is $122910 -in.representative_income 122914 Representative total house income in the dwelling unit is $122914 -in.representative_income 122935 Representative total house income in the dwelling unit is $122935 -in.representative_income 122949 Representative total house income in the dwelling unit is $122949 -in.representative_income 122957 Representative total house income in the dwelling unit is $122957 -in.representative_income 122967 Representative total house income in the dwelling unit is $122967 -in.representative_income 122990 Representative total house income in the dwelling unit is $122990 -in.representative_income 123015 Representative total house income in the dwelling unit is $123015 -in.representative_income 123017 Representative total house income in the dwelling unit is $123017 -in.representative_income 123020 Representative total house income in the dwelling unit is $123020 -in.representative_income 123036 Representative total house income in the dwelling unit is $123036 -in.representative_income 123040 Representative total house income in the dwelling unit is $123040 -in.representative_income 123046 Representative total house income in the dwelling unit is $123046 -in.representative_income 123065 Representative total house income in the dwelling unit is $123065 -in.representative_income 123073 Representative total house income in the dwelling unit is $123073 -in.representative_income 123080 Representative total house income in the dwelling unit is $123080 -in.representative_income 123091 Representative total house income in the dwelling unit is $123091 -in.representative_income 123124 Representative total house income in the dwelling unit is $123124 -in.representative_income 123155 Representative total house income in the dwelling unit is $123155 -in.representative_income 123173 Representative total house income in the dwelling unit is $123173 -in.representative_income 123178 Representative total house income in the dwelling unit is $123178 -in.representative_income 123187 Representative total house income in the dwelling unit is $123187 -in.representative_income 123224 Representative total house income in the dwelling unit is $123224 -in.representative_income 123232 Representative total house income in the dwelling unit is $123232 -in.representative_income 123238 Representative total house income in the dwelling unit is $123238 -in.representative_income 123248 Representative total house income in the dwelling unit is $123248 -in.representative_income 123258 Representative total house income in the dwelling unit is $123258 -in.representative_income 123264 Representative total house income in the dwelling unit is $123264 -in.representative_income 123278 Representative total house income in the dwelling unit is $123278 -in.representative_income 123282 Representative total house income in the dwelling unit is $123282 -in.representative_income 123339 Representative total house income in the dwelling unit is $123339 -in.representative_income 123354 Representative total house income in the dwelling unit is $123354 -in.representative_income 123362 Representative total house income in the dwelling unit is $123362 -in.representative_income 123369 Representative total house income in the dwelling unit is $123369 -in.representative_income 123389 Representative total house income in the dwelling unit is $123389 -in.representative_income 123390 Representative total house income in the dwelling unit is $123390 -in.representative_income 123403 Representative total house income in the dwelling unit is $123403 -in.representative_income 123431 Representative total house income in the dwelling unit is $123431 -in.representative_income 123440 Representative total house income in the dwelling unit is $123440 -in.representative_income 123447 Representative total house income in the dwelling unit is $123447 -in.representative_income 123468 Representative total house income in the dwelling unit is $123468 -in.representative_income 123474 Representative total house income in the dwelling unit is $123474 -in.representative_income 123490 Representative total house income in the dwelling unit is $123490 -in.representative_income 123494 Representative total house income in the dwelling unit is $123494 -in.representative_income 123498 Representative total house income in the dwelling unit is $123498 -in.representative_income 123509 Representative total house income in the dwelling unit is $123509 -in.representative_income 123522 Representative total house income in the dwelling unit is $123522 -in.representative_income 123541 Representative total house income in the dwelling unit is $123541 -in.representative_income 123554 Representative total house income in the dwelling unit is $123554 -in.representative_income 123568 Representative total house income in the dwelling unit is $123568 -in.representative_income 123600 Representative total house income in the dwelling unit is $123600 -in.representative_income 123606 Representative total house income in the dwelling unit is $123606 -in.representative_income 123642 Representative total house income in the dwelling unit is $123642 -in.representative_income 123658 Representative total house income in the dwelling unit is $123658 -in.representative_income 123661 Representative total house income in the dwelling unit is $123661 -in.representative_income 123671 Representative total house income in the dwelling unit is $123671 -in.representative_income 123692 Representative total house income in the dwelling unit is $123692 -in.representative_income 123705 Representative total house income in the dwelling unit is $123705 -in.representative_income 123714 Representative total house income in the dwelling unit is $123714 -in.representative_income 123743 Representative total house income in the dwelling unit is $123743 -in.representative_income 123769 Representative total house income in the dwelling unit is $123769 -in.representative_income 123774 Representative total house income in the dwelling unit is $123774 -in.representative_income 123778 Representative total house income in the dwelling unit is $123778 -in.representative_income 123795 Representative total house income in the dwelling unit is $123795 -in.representative_income 123806 Representative total house income in the dwelling unit is $123806 -in.representative_income 123811 Representative total house income in the dwelling unit is $123811 -in.representative_income 123816 Representative total house income in the dwelling unit is $123816 -in.representative_income 123822 Representative total house income in the dwelling unit is $123822 -in.representative_income 123836 Representative total house income in the dwelling unit is $123836 -in.representative_income 123844 Representative total house income in the dwelling unit is $123844 -in.representative_income 123876 Representative total house income in the dwelling unit is $123876 -in.representative_income 123877 Representative total house income in the dwelling unit is $123877 -in.representative_income 123894 Representative total house income in the dwelling unit is $123894 -in.representative_income 123897 Representative total house income in the dwelling unit is $123897 -in.representative_income 123898 Representative total house income in the dwelling unit is $123898 -in.representative_income 123908 Representative total house income in the dwelling unit is $123908 -in.representative_income 123916 Representative total house income in the dwelling unit is $123916 -in.representative_income 123929 Representative total house income in the dwelling unit is $123929 -in.representative_income 123937 Representative total house income in the dwelling unit is $123937 -in.representative_income 123945 Representative total house income in the dwelling unit is $123945 -in.representative_income 123981 Representative total house income in the dwelling unit is $123981 -in.representative_income 123984 Representative total house income in the dwelling unit is $123984 -in.representative_income 124005 Representative total house income in the dwelling unit is $124005 -in.representative_income 124021 Representative total house income in the dwelling unit is $124021 -in.representative_income 124026 Representative total house income in the dwelling unit is $124026 -in.representative_income 124032 Representative total house income in the dwelling unit is $124032 -in.representative_income 124037 Representative total house income in the dwelling unit is $124037 -in.representative_income 124038 Representative total house income in the dwelling unit is $124038 -in.representative_income 124046 Representative total house income in the dwelling unit is $124046 -in.representative_income 124084 Representative total house income in the dwelling unit is $124084 -in.representative_income 124091 Representative total house income in the dwelling unit is $124091 -in.representative_income 124092 Representative total house income in the dwelling unit is $124092 -in.representative_income 124114 Representative total house income in the dwelling unit is $124114 -in.representative_income 124127 Representative total house income in the dwelling unit is $124127 -in.representative_income 124144 Representative total house income in the dwelling unit is $124144 -in.representative_income 124146 Representative total house income in the dwelling unit is $124146 -in.representative_income 124147 Representative total house income in the dwelling unit is $124147 -in.representative_income 124186 Representative total house income in the dwelling unit is $124186 -in.representative_income 124188 Representative total house income in the dwelling unit is $124188 -in.representative_income 124197 Representative total house income in the dwelling unit is $124197 -in.representative_income 124198 Representative total house income in the dwelling unit is $124198 -in.representative_income 124219 Representative total house income in the dwelling unit is $124219 -in.representative_income 124228 Representative total house income in the dwelling unit is $124228 -in.representative_income 124233 Representative total house income in the dwelling unit is $124233 -in.representative_income 124248 Representative total house income in the dwelling unit is $124248 -in.representative_income 124254 Representative total house income in the dwelling unit is $124254 -in.representative_income 124268 Representative total house income in the dwelling unit is $124268 -in.representative_income 124280 Representative total house income in the dwelling unit is $124280 -in.representative_income 124290 Representative total house income in the dwelling unit is $124290 -in.representative_income 124305 Representative total house income in the dwelling unit is $124305 -in.representative_income 124329 Representative total house income in the dwelling unit is $124329 -in.representative_income 124338 Representative total house income in the dwelling unit is $124338 -in.representative_income 124348 Representative total house income in the dwelling unit is $124348 -in.representative_income 124349 Representative total house income in the dwelling unit is $124349 -in.representative_income 124359 Representative total house income in the dwelling unit is $124359 -in.representative_income 124362 Representative total house income in the dwelling unit is $124362 -in.representative_income 124393 Representative total house income in the dwelling unit is $124393 -in.representative_income 124413 Representative total house income in the dwelling unit is $124413 -in.representative_income 124443 Representative total house income in the dwelling unit is $124443 -in.representative_income 124450 Representative total house income in the dwelling unit is $124450 -in.representative_income 124454 Representative total house income in the dwelling unit is $124454 -in.representative_income 124470 Representative total house income in the dwelling unit is $124470 -in.representative_income 124496 Representative total house income in the dwelling unit is $124496 -in.representative_income 124520 Representative total house income in the dwelling unit is $124520 -in.representative_income 124521 Representative total house income in the dwelling unit is $124521 -in.representative_income 124522 Representative total house income in the dwelling unit is $124522 -in.representative_income 124542 Representative total house income in the dwelling unit is $124542 -in.representative_income 124548 Representative total house income in the dwelling unit is $124548 -in.representative_income 124549 Representative total house income in the dwelling unit is $124549 -in.representative_income 124551 Representative total house income in the dwelling unit is $124551 -in.representative_income 124578 Representative total house income in the dwelling unit is $124578 -in.representative_income 124591 Representative total house income in the dwelling unit is $124591 -in.representative_income 124600 Representative total house income in the dwelling unit is $124600 -in.representative_income 124610 Representative total house income in the dwelling unit is $124610 -in.representative_income 124620 Representative total house income in the dwelling unit is $124620 -in.representative_income 124628 Representative total house income in the dwelling unit is $124628 -in.representative_income 124632 Representative total house income in the dwelling unit is $124632 -in.representative_income 124635 Representative total house income in the dwelling unit is $124635 -in.representative_income 124652 Representative total house income in the dwelling unit is $124652 -in.representative_income 124654 Representative total house income in the dwelling unit is $124654 -in.representative_income 124660 Representative total house income in the dwelling unit is $124660 -in.representative_income 124686 Representative total house income in the dwelling unit is $124686 -in.representative_income 124702 Representative total house income in the dwelling unit is $124702 -in.representative_income 124707 Representative total house income in the dwelling unit is $124707 -in.representative_income 124734 Representative total house income in the dwelling unit is $124734 -in.representative_income 124740 Representative total house income in the dwelling unit is $124740 -in.representative_income 124753 Representative total house income in the dwelling unit is $124753 -in.representative_income 124759 Representative total house income in the dwelling unit is $124759 -in.representative_income 124765 Representative total house income in the dwelling unit is $124765 -in.representative_income 124781 Representative total house income in the dwelling unit is $124781 -in.representative_income 124795 Representative total house income in the dwelling unit is $124795 -in.representative_income 124805 Representative total house income in the dwelling unit is $124805 -in.representative_income 124845 Representative total house income in the dwelling unit is $124845 -in.representative_income 124854 Representative total house income in the dwelling unit is $124854 -in.representative_income 124865 Representative total house income in the dwelling unit is $124865 -in.representative_income 124866 Representative total house income in the dwelling unit is $124866 -in.representative_income 124892 Representative total house income in the dwelling unit is $124892 -in.representative_income 124899 Representative total house income in the dwelling unit is $124899 -in.representative_income 124903 Representative total house income in the dwelling unit is $124903 -in.representative_income 124909 Representative total house income in the dwelling unit is $124909 -in.representative_income 124949 Representative total house income in the dwelling unit is $124949 -in.representative_income 124950 Representative total house income in the dwelling unit is $124950 -in.representative_income 124955 Representative total house income in the dwelling unit is $124955 -in.representative_income 124957 Representative total house income in the dwelling unit is $124957 -in.representative_income 124971 Representative total house income in the dwelling unit is $124971 -in.representative_income 124977 Representative total house income in the dwelling unit is $124977 -in.representative_income 124994 Representative total house income in the dwelling unit is $124994 -in.representative_income 125011 Representative total house income in the dwelling unit is $125011 -in.representative_income 125012 Representative total house income in the dwelling unit is $125012 -in.representative_income 125021 Representative total house income in the dwelling unit is $125021 -in.representative_income 125050 Representative total house income in the dwelling unit is $125050 -in.representative_income 125054 Representative total house income in the dwelling unit is $125054 -in.representative_income 125056 Representative total house income in the dwelling unit is $125056 -in.representative_income 125057 Representative total house income in the dwelling unit is $125057 -in.representative_income 125075 Representative total house income in the dwelling unit is $125075 -in.representative_income 125076 Representative total house income in the dwelling unit is $125076 -in.representative_income 125115 Representative total house income in the dwelling unit is $125115 -in.representative_income 125118 Representative total house income in the dwelling unit is $125118 -in.representative_income 125157 Representative total house income in the dwelling unit is $125157 -in.representative_income 125158 Representative total house income in the dwelling unit is $125158 -in.representative_income 125165 Representative total house income in the dwelling unit is $125165 -in.representative_income 125167 Representative total house income in the dwelling unit is $125167 -in.representative_income 125182 Representative total house income in the dwelling unit is $125182 -in.representative_income 125187 Representative total house income in the dwelling unit is $125187 -in.representative_income 125194 Representative total house income in the dwelling unit is $125194 -in.representative_income 125218 Representative total house income in the dwelling unit is $125218 -in.representative_income 125219 Representative total house income in the dwelling unit is $125219 -in.representative_income 125224 Representative total house income in the dwelling unit is $125224 -in.representative_income 125226 Representative total house income in the dwelling unit is $125226 -in.representative_income 125235 Representative total house income in the dwelling unit is $125235 -in.representative_income 125255 Representative total house income in the dwelling unit is $125255 -in.representative_income 125258 Representative total house income in the dwelling unit is $125258 -in.representative_income 125269 Representative total house income in the dwelling unit is $125269 -in.representative_income 125271 Representative total house income in the dwelling unit is $125271 -in.representative_income 125274 Representative total house income in the dwelling unit is $125274 -in.representative_income 125287 Representative total house income in the dwelling unit is $125287 -in.representative_income 125293 Representative total house income in the dwelling unit is $125293 -in.representative_income 125294 Representative total house income in the dwelling unit is $125294 -in.representative_income 125321 Representative total house income in the dwelling unit is $125321 -in.representative_income 125323 Representative total house income in the dwelling unit is $125323 -in.representative_income 125334 Representative total house income in the dwelling unit is $125334 -in.representative_income 125345 Representative total house income in the dwelling unit is $125345 -in.representative_income 125346 Representative total house income in the dwelling unit is $125346 -in.representative_income 125356 Representative total house income in the dwelling unit is $125356 -in.representative_income 125359 Representative total house income in the dwelling unit is $125359 -in.representative_income 125363 Representative total house income in the dwelling unit is $125363 -in.representative_income 125373 Representative total house income in the dwelling unit is $125373 -in.representative_income 125379 Representative total house income in the dwelling unit is $125379 -in.representative_income 125382 Representative total house income in the dwelling unit is $125382 -in.representative_income 125388 Representative total house income in the dwelling unit is $125388 -in.representative_income 125392 Representative total house income in the dwelling unit is $125392 -in.representative_income 125420 Representative total house income in the dwelling unit is $125420 -in.representative_income 125424 Representative total house income in the dwelling unit is $125424 -in.representative_income 125442 Representative total house income in the dwelling unit is $125442 -in.representative_income 125460 Representative total house income in the dwelling unit is $125460 -in.representative_income 125480 Representative total house income in the dwelling unit is $125480 -in.representative_income 125486 Representative total house income in the dwelling unit is $125486 -in.representative_income 125498 Representative total house income in the dwelling unit is $125498 -in.representative_income 125507 Representative total house income in the dwelling unit is $125507 -in.representative_income 125509 Representative total house income in the dwelling unit is $125509 -in.representative_income 125528 Representative total house income in the dwelling unit is $125528 -in.representative_income 125530 Representative total house income in the dwelling unit is $125530 -in.representative_income 125536 Representative total house income in the dwelling unit is $125536 -in.representative_income 125540 Representative total house income in the dwelling unit is $125540 -in.representative_income 125550 Representative total house income in the dwelling unit is $125550 -in.representative_income 125561 Representative total house income in the dwelling unit is $125561 -in.representative_income 125562 Representative total house income in the dwelling unit is $125562 -in.representative_income 125567 Representative total house income in the dwelling unit is $125567 -in.representative_income 125581 Representative total house income in the dwelling unit is $125581 -in.representative_income 125594 Representative total house income in the dwelling unit is $125594 -in.representative_income 125595 Representative total house income in the dwelling unit is $125595 -in.representative_income 125598 Representative total house income in the dwelling unit is $125598 -in.representative_income 125603 Representative total house income in the dwelling unit is $125603 -in.representative_income 125604 Representative total house income in the dwelling unit is $125604 -in.representative_income 125625 Representative total house income in the dwelling unit is $125625 -in.representative_income 125631 Representative total house income in the dwelling unit is $125631 -in.representative_income 125642 Representative total house income in the dwelling unit is $125642 -in.representative_income 125658 Representative total house income in the dwelling unit is $125658 -in.representative_income 125659 Representative total house income in the dwelling unit is $125659 -in.representative_income 125662 Representative total house income in the dwelling unit is $125662 -in.representative_income 125667 Representative total house income in the dwelling unit is $125667 -in.representative_income 125683 Representative total house income in the dwelling unit is $125683 -in.representative_income 125692 Representative total house income in the dwelling unit is $125692 -in.representative_income 125701 Representative total house income in the dwelling unit is $125701 -in.representative_income 125706 Representative total house income in the dwelling unit is $125706 -in.representative_income 125709 Representative total house income in the dwelling unit is $125709 -in.representative_income 125716 Representative total house income in the dwelling unit is $125716 -in.representative_income 125730 Representative total house income in the dwelling unit is $125730 -in.representative_income 125734 Representative total house income in the dwelling unit is $125734 -in.representative_income 125762 Representative total house income in the dwelling unit is $125762 -in.representative_income 125763 Representative total house income in the dwelling unit is $125763 -in.representative_income 125765 Representative total house income in the dwelling unit is $125765 -in.representative_income 125767 Representative total house income in the dwelling unit is $125767 -in.representative_income 125770 Representative total house income in the dwelling unit is $125770 -in.representative_income 125778 Representative total house income in the dwelling unit is $125778 -in.representative_income 125782 Representative total house income in the dwelling unit is $125782 -in.representative_income 125793 Representative total house income in the dwelling unit is $125793 -in.representative_income 125803 Representative total house income in the dwelling unit is $125803 -in.representative_income 125808 Representative total house income in the dwelling unit is $125808 -in.representative_income 125814 Representative total house income in the dwelling unit is $125814 -in.representative_income 125821 Representative total house income in the dwelling unit is $125821 -in.representative_income 125830 Representative total house income in the dwelling unit is $125830 -in.representative_income 125837 Representative total house income in the dwelling unit is $125837 -in.representative_income 125853 Representative total house income in the dwelling unit is $125853 -in.representative_income 125864 Representative total house income in the dwelling unit is $125864 -in.representative_income 125875 Representative total house income in the dwelling unit is $125875 -in.representative_income 125878 Representative total house income in the dwelling unit is $125878 -in.representative_income 125894 Representative total house income in the dwelling unit is $125894 -in.representative_income 125915 Representative total house income in the dwelling unit is $125915 -in.representative_income 125920 Representative total house income in the dwelling unit is $125920 -in.representative_income 125929 Representative total house income in the dwelling unit is $125929 -in.representative_income 125931 Representative total house income in the dwelling unit is $125931 -in.representative_income 125935 Representative total house income in the dwelling unit is $125935 -in.representative_income 125940 Representative total house income in the dwelling unit is $125940 -in.representative_income 125944 Representative total house income in the dwelling unit is $125944 -in.representative_income 125946 Representative total house income in the dwelling unit is $125946 -in.representative_income 125965 Representative total house income in the dwelling unit is $125965 -in.representative_income 125973 Representative total house income in the dwelling unit is $125973 -in.representative_income 125982 Representative total house income in the dwelling unit is $125982 -in.representative_income 125983 Representative total house income in the dwelling unit is $125983 -in.representative_income 126012 Representative total house income in the dwelling unit is $126012 -in.representative_income 126023 Representative total house income in the dwelling unit is $126023 -in.representative_income 126025 Representative total house income in the dwelling unit is $126025 -in.representative_income 126026 Representative total house income in the dwelling unit is $126026 -in.representative_income 126043 Representative total house income in the dwelling unit is $126043 -in.representative_income 126054 Representative total house income in the dwelling unit is $126054 -in.representative_income 126066 Representative total house income in the dwelling unit is $126066 -in.representative_income 126072 Representative total house income in the dwelling unit is $126072 -in.representative_income 126091 Representative total house income in the dwelling unit is $126091 -in.representative_income 126094 Representative total house income in the dwelling unit is $126094 -in.representative_income 126123 Representative total house income in the dwelling unit is $126123 -in.representative_income 126130 Representative total house income in the dwelling unit is $126130 -in.representative_income 126131 Representative total house income in the dwelling unit is $126131 -in.representative_income 126145 Representative total house income in the dwelling unit is $126145 -in.representative_income 126147 Representative total house income in the dwelling unit is $126147 -in.representative_income 126152 Representative total house income in the dwelling unit is $126152 -in.representative_income 126167 Representative total house income in the dwelling unit is $126167 -in.representative_income 126177 Representative total house income in the dwelling unit is $126177 -in.representative_income 126198 Representative total house income in the dwelling unit is $126198 -in.representative_income 126199 Representative total house income in the dwelling unit is $126199 -in.representative_income 126209 Representative total house income in the dwelling unit is $126209 -in.representative_income 126218 Representative total house income in the dwelling unit is $126218 -in.representative_income 126226 Representative total house income in the dwelling unit is $126226 -in.representative_income 126229 Representative total house income in the dwelling unit is $126229 -in.representative_income 126236 Representative total house income in the dwelling unit is $126236 -in.representative_income 126238 Representative total house income in the dwelling unit is $126238 -in.representative_income 126250 Representative total house income in the dwelling unit is $126250 -in.representative_income 126258 Representative total house income in the dwelling unit is $126258 -in.representative_income 126268 Representative total house income in the dwelling unit is $126268 -in.representative_income 126278 Representative total house income in the dwelling unit is $126278 -in.representative_income 126302 Representative total house income in the dwelling unit is $126302 -in.representative_income 126306 Representative total house income in the dwelling unit is $126306 -in.representative_income 126311 Representative total house income in the dwelling unit is $126311 -in.representative_income 126313 Representative total house income in the dwelling unit is $126313 -in.representative_income 126325 Representative total house income in the dwelling unit is $126325 -in.representative_income 126329 Representative total house income in the dwelling unit is $126329 -in.representative_income 126342 Representative total house income in the dwelling unit is $126342 -in.representative_income 126344 Representative total house income in the dwelling unit is $126344 -in.representative_income 126352 Representative total house income in the dwelling unit is $126352 -in.representative_income 126359 Representative total house income in the dwelling unit is $126359 -in.representative_income 126364 Representative total house income in the dwelling unit is $126364 -in.representative_income 126369 Representative total house income in the dwelling unit is $126369 -in.representative_income 126378 Representative total house income in the dwelling unit is $126378 -in.representative_income 126383 Representative total house income in the dwelling unit is $126383 -in.representative_income 126384 Representative total house income in the dwelling unit is $126384 -in.representative_income 126390 Representative total house income in the dwelling unit is $126390 -in.representative_income 126410 Representative total house income in the dwelling unit is $126410 -in.representative_income 126415 Representative total house income in the dwelling unit is $126415 -in.representative_income 126437 Representative total house income in the dwelling unit is $126437 -in.representative_income 126440 Representative total house income in the dwelling unit is $126440 -in.representative_income 126447 Representative total house income in the dwelling unit is $126447 -in.representative_income 126452 Representative total house income in the dwelling unit is $126452 -in.representative_income 126456 Representative total house income in the dwelling unit is $126456 -in.representative_income 126469 Representative total house income in the dwelling unit is $126469 -in.representative_income 126470 Representative total house income in the dwelling unit is $126470 -in.representative_income 126478 Representative total house income in the dwelling unit is $126478 -in.representative_income 126490 Representative total house income in the dwelling unit is $126490 -in.representative_income 126506 Representative total house income in the dwelling unit is $126506 -in.representative_income 126510 Representative total house income in the dwelling unit is $126510 -in.representative_income 126511 Representative total house income in the dwelling unit is $126511 -in.representative_income 126521 Representative total house income in the dwelling unit is $126521 -in.representative_income 126523 Representative total house income in the dwelling unit is $126523 -in.representative_income 126528 Representative total house income in the dwelling unit is $126528 -in.representative_income 126552 Representative total house income in the dwelling unit is $126552 -in.representative_income 126556 Representative total house income in the dwelling unit is $126556 -in.representative_income 126559 Representative total house income in the dwelling unit is $126559 -in.representative_income 126560 Representative total house income in the dwelling unit is $126560 -in.representative_income 126563 Representative total house income in the dwelling unit is $126563 -in.representative_income 126569 Representative total house income in the dwelling unit is $126569 -in.representative_income 126571 Representative total house income in the dwelling unit is $126571 -in.representative_income 126574 Representative total house income in the dwelling unit is $126574 -in.representative_income 126577 Representative total house income in the dwelling unit is $126577 -in.representative_income 126611 Representative total house income in the dwelling unit is $126611 -in.representative_income 126616 Representative total house income in the dwelling unit is $126616 -in.representative_income 126622 Representative total house income in the dwelling unit is $126622 -in.representative_income 126629 Representative total house income in the dwelling unit is $126629 -in.representative_income 126631 Representative total house income in the dwelling unit is $126631 -in.representative_income 126633 Representative total house income in the dwelling unit is $126633 -in.representative_income 126635 Representative total house income in the dwelling unit is $126635 -in.representative_income 126637 Representative total house income in the dwelling unit is $126637 -in.representative_income 126652 Representative total house income in the dwelling unit is $126652 -in.representative_income 126658 Representative total house income in the dwelling unit is $126658 -in.representative_income 126659 Representative total house income in the dwelling unit is $126659 -in.representative_income 126662 Representative total house income in the dwelling unit is $126662 -in.representative_income 126667 Representative total house income in the dwelling unit is $126667 -in.representative_income 126671 Representative total house income in the dwelling unit is $126671 -in.representative_income 126672 Representative total house income in the dwelling unit is $126672 -in.representative_income 126673 Representative total house income in the dwelling unit is $126673 -in.representative_income 126678 Representative total house income in the dwelling unit is $126678 -in.representative_income 126690 Representative total house income in the dwelling unit is $126690 -in.representative_income 126699 Representative total house income in the dwelling unit is $126699 -in.representative_income 126700 Representative total house income in the dwelling unit is $126700 -in.representative_income 126720 Representative total house income in the dwelling unit is $126720 -in.representative_income 126739 Representative total house income in the dwelling unit is $126739 -in.representative_income 126764 Representative total house income in the dwelling unit is $126764 -in.representative_income 126766 Representative total house income in the dwelling unit is $126766 -in.representative_income 126768 Representative total house income in the dwelling unit is $126768 -in.representative_income 126771 Representative total house income in the dwelling unit is $126771 -in.representative_income 126773 Representative total house income in the dwelling unit is $126773 -in.representative_income 126775 Representative total house income in the dwelling unit is $126775 -in.representative_income 126776 Representative total house income in the dwelling unit is $126776 -in.representative_income 126796 Representative total house income in the dwelling unit is $126796 -in.representative_income 126804 Representative total house income in the dwelling unit is $126804 -in.representative_income 126805 Representative total house income in the dwelling unit is $126805 -in.representative_income 126806 Representative total house income in the dwelling unit is $126806 -in.representative_income 126817 Representative total house income in the dwelling unit is $126817 -in.representative_income 126822 Representative total house income in the dwelling unit is $126822 -in.representative_income 126824 Representative total house income in the dwelling unit is $126824 -in.representative_income 126825 Representative total house income in the dwelling unit is $126825 -in.representative_income 126847 Representative total house income in the dwelling unit is $126847 -in.representative_income 126859 Representative total house income in the dwelling unit is $126859 -in.representative_income 126869 Representative total house income in the dwelling unit is $126869 -in.representative_income 126874 Representative total house income in the dwelling unit is $126874 -in.representative_income 126882 Representative total house income in the dwelling unit is $126882 -in.representative_income 126890 Representative total house income in the dwelling unit is $126890 -in.representative_income 126903 Representative total house income in the dwelling unit is $126903 -in.representative_income 126926 Representative total house income in the dwelling unit is $126926 -in.representative_income 126935 Representative total house income in the dwelling unit is $126935 -in.representative_income 126946 Representative total house income in the dwelling unit is $126946 -in.representative_income 126955 Representative total house income in the dwelling unit is $126955 -in.representative_income 126966 Representative total house income in the dwelling unit is $126966 -in.representative_income 126971 Representative total house income in the dwelling unit is $126971 -in.representative_income 126975 Representative total house income in the dwelling unit is $126975 -in.representative_income 126977 Representative total house income in the dwelling unit is $126977 -in.representative_income 126989 Representative total house income in the dwelling unit is $126989 -in.representative_income 126990 Representative total house income in the dwelling unit is $126990 -in.representative_income 126999 Representative total house income in the dwelling unit is $126999 -in.representative_income 127013 Representative total house income in the dwelling unit is $127013 -in.representative_income 127023 Representative total house income in the dwelling unit is $127023 -in.representative_income 127049 Representative total house income in the dwelling unit is $127049 -in.representative_income 127063 Representative total house income in the dwelling unit is $127063 -in.representative_income 127067 Representative total house income in the dwelling unit is $127067 -in.representative_income 127074 Representative total house income in the dwelling unit is $127074 -in.representative_income 127075 Representative total house income in the dwelling unit is $127075 -in.representative_income 127076 Representative total house income in the dwelling unit is $127076 -in.representative_income 127080 Representative total house income in the dwelling unit is $127080 -in.representative_income 127081 Representative total house income in the dwelling unit is $127081 -in.representative_income 127096 Representative total house income in the dwelling unit is $127096 -in.representative_income 127101 Representative total house income in the dwelling unit is $127101 -in.representative_income 127106 Representative total house income in the dwelling unit is $127106 -in.representative_income 127116 Representative total house income in the dwelling unit is $127116 -in.representative_income 127118 Representative total house income in the dwelling unit is $127118 -in.representative_income 127126 Representative total house income in the dwelling unit is $127126 -in.representative_income 127133 Representative total house income in the dwelling unit is $127133 -in.representative_income 127143 Representative total house income in the dwelling unit is $127143 -in.representative_income 127172 Representative total house income in the dwelling unit is $127172 -in.representative_income 127177 Representative total house income in the dwelling unit is $127177 -in.representative_income 127178 Representative total house income in the dwelling unit is $127178 -in.representative_income 127185 Representative total house income in the dwelling unit is $127185 -in.representative_income 127198 Representative total house income in the dwelling unit is $127198 -in.representative_income 127204 Representative total house income in the dwelling unit is $127204 -in.representative_income 127208 Representative total house income in the dwelling unit is $127208 -in.representative_income 127225 Representative total house income in the dwelling unit is $127225 -in.representative_income 127226 Representative total house income in the dwelling unit is $127226 -in.representative_income 127228 Representative total house income in the dwelling unit is $127228 -in.representative_income 127239 Representative total house income in the dwelling unit is $127239 -in.representative_income 127261 Representative total house income in the dwelling unit is $127261 -in.representative_income 127270 Representative total house income in the dwelling unit is $127270 -in.representative_income 127278 Representative total house income in the dwelling unit is $127278 -in.representative_income 127280 Representative total house income in the dwelling unit is $127280 -in.representative_income 127281 Representative total house income in the dwelling unit is $127281 -in.representative_income 127286 Representative total house income in the dwelling unit is $127286 -in.representative_income 127288 Representative total house income in the dwelling unit is $127288 -in.representative_income 127290 Representative total house income in the dwelling unit is $127290 -in.representative_income 127298 Representative total house income in the dwelling unit is $127298 -in.representative_income 127309 Representative total house income in the dwelling unit is $127309 -in.representative_income 127311 Representative total house income in the dwelling unit is $127311 -in.representative_income 127329 Representative total house income in the dwelling unit is $127329 -in.representative_income 127333 Representative total house income in the dwelling unit is $127333 -in.representative_income 127343 Representative total house income in the dwelling unit is $127343 -in.representative_income 127358 Representative total house income in the dwelling unit is $127358 -in.representative_income 127375 Representative total house income in the dwelling unit is $127375 -in.representative_income 127379 Representative total house income in the dwelling unit is $127379 -in.representative_income 127385 Representative total house income in the dwelling unit is $127385 -in.representative_income 127388 Representative total house income in the dwelling unit is $127388 -in.representative_income 127397 Representative total house income in the dwelling unit is $127397 -in.representative_income 127399 Representative total house income in the dwelling unit is $127399 -in.representative_income 127409 Representative total house income in the dwelling unit is $127409 -in.representative_income 127418 Representative total house income in the dwelling unit is $127418 -in.representative_income 127419 Representative total house income in the dwelling unit is $127419 -in.representative_income 127425 Representative total house income in the dwelling unit is $127425 -in.representative_income 127428 Representative total house income in the dwelling unit is $127428 -in.representative_income 127442 Representative total house income in the dwelling unit is $127442 -in.representative_income 127460 Representative total house income in the dwelling unit is $127460 -in.representative_income 127477 Representative total house income in the dwelling unit is $127477 -in.representative_income 127480 Representative total house income in the dwelling unit is $127480 -in.representative_income 127484 Representative total house income in the dwelling unit is $127484 -in.representative_income 127487 Representative total house income in the dwelling unit is $127487 -in.representative_income 127493 Representative total house income in the dwelling unit is $127493 -in.representative_income 127495 Representative total house income in the dwelling unit is $127495 -in.representative_income 127502 Representative total house income in the dwelling unit is $127502 -in.representative_income 127506 Representative total house income in the dwelling unit is $127506 -in.representative_income 127517 Representative total house income in the dwelling unit is $127517 -in.representative_income 127525 Representative total house income in the dwelling unit is $127525 -in.representative_income 127526 Representative total house income in the dwelling unit is $127526 -in.representative_income 127528 Representative total house income in the dwelling unit is $127528 -in.representative_income 127554 Representative total house income in the dwelling unit is $127554 -in.representative_income 127558 Representative total house income in the dwelling unit is $127558 -in.representative_income 127560 Representative total house income in the dwelling unit is $127560 -in.representative_income 127561 Representative total house income in the dwelling unit is $127561 -in.representative_income 127566 Representative total house income in the dwelling unit is $127566 -in.representative_income 127581 Representative total house income in the dwelling unit is $127581 -in.representative_income 127582 Representative total house income in the dwelling unit is $127582 -in.representative_income 127586 Representative total house income in the dwelling unit is $127586 -in.representative_income 127590 Representative total house income in the dwelling unit is $127590 -in.representative_income 127603 Representative total house income in the dwelling unit is $127603 -in.representative_income 127605 Representative total house income in the dwelling unit is $127605 -in.representative_income 127607 Representative total house income in the dwelling unit is $127607 -in.representative_income 127618 Representative total house income in the dwelling unit is $127618 -in.representative_income 127619 Representative total house income in the dwelling unit is $127619 -in.representative_income 127628 Representative total house income in the dwelling unit is $127628 -in.representative_income 127632 Representative total house income in the dwelling unit is $127632 -in.representative_income 127633 Representative total house income in the dwelling unit is $127633 -in.representative_income 127642 Representative total house income in the dwelling unit is $127642 -in.representative_income 127646 Representative total house income in the dwelling unit is $127646 -in.representative_income 127649 Representative total house income in the dwelling unit is $127649 -in.representative_income 127654 Representative total house income in the dwelling unit is $127654 -in.representative_income 127657 Representative total house income in the dwelling unit is $127657 -in.representative_income 127673 Representative total house income in the dwelling unit is $127673 -in.representative_income 127681 Representative total house income in the dwelling unit is $127681 -in.representative_income 127682 Representative total house income in the dwelling unit is $127682 -in.representative_income 127692 Representative total house income in the dwelling unit is $127692 -in.representative_income 127694 Representative total house income in the dwelling unit is $127694 -in.representative_income 127701 Representative total house income in the dwelling unit is $127701 -in.representative_income 127711 Representative total house income in the dwelling unit is $127711 -in.representative_income 127713 Representative total house income in the dwelling unit is $127713 -in.representative_income 127722 Representative total house income in the dwelling unit is $127722 -in.representative_income 127723 Representative total house income in the dwelling unit is $127723 -in.representative_income 127726 Representative total house income in the dwelling unit is $127726 -in.representative_income 127735 Representative total house income in the dwelling unit is $127735 -in.representative_income 127740 Representative total house income in the dwelling unit is $127740 -in.representative_income 127744 Representative total house income in the dwelling unit is $127744 -in.representative_income 127751 Representative total house income in the dwelling unit is $127751 -in.representative_income 127754 Representative total house income in the dwelling unit is $127754 -in.representative_income 127756 Representative total house income in the dwelling unit is $127756 -in.representative_income 127765 Representative total house income in the dwelling unit is $127765 -in.representative_income 127772 Representative total house income in the dwelling unit is $127772 -in.representative_income 127776 Representative total house income in the dwelling unit is $127776 -in.representative_income 127783 Representative total house income in the dwelling unit is $127783 -in.representative_income 127794 Representative total house income in the dwelling unit is $127794 -in.representative_income 127797 Representative total house income in the dwelling unit is $127797 -in.representative_income 127818 Representative total house income in the dwelling unit is $127818 -in.representative_income 127819 Representative total house income in the dwelling unit is $127819 -in.representative_income 127820 Representative total house income in the dwelling unit is $127820 -in.representative_income 127828 Representative total house income in the dwelling unit is $127828 -in.representative_income 127835 Representative total house income in the dwelling unit is $127835 -in.representative_income 127848 Representative total house income in the dwelling unit is $127848 -in.representative_income 127859 Representative total house income in the dwelling unit is $127859 -in.representative_income 127861 Representative total house income in the dwelling unit is $127861 -in.representative_income 127864 Representative total house income in the dwelling unit is $127864 -in.representative_income 127869 Representative total house income in the dwelling unit is $127869 -in.representative_income 127871 Representative total house income in the dwelling unit is $127871 -in.representative_income 127884 Representative total house income in the dwelling unit is $127884 -in.representative_income 127895 Representative total house income in the dwelling unit is $127895 -in.representative_income 127900 Representative total house income in the dwelling unit is $127900 -in.representative_income 127901 Representative total house income in the dwelling unit is $127901 -in.representative_income 127911 Representative total house income in the dwelling unit is $127911 -in.representative_income 127912 Representative total house income in the dwelling unit is $127912 -in.representative_income 127915 Representative total house income in the dwelling unit is $127915 -in.representative_income 127924 Representative total house income in the dwelling unit is $127924 -in.representative_income 127928 Representative total house income in the dwelling unit is $127928 -in.representative_income 127931 Representative total house income in the dwelling unit is $127931 -in.representative_income 127935 Representative total house income in the dwelling unit is $127935 -in.representative_income 127939 Representative total house income in the dwelling unit is $127939 -in.representative_income 127941 Representative total house income in the dwelling unit is $127941 -in.representative_income 127942 Representative total house income in the dwelling unit is $127942 -in.representative_income 127952 Representative total house income in the dwelling unit is $127952 -in.representative_income 127956 Representative total house income in the dwelling unit is $127956 -in.representative_income 127976 Representative total house income in the dwelling unit is $127976 -in.representative_income 127977 Representative total house income in the dwelling unit is $127977 -in.representative_income 127983 Representative total house income in the dwelling unit is $127983 -in.representative_income 127985 Representative total house income in the dwelling unit is $127985 -in.representative_income 127987 Representative total house income in the dwelling unit is $127987 -in.representative_income 127992 Representative total house income in the dwelling unit is $127992 -in.representative_income 127995 Representative total house income in the dwelling unit is $127995 -in.representative_income 128001 Representative total house income in the dwelling unit is $128001 -in.representative_income 128003 Representative total house income in the dwelling unit is $128003 -in.representative_income 128016 Representative total house income in the dwelling unit is $128016 -in.representative_income 128024 Representative total house income in the dwelling unit is $128024 -in.representative_income 128026 Representative total house income in the dwelling unit is $128026 -in.representative_income 128029 Representative total house income in the dwelling unit is $128029 -in.representative_income 128034 Representative total house income in the dwelling unit is $128034 -in.representative_income 128036 Representative total house income in the dwelling unit is $128036 -in.representative_income 128037 Representative total house income in the dwelling unit is $128037 -in.representative_income 128054 Representative total house income in the dwelling unit is $128054 -in.representative_income 128062 Representative total house income in the dwelling unit is $128062 -in.representative_income 128086 Representative total house income in the dwelling unit is $128086 -in.representative_income 128106 Representative total house income in the dwelling unit is $128106 -in.representative_income 128116 Representative total house income in the dwelling unit is $128116 -in.representative_income 128118 Representative total house income in the dwelling unit is $128118 -in.representative_income 128127 Representative total house income in the dwelling unit is $128127 -in.representative_income 128131 Representative total house income in the dwelling unit is $128131 -in.representative_income 128135 Representative total house income in the dwelling unit is $128135 -in.representative_income 128144 Representative total house income in the dwelling unit is $128144 -in.representative_income 128148 Representative total house income in the dwelling unit is $128148 -in.representative_income 128154 Representative total house income in the dwelling unit is $128154 -in.representative_income 128155 Representative total house income in the dwelling unit is $128155 -in.representative_income 128170 Representative total house income in the dwelling unit is $128170 -in.representative_income 128187 Representative total house income in the dwelling unit is $128187 -in.representative_income 128191 Representative total house income in the dwelling unit is $128191 -in.representative_income 128198 Representative total house income in the dwelling unit is $128198 -in.representative_income 128209 Representative total house income in the dwelling unit is $128209 -in.representative_income 128211 Representative total house income in the dwelling unit is $128211 -in.representative_income 128219 Representative total house income in the dwelling unit is $128219 -in.representative_income 128228 Representative total house income in the dwelling unit is $128228 -in.representative_income 128230 Representative total house income in the dwelling unit is $128230 -in.representative_income 128240 Representative total house income in the dwelling unit is $128240 -in.representative_income 128248 Representative total house income in the dwelling unit is $128248 -in.representative_income 128252 Representative total house income in the dwelling unit is $128252 -in.representative_income 128253 Representative total house income in the dwelling unit is $128253 -in.representative_income 128256 Representative total house income in the dwelling unit is $128256 -in.representative_income 128263 Representative total house income in the dwelling unit is $128263 -in.representative_income 128264 Representative total house income in the dwelling unit is $128264 -in.representative_income 128267 Representative total house income in the dwelling unit is $128267 -in.representative_income 128268 Representative total house income in the dwelling unit is $128268 -in.representative_income 128271 Representative total house income in the dwelling unit is $128271 -in.representative_income 128277 Representative total house income in the dwelling unit is $128277 -in.representative_income 128283 Representative total house income in the dwelling unit is $128283 -in.representative_income 128287 Representative total house income in the dwelling unit is $128287 -in.representative_income 128288 Representative total house income in the dwelling unit is $128288 -in.representative_income 128295 Representative total house income in the dwelling unit is $128295 -in.representative_income 128298 Representative total house income in the dwelling unit is $128298 -in.representative_income 128299 Representative total house income in the dwelling unit is $128299 -in.representative_income 128303 Representative total house income in the dwelling unit is $128303 -in.representative_income 128304 Representative total house income in the dwelling unit is $128304 -in.representative_income 128309 Representative total house income in the dwelling unit is $128309 -in.representative_income 128313 Representative total house income in the dwelling unit is $128313 -in.representative_income 128319 Representative total house income in the dwelling unit is $128319 -in.representative_income 128322 Representative total house income in the dwelling unit is $128322 -in.representative_income 128331 Representative total house income in the dwelling unit is $128331 -in.representative_income 128333 Representative total house income in the dwelling unit is $128333 -in.representative_income 128339 Representative total house income in the dwelling unit is $128339 -in.representative_income 128342 Representative total house income in the dwelling unit is $128342 -in.representative_income 128345 Representative total house income in the dwelling unit is $128345 -in.representative_income 128357 Representative total house income in the dwelling unit is $128357 -in.representative_income 128360 Representative total house income in the dwelling unit is $128360 -in.representative_income 128363 Representative total house income in the dwelling unit is $128363 -in.representative_income 128366 Representative total house income in the dwelling unit is $128366 -in.representative_income 128367 Representative total house income in the dwelling unit is $128367 -in.representative_income 128373 Representative total house income in the dwelling unit is $128373 -in.representative_income 128374 Representative total house income in the dwelling unit is $128374 -in.representative_income 128375 Representative total house income in the dwelling unit is $128375 -in.representative_income 128379 Representative total house income in the dwelling unit is $128379 -in.representative_income 128385 Representative total house income in the dwelling unit is $128385 -in.representative_income 128389 Representative total house income in the dwelling unit is $128389 -in.representative_income 128398 Representative total house income in the dwelling unit is $128398 -in.representative_income 128403 Representative total house income in the dwelling unit is $128403 -in.representative_income 128405 Representative total house income in the dwelling unit is $128405 -in.representative_income 128415 Representative total house income in the dwelling unit is $128415 -in.representative_income 128416 Representative total house income in the dwelling unit is $128416 -in.representative_income 128440 Representative total house income in the dwelling unit is $128440 -in.representative_income 128451 Representative total house income in the dwelling unit is $128451 -in.representative_income 128468 Representative total house income in the dwelling unit is $128468 -in.representative_income 128483 Representative total house income in the dwelling unit is $128483 -in.representative_income 128490 Representative total house income in the dwelling unit is $128490 -in.representative_income 128492 Representative total house income in the dwelling unit is $128492 -in.representative_income 128493 Representative total house income in the dwelling unit is $128493 -in.representative_income 128503 Representative total house income in the dwelling unit is $128503 -in.representative_income 128510 Representative total house income in the dwelling unit is $128510 -in.representative_income 128511 Representative total house income in the dwelling unit is $128511 -in.representative_income 128518 Representative total house income in the dwelling unit is $128518 -in.representative_income 128530 Representative total house income in the dwelling unit is $128530 -in.representative_income 128535 Representative total house income in the dwelling unit is $128535 -in.representative_income 128538 Representative total house income in the dwelling unit is $128538 -in.representative_income 128545 Representative total house income in the dwelling unit is $128545 -in.representative_income 128551 Representative total house income in the dwelling unit is $128551 -in.representative_income 128554 Representative total house income in the dwelling unit is $128554 -in.representative_income 128557 Representative total house income in the dwelling unit is $128557 -in.representative_income 128576 Representative total house income in the dwelling unit is $128576 -in.representative_income 128578 Representative total house income in the dwelling unit is $128578 -in.representative_income 128583 Representative total house income in the dwelling unit is $128583 -in.representative_income 128588 Representative total house income in the dwelling unit is $128588 -in.representative_income 128591 Representative total house income in the dwelling unit is $128591 -in.representative_income 128597 Representative total house income in the dwelling unit is $128597 -in.representative_income 128599 Representative total house income in the dwelling unit is $128599 -in.representative_income 128600 Representative total house income in the dwelling unit is $128600 -in.representative_income 128619 Representative total house income in the dwelling unit is $128619 -in.representative_income 128622 Representative total house income in the dwelling unit is $128622 -in.representative_income 128630 Representative total house income in the dwelling unit is $128630 -in.representative_income 128642 Representative total house income in the dwelling unit is $128642 -in.representative_income 128662 Representative total house income in the dwelling unit is $128662 -in.representative_income 128683 Representative total house income in the dwelling unit is $128683 -in.representative_income 128684 Representative total house income in the dwelling unit is $128684 -in.representative_income 128685 Representative total house income in the dwelling unit is $128685 -in.representative_income 128692 Representative total house income in the dwelling unit is $128692 -in.representative_income 128694 Representative total house income in the dwelling unit is $128694 -in.representative_income 128706 Representative total house income in the dwelling unit is $128706 -in.representative_income 128714 Representative total house income in the dwelling unit is $128714 -in.representative_income 128721 Representative total house income in the dwelling unit is $128721 -in.representative_income 128725 Representative total house income in the dwelling unit is $128725 -in.representative_income 128728 Representative total house income in the dwelling unit is $128728 -in.representative_income 128735 Representative total house income in the dwelling unit is $128735 -in.representative_income 128738 Representative total house income in the dwelling unit is $128738 -in.representative_income 128753 Representative total house income in the dwelling unit is $128753 -in.representative_income 128757 Representative total house income in the dwelling unit is $128757 -in.representative_income 128767 Representative total house income in the dwelling unit is $128767 -in.representative_income 128768 Representative total house income in the dwelling unit is $128768 -in.representative_income 128777 Representative total house income in the dwelling unit is $128777 -in.representative_income 128785 Representative total house income in the dwelling unit is $128785 -in.representative_income 128792 Representative total house income in the dwelling unit is $128792 -in.representative_income 128793 Representative total house income in the dwelling unit is $128793 -in.representative_income 128801 Representative total house income in the dwelling unit is $128801 -in.representative_income 128814 Representative total house income in the dwelling unit is $128814 -in.representative_income 128815 Representative total house income in the dwelling unit is $128815 -in.representative_income 128818 Representative total house income in the dwelling unit is $128818 -in.representative_income 128824 Representative total house income in the dwelling unit is $128824 -in.representative_income 128825 Representative total house income in the dwelling unit is $128825 -in.representative_income 128828 Representative total house income in the dwelling unit is $128828 -in.representative_income 128832 Representative total house income in the dwelling unit is $128832 -in.representative_income 128835 Representative total house income in the dwelling unit is $128835 -in.representative_income 128844 Representative total house income in the dwelling unit is $128844 -in.representative_income 128846 Representative total house income in the dwelling unit is $128846 -in.representative_income 128850 Representative total house income in the dwelling unit is $128850 -in.representative_income 128854 Representative total house income in the dwelling unit is $128854 -in.representative_income 128856 Representative total house income in the dwelling unit is $128856 -in.representative_income 128862 Representative total house income in the dwelling unit is $128862 -in.representative_income 128867 Representative total house income in the dwelling unit is $128867 -in.representative_income 128870 Representative total house income in the dwelling unit is $128870 -in.representative_income 128873 Representative total house income in the dwelling unit is $128873 -in.representative_income 128879 Representative total house income in the dwelling unit is $128879 -in.representative_income 128880 Representative total house income in the dwelling unit is $128880 -in.representative_income 128881 Representative total house income in the dwelling unit is $128881 -in.representative_income 128895 Representative total house income in the dwelling unit is $128895 -in.representative_income 128900 Representative total house income in the dwelling unit is $128900 -in.representative_income 128905 Representative total house income in the dwelling unit is $128905 -in.representative_income 128911 Representative total house income in the dwelling unit is $128911 -in.representative_income 128913 Representative total house income in the dwelling unit is $128913 -in.representative_income 128914 Representative total house income in the dwelling unit is $128914 -in.representative_income 128921 Representative total house income in the dwelling unit is $128921 -in.representative_income 128922 Representative total house income in the dwelling unit is $128922 -in.representative_income 128926 Representative total house income in the dwelling unit is $128926 -in.representative_income 128932 Representative total house income in the dwelling unit is $128932 -in.representative_income 128936 Representative total house income in the dwelling unit is $128936 -in.representative_income 128942 Representative total house income in the dwelling unit is $128942 -in.representative_income 128949 Representative total house income in the dwelling unit is $128949 -in.representative_income 128952 Representative total house income in the dwelling unit is $128952 -in.representative_income 128953 Representative total house income in the dwelling unit is $128953 -in.representative_income 128955 Representative total house income in the dwelling unit is $128955 -in.representative_income 128962 Representative total house income in the dwelling unit is $128962 -in.representative_income 128975 Representative total house income in the dwelling unit is $128975 -in.representative_income 128978 Representative total house income in the dwelling unit is $128978 -in.representative_income 128983 Representative total house income in the dwelling unit is $128983 -in.representative_income 128985 Representative total house income in the dwelling unit is $128985 -in.representative_income 128987 Representative total house income in the dwelling unit is $128987 -in.representative_income 128994 Representative total house income in the dwelling unit is $128994 -in.representative_income 128996 Representative total house income in the dwelling unit is $128996 -in.representative_income 129004 Representative total house income in the dwelling unit is $129004 -in.representative_income 129008 Representative total house income in the dwelling unit is $129008 -in.representative_income 129017 Representative total house income in the dwelling unit is $129017 -in.representative_income 129019 Representative total house income in the dwelling unit is $129019 -in.representative_income 129029 Representative total house income in the dwelling unit is $129029 -in.representative_income 129030 Representative total house income in the dwelling unit is $129030 -in.representative_income 129035 Representative total house income in the dwelling unit is $129035 -in.representative_income 129045 Representative total house income in the dwelling unit is $129045 -in.representative_income 129050 Representative total house income in the dwelling unit is $129050 -in.representative_income 129066 Representative total house income in the dwelling unit is $129066 -in.representative_income 129071 Representative total house income in the dwelling unit is $129071 -in.representative_income 129076 Representative total house income in the dwelling unit is $129076 -in.representative_income 129082 Representative total house income in the dwelling unit is $129082 -in.representative_income 129083 Representative total house income in the dwelling unit is $129083 -in.representative_income 129093 Representative total house income in the dwelling unit is $129093 -in.representative_income 129097 Representative total house income in the dwelling unit is $129097 -in.representative_income 129105 Representative total house income in the dwelling unit is $129105 -in.representative_income 129109 Representative total house income in the dwelling unit is $129109 -in.representative_income 129114 Representative total house income in the dwelling unit is $129114 -in.representative_income 129116 Representative total house income in the dwelling unit is $129116 -in.representative_income 129125 Representative total house income in the dwelling unit is $129125 -in.representative_income 129127 Representative total house income in the dwelling unit is $129127 -in.representative_income 129131 Representative total house income in the dwelling unit is $129131 -in.representative_income 129136 Representative total house income in the dwelling unit is $129136 -in.representative_income 129137 Representative total house income in the dwelling unit is $129137 -in.representative_income 129141 Representative total house income in the dwelling unit is $129141 -in.representative_income 129147 Representative total house income in the dwelling unit is $129147 -in.representative_income 129153 Representative total house income in the dwelling unit is $129153 -in.representative_income 129159 Representative total house income in the dwelling unit is $129159 -in.representative_income 129189 Representative total house income in the dwelling unit is $129189 -in.representative_income 129190 Representative total house income in the dwelling unit is $129190 -in.representative_income 129198 Representative total house income in the dwelling unit is $129198 -in.representative_income 129205 Representative total house income in the dwelling unit is $129205 -in.representative_income 129210 Representative total house income in the dwelling unit is $129210 -in.representative_income 129211 Representative total house income in the dwelling unit is $129211 -in.representative_income 129221 Representative total house income in the dwelling unit is $129221 -in.representative_income 129224 Representative total house income in the dwelling unit is $129224 -in.representative_income 129231 Representative total house income in the dwelling unit is $129231 -in.representative_income 129235 Representative total house income in the dwelling unit is $129235 -in.representative_income 129241 Representative total house income in the dwelling unit is $129241 -in.representative_income 129243 Representative total house income in the dwelling unit is $129243 -in.representative_income 129248 Representative total house income in the dwelling unit is $129248 -in.representative_income 129249 Representative total house income in the dwelling unit is $129249 -in.representative_income 129258 Representative total house income in the dwelling unit is $129258 -in.representative_income 129259 Representative total house income in the dwelling unit is $129259 -in.representative_income 129262 Representative total house income in the dwelling unit is $129262 -in.representative_income 129273 Representative total house income in the dwelling unit is $129273 -in.representative_income 129276 Representative total house income in the dwelling unit is $129276 -in.representative_income 129295 Representative total house income in the dwelling unit is $129295 -in.representative_income 129299 Representative total house income in the dwelling unit is $129299 -in.representative_income 129300 Representative total house income in the dwelling unit is $129300 -in.representative_income 129309 Representative total house income in the dwelling unit is $129309 -in.representative_income 129319 Representative total house income in the dwelling unit is $129319 -in.representative_income 129321 Representative total house income in the dwelling unit is $129321 -in.representative_income 129324 Representative total house income in the dwelling unit is $129324 -in.representative_income 129329 Representative total house income in the dwelling unit is $129329 -in.representative_income 129332 Representative total house income in the dwelling unit is $129332 -in.representative_income 129339 Representative total house income in the dwelling unit is $129339 -in.representative_income 129344 Representative total house income in the dwelling unit is $129344 -in.representative_income 129347 Representative total house income in the dwelling unit is $129347 -in.representative_income 129349 Representative total house income in the dwelling unit is $129349 -in.representative_income 129350 Representative total house income in the dwelling unit is $129350 -in.representative_income 129351 Representative total house income in the dwelling unit is $129351 -in.representative_income 129354 Representative total house income in the dwelling unit is $129354 -in.representative_income 129369 Representative total house income in the dwelling unit is $129369 -in.representative_income 129372 Representative total house income in the dwelling unit is $129372 -in.representative_income 129378 Representative total house income in the dwelling unit is $129378 -in.representative_income 129389 Representative total house income in the dwelling unit is $129389 -in.representative_income 129400 Representative total house income in the dwelling unit is $129400 -in.representative_income 129402 Representative total house income in the dwelling unit is $129402 -in.representative_income 129410 Representative total house income in the dwelling unit is $129410 -in.representative_income 129416 Representative total house income in the dwelling unit is $129416 -in.representative_income 129430 Representative total house income in the dwelling unit is $129430 -in.representative_income 129440 Representative total house income in the dwelling unit is $129440 -in.representative_income 129447 Representative total house income in the dwelling unit is $129447 -in.representative_income 129449 Representative total house income in the dwelling unit is $129449 -in.representative_income 129450 Representative total house income in the dwelling unit is $129450 -in.representative_income 129451 Representative total house income in the dwelling unit is $129451 -in.representative_income 129458 Representative total house income in the dwelling unit is $129458 -in.representative_income 129468 Representative total house income in the dwelling unit is $129468 -in.representative_income 129470 Representative total house income in the dwelling unit is $129470 -in.representative_income 129495 Representative total house income in the dwelling unit is $129495 -in.representative_income 129499 Representative total house income in the dwelling unit is $129499 -in.representative_income 129500 Representative total house income in the dwelling unit is $129500 -in.representative_income 129501 Representative total house income in the dwelling unit is $129501 -in.representative_income 129505 Representative total house income in the dwelling unit is $129505 -in.representative_income 129506 Representative total house income in the dwelling unit is $129506 -in.representative_income 129511 Representative total house income in the dwelling unit is $129511 -in.representative_income 129514 Representative total house income in the dwelling unit is $129514 -in.representative_income 129516 Representative total house income in the dwelling unit is $129516 -in.representative_income 129519 Representative total house income in the dwelling unit is $129519 -in.representative_income 129522 Representative total house income in the dwelling unit is $129522 -in.representative_income 129527 Representative total house income in the dwelling unit is $129527 -in.representative_income 129528 Representative total house income in the dwelling unit is $129528 -in.representative_income 129537 Representative total house income in the dwelling unit is $129537 -in.representative_income 129544 Representative total house income in the dwelling unit is $129544 -in.representative_income 129549 Representative total house income in the dwelling unit is $129549 -in.representative_income 129551 Representative total house income in the dwelling unit is $129551 -in.representative_income 129555 Representative total house income in the dwelling unit is $129555 -in.representative_income 129559 Representative total house income in the dwelling unit is $129559 -in.representative_income 129566 Representative total house income in the dwelling unit is $129566 -in.representative_income 129571 Representative total house income in the dwelling unit is $129571 -in.representative_income 129587 Representative total house income in the dwelling unit is $129587 -in.representative_income 129602 Representative total house income in the dwelling unit is $129602 -in.representative_income 129611 Representative total house income in the dwelling unit is $129611 -in.representative_income 129622 Representative total house income in the dwelling unit is $129622 -in.representative_income 129624 Representative total house income in the dwelling unit is $129624 -in.representative_income 129635 Representative total house income in the dwelling unit is $129635 -in.representative_income 129642 Representative total house income in the dwelling unit is $129642 -in.representative_income 129653 Representative total house income in the dwelling unit is $129653 -in.representative_income 129654 Representative total house income in the dwelling unit is $129654 -in.representative_income 129657 Representative total house income in the dwelling unit is $129657 -in.representative_income 129658 Representative total house income in the dwelling unit is $129658 -in.representative_income 129667 Representative total house income in the dwelling unit is $129667 -in.representative_income 129673 Representative total house income in the dwelling unit is $129673 -in.representative_income 129678 Representative total house income in the dwelling unit is $129678 -in.representative_income 129679 Representative total house income in the dwelling unit is $129679 -in.representative_income 129687 Representative total house income in the dwelling unit is $129687 -in.representative_income 129695 Representative total house income in the dwelling unit is $129695 -in.representative_income 129700 Representative total house income in the dwelling unit is $129700 -in.representative_income 129701 Representative total house income in the dwelling unit is $129701 -in.representative_income 129703 Representative total house income in the dwelling unit is $129703 -in.representative_income 129705 Representative total house income in the dwelling unit is $129705 -in.representative_income 129711 Representative total house income in the dwelling unit is $129711 -in.representative_income 129713 Representative total house income in the dwelling unit is $129713 -in.representative_income 129716 Representative total house income in the dwelling unit is $129716 -in.representative_income 129721 Representative total house income in the dwelling unit is $129721 -in.representative_income 129727 Representative total house income in the dwelling unit is $129727 -in.representative_income 129732 Representative total house income in the dwelling unit is $129732 -in.representative_income 129733 Representative total house income in the dwelling unit is $129733 -in.representative_income 129737 Representative total house income in the dwelling unit is $129737 -in.representative_income 129743 Representative total house income in the dwelling unit is $129743 -in.representative_income 129753 Representative total house income in the dwelling unit is $129753 -in.representative_income 129754 Representative total house income in the dwelling unit is $129754 -in.representative_income 129756 Representative total house income in the dwelling unit is $129756 -in.representative_income 129765 Representative total house income in the dwelling unit is $129765 -in.representative_income 129769 Representative total house income in the dwelling unit is $129769 -in.representative_income 129775 Representative total house income in the dwelling unit is $129775 -in.representative_income 129780 Representative total house income in the dwelling unit is $129780 -in.representative_income 129786 Representative total house income in the dwelling unit is $129786 -in.representative_income 129788 Representative total house income in the dwelling unit is $129788 -in.representative_income 129796 Representative total house income in the dwelling unit is $129796 -in.representative_income 129802 Representative total house income in the dwelling unit is $129802 -in.representative_income 129804 Representative total house income in the dwelling unit is $129804 -in.representative_income 129808 Representative total house income in the dwelling unit is $129808 -in.representative_income 129810 Representative total house income in the dwelling unit is $129810 -in.representative_income 129811 Representative total house income in the dwelling unit is $129811 -in.representative_income 129818 Representative total house income in the dwelling unit is $129818 -in.representative_income 129819 Representative total house income in the dwelling unit is $129819 -in.representative_income 129822 Representative total house income in the dwelling unit is $129822 -in.representative_income 129823 Representative total house income in the dwelling unit is $129823 -in.representative_income 129824 Representative total house income in the dwelling unit is $129824 -in.representative_income 129829 Representative total house income in the dwelling unit is $129829 -in.representative_income 129840 Representative total house income in the dwelling unit is $129840 -in.representative_income 129844 Representative total house income in the dwelling unit is $129844 -in.representative_income 129845 Representative total house income in the dwelling unit is $129845 -in.representative_income 129854 Representative total house income in the dwelling unit is $129854 -in.representative_income 129860 Representative total house income in the dwelling unit is $129860 -in.representative_income 129873 Representative total house income in the dwelling unit is $129873 -in.representative_income 129875 Representative total house income in the dwelling unit is $129875 -in.representative_income 129877 Representative total house income in the dwelling unit is $129877 -in.representative_income 129883 Representative total house income in the dwelling unit is $129883 -in.representative_income 129885 Representative total house income in the dwelling unit is $129885 -in.representative_income 129887 Representative total house income in the dwelling unit is $129887 -in.representative_income 129889 Representative total house income in the dwelling unit is $129889 -in.representative_income 129905 Representative total house income in the dwelling unit is $129905 -in.representative_income 129908 Representative total house income in the dwelling unit is $129908 -in.representative_income 129922 Representative total house income in the dwelling unit is $129922 -in.representative_income 129926 Representative total house income in the dwelling unit is $129926 -in.representative_income 129928 Representative total house income in the dwelling unit is $129928 -in.representative_income 129932 Representative total house income in the dwelling unit is $129932 -in.representative_income 129963 Representative total house income in the dwelling unit is $129963 -in.representative_income 129965 Representative total house income in the dwelling unit is $129965 -in.representative_income 129980 Representative total house income in the dwelling unit is $129980 -in.representative_income 129983 Representative total house income in the dwelling unit is $129983 -in.representative_income 129990 Representative total house income in the dwelling unit is $129990 -in.representative_income 129994 Representative total house income in the dwelling unit is $129994 -in.representative_income 129995 Representative total house income in the dwelling unit is $129995 -in.representative_income 129996 Representative total house income in the dwelling unit is $129996 -in.representative_income 130005 Representative total house income in the dwelling unit is $130005 -in.representative_income 130006 Representative total house income in the dwelling unit is $130006 -in.representative_income 130018 Representative total house income in the dwelling unit is $130018 -in.representative_income 130026 Representative total house income in the dwelling unit is $130026 -in.representative_income 130027 Representative total house income in the dwelling unit is $130027 -in.representative_income 130033 Representative total house income in the dwelling unit is $130033 -in.representative_income 130034 Representative total house income in the dwelling unit is $130034 -in.representative_income 130035 Representative total house income in the dwelling unit is $130035 -in.representative_income 130042 Representative total house income in the dwelling unit is $130042 -in.representative_income 130044 Representative total house income in the dwelling unit is $130044 -in.representative_income 130048 Representative total house income in the dwelling unit is $130048 -in.representative_income 130056 Representative total house income in the dwelling unit is $130056 -in.representative_income 130066 Representative total house income in the dwelling unit is $130066 -in.representative_income 130077 Representative total house income in the dwelling unit is $130077 -in.representative_income 130081 Representative total house income in the dwelling unit is $130081 -in.representative_income 130088 Representative total house income in the dwelling unit is $130088 -in.representative_income 130099 Representative total house income in the dwelling unit is $130099 -in.representative_income 130102 Representative total house income in the dwelling unit is $130102 -in.representative_income 130103 Representative total house income in the dwelling unit is $130103 -in.representative_income 130107 Representative total house income in the dwelling unit is $130107 -in.representative_income 130113 Representative total house income in the dwelling unit is $130113 -in.representative_income 130117 Representative total house income in the dwelling unit is $130117 -in.representative_income 130118 Representative total house income in the dwelling unit is $130118 -in.representative_income 130127 Representative total house income in the dwelling unit is $130127 -in.representative_income 130134 Representative total house income in the dwelling unit is $130134 -in.representative_income 130138 Representative total house income in the dwelling unit is $130138 -in.representative_income 130147 Representative total house income in the dwelling unit is $130147 -in.representative_income 130149 Representative total house income in the dwelling unit is $130149 -in.representative_income 130153 Representative total house income in the dwelling unit is $130153 -in.representative_income 130156 Representative total house income in the dwelling unit is $130156 -in.representative_income 130166 Representative total house income in the dwelling unit is $130166 -in.representative_income 130169 Representative total house income in the dwelling unit is $130169 -in.representative_income 130191 Representative total house income in the dwelling unit is $130191 -in.representative_income 130196 Representative total house income in the dwelling unit is $130196 -in.representative_income 130197 Representative total house income in the dwelling unit is $130197 -in.representative_income 130198 Representative total house income in the dwelling unit is $130198 -in.representative_income 130208 Representative total house income in the dwelling unit is $130208 -in.representative_income 130210 Representative total house income in the dwelling unit is $130210 -in.representative_income 130223 Representative total house income in the dwelling unit is $130223 -in.representative_income 130233 Representative total house income in the dwelling unit is $130233 -in.representative_income 130235 Representative total house income in the dwelling unit is $130235 -in.representative_income 130242 Representative total house income in the dwelling unit is $130242 -in.representative_income 130244 Representative total house income in the dwelling unit is $130244 -in.representative_income 130247 Representative total house income in the dwelling unit is $130247 -in.representative_income 130250 Representative total house income in the dwelling unit is $130250 -in.representative_income 130258 Representative total house income in the dwelling unit is $130258 -in.representative_income 130261 Representative total house income in the dwelling unit is $130261 -in.representative_income 130268 Representative total house income in the dwelling unit is $130268 -in.representative_income 130272 Representative total house income in the dwelling unit is $130272 -in.representative_income 130276 Representative total house income in the dwelling unit is $130276 -in.representative_income 130278 Representative total house income in the dwelling unit is $130278 -in.representative_income 130282 Representative total house income in the dwelling unit is $130282 -in.representative_income 130284 Representative total house income in the dwelling unit is $130284 -in.representative_income 130293 Representative total house income in the dwelling unit is $130293 -in.representative_income 130305 Representative total house income in the dwelling unit is $130305 -in.representative_income 130309 Representative total house income in the dwelling unit is $130309 -in.representative_income 130314 Representative total house income in the dwelling unit is $130314 -in.representative_income 130316 Representative total house income in the dwelling unit is $130316 -in.representative_income 130320 Representative total house income in the dwelling unit is $130320 -in.representative_income 130327 Representative total house income in the dwelling unit is $130327 -in.representative_income 130333 Representative total house income in the dwelling unit is $130333 -in.representative_income 130338 Representative total house income in the dwelling unit is $130338 -in.representative_income 130345 Representative total house income in the dwelling unit is $130345 -in.representative_income 130349 Representative total house income in the dwelling unit is $130349 -in.representative_income 130355 Representative total house income in the dwelling unit is $130355 -in.representative_income 130359 Representative total house income in the dwelling unit is $130359 -in.representative_income 130371 Representative total house income in the dwelling unit is $130371 -in.representative_income 130375 Representative total house income in the dwelling unit is $130375 -in.representative_income 130379 Representative total house income in the dwelling unit is $130379 -in.representative_income 130390 Representative total house income in the dwelling unit is $130390 -in.representative_income 130403 Representative total house income in the dwelling unit is $130403 -in.representative_income 130407 Representative total house income in the dwelling unit is $130407 -in.representative_income 130410 Representative total house income in the dwelling unit is $130410 -in.representative_income 130413 Representative total house income in the dwelling unit is $130413 -in.representative_income 130424 Representative total house income in the dwelling unit is $130424 -in.representative_income 130427 Representative total house income in the dwelling unit is $130427 -in.representative_income 130435 Representative total house income in the dwelling unit is $130435 -in.representative_income 130445 Representative total house income in the dwelling unit is $130445 -in.representative_income 130455 Representative total house income in the dwelling unit is $130455 -in.representative_income 130467 Representative total house income in the dwelling unit is $130467 -in.representative_income 130476 Representative total house income in the dwelling unit is $130476 -in.representative_income 130479 Representative total house income in the dwelling unit is $130479 -in.representative_income 130487 Representative total house income in the dwelling unit is $130487 -in.representative_income 130488 Representative total house income in the dwelling unit is $130488 -in.representative_income 130497 Representative total house income in the dwelling unit is $130497 -in.representative_income 130508 Representative total house income in the dwelling unit is $130508 -in.representative_income 130511 Representative total house income in the dwelling unit is $130511 -in.representative_income 130521 Representative total house income in the dwelling unit is $130521 -in.representative_income 130531 Representative total house income in the dwelling unit is $130531 -in.representative_income 130532 Representative total house income in the dwelling unit is $130532 -in.representative_income 130539 Representative total house income in the dwelling unit is $130539 -in.representative_income 130543 Representative total house income in the dwelling unit is $130543 -in.representative_income 130546 Representative total house income in the dwelling unit is $130546 -in.representative_income 130550 Representative total house income in the dwelling unit is $130550 -in.representative_income 130551 Representative total house income in the dwelling unit is $130551 -in.representative_income 130561 Representative total house income in the dwelling unit is $130561 -in.representative_income 130575 Representative total house income in the dwelling unit is $130575 -in.representative_income 130582 Representative total house income in the dwelling unit is $130582 -in.representative_income 130584 Representative total house income in the dwelling unit is $130584 -in.representative_income 130585 Representative total house income in the dwelling unit is $130585 -in.representative_income 130612 Representative total house income in the dwelling unit is $130612 -in.representative_income 130613 Representative total house income in the dwelling unit is $130613 -in.representative_income 130618 Representative total house income in the dwelling unit is $130618 -in.representative_income 130629 Representative total house income in the dwelling unit is $130629 -in.representative_income 130633 Representative total house income in the dwelling unit is $130633 -in.representative_income 130634 Representative total house income in the dwelling unit is $130634 -in.representative_income 130639 Representative total house income in the dwelling unit is $130639 -in.representative_income 130641 Representative total house income in the dwelling unit is $130641 -in.representative_income 130642 Representative total house income in the dwelling unit is $130642 -in.representative_income 130644 Representative total house income in the dwelling unit is $130644 -in.representative_income 130645 Representative total house income in the dwelling unit is $130645 -in.representative_income 130666 Representative total house income in the dwelling unit is $130666 -in.representative_income 130671 Representative total house income in the dwelling unit is $130671 -in.representative_income 130672 Representative total house income in the dwelling unit is $130672 -in.representative_income 130683 Representative total house income in the dwelling unit is $130683 -in.representative_income 130685 Representative total house income in the dwelling unit is $130685 -in.representative_income 130692 Representative total house income in the dwelling unit is $130692 -in.representative_income 130697 Representative total house income in the dwelling unit is $130697 -in.representative_income 130703 Representative total house income in the dwelling unit is $130703 -in.representative_income 130704 Representative total house income in the dwelling unit is $130704 -in.representative_income 130713 Representative total house income in the dwelling unit is $130713 -in.representative_income 130716 Representative total house income in the dwelling unit is $130716 -in.representative_income 130726 Representative total house income in the dwelling unit is $130726 -in.representative_income 130737 Representative total house income in the dwelling unit is $130737 -in.representative_income 130743 Representative total house income in the dwelling unit is $130743 -in.representative_income 130746 Representative total house income in the dwelling unit is $130746 -in.representative_income 130753 Representative total house income in the dwelling unit is $130753 -in.representative_income 130769 Representative total house income in the dwelling unit is $130769 -in.representative_income 130771 Representative total house income in the dwelling unit is $130771 -in.representative_income 130778 Representative total house income in the dwelling unit is $130778 -in.representative_income 130782 Representative total house income in the dwelling unit is $130782 -in.representative_income 130788 Representative total house income in the dwelling unit is $130788 -in.representative_income 130789 Representative total house income in the dwelling unit is $130789 -in.representative_income 130791 Representative total house income in the dwelling unit is $130791 -in.representative_income 130792 Representative total house income in the dwelling unit is $130792 -in.representative_income 130795 Representative total house income in the dwelling unit is $130795 -in.representative_income 130798 Representative total house income in the dwelling unit is $130798 -in.representative_income 130800 Representative total house income in the dwelling unit is $130800 -in.representative_income 130802 Representative total house income in the dwelling unit is $130802 -in.representative_income 130809 Representative total house income in the dwelling unit is $130809 -in.representative_income 130814 Representative total house income in the dwelling unit is $130814 -in.representative_income 130823 Representative total house income in the dwelling unit is $130823 -in.representative_income 130824 Representative total house income in the dwelling unit is $130824 -in.representative_income 130839 Representative total house income in the dwelling unit is $130839 -in.representative_income 130844 Representative total house income in the dwelling unit is $130844 -in.representative_income 130845 Representative total house income in the dwelling unit is $130845 -in.representative_income 130853 Representative total house income in the dwelling unit is $130853 -in.representative_income 130862 Representative total house income in the dwelling unit is $130862 -in.representative_income 130866 Representative total house income in the dwelling unit is $130866 -in.representative_income 130876 Representative total house income in the dwelling unit is $130876 -in.representative_income 130886 Representative total house income in the dwelling unit is $130886 -in.representative_income 130887 Representative total house income in the dwelling unit is $130887 -in.representative_income 130891 Representative total house income in the dwelling unit is $130891 -in.representative_income 130899 Representative total house income in the dwelling unit is $130899 -in.representative_income 130905 Representative total house income in the dwelling unit is $130905 -in.representative_income 130915 Representative total house income in the dwelling unit is $130915 -in.representative_income 130930 Representative total house income in the dwelling unit is $130930 -in.representative_income 130931 Representative total house income in the dwelling unit is $130931 -in.representative_income 130935 Representative total house income in the dwelling unit is $130935 -in.representative_income 130939 Representative total house income in the dwelling unit is $130939 -in.representative_income 130953 Representative total house income in the dwelling unit is $130953 -in.representative_income 130954 Representative total house income in the dwelling unit is $130954 -in.representative_income 130961 Representative total house income in the dwelling unit is $130961 -in.representative_income 130965 Representative total house income in the dwelling unit is $130965 -in.representative_income 130982 Representative total house income in the dwelling unit is $130982 -in.representative_income 130994 Representative total house income in the dwelling unit is $130994 -in.representative_income 131005 Representative total house income in the dwelling unit is $131005 -in.representative_income 131007 Representative total house income in the dwelling unit is $131007 -in.representative_income 131011 Representative total house income in the dwelling unit is $131011 -in.representative_income 131015 Representative total house income in the dwelling unit is $131015 -in.representative_income 131016 Representative total house income in the dwelling unit is $131016 -in.representative_income 131036 Representative total house income in the dwelling unit is $131036 -in.representative_income 131045 Representative total house income in the dwelling unit is $131045 -in.representative_income 131046 Representative total house income in the dwelling unit is $131046 -in.representative_income 131047 Representative total house income in the dwelling unit is $131047 -in.representative_income 131061 Representative total house income in the dwelling unit is $131061 -in.representative_income 131062 Representative total house income in the dwelling unit is $131062 -in.representative_income 131066 Representative total house income in the dwelling unit is $131066 -in.representative_income 131068 Representative total house income in the dwelling unit is $131068 -in.representative_income 131076 Representative total house income in the dwelling unit is $131076 -in.representative_income 131077 Representative total house income in the dwelling unit is $131077 -in.representative_income 131088 Representative total house income in the dwelling unit is $131088 -in.representative_income 131098 Representative total house income in the dwelling unit is $131098 -in.representative_income 131108 Representative total house income in the dwelling unit is $131108 -in.representative_income 131111 Representative total house income in the dwelling unit is $131111 -in.representative_income 131117 Representative total house income in the dwelling unit is $131117 -in.representative_income 131119 Representative total house income in the dwelling unit is $131119 -in.representative_income 131127 Representative total house income in the dwelling unit is $131127 -in.representative_income 131139 Representative total house income in the dwelling unit is $131139 -in.representative_income 131144 Representative total house income in the dwelling unit is $131144 -in.representative_income 131149 Representative total house income in the dwelling unit is $131149 -in.representative_income 131157 Representative total house income in the dwelling unit is $131157 -in.representative_income 131169 Representative total house income in the dwelling unit is $131169 -in.representative_income 131170 Representative total house income in the dwelling unit is $131170 -in.representative_income 131176 Representative total house income in the dwelling unit is $131176 -in.representative_income 131181 Representative total house income in the dwelling unit is $131181 -in.representative_income 131191 Representative total house income in the dwelling unit is $131191 -in.representative_income 131193 Representative total house income in the dwelling unit is $131193 -in.representative_income 131197 Representative total house income in the dwelling unit is $131197 -in.representative_income 131201 Representative total house income in the dwelling unit is $131201 -in.representative_income 131214 Representative total house income in the dwelling unit is $131214 -in.representative_income 131218 Representative total house income in the dwelling unit is $131218 -in.representative_income 131229 Representative total house income in the dwelling unit is $131229 -in.representative_income 131245 Representative total house income in the dwelling unit is $131245 -in.representative_income 131246 Representative total house income in the dwelling unit is $131246 -in.representative_income 131248 Representative total house income in the dwelling unit is $131248 -in.representative_income 131250 Representative total house income in the dwelling unit is $131250 -in.representative_income 131277 Representative total house income in the dwelling unit is $131277 -in.representative_income 131283 Representative total house income in the dwelling unit is $131283 -in.representative_income 131299 Representative total house income in the dwelling unit is $131299 -in.representative_income 131303 Representative total house income in the dwelling unit is $131303 -in.representative_income 131319 Representative total house income in the dwelling unit is $131319 -in.representative_income 131323 Representative total house income in the dwelling unit is $131323 -in.representative_income 131339 Representative total house income in the dwelling unit is $131339 -in.representative_income 131340 Representative total house income in the dwelling unit is $131340 -in.representative_income 131349 Representative total house income in the dwelling unit is $131349 -in.representative_income 131359 Representative total house income in the dwelling unit is $131359 -in.representative_income 131369 Representative total house income in the dwelling unit is $131369 -in.representative_income 131370 Representative total house income in the dwelling unit is $131370 -in.representative_income 131385 Representative total house income in the dwelling unit is $131385 -in.representative_income 131389 Representative total house income in the dwelling unit is $131389 -in.representative_income 131390 Representative total house income in the dwelling unit is $131390 -in.representative_income 131400 Representative total house income in the dwelling unit is $131400 -in.representative_income 131404 Representative total house income in the dwelling unit is $131404 -in.representative_income 131407 Representative total house income in the dwelling unit is $131407 -in.representative_income 131410 Representative total house income in the dwelling unit is $131410 -in.representative_income 131420 Representative total house income in the dwelling unit is $131420 -in.representative_income 131424 Representative total house income in the dwelling unit is $131424 -in.representative_income 131425 Representative total house income in the dwelling unit is $131425 -in.representative_income 131430 Representative total house income in the dwelling unit is $131430 -in.representative_income 131440 Representative total house income in the dwelling unit is $131440 -in.representative_income 131446 Representative total house income in the dwelling unit is $131446 -in.representative_income 131450 Representative total house income in the dwelling unit is $131450 -in.representative_income 131458 Representative total house income in the dwelling unit is $131458 -in.representative_income 131461 Representative total house income in the dwelling unit is $131461 -in.representative_income 131470 Representative total house income in the dwelling unit is $131470 -in.representative_income 131471 Representative total house income in the dwelling unit is $131471 -in.representative_income 131493 Representative total house income in the dwelling unit is $131493 -in.representative_income 131497 Representative total house income in the dwelling unit is $131497 -in.representative_income 131505 Representative total house income in the dwelling unit is $131505 -in.representative_income 131508 Representative total house income in the dwelling unit is $131508 -in.representative_income 131509 Representative total house income in the dwelling unit is $131509 -in.representative_income 131510 Representative total house income in the dwelling unit is $131510 -in.representative_income 131516 Representative total house income in the dwelling unit is $131516 -in.representative_income 131521 Representative total house income in the dwelling unit is $131521 -in.representative_income 131536 Representative total house income in the dwelling unit is $131536 -in.representative_income 131552 Representative total house income in the dwelling unit is $131552 -in.representative_income 131557 Representative total house income in the dwelling unit is $131557 -in.representative_income 131572 Representative total house income in the dwelling unit is $131572 -in.representative_income 131592 Representative total house income in the dwelling unit is $131592 -in.representative_income 131601 Representative total house income in the dwelling unit is $131601 -in.representative_income 131602 Representative total house income in the dwelling unit is $131602 -in.representative_income 131605 Representative total house income in the dwelling unit is $131605 -in.representative_income 131612 Representative total house income in the dwelling unit is $131612 -in.representative_income 131613 Representative total house income in the dwelling unit is $131613 -in.representative_income 131614 Representative total house income in the dwelling unit is $131614 -in.representative_income 131622 Representative total house income in the dwelling unit is $131622 -in.representative_income 131633 Representative total house income in the dwelling unit is $131633 -in.representative_income 131652 Representative total house income in the dwelling unit is $131652 -in.representative_income 131665 Representative total house income in the dwelling unit is $131665 -in.representative_income 131666 Representative total house income in the dwelling unit is $131666 -in.representative_income 131683 Representative total house income in the dwelling unit is $131683 -in.representative_income 131693 Representative total house income in the dwelling unit is $131693 -in.representative_income 131709 Representative total house income in the dwelling unit is $131709 -in.representative_income 131712 Representative total house income in the dwelling unit is $131712 -in.representative_income 131717 Representative total house income in the dwelling unit is $131717 -in.representative_income 131721 Representative total house income in the dwelling unit is $131721 -in.representative_income 131723 Representative total house income in the dwelling unit is $131723 -in.representative_income 131755 Representative total house income in the dwelling unit is $131755 -in.representative_income 131766 Representative total house income in the dwelling unit is $131766 -in.representative_income 131767 Representative total house income in the dwelling unit is $131767 -in.representative_income 131768 Representative total house income in the dwelling unit is $131768 -in.representative_income 131799 Representative total house income in the dwelling unit is $131799 -in.representative_income 131817 Representative total house income in the dwelling unit is $131817 -in.representative_income 131818 Representative total house income in the dwelling unit is $131818 -in.representative_income 131819 Representative total house income in the dwelling unit is $131819 -in.representative_income 131820 Representative total house income in the dwelling unit is $131820 -in.representative_income 131824 Representative total house income in the dwelling unit is $131824 -in.representative_income 131826 Representative total house income in the dwelling unit is $131826 -in.representative_income 131847 Representative total house income in the dwelling unit is $131847 -in.representative_income 131857 Representative total house income in the dwelling unit is $131857 -in.representative_income 131860 Representative total house income in the dwelling unit is $131860 -in.representative_income 131868 Representative total house income in the dwelling unit is $131868 -in.representative_income 131871 Representative total house income in the dwelling unit is $131871 -in.representative_income 131874 Representative total house income in the dwelling unit is $131874 -in.representative_income 131888 Representative total house income in the dwelling unit is $131888 -in.representative_income 131922 Representative total house income in the dwelling unit is $131922 -in.representative_income 131925 Representative total house income in the dwelling unit is $131925 -in.representative_income 131926 Representative total house income in the dwelling unit is $131926 -in.representative_income 131927 Representative total house income in the dwelling unit is $131927 -in.representative_income 131930 Representative total house income in the dwelling unit is $131930 -in.representative_income 131931 Representative total house income in the dwelling unit is $131931 -in.representative_income 131938 Representative total house income in the dwelling unit is $131938 -in.representative_income 131952 Representative total house income in the dwelling unit is $131952 -in.representative_income 131983 Representative total house income in the dwelling unit is $131983 -in.representative_income 131991 Representative total house income in the dwelling unit is $131991 -in.representative_income 132026 Representative total house income in the dwelling unit is $132026 -in.representative_income 132034 Representative total house income in the dwelling unit is $132034 -in.representative_income 132035 Representative total house income in the dwelling unit is $132035 -in.representative_income 132036 Representative total house income in the dwelling unit is $132036 -in.representative_income 132037 Representative total house income in the dwelling unit is $132037 -in.representative_income 132046 Representative total house income in the dwelling unit is $132046 -in.representative_income 132047 Representative total house income in the dwelling unit is $132047 -in.representative_income 132055 Representative total house income in the dwelling unit is $132055 -in.representative_income 132077 Representative total house income in the dwelling unit is $132077 -in.representative_income 132078 Representative total house income in the dwelling unit is $132078 -in.representative_income 132087 Representative total house income in the dwelling unit is $132087 -in.representative_income 132088 Representative total house income in the dwelling unit is $132088 -in.representative_income 132108 Representative total house income in the dwelling unit is $132108 -in.representative_income 132109 Representative total house income in the dwelling unit is $132109 -in.representative_income 132117 Representative total house income in the dwelling unit is $132117 -in.representative_income 132121 Representative total house income in the dwelling unit is $132121 -in.representative_income 132127 Representative total house income in the dwelling unit is $132127 -in.representative_income 132129 Representative total house income in the dwelling unit is $132129 -in.representative_income 132131 Representative total house income in the dwelling unit is $132131 -in.representative_income 132139 Representative total house income in the dwelling unit is $132139 -in.representative_income 132141 Representative total house income in the dwelling unit is $132141 -in.representative_income 132142 Representative total house income in the dwelling unit is $132142 -in.representative_income 132157 Representative total house income in the dwelling unit is $132157 -in.representative_income 132177 Representative total house income in the dwelling unit is $132177 -in.representative_income 132188 Representative total house income in the dwelling unit is $132188 -in.representative_income 132196 Representative total house income in the dwelling unit is $132196 -in.representative_income 132199 Representative total house income in the dwelling unit is $132199 -in.representative_income 132206 Representative total house income in the dwelling unit is $132206 -in.representative_income 132228 Representative total house income in the dwelling unit is $132228 -in.representative_income 132232 Representative total house income in the dwelling unit is $132232 -in.representative_income 132247 Representative total house income in the dwelling unit is $132247 -in.representative_income 132249 Representative total house income in the dwelling unit is $132249 -in.representative_income 132250 Representative total house income in the dwelling unit is $132250 -in.representative_income 132260 Representative total house income in the dwelling unit is $132260 -in.representative_income 132271 Representative total house income in the dwelling unit is $132271 -in.representative_income 132284 Representative total house income in the dwelling unit is $132284 -in.representative_income 132302 Representative total house income in the dwelling unit is $132302 -in.representative_income 132320 Representative total house income in the dwelling unit is $132320 -in.representative_income 132329 Representative total house income in the dwelling unit is $132329 -in.representative_income 132333 Representative total house income in the dwelling unit is $132333 -in.representative_income 132336 Representative total house income in the dwelling unit is $132336 -in.representative_income 132339 Representative total house income in the dwelling unit is $132339 -in.representative_income 132354 Representative total house income in the dwelling unit is $132354 -in.representative_income 132357 Representative total house income in the dwelling unit is $132357 -in.representative_income 132363 Representative total house income in the dwelling unit is $132363 -in.representative_income 132381 Representative total house income in the dwelling unit is $132381 -in.representative_income 132410 Representative total house income in the dwelling unit is $132410 -in.representative_income 132430 Representative total house income in the dwelling unit is $132430 -in.representative_income 132438 Representative total house income in the dwelling unit is $132438 -in.representative_income 132450 Representative total house income in the dwelling unit is $132450 -in.representative_income 132459 Representative total house income in the dwelling unit is $132459 -in.representative_income 132464 Representative total house income in the dwelling unit is $132464 -in.representative_income 132470 Representative total house income in the dwelling unit is $132470 -in.representative_income 132481 Representative total house income in the dwelling unit is $132481 -in.representative_income 132490 Representative total house income in the dwelling unit is $132490 -in.representative_income 132505 Representative total house income in the dwelling unit is $132505 -in.representative_income 132531 Representative total house income in the dwelling unit is $132531 -in.representative_income 132541 Representative total house income in the dwelling unit is $132541 -in.representative_income 132554 Representative total house income in the dwelling unit is $132554 -in.representative_income 132564 Representative total house income in the dwelling unit is $132564 -in.representative_income 132571 Representative total house income in the dwelling unit is $132571 -in.representative_income 132573 Representative total house income in the dwelling unit is $132573 -in.representative_income 132604 Representative total house income in the dwelling unit is $132604 -in.representative_income 132627 Representative total house income in the dwelling unit is $132627 -in.representative_income 132628 Representative total house income in the dwelling unit is $132628 -in.representative_income 132632 Representative total house income in the dwelling unit is $132632 -in.representative_income 132645 Representative total house income in the dwelling unit is $132645 -in.representative_income 132651 Representative total house income in the dwelling unit is $132651 -in.representative_income 132652 Representative total house income in the dwelling unit is $132652 -in.representative_income 132667 Representative total house income in the dwelling unit is $132667 -in.representative_income 132669 Representative total house income in the dwelling unit is $132669 -in.representative_income 132678 Representative total house income in the dwelling unit is $132678 -in.representative_income 132682 Representative total house income in the dwelling unit is $132682 -in.representative_income 132696 Representative total house income in the dwelling unit is $132696 -in.representative_income 132725 Representative total house income in the dwelling unit is $132725 -in.representative_income 132733 Representative total house income in the dwelling unit is $132733 -in.representative_income 132736 Representative total house income in the dwelling unit is $132736 -in.representative_income 132748 Representative total house income in the dwelling unit is $132748 -in.representative_income 132753 Representative total house income in the dwelling unit is $132753 -in.representative_income 132758 Representative total house income in the dwelling unit is $132758 -in.representative_income 132775 Representative total house income in the dwelling unit is $132775 -in.representative_income 132786 Representative total house income in the dwelling unit is $132786 -in.representative_income 132790 Representative total house income in the dwelling unit is $132790 -in.representative_income 132828 Representative total house income in the dwelling unit is $132828 -in.representative_income 132834 Representative total house income in the dwelling unit is $132834 -in.representative_income 132851 Representative total house income in the dwelling unit is $132851 -in.representative_income 132866 Representative total house income in the dwelling unit is $132866 -in.representative_income 132880 Representative total house income in the dwelling unit is $132880 -in.representative_income 132893 Representative total house income in the dwelling unit is $132893 -in.representative_income 132898 Representative total house income in the dwelling unit is $132898 -in.representative_income 132902 Representative total house income in the dwelling unit is $132902 -in.representative_income 132910 Representative total house income in the dwelling unit is $132910 -in.representative_income 132917 Representative total house income in the dwelling unit is $132917 -in.representative_income 132920 Representative total house income in the dwelling unit is $132920 -in.representative_income 132935 Representative total house income in the dwelling unit is $132935 -in.representative_income 132954 Representative total house income in the dwelling unit is $132954 -in.representative_income 132978 Representative total house income in the dwelling unit is $132978 -in.representative_income 132986 Representative total house income in the dwelling unit is $132986 -in.representative_income 133001 Representative total house income in the dwelling unit is $133001 -in.representative_income 133006 Representative total house income in the dwelling unit is $133006 -in.representative_income 133028 Representative total house income in the dwelling unit is $133028 -in.representative_income 133036 Representative total house income in the dwelling unit is $133036 -in.representative_income 133057 Representative total house income in the dwelling unit is $133057 -in.representative_income 133086 Representative total house income in the dwelling unit is $133086 -in.representative_income 133092 Representative total house income in the dwelling unit is $133092 -in.representative_income 133099 Representative total house income in the dwelling unit is $133099 -in.representative_income 133107 Representative total house income in the dwelling unit is $133107 -in.representative_income 133108 Representative total house income in the dwelling unit is $133108 -in.representative_income 133114 Representative total house income in the dwelling unit is $133114 -in.representative_income 133119 Representative total house income in the dwelling unit is $133119 -in.representative_income 133133 Representative total house income in the dwelling unit is $133133 -in.representative_income 133137 Representative total house income in the dwelling unit is $133137 -in.representative_income 133154 Representative total house income in the dwelling unit is $133154 -in.representative_income 133160 Representative total house income in the dwelling unit is $133160 -in.representative_income 133197 Representative total house income in the dwelling unit is $133197 -in.representative_income 133204 Representative total house income in the dwelling unit is $133204 -in.representative_income 133211 Representative total house income in the dwelling unit is $133211 -in.representative_income 133215 Representative total house income in the dwelling unit is $133215 -in.representative_income 133222 Representative total house income in the dwelling unit is $133222 -in.representative_income 133238 Representative total house income in the dwelling unit is $133238 -in.representative_income 133241 Representative total house income in the dwelling unit is $133241 -in.representative_income 133264 Representative total house income in the dwelling unit is $133264 -in.representative_income 133276 Representative total house income in the dwelling unit is $133276 -in.representative_income 133297 Representative total house income in the dwelling unit is $133297 -in.representative_income 133302 Representative total house income in the dwelling unit is $133302 -in.representative_income 133315 Representative total house income in the dwelling unit is $133315 -in.representative_income 133322 Representative total house income in the dwelling unit is $133322 -in.representative_income 133330 Representative total house income in the dwelling unit is $133330 -in.representative_income 133339 Representative total house income in the dwelling unit is $133339 -in.representative_income 133344 Representative total house income in the dwelling unit is $133344 -in.representative_income 133365 Representative total house income in the dwelling unit is $133365 -in.representative_income 133367 Representative total house income in the dwelling unit is $133367 -in.representative_income 133400 Representative total house income in the dwelling unit is $133400 -in.representative_income 133407 Representative total house income in the dwelling unit is $133407 -in.representative_income 133429 Representative total house income in the dwelling unit is $133429 -in.representative_income 133430 Representative total house income in the dwelling unit is $133430 -in.representative_income 133438 Representative total house income in the dwelling unit is $133438 -in.representative_income 133440 Representative total house income in the dwelling unit is $133440 -in.representative_income 133460 Representative total house income in the dwelling unit is $133460 -in.representative_income 133462 Representative total house income in the dwelling unit is $133462 -in.representative_income 133469 Representative total house income in the dwelling unit is $133469 -in.representative_income 133491 Representative total house income in the dwelling unit is $133491 -in.representative_income 133503 Representative total house income in the dwelling unit is $133503 -in.representative_income 133511 Representative total house income in the dwelling unit is $133511 -in.representative_income 133513 Representative total house income in the dwelling unit is $133513 -in.representative_income 133535 Representative total house income in the dwelling unit is $133535 -in.representative_income 133537 Representative total house income in the dwelling unit is $133537 -in.representative_income 133541 Representative total house income in the dwelling unit is $133541 -in.representative_income 133546 Representative total house income in the dwelling unit is $133546 -in.representative_income 133553 Representative total house income in the dwelling unit is $133553 -in.representative_income 133573 Representative total house income in the dwelling unit is $133573 -in.representative_income 133583 Representative total house income in the dwelling unit is $133583 -in.representative_income 133619 Representative total house income in the dwelling unit is $133619 -in.representative_income 133623 Representative total house income in the dwelling unit is $133623 -in.representative_income 133624 Representative total house income in the dwelling unit is $133624 -in.representative_income 133640 Representative total house income in the dwelling unit is $133640 -in.representative_income 133642 Representative total house income in the dwelling unit is $133642 -in.representative_income 133644 Representative total house income in the dwelling unit is $133644 -in.representative_income 133647 Representative total house income in the dwelling unit is $133647 -in.representative_income 133652 Representative total house income in the dwelling unit is $133652 -in.representative_income 133654 Representative total house income in the dwelling unit is $133654 -in.representative_income 133676 Representative total house income in the dwelling unit is $133676 -in.representative_income 133703 Representative total house income in the dwelling unit is $133703 -in.representative_income 133713 Representative total house income in the dwelling unit is $133713 -in.representative_income 133724 Representative total house income in the dwelling unit is $133724 -in.representative_income 133743 Representative total house income in the dwelling unit is $133743 -in.representative_income 133751 Representative total house income in the dwelling unit is $133751 -in.representative_income 133762 Representative total house income in the dwelling unit is $133762 -in.representative_income 133774 Representative total house income in the dwelling unit is $133774 -in.representative_income 133776 Representative total house income in the dwelling unit is $133776 -in.representative_income 133779 Representative total house income in the dwelling unit is $133779 -in.representative_income 133784 Representative total house income in the dwelling unit is $133784 -in.representative_income 133809 Representative total house income in the dwelling unit is $133809 -in.representative_income 133830 Representative total house income in the dwelling unit is $133830 -in.representative_income 133844 Representative total house income in the dwelling unit is $133844 -in.representative_income 133859 Representative total house income in the dwelling unit is $133859 -in.representative_income 133870 Representative total house income in the dwelling unit is $133870 -in.representative_income 133883 Representative total house income in the dwelling unit is $133883 -in.representative_income 133885 Representative total house income in the dwelling unit is $133885 -in.representative_income 133895 Representative total house income in the dwelling unit is $133895 -in.representative_income 133925 Representative total house income in the dwelling unit is $133925 -in.representative_income 133935 Representative total house income in the dwelling unit is $133935 -in.representative_income 133939 Representative total house income in the dwelling unit is $133939 -in.representative_income 133945 Representative total house income in the dwelling unit is $133945 -in.representative_income 133956 Representative total house income in the dwelling unit is $133956 -in.representative_income 133967 Representative total house income in the dwelling unit is $133967 -in.representative_income 133978 Representative total house income in the dwelling unit is $133978 -in.representative_income 133986 Representative total house income in the dwelling unit is $133986 -in.representative_income 134040 Representative total house income in the dwelling unit is $134040 -in.representative_income 134046 Representative total house income in the dwelling unit is $134046 -in.representative_income 134086 Representative total house income in the dwelling unit is $134086 -in.representative_income 134088 Representative total house income in the dwelling unit is $134088 -in.representative_income 134100 Representative total house income in the dwelling unit is $134100 -in.representative_income 134140 Representative total house income in the dwelling unit is $134140 -in.representative_income 134145 Representative total house income in the dwelling unit is $134145 -in.representative_income 134172 Representative total house income in the dwelling unit is $134172 -in.representative_income 134181 Representative total house income in the dwelling unit is $134181 -in.representative_income 134182 Representative total house income in the dwelling unit is $134182 -in.representative_income 134184 Representative total house income in the dwelling unit is $134184 -in.representative_income 134186 Representative total house income in the dwelling unit is $134186 -in.representative_income 134192 Representative total house income in the dwelling unit is $134192 -in.representative_income 134194 Representative total house income in the dwelling unit is $134194 -in.representative_income 134198 Representative total house income in the dwelling unit is $134198 -in.representative_income 134203 Representative total house income in the dwelling unit is $134203 -in.representative_income 134205 Representative total house income in the dwelling unit is $134205 -in.representative_income 134214 Representative total house income in the dwelling unit is $134214 -in.representative_income 134219 Representative total house income in the dwelling unit is $134219 -in.representative_income 134223 Representative total house income in the dwelling unit is $134223 -in.representative_income 134235 Representative total house income in the dwelling unit is $134235 -in.representative_income 134243 Representative total house income in the dwelling unit is $134243 -in.representative_income 134248 Representative total house income in the dwelling unit is $134248 -in.representative_income 134252 Representative total house income in the dwelling unit is $134252 -in.representative_income 134278 Representative total house income in the dwelling unit is $134278 -in.representative_income 134288 Representative total house income in the dwelling unit is $134288 -in.representative_income 134289 Representative total house income in the dwelling unit is $134289 -in.representative_income 134290 Representative total house income in the dwelling unit is $134290 -in.representative_income 134295 Representative total house income in the dwelling unit is $134295 -in.representative_income 134337 Representative total house income in the dwelling unit is $134337 -in.representative_income 134347 Representative total house income in the dwelling unit is $134347 -in.representative_income 134349 Representative total house income in the dwelling unit is $134349 -in.representative_income 134357 Representative total house income in the dwelling unit is $134357 -in.representative_income 134396 Representative total house income in the dwelling unit is $134396 -in.representative_income 134398 Representative total house income in the dwelling unit is $134398 -in.representative_income 134400 Representative total house income in the dwelling unit is $134400 -in.representative_income 134409 Representative total house income in the dwelling unit is $134409 -in.representative_income 134411 Representative total house income in the dwelling unit is $134411 -in.representative_income 134440 Representative total house income in the dwelling unit is $134440 -in.representative_income 134450 Representative total house income in the dwelling unit is $134450 -in.representative_income 134462 Representative total house income in the dwelling unit is $134462 -in.representative_income 134502 Representative total house income in the dwelling unit is $134502 -in.representative_income 134503 Representative total house income in the dwelling unit is $134503 -in.representative_income 134519 Representative total house income in the dwelling unit is $134519 -in.representative_income 134551 Representative total house income in the dwelling unit is $134551 -in.representative_income 134568 Representative total house income in the dwelling unit is $134568 -in.representative_income 134576 Representative total house income in the dwelling unit is $134576 -in.representative_income 134589 Representative total house income in the dwelling unit is $134589 -in.representative_income 134604 Representative total house income in the dwelling unit is $134604 -in.representative_income 134611 Representative total house income in the dwelling unit is $134611 -in.representative_income 134627 Representative total house income in the dwelling unit is $134627 -in.representative_income 134652 Representative total house income in the dwelling unit is $134652 -in.representative_income 134673 Representative total house income in the dwelling unit is $134673 -in.representative_income 134707 Representative total house income in the dwelling unit is $134707 -in.representative_income 134713 Representative total house income in the dwelling unit is $134713 -in.representative_income 134718 Representative total house income in the dwelling unit is $134718 -in.representative_income 134729 Representative total house income in the dwelling unit is $134729 -in.representative_income 134734 Representative total house income in the dwelling unit is $134734 -in.representative_income 134753 Representative total house income in the dwelling unit is $134753 -in.representative_income 134768 Representative total house income in the dwelling unit is $134768 -in.representative_income 134769 Representative total house income in the dwelling unit is $134769 -in.representative_income 134778 Representative total house income in the dwelling unit is $134778 -in.representative_income 134788 Representative total house income in the dwelling unit is $134788 -in.representative_income 134811 Representative total house income in the dwelling unit is $134811 -in.representative_income 134825 Representative total house income in the dwelling unit is $134825 -in.representative_income 134842 Representative total house income in the dwelling unit is $134842 -in.representative_income 134854 Representative total house income in the dwelling unit is $134854 -in.representative_income 134885 Representative total house income in the dwelling unit is $134885 -in.representative_income 134911 Representative total house income in the dwelling unit is $134911 -in.representative_income 134914 Representative total house income in the dwelling unit is $134914 -in.representative_income 134932 Representative total house income in the dwelling unit is $134932 -in.representative_income 134950 Representative total house income in the dwelling unit is $134950 -in.representative_income 134955 Representative total house income in the dwelling unit is $134955 -in.representative_income 134972 Representative total house income in the dwelling unit is $134972 -in.representative_income 134990 Representative total house income in the dwelling unit is $134990 -in.representative_income 135017 Representative total house income in the dwelling unit is $135017 -in.representative_income 135029 Representative total house income in the dwelling unit is $135029 -in.representative_income 135040 Representative total house income in the dwelling unit is $135040 -in.representative_income 135056 Representative total house income in the dwelling unit is $135056 -in.representative_income 135058 Representative total house income in the dwelling unit is $135058 -in.representative_income 135059 Representative total house income in the dwelling unit is $135059 -in.representative_income 135064 Representative total house income in the dwelling unit is $135064 -in.representative_income 135070 Representative total house income in the dwelling unit is $135070 -in.representative_income 135072 Representative total house income in the dwelling unit is $135072 -in.representative_income 135081 Representative total house income in the dwelling unit is $135081 -in.representative_income 135095 Representative total house income in the dwelling unit is $135095 -in.representative_income 135120 Representative total house income in the dwelling unit is $135120 -in.representative_income 135157 Representative total house income in the dwelling unit is $135157 -in.representative_income 135167 Representative total house income in the dwelling unit is $135167 -in.representative_income 135200 Representative total house income in the dwelling unit is $135200 -in.representative_income 135211 Representative total house income in the dwelling unit is $135211 -in.representative_income 135221 Representative total house income in the dwelling unit is $135221 -in.representative_income 135222 Representative total house income in the dwelling unit is $135222 -in.representative_income 135223 Representative total house income in the dwelling unit is $135223 -in.representative_income 135233 Representative total house income in the dwelling unit is $135233 -in.representative_income 135254 Representative total house income in the dwelling unit is $135254 -in.representative_income 135255 Representative total house income in the dwelling unit is $135255 -in.representative_income 135258 Representative total house income in the dwelling unit is $135258 -in.representative_income 135275 Representative total house income in the dwelling unit is $135275 -in.representative_income 135276 Representative total house income in the dwelling unit is $135276 -in.representative_income 135306 Representative total house income in the dwelling unit is $135306 -in.representative_income 135319 Representative total house income in the dwelling unit is $135319 -in.representative_income 135326 Representative total house income in the dwelling unit is $135326 -in.representative_income 135348 Representative total house income in the dwelling unit is $135348 -in.representative_income 135359 Representative total house income in the dwelling unit is $135359 -in.representative_income 135383 Representative total house income in the dwelling unit is $135383 -in.representative_income 135411 Representative total house income in the dwelling unit is $135411 -in.representative_income 135430 Representative total house income in the dwelling unit is $135430 -in.representative_income 135460 Representative total house income in the dwelling unit is $135460 -in.representative_income 135469 Representative total house income in the dwelling unit is $135469 -in.representative_income 135480 Representative total house income in the dwelling unit is $135480 -in.representative_income 135491 Representative total house income in the dwelling unit is $135491 -in.representative_income 135517 Representative total house income in the dwelling unit is $135517 -in.representative_income 135523 Representative total house income in the dwelling unit is $135523 -in.representative_income 135533 Representative total house income in the dwelling unit is $135533 -in.representative_income 135545 Representative total house income in the dwelling unit is $135545 -in.representative_income 135561 Representative total house income in the dwelling unit is $135561 -in.representative_income 135566 Representative total house income in the dwelling unit is $135566 -in.representative_income 135569 Representative total house income in the dwelling unit is $135569 -in.representative_income 135599 Representative total house income in the dwelling unit is $135599 -in.representative_income 135623 Representative total house income in the dwelling unit is $135623 -in.representative_income 135636 Representative total house income in the dwelling unit is $135636 -in.representative_income 135662 Representative total house income in the dwelling unit is $135662 -in.representative_income 135664 Representative total house income in the dwelling unit is $135664 -in.representative_income 135675 Representative total house income in the dwelling unit is $135675 -in.representative_income 135707 Representative total house income in the dwelling unit is $135707 -in.representative_income 135728 Representative total house income in the dwelling unit is $135728 -in.representative_income 135763 Representative total house income in the dwelling unit is $135763 -in.representative_income 135792 Representative total house income in the dwelling unit is $135792 -in.representative_income 135822 Representative total house income in the dwelling unit is $135822 -in.representative_income 135833 Representative total house income in the dwelling unit is $135833 -in.representative_income 135844 Representative total house income in the dwelling unit is $135844 -in.representative_income 135852 Representative total house income in the dwelling unit is $135852 -in.representative_income 135864 Representative total house income in the dwelling unit is $135864 -in.representative_income 135865 Representative total house income in the dwelling unit is $135865 -in.representative_income 135895 Representative total house income in the dwelling unit is $135895 -in.representative_income 135898 Representative total house income in the dwelling unit is $135898 -in.representative_income 135924 Representative total house income in the dwelling unit is $135924 -in.representative_income 135938 Representative total house income in the dwelling unit is $135938 -in.representative_income 135966 Representative total house income in the dwelling unit is $135966 -in.representative_income 136006 Representative total house income in the dwelling unit is $136006 -in.representative_income 136031 Representative total house income in the dwelling unit is $136031 -in.representative_income 136044 Representative total house income in the dwelling unit is $136044 -in.representative_income 136049 Representative total house income in the dwelling unit is $136049 -in.representative_income 136054 Representative total house income in the dwelling unit is $136054 -in.representative_income 136060 Representative total house income in the dwelling unit is $136060 -in.representative_income 136113 Representative total house income in the dwelling unit is $136113 -in.representative_income 136139 Representative total house income in the dwelling unit is $136139 -in.representative_income 136150 Representative total house income in the dwelling unit is $136150 -in.representative_income 136152 Representative total house income in the dwelling unit is $136152 -in.representative_income 136193 Representative total house income in the dwelling unit is $136193 -in.representative_income 136221 Representative total house income in the dwelling unit is $136221 -in.representative_income 136233 Representative total house income in the dwelling unit is $136233 -in.representative_income 136247 Representative total house income in the dwelling unit is $136247 -in.representative_income 136254 Representative total house income in the dwelling unit is $136254 -in.representative_income 136255 Representative total house income in the dwelling unit is $136255 -in.representative_income 136269 Representative total house income in the dwelling unit is $136269 -in.representative_income 136328 Representative total house income in the dwelling unit is $136328 -in.representative_income 136333 Representative total house income in the dwelling unit is $136333 -in.representative_income 136334 Representative total house income in the dwelling unit is $136334 -in.representative_income 136355 Representative total house income in the dwelling unit is $136355 -in.representative_income 136361 Representative total house income in the dwelling unit is $136361 -in.representative_income 136370 Representative total house income in the dwelling unit is $136370 -in.representative_income 136380 Representative total house income in the dwelling unit is $136380 -in.representative_income 136389 Representative total house income in the dwelling unit is $136389 -in.representative_income 136413 Representative total house income in the dwelling unit is $136413 -in.representative_income 136435 Representative total house income in the dwelling unit is $136435 -in.representative_income 136461 Representative total house income in the dwelling unit is $136461 -in.representative_income 136463 Representative total house income in the dwelling unit is $136463 -in.representative_income 136466 Representative total house income in the dwelling unit is $136466 -in.representative_income 136471 Representative total house income in the dwelling unit is $136471 -in.representative_income 136521 Representative total house income in the dwelling unit is $136521 -in.representative_income 136542 Representative total house income in the dwelling unit is $136542 -in.representative_income 136564 Representative total house income in the dwelling unit is $136564 -in.representative_income 136571 Representative total house income in the dwelling unit is $136571 -in.representative_income 136572 Representative total house income in the dwelling unit is $136572 -in.representative_income 136587 Representative total house income in the dwelling unit is $136587 -in.representative_income 136597 Representative total house income in the dwelling unit is $136597 -in.representative_income 136650 Representative total house income in the dwelling unit is $136650 -in.representative_income 136668 Representative total house income in the dwelling unit is $136668 -in.representative_income 136677 Representative total house income in the dwelling unit is $136677 -in.representative_income 136680 Representative total house income in the dwelling unit is $136680 -in.representative_income 136709 Representative total house income in the dwelling unit is $136709 -in.representative_income 136734 Representative total house income in the dwelling unit is $136734 -in.representative_income 136758 Representative total house income in the dwelling unit is $136758 -in.representative_income 136770 Representative total house income in the dwelling unit is $136770 -in.representative_income 136774 Representative total house income in the dwelling unit is $136774 -in.representative_income 136783 Representative total house income in the dwelling unit is $136783 -in.representative_income 136788 Representative total house income in the dwelling unit is $136788 -in.representative_income 136793 Representative total house income in the dwelling unit is $136793 -in.representative_income 136822 Representative total house income in the dwelling unit is $136822 -in.representative_income 136865 Representative total house income in the dwelling unit is $136865 -in.representative_income 136875 Representative total house income in the dwelling unit is $136875 -in.representative_income 136888 Representative total house income in the dwelling unit is $136888 -in.representative_income 136930 Representative total house income in the dwelling unit is $136930 -in.representative_income 136973 Representative total house income in the dwelling unit is $136973 -in.representative_income 136976 Representative total house income in the dwelling unit is $136976 -in.representative_income 136977 Representative total house income in the dwelling unit is $136977 -in.representative_income 136997 Representative total house income in the dwelling unit is $136997 -in.representative_income 137004 Representative total house income in the dwelling unit is $137004 -in.representative_income 137037 Representative total house income in the dwelling unit is $137037 -in.representative_income 137077 Representative total house income in the dwelling unit is $137077 -in.representative_income 137079 Representative total house income in the dwelling unit is $137079 -in.representative_income 137080 Representative total house income in the dwelling unit is $137080 -in.representative_income 137099 Representative total house income in the dwelling unit is $137099 -in.representative_income 137140 Representative total house income in the dwelling unit is $137140 -in.representative_income 137183 Representative total house income in the dwelling unit is $137183 -in.representative_income 137187 Representative total house income in the dwelling unit is $137187 -in.representative_income 137188 Representative total house income in the dwelling unit is $137188 -in.representative_income 137219 Representative total house income in the dwelling unit is $137219 -in.representative_income 137222 Representative total house income in the dwelling unit is $137222 -in.representative_income 137257 Representative total house income in the dwelling unit is $137257 -in.representative_income 137279 Representative total house income in the dwelling unit is $137279 -in.representative_income 137294 Representative total house income in the dwelling unit is $137294 -in.representative_income 137309 Representative total house income in the dwelling unit is $137309 -in.representative_income 137327 Representative total house income in the dwelling unit is $137327 -in.representative_income 137380 Representative total house income in the dwelling unit is $137380 -in.representative_income 137389 Representative total house income in the dwelling unit is $137389 -in.representative_income 137402 Representative total house income in the dwelling unit is $137402 -in.representative_income 137416 Representative total house income in the dwelling unit is $137416 -in.representative_income 137423 Representative total house income in the dwelling unit is $137423 -in.representative_income 137481 Representative total house income in the dwelling unit is $137481 -in.representative_income 137492 Representative total house income in the dwelling unit is $137492 -in.representative_income 137509 Representative total house income in the dwelling unit is $137509 -in.representative_income 137521 Representative total house income in the dwelling unit is $137521 -in.representative_income 137531 Representative total house income in the dwelling unit is $137531 -in.representative_income 137544 Representative total house income in the dwelling unit is $137544 -in.representative_income 137566 Representative total house income in the dwelling unit is $137566 -in.representative_income 137573 Representative total house income in the dwelling unit is $137573 -in.representative_income 137596 Representative total house income in the dwelling unit is $137596 -in.representative_income 137598 Representative total house income in the dwelling unit is $137598 -in.representative_income 137632 Representative total house income in the dwelling unit is $137632 -in.representative_income 137663 Representative total house income in the dwelling unit is $137663 -in.representative_income 137674 Representative total house income in the dwelling unit is $137674 -in.representative_income 137683 Representative total house income in the dwelling unit is $137683 -in.representative_income 137699 Representative total house income in the dwelling unit is $137699 -in.representative_income 137731 Representative total house income in the dwelling unit is $137731 -in.representative_income 137760 Representative total house income in the dwelling unit is $137760 -in.representative_income 137792 Representative total house income in the dwelling unit is $137792 -in.representative_income 137795 Representative total house income in the dwelling unit is $137795 -in.representative_income 137802 Representative total house income in the dwelling unit is $137802 -in.representative_income 137831 Representative total house income in the dwelling unit is $137831 -in.representative_income 137868 Representative total house income in the dwelling unit is $137868 -in.representative_income 137879 Representative total house income in the dwelling unit is $137879 -in.representative_income 137938 Representative total house income in the dwelling unit is $137938 -in.representative_income 137942 Representative total house income in the dwelling unit is $137942 -in.representative_income 137970 Representative total house income in the dwelling unit is $137970 -in.representative_income 137986 Representative total house income in the dwelling unit is $137986 -in.representative_income 138046 Representative total house income in the dwelling unit is $138046 -in.representative_income 138048 Representative total house income in the dwelling unit is $138048 -in.representative_income 138084 Representative total house income in the dwelling unit is $138084 -in.representative_income 138087 Representative total house income in the dwelling unit is $138087 -in.representative_income 138111 Representative total house income in the dwelling unit is $138111 -in.representative_income 138121 Representative total house income in the dwelling unit is $138121 -in.representative_income 138154 Representative total house income in the dwelling unit is $138154 -in.representative_income 138157 Representative total house income in the dwelling unit is $138157 -in.representative_income 138188 Representative total house income in the dwelling unit is $138188 -in.representative_income 138192 Representative total house income in the dwelling unit is $138192 -in.representative_income 138215 Representative total house income in the dwelling unit is $138215 -in.representative_income 138260 Representative total house income in the dwelling unit is $138260 -in.representative_income 138289 Representative total house income in the dwelling unit is $138289 -in.representative_income 138294 Representative total house income in the dwelling unit is $138294 -in.representative_income 138301 Representative total house income in the dwelling unit is $138301 -in.representative_income 138311 Representative total house income in the dwelling unit is $138311 -in.representative_income 138380 Representative total house income in the dwelling unit is $138380 -in.representative_income 138390 Representative total house income in the dwelling unit is $138390 -in.representative_income 138420 Representative total house income in the dwelling unit is $138420 -in.representative_income 138475 Representative total house income in the dwelling unit is $138475 -in.representative_income 138491 Representative total house income in the dwelling unit is $138491 -in.representative_income 138524 Representative total house income in the dwelling unit is $138524 -in.representative_income 138575 Representative total house income in the dwelling unit is $138575 -in.representative_income 138583 Representative total house income in the dwelling unit is $138583 -in.representative_income 138592 Representative total house income in the dwelling unit is $138592 -in.representative_income 138659 Representative total house income in the dwelling unit is $138659 -in.representative_income 138689 Representative total house income in the dwelling unit is $138689 -in.representative_income 138730 Representative total house income in the dwelling unit is $138730 -in.representative_income 138732 Representative total house income in the dwelling unit is $138732 -in.representative_income 138797 Representative total house income in the dwelling unit is $138797 -in.representative_income 138830 Representative total house income in the dwelling unit is $138830 -in.representative_income 138834 Representative total house income in the dwelling unit is $138834 -in.representative_income 138840 Representative total house income in the dwelling unit is $138840 -in.representative_income 138844 Representative total house income in the dwelling unit is $138844 -in.representative_income 138955 Representative total house income in the dwelling unit is $138955 -in.representative_income 138996 Representative total house income in the dwelling unit is $138996 -in.representative_income 138997 Representative total house income in the dwelling unit is $138997 -in.representative_income 139012 Representative total house income in the dwelling unit is $139012 -in.representative_income 139033 Representative total house income in the dwelling unit is $139033 -in.representative_income 139057 Representative total house income in the dwelling unit is $139057 -in.representative_income 139111 Representative total house income in the dwelling unit is $139111 -in.representative_income 139119 Representative total house income in the dwelling unit is $139119 -in.representative_income 139165 Representative total house income in the dwelling unit is $139165 -in.representative_income 139198 Representative total house income in the dwelling unit is $139198 -in.representative_income 139208 Representative total house income in the dwelling unit is $139208 -in.representative_income 139218 Representative total house income in the dwelling unit is $139218 -in.representative_income 139240 Representative total house income in the dwelling unit is $139240 -in.representative_income 139246 Representative total house income in the dwelling unit is $139246 -in.representative_income 139273 Representative total house income in the dwelling unit is $139273 -in.representative_income 139333 Representative total house income in the dwelling unit is $139333 -in.representative_income 139345 Representative total house income in the dwelling unit is $139345 -in.representative_income 139349 Representative total house income in the dwelling unit is $139349 -in.representative_income 139381 Representative total house income in the dwelling unit is $139381 -in.representative_income 139400 Representative total house income in the dwelling unit is $139400 -in.representative_income 139419 Representative total house income in the dwelling unit is $139419 -in.representative_income 139430 Representative total house income in the dwelling unit is $139430 -in.representative_income 139441 Representative total house income in the dwelling unit is $139441 -in.representative_income 139453 Representative total house income in the dwelling unit is $139453 -in.representative_income 139501 Representative total house income in the dwelling unit is $139501 -in.representative_income 139548 Representative total house income in the dwelling unit is $139548 -in.representative_income 139555 Representative total house income in the dwelling unit is $139555 -in.representative_income 139559 Representative total house income in the dwelling unit is $139559 -in.representative_income 139596 Representative total house income in the dwelling unit is $139596 -in.representative_income 139602 Representative total house income in the dwelling unit is $139602 -in.representative_income 139630 Representative total house income in the dwelling unit is $139630 -in.representative_income 139658 Representative total house income in the dwelling unit is $139658 -in.representative_income 139677 Representative total house income in the dwelling unit is $139677 -in.representative_income 139735 Representative total house income in the dwelling unit is $139735 -in.representative_income 139762 Representative total house income in the dwelling unit is $139762 -in.representative_income 139764 Representative total house income in the dwelling unit is $139764 -in.representative_income 139813 Representative total house income in the dwelling unit is $139813 -in.representative_income 139817 Representative total house income in the dwelling unit is $139817 -in.representative_income 139818 Representative total house income in the dwelling unit is $139818 -in.representative_income 139844 Representative total house income in the dwelling unit is $139844 -in.representative_income 139865 Representative total house income in the dwelling unit is $139865 -in.representative_income 139870 Representative total house income in the dwelling unit is $139870 -in.representative_income 139947 Representative total house income in the dwelling unit is $139947 -in.representative_income 139976 Representative total house income in the dwelling unit is $139976 -in.representative_income 139978 Representative total house income in the dwelling unit is $139978 -in.representative_income 140006 Representative total house income in the dwelling unit is $140006 -in.representative_income 140052 Representative total house income in the dwelling unit is $140052 -in.representative_income 140174 Representative total house income in the dwelling unit is $140174 -in.representative_income 140245 Representative total house income in the dwelling unit is $140245 -in.representative_income 140246 Representative total house income in the dwelling unit is $140246 -in.representative_income 140263 Representative total house income in the dwelling unit is $140263 -in.representative_income 140277 Representative total house income in the dwelling unit is $140277 -in.representative_income 140309 Representative total house income in the dwelling unit is $140309 -in.representative_income 140357 Representative total house income in the dwelling unit is $140357 -in.representative_income 140368 Representative total house income in the dwelling unit is $140368 -in.representative_income 140407 Representative total house income in the dwelling unit is $140407 -in.representative_income 140410 Representative total house income in the dwelling unit is $140410 -in.representative_income 140450 Representative total house income in the dwelling unit is $140450 -in.representative_income 140461 Representative total house income in the dwelling unit is $140461 -in.representative_income 140473 Representative total house income in the dwelling unit is $140473 -in.representative_income 140482 Representative total house income in the dwelling unit is $140482 -in.representative_income 140484 Representative total house income in the dwelling unit is $140484 -in.representative_income 140569 Representative total house income in the dwelling unit is $140569 -in.representative_income 140579 Representative total house income in the dwelling unit is $140579 -in.representative_income 140586 Representative total house income in the dwelling unit is $140586 -in.representative_income 140612 Representative total house income in the dwelling unit is $140612 -in.representative_income 140622 Representative total house income in the dwelling unit is $140622 -in.representative_income 140663 Representative total house income in the dwelling unit is $140663 -in.representative_income 140674 Representative total house income in the dwelling unit is $140674 -in.representative_income 140678 Representative total house income in the dwelling unit is $140678 -in.representative_income 140680 Representative total house income in the dwelling unit is $140680 -in.representative_income 140690 Representative total house income in the dwelling unit is $140690 -in.representative_income 140732 Representative total house income in the dwelling unit is $140732 -in.representative_income 140785 Representative total house income in the dwelling unit is $140785 -in.representative_income 140790 Representative total house income in the dwelling unit is $140790 -in.representative_income 140837 Representative total house income in the dwelling unit is $140837 -in.representative_income 140885 Representative total house income in the dwelling unit is $140885 -in.representative_income 140893 Representative total house income in the dwelling unit is $140893 -in.representative_income 140895 Representative total house income in the dwelling unit is $140895 -in.representative_income 140915 Representative total house income in the dwelling unit is $140915 -in.representative_income 140943 Representative total house income in the dwelling unit is $140943 -in.representative_income 141000 Representative total house income in the dwelling unit is $141000 -in.representative_income 141001 Representative total house income in the dwelling unit is $141001 -in.representative_income 141051 Representative total house income in the dwelling unit is $141051 -in.representative_income 141106 Representative total house income in the dwelling unit is $141106 -in.representative_income 141109 Representative total house income in the dwelling unit is $141109 -in.representative_income 141117 Representative total house income in the dwelling unit is $141117 -in.representative_income 141205 Representative total house income in the dwelling unit is $141205 -in.representative_income 141218 Representative total house income in the dwelling unit is $141218 -in.representative_income 141266 Representative total house income in the dwelling unit is $141266 -in.representative_income 141269 Representative total house income in the dwelling unit is $141269 -in.representative_income 141309 Representative total house income in the dwelling unit is $141309 -in.representative_income 141317 Representative total house income in the dwelling unit is $141317 -in.representative_income 141319 Representative total house income in the dwelling unit is $141319 -in.representative_income 141349 Representative total house income in the dwelling unit is $141349 -in.representative_income 141420 Representative total house income in the dwelling unit is $141420 -in.representative_income 141464 Representative total house income in the dwelling unit is $141464 -in.representative_income 141480 Representative total house income in the dwelling unit is $141480 -in.representative_income 141481 Representative total house income in the dwelling unit is $141481 -in.representative_income 141515 Representative total house income in the dwelling unit is $141515 -in.representative_income 141521 Representative total house income in the dwelling unit is $141521 -in.representative_income 141528 Representative total house income in the dwelling unit is $141528 -in.representative_income 141542 Representative total house income in the dwelling unit is $141542 -in.representative_income 141558 Representative total house income in the dwelling unit is $141558 -in.representative_income 141619 Representative total house income in the dwelling unit is $141619 -in.representative_income 141622 Representative total house income in the dwelling unit is $141622 -in.representative_income 141623 Representative total house income in the dwelling unit is $141623 -in.representative_income 141633 Representative total house income in the dwelling unit is $141633 -in.representative_income 141654 Representative total house income in the dwelling unit is $141654 -in.representative_income 141695 Representative total house income in the dwelling unit is $141695 -in.representative_income 141706 Representative total house income in the dwelling unit is $141706 -in.representative_income 141721 Representative total house income in the dwelling unit is $141721 -in.representative_income 141723 Representative total house income in the dwelling unit is $141723 -in.representative_income 141739 Representative total house income in the dwelling unit is $141739 -in.representative_income 141749 Representative total house income in the dwelling unit is $141749 -in.representative_income 141758 Representative total house income in the dwelling unit is $141758 -in.representative_income 141824 Representative total house income in the dwelling unit is $141824 -in.representative_income 141845 Representative total house income in the dwelling unit is $141845 -in.representative_income 141866 Representative total house income in the dwelling unit is $141866 -in.representative_income 141896 Representative total house income in the dwelling unit is $141896 -in.representative_income 141925 Representative total house income in the dwelling unit is $141925 -in.representative_income 141928 Representative total house income in the dwelling unit is $141928 -in.representative_income 141948 Representative total house income in the dwelling unit is $141948 -in.representative_income 142018 Representative total house income in the dwelling unit is $142018 -in.representative_income 142031 Representative total house income in the dwelling unit is $142031 -in.representative_income 142081 Representative total house income in the dwelling unit is $142081 -in.representative_income 142103 Representative total house income in the dwelling unit is $142103 -in.representative_income 142124 Representative total house income in the dwelling unit is $142124 -in.representative_income 142127 Representative total house income in the dwelling unit is $142127 -in.representative_income 142157 Representative total house income in the dwelling unit is $142157 -in.representative_income 142161 Representative total house income in the dwelling unit is $142161 -in.representative_income 142190 Representative total house income in the dwelling unit is $142190 -in.representative_income 142191 Representative total house income in the dwelling unit is $142191 -in.representative_income 142211 Representative total house income in the dwelling unit is $142211 -in.representative_income 142232 Representative total house income in the dwelling unit is $142232 -in.representative_income 142237 Representative total house income in the dwelling unit is $142237 -in.representative_income 142248 Representative total house income in the dwelling unit is $142248 -in.representative_income 142266 Representative total house income in the dwelling unit is $142266 -in.representative_income 142269 Representative total house income in the dwelling unit is $142269 -in.representative_income 142318 Representative total house income in the dwelling unit is $142318 -in.representative_income 142340 Representative total house income in the dwelling unit is $142340 -in.representative_income 142347 Representative total house income in the dwelling unit is $142347 -in.representative_income 142371 Representative total house income in the dwelling unit is $142371 -in.representative_income 142393 Representative total house income in the dwelling unit is $142393 -in.representative_income 142406 Representative total house income in the dwelling unit is $142406 -in.representative_income 142420 Representative total house income in the dwelling unit is $142420 -in.representative_income 142426 Representative total house income in the dwelling unit is $142426 -in.representative_income 142430 Representative total house income in the dwelling unit is $142430 -in.representative_income 142433 Representative total house income in the dwelling unit is $142433 -in.representative_income 142443 Representative total house income in the dwelling unit is $142443 -in.representative_income 142451 Representative total house income in the dwelling unit is $142451 -in.representative_income 142478 Representative total house income in the dwelling unit is $142478 -in.representative_income 142479 Representative total house income in the dwelling unit is $142479 -in.representative_income 142531 Representative total house income in the dwelling unit is $142531 -in.representative_income 142547 Representative total house income in the dwelling unit is $142547 -in.representative_income 142554 Representative total house income in the dwelling unit is $142554 -in.representative_income 142557 Representative total house income in the dwelling unit is $142557 -in.representative_income 142566 Representative total house income in the dwelling unit is $142566 -in.representative_income 142583 Representative total house income in the dwelling unit is $142583 -in.representative_income 142615 Representative total house income in the dwelling unit is $142615 -in.representative_income 142622 Representative total house income in the dwelling unit is $142622 -in.representative_income 142632 Representative total house income in the dwelling unit is $142632 -in.representative_income 142650 Representative total house income in the dwelling unit is $142650 -in.representative_income 142661 Representative total house income in the dwelling unit is $142661 -in.representative_income 142678 Representative total house income in the dwelling unit is $142678 -in.representative_income 142683 Representative total house income in the dwelling unit is $142683 -in.representative_income 142688 Representative total house income in the dwelling unit is $142688 -in.representative_income 142753 Representative total house income in the dwelling unit is $142753 -in.representative_income 142769 Representative total house income in the dwelling unit is $142769 -in.representative_income 142779 Representative total house income in the dwelling unit is $142779 -in.representative_income 142784 Representative total house income in the dwelling unit is $142784 -in.representative_income 142794 Representative total house income in the dwelling unit is $142794 -in.representative_income 142814 Representative total house income in the dwelling unit is $142814 -in.representative_income 142823 Representative total house income in the dwelling unit is $142823 -in.representative_income 142833 Representative total house income in the dwelling unit is $142833 -in.representative_income 142835 Representative total house income in the dwelling unit is $142835 -in.representative_income 142856 Representative total house income in the dwelling unit is $142856 -in.representative_income 142876 Representative total house income in the dwelling unit is $142876 -in.representative_income 142899 Representative total house income in the dwelling unit is $142899 -in.representative_income 142908 Representative total house income in the dwelling unit is $142908 -in.representative_income 142936 Representative total house income in the dwelling unit is $142936 -in.representative_income 142946 Representative total house income in the dwelling unit is $142946 -in.representative_income 142959 Representative total house income in the dwelling unit is $142959 -in.representative_income 142984 Representative total house income in the dwelling unit is $142984 -in.representative_income 143004 Representative total house income in the dwelling unit is $143004 -in.representative_income 143037 Representative total house income in the dwelling unit is $143037 -in.representative_income 143091 Representative total house income in the dwelling unit is $143091 -in.representative_income 143105 Representative total house income in the dwelling unit is $143105 -in.representative_income 143110 Representative total house income in the dwelling unit is $143110 -in.representative_income 143114 Representative total house income in the dwelling unit is $143114 -in.representative_income 143121 Representative total house income in the dwelling unit is $143121 -in.representative_income 143138 Representative total house income in the dwelling unit is $143138 -in.representative_income 143163 Representative total house income in the dwelling unit is $143163 -in.representative_income 143166 Representative total house income in the dwelling unit is $143166 -in.representative_income 143195 Representative total house income in the dwelling unit is $143195 -in.representative_income 143198 Representative total house income in the dwelling unit is $143198 -in.representative_income 143216 Representative total house income in the dwelling unit is $143216 -in.representative_income 143239 Representative total house income in the dwelling unit is $143239 -in.representative_income 143269 Representative total house income in the dwelling unit is $143269 -in.representative_income 143270 Representative total house income in the dwelling unit is $143270 -in.representative_income 143340 Representative total house income in the dwelling unit is $143340 -in.representative_income 143371 Representative total house income in the dwelling unit is $143371 -in.representative_income 143378 Representative total house income in the dwelling unit is $143378 -in.representative_income 143405 Representative total house income in the dwelling unit is $143405 -in.representative_income 143426 Representative total house income in the dwelling unit is $143426 -in.representative_income 143434 Representative total house income in the dwelling unit is $143434 -in.representative_income 143441 Representative total house income in the dwelling unit is $143441 -in.representative_income 143486 Representative total house income in the dwelling unit is $143486 -in.representative_income 143520 Representative total house income in the dwelling unit is $143520 -in.representative_income 143532 Representative total house income in the dwelling unit is $143532 -in.representative_income 143578 Representative total house income in the dwelling unit is $143578 -in.representative_income 143585 Representative total house income in the dwelling unit is $143585 -in.representative_income 143628 Representative total house income in the dwelling unit is $143628 -in.representative_income 143637 Representative total house income in the dwelling unit is $143637 -in.representative_income 143643 Representative total house income in the dwelling unit is $143643 -in.representative_income 143648 Representative total house income in the dwelling unit is $143648 -in.representative_income 143693 Representative total house income in the dwelling unit is $143693 -in.representative_income 143702 Representative total house income in the dwelling unit is $143702 -in.representative_income 143713 Representative total house income in the dwelling unit is $143713 -in.representative_income 143743 Representative total house income in the dwelling unit is $143743 -in.representative_income 143744 Representative total house income in the dwelling unit is $143744 -in.representative_income 143764 Representative total house income in the dwelling unit is $143764 -in.representative_income 143770 Representative total house income in the dwelling unit is $143770 -in.representative_income 143785 Representative total house income in the dwelling unit is $143785 -in.representative_income 143811 Representative total house income in the dwelling unit is $143811 -in.representative_income 143842 Representative total house income in the dwelling unit is $143842 -in.representative_income 143845 Representative total house income in the dwelling unit is $143845 -in.representative_income 143849 Representative total house income in the dwelling unit is $143849 -in.representative_income 143887 Representative total house income in the dwelling unit is $143887 -in.representative_income 143897 Representative total house income in the dwelling unit is $143897 -in.representative_income 143907 Representative total house income in the dwelling unit is $143907 -in.representative_income 143919 Representative total house income in the dwelling unit is $143919 -in.representative_income 143946 Representative total house income in the dwelling unit is $143946 -in.representative_income 143949 Representative total house income in the dwelling unit is $143949 -in.representative_income 143950 Representative total house income in the dwelling unit is $143950 -in.representative_income 143954 Representative total house income in the dwelling unit is $143954 -in.representative_income 143990 Representative total house income in the dwelling unit is $143990 -in.representative_income 144006 Representative total house income in the dwelling unit is $144006 -in.representative_income 144027 Representative total house income in the dwelling unit is $144027 -in.representative_income 144047 Representative total house income in the dwelling unit is $144047 -in.representative_income 144057 Representative total house income in the dwelling unit is $144057 -in.representative_income 144059 Representative total house income in the dwelling unit is $144059 -in.representative_income 144061 Representative total house income in the dwelling unit is $144061 -in.representative_income 144077 Representative total house income in the dwelling unit is $144077 -in.representative_income 144081 Representative total house income in the dwelling unit is $144081 -in.representative_income 144094 Representative total house income in the dwelling unit is $144094 -in.representative_income 144102 Representative total house income in the dwelling unit is $144102 -in.representative_income 144135 Representative total house income in the dwelling unit is $144135 -in.representative_income 144148 Representative total house income in the dwelling unit is $144148 -in.representative_income 144164 Representative total house income in the dwelling unit is $144164 -in.representative_income 144165 Representative total house income in the dwelling unit is $144165 -in.representative_income 144197 Representative total house income in the dwelling unit is $144197 -in.representative_income 144198 Representative total house income in the dwelling unit is $144198 -in.representative_income 144219 Representative total house income in the dwelling unit is $144219 -in.representative_income 144243 Representative total house income in the dwelling unit is $144243 -in.representative_income 144249 Representative total house income in the dwelling unit is $144249 -in.representative_income 144270 Representative total house income in the dwelling unit is $144270 -in.representative_income 144271 Representative total house income in the dwelling unit is $144271 -in.representative_income 144300 Representative total house income in the dwelling unit is $144300 -in.representative_income 144302 Representative total house income in the dwelling unit is $144302 -in.representative_income 144311 Representative total house income in the dwelling unit is $144311 -in.representative_income 144350 Representative total house income in the dwelling unit is $144350 -in.representative_income 144351 Representative total house income in the dwelling unit is $144351 -in.representative_income 144376 Representative total house income in the dwelling unit is $144376 -in.representative_income 144379 Representative total house income in the dwelling unit is $144379 -in.representative_income 144404 Representative total house income in the dwelling unit is $144404 -in.representative_income 144442 Representative total house income in the dwelling unit is $144442 -in.representative_income 144451 Representative total house income in the dwelling unit is $144451 -in.representative_income 144458 Representative total house income in the dwelling unit is $144458 -in.representative_income 144481 Representative total house income in the dwelling unit is $144481 -in.representative_income 144486 Representative total house income in the dwelling unit is $144486 -in.representative_income 144506 Representative total house income in the dwelling unit is $144506 -in.representative_income 144507 Representative total house income in the dwelling unit is $144507 -in.representative_income 144533 Representative total house income in the dwelling unit is $144533 -in.representative_income 144549 Representative total house income in the dwelling unit is $144549 -in.representative_income 144552 Representative total house income in the dwelling unit is $144552 -in.representative_income 144558 Representative total house income in the dwelling unit is $144558 -in.representative_income 144566 Representative total house income in the dwelling unit is $144566 -in.representative_income 144567 Representative total house income in the dwelling unit is $144567 -in.representative_income 144587 Representative total house income in the dwelling unit is $144587 -in.representative_income 144589 Representative total house income in the dwelling unit is $144589 -in.representative_income 144594 Representative total house income in the dwelling unit is $144594 -in.representative_income 144599 Representative total house income in the dwelling unit is $144599 -in.representative_income 144602 Representative total house income in the dwelling unit is $144602 -in.representative_income 144609 Representative total house income in the dwelling unit is $144609 -in.representative_income 144622 Representative total house income in the dwelling unit is $144622 -in.representative_income 144641 Representative total house income in the dwelling unit is $144641 -in.representative_income 144643 Representative total house income in the dwelling unit is $144643 -in.representative_income 144653 Representative total house income in the dwelling unit is $144653 -in.representative_income 144660 Representative total house income in the dwelling unit is $144660 -in.representative_income 144671 Representative total house income in the dwelling unit is $144671 -in.representative_income 144673 Representative total house income in the dwelling unit is $144673 -in.representative_income 144675 Representative total house income in the dwelling unit is $144675 -in.representative_income 144692 Representative total house income in the dwelling unit is $144692 -in.representative_income 144701 Representative total house income in the dwelling unit is $144701 -in.representative_income 144703 Representative total house income in the dwelling unit is $144703 -in.representative_income 144713 Representative total house income in the dwelling unit is $144713 -in.representative_income 144723 Representative total house income in the dwelling unit is $144723 -in.representative_income 144754 Representative total house income in the dwelling unit is $144754 -in.representative_income 144783 Representative total house income in the dwelling unit is $144783 -in.representative_income 144797 Representative total house income in the dwelling unit is $144797 -in.representative_income 144805 Representative total house income in the dwelling unit is $144805 -in.representative_income 144809 Representative total house income in the dwelling unit is $144809 -in.representative_income 144816 Representative total house income in the dwelling unit is $144816 -in.representative_income 144855 Representative total house income in the dwelling unit is $144855 -in.representative_income 144868 Representative total house income in the dwelling unit is $144868 -in.representative_income 144891 Representative total house income in the dwelling unit is $144891 -in.representative_income 144902 Representative total house income in the dwelling unit is $144902 -in.representative_income 144914 Representative total house income in the dwelling unit is $144914 -in.representative_income 144915 Representative total house income in the dwelling unit is $144915 -in.representative_income 144919 Representative total house income in the dwelling unit is $144919 -in.representative_income 144938 Representative total house income in the dwelling unit is $144938 -in.representative_income 144945 Representative total house income in the dwelling unit is $144945 -in.representative_income 144948 Representative total house income in the dwelling unit is $144948 -in.representative_income 144956 Representative total house income in the dwelling unit is $144956 -in.representative_income 144959 Representative total house income in the dwelling unit is $144959 -in.representative_income 144970 Representative total house income in the dwelling unit is $144970 -in.representative_income 144971 Representative total house income in the dwelling unit is $144971 -in.representative_income 144987 Representative total house income in the dwelling unit is $144987 -in.representative_income 144999 Representative total house income in the dwelling unit is $144999 -in.representative_income 145002 Representative total house income in the dwelling unit is $145002 -in.representative_income 145009 Representative total house income in the dwelling unit is $145009 -in.representative_income 145022 Representative total house income in the dwelling unit is $145022 -in.representative_income 145023 Representative total house income in the dwelling unit is $145023 -in.representative_income 145026 Representative total house income in the dwelling unit is $145026 -in.representative_income 145057 Representative total house income in the dwelling unit is $145057 -in.representative_income 145065 Representative total house income in the dwelling unit is $145065 -in.representative_income 145075 Representative total house income in the dwelling unit is $145075 -in.representative_income 145096 Representative total house income in the dwelling unit is $145096 -in.representative_income 145107 Representative total house income in the dwelling unit is $145107 -in.representative_income 145114 Representative total house income in the dwelling unit is $145114 -in.representative_income 145125 Representative total house income in the dwelling unit is $145125 -in.representative_income 145128 Representative total house income in the dwelling unit is $145128 -in.representative_income 145130 Representative total house income in the dwelling unit is $145130 -in.representative_income 145145 Representative total house income in the dwelling unit is $145145 -in.representative_income 145158 Representative total house income in the dwelling unit is $145158 -in.representative_income 145161 Representative total house income in the dwelling unit is $145161 -in.representative_income 145162 Representative total house income in the dwelling unit is $145162 -in.representative_income 145172 Representative total house income in the dwelling unit is $145172 -in.representative_income 145188 Representative total house income in the dwelling unit is $145188 -in.representative_income 145215 Representative total house income in the dwelling unit is $145215 -in.representative_income 145219 Representative total house income in the dwelling unit is $145219 -in.representative_income 145227 Representative total house income in the dwelling unit is $145227 -in.representative_income 145228 Representative total house income in the dwelling unit is $145228 -in.representative_income 145238 Representative total house income in the dwelling unit is $145238 -in.representative_income 145240 Representative total house income in the dwelling unit is $145240 -in.representative_income 145259 Representative total house income in the dwelling unit is $145259 -in.representative_income 145271 Representative total house income in the dwelling unit is $145271 -in.representative_income 145280 Representative total house income in the dwelling unit is $145280 -in.representative_income 145289 Representative total house income in the dwelling unit is $145289 -in.representative_income 145323 Representative total house income in the dwelling unit is $145323 -in.representative_income 145325 Representative total house income in the dwelling unit is $145325 -in.representative_income 145332 Representative total house income in the dwelling unit is $145332 -in.representative_income 145345 Representative total house income in the dwelling unit is $145345 -in.representative_income 145348 Representative total house income in the dwelling unit is $145348 -in.representative_income 145360 Representative total house income in the dwelling unit is $145360 -in.representative_income 145373 Representative total house income in the dwelling unit is $145373 -in.representative_income 145377 Representative total house income in the dwelling unit is $145377 -in.representative_income 145378 Representative total house income in the dwelling unit is $145378 -in.representative_income 145389 Representative total house income in the dwelling unit is $145389 -in.representative_income 145399 Representative total house income in the dwelling unit is $145399 -in.representative_income 145430 Representative total house income in the dwelling unit is $145430 -in.representative_income 145432 Representative total house income in the dwelling unit is $145432 -in.representative_income 145435 Representative total house income in the dwelling unit is $145435 -in.representative_income 145452 Representative total house income in the dwelling unit is $145452 -in.representative_income 145453 Representative total house income in the dwelling unit is $145453 -in.representative_income 145455 Representative total house income in the dwelling unit is $145455 -in.representative_income 145461 Representative total house income in the dwelling unit is $145461 -in.representative_income 145474 Representative total house income in the dwelling unit is $145474 -in.representative_income 145481 Representative total house income in the dwelling unit is $145481 -in.representative_income 145511 Representative total house income in the dwelling unit is $145511 -in.representative_income 145517 Representative total house income in the dwelling unit is $145517 -in.representative_income 145535 Representative total house income in the dwelling unit is $145535 -in.representative_income 145537 Representative total house income in the dwelling unit is $145537 -in.representative_income 145540 Representative total house income in the dwelling unit is $145540 -in.representative_income 145547 Representative total house income in the dwelling unit is $145547 -in.representative_income 145557 Representative total house income in the dwelling unit is $145557 -in.representative_income 145559 Representative total house income in the dwelling unit is $145559 -in.representative_income 145562 Representative total house income in the dwelling unit is $145562 -in.representative_income 145569 Representative total house income in the dwelling unit is $145569 -in.representative_income 145578 Representative total house income in the dwelling unit is $145578 -in.representative_income 145579 Representative total house income in the dwelling unit is $145579 -in.representative_income 145589 Representative total house income in the dwelling unit is $145589 -in.representative_income 145609 Representative total house income in the dwelling unit is $145609 -in.representative_income 145627 Representative total house income in the dwelling unit is $145627 -in.representative_income 145641 Representative total house income in the dwelling unit is $145641 -in.representative_income 145642 Representative total house income in the dwelling unit is $145642 -in.representative_income 145647 Representative total house income in the dwelling unit is $145647 -in.representative_income 145648 Representative total house income in the dwelling unit is $145648 -in.representative_income 145649 Representative total house income in the dwelling unit is $145649 -in.representative_income 145662 Representative total house income in the dwelling unit is $145662 -in.representative_income 145663 Representative total house income in the dwelling unit is $145663 -in.representative_income 145667 Representative total house income in the dwelling unit is $145667 -in.representative_income 145693 Representative total house income in the dwelling unit is $145693 -in.representative_income 145704 Representative total house income in the dwelling unit is $145704 -in.representative_income 145734 Representative total house income in the dwelling unit is $145734 -in.representative_income 145744 Representative total house income in the dwelling unit is $145744 -in.representative_income 145747 Representative total house income in the dwelling unit is $145747 -in.representative_income 145755 Representative total house income in the dwelling unit is $145755 -in.representative_income 145757 Representative total house income in the dwelling unit is $145757 -in.representative_income 145764 Representative total house income in the dwelling unit is $145764 -in.representative_income 145775 Representative total house income in the dwelling unit is $145775 -in.representative_income 145796 Representative total house income in the dwelling unit is $145796 -in.representative_income 145827 Representative total house income in the dwelling unit is $145827 -in.representative_income 145828 Representative total house income in the dwelling unit is $145828 -in.representative_income 145831 Representative total house income in the dwelling unit is $145831 -in.representative_income 145847 Representative total house income in the dwelling unit is $145847 -in.representative_income 145852 Representative total house income in the dwelling unit is $145852 -in.representative_income 145863 Representative total house income in the dwelling unit is $145863 -in.representative_income 145865 Representative total house income in the dwelling unit is $145865 -in.representative_income 145874 Representative total house income in the dwelling unit is $145874 -in.representative_income 145878 Representative total house income in the dwelling unit is $145878 -in.representative_income 145882 Representative total house income in the dwelling unit is $145882 -in.representative_income 145883 Representative total house income in the dwelling unit is $145883 -in.representative_income 145917 Representative total house income in the dwelling unit is $145917 -in.representative_income 145951 Representative total house income in the dwelling unit is $145951 -in.representative_income 145957 Representative total house income in the dwelling unit is $145957 -in.representative_income 145964 Representative total house income in the dwelling unit is $145964 -in.representative_income 145966 Representative total house income in the dwelling unit is $145966 -in.representative_income 145971 Representative total house income in the dwelling unit is $145971 -in.representative_income 145989 Representative total house income in the dwelling unit is $145989 -in.representative_income 146002 Representative total house income in the dwelling unit is $146002 -in.representative_income 146011 Representative total house income in the dwelling unit is $146011 -in.representative_income 146053 Representative total house income in the dwelling unit is $146053 -in.representative_income 146063 Representative total house income in the dwelling unit is $146063 -in.representative_income 146067 Representative total house income in the dwelling unit is $146067 -in.representative_income 146074 Representative total house income in the dwelling unit is $146074 -in.representative_income 146079 Representative total house income in the dwelling unit is $146079 -in.representative_income 146084 Representative total house income in the dwelling unit is $146084 -in.representative_income 146096 Representative total house income in the dwelling unit is $146096 -in.representative_income 146101 Representative total house income in the dwelling unit is $146101 -in.representative_income 146105 Representative total house income in the dwelling unit is $146105 -in.representative_income 146109 Representative total house income in the dwelling unit is $146109 -in.representative_income 146117 Representative total house income in the dwelling unit is $146117 -in.representative_income 146123 Representative total house income in the dwelling unit is $146123 -in.representative_income 146133 Representative total house income in the dwelling unit is $146133 -in.representative_income 146156 Representative total house income in the dwelling unit is $146156 -in.representative_income 146161 Representative total house income in the dwelling unit is $146161 -in.representative_income 146168 Representative total house income in the dwelling unit is $146168 -in.representative_income 146170 Representative total house income in the dwelling unit is $146170 -in.representative_income 146179 Representative total house income in the dwelling unit is $146179 -in.representative_income 146188 Representative total house income in the dwelling unit is $146188 -in.representative_income 146199 Representative total house income in the dwelling unit is $146199 -in.representative_income 146204 Representative total house income in the dwelling unit is $146204 -in.representative_income 146208 Representative total house income in the dwelling unit is $146208 -in.representative_income 146246 Representative total house income in the dwelling unit is $146246 -in.representative_income 146248 Representative total house income in the dwelling unit is $146248 -in.representative_income 146260 Representative total house income in the dwelling unit is $146260 -in.representative_income 146261 Representative total house income in the dwelling unit is $146261 -in.representative_income 146269 Representative total house income in the dwelling unit is $146269 -in.representative_income 146274 Representative total house income in the dwelling unit is $146274 -in.representative_income 146285 Representative total house income in the dwelling unit is $146285 -in.representative_income 146291 Representative total house income in the dwelling unit is $146291 -in.representative_income 146296 Representative total house income in the dwelling unit is $146296 -in.representative_income 146311 Representative total house income in the dwelling unit is $146311 -in.representative_income 146327 Representative total house income in the dwelling unit is $146327 -in.representative_income 146343 Representative total house income in the dwelling unit is $146343 -in.representative_income 146363 Representative total house income in the dwelling unit is $146363 -in.representative_income 146370 Representative total house income in the dwelling unit is $146370 -in.representative_income 146375 Representative total house income in the dwelling unit is $146375 -in.representative_income 146380 Representative total house income in the dwelling unit is $146380 -in.representative_income 146396 Representative total house income in the dwelling unit is $146396 -in.representative_income 146404 Representative total house income in the dwelling unit is $146404 -in.representative_income 146405 Representative total house income in the dwelling unit is $146405 -in.representative_income 146419 Representative total house income in the dwelling unit is $146419 -in.representative_income 146421 Representative total house income in the dwelling unit is $146421 -in.representative_income 146441 Representative total house income in the dwelling unit is $146441 -in.representative_income 146464 Representative total house income in the dwelling unit is $146464 -in.representative_income 146466 Representative total house income in the dwelling unit is $146466 -in.representative_income 146471 Representative total house income in the dwelling unit is $146471 -in.representative_income 146477 Representative total house income in the dwelling unit is $146477 -in.representative_income 146481 Representative total house income in the dwelling unit is $146481 -in.representative_income 146483 Representative total house income in the dwelling unit is $146483 -in.representative_income 146485 Representative total house income in the dwelling unit is $146485 -in.representative_income 146487 Representative total house income in the dwelling unit is $146487 -in.representative_income 146497 Representative total house income in the dwelling unit is $146497 -in.representative_income 146501 Representative total house income in the dwelling unit is $146501 -in.representative_income 146511 Representative total house income in the dwelling unit is $146511 -in.representative_income 146512 Representative total house income in the dwelling unit is $146512 -in.representative_income 146518 Representative total house income in the dwelling unit is $146518 -in.representative_income 146522 Representative total house income in the dwelling unit is $146522 -in.representative_income 146525 Representative total house income in the dwelling unit is $146525 -in.representative_income 146528 Representative total house income in the dwelling unit is $146528 -in.representative_income 146548 Representative total house income in the dwelling unit is $146548 -in.representative_income 146558 Representative total house income in the dwelling unit is $146558 -in.representative_income 146569 Representative total house income in the dwelling unit is $146569 -in.representative_income 146570 Representative total house income in the dwelling unit is $146570 -in.representative_income 146572 Representative total house income in the dwelling unit is $146572 -in.representative_income 146580 Representative total house income in the dwelling unit is $146580 -in.representative_income 146590 Representative total house income in the dwelling unit is $146590 -in.representative_income 146592 Representative total house income in the dwelling unit is $146592 -in.representative_income 146620 Representative total house income in the dwelling unit is $146620 -in.representative_income 146631 Representative total house income in the dwelling unit is $146631 -in.representative_income 146633 Representative total house income in the dwelling unit is $146633 -in.representative_income 146642 Representative total house income in the dwelling unit is $146642 -in.representative_income 146672 Representative total house income in the dwelling unit is $146672 -in.representative_income 146673 Representative total house income in the dwelling unit is $146673 -in.representative_income 146674 Representative total house income in the dwelling unit is $146674 -in.representative_income 146675 Representative total house income in the dwelling unit is $146675 -in.representative_income 146676 Representative total house income in the dwelling unit is $146676 -in.representative_income 146683 Representative total house income in the dwelling unit is $146683 -in.representative_income 146687 Representative total house income in the dwelling unit is $146687 -in.representative_income 146693 Representative total house income in the dwelling unit is $146693 -in.representative_income 146706 Representative total house income in the dwelling unit is $146706 -in.representative_income 146708 Representative total house income in the dwelling unit is $146708 -in.representative_income 146724 Representative total house income in the dwelling unit is $146724 -in.representative_income 146728 Representative total house income in the dwelling unit is $146728 -in.representative_income 146740 Representative total house income in the dwelling unit is $146740 -in.representative_income 146744 Representative total house income in the dwelling unit is $146744 -in.representative_income 146749 Representative total house income in the dwelling unit is $146749 -in.representative_income 146767 Representative total house income in the dwelling unit is $146767 -in.representative_income 146774 Representative total house income in the dwelling unit is $146774 -in.representative_income 146775 Representative total house income in the dwelling unit is $146775 -in.representative_income 146783 Representative total house income in the dwelling unit is $146783 -in.representative_income 146786 Representative total house income in the dwelling unit is $146786 -in.representative_income 146801 Representative total house income in the dwelling unit is $146801 -in.representative_income 146807 Representative total house income in the dwelling unit is $146807 -in.representative_income 146823 Representative total house income in the dwelling unit is $146823 -in.representative_income 146835 Representative total house income in the dwelling unit is $146835 -in.representative_income 146848 Representative total house income in the dwelling unit is $146848 -in.representative_income 146875 Representative total house income in the dwelling unit is $146875 -in.representative_income 146879 Representative total house income in the dwelling unit is $146879 -in.representative_income 146905 Representative total house income in the dwelling unit is $146905 -in.representative_income 146907 Representative total house income in the dwelling unit is $146907 -in.representative_income 146919 Representative total house income in the dwelling unit is $146919 -in.representative_income 146922 Representative total house income in the dwelling unit is $146922 -in.representative_income 146944 Representative total house income in the dwelling unit is $146944 -in.representative_income 146946 Representative total house income in the dwelling unit is $146946 -in.representative_income 146949 Representative total house income in the dwelling unit is $146949 -in.representative_income 146952 Representative total house income in the dwelling unit is $146952 -in.representative_income 146955 Representative total house income in the dwelling unit is $146955 -in.representative_income 146959 Representative total house income in the dwelling unit is $146959 -in.representative_income 146966 Representative total house income in the dwelling unit is $146966 -in.representative_income 146976 Representative total house income in the dwelling unit is $146976 -in.representative_income 146981 Representative total house income in the dwelling unit is $146981 -in.representative_income 146982 Representative total house income in the dwelling unit is $146982 -in.representative_income 147012 Representative total house income in the dwelling unit is $147012 -in.representative_income 147013 Representative total house income in the dwelling unit is $147013 -in.representative_income 147031 Representative total house income in the dwelling unit is $147031 -in.representative_income 147042 Representative total house income in the dwelling unit is $147042 -in.representative_income 147052 Representative total house income in the dwelling unit is $147052 -in.representative_income 147063 Representative total house income in the dwelling unit is $147063 -in.representative_income 147064 Representative total house income in the dwelling unit is $147064 -in.representative_income 147077 Representative total house income in the dwelling unit is $147077 -in.representative_income 147085 Representative total house income in the dwelling unit is $147085 -in.representative_income 147106 Representative total house income in the dwelling unit is $147106 -in.representative_income 147116 Representative total house income in the dwelling unit is $147116 -in.representative_income 147118 Representative total house income in the dwelling unit is $147118 -in.representative_income 147127 Representative total house income in the dwelling unit is $147127 -in.representative_income 147128 Representative total house income in the dwelling unit is $147128 -in.representative_income 147137 Representative total house income in the dwelling unit is $147137 -in.representative_income 147147 Representative total house income in the dwelling unit is $147147 -in.representative_income 147160 Representative total house income in the dwelling unit is $147160 -in.representative_income 147170 Representative total house income in the dwelling unit is $147170 -in.representative_income 147171 Representative total house income in the dwelling unit is $147171 -in.representative_income 147178 Representative total house income in the dwelling unit is $147178 -in.representative_income 147188 Representative total house income in the dwelling unit is $147188 -in.representative_income 147193 Representative total house income in the dwelling unit is $147193 -in.representative_income 147212 Representative total house income in the dwelling unit is $147212 -in.representative_income 147213 Representative total house income in the dwelling unit is $147213 -in.representative_income 147223 Representative total house income in the dwelling unit is $147223 -in.representative_income 147229 Representative total house income in the dwelling unit is $147229 -in.representative_income 147261 Representative total house income in the dwelling unit is $147261 -in.representative_income 147268 Representative total house income in the dwelling unit is $147268 -in.representative_income 147272 Representative total house income in the dwelling unit is $147272 -in.representative_income 147276 Representative total house income in the dwelling unit is $147276 -in.representative_income 147277 Representative total house income in the dwelling unit is $147277 -in.representative_income 147279 Representative total house income in the dwelling unit is $147279 -in.representative_income 147288 Representative total house income in the dwelling unit is $147288 -in.representative_income 147291 Representative total house income in the dwelling unit is $147291 -in.representative_income 147309 Representative total house income in the dwelling unit is $147309 -in.representative_income 147319 Representative total house income in the dwelling unit is $147319 -in.representative_income 147322 Representative total house income in the dwelling unit is $147322 -in.representative_income 147328 Representative total house income in the dwelling unit is $147328 -in.representative_income 147330 Representative total house income in the dwelling unit is $147330 -in.representative_income 147376 Representative total house income in the dwelling unit is $147376 -in.representative_income 147380 Representative total house income in the dwelling unit is $147380 -in.representative_income 147385 Representative total house income in the dwelling unit is $147385 -in.representative_income 147394 Representative total house income in the dwelling unit is $147394 -in.representative_income 147430 Representative total house income in the dwelling unit is $147430 -in.representative_income 147433 Representative total house income in the dwelling unit is $147433 -in.representative_income 147441 Representative total house income in the dwelling unit is $147441 -in.representative_income 147442 Representative total house income in the dwelling unit is $147442 -in.representative_income 147466 Representative total house income in the dwelling unit is $147466 -in.representative_income 147481 Representative total house income in the dwelling unit is $147481 -in.representative_income 147484 Representative total house income in the dwelling unit is $147484 -in.representative_income 147489 Representative total house income in the dwelling unit is $147489 -in.representative_income 147491 Representative total house income in the dwelling unit is $147491 -in.representative_income 147492 Representative total house income in the dwelling unit is $147492 -in.representative_income 147498 Representative total house income in the dwelling unit is $147498 -in.representative_income 147501 Representative total house income in the dwelling unit is $147501 -in.representative_income 147516 Representative total house income in the dwelling unit is $147516 -in.representative_income 147528 Representative total house income in the dwelling unit is $147528 -in.representative_income 147540 Representative total house income in the dwelling unit is $147540 -in.representative_income 147550 Representative total house income in the dwelling unit is $147550 -in.representative_income 147560 Representative total house income in the dwelling unit is $147560 -in.representative_income 147562 Representative total house income in the dwelling unit is $147562 -in.representative_income 147571 Representative total house income in the dwelling unit is $147571 -in.representative_income 147577 Representative total house income in the dwelling unit is $147577 -in.representative_income 147582 Representative total house income in the dwelling unit is $147582 -in.representative_income 147592 Representative total house income in the dwelling unit is $147592 -in.representative_income 147600 Representative total house income in the dwelling unit is $147600 -in.representative_income 147601 Representative total house income in the dwelling unit is $147601 -in.representative_income 147602 Representative total house income in the dwelling unit is $147602 -in.representative_income 147633 Representative total house income in the dwelling unit is $147633 -in.representative_income 147642 Representative total house income in the dwelling unit is $147642 -in.representative_income 147643 Representative total house income in the dwelling unit is $147643 -in.representative_income 147645 Representative total house income in the dwelling unit is $147645 -in.representative_income 147646 Representative total house income in the dwelling unit is $147646 -in.representative_income 147656 Representative total house income in the dwelling unit is $147656 -in.representative_income 147666 Representative total house income in the dwelling unit is $147666 -in.representative_income 147673 Representative total house income in the dwelling unit is $147673 -in.representative_income 147676 Representative total house income in the dwelling unit is $147676 -in.representative_income 147683 Representative total house income in the dwelling unit is $147683 -in.representative_income 147685 Representative total house income in the dwelling unit is $147685 -in.representative_income 147697 Representative total house income in the dwelling unit is $147697 -in.representative_income 147700 Representative total house income in the dwelling unit is $147700 -in.representative_income 147701 Representative total house income in the dwelling unit is $147701 -in.representative_income 147703 Representative total house income in the dwelling unit is $147703 -in.representative_income 147706 Representative total house income in the dwelling unit is $147706 -in.representative_income 147708 Representative total house income in the dwelling unit is $147708 -in.representative_income 147716 Representative total house income in the dwelling unit is $147716 -in.representative_income 147729 Representative total house income in the dwelling unit is $147729 -in.representative_income 147730 Representative total house income in the dwelling unit is $147730 -in.representative_income 147734 Representative total house income in the dwelling unit is $147734 -in.representative_income 147750 Representative total house income in the dwelling unit is $147750 -in.representative_income 147764 Representative total house income in the dwelling unit is $147764 -in.representative_income 147765 Representative total house income in the dwelling unit is $147765 -in.representative_income 147784 Representative total house income in the dwelling unit is $147784 -in.representative_income 147792 Representative total house income in the dwelling unit is $147792 -in.representative_income 147803 Representative total house income in the dwelling unit is $147803 -in.representative_income 147807 Representative total house income in the dwelling unit is $147807 -in.representative_income 147809 Representative total house income in the dwelling unit is $147809 -in.representative_income 147814 Representative total house income in the dwelling unit is $147814 -in.representative_income 147817 Representative total house income in the dwelling unit is $147817 -in.representative_income 147818 Representative total house income in the dwelling unit is $147818 -in.representative_income 147819 Representative total house income in the dwelling unit is $147819 -in.representative_income 147825 Representative total house income in the dwelling unit is $147825 -in.representative_income 147829 Representative total house income in the dwelling unit is $147829 -in.representative_income 147834 Representative total house income in the dwelling unit is $147834 -in.representative_income 147856 Representative total house income in the dwelling unit is $147856 -in.representative_income 147858 Representative total house income in the dwelling unit is $147858 -in.representative_income 147885 Representative total house income in the dwelling unit is $147885 -in.representative_income 147888 Representative total house income in the dwelling unit is $147888 -in.representative_income 147890 Representative total house income in the dwelling unit is $147890 -in.representative_income 147891 Representative total house income in the dwelling unit is $147891 -in.representative_income 147898 Representative total house income in the dwelling unit is $147898 -in.representative_income 147900 Representative total house income in the dwelling unit is $147900 -in.representative_income 147907 Representative total house income in the dwelling unit is $147907 -in.representative_income 147909 Representative total house income in the dwelling unit is $147909 -in.representative_income 147910 Representative total house income in the dwelling unit is $147910 -in.representative_income 147917 Representative total house income in the dwelling unit is $147917 -in.representative_income 147921 Representative total house income in the dwelling unit is $147921 -in.representative_income 147926 Representative total house income in the dwelling unit is $147926 -in.representative_income 147932 Representative total house income in the dwelling unit is $147932 -in.representative_income 147936 Representative total house income in the dwelling unit is $147936 -in.representative_income 147942 Representative total house income in the dwelling unit is $147942 -in.representative_income 147943 Representative total house income in the dwelling unit is $147943 -in.representative_income 147949 Representative total house income in the dwelling unit is $147949 -in.representative_income 147954 Representative total house income in the dwelling unit is $147954 -in.representative_income 147961 Representative total house income in the dwelling unit is $147961 -in.representative_income 147966 Representative total house income in the dwelling unit is $147966 -in.representative_income 147967 Representative total house income in the dwelling unit is $147967 -in.representative_income 147972 Representative total house income in the dwelling unit is $147972 -in.representative_income 147982 Representative total house income in the dwelling unit is $147982 -in.representative_income 147986 Representative total house income in the dwelling unit is $147986 -in.representative_income 148013 Representative total house income in the dwelling unit is $148013 -in.representative_income 148014 Representative total house income in the dwelling unit is $148014 -in.representative_income 148016 Representative total house income in the dwelling unit is $148016 -in.representative_income 148017 Representative total house income in the dwelling unit is $148017 -in.representative_income 148024 Representative total house income in the dwelling unit is $148024 -in.representative_income 148027 Representative total house income in the dwelling unit is $148027 -in.representative_income 148029 Representative total house income in the dwelling unit is $148029 -in.representative_income 148035 Representative total house income in the dwelling unit is $148035 -in.representative_income 148046 Representative total house income in the dwelling unit is $148046 -in.representative_income 148057 Representative total house income in the dwelling unit is $148057 -in.representative_income 148066 Representative total house income in the dwelling unit is $148066 -in.representative_income 148068 Representative total house income in the dwelling unit is $148068 -in.representative_income 148071 Representative total house income in the dwelling unit is $148071 -in.representative_income 148075 Representative total house income in the dwelling unit is $148075 -in.representative_income 148077 Representative total house income in the dwelling unit is $148077 -in.representative_income 148078 Representative total house income in the dwelling unit is $148078 -in.representative_income 148085 Representative total house income in the dwelling unit is $148085 -in.representative_income 148087 Representative total house income in the dwelling unit is $148087 -in.representative_income 148099 Representative total house income in the dwelling unit is $148099 -in.representative_income 148107 Representative total house income in the dwelling unit is $148107 -in.representative_income 148117 Representative total house income in the dwelling unit is $148117 -in.representative_income 148118 Representative total house income in the dwelling unit is $148118 -in.representative_income 148132 Representative total house income in the dwelling unit is $148132 -in.representative_income 148133 Representative total house income in the dwelling unit is $148133 -in.representative_income 148136 Representative total house income in the dwelling unit is $148136 -in.representative_income 148137 Representative total house income in the dwelling unit is $148137 -in.representative_income 148141 Representative total house income in the dwelling unit is $148141 -in.representative_income 148143 Representative total house income in the dwelling unit is $148143 -in.representative_income 148158 Representative total house income in the dwelling unit is $148158 -in.representative_income 148173 Representative total house income in the dwelling unit is $148173 -in.representative_income 148176 Representative total house income in the dwelling unit is $148176 -in.representative_income 148179 Representative total house income in the dwelling unit is $148179 -in.representative_income 148187 Representative total house income in the dwelling unit is $148187 -in.representative_income 148188 Representative total house income in the dwelling unit is $148188 -in.representative_income 148191 Representative total house income in the dwelling unit is $148191 -in.representative_income 148199 Representative total house income in the dwelling unit is $148199 -in.representative_income 148200 Representative total house income in the dwelling unit is $148200 -in.representative_income 148220 Representative total house income in the dwelling unit is $148220 -in.representative_income 148225 Representative total house income in the dwelling unit is $148225 -in.representative_income 148240 Representative total house income in the dwelling unit is $148240 -in.representative_income 148243 Representative total house income in the dwelling unit is $148243 -in.representative_income 148247 Representative total house income in the dwelling unit is $148247 -in.representative_income 148261 Representative total house income in the dwelling unit is $148261 -in.representative_income 148262 Representative total house income in the dwelling unit is $148262 -in.representative_income 148265 Representative total house income in the dwelling unit is $148265 -in.representative_income 148267 Representative total house income in the dwelling unit is $148267 -in.representative_income 148278 Representative total house income in the dwelling unit is $148278 -in.representative_income 148288 Representative total house income in the dwelling unit is $148288 -in.representative_income 148289 Representative total house income in the dwelling unit is $148289 -in.representative_income 148309 Representative total house income in the dwelling unit is $148309 -in.representative_income 148317 Representative total house income in the dwelling unit is $148317 -in.representative_income 148322 Representative total house income in the dwelling unit is $148322 -in.representative_income 148330 Representative total house income in the dwelling unit is $148330 -in.representative_income 148332 Representative total house income in the dwelling unit is $148332 -in.representative_income 148345 Representative total house income in the dwelling unit is $148345 -in.representative_income 148348 Representative total house income in the dwelling unit is $148348 -in.representative_income 148350 Representative total house income in the dwelling unit is $148350 -in.representative_income 148383 Representative total house income in the dwelling unit is $148383 -in.representative_income 148390 Representative total house income in the dwelling unit is $148390 -in.representative_income 148394 Representative total house income in the dwelling unit is $148394 -in.representative_income 148412 Representative total house income in the dwelling unit is $148412 -in.representative_income 148414 Representative total house income in the dwelling unit is $148414 -in.representative_income 148415 Representative total house income in the dwelling unit is $148415 -in.representative_income 148420 Representative total house income in the dwelling unit is $148420 -in.representative_income 148421 Representative total house income in the dwelling unit is $148421 -in.representative_income 148426 Representative total house income in the dwelling unit is $148426 -in.representative_income 148435 Representative total house income in the dwelling unit is $148435 -in.representative_income 148456 Representative total house income in the dwelling unit is $148456 -in.representative_income 148457 Representative total house income in the dwelling unit is $148457 -in.representative_income 148458 Representative total house income in the dwelling unit is $148458 -in.representative_income 148467 Representative total house income in the dwelling unit is $148467 -in.representative_income 148471 Representative total house income in the dwelling unit is $148471 -in.representative_income 148478 Representative total house income in the dwelling unit is $148478 -in.representative_income 148479 Representative total house income in the dwelling unit is $148479 -in.representative_income 148481 Representative total house income in the dwelling unit is $148481 -in.representative_income 148482 Representative total house income in the dwelling unit is $148482 -in.representative_income 148485 Representative total house income in the dwelling unit is $148485 -in.representative_income 148488 Representative total house income in the dwelling unit is $148488 -in.representative_income 148491 Representative total house income in the dwelling unit is $148491 -in.representative_income 148512 Representative total house income in the dwelling unit is $148512 -in.representative_income 148529 Representative total house income in the dwelling unit is $148529 -in.representative_income 148542 Representative total house income in the dwelling unit is $148542 -in.representative_income 148545 Representative total house income in the dwelling unit is $148545 -in.representative_income 148549 Representative total house income in the dwelling unit is $148549 -in.representative_income 148552 Representative total house income in the dwelling unit is $148552 -in.representative_income 148561 Representative total house income in the dwelling unit is $148561 -in.representative_income 148565 Representative total house income in the dwelling unit is $148565 -in.representative_income 148566 Representative total house income in the dwelling unit is $148566 -in.representative_income 148567 Representative total house income in the dwelling unit is $148567 -in.representative_income 148572 Representative total house income in the dwelling unit is $148572 -in.representative_income 148581 Representative total house income in the dwelling unit is $148581 -in.representative_income 148584 Representative total house income in the dwelling unit is $148584 -in.representative_income 148587 Representative total house income in the dwelling unit is $148587 -in.representative_income 148592 Representative total house income in the dwelling unit is $148592 -in.representative_income 148594 Representative total house income in the dwelling unit is $148594 -in.representative_income 148615 Representative total house income in the dwelling unit is $148615 -in.representative_income 148623 Representative total house income in the dwelling unit is $148623 -in.representative_income 148628 Representative total house income in the dwelling unit is $148628 -in.representative_income 148632 Representative total house income in the dwelling unit is $148632 -in.representative_income 148640 Representative total house income in the dwelling unit is $148640 -in.representative_income 148653 Representative total house income in the dwelling unit is $148653 -in.representative_income 148657 Representative total house income in the dwelling unit is $148657 -in.representative_income 148668 Representative total house income in the dwelling unit is $148668 -in.representative_income 148673 Representative total house income in the dwelling unit is $148673 -in.representative_income 148684 Representative total house income in the dwelling unit is $148684 -in.representative_income 148689 Representative total house income in the dwelling unit is $148689 -in.representative_income 148693 Representative total house income in the dwelling unit is $148693 -in.representative_income 148699 Representative total house income in the dwelling unit is $148699 -in.representative_income 148706 Representative total house income in the dwelling unit is $148706 -in.representative_income 148713 Representative total house income in the dwelling unit is $148713 -in.representative_income 148721 Representative total house income in the dwelling unit is $148721 -in.representative_income 148724 Representative total house income in the dwelling unit is $148724 -in.representative_income 148736 Representative total house income in the dwelling unit is $148736 -in.representative_income 148738 Representative total house income in the dwelling unit is $148738 -in.representative_income 148752 Representative total house income in the dwelling unit is $148752 -in.representative_income 148759 Representative total house income in the dwelling unit is $148759 -in.representative_income 148763 Representative total house income in the dwelling unit is $148763 -in.representative_income 148773 Representative total house income in the dwelling unit is $148773 -in.representative_income 148780 Representative total house income in the dwelling unit is $148780 -in.representative_income 148781 Representative total house income in the dwelling unit is $148781 -in.representative_income 148784 Representative total house income in the dwelling unit is $148784 -in.representative_income 148794 Representative total house income in the dwelling unit is $148794 -in.representative_income 148798 Representative total house income in the dwelling unit is $148798 -in.representative_income 148805 Representative total house income in the dwelling unit is $148805 -in.representative_income 148815 Representative total house income in the dwelling unit is $148815 -in.representative_income 148835 Representative total house income in the dwelling unit is $148835 -in.representative_income 148837 Representative total house income in the dwelling unit is $148837 -in.representative_income 148838 Representative total house income in the dwelling unit is $148838 -in.representative_income 148845 Representative total house income in the dwelling unit is $148845 -in.representative_income 148846 Representative total house income in the dwelling unit is $148846 -in.representative_income 148847 Representative total house income in the dwelling unit is $148847 -in.representative_income 148849 Representative total house income in the dwelling unit is $148849 -in.representative_income 148865 Representative total house income in the dwelling unit is $148865 -in.representative_income 148868 Representative total house income in the dwelling unit is $148868 -in.representative_income 148873 Representative total house income in the dwelling unit is $148873 -in.representative_income 148887 Representative total house income in the dwelling unit is $148887 -in.representative_income 148889 Representative total house income in the dwelling unit is $148889 -in.representative_income 148895 Representative total house income in the dwelling unit is $148895 -in.representative_income 148896 Representative total house income in the dwelling unit is $148896 -in.representative_income 148910 Representative total house income in the dwelling unit is $148910 -in.representative_income 148911 Representative total house income in the dwelling unit is $148911 -in.representative_income 148918 Representative total house income in the dwelling unit is $148918 -in.representative_income 148941 Representative total house income in the dwelling unit is $148941 -in.representative_income 148943 Representative total house income in the dwelling unit is $148943 -in.representative_income 148946 Representative total house income in the dwelling unit is $148946 -in.representative_income 148952 Representative total house income in the dwelling unit is $148952 -in.representative_income 148973 Representative total house income in the dwelling unit is $148973 -in.representative_income 148995 Representative total house income in the dwelling unit is $148995 -in.representative_income 148996 Representative total house income in the dwelling unit is $148996 -in.representative_income 148997 Representative total house income in the dwelling unit is $148997 -in.representative_income 149005 Representative total house income in the dwelling unit is $149005 -in.representative_income 149016 Representative total house income in the dwelling unit is $149016 -in.representative_income 149026 Representative total house income in the dwelling unit is $149026 -in.representative_income 149027 Representative total house income in the dwelling unit is $149027 -in.representative_income 149041 Representative total house income in the dwelling unit is $149041 -in.representative_income 149045 Representative total house income in the dwelling unit is $149045 -in.representative_income 149047 Representative total house income in the dwelling unit is $149047 -in.representative_income 149061 Representative total house income in the dwelling unit is $149061 -in.representative_income 149068 Representative total house income in the dwelling unit is $149068 -in.representative_income 149079 Representative total house income in the dwelling unit is $149079 -in.representative_income 149087 Representative total house income in the dwelling unit is $149087 -in.representative_income 149097 Representative total house income in the dwelling unit is $149097 -in.representative_income 149102 Representative total house income in the dwelling unit is $149102 -in.representative_income 149105 Representative total house income in the dwelling unit is $149105 -in.representative_income 149107 Representative total house income in the dwelling unit is $149107 -in.representative_income 149109 Representative total house income in the dwelling unit is $149109 -in.representative_income 149115 Representative total house income in the dwelling unit is $149115 -in.representative_income 149121 Representative total house income in the dwelling unit is $149121 -in.representative_income 149124 Representative total house income in the dwelling unit is $149124 -in.representative_income 149126 Representative total house income in the dwelling unit is $149126 -in.representative_income 149142 Representative total house income in the dwelling unit is $149142 -in.representative_income 149148 Representative total house income in the dwelling unit is $149148 -in.representative_income 149191 Representative total house income in the dwelling unit is $149191 -in.representative_income 149198 Representative total house income in the dwelling unit is $149198 -in.representative_income 149199 Representative total house income in the dwelling unit is $149199 -in.representative_income 149209 Representative total house income in the dwelling unit is $149209 -in.representative_income 149210 Representative total house income in the dwelling unit is $149210 -in.representative_income 149211 Representative total house income in the dwelling unit is $149211 -in.representative_income 149213 Representative total house income in the dwelling unit is $149213 -in.representative_income 149222 Representative total house income in the dwelling unit is $149222 -in.representative_income 149226 Representative total house income in the dwelling unit is $149226 -in.representative_income 149231 Representative total house income in the dwelling unit is $149231 -in.representative_income 149251 Representative total house income in the dwelling unit is $149251 -in.representative_income 149256 Representative total house income in the dwelling unit is $149256 -in.representative_income 149259 Representative total house income in the dwelling unit is $149259 -in.representative_income 149263 Representative total house income in the dwelling unit is $149263 -in.representative_income 149266 Representative total house income in the dwelling unit is $149266 -in.representative_income 149269 Representative total house income in the dwelling unit is $149269 -in.representative_income 149272 Representative total house income in the dwelling unit is $149272 -in.representative_income 149284 Representative total house income in the dwelling unit is $149284 -in.representative_income 149292 Representative total house income in the dwelling unit is $149292 -in.representative_income 149296 Representative total house income in the dwelling unit is $149296 -in.representative_income 149299 Representative total house income in the dwelling unit is $149299 -in.representative_income 149303 Representative total house income in the dwelling unit is $149303 -in.representative_income 149316 Representative total house income in the dwelling unit is $149316 -in.representative_income 149321 Representative total house income in the dwelling unit is $149321 -in.representative_income 149332 Representative total house income in the dwelling unit is $149332 -in.representative_income 149333 Representative total house income in the dwelling unit is $149333 -in.representative_income 149341 Representative total house income in the dwelling unit is $149341 -in.representative_income 149343 Representative total house income in the dwelling unit is $149343 -in.representative_income 149349 Representative total house income in the dwelling unit is $149349 -in.representative_income 149354 Representative total house income in the dwelling unit is $149354 -in.representative_income 149371 Representative total house income in the dwelling unit is $149371 -in.representative_income 149374 Representative total house income in the dwelling unit is $149374 -in.representative_income 149386 Representative total house income in the dwelling unit is $149386 -in.representative_income 149399 Representative total house income in the dwelling unit is $149399 -in.representative_income 149400 Representative total house income in the dwelling unit is $149400 -in.representative_income 149406 Representative total house income in the dwelling unit is $149406 -in.representative_income 149420 Representative total house income in the dwelling unit is $149420 -in.representative_income 149424 Representative total house income in the dwelling unit is $149424 -in.representative_income 149429 Representative total house income in the dwelling unit is $149429 -in.representative_income 149434 Representative total house income in the dwelling unit is $149434 -in.representative_income 149438 Representative total house income in the dwelling unit is $149438 -in.representative_income 149457 Representative total house income in the dwelling unit is $149457 -in.representative_income 149461 Representative total house income in the dwelling unit is $149461 -in.representative_income 149499 Representative total house income in the dwelling unit is $149499 -in.representative_income 149501 Representative total house income in the dwelling unit is $149501 -in.representative_income 149512 Representative total house income in the dwelling unit is $149512 -in.representative_income 149516 Representative total house income in the dwelling unit is $149516 -in.representative_income 149526 Representative total house income in the dwelling unit is $149526 -in.representative_income 149531 Representative total house income in the dwelling unit is $149531 -in.representative_income 149537 Representative total house income in the dwelling unit is $149537 -in.representative_income 149543 Representative total house income in the dwelling unit is $149543 -in.representative_income 149549 Representative total house income in the dwelling unit is $149549 -in.representative_income 149554 Representative total house income in the dwelling unit is $149554 -in.representative_income 149556 Representative total house income in the dwelling unit is $149556 -in.representative_income 149560 Representative total house income in the dwelling unit is $149560 -in.representative_income 149562 Representative total house income in the dwelling unit is $149562 -in.representative_income 149563 Representative total house income in the dwelling unit is $149563 -in.representative_income 149564 Representative total house income in the dwelling unit is $149564 -in.representative_income 149569 Representative total house income in the dwelling unit is $149569 -in.representative_income 149583 Representative total house income in the dwelling unit is $149583 -in.representative_income 149586 Representative total house income in the dwelling unit is $149586 -in.representative_income 149591 Representative total house income in the dwelling unit is $149591 -in.representative_income 149592 Representative total house income in the dwelling unit is $149592 -in.representative_income 149596 Representative total house income in the dwelling unit is $149596 -in.representative_income 149602 Representative total house income in the dwelling unit is $149602 -in.representative_income 149606 Representative total house income in the dwelling unit is $149606 -in.representative_income 149612 Representative total house income in the dwelling unit is $149612 -in.representative_income 149615 Representative total house income in the dwelling unit is $149615 -in.representative_income 149622 Representative total house income in the dwelling unit is $149622 -in.representative_income 149639 Representative total house income in the dwelling unit is $149639 -in.representative_income 149645 Representative total house income in the dwelling unit is $149645 -in.representative_income 149649 Representative total house income in the dwelling unit is $149649 -in.representative_income 149653 Representative total house income in the dwelling unit is $149653 -in.representative_income 149657 Representative total house income in the dwelling unit is $149657 -in.representative_income 149664 Representative total house income in the dwelling unit is $149664 -in.representative_income 149673 Representative total house income in the dwelling unit is $149673 -in.representative_income 149693 Representative total house income in the dwelling unit is $149693 -in.representative_income 149699 Representative total house income in the dwelling unit is $149699 -in.representative_income 149703 Representative total house income in the dwelling unit is $149703 -in.representative_income 149705 Representative total house income in the dwelling unit is $149705 -in.representative_income 149710 Representative total house income in the dwelling unit is $149710 -in.representative_income 149715 Representative total house income in the dwelling unit is $149715 -in.representative_income 149724 Representative total house income in the dwelling unit is $149724 -in.representative_income 149734 Representative total house income in the dwelling unit is $149734 -in.representative_income 149736 Representative total house income in the dwelling unit is $149736 -in.representative_income 149746 Representative total house income in the dwelling unit is $149746 -in.representative_income 149753 Representative total house income in the dwelling unit is $149753 -in.representative_income 149754 Representative total house income in the dwelling unit is $149754 -in.representative_income 149764 Representative total house income in the dwelling unit is $149764 -in.representative_income 149767 Representative total house income in the dwelling unit is $149767 -in.representative_income 149775 Representative total house income in the dwelling unit is $149775 -in.representative_income 149785 Representative total house income in the dwelling unit is $149785 -in.representative_income 149794 Representative total house income in the dwelling unit is $149794 -in.representative_income 149805 Representative total house income in the dwelling unit is $149805 -in.representative_income 149807 Representative total house income in the dwelling unit is $149807 -in.representative_income 149808 Representative total house income in the dwelling unit is $149808 -in.representative_income 149812 Representative total house income in the dwelling unit is $149812 -in.representative_income 149818 Representative total house income in the dwelling unit is $149818 -in.representative_income 149819 Representative total house income in the dwelling unit is $149819 -in.representative_income 149830 Representative total house income in the dwelling unit is $149830 -in.representative_income 149839 Representative total house income in the dwelling unit is $149839 -in.representative_income 149854 Representative total house income in the dwelling unit is $149854 -in.representative_income 149855 Representative total house income in the dwelling unit is $149855 -in.representative_income 149859 Representative total house income in the dwelling unit is $149859 -in.representative_income 149861 Representative total house income in the dwelling unit is $149861 -in.representative_income 149864 Representative total house income in the dwelling unit is $149864 -in.representative_income 149865 Representative total house income in the dwelling unit is $149865 -in.representative_income 149870 Representative total house income in the dwelling unit is $149870 -in.representative_income 149871 Representative total house income in the dwelling unit is $149871 -in.representative_income 149892 Representative total house income in the dwelling unit is $149892 -in.representative_income 149894 Representative total house income in the dwelling unit is $149894 -in.representative_income 149906 Representative total house income in the dwelling unit is $149906 -in.representative_income 149910 Representative total house income in the dwelling unit is $149910 -in.representative_income 149912 Representative total house income in the dwelling unit is $149912 -in.representative_income 149915 Representative total house income in the dwelling unit is $149915 -in.representative_income 149922 Representative total house income in the dwelling unit is $149922 -in.representative_income 149932 Representative total house income in the dwelling unit is $149932 -in.representative_income 149933 Representative total house income in the dwelling unit is $149933 -in.representative_income 149956 Representative total house income in the dwelling unit is $149956 -in.representative_income 149960 Representative total house income in the dwelling unit is $149960 -in.representative_income 149965 Representative total house income in the dwelling unit is $149965 -in.representative_income 149969 Representative total house income in the dwelling unit is $149969 -in.representative_income 149973 Representative total house income in the dwelling unit is $149973 -in.representative_income 149984 Representative total house income in the dwelling unit is $149984 -in.representative_income 149986 Representative total house income in the dwelling unit is $149986 -in.representative_income 149993 Representative total house income in the dwelling unit is $149993 -in.representative_income 150007 Representative total house income in the dwelling unit is $150007 -in.representative_income 150018 Representative total house income in the dwelling unit is $150018 -in.representative_income 150020 Representative total house income in the dwelling unit is $150020 -in.representative_income 150047 Representative total house income in the dwelling unit is $150047 -in.representative_income 150057 Representative total house income in the dwelling unit is $150057 -in.representative_income 150059 Representative total house income in the dwelling unit is $150059 -in.representative_income 150068 Representative total house income in the dwelling unit is $150068 -in.representative_income 150071 Representative total house income in the dwelling unit is $150071 -in.representative_income 150076 Representative total house income in the dwelling unit is $150076 -in.representative_income 150077 Representative total house income in the dwelling unit is $150077 -in.representative_income 150092 Representative total house income in the dwelling unit is $150092 -in.representative_income 150108 Representative total house income in the dwelling unit is $150108 -in.representative_income 150118 Representative total house income in the dwelling unit is $150118 -in.representative_income 150122 Representative total house income in the dwelling unit is $150122 -in.representative_income 150132 Representative total house income in the dwelling unit is $150132 -in.representative_income 150176 Representative total house income in the dwelling unit is $150176 -in.representative_income 150179 Representative total house income in the dwelling unit is $150179 -in.representative_income 150186 Representative total house income in the dwelling unit is $150186 -in.representative_income 150190 Representative total house income in the dwelling unit is $150190 -in.representative_income 150191 Representative total house income in the dwelling unit is $150191 -in.representative_income 150197 Representative total house income in the dwelling unit is $150197 -in.representative_income 150209 Representative total house income in the dwelling unit is $150209 -in.representative_income 150219 Representative total house income in the dwelling unit is $150219 -in.representative_income 150229 Representative total house income in the dwelling unit is $150229 -in.representative_income 150231 Representative total house income in the dwelling unit is $150231 -in.representative_income 150251 Representative total house income in the dwelling unit is $150251 -in.representative_income 150261 Representative total house income in the dwelling unit is $150261 -in.representative_income 150269 Representative total house income in the dwelling unit is $150269 -in.representative_income 150281 Representative total house income in the dwelling unit is $150281 -in.representative_income 150283 Representative total house income in the dwelling unit is $150283 -in.representative_income 150284 Representative total house income in the dwelling unit is $150284 -in.representative_income 150287 Representative total house income in the dwelling unit is $150287 -in.representative_income 150292 Representative total house income in the dwelling unit is $150292 -in.representative_income 150294 Representative total house income in the dwelling unit is $150294 -in.representative_income 150302 Representative total house income in the dwelling unit is $150302 -in.representative_income 150304 Representative total house income in the dwelling unit is $150304 -in.representative_income 150310 Representative total house income in the dwelling unit is $150310 -in.representative_income 150315 Representative total house income in the dwelling unit is $150315 -in.representative_income 150320 Representative total house income in the dwelling unit is $150320 -in.representative_income 150326 Representative total house income in the dwelling unit is $150326 -in.representative_income 150336 Representative total house income in the dwelling unit is $150336 -in.representative_income 150345 Representative total house income in the dwelling unit is $150345 -in.representative_income 150358 Representative total house income in the dwelling unit is $150358 -in.representative_income 150375 Representative total house income in the dwelling unit is $150375 -in.representative_income 150378 Representative total house income in the dwelling unit is $150378 -in.representative_income 150386 Representative total house income in the dwelling unit is $150386 -in.representative_income 150387 Representative total house income in the dwelling unit is $150387 -in.representative_income 150391 Representative total house income in the dwelling unit is $150391 -in.representative_income 150402 Representative total house income in the dwelling unit is $150402 -in.representative_income 150406 Representative total house income in the dwelling unit is $150406 -in.representative_income 150411 Representative total house income in the dwelling unit is $150411 -in.representative_income 150412 Representative total house income in the dwelling unit is $150412 -in.representative_income 150413 Representative total house income in the dwelling unit is $150413 -in.representative_income 150423 Representative total house income in the dwelling unit is $150423 -in.representative_income 150434 Representative total house income in the dwelling unit is $150434 -in.representative_income 150436 Representative total house income in the dwelling unit is $150436 -in.representative_income 150458 Representative total house income in the dwelling unit is $150458 -in.representative_income 150466 Representative total house income in the dwelling unit is $150466 -in.representative_income 150471 Representative total house income in the dwelling unit is $150471 -in.representative_income 150488 Representative total house income in the dwelling unit is $150488 -in.representative_income 150489 Representative total house income in the dwelling unit is $150489 -in.representative_income 150492 Representative total house income in the dwelling unit is $150492 -in.representative_income 150497 Representative total house income in the dwelling unit is $150497 -in.representative_income 150499 Representative total house income in the dwelling unit is $150499 -in.representative_income 150508 Representative total house income in the dwelling unit is $150508 -in.representative_income 150509 Representative total house income in the dwelling unit is $150509 -in.representative_income 150510 Representative total house income in the dwelling unit is $150510 -in.representative_income 150512 Representative total house income in the dwelling unit is $150512 -in.representative_income 150531 Representative total house income in the dwelling unit is $150531 -in.representative_income 150541 Representative total house income in the dwelling unit is $150541 -in.representative_income 150551 Representative total house income in the dwelling unit is $150551 -in.representative_income 150592 Representative total house income in the dwelling unit is $150592 -in.representative_income 150597 Representative total house income in the dwelling unit is $150597 -in.representative_income 150602 Representative total house income in the dwelling unit is $150602 -in.representative_income 150605 Representative total house income in the dwelling unit is $150605 -in.representative_income 150609 Representative total house income in the dwelling unit is $150609 -in.representative_income 150613 Representative total house income in the dwelling unit is $150613 -in.representative_income 150617 Representative total house income in the dwelling unit is $150617 -in.representative_income 150619 Representative total house income in the dwelling unit is $150619 -in.representative_income 150623 Representative total house income in the dwelling unit is $150623 -in.representative_income 150643 Representative total house income in the dwelling unit is $150643 -in.representative_income 150650 Representative total house income in the dwelling unit is $150650 -in.representative_income 150652 Representative total house income in the dwelling unit is $150652 -in.representative_income 150659 Representative total house income in the dwelling unit is $150659 -in.representative_income 150660 Representative total house income in the dwelling unit is $150660 -in.representative_income 150663 Representative total house income in the dwelling unit is $150663 -in.representative_income 150695 Representative total house income in the dwelling unit is $150695 -in.representative_income 150704 Representative total house income in the dwelling unit is $150704 -in.representative_income 150712 Representative total house income in the dwelling unit is $150712 -in.representative_income 150714 Representative total house income in the dwelling unit is $150714 -in.representative_income 150725 Representative total house income in the dwelling unit is $150725 -in.representative_income 150726 Representative total house income in the dwelling unit is $150726 -in.representative_income 150731 Representative total house income in the dwelling unit is $150731 -in.representative_income 150734 Representative total house income in the dwelling unit is $150734 -in.representative_income 150747 Representative total house income in the dwelling unit is $150747 -in.representative_income 150752 Representative total house income in the dwelling unit is $150752 -in.representative_income 150764 Representative total house income in the dwelling unit is $150764 -in.representative_income 150766 Representative total house income in the dwelling unit is $150766 -in.representative_income 150774 Representative total house income in the dwelling unit is $150774 -in.representative_income 150798 Representative total house income in the dwelling unit is $150798 -in.representative_income 150809 Representative total house income in the dwelling unit is $150809 -in.representative_income 150812 Representative total house income in the dwelling unit is $150812 -in.representative_income 150815 Representative total house income in the dwelling unit is $150815 -in.representative_income 150820 Representative total house income in the dwelling unit is $150820 -in.representative_income 150826 Representative total house income in the dwelling unit is $150826 -in.representative_income 150830 Representative total house income in the dwelling unit is $150830 -in.representative_income 150833 Representative total house income in the dwelling unit is $150833 -in.representative_income 150844 Representative total house income in the dwelling unit is $150844 -in.representative_income 150851 Representative total house income in the dwelling unit is $150851 -in.representative_income 150852 Representative total house income in the dwelling unit is $150852 -in.representative_income 150861 Representative total house income in the dwelling unit is $150861 -in.representative_income 150879 Representative total house income in the dwelling unit is $150879 -in.representative_income 150889 Representative total house income in the dwelling unit is $150889 -in.representative_income 150892 Representative total house income in the dwelling unit is $150892 -in.representative_income 150895 Representative total house income in the dwelling unit is $150895 -in.representative_income 150902 Representative total house income in the dwelling unit is $150902 -in.representative_income 150914 Representative total house income in the dwelling unit is $150914 -in.representative_income 150916 Representative total house income in the dwelling unit is $150916 -in.representative_income 150920 Representative total house income in the dwelling unit is $150920 -in.representative_income 150927 Representative total house income in the dwelling unit is $150927 -in.representative_income 150942 Representative total house income in the dwelling unit is $150942 -in.representative_income 150953 Representative total house income in the dwelling unit is $150953 -in.representative_income 150956 Representative total house income in the dwelling unit is $150956 -in.representative_income 150959 Representative total house income in the dwelling unit is $150959 -in.representative_income 151004 Representative total house income in the dwelling unit is $151004 -in.representative_income 151017 Representative total house income in the dwelling unit is $151017 -in.representative_income 151019 Representative total house income in the dwelling unit is $151019 -in.representative_income 151034 Representative total house income in the dwelling unit is $151034 -in.representative_income 151036 Representative total house income in the dwelling unit is $151036 -in.representative_income 151050 Representative total house income in the dwelling unit is $151050 -in.representative_income 151051 Representative total house income in the dwelling unit is $151051 -in.representative_income 151073 Representative total house income in the dwelling unit is $151073 -in.representative_income 151079 Representative total house income in the dwelling unit is $151079 -in.representative_income 151082 Representative total house income in the dwelling unit is $151082 -in.representative_income 151104 Representative total house income in the dwelling unit is $151104 -in.representative_income 151107 Representative total house income in the dwelling unit is $151107 -in.representative_income 151118 Representative total house income in the dwelling unit is $151118 -in.representative_income 151125 Representative total house income in the dwelling unit is $151125 -in.representative_income 151141 Representative total house income in the dwelling unit is $151141 -in.representative_income 151158 Representative total house income in the dwelling unit is $151158 -in.representative_income 151165 Representative total house income in the dwelling unit is $151165 -in.representative_income 151196 Representative total house income in the dwelling unit is $151196 -in.representative_income 151211 Representative total house income in the dwelling unit is $151211 -in.representative_income 151217 Representative total house income in the dwelling unit is $151217 -in.representative_income 151219 Representative total house income in the dwelling unit is $151219 -in.representative_income 151230 Representative total house income in the dwelling unit is $151230 -in.representative_income 151249 Representative total house income in the dwelling unit is $151249 -in.representative_income 151252 Representative total house income in the dwelling unit is $151252 -in.representative_income 151266 Representative total house income in the dwelling unit is $151266 -in.representative_income 151267 Representative total house income in the dwelling unit is $151267 -in.representative_income 151269 Representative total house income in the dwelling unit is $151269 -in.representative_income 151270 Representative total house income in the dwelling unit is $151270 -in.representative_income 151277 Representative total house income in the dwelling unit is $151277 -in.representative_income 151287 Representative total house income in the dwelling unit is $151287 -in.representative_income 151294 Representative total house income in the dwelling unit is $151294 -in.representative_income 151298 Representative total house income in the dwelling unit is $151298 -in.representative_income 151311 Representative total house income in the dwelling unit is $151311 -in.representative_income 151314 Representative total house income in the dwelling unit is $151314 -in.representative_income 151320 Representative total house income in the dwelling unit is $151320 -in.representative_income 151324 Representative total house income in the dwelling unit is $151324 -in.representative_income 151331 Representative total house income in the dwelling unit is $151331 -in.representative_income 151336 Representative total house income in the dwelling unit is $151336 -in.representative_income 151346 Representative total house income in the dwelling unit is $151346 -in.representative_income 151352 Representative total house income in the dwelling unit is $151352 -in.representative_income 151356 Representative total house income in the dwelling unit is $151356 -in.representative_income 151361 Representative total house income in the dwelling unit is $151361 -in.representative_income 151363 Representative total house income in the dwelling unit is $151363 -in.representative_income 151365 Representative total house income in the dwelling unit is $151365 -in.representative_income 151367 Representative total house income in the dwelling unit is $151367 -in.representative_income 151370 Representative total house income in the dwelling unit is $151370 -in.representative_income 151374 Representative total house income in the dwelling unit is $151374 -in.representative_income 151394 Representative total house income in the dwelling unit is $151394 -in.representative_income 151410 Representative total house income in the dwelling unit is $151410 -in.representative_income 151417 Representative total house income in the dwelling unit is $151417 -in.representative_income 151421 Representative total house income in the dwelling unit is $151421 -in.representative_income 151428 Representative total house income in the dwelling unit is $151428 -in.representative_income 151442 Representative total house income in the dwelling unit is $151442 -in.representative_income 151445 Representative total house income in the dwelling unit is $151445 -in.representative_income 151460 Representative total house income in the dwelling unit is $151460 -in.representative_income 151461 Representative total house income in the dwelling unit is $151461 -in.representative_income 151464 Representative total house income in the dwelling unit is $151464 -in.representative_income 151473 Representative total house income in the dwelling unit is $151473 -in.representative_income 151475 Representative total house income in the dwelling unit is $151475 -in.representative_income 151482 Representative total house income in the dwelling unit is $151482 -in.representative_income 151485 Representative total house income in the dwelling unit is $151485 -in.representative_income 151494 Representative total house income in the dwelling unit is $151494 -in.representative_income 151514 Representative total house income in the dwelling unit is $151514 -in.representative_income 151521 Representative total house income in the dwelling unit is $151521 -in.representative_income 151522 Representative total house income in the dwelling unit is $151522 -in.representative_income 151526 Representative total house income in the dwelling unit is $151526 -in.representative_income 151531 Representative total house income in the dwelling unit is $151531 -in.representative_income 151532 Representative total house income in the dwelling unit is $151532 -in.representative_income 151536 Representative total house income in the dwelling unit is $151536 -in.representative_income 151542 Representative total house income in the dwelling unit is $151542 -in.representative_income 151547 Representative total house income in the dwelling unit is $151547 -in.representative_income 151562 Representative total house income in the dwelling unit is $151562 -in.representative_income 151568 Representative total house income in the dwelling unit is $151568 -in.representative_income 151571 Representative total house income in the dwelling unit is $151571 -in.representative_income 151572 Representative total house income in the dwelling unit is $151572 -in.representative_income 151587 Representative total house income in the dwelling unit is $151587 -in.representative_income 151589 Representative total house income in the dwelling unit is $151589 -in.representative_income 151590 Representative total house income in the dwelling unit is $151590 -in.representative_income 151592 Representative total house income in the dwelling unit is $151592 -in.representative_income 151600 Representative total house income in the dwelling unit is $151600 -in.representative_income 151611 Representative total house income in the dwelling unit is $151611 -in.representative_income 151623 Representative total house income in the dwelling unit is $151623 -in.representative_income 151633 Representative total house income in the dwelling unit is $151633 -in.representative_income 151637 Representative total house income in the dwelling unit is $151637 -in.representative_income 151652 Representative total house income in the dwelling unit is $151652 -in.representative_income 151654 Representative total house income in the dwelling unit is $151654 -in.representative_income 151657 Representative total house income in the dwelling unit is $151657 -in.representative_income 151663 Representative total house income in the dwelling unit is $151663 -in.representative_income 151673 Representative total house income in the dwelling unit is $151673 -in.representative_income 151678 Representative total house income in the dwelling unit is $151678 -in.representative_income 151683 Representative total house income in the dwelling unit is $151683 -in.representative_income 151693 Representative total house income in the dwelling unit is $151693 -in.representative_income 151698 Representative total house income in the dwelling unit is $151698 -in.representative_income 151724 Representative total house income in the dwelling unit is $151724 -in.representative_income 151726 Representative total house income in the dwelling unit is $151726 -in.representative_income 151733 Representative total house income in the dwelling unit is $151733 -in.representative_income 151734 Representative total house income in the dwelling unit is $151734 -in.representative_income 151747 Representative total house income in the dwelling unit is $151747 -in.representative_income 151758 Representative total house income in the dwelling unit is $151758 -in.representative_income 151768 Representative total house income in the dwelling unit is $151768 -in.representative_income 151779 Representative total house income in the dwelling unit is $151779 -in.representative_income 151786 Representative total house income in the dwelling unit is $151786 -in.representative_income 151806 Representative total house income in the dwelling unit is $151806 -in.representative_income 151808 Representative total house income in the dwelling unit is $151808 -in.representative_income 151825 Representative total house income in the dwelling unit is $151825 -in.representative_income 151830 Representative total house income in the dwelling unit is $151830 -in.representative_income 151839 Representative total house income in the dwelling unit is $151839 -in.representative_income 151860 Representative total house income in the dwelling unit is $151860 -in.representative_income 151863 Representative total house income in the dwelling unit is $151863 -in.representative_income 151875 Representative total house income in the dwelling unit is $151875 -in.representative_income 151881 Representative total house income in the dwelling unit is $151881 -in.representative_income 151885 Representative total house income in the dwelling unit is $151885 -in.representative_income 151887 Representative total house income in the dwelling unit is $151887 -in.representative_income 151893 Representative total house income in the dwelling unit is $151893 -in.representative_income 151895 Representative total house income in the dwelling unit is $151895 -in.representative_income 151904 Representative total house income in the dwelling unit is $151904 -in.representative_income 151914 Representative total house income in the dwelling unit is $151914 -in.representative_income 151916 Representative total house income in the dwelling unit is $151916 -in.representative_income 151924 Representative total house income in the dwelling unit is $151924 -in.representative_income 151926 Representative total house income in the dwelling unit is $151926 -in.representative_income 151933 Representative total house income in the dwelling unit is $151933 -in.representative_income 151952 Representative total house income in the dwelling unit is $151952 -in.representative_income 151969 Representative total house income in the dwelling unit is $151969 -in.representative_income 151980 Representative total house income in the dwelling unit is $151980 -in.representative_income 151985 Representative total house income in the dwelling unit is $151985 -in.representative_income 152001 Representative total house income in the dwelling unit is $152001 -in.representative_income 152007 Representative total house income in the dwelling unit is $152007 -in.representative_income 152017 Representative total house income in the dwelling unit is $152017 -in.representative_income 152022 Representative total house income in the dwelling unit is $152022 -in.representative_income 152027 Representative total house income in the dwelling unit is $152027 -in.representative_income 152036 Representative total house income in the dwelling unit is $152036 -in.representative_income 152044 Representative total house income in the dwelling unit is $152044 -in.representative_income 152054 Representative total house income in the dwelling unit is $152054 -in.representative_income 152071 Representative total house income in the dwelling unit is $152071 -in.representative_income 152074 Representative total house income in the dwelling unit is $152074 -in.representative_income 152077 Representative total house income in the dwelling unit is $152077 -in.representative_income 152083 Representative total house income in the dwelling unit is $152083 -in.representative_income 152085 Representative total house income in the dwelling unit is $152085 -in.representative_income 152108 Representative total house income in the dwelling unit is $152108 -in.representative_income 152128 Representative total house income in the dwelling unit is $152128 -in.representative_income 152130 Representative total house income in the dwelling unit is $152130 -in.representative_income 152139 Representative total house income in the dwelling unit is $152139 -in.representative_income 152160 Representative total house income in the dwelling unit is $152160 -in.representative_income 152167 Representative total house income in the dwelling unit is $152167 -in.representative_income 152178 Representative total house income in the dwelling unit is $152178 -in.representative_income 152180 Representative total house income in the dwelling unit is $152180 -in.representative_income 152190 Representative total house income in the dwelling unit is $152190 -in.representative_income 152206 Representative total house income in the dwelling unit is $152206 -in.representative_income 152215 Representative total house income in the dwelling unit is $152215 -in.representative_income 152229 Representative total house income in the dwelling unit is $152229 -in.representative_income 152233 Representative total house income in the dwelling unit is $152233 -in.representative_income 152238 Representative total house income in the dwelling unit is $152238 -in.representative_income 152242 Representative total house income in the dwelling unit is $152242 -in.representative_income 152249 Representative total house income in the dwelling unit is $152249 -in.representative_income 152259 Representative total house income in the dwelling unit is $152259 -in.representative_income 152269 Representative total house income in the dwelling unit is $152269 -in.representative_income 152270 Representative total house income in the dwelling unit is $152270 -in.representative_income 152285 Representative total house income in the dwelling unit is $152285 -in.representative_income 152300 Representative total house income in the dwelling unit is $152300 -in.representative_income 152316 Representative total house income in the dwelling unit is $152316 -in.representative_income 152317 Representative total house income in the dwelling unit is $152317 -in.representative_income 152322 Representative total house income in the dwelling unit is $152322 -in.representative_income 152330 Representative total house income in the dwelling unit is $152330 -in.representative_income 152345 Representative total house income in the dwelling unit is $152345 -in.representative_income 152346 Representative total house income in the dwelling unit is $152346 -in.representative_income 152354 Representative total house income in the dwelling unit is $152354 -in.representative_income 152357 Representative total house income in the dwelling unit is $152357 -in.representative_income 152378 Representative total house income in the dwelling unit is $152378 -in.representative_income 152383 Representative total house income in the dwelling unit is $152383 -in.representative_income 152387 Representative total house income in the dwelling unit is $152387 -in.representative_income 152390 Representative total house income in the dwelling unit is $152390 -in.representative_income 152410 Representative total house income in the dwelling unit is $152410 -in.representative_income 152430 Representative total house income in the dwelling unit is $152430 -in.representative_income 152431 Representative total house income in the dwelling unit is $152431 -in.representative_income 152440 Representative total house income in the dwelling unit is $152440 -in.representative_income 152449 Representative total house income in the dwelling unit is $152449 -in.representative_income 152454 Representative total house income in the dwelling unit is $152454 -in.representative_income 152463 Representative total house income in the dwelling unit is $152463 -in.representative_income 152470 Representative total house income in the dwelling unit is $152470 -in.representative_income 152472 Representative total house income in the dwelling unit is $152472 -in.representative_income 152481 Representative total house income in the dwelling unit is $152481 -in.representative_income 152494 Representative total house income in the dwelling unit is $152494 -in.representative_income 152496 Representative total house income in the dwelling unit is $152496 -in.representative_income 152530 Representative total house income in the dwelling unit is $152530 -in.representative_income 152532 Representative total house income in the dwelling unit is $152532 -in.representative_income 152536 Representative total house income in the dwelling unit is $152536 -in.representative_income 152537 Representative total house income in the dwelling unit is $152537 -in.representative_income 152539 Representative total house income in the dwelling unit is $152539 -in.representative_income 152540 Representative total house income in the dwelling unit is $152540 -in.representative_income 152559 Representative total house income in the dwelling unit is $152559 -in.representative_income 152562 Representative total house income in the dwelling unit is $152562 -in.representative_income 152563 Representative total house income in the dwelling unit is $152563 -in.representative_income 152569 Representative total house income in the dwelling unit is $152569 -in.representative_income 152570 Representative total house income in the dwelling unit is $152570 -in.representative_income 152580 Representative total house income in the dwelling unit is $152580 -in.representative_income 152592 Representative total house income in the dwelling unit is $152592 -in.representative_income 152602 Representative total house income in the dwelling unit is $152602 -in.representative_income 152603 Representative total house income in the dwelling unit is $152603 -in.representative_income 152633 Representative total house income in the dwelling unit is $152633 -in.representative_income 152645 Representative total house income in the dwelling unit is $152645 -in.representative_income 152646 Representative total house income in the dwelling unit is $152646 -in.representative_income 152654 Representative total house income in the dwelling unit is $152654 -in.representative_income 152656 Representative total house income in the dwelling unit is $152656 -in.representative_income 152663 Representative total house income in the dwelling unit is $152663 -in.representative_income 152666 Representative total house income in the dwelling unit is $152666 -in.representative_income 152671 Representative total house income in the dwelling unit is $152671 -in.representative_income 152692 Representative total house income in the dwelling unit is $152692 -in.representative_income 152706 Representative total house income in the dwelling unit is $152706 -in.representative_income 152707 Representative total house income in the dwelling unit is $152707 -in.representative_income 152717 Representative total house income in the dwelling unit is $152717 -in.representative_income 152734 Representative total house income in the dwelling unit is $152734 -in.representative_income 152751 Representative total house income in the dwelling unit is $152751 -in.representative_income 152758 Representative total house income in the dwelling unit is $152758 -in.representative_income 152759 Representative total house income in the dwelling unit is $152759 -in.representative_income 152774 Representative total house income in the dwelling unit is $152774 -in.representative_income 152779 Representative total house income in the dwelling unit is $152779 -in.representative_income 152812 Representative total house income in the dwelling unit is $152812 -in.representative_income 152835 Representative total house income in the dwelling unit is $152835 -in.representative_income 152838 Representative total house income in the dwelling unit is $152838 -in.representative_income 152841 Representative total house income in the dwelling unit is $152841 -in.representative_income 152843 Representative total house income in the dwelling unit is $152843 -in.representative_income 152859 Representative total house income in the dwelling unit is $152859 -in.representative_income 152861 Representative total house income in the dwelling unit is $152861 -in.representative_income 152886 Representative total house income in the dwelling unit is $152886 -in.representative_income 152918 Representative total house income in the dwelling unit is $152918 -in.representative_income 152919 Representative total house income in the dwelling unit is $152919 -in.representative_income 152928 Representative total house income in the dwelling unit is $152928 -in.representative_income 152936 Representative total house income in the dwelling unit is $152936 -in.representative_income 152939 Representative total house income in the dwelling unit is $152939 -in.representative_income 152964 Representative total house income in the dwelling unit is $152964 -in.representative_income 152967 Representative total house income in the dwelling unit is $152967 -in.representative_income 152977 Representative total house income in the dwelling unit is $152977 -in.representative_income 152985 Representative total house income in the dwelling unit is $152985 -in.representative_income 152986 Representative total house income in the dwelling unit is $152986 -in.representative_income 152994 Representative total house income in the dwelling unit is $152994 -in.representative_income 153006 Representative total house income in the dwelling unit is $153006 -in.representative_income 153013 Representative total house income in the dwelling unit is $153013 -in.representative_income 153023 Representative total house income in the dwelling unit is $153023 -in.representative_income 153037 Representative total house income in the dwelling unit is $153037 -in.representative_income 153068 Representative total house income in the dwelling unit is $153068 -in.representative_income 153074 Representative total house income in the dwelling unit is $153074 -in.representative_income 153076 Representative total house income in the dwelling unit is $153076 -in.representative_income 153087 Representative total house income in the dwelling unit is $153087 -in.representative_income 153088 Representative total house income in the dwelling unit is $153088 -in.representative_income 153102 Representative total house income in the dwelling unit is $153102 -in.representative_income 153108 Representative total house income in the dwelling unit is $153108 -in.representative_income 153120 Representative total house income in the dwelling unit is $153120 -in.representative_income 153128 Representative total house income in the dwelling unit is $153128 -in.representative_income 153145 Representative total house income in the dwelling unit is $153145 -in.representative_income 153168 Representative total house income in the dwelling unit is $153168 -in.representative_income 153171 Representative total house income in the dwelling unit is $153171 -in.representative_income 153172 Representative total house income in the dwelling unit is $153172 -in.representative_income 153178 Representative total house income in the dwelling unit is $153178 -in.representative_income 153182 Representative total house income in the dwelling unit is $153182 -in.representative_income 153191 Representative total house income in the dwelling unit is $153191 -in.representative_income 153192 Representative total house income in the dwelling unit is $153192 -in.representative_income 153210 Representative total house income in the dwelling unit is $153210 -in.representative_income 153235 Representative total house income in the dwelling unit is $153235 -in.representative_income 153239 Representative total house income in the dwelling unit is $153239 -in.representative_income 153273 Representative total house income in the dwelling unit is $153273 -in.representative_income 153287 Representative total house income in the dwelling unit is $153287 -in.representative_income 153288 Representative total house income in the dwelling unit is $153288 -in.representative_income 153290 Representative total house income in the dwelling unit is $153290 -in.representative_income 153319 Representative total house income in the dwelling unit is $153319 -in.representative_income 153325 Representative total house income in the dwelling unit is $153325 -in.representative_income 153340 Representative total house income in the dwelling unit is $153340 -in.representative_income 153342 Representative total house income in the dwelling unit is $153342 -in.representative_income 153357 Representative total house income in the dwelling unit is $153357 -in.representative_income 153364 Representative total house income in the dwelling unit is $153364 -in.representative_income 153371 Representative total house income in the dwelling unit is $153371 -in.representative_income 153377 Representative total house income in the dwelling unit is $153377 -in.representative_income 153396 Representative total house income in the dwelling unit is $153396 -in.representative_income 153406 Representative total house income in the dwelling unit is $153406 -in.representative_income 153427 Representative total house income in the dwelling unit is $153427 -in.representative_income 153436 Representative total house income in the dwelling unit is $153436 -in.representative_income 153441 Representative total house income in the dwelling unit is $153441 -in.representative_income 153445 Representative total house income in the dwelling unit is $153445 -in.representative_income 153449 Representative total house income in the dwelling unit is $153449 -in.representative_income 153450 Representative total house income in the dwelling unit is $153450 -in.representative_income 153471 Representative total house income in the dwelling unit is $153471 -in.representative_income 153480 Representative total house income in the dwelling unit is $153480 -in.representative_income 153483 Representative total house income in the dwelling unit is $153483 -in.representative_income 153497 Representative total house income in the dwelling unit is $153497 -in.representative_income 153503 Representative total house income in the dwelling unit is $153503 -in.representative_income 153504 Representative total house income in the dwelling unit is $153504 -in.representative_income 153507 Representative total house income in the dwelling unit is $153507 -in.representative_income 153509 Representative total house income in the dwelling unit is $153509 -in.representative_income 153535 Representative total house income in the dwelling unit is $153535 -in.representative_income 153540 Representative total house income in the dwelling unit is $153540 -in.representative_income 153542 Representative total house income in the dwelling unit is $153542 -in.representative_income 153551 Representative total house income in the dwelling unit is $153551 -in.representative_income 153564 Representative total house income in the dwelling unit is $153564 -in.representative_income 153582 Representative total house income in the dwelling unit is $153582 -in.representative_income 153583 Representative total house income in the dwelling unit is $153583 -in.representative_income 153593 Representative total house income in the dwelling unit is $153593 -in.representative_income 153604 Representative total house income in the dwelling unit is $153604 -in.representative_income 153611 Representative total house income in the dwelling unit is $153611 -in.representative_income 153633 Representative total house income in the dwelling unit is $153633 -in.representative_income 153643 Representative total house income in the dwelling unit is $153643 -in.representative_income 153656 Representative total house income in the dwelling unit is $153656 -in.representative_income 153686 Representative total house income in the dwelling unit is $153686 -in.representative_income 153687 Representative total house income in the dwelling unit is $153687 -in.representative_income 153691 Representative total house income in the dwelling unit is $153691 -in.representative_income 153697 Representative total house income in the dwelling unit is $153697 -in.representative_income 153709 Representative total house income in the dwelling unit is $153709 -in.representative_income 153718 Representative total house income in the dwelling unit is $153718 -in.representative_income 153719 Representative total house income in the dwelling unit is $153719 -in.representative_income 153744 Representative total house income in the dwelling unit is $153744 -in.representative_income 153751 Representative total house income in the dwelling unit is $153751 -in.representative_income 153761 Representative total house income in the dwelling unit is $153761 -in.representative_income 153789 Representative total house income in the dwelling unit is $153789 -in.representative_income 153805 Representative total house income in the dwelling unit is $153805 -in.representative_income 153815 Representative total house income in the dwelling unit is $153815 -in.representative_income 153824 Representative total house income in the dwelling unit is $153824 -in.representative_income 153845 Representative total house income in the dwelling unit is $153845 -in.representative_income 153856 Representative total house income in the dwelling unit is $153856 -in.representative_income 153859 Representative total house income in the dwelling unit is $153859 -in.representative_income 153865 Representative total house income in the dwelling unit is $153865 -in.representative_income 153867 Representative total house income in the dwelling unit is $153867 -in.representative_income 153879 Representative total house income in the dwelling unit is $153879 -in.representative_income 153891 Representative total house income in the dwelling unit is $153891 -in.representative_income 153892 Representative total house income in the dwelling unit is $153892 -in.representative_income 153896 Representative total house income in the dwelling unit is $153896 -in.representative_income 153902 Representative total house income in the dwelling unit is $153902 -in.representative_income 153932 Representative total house income in the dwelling unit is $153932 -in.representative_income 153944 Representative total house income in the dwelling unit is $153944 -in.representative_income 153946 Representative total house income in the dwelling unit is $153946 -in.representative_income 153962 Representative total house income in the dwelling unit is $153962 -in.representative_income 153966 Representative total house income in the dwelling unit is $153966 -in.representative_income 153967 Representative total house income in the dwelling unit is $153967 -in.representative_income 153973 Representative total house income in the dwelling unit is $153973 -in.representative_income 153983 Representative total house income in the dwelling unit is $153983 -in.representative_income 153996 Representative total house income in the dwelling unit is $153996 -in.representative_income 154011 Representative total house income in the dwelling unit is $154011 -in.representative_income 154040 Representative total house income in the dwelling unit is $154040 -in.representative_income 154047 Representative total house income in the dwelling unit is $154047 -in.representative_income 154060 Representative total house income in the dwelling unit is $154060 -in.representative_income 154066 Representative total house income in the dwelling unit is $154066 -in.representative_income 154067 Representative total house income in the dwelling unit is $154067 -in.representative_income 154068 Representative total house income in the dwelling unit is $154068 -in.representative_income 154075 Representative total house income in the dwelling unit is $154075 -in.representative_income 154078 Representative total house income in the dwelling unit is $154078 -in.representative_income 154082 Representative total house income in the dwelling unit is $154082 -in.representative_income 154097 Representative total house income in the dwelling unit is $154097 -in.representative_income 154099 Representative total house income in the dwelling unit is $154099 -in.representative_income 154128 Representative total house income in the dwelling unit is $154128 -in.representative_income 154141 Representative total house income in the dwelling unit is $154141 -in.representative_income 154147 Representative total house income in the dwelling unit is $154147 -in.representative_income 154148 Representative total house income in the dwelling unit is $154148 -in.representative_income 154178 Representative total house income in the dwelling unit is $154178 -in.representative_income 154181 Representative total house income in the dwelling unit is $154181 -in.representative_income 154183 Representative total house income in the dwelling unit is $154183 -in.representative_income 154231 Representative total house income in the dwelling unit is $154231 -in.representative_income 154236 Representative total house income in the dwelling unit is $154236 -in.representative_income 154249 Representative total house income in the dwelling unit is $154249 -in.representative_income 154255 Representative total house income in the dwelling unit is $154255 -in.representative_income 154264 Representative total house income in the dwelling unit is $154264 -in.representative_income 154265 Representative total house income in the dwelling unit is $154265 -in.representative_income 154289 Representative total house income in the dwelling unit is $154289 -in.representative_income 154291 Representative total house income in the dwelling unit is $154291 -in.representative_income 154305 Representative total house income in the dwelling unit is $154305 -in.representative_income 154313 Representative total house income in the dwelling unit is $154313 -in.representative_income 154342 Representative total house income in the dwelling unit is $154342 -in.representative_income 154350 Representative total house income in the dwelling unit is $154350 -in.representative_income 154361 Representative total house income in the dwelling unit is $154361 -in.representative_income 154379 Representative total house income in the dwelling unit is $154379 -in.representative_income 154394 Representative total house income in the dwelling unit is $154394 -in.representative_income 154404 Representative total house income in the dwelling unit is $154404 -in.representative_income 154408 Representative total house income in the dwelling unit is $154408 -in.representative_income 154437 Representative total house income in the dwelling unit is $154437 -in.representative_income 154451 Representative total house income in the dwelling unit is $154451 -in.representative_income 154453 Representative total house income in the dwelling unit is $154453 -in.representative_income 154469 Representative total house income in the dwelling unit is $154469 -in.representative_income 154475 Representative total house income in the dwelling unit is $154475 -in.representative_income 154486 Representative total house income in the dwelling unit is $154486 -in.representative_income 154500 Representative total house income in the dwelling unit is $154500 -in.representative_income 154502 Representative total house income in the dwelling unit is $154502 -in.representative_income 154507 Representative total house income in the dwelling unit is $154507 -in.representative_income 154508 Representative total house income in the dwelling unit is $154508 -in.representative_income 154511 Representative total house income in the dwelling unit is $154511 -in.representative_income 154522 Representative total house income in the dwelling unit is $154522 -in.representative_income 154552 Representative total house income in the dwelling unit is $154552 -in.representative_income 154561 Representative total house income in the dwelling unit is $154561 -in.representative_income 154577 Representative total house income in the dwelling unit is $154577 -in.representative_income 154582 Representative total house income in the dwelling unit is $154582 -in.representative_income 154605 Representative total house income in the dwelling unit is $154605 -in.representative_income 154615 Representative total house income in the dwelling unit is $154615 -in.representative_income 154626 Representative total house income in the dwelling unit is $154626 -in.representative_income 154637 Representative total house income in the dwelling unit is $154637 -in.representative_income 154658 Representative total house income in the dwelling unit is $154658 -in.representative_income 154663 Representative total house income in the dwelling unit is $154663 -in.representative_income 154677 Representative total house income in the dwelling unit is $154677 -in.representative_income 154711 Representative total house income in the dwelling unit is $154711 -in.representative_income 154718 Representative total house income in the dwelling unit is $154718 -in.representative_income 154738 Representative total house income in the dwelling unit is $154738 -in.representative_income 154754 Representative total house income in the dwelling unit is $154754 -in.representative_income 154792 Representative total house income in the dwelling unit is $154792 -in.representative_income 154813 Representative total house income in the dwelling unit is $154813 -in.representative_income 154816 Representative total house income in the dwelling unit is $154816 -in.representative_income 154820 Representative total house income in the dwelling unit is $154820 -in.representative_income 154831 Representative total house income in the dwelling unit is $154831 -in.representative_income 154856 Representative total house income in the dwelling unit is $154856 -in.representative_income 154861 Representative total house income in the dwelling unit is $154861 -in.representative_income 154872 Representative total house income in the dwelling unit is $154872 -in.representative_income 154896 Representative total house income in the dwelling unit is $154896 -in.representative_income 154899 Representative total house income in the dwelling unit is $154899 -in.representative_income 154921 Representative total house income in the dwelling unit is $154921 -in.representative_income 154924 Representative total house income in the dwelling unit is $154924 -in.representative_income 154932 Representative total house income in the dwelling unit is $154932 -in.representative_income 154940 Representative total house income in the dwelling unit is $154940 -in.representative_income 154956 Representative total house income in the dwelling unit is $154956 -in.representative_income 155006 Representative total house income in the dwelling unit is $155006 -in.representative_income 155027 Representative total house income in the dwelling unit is $155027 -in.representative_income 155048 Representative total house income in the dwelling unit is $155048 -in.representative_income 155057 Representative total house income in the dwelling unit is $155057 -in.representative_income 155079 Representative total house income in the dwelling unit is $155079 -in.representative_income 155080 Representative total house income in the dwelling unit is $155080 -in.representative_income 155113 Representative total house income in the dwelling unit is $155113 -in.representative_income 155130 Representative total house income in the dwelling unit is $155130 -in.representative_income 155134 Representative total house income in the dwelling unit is $155134 -in.representative_income 155156 Representative total house income in the dwelling unit is $155156 -in.representative_income 155158 Representative total house income in the dwelling unit is $155158 -in.representative_income 155178 Representative total house income in the dwelling unit is $155178 -in.representative_income 155188 Representative total house income in the dwelling unit is $155188 -in.representative_income 155189 Representative total house income in the dwelling unit is $155189 -in.representative_income 155213 Representative total house income in the dwelling unit is $155213 -in.representative_income 155217 Representative total house income in the dwelling unit is $155217 -in.representative_income 155221 Representative total house income in the dwelling unit is $155221 -in.representative_income 155234 Representative total house income in the dwelling unit is $155234 -in.representative_income 155238 Representative total house income in the dwelling unit is $155238 -in.representative_income 155259 Representative total house income in the dwelling unit is $155259 -in.representative_income 155263 Representative total house income in the dwelling unit is $155263 -in.representative_income 155312 Representative total house income in the dwelling unit is $155312 -in.representative_income 155337 Representative total house income in the dwelling unit is $155337 -in.representative_income 155339 Representative total house income in the dwelling unit is $155339 -in.representative_income 155344 Representative total house income in the dwelling unit is $155344 -in.representative_income 155361 Representative total house income in the dwelling unit is $155361 -in.representative_income 155370 Representative total house income in the dwelling unit is $155370 -in.representative_income 155371 Representative total house income in the dwelling unit is $155371 -in.representative_income 155429 Representative total house income in the dwelling unit is $155429 -in.representative_income 155436 Representative total house income in the dwelling unit is $155436 -in.representative_income 155439 Representative total house income in the dwelling unit is $155439 -in.representative_income 155449 Representative total house income in the dwelling unit is $155449 -in.representative_income 155461 Representative total house income in the dwelling unit is $155461 -in.representative_income 155479 Representative total house income in the dwelling unit is $155479 -in.representative_income 155489 Representative total house income in the dwelling unit is $155489 -in.representative_income 155542 Representative total house income in the dwelling unit is $155542 -in.representative_income 155554 Representative total house income in the dwelling unit is $155554 -in.representative_income 155562 Representative total house income in the dwelling unit is $155562 -in.representative_income 155587 Representative total house income in the dwelling unit is $155587 -in.representative_income 155620 Representative total house income in the dwelling unit is $155620 -in.representative_income 155641 Representative total house income in the dwelling unit is $155641 -in.representative_income 155646 Representative total house income in the dwelling unit is $155646 -in.representative_income 155650 Representative total house income in the dwelling unit is $155650 -in.representative_income 155659 Representative total house income in the dwelling unit is $155659 -in.representative_income 155663 Representative total house income in the dwelling unit is $155663 -in.representative_income 155696 Representative total house income in the dwelling unit is $155696 -in.representative_income 155698 Representative total house income in the dwelling unit is $155698 -in.representative_income 155731 Representative total house income in the dwelling unit is $155731 -in.representative_income 155749 Representative total house income in the dwelling unit is $155749 -in.representative_income 155757 Representative total house income in the dwelling unit is $155757 -in.representative_income 155764 Representative total house income in the dwelling unit is $155764 -in.representative_income 155766 Representative total house income in the dwelling unit is $155766 -in.representative_income 155780 Representative total house income in the dwelling unit is $155780 -in.representative_income 155804 Representative total house income in the dwelling unit is $155804 -in.representative_income 155865 Representative total house income in the dwelling unit is $155865 -in.representative_income 155871 Representative total house income in the dwelling unit is $155871 -in.representative_income 155955 Representative total house income in the dwelling unit is $155955 -in.representative_income 155966 Representative total house income in the dwelling unit is $155966 -in.representative_income 155973 Representative total house income in the dwelling unit is $155973 -in.representative_income 155976 Representative total house income in the dwelling unit is $155976 -in.representative_income 156020 Representative total house income in the dwelling unit is $156020 -in.representative_income 156047 Representative total house income in the dwelling unit is $156047 -in.representative_income 156058 Representative total house income in the dwelling unit is $156058 -in.representative_income 156067 Representative total house income in the dwelling unit is $156067 -in.representative_income 156079 Representative total house income in the dwelling unit is $156079 -in.representative_income 156082 Representative total house income in the dwelling unit is $156082 -in.representative_income 156092 Representative total house income in the dwelling unit is $156092 -in.representative_income 156113 Representative total house income in the dwelling unit is $156113 -in.representative_income 156128 Representative total house income in the dwelling unit is $156128 -in.representative_income 156162 Representative total house income in the dwelling unit is $156162 -in.representative_income 156187 Representative total house income in the dwelling unit is $156187 -in.representative_income 156197 Representative total house income in the dwelling unit is $156197 -in.representative_income 156236 Representative total house income in the dwelling unit is $156236 -in.representative_income 156265 Representative total house income in the dwelling unit is $156265 -in.representative_income 156269 Representative total house income in the dwelling unit is $156269 -in.representative_income 156292 Representative total house income in the dwelling unit is $156292 -in.representative_income 156368 Representative total house income in the dwelling unit is $156368 -in.representative_income 156370 Representative total house income in the dwelling unit is $156370 -in.representative_income 156398 Representative total house income in the dwelling unit is $156398 -in.representative_income 156402 Representative total house income in the dwelling unit is $156402 -in.representative_income 156453 Representative total house income in the dwelling unit is $156453 -in.representative_income 156471 Representative total house income in the dwelling unit is $156471 -in.representative_income 156504 Representative total house income in the dwelling unit is $156504 -in.representative_income 156509 Representative total house income in the dwelling unit is $156509 -in.representative_income 156533 Representative total house income in the dwelling unit is $156533 -in.representative_income 156535 Representative total house income in the dwelling unit is $156535 -in.representative_income 156560 Representative total house income in the dwelling unit is $156560 -in.representative_income 156572 Representative total house income in the dwelling unit is $156572 -in.representative_income 156574 Representative total house income in the dwelling unit is $156574 -in.representative_income 156609 Representative total house income in the dwelling unit is $156609 -in.representative_income 156616 Representative total house income in the dwelling unit is $156616 -in.representative_income 156623 Representative total house income in the dwelling unit is $156623 -in.representative_income 156668 Representative total house income in the dwelling unit is $156668 -in.representative_income 156673 Representative total house income in the dwelling unit is $156673 -in.representative_income 156698 Representative total house income in the dwelling unit is $156698 -in.representative_income 156723 Representative total house income in the dwelling unit is $156723 -in.representative_income 156775 Representative total house income in the dwelling unit is $156775 -in.representative_income 156776 Representative total house income in the dwelling unit is $156776 -in.representative_income 156781 Representative total house income in the dwelling unit is $156781 -in.representative_income 156832 Representative total house income in the dwelling unit is $156832 -in.representative_income 156840 Representative total house income in the dwelling unit is $156840 -in.representative_income 156876 Representative total house income in the dwelling unit is $156876 -in.representative_income 156884 Representative total house income in the dwelling unit is $156884 -in.representative_income 156925 Representative total house income in the dwelling unit is $156925 -in.representative_income 156938 Representative total house income in the dwelling unit is $156938 -in.representative_income 156977 Representative total house income in the dwelling unit is $156977 -in.representative_income 156982 Representative total house income in the dwelling unit is $156982 -in.representative_income 156992 Representative total house income in the dwelling unit is $156992 -in.representative_income 157003 Representative total house income in the dwelling unit is $157003 -in.representative_income 157031 Representative total house income in the dwelling unit is $157031 -in.representative_income 157046 Representative total house income in the dwelling unit is $157046 -in.representative_income 157064 Representative total house income in the dwelling unit is $157064 -in.representative_income 157078 Representative total house income in the dwelling unit is $157078 -in.representative_income 157089 Representative total house income in the dwelling unit is $157089 -in.representative_income 157090 Representative total house income in the dwelling unit is $157090 -in.representative_income 157100 Representative total house income in the dwelling unit is $157100 -in.representative_income 157137 Representative total house income in the dwelling unit is $157137 -in.representative_income 157145 Representative total house income in the dwelling unit is $157145 -in.representative_income 157147 Representative total house income in the dwelling unit is $157147 -in.representative_income 157153 Representative total house income in the dwelling unit is $157153 -in.representative_income 157179 Representative total house income in the dwelling unit is $157179 -in.representative_income 157193 Representative total house income in the dwelling unit is $157193 -in.representative_income 157208 Representative total house income in the dwelling unit is $157208 -in.representative_income 157229 Representative total house income in the dwelling unit is $157229 -in.representative_income 157260 Representative total house income in the dwelling unit is $157260 -in.representative_income 157262 Representative total house income in the dwelling unit is $157262 -in.representative_income 157280 Representative total house income in the dwelling unit is $157280 -in.representative_income 157317 Representative total house income in the dwelling unit is $157317 -in.representative_income 157368 Representative total house income in the dwelling unit is $157368 -in.representative_income 157371 Representative total house income in the dwelling unit is $157371 -in.representative_income 157425 Representative total house income in the dwelling unit is $157425 -in.representative_income 157472 Representative total house income in the dwelling unit is $157472 -in.representative_income 157503 Representative total house income in the dwelling unit is $157503 -in.representative_income 157533 Representative total house income in the dwelling unit is $157533 -in.representative_income 157547 Representative total house income in the dwelling unit is $157547 -in.representative_income 157558 Representative total house income in the dwelling unit is $157558 -in.representative_income 157583 Representative total house income in the dwelling unit is $157583 -in.representative_income 157587 Representative total house income in the dwelling unit is $157587 -in.representative_income 157641 Representative total house income in the dwelling unit is $157641 -in.representative_income 157748 Representative total house income in the dwelling unit is $157748 -in.representative_income 157750 Representative total house income in the dwelling unit is $157750 -in.representative_income 157769 Representative total house income in the dwelling unit is $157769 -in.representative_income 157797 Representative total house income in the dwelling unit is $157797 -in.representative_income 157812 Representative total house income in the dwelling unit is $157812 -in.representative_income 157856 Representative total house income in the dwelling unit is $157856 -in.representative_income 157875 Representative total house income in the dwelling unit is $157875 -in.representative_income 157904 Representative total house income in the dwelling unit is $157904 -in.representative_income 157908 Representative total house income in the dwelling unit is $157908 -in.representative_income 157915 Representative total house income in the dwelling unit is $157915 -in.representative_income 157964 Representative total house income in the dwelling unit is $157964 -in.representative_income 157986 Representative total house income in the dwelling unit is $157986 -in.representative_income 158019 Representative total house income in the dwelling unit is $158019 -in.representative_income 158088 Representative total house income in the dwelling unit is $158088 -in.representative_income 158181 Representative total house income in the dwelling unit is $158181 -in.representative_income 158189 Representative total house income in the dwelling unit is $158189 -in.representative_income 158190 Representative total house income in the dwelling unit is $158190 -in.representative_income 158203 Representative total house income in the dwelling unit is $158203 -in.representative_income 158212 Representative total house income in the dwelling unit is $158212 -in.representative_income 158227 Representative total house income in the dwelling unit is $158227 -in.representative_income 158289 Representative total house income in the dwelling unit is $158289 -in.representative_income 158290 Representative total house income in the dwelling unit is $158290 -in.representative_income 158297 Representative total house income in the dwelling unit is $158297 -in.representative_income 158328 Representative total house income in the dwelling unit is $158328 -in.representative_income 158333 Representative total house income in the dwelling unit is $158333 -in.representative_income 158391 Representative total house income in the dwelling unit is $158391 -in.representative_income 158402 Representative total house income in the dwelling unit is $158402 -in.representative_income 158431 Representative total house income in the dwelling unit is $158431 -in.representative_income 158497 Representative total house income in the dwelling unit is $158497 -in.representative_income 158505 Representative total house income in the dwelling unit is $158505 -in.representative_income 158507 Representative total house income in the dwelling unit is $158507 -in.representative_income 158534 Representative total house income in the dwelling unit is $158534 -in.representative_income 158593 Representative total house income in the dwelling unit is $158593 -in.representative_income 158613 Representative total house income in the dwelling unit is $158613 -in.representative_income 158638 Representative total house income in the dwelling unit is $158638 -in.representative_income 158694 Representative total house income in the dwelling unit is $158694 -in.representative_income 158721 Representative total house income in the dwelling unit is $158721 -in.representative_income 158740 Representative total house income in the dwelling unit is $158740 -in.representative_income 158741 Representative total house income in the dwelling unit is $158741 -in.representative_income 158763 Representative total house income in the dwelling unit is $158763 -in.representative_income 158795 Representative total house income in the dwelling unit is $158795 -in.representative_income 158823 Representative total house income in the dwelling unit is $158823 -in.representative_income 158830 Representative total house income in the dwelling unit is $158830 -in.representative_income 158843 Representative total house income in the dwelling unit is $158843 -in.representative_income 158870 Representative total house income in the dwelling unit is $158870 -in.representative_income 158924 Representative total house income in the dwelling unit is $158924 -in.representative_income 158947 Representative total house income in the dwelling unit is $158947 -in.representative_income 158961 Representative total house income in the dwelling unit is $158961 -in.representative_income 158967 Representative total house income in the dwelling unit is $158967 -in.representative_income 159035 Representative total house income in the dwelling unit is $159035 -in.representative_income 159045 Representative total house income in the dwelling unit is $159045 -in.representative_income 159050 Representative total house income in the dwelling unit is $159050 -in.representative_income 159085 Representative total house income in the dwelling unit is $159085 -in.representative_income 159098 Representative total house income in the dwelling unit is $159098 -in.representative_income 159140 Representative total house income in the dwelling unit is $159140 -in.representative_income 159142 Representative total house income in the dwelling unit is $159142 -in.representative_income 159209 Representative total house income in the dwelling unit is $159209 -in.representative_income 159218 Representative total house income in the dwelling unit is $159218 -in.representative_income 159245 Representative total house income in the dwelling unit is $159245 -in.representative_income 159300 Representative total house income in the dwelling unit is $159300 -in.representative_income 159351 Representative total house income in the dwelling unit is $159351 -in.representative_income 159369 Representative total house income in the dwelling unit is $159369 -in.representative_income 159407 Representative total house income in the dwelling unit is $159407 -in.representative_income 159408 Representative total house income in the dwelling unit is $159408 -in.representative_income 159462 Representative total house income in the dwelling unit is $159462 -in.representative_income 159477 Representative total house income in the dwelling unit is $159477 -in.representative_income 159514 Representative total house income in the dwelling unit is $159514 -in.representative_income 159552 Representative total house income in the dwelling unit is $159552 -in.representative_income 159566 Representative total house income in the dwelling unit is $159566 -in.representative_income 159585 Representative total house income in the dwelling unit is $159585 -in.representative_income 159603 Representative total house income in the dwelling unit is $159603 -in.representative_income 159622 Representative total house income in the dwelling unit is $159622 -in.representative_income 159668 Representative total house income in the dwelling unit is $159668 -in.representative_income 159742 Representative total house income in the dwelling unit is $159742 -in.representative_income 159771 Representative total house income in the dwelling unit is $159771 -in.representative_income 159802 Representative total house income in the dwelling unit is $159802 -in.representative_income 159875 Representative total house income in the dwelling unit is $159875 -in.representative_income 159910 Representative total house income in the dwelling unit is $159910 -in.representative_income 159914 Representative total house income in the dwelling unit is $159914 -in.representative_income 159944 Representative total house income in the dwelling unit is $159944 -in.representative_income 160007 Representative total house income in the dwelling unit is $160007 -in.representative_income 160018 Representative total house income in the dwelling unit is $160018 -in.representative_income 160081 Representative total house income in the dwelling unit is $160081 -in.representative_income 160089 Representative total house income in the dwelling unit is $160089 -in.representative_income 160108 Representative total house income in the dwelling unit is $160108 -in.representative_income 160125 Representative total house income in the dwelling unit is $160125 -in.representative_income 160158 Representative total house income in the dwelling unit is $160158 -in.representative_income 160185 Representative total house income in the dwelling unit is $160185 -in.representative_income 160233 Representative total house income in the dwelling unit is $160233 -in.representative_income 160260 Representative total house income in the dwelling unit is $160260 -in.representative_income 160288 Representative total house income in the dwelling unit is $160288 -in.representative_income 160300 Representative total house income in the dwelling unit is $160300 -in.representative_income 160341 Representative total house income in the dwelling unit is $160341 -in.representative_income 160390 Representative total house income in the dwelling unit is $160390 -in.representative_income 160411 Representative total house income in the dwelling unit is $160411 -in.representative_income 160450 Representative total house income in the dwelling unit is $160450 -in.representative_income 160511 Representative total house income in the dwelling unit is $160511 -in.representative_income 160512 Representative total house income in the dwelling unit is $160512 -in.representative_income 160558 Representative total house income in the dwelling unit is $160558 -in.representative_income 160588 Representative total house income in the dwelling unit is $160588 -in.representative_income 160597 Representative total house income in the dwelling unit is $160597 -in.representative_income 160613 Representative total house income in the dwelling unit is $160613 -in.representative_income 160616 Representative total house income in the dwelling unit is $160616 -in.representative_income 160666 Representative total house income in the dwelling unit is $160666 -in.representative_income 160695 Representative total house income in the dwelling unit is $160695 -in.representative_income 160698 Representative total house income in the dwelling unit is $160698 -in.representative_income 160700 Representative total house income in the dwelling unit is $160700 -in.representative_income 160803 Representative total house income in the dwelling unit is $160803 -in.representative_income 160906 Representative total house income in the dwelling unit is $160906 -in.representative_income 160910 Representative total house income in the dwelling unit is $160910 -in.representative_income 160916 Representative total house income in the dwelling unit is $160916 -in.representative_income 160932 Representative total house income in the dwelling unit is $160932 -in.representative_income 160933 Representative total house income in the dwelling unit is $160933 -in.representative_income 160990 Representative total house income in the dwelling unit is $160990 -in.representative_income 161009 Representative total house income in the dwelling unit is $161009 -in.representative_income 161018 Representative total house income in the dwelling unit is $161018 -in.representative_income 161031 Representative total house income in the dwelling unit is $161031 -in.representative_income 161038 Representative total house income in the dwelling unit is $161038 -in.representative_income 161044 Representative total house income in the dwelling unit is $161044 -in.representative_income 161113 Representative total house income in the dwelling unit is $161113 -in.representative_income 161118 Representative total house income in the dwelling unit is $161118 -in.representative_income 161124 Representative total house income in the dwelling unit is $161124 -in.representative_income 161207 Representative total house income in the dwelling unit is $161207 -in.representative_income 161216 Representative total house income in the dwelling unit is $161216 -in.representative_income 161219 Representative total house income in the dwelling unit is $161219 -in.representative_income 161232 Representative total house income in the dwelling unit is $161232 -in.representative_income 161319 Representative total house income in the dwelling unit is $161319 -in.representative_income 161320 Representative total house income in the dwelling unit is $161320 -in.representative_income 161339 Representative total house income in the dwelling unit is $161339 -in.representative_income 161340 Representative total house income in the dwelling unit is $161340 -in.representative_income 161354 Representative total house income in the dwelling unit is $161354 -in.representative_income 161360 Representative total house income in the dwelling unit is $161360 -in.representative_income 161422 Representative total house income in the dwelling unit is $161422 -in.representative_income 161447 Representative total house income in the dwelling unit is $161447 -in.representative_income 161458 Representative total house income in the dwelling unit is $161458 -in.representative_income 161461 Representative total house income in the dwelling unit is $161461 -in.representative_income 161500 Representative total house income in the dwelling unit is $161500 -in.representative_income 161522 Representative total house income in the dwelling unit is $161522 -in.representative_income 161525 Representative total house income in the dwelling unit is $161525 -in.representative_income 161530 Representative total house income in the dwelling unit is $161530 -in.representative_income 161566 Representative total house income in the dwelling unit is $161566 -in.representative_income 161623 Representative total house income in the dwelling unit is $161623 -in.representative_income 161628 Representative total house income in the dwelling unit is $161628 -in.representative_income 161661 Representative total house income in the dwelling unit is $161661 -in.representative_income 161671 Representative total house income in the dwelling unit is $161671 -in.representative_income 161704 Representative total house income in the dwelling unit is $161704 -in.representative_income 161724 Representative total house income in the dwelling unit is $161724 -in.representative_income 161732 Representative total house income in the dwelling unit is $161732 -in.representative_income 161734 Representative total house income in the dwelling unit is $161734 -in.representative_income 161783 Representative total house income in the dwelling unit is $161783 -in.representative_income 161825 Representative total house income in the dwelling unit is $161825 -in.representative_income 161830 Representative total house income in the dwelling unit is $161830 -in.representative_income 161835 Representative total house income in the dwelling unit is $161835 -in.representative_income 161854 Representative total house income in the dwelling unit is $161854 -in.representative_income 161871 Representative total house income in the dwelling unit is $161871 -in.representative_income 161876 Representative total house income in the dwelling unit is $161876 -in.representative_income 161882 Representative total house income in the dwelling unit is $161882 -in.representative_income 161897 Representative total house income in the dwelling unit is $161897 -in.representative_income 161927 Representative total house income in the dwelling unit is $161927 -in.representative_income 161938 Representative total house income in the dwelling unit is $161938 -in.representative_income 161959 Representative total house income in the dwelling unit is $161959 -in.representative_income 162027 Representative total house income in the dwelling unit is $162027 -in.representative_income 162066 Representative total house income in the dwelling unit is $162066 -in.representative_income 162071 Representative total house income in the dwelling unit is $162071 -in.representative_income 162072 Representative total house income in the dwelling unit is $162072 -in.representative_income 162075 Representative total house income in the dwelling unit is $162075 -in.representative_income 162082 Representative total house income in the dwelling unit is $162082 -in.representative_income 162091 Representative total house income in the dwelling unit is $162091 -in.representative_income 162092 Representative total house income in the dwelling unit is $162092 -in.representative_income 162103 Representative total house income in the dwelling unit is $162103 -in.representative_income 162125 Representative total house income in the dwelling unit is $162125 -in.representative_income 162128 Representative total house income in the dwelling unit is $162128 -in.representative_income 162136 Representative total house income in the dwelling unit is $162136 -in.representative_income 162179 Representative total house income in the dwelling unit is $162179 -in.representative_income 162199 Representative total house income in the dwelling unit is $162199 -in.representative_income 162211 Representative total house income in the dwelling unit is $162211 -in.representative_income 162229 Representative total house income in the dwelling unit is $162229 -in.representative_income 162247 Representative total house income in the dwelling unit is $162247 -in.representative_income 162280 Representative total house income in the dwelling unit is $162280 -in.representative_income 162287 Representative total house income in the dwelling unit is $162287 -in.representative_income 162304 Representative total house income in the dwelling unit is $162304 -in.representative_income 162305 Representative total house income in the dwelling unit is $162305 -in.representative_income 162313 Representative total house income in the dwelling unit is $162313 -in.representative_income 162330 Representative total house income in the dwelling unit is $162330 -in.representative_income 162351 Representative total house income in the dwelling unit is $162351 -in.representative_income 162367 Representative total house income in the dwelling unit is $162367 -in.representative_income 162395 Representative total house income in the dwelling unit is $162395 -in.representative_income 162409 Representative total house income in the dwelling unit is $162409 -in.representative_income 162413 Representative total house income in the dwelling unit is $162413 -in.representative_income 162416 Representative total house income in the dwelling unit is $162416 -in.representative_income 162437 Representative total house income in the dwelling unit is $162437 -in.representative_income 162449 Representative total house income in the dwelling unit is $162449 -in.representative_income 162452 Representative total house income in the dwelling unit is $162452 -in.representative_income 162454 Representative total house income in the dwelling unit is $162454 -in.representative_income 162474 Representative total house income in the dwelling unit is $162474 -in.representative_income 162503 Representative total house income in the dwelling unit is $162503 -in.representative_income 162514 Representative total house income in the dwelling unit is $162514 -in.representative_income 162520 Representative total house income in the dwelling unit is $162520 -in.representative_income 162556 Representative total house income in the dwelling unit is $162556 -in.representative_income 162610 Representative total house income in the dwelling unit is $162610 -in.representative_income 162620 Representative total house income in the dwelling unit is $162620 -in.representative_income 162628 Representative total house income in the dwelling unit is $162628 -in.representative_income 162633 Representative total house income in the dwelling unit is $162633 -in.representative_income 162718 Representative total house income in the dwelling unit is $162718 -in.representative_income 162719 Representative total house income in the dwelling unit is $162719 -in.representative_income 162734 Representative total house income in the dwelling unit is $162734 -in.representative_income 162735 Representative total house income in the dwelling unit is $162735 -in.representative_income 162743 Representative total house income in the dwelling unit is $162743 -in.representative_income 162763 Representative total house income in the dwelling unit is $162763 -in.representative_income 162831 Representative total house income in the dwelling unit is $162831 -in.representative_income 162842 Representative total house income in the dwelling unit is $162842 -in.representative_income 162935 Representative total house income in the dwelling unit is $162935 -in.representative_income 162936 Representative total house income in the dwelling unit is $162936 -in.representative_income 162937 Representative total house income in the dwelling unit is $162937 -in.representative_income 162949 Representative total house income in the dwelling unit is $162949 -in.representative_income 162970 Representative total house income in the dwelling unit is $162970 -in.representative_income 163037 Representative total house income in the dwelling unit is $163037 -in.representative_income 163042 Representative total house income in the dwelling unit is $163042 -in.representative_income 163043 Representative total house income in the dwelling unit is $163043 -in.representative_income 163138 Representative total house income in the dwelling unit is $163138 -in.representative_income 163147 Representative total house income in the dwelling unit is $163147 -in.representative_income 163151 Representative total house income in the dwelling unit is $163151 -in.representative_income 163164 Representative total house income in the dwelling unit is $163164 -in.representative_income 163165 Representative total house income in the dwelling unit is $163165 -in.representative_income 163175 Representative total house income in the dwelling unit is $163175 -in.representative_income 163227 Representative total house income in the dwelling unit is $163227 -in.representative_income 163253 Representative total house income in the dwelling unit is $163253 -in.representative_income 163259 Representative total house income in the dwelling unit is $163259 -in.representative_income 163273 Representative total house income in the dwelling unit is $163273 -in.representative_income 163279 Representative total house income in the dwelling unit is $163279 -in.representative_income 163293 Representative total house income in the dwelling unit is $163293 -in.representative_income 163314 Representative total house income in the dwelling unit is $163314 -in.representative_income 163347 Representative total house income in the dwelling unit is $163347 -in.representative_income 163367 Representative total house income in the dwelling unit is $163367 -in.representative_income 163379 Representative total house income in the dwelling unit is $163379 -in.representative_income 163382 Representative total house income in the dwelling unit is $163382 -in.representative_income 163425 Representative total house income in the dwelling unit is $163425 -in.representative_income 163441 Representative total house income in the dwelling unit is $163441 -in.representative_income 163464 Representative total house income in the dwelling unit is $163464 -in.representative_income 163475 Representative total house income in the dwelling unit is $163475 -in.representative_income 163485 Representative total house income in the dwelling unit is $163485 -in.representative_income 163486 Representative total house income in the dwelling unit is $163486 -in.representative_income 163507 Representative total house income in the dwelling unit is $163507 -in.representative_income 163516 Representative total house income in the dwelling unit is $163516 -in.representative_income 163537 Representative total house income in the dwelling unit is $163537 -in.representative_income 163542 Representative total house income in the dwelling unit is $163542 -in.representative_income 163569 Representative total house income in the dwelling unit is $163569 -in.representative_income 163588 Representative total house income in the dwelling unit is $163588 -in.representative_income 163623 Representative total house income in the dwelling unit is $163623 -in.representative_income 163643 Representative total house income in the dwelling unit is $163643 -in.representative_income 163675 Representative total house income in the dwelling unit is $163675 -in.representative_income 163691 Representative total house income in the dwelling unit is $163691 -in.representative_income 163692 Representative total house income in the dwelling unit is $163692 -in.representative_income 163694 Representative total house income in the dwelling unit is $163694 -in.representative_income 163701 Representative total house income in the dwelling unit is $163701 -in.representative_income 163745 Representative total house income in the dwelling unit is $163745 -in.representative_income 163770 Representative total house income in the dwelling unit is $163770 -in.representative_income 163780 Representative total house income in the dwelling unit is $163780 -in.representative_income 163794 Representative total house income in the dwelling unit is $163794 -in.representative_income 163799 Representative total house income in the dwelling unit is $163799 -in.representative_income 163809 Representative total house income in the dwelling unit is $163809 -in.representative_income 163846 Representative total house income in the dwelling unit is $163846 -in.representative_income 163885 Representative total house income in the dwelling unit is $163885 -in.representative_income 163898 Representative total house income in the dwelling unit is $163898 -in.representative_income 163907 Representative total house income in the dwelling unit is $163907 -in.representative_income 163915 Representative total house income in the dwelling unit is $163915 -in.representative_income 163918 Representative total house income in the dwelling unit is $163918 -in.representative_income 163940 Representative total house income in the dwelling unit is $163940 -in.representative_income 163947 Representative total house income in the dwelling unit is $163947 -in.representative_income 163980 Representative total house income in the dwelling unit is $163980 -in.representative_income 163992 Representative total house income in the dwelling unit is $163992 -in.representative_income 163995 Representative total house income in the dwelling unit is $163995 -in.representative_income 164001 Representative total house income in the dwelling unit is $164001 -in.representative_income 164002 Representative total house income in the dwelling unit is $164002 -in.representative_income 164015 Representative total house income in the dwelling unit is $164015 -in.representative_income 164023 Representative total house income in the dwelling unit is $164023 -in.representative_income 164032 Representative total house income in the dwelling unit is $164032 -in.representative_income 164048 Representative total house income in the dwelling unit is $164048 -in.representative_income 164079 Representative total house income in the dwelling unit is $164079 -in.representative_income 164097 Representative total house income in the dwelling unit is $164097 -in.representative_income 164104 Representative total house income in the dwelling unit is $164104 -in.representative_income 164118 Representative total house income in the dwelling unit is $164118 -in.representative_income 164123 Representative total house income in the dwelling unit is $164123 -in.representative_income 164130 Representative total house income in the dwelling unit is $164130 -in.representative_income 164140 Representative total house income in the dwelling unit is $164140 -in.representative_income 164149 Representative total house income in the dwelling unit is $164149 -in.representative_income 164179 Representative total house income in the dwelling unit is $164179 -in.representative_income 164185 Representative total house income in the dwelling unit is $164185 -in.representative_income 164202 Representative total house income in the dwelling unit is $164202 -in.representative_income 164231 Representative total house income in the dwelling unit is $164231 -in.representative_income 164235 Representative total house income in the dwelling unit is $164235 -in.representative_income 164238 Representative total house income in the dwelling unit is $164238 -in.representative_income 164250 Representative total house income in the dwelling unit is $164250 -in.representative_income 164307 Representative total house income in the dwelling unit is $164307 -in.representative_income 164310 Representative total house income in the dwelling unit is $164310 -in.representative_income 164338 Representative total house income in the dwelling unit is $164338 -in.representative_income 164343 Representative total house income in the dwelling unit is $164343 -in.representative_income 164345 Representative total house income in the dwelling unit is $164345 -in.representative_income 164351 Representative total house income in the dwelling unit is $164351 -in.representative_income 164413 Representative total house income in the dwelling unit is $164413 -in.representative_income 164423 Representative total house income in the dwelling unit is $164423 -in.representative_income 164448 Representative total house income in the dwelling unit is $164448 -in.representative_income 164450 Representative total house income in the dwelling unit is $164450 -in.representative_income 164452 Representative total house income in the dwelling unit is $164452 -in.representative_income 164465 Representative total house income in the dwelling unit is $164465 -in.representative_income 164517 Representative total house income in the dwelling unit is $164517 -in.representative_income 164518 Representative total house income in the dwelling unit is $164518 -in.representative_income 164550 Representative total house income in the dwelling unit is $164550 -in.representative_income 164553 Representative total house income in the dwelling unit is $164553 -in.representative_income 164556 Representative total house income in the dwelling unit is $164556 -in.representative_income 164561 Representative total house income in the dwelling unit is $164561 -in.representative_income 164582 Representative total house income in the dwelling unit is $164582 -in.representative_income 164620 Representative total house income in the dwelling unit is $164620 -in.representative_income 164654 Representative total house income in the dwelling unit is $164654 -in.representative_income 164656 Representative total house income in the dwelling unit is $164656 -in.representative_income 164663 Representative total house income in the dwelling unit is $164663 -in.representative_income 164664 Representative total house income in the dwelling unit is $164664 -in.representative_income 164667 Representative total house income in the dwelling unit is $164667 -in.representative_income 164692 Representative total house income in the dwelling unit is $164692 -in.representative_income 164709 Representative total house income in the dwelling unit is $164709 -in.representative_income 164718 Representative total house income in the dwelling unit is $164718 -in.representative_income 164722 Representative total house income in the dwelling unit is $164722 -in.representative_income 164740 Representative total house income in the dwelling unit is $164740 -in.representative_income 164755 Representative total house income in the dwelling unit is $164755 -in.representative_income 164761 Representative total house income in the dwelling unit is $164761 -in.representative_income 164765 Representative total house income in the dwelling unit is $164765 -in.representative_income 164772 Representative total house income in the dwelling unit is $164772 -in.representative_income 164775 Representative total house income in the dwelling unit is $164775 -in.representative_income 164804 Representative total house income in the dwelling unit is $164804 -in.representative_income 164805 Representative total house income in the dwelling unit is $164805 -in.representative_income 164826 Representative total house income in the dwelling unit is $164826 -in.representative_income 164835 Representative total house income in the dwelling unit is $164835 -in.representative_income 164856 Representative total house income in the dwelling unit is $164856 -in.representative_income 164864 Representative total house income in the dwelling unit is $164864 -in.representative_income 164880 Representative total house income in the dwelling unit is $164880 -in.representative_income 164882 Representative total house income in the dwelling unit is $164882 -in.representative_income 164903 Representative total house income in the dwelling unit is $164903 -in.representative_income 164929 Representative total house income in the dwelling unit is $164929 -in.representative_income 164940 Representative total house income in the dwelling unit is $164940 -in.representative_income 164956 Representative total house income in the dwelling unit is $164956 -in.representative_income 164957 Representative total house income in the dwelling unit is $164957 -in.representative_income 164987 Representative total house income in the dwelling unit is $164987 -in.representative_income 164989 Representative total house income in the dwelling unit is $164989 -in.representative_income 165011 Representative total house income in the dwelling unit is $165011 -in.representative_income 165022 Representative total house income in the dwelling unit is $165022 -in.representative_income 165032 Representative total house income in the dwelling unit is $165032 -in.representative_income 165046 Representative total house income in the dwelling unit is $165046 -in.representative_income 165054 Representative total house income in the dwelling unit is $165054 -in.representative_income 165058 Representative total house income in the dwelling unit is $165058 -in.representative_income 165088 Representative total house income in the dwelling unit is $165088 -in.representative_income 165095 Representative total house income in the dwelling unit is $165095 -in.representative_income 165096 Representative total house income in the dwelling unit is $165096 -in.representative_income 165099 Representative total house income in the dwelling unit is $165099 -in.representative_income 165104 Representative total house income in the dwelling unit is $165104 -in.representative_income 165108 Representative total house income in the dwelling unit is $165108 -in.representative_income 165113 Representative total house income in the dwelling unit is $165113 -in.representative_income 165151 Representative total house income in the dwelling unit is $165151 -in.representative_income 165159 Representative total house income in the dwelling unit is $165159 -in.representative_income 165171 Representative total house income in the dwelling unit is $165171 -in.representative_income 165179 Representative total house income in the dwelling unit is $165179 -in.representative_income 165204 Representative total house income in the dwelling unit is $165204 -in.representative_income 165208 Representative total house income in the dwelling unit is $165208 -in.representative_income 165228 Representative total house income in the dwelling unit is $165228 -in.representative_income 165238 Representative total house income in the dwelling unit is $165238 -in.representative_income 165240 Representative total house income in the dwelling unit is $165240 -in.representative_income 165257 Representative total house income in the dwelling unit is $165257 -in.representative_income 165280 Representative total house income in the dwelling unit is $165280 -in.representative_income 165311 Representative total house income in the dwelling unit is $165311 -in.representative_income 165312 Representative total house income in the dwelling unit is $165312 -in.representative_income 165313 Representative total house income in the dwelling unit is $165313 -in.representative_income 165329 Representative total house income in the dwelling unit is $165329 -in.representative_income 165341 Representative total house income in the dwelling unit is $165341 -in.representative_income 165355 Representative total house income in the dwelling unit is $165355 -in.representative_income 165361 Representative total house income in the dwelling unit is $165361 -in.representative_income 165362 Representative total house income in the dwelling unit is $165362 -in.representative_income 165366 Representative total house income in the dwelling unit is $165366 -in.representative_income 165373 Representative total house income in the dwelling unit is $165373 -in.representative_income 165383 Representative total house income in the dwelling unit is $165383 -in.representative_income 165419 Representative total house income in the dwelling unit is $165419 -in.representative_income 165420 Representative total house income in the dwelling unit is $165420 -in.representative_income 165445 Representative total house income in the dwelling unit is $165445 -in.representative_income 165462 Representative total house income in the dwelling unit is $165462 -in.representative_income 165468 Representative total house income in the dwelling unit is $165468 -in.representative_income 165472 Representative total house income in the dwelling unit is $165472 -in.representative_income 165499 Representative total house income in the dwelling unit is $165499 -in.representative_income 165521 Representative total house income in the dwelling unit is $165521 -in.representative_income 165526 Representative total house income in the dwelling unit is $165526 -in.representative_income 165527 Representative total house income in the dwelling unit is $165527 -in.representative_income 165528 Representative total house income in the dwelling unit is $165528 -in.representative_income 165548 Representative total house income in the dwelling unit is $165548 -in.representative_income 165563 Representative total house income in the dwelling unit is $165563 -in.representative_income 165573 Representative total house income in the dwelling unit is $165573 -in.representative_income 165580 Representative total house income in the dwelling unit is $165580 -in.representative_income 165582 Representative total house income in the dwelling unit is $165582 -in.representative_income 165589 Representative total house income in the dwelling unit is $165589 -in.representative_income 165590 Representative total house income in the dwelling unit is $165590 -in.representative_income 165604 Representative total house income in the dwelling unit is $165604 -in.representative_income 165616 Representative total house income in the dwelling unit is $165616 -in.representative_income 165623 Representative total house income in the dwelling unit is $165623 -in.representative_income 165633 Representative total house income in the dwelling unit is $165633 -in.representative_income 165636 Representative total house income in the dwelling unit is $165636 -in.representative_income 165651 Representative total house income in the dwelling unit is $165651 -in.representative_income 165657 Representative total house income in the dwelling unit is $165657 -in.representative_income 165664 Representative total house income in the dwelling unit is $165664 -in.representative_income 165678 Representative total house income in the dwelling unit is $165678 -in.representative_income 165704 Representative total house income in the dwelling unit is $165704 -in.representative_income 165714 Representative total house income in the dwelling unit is $165714 -in.representative_income 165740 Representative total house income in the dwelling unit is $165740 -in.representative_income 165744 Representative total house income in the dwelling unit is $165744 -in.representative_income 165755 Representative total house income in the dwelling unit is $165755 -in.representative_income 165765 Representative total house income in the dwelling unit is $165765 -in.representative_income 165770 Representative total house income in the dwelling unit is $165770 -in.representative_income 165784 Representative total house income in the dwelling unit is $165784 -in.representative_income 165785 Representative total house income in the dwelling unit is $165785 -in.representative_income 165840 Representative total house income in the dwelling unit is $165840 -in.representative_income 165846 Representative total house income in the dwelling unit is $165846 -in.representative_income 165848 Representative total house income in the dwelling unit is $165848 -in.representative_income 165852 Representative total house income in the dwelling unit is $165852 -in.representative_income 165857 Representative total house income in the dwelling unit is $165857 -in.representative_income 165858 Representative total house income in the dwelling unit is $165858 -in.representative_income 165866 Representative total house income in the dwelling unit is $165866 -in.representative_income 165868 Representative total house income in the dwelling unit is $165868 -in.representative_income 165890 Representative total house income in the dwelling unit is $165890 -in.representative_income 165916 Representative total house income in the dwelling unit is $165916 -in.representative_income 165930 Representative total house income in the dwelling unit is $165930 -in.representative_income 165955 Representative total house income in the dwelling unit is $165955 -in.representative_income 165960 Representative total house income in the dwelling unit is $165960 -in.representative_income 165961 Representative total house income in the dwelling unit is $165961 -in.representative_income 165967 Representative total house income in the dwelling unit is $165967 -in.representative_income 165995 Representative total house income in the dwelling unit is $165995 -in.representative_income 166019 Representative total house income in the dwelling unit is $166019 -in.representative_income 166064 Representative total house income in the dwelling unit is $166064 -in.representative_income 166068 Representative total house income in the dwelling unit is $166068 -in.representative_income 166069 Representative total house income in the dwelling unit is $166069 -in.representative_income 166074 Representative total house income in the dwelling unit is $166074 -in.representative_income 166078 Representative total house income in the dwelling unit is $166078 -in.representative_income 166090 Representative total house income in the dwelling unit is $166090 -in.representative_income 166100 Representative total house income in the dwelling unit is $166100 -in.representative_income 166106 Representative total house income in the dwelling unit is $166106 -in.representative_income 166167 Representative total house income in the dwelling unit is $166167 -in.representative_income 166169 Representative total house income in the dwelling unit is $166169 -in.representative_income 166170 Representative total house income in the dwelling unit is $166170 -in.representative_income 166176 Representative total house income in the dwelling unit is $166176 -in.representative_income 166200 Representative total house income in the dwelling unit is $166200 -in.representative_income 166202 Representative total house income in the dwelling unit is $166202 -in.representative_income 166206 Representative total house income in the dwelling unit is $166206 -in.representative_income 166227 Representative total house income in the dwelling unit is $166227 -in.representative_income 166229 Representative total house income in the dwelling unit is $166229 -in.representative_income 166233 Representative total house income in the dwelling unit is $166233 -in.representative_income 166259 Representative total house income in the dwelling unit is $166259 -in.representative_income 166270 Representative total house income in the dwelling unit is $166270 -in.representative_income 166271 Representative total house income in the dwelling unit is $166271 -in.representative_income 166276 Representative total house income in the dwelling unit is $166276 -in.representative_income 166277 Representative total house income in the dwelling unit is $166277 -in.representative_income 166281 Representative total house income in the dwelling unit is $166281 -in.representative_income 166284 Representative total house income in the dwelling unit is $166284 -in.representative_income 166311 Representative total house income in the dwelling unit is $166311 -in.representative_income 166320 Representative total house income in the dwelling unit is $166320 -in.representative_income 166338 Representative total house income in the dwelling unit is $166338 -in.representative_income 166360 Representative total house income in the dwelling unit is $166360 -in.representative_income 166364 Representative total house income in the dwelling unit is $166364 -in.representative_income 166371 Representative total house income in the dwelling unit is $166371 -in.representative_income 166373 Representative total house income in the dwelling unit is $166373 -in.representative_income 166385 Representative total house income in the dwelling unit is $166385 -in.representative_income 166392 Representative total house income in the dwelling unit is $166392 -in.representative_income 166393 Representative total house income in the dwelling unit is $166393 -in.representative_income 166401 Representative total house income in the dwelling unit is $166401 -in.representative_income 166411 Representative total house income in the dwelling unit is $166411 -in.representative_income 166416 Representative total house income in the dwelling unit is $166416 -in.representative_income 166417 Representative total house income in the dwelling unit is $166417 -in.representative_income 166418 Representative total house income in the dwelling unit is $166418 -in.representative_income 166421 Representative total house income in the dwelling unit is $166421 -in.representative_income 166424 Representative total house income in the dwelling unit is $166424 -in.representative_income 166427 Representative total house income in the dwelling unit is $166427 -in.representative_income 166431 Representative total house income in the dwelling unit is $166431 -in.representative_income 166438 Representative total house income in the dwelling unit is $166438 -in.representative_income 166440 Representative total house income in the dwelling unit is $166440 -in.representative_income 166469 Representative total house income in the dwelling unit is $166469 -in.representative_income 166472 Representative total house income in the dwelling unit is $166472 -in.representative_income 166476 Representative total house income in the dwelling unit is $166476 -in.representative_income 166500 Representative total house income in the dwelling unit is $166500 -in.representative_income 166511 Representative total house income in the dwelling unit is $166511 -in.representative_income 166523 Representative total house income in the dwelling unit is $166523 -in.representative_income 166545 Representative total house income in the dwelling unit is $166545 -in.representative_income 166562 Representative total house income in the dwelling unit is $166562 -in.representative_income 166573 Representative total house income in the dwelling unit is $166573 -in.representative_income 166579 Representative total house income in the dwelling unit is $166579 -in.representative_income 166597 Representative total house income in the dwelling unit is $166597 -in.representative_income 166600 Representative total house income in the dwelling unit is $166600 -in.representative_income 166608 Representative total house income in the dwelling unit is $166608 -in.representative_income 166628 Representative total house income in the dwelling unit is $166628 -in.representative_income 166640 Representative total house income in the dwelling unit is $166640 -in.representative_income 166673 Representative total house income in the dwelling unit is $166673 -in.representative_income 166674 Representative total house income in the dwelling unit is $166674 -in.representative_income 166683 Representative total house income in the dwelling unit is $166683 -in.representative_income 166684 Representative total house income in the dwelling unit is $166684 -in.representative_income 166695 Representative total house income in the dwelling unit is $166695 -in.representative_income 166698 Representative total house income in the dwelling unit is $166698 -in.representative_income 166703 Representative total house income in the dwelling unit is $166703 -in.representative_income 166706 Representative total house income in the dwelling unit is $166706 -in.representative_income 166707 Representative total house income in the dwelling unit is $166707 -in.representative_income 166714 Representative total house income in the dwelling unit is $166714 -in.representative_income 166716 Representative total house income in the dwelling unit is $166716 -in.representative_income 166723 Representative total house income in the dwelling unit is $166723 -in.representative_income 166733 Representative total house income in the dwelling unit is $166733 -in.representative_income 166734 Representative total house income in the dwelling unit is $166734 -in.representative_income 166775 Representative total house income in the dwelling unit is $166775 -in.representative_income 166786 Representative total house income in the dwelling unit is $166786 -in.representative_income 166796 Representative total house income in the dwelling unit is $166796 -in.representative_income 166806 Representative total house income in the dwelling unit is $166806 -in.representative_income 166814 Representative total house income in the dwelling unit is $166814 -in.representative_income 166819 Representative total house income in the dwelling unit is $166819 -in.representative_income 166825 Representative total house income in the dwelling unit is $166825 -in.representative_income 166839 Representative total house income in the dwelling unit is $166839 -in.representative_income 166846 Representative total house income in the dwelling unit is $166846 -in.representative_income 166876 Representative total house income in the dwelling unit is $166876 -in.representative_income 166885 Representative total house income in the dwelling unit is $166885 -in.representative_income 166888 Representative total house income in the dwelling unit is $166888 -in.representative_income 166900 Representative total house income in the dwelling unit is $166900 -in.representative_income 166920 Representative total house income in the dwelling unit is $166920 -in.representative_income 166921 Representative total house income in the dwelling unit is $166921 -in.representative_income 166933 Representative total house income in the dwelling unit is $166933 -in.representative_income 166944 Representative total house income in the dwelling unit is $166944 -in.representative_income 166947 Representative total house income in the dwelling unit is $166947 -in.representative_income 166975 Representative total house income in the dwelling unit is $166975 -in.representative_income 166977 Representative total house income in the dwelling unit is $166977 -in.representative_income 166987 Representative total house income in the dwelling unit is $166987 -in.representative_income 166992 Representative total house income in the dwelling unit is $166992 -in.representative_income 167027 Representative total house income in the dwelling unit is $167027 -in.representative_income 167029 Representative total house income in the dwelling unit is $167029 -in.representative_income 167041 Representative total house income in the dwelling unit is $167041 -in.representative_income 167049 Representative total house income in the dwelling unit is $167049 -in.representative_income 167052 Representative total house income in the dwelling unit is $167052 -in.representative_income 167078 Representative total house income in the dwelling unit is $167078 -in.representative_income 167095 Representative total house income in the dwelling unit is $167095 -in.representative_income 167115 Representative total house income in the dwelling unit is $167115 -in.representative_income 167127 Representative total house income in the dwelling unit is $167127 -in.representative_income 167136 Representative total house income in the dwelling unit is $167136 -in.representative_income 167137 Representative total house income in the dwelling unit is $167137 -in.representative_income 167147 Representative total house income in the dwelling unit is $167147 -in.representative_income 167149 Representative total house income in the dwelling unit is $167149 -in.representative_income 167155 Representative total house income in the dwelling unit is $167155 -in.representative_income 167165 Representative total house income in the dwelling unit is $167165 -in.representative_income 167176 Representative total house income in the dwelling unit is $167176 -in.representative_income 167179 Representative total house income in the dwelling unit is $167179 -in.representative_income 167198 Representative total house income in the dwelling unit is $167198 -in.representative_income 167209 Representative total house income in the dwelling unit is $167209 -in.representative_income 167218 Representative total house income in the dwelling unit is $167218 -in.representative_income 167243 Representative total house income in the dwelling unit is $167243 -in.representative_income 167246 Representative total house income in the dwelling unit is $167246 -in.representative_income 167250 Representative total house income in the dwelling unit is $167250 -in.representative_income 167257 Representative total house income in the dwelling unit is $167257 -in.representative_income 167261 Representative total house income in the dwelling unit is $167261 -in.representative_income 167275 Representative total house income in the dwelling unit is $167275 -in.representative_income 167280 Representative total house income in the dwelling unit is $167280 -in.representative_income 167300 Representative total house income in the dwelling unit is $167300 -in.representative_income 167302 Representative total house income in the dwelling unit is $167302 -in.representative_income 167311 Representative total house income in the dwelling unit is $167311 -in.representative_income 167319 Representative total house income in the dwelling unit is $167319 -in.representative_income 167322 Representative total house income in the dwelling unit is $167322 -in.representative_income 167350 Representative total house income in the dwelling unit is $167350 -in.representative_income 167364 Representative total house income in the dwelling unit is $167364 -in.representative_income 167366 Representative total house income in the dwelling unit is $167366 -in.representative_income 167381 Representative total house income in the dwelling unit is $167381 -in.representative_income 167397 Representative total house income in the dwelling unit is $167397 -in.representative_income 167405 Representative total house income in the dwelling unit is $167405 -in.representative_income 167421 Representative total house income in the dwelling unit is $167421 -in.representative_income 167458 Representative total house income in the dwelling unit is $167458 -in.representative_income 167471 Representative total house income in the dwelling unit is $167471 -in.representative_income 167472 Representative total house income in the dwelling unit is $167472 -in.representative_income 167473 Representative total house income in the dwelling unit is $167473 -in.representative_income 167477 Representative total house income in the dwelling unit is $167477 -in.representative_income 167482 Representative total house income in the dwelling unit is $167482 -in.representative_income 167490 Representative total house income in the dwelling unit is $167490 -in.representative_income 167501 Representative total house income in the dwelling unit is $167501 -in.representative_income 167505 Representative total house income in the dwelling unit is $167505 -in.representative_income 167507 Representative total house income in the dwelling unit is $167507 -in.representative_income 167514 Representative total house income in the dwelling unit is $167514 -in.representative_income 167516 Representative total house income in the dwelling unit is $167516 -in.representative_income 167523 Representative total house income in the dwelling unit is $167523 -in.representative_income 167526 Representative total house income in the dwelling unit is $167526 -in.representative_income 167534 Representative total house income in the dwelling unit is $167534 -in.representative_income 167552 Representative total house income in the dwelling unit is $167552 -in.representative_income 167565 Representative total house income in the dwelling unit is $167565 -in.representative_income 167570 Representative total house income in the dwelling unit is $167570 -in.representative_income 167577 Representative total house income in the dwelling unit is $167577 -in.representative_income 167580 Representative total house income in the dwelling unit is $167580 -in.representative_income 167581 Representative total house income in the dwelling unit is $167581 -in.representative_income 167583 Representative total house income in the dwelling unit is $167583 -in.representative_income 167592 Representative total house income in the dwelling unit is $167592 -in.representative_income 167603 Representative total house income in the dwelling unit is $167603 -in.representative_income 167611 Representative total house income in the dwelling unit is $167611 -in.representative_income 167644 Representative total house income in the dwelling unit is $167644 -in.representative_income 167646 Representative total house income in the dwelling unit is $167646 -in.representative_income 167651 Representative total house income in the dwelling unit is $167651 -in.representative_income 167662 Representative total house income in the dwelling unit is $167662 -in.representative_income 167673 Representative total house income in the dwelling unit is $167673 -in.representative_income 167677 Representative total house income in the dwelling unit is $167677 -in.representative_income 167682 Representative total house income in the dwelling unit is $167682 -in.representative_income 167684 Representative total house income in the dwelling unit is $167684 -in.representative_income 167689 Representative total house income in the dwelling unit is $167689 -in.representative_income 167700 Representative total house income in the dwelling unit is $167700 -in.representative_income 167704 Representative total house income in the dwelling unit is $167704 -in.representative_income 167714 Representative total house income in the dwelling unit is $167714 -in.representative_income 167724 Representative total house income in the dwelling unit is $167724 -in.representative_income 167735 Representative total house income in the dwelling unit is $167735 -in.representative_income 167756 Representative total house income in the dwelling unit is $167756 -in.representative_income 167769 Representative total house income in the dwelling unit is $167769 -in.representative_income 167776 Representative total house income in the dwelling unit is $167776 -in.representative_income 167781 Representative total house income in the dwelling unit is $167781 -in.representative_income 167785 Representative total house income in the dwelling unit is $167785 -in.representative_income 167788 Representative total house income in the dwelling unit is $167788 -in.representative_income 167797 Representative total house income in the dwelling unit is $167797 -in.representative_income 167808 Representative total house income in the dwelling unit is $167808 -in.representative_income 167817 Representative total house income in the dwelling unit is $167817 -in.representative_income 167823 Representative total house income in the dwelling unit is $167823 -in.representative_income 167825 Representative total house income in the dwelling unit is $167825 -in.representative_income 167836 Representative total house income in the dwelling unit is $167836 -in.representative_income 167838 Representative total house income in the dwelling unit is $167838 -in.representative_income 167844 Representative total house income in the dwelling unit is $167844 -in.representative_income 167846 Representative total house income in the dwelling unit is $167846 -in.representative_income 167862 Representative total house income in the dwelling unit is $167862 -in.representative_income 167869 Representative total house income in the dwelling unit is $167869 -in.representative_income 167876 Representative total house income in the dwelling unit is $167876 -in.representative_income 167883 Representative total house income in the dwelling unit is $167883 -in.representative_income 167886 Representative total house income in the dwelling unit is $167886 -in.representative_income 167887 Representative total house income in the dwelling unit is $167887 -in.representative_income 167893 Representative total house income in the dwelling unit is $167893 -in.representative_income 167900 Representative total house income in the dwelling unit is $167900 -in.representative_income 167905 Representative total house income in the dwelling unit is $167905 -in.representative_income 167921 Representative total house income in the dwelling unit is $167921 -in.representative_income 167927 Representative total house income in the dwelling unit is $167927 -in.representative_income 167931 Representative total house income in the dwelling unit is $167931 -in.representative_income 167935 Representative total house income in the dwelling unit is $167935 -in.representative_income 167959 Representative total house income in the dwelling unit is $167959 -in.representative_income 167973 Representative total house income in the dwelling unit is $167973 -in.representative_income 167984 Representative total house income in the dwelling unit is $167984 -in.representative_income 167987 Representative total house income in the dwelling unit is $167987 -in.representative_income 167988 Representative total house income in the dwelling unit is $167988 -in.representative_income 167991 Representative total house income in the dwelling unit is $167991 -in.representative_income 167995 Representative total house income in the dwelling unit is $167995 -in.representative_income 167999 Representative total house income in the dwelling unit is $167999 -in.representative_income 168005 Representative total house income in the dwelling unit is $168005 -in.representative_income 168009 Representative total house income in the dwelling unit is $168009 -in.representative_income 168013 Representative total house income in the dwelling unit is $168013 -in.representative_income 168023 Representative total house income in the dwelling unit is $168023 -in.representative_income 168030 Representative total house income in the dwelling unit is $168030 -in.representative_income 168049 Representative total house income in the dwelling unit is $168049 -in.representative_income 168055 Representative total house income in the dwelling unit is $168055 -in.representative_income 168067 Representative total house income in the dwelling unit is $168067 -in.representative_income 168070 Representative total house income in the dwelling unit is $168070 -in.representative_income 168075 Representative total house income in the dwelling unit is $168075 -in.representative_income 168088 Representative total house income in the dwelling unit is $168088 -in.representative_income 168092 Representative total house income in the dwelling unit is $168092 -in.representative_income 168096 Representative total house income in the dwelling unit is $168096 -in.representative_income 168102 Representative total house income in the dwelling unit is $168102 -in.representative_income 168104 Representative total house income in the dwelling unit is $168104 -in.representative_income 168107 Representative total house income in the dwelling unit is $168107 -in.representative_income 168121 Representative total house income in the dwelling unit is $168121 -in.representative_income 168126 Representative total house income in the dwelling unit is $168126 -in.representative_income 168136 Representative total house income in the dwelling unit is $168136 -in.representative_income 168139 Representative total house income in the dwelling unit is $168139 -in.representative_income 168148 Representative total house income in the dwelling unit is $168148 -in.representative_income 168157 Representative total house income in the dwelling unit is $168157 -in.representative_income 168189 Representative total house income in the dwelling unit is $168189 -in.representative_income 168205 Representative total house income in the dwelling unit is $168205 -in.representative_income 168209 Representative total house income in the dwelling unit is $168209 -in.representative_income 168210 Representative total house income in the dwelling unit is $168210 -in.representative_income 168213 Representative total house income in the dwelling unit is $168213 -in.representative_income 168218 Representative total house income in the dwelling unit is $168218 -in.representative_income 168220 Representative total house income in the dwelling unit is $168220 -in.representative_income 168229 Representative total house income in the dwelling unit is $168229 -in.representative_income 168230 Representative total house income in the dwelling unit is $168230 -in.representative_income 168240 Representative total house income in the dwelling unit is $168240 -in.representative_income 168272 Representative total house income in the dwelling unit is $168272 -in.representative_income 168273 Representative total house income in the dwelling unit is $168273 -in.representative_income 168281 Representative total house income in the dwelling unit is $168281 -in.representative_income 168283 Representative total house income in the dwelling unit is $168283 -in.representative_income 168290 Representative total house income in the dwelling unit is $168290 -in.representative_income 168306 Representative total house income in the dwelling unit is $168306 -in.representative_income 168315 Representative total house income in the dwelling unit is $168315 -in.representative_income 168317 Representative total house income in the dwelling unit is $168317 -in.representative_income 168326 Representative total house income in the dwelling unit is $168326 -in.representative_income 168328 Representative total house income in the dwelling unit is $168328 -in.representative_income 168329 Representative total house income in the dwelling unit is $168329 -in.representative_income 168333 Representative total house income in the dwelling unit is $168333 -in.representative_income 168338 Representative total house income in the dwelling unit is $168338 -in.representative_income 168351 Representative total house income in the dwelling unit is $168351 -in.representative_income 168359 Representative total house income in the dwelling unit is $168359 -in.representative_income 168391 Representative total house income in the dwelling unit is $168391 -in.representative_income 168392 Representative total house income in the dwelling unit is $168392 -in.representative_income 168402 Representative total house income in the dwelling unit is $168402 -in.representative_income 168421 Representative total house income in the dwelling unit is $168421 -in.representative_income 168424 Representative total house income in the dwelling unit is $168424 -in.representative_income 168437 Representative total house income in the dwelling unit is $168437 -in.representative_income 168446 Representative total house income in the dwelling unit is $168446 -in.representative_income 168447 Representative total house income in the dwelling unit is $168447 -in.representative_income 168457 Representative total house income in the dwelling unit is $168457 -in.representative_income 168462 Representative total house income in the dwelling unit is $168462 -in.representative_income 168478 Representative total house income in the dwelling unit is $168478 -in.representative_income 168492 Representative total house income in the dwelling unit is $168492 -in.representative_income 168508 Representative total house income in the dwelling unit is $168508 -in.representative_income 168526 Representative total house income in the dwelling unit is $168526 -in.representative_income 168531 Representative total house income in the dwelling unit is $168531 -in.representative_income 168532 Representative total house income in the dwelling unit is $168532 -in.representative_income 168536 Representative total house income in the dwelling unit is $168536 -in.representative_income 168537 Representative total house income in the dwelling unit is $168537 -in.representative_income 168539 Representative total house income in the dwelling unit is $168539 -in.representative_income 168542 Representative total house income in the dwelling unit is $168542 -in.representative_income 168553 Representative total house income in the dwelling unit is $168553 -in.representative_income 168573 Representative total house income in the dwelling unit is $168573 -in.representative_income 168575 Representative total house income in the dwelling unit is $168575 -in.representative_income 168586 Representative total house income in the dwelling unit is $168586 -in.representative_income 168592 Representative total house income in the dwelling unit is $168592 -in.representative_income 168593 Representative total house income in the dwelling unit is $168593 -in.representative_income 168596 Representative total house income in the dwelling unit is $168596 -in.representative_income 168607 Representative total house income in the dwelling unit is $168607 -in.representative_income 168618 Representative total house income in the dwelling unit is $168618 -in.representative_income 168624 Representative total house income in the dwelling unit is $168624 -in.representative_income 168632 Representative total house income in the dwelling unit is $168632 -in.representative_income 168634 Representative total house income in the dwelling unit is $168634 -in.representative_income 168639 Representative total house income in the dwelling unit is $168639 -in.representative_income 168640 Representative total house income in the dwelling unit is $168640 -in.representative_income 168642 Representative total house income in the dwelling unit is $168642 -in.representative_income 168661 Representative total house income in the dwelling unit is $168661 -in.representative_income 168683 Representative total house income in the dwelling unit is $168683 -in.representative_income 168692 Representative total house income in the dwelling unit is $168692 -in.representative_income 168694 Representative total house income in the dwelling unit is $168694 -in.representative_income 168703 Representative total house income in the dwelling unit is $168703 -in.representative_income 168704 Representative total house income in the dwelling unit is $168704 -in.representative_income 168705 Representative total house income in the dwelling unit is $168705 -in.representative_income 168716 Representative total house income in the dwelling unit is $168716 -in.representative_income 168737 Representative total house income in the dwelling unit is $168737 -in.representative_income 168745 Representative total house income in the dwelling unit is $168745 -in.representative_income 168746 Representative total house income in the dwelling unit is $168746 -in.representative_income 168747 Representative total house income in the dwelling unit is $168747 -in.representative_income 168757 Representative total house income in the dwelling unit is $168757 -in.representative_income 168758 Representative total house income in the dwelling unit is $168758 -in.representative_income 168765 Representative total house income in the dwelling unit is $168765 -in.representative_income 168767 Representative total house income in the dwelling unit is $168767 -in.representative_income 168768 Representative total house income in the dwelling unit is $168768 -in.representative_income 168769 Representative total house income in the dwelling unit is $168769 -in.representative_income 168778 Representative total house income in the dwelling unit is $168778 -in.representative_income 168780 Representative total house income in the dwelling unit is $168780 -in.representative_income 168787 Representative total house income in the dwelling unit is $168787 -in.representative_income 168790 Representative total house income in the dwelling unit is $168790 -in.representative_income 168795 Representative total house income in the dwelling unit is $168795 -in.representative_income 168797 Representative total house income in the dwelling unit is $168797 -in.representative_income 168800 Representative total house income in the dwelling unit is $168800 -in.representative_income 168823 Representative total house income in the dwelling unit is $168823 -in.representative_income 168842 Representative total house income in the dwelling unit is $168842 -in.representative_income 168849 Representative total house income in the dwelling unit is $168849 -in.representative_income 168854 Representative total house income in the dwelling unit is $168854 -in.representative_income 168877 Representative total house income in the dwelling unit is $168877 -in.representative_income 168882 Representative total house income in the dwelling unit is $168882 -in.representative_income 168895 Representative total house income in the dwelling unit is $168895 -in.representative_income 168896 Representative total house income in the dwelling unit is $168896 -in.representative_income 168899 Representative total house income in the dwelling unit is $168899 -in.representative_income 168906 Representative total house income in the dwelling unit is $168906 -in.representative_income 168907 Representative total house income in the dwelling unit is $168907 -in.representative_income 168915 Representative total house income in the dwelling unit is $168915 -in.representative_income 168920 Representative total house income in the dwelling unit is $168920 -in.representative_income 168927 Representative total house income in the dwelling unit is $168927 -in.representative_income 168947 Representative total house income in the dwelling unit is $168947 -in.representative_income 168952 Representative total house income in the dwelling unit is $168952 -in.representative_income 168959 Representative total house income in the dwelling unit is $168959 -in.representative_income 168960 Representative total house income in the dwelling unit is $168960 -in.representative_income 168969 Representative total house income in the dwelling unit is $168969 -in.representative_income 168972 Representative total house income in the dwelling unit is $168972 -in.representative_income 168973 Representative total house income in the dwelling unit is $168973 -in.representative_income 168985 Representative total house income in the dwelling unit is $168985 -in.representative_income 168997 Representative total house income in the dwelling unit is $168997 -in.representative_income 169001 Representative total house income in the dwelling unit is $169001 -in.representative_income 169054 Representative total house income in the dwelling unit is $169054 -in.representative_income 169056 Representative total house income in the dwelling unit is $169056 -in.representative_income 169058 Representative total house income in the dwelling unit is $169058 -in.representative_income 169064 Representative total house income in the dwelling unit is $169064 -in.representative_income 169068 Representative total house income in the dwelling unit is $169068 -in.representative_income 169088 Representative total house income in the dwelling unit is $169088 -in.representative_income 169093 Representative total house income in the dwelling unit is $169093 -in.representative_income 169098 Representative total house income in the dwelling unit is $169098 -in.representative_income 169108 Representative total house income in the dwelling unit is $169108 -in.representative_income 169118 Representative total house income in the dwelling unit is $169118 -in.representative_income 169138 Representative total house income in the dwelling unit is $169138 -in.representative_income 169158 Representative total house income in the dwelling unit is $169158 -in.representative_income 169159 Representative total house income in the dwelling unit is $169159 -in.representative_income 169169 Representative total house income in the dwelling unit is $169169 -in.representative_income 169176 Representative total house income in the dwelling unit is $169176 -in.representative_income 169177 Representative total house income in the dwelling unit is $169177 -in.representative_income 169179 Representative total house income in the dwelling unit is $169179 -in.representative_income 169189 Representative total house income in the dwelling unit is $169189 -in.representative_income 169190 Representative total house income in the dwelling unit is $169190 -in.representative_income 169199 Representative total house income in the dwelling unit is $169199 -in.representative_income 169202 Representative total house income in the dwelling unit is $169202 -in.representative_income 169209 Representative total house income in the dwelling unit is $169209 -in.representative_income 169229 Representative total house income in the dwelling unit is $169229 -in.representative_income 169241 Representative total house income in the dwelling unit is $169241 -in.representative_income 169250 Representative total house income in the dwelling unit is $169250 -in.representative_income 169261 Representative total house income in the dwelling unit is $169261 -in.representative_income 169264 Representative total house income in the dwelling unit is $169264 -in.representative_income 169269 Representative total house income in the dwelling unit is $169269 -in.representative_income 169271 Representative total house income in the dwelling unit is $169271 -in.representative_income 169282 Representative total house income in the dwelling unit is $169282 -in.representative_income 169283 Representative total house income in the dwelling unit is $169283 -in.representative_income 169293 Representative total house income in the dwelling unit is $169293 -in.representative_income 169300 Representative total house income in the dwelling unit is $169300 -in.representative_income 169310 Representative total house income in the dwelling unit is $169310 -in.representative_income 169317 Representative total house income in the dwelling unit is $169317 -in.representative_income 169321 Representative total house income in the dwelling unit is $169321 -in.representative_income 169342 Representative total house income in the dwelling unit is $169342 -in.representative_income 169343 Representative total house income in the dwelling unit is $169343 -in.representative_income 169347 Representative total house income in the dwelling unit is $169347 -in.representative_income 169351 Representative total house income in the dwelling unit is $169351 -in.representative_income 169364 Representative total house income in the dwelling unit is $169364 -in.representative_income 169369 Representative total house income in the dwelling unit is $169369 -in.representative_income 169370 Representative total house income in the dwelling unit is $169370 -in.representative_income 169380 Representative total house income in the dwelling unit is $169380 -in.representative_income 169385 Representative total house income in the dwelling unit is $169385 -in.representative_income 169391 Representative total house income in the dwelling unit is $169391 -in.representative_income 169401 Representative total house income in the dwelling unit is $169401 -in.representative_income 169411 Representative total house income in the dwelling unit is $169411 -in.representative_income 169412 Representative total house income in the dwelling unit is $169412 -in.representative_income 169418 Representative total house income in the dwelling unit is $169418 -in.representative_income 169423 Representative total house income in the dwelling unit is $169423 -in.representative_income 169452 Representative total house income in the dwelling unit is $169452 -in.representative_income 169468 Representative total house income in the dwelling unit is $169468 -in.representative_income 169475 Representative total house income in the dwelling unit is $169475 -in.representative_income 169497 Representative total house income in the dwelling unit is $169497 -in.representative_income 169498 Representative total house income in the dwelling unit is $169498 -in.representative_income 169501 Representative total house income in the dwelling unit is $169501 -in.representative_income 169502 Representative total house income in the dwelling unit is $169502 -in.representative_income 169518 Representative total house income in the dwelling unit is $169518 -in.representative_income 169523 Representative total house income in the dwelling unit is $169523 -in.representative_income 169526 Representative total house income in the dwelling unit is $169526 -in.representative_income 169528 Representative total house income in the dwelling unit is $169528 -in.representative_income 169538 Representative total house income in the dwelling unit is $169538 -in.representative_income 169543 Representative total house income in the dwelling unit is $169543 -in.representative_income 169571 Representative total house income in the dwelling unit is $169571 -in.representative_income 169580 Representative total house income in the dwelling unit is $169580 -in.representative_income 169603 Representative total house income in the dwelling unit is $169603 -in.representative_income 169605 Representative total house income in the dwelling unit is $169605 -in.representative_income 169612 Representative total house income in the dwelling unit is $169612 -in.representative_income 169623 Representative total house income in the dwelling unit is $169623 -in.representative_income 169626 Representative total house income in the dwelling unit is $169626 -in.representative_income 169633 Representative total house income in the dwelling unit is $169633 -in.representative_income 169634 Representative total house income in the dwelling unit is $169634 -in.representative_income 169638 Representative total house income in the dwelling unit is $169638 -in.representative_income 169642 Representative total house income in the dwelling unit is $169642 -in.representative_income 169648 Representative total house income in the dwelling unit is $169648 -in.representative_income 169654 Representative total house income in the dwelling unit is $169654 -in.representative_income 169659 Representative total house income in the dwelling unit is $169659 -in.representative_income 169664 Representative total house income in the dwelling unit is $169664 -in.representative_income 169673 Representative total house income in the dwelling unit is $169673 -in.representative_income 169674 Representative total house income in the dwelling unit is $169674 -in.representative_income 169686 Representative total house income in the dwelling unit is $169686 -in.representative_income 169688 Representative total house income in the dwelling unit is $169688 -in.representative_income 169699 Representative total house income in the dwelling unit is $169699 -in.representative_income 169704 Representative total house income in the dwelling unit is $169704 -in.representative_income 169707 Representative total house income in the dwelling unit is $169707 -in.representative_income 169712 Representative total house income in the dwelling unit is $169712 -in.representative_income 169742 Representative total house income in the dwelling unit is $169742 -in.representative_income 169746 Representative total house income in the dwelling unit is $169746 -in.representative_income 169748 Representative total house income in the dwelling unit is $169748 -in.representative_income 169749 Representative total house income in the dwelling unit is $169749 -in.representative_income 169755 Representative total house income in the dwelling unit is $169755 -in.representative_income 169759 Representative total house income in the dwelling unit is $169759 -in.representative_income 169765 Representative total house income in the dwelling unit is $169765 -in.representative_income 169777 Representative total house income in the dwelling unit is $169777 -in.representative_income 169788 Representative total house income in the dwelling unit is $169788 -in.representative_income 169792 Representative total house income in the dwelling unit is $169792 -in.representative_income 169802 Representative total house income in the dwelling unit is $169802 -in.representative_income 169805 Representative total house income in the dwelling unit is $169805 -in.representative_income 169820 Representative total house income in the dwelling unit is $169820 -in.representative_income 169822 Representative total house income in the dwelling unit is $169822 -in.representative_income 169823 Representative total house income in the dwelling unit is $169823 -in.representative_income 169828 Representative total house income in the dwelling unit is $169828 -in.representative_income 169833 Representative total house income in the dwelling unit is $169833 -in.representative_income 169839 Representative total house income in the dwelling unit is $169839 -in.representative_income 169849 Representative total house income in the dwelling unit is $169849 -in.representative_income 169854 Representative total house income in the dwelling unit is $169854 -in.representative_income 169858 Representative total house income in the dwelling unit is $169858 -in.representative_income 169862 Representative total house income in the dwelling unit is $169862 -in.representative_income 169880 Representative total house income in the dwelling unit is $169880 -in.representative_income 169884 Representative total house income in the dwelling unit is $169884 -in.representative_income 169897 Representative total house income in the dwelling unit is $169897 -in.representative_income 169903 Representative total house income in the dwelling unit is $169903 -in.representative_income 169906 Representative total house income in the dwelling unit is $169906 -in.representative_income 169912 Representative total house income in the dwelling unit is $169912 -in.representative_income 169916 Representative total house income in the dwelling unit is $169916 -in.representative_income 169927 Representative total house income in the dwelling unit is $169927 -in.representative_income 169928 Representative total house income in the dwelling unit is $169928 -in.representative_income 169957 Representative total house income in the dwelling unit is $169957 -in.representative_income 169958 Representative total house income in the dwelling unit is $169958 -in.representative_income 169961 Representative total house income in the dwelling unit is $169961 -in.representative_income 169962 Representative total house income in the dwelling unit is $169962 -in.representative_income 169977 Representative total house income in the dwelling unit is $169977 -in.representative_income 169981 Representative total house income in the dwelling unit is $169981 -in.representative_income 169984 Representative total house income in the dwelling unit is $169984 -in.representative_income 169991 Representative total house income in the dwelling unit is $169991 -in.representative_income 170002 Representative total house income in the dwelling unit is $170002 -in.representative_income 170007 Representative total house income in the dwelling unit is $170007 -in.representative_income 170022 Representative total house income in the dwelling unit is $170022 -in.representative_income 170035 Representative total house income in the dwelling unit is $170035 -in.representative_income 170048 Representative total house income in the dwelling unit is $170048 -in.representative_income 170058 Representative total house income in the dwelling unit is $170058 -in.representative_income 170066 Representative total house income in the dwelling unit is $170066 -in.representative_income 170067 Representative total house income in the dwelling unit is $170067 -in.representative_income 170087 Representative total house income in the dwelling unit is $170087 -in.representative_income 170088 Representative total house income in the dwelling unit is $170088 -in.representative_income 170099 Representative total house income in the dwelling unit is $170099 -in.representative_income 170108 Representative total house income in the dwelling unit is $170108 -in.representative_income 170120 Representative total house income in the dwelling unit is $170120 -in.representative_income 170127 Representative total house income in the dwelling unit is $170127 -in.representative_income 170138 Representative total house income in the dwelling unit is $170138 -in.representative_income 170141 Representative total house income in the dwelling unit is $170141 -in.representative_income 170159 Representative total house income in the dwelling unit is $170159 -in.representative_income 170161 Representative total house income in the dwelling unit is $170161 -in.representative_income 170174 Representative total house income in the dwelling unit is $170174 -in.representative_income 170175 Representative total house income in the dwelling unit is $170175 -in.representative_income 170176 Representative total house income in the dwelling unit is $170176 -in.representative_income 170178 Representative total house income in the dwelling unit is $170178 -in.representative_income 170185 Representative total house income in the dwelling unit is $170185 -in.representative_income 170189 Representative total house income in the dwelling unit is $170189 -in.representative_income 170209 Representative total house income in the dwelling unit is $170209 -in.representative_income 170210 Representative total house income in the dwelling unit is $170210 -in.representative_income 170213 Representative total house income in the dwelling unit is $170213 -in.representative_income 170221 Representative total house income in the dwelling unit is $170221 -in.representative_income 170224 Representative total house income in the dwelling unit is $170224 -in.representative_income 170230 Representative total house income in the dwelling unit is $170230 -in.representative_income 170240 Representative total house income in the dwelling unit is $170240 -in.representative_income 170241 Representative total house income in the dwelling unit is $170241 -in.representative_income 170249 Representative total house income in the dwelling unit is $170249 -in.representative_income 170250 Representative total house income in the dwelling unit is $170250 -in.representative_income 170254 Representative total house income in the dwelling unit is $170254 -in.representative_income 170256 Representative total house income in the dwelling unit is $170256 -in.representative_income 170260 Representative total house income in the dwelling unit is $170260 -in.representative_income 170272 Representative total house income in the dwelling unit is $170272 -in.representative_income 170282 Representative total house income in the dwelling unit is $170282 -in.representative_income 170292 Representative total house income in the dwelling unit is $170292 -in.representative_income 170304 Representative total house income in the dwelling unit is $170304 -in.representative_income 170310 Representative total house income in the dwelling unit is $170310 -in.representative_income 170319 Representative total house income in the dwelling unit is $170319 -in.representative_income 170324 Representative total house income in the dwelling unit is $170324 -in.representative_income 170328 Representative total house income in the dwelling unit is $170328 -in.representative_income 170346 Representative total house income in the dwelling unit is $170346 -in.representative_income 170356 Representative total house income in the dwelling unit is $170356 -in.representative_income 170361 Representative total house income in the dwelling unit is $170361 -in.representative_income 170363 Representative total house income in the dwelling unit is $170363 -in.representative_income 170365 Representative total house income in the dwelling unit is $170365 -in.representative_income 170371 Representative total house income in the dwelling unit is $170371 -in.representative_income 170390 Representative total house income in the dwelling unit is $170390 -in.representative_income 170396 Representative total house income in the dwelling unit is $170396 -in.representative_income 170411 Representative total house income in the dwelling unit is $170411 -in.representative_income 170425 Representative total house income in the dwelling unit is $170425 -in.representative_income 170427 Representative total house income in the dwelling unit is $170427 -in.representative_income 170444 Representative total house income in the dwelling unit is $170444 -in.representative_income 170453 Representative total house income in the dwelling unit is $170453 -in.representative_income 170464 Representative total house income in the dwelling unit is $170464 -in.representative_income 170495 Representative total house income in the dwelling unit is $170495 -in.representative_income 170496 Representative total house income in the dwelling unit is $170496 -in.representative_income 170498 Representative total house income in the dwelling unit is $170498 -in.representative_income 170499 Representative total house income in the dwelling unit is $170499 -in.representative_income 170512 Representative total house income in the dwelling unit is $170512 -in.representative_income 170518 Representative total house income in the dwelling unit is $170518 -in.representative_income 170530 Representative total house income in the dwelling unit is $170530 -in.representative_income 170551 Representative total house income in the dwelling unit is $170551 -in.representative_income 170569 Representative total house income in the dwelling unit is $170569 -in.representative_income 170572 Representative total house income in the dwelling unit is $170572 -in.representative_income 170593 Representative total house income in the dwelling unit is $170593 -in.representative_income 170603 Representative total house income in the dwelling unit is $170603 -in.representative_income 170606 Representative total house income in the dwelling unit is $170606 -in.representative_income 170613 Representative total house income in the dwelling unit is $170613 -in.representative_income 170625 Representative total house income in the dwelling unit is $170625 -in.representative_income 170635 Representative total house income in the dwelling unit is $170635 -in.representative_income 170678 Representative total house income in the dwelling unit is $170678 -in.representative_income 170682 Representative total house income in the dwelling unit is $170682 -in.representative_income 170706 Representative total house income in the dwelling unit is $170706 -in.representative_income 170711 Representative total house income in the dwelling unit is $170711 -in.representative_income 170715 Representative total house income in the dwelling unit is $170715 -in.representative_income 170721 Representative total house income in the dwelling unit is $170721 -in.representative_income 170726 Representative total house income in the dwelling unit is $170726 -in.representative_income 170732 Representative total house income in the dwelling unit is $170732 -in.representative_income 170740 Representative total house income in the dwelling unit is $170740 -in.representative_income 170758 Representative total house income in the dwelling unit is $170758 -in.representative_income 170772 Representative total house income in the dwelling unit is $170772 -in.representative_income 170786 Representative total house income in the dwelling unit is $170786 -in.representative_income 170787 Representative total house income in the dwelling unit is $170787 -in.representative_income 170801 Representative total house income in the dwelling unit is $170801 -in.representative_income 170808 Representative total house income in the dwelling unit is $170808 -in.representative_income 170816 Representative total house income in the dwelling unit is $170816 -in.representative_income 170818 Representative total house income in the dwelling unit is $170818 -in.representative_income 170823 Representative total house income in the dwelling unit is $170823 -in.representative_income 170840 Representative total house income in the dwelling unit is $170840 -in.representative_income 170846 Representative total house income in the dwelling unit is $170846 -in.representative_income 170852 Representative total house income in the dwelling unit is $170852 -in.representative_income 170868 Representative total house income in the dwelling unit is $170868 -in.representative_income 170878 Representative total house income in the dwelling unit is $170878 -in.representative_income 170891 Representative total house income in the dwelling unit is $170891 -in.representative_income 170893 Representative total house income in the dwelling unit is $170893 -in.representative_income 170899 Representative total house income in the dwelling unit is $170899 -in.representative_income 170901 Representative total house income in the dwelling unit is $170901 -in.representative_income 170911 Representative total house income in the dwelling unit is $170911 -in.representative_income 170917 Representative total house income in the dwelling unit is $170917 -in.representative_income 170927 Representative total house income in the dwelling unit is $170927 -in.representative_income 170930 Representative total house income in the dwelling unit is $170930 -in.representative_income 170931 Representative total house income in the dwelling unit is $170931 -in.representative_income 170941 Representative total house income in the dwelling unit is $170941 -in.representative_income 170950 Representative total house income in the dwelling unit is $170950 -in.representative_income 170952 Representative total house income in the dwelling unit is $170952 -in.representative_income 170967 Representative total house income in the dwelling unit is $170967 -in.representative_income 170973 Representative total house income in the dwelling unit is $170973 -in.representative_income 170984 Representative total house income in the dwelling unit is $170984 -in.representative_income 171001 Representative total house income in the dwelling unit is $171001 -in.representative_income 171004 Representative total house income in the dwelling unit is $171004 -in.representative_income 171015 Representative total house income in the dwelling unit is $171015 -in.representative_income 171018 Representative total house income in the dwelling unit is $171018 -in.representative_income 171038 Representative total house income in the dwelling unit is $171038 -in.representative_income 171057 Representative total house income in the dwelling unit is $171057 -in.representative_income 171067 Representative total house income in the dwelling unit is $171067 -in.representative_income 171084 Representative total house income in the dwelling unit is $171084 -in.representative_income 171089 Representative total house income in the dwelling unit is $171089 -in.representative_income 171108 Representative total house income in the dwelling unit is $171108 -in.representative_income 171118 Representative total house income in the dwelling unit is $171118 -in.representative_income 171119 Representative total house income in the dwelling unit is $171119 -in.representative_income 171142 Representative total house income in the dwelling unit is $171142 -in.representative_income 171146 Representative total house income in the dwelling unit is $171146 -in.representative_income 171163 Representative total house income in the dwelling unit is $171163 -in.representative_income 171179 Representative total house income in the dwelling unit is $171179 -in.representative_income 171188 Representative total house income in the dwelling unit is $171188 -in.representative_income 171204 Representative total house income in the dwelling unit is $171204 -in.representative_income 171215 Representative total house income in the dwelling unit is $171215 -in.representative_income 171220 Representative total house income in the dwelling unit is $171220 -in.representative_income 171222 Representative total house income in the dwelling unit is $171222 -in.representative_income 171232 Representative total house income in the dwelling unit is $171232 -in.representative_income 171241 Representative total house income in the dwelling unit is $171241 -in.representative_income 171254 Representative total house income in the dwelling unit is $171254 -in.representative_income 171268 Representative total house income in the dwelling unit is $171268 -in.representative_income 171282 Representative total house income in the dwelling unit is $171282 -in.representative_income 171321 Representative total house income in the dwelling unit is $171321 -in.representative_income 171322 Representative total house income in the dwelling unit is $171322 -in.representative_income 171324 Representative total house income in the dwelling unit is $171324 -in.representative_income 171330 Representative total house income in the dwelling unit is $171330 -in.representative_income 171334 Representative total house income in the dwelling unit is $171334 -in.representative_income 171354 Representative total house income in the dwelling unit is $171354 -in.representative_income 171355 Representative total house income in the dwelling unit is $171355 -in.representative_income 171362 Representative total house income in the dwelling unit is $171362 -in.representative_income 171373 Representative total house income in the dwelling unit is $171373 -in.representative_income 171391 Representative total house income in the dwelling unit is $171391 -in.representative_income 171398 Representative total house income in the dwelling unit is $171398 -in.representative_income 171422 Representative total house income in the dwelling unit is $171422 -in.representative_income 171427 Representative total house income in the dwelling unit is $171427 -in.representative_income 171430 Representative total house income in the dwelling unit is $171430 -in.representative_income 171436 Representative total house income in the dwelling unit is $171436 -in.representative_income 171448 Representative total house income in the dwelling unit is $171448 -in.representative_income 171449 Representative total house income in the dwelling unit is $171449 -in.representative_income 171470 Representative total house income in the dwelling unit is $171470 -in.representative_income 171478 Representative total house income in the dwelling unit is $171478 -in.representative_income 171486 Representative total house income in the dwelling unit is $171486 -in.representative_income 171523 Representative total house income in the dwelling unit is $171523 -in.representative_income 171531 Representative total house income in the dwelling unit is $171531 -in.representative_income 171537 Representative total house income in the dwelling unit is $171537 -in.representative_income 171551 Representative total house income in the dwelling unit is $171551 -in.representative_income 171563 Representative total house income in the dwelling unit is $171563 -in.representative_income 171569 Representative total house income in the dwelling unit is $171569 -in.representative_income 171573 Representative total house income in the dwelling unit is $171573 -in.representative_income 171579 Representative total house income in the dwelling unit is $171579 -in.representative_income 171624 Representative total house income in the dwelling unit is $171624 -in.representative_income 171634 Representative total house income in the dwelling unit is $171634 -in.representative_income 171644 Representative total house income in the dwelling unit is $171644 -in.representative_income 171645 Representative total house income in the dwelling unit is $171645 -in.representative_income 171654 Representative total house income in the dwelling unit is $171654 -in.representative_income 171687 Representative total house income in the dwelling unit is $171687 -in.representative_income 171690 Representative total house income in the dwelling unit is $171690 -in.representative_income 171698 Representative total house income in the dwelling unit is $171698 -in.representative_income 171725 Representative total house income in the dwelling unit is $171725 -in.representative_income 171737 Representative total house income in the dwelling unit is $171737 -in.representative_income 171738 Representative total house income in the dwelling unit is $171738 -in.representative_income 171751 Representative total house income in the dwelling unit is $171751 -in.representative_income 171755 Representative total house income in the dwelling unit is $171755 -in.representative_income 171763 Representative total house income in the dwelling unit is $171763 -in.representative_income 171774 Representative total house income in the dwelling unit is $171774 -in.representative_income 171775 Representative total house income in the dwelling unit is $171775 -in.representative_income 171795 Representative total house income in the dwelling unit is $171795 -in.representative_income 171803 Representative total house income in the dwelling unit is $171803 -in.representative_income 171806 Representative total house income in the dwelling unit is $171806 -in.representative_income 171826 Representative total house income in the dwelling unit is $171826 -in.representative_income 171827 Representative total house income in the dwelling unit is $171827 -in.representative_income 171839 Representative total house income in the dwelling unit is $171839 -in.representative_income 171848 Representative total house income in the dwelling unit is $171848 -in.representative_income 171849 Representative total house income in the dwelling unit is $171849 -in.representative_income 171859 Representative total house income in the dwelling unit is $171859 -in.representative_income 171861 Representative total house income in the dwelling unit is $171861 -in.representative_income 171870 Representative total house income in the dwelling unit is $171870 -in.representative_income 171873 Representative total house income in the dwelling unit is $171873 -in.representative_income 171876 Representative total house income in the dwelling unit is $171876 -in.representative_income 171880 Representative total house income in the dwelling unit is $171880 -in.representative_income 171888 Representative total house income in the dwelling unit is $171888 -in.representative_income 171901 Representative total house income in the dwelling unit is $171901 -in.representative_income 171903 Representative total house income in the dwelling unit is $171903 -in.representative_income 171911 Representative total house income in the dwelling unit is $171911 -in.representative_income 171913 Representative total house income in the dwelling unit is $171913 -in.representative_income 171924 Representative total house income in the dwelling unit is $171924 -in.representative_income 171927 Representative total house income in the dwelling unit is $171927 -in.representative_income 171928 Representative total house income in the dwelling unit is $171928 -in.representative_income 171940 Representative total house income in the dwelling unit is $171940 -in.representative_income 171943 Representative total house income in the dwelling unit is $171943 -in.representative_income 171957 Representative total house income in the dwelling unit is $171957 -in.representative_income 171964 Representative total house income in the dwelling unit is $171964 -in.representative_income 171966 Representative total house income in the dwelling unit is $171966 -in.representative_income 171995 Representative total house income in the dwelling unit is $171995 -in.representative_income 171999 Representative total house income in the dwelling unit is $171999 -in.representative_income 172011 Representative total house income in the dwelling unit is $172011 -in.representative_income 172028 Representative total house income in the dwelling unit is $172028 -in.representative_income 172038 Representative total house income in the dwelling unit is $172038 -in.representative_income 172042 Representative total house income in the dwelling unit is $172042 -in.representative_income 172043 Representative total house income in the dwelling unit is $172043 -in.representative_income 172046 Representative total house income in the dwelling unit is $172046 -in.representative_income 172048 Representative total house income in the dwelling unit is $172048 -in.representative_income 172054 Representative total house income in the dwelling unit is $172054 -in.representative_income 172059 Representative total house income in the dwelling unit is $172059 -in.representative_income 172078 Representative total house income in the dwelling unit is $172078 -in.representative_income 172111 Representative total house income in the dwelling unit is $172111 -in.representative_income 172119 Representative total house income in the dwelling unit is $172119 -in.representative_income 172129 Representative total house income in the dwelling unit is $172129 -in.representative_income 172135 Representative total house income in the dwelling unit is $172135 -in.representative_income 172139 Representative total house income in the dwelling unit is $172139 -in.representative_income 172150 Representative total house income in the dwelling unit is $172150 -in.representative_income 172182 Representative total house income in the dwelling unit is $172182 -in.representative_income 172183 Representative total house income in the dwelling unit is $172183 -in.representative_income 172217 Representative total house income in the dwelling unit is $172217 -in.representative_income 172226 Representative total house income in the dwelling unit is $172226 -in.representative_income 172230 Representative total house income in the dwelling unit is $172230 -in.representative_income 172245 Representative total house income in the dwelling unit is $172245 -in.representative_income 172253 Representative total house income in the dwelling unit is $172253 -in.representative_income 172260 Representative total house income in the dwelling unit is $172260 -in.representative_income 172270 Representative total house income in the dwelling unit is $172270 -in.representative_income 172288 Representative total house income in the dwelling unit is $172288 -in.representative_income 172323 Representative total house income in the dwelling unit is $172323 -in.representative_income 172331 Representative total house income in the dwelling unit is $172331 -in.representative_income 172335 Representative total house income in the dwelling unit is $172335 -in.representative_income 172356 Representative total house income in the dwelling unit is $172356 -in.representative_income 172396 Representative total house income in the dwelling unit is $172396 -in.representative_income 172407 Representative total house income in the dwelling unit is $172407 -in.representative_income 172411 Representative total house income in the dwelling unit is $172411 -in.representative_income 172428 Representative total house income in the dwelling unit is $172428 -in.representative_income 172432 Representative total house income in the dwelling unit is $172432 -in.representative_income 172443 Representative total house income in the dwelling unit is $172443 -in.representative_income 172458 Representative total house income in the dwelling unit is $172458 -in.representative_income 172503 Representative total house income in the dwelling unit is $172503 -in.representative_income 172513 Representative total house income in the dwelling unit is $172513 -in.representative_income 172533 Representative total house income in the dwelling unit is $172533 -in.representative_income 172551 Representative total house income in the dwelling unit is $172551 -in.representative_income 172562 Representative total house income in the dwelling unit is $172562 -in.representative_income 172587 Representative total house income in the dwelling unit is $172587 -in.representative_income 172604 Representative total house income in the dwelling unit is $172604 -in.representative_income 172611 Representative total house income in the dwelling unit is $172611 -in.representative_income 172639 Representative total house income in the dwelling unit is $172639 -in.representative_income 172649 Representative total house income in the dwelling unit is $172649 -in.representative_income 172659 Representative total house income in the dwelling unit is $172659 -in.representative_income 172665 Representative total house income in the dwelling unit is $172665 -in.representative_income 172675 Representative total house income in the dwelling unit is $172675 -in.representative_income 172717 Representative total house income in the dwelling unit is $172717 -in.representative_income 172718 Representative total house income in the dwelling unit is $172718 -in.representative_income 172735 Representative total house income in the dwelling unit is $172735 -in.representative_income 172745 Representative total house income in the dwelling unit is $172745 -in.representative_income 172755 Representative total house income in the dwelling unit is $172755 -in.representative_income 172767 Representative total house income in the dwelling unit is $172767 -in.representative_income 172769 Representative total house income in the dwelling unit is $172769 -in.representative_income 172785 Representative total house income in the dwelling unit is $172785 -in.representative_income 172797 Representative total house income in the dwelling unit is $172797 -in.representative_income 172799 Representative total house income in the dwelling unit is $172799 -in.representative_income 172812 Representative total house income in the dwelling unit is $172812 -in.representative_income 172821 Representative total house income in the dwelling unit is $172821 -in.representative_income 172826 Representative total house income in the dwelling unit is $172826 -in.representative_income 172836 Representative total house income in the dwelling unit is $172836 -in.representative_income 172847 Representative total house income in the dwelling unit is $172847 -in.representative_income 172850 Representative total house income in the dwelling unit is $172850 -in.representative_income 172872 Representative total house income in the dwelling unit is $172872 -in.representative_income 172875 Representative total house income in the dwelling unit is $172875 -in.representative_income 172886 Representative total house income in the dwelling unit is $172886 -in.representative_income 172897 Representative total house income in the dwelling unit is $172897 -in.representative_income 172929 Representative total house income in the dwelling unit is $172929 -in.representative_income 172932 Representative total house income in the dwelling unit is $172932 -in.representative_income 172937 Representative total house income in the dwelling unit is $172937 -in.representative_income 172947 Representative total house income in the dwelling unit is $172947 -in.representative_income 172954 Representative total house income in the dwelling unit is $172954 -in.representative_income 172956 Representative total house income in the dwelling unit is $172956 -in.representative_income 172976 Representative total house income in the dwelling unit is $172976 -in.representative_income 172983 Representative total house income in the dwelling unit is $172983 -in.representative_income 172987 Representative total house income in the dwelling unit is $172987 -in.representative_income 173004 Representative total house income in the dwelling unit is $173004 -in.representative_income 173038 Representative total house income in the dwelling unit is $173038 -in.representative_income 173040 Representative total house income in the dwelling unit is $173040 -in.representative_income 173061 Representative total house income in the dwelling unit is $173061 -in.representative_income 173068 Representative total house income in the dwelling unit is $173068 -in.representative_income 173077 Representative total house income in the dwelling unit is $173077 -in.representative_income 173080 Representative total house income in the dwelling unit is $173080 -in.representative_income 173082 Representative total house income in the dwelling unit is $173082 -in.representative_income 173092 Representative total house income in the dwelling unit is $173092 -in.representative_income 173139 Representative total house income in the dwelling unit is $173139 -in.representative_income 173147 Representative total house income in the dwelling unit is $173147 -in.representative_income 173166 Representative total house income in the dwelling unit is $173166 -in.representative_income 173181 Representative total house income in the dwelling unit is $173181 -in.representative_income 173187 Representative total house income in the dwelling unit is $173187 -in.representative_income 173200 Representative total house income in the dwelling unit is $173200 -in.representative_income 173240 Representative total house income in the dwelling unit is $173240 -in.representative_income 173255 Representative total house income in the dwelling unit is $173255 -in.representative_income 173271 Representative total house income in the dwelling unit is $173271 -in.representative_income 173284 Representative total house income in the dwelling unit is $173284 -in.representative_income 173286 Representative total house income in the dwelling unit is $173286 -in.representative_income 173308 Representative total house income in the dwelling unit is $173308 -in.representative_income 173311 Representative total house income in the dwelling unit is $173311 -in.representative_income 173325 Representative total house income in the dwelling unit is $173325 -in.representative_income 173341 Representative total house income in the dwelling unit is $173341 -in.representative_income 173362 Representative total house income in the dwelling unit is $173362 -in.representative_income 173377 Representative total house income in the dwelling unit is $173377 -in.representative_income 173388 Representative total house income in the dwelling unit is $173388 -in.representative_income 173415 Representative total house income in the dwelling unit is $173415 -in.representative_income 173416 Representative total house income in the dwelling unit is $173416 -in.representative_income 173456 Representative total house income in the dwelling unit is $173456 -in.representative_income 173469 Representative total house income in the dwelling unit is $173469 -in.representative_income 173483 Representative total house income in the dwelling unit is $173483 -in.representative_income 173490 Representative total house income in the dwelling unit is $173490 -in.representative_income 173523 Representative total house income in the dwelling unit is $173523 -in.representative_income 173525 Representative total house income in the dwelling unit is $173525 -in.representative_income 173543 Representative total house income in the dwelling unit is $173543 -in.representative_income 173577 Representative total house income in the dwelling unit is $173577 -in.representative_income 173588 Representative total house income in the dwelling unit is $173588 -in.representative_income 173593 Representative total house income in the dwelling unit is $173593 -in.representative_income 173598 Representative total house income in the dwelling unit is $173598 -in.representative_income 173631 Representative total house income in the dwelling unit is $173631 -in.representative_income 173644 Representative total house income in the dwelling unit is $173644 -in.representative_income 173664 Representative total house income in the dwelling unit is $173664 -in.representative_income 173674 Representative total house income in the dwelling unit is $173674 -in.representative_income 173684 Representative total house income in the dwelling unit is $173684 -in.representative_income 173694 Representative total house income in the dwelling unit is $173694 -in.representative_income 173697 Representative total house income in the dwelling unit is $173697 -in.representative_income 173716 Representative total house income in the dwelling unit is $173716 -in.representative_income 173737 Representative total house income in the dwelling unit is $173737 -in.representative_income 173739 Representative total house income in the dwelling unit is $173739 -in.representative_income 173745 Representative total house income in the dwelling unit is $173745 -in.representative_income 173792 Representative total house income in the dwelling unit is $173792 -in.representative_income 173795 Representative total house income in the dwelling unit is $173795 -in.representative_income 173799 Representative total house income in the dwelling unit is $173799 -in.representative_income 173800 Representative total house income in the dwelling unit is $173800 -in.representative_income 173846 Representative total house income in the dwelling unit is $173846 -in.representative_income 173896 Representative total house income in the dwelling unit is $173896 -in.representative_income 173899 Representative total house income in the dwelling unit is $173899 -in.representative_income 173903 Representative total house income in the dwelling unit is $173903 -in.representative_income 173904 Representative total house income in the dwelling unit is $173904 -in.representative_income 173913 Representative total house income in the dwelling unit is $173913 -in.representative_income 173934 Representative total house income in the dwelling unit is $173934 -in.representative_income 173944 Representative total house income in the dwelling unit is $173944 -in.representative_income 173947 Representative total house income in the dwelling unit is $173947 -in.representative_income 173956 Representative total house income in the dwelling unit is $173956 -in.representative_income 173960 Representative total house income in the dwelling unit is $173960 -in.representative_income 173983 Representative total house income in the dwelling unit is $173983 -in.representative_income 174005 Representative total house income in the dwelling unit is $174005 -in.representative_income 174006 Representative total house income in the dwelling unit is $174006 -in.representative_income 174009 Representative total house income in the dwelling unit is $174009 -in.representative_income 174017 Representative total house income in the dwelling unit is $174017 -in.representative_income 174027 Representative total house income in the dwelling unit is $174027 -in.representative_income 174031 Representative total house income in the dwelling unit is $174031 -in.representative_income 174039 Representative total house income in the dwelling unit is $174039 -in.representative_income 174048 Representative total house income in the dwelling unit is $174048 -in.representative_income 174064 Representative total house income in the dwelling unit is $174064 -in.representative_income 174086 Representative total house income in the dwelling unit is $174086 -in.representative_income 174096 Representative total house income in the dwelling unit is $174096 -in.representative_income 174109 Representative total house income in the dwelling unit is $174109 -in.representative_income 174116 Representative total house income in the dwelling unit is $174116 -in.representative_income 174126 Representative total house income in the dwelling unit is $174126 -in.representative_income 174147 Representative total house income in the dwelling unit is $174147 -in.representative_income 174149 Representative total house income in the dwelling unit is $174149 -in.representative_income 174183 Representative total house income in the dwelling unit is $174183 -in.representative_income 174221 Representative total house income in the dwelling unit is $174221 -in.representative_income 174250 Representative total house income in the dwelling unit is $174250 -in.representative_income 174280 Representative total house income in the dwelling unit is $174280 -in.representative_income 174316 Representative total house income in the dwelling unit is $174316 -in.representative_income 174326 Representative total house income in the dwelling unit is $174326 -in.representative_income 174328 Representative total house income in the dwelling unit is $174328 -in.representative_income 174336 Representative total house income in the dwelling unit is $174336 -in.representative_income 174351 Representative total house income in the dwelling unit is $174351 -in.representative_income 174390 Representative total house income in the dwelling unit is $174390 -in.representative_income 174398 Representative total house income in the dwelling unit is $174398 -in.representative_income 174419 Representative total house income in the dwelling unit is $174419 -in.representative_income 174432 Representative total house income in the dwelling unit is $174432 -in.representative_income 174436 Representative total house income in the dwelling unit is $174436 -in.representative_income 174457 Representative total house income in the dwelling unit is $174457 -in.representative_income 174496 Representative total house income in the dwelling unit is $174496 -in.representative_income 174522 Representative total house income in the dwelling unit is $174522 -in.representative_income 174537 Representative total house income in the dwelling unit is $174537 -in.representative_income 174542 Representative total house income in the dwelling unit is $174542 -in.representative_income 174553 Representative total house income in the dwelling unit is $174553 -in.representative_income 174610 Representative total house income in the dwelling unit is $174610 -in.representative_income 174642 Representative total house income in the dwelling unit is $174642 -in.representative_income 174650 Representative total house income in the dwelling unit is $174650 -in.representative_income 174654 Representative total house income in the dwelling unit is $174654 -in.representative_income 174728 Representative total house income in the dwelling unit is $174728 -in.representative_income 174749 Representative total house income in the dwelling unit is $174749 -in.representative_income 174755 Representative total house income in the dwelling unit is $174755 -in.representative_income 174757 Representative total house income in the dwelling unit is $174757 -in.representative_income 174759 Representative total house income in the dwelling unit is $174759 -in.representative_income 174831 Representative total house income in the dwelling unit is $174831 -in.representative_income 174854 Representative total house income in the dwelling unit is $174854 -in.representative_income 174856 Representative total house income in the dwelling unit is $174856 -in.representative_income 174865 Representative total house income in the dwelling unit is $174865 -in.representative_income 174896 Representative total house income in the dwelling unit is $174896 -in.representative_income 174928 Representative total house income in the dwelling unit is $174928 -in.representative_income 174935 Representative total house income in the dwelling unit is $174935 -in.representative_income 174957 Representative total house income in the dwelling unit is $174957 -in.representative_income 174959 Representative total house income in the dwelling unit is $174959 -in.representative_income 174972 Representative total house income in the dwelling unit is $174972 -in.representative_income 174993 Representative total house income in the dwelling unit is $174993 -in.representative_income 175024 Representative total house income in the dwelling unit is $175024 -in.representative_income 175025 Representative total house income in the dwelling unit is $175025 -in.representative_income 175033 Representative total house income in the dwelling unit is $175033 -in.representative_income 175036 Representative total house income in the dwelling unit is $175036 -in.representative_income 175038 Representative total house income in the dwelling unit is $175038 -in.representative_income 175058 Representative total house income in the dwelling unit is $175058 -in.representative_income 175064 Representative total house income in the dwelling unit is $175064 -in.representative_income 175085 Representative total house income in the dwelling unit is $175085 -in.representative_income 175140 Representative total house income in the dwelling unit is $175140 -in.representative_income 175144 Representative total house income in the dwelling unit is $175144 -in.representative_income 175149 Representative total house income in the dwelling unit is $175149 -in.representative_income 175159 Representative total house income in the dwelling unit is $175159 -in.representative_income 175187 Representative total house income in the dwelling unit is $175187 -in.representative_income 175260 Representative total house income in the dwelling unit is $175260 -in.representative_income 175275 Representative total house income in the dwelling unit is $175275 -in.representative_income 175294 Representative total house income in the dwelling unit is $175294 -in.representative_income 175347 Representative total house income in the dwelling unit is $175347 -in.representative_income 175360 Representative total house income in the dwelling unit is $175360 -in.representative_income 175361 Representative total house income in the dwelling unit is $175361 -in.representative_income 175378 Representative total house income in the dwelling unit is $175378 -in.representative_income 175381 Representative total house income in the dwelling unit is $175381 -in.representative_income 175402 Representative total house income in the dwelling unit is $175402 -in.representative_income 175423 Representative total house income in the dwelling unit is $175423 -in.representative_income 175442 Representative total house income in the dwelling unit is $175442 -in.representative_income 175450 Representative total house income in the dwelling unit is $175450 -in.representative_income 175462 Representative total house income in the dwelling unit is $175462 -in.representative_income 175466 Representative total house income in the dwelling unit is $175466 -in.representative_income 175469 Representative total house income in the dwelling unit is $175469 -in.representative_income 175487 Representative total house income in the dwelling unit is $175487 -in.representative_income 175517 Representative total house income in the dwelling unit is $175517 -in.representative_income 175554 Representative total house income in the dwelling unit is $175554 -in.representative_income 175563 Representative total house income in the dwelling unit is $175563 -in.representative_income 175577 Representative total house income in the dwelling unit is $175577 -in.representative_income 175592 Representative total house income in the dwelling unit is $175592 -in.representative_income 175605 Representative total house income in the dwelling unit is $175605 -in.representative_income 175617 Representative total house income in the dwelling unit is $175617 -in.representative_income 175634 Representative total house income in the dwelling unit is $175634 -in.representative_income 175656 Representative total house income in the dwelling unit is $175656 -in.representative_income 175664 Representative total house income in the dwelling unit is $175664 -in.representative_income 175685 Representative total house income in the dwelling unit is $175685 -in.representative_income 175695 Representative total house income in the dwelling unit is $175695 -in.representative_income 175723 Representative total house income in the dwelling unit is $175723 -in.representative_income 175765 Representative total house income in the dwelling unit is $175765 -in.representative_income 175793 Representative total house income in the dwelling unit is $175793 -in.representative_income 175806 Representative total house income in the dwelling unit is $175806 -in.representative_income 175831 Representative total house income in the dwelling unit is $175831 -in.representative_income 175863 Representative total house income in the dwelling unit is $175863 -in.representative_income 175866 Representative total house income in the dwelling unit is $175866 -in.representative_income 175908 Representative total house income in the dwelling unit is $175908 -in.representative_income 175938 Representative total house income in the dwelling unit is $175938 -in.representative_income 175941 Representative total house income in the dwelling unit is $175941 -in.representative_income 175947 Representative total house income in the dwelling unit is $175947 -in.representative_income 175966 Representative total house income in the dwelling unit is $175966 -in.representative_income 175967 Representative total house income in the dwelling unit is $175967 -in.representative_income 175981 Representative total house income in the dwelling unit is $175981 -in.representative_income 176008 Representative total house income in the dwelling unit is $176008 -in.representative_income 176014 Representative total house income in the dwelling unit is $176014 -in.representative_income 176046 Representative total house income in the dwelling unit is $176046 -in.representative_income 176062 Representative total house income in the dwelling unit is $176062 -in.representative_income 176116 Representative total house income in the dwelling unit is $176116 -in.representative_income 176119 Representative total house income in the dwelling unit is $176119 -in.representative_income 176121 Representative total house income in the dwelling unit is $176121 -in.representative_income 176153 Representative total house income in the dwelling unit is $176153 -in.representative_income 176181 Representative total house income in the dwelling unit is $176181 -in.representative_income 176225 Representative total house income in the dwelling unit is $176225 -in.representative_income 176248 Representative total house income in the dwelling unit is $176248 -in.representative_income 176260 Representative total house income in the dwelling unit is $176260 -in.representative_income 176275 Representative total house income in the dwelling unit is $176275 -in.representative_income 176304 Representative total house income in the dwelling unit is $176304 -in.representative_income 176330 Representative total house income in the dwelling unit is $176330 -in.representative_income 176361 Representative total house income in the dwelling unit is $176361 -in.representative_income 176367 Representative total house income in the dwelling unit is $176367 -in.representative_income 176378 Representative total house income in the dwelling unit is $176378 -in.representative_income 176409 Representative total house income in the dwelling unit is $176409 -in.representative_income 176430 Representative total house income in the dwelling unit is $176430 -in.representative_income 176441 Representative total house income in the dwelling unit is $176441 -in.representative_income 176472 Representative total house income in the dwelling unit is $176472 -in.representative_income 176475 Representative total house income in the dwelling unit is $176475 -in.representative_income 176482 Representative total house income in the dwelling unit is $176482 -in.representative_income 176487 Representative total house income in the dwelling unit is $176487 -in.representative_income 176541 Representative total house income in the dwelling unit is $176541 -in.representative_income 176573 Representative total house income in the dwelling unit is $176573 -in.representative_income 176583 Representative total house income in the dwelling unit is $176583 -in.representative_income 176585 Representative total house income in the dwelling unit is $176585 -in.representative_income 176647 Representative total house income in the dwelling unit is $176647 -in.representative_income 176657 Representative total house income in the dwelling unit is $176657 -in.representative_income 176765 Representative total house income in the dwelling unit is $176765 -in.representative_income 176775 Representative total house income in the dwelling unit is $176775 -in.representative_income 176790 Representative total house income in the dwelling unit is $176790 -in.representative_income 176857 Representative total house income in the dwelling unit is $176857 -in.representative_income 176873 Representative total house income in the dwelling unit is $176873 -in.representative_income 176876 Representative total house income in the dwelling unit is $176876 -in.representative_income 176990 Representative total house income in the dwelling unit is $176990 -in.representative_income 177119 Representative total house income in the dwelling unit is $177119 -in.representative_income 177141 Representative total house income in the dwelling unit is $177141 -in.representative_income 177173 Representative total house income in the dwelling unit is $177173 -in.representative_income 177179 Representative total house income in the dwelling unit is $177179 -in.representative_income 177197 Representative total house income in the dwelling unit is $177197 -in.representative_income 177200 Representative total house income in the dwelling unit is $177200 -in.representative_income 177206 Representative total house income in the dwelling unit is $177206 -in.representative_income 177280 Representative total house income in the dwelling unit is $177280 -in.representative_income 177305 Representative total house income in the dwelling unit is $177305 -in.representative_income 177377 Representative total house income in the dwelling unit is $177377 -in.representative_income 177385 Representative total house income in the dwelling unit is $177385 -in.representative_income 177410 Representative total house income in the dwelling unit is $177410 -in.representative_income 177413 Representative total house income in the dwelling unit is $177413 -in.representative_income 177441 Representative total house income in the dwelling unit is $177441 -in.representative_income 177482 Representative total house income in the dwelling unit is $177482 -in.representative_income 177521 Representative total house income in the dwelling unit is $177521 -in.representative_income 177583 Representative total house income in the dwelling unit is $177583 -in.representative_income 177616 Representative total house income in the dwelling unit is $177616 -in.representative_income 177737 Representative total house income in the dwelling unit is $177737 -in.representative_income 177786 Representative total house income in the dwelling unit is $177786 -in.representative_income 177806 Representative total house income in the dwelling unit is $177806 -in.representative_income 177846 Representative total house income in the dwelling unit is $177846 -in.representative_income 177925 Representative total house income in the dwelling unit is $177925 -in.representative_income 177954 Representative total house income in the dwelling unit is $177954 -in.representative_income 177988 Representative total house income in the dwelling unit is $177988 -in.representative_income 178018 Representative total house income in the dwelling unit is $178018 -in.representative_income 178029 Representative total house income in the dwelling unit is $178029 -in.representative_income 178085 Representative total house income in the dwelling unit is $178085 -in.representative_income 178123 Representative total house income in the dwelling unit is $178123 -in.representative_income 178132 Representative total house income in the dwelling unit is $178132 -in.representative_income 178190 Representative total house income in the dwelling unit is $178190 -in.representative_income 178193 Representative total house income in the dwelling unit is $178193 -in.representative_income 178228 Representative total house income in the dwelling unit is $178228 -in.representative_income 178235 Representative total house income in the dwelling unit is $178235 -in.representative_income 178277 Representative total house income in the dwelling unit is $178277 -in.representative_income 178291 Representative total house income in the dwelling unit is $178291 -in.representative_income 178331 Representative total house income in the dwelling unit is $178331 -in.representative_income 178334 Representative total house income in the dwelling unit is $178334 -in.representative_income 178392 Representative total house income in the dwelling unit is $178392 -in.representative_income 178408 Representative total house income in the dwelling unit is $178408 -in.representative_income 178418 Representative total house income in the dwelling unit is $178418 -in.representative_income 178439 Representative total house income in the dwelling unit is $178439 -in.representative_income 178441 Representative total house income in the dwelling unit is $178441 -in.representative_income 178565 Representative total house income in the dwelling unit is $178565 -in.representative_income 178601 Representative total house income in the dwelling unit is $178601 -in.representative_income 178648 Representative total house income in the dwelling unit is $178648 -in.representative_income 178678 Representative total house income in the dwelling unit is $178678 -in.representative_income 178729 Representative total house income in the dwelling unit is $178729 -in.representative_income 178738 Representative total house income in the dwelling unit is $178738 -in.representative_income 178761 Representative total house income in the dwelling unit is $178761 -in.representative_income 178796 Representative total house income in the dwelling unit is $178796 -in.representative_income 178833 Representative total house income in the dwelling unit is $178833 -in.representative_income 178854 Representative total house income in the dwelling unit is $178854 -in.representative_income 178858 Representative total house income in the dwelling unit is $178858 -in.representative_income 178926 Representative total house income in the dwelling unit is $178926 -in.representative_income 178966 Representative total house income in the dwelling unit is $178966 -in.representative_income 178998 Representative total house income in the dwelling unit is $178998 -in.representative_income 179051 Representative total house income in the dwelling unit is $179051 -in.representative_income 179072 Representative total house income in the dwelling unit is $179072 -in.representative_income 179163 Representative total house income in the dwelling unit is $179163 -in.representative_income 179178 Representative total house income in the dwelling unit is $179178 -in.representative_income 179200 Representative total house income in the dwelling unit is $179200 -in.representative_income 179250 Representative total house income in the dwelling unit is $179250 -in.representative_income 179266 Representative total house income in the dwelling unit is $179266 -in.representative_income 179267 Representative total house income in the dwelling unit is $179267 -in.representative_income 179283 Representative total house income in the dwelling unit is $179283 -in.representative_income 179358 Representative total house income in the dwelling unit is $179358 -in.representative_income 179402 Representative total house income in the dwelling unit is $179402 -in.representative_income 179452 Representative total house income in the dwelling unit is $179452 -in.representative_income 179473 Representative total house income in the dwelling unit is $179473 -in.representative_income 179481 Representative total house income in the dwelling unit is $179481 -in.representative_income 179504 Representative total house income in the dwelling unit is $179504 -in.representative_income 179574 Representative total house income in the dwelling unit is $179574 -in.representative_income 179588 Representative total house income in the dwelling unit is $179588 -in.representative_income 179599 Representative total house income in the dwelling unit is $179599 -in.representative_income 179679 Representative total house income in the dwelling unit is $179679 -in.representative_income 179695 Representative total house income in the dwelling unit is $179695 -in.representative_income 179726 Representative total house income in the dwelling unit is $179726 -in.representative_income 179728 Representative total house income in the dwelling unit is $179728 -in.representative_income 179790 Representative total house income in the dwelling unit is $179790 -in.representative_income 179803 Representative total house income in the dwelling unit is $179803 -in.representative_income 179806 Representative total house income in the dwelling unit is $179806 -in.representative_income 179811 Representative total house income in the dwelling unit is $179811 -in.representative_income 179846 Representative total house income in the dwelling unit is $179846 -in.representative_income 179886 Representative total house income in the dwelling unit is $179886 -in.representative_income 179910 Representative total house income in the dwelling unit is $179910 -in.representative_income 179916 Representative total house income in the dwelling unit is $179916 -in.representative_income 179989 Representative total house income in the dwelling unit is $179989 -in.representative_income 180006 Representative total house income in the dwelling unit is $180006 -in.representative_income 180091 Representative total house income in the dwelling unit is $180091 -in.representative_income 180114 Representative total house income in the dwelling unit is $180114 -in.representative_income 180124 Representative total house income in the dwelling unit is $180124 -in.representative_income 180232 Representative total house income in the dwelling unit is $180232 -in.representative_income 180236 Representative total house income in the dwelling unit is $180236 -in.representative_income 180298 Representative total house income in the dwelling unit is $180298 -in.representative_income 180316 Representative total house income in the dwelling unit is $180316 -in.representative_income 180337 Representative total house income in the dwelling unit is $180337 -in.representative_income 180339 Representative total house income in the dwelling unit is $180339 -in.representative_income 180401 Representative total house income in the dwelling unit is $180401 -in.representative_income 180439 Representative total house income in the dwelling unit is $180439 -in.representative_income 180505 Representative total house income in the dwelling unit is $180505 -in.representative_income 180513 Representative total house income in the dwelling unit is $180513 -in.representative_income 180607 Representative total house income in the dwelling unit is $180607 -in.representative_income 180628 Representative total house income in the dwelling unit is $180628 -in.representative_income 180634 Representative total house income in the dwelling unit is $180634 -in.representative_income 180654 Representative total house income in the dwelling unit is $180654 -in.representative_income 180660 Representative total house income in the dwelling unit is $180660 -in.representative_income 180715 Representative total house income in the dwelling unit is $180715 -in.representative_income 180759 Representative total house income in the dwelling unit is $180759 -in.representative_income 180816 Representative total house income in the dwelling unit is $180816 -in.representative_income 180865 Representative total house income in the dwelling unit is $180865 -in.representative_income 180876 Representative total house income in the dwelling unit is $180876 -in.representative_income 180978 Representative total house income in the dwelling unit is $180978 -in.representative_income 180984 Representative total house income in the dwelling unit is $180984 -in.representative_income 181020 Representative total house income in the dwelling unit is $181020 -in.representative_income 181076 Representative total house income in the dwelling unit is $181076 -in.representative_income 181087 Representative total house income in the dwelling unit is $181087 -in.representative_income 181128 Representative total house income in the dwelling unit is $181128 -in.representative_income 181174 Representative total house income in the dwelling unit is $181174 -in.representative_income 181220 Representative total house income in the dwelling unit is $181220 -in.representative_income 181267 Representative total house income in the dwelling unit is $181267 -in.representative_income 181321 Representative total house income in the dwelling unit is $181321 -in.representative_income 181392 Representative total house income in the dwelling unit is $181392 -in.representative_income 181413 Representative total house income in the dwelling unit is $181413 -in.representative_income 181422 Representative total house income in the dwelling unit is $181422 -in.representative_income 181456 Representative total house income in the dwelling unit is $181456 -in.representative_income 181519 Representative total house income in the dwelling unit is $181519 -in.representative_income 181536 Representative total house income in the dwelling unit is $181536 -in.representative_income 181551 Representative total house income in the dwelling unit is $181551 -in.representative_income 181603 Representative total house income in the dwelling unit is $181603 -in.representative_income 181624 Representative total house income in the dwelling unit is $181624 -in.representative_income 181681 Representative total house income in the dwelling unit is $181681 -in.representative_income 181725 Representative total house income in the dwelling unit is $181725 -in.representative_income 181742 Representative total house income in the dwelling unit is $181742 -in.representative_income 181814 Representative total house income in the dwelling unit is $181814 -in.representative_income 181826 Representative total house income in the dwelling unit is $181826 -in.representative_income 181845 Representative total house income in the dwelling unit is $181845 -in.representative_income 181846 Representative total house income in the dwelling unit is $181846 -in.representative_income 181856 Representative total house income in the dwelling unit is $181856 -in.representative_income 181886 Representative total house income in the dwelling unit is $181886 -in.representative_income 181927 Representative total house income in the dwelling unit is $181927 -in.representative_income 181948 Representative total house income in the dwelling unit is $181948 -in.representative_income 181949 Representative total house income in the dwelling unit is $181949 -in.representative_income 181951 Representative total house income in the dwelling unit is $181951 -in.representative_income 181961 Representative total house income in the dwelling unit is $181961 -in.representative_income 181968 Representative total house income in the dwelling unit is $181968 -in.representative_income 182028 Representative total house income in the dwelling unit is $182028 -in.representative_income 182057 Representative total house income in the dwelling unit is $182057 -in.representative_income 182059 Representative total house income in the dwelling unit is $182059 -in.representative_income 182155 Representative total house income in the dwelling unit is $182155 -in.representative_income 182167 Representative total house income in the dwelling unit is $182167 -in.representative_income 182257 Representative total house income in the dwelling unit is $182257 -in.representative_income 182275 Representative total house income in the dwelling unit is $182275 -in.representative_income 182331 Representative total house income in the dwelling unit is $182331 -in.representative_income 182342 Representative total house income in the dwelling unit is $182342 -in.representative_income 182383 Representative total house income in the dwelling unit is $182383 -in.representative_income 182432 Representative total house income in the dwelling unit is $182432 -in.representative_income 182447 Representative total house income in the dwelling unit is $182447 -in.representative_income 182486 Representative total house income in the dwelling unit is $182486 -in.representative_income 182491 Representative total house income in the dwelling unit is $182491 -in.representative_income 182533 Representative total house income in the dwelling unit is $182533 -in.representative_income 182552 Representative total house income in the dwelling unit is $182552 -in.representative_income 182567 Representative total house income in the dwelling unit is $182567 -in.representative_income 182587 Representative total house income in the dwelling unit is $182587 -in.representative_income 182599 Representative total house income in the dwelling unit is $182599 -in.representative_income 182600 Representative total house income in the dwelling unit is $182600 -in.representative_income 182634 Representative total house income in the dwelling unit is $182634 -in.representative_income 182671 Representative total house income in the dwelling unit is $182671 -in.representative_income 182701 Representative total house income in the dwelling unit is $182701 -in.representative_income 182729 Representative total house income in the dwelling unit is $182729 -in.representative_income 182735 Representative total house income in the dwelling unit is $182735 -in.representative_income 182763 Representative total house income in the dwelling unit is $182763 -in.representative_income 182773 Representative total house income in the dwelling unit is $182773 -in.representative_income 182809 Representative total house income in the dwelling unit is $182809 -in.representative_income 182836 Representative total house income in the dwelling unit is $182836 -in.representative_income 182846 Representative total house income in the dwelling unit is $182846 -in.representative_income 182873 Representative total house income in the dwelling unit is $182873 -in.representative_income 182916 Representative total house income in the dwelling unit is $182916 -in.representative_income 182924 Representative total house income in the dwelling unit is $182924 -in.representative_income 182937 Representative total house income in the dwelling unit is $182937 -in.representative_income 182974 Representative total house income in the dwelling unit is $182974 -in.representative_income 182980 Representative total house income in the dwelling unit is $182980 -in.representative_income 183008 Representative total house income in the dwelling unit is $183008 -in.representative_income 183023 Representative total house income in the dwelling unit is $183023 -in.representative_income 183032 Representative total house income in the dwelling unit is $183032 -in.representative_income 183033 Representative total house income in the dwelling unit is $183033 -in.representative_income 183073 Representative total house income in the dwelling unit is $183073 -in.representative_income 183079 Representative total house income in the dwelling unit is $183079 -in.representative_income 183080 Representative total house income in the dwelling unit is $183080 -in.representative_income 183083 Representative total house income in the dwelling unit is $183083 -in.representative_income 183139 Representative total house income in the dwelling unit is $183139 -in.representative_income 183185 Representative total house income in the dwelling unit is $183185 -in.representative_income 183206 Representative total house income in the dwelling unit is $183206 -in.representative_income 183238 Representative total house income in the dwelling unit is $183238 -in.representative_income 183240 Representative total house income in the dwelling unit is $183240 -in.representative_income 183244 Representative total house income in the dwelling unit is $183244 -in.representative_income 183341 Representative total house income in the dwelling unit is $183341 -in.representative_income 183345 Representative total house income in the dwelling unit is $183345 -in.representative_income 183378 Representative total house income in the dwelling unit is $183378 -in.representative_income 183392 Representative total house income in the dwelling unit is $183392 -in.representative_income 183442 Representative total house income in the dwelling unit is $183442 -in.representative_income 183453 Representative total house income in the dwelling unit is $183453 -in.representative_income 183501 Representative total house income in the dwelling unit is $183501 -in.representative_income 183516 Representative total house income in the dwelling unit is $183516 -in.representative_income 183533 Representative total house income in the dwelling unit is $183533 -in.representative_income 183543 Representative total house income in the dwelling unit is $183543 -in.representative_income 183544 Representative total house income in the dwelling unit is $183544 -in.representative_income 183559 Representative total house income in the dwelling unit is $183559 -in.representative_income 183560 Representative total house income in the dwelling unit is $183560 -in.representative_income 183572 Representative total house income in the dwelling unit is $183572 -in.representative_income 183591 Representative total house income in the dwelling unit is $183591 -in.representative_income 183592 Representative total house income in the dwelling unit is $183592 -in.representative_income 183599 Representative total house income in the dwelling unit is $183599 -in.representative_income 183601 Representative total house income in the dwelling unit is $183601 -in.representative_income 183630 Representative total house income in the dwelling unit is $183630 -in.representative_income 183637 Representative total house income in the dwelling unit is $183637 -in.representative_income 183644 Representative total house income in the dwelling unit is $183644 -in.representative_income 183665 Representative total house income in the dwelling unit is $183665 -in.representative_income 183667 Representative total house income in the dwelling unit is $183667 -in.representative_income 183671 Representative total house income in the dwelling unit is $183671 -in.representative_income 183680 Representative total house income in the dwelling unit is $183680 -in.representative_income 183702 Representative total house income in the dwelling unit is $183702 -in.representative_income 183745 Representative total house income in the dwelling unit is $183745 -in.representative_income 183774 Representative total house income in the dwelling unit is $183774 -in.representative_income 183784 Representative total house income in the dwelling unit is $183784 -in.representative_income 183788 Representative total house income in the dwelling unit is $183788 -in.representative_income 183805 Representative total house income in the dwelling unit is $183805 -in.representative_income 183809 Representative total house income in the dwelling unit is $183809 -in.representative_income 183825 Representative total house income in the dwelling unit is $183825 -in.representative_income 183846 Representative total house income in the dwelling unit is $183846 -in.representative_income 183856 Representative total house income in the dwelling unit is $183856 -in.representative_income 183877 Representative total house income in the dwelling unit is $183877 -in.representative_income 183882 Representative total house income in the dwelling unit is $183882 -in.representative_income 183896 Representative total house income in the dwelling unit is $183896 -in.representative_income 183922 Representative total house income in the dwelling unit is $183922 -in.representative_income 183923 Representative total house income in the dwelling unit is $183923 -in.representative_income 183947 Representative total house income in the dwelling unit is $183947 -in.representative_income 183968 Representative total house income in the dwelling unit is $183968 -in.representative_income 183991 Representative total house income in the dwelling unit is $183991 -in.representative_income 184004 Representative total house income in the dwelling unit is $184004 -in.representative_income 184011 Representative total house income in the dwelling unit is $184011 -in.representative_income 184048 Representative total house income in the dwelling unit is $184048 -in.representative_income 184096 Representative total house income in the dwelling unit is $184096 -in.representative_income 184099 Representative total house income in the dwelling unit is $184099 -in.representative_income 184112 Representative total house income in the dwelling unit is $184112 -in.representative_income 184114 Representative total house income in the dwelling unit is $184114 -in.representative_income 184134 Representative total house income in the dwelling unit is $184134 -in.representative_income 184149 Representative total house income in the dwelling unit is $184149 -in.representative_income 184150 Representative total house income in the dwelling unit is $184150 -in.representative_income 184200 Representative total house income in the dwelling unit is $184200 -in.representative_income 184204 Representative total house income in the dwelling unit is $184204 -in.representative_income 184218 Representative total house income in the dwelling unit is $184218 -in.representative_income 184221 Representative total house income in the dwelling unit is $184221 -in.representative_income 184240 Representative total house income in the dwelling unit is $184240 -in.representative_income 184250 Representative total house income in the dwelling unit is $184250 -in.representative_income 184271 Representative total house income in the dwelling unit is $184271 -in.representative_income 184293 Representative total house income in the dwelling unit is $184293 -in.representative_income 184311 Representative total house income in the dwelling unit is $184311 -in.representative_income 184321 Representative total house income in the dwelling unit is $184321 -in.representative_income 184328 Representative total house income in the dwelling unit is $184328 -in.representative_income 184345 Representative total house income in the dwelling unit is $184345 -in.representative_income 184351 Representative total house income in the dwelling unit is $184351 -in.representative_income 184364 Representative total house income in the dwelling unit is $184364 -in.representative_income 184419 Representative total house income in the dwelling unit is $184419 -in.representative_income 184423 Representative total house income in the dwelling unit is $184423 -in.representative_income 184436 Representative total house income in the dwelling unit is $184436 -in.representative_income 184442 Representative total house income in the dwelling unit is $184442 -in.representative_income 184451 Representative total house income in the dwelling unit is $184451 -in.representative_income 184452 Representative total house income in the dwelling unit is $184452 -in.representative_income 184491 Representative total house income in the dwelling unit is $184491 -in.representative_income 184526 Representative total house income in the dwelling unit is $184526 -in.representative_income 184527 Representative total house income in the dwelling unit is $184527 -in.representative_income 184544 Representative total house income in the dwelling unit is $184544 -in.representative_income 184553 Representative total house income in the dwelling unit is $184553 -in.representative_income 184556 Representative total house income in the dwelling unit is $184556 -in.representative_income 184566 Representative total house income in the dwelling unit is $184566 -in.representative_income 184582 Representative total house income in the dwelling unit is $184582 -in.representative_income 184584 Representative total house income in the dwelling unit is $184584 -in.representative_income 184587 Representative total house income in the dwelling unit is $184587 -in.representative_income 184614 Representative total house income in the dwelling unit is $184614 -in.representative_income 184630 Representative total house income in the dwelling unit is $184630 -in.representative_income 184633 Representative total house income in the dwelling unit is $184633 -in.representative_income 184652 Representative total house income in the dwelling unit is $184652 -in.representative_income 184655 Representative total house income in the dwelling unit is $184655 -in.representative_income 184661 Representative total house income in the dwelling unit is $184661 -in.representative_income 184676 Representative total house income in the dwelling unit is $184676 -in.representative_income 184687 Representative total house income in the dwelling unit is $184687 -in.representative_income 184733 Representative total house income in the dwelling unit is $184733 -in.representative_income 184740 Representative total house income in the dwelling unit is $184740 -in.representative_income 184760 Representative total house income in the dwelling unit is $184760 -in.representative_income 184762 Representative total house income in the dwelling unit is $184762 -in.representative_income 184766 Representative total house income in the dwelling unit is $184766 -in.representative_income 184795 Representative total house income in the dwelling unit is $184795 -in.representative_income 184798 Representative total house income in the dwelling unit is $184798 -in.representative_income 184803 Representative total house income in the dwelling unit is $184803 -in.representative_income 184848 Representative total house income in the dwelling unit is $184848 -in.representative_income 184857 Representative total house income in the dwelling unit is $184857 -in.representative_income 184868 Representative total house income in the dwelling unit is $184868 -in.representative_income 184869 Representative total house income in the dwelling unit is $184869 -in.representative_income 184873 Representative total house income in the dwelling unit is $184873 -in.representative_income 184880 Representative total house income in the dwelling unit is $184880 -in.representative_income 184887 Representative total house income in the dwelling unit is $184887 -in.representative_income 184890 Representative total house income in the dwelling unit is $184890 -in.representative_income 184940 Representative total house income in the dwelling unit is $184940 -in.representative_income 184955 Representative total house income in the dwelling unit is $184955 -in.representative_income 184958 Representative total house income in the dwelling unit is $184958 -in.representative_income 184978 Representative total house income in the dwelling unit is $184978 -in.representative_income 185030 Representative total house income in the dwelling unit is $185030 -in.representative_income 185031 Representative total house income in the dwelling unit is $185031 -in.representative_income 185042 Representative total house income in the dwelling unit is $185042 -in.representative_income 185057 Representative total house income in the dwelling unit is $185057 -in.representative_income 185059 Representative total house income in the dwelling unit is $185059 -in.representative_income 185063 Representative total house income in the dwelling unit is $185063 -in.representative_income 185074 Representative total house income in the dwelling unit is $185074 -in.representative_income 185083 Representative total house income in the dwelling unit is $185083 -in.representative_income 185085 Representative total house income in the dwelling unit is $185085 -in.representative_income 185095 Representative total house income in the dwelling unit is $185095 -in.representative_income 185109 Representative total house income in the dwelling unit is $185109 -in.representative_income 185117 Representative total house income in the dwelling unit is $185117 -in.representative_income 185119 Representative total house income in the dwelling unit is $185119 -in.representative_income 185146 Representative total house income in the dwelling unit is $185146 -in.representative_income 185160 Representative total house income in the dwelling unit is $185160 -in.representative_income 185169 Representative total house income in the dwelling unit is $185169 -in.representative_income 185187 Representative total house income in the dwelling unit is $185187 -in.representative_income 185189 Representative total house income in the dwelling unit is $185189 -in.representative_income 185193 Representative total house income in the dwelling unit is $185193 -in.representative_income 185247 Representative total house income in the dwelling unit is $185247 -in.representative_income 185249 Representative total house income in the dwelling unit is $185249 -in.representative_income 185261 Representative total house income in the dwelling unit is $185261 -in.representative_income 185277 Representative total house income in the dwelling unit is $185277 -in.representative_income 185290 Representative total house income in the dwelling unit is $185290 -in.representative_income 185294 Representative total house income in the dwelling unit is $185294 -in.representative_income 185301 Representative total house income in the dwelling unit is $185301 -in.representative_income 185311 Representative total house income in the dwelling unit is $185311 -in.representative_income 185352 Representative total house income in the dwelling unit is $185352 -in.representative_income 185362 Representative total house income in the dwelling unit is $185362 -in.representative_income 185385 Representative total house income in the dwelling unit is $185385 -in.representative_income 185399 Representative total house income in the dwelling unit is $185399 -in.representative_income 185409 Representative total house income in the dwelling unit is $185409 -in.representative_income 185421 Representative total house income in the dwelling unit is $185421 -in.representative_income 185439 Representative total house income in the dwelling unit is $185439 -in.representative_income 185456 Representative total house income in the dwelling unit is $185456 -in.representative_income 185463 Representative total house income in the dwelling unit is $185463 -in.representative_income 185484 Representative total house income in the dwelling unit is $185484 -in.representative_income 185488 Representative total house income in the dwelling unit is $185488 -in.representative_income 185492 Representative total house income in the dwelling unit is $185492 -in.representative_income 185505 Representative total house income in the dwelling unit is $185505 -in.representative_income 185507 Representative total house income in the dwelling unit is $185507 -in.representative_income 185564 Representative total house income in the dwelling unit is $185564 -in.representative_income 185611 Representative total house income in the dwelling unit is $185611 -in.representative_income 185624 Representative total house income in the dwelling unit is $185624 -in.representative_income 185642 Representative total house income in the dwelling unit is $185642 -in.representative_income 185653 Representative total house income in the dwelling unit is $185653 -in.representative_income 185661 Representative total house income in the dwelling unit is $185661 -in.representative_income 185665 Representative total house income in the dwelling unit is $185665 -in.representative_income 185682 Representative total house income in the dwelling unit is $185682 -in.representative_income 185707 Representative total house income in the dwelling unit is $185707 -in.representative_income 185713 Representative total house income in the dwelling unit is $185713 -in.representative_income 185716 Representative total house income in the dwelling unit is $185716 -in.representative_income 185744 Representative total house income in the dwelling unit is $185744 -in.representative_income 185750 Representative total house income in the dwelling unit is $185750 -in.representative_income 185765 Representative total house income in the dwelling unit is $185765 -in.representative_income 185766 Representative total house income in the dwelling unit is $185766 -in.representative_income 185811 Representative total house income in the dwelling unit is $185811 -in.representative_income 185816 Representative total house income in the dwelling unit is $185816 -in.representative_income 185821 Representative total house income in the dwelling unit is $185821 -in.representative_income 185841 Representative total house income in the dwelling unit is $185841 -in.representative_income 185842 Representative total house income in the dwelling unit is $185842 -in.representative_income 185847 Representative total house income in the dwelling unit is $185847 -in.representative_income 185852 Representative total house income in the dwelling unit is $185852 -in.representative_income 185863 Representative total house income in the dwelling unit is $185863 -in.representative_income 185867 Representative total house income in the dwelling unit is $185867 -in.representative_income 185868 Representative total house income in the dwelling unit is $185868 -in.representative_income 185874 Representative total house income in the dwelling unit is $185874 -in.representative_income 185875 Representative total house income in the dwelling unit is $185875 -in.representative_income 185878 Representative total house income in the dwelling unit is $185878 -in.representative_income 185906 Representative total house income in the dwelling unit is $185906 -in.representative_income 185921 Representative total house income in the dwelling unit is $185921 -in.representative_income 185927 Representative total house income in the dwelling unit is $185927 -in.representative_income 185928 Representative total house income in the dwelling unit is $185928 -in.representative_income 185949 Representative total house income in the dwelling unit is $185949 -in.representative_income 185968 Representative total house income in the dwelling unit is $185968 -in.representative_income 185971 Representative total house income in the dwelling unit is $185971 -in.representative_income 185979 Representative total house income in the dwelling unit is $185979 -in.representative_income 186022 Representative total house income in the dwelling unit is $186022 -in.representative_income 186028 Representative total house income in the dwelling unit is $186028 -in.representative_income 186029 Representative total house income in the dwelling unit is $186029 -in.representative_income 186032 Representative total house income in the dwelling unit is $186032 -in.representative_income 186053 Representative total house income in the dwelling unit is $186053 -in.representative_income 186057 Representative total house income in the dwelling unit is $186057 -in.representative_income 186069 Representative total house income in the dwelling unit is $186069 -in.representative_income 186074 Representative total house income in the dwelling unit is $186074 -in.representative_income 186075 Representative total house income in the dwelling unit is $186075 -in.representative_income 186089 Representative total house income in the dwelling unit is $186089 -in.representative_income 186099 Representative total house income in the dwelling unit is $186099 -in.representative_income 186119 Representative total house income in the dwelling unit is $186119 -in.representative_income 186129 Representative total house income in the dwelling unit is $186129 -in.representative_income 186133 Representative total house income in the dwelling unit is $186133 -in.representative_income 186136 Representative total house income in the dwelling unit is $186136 -in.representative_income 186138 Representative total house income in the dwelling unit is $186138 -in.representative_income 186165 Representative total house income in the dwelling unit is $186165 -in.representative_income 186170 Representative total house income in the dwelling unit is $186170 -in.representative_income 186177 Representative total house income in the dwelling unit is $186177 -in.representative_income 186208 Representative total house income in the dwelling unit is $186208 -in.representative_income 186230 Representative total house income in the dwelling unit is $186230 -in.representative_income 186239 Representative total house income in the dwelling unit is $186239 -in.representative_income 186244 Representative total house income in the dwelling unit is $186244 -in.representative_income 186254 Representative total house income in the dwelling unit is $186254 -in.representative_income 186271 Representative total house income in the dwelling unit is $186271 -in.representative_income 186273 Representative total house income in the dwelling unit is $186273 -in.representative_income 186275 Representative total house income in the dwelling unit is $186275 -in.representative_income 186280 Representative total house income in the dwelling unit is $186280 -in.representative_income 186290 Representative total house income in the dwelling unit is $186290 -in.representative_income 186291 Representative total house income in the dwelling unit is $186291 -in.representative_income 186308 Representative total house income in the dwelling unit is $186308 -in.representative_income 186312 Representative total house income in the dwelling unit is $186312 -in.representative_income 186338 Representative total house income in the dwelling unit is $186338 -in.representative_income 186349 Representative total house income in the dwelling unit is $186349 -in.representative_income 186350 Representative total house income in the dwelling unit is $186350 -in.representative_income 186372 Representative total house income in the dwelling unit is $186372 -in.representative_income 186381 Representative total house income in the dwelling unit is $186381 -in.representative_income 186384 Representative total house income in the dwelling unit is $186384 -in.representative_income 186402 Representative total house income in the dwelling unit is $186402 -in.representative_income 186412 Representative total house income in the dwelling unit is $186412 -in.representative_income 186422 Representative total house income in the dwelling unit is $186422 -in.representative_income 186454 Representative total house income in the dwelling unit is $186454 -in.representative_income 186458 Representative total house income in the dwelling unit is $186458 -in.representative_income 186473 Representative total house income in the dwelling unit is $186473 -in.representative_income 186479 Representative total house income in the dwelling unit is $186479 -in.representative_income 186487 Representative total house income in the dwelling unit is $186487 -in.representative_income 186489 Representative total house income in the dwelling unit is $186489 -in.representative_income 186497 Representative total house income in the dwelling unit is $186497 -in.representative_income 186507 Representative total house income in the dwelling unit is $186507 -in.representative_income 186521 Representative total house income in the dwelling unit is $186521 -in.representative_income 186559 Representative total house income in the dwelling unit is $186559 -in.representative_income 186565 Representative total house income in the dwelling unit is $186565 -in.representative_income 186574 Representative total house income in the dwelling unit is $186574 -in.representative_income 186587 Representative total house income in the dwelling unit is $186587 -in.representative_income 186590 Representative total house income in the dwelling unit is $186590 -in.representative_income 186598 Representative total house income in the dwelling unit is $186598 -in.representative_income 186608 Representative total house income in the dwelling unit is $186608 -in.representative_income 186619 Representative total house income in the dwelling unit is $186619 -in.representative_income 186665 Representative total house income in the dwelling unit is $186665 -in.representative_income 186673 Representative total house income in the dwelling unit is $186673 -in.representative_income 186675 Representative total house income in the dwelling unit is $186675 -in.representative_income 186685 Representative total house income in the dwelling unit is $186685 -in.representative_income 186687 Representative total house income in the dwelling unit is $186687 -in.representative_income 186693 Representative total house income in the dwelling unit is $186693 -in.representative_income 186771 Representative total house income in the dwelling unit is $186771 -in.representative_income 186774 Representative total house income in the dwelling unit is $186774 -in.representative_income 186776 Representative total house income in the dwelling unit is $186776 -in.representative_income 186781 Representative total house income in the dwelling unit is $186781 -in.representative_income 186796 Representative total house income in the dwelling unit is $186796 -in.representative_income 186810 Representative total house income in the dwelling unit is $186810 -in.representative_income 186835 Representative total house income in the dwelling unit is $186835 -in.representative_income 186876 Representative total house income in the dwelling unit is $186876 -in.representative_income 186877 Representative total house income in the dwelling unit is $186877 -in.representative_income 186887 Representative total house income in the dwelling unit is $186887 -in.representative_income 186899 Representative total house income in the dwelling unit is $186899 -in.representative_income 186921 Representative total house income in the dwelling unit is $186921 -in.representative_income 186941 Representative total house income in the dwelling unit is $186941 -in.representative_income 186963 Representative total house income in the dwelling unit is $186963 -in.representative_income 186975 Representative total house income in the dwelling unit is $186975 -in.representative_income 186978 Representative total house income in the dwelling unit is $186978 -in.representative_income 186982 Representative total house income in the dwelling unit is $186982 -in.representative_income 186995 Representative total house income in the dwelling unit is $186995 -in.representative_income 187003 Representative total house income in the dwelling unit is $187003 -in.representative_income 187005 Representative total house income in the dwelling unit is $187005 -in.representative_income 187008 Representative total house income in the dwelling unit is $187008 -in.representative_income 187029 Representative total house income in the dwelling unit is $187029 -in.representative_income 187079 Representative total house income in the dwelling unit is $187079 -in.representative_income 187087 Representative total house income in the dwelling unit is $187087 -in.representative_income 187099 Representative total house income in the dwelling unit is $187099 -in.representative_income 187102 Representative total house income in the dwelling unit is $187102 -in.representative_income 187106 Representative total house income in the dwelling unit is $187106 -in.representative_income 187109 Representative total house income in the dwelling unit is $187109 -in.representative_income 187111 Representative total house income in the dwelling unit is $187111 -in.representative_income 187137 Representative total house income in the dwelling unit is $187137 -in.representative_income 187159 Representative total house income in the dwelling unit is $187159 -in.representative_income 187180 Representative total house income in the dwelling unit is $187180 -in.representative_income 187190 Representative total house income in the dwelling unit is $187190 -in.representative_income 187191 Representative total house income in the dwelling unit is $187191 -in.representative_income 187192 Representative total house income in the dwelling unit is $187192 -in.representative_income 187207 Representative total house income in the dwelling unit is $187207 -in.representative_income 187208 Representative total house income in the dwelling unit is $187208 -in.representative_income 187210 Representative total house income in the dwelling unit is $187210 -in.representative_income 187245 Representative total house income in the dwelling unit is $187245 -in.representative_income 187281 Representative total house income in the dwelling unit is $187281 -in.representative_income 187297 Representative total house income in the dwelling unit is $187297 -in.representative_income 187312 Representative total house income in the dwelling unit is $187312 -in.representative_income 187317 Representative total house income in the dwelling unit is $187317 -in.representative_income 187354 Representative total house income in the dwelling unit is $187354 -in.representative_income 187362 Representative total house income in the dwelling unit is $187362 -in.representative_income 187382 Representative total house income in the dwelling unit is $187382 -in.representative_income 187386 Representative total house income in the dwelling unit is $187386 -in.representative_income 187404 Representative total house income in the dwelling unit is $187404 -in.representative_income 187412 Representative total house income in the dwelling unit is $187412 -in.representative_income 187415 Representative total house income in the dwelling unit is $187415 -in.representative_income 187424 Representative total house income in the dwelling unit is $187424 -in.representative_income 187429 Representative total house income in the dwelling unit is $187429 -in.representative_income 187462 Representative total house income in the dwelling unit is $187462 -in.representative_income 187467 Representative total house income in the dwelling unit is $187467 -in.representative_income 187483 Representative total house income in the dwelling unit is $187483 -in.representative_income 187503 Representative total house income in the dwelling unit is $187503 -in.representative_income 187509 Representative total house income in the dwelling unit is $187509 -in.representative_income 187510 Representative total house income in the dwelling unit is $187510 -in.representative_income 187516 Representative total house income in the dwelling unit is $187516 -in.representative_income 187517 Representative total house income in the dwelling unit is $187517 -in.representative_income 187518 Representative total house income in the dwelling unit is $187518 -in.representative_income 187531 Representative total house income in the dwelling unit is $187531 -in.representative_income 187567 Representative total house income in the dwelling unit is $187567 -in.representative_income 187570 Representative total house income in the dwelling unit is $187570 -in.representative_income 187584 Representative total house income in the dwelling unit is $187584 -in.representative_income 187596 Representative total house income in the dwelling unit is $187596 -in.representative_income 187602 Representative total house income in the dwelling unit is $187602 -in.representative_income 187614 Representative total house income in the dwelling unit is $187614 -in.representative_income 187622 Representative total house income in the dwelling unit is $187622 -in.representative_income 187628 Representative total house income in the dwelling unit is $187628 -in.representative_income 187639 Representative total house income in the dwelling unit is $187639 -in.representative_income 187678 Representative total house income in the dwelling unit is $187678 -in.representative_income 187685 Representative total house income in the dwelling unit is $187685 -in.representative_income 187720 Representative total house income in the dwelling unit is $187720 -in.representative_income 187724 Representative total house income in the dwelling unit is $187724 -in.representative_income 187732 Representative total house income in the dwelling unit is $187732 -in.representative_income 187735 Representative total house income in the dwelling unit is $187735 -in.representative_income 187746 Representative total house income in the dwelling unit is $187746 -in.representative_income 187773 Representative total house income in the dwelling unit is $187773 -in.representative_income 187786 Representative total house income in the dwelling unit is $187786 -in.representative_income 187787 Representative total house income in the dwelling unit is $187787 -in.representative_income 187807 Representative total house income in the dwelling unit is $187807 -in.representative_income 187825 Representative total house income in the dwelling unit is $187825 -in.representative_income 187827 Representative total house income in the dwelling unit is $187827 -in.representative_income 187854 Representative total house income in the dwelling unit is $187854 -in.representative_income 187865 Representative total house income in the dwelling unit is $187865 -in.representative_income 187868 Representative total house income in the dwelling unit is $187868 -in.representative_income 187870 Representative total house income in the dwelling unit is $187870 -in.representative_income 187878 Representative total house income in the dwelling unit is $187878 -in.representative_income 187883 Representative total house income in the dwelling unit is $187883 -in.representative_income 187887 Representative total house income in the dwelling unit is $187887 -in.representative_income 187904 Representative total house income in the dwelling unit is $187904 -in.representative_income 187907 Representative total house income in the dwelling unit is $187907 -in.representative_income 187913 Representative total house income in the dwelling unit is $187913 -in.representative_income 187927 Representative total house income in the dwelling unit is $187927 -in.representative_income 187930 Representative total house income in the dwelling unit is $187930 -in.representative_income 187931 Representative total house income in the dwelling unit is $187931 -in.representative_income 187937 Representative total house income in the dwelling unit is $187937 -in.representative_income 187942 Representative total house income in the dwelling unit is $187942 -in.representative_income 187950 Representative total house income in the dwelling unit is $187950 -in.representative_income 187961 Representative total house income in the dwelling unit is $187961 -in.representative_income 187982 Representative total house income in the dwelling unit is $187982 -in.representative_income 187983 Representative total house income in the dwelling unit is $187983 -in.representative_income 187988 Representative total house income in the dwelling unit is $187988 -in.representative_income 188001 Representative total house income in the dwelling unit is $188001 -in.representative_income 188002 Representative total house income in the dwelling unit is $188002 -in.representative_income 188015 Representative total house income in the dwelling unit is $188015 -in.representative_income 188018 Representative total house income in the dwelling unit is $188018 -in.representative_income 188023 Representative total house income in the dwelling unit is $188023 -in.representative_income 188034 Representative total house income in the dwelling unit is $188034 -in.representative_income 188037 Representative total house income in the dwelling unit is $188037 -in.representative_income 188061 Representative total house income in the dwelling unit is $188061 -in.representative_income 188068 Representative total house income in the dwelling unit is $188068 -in.representative_income 188079 Representative total house income in the dwelling unit is $188079 -in.representative_income 188089 Representative total house income in the dwelling unit is $188089 -in.representative_income 188099 Representative total house income in the dwelling unit is $188099 -in.representative_income 188109 Representative total house income in the dwelling unit is $188109 -in.representative_income 188112 Representative total house income in the dwelling unit is $188112 -in.representative_income 188122 Representative total house income in the dwelling unit is $188122 -in.representative_income 188137 Representative total house income in the dwelling unit is $188137 -in.representative_income 188140 Representative total house income in the dwelling unit is $188140 -in.representative_income 188142 Representative total house income in the dwelling unit is $188142 -in.representative_income 188147 Representative total house income in the dwelling unit is $188147 -in.representative_income 188163 Representative total house income in the dwelling unit is $188163 -in.representative_income 188165 Representative total house income in the dwelling unit is $188165 -in.representative_income 188175 Representative total house income in the dwelling unit is $188175 -in.representative_income 188190 Representative total house income in the dwelling unit is $188190 -in.representative_income 188194 Representative total house income in the dwelling unit is $188194 -in.representative_income 188200 Representative total house income in the dwelling unit is $188200 -in.representative_income 188205 Representative total house income in the dwelling unit is $188205 -in.representative_income 188218 Representative total house income in the dwelling unit is $188218 -in.representative_income 188223 Representative total house income in the dwelling unit is $188223 -in.representative_income 188240 Representative total house income in the dwelling unit is $188240 -in.representative_income 188241 Representative total house income in the dwelling unit is $188241 -in.representative_income 188247 Representative total house income in the dwelling unit is $188247 -in.representative_income 188251 Representative total house income in the dwelling unit is $188251 -in.representative_income 188254 Representative total house income in the dwelling unit is $188254 -in.representative_income 188261 Representative total house income in the dwelling unit is $188261 -in.representative_income 188283 Representative total house income in the dwelling unit is $188283 -in.representative_income 188291 Representative total house income in the dwelling unit is $188291 -in.representative_income 188326 Representative total house income in the dwelling unit is $188326 -in.representative_income 188331 Representative total house income in the dwelling unit is $188331 -in.representative_income 188336 Representative total house income in the dwelling unit is $188336 -in.representative_income 188342 Representative total house income in the dwelling unit is $188342 -in.representative_income 188343 Representative total house income in the dwelling unit is $188343 -in.representative_income 188352 Representative total house income in the dwelling unit is $188352 -in.representative_income 188369 Representative total house income in the dwelling unit is $188369 -in.representative_income 188391 Representative total house income in the dwelling unit is $188391 -in.representative_income 188392 Representative total house income in the dwelling unit is $188392 -in.representative_income 188395 Representative total house income in the dwelling unit is $188395 -in.representative_income 188414 Representative total house income in the dwelling unit is $188414 -in.representative_income 188432 Representative total house income in the dwelling unit is $188432 -in.representative_income 188434 Representative total house income in the dwelling unit is $188434 -in.representative_income 188446 Representative total house income in the dwelling unit is $188446 -in.representative_income 188453 Representative total house income in the dwelling unit is $188453 -in.representative_income 188458 Representative total house income in the dwelling unit is $188458 -in.representative_income 188461 Representative total house income in the dwelling unit is $188461 -in.representative_income 188468 Representative total house income in the dwelling unit is $188468 -in.representative_income 188493 Representative total house income in the dwelling unit is $188493 -in.representative_income 188498 Representative total house income in the dwelling unit is $188498 -in.representative_income 188502 Representative total house income in the dwelling unit is $188502 -in.representative_income 188533 Representative total house income in the dwelling unit is $188533 -in.representative_income 188542 Representative total house income in the dwelling unit is $188542 -in.representative_income 188550 Representative total house income in the dwelling unit is $188550 -in.representative_income 188556 Representative total house income in the dwelling unit is $188556 -in.representative_income 188563 Representative total house income in the dwelling unit is $188563 -in.representative_income 188594 Representative total house income in the dwelling unit is $188594 -in.representative_income 188596 Representative total house income in the dwelling unit is $188596 -in.representative_income 188605 Representative total house income in the dwelling unit is $188605 -in.representative_income 188621 Representative total house income in the dwelling unit is $188621 -in.representative_income 188624 Representative total house income in the dwelling unit is $188624 -in.representative_income 188627 Representative total house income in the dwelling unit is $188627 -in.representative_income 188634 Representative total house income in the dwelling unit is $188634 -in.representative_income 188650 Representative total house income in the dwelling unit is $188650 -in.representative_income 188653 Representative total house income in the dwelling unit is $188653 -in.representative_income 188669 Representative total house income in the dwelling unit is $188669 -in.representative_income 188680 Representative total house income in the dwelling unit is $188680 -in.representative_income 188695 Representative total house income in the dwelling unit is $188695 -in.representative_income 188704 Representative total house income in the dwelling unit is $188704 -in.representative_income 188712 Representative total house income in the dwelling unit is $188712 -in.representative_income 188742 Representative total house income in the dwelling unit is $188742 -in.representative_income 188744 Representative total house income in the dwelling unit is $188744 -in.representative_income 188756 Representative total house income in the dwelling unit is $188756 -in.representative_income 188758 Representative total house income in the dwelling unit is $188758 -in.representative_income 188766 Representative total house income in the dwelling unit is $188766 -in.representative_income 188775 Representative total house income in the dwelling unit is $188775 -in.representative_income 188785 Representative total house income in the dwelling unit is $188785 -in.representative_income 188790 Representative total house income in the dwelling unit is $188790 -in.representative_income 188796 Representative total house income in the dwelling unit is $188796 -in.representative_income 188809 Representative total house income in the dwelling unit is $188809 -in.representative_income 188818 Representative total house income in the dwelling unit is $188818 -in.representative_income 188820 Representative total house income in the dwelling unit is $188820 -in.representative_income 188827 Representative total house income in the dwelling unit is $188827 -in.representative_income 188842 Representative total house income in the dwelling unit is $188842 -in.representative_income 188859 Representative total house income in the dwelling unit is $188859 -in.representative_income 188866 Representative total house income in the dwelling unit is $188866 -in.representative_income 188880 Representative total house income in the dwelling unit is $188880 -in.representative_income 188897 Representative total house income in the dwelling unit is $188897 -in.representative_income 188899 Representative total house income in the dwelling unit is $188899 -in.representative_income 188907 Representative total house income in the dwelling unit is $188907 -in.representative_income 188911 Representative total house income in the dwelling unit is $188911 -in.representative_income 188917 Representative total house income in the dwelling unit is $188917 -in.representative_income 188927 Representative total house income in the dwelling unit is $188927 -in.representative_income 188938 Representative total house income in the dwelling unit is $188938 -in.representative_income 188958 Representative total house income in the dwelling unit is $188958 -in.representative_income 188959 Representative total house income in the dwelling unit is $188959 -in.representative_income 188962 Representative total house income in the dwelling unit is $188962 -in.representative_income 188972 Representative total house income in the dwelling unit is $188972 -in.representative_income 188975 Representative total house income in the dwelling unit is $188975 -in.representative_income 188981 Representative total house income in the dwelling unit is $188981 -in.representative_income 188983 Representative total house income in the dwelling unit is $188983 -in.representative_income 188985 Representative total house income in the dwelling unit is $188985 -in.representative_income 188998 Representative total house income in the dwelling unit is $188998 -in.representative_income 189008 Representative total house income in the dwelling unit is $189008 -in.representative_income 189014 Representative total house income in the dwelling unit is $189014 -in.representative_income 189035 Representative total house income in the dwelling unit is $189035 -in.representative_income 189049 Representative total house income in the dwelling unit is $189049 -in.representative_income 189065 Representative total house income in the dwelling unit is $189065 -in.representative_income 189083 Representative total house income in the dwelling unit is $189083 -in.representative_income 189084 Representative total house income in the dwelling unit is $189084 -in.representative_income 189089 Representative total house income in the dwelling unit is $189089 -in.representative_income 189090 Representative total house income in the dwelling unit is $189090 -in.representative_income 189093 Representative total house income in the dwelling unit is $189093 -in.representative_income 189099 Representative total house income in the dwelling unit is $189099 -in.representative_income 189101 Representative total house income in the dwelling unit is $189101 -in.representative_income 189116 Representative total house income in the dwelling unit is $189116 -in.representative_income 189119 Representative total house income in the dwelling unit is $189119 -in.representative_income 189126 Representative total house income in the dwelling unit is $189126 -in.representative_income 189127 Representative total house income in the dwelling unit is $189127 -in.representative_income 189136 Representative total house income in the dwelling unit is $189136 -in.representative_income 189141 Representative total house income in the dwelling unit is $189141 -in.representative_income 189147 Representative total house income in the dwelling unit is $189147 -in.representative_income 189150 Representative total house income in the dwelling unit is $189150 -in.representative_income 189169 Representative total house income in the dwelling unit is $189169 -in.representative_income 189175 Representative total house income in the dwelling unit is $189175 -in.representative_income 189190 Representative total house income in the dwelling unit is $189190 -in.representative_income 189197 Representative total house income in the dwelling unit is $189197 -in.representative_income 189200 Representative total house income in the dwelling unit is $189200 -in.representative_income 189220 Representative total house income in the dwelling unit is $189220 -in.representative_income 189228 Representative total house income in the dwelling unit is $189228 -in.representative_income 189230 Representative total house income in the dwelling unit is $189230 -in.representative_income 189249 Representative total house income in the dwelling unit is $189249 -in.representative_income 189266 Representative total house income in the dwelling unit is $189266 -in.representative_income 189270 Representative total house income in the dwelling unit is $189270 -in.representative_income 189272 Representative total house income in the dwelling unit is $189272 -in.representative_income 189292 Representative total house income in the dwelling unit is $189292 -in.representative_income 189298 Representative total house income in the dwelling unit is $189298 -in.representative_income 189301 Representative total house income in the dwelling unit is $189301 -in.representative_income 189302 Representative total house income in the dwelling unit is $189302 -in.representative_income 189303 Representative total house income in the dwelling unit is $189303 -in.representative_income 189324 Representative total house income in the dwelling unit is $189324 -in.representative_income 189333 Representative total house income in the dwelling unit is $189333 -in.representative_income 189354 Representative total house income in the dwelling unit is $189354 -in.representative_income 189356 Representative total house income in the dwelling unit is $189356 -in.representative_income 189357 Representative total house income in the dwelling unit is $189357 -in.representative_income 189374 Representative total house income in the dwelling unit is $189374 -in.representative_income 189402 Representative total house income in the dwelling unit is $189402 -in.representative_income 189406 Representative total house income in the dwelling unit is $189406 -in.representative_income 189407 Representative total house income in the dwelling unit is $189407 -in.representative_income 189421 Representative total house income in the dwelling unit is $189421 -in.representative_income 189426 Representative total house income in the dwelling unit is $189426 -in.representative_income 189428 Representative total house income in the dwelling unit is $189428 -in.representative_income 189432 Representative total house income in the dwelling unit is $189432 -in.representative_income 189456 Representative total house income in the dwelling unit is $189456 -in.representative_income 189464 Representative total house income in the dwelling unit is $189464 -in.representative_income 189475 Representative total house income in the dwelling unit is $189475 -in.representative_income 189478 Representative total house income in the dwelling unit is $189478 -in.representative_income 189503 Representative total house income in the dwelling unit is $189503 -in.representative_income 189507 Representative total house income in the dwelling unit is $189507 -in.representative_income 189513 Representative total house income in the dwelling unit is $189513 -in.representative_income 189523 Representative total house income in the dwelling unit is $189523 -in.representative_income 189542 Representative total house income in the dwelling unit is $189542 -in.representative_income 189568 Representative total house income in the dwelling unit is $189568 -in.representative_income 189571 Representative total house income in the dwelling unit is $189571 -in.representative_income 189581 Representative total house income in the dwelling unit is $189581 -in.representative_income 189603 Representative total house income in the dwelling unit is $189603 -in.representative_income 189604 Representative total house income in the dwelling unit is $189604 -in.representative_income 189618 Representative total house income in the dwelling unit is $189618 -in.representative_income 189622 Representative total house income in the dwelling unit is $189622 -in.representative_income 189635 Representative total house income in the dwelling unit is $189635 -in.representative_income 189645 Representative total house income in the dwelling unit is $189645 -in.representative_income 189678 Representative total house income in the dwelling unit is $189678 -in.representative_income 189684 Representative total house income in the dwelling unit is $189684 -in.representative_income 189705 Representative total house income in the dwelling unit is $189705 -in.representative_income 189731 Representative total house income in the dwelling unit is $189731 -in.representative_income 189732 Representative total house income in the dwelling unit is $189732 -in.representative_income 189745 Representative total house income in the dwelling unit is $189745 -in.representative_income 189766 Representative total house income in the dwelling unit is $189766 -in.representative_income 189786 Representative total house income in the dwelling unit is $189786 -in.representative_income 189788 Representative total house income in the dwelling unit is $189788 -in.representative_income 189806 Representative total house income in the dwelling unit is $189806 -in.representative_income 189820 Representative total house income in the dwelling unit is $189820 -in.representative_income 189830 Representative total house income in the dwelling unit is $189830 -in.representative_income 189839 Representative total house income in the dwelling unit is $189839 -in.representative_income 189840 Representative total house income in the dwelling unit is $189840 -in.representative_income 189847 Representative total house income in the dwelling unit is $189847 -in.representative_income 189850 Representative total house income in the dwelling unit is $189850 -in.representative_income 189868 Representative total house income in the dwelling unit is $189868 -in.representative_income 189871 Representative total house income in the dwelling unit is $189871 -in.representative_income 189872 Representative total house income in the dwelling unit is $189872 -in.representative_income 189882 Representative total house income in the dwelling unit is $189882 -in.representative_income 189890 Representative total house income in the dwelling unit is $189890 -in.representative_income 189891 Representative total house income in the dwelling unit is $189891 -in.representative_income 189892 Representative total house income in the dwelling unit is $189892 -in.representative_income 189893 Representative total house income in the dwelling unit is $189893 -in.representative_income 189894 Representative total house income in the dwelling unit is $189894 -in.representative_income 189901 Representative total house income in the dwelling unit is $189901 -in.representative_income 189907 Representative total house income in the dwelling unit is $189907 -in.representative_income 189911 Representative total house income in the dwelling unit is $189911 -in.representative_income 189935 Representative total house income in the dwelling unit is $189935 -in.representative_income 189947 Representative total house income in the dwelling unit is $189947 -in.representative_income 189958 Representative total house income in the dwelling unit is $189958 -in.representative_income 189968 Representative total house income in the dwelling unit is $189968 -in.representative_income 189983 Representative total house income in the dwelling unit is $189983 -in.representative_income 189993 Representative total house income in the dwelling unit is $189993 -in.representative_income 189997 Representative total house income in the dwelling unit is $189997 -in.representative_income 190001 Representative total house income in the dwelling unit is $190001 -in.representative_income 190008 Representative total house income in the dwelling unit is $190008 -in.representative_income 190019 Representative total house income in the dwelling unit is $190019 -in.representative_income 190030 Representative total house income in the dwelling unit is $190030 -in.representative_income 190033 Representative total house income in the dwelling unit is $190033 -in.representative_income 190040 Representative total house income in the dwelling unit is $190040 -in.representative_income 190055 Representative total house income in the dwelling unit is $190055 -in.representative_income 190059 Representative total house income in the dwelling unit is $190059 -in.representative_income 190079 Representative total house income in the dwelling unit is $190079 -in.representative_income 190085 Representative total house income in the dwelling unit is $190085 -in.representative_income 190092 Representative total house income in the dwelling unit is $190092 -in.representative_income 190093 Representative total house income in the dwelling unit is $190093 -in.representative_income 190097 Representative total house income in the dwelling unit is $190097 -in.representative_income 190104 Representative total house income in the dwelling unit is $190104 -in.representative_income 190108 Representative total house income in the dwelling unit is $190108 -in.representative_income 190109 Representative total house income in the dwelling unit is $190109 -in.representative_income 190112 Representative total house income in the dwelling unit is $190112 -in.representative_income 190119 Representative total house income in the dwelling unit is $190119 -in.representative_income 190120 Representative total house income in the dwelling unit is $190120 -in.representative_income 190129 Representative total house income in the dwelling unit is $190129 -in.representative_income 190140 Representative total house income in the dwelling unit is $190140 -in.representative_income 190145 Representative total house income in the dwelling unit is $190145 -in.representative_income 190151 Representative total house income in the dwelling unit is $190151 -in.representative_income 190160 Representative total house income in the dwelling unit is $190160 -in.representative_income 190163 Representative total house income in the dwelling unit is $190163 -in.representative_income 190172 Representative total house income in the dwelling unit is $190172 -in.representative_income 190180 Representative total house income in the dwelling unit is $190180 -in.representative_income 190189 Representative total house income in the dwelling unit is $190189 -in.representative_income 190200 Representative total house income in the dwelling unit is $190200 -in.representative_income 190210 Representative total house income in the dwelling unit is $190210 -in.representative_income 190215 Representative total house income in the dwelling unit is $190215 -in.representative_income 190217 Representative total house income in the dwelling unit is $190217 -in.representative_income 190218 Representative total house income in the dwelling unit is $190218 -in.representative_income 190231 Representative total house income in the dwelling unit is $190231 -in.representative_income 190241 Representative total house income in the dwelling unit is $190241 -in.representative_income 190251 Representative total house income in the dwelling unit is $190251 -in.representative_income 190252 Representative total house income in the dwelling unit is $190252 -in.representative_income 190258 Representative total house income in the dwelling unit is $190258 -in.representative_income 190262 Representative total house income in the dwelling unit is $190262 -in.representative_income 190269 Representative total house income in the dwelling unit is $190269 -in.representative_income 190271 Representative total house income in the dwelling unit is $190271 -in.representative_income 190303 Representative total house income in the dwelling unit is $190303 -in.representative_income 190311 Representative total house income in the dwelling unit is $190311 -in.representative_income 190313 Representative total house income in the dwelling unit is $190313 -in.representative_income 190322 Representative total house income in the dwelling unit is $190322 -in.representative_income 190324 Representative total house income in the dwelling unit is $190324 -in.representative_income 190325 Representative total house income in the dwelling unit is $190325 -in.representative_income 190344 Representative total house income in the dwelling unit is $190344 -in.representative_income 190356 Representative total house income in the dwelling unit is $190356 -in.representative_income 190365 Representative total house income in the dwelling unit is $190365 -in.representative_income 190378 Representative total house income in the dwelling unit is $190378 -in.representative_income 190407 Representative total house income in the dwelling unit is $190407 -in.representative_income 190412 Representative total house income in the dwelling unit is $190412 -in.representative_income 190430 Representative total house income in the dwelling unit is $190430 -in.representative_income 190433 Representative total house income in the dwelling unit is $190433 -in.representative_income 190454 Representative total house income in the dwelling unit is $190454 -in.representative_income 190462 Representative total house income in the dwelling unit is $190462 -in.representative_income 190472 Representative total house income in the dwelling unit is $190472 -in.representative_income 190486 Representative total house income in the dwelling unit is $190486 -in.representative_income 190487 Representative total house income in the dwelling unit is $190487 -in.representative_income 190489 Representative total house income in the dwelling unit is $190489 -in.representative_income 190513 Representative total house income in the dwelling unit is $190513 -in.representative_income 190520 Representative total house income in the dwelling unit is $190520 -in.representative_income 190525 Representative total house income in the dwelling unit is $190525 -in.representative_income 190530 Representative total house income in the dwelling unit is $190530 -in.representative_income 190536 Representative total house income in the dwelling unit is $190536 -in.representative_income 190537 Representative total house income in the dwelling unit is $190537 -in.representative_income 190542 Representative total house income in the dwelling unit is $190542 -in.representative_income 190543 Representative total house income in the dwelling unit is $190543 -in.representative_income 190546 Representative total house income in the dwelling unit is $190546 -in.representative_income 190568 Representative total house income in the dwelling unit is $190568 -in.representative_income 190595 Representative total house income in the dwelling unit is $190595 -in.representative_income 190612 Representative total house income in the dwelling unit is $190612 -in.representative_income 190614 Representative total house income in the dwelling unit is $190614 -in.representative_income 190620 Representative total house income in the dwelling unit is $190620 -in.representative_income 190645 Representative total house income in the dwelling unit is $190645 -in.representative_income 190664 Representative total house income in the dwelling unit is $190664 -in.representative_income 190673 Representative total house income in the dwelling unit is $190673 -in.representative_income 190698 Representative total house income in the dwelling unit is $190698 -in.representative_income 190701 Representative total house income in the dwelling unit is $190701 -in.representative_income 190703 Representative total house income in the dwelling unit is $190703 -in.representative_income 190704 Representative total house income in the dwelling unit is $190704 -in.representative_income 190715 Representative total house income in the dwelling unit is $190715 -in.representative_income 190716 Representative total house income in the dwelling unit is $190716 -in.representative_income 190719 Representative total house income in the dwelling unit is $190719 -in.representative_income 190736 Representative total house income in the dwelling unit is $190736 -in.representative_income 190752 Representative total house income in the dwelling unit is $190752 -in.representative_income 190757 Representative total house income in the dwelling unit is $190757 -in.representative_income 190767 Representative total house income in the dwelling unit is $190767 -in.representative_income 190778 Representative total house income in the dwelling unit is $190778 -in.representative_income 190784 Representative total house income in the dwelling unit is $190784 -in.representative_income 190795 Representative total house income in the dwelling unit is $190795 -in.representative_income 190811 Representative total house income in the dwelling unit is $190811 -in.representative_income 190816 Representative total house income in the dwelling unit is $190816 -in.representative_income 190819 Representative total house income in the dwelling unit is $190819 -in.representative_income 190859 Representative total house income in the dwelling unit is $190859 -in.representative_income 190868 Representative total house income in the dwelling unit is $190868 -in.representative_income 190871 Representative total house income in the dwelling unit is $190871 -in.representative_income 190883 Representative total house income in the dwelling unit is $190883 -in.representative_income 190904 Representative total house income in the dwelling unit is $190904 -in.representative_income 190917 Representative total house income in the dwelling unit is $190917 -in.representative_income 190919 Representative total house income in the dwelling unit is $190919 -in.representative_income 190922 Representative total house income in the dwelling unit is $190922 -in.representative_income 190937 Representative total house income in the dwelling unit is $190937 -in.representative_income 190948 Representative total house income in the dwelling unit is $190948 -in.representative_income 190958 Representative total house income in the dwelling unit is $190958 -in.representative_income 190966 Representative total house income in the dwelling unit is $190966 -in.representative_income 190977 Representative total house income in the dwelling unit is $190977 -in.representative_income 190984 Representative total house income in the dwelling unit is $190984 -in.representative_income 190989 Representative total house income in the dwelling unit is $190989 -in.representative_income 191018 Representative total house income in the dwelling unit is $191018 -in.representative_income 191025 Representative total house income in the dwelling unit is $191025 -in.representative_income 191027 Representative total house income in the dwelling unit is $191027 -in.representative_income 191031 Representative total house income in the dwelling unit is $191031 -in.representative_income 191036 Representative total house income in the dwelling unit is $191036 -in.representative_income 191046 Representative total house income in the dwelling unit is $191046 -in.representative_income 191050 Representative total house income in the dwelling unit is $191050 -in.representative_income 191054 Representative total house income in the dwelling unit is $191054 -in.representative_income 191066 Representative total house income in the dwelling unit is $191066 -in.representative_income 191074 Representative total house income in the dwelling unit is $191074 -in.representative_income 191075 Representative total house income in the dwelling unit is $191075 -in.representative_income 191095 Representative total house income in the dwelling unit is $191095 -in.representative_income 191105 Representative total house income in the dwelling unit is $191105 -in.representative_income 191119 Representative total house income in the dwelling unit is $191119 -in.representative_income 191128 Representative total house income in the dwelling unit is $191128 -in.representative_income 191135 Representative total house income in the dwelling unit is $191135 -in.representative_income 191147 Representative total house income in the dwelling unit is $191147 -in.representative_income 191160 Representative total house income in the dwelling unit is $191160 -in.representative_income 191167 Representative total house income in the dwelling unit is $191167 -in.representative_income 191170 Representative total house income in the dwelling unit is $191170 -in.representative_income 191182 Representative total house income in the dwelling unit is $191182 -in.representative_income 191200 Representative total house income in the dwelling unit is $191200 -in.representative_income 191213 Representative total house income in the dwelling unit is $191213 -in.representative_income 191220 Representative total house income in the dwelling unit is $191220 -in.representative_income 191231 Representative total house income in the dwelling unit is $191231 -in.representative_income 191243 Representative total house income in the dwelling unit is $191243 -in.representative_income 191244 Representative total house income in the dwelling unit is $191244 -in.representative_income 191245 Representative total house income in the dwelling unit is $191245 -in.representative_income 191266 Representative total house income in the dwelling unit is $191266 -in.representative_income 191275 Representative total house income in the dwelling unit is $191275 -in.representative_income 191283 Representative total house income in the dwelling unit is $191283 -in.representative_income 191289 Representative total house income in the dwelling unit is $191289 -in.representative_income 191301 Representative total house income in the dwelling unit is $191301 -in.representative_income 191306 Representative total house income in the dwelling unit is $191306 -in.representative_income 191310 Representative total house income in the dwelling unit is $191310 -in.representative_income 191321 Representative total house income in the dwelling unit is $191321 -in.representative_income 191327 Representative total house income in the dwelling unit is $191327 -in.representative_income 191332 Representative total house income in the dwelling unit is $191332 -in.representative_income 191335 Representative total house income in the dwelling unit is $191335 -in.representative_income 191342 Representative total house income in the dwelling unit is $191342 -in.representative_income 191352 Representative total house income in the dwelling unit is $191352 -in.representative_income 191384 Representative total house income in the dwelling unit is $191384 -in.representative_income 191396 Representative total house income in the dwelling unit is $191396 -in.representative_income 191411 Representative total house income in the dwelling unit is $191411 -in.representative_income 191418 Representative total house income in the dwelling unit is $191418 -in.representative_income 191422 Representative total house income in the dwelling unit is $191422 -in.representative_income 191438 Representative total house income in the dwelling unit is $191438 -in.representative_income 191445 Representative total house income in the dwelling unit is $191445 -in.representative_income 191460 Representative total house income in the dwelling unit is $191460 -in.representative_income 191475 Representative total house income in the dwelling unit is $191475 -in.representative_income 191478 Representative total house income in the dwelling unit is $191478 -in.representative_income 191503 Representative total house income in the dwelling unit is $191503 -in.representative_income 191513 Representative total house income in the dwelling unit is $191513 -in.representative_income 191516 Representative total house income in the dwelling unit is $191516 -in.representative_income 191523 Representative total house income in the dwelling unit is $191523 -in.representative_income 191540 Representative total house income in the dwelling unit is $191540 -in.representative_income 191552 Representative total house income in the dwelling unit is $191552 -in.representative_income 191567 Representative total house income in the dwelling unit is $191567 -in.representative_income 191572 Representative total house income in the dwelling unit is $191572 -in.representative_income 191611 Representative total house income in the dwelling unit is $191611 -in.representative_income 191622 Representative total house income in the dwelling unit is $191622 -in.representative_income 191625 Representative total house income in the dwelling unit is $191625 -in.representative_income 191631 Representative total house income in the dwelling unit is $191631 -in.representative_income 191644 Representative total house income in the dwelling unit is $191644 -in.representative_income 191664 Representative total house income in the dwelling unit is $191664 -in.representative_income 191675 Representative total house income in the dwelling unit is $191675 -in.representative_income 191718 Representative total house income in the dwelling unit is $191718 -in.representative_income 191726 Representative total house income in the dwelling unit is $191726 -in.representative_income 191757 Representative total house income in the dwelling unit is $191757 -in.representative_income 191761 Representative total house income in the dwelling unit is $191761 -in.representative_income 191767 Representative total house income in the dwelling unit is $191767 -in.representative_income 191776 Representative total house income in the dwelling unit is $191776 -in.representative_income 191783 Representative total house income in the dwelling unit is $191783 -in.representative_income 191801 Representative total house income in the dwelling unit is $191801 -in.representative_income 191826 Representative total house income in the dwelling unit is $191826 -in.representative_income 191827 Representative total house income in the dwelling unit is $191827 -in.representative_income 191850 Representative total house income in the dwelling unit is $191850 -in.representative_income 191857 Representative total house income in the dwelling unit is $191857 -in.representative_income 191879 Representative total house income in the dwelling unit is $191879 -in.representative_income 191881 Representative total house income in the dwelling unit is $191881 -in.representative_income 191891 Representative total house income in the dwelling unit is $191891 -in.representative_income 191895 Representative total house income in the dwelling unit is $191895 -in.representative_income 191928 Representative total house income in the dwelling unit is $191928 -in.representative_income 191932 Representative total house income in the dwelling unit is $191932 -in.representative_income 191933 Representative total house income in the dwelling unit is $191933 -in.representative_income 191938 Representative total house income in the dwelling unit is $191938 -in.representative_income 191948 Representative total house income in the dwelling unit is $191948 -in.representative_income 191954 Representative total house income in the dwelling unit is $191954 -in.representative_income 191962 Representative total house income in the dwelling unit is $191962 -in.representative_income 191974 Representative total house income in the dwelling unit is $191974 -in.representative_income 191998 Representative total house income in the dwelling unit is $191998 -in.representative_income 191999 Representative total house income in the dwelling unit is $191999 -in.representative_income 192008 Representative total house income in the dwelling unit is $192008 -in.representative_income 192018 Representative total house income in the dwelling unit is $192018 -in.representative_income 192029 Representative total house income in the dwelling unit is $192029 -in.representative_income 192044 Representative total house income in the dwelling unit is $192044 -in.representative_income 192057 Representative total house income in the dwelling unit is $192057 -in.representative_income 192069 Representative total house income in the dwelling unit is $192069 -in.representative_income 192087 Representative total house income in the dwelling unit is $192087 -in.representative_income 192097 Representative total house income in the dwelling unit is $192097 -in.representative_income 192108 Representative total house income in the dwelling unit is $192108 -in.representative_income 192109 Representative total house income in the dwelling unit is $192109 -in.representative_income 192111 Representative total house income in the dwelling unit is $192111 -in.representative_income 192130 Representative total house income in the dwelling unit is $192130 -in.representative_income 192147 Representative total house income in the dwelling unit is $192147 -in.representative_income 192149 Representative total house income in the dwelling unit is $192149 -in.representative_income 192159 Representative total house income in the dwelling unit is $192159 -in.representative_income 192181 Representative total house income in the dwelling unit is $192181 -in.representative_income 192216 Representative total house income in the dwelling unit is $192216 -in.representative_income 192231 Representative total house income in the dwelling unit is $192231 -in.representative_income 192242 Representative total house income in the dwelling unit is $192242 -in.representative_income 192254 Representative total house income in the dwelling unit is $192254 -in.representative_income 192255 Representative total house income in the dwelling unit is $192255 -in.representative_income 192263 Representative total house income in the dwelling unit is $192263 -in.representative_income 192276 Representative total house income in the dwelling unit is $192276 -in.representative_income 192294 Representative total house income in the dwelling unit is $192294 -in.representative_income 192301 Representative total house income in the dwelling unit is $192301 -in.representative_income 192308 Representative total house income in the dwelling unit is $192308 -in.representative_income 192324 Representative total house income in the dwelling unit is $192324 -in.representative_income 192332 Representative total house income in the dwelling unit is $192332 -in.representative_income 192335 Representative total house income in the dwelling unit is $192335 -in.representative_income 192345 Representative total house income in the dwelling unit is $192345 -in.representative_income 192361 Representative total house income in the dwelling unit is $192361 -in.representative_income 192362 Representative total house income in the dwelling unit is $192362 -in.representative_income 192366 Representative total house income in the dwelling unit is $192366 -in.representative_income 192378 Representative total house income in the dwelling unit is $192378 -in.representative_income 192382 Representative total house income in the dwelling unit is $192382 -in.representative_income 192413 Representative total house income in the dwelling unit is $192413 -in.representative_income 192432 Representative total house income in the dwelling unit is $192432 -in.representative_income 192433 Representative total house income in the dwelling unit is $192433 -in.representative_income 192466 Representative total house income in the dwelling unit is $192466 -in.representative_income 192469 Representative total house income in the dwelling unit is $192469 -in.representative_income 192481 Representative total house income in the dwelling unit is $192481 -in.representative_income 192518 Representative total house income in the dwelling unit is $192518 -in.representative_income 192534 Representative total house income in the dwelling unit is $192534 -in.representative_income 192540 Representative total house income in the dwelling unit is $192540 -in.representative_income 192544 Representative total house income in the dwelling unit is $192544 -in.representative_income 192571 Representative total house income in the dwelling unit is $192571 -in.representative_income 192573 Representative total house income in the dwelling unit is $192573 -in.representative_income 192576 Representative total house income in the dwelling unit is $192576 -in.representative_income 192584 Representative total house income in the dwelling unit is $192584 -in.representative_income 192587 Representative total house income in the dwelling unit is $192587 -in.representative_income 192603 Representative total house income in the dwelling unit is $192603 -in.representative_income 192624 Representative total house income in the dwelling unit is $192624 -in.representative_income 192635 Representative total house income in the dwelling unit is $192635 -in.representative_income 192645 Representative total house income in the dwelling unit is $192645 -in.representative_income 192648 Representative total house income in the dwelling unit is $192648 -in.representative_income 192658 Representative total house income in the dwelling unit is $192658 -in.representative_income 192675 Representative total house income in the dwelling unit is $192675 -in.representative_income 192676 Representative total house income in the dwelling unit is $192676 -in.representative_income 192684 Representative total house income in the dwelling unit is $192684 -in.representative_income 192686 Representative total house income in the dwelling unit is $192686 -in.representative_income 192696 Representative total house income in the dwelling unit is $192696 -in.representative_income 192716 Representative total house income in the dwelling unit is $192716 -in.representative_income 192731 Representative total house income in the dwelling unit is $192731 -in.representative_income 192736 Representative total house income in the dwelling unit is $192736 -in.representative_income 192755 Representative total house income in the dwelling unit is $192755 -in.representative_income 192778 Representative total house income in the dwelling unit is $192778 -in.representative_income 192782 Representative total house income in the dwelling unit is $192782 -in.representative_income 192792 Representative total house income in the dwelling unit is $192792 -in.representative_income 192814 Representative total house income in the dwelling unit is $192814 -in.representative_income 192840 Representative total house income in the dwelling unit is $192840 -in.representative_income 192863 Representative total house income in the dwelling unit is $192863 -in.representative_income 192867 Representative total house income in the dwelling unit is $192867 -in.representative_income 192882 Representative total house income in the dwelling unit is $192882 -in.representative_income 192887 Representative total house income in the dwelling unit is $192887 -in.representative_income 192888 Representative total house income in the dwelling unit is $192888 -in.representative_income 192899 Representative total house income in the dwelling unit is $192899 -in.representative_income 192902 Representative total house income in the dwelling unit is $192902 -in.representative_income 192933 Representative total house income in the dwelling unit is $192933 -in.representative_income 192938 Representative total house income in the dwelling unit is $192938 -in.representative_income 192972 Representative total house income in the dwelling unit is $192972 -in.representative_income 192978 Representative total house income in the dwelling unit is $192978 -in.representative_income 192985 Representative total house income in the dwelling unit is $192985 -in.representative_income 192993 Representative total house income in the dwelling unit is $192993 -in.representative_income 192995 Representative total house income in the dwelling unit is $192995 -in.representative_income 193007 Representative total house income in the dwelling unit is $193007 -in.representative_income 193039 Representative total house income in the dwelling unit is $193039 -in.representative_income 193077 Representative total house income in the dwelling unit is $193077 -in.representative_income 193080 Representative total house income in the dwelling unit is $193080 -in.representative_income 193099 Representative total house income in the dwelling unit is $193099 -in.representative_income 193113 Representative total house income in the dwelling unit is $193113 -in.representative_income 193140 Representative total house income in the dwelling unit is $193140 -in.representative_income 193151 Representative total house income in the dwelling unit is $193151 -in.representative_income 193188 Representative total house income in the dwelling unit is $193188 -in.representative_income 193190 Representative total house income in the dwelling unit is $193190 -in.representative_income 193191 Representative total house income in the dwelling unit is $193191 -in.representative_income 193204 Representative total house income in the dwelling unit is $193204 -in.representative_income 193221 Representative total house income in the dwelling unit is $193221 -in.representative_income 193241 Representative total house income in the dwelling unit is $193241 -in.representative_income 193242 Representative total house income in the dwelling unit is $193242 -in.representative_income 193253 Representative total house income in the dwelling unit is $193253 -in.representative_income 193281 Representative total house income in the dwelling unit is $193281 -in.representative_income 193294 Representative total house income in the dwelling unit is $193294 -in.representative_income 193309 Representative total house income in the dwelling unit is $193309 -in.representative_income 193328 Representative total house income in the dwelling unit is $193328 -in.representative_income 193342 Representative total house income in the dwelling unit is $193342 -in.representative_income 193397 Representative total house income in the dwelling unit is $193397 -in.representative_income 193404 Representative total house income in the dwelling unit is $193404 -in.representative_income 193415 Representative total house income in the dwelling unit is $193415 -in.representative_income 193436 Representative total house income in the dwelling unit is $193436 -in.representative_income 193443 Representative total house income in the dwelling unit is $193443 -in.representative_income 193447 Representative total house income in the dwelling unit is $193447 -in.representative_income 193483 Representative total house income in the dwelling unit is $193483 -in.representative_income 193490 Representative total house income in the dwelling unit is $193490 -in.representative_income 193501 Representative total house income in the dwelling unit is $193501 -in.representative_income 193503 Representative total house income in the dwelling unit is $193503 -in.representative_income 193512 Representative total house income in the dwelling unit is $193512 -in.representative_income 193520 Representative total house income in the dwelling unit is $193520 -in.representative_income 193543 Representative total house income in the dwelling unit is $193543 -in.representative_income 193544 Representative total house income in the dwelling unit is $193544 -in.representative_income 193590 Representative total house income in the dwelling unit is $193590 -in.representative_income 193620 Representative total house income in the dwelling unit is $193620 -in.representative_income 193626 Representative total house income in the dwelling unit is $193626 -in.representative_income 193645 Representative total house income in the dwelling unit is $193645 -in.representative_income 193650 Representative total house income in the dwelling unit is $193650 -in.representative_income 193704 Representative total house income in the dwelling unit is $193704 -in.representative_income 193707 Representative total house income in the dwelling unit is $193707 -in.representative_income 193710 Representative total house income in the dwelling unit is $193710 -in.representative_income 193729 Representative total house income in the dwelling unit is $193729 -in.representative_income 193731 Representative total house income in the dwelling unit is $193731 -in.representative_income 193746 Representative total house income in the dwelling unit is $193746 -in.representative_income 193750 Representative total house income in the dwelling unit is $193750 -in.representative_income 193757 Representative total house income in the dwelling unit is $193757 -in.representative_income 193810 Representative total house income in the dwelling unit is $193810 -in.representative_income 193837 Representative total house income in the dwelling unit is $193837 -in.representative_income 193865 Representative total house income in the dwelling unit is $193865 -in.representative_income 193913 Representative total house income in the dwelling unit is $193913 -in.representative_income 193942 Representative total house income in the dwelling unit is $193942 -in.representative_income 193944 Representative total house income in the dwelling unit is $193944 -in.representative_income 193948 Representative total house income in the dwelling unit is $193948 -in.representative_income 193972 Representative total house income in the dwelling unit is $193972 -in.representative_income 193978 Representative total house income in the dwelling unit is $193978 -in.representative_income 193987 Representative total house income in the dwelling unit is $193987 -in.representative_income 194016 Representative total house income in the dwelling unit is $194016 -in.representative_income 194047 Representative total house income in the dwelling unit is $194047 -in.representative_income 194049 Representative total house income in the dwelling unit is $194049 -in.representative_income 194052 Representative total house income in the dwelling unit is $194052 -in.representative_income 194080 Representative total house income in the dwelling unit is $194080 -in.representative_income 194120 Representative total house income in the dwelling unit is $194120 -in.representative_income 194122 Representative total house income in the dwelling unit is $194122 -in.representative_income 194153 Representative total house income in the dwelling unit is $194153 -in.representative_income 194160 Representative total house income in the dwelling unit is $194160 -in.representative_income 194187 Representative total house income in the dwelling unit is $194187 -in.representative_income 194223 Representative total house income in the dwelling unit is $194223 -in.representative_income 194225 Representative total house income in the dwelling unit is $194225 -in.representative_income 194251 Representative total house income in the dwelling unit is $194251 -in.representative_income 194253 Representative total house income in the dwelling unit is $194253 -in.representative_income 194259 Representative total house income in the dwelling unit is $194259 -in.representative_income 194268 Representative total house income in the dwelling unit is $194268 -in.representative_income 194294 Representative total house income in the dwelling unit is $194294 -in.representative_income 194303 Representative total house income in the dwelling unit is $194303 -in.representative_income 194311 Representative total house income in the dwelling unit is $194311 -in.representative_income 194325 Representative total house income in the dwelling unit is $194325 -in.representative_income 194342 Representative total house income in the dwelling unit is $194342 -in.representative_income 194348 Representative total house income in the dwelling unit is $194348 -in.representative_income 194352 Representative total house income in the dwelling unit is $194352 -in.representative_income 194355 Representative total house income in the dwelling unit is $194355 -in.representative_income 194376 Representative total house income in the dwelling unit is $194376 -in.representative_income 194402 Representative total house income in the dwelling unit is $194402 -in.representative_income 194427 Representative total house income in the dwelling unit is $194427 -in.representative_income 194429 Representative total house income in the dwelling unit is $194429 -in.representative_income 194444 Representative total house income in the dwelling unit is $194444 -in.representative_income 194453 Representative total house income in the dwelling unit is $194453 -in.representative_income 194469 Representative total house income in the dwelling unit is $194469 -in.representative_income 194485 Representative total house income in the dwelling unit is $194485 -in.representative_income 194539 Representative total house income in the dwelling unit is $194539 -in.representative_income 194554 Representative total house income in the dwelling unit is $194554 -in.representative_income 194562 Representative total house income in the dwelling unit is $194562 -in.representative_income 194575 Representative total house income in the dwelling unit is $194575 -in.representative_income 194593 Representative total house income in the dwelling unit is $194593 -in.representative_income 194595 Representative total house income in the dwelling unit is $194595 -in.representative_income 194617 Representative total house income in the dwelling unit is $194617 -in.representative_income 194625 Representative total house income in the dwelling unit is $194625 -in.representative_income 194680 Representative total house income in the dwelling unit is $194680 -in.representative_income 194701 Representative total house income in the dwelling unit is $194701 -in.representative_income 194705 Representative total house income in the dwelling unit is $194705 -in.representative_income 194723 Representative total house income in the dwelling unit is $194723 -in.representative_income 194739 Representative total house income in the dwelling unit is $194739 -in.representative_income 194756 Representative total house income in the dwelling unit is $194756 -in.representative_income 194794 Representative total house income in the dwelling unit is $194794 -in.representative_income 194797 Representative total house income in the dwelling unit is $194797 -in.representative_income 194809 Representative total house income in the dwelling unit is $194809 -in.representative_income 194831 Representative total house income in the dwelling unit is $194831 -in.representative_income 194841 Representative total house income in the dwelling unit is $194841 -in.representative_income 194857 Representative total house income in the dwelling unit is $194857 -in.representative_income 194892 Representative total house income in the dwelling unit is $194892 -in.representative_income 194917 Representative total house income in the dwelling unit is $194917 -in.representative_income 194938 Representative total house income in the dwelling unit is $194938 -in.representative_income 194944 Representative total house income in the dwelling unit is $194944 -in.representative_income 194949 Representative total house income in the dwelling unit is $194949 -in.representative_income 194958 Representative total house income in the dwelling unit is $194958 -in.representative_income 194965 Representative total house income in the dwelling unit is $194965 -in.representative_income 195025 Representative total house income in the dwelling unit is $195025 -in.representative_income 195039 Representative total house income in the dwelling unit is $195039 -in.representative_income 195046 Representative total house income in the dwelling unit is $195046 -in.representative_income 195059 Representative total house income in the dwelling unit is $195059 -in.representative_income 195099 Representative total house income in the dwelling unit is $195099 -in.representative_income 195102 Representative total house income in the dwelling unit is $195102 -in.representative_income 195133 Representative total house income in the dwelling unit is $195133 -in.representative_income 195151 Representative total house income in the dwelling unit is $195151 -in.representative_income 195160 Representative total house income in the dwelling unit is $195160 -in.representative_income 195181 Representative total house income in the dwelling unit is $195181 -in.representative_income 195208 Representative total house income in the dwelling unit is $195208 -in.representative_income 195240 Representative total house income in the dwelling unit is $195240 -in.representative_income 195313 Representative total house income in the dwelling unit is $195313 -in.representative_income 195342 Representative total house income in the dwelling unit is $195342 -in.representative_income 195349 Representative total house income in the dwelling unit is $195349 -in.representative_income 195362 Representative total house income in the dwelling unit is $195362 -in.representative_income 195367 Representative total house income in the dwelling unit is $195367 -in.representative_income 195418 Representative total house income in the dwelling unit is $195418 -in.representative_income 195457 Representative total house income in the dwelling unit is $195457 -in.representative_income 195460 Representative total house income in the dwelling unit is $195460 -in.representative_income 195461 Representative total house income in the dwelling unit is $195461 -in.representative_income 195463 Representative total house income in the dwelling unit is $195463 -in.representative_income 195486 Representative total house income in the dwelling unit is $195486 -in.representative_income 195524 Representative total house income in the dwelling unit is $195524 -in.representative_income 195563 Representative total house income in the dwelling unit is $195563 -in.representative_income 195564 Representative total house income in the dwelling unit is $195564 -in.representative_income 195565 Representative total house income in the dwelling unit is $195565 -in.representative_income 195576 Representative total house income in the dwelling unit is $195576 -in.representative_income 195583 Representative total house income in the dwelling unit is $195583 -in.representative_income 195584 Representative total house income in the dwelling unit is $195584 -in.representative_income 195595 Representative total house income in the dwelling unit is $195595 -in.representative_income 195604 Representative total house income in the dwelling unit is $195604 -in.representative_income 195619 Representative total house income in the dwelling unit is $195619 -in.representative_income 195630 Representative total house income in the dwelling unit is $195630 -in.representative_income 195667 Representative total house income in the dwelling unit is $195667 -in.representative_income 195673 Representative total house income in the dwelling unit is $195673 -in.representative_income 195735 Representative total house income in the dwelling unit is $195735 -in.representative_income 195738 Representative total house income in the dwelling unit is $195738 -in.representative_income 195743 Representative total house income in the dwelling unit is $195743 -in.representative_income 195766 Representative total house income in the dwelling unit is $195766 -in.representative_income 195770 Representative total house income in the dwelling unit is $195770 -in.representative_income 195840 Representative total house income in the dwelling unit is $195840 -in.representative_income 195946 Representative total house income in the dwelling unit is $195946 -in.representative_income 195968 Representative total house income in the dwelling unit is $195968 -in.representative_income 195976 Representative total house income in the dwelling unit is $195976 -in.representative_income 195997 Representative total house income in the dwelling unit is $195997 -in.representative_income 196012 Representative total house income in the dwelling unit is $196012 -in.representative_income 196069 Representative total house income in the dwelling unit is $196069 -in.representative_income 196079 Representative total house income in the dwelling unit is $196079 -in.representative_income 196119 Representative total house income in the dwelling unit is $196119 -in.representative_income 196157 Representative total house income in the dwelling unit is $196157 -in.representative_income 196182 Representative total house income in the dwelling unit is $196182 -in.representative_income 196199 Representative total house income in the dwelling unit is $196199 -in.representative_income 196234 Representative total house income in the dwelling unit is $196234 -in.representative_income 196271 Representative total house income in the dwelling unit is $196271 -in.representative_income 196272 Representative total house income in the dwelling unit is $196272 -in.representative_income 196322 Representative total house income in the dwelling unit is $196322 -in.representative_income 196323 Representative total house income in the dwelling unit is $196323 -in.representative_income 196394 Representative total house income in the dwelling unit is $196394 -in.representative_income 196429 Representative total house income in the dwelling unit is $196429 -in.representative_income 196441 Representative total house income in the dwelling unit is $196441 -in.representative_income 196473 Representative total house income in the dwelling unit is $196473 -in.representative_income 196491 Representative total house income in the dwelling unit is $196491 -in.representative_income 196537 Representative total house income in the dwelling unit is $196537 -in.representative_income 196578 Representative total house income in the dwelling unit is $196578 -in.representative_income 196595 Representative total house income in the dwelling unit is $196595 -in.representative_income 196612 Representative total house income in the dwelling unit is $196612 -in.representative_income 196626 Representative total house income in the dwelling unit is $196626 -in.representative_income 196645 Representative total house income in the dwelling unit is $196645 -in.representative_income 196656 Representative total house income in the dwelling unit is $196656 -in.representative_income 196675 Representative total house income in the dwelling unit is $196675 -in.representative_income 196684 Representative total house income in the dwelling unit is $196684 -in.representative_income 196776 Representative total house income in the dwelling unit is $196776 -in.representative_income 196801 Representative total house income in the dwelling unit is $196801 -in.representative_income 196851 Representative total house income in the dwelling unit is $196851 -in.representative_income 196862 Representative total house income in the dwelling unit is $196862 -in.representative_income 196877 Representative total house income in the dwelling unit is $196877 -in.representative_income 196900 Representative total house income in the dwelling unit is $196900 -in.representative_income 196978 Representative total house income in the dwelling unit is $196978 -in.representative_income 196987 Representative total house income in the dwelling unit is $196987 -in.representative_income 197000 Representative total house income in the dwelling unit is $197000 -in.representative_income 197008 Representative total house income in the dwelling unit is $197008 -in.representative_income 197078 Representative total house income in the dwelling unit is $197078 -in.representative_income 197079 Representative total house income in the dwelling unit is $197079 -in.representative_income 197085 Representative total house income in the dwelling unit is $197085 -in.representative_income 197106 Representative total house income in the dwelling unit is $197106 -in.representative_income 197180 Representative total house income in the dwelling unit is $197180 -in.representative_income 197183 Representative total house income in the dwelling unit is $197183 -in.representative_income 197186 Representative total house income in the dwelling unit is $197186 -in.representative_income 197211 Representative total house income in the dwelling unit is $197211 -in.representative_income 197214 Representative total house income in the dwelling unit is $197214 -in.representative_income 197240 Representative total house income in the dwelling unit is $197240 -in.representative_income 197281 Representative total house income in the dwelling unit is $197281 -in.representative_income 197317 Representative total house income in the dwelling unit is $197317 -in.representative_income 197382 Representative total house income in the dwelling unit is $197382 -in.representative_income 197423 Representative total house income in the dwelling unit is $197423 -in.representative_income 197440 Representative total house income in the dwelling unit is $197440 -in.representative_income 197483 Representative total house income in the dwelling unit is $197483 -in.representative_income 197510 Representative total house income in the dwelling unit is $197510 -in.representative_income 197514 Representative total house income in the dwelling unit is $197514 -in.representative_income 197584 Representative total house income in the dwelling unit is $197584 -in.representative_income 197617 Representative total house income in the dwelling unit is $197617 -in.representative_income 197622 Representative total house income in the dwelling unit is $197622 -in.representative_income 197687 Representative total house income in the dwelling unit is $197687 -in.representative_income 197726 Representative total house income in the dwelling unit is $197726 -in.representative_income 197729 Representative total house income in the dwelling unit is $197729 -in.representative_income 197786 Representative total house income in the dwelling unit is $197786 -in.representative_income 197854 Representative total house income in the dwelling unit is $197854 -in.representative_income 197944 Representative total house income in the dwelling unit is $197944 -in.representative_income 197949 Representative total house income in the dwelling unit is $197949 -in.representative_income 197988 Representative total house income in the dwelling unit is $197988 -in.representative_income 198039 Representative total house income in the dwelling unit is $198039 -in.representative_income 198059 Representative total house income in the dwelling unit is $198059 -in.representative_income 198089 Representative total house income in the dwelling unit is $198089 -in.representative_income 198158 Representative total house income in the dwelling unit is $198158 -in.representative_income 198266 Representative total house income in the dwelling unit is $198266 -in.representative_income 198276 Representative total house income in the dwelling unit is $198276 -in.representative_income 198291 Representative total house income in the dwelling unit is $198291 -in.representative_income 198373 Representative total house income in the dwelling unit is $198373 -in.representative_income 198452 Representative total house income in the dwelling unit is $198452 -in.representative_income 198481 Representative total house income in the dwelling unit is $198481 -in.representative_income 198555 Representative total house income in the dwelling unit is $198555 -in.representative_income 198589 Representative total house income in the dwelling unit is $198589 -in.representative_income 198691 Representative total house income in the dwelling unit is $198691 -in.representative_income 198695 Representative total house income in the dwelling unit is $198695 -in.representative_income 198782 Representative total house income in the dwelling unit is $198782 -in.representative_income 198803 Representative total house income in the dwelling unit is $198803 -in.representative_income 198806 Representative total house income in the dwelling unit is $198806 -in.representative_income 198914 Representative total house income in the dwelling unit is $198914 -in.representative_income 198967 Representative total house income in the dwelling unit is $198967 -in.representative_income 198999 Representative total house income in the dwelling unit is $198999 -in.representative_income 199004 Representative total house income in the dwelling unit is $199004 -in.representative_income 199018 Representative total house income in the dwelling unit is $199018 -in.representative_income 199071 Representative total house income in the dwelling unit is $199071 -in.representative_income 199201 Representative total house income in the dwelling unit is $199201 -in.representative_income 199232 Representative total house income in the dwelling unit is $199232 -in.representative_income 199302 Representative total house income in the dwelling unit is $199302 -in.representative_income 199321 Representative total house income in the dwelling unit is $199321 -in.representative_income 199373 Representative total house income in the dwelling unit is $199373 -in.representative_income 199379 Representative total house income in the dwelling unit is $199379 -in.representative_income 199426 Representative total house income in the dwelling unit is $199426 -in.representative_income 199455 Representative total house income in the dwelling unit is $199455 -in.representative_income 199483 Representative total house income in the dwelling unit is $199483 -in.representative_income 199504 Representative total house income in the dwelling unit is $199504 -in.representative_income 199586 Representative total house income in the dwelling unit is $199586 -in.representative_income 199605 Representative total house income in the dwelling unit is $199605 -in.representative_income 199662 Representative total house income in the dwelling unit is $199662 -in.representative_income 199690 Representative total house income in the dwelling unit is $199690 -in.representative_income 199742 Representative total house income in the dwelling unit is $199742 -in.representative_income 199768 Representative total house income in the dwelling unit is $199768 -in.representative_income 199779 Representative total house income in the dwelling unit is $199779 -in.representative_income 199876 Representative total house income in the dwelling unit is $199876 -in.representative_income 199887 Representative total house income in the dwelling unit is $199887 -in.representative_income 199908 Representative total house income in the dwelling unit is $199908 -in.representative_income 199994 Representative total house income in the dwelling unit is $199994 -in.representative_income 200009 Representative total house income in the dwelling unit is $200009 -in.representative_income 200102 Representative total house income in the dwelling unit is $200102 -in.representative_income 200185 Representative total house income in the dwelling unit is $200185 -in.representative_income 200211 Representative total house income in the dwelling unit is $200211 -in.representative_income 200305 Representative total house income in the dwelling unit is $200305 -in.representative_income 200319 Representative total house income in the dwelling unit is $200319 -in.representative_income 200375 Representative total house income in the dwelling unit is $200375 -in.representative_income 200413 Representative total house income in the dwelling unit is $200413 -in.representative_income 200514 Representative total house income in the dwelling unit is $200514 -in.representative_income 200586 Representative total house income in the dwelling unit is $200586 -in.representative_income 200643 Representative total house income in the dwelling unit is $200643 -in.representative_income 200735 Representative total house income in the dwelling unit is $200735 -in.representative_income 200817 Representative total house income in the dwelling unit is $200817 -in.representative_income 200843 Representative total house income in the dwelling unit is $200843 -in.representative_income 200860 Representative total house income in the dwelling unit is $200860 -in.representative_income 200864 Representative total house income in the dwelling unit is $200864 -in.representative_income 200902 Representative total house income in the dwelling unit is $200902 -in.representative_income 200968 Representative total house income in the dwelling unit is $200968 -in.representative_income 201019 Representative total house income in the dwelling unit is $201019 -in.representative_income 201133 Representative total house income in the dwelling unit is $201133 -in.representative_income 201221 Representative total house income in the dwelling unit is $201221 -in.representative_income 201272 Representative total house income in the dwelling unit is $201272 -in.representative_income 201430 Representative total house income in the dwelling unit is $201430 -in.representative_income 201507 Representative total house income in the dwelling unit is $201507 -in.representative_income 201524 Representative total house income in the dwelling unit is $201524 -in.representative_income 201609 Representative total house income in the dwelling unit is $201609 -in.representative_income 201616 Representative total house income in the dwelling unit is $201616 -in.representative_income 201649 Representative total house income in the dwelling unit is $201649 -in.representative_income 201809 Representative total house income in the dwelling unit is $201809 -in.representative_income 201827 Representative total house income in the dwelling unit is $201827 -in.representative_income 201852 Representative total house income in the dwelling unit is $201852 -in.representative_income 201856 Representative total house income in the dwelling unit is $201856 -in.representative_income 201916 Representative total house income in the dwelling unit is $201916 -in.representative_income 201963 Representative total house income in the dwelling unit is $201963 -in.representative_income 202029 Representative total house income in the dwelling unit is $202029 -in.representative_income 202048 Representative total house income in the dwelling unit is $202048 -in.representative_income 202130 Representative total house income in the dwelling unit is $202130 -in.representative_income 202156 Representative total house income in the dwelling unit is $202156 -in.representative_income 202165 Representative total house income in the dwelling unit is $202165 -in.representative_income 202168 Representative total house income in the dwelling unit is $202168 -in.representative_income 202231 Representative total house income in the dwelling unit is $202231 -in.representative_income 202345 Representative total house income in the dwelling unit is $202345 -in.representative_income 202371 Representative total house income in the dwelling unit is $202371 -in.representative_income 202393 Representative total house income in the dwelling unit is $202393 -in.representative_income 202480 Representative total house income in the dwelling unit is $202480 -in.representative_income 202484 Representative total house income in the dwelling unit is $202484 -in.representative_income 202485 Representative total house income in the dwelling unit is $202485 -in.representative_income 202534 Representative total house income in the dwelling unit is $202534 -in.representative_income 202696 Representative total house income in the dwelling unit is $202696 -in.representative_income 202785 Representative total house income in the dwelling unit is $202785 -in.representative_income 202793 Representative total house income in the dwelling unit is $202793 -in.representative_income 202882 Representative total house income in the dwelling unit is $202882 -in.representative_income 202886 Representative total house income in the dwelling unit is $202886 -in.representative_income 202887 Representative total house income in the dwelling unit is $202887 -in.representative_income 202906 Representative total house income in the dwelling unit is $202906 -in.representative_income 202912 Representative total house income in the dwelling unit is $202912 -in.representative_income 202989 Representative total house income in the dwelling unit is $202989 -in.representative_income 203039 Representative total house income in the dwelling unit is $203039 -in.representative_income 203128 Representative total house income in the dwelling unit is $203128 -in.representative_income 203196 Representative total house income in the dwelling unit is $203196 -in.representative_income 203237 Representative total house income in the dwelling unit is $203237 -in.representative_income 203275 Representative total house income in the dwelling unit is $203275 -in.representative_income 203342 Representative total house income in the dwelling unit is $203342 -in.representative_income 203539 Representative total house income in the dwelling unit is $203539 -in.representative_income 203544 Representative total house income in the dwelling unit is $203544 -in.representative_income 203605 Representative total house income in the dwelling unit is $203605 -in.representative_income 203668 Representative total house income in the dwelling unit is $203668 -in.representative_income 203712 Representative total house income in the dwelling unit is $203712 -in.representative_income 203722 Representative total house income in the dwelling unit is $203722 -in.representative_income 203740 Representative total house income in the dwelling unit is $203740 -in.representative_income 203750 Representative total house income in the dwelling unit is $203750 -in.representative_income 203856 Representative total house income in the dwelling unit is $203856 -in.representative_income 203878 Representative total house income in the dwelling unit is $203878 -in.representative_income 203884 Representative total house income in the dwelling unit is $203884 -in.representative_income 203955 Representative total house income in the dwelling unit is $203955 -in.representative_income 203961 Representative total house income in the dwelling unit is $203961 -in.representative_income 203993 Representative total house income in the dwelling unit is $203993 -in.representative_income 204049 Representative total house income in the dwelling unit is $204049 -in.representative_income 204101 Representative total house income in the dwelling unit is $204101 -in.representative_income 204170 Representative total house income in the dwelling unit is $204170 -in.representative_income 204209 Representative total house income in the dwelling unit is $204209 -in.representative_income 204220 Representative total house income in the dwelling unit is $204220 -in.representative_income 204227 Representative total house income in the dwelling unit is $204227 -in.representative_income 204277 Representative total house income in the dwelling unit is $204277 -in.representative_income 204317 Representative total house income in the dwelling unit is $204317 -in.representative_income 204425 Representative total house income in the dwelling unit is $204425 -in.representative_income 204453 Representative total house income in the dwelling unit is $204453 -in.representative_income 204478 Representative total house income in the dwelling unit is $204478 -in.representative_income 204554 Representative total house income in the dwelling unit is $204554 -in.representative_income 204594 Representative total house income in the dwelling unit is $204594 -in.representative_income 204625 Representative total house income in the dwelling unit is $204625 -in.representative_income 204641 Representative total house income in the dwelling unit is $204641 -in.representative_income 204699 Representative total house income in the dwelling unit is $204699 -in.representative_income 204749 Representative total house income in the dwelling unit is $204749 -in.representative_income 204756 Representative total house income in the dwelling unit is $204756 -in.representative_income 204846 Representative total house income in the dwelling unit is $204846 -in.representative_income 204857 Representative total house income in the dwelling unit is $204857 -in.representative_income 204879 Representative total house income in the dwelling unit is $204879 -in.representative_income 205016 Representative total house income in the dwelling unit is $205016 -in.representative_income 205029 Representative total house income in the dwelling unit is $205029 -in.representative_income 205059 Representative total house income in the dwelling unit is $205059 -in.representative_income 205226 Representative total house income in the dwelling unit is $205226 -in.representative_income 205244 Representative total house income in the dwelling unit is $205244 -in.representative_income 205259 Representative total house income in the dwelling unit is $205259 -in.representative_income 205261 Representative total house income in the dwelling unit is $205261 -in.representative_income 205289 Representative total house income in the dwelling unit is $205289 -in.representative_income 205332 Representative total house income in the dwelling unit is $205332 -in.representative_income 205362 Representative total house income in the dwelling unit is $205362 -in.representative_income 205505 Representative total house income in the dwelling unit is $205505 -in.representative_income 205542 Representative total house income in the dwelling unit is $205542 -in.representative_income 205565 Representative total house income in the dwelling unit is $205565 -in.representative_income 205649 Representative total house income in the dwelling unit is $205649 -in.representative_income 205672 Representative total house income in the dwelling unit is $205672 -in.representative_income 205775 Representative total house income in the dwelling unit is $205775 -in.representative_income 205807 Representative total house income in the dwelling unit is $205807 -in.representative_income 205830 Representative total house income in the dwelling unit is $205830 -in.representative_income 205859 Representative total house income in the dwelling unit is $205859 -in.representative_income 205969 Representative total house income in the dwelling unit is $205969 -in.representative_income 206070 Representative total house income in the dwelling unit is $206070 -in.representative_income 206102 Representative total house income in the dwelling unit is $206102 -in.representative_income 206175 Representative total house income in the dwelling unit is $206175 -in.representative_income 206210 Representative total house income in the dwelling unit is $206210 -in.representative_income 206291 Representative total house income in the dwelling unit is $206291 -in.representative_income 206370 Representative total house income in the dwelling unit is $206370 -in.representative_income 206393 Representative total house income in the dwelling unit is $206393 -in.representative_income 206474 Representative total house income in the dwelling unit is $206474 -in.representative_income 206478 Representative total house income in the dwelling unit is $206478 -in.representative_income 206492 Representative total house income in the dwelling unit is $206492 -in.representative_income 206497 Representative total house income in the dwelling unit is $206497 -in.representative_income 206586 Representative total house income in the dwelling unit is $206586 -in.representative_income 206650 Representative total house income in the dwelling unit is $206650 -in.representative_income 206666 Representative total house income in the dwelling unit is $206666 -in.representative_income 206676 Representative total house income in the dwelling unit is $206676 -in.representative_income 206703 Representative total house income in the dwelling unit is $206703 -in.representative_income 206746 Representative total house income in the dwelling unit is $206746 -in.representative_income 206802 Representative total house income in the dwelling unit is $206802 -in.representative_income 206807 Representative total house income in the dwelling unit is $206807 -in.representative_income 206878 Representative total house income in the dwelling unit is $206878 -in.representative_income 206914 Representative total house income in the dwelling unit is $206914 -in.representative_income 206961 Representative total house income in the dwelling unit is $206961 -in.representative_income 207029 Representative total house income in the dwelling unit is $207029 -in.representative_income 207080 Representative total house income in the dwelling unit is $207080 -in.representative_income 207175 Representative total house income in the dwelling unit is $207175 -in.representative_income 207245 Representative total house income in the dwelling unit is $207245 -in.representative_income 207283 Representative total house income in the dwelling unit is $207283 -in.representative_income 207322 Representative total house income in the dwelling unit is $207322 -in.representative_income 207332 Representative total house income in the dwelling unit is $207332 -in.representative_income 207391 Representative total house income in the dwelling unit is $207391 -in.representative_income 207441 Representative total house income in the dwelling unit is $207441 -in.representative_income 207450 Representative total house income in the dwelling unit is $207450 -in.representative_income 207498 Representative total house income in the dwelling unit is $207498 -in.representative_income 207528 Representative total house income in the dwelling unit is $207528 -in.representative_income 207547 Representative total house income in the dwelling unit is $207547 -in.representative_income 207558 Representative total house income in the dwelling unit is $207558 -in.representative_income 207605 Representative total house income in the dwelling unit is $207605 -in.representative_income 207612 Representative total house income in the dwelling unit is $207612 -in.representative_income 207686 Representative total house income in the dwelling unit is $207686 -in.representative_income 207712 Representative total house income in the dwelling unit is $207712 -in.representative_income 207757 Representative total house income in the dwelling unit is $207757 -in.representative_income 207787 Representative total house income in the dwelling unit is $207787 -in.representative_income 207838 Representative total house income in the dwelling unit is $207838 -in.representative_income 207888 Representative total house income in the dwelling unit is $207888 -in.representative_income 207968 Representative total house income in the dwelling unit is $207968 -in.representative_income 208035 Representative total house income in the dwelling unit is $208035 -in.representative_income 208045 Representative total house income in the dwelling unit is $208045 -in.representative_income 208090 Representative total house income in the dwelling unit is $208090 -in.representative_income 208180 Representative total house income in the dwelling unit is $208180 -in.representative_income 208249 Representative total house income in the dwelling unit is $208249 -in.representative_income 208354 Representative total house income in the dwelling unit is $208354 -in.representative_income 208390 Representative total house income in the dwelling unit is $208390 -in.representative_income 208421 Representative total house income in the dwelling unit is $208421 -in.representative_income 208530 Representative total house income in the dwelling unit is $208530 -in.representative_income 208559 Representative total house income in the dwelling unit is $208559 -in.representative_income 208571 Representative total house income in the dwelling unit is $208571 -in.representative_income 208595 Representative total house income in the dwelling unit is $208595 -in.representative_income 208601 Representative total house income in the dwelling unit is $208601 -in.representative_income 208638 Representative total house income in the dwelling unit is $208638 -in.representative_income 208656 Representative total house income in the dwelling unit is $208656 -in.representative_income 208679 Representative total house income in the dwelling unit is $208679 -in.representative_income 208684 Representative total house income in the dwelling unit is $208684 -in.representative_income 208785 Representative total house income in the dwelling unit is $208785 -in.representative_income 208797 Representative total house income in the dwelling unit is $208797 -in.representative_income 208812 Representative total house income in the dwelling unit is $208812 -in.representative_income 208869 Representative total house income in the dwelling unit is $208869 -in.representative_income 208875 Representative total house income in the dwelling unit is $208875 -in.representative_income 209001 Representative total house income in the dwelling unit is $209001 -in.representative_income 209039 Representative total house income in the dwelling unit is $209039 -in.representative_income 209100 Representative total house income in the dwelling unit is $209100 -in.representative_income 209179 Representative total house income in the dwelling unit is $209179 -in.representative_income 209234 Representative total house income in the dwelling unit is $209234 -in.representative_income 209287 Representative total house income in the dwelling unit is $209287 -in.representative_income 209322 Representative total house income in the dwelling unit is $209322 -in.representative_income 209343 Representative total house income in the dwelling unit is $209343 -in.representative_income 209385 Representative total house income in the dwelling unit is $209385 -in.representative_income 209550 Representative total house income in the dwelling unit is $209550 -in.representative_income 209555 Representative total house income in the dwelling unit is $209555 -in.representative_income 209569 Representative total house income in the dwelling unit is $209569 -in.representative_income 209592 Representative total house income in the dwelling unit is $209592 -in.representative_income 209605 Representative total house income in the dwelling unit is $209605 -in.representative_income 209612 Representative total house income in the dwelling unit is $209612 -in.representative_income 209694 Representative total house income in the dwelling unit is $209694 -in.representative_income 209706 Representative total house income in the dwelling unit is $209706 -in.representative_income 209752 Representative total house income in the dwelling unit is $209752 -in.representative_income 209797 Representative total house income in the dwelling unit is $209797 -in.representative_income 209804 Representative total house income in the dwelling unit is $209804 -in.representative_income 209859 Representative total house income in the dwelling unit is $209859 -in.representative_income 209866 Representative total house income in the dwelling unit is $209866 -in.representative_income 209908 Representative total house income in the dwelling unit is $209908 -in.representative_income 209935 Representative total house income in the dwelling unit is $209935 -in.representative_income 210004 Representative total house income in the dwelling unit is $210004 -in.representative_income 210009 Representative total house income in the dwelling unit is $210009 -in.representative_income 210043 Representative total house income in the dwelling unit is $210043 -in.representative_income 210110 Representative total house income in the dwelling unit is $210110 -in.representative_income 210181 Representative total house income in the dwelling unit is $210181 -in.representative_income 210211 Representative total house income in the dwelling unit is $210211 -in.representative_income 210396 Representative total house income in the dwelling unit is $210396 -in.representative_income 210413 Representative total house income in the dwelling unit is $210413 -in.representative_income 210416 Representative total house income in the dwelling unit is $210416 -in.representative_income 210476 Representative total house income in the dwelling unit is $210476 -in.representative_income 210514 Representative total house income in the dwelling unit is $210514 -in.representative_income 210611 Representative total house income in the dwelling unit is $210611 -in.representative_income 210615 Representative total house income in the dwelling unit is $210615 -in.representative_income 210692 Representative total house income in the dwelling unit is $210692 -in.representative_income 210711 Representative total house income in the dwelling unit is $210711 -in.representative_income 210757 Representative total house income in the dwelling unit is $210757 -in.representative_income 210826 Representative total house income in the dwelling unit is $210826 -in.representative_income 210827 Representative total house income in the dwelling unit is $210827 -in.representative_income 210853 Representative total house income in the dwelling unit is $210853 -in.representative_income 210921 Representative total house income in the dwelling unit is $210921 -in.representative_income 210932 Representative total house income in the dwelling unit is $210932 -in.representative_income 210933 Representative total house income in the dwelling unit is $210933 -in.representative_income 210942 Representative total house income in the dwelling unit is $210942 -in.representative_income 211015 Representative total house income in the dwelling unit is $211015 -in.representative_income 211019 Representative total house income in the dwelling unit is $211019 -in.representative_income 211037 Representative total house income in the dwelling unit is $211037 -in.representative_income 211120 Representative total house income in the dwelling unit is $211120 -in.representative_income 211139 Representative total house income in the dwelling unit is $211139 -in.representative_income 211232 Representative total house income in the dwelling unit is $211232 -in.representative_income 211242 Representative total house income in the dwelling unit is $211242 -in.representative_income 211307 Representative total house income in the dwelling unit is $211307 -in.representative_income 211322 Representative total house income in the dwelling unit is $211322 -in.representative_income 211343 Representative total house income in the dwelling unit is $211343 -in.representative_income 211448 Representative total house income in the dwelling unit is $211448 -in.representative_income 211449 Representative total house income in the dwelling unit is $211449 -in.representative_income 211470 Representative total house income in the dwelling unit is $211470 -in.representative_income 211519 Representative total house income in the dwelling unit is $211519 -in.representative_income 211524 Representative total house income in the dwelling unit is $211524 -in.representative_income 211551 Representative total house income in the dwelling unit is $211551 -in.representative_income 211556 Representative total house income in the dwelling unit is $211556 -in.representative_income 211625 Representative total house income in the dwelling unit is $211625 -in.representative_income 211654 Representative total house income in the dwelling unit is $211654 -in.representative_income 211684 Representative total house income in the dwelling unit is $211684 -in.representative_income 211708 Representative total house income in the dwelling unit is $211708 -in.representative_income 211712 Representative total house income in the dwelling unit is $211712 -in.representative_income 211765 Representative total house income in the dwelling unit is $211765 -in.representative_income 211772 Representative total house income in the dwelling unit is $211772 -in.representative_income 211792 Representative total house income in the dwelling unit is $211792 -in.representative_income 211840 Representative total house income in the dwelling unit is $211840 -in.representative_income 211860 Representative total house income in the dwelling unit is $211860 -in.representative_income 211976 Representative total house income in the dwelling unit is $211976 -in.representative_income 212015 Representative total house income in the dwelling unit is $212015 -in.representative_income 212029 Representative total house income in the dwelling unit is $212029 -in.representative_income 212130 Representative total house income in the dwelling unit is $212130 -in.representative_income 212151 Representative total house income in the dwelling unit is $212151 -in.representative_income 212204 Representative total house income in the dwelling unit is $212204 -in.representative_income 212231 Representative total house income in the dwelling unit is $212231 -in.representative_income 212273 Representative total house income in the dwelling unit is $212273 -in.representative_income 212376 Representative total house income in the dwelling unit is $212376 -in.representative_income 212397 Representative total house income in the dwelling unit is $212397 -in.representative_income 212434 Representative total house income in the dwelling unit is $212434 -in.representative_income 212479 Representative total house income in the dwelling unit is $212479 -in.representative_income 212503 Representative total house income in the dwelling unit is $212503 -in.representative_income 212511 Representative total house income in the dwelling unit is $212511 -in.representative_income 212543 Representative total house income in the dwelling unit is $212543 -in.representative_income 212636 Representative total house income in the dwelling unit is $212636 -in.representative_income 212650 Representative total house income in the dwelling unit is $212650 -in.representative_income 212714 Representative total house income in the dwelling unit is $212714 -in.representative_income 212737 Representative total house income in the dwelling unit is $212737 -in.representative_income 212757 Representative total house income in the dwelling unit is $212757 -in.representative_income 212841 Representative total house income in the dwelling unit is $212841 -in.representative_income 212853 Representative total house income in the dwelling unit is $212853 -in.representative_income 212872 Representative total house income in the dwelling unit is $212872 -in.representative_income 212892 Representative total house income in the dwelling unit is $212892 -in.representative_income 212961 Representative total house income in the dwelling unit is $212961 -in.representative_income 212972 Representative total house income in the dwelling unit is $212972 -in.representative_income 212995 Representative total house income in the dwelling unit is $212995 -in.representative_income 213030 Representative total house income in the dwelling unit is $213030 -in.representative_income 213040 Representative total house income in the dwelling unit is $213040 -in.representative_income 213069 Representative total house income in the dwelling unit is $213069 -in.representative_income 213080 Representative total house income in the dwelling unit is $213080 -in.representative_income 213141 Representative total house income in the dwelling unit is $213141 -in.representative_income 213170 Representative total house income in the dwelling unit is $213170 -in.representative_income 213177 Representative total house income in the dwelling unit is $213177 -in.representative_income 213187 Representative total house income in the dwelling unit is $213187 -in.representative_income 213201 Representative total house income in the dwelling unit is $213201 -in.representative_income 213305 Representative total house income in the dwelling unit is $213305 -in.representative_income 213361 Representative total house income in the dwelling unit is $213361 -in.representative_income 213392 Representative total house income in the dwelling unit is $213392 -in.representative_income 213509 Representative total house income in the dwelling unit is $213509 -in.representative_income 213510 Representative total house income in the dwelling unit is $213510 -in.representative_income 213545 Representative total house income in the dwelling unit is $213545 -in.representative_income 213558 Representative total house income in the dwelling unit is $213558 -in.representative_income 213614 Representative total house income in the dwelling unit is $213614 -in.representative_income 213617 Representative total house income in the dwelling unit is $213617 -in.representative_income 213646 Representative total house income in the dwelling unit is $213646 -in.representative_income 213663 Representative total house income in the dwelling unit is $213663 -in.representative_income 213747 Representative total house income in the dwelling unit is $213747 -in.representative_income 213769 Representative total house income in the dwelling unit is $213769 -in.representative_income 213831 Representative total house income in the dwelling unit is $213831 -in.representative_income 213836 Representative total house income in the dwelling unit is $213836 -in.representative_income 213933 Representative total house income in the dwelling unit is $213933 -in.representative_income 213949 Representative total house income in the dwelling unit is $213949 -in.representative_income 213980 Representative total house income in the dwelling unit is $213980 -in.representative_income 214026 Representative total house income in the dwelling unit is $214026 -in.representative_income 214041 Representative total house income in the dwelling unit is $214041 -in.representative_income 214085 Representative total house income in the dwelling unit is $214085 -in.representative_income 214129 Representative total house income in the dwelling unit is $214129 -in.representative_income 214151 Representative total house income in the dwelling unit is $214151 -in.representative_income 214233 Representative total house income in the dwelling unit is $214233 -in.representative_income 214252 Representative total house income in the dwelling unit is $214252 -in.representative_income 214257 Representative total house income in the dwelling unit is $214257 -in.representative_income 214336 Representative total house income in the dwelling unit is $214336 -in.representative_income 214401 Representative total house income in the dwelling unit is $214401 -in.representative_income 214459 Representative total house income in the dwelling unit is $214459 -in.representative_income 214474 Representative total house income in the dwelling unit is $214474 -in.representative_income 214496 Representative total house income in the dwelling unit is $214496 -in.representative_income 214507 Representative total house income in the dwelling unit is $214507 -in.representative_income 214543 Representative total house income in the dwelling unit is $214543 -in.representative_income 214555 Representative total house income in the dwelling unit is $214555 -in.representative_income 214613 Representative total house income in the dwelling unit is $214613 -in.representative_income 214656 Representative total house income in the dwelling unit is $214656 -in.representative_income 214690 Representative total house income in the dwelling unit is $214690 -in.representative_income 214733 Representative total house income in the dwelling unit is $214733 -in.representative_income 214743 Representative total house income in the dwelling unit is $214743 -in.representative_income 214748 Representative total house income in the dwelling unit is $214748 -in.representative_income 214757 Representative total house income in the dwelling unit is $214757 -in.representative_income 214868 Representative total house income in the dwelling unit is $214868 -in.representative_income 214904 Representative total house income in the dwelling unit is $214904 -in.representative_income 214949 Representative total house income in the dwelling unit is $214949 -in.representative_income 214955 Representative total house income in the dwelling unit is $214955 -in.representative_income 215013 Representative total house income in the dwelling unit is $215013 -in.representative_income 215019 Representative total house income in the dwelling unit is $215019 -in.representative_income 215058 Representative total house income in the dwelling unit is $215058 -in.representative_income 215119 Representative total house income in the dwelling unit is $215119 -in.representative_income 215140 Representative total house income in the dwelling unit is $215140 -in.representative_income 215161 Representative total house income in the dwelling unit is $215161 -in.representative_income 215230 Representative total house income in the dwelling unit is $215230 -in.representative_income 215295 Representative total house income in the dwelling unit is $215295 -in.representative_income 215351 Representative total house income in the dwelling unit is $215351 -in.representative_income 215446 Representative total house income in the dwelling unit is $215446 -in.representative_income 215456 Representative total house income in the dwelling unit is $215456 -in.representative_income 215464 Representative total house income in the dwelling unit is $215464 -in.representative_income 215548 Representative total house income in the dwelling unit is $215548 -in.representative_income 215554 Representative total house income in the dwelling unit is $215554 -in.representative_income 215561 Representative total house income in the dwelling unit is $215561 -in.representative_income 215565 Representative total house income in the dwelling unit is $215565 -in.representative_income 215574 Representative total house income in the dwelling unit is $215574 -in.representative_income 215666 Representative total house income in the dwelling unit is $215666 -in.representative_income 215676 Representative total house income in the dwelling unit is $215676 -in.representative_income 215752 Representative total house income in the dwelling unit is $215752 -in.representative_income 215763 Representative total house income in the dwelling unit is $215763 -in.representative_income 215773 Representative total house income in the dwelling unit is $215773 -in.representative_income 215780 Representative total house income in the dwelling unit is $215780 -in.representative_income 215978 Representative total house income in the dwelling unit is $215978 -in.representative_income 215986 Representative total house income in the dwelling unit is $215986 -in.representative_income 216070 Representative total house income in the dwelling unit is $216070 -in.representative_income 216085 Representative total house income in the dwelling unit is $216085 -in.representative_income 216094 Representative total house income in the dwelling unit is $216094 -in.representative_income 216105 Representative total house income in the dwelling unit is $216105 -in.representative_income 216110 Representative total house income in the dwelling unit is $216110 -in.representative_income 216171 Representative total house income in the dwelling unit is $216171 -in.representative_income 216193 Representative total house income in the dwelling unit is $216193 -in.representative_income 216194 Representative total house income in the dwelling unit is $216194 -in.representative_income 216292 Representative total house income in the dwelling unit is $216292 -in.representative_income 216300 Representative total house income in the dwelling unit is $216300 -in.representative_income 216302 Representative total house income in the dwelling unit is $216302 -in.representative_income 216310 Representative total house income in the dwelling unit is $216310 -in.representative_income 216373 Representative total house income in the dwelling unit is $216373 -in.representative_income 216408 Representative total house income in the dwelling unit is $216408 -in.representative_income 216511 Representative total house income in the dwelling unit is $216511 -in.representative_income 216605 Representative total house income in the dwelling unit is $216605 -in.representative_income 216676 Representative total house income in the dwelling unit is $216676 -in.representative_income 216689 Representative total house income in the dwelling unit is $216689 -in.representative_income 216721 Representative total house income in the dwelling unit is $216721 -in.representative_income 216770 Representative total house income in the dwelling unit is $216770 -in.representative_income 216783 Representative total house income in the dwelling unit is $216783 -in.representative_income 216811 Representative total house income in the dwelling unit is $216811 -in.representative_income 216837 Representative total house income in the dwelling unit is $216837 -in.representative_income 216878 Representative total house income in the dwelling unit is $216878 -in.representative_income 216890 Representative total house income in the dwelling unit is $216890 -in.representative_income 216914 Representative total house income in the dwelling unit is $216914 -in.representative_income 216944 Representative total house income in the dwelling unit is $216944 -in.representative_income 216979 Representative total house income in the dwelling unit is $216979 -in.representative_income 217121 Representative total house income in the dwelling unit is $217121 -in.representative_income 217144 Representative total house income in the dwelling unit is $217144 -in.representative_income 217158 Representative total house income in the dwelling unit is $217158 -in.representative_income 217174 Representative total house income in the dwelling unit is $217174 -in.representative_income 217181 Representative total house income in the dwelling unit is $217181 -in.representative_income 217212 Representative total house income in the dwelling unit is $217212 -in.representative_income 217249 Representative total house income in the dwelling unit is $217249 -in.representative_income 217259 Representative total house income in the dwelling unit is $217259 -in.representative_income 217266 Representative total house income in the dwelling unit is $217266 -in.representative_income 217280 Representative total house income in the dwelling unit is $217280 -in.representative_income 217352 Representative total house income in the dwelling unit is $217352 -in.representative_income 217373 Representative total house income in the dwelling unit is $217373 -in.representative_income 217390 Representative total house income in the dwelling unit is $217390 -in.representative_income 217430 Representative total house income in the dwelling unit is $217430 -in.representative_income 217459 Representative total house income in the dwelling unit is $217459 -in.representative_income 217499 Representative total house income in the dwelling unit is $217499 -in.representative_income 217513 Representative total house income in the dwelling unit is $217513 -in.representative_income 217588 Representative total house income in the dwelling unit is $217588 -in.representative_income 217637 Representative total house income in the dwelling unit is $217637 -in.representative_income 217686 Representative total house income in the dwelling unit is $217686 -in.representative_income 217710 Representative total house income in the dwelling unit is $217710 -in.representative_income 217715 Representative total house income in the dwelling unit is $217715 -in.representative_income 217776 Representative total house income in the dwelling unit is $217776 -in.representative_income 217787 Representative total house income in the dwelling unit is $217787 -in.representative_income 217823 Representative total house income in the dwelling unit is $217823 -in.representative_income 217888 Representative total house income in the dwelling unit is $217888 -in.representative_income 217910 Representative total house income in the dwelling unit is $217910 -in.representative_income 217946 Representative total house income in the dwelling unit is $217946 -in.representative_income 217987 Representative total house income in the dwelling unit is $217987 -in.representative_income 218018 Representative total house income in the dwelling unit is $218018 -in.representative_income 218047 Representative total house income in the dwelling unit is $218047 -in.representative_income 218049 Representative total house income in the dwelling unit is $218049 -in.representative_income 218090 Representative total house income in the dwelling unit is $218090 -in.representative_income 218092 Representative total house income in the dwelling unit is $218092 -in.representative_income 218125 Representative total house income in the dwelling unit is $218125 -in.representative_income 218152 Representative total house income in the dwelling unit is $218152 -in.representative_income 218191 Representative total house income in the dwelling unit is $218191 -in.representative_income 218255 Representative total house income in the dwelling unit is $218255 -in.representative_income 218256 Representative total house income in the dwelling unit is $218256 -in.representative_income 218262 Representative total house income in the dwelling unit is $218262 -in.representative_income 218277 Representative total house income in the dwelling unit is $218277 -in.representative_income 218304 Representative total house income in the dwelling unit is $218304 -in.representative_income 218325 Representative total house income in the dwelling unit is $218325 -in.representative_income 218339 Representative total house income in the dwelling unit is $218339 -in.representative_income 218343 Representative total house income in the dwelling unit is $218343 -in.representative_income 218363 Representative total house income in the dwelling unit is $218363 -in.representative_income 218409 Representative total house income in the dwelling unit is $218409 -in.representative_income 218410 Representative total house income in the dwelling unit is $218410 -in.representative_income 218440 Representative total house income in the dwelling unit is $218440 -in.representative_income 218447 Representative total house income in the dwelling unit is $218447 -in.representative_income 218514 Representative total house income in the dwelling unit is $218514 -in.representative_income 218536 Representative total house income in the dwelling unit is $218536 -in.representative_income 218590 Representative total house income in the dwelling unit is $218590 -in.representative_income 218620 Representative total house income in the dwelling unit is $218620 -in.representative_income 218662 Representative total house income in the dwelling unit is $218662 -in.representative_income 218668 Representative total house income in the dwelling unit is $218668 -in.representative_income 218687 Representative total house income in the dwelling unit is $218687 -in.representative_income 218725 Representative total house income in the dwelling unit is $218725 -in.representative_income 218795 Representative total house income in the dwelling unit is $218795 -in.representative_income 218830 Representative total house income in the dwelling unit is $218830 -in.representative_income 218837 Representative total house income in the dwelling unit is $218837 -in.representative_income 218977 Representative total house income in the dwelling unit is $218977 -in.representative_income 218983 Representative total house income in the dwelling unit is $218983 -in.representative_income 219042 Representative total house income in the dwelling unit is $219042 -in.representative_income 219091 Representative total house income in the dwelling unit is $219091 -in.representative_income 219120 Representative total house income in the dwelling unit is $219120 -in.representative_income 219184 Representative total house income in the dwelling unit is $219184 -in.representative_income 219199 Representative total house income in the dwelling unit is $219199 -in.representative_income 219201 Representative total house income in the dwelling unit is $219201 -in.representative_income 219232 Representative total house income in the dwelling unit is $219232 -in.representative_income 219252 Representative total house income in the dwelling unit is $219252 -in.representative_income 219282 Representative total house income in the dwelling unit is $219282 -in.representative_income 219287 Representative total house income in the dwelling unit is $219287 -in.representative_income 219302 Representative total house income in the dwelling unit is $219302 -in.representative_income 219335 Representative total house income in the dwelling unit is $219335 -in.representative_income 219358 Representative total house income in the dwelling unit is $219358 -in.representative_income 219379 Representative total house income in the dwelling unit is $219379 -in.representative_income 219404 Representative total house income in the dwelling unit is $219404 -in.representative_income 219413 Representative total house income in the dwelling unit is $219413 -in.representative_income 219421 Representative total house income in the dwelling unit is $219421 -in.representative_income 219493 Representative total house income in the dwelling unit is $219493 -in.representative_income 219551 Representative total house income in the dwelling unit is $219551 -in.representative_income 219569 Representative total house income in the dwelling unit is $219569 -in.representative_income 219628 Representative total house income in the dwelling unit is $219628 -in.representative_income 219699 Representative total house income in the dwelling unit is $219699 -in.representative_income 219707 Representative total house income in the dwelling unit is $219707 -in.representative_income 219735 Representative total house income in the dwelling unit is $219735 -in.representative_income 219767 Representative total house income in the dwelling unit is $219767 -in.representative_income 219876 Representative total house income in the dwelling unit is $219876 -in.representative_income 219909 Representative total house income in the dwelling unit is $219909 -in.representative_income 220010 Representative total house income in the dwelling unit is $220010 -in.representative_income 220057 Representative total house income in the dwelling unit is $220057 -in.representative_income 220060 Representative total house income in the dwelling unit is $220060 -in.representative_income 220096 Representative total house income in the dwelling unit is $220096 -in.representative_income 220100 Representative total house income in the dwelling unit is $220100 -in.representative_income 220111 Representative total house income in the dwelling unit is $220111 -in.representative_income 220164 Representative total house income in the dwelling unit is $220164 -in.representative_income 220202 Representative total house income in the dwelling unit is $220202 -in.representative_income 220212 Representative total house income in the dwelling unit is $220212 -in.representative_income 220318 Representative total house income in the dwelling unit is $220318 -in.representative_income 220413 Representative total house income in the dwelling unit is $220413 -in.representative_income 220414 Representative total house income in the dwelling unit is $220414 -in.representative_income 220416 Representative total house income in the dwelling unit is $220416 -in.representative_income 220422 Representative total house income in the dwelling unit is $220422 -in.representative_income 220525 Representative total house income in the dwelling unit is $220525 -in.representative_income 220616 Representative total house income in the dwelling unit is $220616 -in.representative_income 220627 Representative total house income in the dwelling unit is $220627 -in.representative_income 220632 Representative total house income in the dwelling unit is $220632 -in.representative_income 220701 Representative total house income in the dwelling unit is $220701 -in.representative_income 220717 Representative total house income in the dwelling unit is $220717 -in.representative_income 220731 Representative total house income in the dwelling unit is $220731 -in.representative_income 220740 Representative total house income in the dwelling unit is $220740 -in.representative_income 220848 Representative total house income in the dwelling unit is $220848 -in.representative_income 220919 Representative total house income in the dwelling unit is $220919 -in.representative_income 220937 Representative total house income in the dwelling unit is $220937 -in.representative_income 220956 Representative total house income in the dwelling unit is $220956 -in.representative_income 221020 Representative total house income in the dwelling unit is $221020 -in.representative_income 221130 Representative total house income in the dwelling unit is $221130 -in.representative_income 221143 Representative total house income in the dwelling unit is $221143 -in.representative_income 221151 Representative total house income in the dwelling unit is $221151 -in.representative_income 221172 Representative total house income in the dwelling unit is $221172 -in.representative_income 221222 Representative total house income in the dwelling unit is $221222 -in.representative_income 221238 Representative total house income in the dwelling unit is $221238 -in.representative_income 221280 Representative total house income in the dwelling unit is $221280 -in.representative_income 221323 Representative total house income in the dwelling unit is $221323 -in.representative_income 221345 Representative total house income in the dwelling unit is $221345 -in.representative_income 221350 Representative total house income in the dwelling unit is $221350 -in.representative_income 221361 Representative total house income in the dwelling unit is $221361 -in.representative_income 221388 Representative total house income in the dwelling unit is $221388 -in.representative_income 221453 Representative total house income in the dwelling unit is $221453 -in.representative_income 221468 Representative total house income in the dwelling unit is $221468 -in.representative_income 221497 Representative total house income in the dwelling unit is $221497 -in.representative_income 221525 Representative total house income in the dwelling unit is $221525 -in.representative_income 221556 Representative total house income in the dwelling unit is $221556 -in.representative_income 221573 Representative total house income in the dwelling unit is $221573 -in.representative_income 221605 Representative total house income in the dwelling unit is $221605 -in.representative_income 221625 Representative total house income in the dwelling unit is $221625 -in.representative_income 221659 Representative total house income in the dwelling unit is $221659 -in.representative_income 221660 Representative total house income in the dwelling unit is $221660 -in.representative_income 221667 Representative total house income in the dwelling unit is $221667 -in.representative_income 221727 Representative total house income in the dwelling unit is $221727 -in.representative_income 221742 Representative total house income in the dwelling unit is $221742 -in.representative_income 221762 Representative total house income in the dwelling unit is $221762 -in.representative_income 221774 Representative total house income in the dwelling unit is $221774 -in.representative_income 221785 Representative total house income in the dwelling unit is $221785 -in.representative_income 221814 Representative total house income in the dwelling unit is $221814 -in.representative_income 221820 Representative total house income in the dwelling unit is $221820 -in.representative_income 221865 Representative total house income in the dwelling unit is $221865 -in.representative_income 221928 Representative total house income in the dwelling unit is $221928 -in.representative_income 221929 Representative total house income in the dwelling unit is $221929 -in.representative_income 221989 Representative total house income in the dwelling unit is $221989 -in.representative_income 221994 Representative total house income in the dwelling unit is $221994 -in.representative_income 222020 Representative total house income in the dwelling unit is $222020 -in.representative_income 222030 Representative total house income in the dwelling unit is $222030 -in.representative_income 222036 Representative total house income in the dwelling unit is $222036 -in.representative_income 222058 Representative total house income in the dwelling unit is $222058 -in.representative_income 222072 Representative total house income in the dwelling unit is $222072 -in.representative_income 222132 Representative total house income in the dwelling unit is $222132 -in.representative_income 222204 Representative total house income in the dwelling unit is $222204 -in.representative_income 222206 Representative total house income in the dwelling unit is $222206 -in.representative_income 222226 Representative total house income in the dwelling unit is $222226 -in.representative_income 222232 Representative total house income in the dwelling unit is $222232 -in.representative_income 222278 Representative total house income in the dwelling unit is $222278 -in.representative_income 222333 Representative total house income in the dwelling unit is $222333 -in.representative_income 222453 Representative total house income in the dwelling unit is $222453 -in.representative_income 222484 Representative total house income in the dwelling unit is $222484 -in.representative_income 222494 Representative total house income in the dwelling unit is $222494 -in.representative_income 222522 Representative total house income in the dwelling unit is $222522 -in.representative_income 222535 Representative total house income in the dwelling unit is $222535 -in.representative_income 222577 Representative total house income in the dwelling unit is $222577 -in.representative_income 222606 Representative total house income in the dwelling unit is $222606 -in.representative_income 222627 Representative total house income in the dwelling unit is $222627 -in.representative_income 222737 Representative total house income in the dwelling unit is $222737 -in.representative_income 222740 Representative total house income in the dwelling unit is $222740 -in.representative_income 222793 Representative total house income in the dwelling unit is $222793 -in.representative_income 222804 Representative total house income in the dwelling unit is $222804 -in.representative_income 222897 Representative total house income in the dwelling unit is $222897 -in.representative_income 222939 Representative total house income in the dwelling unit is $222939 -in.representative_income 222944 Representative total house income in the dwelling unit is $222944 -in.representative_income 223000 Representative total house income in the dwelling unit is $223000 -in.representative_income 223009 Representative total house income in the dwelling unit is $223009 -in.representative_income 223063 Representative total house income in the dwelling unit is $223063 -in.representative_income 223103 Representative total house income in the dwelling unit is $223103 -in.representative_income 223170 Representative total house income in the dwelling unit is $223170 -in.representative_income 223207 Representative total house income in the dwelling unit is $223207 -in.representative_income 223222 Representative total house income in the dwelling unit is $223222 -in.representative_income 223228 Representative total house income in the dwelling unit is $223228 -in.representative_income 223242 Representative total house income in the dwelling unit is $223242 -in.representative_income 223277 Representative total house income in the dwelling unit is $223277 -in.representative_income 223310 Representative total house income in the dwelling unit is $223310 -in.representative_income 223331 Representative total house income in the dwelling unit is $223331 -in.representative_income 223333 Representative total house income in the dwelling unit is $223333 -in.representative_income 223366 Representative total house income in the dwelling unit is $223366 -in.representative_income 223412 Representative total house income in the dwelling unit is $223412 -in.representative_income 223428 Representative total house income in the dwelling unit is $223428 -in.representative_income 223441 Representative total house income in the dwelling unit is $223441 -in.representative_income 223545 Representative total house income in the dwelling unit is $223545 -in.representative_income 223549 Representative total house income in the dwelling unit is $223549 -in.representative_income 223576 Representative total house income in the dwelling unit is $223576 -in.representative_income 223600 Representative total house income in the dwelling unit is $223600 -in.representative_income 223619 Representative total house income in the dwelling unit is $223619 -in.representative_income 223646 Representative total house income in the dwelling unit is $223646 -in.representative_income 223657 Representative total house income in the dwelling unit is $223657 -in.representative_income 223679 Representative total house income in the dwelling unit is $223679 -in.representative_income 223682 Representative total house income in the dwelling unit is $223682 -in.representative_income 223707 Representative total house income in the dwelling unit is $223707 -in.representative_income 223747 Representative total house income in the dwelling unit is $223747 -in.representative_income 223765 Representative total house income in the dwelling unit is $223765 -in.representative_income 223815 Representative total house income in the dwelling unit is $223815 -in.representative_income 223826 Representative total house income in the dwelling unit is $223826 -in.representative_income 223874 Representative total house income in the dwelling unit is $223874 -in.representative_income 223892 Representative total house income in the dwelling unit is $223892 -in.representative_income 223928 Representative total house income in the dwelling unit is $223928 -in.representative_income 223954 Representative total house income in the dwelling unit is $223954 -in.representative_income 223962 Representative total house income in the dwelling unit is $223962 -in.representative_income 224031 Representative total house income in the dwelling unit is $224031 -in.representative_income 224086 Representative total house income in the dwelling unit is $224086 -in.representative_income 224104 Representative total house income in the dwelling unit is $224104 -in.representative_income 224135 Representative total house income in the dwelling unit is $224135 -in.representative_income 224136 Representative total house income in the dwelling unit is $224136 -in.representative_income 224197 Representative total house income in the dwelling unit is $224197 -in.representative_income 224202 Representative total house income in the dwelling unit is $224202 -in.representative_income 224238 Representative total house income in the dwelling unit is $224238 -in.representative_income 224252 Representative total house income in the dwelling unit is $224252 -in.representative_income 224305 Representative total house income in the dwelling unit is $224305 -in.representative_income 224315 Representative total house income in the dwelling unit is $224315 -in.representative_income 224351 Representative total house income in the dwelling unit is $224351 -in.representative_income 224444 Representative total house income in the dwelling unit is $224444 -in.representative_income 224505 Representative total house income in the dwelling unit is $224505 -in.representative_income 224521 Representative total house income in the dwelling unit is $224521 -in.representative_income 224547 Representative total house income in the dwelling unit is $224547 -in.representative_income 224563 Representative total house income in the dwelling unit is $224563 -in.representative_income 224631 Representative total house income in the dwelling unit is $224631 -in.representative_income 224728 Representative total house income in the dwelling unit is $224728 -in.representative_income 224738 Representative total house income in the dwelling unit is $224738 -in.representative_income 224754 Representative total house income in the dwelling unit is $224754 -in.representative_income 224757 Representative total house income in the dwelling unit is $224757 -in.representative_income 224767 Representative total house income in the dwelling unit is $224767 -in.representative_income 224789 Representative total house income in the dwelling unit is $224789 -in.representative_income 224846 Representative total house income in the dwelling unit is $224846 -in.representative_income 224857 Representative total house income in the dwelling unit is $224857 -in.representative_income 224888 Representative total house income in the dwelling unit is $224888 -in.representative_income 224931 Representative total house income in the dwelling unit is $224931 -in.representative_income 224954 Representative total house income in the dwelling unit is $224954 -in.representative_income 224959 Representative total house income in the dwelling unit is $224959 -in.representative_income 224995 Representative total house income in the dwelling unit is $224995 -in.representative_income 225028 Representative total house income in the dwelling unit is $225028 -in.representative_income 225053 Representative total house income in the dwelling unit is $225053 -in.representative_income 225060 Representative total house income in the dwelling unit is $225060 -in.representative_income 225062 Representative total house income in the dwelling unit is $225062 -in.representative_income 225063 Representative total house income in the dwelling unit is $225063 -in.representative_income 225084 Representative total house income in the dwelling unit is $225084 -in.representative_income 225102 Representative total house income in the dwelling unit is $225102 -in.representative_income 225262 Representative total house income in the dwelling unit is $225262 -in.representative_income 225278 Representative total house income in the dwelling unit is $225278 -in.representative_income 225288 Representative total house income in the dwelling unit is $225288 -in.representative_income 225327 Representative total house income in the dwelling unit is $225327 -in.representative_income 225363 Representative total house income in the dwelling unit is $225363 -in.representative_income 225373 Representative total house income in the dwelling unit is $225373 -in.representative_income 225380 Representative total house income in the dwelling unit is $225380 -in.representative_income 225413 Representative total house income in the dwelling unit is $225413 -in.representative_income 225425 Representative total house income in the dwelling unit is $225425 -in.representative_income 225475 Representative total house income in the dwelling unit is $225475 -in.representative_income 225494 Representative total house income in the dwelling unit is $225494 -in.representative_income 225555 Representative total house income in the dwelling unit is $225555 -in.representative_income 225565 Representative total house income in the dwelling unit is $225565 -in.representative_income 225580 Representative total house income in the dwelling unit is $225580 -in.representative_income 225639 Representative total house income in the dwelling unit is $225639 -in.representative_income 225682 Representative total house income in the dwelling unit is $225682 -in.representative_income 225685 Representative total house income in the dwelling unit is $225685 -in.representative_income 225693 Representative total house income in the dwelling unit is $225693 -in.representative_income 225710 Representative total house income in the dwelling unit is $225710 -in.representative_income 225746 Representative total house income in the dwelling unit is $225746 -in.representative_income 225795 Representative total house income in the dwelling unit is $225795 -in.representative_income 225799 Representative total house income in the dwelling unit is $225799 -in.representative_income 225818 Representative total house income in the dwelling unit is $225818 -in.representative_income 225829 Representative total house income in the dwelling unit is $225829 -in.representative_income 225861 Representative total house income in the dwelling unit is $225861 -in.representative_income 225888 Representative total house income in the dwelling unit is $225888 -in.representative_income 225897 Representative total house income in the dwelling unit is $225897 -in.representative_income 225961 Representative total house income in the dwelling unit is $225961 -in.representative_income 225969 Representative total house income in the dwelling unit is $225969 -in.representative_income 226035 Representative total house income in the dwelling unit is $226035 -in.representative_income 226070 Representative total house income in the dwelling unit is $226070 -in.representative_income 226171 Representative total house income in the dwelling unit is $226171 -in.representative_income 226175 Representative total house income in the dwelling unit is $226175 -in.representative_income 226197 Representative total house income in the dwelling unit is $226197 -in.representative_income 226213 Representative total house income in the dwelling unit is $226213 -in.representative_income 226222 Representative total house income in the dwelling unit is $226222 -in.representative_income 226251 Representative total house income in the dwelling unit is $226251 -in.representative_income 226272 Representative total house income in the dwelling unit is $226272 -in.representative_income 226283 Representative total house income in the dwelling unit is $226283 -in.representative_income 226374 Representative total house income in the dwelling unit is $226374 -in.representative_income 226387 Representative total house income in the dwelling unit is $226387 -in.representative_income 226404 Representative total house income in the dwelling unit is $226404 -in.representative_income 226467 Representative total house income in the dwelling unit is $226467 -in.representative_income 226498 Representative total house income in the dwelling unit is $226498 -in.representative_income 226530 Representative total house income in the dwelling unit is $226530 -in.representative_income 226535 Representative total house income in the dwelling unit is $226535 -in.representative_income 226635 Representative total house income in the dwelling unit is $226635 -in.representative_income 226677 Representative total house income in the dwelling unit is $226677 -in.representative_income 226712 Representative total house income in the dwelling unit is $226712 -in.representative_income 226740 Representative total house income in the dwelling unit is $226740 -in.representative_income 226778 Representative total house income in the dwelling unit is $226778 -in.representative_income 226846 Representative total house income in the dwelling unit is $226846 -in.representative_income 226866 Representative total house income in the dwelling unit is $226866 -in.representative_income 226898 Representative total house income in the dwelling unit is $226898 -in.representative_income 226909 Representative total house income in the dwelling unit is $226909 -in.representative_income 226920 Representative total house income in the dwelling unit is $226920 -in.representative_income 226927 Representative total house income in the dwelling unit is $226927 -in.representative_income 226951 Representative total house income in the dwelling unit is $226951 -in.representative_income 227004 Representative total house income in the dwelling unit is $227004 -in.representative_income 227007 Representative total house income in the dwelling unit is $227007 -in.representative_income 227023 Representative total house income in the dwelling unit is $227023 -in.representative_income 227035 Representative total house income in the dwelling unit is $227035 -in.representative_income 227081 Representative total house income in the dwelling unit is $227081 -in.representative_income 227094 Representative total house income in the dwelling unit is $227094 -in.representative_income 227115 Representative total house income in the dwelling unit is $227115 -in.representative_income 227126 Representative total house income in the dwelling unit is $227126 -in.representative_income 227137 Representative total house income in the dwelling unit is $227137 -in.representative_income 227142 Representative total house income in the dwelling unit is $227142 -in.representative_income 227162 Representative total house income in the dwelling unit is $227162 -in.representative_income 227183 Representative total house income in the dwelling unit is $227183 -in.representative_income 227229 Representative total house income in the dwelling unit is $227229 -in.representative_income 227283 Representative total house income in the dwelling unit is $227283 -in.representative_income 227312 Representative total house income in the dwelling unit is $227312 -in.representative_income 227332 Representative total house income in the dwelling unit is $227332 -in.representative_income 227373 Representative total house income in the dwelling unit is $227373 -in.representative_income 227409 Representative total house income in the dwelling unit is $227409 -in.representative_income 227413 Representative total house income in the dwelling unit is $227413 -in.representative_income 227414 Representative total house income in the dwelling unit is $227414 -in.representative_income 227434 Representative total house income in the dwelling unit is $227434 -in.representative_income 227439 Representative total house income in the dwelling unit is $227439 -in.representative_income 227464 Representative total house income in the dwelling unit is $227464 -in.representative_income 227477 Representative total house income in the dwelling unit is $227477 -in.representative_income 227485 Representative total house income in the dwelling unit is $227485 -in.representative_income 227539 Representative total house income in the dwelling unit is $227539 -in.representative_income 227571 Representative total house income in the dwelling unit is $227571 -in.representative_income 227584 Representative total house income in the dwelling unit is $227584 -in.representative_income 227601 Representative total house income in the dwelling unit is $227601 -in.representative_income 227744 Representative total house income in the dwelling unit is $227744 -in.representative_income 227763 Representative total house income in the dwelling unit is $227763 -in.representative_income 227788 Representative total house income in the dwelling unit is $227788 -in.representative_income 227795 Representative total house income in the dwelling unit is $227795 -in.representative_income 227838 Representative total house income in the dwelling unit is $227838 -in.representative_income 227870 Representative total house income in the dwelling unit is $227870 -in.representative_income 227873 Representative total house income in the dwelling unit is $227873 -in.representative_income 227880 Representative total house income in the dwelling unit is $227880 -in.representative_income 227901 Representative total house income in the dwelling unit is $227901 -in.representative_income 227914 Representative total house income in the dwelling unit is $227914 -in.representative_income 227951 Representative total house income in the dwelling unit is $227951 -in.representative_income 227979 Representative total house income in the dwelling unit is $227979 -in.representative_income 227990 Representative total house income in the dwelling unit is $227990 -in.representative_income 228006 Representative total house income in the dwelling unit is $228006 -in.representative_income 228108 Representative total house income in the dwelling unit is $228108 -in.representative_income 228160 Representative total house income in the dwelling unit is $228160 -in.representative_income 228196 Representative total house income in the dwelling unit is $228196 -in.representative_income 228229 Representative total house income in the dwelling unit is $228229 -in.representative_income 228260 Representative total house income in the dwelling unit is $228260 -in.representative_income 228293 Representative total house income in the dwelling unit is $228293 -in.representative_income 228322 Representative total house income in the dwelling unit is $228322 -in.representative_income 228363 Representative total house income in the dwelling unit is $228363 -in.representative_income 228364 Representative total house income in the dwelling unit is $228364 -in.representative_income 228394 Representative total house income in the dwelling unit is $228394 -in.representative_income 228415 Representative total house income in the dwelling unit is $228415 -in.representative_income 228428 Representative total house income in the dwelling unit is $228428 -in.representative_income 228430 Representative total house income in the dwelling unit is $228430 -in.representative_income 228467 Representative total house income in the dwelling unit is $228467 -in.representative_income 228495 Representative total house income in the dwelling unit is $228495 -in.representative_income 228519 Representative total house income in the dwelling unit is $228519 -in.representative_income 228533 Representative total house income in the dwelling unit is $228533 -in.representative_income 228537 Representative total house income in the dwelling unit is $228537 -in.representative_income 228628 Representative total house income in the dwelling unit is $228628 -in.representative_income 228645 Representative total house income in the dwelling unit is $228645 -in.representative_income 228697 Representative total house income in the dwelling unit is $228697 -in.representative_income 228736 Representative total house income in the dwelling unit is $228736 -in.representative_income 228752 Representative total house income in the dwelling unit is $228752 -in.representative_income 228765 Representative total house income in the dwelling unit is $228765 -in.representative_income 228772 Representative total house income in the dwelling unit is $228772 -in.representative_income 228777 Representative total house income in the dwelling unit is $228777 -in.representative_income 228798 Representative total house income in the dwelling unit is $228798 -in.representative_income 228849 Representative total house income in the dwelling unit is $228849 -in.representative_income 228879 Representative total house income in the dwelling unit is $228879 -in.representative_income 228899 Representative total house income in the dwelling unit is $228899 -in.representative_income 228913 Representative total house income in the dwelling unit is $228913 -in.representative_income 228952 Representative total house income in the dwelling unit is $228952 -in.representative_income 228954 Representative total house income in the dwelling unit is $228954 -in.representative_income 228982 Representative total house income in the dwelling unit is $228982 -in.representative_income 229000 Representative total house income in the dwelling unit is $229000 -in.representative_income 229014 Representative total house income in the dwelling unit is $229014 -in.representative_income 229050 Representative total house income in the dwelling unit is $229050 -in.representative_income 229059 Representative total house income in the dwelling unit is $229059 -in.representative_income 229074 Representative total house income in the dwelling unit is $229074 -in.representative_income 229077 Representative total house income in the dwelling unit is $229077 -in.representative_income 229086 Representative total house income in the dwelling unit is $229086 -in.representative_income 229147 Representative total house income in the dwelling unit is $229147 -in.representative_income 229181 Representative total house income in the dwelling unit is $229181 -in.representative_income 229192 Representative total house income in the dwelling unit is $229192 -in.representative_income 229230 Representative total house income in the dwelling unit is $229230 -in.representative_income 229267 Representative total house income in the dwelling unit is $229267 -in.representative_income 229271 Representative total house income in the dwelling unit is $229271 -in.representative_income 229289 Representative total house income in the dwelling unit is $229289 -in.representative_income 229303 Representative total house income in the dwelling unit is $229303 -in.representative_income 229313 Representative total house income in the dwelling unit is $229313 -in.representative_income 229377 Representative total house income in the dwelling unit is $229377 -in.representative_income 229395 Representative total house income in the dwelling unit is $229395 -in.representative_income 229397 Representative total house income in the dwelling unit is $229397 -in.representative_income 229404 Representative total house income in the dwelling unit is $229404 -in.representative_income 229482 Representative total house income in the dwelling unit is $229482 -in.representative_income 229485 Representative total house income in the dwelling unit is $229485 -in.representative_income 229498 Representative total house income in the dwelling unit is $229498 -in.representative_income 229503 Representative total house income in the dwelling unit is $229503 -in.representative_income 229505 Representative total house income in the dwelling unit is $229505 -in.representative_income 229555 Representative total house income in the dwelling unit is $229555 -in.representative_income 229600 Representative total house income in the dwelling unit is $229600 -in.representative_income 229601 Representative total house income in the dwelling unit is $229601 -in.representative_income 229611 Representative total house income in the dwelling unit is $229611 -in.representative_income 229705 Representative total house income in the dwelling unit is $229705 -in.representative_income 229718 Representative total house income in the dwelling unit is $229718 -in.representative_income 229725 Representative total house income in the dwelling unit is $229725 -in.representative_income 229778 Representative total house income in the dwelling unit is $229778 -in.representative_income 229808 Representative total house income in the dwelling unit is $229808 -in.representative_income 229826 Representative total house income in the dwelling unit is $229826 -in.representative_income 229891 Representative total house income in the dwelling unit is $229891 -in.representative_income 229904 Representative total house income in the dwelling unit is $229904 -in.representative_income 229910 Representative total house income in the dwelling unit is $229910 -in.representative_income 229933 Representative total house income in the dwelling unit is $229933 -in.representative_income 229962 Representative total house income in the dwelling unit is $229962 -in.representative_income 230009 Representative total house income in the dwelling unit is $230009 -in.representative_income 230014 Representative total house income in the dwelling unit is $230014 -in.representative_income 230040 Representative total house income in the dwelling unit is $230040 -in.representative_income 230053 Representative total house income in the dwelling unit is $230053 -in.representative_income 230075 Representative total house income in the dwelling unit is $230075 -in.representative_income 230111 Representative total house income in the dwelling unit is $230111 -in.representative_income 230141 Representative total house income in the dwelling unit is $230141 -in.representative_income 230147 Representative total house income in the dwelling unit is $230147 -in.representative_income 230162 Representative total house income in the dwelling unit is $230162 -in.representative_income 230172 Representative total house income in the dwelling unit is $230172 -in.representative_income 230220 Representative total house income in the dwelling unit is $230220 -in.representative_income 230255 Representative total house income in the dwelling unit is $230255 -in.representative_income 230313 Representative total house income in the dwelling unit is $230313 -in.representative_income 230326 Representative total house income in the dwelling unit is $230326 -in.representative_income 230362 Representative total house income in the dwelling unit is $230362 -in.representative_income 230368 Representative total house income in the dwelling unit is $230368 -in.representative_income 230414 Representative total house income in the dwelling unit is $230414 -in.representative_income 230432 Representative total house income in the dwelling unit is $230432 -in.representative_income 230437 Representative total house income in the dwelling unit is $230437 -in.representative_income 230485 Representative total house income in the dwelling unit is $230485 -in.representative_income 230515 Representative total house income in the dwelling unit is $230515 -in.representative_income 230529 Representative total house income in the dwelling unit is $230529 -in.representative_income 230576 Representative total house income in the dwelling unit is $230576 -in.representative_income 230594 Representative total house income in the dwelling unit is $230594 -in.representative_income 230616 Representative total house income in the dwelling unit is $230616 -in.representative_income 230633 Representative total house income in the dwelling unit is $230633 -in.representative_income 230642 Representative total house income in the dwelling unit is $230642 -in.representative_income 230680 Representative total house income in the dwelling unit is $230680 -in.representative_income 230684 Representative total house income in the dwelling unit is $230684 -in.representative_income 230717 Representative total house income in the dwelling unit is $230717 -in.representative_income 230726 Representative total house income in the dwelling unit is $230726 -in.representative_income 230747 Representative total house income in the dwelling unit is $230747 -in.representative_income 230791 Representative total house income in the dwelling unit is $230791 -in.representative_income 230818 Representative total house income in the dwelling unit is $230818 -in.representative_income 230820 Representative total house income in the dwelling unit is $230820 -in.representative_income 230839 Representative total house income in the dwelling unit is $230839 -in.representative_income 230842 Representative total house income in the dwelling unit is $230842 -in.representative_income 230919 Representative total house income in the dwelling unit is $230919 -in.representative_income 230943 Representative total house income in the dwelling unit is $230943 -in.representative_income 230959 Representative total house income in the dwelling unit is $230959 -in.representative_income 230991 Representative total house income in the dwelling unit is $230991 -in.representative_income 230996 Representative total house income in the dwelling unit is $230996 -in.representative_income 231005 Representative total house income in the dwelling unit is $231005 -in.representative_income 231020 Representative total house income in the dwelling unit is $231020 -in.representative_income 231045 Representative total house income in the dwelling unit is $231045 -in.representative_income 231060 Representative total house income in the dwelling unit is $231060 -in.representative_income 231102 Representative total house income in the dwelling unit is $231102 -in.representative_income 231116 Representative total house income in the dwelling unit is $231116 -in.representative_income 231121 Representative total house income in the dwelling unit is $231121 -in.representative_income 231145 Representative total house income in the dwelling unit is $231145 -in.representative_income 231148 Representative total house income in the dwelling unit is $231148 -in.representative_income 231170 Representative total house income in the dwelling unit is $231170 -in.representative_income 231221 Representative total house income in the dwelling unit is $231221 -in.representative_income 231222 Representative total house income in the dwelling unit is $231222 -in.representative_income 231231 Representative total house income in the dwelling unit is $231231 -in.representative_income 231275 Representative total house income in the dwelling unit is $231275 -in.representative_income 231321 Representative total house income in the dwelling unit is $231321 -in.representative_income 231323 Representative total house income in the dwelling unit is $231323 -in.representative_income 231328 Representative total house income in the dwelling unit is $231328 -in.representative_income 231355 Representative total house income in the dwelling unit is $231355 -in.representative_income 231382 Representative total house income in the dwelling unit is $231382 -in.representative_income 231424 Representative total house income in the dwelling unit is $231424 -in.representative_income 231436 Representative total house income in the dwelling unit is $231436 -in.representative_income 231486 Representative total house income in the dwelling unit is $231486 -in.representative_income 231525 Representative total house income in the dwelling unit is $231525 -in.representative_income 231544 Representative total house income in the dwelling unit is $231544 -in.representative_income 231561 Representative total house income in the dwelling unit is $231561 -in.representative_income 231592 Representative total house income in the dwelling unit is $231592 -in.representative_income 231626 Representative total house income in the dwelling unit is $231626 -in.representative_income 231651 Representative total house income in the dwelling unit is $231651 -in.representative_income 231697 Representative total house income in the dwelling unit is $231697 -in.representative_income 231727 Representative total house income in the dwelling unit is $231727 -in.representative_income 231767 Representative total house income in the dwelling unit is $231767 -in.representative_income 231802 Representative total house income in the dwelling unit is $231802 -in.representative_income 231828 Representative total house income in the dwelling unit is $231828 -in.representative_income 231865 Representative total house income in the dwelling unit is $231865 -in.representative_income 231871 Representative total house income in the dwelling unit is $231871 -in.representative_income 231908 Representative total house income in the dwelling unit is $231908 -in.representative_income 231929 Representative total house income in the dwelling unit is $231929 -in.representative_income 231961 Representative total house income in the dwelling unit is $231961 -in.representative_income 231974 Representative total house income in the dwelling unit is $231974 -in.representative_income 231977 Representative total house income in the dwelling unit is $231977 -in.representative_income 232010 Representative total house income in the dwelling unit is $232010 -in.representative_income 232013 Representative total house income in the dwelling unit is $232013 -in.representative_income 232015 Representative total house income in the dwelling unit is $232015 -in.representative_income 232023 Representative total house income in the dwelling unit is $232023 -in.representative_income 232031 Representative total house income in the dwelling unit is $232031 -in.representative_income 232077 Representative total house income in the dwelling unit is $232077 -in.representative_income 232080 Representative total house income in the dwelling unit is $232080 -in.representative_income 232118 Representative total house income in the dwelling unit is $232118 -in.representative_income 232171 Representative total house income in the dwelling unit is $232171 -in.representative_income 232180 Representative total house income in the dwelling unit is $232180 -in.representative_income 232232 Representative total house income in the dwelling unit is $232232 -in.representative_income 232294 Representative total house income in the dwelling unit is $232294 -in.representative_income 232301 Representative total house income in the dwelling unit is $232301 -in.representative_income 232315 Representative total house income in the dwelling unit is $232315 -in.representative_income 232333 Representative total house income in the dwelling unit is $232333 -in.representative_income 232355 Representative total house income in the dwelling unit is $232355 -in.representative_income 232376 Representative total house income in the dwelling unit is $232376 -in.representative_income 232386 Representative total house income in the dwelling unit is $232386 -in.representative_income 232434 Representative total house income in the dwelling unit is $232434 -in.representative_income 232441 Representative total house income in the dwelling unit is $232441 -in.representative_income 232490 Representative total house income in the dwelling unit is $232490 -in.representative_income 232535 Representative total house income in the dwelling unit is $232535 -in.representative_income 232540 Representative total house income in the dwelling unit is $232540 -in.representative_income 232572 Representative total house income in the dwelling unit is $232572 -in.representative_income 232593 Representative total house income in the dwelling unit is $232593 -in.representative_income 232604 Representative total house income in the dwelling unit is $232604 -in.representative_income 232617 Representative total house income in the dwelling unit is $232617 -in.representative_income 232625 Representative total house income in the dwelling unit is $232625 -in.representative_income 232636 Representative total house income in the dwelling unit is $232636 -in.representative_income 232646 Representative total house income in the dwelling unit is $232646 -in.representative_income 232695 Representative total house income in the dwelling unit is $232695 -in.representative_income 232715 Representative total house income in the dwelling unit is $232715 -in.representative_income 232733 Representative total house income in the dwelling unit is $232733 -in.representative_income 232737 Representative total house income in the dwelling unit is $232737 -in.representative_income 232747 Representative total house income in the dwelling unit is $232747 -in.representative_income 232751 Representative total house income in the dwelling unit is $232751 -in.representative_income 232799 Representative total house income in the dwelling unit is $232799 -in.representative_income 232838 Representative total house income in the dwelling unit is $232838 -in.representative_income 232853 Representative total house income in the dwelling unit is $232853 -in.representative_income 232857 Representative total house income in the dwelling unit is $232857 -in.representative_income 232938 Representative total house income in the dwelling unit is $232938 -in.representative_income 232939 Representative total house income in the dwelling unit is $232939 -in.representative_income 232949 Representative total house income in the dwelling unit is $232949 -in.representative_income 233040 Representative total house income in the dwelling unit is $233040 -in.representative_income 233063 Representative total house income in the dwelling unit is $233063 -in.representative_income 233068 Representative total house income in the dwelling unit is $233068 -in.representative_income 233089 Representative total house income in the dwelling unit is $233089 -in.representative_income 233109 Representative total house income in the dwelling unit is $233109 -in.representative_income 233129 Representative total house income in the dwelling unit is $233129 -in.representative_income 233141 Representative total house income in the dwelling unit is $233141 -in.representative_income 233153 Representative total house income in the dwelling unit is $233153 -in.representative_income 233170 Representative total house income in the dwelling unit is $233170 -in.representative_income 233211 Representative total house income in the dwelling unit is $233211 -in.representative_income 233222 Representative total house income in the dwelling unit is $233222 -in.representative_income 233230 Representative total house income in the dwelling unit is $233230 -in.representative_income 233261 Representative total house income in the dwelling unit is $233261 -in.representative_income 233273 Representative total house income in the dwelling unit is $233273 -in.representative_income 233279 Representative total house income in the dwelling unit is $233279 -in.representative_income 233344 Representative total house income in the dwelling unit is $233344 -in.representative_income 233367 Representative total house income in the dwelling unit is $233367 -in.representative_income 233382 Representative total house income in the dwelling unit is $233382 -in.representative_income 233485 Representative total house income in the dwelling unit is $233485 -in.representative_income 233490 Representative total house income in the dwelling unit is $233490 -in.representative_income 233521 Representative total house income in the dwelling unit is $233521 -in.representative_income 233546 Representative total house income in the dwelling unit is $233546 -in.representative_income 233582 Representative total house income in the dwelling unit is $233582 -in.representative_income 233595 Representative total house income in the dwelling unit is $233595 -in.representative_income 233647 Representative total house income in the dwelling unit is $233647 -in.representative_income 233676 Representative total house income in the dwelling unit is $233676 -in.representative_income 233697 Representative total house income in the dwelling unit is $233697 -in.representative_income 233706 Representative total house income in the dwelling unit is $233706 -in.representative_income 233728 Representative total house income in the dwelling unit is $233728 -in.representative_income 233760 Representative total house income in the dwelling unit is $233760 -in.representative_income 233798 Representative total house income in the dwelling unit is $233798 -in.representative_income 233806 Representative total house income in the dwelling unit is $233806 -in.representative_income 233807 Representative total house income in the dwelling unit is $233807 -in.representative_income 233830 Representative total house income in the dwelling unit is $233830 -in.representative_income 233849 Representative total house income in the dwelling unit is $233849 -in.representative_income 233905 Representative total house income in the dwelling unit is $233905 -in.representative_income 233911 Representative total house income in the dwelling unit is $233911 -in.representative_income 233921 Representative total house income in the dwelling unit is $233921 -in.representative_income 233933 Representative total house income in the dwelling unit is $233933 -in.representative_income 233950 Representative total house income in the dwelling unit is $233950 -in.representative_income 234000 Representative total house income in the dwelling unit is $234000 -in.representative_income 234012 Representative total house income in the dwelling unit is $234012 -in.representative_income 234017 Representative total house income in the dwelling unit is $234017 -in.representative_income 234098 Representative total house income in the dwelling unit is $234098 -in.representative_income 234123 Representative total house income in the dwelling unit is $234123 -in.representative_income 234140 Representative total house income in the dwelling unit is $234140 -in.representative_income 234152 Representative total house income in the dwelling unit is $234152 -in.representative_income 234227 Representative total house income in the dwelling unit is $234227 -in.representative_income 234243 Representative total house income in the dwelling unit is $234243 -in.representative_income 234246 Representative total house income in the dwelling unit is $234246 -in.representative_income 234253 Representative total house income in the dwelling unit is $234253 -in.representative_income 234333 Representative total house income in the dwelling unit is $234333 -in.representative_income 234346 Representative total house income in the dwelling unit is $234346 -in.representative_income 234354 Representative total house income in the dwelling unit is $234354 -in.representative_income 234374 Representative total house income in the dwelling unit is $234374 -in.representative_income 234424 Representative total house income in the dwelling unit is $234424 -in.representative_income 234439 Representative total house income in the dwelling unit is $234439 -in.representative_income 234452 Representative total house income in the dwelling unit is $234452 -in.representative_income 234460 Representative total house income in the dwelling unit is $234460 -in.representative_income 234462 Representative total house income in the dwelling unit is $234462 -in.representative_income 234548 Representative total house income in the dwelling unit is $234548 -in.representative_income 234552 Representative total house income in the dwelling unit is $234552 -in.representative_income 234556 Representative total house income in the dwelling unit is $234556 -in.representative_income 234649 Representative total house income in the dwelling unit is $234649 -in.representative_income 234656 Representative total house income in the dwelling unit is $234656 -in.representative_income 234723 Representative total house income in the dwelling unit is $234723 -in.representative_income 234756 Representative total house income in the dwelling unit is $234756 -in.representative_income 234758 Representative total house income in the dwelling unit is $234758 -in.representative_income 234759 Representative total house income in the dwelling unit is $234759 -in.representative_income 234763 Representative total house income in the dwelling unit is $234763 -in.representative_income 234859 Representative total house income in the dwelling unit is $234859 -in.representative_income 234861 Representative total house income in the dwelling unit is $234861 -in.representative_income 234871 Representative total house income in the dwelling unit is $234871 -in.representative_income 234895 Representative total house income in the dwelling unit is $234895 -in.representative_income 234966 Representative total house income in the dwelling unit is $234966 -in.representative_income 235003 Representative total house income in the dwelling unit is $235003 -in.representative_income 235061 Representative total house income in the dwelling unit is $235061 -in.representative_income 235068 Representative total house income in the dwelling unit is $235068 -in.representative_income 235071 Representative total house income in the dwelling unit is $235071 -in.representative_income 235085 Representative total house income in the dwelling unit is $235085 -in.representative_income 235110 Representative total house income in the dwelling unit is $235110 -in.representative_income 235162 Representative total house income in the dwelling unit is $235162 -in.representative_income 235171 Representative total house income in the dwelling unit is $235171 -in.representative_income 235177 Representative total house income in the dwelling unit is $235177 -in.representative_income 235187 Representative total house income in the dwelling unit is $235187 -in.representative_income 235191 Representative total house income in the dwelling unit is $235191 -in.representative_income 235192 Representative total house income in the dwelling unit is $235192 -in.representative_income 235206 Representative total house income in the dwelling unit is $235206 -in.representative_income 235218 Representative total house income in the dwelling unit is $235218 -in.representative_income 235261 Representative total house income in the dwelling unit is $235261 -in.representative_income 235263 Representative total house income in the dwelling unit is $235263 -in.representative_income 235300 Representative total house income in the dwelling unit is $235300 -in.representative_income 235364 Representative total house income in the dwelling unit is $235364 -in.representative_income 235378 Representative total house income in the dwelling unit is $235378 -in.representative_income 235398 Representative total house income in the dwelling unit is $235398 -in.representative_income 235408 Representative total house income in the dwelling unit is $235408 -in.representative_income 235434 Representative total house income in the dwelling unit is $235434 -in.representative_income 235494 Representative total house income in the dwelling unit is $235494 -in.representative_income 235515 Representative total house income in the dwelling unit is $235515 -in.representative_income 235542 Representative total house income in the dwelling unit is $235542 -in.representative_income 235563 Representative total house income in the dwelling unit is $235563 -in.representative_income 235566 Representative total house income in the dwelling unit is $235566 -in.representative_income 235687 Representative total house income in the dwelling unit is $235687 -in.representative_income 235729 Representative total house income in the dwelling unit is $235729 -in.representative_income 235739 Representative total house income in the dwelling unit is $235739 -in.representative_income 235768 Representative total house income in the dwelling unit is $235768 -in.representative_income 235780 Representative total house income in the dwelling unit is $235780 -in.representative_income 235790 Representative total house income in the dwelling unit is $235790 -in.representative_income 235810 Representative total house income in the dwelling unit is $235810 -in.representative_income 235837 Representative total house income in the dwelling unit is $235837 -in.representative_income 235867 Representative total house income in the dwelling unit is $235867 -in.representative_income 235915 Representative total house income in the dwelling unit is $235915 -in.representative_income 235919 Representative total house income in the dwelling unit is $235919 -in.representative_income 235948 Representative total house income in the dwelling unit is $235948 -in.representative_income 235970 Representative total house income in the dwelling unit is $235970 -in.representative_income 235975 Representative total house income in the dwelling unit is $235975 -in.representative_income 236023 Representative total house income in the dwelling unit is $236023 -in.representative_income 236067 Representative total house income in the dwelling unit is $236067 -in.representative_income 236099 Representative total house income in the dwelling unit is $236099 -in.representative_income 236158 Representative total house income in the dwelling unit is $236158 -in.representative_income 236172 Representative total house income in the dwelling unit is $236172 -in.representative_income 236191 Representative total house income in the dwelling unit is $236191 -in.representative_income 236203 Representative total house income in the dwelling unit is $236203 -in.representative_income 236232 Representative total house income in the dwelling unit is $236232 -in.representative_income 236266 Representative total house income in the dwelling unit is $236266 -in.representative_income 236298 Representative total house income in the dwelling unit is $236298 -in.representative_income 236337 Representative total house income in the dwelling unit is $236337 -in.representative_income 236373 Representative total house income in the dwelling unit is $236373 -in.representative_income 236374 Representative total house income in the dwelling unit is $236374 -in.representative_income 236409 Representative total house income in the dwelling unit is $236409 -in.representative_income 236442 Representative total house income in the dwelling unit is $236442 -in.representative_income 236483 Representative total house income in the dwelling unit is $236483 -in.representative_income 236505 Representative total house income in the dwelling unit is $236505 -in.representative_income 236512 Representative total house income in the dwelling unit is $236512 -in.representative_income 236525 Representative total house income in the dwelling unit is $236525 -in.representative_income 236558 Representative total house income in the dwelling unit is $236558 -in.representative_income 236567 Representative total house income in the dwelling unit is $236567 -in.representative_income 236576 Representative total house income in the dwelling unit is $236576 -in.representative_income 236588 Representative total house income in the dwelling unit is $236588 -in.representative_income 236623 Representative total house income in the dwelling unit is $236623 -in.representative_income 236654 Representative total house income in the dwelling unit is $236654 -in.representative_income 236677 Representative total house income in the dwelling unit is $236677 -in.representative_income 236696 Representative total house income in the dwelling unit is $236696 -in.representative_income 236718 Representative total house income in the dwelling unit is $236718 -in.representative_income 236731 Representative total house income in the dwelling unit is $236731 -in.representative_income 236778 Representative total house income in the dwelling unit is $236778 -in.representative_income 236793 Representative total house income in the dwelling unit is $236793 -in.representative_income 236822 Representative total house income in the dwelling unit is $236822 -in.representative_income 236842 Representative total house income in the dwelling unit is $236842 -in.representative_income 236850 Representative total house income in the dwelling unit is $236850 -in.representative_income 236864 Representative total house income in the dwelling unit is $236864 -in.representative_income 236879 Representative total house income in the dwelling unit is $236879 -in.representative_income 236915 Representative total house income in the dwelling unit is $236915 -in.representative_income 236925 Representative total house income in the dwelling unit is $236925 -in.representative_income 236947 Representative total house income in the dwelling unit is $236947 -in.representative_income 236970 Representative total house income in the dwelling unit is $236970 -in.representative_income 236980 Representative total house income in the dwelling unit is $236980 -in.representative_income 237014 Representative total house income in the dwelling unit is $237014 -in.representative_income 237027 Representative total house income in the dwelling unit is $237027 -in.representative_income 237075 Representative total house income in the dwelling unit is $237075 -in.representative_income 237087 Representative total house income in the dwelling unit is $237087 -in.representative_income 237100 Representative total house income in the dwelling unit is $237100 -in.representative_income 237121 Representative total house income in the dwelling unit is $237121 -in.representative_income 237163 Representative total house income in the dwelling unit is $237163 -in.representative_income 237180 Representative total house income in the dwelling unit is $237180 -in.representative_income 237182 Representative total house income in the dwelling unit is $237182 -in.representative_income 237233 Representative total house income in the dwelling unit is $237233 -in.representative_income 237234 Representative total house income in the dwelling unit is $237234 -in.representative_income 237272 Representative total house income in the dwelling unit is $237272 -in.representative_income 237283 Representative total house income in the dwelling unit is $237283 -in.representative_income 237287 Representative total house income in the dwelling unit is $237287 -in.representative_income 237297 Representative total house income in the dwelling unit is $237297 -in.representative_income 237318 Representative total house income in the dwelling unit is $237318 -in.representative_income 237321 Representative total house income in the dwelling unit is $237321 -in.representative_income 237335 Representative total house income in the dwelling unit is $237335 -in.representative_income 237337 Representative total house income in the dwelling unit is $237337 -in.representative_income 237339 Representative total house income in the dwelling unit is $237339 -in.representative_income 237384 Representative total house income in the dwelling unit is $237384 -in.representative_income 237392 Representative total house income in the dwelling unit is $237392 -in.representative_income 237433 Representative total house income in the dwelling unit is $237433 -in.representative_income 237447 Representative total house income in the dwelling unit is $237447 -in.representative_income 237471 Representative total house income in the dwelling unit is $237471 -in.representative_income 237485 Representative total house income in the dwelling unit is $237485 -in.representative_income 237487 Representative total house income in the dwelling unit is $237487 -in.representative_income 237544 Representative total house income in the dwelling unit is $237544 -in.representative_income 237554 Representative total house income in the dwelling unit is $237554 -in.representative_income 237637 Representative total house income in the dwelling unit is $237637 -in.representative_income 237687 Representative total house income in the dwelling unit is $237687 -in.representative_income 237694 Representative total house income in the dwelling unit is $237694 -in.representative_income 237703 Representative total house income in the dwelling unit is $237703 -in.representative_income 237705 Representative total house income in the dwelling unit is $237705 -in.representative_income 237708 Representative total house income in the dwelling unit is $237708 -in.representative_income 237750 Representative total house income in the dwelling unit is $237750 -in.representative_income 237757 Representative total house income in the dwelling unit is $237757 -in.representative_income 237788 Representative total house income in the dwelling unit is $237788 -in.representative_income 237811 Representative total house income in the dwelling unit is $237811 -in.representative_income 237813 Representative total house income in the dwelling unit is $237813 -in.representative_income 237853 Representative total house income in the dwelling unit is $237853 -in.representative_income 237876 Representative total house income in the dwelling unit is $237876 -in.representative_income 237889 Representative total house income in the dwelling unit is $237889 -in.representative_income 237909 Representative total house income in the dwelling unit is $237909 -in.representative_income 237919 Representative total house income in the dwelling unit is $237919 -in.representative_income 237930 Representative total house income in the dwelling unit is $237930 -in.representative_income 237973 Representative total house income in the dwelling unit is $237973 -in.representative_income 237990 Representative total house income in the dwelling unit is $237990 -in.representative_income 238025 Representative total house income in the dwelling unit is $238025 -in.representative_income 238027 Representative total house income in the dwelling unit is $238027 -in.representative_income 238077 Representative total house income in the dwelling unit is $238077 -in.representative_income 238091 Representative total house income in the dwelling unit is $238091 -in.representative_income 238101 Representative total house income in the dwelling unit is $238101 -in.representative_income 238130 Representative total house income in the dwelling unit is $238130 -in.representative_income 238131 Representative total house income in the dwelling unit is $238131 -in.representative_income 238136 Representative total house income in the dwelling unit is $238136 -in.representative_income 238192 Representative total house income in the dwelling unit is $238192 -in.representative_income 238235 Representative total house income in the dwelling unit is $238235 -in.representative_income 238244 Representative total house income in the dwelling unit is $238244 -in.representative_income 238265 Representative total house income in the dwelling unit is $238265 -in.representative_income 238287 Representative total house income in the dwelling unit is $238287 -in.representative_income 238293 Representative total house income in the dwelling unit is $238293 -in.representative_income 238306 Representative total house income in the dwelling unit is $238306 -in.representative_income 238327 Representative total house income in the dwelling unit is $238327 -in.representative_income 238341 Representative total house income in the dwelling unit is $238341 -in.representative_income 238394 Representative total house income in the dwelling unit is $238394 -in.representative_income 238410 Representative total house income in the dwelling unit is $238410 -in.representative_income 238413 Representative total house income in the dwelling unit is $238413 -in.representative_income 238435 Representative total house income in the dwelling unit is $238435 -in.representative_income 238446 Representative total house income in the dwelling unit is $238446 -in.representative_income 238460 Representative total house income in the dwelling unit is $238460 -in.representative_income 238472 Representative total house income in the dwelling unit is $238472 -in.representative_income 238495 Representative total house income in the dwelling unit is $238495 -in.representative_income 238520 Representative total house income in the dwelling unit is $238520 -in.representative_income 238552 Representative total house income in the dwelling unit is $238552 -in.representative_income 238568 Representative total house income in the dwelling unit is $238568 -in.representative_income 238575 Representative total house income in the dwelling unit is $238575 -in.representative_income 238576 Representative total house income in the dwelling unit is $238576 -in.representative_income 238596 Representative total house income in the dwelling unit is $238596 -in.representative_income 238657 Representative total house income in the dwelling unit is $238657 -in.representative_income 238675 Representative total house income in the dwelling unit is $238675 -in.representative_income 238678 Representative total house income in the dwelling unit is $238678 -in.representative_income 238699 Representative total house income in the dwelling unit is $238699 -in.representative_income 238735 Representative total house income in the dwelling unit is $238735 -in.representative_income 238763 Representative total house income in the dwelling unit is $238763 -in.representative_income 238781 Representative total house income in the dwelling unit is $238781 -in.representative_income 238783 Representative total house income in the dwelling unit is $238783 -in.representative_income 238798 Representative total house income in the dwelling unit is $238798 -in.representative_income 238843 Representative total house income in the dwelling unit is $238843 -in.representative_income 238853 Representative total house income in the dwelling unit is $238853 -in.representative_income 238868 Representative total house income in the dwelling unit is $238868 -in.representative_income 238899 Representative total house income in the dwelling unit is $238899 -in.representative_income 238946 Representative total house income in the dwelling unit is $238946 -in.representative_income 238950 Representative total house income in the dwelling unit is $238950 -in.representative_income 239000 Representative total house income in the dwelling unit is $239000 -in.representative_income 239004 Representative total house income in the dwelling unit is $239004 -in.representative_income 239057 Representative total house income in the dwelling unit is $239057 -in.representative_income 239079 Representative total house income in the dwelling unit is $239079 -in.representative_income 239091 Representative total house income in the dwelling unit is $239091 -in.representative_income 239111 Representative total house income in the dwelling unit is $239111 -in.representative_income 239152 Representative total house income in the dwelling unit is $239152 -in.representative_income 239184 Representative total house income in the dwelling unit is $239184 -in.representative_income 239194 Representative total house income in the dwelling unit is $239194 -in.representative_income 239202 Representative total house income in the dwelling unit is $239202 -in.representative_income 239216 Representative total house income in the dwelling unit is $239216 -in.representative_income 239272 Representative total house income in the dwelling unit is $239272 -in.representative_income 239297 Representative total house income in the dwelling unit is $239297 -in.representative_income 239303 Representative total house income in the dwelling unit is $239303 -in.representative_income 239324 Representative total house income in the dwelling unit is $239324 -in.representative_income 239379 Representative total house income in the dwelling unit is $239379 -in.representative_income 239380 Representative total house income in the dwelling unit is $239380 -in.representative_income 239396 Representative total house income in the dwelling unit is $239396 -in.representative_income 239404 Representative total house income in the dwelling unit is $239404 -in.representative_income 239411 Representative total house income in the dwelling unit is $239411 -in.representative_income 239432 Representative total house income in the dwelling unit is $239432 -in.representative_income 239437 Representative total house income in the dwelling unit is $239437 -in.representative_income 239459 Representative total house income in the dwelling unit is $239459 -in.representative_income 239487 Representative total house income in the dwelling unit is $239487 -in.representative_income 239540 Representative total house income in the dwelling unit is $239540 -in.representative_income 239555 Representative total house income in the dwelling unit is $239555 -in.representative_income 239593 Representative total house income in the dwelling unit is $239593 -in.representative_income 239594 Representative total house income in the dwelling unit is $239594 -in.representative_income 239606 Representative total house income in the dwelling unit is $239606 -in.representative_income 239607 Representative total house income in the dwelling unit is $239607 -in.representative_income 239649 Representative total house income in the dwelling unit is $239649 -in.representative_income 239670 Representative total house income in the dwelling unit is $239670 -in.representative_income 239692 Representative total house income in the dwelling unit is $239692 -in.representative_income 239701 Representative total house income in the dwelling unit is $239701 -in.representative_income 239710 Representative total house income in the dwelling unit is $239710 -in.representative_income 239809 Representative total house income in the dwelling unit is $239809 -in.representative_income 239812 Representative total house income in the dwelling unit is $239812 -in.representative_income 239818 Representative total house income in the dwelling unit is $239818 -in.representative_income 239864 Representative total house income in the dwelling unit is $239864 -in.representative_income 239913 Representative total house income in the dwelling unit is $239913 -in.representative_income 239916 Representative total house income in the dwelling unit is $239916 -in.representative_income 239923 Representative total house income in the dwelling unit is $239923 -in.representative_income 239948 Representative total house income in the dwelling unit is $239948 -in.representative_income 240010 Representative total house income in the dwelling unit is $240010 -in.representative_income 240019 Representative total house income in the dwelling unit is $240019 -in.representative_income 240061 Representative total house income in the dwelling unit is $240061 -in.representative_income 240111 Representative total house income in the dwelling unit is $240111 -in.representative_income 240122 Representative total house income in the dwelling unit is $240122 -in.representative_income 240130 Representative total house income in the dwelling unit is $240130 -in.representative_income 240158 Representative total house income in the dwelling unit is $240158 -in.representative_income 240162 Representative total house income in the dwelling unit is $240162 -in.representative_income 240187 Representative total house income in the dwelling unit is $240187 -in.representative_income 240188 Representative total house income in the dwelling unit is $240188 -in.representative_income 240212 Representative total house income in the dwelling unit is $240212 -in.representative_income 240226 Representative total house income in the dwelling unit is $240226 -in.representative_income 240238 Representative total house income in the dwelling unit is $240238 -in.representative_income 240240 Representative total house income in the dwelling unit is $240240 -in.representative_income 240242 Representative total house income in the dwelling unit is $240242 -in.representative_income 240296 Representative total house income in the dwelling unit is $240296 -in.representative_income 240328 Representative total house income in the dwelling unit is $240328 -in.representative_income 240339 Representative total house income in the dwelling unit is $240339 -in.representative_income 240344 Representative total house income in the dwelling unit is $240344 -in.representative_income 240350 Representative total house income in the dwelling unit is $240350 -in.representative_income 240380 Representative total house income in the dwelling unit is $240380 -in.representative_income 240404 Representative total house income in the dwelling unit is $240404 -in.representative_income 240415 Representative total house income in the dwelling unit is $240415 -in.representative_income 240450 Representative total house income in the dwelling unit is $240450 -in.representative_income 240453 Representative total house income in the dwelling unit is $240453 -in.representative_income 240513 Representative total house income in the dwelling unit is $240513 -in.representative_income 240516 Representative total house income in the dwelling unit is $240516 -in.representative_income 240517 Representative total house income in the dwelling unit is $240517 -in.representative_income 240535 Representative total house income in the dwelling unit is $240535 -in.representative_income 240556 Representative total house income in the dwelling unit is $240556 -in.representative_income 240617 Representative total house income in the dwelling unit is $240617 -in.representative_income 240621 Representative total house income in the dwelling unit is $240621 -in.representative_income 240638 Representative total house income in the dwelling unit is $240638 -in.representative_income 240640 Representative total house income in the dwelling unit is $240640 -in.representative_income 240741 Representative total house income in the dwelling unit is $240741 -in.representative_income 240766 Representative total house income in the dwelling unit is $240766 -in.representative_income 240782 Representative total house income in the dwelling unit is $240782 -in.representative_income 240837 Representative total house income in the dwelling unit is $240837 -in.representative_income 240872 Representative total house income in the dwelling unit is $240872 -in.representative_income 240882 Representative total house income in the dwelling unit is $240882 -in.representative_income 240920 Representative total house income in the dwelling unit is $240920 -in.representative_income 240945 Representative total house income in the dwelling unit is $240945 -in.representative_income 240947 Representative total house income in the dwelling unit is $240947 -in.representative_income 240967 Representative total house income in the dwelling unit is $240967 -in.representative_income 240977 Representative total house income in the dwelling unit is $240977 -in.representative_income 240981 Representative total house income in the dwelling unit is $240981 -in.representative_income 240989 Representative total house income in the dwelling unit is $240989 -in.representative_income 240999 Representative total house income in the dwelling unit is $240999 -in.representative_income 241021 Representative total house income in the dwelling unit is $241021 -in.representative_income 241050 Representative total house income in the dwelling unit is $241050 -in.representative_income 241083 Representative total house income in the dwelling unit is $241083 -in.representative_income 241085 Representative total house income in the dwelling unit is $241085 -in.representative_income 241097 Representative total house income in the dwelling unit is $241097 -in.representative_income 241099 Representative total house income in the dwelling unit is $241099 -in.representative_income 241103 Representative total house income in the dwelling unit is $241103 -in.representative_income 241122 Representative total house income in the dwelling unit is $241122 -in.representative_income 241154 Representative total house income in the dwelling unit is $241154 -in.representative_income 241160 Representative total house income in the dwelling unit is $241160 -in.representative_income 241204 Representative total house income in the dwelling unit is $241204 -in.representative_income 241218 Representative total house income in the dwelling unit is $241218 -in.representative_income 241223 Representative total house income in the dwelling unit is $241223 -in.representative_income 241257 Representative total house income in the dwelling unit is $241257 -in.representative_income 241258 Representative total house income in the dwelling unit is $241258 -in.representative_income 241294 Representative total house income in the dwelling unit is $241294 -in.representative_income 241324 Representative total house income in the dwelling unit is $241324 -in.representative_income 241360 Representative total house income in the dwelling unit is $241360 -in.representative_income 241377 Representative total house income in the dwelling unit is $241377 -in.representative_income 241399 Representative total house income in the dwelling unit is $241399 -in.representative_income 241419 Representative total house income in the dwelling unit is $241419 -in.representative_income 241425 Representative total house income in the dwelling unit is $241425 -in.representative_income 241485 Representative total house income in the dwelling unit is $241485 -in.representative_income 241504 Representative total house income in the dwelling unit is $241504 -in.representative_income 241526 Representative total house income in the dwelling unit is $241526 -in.representative_income 241537 Representative total house income in the dwelling unit is $241537 -in.representative_income 241547 Representative total house income in the dwelling unit is $241547 -in.representative_income 241566 Representative total house income in the dwelling unit is $241566 -in.representative_income 241590 Representative total house income in the dwelling unit is $241590 -in.representative_income 241593 Representative total house income in the dwelling unit is $241593 -in.representative_income 241610 Representative total house income in the dwelling unit is $241610 -in.representative_income 241627 Representative total house income in the dwelling unit is $241627 -in.representative_income 241634 Representative total house income in the dwelling unit is $241634 -in.representative_income 241658 Representative total house income in the dwelling unit is $241658 -in.representative_income 241701 Representative total house income in the dwelling unit is $241701 -in.representative_income 241768 Representative total house income in the dwelling unit is $241768 -in.representative_income 241773 Representative total house income in the dwelling unit is $241773 -in.representative_income 241794 Representative total house income in the dwelling unit is $241794 -in.representative_income 241809 Representative total house income in the dwelling unit is $241809 -in.representative_income 241821 Representative total house income in the dwelling unit is $241821 -in.representative_income 241829 Representative total house income in the dwelling unit is $241829 -in.representative_income 241848 Representative total house income in the dwelling unit is $241848 -in.representative_income 241873 Representative total house income in the dwelling unit is $241873 -in.representative_income 241876 Representative total house income in the dwelling unit is $241876 -in.representative_income 241910 Representative total house income in the dwelling unit is $241910 -in.representative_income 241927 Representative total house income in the dwelling unit is $241927 -in.representative_income 241930 Representative total house income in the dwelling unit is $241930 -in.representative_income 241940 Representative total house income in the dwelling unit is $241940 -in.representative_income 241955 Representative total house income in the dwelling unit is $241955 -in.representative_income 241978 Representative total house income in the dwelling unit is $241978 -in.representative_income 241992 Representative total house income in the dwelling unit is $241992 -in.representative_income 242026 Representative total house income in the dwelling unit is $242026 -in.representative_income 242031 Representative total house income in the dwelling unit is $242031 -in.representative_income 242063 Representative total house income in the dwelling unit is $242063 -in.representative_income 242071 Representative total house income in the dwelling unit is $242071 -in.representative_income 242134 Representative total house income in the dwelling unit is $242134 -in.representative_income 242137 Representative total house income in the dwelling unit is $242137 -in.representative_income 242172 Representative total house income in the dwelling unit is $242172 -in.representative_income 242224 Representative total house income in the dwelling unit is $242224 -in.representative_income 242233 Representative total house income in the dwelling unit is $242233 -in.representative_income 242242 Representative total house income in the dwelling unit is $242242 -in.representative_income 242273 Representative total house income in the dwelling unit is $242273 -in.representative_income 242278 Representative total house income in the dwelling unit is $242278 -in.representative_income 242288 Representative total house income in the dwelling unit is $242288 -in.representative_income 242296 Representative total house income in the dwelling unit is $242296 -in.representative_income 242334 Representative total house income in the dwelling unit is $242334 -in.representative_income 242340 Representative total house income in the dwelling unit is $242340 -in.representative_income 242349 Representative total house income in the dwelling unit is $242349 -in.representative_income 242384 Representative total house income in the dwelling unit is $242384 -in.representative_income 242392 Representative total house income in the dwelling unit is $242392 -in.representative_income 242410 Representative total house income in the dwelling unit is $242410 -in.representative_income 242432 Representative total house income in the dwelling unit is $242432 -in.representative_income 242435 Representative total house income in the dwelling unit is $242435 -in.representative_income 242455 Representative total house income in the dwelling unit is $242455 -in.representative_income 242465 Representative total house income in the dwelling unit is $242465 -in.representative_income 242492 Representative total house income in the dwelling unit is $242492 -in.representative_income 242495 Representative total house income in the dwelling unit is $242495 -in.representative_income 242517 Representative total house income in the dwelling unit is $242517 -in.representative_income 242536 Representative total house income in the dwelling unit is $242536 -in.representative_income 242546 Representative total house income in the dwelling unit is $242546 -in.representative_income 242559 Representative total house income in the dwelling unit is $242559 -in.representative_income 242565 Representative total house income in the dwelling unit is $242565 -in.representative_income 242591 Representative total house income in the dwelling unit is $242591 -in.representative_income 242597 Representative total house income in the dwelling unit is $242597 -in.representative_income 242599 Representative total house income in the dwelling unit is $242599 -in.representative_income 242637 Representative total house income in the dwelling unit is $242637 -in.representative_income 242665 Representative total house income in the dwelling unit is $242665 -in.representative_income 242673 Representative total house income in the dwelling unit is $242673 -in.representative_income 242701 Representative total house income in the dwelling unit is $242701 -in.representative_income 242707 Representative total house income in the dwelling unit is $242707 -in.representative_income 242738 Representative total house income in the dwelling unit is $242738 -in.representative_income 242770 Representative total house income in the dwelling unit is $242770 -in.representative_income 242781 Representative total house income in the dwelling unit is $242781 -in.representative_income 242804 Representative total house income in the dwelling unit is $242804 -in.representative_income 242815 Representative total house income in the dwelling unit is $242815 -in.representative_income 242839 Representative total house income in the dwelling unit is $242839 -in.representative_income 242875 Representative total house income in the dwelling unit is $242875 -in.representative_income 242886 Representative total house income in the dwelling unit is $242886 -in.representative_income 242890 Representative total house income in the dwelling unit is $242890 -in.representative_income 242907 Representative total house income in the dwelling unit is $242907 -in.representative_income 242921 Representative total house income in the dwelling unit is $242921 -in.representative_income 242940 Representative total house income in the dwelling unit is $242940 -in.representative_income 242998 Representative total house income in the dwelling unit is $242998 -in.representative_income 243011 Representative total house income in the dwelling unit is $243011 -in.representative_income 243027 Representative total house income in the dwelling unit is $243027 -in.representative_income 243029 Representative total house income in the dwelling unit is $243029 -in.representative_income 243034 Representative total house income in the dwelling unit is $243034 -in.representative_income 243041 Representative total house income in the dwelling unit is $243041 -in.representative_income 243087 Representative total house income in the dwelling unit is $243087 -in.representative_income 243106 Representative total house income in the dwelling unit is $243106 -in.representative_income 243113 Representative total house income in the dwelling unit is $243113 -in.representative_income 243132 Representative total house income in the dwelling unit is $243132 -in.representative_income 243142 Representative total house income in the dwelling unit is $243142 -in.representative_income 243171 Representative total house income in the dwelling unit is $243171 -in.representative_income 243214 Representative total house income in the dwelling unit is $243214 -in.representative_income 243243 Representative total house income in the dwelling unit is $243243 -in.representative_income 243244 Representative total house income in the dwelling unit is $243244 -in.representative_income 243297 Representative total house income in the dwelling unit is $243297 -in.representative_income 243322 Representative total house income in the dwelling unit is $243322 -in.representative_income 243344 Representative total house income in the dwelling unit is $243344 -in.representative_income 243351 Representative total house income in the dwelling unit is $243351 -in.representative_income 243382 Representative total house income in the dwelling unit is $243382 -in.representative_income 243403 Representative total house income in the dwelling unit is $243403 -in.representative_income 243423 Representative total house income in the dwelling unit is $243423 -in.representative_income 243430 Representative total house income in the dwelling unit is $243430 -in.representative_income 243434 Representative total house income in the dwelling unit is $243434 -in.representative_income 243445 Representative total house income in the dwelling unit is $243445 -in.representative_income 243458 Representative total house income in the dwelling unit is $243458 -in.representative_income 243494 Representative total house income in the dwelling unit is $243494 -in.representative_income 243505 Representative total house income in the dwelling unit is $243505 -in.representative_income 243516 Representative total house income in the dwelling unit is $243516 -in.representative_income 243546 Representative total house income in the dwelling unit is $243546 -in.representative_income 243565 Representative total house income in the dwelling unit is $243565 -in.representative_income 243614 Representative total house income in the dwelling unit is $243614 -in.representative_income 243629 Representative total house income in the dwelling unit is $243629 -in.representative_income 243646 Representative total house income in the dwelling unit is $243646 -in.representative_income 243647 Representative total house income in the dwelling unit is $243647 -in.representative_income 243673 Representative total house income in the dwelling unit is $243673 -in.representative_income 243677 Representative total house income in the dwelling unit is $243677 -in.representative_income 243720 Representative total house income in the dwelling unit is $243720 -in.representative_income 243732 Representative total house income in the dwelling unit is $243732 -in.representative_income 243738 Representative total house income in the dwelling unit is $243738 -in.representative_income 243748 Representative total house income in the dwelling unit is $243748 -in.representative_income 243754 Representative total house income in the dwelling unit is $243754 -in.representative_income 243765 Representative total house income in the dwelling unit is $243765 -in.representative_income 243770 Representative total house income in the dwelling unit is $243770 -in.representative_income 243825 Representative total house income in the dwelling unit is $243825 -in.representative_income 243835 Representative total house income in the dwelling unit is $243835 -in.representative_income 243862 Representative total house income in the dwelling unit is $243862 -in.representative_income 243888 Representative total house income in the dwelling unit is $243888 -in.representative_income 243930 Representative total house income in the dwelling unit is $243930 -in.representative_income 243939 Representative total house income in the dwelling unit is $243939 -in.representative_income 243950 Representative total house income in the dwelling unit is $243950 -in.representative_income 243970 Representative total house income in the dwelling unit is $243970 -in.representative_income 243999 Representative total house income in the dwelling unit is $243999 -in.representative_income 244024 Representative total house income in the dwelling unit is $244024 -in.representative_income 244051 Representative total house income in the dwelling unit is $244051 -in.representative_income 244115 Representative total house income in the dwelling unit is $244115 -in.representative_income 244141 Representative total house income in the dwelling unit is $244141 -in.representative_income 244145 Representative total house income in the dwelling unit is $244145 -in.representative_income 244152 Representative total house income in the dwelling unit is $244152 -in.representative_income 244186 Representative total house income in the dwelling unit is $244186 -in.representative_income 244210 Representative total house income in the dwelling unit is $244210 -in.representative_income 244248 Representative total house income in the dwelling unit is $244248 -in.representative_income 244294 Representative total house income in the dwelling unit is $244294 -in.representative_income 244352 Representative total house income in the dwelling unit is $244352 -in.representative_income 244354 Representative total house income in the dwelling unit is $244354 -in.representative_income 244404 Representative total house income in the dwelling unit is $244404 -in.representative_income 244425 Representative total house income in the dwelling unit is $244425 -in.representative_income 244454 Representative total house income in the dwelling unit is $244454 -in.representative_income 244455 Representative total house income in the dwelling unit is $244455 -in.representative_income 244458 Representative total house income in the dwelling unit is $244458 -in.representative_income 244478 Representative total house income in the dwelling unit is $244478 -in.representative_income 244532 Representative total house income in the dwelling unit is $244532 -in.representative_income 244556 Representative total house income in the dwelling unit is $244556 -in.representative_income 244563 Representative total house income in the dwelling unit is $244563 -in.representative_income 244657 Representative total house income in the dwelling unit is $244657 -in.representative_income 244661 Representative total house income in the dwelling unit is $244661 -in.representative_income 244668 Representative total house income in the dwelling unit is $244668 -in.representative_income 244725 Representative total house income in the dwelling unit is $244725 -in.representative_income 244726 Representative total house income in the dwelling unit is $244726 -in.representative_income 244746 Representative total house income in the dwelling unit is $244746 -in.representative_income 244758 Representative total house income in the dwelling unit is $244758 -in.representative_income 244763 Representative total house income in the dwelling unit is $244763 -in.representative_income 244778 Representative total house income in the dwelling unit is $244778 -in.representative_income 244834 Representative total house income in the dwelling unit is $244834 -in.representative_income 244854 Representative total house income in the dwelling unit is $244854 -in.representative_income 244867 Representative total house income in the dwelling unit is $244867 -in.representative_income 244880 Representative total house income in the dwelling unit is $244880 -in.representative_income 244890 Representative total house income in the dwelling unit is $244890 -in.representative_income 244942 Representative total house income in the dwelling unit is $244942 -in.representative_income 244960 Representative total house income in the dwelling unit is $244960 -in.representative_income 244961 Representative total house income in the dwelling unit is $244961 -in.representative_income 244970 Representative total house income in the dwelling unit is $244970 -in.representative_income 244985 Representative total house income in the dwelling unit is $244985 -in.representative_income 245011 Representative total house income in the dwelling unit is $245011 -in.representative_income 245037 Representative total house income in the dwelling unit is $245037 -in.representative_income 245052 Representative total house income in the dwelling unit is $245052 -in.representative_income 245069 Representative total house income in the dwelling unit is $245069 -in.representative_income 245073 Representative total house income in the dwelling unit is $245073 -in.representative_income 245081 Representative total house income in the dwelling unit is $245081 -in.representative_income 245102 Representative total house income in the dwelling unit is $245102 -in.representative_income 245175 Representative total house income in the dwelling unit is $245175 -in.representative_income 245177 Representative total house income in the dwelling unit is $245177 -in.representative_income 245183 Representative total house income in the dwelling unit is $245183 -in.representative_income 245208 Representative total house income in the dwelling unit is $245208 -in.representative_income 245263 Representative total house income in the dwelling unit is $245263 -in.representative_income 245267 Representative total house income in the dwelling unit is $245267 -in.representative_income 245279 Representative total house income in the dwelling unit is $245279 -in.representative_income 245283 Representative total house income in the dwelling unit is $245283 -in.representative_income 245390 Representative total house income in the dwelling unit is $245390 -in.representative_income 245397 Representative total house income in the dwelling unit is $245397 -in.representative_income 245465 Representative total house income in the dwelling unit is $245465 -in.representative_income 245483 Representative total house income in the dwelling unit is $245483 -in.representative_income 245486 Representative total house income in the dwelling unit is $245486 -in.representative_income 245498 Representative total house income in the dwelling unit is $245498 -in.representative_income 245541 Representative total house income in the dwelling unit is $245541 -in.representative_income 245566 Representative total house income in the dwelling unit is $245566 -in.representative_income 245583 Representative total house income in the dwelling unit is $245583 -in.representative_income 245589 Representative total house income in the dwelling unit is $245589 -in.representative_income 245618 Representative total house income in the dwelling unit is $245618 -in.representative_income 245667 Representative total house income in the dwelling unit is $245667 -in.representative_income 245699 Representative total house income in the dwelling unit is $245699 -in.representative_income 245712 Representative total house income in the dwelling unit is $245712 -in.representative_income 245723 Representative total house income in the dwelling unit is $245723 -in.representative_income 245754 Representative total house income in the dwelling unit is $245754 -in.representative_income 245788 Representative total house income in the dwelling unit is $245788 -in.representative_income 245807 Representative total house income in the dwelling unit is $245807 -in.representative_income 245820 Representative total house income in the dwelling unit is $245820 -in.representative_income 245828 Representative total house income in the dwelling unit is $245828 -in.representative_income 245869 Representative total house income in the dwelling unit is $245869 -in.representative_income 245876 Representative total house income in the dwelling unit is $245876 -in.representative_income 245898 Representative total house income in the dwelling unit is $245898 -in.representative_income 245914 Representative total house income in the dwelling unit is $245914 -in.representative_income 245927 Representative total house income in the dwelling unit is $245927 -in.representative_income 245934 Representative total house income in the dwelling unit is $245934 -in.representative_income 245947 Representative total house income in the dwelling unit is $245947 -in.representative_income 245959 Representative total house income in the dwelling unit is $245959 -in.representative_income 245980 Representative total house income in the dwelling unit is $245980 -in.representative_income 245991 Representative total house income in the dwelling unit is $245991 -in.representative_income 246003 Representative total house income in the dwelling unit is $246003 -in.representative_income 246039 Representative total house income in the dwelling unit is $246039 -in.representative_income 246061 Representative total house income in the dwelling unit is $246061 -in.representative_income 246071 Representative total house income in the dwelling unit is $246071 -in.representative_income 246131 Representative total house income in the dwelling unit is $246131 -in.representative_income 246142 Representative total house income in the dwelling unit is $246142 -in.representative_income 246172 Representative total house income in the dwelling unit is $246172 -in.representative_income 246207 Representative total house income in the dwelling unit is $246207 -in.representative_income 246208 Representative total house income in the dwelling unit is $246208 -in.representative_income 246238 Representative total house income in the dwelling unit is $246238 -in.representative_income 246251 Representative total house income in the dwelling unit is $246251 -in.representative_income 246273 Representative total house income in the dwelling unit is $246273 -in.representative_income 246293 Representative total house income in the dwelling unit is $246293 -in.representative_income 246311 Representative total house income in the dwelling unit is $246311 -in.representative_income 246347 Representative total house income in the dwelling unit is $246347 -in.representative_income 246356 Representative total house income in the dwelling unit is $246356 -in.representative_income 246374 Representative total house income in the dwelling unit is $246374 -in.representative_income 246390 Representative total house income in the dwelling unit is $246390 -in.representative_income 246453 Representative total house income in the dwelling unit is $246453 -in.representative_income 246464 Representative total house income in the dwelling unit is $246464 -in.representative_income 246475 Representative total house income in the dwelling unit is $246475 -in.representative_income 246517 Representative total house income in the dwelling unit is $246517 -in.representative_income 246543 Representative total house income in the dwelling unit is $246543 -in.representative_income 246546 Representative total house income in the dwelling unit is $246546 -in.representative_income 246563 Representative total house income in the dwelling unit is $246563 -in.representative_income 246567 Representative total house income in the dwelling unit is $246567 -in.representative_income 246576 Representative total house income in the dwelling unit is $246576 -in.representative_income 246600 Representative total house income in the dwelling unit is $246600 -in.representative_income 246617 Representative total house income in the dwelling unit is $246617 -in.representative_income 246620 Representative total house income in the dwelling unit is $246620 -in.representative_income 246672 Representative total house income in the dwelling unit is $246672 -in.representative_income 246679 Representative total house income in the dwelling unit is $246679 -in.representative_income 246724 Representative total house income in the dwelling unit is $246724 -in.representative_income 246754 Representative total house income in the dwelling unit is $246754 -in.representative_income 246766 Representative total house income in the dwelling unit is $246766 -in.representative_income 246778 Representative total house income in the dwelling unit is $246778 -in.representative_income 246780 Representative total house income in the dwelling unit is $246780 -in.representative_income 246859 Representative total house income in the dwelling unit is $246859 -in.representative_income 246879 Representative total house income in the dwelling unit is $246879 -in.representative_income 246883 Representative total house income in the dwelling unit is $246883 -in.representative_income 246888 Representative total house income in the dwelling unit is $246888 -in.representative_income 246893 Representative total house income in the dwelling unit is $246893 -in.representative_income 246929 Representative total house income in the dwelling unit is $246929 -in.representative_income 246980 Representative total house income in the dwelling unit is $246980 -in.representative_income 246989 Representative total house income in the dwelling unit is $246989 -in.representative_income 247000 Representative total house income in the dwelling unit is $247000 -in.representative_income 247033 Representative total house income in the dwelling unit is $247033 -in.representative_income 247081 Representative total house income in the dwelling unit is $247081 -in.representative_income 247094 Representative total house income in the dwelling unit is $247094 -in.representative_income 247108 Representative total house income in the dwelling unit is $247108 -in.representative_income 247161 Representative total house income in the dwelling unit is $247161 -in.representative_income 247189 Representative total house income in the dwelling unit is $247189 -in.representative_income 247199 Representative total house income in the dwelling unit is $247199 -in.representative_income 247216 Representative total house income in the dwelling unit is $247216 -in.representative_income 247237 Representative total house income in the dwelling unit is $247237 -in.representative_income 247239 Representative total house income in the dwelling unit is $247239 -in.representative_income 247280 Representative total house income in the dwelling unit is $247280 -in.representative_income 247284 Representative total house income in the dwelling unit is $247284 -in.representative_income 247323 Representative total house income in the dwelling unit is $247323 -in.representative_income 247335 Representative total house income in the dwelling unit is $247335 -in.representative_income 247343 Representative total house income in the dwelling unit is $247343 -in.representative_income 247385 Representative total house income in the dwelling unit is $247385 -in.representative_income 247427 Representative total house income in the dwelling unit is $247427 -in.representative_income 247430 Representative total house income in the dwelling unit is $247430 -in.representative_income 247431 Representative total house income in the dwelling unit is $247431 -in.representative_income 247484 Representative total house income in the dwelling unit is $247484 -in.representative_income 247486 Representative total house income in the dwelling unit is $247486 -in.representative_income 247516 Representative total house income in the dwelling unit is $247516 -in.representative_income 247527 Representative total house income in the dwelling unit is $247527 -in.representative_income 247535 Representative total house income in the dwelling unit is $247535 -in.representative_income 247536 Representative total house income in the dwelling unit is $247536 -in.representative_income 247548 Representative total house income in the dwelling unit is $247548 -in.representative_income 247581 Representative total house income in the dwelling unit is $247581 -in.representative_income 247587 Representative total house income in the dwelling unit is $247587 -in.representative_income 247621 Representative total house income in the dwelling unit is $247621 -in.representative_income 247634 Representative total house income in the dwelling unit is $247634 -in.representative_income 247688 Representative total house income in the dwelling unit is $247688 -in.representative_income 247695 Representative total house income in the dwelling unit is $247695 -in.representative_income 247752 Representative total house income in the dwelling unit is $247752 -in.representative_income 247755 Representative total house income in the dwelling unit is $247755 -in.representative_income 247789 Representative total house income in the dwelling unit is $247789 -in.representative_income 247832 Representative total house income in the dwelling unit is $247832 -in.representative_income 247841 Representative total house income in the dwelling unit is $247841 -in.representative_income 247858 Representative total house income in the dwelling unit is $247858 -in.representative_income 247864 Representative total house income in the dwelling unit is $247864 -in.representative_income 247890 Representative total house income in the dwelling unit is $247890 -in.representative_income 247910 Representative total house income in the dwelling unit is $247910 -in.representative_income 247937 Representative total house income in the dwelling unit is $247937 -in.representative_income 247940 Representative total house income in the dwelling unit is $247940 -in.representative_income 247966 Representative total house income in the dwelling unit is $247966 -in.representative_income 247971 Representative total house income in the dwelling unit is $247971 -in.representative_income 247991 Representative total house income in the dwelling unit is $247991 -in.representative_income 248021 Representative total house income in the dwelling unit is $248021 -in.representative_income 248028 Representative total house income in the dwelling unit is $248028 -in.representative_income 248038 Representative total house income in the dwelling unit is $248038 -in.representative_income 248064 Representative total house income in the dwelling unit is $248064 -in.representative_income 248074 Representative total house income in the dwelling unit is $248074 -in.representative_income 248086 Representative total house income in the dwelling unit is $248086 -in.representative_income 248092 Representative total house income in the dwelling unit is $248092 -in.representative_income 248117 Representative total house income in the dwelling unit is $248117 -in.representative_income 248124 Representative total house income in the dwelling unit is $248124 -in.representative_income 248149 Representative total house income in the dwelling unit is $248149 -in.representative_income 248167 Representative total house income in the dwelling unit is $248167 -in.representative_income 248170 Representative total house income in the dwelling unit is $248170 -in.representative_income 248181 Representative total house income in the dwelling unit is $248181 -in.representative_income 248193 Representative total house income in the dwelling unit is $248193 -in.representative_income 248254 Representative total house income in the dwelling unit is $248254 -in.representative_income 248271 Representative total house income in the dwelling unit is $248271 -in.representative_income 248274 Representative total house income in the dwelling unit is $248274 -in.representative_income 248292 Representative total house income in the dwelling unit is $248292 -in.representative_income 248294 Representative total house income in the dwelling unit is $248294 -in.representative_income 248359 Representative total house income in the dwelling unit is $248359 -in.representative_income 248385 Representative total house income in the dwelling unit is $248385 -in.representative_income 248398 Representative total house income in the dwelling unit is $248398 -in.representative_income 248400 Representative total house income in the dwelling unit is $248400 -in.representative_income 248465 Representative total house income in the dwelling unit is $248465 -in.representative_income 248477 Representative total house income in the dwelling unit is $248477 -in.representative_income 248496 Representative total house income in the dwelling unit is $248496 -in.representative_income 248503 Representative total house income in the dwelling unit is $248503 -in.representative_income 248508 Representative total house income in the dwelling unit is $248508 -in.representative_income 248510 Representative total house income in the dwelling unit is $248510 -in.representative_income 248538 Representative total house income in the dwelling unit is $248538 -in.representative_income 248562 Representative total house income in the dwelling unit is $248562 -in.representative_income 248570 Representative total house income in the dwelling unit is $248570 -in.representative_income 248580 Representative total house income in the dwelling unit is $248580 -in.representative_income 248611 Representative total house income in the dwelling unit is $248611 -in.representative_income 248616 Representative total house income in the dwelling unit is $248616 -in.representative_income 248619 Representative total house income in the dwelling unit is $248619 -in.representative_income 248666 Representative total house income in the dwelling unit is $248666 -in.representative_income 248670 Representative total house income in the dwelling unit is $248670 -in.representative_income 248676 Representative total house income in the dwelling unit is $248676 -in.representative_income 248698 Representative total house income in the dwelling unit is $248698 -in.representative_income 248782 Representative total house income in the dwelling unit is $248782 -in.representative_income 248786 Representative total house income in the dwelling unit is $248786 -in.representative_income 248796 Representative total house income in the dwelling unit is $248796 -in.representative_income 248799 Representative total house income in the dwelling unit is $248799 -in.representative_income 248826 Representative total house income in the dwelling unit is $248826 -in.representative_income 248887 Representative total house income in the dwelling unit is $248887 -in.representative_income 248890 Representative total house income in the dwelling unit is $248890 -in.representative_income 248900 Representative total house income in the dwelling unit is $248900 -in.representative_income 248972 Representative total house income in the dwelling unit is $248972 -in.representative_income 248993 Representative total house income in the dwelling unit is $248993 -in.representative_income 249001 Representative total house income in the dwelling unit is $249001 -in.representative_income 249026 Representative total house income in the dwelling unit is $249026 -in.representative_income 249040 Representative total house income in the dwelling unit is $249040 -in.representative_income 249048 Representative total house income in the dwelling unit is $249048 -in.representative_income 249095 Representative total house income in the dwelling unit is $249095 -in.representative_income 249098 Representative total house income in the dwelling unit is $249098 -in.representative_income 249102 Representative total house income in the dwelling unit is $249102 -in.representative_income 249108 Representative total house income in the dwelling unit is $249108 -in.representative_income 249126 Representative total house income in the dwelling unit is $249126 -in.representative_income 249139 Representative total house income in the dwelling unit is $249139 -in.representative_income 249203 Representative total house income in the dwelling unit is $249203 -in.representative_income 249255 Representative total house income in the dwelling unit is $249255 -in.representative_income 249302 Representative total house income in the dwelling unit is $249302 -in.representative_income 249309 Representative total house income in the dwelling unit is $249309 -in.representative_income 249362 Representative total house income in the dwelling unit is $249362 -in.representative_income 249405 Representative total house income in the dwelling unit is $249405 -in.representative_income 249414 Representative total house income in the dwelling unit is $249414 -in.representative_income 249435 Representative total house income in the dwelling unit is $249435 -in.representative_income 249470 Representative total house income in the dwelling unit is $249470 -in.representative_income 249506 Representative total house income in the dwelling unit is $249506 -in.representative_income 249520 Representative total house income in the dwelling unit is $249520 -in.representative_income 249577 Representative total house income in the dwelling unit is $249577 -in.representative_income 249588 Representative total house income in the dwelling unit is $249588 -in.representative_income 249593 Representative total house income in the dwelling unit is $249593 -in.representative_income 249597 Representative total house income in the dwelling unit is $249597 -in.representative_income 249599 Representative total house income in the dwelling unit is $249599 -in.representative_income 249607 Representative total house income in the dwelling unit is $249607 -in.representative_income 249611 Representative total house income in the dwelling unit is $249611 -in.representative_income 249612 Representative total house income in the dwelling unit is $249612 -in.representative_income 249625 Representative total house income in the dwelling unit is $249625 -in.representative_income 249684 Representative total house income in the dwelling unit is $249684 -in.representative_income 249696 Representative total house income in the dwelling unit is $249696 -in.representative_income 249708 Representative total house income in the dwelling unit is $249708 -in.representative_income 249717 Representative total house income in the dwelling unit is $249717 -in.representative_income 249730 Representative total house income in the dwelling unit is $249730 -in.representative_income 249804 Representative total house income in the dwelling unit is $249804 -in.representative_income 249809 Representative total house income in the dwelling unit is $249809 -in.representative_income 249818 Representative total house income in the dwelling unit is $249818 -in.representative_income 249890 Representative total house income in the dwelling unit is $249890 -in.representative_income 249899 Representative total house income in the dwelling unit is $249899 -in.representative_income 249912 Representative total house income in the dwelling unit is $249912 -in.representative_income 249921 Representative total house income in the dwelling unit is $249921 -in.representative_income 249924 Representative total house income in the dwelling unit is $249924 -in.representative_income 249942 Representative total house income in the dwelling unit is $249942 -in.representative_income 250011 Representative total house income in the dwelling unit is $250011 -in.representative_income 250024 Representative total house income in the dwelling unit is $250024 -in.representative_income 250112 Representative total house income in the dwelling unit is $250112 -in.representative_income 250114 Representative total house income in the dwelling unit is $250114 -in.representative_income 250128 Representative total house income in the dwelling unit is $250128 -in.representative_income 250129 Representative total house income in the dwelling unit is $250129 -in.representative_income 250135 Representative total house income in the dwelling unit is $250135 -in.representative_income 250152 Representative total house income in the dwelling unit is $250152 -in.representative_income 250213 Representative total house income in the dwelling unit is $250213 -in.representative_income 250230 Representative total house income in the dwelling unit is $250230 -in.representative_income 250268 Representative total house income in the dwelling unit is $250268 -in.representative_income 250282 Representative total house income in the dwelling unit is $250282 -in.representative_income 250291 Representative total house income in the dwelling unit is $250291 -in.representative_income 250296 Representative total house income in the dwelling unit is $250296 -in.representative_income 250314 Representative total house income in the dwelling unit is $250314 -in.representative_income 250324 Representative total house income in the dwelling unit is $250324 -in.representative_income 250328 Representative total house income in the dwelling unit is $250328 -in.representative_income 250345 Representative total house income in the dwelling unit is $250345 -in.representative_income 250363 Representative total house income in the dwelling unit is $250363 -in.representative_income 250415 Representative total house income in the dwelling unit is $250415 -in.representative_income 250437 Representative total house income in the dwelling unit is $250437 -in.representative_income 250453 Representative total house income in the dwelling unit is $250453 -in.representative_income 250468 Representative total house income in the dwelling unit is $250468 -in.representative_income 250485 Representative total house income in the dwelling unit is $250485 -in.representative_income 250516 Representative total house income in the dwelling unit is $250516 -in.representative_income 250540 Representative total house income in the dwelling unit is $250540 -in.representative_income 250543 Representative total house income in the dwelling unit is $250543 -in.representative_income 250561 Representative total house income in the dwelling unit is $250561 -in.representative_income 250566 Representative total house income in the dwelling unit is $250566 -in.representative_income 250575 Representative total house income in the dwelling unit is $250575 -in.representative_income 250617 Representative total house income in the dwelling unit is $250617 -in.representative_income 250643 Representative total house income in the dwelling unit is $250643 -in.representative_income 250651 Representative total house income in the dwelling unit is $250651 -in.representative_income 250669 Representative total house income in the dwelling unit is $250669 -in.representative_income 250680 Representative total house income in the dwelling unit is $250680 -in.representative_income 250705 Representative total house income in the dwelling unit is $250705 -in.representative_income 250718 Representative total house income in the dwelling unit is $250718 -in.representative_income 250757 Representative total house income in the dwelling unit is $250757 -in.representative_income 250777 Representative total house income in the dwelling unit is $250777 -in.representative_income 250785 Representative total house income in the dwelling unit is $250785 -in.representative_income 250819 Representative total house income in the dwelling unit is $250819 -in.representative_income 250849 Representative total house income in the dwelling unit is $250849 -in.representative_income 250865 Representative total house income in the dwelling unit is $250865 -in.representative_income 250880 Representative total house income in the dwelling unit is $250880 -in.representative_income 250885 Representative total house income in the dwelling unit is $250885 -in.representative_income 250952 Representative total house income in the dwelling unit is $250952 -in.representative_income 250972 Representative total house income in the dwelling unit is $250972 -in.representative_income 250981 Representative total house income in the dwelling unit is $250981 -in.representative_income 250993 Representative total house income in the dwelling unit is $250993 -in.representative_income 250994 Representative total house income in the dwelling unit is $250994 -in.representative_income 250996 Representative total house income in the dwelling unit is $250996 -in.representative_income 251021 Representative total house income in the dwelling unit is $251021 -in.representative_income 251047 Representative total house income in the dwelling unit is $251047 -in.representative_income 251056 Representative total house income in the dwelling unit is $251056 -in.representative_income 251080 Representative total house income in the dwelling unit is $251080 -in.representative_income 251101 Representative total house income in the dwelling unit is $251101 -in.representative_income 251122 Representative total house income in the dwelling unit is $251122 -in.representative_income 251159 Representative total house income in the dwelling unit is $251159 -in.representative_income 251165 Representative total house income in the dwelling unit is $251165 -in.representative_income 251187 Representative total house income in the dwelling unit is $251187 -in.representative_income 251207 Representative total house income in the dwelling unit is $251207 -in.representative_income 251209 Representative total house income in the dwelling unit is $251209 -in.representative_income 251223 Representative total house income in the dwelling unit is $251223 -in.representative_income 251236 Representative total house income in the dwelling unit is $251236 -in.representative_income 251260 Representative total house income in the dwelling unit is $251260 -in.representative_income 251262 Representative total house income in the dwelling unit is $251262 -in.representative_income 251294 Representative total house income in the dwelling unit is $251294 -in.representative_income 251317 Representative total house income in the dwelling unit is $251317 -in.representative_income 251344 Representative total house income in the dwelling unit is $251344 -in.representative_income 251354 Representative total house income in the dwelling unit is $251354 -in.representative_income 251359 Representative total house income in the dwelling unit is $251359 -in.representative_income 251401 Representative total house income in the dwelling unit is $251401 -in.representative_income 251418 Representative total house income in the dwelling unit is $251418 -in.representative_income 251425 Representative total house income in the dwelling unit is $251425 -in.representative_income 251496 Representative total house income in the dwelling unit is $251496 -in.representative_income 251508 Representative total house income in the dwelling unit is $251508 -in.representative_income 251523 Representative total house income in the dwelling unit is $251523 -in.representative_income 251526 Representative total house income in the dwelling unit is $251526 -in.representative_income 251534 Representative total house income in the dwelling unit is $251534 -in.representative_income 251571 Representative total house income in the dwelling unit is $251571 -in.representative_income 251617 Representative total house income in the dwelling unit is $251617 -in.representative_income 251629 Representative total house income in the dwelling unit is $251629 -in.representative_income 251661 Representative total house income in the dwelling unit is $251661 -in.representative_income 251675 Representative total house income in the dwelling unit is $251675 -in.representative_income 251678 Representative total house income in the dwelling unit is $251678 -in.representative_income 251688 Representative total house income in the dwelling unit is $251688 -in.representative_income 251724 Representative total house income in the dwelling unit is $251724 -in.representative_income 251726 Representative total house income in the dwelling unit is $251726 -in.representative_income 251729 Representative total house income in the dwelling unit is $251729 -in.representative_income 251734 Representative total house income in the dwelling unit is $251734 -in.representative_income 251750 Representative total house income in the dwelling unit is $251750 -in.representative_income 251754 Representative total house income in the dwelling unit is $251754 -in.representative_income 251789 Representative total house income in the dwelling unit is $251789 -in.representative_income 251829 Representative total house income in the dwelling unit is $251829 -in.representative_income 251840 Representative total house income in the dwelling unit is $251840 -in.representative_income 251858 Representative total house income in the dwelling unit is $251858 -in.representative_income 251930 Representative total house income in the dwelling unit is $251930 -in.representative_income 251984 Representative total house income in the dwelling unit is $251984 -in.representative_income 252014 Representative total house income in the dwelling unit is $252014 -in.representative_income 252046 Representative total house income in the dwelling unit is $252046 -in.representative_income 252051 Representative total house income in the dwelling unit is $252051 -in.representative_income 252073 Representative total house income in the dwelling unit is $252073 -in.representative_income 252132 Representative total house income in the dwelling unit is $252132 -in.representative_income 252153 Representative total house income in the dwelling unit is $252153 -in.representative_income 252188 Representative total house income in the dwelling unit is $252188 -in.representative_income 252190 Representative total house income in the dwelling unit is $252190 -in.representative_income 252261 Representative total house income in the dwelling unit is $252261 -in.representative_income 252271 Representative total house income in the dwelling unit is $252271 -in.representative_income 252282 Representative total house income in the dwelling unit is $252282 -in.representative_income 252294 Representative total house income in the dwelling unit is $252294 -in.representative_income 252334 Representative total house income in the dwelling unit is $252334 -in.representative_income 252368 Representative total house income in the dwelling unit is $252368 -in.representative_income 252379 Representative total house income in the dwelling unit is $252379 -in.representative_income 252390 Representative total house income in the dwelling unit is $252390 -in.representative_income 252398 Representative total house income in the dwelling unit is $252398 -in.representative_income 252422 Representative total house income in the dwelling unit is $252422 -in.representative_income 252435 Representative total house income in the dwelling unit is $252435 -in.representative_income 252473 Representative total house income in the dwelling unit is $252473 -in.representative_income 252475 Representative total house income in the dwelling unit is $252475 -in.representative_income 252521 Representative total house income in the dwelling unit is $252521 -in.representative_income 252536 Representative total house income in the dwelling unit is $252536 -in.representative_income 252578 Representative total house income in the dwelling unit is $252578 -in.representative_income 252587 Representative total house income in the dwelling unit is $252587 -in.representative_income 252603 Representative total house income in the dwelling unit is $252603 -in.representative_income 252614 Representative total house income in the dwelling unit is $252614 -in.representative_income 252668 Representative total house income in the dwelling unit is $252668 -in.representative_income 252690 Representative total house income in the dwelling unit is $252690 -in.representative_income 252706 Representative total house income in the dwelling unit is $252706 -in.representative_income 252769 Representative total house income in the dwelling unit is $252769 -in.representative_income 252789 Representative total house income in the dwelling unit is $252789 -in.representative_income 252797 Representative total house income in the dwelling unit is $252797 -in.representative_income 252809 Representative total house income in the dwelling unit is $252809 -in.representative_income 252830 Representative total house income in the dwelling unit is $252830 -in.representative_income 252839 Representative total house income in the dwelling unit is $252839 -in.representative_income 252894 Representative total house income in the dwelling unit is $252894 -in.representative_income 252913 Representative total house income in the dwelling unit is $252913 -in.representative_income 252938 Representative total house income in the dwelling unit is $252938 -in.representative_income 253012 Representative total house income in the dwelling unit is $253012 -in.representative_income 253015 Representative total house income in the dwelling unit is $253015 -in.representative_income 253041 Representative total house income in the dwelling unit is $253041 -in.representative_income 253046 Representative total house income in the dwelling unit is $253046 -in.representative_income 253101 Representative total house income in the dwelling unit is $253101 -in.representative_income 253106 Representative total house income in the dwelling unit is $253106 -in.representative_income 253119 Representative total house income in the dwelling unit is $253119 -in.representative_income 253142 Representative total house income in the dwelling unit is $253142 -in.representative_income 253147 Representative total house income in the dwelling unit is $253147 -in.representative_income 253170 Representative total house income in the dwelling unit is $253170 -in.representative_income 253208 Representative total house income in the dwelling unit is $253208 -in.representative_income 253211 Representative total house income in the dwelling unit is $253211 -in.representative_income 253220 Representative total house income in the dwelling unit is $253220 -in.representative_income 253222 Representative total house income in the dwelling unit is $253222 -in.representative_income 253227 Representative total house income in the dwelling unit is $253227 -in.representative_income 253243 Representative total house income in the dwelling unit is $253243 -in.representative_income 253262 Representative total house income in the dwelling unit is $253262 -in.representative_income 253294 Representative total house income in the dwelling unit is $253294 -in.representative_income 253316 Representative total house income in the dwelling unit is $253316 -in.representative_income 253334 Representative total house income in the dwelling unit is $253334 -in.representative_income 253338 Representative total house income in the dwelling unit is $253338 -in.representative_income 253370 Representative total house income in the dwelling unit is $253370 -in.representative_income 253377 Representative total house income in the dwelling unit is $253377 -in.representative_income 253395 Representative total house income in the dwelling unit is $253395 -in.representative_income 253398 Representative total house income in the dwelling unit is $253398 -in.representative_income 253422 Representative total house income in the dwelling unit is $253422 -in.representative_income 253428 Representative total house income in the dwelling unit is $253428 -in.representative_income 253431 Representative total house income in the dwelling unit is $253431 -in.representative_income 253432 Representative total house income in the dwelling unit is $253432 -in.representative_income 253442 Representative total house income in the dwelling unit is $253442 -in.representative_income 253445 Representative total house income in the dwelling unit is $253445 -in.representative_income 253475 Representative total house income in the dwelling unit is $253475 -in.representative_income 253527 Representative total house income in the dwelling unit is $253527 -in.representative_income 253531 Representative total house income in the dwelling unit is $253531 -in.representative_income 253546 Representative total house income in the dwelling unit is $253546 -in.representative_income 253548 Representative total house income in the dwelling unit is $253548 -in.representative_income 253586 Representative total house income in the dwelling unit is $253586 -in.representative_income 253632 Representative total house income in the dwelling unit is $253632 -in.representative_income 253634 Representative total house income in the dwelling unit is $253634 -in.representative_income 253647 Representative total house income in the dwelling unit is $253647 -in.representative_income 253655 Representative total house income in the dwelling unit is $253655 -in.representative_income 253656 Representative total house income in the dwelling unit is $253656 -in.representative_income 253675 Representative total house income in the dwelling unit is $253675 -in.representative_income 253686 Representative total house income in the dwelling unit is $253686 -in.representative_income 253694 Representative total house income in the dwelling unit is $253694 -in.representative_income 253737 Representative total house income in the dwelling unit is $253737 -in.representative_income 253738 Representative total house income in the dwelling unit is $253738 -in.representative_income 253748 Representative total house income in the dwelling unit is $253748 -in.representative_income 253758 Representative total house income in the dwelling unit is $253758 -in.representative_income 253824 Representative total house income in the dwelling unit is $253824 -in.representative_income 253844 Representative total house income in the dwelling unit is $253844 -in.representative_income 253849 Representative total house income in the dwelling unit is $253849 -in.representative_income 253871 Representative total house income in the dwelling unit is $253871 -in.representative_income 253872 Representative total house income in the dwelling unit is $253872 -in.representative_income 253911 Representative total house income in the dwelling unit is $253911 -in.representative_income 253924 Representative total house income in the dwelling unit is $253924 -in.representative_income 253949 Representative total house income in the dwelling unit is $253949 -in.representative_income 253950 Representative total house income in the dwelling unit is $253950 -in.representative_income 253964 Representative total house income in the dwelling unit is $253964 -in.representative_income 253978 Representative total house income in the dwelling unit is $253978 -in.representative_income 254019 Representative total house income in the dwelling unit is $254019 -in.representative_income 254046 Representative total house income in the dwelling unit is $254046 -in.representative_income 254051 Representative total house income in the dwelling unit is $254051 -in.representative_income 254054 Representative total house income in the dwelling unit is $254054 -in.representative_income 254127 Representative total house income in the dwelling unit is $254127 -in.representative_income 254128 Representative total house income in the dwelling unit is $254128 -in.representative_income 254160 Representative total house income in the dwelling unit is $254160 -in.representative_income 254192 Representative total house income in the dwelling unit is $254192 -in.representative_income 254253 Representative total house income in the dwelling unit is $254253 -in.representative_income 254254 Representative total house income in the dwelling unit is $254254 -in.representative_income 254266 Representative total house income in the dwelling unit is $254266 -in.representative_income 254321 Representative total house income in the dwelling unit is $254321 -in.representative_income 254334 Representative total house income in the dwelling unit is $254334 -in.representative_income 254342 Representative total house income in the dwelling unit is $254342 -in.representative_income 254355 Representative total house income in the dwelling unit is $254355 -in.representative_income 254356 Representative total house income in the dwelling unit is $254356 -in.representative_income 254371 Representative total house income in the dwelling unit is $254371 -in.representative_income 254408 Representative total house income in the dwelling unit is $254408 -in.representative_income 254450 Representative total house income in the dwelling unit is $254450 -in.representative_income 254460 Representative total house income in the dwelling unit is $254460 -in.representative_income 254477 Representative total house income in the dwelling unit is $254477 -in.representative_income 254515 Representative total house income in the dwelling unit is $254515 -in.representative_income 254557 Representative total house income in the dwelling unit is $254557 -in.representative_income 254562 Representative total house income in the dwelling unit is $254562 -in.representative_income 254658 Representative total house income in the dwelling unit is $254658 -in.representative_income 254665 Representative total house income in the dwelling unit is $254665 -in.representative_income 254687 Representative total house income in the dwelling unit is $254687 -in.representative_income 254708 Representative total house income in the dwelling unit is $254708 -in.representative_income 254759 Representative total house income in the dwelling unit is $254759 -in.representative_income 254762 Representative total house income in the dwelling unit is $254762 -in.representative_income 254769 Representative total house income in the dwelling unit is $254769 -in.representative_income 254775 Representative total house income in the dwelling unit is $254775 -in.representative_income 254789 Representative total house income in the dwelling unit is $254789 -in.representative_income 254792 Representative total house income in the dwelling unit is $254792 -in.representative_income 254829 Representative total house income in the dwelling unit is $254829 -in.representative_income 254872 Representative total house income in the dwelling unit is $254872 -in.representative_income 254883 Representative total house income in the dwelling unit is $254883 -in.representative_income 254899 Representative total house income in the dwelling unit is $254899 -in.representative_income 254944 Representative total house income in the dwelling unit is $254944 -in.representative_income 254961 Representative total house income in the dwelling unit is $254961 -in.representative_income 254991 Representative total house income in the dwelling unit is $254991 -in.representative_income 255052 Representative total house income in the dwelling unit is $255052 -in.representative_income 255062 Representative total house income in the dwelling unit is $255062 -in.representative_income 255099 Representative total house income in the dwelling unit is $255099 -in.representative_income 255207 Representative total house income in the dwelling unit is $255207 -in.representative_income 255215 Representative total house income in the dwelling unit is $255215 -in.representative_income 255221 Representative total house income in the dwelling unit is $255221 -in.representative_income 255264 Representative total house income in the dwelling unit is $255264 -in.representative_income 255266 Representative total house income in the dwelling unit is $255266 -in.representative_income 255268 Representative total house income in the dwelling unit is $255268 -in.representative_income 255279 Representative total house income in the dwelling unit is $255279 -in.representative_income 255284 Representative total house income in the dwelling unit is $255284 -in.representative_income 255299 Representative total house income in the dwelling unit is $255299 -in.representative_income 255315 Representative total house income in the dwelling unit is $255315 -in.representative_income 255320 Representative total house income in the dwelling unit is $255320 -in.representative_income 255365 Representative total house income in the dwelling unit is $255365 -in.representative_income 255388 Representative total house income in the dwelling unit is $255388 -in.representative_income 255423 Representative total house income in the dwelling unit is $255423 -in.representative_income 255425 Representative total house income in the dwelling unit is $255425 -in.representative_income 255436 Representative total house income in the dwelling unit is $255436 -in.representative_income 255481 Representative total house income in the dwelling unit is $255481 -in.representative_income 255567 Representative total house income in the dwelling unit is $255567 -in.representative_income 255577 Representative total house income in the dwelling unit is $255577 -in.representative_income 255584 Representative total house income in the dwelling unit is $255584 -in.representative_income 255588 Representative total house income in the dwelling unit is $255588 -in.representative_income 255594 Representative total house income in the dwelling unit is $255594 -in.representative_income 255637 Representative total house income in the dwelling unit is $255637 -in.representative_income 255639 Representative total house income in the dwelling unit is $255639 -in.representative_income 255668 Representative total house income in the dwelling unit is $255668 -in.representative_income 255696 Representative total house income in the dwelling unit is $255696 -in.representative_income 255742 Representative total house income in the dwelling unit is $255742 -in.representative_income 255747 Representative total house income in the dwelling unit is $255747 -in.representative_income 255769 Representative total house income in the dwelling unit is $255769 -in.representative_income 255789 Representative total house income in the dwelling unit is $255789 -in.representative_income 255800 Representative total house income in the dwelling unit is $255800 -in.representative_income 255802 Representative total house income in the dwelling unit is $255802 -in.representative_income 255810 Representative total house income in the dwelling unit is $255810 -in.representative_income 255847 Representative total house income in the dwelling unit is $255847 -in.representative_income 255855 Representative total house income in the dwelling unit is $255855 -in.representative_income 255870 Representative total house income in the dwelling unit is $255870 -in.representative_income 255903 Representative total house income in the dwelling unit is $255903 -in.representative_income 255932 Representative total house income in the dwelling unit is $255932 -in.representative_income 255963 Representative total house income in the dwelling unit is $255963 -in.representative_income 255971 Representative total house income in the dwelling unit is $255971 -in.representative_income 255986 Representative total house income in the dwelling unit is $255986 -in.representative_income 256008 Representative total house income in the dwelling unit is $256008 -in.representative_income 256034 Representative total house income in the dwelling unit is $256034 -in.representative_income 256058 Representative total house income in the dwelling unit is $256058 -in.representative_income 256071 Representative total house income in the dwelling unit is $256071 -in.representative_income 256072 Representative total house income in the dwelling unit is $256072 -in.representative_income 256102 Representative total house income in the dwelling unit is $256102 -in.representative_income 256107 Representative total house income in the dwelling unit is $256107 -in.representative_income 256110 Representative total house income in the dwelling unit is $256110 -in.representative_income 256125 Representative total house income in the dwelling unit is $256125 -in.representative_income 256164 Representative total house income in the dwelling unit is $256164 -in.representative_income 256173 Representative total house income in the dwelling unit is $256173 -in.representative_income 256179 Representative total house income in the dwelling unit is $256179 -in.representative_income 256212 Representative total house income in the dwelling unit is $256212 -in.representative_income 256216 Representative total house income in the dwelling unit is $256216 -in.representative_income 256270 Representative total house income in the dwelling unit is $256270 -in.representative_income 256314 Representative total house income in the dwelling unit is $256314 -in.representative_income 256339 Representative total house income in the dwelling unit is $256339 -in.representative_income 256375 Representative total house income in the dwelling unit is $256375 -in.representative_income 256396 Representative total house income in the dwelling unit is $256396 -in.representative_income 256405 Representative total house income in the dwelling unit is $256405 -in.representative_income 256419 Representative total house income in the dwelling unit is $256419 -in.representative_income 256447 Representative total house income in the dwelling unit is $256447 -in.representative_income 256476 Representative total house income in the dwelling unit is $256476 -in.representative_income 256554 Representative total house income in the dwelling unit is $256554 -in.representative_income 256575 Representative total house income in the dwelling unit is $256575 -in.representative_income 256577 Representative total house income in the dwelling unit is $256577 -in.representative_income 256608 Representative total house income in the dwelling unit is $256608 -in.representative_income 256612 Representative total house income in the dwelling unit is $256612 -in.representative_income 256617 Representative total house income in the dwelling unit is $256617 -in.representative_income 256626 Representative total house income in the dwelling unit is $256626 -in.representative_income 256662 Representative total house income in the dwelling unit is $256662 -in.representative_income 256678 Representative total house income in the dwelling unit is $256678 -in.representative_income 256691 Representative total house income in the dwelling unit is $256691 -in.representative_income 256720 Representative total house income in the dwelling unit is $256720 -in.representative_income 256729 Representative total house income in the dwelling unit is $256729 -in.representative_income 256797 Representative total house income in the dwelling unit is $256797 -in.representative_income 256807 Representative total house income in the dwelling unit is $256807 -in.representative_income 256828 Representative total house income in the dwelling unit is $256828 -in.representative_income 256831 Representative total house income in the dwelling unit is $256831 -in.representative_income 256860 Representative total house income in the dwelling unit is $256860 -in.representative_income 256877 Representative total house income in the dwelling unit is $256877 -in.representative_income 256880 Representative total house income in the dwelling unit is $256880 -in.representative_income 256935 Representative total house income in the dwelling unit is $256935 -in.representative_income 256981 Representative total house income in the dwelling unit is $256981 -in.representative_income 256983 Representative total house income in the dwelling unit is $256983 -in.representative_income 257038 Representative total house income in the dwelling unit is $257038 -in.representative_income 257081 Representative total house income in the dwelling unit is $257081 -in.representative_income 257082 Representative total house income in the dwelling unit is $257082 -in.representative_income 257091 Representative total house income in the dwelling unit is $257091 -in.representative_income 257113 Representative total house income in the dwelling unit is $257113 -in.representative_income 257152 Representative total house income in the dwelling unit is $257152 -in.representative_income 257163 Representative total house income in the dwelling unit is $257163 -in.representative_income 257174 Representative total house income in the dwelling unit is $257174 -in.representative_income 257183 Representative total house income in the dwelling unit is $257183 -in.representative_income 257198 Representative total house income in the dwelling unit is $257198 -in.representative_income 257206 Representative total house income in the dwelling unit is $257206 -in.representative_income 257218 Representative total house income in the dwelling unit is $257218 -in.representative_income 257238 Representative total house income in the dwelling unit is $257238 -in.representative_income 257245 Representative total house income in the dwelling unit is $257245 -in.representative_income 257260 Representative total house income in the dwelling unit is $257260 -in.representative_income 257284 Representative total house income in the dwelling unit is $257284 -in.representative_income 257323 Representative total house income in the dwelling unit is $257323 -in.representative_income 257327 Representative total house income in the dwelling unit is $257327 -in.representative_income 257334 Representative total house income in the dwelling unit is $257334 -in.representative_income 257348 Representative total house income in the dwelling unit is $257348 -in.representative_income 257368 Representative total house income in the dwelling unit is $257368 -in.representative_income 257385 Representative total house income in the dwelling unit is $257385 -in.representative_income 257387 Representative total house income in the dwelling unit is $257387 -in.representative_income 257430 Representative total house income in the dwelling unit is $257430 -in.representative_income 257450 Representative total house income in the dwelling unit is $257450 -in.representative_income 257455 Representative total house income in the dwelling unit is $257455 -in.representative_income 257554 Representative total house income in the dwelling unit is $257554 -in.representative_income 257584 Representative total house income in the dwelling unit is $257584 -in.representative_income 257587 Representative total house income in the dwelling unit is $257587 -in.representative_income 257628 Representative total house income in the dwelling unit is $257628 -in.representative_income 257640 Representative total house income in the dwelling unit is $257640 -in.representative_income 257688 Representative total house income in the dwelling unit is $257688 -in.representative_income 257789 Representative total house income in the dwelling unit is $257789 -in.representative_income 257799 Representative total house income in the dwelling unit is $257799 -in.representative_income 257851 Representative total house income in the dwelling unit is $257851 -in.representative_income 257863 Representative total house income in the dwelling unit is $257863 -in.representative_income 257884 Representative total house income in the dwelling unit is $257884 -in.representative_income 257890 Representative total house income in the dwelling unit is $257890 -in.representative_income 257896 Representative total house income in the dwelling unit is $257896 -in.representative_income 257904 Representative total house income in the dwelling unit is $257904 -in.representative_income 257909 Representative total house income in the dwelling unit is $257909 -in.representative_income 257950 Representative total house income in the dwelling unit is $257950 -in.representative_income 257955 Representative total house income in the dwelling unit is $257955 -in.representative_income 257956 Representative total house income in the dwelling unit is $257956 -in.representative_income 257966 Representative total house income in the dwelling unit is $257966 -in.representative_income 257987 Representative total house income in the dwelling unit is $257987 -in.representative_income 257989 Representative total house income in the dwelling unit is $257989 -in.representative_income 257991 Representative total house income in the dwelling unit is $257991 -in.representative_income 258016 Representative total house income in the dwelling unit is $258016 -in.representative_income 258057 Representative total house income in the dwelling unit is $258057 -in.representative_income 258069 Representative total house income in the dwelling unit is $258069 -in.representative_income 258090 Representative total house income in the dwelling unit is $258090 -in.representative_income 258092 Representative total house income in the dwelling unit is $258092 -in.representative_income 258124 Representative total house income in the dwelling unit is $258124 -in.representative_income 258164 Representative total house income in the dwelling unit is $258164 -in.representative_income 258168 Representative total house income in the dwelling unit is $258168 -in.representative_income 258173 Representative total house income in the dwelling unit is $258173 -in.representative_income 258193 Representative total house income in the dwelling unit is $258193 -in.representative_income 258232 Representative total house income in the dwelling unit is $258232 -in.representative_income 258276 Representative total house income in the dwelling unit is $258276 -in.representative_income 258314 Representative total house income in the dwelling unit is $258314 -in.representative_income 258345 Representative total house income in the dwelling unit is $258345 -in.representative_income 258378 Representative total house income in the dwelling unit is $258378 -in.representative_income 258379 Representative total house income in the dwelling unit is $258379 -in.representative_income 258395 Representative total house income in the dwelling unit is $258395 -in.representative_income 258448 Representative total house income in the dwelling unit is $258448 -in.representative_income 258487 Representative total house income in the dwelling unit is $258487 -in.representative_income 258496 Representative total house income in the dwelling unit is $258496 -in.representative_income 258503 Representative total house income in the dwelling unit is $258503 -in.representative_income 258556 Representative total house income in the dwelling unit is $258556 -in.representative_income 258585 Representative total house income in the dwelling unit is $258585 -in.representative_income 258589 Representative total house income in the dwelling unit is $258589 -in.representative_income 258593 Representative total house income in the dwelling unit is $258593 -in.representative_income 258597 Representative total house income in the dwelling unit is $258597 -in.representative_income 258600 Representative total house income in the dwelling unit is $258600 -in.representative_income 258627 Representative total house income in the dwelling unit is $258627 -in.representative_income 258665 Representative total house income in the dwelling unit is $258665 -in.representative_income 258688 Representative total house income in the dwelling unit is $258688 -in.representative_income 258695 Representative total house income in the dwelling unit is $258695 -in.representative_income 258698 Representative total house income in the dwelling unit is $258698 -in.representative_income 258701 Representative total house income in the dwelling unit is $258701 -in.representative_income 258745 Representative total house income in the dwelling unit is $258745 -in.representative_income 258770 Representative total house income in the dwelling unit is $258770 -in.representative_income 258773 Representative total house income in the dwelling unit is $258773 -in.representative_income 258781 Representative total house income in the dwelling unit is $258781 -in.representative_income 258792 Representative total house income in the dwelling unit is $258792 -in.representative_income 258799 Representative total house income in the dwelling unit is $258799 -in.representative_income 258801 Representative total house income in the dwelling unit is $258801 -in.representative_income 258822 Representative total house income in the dwelling unit is $258822 -in.representative_income 258850 Representative total house income in the dwelling unit is $258850 -in.representative_income 258881 Representative total house income in the dwelling unit is $258881 -in.representative_income 258895 Representative total house income in the dwelling unit is $258895 -in.representative_income 258906 Representative total house income in the dwelling unit is $258906 -in.representative_income 258916 Representative total house income in the dwelling unit is $258916 -in.representative_income 258980 Representative total house income in the dwelling unit is $258980 -in.representative_income 258997 Representative total house income in the dwelling unit is $258997 -in.representative_income 259001 Representative total house income in the dwelling unit is $259001 -in.representative_income 259011 Representative total house income in the dwelling unit is $259011 -in.representative_income 259024 Representative total house income in the dwelling unit is $259024 -in.representative_income 259102 Representative total house income in the dwelling unit is $259102 -in.representative_income 259130 Representative total house income in the dwelling unit is $259130 -in.representative_income 259151 Representative total house income in the dwelling unit is $259151 -in.representative_income 259164 Representative total house income in the dwelling unit is $259164 -in.representative_income 259203 Representative total house income in the dwelling unit is $259203 -in.representative_income 259204 Representative total house income in the dwelling unit is $259204 -in.representative_income 259206 Representative total house income in the dwelling unit is $259206 -in.representative_income 259222 Representative total house income in the dwelling unit is $259222 -in.representative_income 259223 Representative total house income in the dwelling unit is $259223 -in.representative_income 259256 Representative total house income in the dwelling unit is $259256 -in.representative_income 259304 Representative total house income in the dwelling unit is $259304 -in.representative_income 259308 Representative total house income in the dwelling unit is $259308 -in.representative_income 259312 Representative total house income in the dwelling unit is $259312 -in.representative_income 259345 Representative total house income in the dwelling unit is $259345 -in.representative_income 259405 Representative total house income in the dwelling unit is $259405 -in.representative_income 259411 Representative total house income in the dwelling unit is $259411 -in.representative_income 259421 Representative total house income in the dwelling unit is $259421 -in.representative_income 259433 Representative total house income in the dwelling unit is $259433 -in.representative_income 259513 Representative total house income in the dwelling unit is $259513 -in.representative_income 259529 Representative total house income in the dwelling unit is $259529 -in.representative_income 259607 Representative total house income in the dwelling unit is $259607 -in.representative_income 259637 Representative total house income in the dwelling unit is $259637 -in.representative_income 259644 Representative total house income in the dwelling unit is $259644 -in.representative_income 259658 Representative total house income in the dwelling unit is $259658 -in.representative_income 259668 Representative total house income in the dwelling unit is $259668 -in.representative_income 259708 Representative total house income in the dwelling unit is $259708 -in.representative_income 259745 Representative total house income in the dwelling unit is $259745 -in.representative_income 259749 Representative total house income in the dwelling unit is $259749 -in.representative_income 259774 Representative total house income in the dwelling unit is $259774 -in.representative_income 259809 Representative total house income in the dwelling unit is $259809 -in.representative_income 259823 Representative total house income in the dwelling unit is $259823 -in.representative_income 259853 Representative total house income in the dwelling unit is $259853 -in.representative_income 259855 Representative total house income in the dwelling unit is $259855 -in.representative_income 259882 Representative total house income in the dwelling unit is $259882 -in.representative_income 259892 Representative total house income in the dwelling unit is $259892 -in.representative_income 259910 Representative total house income in the dwelling unit is $259910 -in.representative_income 259926 Representative total house income in the dwelling unit is $259926 -in.representative_income 259961 Representative total house income in the dwelling unit is $259961 -in.representative_income 259989 Representative total house income in the dwelling unit is $259989 -in.representative_income 260011 Representative total house income in the dwelling unit is $260011 -in.representative_income 260030 Representative total house income in the dwelling unit is $260030 -in.representative_income 260112 Representative total house income in the dwelling unit is $260112 -in.representative_income 260118 Representative total house income in the dwelling unit is $260118 -in.representative_income 260132 Representative total house income in the dwelling unit is $260132 -in.representative_income 260150 Representative total house income in the dwelling unit is $260150 -in.representative_income 260171 Representative total house income in the dwelling unit is $260171 -in.representative_income 260177 Representative total house income in the dwelling unit is $260177 -in.representative_income 260204 Representative total house income in the dwelling unit is $260204 -in.representative_income 260235 Representative total house income in the dwelling unit is $260235 -in.representative_income 260277 Representative total house income in the dwelling unit is $260277 -in.representative_income 260286 Representative total house income in the dwelling unit is $260286 -in.representative_income 260311 Representative total house income in the dwelling unit is $260311 -in.representative_income 260355 Representative total house income in the dwelling unit is $260355 -in.representative_income 260393 Representative total house income in the dwelling unit is $260393 -in.representative_income 260419 Representative total house income in the dwelling unit is $260419 -in.representative_income 260442 Representative total house income in the dwelling unit is $260442 -in.representative_income 260487 Representative total house income in the dwelling unit is $260487 -in.representative_income 260516 Representative total house income in the dwelling unit is $260516 -in.representative_income 260526 Representative total house income in the dwelling unit is $260526 -in.representative_income 260540 Representative total house income in the dwelling unit is $260540 -in.representative_income 260545 Representative total house income in the dwelling unit is $260545 -in.representative_income 260553 Representative total house income in the dwelling unit is $260553 -in.representative_income 260594 Representative total house income in the dwelling unit is $260594 -in.representative_income 260609 Representative total house income in the dwelling unit is $260609 -in.representative_income 260617 Representative total house income in the dwelling unit is $260617 -in.representative_income 260625 Representative total house income in the dwelling unit is $260625 -in.representative_income 260628 Representative total house income in the dwelling unit is $260628 -in.representative_income 260634 Representative total house income in the dwelling unit is $260634 -in.representative_income 260640 Representative total house income in the dwelling unit is $260640 -in.representative_income 260695 Representative total house income in the dwelling unit is $260695 -in.representative_income 260699 Representative total house income in the dwelling unit is $260699 -in.representative_income 260717 Representative total house income in the dwelling unit is $260717 -in.representative_income 260718 Representative total house income in the dwelling unit is $260718 -in.representative_income 260751 Representative total house income in the dwelling unit is $260751 -in.representative_income 260757 Representative total house income in the dwelling unit is $260757 -in.representative_income 260819 Representative total house income in the dwelling unit is $260819 -in.representative_income 260848 Representative total house income in the dwelling unit is $260848 -in.representative_income 260854 Representative total house income in the dwelling unit is $260854 -in.representative_income 260870 Representative total house income in the dwelling unit is $260870 -in.representative_income 260909 Representative total house income in the dwelling unit is $260909 -in.representative_income 260920 Representative total house income in the dwelling unit is $260920 -in.representative_income 260926 Representative total house income in the dwelling unit is $260926 -in.representative_income 260933 Representative total house income in the dwelling unit is $260933 -in.representative_income 260955 Representative total house income in the dwelling unit is $260955 -in.representative_income 260958 Representative total house income in the dwelling unit is $260958 -in.representative_income 261015 Representative total house income in the dwelling unit is $261015 -in.representative_income 261021 Representative total house income in the dwelling unit is $261021 -in.representative_income 261042 Representative total house income in the dwelling unit is $261042 -in.representative_income 261057 Representative total house income in the dwelling unit is $261057 -in.representative_income 261061 Representative total house income in the dwelling unit is $261061 -in.representative_income 261063 Representative total house income in the dwelling unit is $261063 -in.representative_income 261064 Representative total house income in the dwelling unit is $261064 -in.representative_income 261120 Representative total house income in the dwelling unit is $261120 -in.representative_income 261122 Representative total house income in the dwelling unit is $261122 -in.representative_income 261150 Representative total house income in the dwelling unit is $261150 -in.representative_income 261163 Representative total house income in the dwelling unit is $261163 -in.representative_income 261170 Representative total house income in the dwelling unit is $261170 -in.representative_income 261204 Representative total house income in the dwelling unit is $261204 -in.representative_income 261205 Representative total house income in the dwelling unit is $261205 -in.representative_income 261224 Representative total house income in the dwelling unit is $261224 -in.representative_income 261226 Representative total house income in the dwelling unit is $261226 -in.representative_income 261258 Representative total house income in the dwelling unit is $261258 -in.representative_income 261267 Representative total house income in the dwelling unit is $261267 -in.representative_income 261278 Representative total house income in the dwelling unit is $261278 -in.representative_income 261325 Representative total house income in the dwelling unit is $261325 -in.representative_income 261359 Representative total house income in the dwelling unit is $261359 -in.representative_income 261370 Representative total house income in the dwelling unit is $261370 -in.representative_income 261384 Representative total house income in the dwelling unit is $261384 -in.representative_income 261387 Representative total house income in the dwelling unit is $261387 -in.representative_income 261426 Representative total house income in the dwelling unit is $261426 -in.representative_income 261437 Representative total house income in the dwelling unit is $261437 -in.representative_income 261466 Representative total house income in the dwelling unit is $261466 -in.representative_income 261473 Representative total house income in the dwelling unit is $261473 -in.representative_income 261474 Representative total house income in the dwelling unit is $261474 -in.representative_income 261475 Representative total house income in the dwelling unit is $261475 -in.representative_income 261489 Representative total house income in the dwelling unit is $261489 -in.representative_income 261492 Representative total house income in the dwelling unit is $261492 -in.representative_income 261528 Representative total house income in the dwelling unit is $261528 -in.representative_income 261537 Representative total house income in the dwelling unit is $261537 -in.representative_income 261542 Representative total house income in the dwelling unit is $261542 -in.representative_income 261547 Representative total house income in the dwelling unit is $261547 -in.representative_income 261557 Representative total house income in the dwelling unit is $261557 -in.representative_income 261577 Representative total house income in the dwelling unit is $261577 -in.representative_income 261599 Representative total house income in the dwelling unit is $261599 -in.representative_income 261628 Representative total house income in the dwelling unit is $261628 -in.representative_income 261647 Representative total house income in the dwelling unit is $261647 -in.representative_income 261648 Representative total house income in the dwelling unit is $261648 -in.representative_income 261653 Representative total house income in the dwelling unit is $261653 -in.representative_income 261689 Representative total house income in the dwelling unit is $261689 -in.representative_income 261753 Representative total house income in the dwelling unit is $261753 -in.representative_income 261797 Representative total house income in the dwelling unit is $261797 -in.representative_income 261880 Representative total house income in the dwelling unit is $261880 -in.representative_income 261886 Representative total house income in the dwelling unit is $261886 -in.representative_income 261906 Representative total house income in the dwelling unit is $261906 -in.representative_income 261922 Representative total house income in the dwelling unit is $261922 -in.representative_income 261925 Representative total house income in the dwelling unit is $261925 -in.representative_income 261931 Representative total house income in the dwelling unit is $261931 -in.representative_income 261989 Representative total house income in the dwelling unit is $261989 -in.representative_income 262014 Representative total house income in the dwelling unit is $262014 -in.representative_income 262019 Representative total house income in the dwelling unit is $262019 -in.representative_income 262032 Representative total house income in the dwelling unit is $262032 -in.representative_income 262083 Representative total house income in the dwelling unit is $262083 -in.representative_income 262091 Representative total house income in the dwelling unit is $262091 -in.representative_income 262122 Representative total house income in the dwelling unit is $262122 -in.representative_income 262133 Representative total house income in the dwelling unit is $262133 -in.representative_income 262136 Representative total house income in the dwelling unit is $262136 -in.representative_income 262144 Representative total house income in the dwelling unit is $262144 -in.representative_income 262154 Representative total house income in the dwelling unit is $262154 -in.representative_income 262157 Representative total house income in the dwelling unit is $262157 -in.representative_income 262175 Representative total house income in the dwelling unit is $262175 -in.representative_income 262196 Representative total house income in the dwelling unit is $262196 -in.representative_income 262198 Representative total house income in the dwelling unit is $262198 -in.representative_income 262211 Representative total house income in the dwelling unit is $262211 -in.representative_income 262234 Representative total house income in the dwelling unit is $262234 -in.representative_income 262274 Representative total house income in the dwelling unit is $262274 -in.representative_income 262280 Representative total house income in the dwelling unit is $262280 -in.representative_income 262298 Representative total house income in the dwelling unit is $262298 -in.representative_income 262335 Representative total house income in the dwelling unit is $262335 -in.representative_income 262338 Representative total house income in the dwelling unit is $262338 -in.representative_income 262351 Representative total house income in the dwelling unit is $262351 -in.representative_income 262386 Representative total house income in the dwelling unit is $262386 -in.representative_income 262401 Representative total house income in the dwelling unit is $262401 -in.representative_income 262436 Representative total house income in the dwelling unit is $262436 -in.representative_income 262446 Representative total house income in the dwelling unit is $262446 -in.representative_income 262492 Representative total house income in the dwelling unit is $262492 -in.representative_income 262505 Representative total house income in the dwelling unit is $262505 -in.representative_income 262532 Representative total house income in the dwelling unit is $262532 -in.representative_income 262534 Representative total house income in the dwelling unit is $262534 -in.representative_income 262537 Representative total house income in the dwelling unit is $262537 -in.representative_income 262554 Representative total house income in the dwelling unit is $262554 -in.representative_income 262565 Representative total house income in the dwelling unit is $262565 -in.representative_income 262597 Representative total house income in the dwelling unit is $262597 -in.representative_income 262608 Representative total house income in the dwelling unit is $262608 -in.representative_income 262638 Representative total house income in the dwelling unit is $262638 -in.representative_income 262648 Representative total house income in the dwelling unit is $262648 -in.representative_income 262658 Representative total house income in the dwelling unit is $262658 -in.representative_income 262663 Representative total house income in the dwelling unit is $262663 -in.representative_income 262668 Representative total house income in the dwelling unit is $262668 -in.representative_income 262698 Representative total house income in the dwelling unit is $262698 -in.representative_income 262717 Representative total house income in the dwelling unit is $262717 -in.representative_income 262739 Representative total house income in the dwelling unit is $262739 -in.representative_income 262780 Representative total house income in the dwelling unit is $262780 -in.representative_income 262787 Representative total house income in the dwelling unit is $262787 -in.representative_income 262820 Representative total house income in the dwelling unit is $262820 -in.representative_income 262840 Representative total house income in the dwelling unit is $262840 -in.representative_income 262888 Representative total house income in the dwelling unit is $262888 -in.representative_income 262917 Representative total house income in the dwelling unit is $262917 -in.representative_income 262937 Representative total house income in the dwelling unit is $262937 -in.representative_income 262941 Representative total house income in the dwelling unit is $262941 -in.representative_income 262995 Representative total house income in the dwelling unit is $262995 -in.representative_income 263018 Representative total house income in the dwelling unit is $263018 -in.representative_income 263020 Representative total house income in the dwelling unit is $263020 -in.representative_income 263042 Representative total house income in the dwelling unit is $263042 -in.representative_income 263049 Representative total house income in the dwelling unit is $263049 -in.representative_income 263083 Representative total house income in the dwelling unit is $263083 -in.representative_income 263094 Representative total house income in the dwelling unit is $263094 -in.representative_income 263102 Representative total house income in the dwelling unit is $263102 -in.representative_income 263124 Representative total house income in the dwelling unit is $263124 -in.representative_income 263135 Representative total house income in the dwelling unit is $263135 -in.representative_income 263143 Representative total house income in the dwelling unit is $263143 -in.representative_income 263163 Representative total house income in the dwelling unit is $263163 -in.representative_income 263190 Representative total house income in the dwelling unit is $263190 -in.representative_income 263210 Representative total house income in the dwelling unit is $263210 -in.representative_income 263227 Representative total house income in the dwelling unit is $263227 -in.representative_income 263244 Representative total house income in the dwelling unit is $263244 -in.representative_income 263310 Representative total house income in the dwelling unit is $263310 -in.representative_income 263330 Representative total house income in the dwelling unit is $263330 -in.representative_income 263345 Representative total house income in the dwelling unit is $263345 -in.representative_income 263352 Representative total house income in the dwelling unit is $263352 -in.representative_income 263370 Representative total house income in the dwelling unit is $263370 -in.representative_income 263403 Representative total house income in the dwelling unit is $263403 -in.representative_income 263419 Representative total house income in the dwelling unit is $263419 -in.representative_income 263425 Representative total house income in the dwelling unit is $263425 -in.representative_income 263433 Representative total house income in the dwelling unit is $263433 -in.representative_income 263435 Representative total house income in the dwelling unit is $263435 -in.representative_income 263440 Representative total house income in the dwelling unit is $263440 -in.representative_income 263446 Representative total house income in the dwelling unit is $263446 -in.representative_income 263498 Representative total house income in the dwelling unit is $263498 -in.representative_income 263532 Representative total house income in the dwelling unit is $263532 -in.representative_income 263536 Representative total house income in the dwelling unit is $263536 -in.representative_income 263635 Representative total house income in the dwelling unit is $263635 -in.representative_income 263639 Representative total house income in the dwelling unit is $263639 -in.representative_income 263643 Representative total house income in the dwelling unit is $263643 -in.representative_income 263648 Representative total house income in the dwelling unit is $263648 -in.representative_income 263651 Representative total house income in the dwelling unit is $263651 -in.representative_income 263668 Representative total house income in the dwelling unit is $263668 -in.representative_income 263743 Representative total house income in the dwelling unit is $263743 -in.representative_income 263747 Representative total house income in the dwelling unit is $263747 -in.representative_income 263749 Representative total house income in the dwelling unit is $263749 -in.representative_income 263757 Representative total house income in the dwelling unit is $263757 -in.representative_income 263778 Representative total house income in the dwelling unit is $263778 -in.representative_income 263830 Representative total house income in the dwelling unit is $263830 -in.representative_income 263846 Representative total house income in the dwelling unit is $263846 -in.representative_income 263850 Representative total house income in the dwelling unit is $263850 -in.representative_income 263851 Representative total house income in the dwelling unit is $263851 -in.representative_income 263854 Representative total house income in the dwelling unit is $263854 -in.representative_income 263915 Representative total house income in the dwelling unit is $263915 -in.representative_income 263948 Representative total house income in the dwelling unit is $263948 -in.representative_income 263951 Representative total house income in the dwelling unit is $263951 -in.representative_income 263959 Representative total house income in the dwelling unit is $263959 -in.representative_income 263961 Representative total house income in the dwelling unit is $263961 -in.representative_income 263999 Representative total house income in the dwelling unit is $263999 -in.representative_income 264052 Representative total house income in the dwelling unit is $264052 -in.representative_income 264066 Representative total house income in the dwelling unit is $264066 -in.representative_income 264069 Representative total house income in the dwelling unit is $264069 -in.representative_income 264073 Representative total house income in the dwelling unit is $264073 -in.representative_income 264102 Representative total house income in the dwelling unit is $264102 -in.representative_income 264153 Representative total house income in the dwelling unit is $264153 -in.representative_income 264175 Representative total house income in the dwelling unit is $264175 -in.representative_income 264179 Representative total house income in the dwelling unit is $264179 -in.representative_income 264207 Representative total house income in the dwelling unit is $264207 -in.representative_income 264254 Representative total house income in the dwelling unit is $264254 -in.representative_income 264258 Representative total house income in the dwelling unit is $264258 -in.representative_income 264283 Representative total house income in the dwelling unit is $264283 -in.representative_income 264284 Representative total house income in the dwelling unit is $264284 -in.representative_income 264294 Representative total house income in the dwelling unit is $264294 -in.representative_income 264335 Representative total house income in the dwelling unit is $264335 -in.representative_income 264337 Representative total house income in the dwelling unit is $264337 -in.representative_income 264355 Representative total house income in the dwelling unit is $264355 -in.representative_income 264362 Representative total house income in the dwelling unit is $264362 -in.representative_income 264390 Representative total house income in the dwelling unit is $264390 -in.representative_income 264391 Representative total house income in the dwelling unit is $264391 -in.representative_income 264436 Representative total house income in the dwelling unit is $264436 -in.representative_income 264456 Representative total house income in the dwelling unit is $264456 -in.representative_income 264464 Representative total house income in the dwelling unit is $264464 -in.representative_income 264495 Representative total house income in the dwelling unit is $264495 -in.representative_income 264499 Representative total house income in the dwelling unit is $264499 -in.representative_income 264551 Representative total house income in the dwelling unit is $264551 -in.representative_income 264557 Representative total house income in the dwelling unit is $264557 -in.representative_income 264567 Representative total house income in the dwelling unit is $264567 -in.representative_income 264599 Representative total house income in the dwelling unit is $264599 -in.representative_income 264601 Representative total house income in the dwelling unit is $264601 -in.representative_income 264605 Representative total house income in the dwelling unit is $264605 -in.representative_income 264607 Representative total house income in the dwelling unit is $264607 -in.representative_income 264658 Representative total house income in the dwelling unit is $264658 -in.representative_income 264671 Representative total house income in the dwelling unit is $264671 -in.representative_income 264706 Representative total house income in the dwelling unit is $264706 -in.representative_income 264713 Representative total house income in the dwelling unit is $264713 -in.representative_income 264715 Representative total house income in the dwelling unit is $264715 -in.representative_income 264716 Representative total house income in the dwelling unit is $264716 -in.representative_income 264737 Representative total house income in the dwelling unit is $264737 -in.representative_income 264759 Representative total house income in the dwelling unit is $264759 -in.representative_income 264774 Representative total house income in the dwelling unit is $264774 -in.representative_income 264811 Representative total house income in the dwelling unit is $264811 -in.representative_income 264823 Representative total house income in the dwelling unit is $264823 -in.representative_income 264860 Representative total house income in the dwelling unit is $264860 -in.representative_income 264877 Representative total house income in the dwelling unit is $264877 -in.representative_income 264894 Representative total house income in the dwelling unit is $264894 -in.representative_income 264917 Representative total house income in the dwelling unit is $264917 -in.representative_income 264927 Representative total house income in the dwelling unit is $264927 -in.representative_income 264931 Representative total house income in the dwelling unit is $264931 -in.representative_income 264938 Representative total house income in the dwelling unit is $264938 -in.representative_income 264955 Representative total house income in the dwelling unit is $264955 -in.representative_income 265003 Representative total house income in the dwelling unit is $265003 -in.representative_income 265023 Representative total house income in the dwelling unit is $265023 -in.representative_income 265035 Representative total house income in the dwelling unit is $265035 -in.representative_income 265083 Representative total house income in the dwelling unit is $265083 -in.representative_income 265128 Representative total house income in the dwelling unit is $265128 -in.representative_income 265142 Representative total house income in the dwelling unit is $265142 -in.representative_income 265148 Representative total house income in the dwelling unit is $265148 -in.representative_income 265163 Representative total house income in the dwelling unit is $265163 -in.representative_income 265186 Representative total house income in the dwelling unit is $265186 -in.representative_income 265233 Representative total house income in the dwelling unit is $265233 -in.representative_income 265250 Representative total house income in the dwelling unit is $265250 -in.representative_income 265255 Representative total house income in the dwelling unit is $265255 -in.representative_income 265271 Representative total house income in the dwelling unit is $265271 -in.representative_income 265290 Representative total house income in the dwelling unit is $265290 -in.representative_income 265339 Representative total house income in the dwelling unit is $265339 -in.representative_income 265363 Representative total house income in the dwelling unit is $265363 -in.representative_income 265365 Representative total house income in the dwelling unit is $265365 -in.representative_income 265444 Representative total house income in the dwelling unit is $265444 -in.representative_income 265446 Representative total house income in the dwelling unit is $265446 -in.representative_income 265464 Representative total house income in the dwelling unit is $265464 -in.representative_income 265466 Representative total house income in the dwelling unit is $265466 -in.representative_income 265496 Representative total house income in the dwelling unit is $265496 -in.representative_income 265539 Representative total house income in the dwelling unit is $265539 -in.representative_income 265571 Representative total house income in the dwelling unit is $265571 -in.representative_income 265599 Representative total house income in the dwelling unit is $265599 -in.representative_income 265668 Representative total house income in the dwelling unit is $265668 -in.representative_income 265761 Representative total house income in the dwelling unit is $265761 -in.representative_income 265769 Representative total house income in the dwelling unit is $265769 -in.representative_income 265796 Representative total house income in the dwelling unit is $265796 -in.representative_income 265810 Representative total house income in the dwelling unit is $265810 -in.representative_income 265820 Representative total house income in the dwelling unit is $265820 -in.representative_income 265828 Representative total house income in the dwelling unit is $265828 -in.representative_income 265887 Representative total house income in the dwelling unit is $265887 -in.representative_income 265921 Representative total house income in the dwelling unit is $265921 -in.representative_income 265947 Representative total house income in the dwelling unit is $265947 -in.representative_income 265969 Representative total house income in the dwelling unit is $265969 -in.representative_income 265972 Representative total house income in the dwelling unit is $265972 -in.representative_income 266000 Representative total house income in the dwelling unit is $266000 -in.representative_income 266012 Representative total house income in the dwelling unit is $266012 -in.representative_income 266025 Representative total house income in the dwelling unit is $266025 -in.representative_income 266072 Representative total house income in the dwelling unit is $266072 -in.representative_income 266108 Representative total house income in the dwelling unit is $266108 -in.representative_income 266114 Representative total house income in the dwelling unit is $266114 -in.representative_income 266120 Representative total house income in the dwelling unit is $266120 -in.representative_income 266136 Representative total house income in the dwelling unit is $266136 -in.representative_income 266141 Representative total house income in the dwelling unit is $266141 -in.representative_income 266161 Representative total house income in the dwelling unit is $266161 -in.representative_income 266166 Representative total house income in the dwelling unit is $266166 -in.representative_income 266173 Representative total house income in the dwelling unit is $266173 -in.representative_income 266216 Representative total house income in the dwelling unit is $266216 -in.representative_income 266218 Representative total house income in the dwelling unit is $266218 -in.representative_income 266228 Representative total house income in the dwelling unit is $266228 -in.representative_income 266237 Representative total house income in the dwelling unit is $266237 -in.representative_income 266239 Representative total house income in the dwelling unit is $266239 -in.representative_income 266274 Representative total house income in the dwelling unit is $266274 -in.representative_income 266288 Representative total house income in the dwelling unit is $266288 -in.representative_income 266323 Representative total house income in the dwelling unit is $266323 -in.representative_income 266336 Representative total house income in the dwelling unit is $266336 -in.representative_income 266394 Representative total house income in the dwelling unit is $266394 -in.representative_income 266398 Representative total house income in the dwelling unit is $266398 -in.representative_income 266424 Representative total house income in the dwelling unit is $266424 -in.representative_income 266430 Representative total house income in the dwelling unit is $266430 -in.representative_income 266443 Representative total house income in the dwelling unit is $266443 -in.representative_income 266509 Representative total house income in the dwelling unit is $266509 -in.representative_income 266528 Representative total house income in the dwelling unit is $266528 -in.representative_income 266552 Representative total house income in the dwelling unit is $266552 -in.representative_income 266604 Representative total house income in the dwelling unit is $266604 -in.representative_income 266645 Representative total house income in the dwelling unit is $266645 -in.representative_income 266660 Representative total house income in the dwelling unit is $266660 -in.representative_income 266678 Representative total house income in the dwelling unit is $266678 -in.representative_income 266710 Representative total house income in the dwelling unit is $266710 -in.representative_income 266733 Representative total house income in the dwelling unit is $266733 -in.representative_income 266752 Representative total house income in the dwelling unit is $266752 -in.representative_income 266768 Representative total house income in the dwelling unit is $266768 -in.representative_income 266779 Representative total house income in the dwelling unit is $266779 -in.representative_income 266815 Representative total house income in the dwelling unit is $266815 -in.representative_income 266837 Representative total house income in the dwelling unit is $266837 -in.representative_income 266847 Representative total house income in the dwelling unit is $266847 -in.representative_income 266860 Representative total house income in the dwelling unit is $266860 -in.representative_income 266876 Representative total house income in the dwelling unit is $266876 -in.representative_income 266880 Representative total house income in the dwelling unit is $266880 -in.representative_income 266921 Representative total house income in the dwelling unit is $266921 -in.representative_income 266940 Representative total house income in the dwelling unit is $266940 -in.representative_income 266967 Representative total house income in the dwelling unit is $266967 -in.representative_income 266981 Representative total house income in the dwelling unit is $266981 -in.representative_income 266984 Representative total house income in the dwelling unit is $266984 -in.representative_income 267026 Representative total house income in the dwelling unit is $267026 -in.representative_income 267043 Representative total house income in the dwelling unit is $267043 -in.representative_income 267074 Representative total house income in the dwelling unit is $267074 -in.representative_income 267092 Representative total house income in the dwelling unit is $267092 -in.representative_income 267146 Representative total house income in the dwelling unit is $267146 -in.representative_income 267147 Representative total house income in the dwelling unit is $267147 -in.representative_income 267183 Representative total house income in the dwelling unit is $267183 -in.representative_income 267237 Representative total house income in the dwelling unit is $267237 -in.representative_income 267249 Representative total house income in the dwelling unit is $267249 -in.representative_income 267265 Representative total house income in the dwelling unit is $267265 -in.representative_income 267289 Representative total house income in the dwelling unit is $267289 -in.representative_income 267293 Representative total house income in the dwelling unit is $267293 -in.representative_income 267330 Representative total house income in the dwelling unit is $267330 -in.representative_income 267342 Representative total house income in the dwelling unit is $267342 -in.representative_income 267374 Representative total house income in the dwelling unit is $267374 -in.representative_income 267385 Representative total house income in the dwelling unit is $267385 -in.representative_income 267395 Representative total house income in the dwelling unit is $267395 -in.representative_income 267417 Representative total house income in the dwelling unit is $267417 -in.representative_income 267448 Representative total house income in the dwelling unit is $267448 -in.representative_income 267456 Representative total house income in the dwelling unit is $267456 -in.representative_income 267486 Representative total house income in the dwelling unit is $267486 -in.representative_income 267525 Representative total house income in the dwelling unit is $267525 -in.representative_income 267554 Representative total house income in the dwelling unit is $267554 -in.representative_income 267559 Representative total house income in the dwelling unit is $267559 -in.representative_income 267587 Representative total house income in the dwelling unit is $267587 -in.representative_income 267611 Representative total house income in the dwelling unit is $267611 -in.representative_income 267632 Representative total house income in the dwelling unit is $267632 -in.representative_income 267662 Representative total house income in the dwelling unit is $267662 -in.representative_income 267688 Representative total house income in the dwelling unit is $267688 -in.representative_income 267718 Representative total house income in the dwelling unit is $267718 -in.representative_income 267740 Representative total house income in the dwelling unit is $267740 -in.representative_income 267750 Representative total house income in the dwelling unit is $267750 -in.representative_income 267751 Representative total house income in the dwelling unit is $267751 -in.representative_income 267765 Representative total house income in the dwelling unit is $267765 -in.representative_income 267777 Representative total house income in the dwelling unit is $267777 -in.representative_income 267779 Representative total house income in the dwelling unit is $267779 -in.representative_income 267826 Representative total house income in the dwelling unit is $267826 -in.representative_income 267848 Representative total house income in the dwelling unit is $267848 -in.representative_income 267859 Representative total house income in the dwelling unit is $267859 -in.representative_income 267868 Representative total house income in the dwelling unit is $267868 -in.representative_income 267870 Representative total house income in the dwelling unit is $267870 -in.representative_income 267879 Representative total house income in the dwelling unit is $267879 -in.representative_income 267890 Representative total house income in the dwelling unit is $267890 -in.representative_income 267933 Representative total house income in the dwelling unit is $267933 -in.representative_income 267956 Representative total house income in the dwelling unit is $267956 -in.representative_income 267971 Representative total house income in the dwelling unit is $267971 -in.representative_income 267991 Representative total house income in the dwelling unit is $267991 -in.representative_income 268032 Representative total house income in the dwelling unit is $268032 -in.representative_income 268041 Representative total house income in the dwelling unit is $268041 -in.representative_income 268042 Representative total house income in the dwelling unit is $268042 -in.representative_income 268064 Representative total house income in the dwelling unit is $268064 -in.representative_income 268072 Representative total house income in the dwelling unit is $268072 -in.representative_income 268075 Representative total house income in the dwelling unit is $268075 -in.representative_income 268080 Representative total house income in the dwelling unit is $268080 -in.representative_income 268082 Representative total house income in the dwelling unit is $268082 -in.representative_income 268092 Representative total house income in the dwelling unit is $268092 -in.representative_income 268147 Representative total house income in the dwelling unit is $268147 -in.representative_income 268174 Representative total house income in the dwelling unit is $268174 -in.representative_income 268178 Representative total house income in the dwelling unit is $268178 -in.representative_income 268194 Representative total house income in the dwelling unit is $268194 -in.representative_income 268249 Representative total house income in the dwelling unit is $268249 -in.representative_income 268255 Representative total house income in the dwelling unit is $268255 -in.representative_income 268281 Representative total house income in the dwelling unit is $268281 -in.representative_income 268295 Representative total house income in the dwelling unit is $268295 -in.representative_income 268332 Representative total house income in the dwelling unit is $268332 -in.representative_income 268362 Representative total house income in the dwelling unit is $268362 -in.representative_income 268363 Representative total house income in the dwelling unit is $268363 -in.representative_income 268384 Representative total house income in the dwelling unit is $268384 -in.representative_income 268389 Representative total house income in the dwelling unit is $268389 -in.representative_income 268397 Representative total house income in the dwelling unit is $268397 -in.representative_income 268416 Representative total house income in the dwelling unit is $268416 -in.representative_income 268436 Representative total house income in the dwelling unit is $268436 -in.representative_income 268470 Representative total house income in the dwelling unit is $268470 -in.representative_income 268480 Representative total house income in the dwelling unit is $268480 -in.representative_income 268487 Representative total house income in the dwelling unit is $268487 -in.representative_income 268497 Representative total house income in the dwelling unit is $268497 -in.representative_income 268503 Representative total house income in the dwelling unit is $268503 -in.representative_income 268523 Representative total house income in the dwelling unit is $268523 -in.representative_income 268577 Representative total house income in the dwelling unit is $268577 -in.representative_income 268590 Representative total house income in the dwelling unit is $268590 -in.representative_income 268620 Representative total house income in the dwelling unit is $268620 -in.representative_income 268631 Representative total house income in the dwelling unit is $268631 -in.representative_income 268655 Representative total house income in the dwelling unit is $268655 -in.representative_income 268684 Representative total house income in the dwelling unit is $268684 -in.representative_income 268694 Representative total house income in the dwelling unit is $268694 -in.representative_income 268699 Representative total house income in the dwelling unit is $268699 -in.representative_income 268713 Representative total house income in the dwelling unit is $268713 -in.representative_income 268714 Representative total house income in the dwelling unit is $268714 -in.representative_income 268797 Representative total house income in the dwelling unit is $268797 -in.representative_income 268800 Representative total house income in the dwelling unit is $268800 -in.representative_income 268827 Representative total house income in the dwelling unit is $268827 -in.representative_income 268879 Representative total house income in the dwelling unit is $268879 -in.representative_income 268880 Representative total house income in the dwelling unit is $268880 -in.representative_income 268899 Representative total house income in the dwelling unit is $268899 -in.representative_income 268901 Representative total house income in the dwelling unit is $268901 -in.representative_income 268925 Representative total house income in the dwelling unit is $268925 -in.representative_income 268929 Representative total house income in the dwelling unit is $268929 -in.representative_income 268941 Representative total house income in the dwelling unit is $268941 -in.representative_income 269003 Representative total house income in the dwelling unit is $269003 -in.representative_income 269030 Representative total house income in the dwelling unit is $269030 -in.representative_income 269037 Representative total house income in the dwelling unit is $269037 -in.representative_income 269038 Representative total house income in the dwelling unit is $269038 -in.representative_income 269040 Representative total house income in the dwelling unit is $269040 -in.representative_income 269067 Representative total house income in the dwelling unit is $269067 -in.representative_income 269103 Representative total house income in the dwelling unit is $269103 -in.representative_income 269106 Representative total house income in the dwelling unit is $269106 -in.representative_income 269114 Representative total house income in the dwelling unit is $269114 -in.representative_income 269135 Representative total house income in the dwelling unit is $269135 -in.representative_income 269204 Representative total house income in the dwelling unit is $269204 -in.representative_income 269209 Representative total house income in the dwelling unit is $269209 -in.representative_income 269221 Representative total house income in the dwelling unit is $269221 -in.representative_income 269253 Representative total house income in the dwelling unit is $269253 -in.representative_income 269275 Representative total house income in the dwelling unit is $269275 -in.representative_income 269305 Representative total house income in the dwelling unit is $269305 -in.representative_income 269313 Representative total house income in the dwelling unit is $269313 -in.representative_income 269346 Representative total house income in the dwelling unit is $269346 -in.representative_income 269361 Representative total house income in the dwelling unit is $269361 -in.representative_income 269436 Representative total house income in the dwelling unit is $269436 -in.representative_income 269452 Representative total house income in the dwelling unit is $269452 -in.representative_income 269469 Representative total house income in the dwelling unit is $269469 -in.representative_income 269518 Representative total house income in the dwelling unit is $269518 -in.representative_income 269527 Representative total house income in the dwelling unit is $269527 -in.representative_income 269535 Representative total house income in the dwelling unit is $269535 -in.representative_income 269543 Representative total house income in the dwelling unit is $269543 -in.representative_income 269608 Representative total house income in the dwelling unit is $269608 -in.representative_income 269642 Representative total house income in the dwelling unit is $269642 -in.representative_income 269651 Representative total house income in the dwelling unit is $269651 -in.representative_income 269663 Representative total house income in the dwelling unit is $269663 -in.representative_income 269685 Representative total house income in the dwelling unit is $269685 -in.representative_income 269709 Representative total house income in the dwelling unit is $269709 -in.representative_income 269725 Representative total house income in the dwelling unit is $269725 -in.representative_income 269750 Representative total house income in the dwelling unit is $269750 -in.representative_income 269758 Representative total house income in the dwelling unit is $269758 -in.representative_income 269768 Representative total house income in the dwelling unit is $269768 -in.representative_income 269873 Representative total house income in the dwelling unit is $269873 -in.representative_income 269911 Representative total house income in the dwelling unit is $269911 -in.representative_income 269931 Representative total house income in the dwelling unit is $269931 -in.representative_income 269956 Representative total house income in the dwelling unit is $269956 -in.representative_income 269966 Representative total house income in the dwelling unit is $269966 -in.representative_income 269972 Representative total house income in the dwelling unit is $269972 -in.representative_income 269979 Representative total house income in the dwelling unit is $269979 -in.representative_income 269990 Representative total house income in the dwelling unit is $269990 -in.representative_income 270010 Representative total house income in the dwelling unit is $270010 -in.representative_income 270012 Representative total house income in the dwelling unit is $270012 -in.representative_income 270037 Representative total house income in the dwelling unit is $270037 -in.representative_income 270080 Representative total house income in the dwelling unit is $270080 -in.representative_income 270116 Representative total house income in the dwelling unit is $270116 -in.representative_income 270117 Representative total house income in the dwelling unit is $270117 -in.representative_income 270137 Representative total house income in the dwelling unit is $270137 -in.representative_income 270148 Representative total house income in the dwelling unit is $270148 -in.representative_income 270171 Representative total house income in the dwelling unit is $270171 -in.representative_income 270190 Representative total house income in the dwelling unit is $270190 -in.representative_income 270206 Representative total house income in the dwelling unit is $270206 -in.representative_income 270214 Representative total house income in the dwelling unit is $270214 -in.representative_income 270224 Representative total house income in the dwelling unit is $270224 -in.representative_income 270225 Representative total house income in the dwelling unit is $270225 -in.representative_income 270241 Representative total house income in the dwelling unit is $270241 -in.representative_income 270313 Representative total house income in the dwelling unit is $270313 -in.representative_income 270315 Representative total house income in the dwelling unit is $270315 -in.representative_income 270333 Representative total house income in the dwelling unit is $270333 -in.representative_income 270344 Representative total house income in the dwelling unit is $270344 -in.representative_income 270371 Representative total house income in the dwelling unit is $270371 -in.representative_income 270375 Representative total house income in the dwelling unit is $270375 -in.representative_income 270401 Representative total house income in the dwelling unit is $270401 -in.representative_income 270416 Representative total house income in the dwelling unit is $270416 -in.representative_income 270441 Representative total house income in the dwelling unit is $270441 -in.representative_income 270447 Representative total house income in the dwelling unit is $270447 -in.representative_income 270509 Representative total house income in the dwelling unit is $270509 -in.representative_income 270517 Representative total house income in the dwelling unit is $270517 -in.representative_income 270550 Representative total house income in the dwelling unit is $270550 -in.representative_income 270556 Representative total house income in the dwelling unit is $270556 -in.representative_income 270611 Representative total house income in the dwelling unit is $270611 -in.representative_income 270616 Representative total house income in the dwelling unit is $270616 -in.representative_income 270617 Representative total house income in the dwelling unit is $270617 -in.representative_income 270653 Representative total house income in the dwelling unit is $270653 -in.representative_income 270658 Representative total house income in the dwelling unit is $270658 -in.representative_income 270719 Representative total house income in the dwelling unit is $270719 -in.representative_income 270729 Representative total house income in the dwelling unit is $270729 -in.representative_income 270756 Representative total house income in the dwelling unit is $270756 -in.representative_income 270766 Representative total house income in the dwelling unit is $270766 -in.representative_income 270788 Representative total house income in the dwelling unit is $270788 -in.representative_income 270823 Representative total house income in the dwelling unit is $270823 -in.representative_income 270860 Representative total house income in the dwelling unit is $270860 -in.representative_income 270874 Representative total house income in the dwelling unit is $270874 -in.representative_income 270897 Representative total house income in the dwelling unit is $270897 -in.representative_income 270951 Representative total house income in the dwelling unit is $270951 -in.representative_income 270982 Representative total house income in the dwelling unit is $270982 -in.representative_income 270992 Representative total house income in the dwelling unit is $270992 -in.representative_income 271022 Representative total house income in the dwelling unit is $271022 -in.representative_income 271034 Representative total house income in the dwelling unit is $271034 -in.representative_income 271036 Representative total house income in the dwelling unit is $271036 -in.representative_income 271046 Representative total house income in the dwelling unit is $271046 -in.representative_income 271090 Representative total house income in the dwelling unit is $271090 -in.representative_income 271123 Representative total house income in the dwelling unit is $271123 -in.representative_income 271137 Representative total house income in the dwelling unit is $271137 -in.representative_income 271139 Representative total house income in the dwelling unit is $271139 -in.representative_income 271153 Representative total house income in the dwelling unit is $271153 -in.representative_income 271154 Representative total house income in the dwelling unit is $271154 -in.representative_income 271169 Representative total house income in the dwelling unit is $271169 -in.representative_income 271173 Representative total house income in the dwelling unit is $271173 -in.representative_income 271198 Representative total house income in the dwelling unit is $271198 -in.representative_income 271224 Representative total house income in the dwelling unit is $271224 -in.representative_income 271234 Representative total house income in the dwelling unit is $271234 -in.representative_income 271244 Representative total house income in the dwelling unit is $271244 -in.representative_income 271261 Representative total house income in the dwelling unit is $271261 -in.representative_income 271272 Representative total house income in the dwelling unit is $271272 -in.representative_income 271306 Representative total house income in the dwelling unit is $271306 -in.representative_income 271351 Representative total house income in the dwelling unit is $271351 -in.representative_income 271368 Representative total house income in the dwelling unit is $271368 -in.representative_income 271414 Representative total house income in the dwelling unit is $271414 -in.representative_income 271426 Representative total house income in the dwelling unit is $271426 -in.representative_income 271456 Representative total house income in the dwelling unit is $271456 -in.representative_income 271479 Representative total house income in the dwelling unit is $271479 -in.representative_income 271522 Representative total house income in the dwelling unit is $271522 -in.representative_income 271527 Representative total house income in the dwelling unit is $271527 -in.representative_income 271561 Representative total house income in the dwelling unit is $271561 -in.representative_income 271581 Representative total house income in the dwelling unit is $271581 -in.representative_income 271582 Representative total house income in the dwelling unit is $271582 -in.representative_income 271583 Representative total house income in the dwelling unit is $271583 -in.representative_income 271626 Representative total house income in the dwelling unit is $271626 -in.representative_income 271628 Representative total house income in the dwelling unit is $271628 -in.representative_income 271630 Representative total house income in the dwelling unit is $271630 -in.representative_income 271666 Representative total house income in the dwelling unit is $271666 -in.representative_income 271690 Representative total house income in the dwelling unit is $271690 -in.representative_income 271725 Representative total house income in the dwelling unit is $271725 -in.representative_income 271729 Representative total house income in the dwelling unit is $271729 -in.representative_income 271738 Representative total house income in the dwelling unit is $271738 -in.representative_income 271772 Representative total house income in the dwelling unit is $271772 -in.representative_income 271788 Representative total house income in the dwelling unit is $271788 -in.representative_income 271797 Representative total house income in the dwelling unit is $271797 -in.representative_income 271846 Representative total house income in the dwelling unit is $271846 -in.representative_income 271931 Representative total house income in the dwelling unit is $271931 -in.representative_income 271983 Representative total house income in the dwelling unit is $271983 -in.representative_income 271994 Representative total house income in the dwelling unit is $271994 -in.representative_income 272011 Representative total house income in the dwelling unit is $272011 -in.representative_income 272032 Representative total house income in the dwelling unit is $272032 -in.representative_income 272062 Representative total house income in the dwelling unit is $272062 -in.representative_income 272089 Representative total house income in the dwelling unit is $272089 -in.representative_income 272098 Representative total house income in the dwelling unit is $272098 -in.representative_income 272119 Representative total house income in the dwelling unit is $272119 -in.representative_income 272133 Representative total house income in the dwelling unit is $272133 -in.representative_income 272138 Representative total house income in the dwelling unit is $272138 -in.representative_income 272163 Representative total house income in the dwelling unit is $272163 -in.representative_income 272180 Representative total house income in the dwelling unit is $272180 -in.representative_income 272204 Representative total house income in the dwelling unit is $272204 -in.representative_income 272227 Representative total house income in the dwelling unit is $272227 -in.representative_income 272234 Representative total house income in the dwelling unit is $272234 -in.representative_income 272263 Representative total house income in the dwelling unit is $272263 -in.representative_income 272279 Representative total house income in the dwelling unit is $272279 -in.representative_income 272299 Representative total house income in the dwelling unit is $272299 -in.representative_income 272303 Representative total house income in the dwelling unit is $272303 -in.representative_income 272334 Representative total house income in the dwelling unit is $272334 -in.representative_income 272335 Representative total house income in the dwelling unit is $272335 -in.representative_income 272407 Representative total house income in the dwelling unit is $272407 -in.representative_income 272436 Representative total house income in the dwelling unit is $272436 -in.representative_income 272480 Representative total house income in the dwelling unit is $272480 -in.representative_income 272495 Representative total house income in the dwelling unit is $272495 -in.representative_income 272510 Representative total house income in the dwelling unit is $272510 -in.representative_income 272537 Representative total house income in the dwelling unit is $272537 -in.representative_income 272559 Representative total house income in the dwelling unit is $272559 -in.representative_income 272616 Representative total house income in the dwelling unit is $272616 -in.representative_income 272656 Representative total house income in the dwelling unit is $272656 -in.representative_income 272679 Representative total house income in the dwelling unit is $272679 -in.representative_income 272721 Representative total house income in the dwelling unit is $272721 -in.representative_income 272739 Representative total house income in the dwelling unit is $272739 -in.representative_income 272753 Representative total house income in the dwelling unit is $272753 -in.representative_income 272763 Representative total house income in the dwelling unit is $272763 -in.representative_income 272818 Representative total house income in the dwelling unit is $272818 -in.representative_income 272819 Representative total house income in the dwelling unit is $272819 -in.representative_income 272860 Representative total house income in the dwelling unit is $272860 -in.representative_income 272913 Representative total house income in the dwelling unit is $272913 -in.representative_income 272922 Representative total house income in the dwelling unit is $272922 -in.representative_income 272941 Representative total house income in the dwelling unit is $272941 -in.representative_income 272943 Representative total house income in the dwelling unit is $272943 -in.representative_income 272978 Representative total house income in the dwelling unit is $272978 -in.representative_income 273053 Representative total house income in the dwelling unit is $273053 -in.representative_income 273067 Representative total house income in the dwelling unit is $273067 -in.representative_income 273080 Representative total house income in the dwelling unit is $273080 -in.representative_income 273093 Representative total house income in the dwelling unit is $273093 -in.representative_income 273129 Representative total house income in the dwelling unit is $273129 -in.representative_income 273142 Representative total house income in the dwelling unit is $273142 -in.representative_income 273143 Representative total house income in the dwelling unit is $273143 -in.representative_income 273206 Representative total house income in the dwelling unit is $273206 -in.representative_income 273224 Representative total house income in the dwelling unit is $273224 -in.representative_income 273242 Representative total house income in the dwelling unit is $273242 -in.representative_income 273244 Representative total house income in the dwelling unit is $273244 -in.representative_income 273300 Representative total house income in the dwelling unit is $273300 -in.representative_income 273335 Representative total house income in the dwelling unit is $273335 -in.representative_income 273345 Representative total house income in the dwelling unit is $273345 -in.representative_income 273359 Representative total house income in the dwelling unit is $273359 -in.representative_income 273366 Representative total house income in the dwelling unit is $273366 -in.representative_income 273407 Representative total house income in the dwelling unit is $273407 -in.representative_income 273416 Representative total house income in the dwelling unit is $273416 -in.representative_income 273438 Representative total house income in the dwelling unit is $273438 -in.representative_income 273459 Representative total house income in the dwelling unit is $273459 -in.representative_income 273462 Representative total house income in the dwelling unit is $273462 -in.representative_income 273467 Representative total house income in the dwelling unit is $273467 -in.representative_income 273490 Representative total house income in the dwelling unit is $273490 -in.representative_income 273532 Representative total house income in the dwelling unit is $273532 -in.representative_income 273541 Representative total house income in the dwelling unit is $273541 -in.representative_income 273547 Representative total house income in the dwelling unit is $273547 -in.representative_income 273565 Representative total house income in the dwelling unit is $273565 -in.representative_income 273575 Representative total house income in the dwelling unit is $273575 -in.representative_income 273623 Representative total house income in the dwelling unit is $273623 -in.representative_income 273629 Representative total house income in the dwelling unit is $273629 -in.representative_income 273648 Representative total house income in the dwelling unit is $273648 -in.representative_income 273670 Representative total house income in the dwelling unit is $273670 -in.representative_income 273696 Representative total house income in the dwelling unit is $273696 -in.representative_income 273729 Representative total house income in the dwelling unit is $273729 -in.representative_income 273733 Representative total house income in the dwelling unit is $273733 -in.representative_income 273749 Representative total house income in the dwelling unit is $273749 -in.representative_income 273771 Representative total house income in the dwelling unit is $273771 -in.representative_income 273775 Representative total house income in the dwelling unit is $273775 -in.representative_income 273791 Representative total house income in the dwelling unit is $273791 -in.representative_income 273850 Representative total house income in the dwelling unit is $273850 -in.representative_income 273881 Representative total house income in the dwelling unit is $273881 -in.representative_income 273899 Representative total house income in the dwelling unit is $273899 -in.representative_income 273943 Representative total house income in the dwelling unit is $273943 -in.representative_income 273951 Representative total house income in the dwelling unit is $273951 -in.representative_income 274007 Representative total house income in the dwelling unit is $274007 -in.representative_income 274024 Representative total house income in the dwelling unit is $274024 -in.representative_income 274042 Representative total house income in the dwelling unit is $274042 -in.representative_income 274052 Representative total house income in the dwelling unit is $274052 -in.representative_income 274072 Representative total house income in the dwelling unit is $274072 -in.representative_income 274092 Representative total house income in the dwelling unit is $274092 -in.representative_income 274153 Representative total house income in the dwelling unit is $274153 -in.representative_income 274159 Representative total house income in the dwelling unit is $274159 -in.representative_income 274160 Representative total house income in the dwelling unit is $274160 -in.representative_income 274197 Representative total house income in the dwelling unit is $274197 -in.representative_income 274223 Representative total house income in the dwelling unit is $274223 -in.representative_income 274251 Representative total house income in the dwelling unit is $274251 -in.representative_income 274254 Representative total house income in the dwelling unit is $274254 -in.representative_income 274264 Representative total house income in the dwelling unit is $274264 -in.representative_income 274266 Representative total house income in the dwelling unit is $274266 -in.representative_income 274271 Representative total house income in the dwelling unit is $274271 -in.representative_income 274303 Representative total house income in the dwelling unit is $274303 -in.representative_income 274366 Representative total house income in the dwelling unit is $274366 -in.representative_income 274373 Representative total house income in the dwelling unit is $274373 -in.representative_income 274408 Representative total house income in the dwelling unit is $274408 -in.representative_income 274430 Representative total house income in the dwelling unit is $274430 -in.representative_income 274439 Representative total house income in the dwelling unit is $274439 -in.representative_income 274469 Representative total house income in the dwelling unit is $274469 -in.representative_income 274548 Representative total house income in the dwelling unit is $274548 -in.representative_income 274573 Representative total house income in the dwelling unit is $274573 -in.representative_income 274577 Representative total house income in the dwelling unit is $274577 -in.representative_income 274620 Representative total house income in the dwelling unit is $274620 -in.representative_income 274656 Representative total house income in the dwelling unit is $274656 -in.representative_income 274658 Representative total house income in the dwelling unit is $274658 -in.representative_income 274676 Representative total house income in the dwelling unit is $274676 -in.representative_income 274725 Representative total house income in the dwelling unit is $274725 -in.representative_income 274759 Representative total house income in the dwelling unit is $274759 -in.representative_income 274779 Representative total house income in the dwelling unit is $274779 -in.representative_income 274803 Representative total house income in the dwelling unit is $274803 -in.representative_income 274814 Representative total house income in the dwelling unit is $274814 -in.representative_income 274857 Representative total house income in the dwelling unit is $274857 -in.representative_income 274860 Representative total house income in the dwelling unit is $274860 -in.representative_income 274882 Representative total house income in the dwelling unit is $274882 -in.representative_income 274941 Representative total house income in the dwelling unit is $274941 -in.representative_income 274961 Representative total house income in the dwelling unit is $274961 -in.representative_income 274979 Representative total house income in the dwelling unit is $274979 -in.representative_income 274985 Representative total house income in the dwelling unit is $274985 -in.representative_income 275062 Representative total house income in the dwelling unit is $275062 -in.representative_income 275077 Representative total house income in the dwelling unit is $275077 -in.representative_income 275104 Representative total house income in the dwelling unit is $275104 -in.representative_income 275147 Representative total house income in the dwelling unit is $275147 -in.representative_income 275164 Representative total house income in the dwelling unit is $275164 -in.representative_income 275252 Representative total house income in the dwelling unit is $275252 -in.representative_income 275265 Representative total house income in the dwelling unit is $275265 -in.representative_income 275295 Representative total house income in the dwelling unit is $275295 -in.representative_income 275304 Representative total house income in the dwelling unit is $275304 -in.representative_income 275328 Representative total house income in the dwelling unit is $275328 -in.representative_income 275358 Representative total house income in the dwelling unit is $275358 -in.representative_income 275366 Representative total house income in the dwelling unit is $275366 -in.representative_income 275397 Representative total house income in the dwelling unit is $275397 -in.representative_income 275412 Representative total house income in the dwelling unit is $275412 -in.representative_income 275421 Representative total house income in the dwelling unit is $275421 -in.representative_income 275463 Representative total house income in the dwelling unit is $275463 -in.representative_income 275480 Representative total house income in the dwelling unit is $275480 -in.representative_income 275501 Representative total house income in the dwelling unit is $275501 -in.representative_income 275520 Representative total house income in the dwelling unit is $275520 -in.representative_income 275563 Representative total house income in the dwelling unit is $275563 -in.representative_income 275568 Representative total house income in the dwelling unit is $275568 -in.representative_income 275574 Representative total house income in the dwelling unit is $275574 -in.representative_income 275604 Representative total house income in the dwelling unit is $275604 -in.representative_income 275620 Representative total house income in the dwelling unit is $275620 -in.representative_income 275674 Representative total house income in the dwelling unit is $275674 -in.representative_income 275736 Representative total house income in the dwelling unit is $275736 -in.representative_income 275751 Representative total house income in the dwelling unit is $275751 -in.representative_income 275769 Representative total house income in the dwelling unit is $275769 -in.representative_income 275770 Representative total house income in the dwelling unit is $275770 -in.representative_income 275790 Representative total house income in the dwelling unit is $275790 -in.representative_income 275811 Representative total house income in the dwelling unit is $275811 -in.representative_income 275877 Representative total house income in the dwelling unit is $275877 -in.representative_income 275885 Representative total house income in the dwelling unit is $275885 -in.representative_income 275902 Representative total house income in the dwelling unit is $275902 -in.representative_income 275914 Representative total house income in the dwelling unit is $275914 -in.representative_income 275937 Representative total house income in the dwelling unit is $275937 -in.representative_income 275972 Representative total house income in the dwelling unit is $275972 -in.representative_income 275983 Representative total house income in the dwelling unit is $275983 -in.representative_income 275990 Representative total house income in the dwelling unit is $275990 -in.representative_income 276016 Representative total house income in the dwelling unit is $276016 -in.representative_income 276073 Representative total house income in the dwelling unit is $276073 -in.representative_income 276096 Representative total house income in the dwelling unit is $276096 -in.representative_income 276127 Representative total house income in the dwelling unit is $276127 -in.representative_income 276168 Representative total house income in the dwelling unit is $276168 -in.representative_income 276174 Representative total house income in the dwelling unit is $276174 -in.representative_income 276198 Representative total house income in the dwelling unit is $276198 -in.representative_income 276275 Representative total house income in the dwelling unit is $276275 -in.representative_income 276306 Representative total house income in the dwelling unit is $276306 -in.representative_income 276359 Representative total house income in the dwelling unit is $276359 -in.representative_income 276413 Representative total house income in the dwelling unit is $276413 -in.representative_income 276430 Representative total house income in the dwelling unit is $276430 -in.representative_income 276460 Representative total house income in the dwelling unit is $276460 -in.representative_income 276492 Representative total house income in the dwelling unit is $276492 -in.representative_income 276525 Representative total house income in the dwelling unit is $276525 -in.representative_income 276532 Representative total house income in the dwelling unit is $276532 -in.representative_income 276598 Representative total house income in the dwelling unit is $276598 -in.representative_income 276600 Representative total house income in the dwelling unit is $276600 -in.representative_income 276655 Representative total house income in the dwelling unit is $276655 -in.representative_income 276679 Representative total house income in the dwelling unit is $276679 -in.representative_income 276682 Representative total house income in the dwelling unit is $276682 -in.representative_income 276708 Representative total house income in the dwelling unit is $276708 -in.representative_income 276728 Representative total house income in the dwelling unit is $276728 -in.representative_income 276735 Representative total house income in the dwelling unit is $276735 -in.representative_income 276739 Representative total house income in the dwelling unit is $276739 -in.representative_income 276768 Representative total house income in the dwelling unit is $276768 -in.representative_income 276780 Representative total house income in the dwelling unit is $276780 -in.representative_income 276834 Representative total house income in the dwelling unit is $276834 -in.representative_income 276842 Representative total house income in the dwelling unit is $276842 -in.representative_income 276888 Representative total house income in the dwelling unit is $276888 -in.representative_income 276925 Representative total house income in the dwelling unit is $276925 -in.representative_income 276945 Representative total house income in the dwelling unit is $276945 -in.representative_income 276950 Representative total house income in the dwelling unit is $276950 -in.representative_income 276971 Representative total house income in the dwelling unit is $276971 -in.representative_income 276982 Representative total house income in the dwelling unit is $276982 -in.representative_income 277013 Representative total house income in the dwelling unit is $277013 -in.representative_income 277033 Representative total house income in the dwelling unit is $277033 -in.representative_income 277048 Representative total house income in the dwelling unit is $277048 -in.representative_income 277057 Representative total house income in the dwelling unit is $277057 -in.representative_income 277083 Representative total house income in the dwelling unit is $277083 -in.representative_income 277141 Representative total house income in the dwelling unit is $277141 -in.representative_income 277151 Representative total house income in the dwelling unit is $277151 -in.representative_income 277164 Representative total house income in the dwelling unit is $277164 -in.representative_income 277180 Representative total house income in the dwelling unit is $277180 -in.representative_income 277184 Representative total house income in the dwelling unit is $277184 -in.representative_income 277244 Representative total house income in the dwelling unit is $277244 -in.representative_income 277361 Representative total house income in the dwelling unit is $277361 -in.representative_income 277386 Representative total house income in the dwelling unit is $277386 -in.representative_income 277405 Representative total house income in the dwelling unit is $277405 -in.representative_income 277461 Representative total house income in the dwelling unit is $277461 -in.representative_income 277487 Representative total house income in the dwelling unit is $277487 -in.representative_income 277588 Representative total house income in the dwelling unit is $277588 -in.representative_income 277594 Representative total house income in the dwelling unit is $277594 -in.representative_income 277667 Representative total house income in the dwelling unit is $277667 -in.representative_income 277681 Representative total house income in the dwelling unit is $277681 -in.representative_income 277685 Representative total house income in the dwelling unit is $277685 -in.representative_income 277689 Representative total house income in the dwelling unit is $277689 -in.representative_income 277781 Representative total house income in the dwelling unit is $277781 -in.representative_income 277783 Representative total house income in the dwelling unit is $277783 -in.representative_income 277789 Representative total house income in the dwelling unit is $277789 -in.representative_income 277790 Representative total house income in the dwelling unit is $277790 -in.representative_income 277808 Representative total house income in the dwelling unit is $277808 -in.representative_income 277840 Representative total house income in the dwelling unit is $277840 -in.representative_income 277873 Representative total house income in the dwelling unit is $277873 -in.representative_income 277889 Representative total house income in the dwelling unit is $277889 -in.representative_income 277891 Representative total house income in the dwelling unit is $277891 -in.representative_income 277895 Representative total house income in the dwelling unit is $277895 -in.representative_income 277897 Representative total house income in the dwelling unit is $277897 -in.representative_income 277916 Representative total house income in the dwelling unit is $277916 -in.representative_income 277977 Representative total house income in the dwelling unit is $277977 -in.representative_income 277994 Representative total house income in the dwelling unit is $277994 -in.representative_income 278002 Representative total house income in the dwelling unit is $278002 -in.representative_income 278024 Representative total house income in the dwelling unit is $278024 -in.representative_income 278048 Representative total house income in the dwelling unit is $278048 -in.representative_income 278077 Representative total house income in the dwelling unit is $278077 -in.representative_income 278080 Representative total house income in the dwelling unit is $278080 -in.representative_income 278093 Representative total house income in the dwelling unit is $278093 -in.representative_income 278099 Representative total house income in the dwelling unit is $278099 -in.representative_income 278113 Representative total house income in the dwelling unit is $278113 -in.representative_income 278182 Representative total house income in the dwelling unit is $278182 -in.representative_income 278205 Representative total house income in the dwelling unit is $278205 -in.representative_income 278221 Representative total house income in the dwelling unit is $278221 -in.representative_income 278238 Representative total house income in the dwelling unit is $278238 -in.representative_income 278255 Representative total house income in the dwelling unit is $278255 -in.representative_income 278279 Representative total house income in the dwelling unit is $278279 -in.representative_income 278295 Representative total house income in the dwelling unit is $278295 -in.representative_income 278329 Representative total house income in the dwelling unit is $278329 -in.representative_income 278345 Representative total house income in the dwelling unit is $278345 -in.representative_income 278352 Representative total house income in the dwelling unit is $278352 -in.representative_income 278416 Representative total house income in the dwelling unit is $278416 -in.representative_income 278427 Representative total house income in the dwelling unit is $278427 -in.representative_income 278492 Representative total house income in the dwelling unit is $278492 -in.representative_income 278497 Representative total house income in the dwelling unit is $278497 -in.representative_income 278501 Representative total house income in the dwelling unit is $278501 -in.representative_income 278502 Representative total house income in the dwelling unit is $278502 -in.representative_income 278560 Representative total house income in the dwelling unit is $278560 -in.representative_income 278574 Representative total house income in the dwelling unit is $278574 -in.representative_income 278627 Representative total house income in the dwelling unit is $278627 -in.representative_income 278653 Representative total house income in the dwelling unit is $278653 -in.representative_income 278698 Representative total house income in the dwelling unit is $278698 -in.representative_income 278699 Representative total house income in the dwelling unit is $278699 -in.representative_income 278732 Representative total house income in the dwelling unit is $278732 -in.representative_income 278761 Representative total house income in the dwelling unit is $278761 -in.representative_income 278774 Representative total house income in the dwelling unit is $278774 -in.representative_income 278800 Representative total house income in the dwelling unit is $278800 -in.representative_income 278801 Representative total house income in the dwelling unit is $278801 -in.representative_income 278815 Representative total house income in the dwelling unit is $278815 -in.representative_income 278820 Representative total house income in the dwelling unit is $278820 -in.representative_income 278837 Representative total house income in the dwelling unit is $278837 -in.representative_income 278905 Representative total house income in the dwelling unit is $278905 -in.representative_income 278944 Representative total house income in the dwelling unit is $278944 -in.representative_income 278989 Representative total house income in the dwelling unit is $278989 -in.representative_income 279002 Representative total house income in the dwelling unit is $279002 -in.representative_income 279008 Representative total house income in the dwelling unit is $279008 -in.representative_income 279049 Representative total house income in the dwelling unit is $279049 -in.representative_income 279085 Representative total house income in the dwelling unit is $279085 -in.representative_income 279097 Representative total house income in the dwelling unit is $279097 -in.representative_income 279101 Representative total house income in the dwelling unit is $279101 -in.representative_income 279103 Representative total house income in the dwelling unit is $279103 -in.representative_income 279111 Representative total house income in the dwelling unit is $279111 -in.representative_income 279118 Representative total house income in the dwelling unit is $279118 -in.representative_income 279154 Representative total house income in the dwelling unit is $279154 -in.representative_income 279193 Representative total house income in the dwelling unit is $279193 -in.representative_income 279204 Representative total house income in the dwelling unit is $279204 -in.representative_income 279260 Representative total house income in the dwelling unit is $279260 -in.representative_income 279280 Representative total house income in the dwelling unit is $279280 -in.representative_income 279311 Representative total house income in the dwelling unit is $279311 -in.representative_income 279317 Representative total house income in the dwelling unit is $279317 -in.representative_income 279335 Representative total house income in the dwelling unit is $279335 -in.representative_income 279406 Representative total house income in the dwelling unit is $279406 -in.representative_income 279419 Representative total house income in the dwelling unit is $279419 -in.representative_income 279420 Representative total house income in the dwelling unit is $279420 -in.representative_income 279470 Representative total house income in the dwelling unit is $279470 -in.representative_income 279483 Representative total house income in the dwelling unit is $279483 -in.representative_income 279507 Representative total house income in the dwelling unit is $279507 -in.representative_income 279523 Representative total house income in the dwelling unit is $279523 -in.representative_income 279524 Representative total house income in the dwelling unit is $279524 -in.representative_income 279534 Representative total house income in the dwelling unit is $279534 -in.representative_income 279576 Representative total house income in the dwelling unit is $279576 -in.representative_income 279634 Representative total house income in the dwelling unit is $279634 -in.representative_income 279682 Representative total house income in the dwelling unit is $279682 -in.representative_income 279709 Representative total house income in the dwelling unit is $279709 -in.representative_income 279730 Representative total house income in the dwelling unit is $279730 -in.representative_income 279781 Representative total house income in the dwelling unit is $279781 -in.representative_income 279810 Representative total house income in the dwelling unit is $279810 -in.representative_income 279841 Representative total house income in the dwelling unit is $279841 -in.representative_income 279892 Representative total house income in the dwelling unit is $279892 -in.representative_income 279921 Representative total house income in the dwelling unit is $279921 -in.representative_income 279936 Representative total house income in the dwelling unit is $279936 -in.representative_income 279955 Representative total house income in the dwelling unit is $279955 -in.representative_income 280012 Representative total house income in the dwelling unit is $280012 -in.representative_income 280039 Representative total house income in the dwelling unit is $280039 -in.representative_income 280058 Representative total house income in the dwelling unit is $280058 -in.representative_income 280084 Representative total house income in the dwelling unit is $280084 -in.representative_income 280103 Representative total house income in the dwelling unit is $280103 -in.representative_income 280113 Representative total house income in the dwelling unit is $280113 -in.representative_income 280143 Representative total house income in the dwelling unit is $280143 -in.representative_income 280170 Representative total house income in the dwelling unit is $280170 -in.representative_income 280174 Representative total house income in the dwelling unit is $280174 -in.representative_income 280209 Representative total house income in the dwelling unit is $280209 -in.representative_income 280314 Representative total house income in the dwelling unit is $280314 -in.representative_income 280348 Representative total house income in the dwelling unit is $280348 -in.representative_income 280382 Representative total house income in the dwelling unit is $280382 -in.representative_income 280416 Representative total house income in the dwelling unit is $280416 -in.representative_income 280492 Representative total house income in the dwelling unit is $280492 -in.representative_income 280525 Representative total house income in the dwelling unit is $280525 -in.representative_income 280555 Representative total house income in the dwelling unit is $280555 -in.representative_income 280599 Representative total house income in the dwelling unit is $280599 -in.representative_income 280618 Representative total house income in the dwelling unit is $280618 -in.representative_income 280630 Representative total house income in the dwelling unit is $280630 -in.representative_income 280658 Representative total house income in the dwelling unit is $280658 -in.representative_income 280707 Representative total house income in the dwelling unit is $280707 -in.representative_income 280736 Representative total house income in the dwelling unit is $280736 -in.representative_income 280762 Representative total house income in the dwelling unit is $280762 -in.representative_income 280815 Representative total house income in the dwelling unit is $280815 -in.representative_income 280820 Representative total house income in the dwelling unit is $280820 -in.representative_income 280865 Representative total house income in the dwelling unit is $280865 -in.representative_income 280916 Representative total house income in the dwelling unit is $280916 -in.representative_income 280922 Representative total house income in the dwelling unit is $280922 -in.representative_income 280947 Representative total house income in the dwelling unit is $280947 -in.representative_income 280967 Representative total house income in the dwelling unit is $280967 -in.representative_income 280976 Representative total house income in the dwelling unit is $280976 -in.representative_income 281022 Representative total house income in the dwelling unit is $281022 -in.representative_income 281029 Representative total house income in the dwelling unit is $281029 -in.representative_income 281052 Representative total house income in the dwelling unit is $281052 -in.representative_income 281053 Representative total house income in the dwelling unit is $281053 -in.representative_income 281123 Representative total house income in the dwelling unit is $281123 -in.representative_income 281174 Representative total house income in the dwelling unit is $281174 -in.representative_income 281224 Representative total house income in the dwelling unit is $281224 -in.representative_income 281244 Representative total house income in the dwelling unit is $281244 -in.representative_income 281246 Representative total house income in the dwelling unit is $281246 -in.representative_income 281263 Representative total house income in the dwelling unit is $281263 -in.representative_income 281277 Representative total house income in the dwelling unit is $281277 -in.representative_income 281297 Representative total house income in the dwelling unit is $281297 -in.representative_income 281339 Representative total house income in the dwelling unit is $281339 -in.representative_income 281351 Representative total house income in the dwelling unit is $281351 -in.representative_income 281354 Representative total house income in the dwelling unit is $281354 -in.representative_income 281368 Representative total house income in the dwelling unit is $281368 -in.representative_income 281381 Representative total house income in the dwelling unit is $281381 -in.representative_income 281426 Representative total house income in the dwelling unit is $281426 -in.representative_income 281560 Representative total house income in the dwelling unit is $281560 -in.representative_income 281570 Representative total house income in the dwelling unit is $281570 -in.representative_income 281577 Representative total house income in the dwelling unit is $281577 -in.representative_income 281578 Representative total house income in the dwelling unit is $281578 -in.representative_income 281580 Representative total house income in the dwelling unit is $281580 -in.representative_income 281586 Representative total house income in the dwelling unit is $281586 -in.representative_income 281596 Representative total house income in the dwelling unit is $281596 -in.representative_income 281628 Representative total house income in the dwelling unit is $281628 -in.representative_income 281653 Representative total house income in the dwelling unit is $281653 -in.representative_income 281673 Representative total house income in the dwelling unit is $281673 -in.representative_income 281677 Representative total house income in the dwelling unit is $281677 -in.representative_income 281690 Representative total house income in the dwelling unit is $281690 -in.representative_income 281726 Representative total house income in the dwelling unit is $281726 -in.representative_income 281729 Representative total house income in the dwelling unit is $281729 -in.representative_income 281791 Representative total house income in the dwelling unit is $281791 -in.representative_income 281830 Representative total house income in the dwelling unit is $281830 -in.representative_income 281841 Representative total house income in the dwelling unit is $281841 -in.representative_income 281888 Representative total house income in the dwelling unit is $281888 -in.representative_income 281937 Representative total house income in the dwelling unit is $281937 -in.representative_income 281978 Representative total house income in the dwelling unit is $281978 -in.representative_income 281999 Representative total house income in the dwelling unit is $281999 -in.representative_income 282001 Representative total house income in the dwelling unit is $282001 -in.representative_income 282003 Representative total house income in the dwelling unit is $282003 -in.representative_income 282102 Representative total house income in the dwelling unit is $282102 -in.representative_income 282107 Representative total house income in the dwelling unit is $282107 -in.representative_income 282111 Representative total house income in the dwelling unit is $282111 -in.representative_income 282123 Representative total house income in the dwelling unit is $282123 -in.representative_income 282134 Representative total house income in the dwelling unit is $282134 -in.representative_income 282205 Representative total house income in the dwelling unit is $282205 -in.representative_income 282213 Representative total house income in the dwelling unit is $282213 -in.representative_income 282288 Representative total house income in the dwelling unit is $282288 -in.representative_income 282317 Representative total house income in the dwelling unit is $282317 -in.representative_income 282318 Representative total house income in the dwelling unit is $282318 -in.representative_income 282336 Representative total house income in the dwelling unit is $282336 -in.representative_income 282356 Representative total house income in the dwelling unit is $282356 -in.representative_income 282412 Representative total house income in the dwelling unit is $282412 -in.representative_income 282423 Representative total house income in the dwelling unit is $282423 -in.representative_income 282425 Representative total house income in the dwelling unit is $282425 -in.representative_income 282435 Representative total house income in the dwelling unit is $282435 -in.representative_income 282437 Representative total house income in the dwelling unit is $282437 -in.representative_income 282489 Representative total house income in the dwelling unit is $282489 -in.representative_income 282508 Representative total house income in the dwelling unit is $282508 -in.representative_income 282514 Representative total house income in the dwelling unit is $282514 -in.representative_income 282529 Representative total house income in the dwelling unit is $282529 -in.representative_income 282538 Representative total house income in the dwelling unit is $282538 -in.representative_income 282543 Representative total house income in the dwelling unit is $282543 -in.representative_income 282618 Representative total house income in the dwelling unit is $282618 -in.representative_income 282634 Representative total house income in the dwelling unit is $282634 -in.representative_income 282650 Representative total house income in the dwelling unit is $282650 -in.representative_income 282651 Representative total house income in the dwelling unit is $282651 -in.representative_income 282709 Representative total house income in the dwelling unit is $282709 -in.representative_income 282721 Representative total house income in the dwelling unit is $282721 -in.representative_income 282759 Representative total house income in the dwelling unit is $282759 -in.representative_income 282824 Representative total house income in the dwelling unit is $282824 -in.representative_income 282841 Representative total house income in the dwelling unit is $282841 -in.representative_income 282846 Representative total house income in the dwelling unit is $282846 -in.representative_income 282867 Representative total house income in the dwelling unit is $282867 -in.representative_income 282877 Representative total house income in the dwelling unit is $282877 -in.representative_income 282891 Representative total house income in the dwelling unit is $282891 -in.representative_income 282928 Representative total house income in the dwelling unit is $282928 -in.representative_income 282942 Representative total house income in the dwelling unit is $282942 -in.representative_income 282951 Representative total house income in the dwelling unit is $282951 -in.representative_income 282961 Representative total house income in the dwelling unit is $282961 -in.representative_income 283031 Representative total house income in the dwelling unit is $283031 -in.representative_income 283043 Representative total house income in the dwelling unit is $283043 -in.representative_income 283069 Representative total house income in the dwelling unit is $283069 -in.representative_income 283073 Representative total house income in the dwelling unit is $283073 -in.representative_income 283083 Representative total house income in the dwelling unit is $283083 -in.representative_income 283115 Representative total house income in the dwelling unit is $283115 -in.representative_income 283133 Representative total house income in the dwelling unit is $283133 -in.representative_income 283161 Representative total house income in the dwelling unit is $283161 -in.representative_income 283176 Representative total house income in the dwelling unit is $283176 -in.representative_income 283192 Representative total house income in the dwelling unit is $283192 -in.representative_income 283194 Representative total house income in the dwelling unit is $283194 -in.representative_income 283267 Representative total house income in the dwelling unit is $283267 -in.representative_income 283272 Representative total house income in the dwelling unit is $283272 -in.representative_income 283289 Representative total house income in the dwelling unit is $283289 -in.representative_income 283300 Representative total house income in the dwelling unit is $283300 -in.representative_income 283340 Representative total house income in the dwelling unit is $283340 -in.representative_income 283346 Representative total house income in the dwelling unit is $283346 -in.representative_income 283390 Representative total house income in the dwelling unit is $283390 -in.representative_income 283443 Representative total house income in the dwelling unit is $283443 -in.representative_income 283447 Representative total house income in the dwelling unit is $283447 -in.representative_income 283478 Representative total house income in the dwelling unit is $283478 -in.representative_income 283498 Representative total house income in the dwelling unit is $283498 -in.representative_income 283547 Representative total house income in the dwelling unit is $283547 -in.representative_income 283548 Representative total house income in the dwelling unit is $283548 -in.representative_income 283584 Representative total house income in the dwelling unit is $283584 -in.representative_income 283605 Representative total house income in the dwelling unit is $283605 -in.representative_income 283623 Representative total house income in the dwelling unit is $283623 -in.representative_income 283637 Representative total house income in the dwelling unit is $283637 -in.representative_income 283649 Representative total house income in the dwelling unit is $283649 -in.representative_income 283653 Representative total house income in the dwelling unit is $283653 -in.representative_income 283669 Representative total house income in the dwelling unit is $283669 -in.representative_income 283689 Representative total house income in the dwelling unit is $283689 -in.representative_income 283713 Representative total house income in the dwelling unit is $283713 -in.representative_income 283731 Representative total house income in the dwelling unit is $283731 -in.representative_income 283742 Representative total house income in the dwelling unit is $283742 -in.representative_income 283750 Representative total house income in the dwelling unit is $283750 -in.representative_income 283773 Representative total house income in the dwelling unit is $283773 -in.representative_income 283820 Representative total house income in the dwelling unit is $283820 -in.representative_income 283834 Representative total house income in the dwelling unit is $283834 -in.representative_income 283851 Representative total house income in the dwelling unit is $283851 -in.representative_income 283899 Representative total house income in the dwelling unit is $283899 -in.representative_income 284006 Representative total house income in the dwelling unit is $284006 -in.representative_income 284035 Representative total house income in the dwelling unit is $284035 -in.representative_income 284053 Representative total house income in the dwelling unit is $284053 -in.representative_income 284062 Representative total house income in the dwelling unit is $284062 -in.representative_income 284093 Representative total house income in the dwelling unit is $284093 -in.representative_income 284154 Representative total house income in the dwelling unit is $284154 -in.representative_income 284163 Representative total house income in the dwelling unit is $284163 -in.representative_income 284164 Representative total house income in the dwelling unit is $284164 -in.representative_income 284165 Representative total house income in the dwelling unit is $284165 -in.representative_income 284216 Representative total house income in the dwelling unit is $284216 -in.representative_income 284250 Representative total house income in the dwelling unit is $284250 -in.representative_income 284255 Representative total house income in the dwelling unit is $284255 -in.representative_income 284268 Representative total house income in the dwelling unit is $284268 -in.representative_income 284272 Representative total house income in the dwelling unit is $284272 -in.representative_income 284322 Representative total house income in the dwelling unit is $284322 -in.representative_income 284356 Representative total house income in the dwelling unit is $284356 -in.representative_income 284371 Representative total house income in the dwelling unit is $284371 -in.representative_income 284380 Representative total house income in the dwelling unit is $284380 -in.representative_income 284427 Representative total house income in the dwelling unit is $284427 -in.representative_income 284464 Representative total house income in the dwelling unit is $284464 -in.representative_income 284474 Representative total house income in the dwelling unit is $284474 -in.representative_income 284475 Representative total house income in the dwelling unit is $284475 -in.representative_income 284488 Representative total house income in the dwelling unit is $284488 -in.representative_income 284571 Representative total house income in the dwelling unit is $284571 -in.representative_income 284595 Representative total house income in the dwelling unit is $284595 -in.representative_income 284659 Representative total house income in the dwelling unit is $284659 -in.representative_income 284679 Representative total house income in the dwelling unit is $284679 -in.representative_income 284681 Representative total house income in the dwelling unit is $284681 -in.representative_income 284700 Representative total house income in the dwelling unit is $284700 -in.representative_income 284703 Representative total house income in the dwelling unit is $284703 -in.representative_income 284744 Representative total house income in the dwelling unit is $284744 -in.representative_income 284747 Representative total house income in the dwelling unit is $284747 -in.representative_income 284786 Representative total house income in the dwelling unit is $284786 -in.representative_income 284861 Representative total house income in the dwelling unit is $284861 -in.representative_income 284894 Representative total house income in the dwelling unit is $284894 -in.representative_income 284934 Representative total house income in the dwelling unit is $284934 -in.representative_income 284962 Representative total house income in the dwelling unit is $284962 -in.representative_income 284990 Representative total house income in the dwelling unit is $284990 -in.representative_income 285000 Representative total house income in the dwelling unit is $285000 -in.representative_income 285028 Representative total house income in the dwelling unit is $285028 -in.representative_income 285094 Representative total house income in the dwelling unit is $285094 -in.representative_income 285108 Representative total house income in the dwelling unit is $285108 -in.representative_income 285136 Representative total house income in the dwelling unit is $285136 -in.representative_income 285155 Representative total house income in the dwelling unit is $285155 -in.representative_income 285164 Representative total house income in the dwelling unit is $285164 -in.representative_income 285215 Representative total house income in the dwelling unit is $285215 -in.representative_income 285244 Representative total house income in the dwelling unit is $285244 -in.representative_income 285266 Representative total house income in the dwelling unit is $285266 -in.representative_income 285299 Representative total house income in the dwelling unit is $285299 -in.representative_income 285323 Representative total house income in the dwelling unit is $285323 -in.representative_income 285366 Representative total house income in the dwelling unit is $285366 -in.representative_income 285377 Representative total house income in the dwelling unit is $285377 -in.representative_income 285403 Representative total house income in the dwelling unit is $285403 -in.representative_income 285482 Representative total house income in the dwelling unit is $285482 -in.representative_income 285506 Representative total house income in the dwelling unit is $285506 -in.representative_income 285537 Representative total house income in the dwelling unit is $285537 -in.representative_income 285568 Representative total house income in the dwelling unit is $285568 -in.representative_income 285587 Representative total house income in the dwelling unit is $285587 -in.representative_income 285609 Representative total house income in the dwelling unit is $285609 -in.representative_income 285677 Representative total house income in the dwelling unit is $285677 -in.representative_income 285691 Representative total house income in the dwelling unit is $285691 -in.representative_income 285692 Representative total house income in the dwelling unit is $285692 -in.representative_income 285713 Representative total house income in the dwelling unit is $285713 -in.representative_income 285741 Representative total house income in the dwelling unit is $285741 -in.representative_income 285752 Representative total house income in the dwelling unit is $285752 -in.representative_income 285784 Representative total house income in the dwelling unit is $285784 -in.representative_income 285798 Representative total house income in the dwelling unit is $285798 -in.representative_income 285870 Representative total house income in the dwelling unit is $285870 -in.representative_income 285871 Representative total house income in the dwelling unit is $285871 -in.representative_income 285892 Representative total house income in the dwelling unit is $285892 -in.representative_income 285918 Representative total house income in the dwelling unit is $285918 -in.representative_income 285967 Representative total house income in the dwelling unit is $285967 -in.representative_income 285972 Representative total house income in the dwelling unit is $285972 -in.representative_income 286000 Representative total house income in the dwelling unit is $286000 -in.representative_income 286009 Representative total house income in the dwelling unit is $286009 -in.representative_income 286037 Representative total house income in the dwelling unit is $286037 -in.representative_income 286061 Representative total house income in the dwelling unit is $286061 -in.representative_income 286073 Representative total house income in the dwelling unit is $286073 -in.representative_income 286074 Representative total house income in the dwelling unit is $286074 -in.representative_income 286108 Representative total house income in the dwelling unit is $286108 -in.representative_income 286124 Representative total house income in the dwelling unit is $286124 -in.representative_income 286125 Representative total house income in the dwelling unit is $286125 -in.representative_income 286162 Representative total house income in the dwelling unit is $286162 -in.representative_income 286174 Representative total house income in the dwelling unit is $286174 -in.representative_income 286181 Representative total house income in the dwelling unit is $286181 -in.representative_income 286220 Representative total house income in the dwelling unit is $286220 -in.representative_income 286228 Representative total house income in the dwelling unit is $286228 -in.representative_income 286275 Representative total house income in the dwelling unit is $286275 -in.representative_income 286290 Representative total house income in the dwelling unit is $286290 -in.representative_income 286324 Representative total house income in the dwelling unit is $286324 -in.representative_income 286332 Representative total house income in the dwelling unit is $286332 -in.representative_income 286396 Representative total house income in the dwelling unit is $286396 -in.representative_income 286434 Representative total house income in the dwelling unit is $286434 -in.representative_income 286484 Representative total house income in the dwelling unit is $286484 -in.representative_income 286486 Representative total house income in the dwelling unit is $286486 -in.representative_income 286504 Representative total house income in the dwelling unit is $286504 -in.representative_income 286522 Representative total house income in the dwelling unit is $286522 -in.representative_income 286537 Representative total house income in the dwelling unit is $286537 -in.representative_income 286547 Representative total house income in the dwelling unit is $286547 -in.representative_income 286578 Representative total house income in the dwelling unit is $286578 -in.representative_income 286610 Representative total house income in the dwelling unit is $286610 -in.representative_income 286641 Representative total house income in the dwelling unit is $286641 -in.representative_income 286642 Representative total house income in the dwelling unit is $286642 -in.representative_income 286718 Representative total house income in the dwelling unit is $286718 -in.representative_income 286744 Representative total house income in the dwelling unit is $286744 -in.representative_income 286757 Representative total house income in the dwelling unit is $286757 -in.representative_income 286811 Representative total house income in the dwelling unit is $286811 -in.representative_income 286826 Representative total house income in the dwelling unit is $286826 -in.representative_income 286830 Representative total house income in the dwelling unit is $286830 -in.representative_income 286847 Representative total house income in the dwelling unit is $286847 -in.representative_income 286853 Representative total house income in the dwelling unit is $286853 -in.representative_income 286865 Representative total house income in the dwelling unit is $286865 -in.representative_income 286874 Representative total house income in the dwelling unit is $286874 -in.representative_income 286875 Representative total house income in the dwelling unit is $286875 -in.representative_income 286879 Representative total house income in the dwelling unit is $286879 -in.representative_income 286881 Representative total house income in the dwelling unit is $286881 -in.representative_income 286958 Representative total house income in the dwelling unit is $286958 -in.representative_income 286972 Representative total house income in the dwelling unit is $286972 -in.representative_income 287041 Representative total house income in the dwelling unit is $287041 -in.representative_income 287043 Representative total house income in the dwelling unit is $287043 -in.representative_income 287053 Representative total house income in the dwelling unit is $287053 -in.representative_income 287063 Representative total house income in the dwelling unit is $287063 -in.representative_income 287083 Representative total house income in the dwelling unit is $287083 -in.representative_income 287147 Representative total house income in the dwelling unit is $287147 -in.representative_income 287156 Representative total house income in the dwelling unit is $287156 -in.representative_income 287189 Representative total house income in the dwelling unit is $287189 -in.representative_income 287208 Representative total house income in the dwelling unit is $287208 -in.representative_income 287275 Representative total house income in the dwelling unit is $287275 -in.representative_income 287285 Representative total house income in the dwelling unit is $287285 -in.representative_income 287297 Representative total house income in the dwelling unit is $287297 -in.representative_income 287380 Representative total house income in the dwelling unit is $287380 -in.representative_income 287384 Representative total house income in the dwelling unit is $287384 -in.representative_income 287386 Representative total house income in the dwelling unit is $287386 -in.representative_income 287405 Representative total house income in the dwelling unit is $287405 -in.representative_income 287470 Representative total house income in the dwelling unit is $287470 -in.representative_income 287485 Representative total house income in the dwelling unit is $287485 -in.representative_income 287487 Representative total house income in the dwelling unit is $287487 -in.representative_income 287517 Representative total house income in the dwelling unit is $287517 -in.representative_income 287544 Representative total house income in the dwelling unit is $287544 -in.representative_income 287577 Representative total house income in the dwelling unit is $287577 -in.representative_income 287588 Representative total house income in the dwelling unit is $287588 -in.representative_income 287620 Representative total house income in the dwelling unit is $287620 -in.representative_income 287621 Representative total house income in the dwelling unit is $287621 -in.representative_income 287685 Representative total house income in the dwelling unit is $287685 -in.representative_income 287689 Representative total house income in the dwelling unit is $287689 -in.representative_income 287696 Representative total house income in the dwelling unit is $287696 -in.representative_income 287729 Representative total house income in the dwelling unit is $287729 -in.representative_income 287775 Representative total house income in the dwelling unit is $287775 -in.representative_income 287790 Representative total house income in the dwelling unit is $287790 -in.representative_income 287837 Representative total house income in the dwelling unit is $287837 -in.representative_income 287879 Representative total house income in the dwelling unit is $287879 -in.representative_income 287891 Representative total house income in the dwelling unit is $287891 -in.representative_income 287908 Representative total house income in the dwelling unit is $287908 -in.representative_income 287945 Representative total house income in the dwelling unit is $287945 -in.representative_income 287946 Representative total house income in the dwelling unit is $287946 -in.representative_income 287982 Representative total house income in the dwelling unit is $287982 -in.representative_income 288002 Representative total house income in the dwelling unit is $288002 -in.representative_income 288006 Representative total house income in the dwelling unit is $288006 -in.representative_income 288013 Representative total house income in the dwelling unit is $288013 -in.representative_income 288093 Representative total house income in the dwelling unit is $288093 -in.representative_income 288118 Representative total house income in the dwelling unit is $288118 -in.representative_income 288126 Representative total house income in the dwelling unit is $288126 -in.representative_income 288144 Representative total house income in the dwelling unit is $288144 -in.representative_income 288188 Representative total house income in the dwelling unit is $288188 -in.representative_income 288222 Representative total house income in the dwelling unit is $288222 -in.representative_income 288269 Representative total house income in the dwelling unit is $288269 -in.representative_income 288291 Representative total house income in the dwelling unit is $288291 -in.representative_income 288295 Representative total house income in the dwelling unit is $288295 -in.representative_income 288329 Representative total house income in the dwelling unit is $288329 -in.representative_income 288346 Representative total house income in the dwelling unit is $288346 -in.representative_income 288351 Representative total house income in the dwelling unit is $288351 -in.representative_income 288394 Representative total house income in the dwelling unit is $288394 -in.representative_income 288396 Representative total house income in the dwelling unit is $288396 -in.representative_income 288407 Representative total house income in the dwelling unit is $288407 -in.representative_income 288435 Representative total house income in the dwelling unit is $288435 -in.representative_income 288485 Representative total house income in the dwelling unit is $288485 -in.representative_income 288498 Representative total house income in the dwelling unit is $288498 -in.representative_income 288508 Representative total house income in the dwelling unit is $288508 -in.representative_income 288598 Representative total house income in the dwelling unit is $288598 -in.representative_income 288600 Representative total house income in the dwelling unit is $288600 -in.representative_income 288649 Representative total house income in the dwelling unit is $288649 -in.representative_income 288651 Representative total house income in the dwelling unit is $288651 -in.representative_income 288701 Representative total house income in the dwelling unit is $288701 -in.representative_income 288751 Representative total house income in the dwelling unit is $288751 -in.representative_income 288758 Representative total house income in the dwelling unit is $288758 -in.representative_income 288790 Representative total house income in the dwelling unit is $288790 -in.representative_income 288807 Representative total house income in the dwelling unit is $288807 -in.representative_income 288810 Representative total house income in the dwelling unit is $288810 -in.representative_income 288858 Representative total house income in the dwelling unit is $288858 -in.representative_income 288901 Representative total house income in the dwelling unit is $288901 -in.representative_income 288910 Representative total house income in the dwelling unit is $288910 -in.representative_income 288918 Representative total house income in the dwelling unit is $288918 -in.representative_income 288962 Representative total house income in the dwelling unit is $288962 -in.representative_income 289013 Representative total house income in the dwelling unit is $289013 -in.representative_income 289068 Representative total house income in the dwelling unit is $289068 -in.representative_income 289078 Representative total house income in the dwelling unit is $289078 -in.representative_income 289080 Representative total house income in the dwelling unit is $289080 -in.representative_income 289089 Representative total house income in the dwelling unit is $289089 -in.representative_income 289242 Representative total house income in the dwelling unit is $289242 -in.representative_income 289271 Representative total house income in the dwelling unit is $289271 -in.representative_income 289295 Representative total house income in the dwelling unit is $289295 -in.representative_income 289306 Representative total house income in the dwelling unit is $289306 -in.representative_income 289322 Representative total house income in the dwelling unit is $289322 -in.representative_income 289327 Representative total house income in the dwelling unit is $289327 -in.representative_income 289384 Representative total house income in the dwelling unit is $289384 -in.representative_income 289401 Representative total house income in the dwelling unit is $289401 -in.representative_income 289407 Representative total house income in the dwelling unit is $289407 -in.representative_income 289426 Representative total house income in the dwelling unit is $289426 -in.representative_income 289508 Representative total house income in the dwelling unit is $289508 -in.representative_income 289509 Representative total house income in the dwelling unit is $289509 -in.representative_income 289510 Representative total house income in the dwelling unit is $289510 -in.representative_income 289566 Representative total house income in the dwelling unit is $289566 -in.representative_income 289594 Representative total house income in the dwelling unit is $289594 -in.representative_income 289616 Representative total house income in the dwelling unit is $289616 -in.representative_income 289632 Representative total house income in the dwelling unit is $289632 -in.representative_income 289701 Representative total house income in the dwelling unit is $289701 -in.representative_income 289710 Representative total house income in the dwelling unit is $289710 -in.representative_income 289735 Representative total house income in the dwelling unit is $289735 -in.representative_income 289806 Representative total house income in the dwelling unit is $289806 -in.representative_income 289813 Representative total house income in the dwelling unit is $289813 -in.representative_income 289827 Representative total house income in the dwelling unit is $289827 -in.representative_income 289832 Representative total house income in the dwelling unit is $289832 -in.representative_income 289838 Representative total house income in the dwelling unit is $289838 -in.representative_income 289848 Representative total house income in the dwelling unit is $289848 -in.representative_income 289851 Representative total house income in the dwelling unit is $289851 -in.representative_income 289864 Representative total house income in the dwelling unit is $289864 -in.representative_income 289874 Representative total house income in the dwelling unit is $289874 -in.representative_income 289885 Representative total house income in the dwelling unit is $289885 -in.representative_income 289890 Representative total house income in the dwelling unit is $289890 -in.representative_income 289912 Representative total house income in the dwelling unit is $289912 -in.representative_income 289916 Representative total house income in the dwelling unit is $289916 -in.representative_income 289939 Representative total house income in the dwelling unit is $289939 -in.representative_income 289998 Representative total house income in the dwelling unit is $289998 -in.representative_income 290013 Representative total house income in the dwelling unit is $290013 -in.representative_income 290016 Representative total house income in the dwelling unit is $290016 -in.representative_income 290033 Representative total house income in the dwelling unit is $290033 -in.representative_income 290070 Representative total house income in the dwelling unit is $290070 -in.representative_income 290106 Representative total house income in the dwelling unit is $290106 -in.representative_income 290122 Representative total house income in the dwelling unit is $290122 -in.representative_income 290144 Representative total house income in the dwelling unit is $290144 -in.representative_income 290153 Representative total house income in the dwelling unit is $290153 -in.representative_income 290196 Representative total house income in the dwelling unit is $290196 -in.representative_income 290214 Representative total house income in the dwelling unit is $290214 -in.representative_income 290215 Representative total house income in the dwelling unit is $290215 -in.representative_income 290227 Representative total house income in the dwelling unit is $290227 -in.representative_income 290261 Representative total house income in the dwelling unit is $290261 -in.representative_income 290316 Representative total house income in the dwelling unit is $290316 -in.representative_income 290323 Representative total house income in the dwelling unit is $290323 -in.representative_income 290333 Representative total house income in the dwelling unit is $290333 -in.representative_income 290354 Representative total house income in the dwelling unit is $290354 -in.representative_income 290389 Representative total house income in the dwelling unit is $290389 -in.representative_income 290390 Representative total house income in the dwelling unit is $290390 -in.representative_income 290417 Representative total house income in the dwelling unit is $290417 -in.representative_income 290431 Representative total house income in the dwelling unit is $290431 -in.representative_income 290439 Representative total house income in the dwelling unit is $290439 -in.representative_income 290457 Representative total house income in the dwelling unit is $290457 -in.representative_income 290486 Representative total house income in the dwelling unit is $290486 -in.representative_income 290518 Representative total house income in the dwelling unit is $290518 -in.representative_income 290539 Representative total house income in the dwelling unit is $290539 -in.representative_income 290544 Representative total house income in the dwelling unit is $290544 -in.representative_income 290560 Representative total house income in the dwelling unit is $290560 -in.representative_income 290578 Representative total house income in the dwelling unit is $290578 -in.representative_income 290609 Representative total house income in the dwelling unit is $290609 -in.representative_income 290638 Representative total house income in the dwelling unit is $290638 -in.representative_income 290646 Representative total house income in the dwelling unit is $290646 -in.representative_income 290664 Representative total house income in the dwelling unit is $290664 -in.representative_income 290690 Representative total house income in the dwelling unit is $290690 -in.representative_income 290720 Representative total house income in the dwelling unit is $290720 -in.representative_income 290766 Representative total house income in the dwelling unit is $290766 -in.representative_income 290858 Representative total house income in the dwelling unit is $290858 -in.representative_income 290862 Representative total house income in the dwelling unit is $290862 -in.representative_income 290869 Representative total house income in the dwelling unit is $290869 -in.representative_income 290901 Representative total house income in the dwelling unit is $290901 -in.representative_income 290905 Representative total house income in the dwelling unit is $290905 -in.representative_income 290921 Representative total house income in the dwelling unit is $290921 -in.representative_income 290922 Representative total house income in the dwelling unit is $290922 -in.representative_income 290973 Representative total house income in the dwelling unit is $290973 -in.representative_income 291071 Representative total house income in the dwelling unit is $291071 -in.representative_income 291076 Representative total house income in the dwelling unit is $291076 -in.representative_income 291119 Representative total house income in the dwelling unit is $291119 -in.representative_income 291128 Representative total house income in the dwelling unit is $291128 -in.representative_income 291177 Representative total house income in the dwelling unit is $291177 -in.representative_income 291225 Representative total house income in the dwelling unit is $291225 -in.representative_income 291227 Representative total house income in the dwelling unit is $291227 -in.representative_income 291231 Representative total house income in the dwelling unit is $291231 -in.representative_income 291272 Representative total house income in the dwelling unit is $291272 -in.representative_income 291282 Representative total house income in the dwelling unit is $291282 -in.representative_income 291293 Representative total house income in the dwelling unit is $291293 -in.representative_income 291295 Representative total house income in the dwelling unit is $291295 -in.representative_income 291326 Representative total house income in the dwelling unit is $291326 -in.representative_income 291334 Representative total house income in the dwelling unit is $291334 -in.representative_income 291385 Representative total house income in the dwelling unit is $291385 -in.representative_income 291387 Representative total house income in the dwelling unit is $291387 -in.representative_income 291427 Representative total house income in the dwelling unit is $291427 -in.representative_income 291442 Representative total house income in the dwelling unit is $291442 -in.representative_income 291488 Representative total house income in the dwelling unit is $291488 -in.representative_income 291493 Representative total house income in the dwelling unit is $291493 -in.representative_income 291511 Representative total house income in the dwelling unit is $291511 -in.representative_income 291528 Representative total house income in the dwelling unit is $291528 -in.representative_income 291548 Representative total house income in the dwelling unit is $291548 -in.representative_income 291656 Representative total house income in the dwelling unit is $291656 -in.representative_income 291686 Representative total house income in the dwelling unit is $291686 -in.representative_income 291695 Representative total house income in the dwelling unit is $291695 -in.representative_income 291704 Representative total house income in the dwelling unit is $291704 -in.representative_income 291727 Representative total house income in the dwelling unit is $291727 -in.representative_income 291730 Representative total house income in the dwelling unit is $291730 -in.representative_income 291763 Representative total house income in the dwelling unit is $291763 -in.representative_income 291809 Representative total house income in the dwelling unit is $291809 -in.representative_income 291834 Representative total house income in the dwelling unit is $291834 -in.representative_income 291901 Representative total house income in the dwelling unit is $291901 -in.representative_income 291915 Representative total house income in the dwelling unit is $291915 -in.representative_income 291932 Representative total house income in the dwelling unit is $291932 -in.representative_income 291943 Representative total house income in the dwelling unit is $291943 -in.representative_income 291952 Representative total house income in the dwelling unit is $291952 -in.representative_income 291978 Representative total house income in the dwelling unit is $291978 -in.representative_income 292000 Representative total house income in the dwelling unit is $292000 -in.representative_income 292051 Representative total house income in the dwelling unit is $292051 -in.representative_income 292086 Representative total house income in the dwelling unit is $292086 -in.representative_income 292107 Representative total house income in the dwelling unit is $292107 -in.representative_income 292125 Representative total house income in the dwelling unit is $292125 -in.representative_income 292134 Representative total house income in the dwelling unit is $292134 -in.representative_income 292267 Representative total house income in the dwelling unit is $292267 -in.representative_income 292314 Representative total house income in the dwelling unit is $292314 -in.representative_income 292336 Representative total house income in the dwelling unit is $292336 -in.representative_income 292337 Representative total house income in the dwelling unit is $292337 -in.representative_income 292375 Representative total house income in the dwelling unit is $292375 -in.representative_income 292379 Representative total house income in the dwelling unit is $292379 -in.representative_income 292437 Representative total house income in the dwelling unit is $292437 -in.representative_income 292444 Representative total house income in the dwelling unit is $292444 -in.representative_income 292515 Representative total house income in the dwelling unit is $292515 -in.representative_income 292520 Representative total house income in the dwelling unit is $292520 -in.representative_income 292538 Representative total house income in the dwelling unit is $292538 -in.representative_income 292568 Representative total house income in the dwelling unit is $292568 -in.representative_income 292591 Representative total house income in the dwelling unit is $292591 -in.representative_income 292623 Representative total house income in the dwelling unit is $292623 -in.representative_income 292653 Representative total house income in the dwelling unit is $292653 -in.representative_income 292654 Representative total house income in the dwelling unit is $292654 -in.representative_income 292700 Representative total house income in the dwelling unit is $292700 -in.representative_income 292726 Representative total house income in the dwelling unit is $292726 -in.representative_income 292740 Representative total house income in the dwelling unit is $292740 -in.representative_income 292758 Representative total house income in the dwelling unit is $292758 -in.representative_income 292808 Representative total house income in the dwelling unit is $292808 -in.representative_income 292813 Representative total house income in the dwelling unit is $292813 -in.representative_income 292830 Representative total house income in the dwelling unit is $292830 -in.representative_income 292837 Representative total house income in the dwelling unit is $292837 -in.representative_income 292841 Representative total house income in the dwelling unit is $292841 -in.representative_income 292864 Representative total house income in the dwelling unit is $292864 -in.representative_income 292916 Representative total house income in the dwelling unit is $292916 -in.representative_income 292932 Representative total house income in the dwelling unit is $292932 -in.representative_income 292942 Representative total house income in the dwelling unit is $292942 -in.representative_income 292970 Representative total house income in the dwelling unit is $292970 -in.representative_income 292984 Representative total house income in the dwelling unit is $292984 -in.representative_income 293023 Representative total house income in the dwelling unit is $293023 -in.representative_income 293035 Representative total house income in the dwelling unit is $293035 -in.representative_income 293043 Representative total house income in the dwelling unit is $293043 -in.representative_income 293052 Representative total house income in the dwelling unit is $293052 -in.representative_income 293058 Representative total house income in the dwelling unit is $293058 -in.representative_income 293131 Representative total house income in the dwelling unit is $293131 -in.representative_income 293144 Representative total house income in the dwelling unit is $293144 -in.representative_income 293159 Representative total house income in the dwelling unit is $293159 -in.representative_income 293180 Representative total house income in the dwelling unit is $293180 -in.representative_income 293242 Representative total house income in the dwelling unit is $293242 -in.representative_income 293267 Representative total house income in the dwelling unit is $293267 -in.representative_income 293346 Representative total house income in the dwelling unit is $293346 -in.representative_income 293373 Representative total house income in the dwelling unit is $293373 -in.representative_income 293447 Representative total house income in the dwelling unit is $293447 -in.representative_income 293449 Representative total house income in the dwelling unit is $293449 -in.representative_income 293455 Representative total house income in the dwelling unit is $293455 -in.representative_income 293548 Representative total house income in the dwelling unit is $293548 -in.representative_income 293602 Representative total house income in the dwelling unit is $293602 -in.representative_income 293672 Representative total house income in the dwelling unit is $293672 -in.representative_income 293696 Representative total house income in the dwelling unit is $293696 -in.representative_income 293749 Representative total house income in the dwelling unit is $293749 -in.representative_income 293803 Representative total house income in the dwelling unit is $293803 -in.representative_income 293812 Representative total house income in the dwelling unit is $293812 -in.representative_income 293813 Representative total house income in the dwelling unit is $293813 -in.representative_income 293851 Representative total house income in the dwelling unit is $293851 -in.representative_income 293888 Representative total house income in the dwelling unit is $293888 -in.representative_income 293913 Representative total house income in the dwelling unit is $293913 -in.representative_income 293952 Representative total house income in the dwelling unit is $293952 -in.representative_income 293964 Representative total house income in the dwelling unit is $293964 -in.representative_income 293996 Representative total house income in the dwelling unit is $293996 -in.representative_income 294053 Representative total house income in the dwelling unit is $294053 -in.representative_income 294125 Representative total house income in the dwelling unit is $294125 -in.representative_income 294154 Representative total house income in the dwelling unit is $294154 -in.representative_income 294170 Representative total house income in the dwelling unit is $294170 -in.representative_income 294235 Representative total house income in the dwelling unit is $294235 -in.representative_income 294273 Representative total house income in the dwelling unit is $294273 -in.representative_income 294318 Representative total house income in the dwelling unit is $294318 -in.representative_income 294320 Representative total house income in the dwelling unit is $294320 -in.representative_income 294340 Representative total house income in the dwelling unit is $294340 -in.representative_income 294341 Representative total house income in the dwelling unit is $294341 -in.representative_income 294374 Representative total house income in the dwelling unit is $294374 -in.representative_income 294376 Representative total house income in the dwelling unit is $294376 -in.representative_income 294377 Representative total house income in the dwelling unit is $294377 -in.representative_income 294387 Representative total house income in the dwelling unit is $294387 -in.representative_income 294428 Representative total house income in the dwelling unit is $294428 -in.representative_income 294446 Representative total house income in the dwelling unit is $294446 -in.representative_income 294480 Representative total house income in the dwelling unit is $294480 -in.representative_income 294536 Representative total house income in the dwelling unit is $294536 -in.representative_income 294659 Representative total house income in the dwelling unit is $294659 -in.representative_income 294662 Representative total house income in the dwelling unit is $294662 -in.representative_income 294686 Representative total house income in the dwelling unit is $294686 -in.representative_income 294696 Representative total house income in the dwelling unit is $294696 -in.representative_income 294769 Representative total house income in the dwelling unit is $294769 -in.representative_income 294861 Representative total house income in the dwelling unit is $294861 -in.representative_income 294962 Representative total house income in the dwelling unit is $294962 -in.representative_income 294968 Representative total house income in the dwelling unit is $294968 -in.representative_income 294973 Representative total house income in the dwelling unit is $294973 -in.representative_income 294983 Representative total house income in the dwelling unit is $294983 -in.representative_income 294996 Representative total house income in the dwelling unit is $294996 -in.representative_income 295034 Representative total house income in the dwelling unit is $295034 -in.representative_income 295077 Representative total house income in the dwelling unit is $295077 -in.representative_income 295079 Representative total house income in the dwelling unit is $295079 -in.representative_income 295124 Representative total house income in the dwelling unit is $295124 -in.representative_income 295184 Representative total house income in the dwelling unit is $295184 -in.representative_income 295198 Representative total house income in the dwelling unit is $295198 -in.representative_income 295201 Representative total house income in the dwelling unit is $295201 -in.representative_income 295253 Representative total house income in the dwelling unit is $295253 -in.representative_income 295265 Representative total house income in the dwelling unit is $295265 -in.representative_income 295289 Representative total house income in the dwelling unit is $295289 -in.representative_income 295305 Representative total house income in the dwelling unit is $295305 -in.representative_income 295306 Representative total house income in the dwelling unit is $295306 -in.representative_income 295401 Representative total house income in the dwelling unit is $295401 -in.representative_income 295408 Representative total house income in the dwelling unit is $295408 -in.representative_income 295413 Representative total house income in the dwelling unit is $295413 -in.representative_income 295467 Representative total house income in the dwelling unit is $295467 -in.representative_income 295501 Representative total house income in the dwelling unit is $295501 -in.representative_income 295508 Representative total house income in the dwelling unit is $295508 -in.representative_income 295511 Representative total house income in the dwelling unit is $295511 -in.representative_income 295521 Representative total house income in the dwelling unit is $295521 -in.representative_income 295568 Representative total house income in the dwelling unit is $295568 -in.representative_income 295575 Representative total house income in the dwelling unit is $295575 -in.representative_income 295627 Representative total house income in the dwelling unit is $295627 -in.representative_income 295711 Representative total house income in the dwelling unit is $295711 -in.representative_income 295735 Representative total house income in the dwelling unit is $295735 -in.representative_income 295743 Representative total house income in the dwelling unit is $295743 -in.representative_income 295775 Representative total house income in the dwelling unit is $295775 -in.representative_income 295779 Representative total house income in the dwelling unit is $295779 -in.representative_income 295820 Representative total house income in the dwelling unit is $295820 -in.representative_income 295832 Representative total house income in the dwelling unit is $295832 -in.representative_income 295843 Representative total house income in the dwelling unit is $295843 -in.representative_income 295871 Representative total house income in the dwelling unit is $295871 -in.representative_income 295922 Representative total house income in the dwelling unit is $295922 -in.representative_income 295924 Representative total house income in the dwelling unit is $295924 -in.representative_income 295973 Representative total house income in the dwelling unit is $295973 -in.representative_income 295979 Representative total house income in the dwelling unit is $295979 -in.representative_income 296023 Representative total house income in the dwelling unit is $296023 -in.representative_income 296027 Representative total house income in the dwelling unit is $296027 -in.representative_income 296028 Representative total house income in the dwelling unit is $296028 -in.representative_income 296049 Representative total house income in the dwelling unit is $296049 -in.representative_income 296074 Representative total house income in the dwelling unit is $296074 -in.representative_income 296130 Representative total house income in the dwelling unit is $296130 -in.representative_income 296151 Representative total house income in the dwelling unit is $296151 -in.representative_income 296175 Representative total house income in the dwelling unit is $296175 -in.representative_income 296233 Representative total house income in the dwelling unit is $296233 -in.representative_income 296239 Representative total house income in the dwelling unit is $296239 -in.representative_income 296265 Representative total house income in the dwelling unit is $296265 -in.representative_income 296272 Representative total house income in the dwelling unit is $296272 -in.representative_income 296315 Representative total house income in the dwelling unit is $296315 -in.representative_income 296344 Representative total house income in the dwelling unit is $296344 -in.representative_income 296379 Representative total house income in the dwelling unit is $296379 -in.representative_income 296449 Representative total house income in the dwelling unit is $296449 -in.representative_income 296491 Representative total house income in the dwelling unit is $296491 -in.representative_income 296543 Representative total house income in the dwelling unit is $296543 -in.representative_income 296573 Representative total house income in the dwelling unit is $296573 -in.representative_income 296579 Representative total house income in the dwelling unit is $296579 -in.representative_income 296589 Representative total house income in the dwelling unit is $296589 -in.representative_income 296594 Representative total house income in the dwelling unit is $296594 -in.representative_income 296599 Representative total house income in the dwelling unit is $296599 -in.representative_income 296608 Representative total house income in the dwelling unit is $296608 -in.representative_income 296615 Representative total house income in the dwelling unit is $296615 -in.representative_income 296629 Representative total house income in the dwelling unit is $296629 -in.representative_income 296680 Representative total house income in the dwelling unit is $296680 -in.representative_income 296697 Representative total house income in the dwelling unit is $296697 -in.representative_income 296724 Representative total house income in the dwelling unit is $296724 -in.representative_income 296781 Representative total house income in the dwelling unit is $296781 -in.representative_income 296791 Representative total house income in the dwelling unit is $296791 -in.representative_income 296795 Representative total house income in the dwelling unit is $296795 -in.representative_income 296808 Representative total house income in the dwelling unit is $296808 -in.representative_income 296854 Representative total house income in the dwelling unit is $296854 -in.representative_income 296893 Representative total house income in the dwelling unit is $296893 -in.representative_income 296983 Representative total house income in the dwelling unit is $296983 -in.representative_income 297021 Representative total house income in the dwelling unit is $297021 -in.representative_income 297024 Representative total house income in the dwelling unit is $297024 -in.representative_income 297038 Representative total house income in the dwelling unit is $297038 -in.representative_income 297058 Representative total house income in the dwelling unit is $297058 -in.representative_income 297084 Representative total house income in the dwelling unit is $297084 -in.representative_income 297108 Representative total house income in the dwelling unit is $297108 -in.representative_income 297129 Representative total house income in the dwelling unit is $297129 -in.representative_income 297131 Representative total house income in the dwelling unit is $297131 -in.representative_income 297238 Representative total house income in the dwelling unit is $297238 -in.representative_income 297248 Representative total house income in the dwelling unit is $297248 -in.representative_income 297265 Representative total house income in the dwelling unit is $297265 -in.representative_income 297291 Representative total house income in the dwelling unit is $297291 -in.representative_income 297294 Representative total house income in the dwelling unit is $297294 -in.representative_income 297316 Representative total house income in the dwelling unit is $297316 -in.representative_income 297345 Representative total house income in the dwelling unit is $297345 -in.representative_income 297346 Representative total house income in the dwelling unit is $297346 -in.representative_income 297367 Representative total house income in the dwelling unit is $297367 -in.representative_income 297399 Representative total house income in the dwelling unit is $297399 -in.representative_income 297460 Representative total house income in the dwelling unit is $297460 -in.representative_income 297488 Representative total house income in the dwelling unit is $297488 -in.representative_income 297560 Representative total house income in the dwelling unit is $297560 -in.representative_income 297574 Representative total house income in the dwelling unit is $297574 -in.representative_income 297610 Representative total house income in the dwelling unit is $297610 -in.representative_income 297663 Representative total house income in the dwelling unit is $297663 -in.representative_income 297691 Representative total house income in the dwelling unit is $297691 -in.representative_income 297737 Representative total house income in the dwelling unit is $297737 -in.representative_income 297820 Representative total house income in the dwelling unit is $297820 -in.representative_income 297883 Representative total house income in the dwelling unit is $297883 -in.representative_income 297892 Representative total house income in the dwelling unit is $297892 -in.representative_income 297976 Representative total house income in the dwelling unit is $297976 -in.representative_income 297986 Representative total house income in the dwelling unit is $297986 -in.representative_income 297989 Representative total house income in the dwelling unit is $297989 -in.representative_income 297993 Representative total house income in the dwelling unit is $297993 -in.representative_income 298090 Representative total house income in the dwelling unit is $298090 -in.representative_income 298094 Representative total house income in the dwelling unit is $298094 -in.representative_income 298101 Representative total house income in the dwelling unit is $298101 -in.representative_income 298172 Representative total house income in the dwelling unit is $298172 -in.representative_income 298195 Representative total house income in the dwelling unit is $298195 -in.representative_income 298204 Representative total house income in the dwelling unit is $298204 -in.representative_income 298209 Representative total house income in the dwelling unit is $298209 -in.representative_income 298296 Representative total house income in the dwelling unit is $298296 -in.representative_income 298318 Representative total house income in the dwelling unit is $298318 -in.representative_income 298346 Representative total house income in the dwelling unit is $298346 -in.representative_income 298348 Representative total house income in the dwelling unit is $298348 -in.representative_income 298400 Representative total house income in the dwelling unit is $298400 -in.representative_income 298418 Representative total house income in the dwelling unit is $298418 -in.representative_income 298453 Representative total house income in the dwelling unit is $298453 -in.representative_income 298599 Representative total house income in the dwelling unit is $298599 -in.representative_income 298605 Representative total house income in the dwelling unit is $298605 -in.representative_income 298634 Representative total house income in the dwelling unit is $298634 -in.representative_income 298642 Representative total house income in the dwelling unit is $298642 -in.representative_income 298665 Representative total house income in the dwelling unit is $298665 -in.representative_income 298700 Representative total house income in the dwelling unit is $298700 -in.representative_income 298741 Representative total house income in the dwelling unit is $298741 -in.representative_income 298750 Representative total house income in the dwelling unit is $298750 -in.representative_income 298761 Representative total house income in the dwelling unit is $298761 -in.representative_income 298812 Representative total house income in the dwelling unit is $298812 -in.representative_income 298849 Representative total house income in the dwelling unit is $298849 -in.representative_income 298875 Representative total house income in the dwelling unit is $298875 -in.representative_income 298902 Representative total house income in the dwelling unit is $298902 -in.representative_income 298955 Representative total house income in the dwelling unit is $298955 -in.representative_income 298980 Representative total house income in the dwelling unit is $298980 -in.representative_income 299003 Representative total house income in the dwelling unit is $299003 -in.representative_income 299009 Representative total house income in the dwelling unit is $299009 -in.representative_income 299018 Representative total house income in the dwelling unit is $299018 -in.representative_income 299104 Representative total house income in the dwelling unit is $299104 -in.representative_income 299112 Representative total house income in the dwelling unit is $299112 -in.representative_income 299121 Representative total house income in the dwelling unit is $299121 -in.representative_income 299135 Representative total house income in the dwelling unit is $299135 -in.representative_income 299139 Representative total house income in the dwelling unit is $299139 -in.representative_income 299182 Representative total house income in the dwelling unit is $299182 -in.representative_income 299183 Representative total house income in the dwelling unit is $299183 -in.representative_income 299224 Representative total house income in the dwelling unit is $299224 -in.representative_income 299278 Representative total house income in the dwelling unit is $299278 -in.representative_income 299290 Representative total house income in the dwelling unit is $299290 -in.representative_income 299314 Representative total house income in the dwelling unit is $299314 -in.representative_income 299328 Representative total house income in the dwelling unit is $299328 -in.representative_income 299385 Representative total house income in the dwelling unit is $299385 -in.representative_income 299387 Representative total house income in the dwelling unit is $299387 -in.representative_income 299431 Representative total house income in the dwelling unit is $299431 -in.representative_income 299492 Representative total house income in the dwelling unit is $299492 -in.representative_income 299506 Representative total house income in the dwelling unit is $299506 -in.representative_income 299508 Representative total house income in the dwelling unit is $299508 -in.representative_income 299533 Representative total house income in the dwelling unit is $299533 -in.representative_income 299603 Representative total house income in the dwelling unit is $299603 -in.representative_income 299609 Representative total house income in the dwelling unit is $299609 -in.representative_income 299707 Representative total house income in the dwelling unit is $299707 -in.representative_income 299718 Representative total house income in the dwelling unit is $299718 -in.representative_income 299740 Representative total house income in the dwelling unit is $299740 -in.representative_income 299831 Representative total house income in the dwelling unit is $299831 -in.representative_income 299846 Representative total house income in the dwelling unit is $299846 -in.representative_income 299896 Representative total house income in the dwelling unit is $299896 -in.representative_income 299947 Representative total house income in the dwelling unit is $299947 -in.representative_income 300013 Representative total house income in the dwelling unit is $300013 -in.representative_income 300029 Representative total house income in the dwelling unit is $300029 -in.representative_income 300035 Representative total house income in the dwelling unit is $300035 -in.representative_income 300064 Representative total house income in the dwelling unit is $300064 -in.representative_income 300114 Representative total house income in the dwelling unit is $300114 -in.representative_income 300136 Representative total house income in the dwelling unit is $300136 -in.representative_income 300152 Representative total house income in the dwelling unit is $300152 -in.representative_income 300155 Representative total house income in the dwelling unit is $300155 -in.representative_income 300215 Representative total house income in the dwelling unit is $300215 -in.representative_income 300244 Representative total house income in the dwelling unit is $300244 -in.representative_income 300262 Representative total house income in the dwelling unit is $300262 -in.representative_income 300316 Representative total house income in the dwelling unit is $300316 -in.representative_income 300351 Representative total house income in the dwelling unit is $300351 -in.representative_income 300359 Representative total house income in the dwelling unit is $300359 -in.representative_income 300370 Representative total house income in the dwelling unit is $300370 -in.representative_income 300417 Representative total house income in the dwelling unit is $300417 -in.representative_income 300458 Representative total house income in the dwelling unit is $300458 -in.representative_income 300459 Representative total house income in the dwelling unit is $300459 -in.representative_income 300478 Representative total house income in the dwelling unit is $300478 -in.representative_income 300498 Representative total house income in the dwelling unit is $300498 -in.representative_income 300518 Representative total house income in the dwelling unit is $300518 -in.representative_income 300563 Representative total house income in the dwelling unit is $300563 -in.representative_income 300566 Representative total house income in the dwelling unit is $300566 -in.representative_income 300598 Representative total house income in the dwelling unit is $300598 -in.representative_income 300609 Representative total house income in the dwelling unit is $300609 -in.representative_income 300615 Representative total house income in the dwelling unit is $300615 -in.representative_income 300619 Representative total house income in the dwelling unit is $300619 -in.representative_income 300620 Representative total house income in the dwelling unit is $300620 -in.representative_income 300668 Representative total house income in the dwelling unit is $300668 -in.representative_income 300720 Representative total house income in the dwelling unit is $300720 -in.representative_income 300721 Representative total house income in the dwelling unit is $300721 -in.representative_income 300727 Representative total house income in the dwelling unit is $300727 -in.representative_income 300773 Representative total house income in the dwelling unit is $300773 -in.representative_income 300780 Representative total house income in the dwelling unit is $300780 -in.representative_income 300821 Representative total house income in the dwelling unit is $300821 -in.representative_income 300875 Representative total house income in the dwelling unit is $300875 -in.representative_income 300911 Representative total house income in the dwelling unit is $300911 -in.representative_income 300978 Representative total house income in the dwelling unit is $300978 -in.representative_income 300984 Representative total house income in the dwelling unit is $300984 -in.representative_income 301019 Representative total house income in the dwelling unit is $301019 -in.representative_income 301023 Representative total house income in the dwelling unit is $301023 -in.representative_income 301073 Representative total house income in the dwelling unit is $301073 -in.representative_income 301127 Representative total house income in the dwelling unit is $301127 -in.representative_income 301184 Representative total house income in the dwelling unit is $301184 -in.representative_income 301185 Representative total house income in the dwelling unit is $301185 -in.representative_income 301196 Representative total house income in the dwelling unit is $301196 -in.representative_income 301287 Representative total house income in the dwelling unit is $301287 -in.representative_income 301424 Representative total house income in the dwelling unit is $301424 -in.representative_income 301442 Representative total house income in the dwelling unit is $301442 -in.representative_income 301452 Representative total house income in the dwelling unit is $301452 -in.representative_income 301528 Representative total house income in the dwelling unit is $301528 -in.representative_income 301559 Representative total house income in the dwelling unit is $301559 -in.representative_income 301597 Representative total house income in the dwelling unit is $301597 -in.representative_income 301613 Representative total house income in the dwelling unit is $301613 -in.representative_income 301617 Representative total house income in the dwelling unit is $301617 -in.representative_income 301629 Representative total house income in the dwelling unit is $301629 -in.representative_income 301640 Representative total house income in the dwelling unit is $301640 -in.representative_income 301667 Representative total house income in the dwelling unit is $301667 -in.representative_income 301699 Representative total house income in the dwelling unit is $301699 -in.representative_income 301723 Representative total house income in the dwelling unit is $301723 -in.representative_income 301730 Representative total house income in the dwelling unit is $301730 -in.representative_income 301775 Representative total house income in the dwelling unit is $301775 -in.representative_income 301828 Representative total house income in the dwelling unit is $301828 -in.representative_income 301831 Representative total house income in the dwelling unit is $301831 -in.representative_income 301854 Representative total house income in the dwelling unit is $301854 -in.representative_income 301883 Representative total house income in the dwelling unit is $301883 -in.representative_income 301892 Representative total house income in the dwelling unit is $301892 -in.representative_income 301926 Representative total house income in the dwelling unit is $301926 -in.representative_income 301961 Representative total house income in the dwelling unit is $301961 -in.representative_income 302009 Representative total house income in the dwelling unit is $302009 -in.representative_income 302030 Representative total house income in the dwelling unit is $302030 -in.representative_income 302033 Representative total house income in the dwelling unit is $302033 -in.representative_income 302047 Representative total house income in the dwelling unit is $302047 -in.representative_income 302074 Representative total house income in the dwelling unit is $302074 -in.representative_income 302099 Representative total house income in the dwelling unit is $302099 -in.representative_income 302113 Representative total house income in the dwelling unit is $302113 -in.representative_income 302134 Representative total house income in the dwelling unit is $302134 -in.representative_income 302176 Representative total house income in the dwelling unit is $302176 -in.representative_income 302208 Representative total house income in the dwelling unit is $302208 -in.representative_income 302216 Representative total house income in the dwelling unit is $302216 -in.representative_income 302235 Representative total house income in the dwelling unit is $302235 -in.representative_income 302250 Representative total house income in the dwelling unit is $302250 -in.representative_income 302283 Representative total house income in the dwelling unit is $302283 -in.representative_income 302395 Representative total house income in the dwelling unit is $302395 -in.representative_income 302482 Representative total house income in the dwelling unit is $302482 -in.representative_income 302498 Representative total house income in the dwelling unit is $302498 -in.representative_income 302532 Representative total house income in the dwelling unit is $302532 -in.representative_income 302596 Representative total house income in the dwelling unit is $302596 -in.representative_income 302639 Representative total house income in the dwelling unit is $302639 -in.representative_income 302640 Representative total house income in the dwelling unit is $302640 -in.representative_income 302672 Representative total house income in the dwelling unit is $302672 -in.representative_income 302713 Representative total house income in the dwelling unit is $302713 -in.representative_income 302820 Representative total house income in the dwelling unit is $302820 -in.representative_income 302830 Representative total house income in the dwelling unit is $302830 -in.representative_income 302834 Representative total house income in the dwelling unit is $302834 -in.representative_income 302841 Representative total house income in the dwelling unit is $302841 -in.representative_income 302855 Representative total house income in the dwelling unit is $302855 -in.representative_income 302943 Representative total house income in the dwelling unit is $302943 -in.representative_income 302989 Representative total house income in the dwelling unit is $302989 -in.representative_income 303041 Representative total house income in the dwelling unit is $303041 -in.representative_income 303044 Representative total house income in the dwelling unit is $303044 -in.representative_income 303144 Representative total house income in the dwelling unit is $303144 -in.representative_income 303145 Representative total house income in the dwelling unit is $303145 -in.representative_income 303246 Representative total house income in the dwelling unit is $303246 -in.representative_income 303247 Representative total house income in the dwelling unit is $303247 -in.representative_income 303350 Representative total house income in the dwelling unit is $303350 -in.representative_income 303410 Representative total house income in the dwelling unit is $303410 -in.representative_income 303433 Representative total house income in the dwelling unit is $303433 -in.representative_income 303448 Representative total house income in the dwelling unit is $303448 -in.representative_income 303515 Representative total house income in the dwelling unit is $303515 -in.representative_income 303549 Representative total house income in the dwelling unit is $303549 -in.representative_income 303571 Representative total house income in the dwelling unit is $303571 -in.representative_income 303609 Representative total house income in the dwelling unit is $303609 -in.representative_income 303612 Representative total house income in the dwelling unit is $303612 -in.representative_income 303633 Representative total house income in the dwelling unit is $303633 -in.representative_income 303710 Representative total house income in the dwelling unit is $303710 -in.representative_income 303720 Representative total house income in the dwelling unit is $303720 -in.representative_income 303727 Representative total house income in the dwelling unit is $303727 -in.representative_income 303751 Representative total house income in the dwelling unit is $303751 -in.representative_income 303786 Representative total house income in the dwelling unit is $303786 -in.representative_income 303822 Representative total house income in the dwelling unit is $303822 -in.representative_income 303829 Representative total house income in the dwelling unit is $303829 -in.representative_income 303866 Representative total house income in the dwelling unit is $303866 -in.representative_income 303894 Representative total house income in the dwelling unit is $303894 -in.representative_income 303953 Representative total house income in the dwelling unit is $303953 -in.representative_income 303969 Representative total house income in the dwelling unit is $303969 -in.representative_income 304043 Representative total house income in the dwelling unit is $304043 -in.representative_income 304044 Representative total house income in the dwelling unit is $304044 -in.representative_income 304054 Representative total house income in the dwelling unit is $304054 -in.representative_income 304074 Representative total house income in the dwelling unit is $304074 -in.representative_income 304108 Representative total house income in the dwelling unit is $304108 -in.representative_income 304152 Representative total house income in the dwelling unit is $304152 -in.representative_income 304155 Representative total house income in the dwelling unit is $304155 -in.representative_income 304254 Representative total house income in the dwelling unit is $304254 -in.representative_income 304256 Representative total house income in the dwelling unit is $304256 -in.representative_income 304260 Representative total house income in the dwelling unit is $304260 -in.representative_income 304279 Representative total house income in the dwelling unit is $304279 -in.representative_income 304323 Representative total house income in the dwelling unit is $304323 -in.representative_income 304357 Representative total house income in the dwelling unit is $304357 -in.representative_income 304359 Representative total house income in the dwelling unit is $304359 -in.representative_income 304465 Representative total house income in the dwelling unit is $304465 -in.representative_income 304476 Representative total house income in the dwelling unit is $304476 -in.representative_income 304559 Representative total house income in the dwelling unit is $304559 -in.representative_income 304645 Representative total house income in the dwelling unit is $304645 -in.representative_income 304691 Representative total house income in the dwelling unit is $304691 -in.representative_income 304693 Representative total house income in the dwelling unit is $304693 -in.representative_income 304781 Representative total house income in the dwelling unit is $304781 -in.representative_income 304794 Representative total house income in the dwelling unit is $304794 -in.representative_income 304801 Representative total house income in the dwelling unit is $304801 -in.representative_income 304860 Representative total house income in the dwelling unit is $304860 -in.representative_income 304862 Representative total house income in the dwelling unit is $304862 -in.representative_income 304909 Representative total house income in the dwelling unit is $304909 -in.representative_income 304992 Representative total house income in the dwelling unit is $304992 -in.representative_income 305064 Representative total house income in the dwelling unit is $305064 -in.representative_income 305074 Representative total house income in the dwelling unit is $305074 -in.representative_income 305103 Representative total house income in the dwelling unit is $305103 -in.representative_income 305124 Representative total house income in the dwelling unit is $305124 -in.representative_income 305165 Representative total house income in the dwelling unit is $305165 -in.representative_income 305289 Representative total house income in the dwelling unit is $305289 -in.representative_income 305310 Representative total house income in the dwelling unit is $305310 -in.representative_income 305340 Representative total house income in the dwelling unit is $305340 -in.representative_income 305413 Representative total house income in the dwelling unit is $305413 -in.representative_income 305468 Representative total house income in the dwelling unit is $305468 -in.representative_income 305504 Representative total house income in the dwelling unit is $305504 -in.representative_income 305546 Representative total house income in the dwelling unit is $305546 -in.representative_income 305557 Representative total house income in the dwelling unit is $305557 -in.representative_income 305569 Representative total house income in the dwelling unit is $305569 -in.representative_income 305611 Representative total house income in the dwelling unit is $305611 -in.representative_income 305625 Representative total house income in the dwelling unit is $305625 -in.representative_income 305631 Representative total house income in the dwelling unit is $305631 -in.representative_income 305665 Representative total house income in the dwelling unit is $305665 -in.representative_income 305722 Representative total house income in the dwelling unit is $305722 -in.representative_income 305771 Representative total house income in the dwelling unit is $305771 -in.representative_income 305773 Representative total house income in the dwelling unit is $305773 -in.representative_income 305836 Representative total house income in the dwelling unit is $305836 -in.representative_income 305865 Representative total house income in the dwelling unit is $305865 -in.representative_income 305913 Representative total house income in the dwelling unit is $305913 -in.representative_income 305933 Representative total house income in the dwelling unit is $305933 -in.representative_income 305941 Representative total house income in the dwelling unit is $305941 -in.representative_income 305973 Representative total house income in the dwelling unit is $305973 -in.representative_income 305978 Representative total house income in the dwelling unit is $305978 -in.representative_income 306043 Representative total house income in the dwelling unit is $306043 -in.representative_income 306046 Representative total house income in the dwelling unit is $306046 -in.representative_income 306074 Representative total house income in the dwelling unit is $306074 -in.representative_income 306135 Representative total house income in the dwelling unit is $306135 -in.representative_income 306152 Representative total house income in the dwelling unit is $306152 -in.representative_income 306238 Representative total house income in the dwelling unit is $306238 -in.representative_income 306258 Representative total house income in the dwelling unit is $306258 -in.representative_income 306276 Representative total house income in the dwelling unit is $306276 -in.representative_income 306341 Representative total house income in the dwelling unit is $306341 -in.representative_income 306362 Representative total house income in the dwelling unit is $306362 -in.representative_income 306363 Representative total house income in the dwelling unit is $306363 -in.representative_income 306377 Representative total house income in the dwelling unit is $306377 -in.representative_income 306421 Representative total house income in the dwelling unit is $306421 -in.representative_income 306445 Representative total house income in the dwelling unit is $306445 -in.representative_income 306468 Representative total house income in the dwelling unit is $306468 -in.representative_income 306489 Representative total house income in the dwelling unit is $306489 -in.representative_income 306548 Representative total house income in the dwelling unit is $306548 -in.representative_income 306574 Representative total house income in the dwelling unit is $306574 -in.representative_income 306579 Representative total house income in the dwelling unit is $306579 -in.representative_income 306637 Representative total house income in the dwelling unit is $306637 -in.representative_income 306680 Representative total house income in the dwelling unit is $306680 -in.representative_income 306685 Representative total house income in the dwelling unit is $306685 -in.representative_income 306720 Representative total house income in the dwelling unit is $306720 -in.representative_income 306788 Representative total house income in the dwelling unit is $306788 -in.representative_income 306791 Representative total house income in the dwelling unit is $306791 -in.representative_income 306853 Representative total house income in the dwelling unit is $306853 -in.representative_income 306857 Representative total house income in the dwelling unit is $306857 -in.representative_income 306864 Representative total house income in the dwelling unit is $306864 -in.representative_income 306868 Representative total house income in the dwelling unit is $306868 -in.representative_income 306890 Representative total house income in the dwelling unit is $306890 -in.representative_income 306960 Representative total house income in the dwelling unit is $306960 -in.representative_income 306983 Representative total house income in the dwelling unit is $306983 -in.representative_income 306996 Representative total house income in the dwelling unit is $306996 -in.representative_income 307006 Representative total house income in the dwelling unit is $307006 -in.representative_income 307042 Representative total house income in the dwelling unit is $307042 -in.representative_income 307070 Representative total house income in the dwelling unit is $307070 -in.representative_income 307084 Representative total house income in the dwelling unit is $307084 -in.representative_income 307167 Representative total house income in the dwelling unit is $307167 -in.representative_income 307195 Representative total house income in the dwelling unit is $307195 -in.representative_income 307199 Representative total house income in the dwelling unit is $307199 -in.representative_income 307206 Representative total house income in the dwelling unit is $307206 -in.representative_income 307275 Representative total house income in the dwelling unit is $307275 -in.representative_income 307286 Representative total house income in the dwelling unit is $307286 -in.representative_income 307312 Representative total house income in the dwelling unit is $307312 -in.representative_income 307373 Representative total house income in the dwelling unit is $307373 -in.representative_income 307476 Representative total house income in the dwelling unit is $307476 -in.representative_income 307488 Representative total house income in the dwelling unit is $307488 -in.representative_income 307490 Representative total house income in the dwelling unit is $307490 -in.representative_income 307501 Representative total house income in the dwelling unit is $307501 -in.representative_income 307579 Representative total house income in the dwelling unit is $307579 -in.representative_income 307589 Representative total house income in the dwelling unit is $307589 -in.representative_income 307609 Representative total house income in the dwelling unit is $307609 -in.representative_income 307682 Representative total house income in the dwelling unit is $307682 -in.representative_income 307690 Representative total house income in the dwelling unit is $307690 -in.representative_income 307717 Representative total house income in the dwelling unit is $307717 -in.representative_income 307734 Representative total house income in the dwelling unit is $307734 -in.representative_income 307758 Representative total house income in the dwelling unit is $307758 -in.representative_income 307791 Representative total house income in the dwelling unit is $307791 -in.representative_income 307826 Representative total house income in the dwelling unit is $307826 -in.representative_income 307839 Representative total house income in the dwelling unit is $307839 -in.representative_income 307892 Representative total house income in the dwelling unit is $307892 -in.representative_income 307934 Representative total house income in the dwelling unit is $307934 -in.representative_income 307935 Representative total house income in the dwelling unit is $307935 -in.representative_income 307944 Representative total house income in the dwelling unit is $307944 -in.representative_income 307993 Representative total house income in the dwelling unit is $307993 -in.representative_income 308080 Representative total house income in the dwelling unit is $308080 -in.representative_income 308094 Representative total house income in the dwelling unit is $308094 -in.representative_income 308095 Representative total house income in the dwelling unit is $308095 -in.representative_income 308122 Representative total house income in the dwelling unit is $308122 -in.representative_income 308156 Representative total house income in the dwelling unit is $308156 -in.representative_income 308195 Representative total house income in the dwelling unit is $308195 -in.representative_income 308226 Representative total house income in the dwelling unit is $308226 -in.representative_income 308258 Representative total house income in the dwelling unit is $308258 -in.representative_income 308327 Representative total house income in the dwelling unit is $308327 -in.representative_income 308404 Representative total house income in the dwelling unit is $308404 -in.representative_income 308456 Representative total house income in the dwelling unit is $308456 -in.representative_income 308472 Representative total house income in the dwelling unit is $308472 -in.representative_income 308474 Representative total house income in the dwelling unit is $308474 -in.representative_income 308498 Representative total house income in the dwelling unit is $308498 -in.representative_income 308500 Representative total house income in the dwelling unit is $308500 -in.representative_income 308611 Representative total house income in the dwelling unit is $308611 -in.representative_income 308724 Representative total house income in the dwelling unit is $308724 -in.representative_income 308801 Representative total house income in the dwelling unit is $308801 -in.representative_income 308902 Representative total house income in the dwelling unit is $308902 -in.representative_income 308906 Representative total house income in the dwelling unit is $308906 -in.representative_income 308912 Representative total house income in the dwelling unit is $308912 -in.representative_income 308999 Representative total house income in the dwelling unit is $308999 -in.representative_income 309014 Representative total house income in the dwelling unit is $309014 -in.representative_income 309104 Representative total house income in the dwelling unit is $309104 -in.representative_income 309105 Representative total house income in the dwelling unit is $309105 -in.representative_income 309122 Representative total house income in the dwelling unit is $309122 -in.representative_income 309153 Representative total house income in the dwelling unit is $309153 -in.representative_income 309176 Representative total house income in the dwelling unit is $309176 -in.representative_income 309205 Representative total house income in the dwelling unit is $309205 -in.representative_income 309207 Representative total house income in the dwelling unit is $309207 -in.representative_income 309218 Representative total house income in the dwelling unit is $309218 -in.representative_income 309230 Representative total house income in the dwelling unit is $309230 -in.representative_income 309261 Representative total house income in the dwelling unit is $309261 -in.representative_income 309316 Representative total house income in the dwelling unit is $309316 -in.representative_income 309329 Representative total house income in the dwelling unit is $309329 -in.representative_income 309415 Representative total house income in the dwelling unit is $309415 -in.representative_income 309435 Representative total house income in the dwelling unit is $309435 -in.representative_income 309467 Representative total house income in the dwelling unit is $309467 -in.representative_income 309487 Representative total house income in the dwelling unit is $309487 -in.representative_income 309527 Representative total house income in the dwelling unit is $309527 -in.representative_income 309539 Representative total house income in the dwelling unit is $309539 -in.representative_income 309609 Representative total house income in the dwelling unit is $309609 -in.representative_income 309637 Representative total house income in the dwelling unit is $309637 -in.representative_income 309642 Representative total house income in the dwelling unit is $309642 -in.representative_income 309663 Representative total house income in the dwelling unit is $309663 -in.representative_income 309690 Representative total house income in the dwelling unit is $309690 -in.representative_income 309745 Representative total house income in the dwelling unit is $309745 -in.representative_income 309785 Representative total house income in the dwelling unit is $309785 -in.representative_income 309791 Representative total house income in the dwelling unit is $309791 -in.representative_income 309797 Representative total house income in the dwelling unit is $309797 -in.representative_income 309849 Representative total house income in the dwelling unit is $309849 -in.representative_income 309980 Representative total house income in the dwelling unit is $309980 -in.representative_income 310003 Representative total house income in the dwelling unit is $310003 -in.representative_income 310014 Representative total house income in the dwelling unit is $310014 -in.representative_income 310054 Representative total house income in the dwelling unit is $310054 -in.representative_income 310094 Representative total house income in the dwelling unit is $310094 -in.representative_income 310115 Representative total house income in the dwelling unit is $310115 -in.representative_income 310158 Representative total house income in the dwelling unit is $310158 -in.representative_income 310226 Representative total house income in the dwelling unit is $310226 -in.representative_income 310230 Representative total house income in the dwelling unit is $310230 -in.representative_income 310261 Representative total house income in the dwelling unit is $310261 -in.representative_income 310311 Representative total house income in the dwelling unit is $310311 -in.representative_income 310334 Representative total house income in the dwelling unit is $310334 -in.representative_income 310418 Representative total house income in the dwelling unit is $310418 -in.representative_income 310442 Representative total house income in the dwelling unit is $310442 -in.representative_income 310467 Representative total house income in the dwelling unit is $310467 -in.representative_income 310519 Representative total house income in the dwelling unit is $310519 -in.representative_income 310527 Representative total house income in the dwelling unit is $310527 -in.representative_income 310582 Representative total house income in the dwelling unit is $310582 -in.representative_income 310721 Representative total house income in the dwelling unit is $310721 -in.representative_income 310777 Representative total house income in the dwelling unit is $310777 -in.representative_income 310851 Representative total house income in the dwelling unit is $310851 -in.representative_income 310871 Representative total house income in the dwelling unit is $310871 -in.representative_income 310898 Representative total house income in the dwelling unit is $310898 -in.representative_income 310923 Representative total house income in the dwelling unit is $310923 -in.representative_income 310978 Representative total house income in the dwelling unit is $310978 -in.representative_income 310983 Representative total house income in the dwelling unit is $310983 -in.representative_income 310990 Representative total house income in the dwelling unit is $310990 -in.representative_income 311034 Representative total house income in the dwelling unit is $311034 -in.representative_income 311086 Representative total house income in the dwelling unit is $311086 -in.representative_income 311108 Representative total house income in the dwelling unit is $311108 -in.representative_income 311125 Representative total house income in the dwelling unit is $311125 -in.representative_income 311175 Representative total house income in the dwelling unit is $311175 -in.representative_income 311189 Representative total house income in the dwelling unit is $311189 -in.representative_income 311247 Representative total house income in the dwelling unit is $311247 -in.representative_income 311300 Representative total house income in the dwelling unit is $311300 -in.representative_income 311320 Representative total house income in the dwelling unit is $311320 -in.representative_income 311372 Representative total house income in the dwelling unit is $311372 -in.representative_income 311407 Representative total house income in the dwelling unit is $311407 -in.representative_income 311425 Representative total house income in the dwelling unit is $311425 -in.representative_income 311451 Representative total house income in the dwelling unit is $311451 -in.representative_income 311499 Representative total house income in the dwelling unit is $311499 -in.representative_income 311515 Representative total house income in the dwelling unit is $311515 -in.representative_income 311601 Representative total house income in the dwelling unit is $311601 -in.representative_income 311607 Representative total house income in the dwelling unit is $311607 -in.representative_income 311630 Representative total house income in the dwelling unit is $311630 -in.representative_income 311705 Representative total house income in the dwelling unit is $311705 -in.representative_income 311730 Representative total house income in the dwelling unit is $311730 -in.representative_income 311741 Representative total house income in the dwelling unit is $311741 -in.representative_income 311808 Representative total house income in the dwelling unit is $311808 -in.representative_income 311832 Representative total house income in the dwelling unit is $311832 -in.representative_income 311932 Representative total house income in the dwelling unit is $311932 -in.representative_income 311944 Representative total house income in the dwelling unit is $311944 -in.representative_income 311953 Representative total house income in the dwelling unit is $311953 -in.representative_income 312015 Representative total house income in the dwelling unit is $312015 -in.representative_income 312089 Representative total house income in the dwelling unit is $312089 -in.representative_income 312117 Representative total house income in the dwelling unit is $312117 -in.representative_income 312135 Representative total house income in the dwelling unit is $312135 -in.representative_income 312163 Representative total house income in the dwelling unit is $312163 -in.representative_income 312256 Representative total house income in the dwelling unit is $312256 -in.representative_income 312373 Representative total house income in the dwelling unit is $312373 -in.representative_income 312374 Representative total house income in the dwelling unit is $312374 -in.representative_income 312426 Representative total house income in the dwelling unit is $312426 -in.representative_income 312427 Representative total house income in the dwelling unit is $312427 -in.representative_income 312481 Representative total house income in the dwelling unit is $312481 -in.representative_income 312530 Representative total house income in the dwelling unit is $312530 -in.representative_income 312588 Representative total house income in the dwelling unit is $312588 -in.representative_income 312640 Representative total house income in the dwelling unit is $312640 -in.representative_income 312688 Representative total house income in the dwelling unit is $312688 -in.representative_income 312691 Representative total house income in the dwelling unit is $312691 -in.representative_income 312741 Representative total house income in the dwelling unit is $312741 -in.representative_income 312796 Representative total house income in the dwelling unit is $312796 -in.representative_income 312849 Representative total house income in the dwelling unit is $312849 -in.representative_income 312857 Representative total house income in the dwelling unit is $312857 -in.representative_income 312910 Representative total house income in the dwelling unit is $312910 -in.representative_income 312943 Representative total house income in the dwelling unit is $312943 -in.representative_income 313006 Representative total house income in the dwelling unit is $313006 -in.representative_income 313017 Representative total house income in the dwelling unit is $313017 -in.representative_income 313113 Representative total house income in the dwelling unit is $313113 -in.representative_income 313145 Representative total house income in the dwelling unit is $313145 -in.representative_income 313218 Representative total house income in the dwelling unit is $313218 -in.representative_income 313233 Representative total house income in the dwelling unit is $313233 -in.representative_income 313246 Representative total house income in the dwelling unit is $313246 -in.representative_income 313313 Representative total house income in the dwelling unit is $313313 -in.representative_income 313337 Representative total house income in the dwelling unit is $313337 -in.representative_income 313429 Representative total house income in the dwelling unit is $313429 -in.representative_income 313534 Representative total house income in the dwelling unit is $313534 -in.representative_income 313549 Representative total house income in the dwelling unit is $313549 -in.representative_income 313562 Representative total house income in the dwelling unit is $313562 -in.representative_income 313639 Representative total house income in the dwelling unit is $313639 -in.representative_income 313650 Representative total house income in the dwelling unit is $313650 -in.representative_income 313662 Representative total house income in the dwelling unit is $313662 -in.representative_income 313746 Representative total house income in the dwelling unit is $313746 -in.representative_income 313768 Representative total house income in the dwelling unit is $313768 -in.representative_income 313805 Representative total house income in the dwelling unit is $313805 -in.representative_income 313953 Representative total house income in the dwelling unit is $313953 -in.representative_income 314077 Representative total house income in the dwelling unit is $314077 -in.representative_income 314155 Representative total house income in the dwelling unit is $314155 -in.representative_income 314233 Representative total house income in the dwelling unit is $314233 -in.representative_income 314273 Representative total house income in the dwelling unit is $314273 -in.representative_income 314309 Representative total house income in the dwelling unit is $314309 -in.representative_income 314315 Representative total house income in the dwelling unit is $314315 -in.representative_income 314357 Representative total house income in the dwelling unit is $314357 -in.representative_income 314368 Representative total house income in the dwelling unit is $314368 -in.representative_income 314417 Representative total house income in the dwelling unit is $314417 -in.representative_income 314458 Representative total house income in the dwelling unit is $314458 -in.representative_income 314521 Representative total house income in the dwelling unit is $314521 -in.representative_income 314525 Representative total house income in the dwelling unit is $314525 -in.representative_income 314559 Representative total house income in the dwelling unit is $314559 -in.representative_income 314593 Representative total house income in the dwelling unit is $314593 -in.representative_income 314627 Representative total house income in the dwelling unit is $314627 -in.representative_income 314633 Representative total house income in the dwelling unit is $314633 -in.representative_income 314660 Representative total house income in the dwelling unit is $314660 -in.representative_income 314694 Representative total house income in the dwelling unit is $314694 -in.representative_income 314705 Representative total house income in the dwelling unit is $314705 -in.representative_income 314735 Representative total house income in the dwelling unit is $314735 -in.representative_income 314761 Representative total house income in the dwelling unit is $314761 -in.representative_income 314800 Representative total house income in the dwelling unit is $314800 -in.representative_income 314848 Representative total house income in the dwelling unit is $314848 -in.representative_income 314950 Representative total house income in the dwelling unit is $314950 -in.representative_income 314963 Representative total house income in the dwelling unit is $314963 -in.representative_income 315005 Representative total house income in the dwelling unit is $315005 -in.representative_income 315011 Representative total house income in the dwelling unit is $315011 -in.representative_income 315065 Representative total house income in the dwelling unit is $315065 -in.representative_income 315109 Representative total house income in the dwelling unit is $315109 -in.representative_income 315165 Representative total house income in the dwelling unit is $315165 -in.representative_income 315173 Representative total house income in the dwelling unit is $315173 -in.representative_income 315216 Representative total house income in the dwelling unit is $315216 -in.representative_income 315327 Representative total house income in the dwelling unit is $315327 -in.representative_income 315367 Representative total house income in the dwelling unit is $315367 -in.representative_income 315368 Representative total house income in the dwelling unit is $315368 -in.representative_income 315389 Representative total house income in the dwelling unit is $315389 -in.representative_income 315468 Representative total house income in the dwelling unit is $315468 -in.representative_income 315485 Representative total house income in the dwelling unit is $315485 -in.representative_income 315497 Representative total house income in the dwelling unit is $315497 -in.representative_income 315569 Representative total house income in the dwelling unit is $315569 -in.representative_income 315594 Representative total house income in the dwelling unit is $315594 -in.representative_income 315624 Representative total house income in the dwelling unit is $315624 -in.representative_income 315644 Representative total house income in the dwelling unit is $315644 -in.representative_income 315670 Representative total house income in the dwelling unit is $315670 -in.representative_income 315702 Representative total house income in the dwelling unit is $315702 -in.representative_income 315787 Representative total house income in the dwelling unit is $315787 -in.representative_income 315912 Representative total house income in the dwelling unit is $315912 -in.representative_income 315930 Representative total house income in the dwelling unit is $315930 -in.representative_income 315934 Representative total house income in the dwelling unit is $315934 -in.representative_income 316023 Representative total house income in the dwelling unit is $316023 -in.representative_income 316024 Representative total house income in the dwelling unit is $316024 -in.representative_income 316037 Representative total house income in the dwelling unit is $316037 -in.representative_income 316065 Representative total house income in the dwelling unit is $316065 -in.representative_income 316140 Representative total house income in the dwelling unit is $316140 -in.representative_income 316145 Representative total house income in the dwelling unit is $316145 -in.representative_income 316175 Representative total house income in the dwelling unit is $316175 -in.representative_income 316276 Representative total house income in the dwelling unit is $316276 -in.representative_income 316382 Representative total house income in the dwelling unit is $316382 -in.representative_income 316478 Representative total house income in the dwelling unit is $316478 -in.representative_income 316482 Representative total house income in the dwelling unit is $316482 -in.representative_income 316567 Representative total house income in the dwelling unit is $316567 -in.representative_income 316578 Representative total house income in the dwelling unit is $316578 -in.representative_income 316592 Representative total house income in the dwelling unit is $316592 -in.representative_income 316656 Representative total house income in the dwelling unit is $316656 -in.representative_income 316668 Representative total house income in the dwelling unit is $316668 -in.representative_income 316680 Representative total house income in the dwelling unit is $316680 -in.representative_income 316698 Representative total house income in the dwelling unit is $316698 -in.representative_income 316862 Representative total house income in the dwelling unit is $316862 -in.representative_income 316883 Representative total house income in the dwelling unit is $316883 -in.representative_income 316902 Representative total house income in the dwelling unit is $316902 -in.representative_income 316989 Representative total house income in the dwelling unit is $316989 -in.representative_income 317015 Representative total house income in the dwelling unit is $317015 -in.representative_income 317118 Representative total house income in the dwelling unit is $317118 -in.representative_income 317186 Representative total house income in the dwelling unit is $317186 -in.representative_income 317225 Representative total house income in the dwelling unit is $317225 -in.representative_income 317275 Representative total house income in the dwelling unit is $317275 -in.representative_income 317287 Representative total house income in the dwelling unit is $317287 -in.representative_income 317331 Representative total house income in the dwelling unit is $317331 -in.representative_income 317367 Representative total house income in the dwelling unit is $317367 -in.representative_income 317418 Representative total house income in the dwelling unit is $317418 -in.representative_income 317437 Representative total house income in the dwelling unit is $317437 -in.representative_income 317438 Representative total house income in the dwelling unit is $317438 -in.representative_income 317442 Representative total house income in the dwelling unit is $317442 -in.representative_income 317526 Representative total house income in the dwelling unit is $317526 -in.representative_income 317658 Representative total house income in the dwelling unit is $317658 -in.representative_income 317687 Representative total house income in the dwelling unit is $317687 -in.representative_income 317691 Representative total house income in the dwelling unit is $317691 -in.representative_income 317741 Representative total house income in the dwelling unit is $317741 -in.representative_income 317753 Representative total house income in the dwelling unit is $317753 -in.representative_income 317766 Representative total house income in the dwelling unit is $317766 -in.representative_income 317874 Representative total house income in the dwelling unit is $317874 -in.representative_income 317955 Representative total house income in the dwelling unit is $317955 -in.representative_income 318063 Representative total house income in the dwelling unit is $318063 -in.representative_income 318070 Representative total house income in the dwelling unit is $318070 -in.representative_income 318095 Representative total house income in the dwelling unit is $318095 -in.representative_income 318112 Representative total house income in the dwelling unit is $318112 -in.representative_income 318196 Representative total house income in the dwelling unit is $318196 -in.representative_income 318199 Representative total house income in the dwelling unit is $318199 -in.representative_income 318203 Representative total house income in the dwelling unit is $318203 -in.representative_income 318278 Representative total house income in the dwelling unit is $318278 -in.representative_income 318385 Representative total house income in the dwelling unit is $318385 -in.representative_income 318491 Representative total house income in the dwelling unit is $318491 -in.representative_income 318513 Representative total house income in the dwelling unit is $318513 -in.representative_income 318630 Representative total house income in the dwelling unit is $318630 -in.representative_income 318702 Representative total house income in the dwelling unit is $318702 -in.representative_income 318718 Representative total house income in the dwelling unit is $318718 -in.representative_income 318738 Representative total house income in the dwelling unit is $318738 -in.representative_income 318802 Representative total house income in the dwelling unit is $318802 -in.representative_income 318808 Representative total house income in the dwelling unit is $318808 -in.representative_income 318814 Representative total house income in the dwelling unit is $318814 -in.representative_income 318857 Representative total house income in the dwelling unit is $318857 -in.representative_income 318903 Representative total house income in the dwelling unit is $318903 -in.representative_income 318913 Representative total house income in the dwelling unit is $318913 -in.representative_income 319009 Representative total house income in the dwelling unit is $319009 -in.representative_income 319063 Representative total house income in the dwelling unit is $319063 -in.representative_income 319124 Representative total house income in the dwelling unit is $319124 -in.representative_income 319171 Representative total house income in the dwelling unit is $319171 -in.representative_income 319206 Representative total house income in the dwelling unit is $319206 -in.representative_income 319279 Representative total house income in the dwelling unit is $319279 -in.representative_income 319307 Representative total house income in the dwelling unit is $319307 -in.representative_income 319387 Representative total house income in the dwelling unit is $319387 -in.representative_income 319509 Representative total house income in the dwelling unit is $319509 -in.representative_income 319533 Representative total house income in the dwelling unit is $319533 -in.representative_income 319546 Representative total house income in the dwelling unit is $319546 -in.representative_income 319566 Representative total house income in the dwelling unit is $319566 -in.representative_income 319684 Representative total house income in the dwelling unit is $319684 -in.representative_income 319751 Representative total house income in the dwelling unit is $319751 -in.representative_income 319756 Representative total house income in the dwelling unit is $319756 -in.representative_income 319812 Representative total house income in the dwelling unit is $319812 -in.representative_income 319819 Representative total house income in the dwelling unit is $319819 -in.representative_income 319888 Representative total house income in the dwelling unit is $319888 -in.representative_income 319920 Representative total house income in the dwelling unit is $319920 -in.representative_income 319956 Representative total house income in the dwelling unit is $319956 -in.representative_income 319995 Representative total house income in the dwelling unit is $319995 -in.representative_income 320163 Representative total house income in the dwelling unit is $320163 -in.representative_income 320178 Representative total house income in the dwelling unit is $320178 -in.representative_income 320216 Representative total house income in the dwelling unit is $320216 -in.representative_income 320266 Representative total house income in the dwelling unit is $320266 -in.representative_income 320273 Representative total house income in the dwelling unit is $320273 -in.representative_income 320274 Representative total house income in the dwelling unit is $320274 -in.representative_income 320317 Representative total house income in the dwelling unit is $320317 -in.representative_income 320369 Representative total house income in the dwelling unit is $320369 -in.representative_income 320418 Representative total house income in the dwelling unit is $320418 -in.representative_income 320424 Representative total house income in the dwelling unit is $320424 -in.representative_income 320468 Representative total house income in the dwelling unit is $320468 -in.representative_income 320601 Representative total house income in the dwelling unit is $320601 -in.representative_income 320620 Representative total house income in the dwelling unit is $320620 -in.representative_income 320653 Representative total house income in the dwelling unit is $320653 -in.representative_income 320721 Representative total house income in the dwelling unit is $320721 -in.representative_income 320782 Representative total house income in the dwelling unit is $320782 -in.representative_income 320822 Representative total house income in the dwelling unit is $320822 -in.representative_income 320874 Representative total house income in the dwelling unit is $320874 -in.representative_income 320899 Representative total house income in the dwelling unit is $320899 -in.representative_income 320916 Representative total house income in the dwelling unit is $320916 -in.representative_income 320917 Representative total house income in the dwelling unit is $320917 -in.representative_income 320961 Representative total house income in the dwelling unit is $320961 -in.representative_income 320972 Representative total house income in the dwelling unit is $320972 -in.representative_income 321024 Representative total house income in the dwelling unit is $321024 -in.representative_income 321226 Representative total house income in the dwelling unit is $321226 -in.representative_income 321261 Representative total house income in the dwelling unit is $321261 -in.representative_income 321284 Representative total house income in the dwelling unit is $321284 -in.representative_income 321298 Representative total house income in the dwelling unit is $321298 -in.representative_income 321428 Representative total house income in the dwelling unit is $321428 -in.representative_income 321440 Representative total house income in the dwelling unit is $321440 -in.representative_income 321451 Representative total house income in the dwelling unit is $321451 -in.representative_income 321548 Representative total house income in the dwelling unit is $321548 -in.representative_income 321655 Representative total house income in the dwelling unit is $321655 -in.representative_income 321760 Representative total house income in the dwelling unit is $321760 -in.representative_income 321764 Representative total house income in the dwelling unit is $321764 -in.representative_income 321813 Representative total house income in the dwelling unit is $321813 -in.representative_income 321832 Representative total house income in the dwelling unit is $321832 -in.representative_income 321866 Representative total house income in the dwelling unit is $321866 -in.representative_income 321880 Representative total house income in the dwelling unit is $321880 -in.representative_income 321933 Representative total house income in the dwelling unit is $321933 -in.representative_income 321980 Representative total house income in the dwelling unit is $321980 -in.representative_income 322019 Representative total house income in the dwelling unit is $322019 -in.representative_income 322035 Representative total house income in the dwelling unit is $322035 -in.representative_income 322050 Representative total house income in the dwelling unit is $322050 -in.representative_income 322089 Representative total house income in the dwelling unit is $322089 -in.representative_income 322142 Representative total house income in the dwelling unit is $322142 -in.representative_income 322182 Representative total house income in the dwelling unit is $322182 -in.representative_income 322236 Representative total house income in the dwelling unit is $322236 -in.representative_income 322287 Representative total house income in the dwelling unit is $322287 -in.representative_income 322329 Representative total house income in the dwelling unit is $322329 -in.representative_income 322357 Representative total house income in the dwelling unit is $322357 -in.representative_income 322393 Representative total house income in the dwelling unit is $322393 -in.representative_income 322432 Representative total house income in the dwelling unit is $322432 -in.representative_income 322438 Representative total house income in the dwelling unit is $322438 -in.representative_income 322464 Representative total house income in the dwelling unit is $322464 -in.representative_income 322628 Representative total house income in the dwelling unit is $322628 -in.representative_income 322656 Representative total house income in the dwelling unit is $322656 -in.representative_income 322710 Representative total house income in the dwelling unit is $322710 -in.representative_income 322842 Representative total house income in the dwelling unit is $322842 -in.representative_income 322845 Representative total house income in the dwelling unit is $322845 -in.representative_income 322894 Representative total house income in the dwelling unit is $322894 -in.representative_income 322920 Representative total house income in the dwelling unit is $322920 -in.representative_income 322953 Representative total house income in the dwelling unit is $322953 -in.representative_income 323044 Representative total house income in the dwelling unit is $323044 -in.representative_income 323061 Representative total house income in the dwelling unit is $323061 -in.representative_income 323108 Representative total house income in the dwelling unit is $323108 -in.representative_income 323145 Representative total house income in the dwelling unit is $323145 -in.representative_income 323237 Representative total house income in the dwelling unit is $323237 -in.representative_income 323246 Representative total house income in the dwelling unit is $323246 -in.representative_income 323257 Representative total house income in the dwelling unit is $323257 -in.representative_income 323342 Representative total house income in the dwelling unit is $323342 -in.representative_income 323448 Representative total house income in the dwelling unit is $323448 -in.representative_income 323538 Representative total house income in the dwelling unit is $323538 -in.representative_income 323658 Representative total house income in the dwelling unit is $323658 -in.representative_income 323668 Representative total house income in the dwelling unit is $323668 -in.representative_income 323751 Representative total house income in the dwelling unit is $323751 -in.representative_income 323752 Representative total house income in the dwelling unit is $323752 -in.representative_income 323764 Representative total house income in the dwelling unit is $323764 -in.representative_income 323817 Representative total house income in the dwelling unit is $323817 -in.representative_income 323824 Representative total house income in the dwelling unit is $323824 -in.representative_income 323833 Representative total house income in the dwelling unit is $323833 -in.representative_income 323876 Representative total house income in the dwelling unit is $323876 -in.representative_income 323967 Representative total house income in the dwelling unit is $323967 -in.representative_income 324083 Representative total house income in the dwelling unit is $324083 -in.representative_income 324141 Representative total house income in the dwelling unit is $324141 -in.representative_income 324181 Representative total house income in the dwelling unit is $324181 -in.representative_income 324185 Representative total house income in the dwelling unit is $324185 -in.representative_income 324195 Representative total house income in the dwelling unit is $324195 -in.representative_income 324257 Representative total house income in the dwelling unit is $324257 -in.representative_income 324259 Representative total house income in the dwelling unit is $324259 -in.representative_income 324288 Representative total house income in the dwelling unit is $324288 -in.representative_income 324291 Representative total house income in the dwelling unit is $324291 -in.representative_income 324344 Representative total house income in the dwelling unit is $324344 -in.representative_income 324357 Representative total house income in the dwelling unit is $324357 -in.representative_income 324392 Representative total house income in the dwelling unit is $324392 -in.representative_income 324396 Representative total house income in the dwelling unit is $324396 -in.representative_income 324465 Representative total house income in the dwelling unit is $324465 -in.representative_income 324495 Representative total house income in the dwelling unit is $324495 -in.representative_income 324504 Representative total house income in the dwelling unit is $324504 -in.representative_income 324573 Representative total house income in the dwelling unit is $324573 -in.representative_income 324608 Representative total house income in the dwelling unit is $324608 -in.representative_income 324742 Representative total house income in the dwelling unit is $324742 -in.representative_income 324789 Representative total house income in the dwelling unit is $324789 -in.representative_income 324818 Representative total house income in the dwelling unit is $324818 -in.representative_income 324825 Representative total house income in the dwelling unit is $324825 -in.representative_income 324863 Representative total house income in the dwelling unit is $324863 -in.representative_income 324907 Representative total house income in the dwelling unit is $324907 -in.representative_income 325005 Representative total house income in the dwelling unit is $325005 -in.representative_income 325011 Representative total house income in the dwelling unit is $325011 -in.representative_income 325041 Representative total house income in the dwelling unit is $325041 -in.representative_income 325065 Representative total house income in the dwelling unit is $325065 -in.representative_income 325114 Representative total house income in the dwelling unit is $325114 -in.representative_income 325222 Representative total house income in the dwelling unit is $325222 -in.representative_income 325255 Representative total house income in the dwelling unit is $325255 -in.representative_income 325267 Representative total house income in the dwelling unit is $325267 -in.representative_income 325320 Representative total house income in the dwelling unit is $325320 -in.representative_income 325346 Representative total house income in the dwelling unit is $325346 -in.representative_income 325423 Representative total house income in the dwelling unit is $325423 -in.representative_income 325451 Representative total house income in the dwelling unit is $325451 -in.representative_income 325526 Representative total house income in the dwelling unit is $325526 -in.representative_income 325577 Representative total house income in the dwelling unit is $325577 -in.representative_income 325761 Representative total house income in the dwelling unit is $325761 -in.representative_income 325768 Representative total house income in the dwelling unit is $325768 -in.representative_income 325815 Representative total house income in the dwelling unit is $325815 -in.representative_income 325873 Representative total house income in the dwelling unit is $325873 -in.representative_income 325939 Representative total house income in the dwelling unit is $325939 -in.representative_income 325979 Representative total house income in the dwelling unit is $325979 -in.representative_income 326108 Representative total house income in the dwelling unit is $326108 -in.representative_income 326195 Representative total house income in the dwelling unit is $326195 -in.representative_income 326200 Representative total house income in the dwelling unit is $326200 -in.representative_income 326249 Representative total house income in the dwelling unit is $326249 -in.representative_income 326277 Representative total house income in the dwelling unit is $326277 -in.representative_income 326300 Representative total house income in the dwelling unit is $326300 -in.representative_income 326302 Representative total house income in the dwelling unit is $326302 -in.representative_income 326348 Representative total house income in the dwelling unit is $326348 -in.representative_income 326401 Representative total house income in the dwelling unit is $326401 -in.representative_income 326410 Representative total house income in the dwelling unit is $326410 -in.representative_income 326506 Representative total house income in the dwelling unit is $326506 -in.representative_income 326518 Representative total house income in the dwelling unit is $326518 -in.representative_income 326611 Representative total house income in the dwelling unit is $326611 -in.representative_income 326626 Representative total house income in the dwelling unit is $326626 -in.representative_income 326651 Representative total house income in the dwelling unit is $326651 -in.representative_income 326661 Representative total house income in the dwelling unit is $326661 -in.representative_income 326782 Representative total house income in the dwelling unit is $326782 -in.representative_income 326842 Representative total house income in the dwelling unit is $326842 -in.representative_income 326855 Representative total house income in the dwelling unit is $326855 -in.representative_income 326866 Representative total house income in the dwelling unit is $326866 -in.representative_income 326883 Representative total house income in the dwelling unit is $326883 -in.representative_income 326928 Representative total house income in the dwelling unit is $326928 -in.representative_income 326933 Representative total house income in the dwelling unit is $326933 -in.representative_income 326970 Representative total house income in the dwelling unit is $326970 -in.representative_income 327034 Representative total house income in the dwelling unit is $327034 -in.representative_income 327177 Representative total house income in the dwelling unit is $327177 -in.representative_income 327188 Representative total house income in the dwelling unit is $327188 -in.representative_income 327280 Representative total house income in the dwelling unit is $327280 -in.representative_income 327287 Representative total house income in the dwelling unit is $327287 -in.representative_income 327299 Representative total house income in the dwelling unit is $327299 -in.representative_income 327349 Representative total house income in the dwelling unit is $327349 -in.representative_income 327382 Representative total house income in the dwelling unit is $327382 -in.representative_income 327402 Representative total house income in the dwelling unit is $327402 -in.representative_income 327434 Representative total house income in the dwelling unit is $327434 -in.representative_income 327449 Representative total house income in the dwelling unit is $327449 -in.representative_income 327455 Representative total house income in the dwelling unit is $327455 -in.representative_income 327666 Representative total house income in the dwelling unit is $327666 -in.representative_income 327772 Representative total house income in the dwelling unit is $327772 -in.representative_income 327792 Representative total house income in the dwelling unit is $327792 -in.representative_income 327831 Representative total house income in the dwelling unit is $327831 -in.representative_income 327939 Representative total house income in the dwelling unit is $327939 -in.representative_income 327982 Representative total house income in the dwelling unit is $327982 -in.representative_income 328001 Representative total house income in the dwelling unit is $328001 -in.representative_income 328045 Representative total house income in the dwelling unit is $328045 -in.representative_income 328046 Representative total house income in the dwelling unit is $328046 -in.representative_income 328087 Representative total house income in the dwelling unit is $328087 -in.representative_income 328194 Representative total house income in the dwelling unit is $328194 -in.representative_income 328208 Representative total house income in the dwelling unit is $328208 -in.representative_income 328297 Representative total house income in the dwelling unit is $328297 -in.representative_income 328299 Representative total house income in the dwelling unit is $328299 -in.representative_income 328463 Representative total house income in the dwelling unit is $328463 -in.representative_income 328476 Representative total house income in the dwelling unit is $328476 -in.representative_income 328499 Representative total house income in the dwelling unit is $328499 -in.representative_income 328518 Representative total house income in the dwelling unit is $328518 -in.representative_income 328600 Representative total house income in the dwelling unit is $328600 -in.representative_income 328620 Representative total house income in the dwelling unit is $328620 -in.representative_income 328827 Representative total house income in the dwelling unit is $328827 -in.representative_income 329034 Representative total house income in the dwelling unit is $329034 -in.representative_income 329037 Representative total house income in the dwelling unit is $329037 -in.representative_income 329085 Representative total house income in the dwelling unit is $329085 -in.representative_income 329095 Representative total house income in the dwelling unit is $329095 -in.representative_income 329111 Representative total house income in the dwelling unit is $329111 -in.representative_income 329136 Representative total house income in the dwelling unit is $329136 -in.representative_income 329307 Representative total house income in the dwelling unit is $329307 -in.representative_income 329327 Representative total house income in the dwelling unit is $329327 -in.representative_income 329408 Representative total house income in the dwelling unit is $329408 -in.representative_income 329446 Representative total house income in the dwelling unit is $329446 -in.representative_income 329543 Representative total house income in the dwelling unit is $329543 -in.representative_income 329549 Representative total house income in the dwelling unit is $329549 -in.representative_income 329775 Representative total house income in the dwelling unit is $329775 -in.representative_income 329858 Representative total house income in the dwelling unit is $329858 -in.representative_income 329867 Representative total house income in the dwelling unit is $329867 -in.representative_income 329934 Representative total house income in the dwelling unit is $329934 -in.representative_income 329962 Representative total house income in the dwelling unit is $329962 -in.representative_income 330064 Representative total house income in the dwelling unit is $330064 -in.representative_income 330065 Representative total house income in the dwelling unit is $330065 -in.representative_income 330092 Representative total house income in the dwelling unit is $330092 -in.representative_income 330113 Representative total house income in the dwelling unit is $330113 -in.representative_income 330117 Representative total house income in the dwelling unit is $330117 -in.representative_income 330157 Representative total house income in the dwelling unit is $330157 -in.representative_income 330300 Representative total house income in the dwelling unit is $330300 -in.representative_income 330303 Representative total house income in the dwelling unit is $330303 -in.representative_income 330317 Representative total house income in the dwelling unit is $330317 -in.representative_income 330368 Representative total house income in the dwelling unit is $330368 -in.representative_income 330374 Representative total house income in the dwelling unit is $330374 -in.representative_income 330477 Representative total house income in the dwelling unit is $330477 -in.representative_income 330515 Representative total house income in the dwelling unit is $330515 -in.representative_income 330581 Representative total house income in the dwelling unit is $330581 -in.representative_income 330620 Representative total house income in the dwelling unit is $330620 -in.representative_income 330622 Representative total house income in the dwelling unit is $330622 -in.representative_income 330623 Representative total house income in the dwelling unit is $330623 -in.representative_income 330684 Representative total house income in the dwelling unit is $330684 -in.representative_income 330786 Representative total house income in the dwelling unit is $330786 -in.representative_income 330823 Representative total house income in the dwelling unit is $330823 -in.representative_income 330913 Representative total house income in the dwelling unit is $330913 -in.representative_income 330944 Representative total house income in the dwelling unit is $330944 -in.representative_income 331041 Representative total house income in the dwelling unit is $331041 -in.representative_income 331056 Representative total house income in the dwelling unit is $331056 -in.representative_income 331096 Representative total house income in the dwelling unit is $331096 -in.representative_income 331146 Representative total house income in the dwelling unit is $331146 -in.representative_income 331159 Representative total house income in the dwelling unit is $331159 -in.representative_income 331200 Representative total house income in the dwelling unit is $331200 -in.representative_income 331267 Representative total house income in the dwelling unit is $331267 -in.representative_income 331328 Representative total house income in the dwelling unit is $331328 -in.representative_income 331354 Representative total house income in the dwelling unit is $331354 -in.representative_income 331429 Representative total house income in the dwelling unit is $331429 -in.representative_income 331480 Representative total house income in the dwelling unit is $331480 -in.representative_income 331481 Representative total house income in the dwelling unit is $331481 -in.representative_income 331612 Representative total house income in the dwelling unit is $331612 -in.representative_income 331696 Representative total house income in the dwelling unit is $331696 -in.representative_income 331704 Representative total house income in the dwelling unit is $331704 -in.representative_income 331769 Representative total house income in the dwelling unit is $331769 -in.representative_income 331833 Representative total house income in the dwelling unit is $331833 -in.representative_income 331934 Representative total house income in the dwelling unit is $331934 -in.representative_income 331951 Representative total house income in the dwelling unit is $331951 -in.representative_income 331990 Representative total house income in the dwelling unit is $331990 -in.representative_income 332024 Representative total house income in the dwelling unit is $332024 -in.representative_income 332128 Representative total house income in the dwelling unit is $332128 -in.representative_income 332136 Representative total house income in the dwelling unit is $332136 -in.representative_income 332201 Representative total house income in the dwelling unit is $332201 -in.representative_income 332232 Representative total house income in the dwelling unit is $332232 -in.representative_income 332296 Representative total house income in the dwelling unit is $332296 -in.representative_income 332314 Representative total house income in the dwelling unit is $332314 -in.representative_income 332327 Representative total house income in the dwelling unit is $332327 -in.representative_income 332338 Representative total house income in the dwelling unit is $332338 -in.representative_income 332429 Representative total house income in the dwelling unit is $332429 -in.representative_income 332641 Representative total house income in the dwelling unit is $332641 -in.representative_income 332677 Representative total house income in the dwelling unit is $332677 -in.representative_income 332769 Representative total house income in the dwelling unit is $332769 -in.representative_income 332785 Representative total house income in the dwelling unit is $332785 -in.representative_income 332798 Representative total house income in the dwelling unit is $332798 -in.representative_income 332834 Representative total house income in the dwelling unit is $332834 -in.representative_income 332843 Representative total house income in the dwelling unit is $332843 -in.representative_income 332850 Representative total house income in the dwelling unit is $332850 -in.representative_income 332877 Representative total house income in the dwelling unit is $332877 -in.representative_income 332892 Representative total house income in the dwelling unit is $332892 -in.representative_income 332984 Representative total house income in the dwelling unit is $332984 -in.representative_income 333023 Representative total house income in the dwelling unit is $333023 -in.representative_income 333037 Representative total house income in the dwelling unit is $333037 -in.representative_income 333045 Representative total house income in the dwelling unit is $333045 -in.representative_income 333150 Representative total house income in the dwelling unit is $333150 -in.representative_income 333159 Representative total house income in the dwelling unit is $333159 -in.representative_income 333198 Representative total house income in the dwelling unit is $333198 -in.representative_income 333217 Representative total house income in the dwelling unit is $333217 -in.representative_income 333247 Representative total house income in the dwelling unit is $333247 -in.representative_income 333256 Representative total house income in the dwelling unit is $333256 -in.representative_income 333344 Representative total house income in the dwelling unit is $333344 -in.representative_income 333348 Representative total house income in the dwelling unit is $333348 -in.representative_income 333361 Representative total house income in the dwelling unit is $333361 -in.representative_income 333521 Representative total house income in the dwelling unit is $333521 -in.representative_income 333600 Representative total house income in the dwelling unit is $333600 -in.representative_income 333628 Representative total house income in the dwelling unit is $333628 -in.representative_income 333675 Representative total house income in the dwelling unit is $333675 -in.representative_income 333735 Representative total house income in the dwelling unit is $333735 -in.representative_income 333778 Representative total house income in the dwelling unit is $333778 -in.representative_income 333843 Representative total house income in the dwelling unit is $333843 -in.representative_income 333853 Representative total house income in the dwelling unit is $333853 -in.representative_income 333865 Representative total house income in the dwelling unit is $333865 -in.representative_income 334087 Representative total house income in the dwelling unit is $334087 -in.representative_income 334099 Representative total house income in the dwelling unit is $334099 -in.representative_income 334190 Representative total house income in the dwelling unit is $334190 -in.representative_income 334257 Representative total house income in the dwelling unit is $334257 -in.representative_income 334272 Representative total house income in the dwelling unit is $334272 -in.representative_income 334297 Representative total house income in the dwelling unit is $334297 -in.representative_income 334310 Representative total house income in the dwelling unit is $334310 -in.representative_income 334358 Representative total house income in the dwelling unit is $334358 -in.representative_income 334405 Representative total house income in the dwelling unit is $334405 -in.representative_income 334513 Representative total house income in the dwelling unit is $334513 -in.representative_income 334521 Representative total house income in the dwelling unit is $334521 -in.representative_income 334560 Representative total house income in the dwelling unit is $334560 -in.representative_income 334594 Representative total house income in the dwelling unit is $334594 -in.representative_income 334621 Representative total house income in the dwelling unit is $334621 -in.representative_income 334661 Representative total house income in the dwelling unit is $334661 -in.representative_income 334730 Representative total house income in the dwelling unit is $334730 -in.representative_income 334732 Representative total house income in the dwelling unit is $334732 -in.representative_income 334762 Representative total house income in the dwelling unit is $334762 -in.representative_income 334916 Representative total house income in the dwelling unit is $334916 -in.representative_income 334943 Representative total house income in the dwelling unit is $334943 -in.representative_income 334946 Representative total house income in the dwelling unit is $334946 -in.representative_income 335222 Representative total house income in the dwelling unit is $335222 -in.representative_income 335292 Representative total house income in the dwelling unit is $335292 -in.representative_income 335325 Representative total house income in the dwelling unit is $335325 -in.representative_income 335365 Representative total house income in the dwelling unit is $335365 -in.representative_income 335368 Representative total house income in the dwelling unit is $335368 -in.representative_income 335428 Representative total house income in the dwelling unit is $335428 -in.representative_income 335737 Representative total house income in the dwelling unit is $335737 -in.representative_income 335787 Representative total house income in the dwelling unit is $335787 -in.representative_income 335841 Representative total house income in the dwelling unit is $335841 -in.representative_income 335873 Representative total house income in the dwelling unit is $335873 -in.representative_income 335892 Representative total house income in the dwelling unit is $335892 -in.representative_income 335989 Representative total house income in the dwelling unit is $335989 -in.representative_income 335998 Representative total house income in the dwelling unit is $335998 -in.representative_income 336026 Representative total house income in the dwelling unit is $336026 -in.representative_income 336047 Representative total house income in the dwelling unit is $336047 -in.representative_income 336097 Representative total house income in the dwelling unit is $336097 -in.representative_income 336156 Representative total house income in the dwelling unit is $336156 -in.representative_income 336176 Representative total house income in the dwelling unit is $336176 -in.representative_income 336212 Representative total house income in the dwelling unit is $336212 -in.representative_income 336253 Representative total house income in the dwelling unit is $336253 -in.representative_income 336378 Representative total house income in the dwelling unit is $336378 -in.representative_income 336420 Representative total house income in the dwelling unit is $336420 -in.representative_income 336459 Representative total house income in the dwelling unit is $336459 -in.representative_income 336525 Representative total house income in the dwelling unit is $336525 -in.representative_income 336526 Representative total house income in the dwelling unit is $336526 -in.representative_income 336566 Representative total house income in the dwelling unit is $336566 -in.representative_income 336674 Representative total house income in the dwelling unit is $336674 -in.representative_income 336782 Representative total house income in the dwelling unit is $336782 -in.representative_income 336841 Representative total house income in the dwelling unit is $336841 -in.representative_income 336964 Representative total house income in the dwelling unit is $336964 -in.representative_income 336975 Representative total house income in the dwelling unit is $336975 -in.representative_income 336984 Representative total house income in the dwelling unit is $336984 -in.representative_income 337052 Representative total house income in the dwelling unit is $337052 -in.representative_income 337063 Representative total house income in the dwelling unit is $337063 -in.representative_income 337079 Representative total house income in the dwelling unit is $337079 -in.representative_income 337107 Representative total house income in the dwelling unit is $337107 -in.representative_income 337187 Representative total house income in the dwelling unit is $337187 -in.representative_income 337263 Representative total house income in the dwelling unit is $337263 -in.representative_income 337269 Representative total house income in the dwelling unit is $337269 -in.representative_income 337285 Representative total house income in the dwelling unit is $337285 -in.representative_income 337388 Representative total house income in the dwelling unit is $337388 -in.representative_income 337431 Representative total house income in the dwelling unit is $337431 -in.representative_income 337474 Representative total house income in the dwelling unit is $337474 -in.representative_income 337491 Representative total house income in the dwelling unit is $337491 -in.representative_income 337590 Representative total house income in the dwelling unit is $337590 -in.representative_income 337599 Representative total house income in the dwelling unit is $337599 -in.representative_income 337647 Representative total house income in the dwelling unit is $337647 -in.representative_income 337793 Representative total house income in the dwelling unit is $337793 -in.representative_income 337801 Representative total house income in the dwelling unit is $337801 -in.representative_income 337863 Representative total house income in the dwelling unit is $337863 -in.representative_income 337896 Representative total house income in the dwelling unit is $337896 -in.representative_income 337903 Representative total house income in the dwelling unit is $337903 -in.representative_income 337917 Representative total house income in the dwelling unit is $337917 -in.representative_income 337922 Representative total house income in the dwelling unit is $337922 -in.representative_income 338001 Representative total house income in the dwelling unit is $338001 -in.representative_income 338136 Representative total house income in the dwelling unit is $338136 -in.representative_income 338187 Representative total house income in the dwelling unit is $338187 -in.representative_income 338212 Representative total house income in the dwelling unit is $338212 -in.representative_income 338213 Representative total house income in the dwelling unit is $338213 -in.representative_income 338298 Representative total house income in the dwelling unit is $338298 -in.representative_income 338317 Representative total house income in the dwelling unit is $338317 -in.representative_income 338351 Representative total house income in the dwelling unit is $338351 -in.representative_income 338399 Representative total house income in the dwelling unit is $338399 -in.representative_income 338409 Representative total house income in the dwelling unit is $338409 -in.representative_income 338459 Representative total house income in the dwelling unit is $338459 -in.representative_income 338511 Representative total house income in the dwelling unit is $338511 -in.representative_income 338611 Representative total house income in the dwelling unit is $338611 -in.representative_income 338634 Representative total house income in the dwelling unit is $338634 -in.representative_income 338644 Representative total house income in the dwelling unit is $338644 -in.representative_income 338674 Representative total house income in the dwelling unit is $338674 -in.representative_income 338728 Representative total house income in the dwelling unit is $338728 -in.representative_income 338803 Representative total house income in the dwelling unit is $338803 -in.representative_income 338936 Representative total house income in the dwelling unit is $338936 -in.representative_income 338951 Representative total house income in the dwelling unit is $338951 -in.representative_income 339003 Representative total house income in the dwelling unit is $339003 -in.representative_income 339005 Representative total house income in the dwelling unit is $339005 -in.representative_income 339056 Representative total house income in the dwelling unit is $339056 -in.representative_income 339141 Representative total house income in the dwelling unit is $339141 -in.representative_income 339207 Representative total house income in the dwelling unit is $339207 -in.representative_income 339210 Representative total house income in the dwelling unit is $339210 -in.representative_income 339267 Representative total house income in the dwelling unit is $339267 -in.representative_income 339348 Representative total house income in the dwelling unit is $339348 -in.representative_income 339409 Representative total house income in the dwelling unit is $339409 -in.representative_income 339414 Representative total house income in the dwelling unit is $339414 -in.representative_income 339421 Representative total house income in the dwelling unit is $339421 -in.representative_income 339583 Representative total house income in the dwelling unit is $339583 -in.representative_income 339639 Representative total house income in the dwelling unit is $339639 -in.representative_income 339689 Representative total house income in the dwelling unit is $339689 -in.representative_income 339743 Representative total house income in the dwelling unit is $339743 -in.representative_income 339794 Representative total house income in the dwelling unit is $339794 -in.representative_income 339854 Representative total house income in the dwelling unit is $339854 -in.representative_income 339914 Representative total house income in the dwelling unit is $339914 -in.representative_income 340015 Representative total house income in the dwelling unit is $340015 -in.representative_income 340110 Representative total house income in the dwelling unit is $340110 -in.representative_income 340116 Representative total house income in the dwelling unit is $340116 -in.representative_income 340284 Representative total house income in the dwelling unit is $340284 -in.representative_income 340322 Representative total house income in the dwelling unit is $340322 -in.representative_income 340348 Representative total house income in the dwelling unit is $340348 -in.representative_income 340370 Representative total house income in the dwelling unit is $340370 -in.representative_income 340379 Representative total house income in the dwelling unit is $340379 -in.representative_income 340419 Representative total house income in the dwelling unit is $340419 -in.representative_income 340520 Representative total house income in the dwelling unit is $340520 -in.representative_income 340586 Representative total house income in the dwelling unit is $340586 -in.representative_income 340637 Representative total house income in the dwelling unit is $340637 -in.representative_income 340688 Representative total house income in the dwelling unit is $340688 -in.representative_income 340702 Representative total house income in the dwelling unit is $340702 -in.representative_income 340743 Representative total house income in the dwelling unit is $340743 -in.representative_income 340823 Representative total house income in the dwelling unit is $340823 -in.representative_income 340895 Representative total house income in the dwelling unit is $340895 -in.representative_income 340924 Representative total house income in the dwelling unit is $340924 -in.representative_income 340927 Representative total house income in the dwelling unit is $340927 -in.representative_income 340996 Representative total house income in the dwelling unit is $340996 -in.representative_income 341126 Representative total house income in the dwelling unit is $341126 -in.representative_income 341227 Representative total house income in the dwelling unit is $341227 -in.representative_income 341307 Representative total house income in the dwelling unit is $341307 -in.representative_income 341357 Representative total house income in the dwelling unit is $341357 -in.representative_income 341411 Representative total house income in the dwelling unit is $341411 -in.representative_income 341428 Representative total house income in the dwelling unit is $341428 -in.representative_income 341429 Representative total house income in the dwelling unit is $341429 -in.representative_income 341482 Representative total house income in the dwelling unit is $341482 -in.representative_income 341530 Representative total house income in the dwelling unit is $341530 -in.representative_income 341571 Representative total house income in the dwelling unit is $341571 -in.representative_income 341617 Representative total house income in the dwelling unit is $341617 -in.representative_income 341644 Representative total house income in the dwelling unit is $341644 -in.representative_income 341687 Representative total house income in the dwelling unit is $341687 -in.representative_income 341692 Representative total house income in the dwelling unit is $341692 -in.representative_income 341720 Representative total house income in the dwelling unit is $341720 -in.representative_income 341894 Representative total house income in the dwelling unit is $341894 -in.representative_income 342035 Representative total house income in the dwelling unit is $342035 -in.representative_income 342077 Representative total house income in the dwelling unit is $342077 -in.representative_income 342133 Representative total house income in the dwelling unit is $342133 -in.representative_income 342237 Representative total house income in the dwelling unit is $342237 -in.representative_income 342293 Representative total house income in the dwelling unit is $342293 -in.representative_income 342323 Representative total house income in the dwelling unit is $342323 -in.representative_income 342338 Representative total house income in the dwelling unit is $342338 -in.representative_income 342430 Representative total house income in the dwelling unit is $342430 -in.representative_income 342439 Representative total house income in the dwelling unit is $342439 -in.representative_income 342442 Representative total house income in the dwelling unit is $342442 -in.representative_income 342509 Representative total house income in the dwelling unit is $342509 -in.representative_income 342617 Representative total house income in the dwelling unit is $342617 -in.representative_income 342725 Representative total house income in the dwelling unit is $342725 -in.representative_income 342742 Representative total house income in the dwelling unit is $342742 -in.representative_income 342747 Representative total house income in the dwelling unit is $342747 -in.representative_income 342941 Representative total house income in the dwelling unit is $342941 -in.representative_income 343045 Representative total house income in the dwelling unit is $343045 -in.representative_income 343075 Representative total house income in the dwelling unit is $343075 -in.representative_income 343220 Representative total house income in the dwelling unit is $343220 -in.representative_income 343247 Representative total house income in the dwelling unit is $343247 -in.representative_income 343380 Representative total house income in the dwelling unit is $343380 -in.representative_income 343449 Representative total house income in the dwelling unit is $343449 -in.representative_income 343473 Representative total house income in the dwelling unit is $343473 -in.representative_income 343504 Representative total house income in the dwelling unit is $343504 -in.representative_income 343590 Representative total house income in the dwelling unit is $343590 -in.representative_income 343611 Representative total house income in the dwelling unit is $343611 -in.representative_income 343651 Representative total house income in the dwelling unit is $343651 -in.representative_income 343698 Representative total house income in the dwelling unit is $343698 -in.representative_income 343801 Representative total house income in the dwelling unit is $343801 -in.representative_income 343805 Representative total house income in the dwelling unit is $343805 -in.representative_income 343825 Representative total house income in the dwelling unit is $343825 -in.representative_income 343954 Representative total house income in the dwelling unit is $343954 -in.representative_income 344129 Representative total house income in the dwelling unit is $344129 -in.representative_income 344238 Representative total house income in the dwelling unit is $344238 -in.representative_income 344346 Representative total house income in the dwelling unit is $344346 -in.representative_income 344358 Representative total house income in the dwelling unit is $344358 -in.representative_income 344362 Representative total house income in the dwelling unit is $344362 -in.representative_income 344459 Representative total house income in the dwelling unit is $344459 -in.representative_income 344505 Representative total house income in the dwelling unit is $344505 -in.representative_income 344577 Representative total house income in the dwelling unit is $344577 -in.representative_income 344608 Representative total house income in the dwelling unit is $344608 -in.representative_income 344631 Representative total house income in the dwelling unit is $344631 -in.representative_income 344661 Representative total house income in the dwelling unit is $344661 -in.representative_income 344670 Representative total house income in the dwelling unit is $344670 -in.representative_income 344711 Representative total house income in the dwelling unit is $344711 -in.representative_income 344792 Representative total house income in the dwelling unit is $344792 -in.representative_income 344856 Representative total house income in the dwelling unit is $344856 -in.representative_income 344877 Representative total house income in the dwelling unit is $344877 -in.representative_income 344899 Representative total house income in the dwelling unit is $344899 -in.representative_income 344965 Representative total house income in the dwelling unit is $344965 -in.representative_income 344994 Representative total house income in the dwelling unit is $344994 -in.representative_income 345006 Representative total house income in the dwelling unit is $345006 -in.representative_income 345113 Representative total house income in the dwelling unit is $345113 -in.representative_income 345172 Representative total house income in the dwelling unit is $345172 -in.representative_income 345329 Representative total house income in the dwelling unit is $345329 -in.representative_income 345435 Representative total house income in the dwelling unit is $345435 -in.representative_income 345470 Representative total house income in the dwelling unit is $345470 -in.representative_income 345489 Representative total house income in the dwelling unit is $345489 -in.representative_income 345490 Representative total house income in the dwelling unit is $345490 -in.representative_income 345500 Representative total house income in the dwelling unit is $345500 -in.representative_income 345536 Representative total house income in the dwelling unit is $345536 -in.representative_income 345639 Representative total house income in the dwelling unit is $345639 -in.representative_income 345651 Representative total house income in the dwelling unit is $345651 -in.representative_income 345700 Representative total house income in the dwelling unit is $345700 -in.representative_income 345750 Representative total house income in the dwelling unit is $345750 -in.representative_income 345794 Representative total house income in the dwelling unit is $345794 -in.representative_income 345811 Representative total house income in the dwelling unit is $345811 -in.representative_income 345822 Representative total house income in the dwelling unit is $345822 -in.representative_income 345846 Representative total house income in the dwelling unit is $345846 -in.representative_income 345911 Representative total house income in the dwelling unit is $345911 -in.representative_income 345967 Representative total house income in the dwelling unit is $345967 -in.representative_income 345975 Representative total house income in the dwelling unit is $345975 -in.representative_income 346053 Representative total house income in the dwelling unit is $346053 -in.representative_income 346122 Representative total house income in the dwelling unit is $346122 -in.representative_income 346155 Representative total house income in the dwelling unit is $346155 -in.representative_income 346182 Representative total house income in the dwelling unit is $346182 -in.representative_income 346227 Representative total house income in the dwelling unit is $346227 -in.representative_income 346278 Representative total house income in the dwelling unit is $346278 -in.representative_income 346398 Representative total house income in the dwelling unit is $346398 -in.representative_income 346480 Representative total house income in the dwelling unit is $346480 -in.representative_income 346517 Representative total house income in the dwelling unit is $346517 -in.representative_income 346568 Representative total house income in the dwelling unit is $346568 -in.representative_income 346581 Representative total house income in the dwelling unit is $346581 -in.representative_income 346616 Representative total house income in the dwelling unit is $346616 -in.representative_income 346682 Representative total house income in the dwelling unit is $346682 -in.representative_income 346723 Representative total house income in the dwelling unit is $346723 -in.representative_income 346724 Representative total house income in the dwelling unit is $346724 -in.representative_income 346754 Representative total house income in the dwelling unit is $346754 -in.representative_income 346831 Representative total house income in the dwelling unit is $346831 -in.representative_income 346965 Representative total house income in the dwelling unit is $346965 -in.representative_income 346985 Representative total house income in the dwelling unit is $346985 -in.representative_income 347084 Representative total house income in the dwelling unit is $347084 -in.representative_income 347187 Representative total house income in the dwelling unit is $347187 -in.representative_income 347261 Representative total house income in the dwelling unit is $347261 -in.representative_income 347374 Representative total house income in the dwelling unit is $347374 -in.representative_income 347387 Representative total house income in the dwelling unit is $347387 -in.representative_income 347490 Representative total house income in the dwelling unit is $347490 -in.representative_income 347587 Representative total house income in the dwelling unit is $347587 -in.representative_income 347598 Representative total house income in the dwelling unit is $347598 -in.representative_income 347600 Representative total house income in the dwelling unit is $347600 -in.representative_income 347723 Representative total house income in the dwelling unit is $347723 -in.representative_income 347797 Representative total house income in the dwelling unit is $347797 -in.representative_income 347894 Representative total house income in the dwelling unit is $347894 -in.representative_income 347911 Representative total house income in the dwelling unit is $347911 -in.representative_income 347995 Representative total house income in the dwelling unit is $347995 -in.representative_income 348012 Representative total house income in the dwelling unit is $348012 -in.representative_income 348020 Representative total house income in the dwelling unit is $348020 -in.representative_income 348135 Representative total house income in the dwelling unit is $348135 -in.representative_income 348284 Representative total house income in the dwelling unit is $348284 -in.representative_income 348334 Representative total house income in the dwelling unit is $348334 -in.representative_income 348500 Representative total house income in the dwelling unit is $348500 -in.representative_income 348528 Representative total house income in the dwelling unit is $348528 -in.representative_income 348547 Representative total house income in the dwelling unit is $348547 -in.representative_income 348560 Representative total house income in the dwelling unit is $348560 -in.representative_income 348631 Representative total house income in the dwelling unit is $348631 -in.representative_income 348702 Representative total house income in the dwelling unit is $348702 -in.representative_income 348837 Representative total house income in the dwelling unit is $348837 -in.representative_income 348871 Representative total house income in the dwelling unit is $348871 -in.representative_income 348888 Representative total house income in the dwelling unit is $348888 -in.representative_income 348992 Representative total house income in the dwelling unit is $348992 -in.representative_income 349043 Representative total house income in the dwelling unit is $349043 -in.representative_income 349075 Representative total house income in the dwelling unit is $349075 -in.representative_income 349086 Representative total house income in the dwelling unit is $349086 -in.representative_income 349117 Representative total house income in the dwelling unit is $349117 -in.representative_income 349391 Representative total house income in the dwelling unit is $349391 -in.representative_income 349409 Representative total house income in the dwelling unit is $349409 -in.representative_income 349510 Representative total house income in the dwelling unit is $349510 -in.representative_income 349662 Representative total house income in the dwelling unit is $349662 -in.representative_income 349944 Representative total house income in the dwelling unit is $349944 -in.representative_income 349971 Representative total house income in the dwelling unit is $349971 -in.representative_income 350015 Representative total house income in the dwelling unit is $350015 -in.representative_income 350016 Representative total house income in the dwelling unit is $350016 -in.representative_income 350072 Representative total house income in the dwelling unit is $350072 -in.representative_income 350075 Representative total house income in the dwelling unit is $350075 -in.representative_income 350129 Representative total house income in the dwelling unit is $350129 -in.representative_income 350196 Representative total house income in the dwelling unit is $350196 -in.representative_income 350281 Representative total house income in the dwelling unit is $350281 -in.representative_income 350288 Representative total house income in the dwelling unit is $350288 -in.representative_income 350446 Representative total house income in the dwelling unit is $350446 -in.representative_income 350520 Representative total house income in the dwelling unit is $350520 -in.representative_income 350531 Representative total house income in the dwelling unit is $350531 -in.representative_income 350588 Representative total house income in the dwelling unit is $350588 -in.representative_income 350613 Representative total house income in the dwelling unit is $350613 -in.representative_income 350680 Representative total house income in the dwelling unit is $350680 -in.representative_income 350694 Representative total house income in the dwelling unit is $350694 -in.representative_income 350722 Representative total house income in the dwelling unit is $350722 -in.representative_income 350937 Representative total house income in the dwelling unit is $350937 -in.representative_income 351017 Representative total house income in the dwelling unit is $351017 -in.representative_income 351152 Representative total house income in the dwelling unit is $351152 -in.representative_income 351184 Representative total house income in the dwelling unit is $351184 -in.representative_income 351206 Representative total house income in the dwelling unit is $351206 -in.representative_income 351369 Representative total house income in the dwelling unit is $351369 -in.representative_income 351530 Representative total house income in the dwelling unit is $351530 -in.representative_income 351606 Representative total house income in the dwelling unit is $351606 -in.representative_income 351622 Representative total house income in the dwelling unit is $351622 -in.representative_income 351725 Representative total house income in the dwelling unit is $351725 -in.representative_income 351932 Representative total house income in the dwelling unit is $351932 -in.representative_income 351935 Representative total house income in the dwelling unit is $351935 -in.representative_income 352017 Representative total house income in the dwelling unit is $352017 -in.representative_income 352036 Representative total house income in the dwelling unit is $352036 -in.representative_income 352092 Representative total house income in the dwelling unit is $352092 -in.representative_income 352233 Representative total house income in the dwelling unit is $352233 -in.representative_income 352239 Representative total house income in the dwelling unit is $352239 -in.representative_income 352339 Representative total house income in the dwelling unit is $352339 -in.representative_income 352341 Representative total house income in the dwelling unit is $352341 -in.representative_income 352449 Representative total house income in the dwelling unit is $352449 -in.representative_income 352521 Representative total house income in the dwelling unit is $352521 -in.representative_income 352541 Representative total house income in the dwelling unit is $352541 -in.representative_income 352642 Representative total house income in the dwelling unit is $352642 -in.representative_income 352646 Representative total house income in the dwelling unit is $352646 -in.representative_income 352654 Representative total house income in the dwelling unit is $352654 -in.representative_income 352665 Representative total house income in the dwelling unit is $352665 -in.representative_income 352743 Representative total house income in the dwelling unit is $352743 -in.representative_income 352756 Representative total house income in the dwelling unit is $352756 -in.representative_income 352883 Representative total house income in the dwelling unit is $352883 -in.representative_income 353165 Representative total house income in the dwelling unit is $353165 -in.representative_income 353248 Representative total house income in the dwelling unit is $353248 -in.representative_income 353293 Representative total house income in the dwelling unit is $353293 -in.representative_income 353314 Representative total house income in the dwelling unit is $353314 -in.representative_income 353324 Representative total house income in the dwelling unit is $353324 -in.representative_income 353375 Representative total house income in the dwelling unit is $353375 -in.representative_income 353529 Representative total house income in the dwelling unit is $353529 -in.representative_income 353551 Representative total house income in the dwelling unit is $353551 -in.representative_income 353582 Representative total house income in the dwelling unit is $353582 -in.representative_income 353594 Representative total house income in the dwelling unit is $353594 -in.representative_income 353637 Representative total house income in the dwelling unit is $353637 -in.representative_income 353652 Representative total house income in the dwelling unit is $353652 -in.representative_income 353808 Representative total house income in the dwelling unit is $353808 -in.representative_income 353962 Representative total house income in the dwelling unit is $353962 -in.representative_income 354098 Representative total house income in the dwelling unit is $354098 -in.representative_income 354238 Representative total house income in the dwelling unit is $354238 -in.representative_income 354286 Representative total house income in the dwelling unit is $354286 -in.representative_income 354348 Representative total house income in the dwelling unit is $354348 -in.representative_income 354394 Representative total house income in the dwelling unit is $354394 -in.representative_income 354503 Representative total house income in the dwelling unit is $354503 -in.representative_income 354558 Representative total house income in the dwelling unit is $354558 -in.representative_income 354561 Representative total house income in the dwelling unit is $354561 -in.representative_income 354679 Representative total house income in the dwelling unit is $354679 -in.representative_income 354775 Representative total house income in the dwelling unit is $354775 -in.representative_income 354804 Representative total house income in the dwelling unit is $354804 -in.representative_income 354820 Representative total house income in the dwelling unit is $354820 -in.representative_income 354826 Representative total house income in the dwelling unit is $354826 -in.representative_income 354965 Representative total house income in the dwelling unit is $354965 -in.representative_income 354980 Representative total house income in the dwelling unit is $354980 -in.representative_income 355066 Representative total house income in the dwelling unit is $355066 -in.representative_income 355097 Representative total house income in the dwelling unit is $355097 -in.representative_income 355167 Representative total house income in the dwelling unit is $355167 -in.representative_income 355232 Representative total house income in the dwelling unit is $355232 -in.representative_income 355286 Representative total house income in the dwelling unit is $355286 -in.representative_income 355312 Representative total house income in the dwelling unit is $355312 -in.representative_income 355369 Representative total house income in the dwelling unit is $355369 -in.representative_income 355403 Representative total house income in the dwelling unit is $355403 -in.representative_income 355470 Representative total house income in the dwelling unit is $355470 -in.representative_income 355475 Representative total house income in the dwelling unit is $355475 -in.representative_income 355541 Representative total house income in the dwelling unit is $355541 -in.representative_income 355633 Representative total house income in the dwelling unit is $355633 -in.representative_income 355691 Representative total house income in the dwelling unit is $355691 -in.representative_income 355824 Representative total house income in the dwelling unit is $355824 -in.representative_income 355849 Representative total house income in the dwelling unit is $355849 -in.representative_income 355851 Representative total house income in the dwelling unit is $355851 -in.representative_income 355882 Representative total house income in the dwelling unit is $355882 -in.representative_income 355954 Representative total house income in the dwelling unit is $355954 -in.representative_income 355975 Representative total house income in the dwelling unit is $355975 -in.representative_income 356063 Representative total house income in the dwelling unit is $356063 -in.representative_income 356160 Representative total house income in the dwelling unit is $356160 -in.representative_income 356371 Representative total house income in the dwelling unit is $356371 -in.representative_income 356385 Representative total house income in the dwelling unit is $356385 -in.representative_income 356456 Representative total house income in the dwelling unit is $356456 -in.representative_income 356470 Representative total house income in the dwelling unit is $356470 -in.representative_income 356480 Representative total house income in the dwelling unit is $356480 -in.representative_income 356493 Representative total house income in the dwelling unit is $356493 -in.representative_income 356541 Representative total house income in the dwelling unit is $356541 -in.representative_income 356555 Representative total house income in the dwelling unit is $356555 -in.representative_income 356682 Representative total house income in the dwelling unit is $356682 -in.representative_income 356707 Representative total house income in the dwelling unit is $356707 -in.representative_income 356825 Representative total house income in the dwelling unit is $356825 -in.representative_income 356879 Representative total house income in the dwelling unit is $356879 -in.representative_income 356883 Representative total house income in the dwelling unit is $356883 -in.representative_income 357086 Representative total house income in the dwelling unit is $357086 -in.representative_income 357089 Representative total house income in the dwelling unit is $357089 -in.representative_income 357095 Representative total house income in the dwelling unit is $357095 -in.representative_income 357173 Representative total house income in the dwelling unit is $357173 -in.representative_income 357192 Representative total house income in the dwelling unit is $357192 -in.representative_income 357295 Representative total house income in the dwelling unit is $357295 -in.representative_income 357301 Representative total house income in the dwelling unit is $357301 -in.representative_income 357459 Representative total house income in the dwelling unit is $357459 -in.representative_income 357502 Representative total house income in the dwelling unit is $357502 -in.representative_income 357511 Representative total house income in the dwelling unit is $357511 -in.representative_income 357591 Representative total house income in the dwelling unit is $357591 -in.representative_income 357635 Representative total house income in the dwelling unit is $357635 -in.representative_income 357722 Representative total house income in the dwelling unit is $357722 -in.representative_income 357780 Representative total house income in the dwelling unit is $357780 -in.representative_income 357914 Representative total house income in the dwelling unit is $357914 -in.representative_income 358283 Representative total house income in the dwelling unit is $358283 -in.representative_income 358424 Representative total house income in the dwelling unit is $358424 -in.representative_income 358566 Representative total house income in the dwelling unit is $358566 -in.representative_income 358579 Representative total house income in the dwelling unit is $358579 -in.representative_income 358601 Representative total house income in the dwelling unit is $358601 -in.representative_income 358716 Representative total house income in the dwelling unit is $358716 -in.representative_income 358758 Representative total house income in the dwelling unit is $358758 -in.representative_income 358804 Representative total house income in the dwelling unit is $358804 -in.representative_income 358842 Representative total house income in the dwelling unit is $358842 -in.representative_income 358945 Representative total house income in the dwelling unit is $358945 -in.representative_income 358982 Representative total house income in the dwelling unit is $358982 -in.representative_income 359006 Representative total house income in the dwelling unit is $359006 -in.representative_income 359152 Representative total house income in the dwelling unit is $359152 -in.representative_income 359176 Representative total house income in the dwelling unit is $359176 -in.representative_income 359605 Representative total house income in the dwelling unit is $359605 -in.representative_income 359610 Representative total house income in the dwelling unit is $359610 -in.representative_income 359620 Representative total house income in the dwelling unit is $359620 -in.representative_income 359713 Representative total house income in the dwelling unit is $359713 -in.representative_income 359796 Representative total house income in the dwelling unit is $359796 -in.representative_income 359956 Representative total house income in the dwelling unit is $359956 -in.representative_income 359977 Representative total house income in the dwelling unit is $359977 -in.representative_income 360045 Representative total house income in the dwelling unit is $360045 -in.representative_income 360080 Representative total house income in the dwelling unit is $360080 -in.representative_income 360121 Representative total house income in the dwelling unit is $360121 -in.representative_income 360142 Representative total house income in the dwelling unit is $360142 -in.representative_income 360250 Representative total house income in the dwelling unit is $360250 -in.representative_income 360337 Representative total house income in the dwelling unit is $360337 -in.representative_income 360517 Representative total house income in the dwelling unit is $360517 -in.representative_income 360571 Representative total house income in the dwelling unit is $360571 -in.representative_income 360622 Representative total house income in the dwelling unit is $360622 -in.representative_income 360625 Representative total house income in the dwelling unit is $360625 -in.representative_income 360661 Representative total house income in the dwelling unit is $360661 -in.representative_income 360675 Representative total house income in the dwelling unit is $360675 -in.representative_income 360679 Representative total house income in the dwelling unit is $360679 -in.representative_income 360861 Representative total house income in the dwelling unit is $360861 -in.representative_income 360877 Representative total house income in the dwelling unit is $360877 -in.representative_income 360886 Representative total house income in the dwelling unit is $360886 -in.representative_income 360925 Representative total house income in the dwelling unit is $360925 -in.representative_income 361008 Representative total house income in the dwelling unit is $361008 -in.representative_income 361026 Representative total house income in the dwelling unit is $361026 -in.representative_income 361097 Representative total house income in the dwelling unit is $361097 -in.representative_income 361111 Representative total house income in the dwelling unit is $361111 -in.representative_income 361127 Representative total house income in the dwelling unit is $361127 -in.representative_income 361307 Representative total house income in the dwelling unit is $361307 -in.representative_income 361329 Representative total house income in the dwelling unit is $361329 -in.representative_income 361331 Representative total house income in the dwelling unit is $361331 -in.representative_income 361413 Representative total house income in the dwelling unit is $361413 -in.representative_income 361430 Representative total house income in the dwelling unit is $361430 -in.representative_income 361476 Representative total house income in the dwelling unit is $361476 -in.representative_income 361525 Representative total house income in the dwelling unit is $361525 -in.representative_income 361624 Representative total house income in the dwelling unit is $361624 -in.representative_income 361632 Representative total house income in the dwelling unit is $361632 -in.representative_income 361730 Representative total house income in the dwelling unit is $361730 -in.representative_income 361752 Representative total house income in the dwelling unit is $361752 -in.representative_income 361854 Representative total house income in the dwelling unit is $361854 -in.representative_income 361941 Representative total house income in the dwelling unit is $361941 -in.representative_income 361957 Representative total house income in the dwelling unit is $361957 -in.representative_income 361975 Representative total house income in the dwelling unit is $361975 -in.representative_income 362075 Representative total house income in the dwelling unit is $362075 -in.representative_income 362238 Representative total house income in the dwelling unit is $362238 -in.representative_income 362363 Representative total house income in the dwelling unit is $362363 -in.representative_income 362468 Representative total house income in the dwelling unit is $362468 -in.representative_income 362504 Representative total house income in the dwelling unit is $362504 -in.representative_income 362642 Representative total house income in the dwelling unit is $362642 -in.representative_income 362658 Representative total house income in the dwelling unit is $362658 -in.representative_income 362670 Representative total house income in the dwelling unit is $362670 -in.representative_income 362714 Representative total house income in the dwelling unit is $362714 -in.representative_income 362784 Representative total house income in the dwelling unit is $362784 -in.representative_income 362825 Representative total house income in the dwelling unit is $362825 -in.representative_income 362865 Representative total house income in the dwelling unit is $362865 -in.representative_income 362889 Representative total house income in the dwelling unit is $362889 -in.representative_income 362930 Representative total house income in the dwelling unit is $362930 -in.representative_income 362996 Representative total house income in the dwelling unit is $362996 -in.representative_income 363038 Representative total house income in the dwelling unit is $363038 -in.representative_income 363040 Representative total house income in the dwelling unit is $363040 -in.representative_income 363048 Representative total house income in the dwelling unit is $363048 -in.representative_income 363072 Representative total house income in the dwelling unit is $363072 -in.representative_income 363277 Representative total house income in the dwelling unit is $363277 -in.representative_income 363349 Representative total house income in the dwelling unit is $363349 -in.representative_income 363541 Representative total house income in the dwelling unit is $363541 -in.representative_income 363587 Representative total house income in the dwelling unit is $363587 -in.representative_income 363652 Representative total house income in the dwelling unit is $363652 -in.representative_income 363734 Representative total house income in the dwelling unit is $363734 -in.representative_income 363839 Representative total house income in the dwelling unit is $363839 -in.representative_income 363854 Representative total house income in the dwelling unit is $363854 -in.representative_income 363899 Representative total house income in the dwelling unit is $363899 -in.representative_income 363902 Representative total house income in the dwelling unit is $363902 -in.representative_income 364103 Representative total house income in the dwelling unit is $364103 -in.representative_income 364119 Representative total house income in the dwelling unit is $364119 -in.representative_income 364299 Representative total house income in the dwelling unit is $364299 -in.representative_income 364366 Representative total house income in the dwelling unit is $364366 -in.representative_income 364470 Representative total house income in the dwelling unit is $364470 -in.representative_income 364559 Representative total house income in the dwelling unit is $364559 -in.representative_income 364561 Representative total house income in the dwelling unit is $364561 -in.representative_income 364662 Representative total house income in the dwelling unit is $364662 -in.representative_income 364682 Representative total house income in the dwelling unit is $364682 -in.representative_income 364736 Representative total house income in the dwelling unit is $364736 -in.representative_income 364758 Representative total house income in the dwelling unit is $364758 -in.representative_income 364763 Representative total house income in the dwelling unit is $364763 -in.representative_income 364811 Representative total house income in the dwelling unit is $364811 -in.representative_income 364833 Representative total house income in the dwelling unit is $364833 -in.representative_income 364875 Representative total house income in the dwelling unit is $364875 -in.representative_income 364894 Representative total house income in the dwelling unit is $364894 -in.representative_income 364973 Representative total house income in the dwelling unit is $364973 -in.representative_income 365134 Representative total house income in the dwelling unit is $365134 -in.representative_income 365167 Representative total house income in the dwelling unit is $365167 -in.representative_income 365199 Representative total house income in the dwelling unit is $365199 -in.representative_income 365238 Representative total house income in the dwelling unit is $365238 -in.representative_income 365415 Representative total house income in the dwelling unit is $365415 -in.representative_income 365420 Representative total house income in the dwelling unit is $365420 -in.representative_income 365443 Representative total house income in the dwelling unit is $365443 -in.representative_income 365481 Representative total house income in the dwelling unit is $365481 -in.representative_income 365650 Representative total house income in the dwelling unit is $365650 -in.representative_income 365673 Representative total house income in the dwelling unit is $365673 -in.representative_income 365739 Representative total house income in the dwelling unit is $365739 -in.representative_income 365847 Representative total house income in the dwelling unit is $365847 -in.representative_income 365864 Representative total house income in the dwelling unit is $365864 -in.representative_income 365906 Representative total house income in the dwelling unit is $365906 -in.representative_income 366046 Representative total house income in the dwelling unit is $366046 -in.representative_income 366077 Representative total house income in the dwelling unit is $366077 -in.representative_income 366166 Representative total house income in the dwelling unit is $366166 -in.representative_income 366265 Representative total house income in the dwelling unit is $366265 -in.representative_income 366279 Representative total house income in the dwelling unit is $366279 -in.representative_income 366475 Representative total house income in the dwelling unit is $366475 -in.representative_income 366496 Representative total house income in the dwelling unit is $366496 -in.representative_income 366683 Representative total house income in the dwelling unit is $366683 -in.representative_income 366691 Representative total house income in the dwelling unit is $366691 -in.representative_income 366713 Representative total house income in the dwelling unit is $366713 -in.representative_income 366763 Representative total house income in the dwelling unit is $366763 -in.representative_income 366885 Representative total house income in the dwelling unit is $366885 -in.representative_income 366905 Representative total house income in the dwelling unit is $366905 -in.representative_income 367003 Representative total house income in the dwelling unit is $367003 -in.representative_income 367087 Representative total house income in the dwelling unit is $367087 -in.representative_income 367094 Representative total house income in the dwelling unit is $367094 -in.representative_income 367120 Representative total house income in the dwelling unit is $367120 -in.representative_income 367197 Representative total house income in the dwelling unit is $367197 -in.representative_income 367226 Representative total house income in the dwelling unit is $367226 -in.representative_income 367360 Representative total house income in the dwelling unit is $367360 -in.representative_income 367619 Representative total house income in the dwelling unit is $367619 -in.representative_income 367636 Representative total house income in the dwelling unit is $367636 -in.representative_income 367657 Representative total house income in the dwelling unit is $367657 -in.representative_income 367693 Representative total house income in the dwelling unit is $367693 -in.representative_income 367713 Representative total house income in the dwelling unit is $367713 -in.representative_income 367774 Representative total house income in the dwelling unit is $367774 -in.representative_income 367792 Representative total house income in the dwelling unit is $367792 -in.representative_income 368058 Representative total house income in the dwelling unit is $368058 -in.representative_income 368097 Representative total house income in the dwelling unit is $368097 -in.representative_income 368163 Representative total house income in the dwelling unit is $368163 -in.representative_income 368246 Representative total house income in the dwelling unit is $368246 -in.representative_income 368602 Representative total house income in the dwelling unit is $368602 -in.representative_income 368665 Representative total house income in the dwelling unit is $368665 -in.representative_income 368703 Representative total house income in the dwelling unit is $368703 -in.representative_income 368944 Representative total house income in the dwelling unit is $368944 -in.representative_income 369112 Representative total house income in the dwelling unit is $369112 -in.representative_income 369156 Representative total house income in the dwelling unit is $369156 -in.representative_income 369196 Representative total house income in the dwelling unit is $369196 -in.representative_income 369260 Representative total house income in the dwelling unit is $369260 -in.representative_income 369267 Representative total house income in the dwelling unit is $369267 -in.representative_income 369304 Representative total house income in the dwelling unit is $369304 -in.representative_income 369323 Representative total house income in the dwelling unit is $369323 -in.representative_income 369365 Representative total house income in the dwelling unit is $369365 -in.representative_income 369503 Representative total house income in the dwelling unit is $369503 -in.representative_income 369511 Representative total house income in the dwelling unit is $369511 -in.representative_income 369534 Representative total house income in the dwelling unit is $369534 -in.representative_income 369588 Representative total house income in the dwelling unit is $369588 -in.representative_income 369639 Representative total house income in the dwelling unit is $369639 -in.representative_income 369713 Representative total house income in the dwelling unit is $369713 -in.representative_income 369725 Representative total house income in the dwelling unit is $369725 -in.representative_income 369737 Representative total house income in the dwelling unit is $369737 -in.representative_income 369953 Representative total house income in the dwelling unit is $369953 -in.representative_income 370167 Representative total house income in the dwelling unit is $370167 -in.representative_income 370287 Representative total house income in the dwelling unit is $370287 -in.representative_income 370291 Representative total house income in the dwelling unit is $370291 -in.representative_income 370340 Representative total house income in the dwelling unit is $370340 -in.representative_income 370377 Representative total house income in the dwelling unit is $370377 -in.representative_income 370447 Representative total house income in the dwelling unit is $370447 -in.representative_income 370589 Representative total house income in the dwelling unit is $370589 -in.representative_income 370709 Representative total house income in the dwelling unit is $370709 -in.representative_income 370723 Representative total house income in the dwelling unit is $370723 -in.representative_income 370725 Representative total house income in the dwelling unit is $370725 -in.representative_income 370748 Representative total house income in the dwelling unit is $370748 -in.representative_income 370877 Representative total house income in the dwelling unit is $370877 -in.representative_income 371010 Representative total house income in the dwelling unit is $371010 -in.representative_income 371013 Representative total house income in the dwelling unit is $371013 -in.representative_income 371033 Representative total house income in the dwelling unit is $371033 -in.representative_income 371127 Representative total house income in the dwelling unit is $371127 -in.representative_income 371142 Representative total house income in the dwelling unit is $371142 -in.representative_income 371198 Representative total house income in the dwelling unit is $371198 -in.representative_income 371222 Representative total house income in the dwelling unit is $371222 -in.representative_income 371322 Representative total house income in the dwelling unit is $371322 -in.representative_income 371413 Representative total house income in the dwelling unit is $371413 -in.representative_income 371432 Representative total house income in the dwelling unit is $371432 -in.representative_income 371527 Representative total house income in the dwelling unit is $371527 -in.representative_income 371548 Representative total house income in the dwelling unit is $371548 -in.representative_income 371643 Representative total house income in the dwelling unit is $371643 -in.representative_income 371681 Representative total house income in the dwelling unit is $371681 -in.representative_income 371733 Representative total house income in the dwelling unit is $371733 -in.representative_income 371854 Representative total house income in the dwelling unit is $371854 -in.representative_income 372114 Representative total house income in the dwelling unit is $372114 -in.representative_income 372276 Representative total house income in the dwelling unit is $372276 -in.representative_income 372355 Representative total house income in the dwelling unit is $372355 -in.representative_income 372487 Representative total house income in the dwelling unit is $372487 -in.representative_income 372616 Representative total house income in the dwelling unit is $372616 -in.representative_income 372664 Representative total house income in the dwelling unit is $372664 -in.representative_income 372744 Representative total house income in the dwelling unit is $372744 -in.representative_income 372762 Representative total house income in the dwelling unit is $372762 -in.representative_income 372845 Representative total house income in the dwelling unit is $372845 -in.representative_income 372916 Representative total house income in the dwelling unit is $372916 -in.representative_income 372946 Representative total house income in the dwelling unit is $372946 -in.representative_income 373076 Representative total house income in the dwelling unit is $373076 -in.representative_income 373270 Representative total house income in the dwelling unit is $373270 -in.representative_income 373330 Representative total house income in the dwelling unit is $373330 -in.representative_income 373346 Representative total house income in the dwelling unit is $373346 -in.representative_income 373451 Representative total house income in the dwelling unit is $373451 -in.representative_income 373560 Representative total house income in the dwelling unit is $373560 -in.representative_income 373627 Representative total house income in the dwelling unit is $373627 -in.representative_income 373646 Representative total house income in the dwelling unit is $373646 -in.representative_income 373754 Representative total house income in the dwelling unit is $373754 -in.representative_income 373764 Representative total house income in the dwelling unit is $373764 -in.representative_income 373843 Representative total house income in the dwelling unit is $373843 -in.representative_income 373858 Representative total house income in the dwelling unit is $373858 -in.representative_income 373929 Representative total house income in the dwelling unit is $373929 -in.representative_income 374069 Representative total house income in the dwelling unit is $374069 -in.representative_income 374211 Representative total house income in the dwelling unit is $374211 -in.representative_income 374383 Representative total house income in the dwelling unit is $374383 -in.representative_income 374385 Representative total house income in the dwelling unit is $374385 -in.representative_income 374417 Representative total house income in the dwelling unit is $374417 -in.representative_income 374419 Representative total house income in the dwelling unit is $374419 -in.representative_income 374512 Representative total house income in the dwelling unit is $374512 -in.representative_income 374599 Representative total house income in the dwelling unit is $374599 -in.representative_income 374633 Representative total house income in the dwelling unit is $374633 -in.representative_income 374663 Representative total house income in the dwelling unit is $374663 -in.representative_income 374691 Representative total house income in the dwelling unit is $374691 -in.representative_income 374764 Representative total house income in the dwelling unit is $374764 -in.representative_income 374807 Representative total house income in the dwelling unit is $374807 -in.representative_income 374865 Representative total house income in the dwelling unit is $374865 -in.representative_income 374890 Representative total house income in the dwelling unit is $374890 -in.representative_income 374923 Representative total house income in the dwelling unit is $374923 -in.representative_income 374933 Representative total house income in the dwelling unit is $374933 -in.representative_income 374977 Representative total house income in the dwelling unit is $374977 -in.representative_income 375018 Representative total house income in the dwelling unit is $375018 -in.representative_income 375140 Representative total house income in the dwelling unit is $375140 -in.representative_income 375215 Representative total house income in the dwelling unit is $375215 -in.representative_income 375385 Representative total house income in the dwelling unit is $375385 -in.representative_income 375439 Representative total house income in the dwelling unit is $375439 -in.representative_income 375449 Representative total house income in the dwelling unit is $375449 -in.representative_income 375471 Representative total house income in the dwelling unit is $375471 -in.representative_income 375571 Representative total house income in the dwelling unit is $375571 -in.representative_income 375707 Representative total house income in the dwelling unit is $375707 -in.representative_income 375772 Representative total house income in the dwelling unit is $375772 -in.representative_income 375774 Representative total house income in the dwelling unit is $375774 -in.representative_income 375787 Representative total house income in the dwelling unit is $375787 -in.representative_income 375901 Representative total house income in the dwelling unit is $375901 -in.representative_income 376004 Representative total house income in the dwelling unit is $376004 -in.representative_income 376077 Representative total house income in the dwelling unit is $376077 -in.representative_income 376112 Representative total house income in the dwelling unit is $376112 -in.representative_income 376177 Representative total house income in the dwelling unit is $376177 -in.representative_income 376178 Representative total house income in the dwelling unit is $376178 -in.representative_income 376188 Representative total house income in the dwelling unit is $376188 -in.representative_income 376243 Representative total house income in the dwelling unit is $376243 -in.representative_income 376480 Representative total house income in the dwelling unit is $376480 -in.representative_income 376494 Representative total house income in the dwelling unit is $376494 -in.representative_income 376760 Representative total house income in the dwelling unit is $376760 -in.representative_income 376780 Representative total house income in the dwelling unit is $376780 -in.representative_income 376784 Representative total house income in the dwelling unit is $376784 -in.representative_income 376868 Representative total house income in the dwelling unit is $376868 -in.representative_income 376892 Representative total house income in the dwelling unit is $376892 -in.representative_income 377084 Representative total house income in the dwelling unit is $377084 -in.representative_income 377127 Representative total house income in the dwelling unit is $377127 -in.representative_income 377300 Representative total house income in the dwelling unit is $377300 -in.representative_income 377318 Representative total house income in the dwelling unit is $377318 -in.representative_income 377338 Representative total house income in the dwelling unit is $377338 -in.representative_income 377399 Representative total house income in the dwelling unit is $377399 -in.representative_income 377511 Representative total house income in the dwelling unit is $377511 -in.representative_income 377549 Representative total house income in the dwelling unit is $377549 -in.representative_income 377615 Representative total house income in the dwelling unit is $377615 -in.representative_income 377840 Representative total house income in the dwelling unit is $377840 -in.representative_income 377854 Representative total house income in the dwelling unit is $377854 -in.representative_income 377948 Representative total house income in the dwelling unit is $377948 -in.representative_income 377961 Representative total house income in the dwelling unit is $377961 -in.representative_income 378077 Representative total house income in the dwelling unit is $378077 -in.representative_income 378130 Representative total house income in the dwelling unit is $378130 -in.representative_income 378164 Representative total house income in the dwelling unit is $378164 -in.representative_income 378178 Representative total house income in the dwelling unit is $378178 -in.representative_income 378337 Representative total house income in the dwelling unit is $378337 -in.representative_income 378391 Representative total house income in the dwelling unit is $378391 -in.representative_income 378400 Representative total house income in the dwelling unit is $378400 -in.representative_income 378543 Representative total house income in the dwelling unit is $378543 -in.representative_income 378597 Representative total house income in the dwelling unit is $378597 -in.representative_income 378603 Representative total house income in the dwelling unit is $378603 -in.representative_income 378804 Representative total house income in the dwelling unit is $378804 -in.representative_income 378853 Representative total house income in the dwelling unit is $378853 -in.representative_income 378905 Representative total house income in the dwelling unit is $378905 -in.representative_income 378928 Representative total house income in the dwelling unit is $378928 -in.representative_income 379025 Representative total house income in the dwelling unit is $379025 -in.representative_income 379063 Representative total house income in the dwelling unit is $379063 -in.representative_income 379162 Representative total house income in the dwelling unit is $379162 -in.representative_income 379236 Representative total house income in the dwelling unit is $379236 -in.representative_income 379245 Representative total house income in the dwelling unit is $379245 -in.representative_income 379265 Representative total house income in the dwelling unit is $379265 -in.representative_income 379472 Representative total house income in the dwelling unit is $379472 -in.representative_income 379574 Representative total house income in the dwelling unit is $379574 -in.representative_income 379658 Representative total house income in the dwelling unit is $379658 -in.representative_income 379673 Representative total house income in the dwelling unit is $379673 -in.representative_income 379815 Representative total house income in the dwelling unit is $379815 -in.representative_income 379884 Representative total house income in the dwelling unit is $379884 -in.representative_income 379916 Representative total house income in the dwelling unit is $379916 -in.representative_income 380001 Representative total house income in the dwelling unit is $380001 -in.representative_income 380109 Representative total house income in the dwelling unit is $380109 -in.representative_income 380219 Representative total house income in the dwelling unit is $380219 -in.representative_income 380291 Representative total house income in the dwelling unit is $380291 -in.representative_income 380501 Representative total house income in the dwelling unit is $380501 -in.representative_income 380506 Representative total house income in the dwelling unit is $380506 -in.representative_income 380538 Representative total house income in the dwelling unit is $380538 -in.representative_income 380559 Representative total house income in the dwelling unit is $380559 -in.representative_income 380606 Representative total house income in the dwelling unit is $380606 -in.representative_income 380608 Representative total house income in the dwelling unit is $380608 -in.representative_income 380647 Representative total house income in the dwelling unit is $380647 -in.representative_income 380825 Representative total house income in the dwelling unit is $380825 -in.representative_income 380866 Representative total house income in the dwelling unit is $380866 -in.representative_income 381075 Representative total house income in the dwelling unit is $381075 -in.representative_income 381085 Representative total house income in the dwelling unit is $381085 -in.representative_income 381482 Representative total house income in the dwelling unit is $381482 -in.representative_income 381513 Representative total house income in the dwelling unit is $381513 -in.representative_income 381611 Representative total house income in the dwelling unit is $381611 -in.representative_income 381638 Representative total house income in the dwelling unit is $381638 -in.representative_income 381761 Representative total house income in the dwelling unit is $381761 -in.representative_income 381767 Representative total house income in the dwelling unit is $381767 -in.representative_income 381925 Representative total house income in the dwelling unit is $381925 -in.representative_income 381947 Representative total house income in the dwelling unit is $381947 -in.representative_income 382040 Representative total house income in the dwelling unit is $382040 -in.representative_income 382066 Representative total house income in the dwelling unit is $382066 -in.representative_income 382084 Representative total house income in the dwelling unit is $382084 -in.representative_income 382148 Representative total house income in the dwelling unit is $382148 -in.representative_income 382162 Representative total house income in the dwelling unit is $382162 -in.representative_income 382255 Representative total house income in the dwelling unit is $382255 -in.representative_income 382277 Representative total house income in the dwelling unit is $382277 -in.representative_income 382340 Representative total house income in the dwelling unit is $382340 -in.representative_income 382464 Representative total house income in the dwelling unit is $382464 -in.representative_income 382486 Representative total house income in the dwelling unit is $382486 -in.representative_income 382611 Representative total house income in the dwelling unit is $382611 -in.representative_income 382643 Representative total house income in the dwelling unit is $382643 -in.representative_income 382669 Representative total house income in the dwelling unit is $382669 -in.representative_income 382822 Representative total house income in the dwelling unit is $382822 -in.representative_income 382845 Representative total house income in the dwelling unit is $382845 -in.representative_income 382900 Representative total house income in the dwelling unit is $382900 -in.representative_income 383081 Representative total house income in the dwelling unit is $383081 -in.representative_income 383185 Representative total house income in the dwelling unit is $383185 -in.representative_income 383350 Representative total house income in the dwelling unit is $383350 -in.representative_income 383436 Representative total house income in the dwelling unit is $383436 -in.representative_income 383567 Representative total house income in the dwelling unit is $383567 -in.representative_income 383700 Representative total house income in the dwelling unit is $383700 -in.representative_income 383855 Representative total house income in the dwelling unit is $383855 -in.representative_income 383877 Representative total house income in the dwelling unit is $383877 -in.representative_income 384057 Representative total house income in the dwelling unit is $384057 -in.representative_income 384295 Representative total house income in the dwelling unit is $384295 -in.representative_income 384360 Representative total house income in the dwelling unit is $384360 -in.representative_income 384423 Representative total house income in the dwelling unit is $384423 -in.representative_income 384648 Representative total house income in the dwelling unit is $384648 -in.representative_income 384732 Representative total house income in the dwelling unit is $384732 -in.representative_income 384739 Representative total house income in the dwelling unit is $384739 -in.representative_income 384835 Representative total house income in the dwelling unit is $384835 -in.representative_income 384865 Representative total house income in the dwelling unit is $384865 -in.representative_income 384931 Representative total house income in the dwelling unit is $384931 -in.representative_income 385025 Representative total house income in the dwelling unit is $385025 -in.representative_income 385052 Representative total house income in the dwelling unit is $385052 -in.representative_income 385089 Representative total house income in the dwelling unit is $385089 -in.representative_income 385133 Representative total house income in the dwelling unit is $385133 -in.representative_income 385168 Representative total house income in the dwelling unit is $385168 -in.representative_income 385248 Representative total house income in the dwelling unit is $385248 -in.representative_income 385583 Representative total house income in the dwelling unit is $385583 -in.representative_income 385691 Representative total house income in the dwelling unit is $385691 -in.representative_income 385728 Representative total house income in the dwelling unit is $385728 -in.representative_income 385763 Representative total house income in the dwelling unit is $385763 -in.representative_income 385875 Representative total house income in the dwelling unit is $385875 -in.representative_income 385986 Representative total house income in the dwelling unit is $385986 -in.representative_income 386124 Representative total house income in the dwelling unit is $386124 -in.representative_income 386178 Representative total house income in the dwelling unit is $386178 -in.representative_income 386382 Representative total house income in the dwelling unit is $386382 -in.representative_income 386441 Representative total house income in the dwelling unit is $386441 -in.representative_income 386549 Representative total house income in the dwelling unit is $386549 -in.representative_income 386710 Representative total house income in the dwelling unit is $386710 -in.representative_income 386794 Representative total house income in the dwelling unit is $386794 -in.representative_income 386808 Representative total house income in the dwelling unit is $386808 -in.representative_income 386898 Representative total house income in the dwelling unit is $386898 -in.representative_income 387041 Representative total house income in the dwelling unit is $387041 -in.representative_income 387532 Representative total house income in the dwelling unit is $387532 -in.representative_income 387564 Representative total house income in the dwelling unit is $387564 -in.representative_income 387779 Representative total house income in the dwelling unit is $387779 -in.representative_income 387826 Representative total house income in the dwelling unit is $387826 -in.representative_income 387889 Representative total house income in the dwelling unit is $387889 -in.representative_income 387989 Representative total house income in the dwelling unit is $387989 -in.representative_income 388051 Representative total house income in the dwelling unit is $388051 -in.representative_income 388095 Representative total house income in the dwelling unit is $388095 -in.representative_income 388300 Representative total house income in the dwelling unit is $388300 -in.representative_income 388588 Representative total house income in the dwelling unit is $388588 -in.representative_income 388622 Representative total house income in the dwelling unit is $388622 -in.representative_income 388727 Representative total house income in the dwelling unit is $388727 -in.representative_income 388753 Representative total house income in the dwelling unit is $388753 -in.representative_income 388857 Representative total house income in the dwelling unit is $388857 -in.representative_income 388862 Representative total house income in the dwelling unit is $388862 -in.representative_income 388906 Representative total house income in the dwelling unit is $388906 -in.representative_income 388960 Representative total house income in the dwelling unit is $388960 -in.representative_income 388969 Representative total house income in the dwelling unit is $388969 -in.representative_income 389108 Representative total house income in the dwelling unit is $389108 -in.representative_income 389149 Representative total house income in the dwelling unit is $389149 -in.representative_income 389411 Representative total house income in the dwelling unit is $389411 -in.representative_income 389663 Representative total house income in the dwelling unit is $389663 -in.representative_income 389683 Representative total house income in the dwelling unit is $389683 -in.representative_income 389782 Representative total house income in the dwelling unit is $389782 -in.representative_income 389815 Representative total house income in the dwelling unit is $389815 -in.representative_income 389833 Representative total house income in the dwelling unit is $389833 -in.representative_income 389877 Representative total house income in the dwelling unit is $389877 -in.representative_income 389889 Representative total house income in the dwelling unit is $389889 -in.representative_income 390049 Representative total house income in the dwelling unit is $390049 -in.representative_income 390158 Representative total house income in the dwelling unit is $390158 -in.representative_income 390204 Representative total house income in the dwelling unit is $390204 -in.representative_income 390266 Representative total house income in the dwelling unit is $390266 -in.representative_income 390306 Representative total house income in the dwelling unit is $390306 -in.representative_income 390590 Representative total house income in the dwelling unit is $390590 -in.representative_income 390628 Representative total house income in the dwelling unit is $390628 -in.representative_income 390732 Representative total house income in the dwelling unit is $390732 -in.representative_income 390736 Representative total house income in the dwelling unit is $390736 -in.representative_income 390825 Representative total house income in the dwelling unit is $390825 -in.representative_income 390921 Representative total house income in the dwelling unit is $390921 -in.representative_income 391023 Representative total house income in the dwelling unit is $391023 -in.representative_income 391048 Representative total house income in the dwelling unit is $391048 -in.representative_income 391128 Representative total house income in the dwelling unit is $391128 -in.representative_income 391130 Representative total house income in the dwelling unit is $391130 -in.representative_income 391195 Representative total house income in the dwelling unit is $391195 -in.representative_income 391229 Representative total house income in the dwelling unit is $391229 -in.representative_income 391379 Representative total house income in the dwelling unit is $391379 -in.representative_income 391436 Representative total house income in the dwelling unit is $391436 -in.representative_income 391594 Representative total house income in the dwelling unit is $391594 -in.representative_income 391670 Representative total house income in the dwelling unit is $391670 -in.representative_income 391734 Representative total house income in the dwelling unit is $391734 -in.representative_income 391779 Representative total house income in the dwelling unit is $391779 -in.representative_income 391809 Representative total house income in the dwelling unit is $391809 -in.representative_income 391849 Representative total house income in the dwelling unit is $391849 -in.representative_income 391891 Representative total house income in the dwelling unit is $391891 -in.representative_income 391936 Representative total house income in the dwelling unit is $391936 -in.representative_income 391952 Representative total house income in the dwelling unit is $391952 -in.representative_income 392210 Representative total house income in the dwelling unit is $392210 -in.representative_income 392229 Representative total house income in the dwelling unit is $392229 -in.representative_income 392313 Representative total house income in the dwelling unit is $392313 -in.representative_income 392883 Representative total house income in the dwelling unit is $392883 -in.representative_income 392946 Representative total house income in the dwelling unit is $392946 -in.representative_income 392983 Representative total house income in the dwelling unit is $392983 -in.representative_income 393035 Representative total house income in the dwelling unit is $393035 -in.representative_income 393419 Representative total house income in the dwelling unit is $393419 -in.representative_income 393451 Representative total house income in the dwelling unit is $393451 -in.representative_income 393633 Representative total house income in the dwelling unit is $393633 -in.representative_income 393856 Representative total house income in the dwelling unit is $393856 -in.representative_income 393956 Representative total house income in the dwelling unit is $393956 -in.representative_income 393957 Representative total house income in the dwelling unit is $393957 -in.representative_income 394015 Representative total house income in the dwelling unit is $394015 -in.representative_income 394106 Representative total house income in the dwelling unit is $394106 -in.representative_income 394156 Representative total house income in the dwelling unit is $394156 -in.representative_income 394172 Representative total house income in the dwelling unit is $394172 -in.representative_income 394180 Representative total house income in the dwelling unit is $394180 -in.representative_income 394260 Representative total house income in the dwelling unit is $394260 -in.representative_income 394422 Representative total house income in the dwelling unit is $394422 -in.representative_income 394480 Representative total house income in the dwelling unit is $394480 -in.representative_income 394587 Representative total house income in the dwelling unit is $394587 -in.representative_income 394654 Representative total house income in the dwelling unit is $394654 -in.representative_income 394825 Representative total house income in the dwelling unit is $394825 -in.representative_income 394967 Representative total house income in the dwelling unit is $394967 -in.representative_income 395017 Representative total house income in the dwelling unit is $395017 -in.representative_income 395029 Representative total house income in the dwelling unit is $395029 -in.representative_income 395169 Representative total house income in the dwelling unit is $395169 -in.representative_income 395372 Representative total house income in the dwelling unit is $395372 -in.representative_income 395452 Representative total house income in the dwelling unit is $395452 -in.representative_income 395477 Representative total house income in the dwelling unit is $395477 -in.representative_income 395636 Representative total house income in the dwelling unit is $395636 -in.representative_income 395722 Representative total house income in the dwelling unit is $395722 -in.representative_income 395730 Representative total house income in the dwelling unit is $395730 -in.representative_income 395872 Representative total house income in the dwelling unit is $395872 -in.representative_income 395938 Representative total house income in the dwelling unit is $395938 -in.representative_income 396077 Representative total house income in the dwelling unit is $396077 -in.representative_income 396103 Representative total house income in the dwelling unit is $396103 -in.representative_income 396215 Representative total house income in the dwelling unit is $396215 -in.representative_income 396280 Representative total house income in the dwelling unit is $396280 -in.representative_income 396294 Representative total house income in the dwelling unit is $396294 -in.representative_income 396371 Representative total house income in the dwelling unit is $396371 -in.representative_income 396479 Representative total house income in the dwelling unit is $396479 -in.representative_income 396482 Representative total house income in the dwelling unit is $396482 -in.representative_income 396532 Representative total house income in the dwelling unit is $396532 -in.representative_income 396533 Representative total house income in the dwelling unit is $396533 -in.representative_income 396785 Representative total house income in the dwelling unit is $396785 -in.representative_income 396903 Representative total house income in the dwelling unit is $396903 -in.representative_income 397006 Representative total house income in the dwelling unit is $397006 -in.representative_income 397176 Representative total house income in the dwelling unit is $397176 -in.representative_income 397189 Representative total house income in the dwelling unit is $397189 -in.representative_income 397218 Representative total house income in the dwelling unit is $397218 -in.representative_income 397234 Representative total house income in the dwelling unit is $397234 -in.representative_income 397315 Representative total house income in the dwelling unit is $397315 -in.representative_income 397391 Representative total house income in the dwelling unit is $397391 -in.representative_income 397613 Representative total house income in the dwelling unit is $397613 -in.representative_income 397713 Representative total house income in the dwelling unit is $397713 -in.representative_income 397721 Representative total house income in the dwelling unit is $397721 -in.representative_income 397992 Representative total house income in the dwelling unit is $397992 -in.representative_income 397997 Representative total house income in the dwelling unit is $397997 -in.representative_income 398130 Representative total house income in the dwelling unit is $398130 -in.representative_income 398199 Representative total house income in the dwelling unit is $398199 -in.representative_income 398243 Representative total house income in the dwelling unit is $398243 -in.representative_income 398249 Representative total house income in the dwelling unit is $398249 -in.representative_income 398261 Representative total house income in the dwelling unit is $398261 -in.representative_income 398347 Representative total house income in the dwelling unit is $398347 -in.representative_income 398759 Representative total house income in the dwelling unit is $398759 -in.representative_income 398910 Representative total house income in the dwelling unit is $398910 -in.representative_income 398966 Representative total house income in the dwelling unit is $398966 -in.representative_income 398993 Representative total house income in the dwelling unit is $398993 -in.representative_income 399007 Representative total house income in the dwelling unit is $399007 -in.representative_income 399108 Representative total house income in the dwelling unit is $399108 -in.representative_income 399172 Representative total house income in the dwelling unit is $399172 -in.representative_income 399323 Representative total house income in the dwelling unit is $399323 -in.representative_income 399378 Representative total house income in the dwelling unit is $399378 -in.representative_income 399557 Representative total house income in the dwelling unit is $399557 -in.representative_income 399774 Representative total house income in the dwelling unit is $399774 -in.representative_income 400017 Representative total house income in the dwelling unit is $400017 -in.representative_income 400206 Representative total house income in the dwelling unit is $400206 -in.representative_income 400314 Representative total house income in the dwelling unit is $400314 -in.representative_income 400322 Representative total house income in the dwelling unit is $400322 -in.representative_income 400396 Representative total house income in the dwelling unit is $400396 -in.representative_income 400725 Representative total house income in the dwelling unit is $400725 -in.representative_income 400750 Representative total house income in the dwelling unit is $400750 -in.representative_income 400854 Representative total house income in the dwelling unit is $400854 -in.representative_income 401028 Representative total house income in the dwelling unit is $401028 -in.representative_income 401178 Representative total house income in the dwelling unit is $401178 -in.representative_income 401179 Representative total house income in the dwelling unit is $401179 -in.representative_income 401235 Representative total house income in the dwelling unit is $401235 -in.representative_income 401287 Representative total house income in the dwelling unit is $401287 -in.representative_income 401395 Representative total house income in the dwelling unit is $401395 -in.representative_income 401470 Representative total house income in the dwelling unit is $401470 -in.representative_income 401533 Representative total house income in the dwelling unit is $401533 -in.representative_income 401699 Representative total house income in the dwelling unit is $401699 -in.representative_income 401836 Representative total house income in the dwelling unit is $401836 -in.representative_income 401910 Representative total house income in the dwelling unit is $401910 -in.representative_income 402038 Representative total house income in the dwelling unit is $402038 -in.representative_income 402067 Representative total house income in the dwelling unit is $402067 -in.representative_income 402163 Representative total house income in the dwelling unit is $402163 -in.representative_income 402221 Representative total house income in the dwelling unit is $402221 -in.representative_income 402240 Representative total house income in the dwelling unit is $402240 -in.representative_income 402266 Representative total house income in the dwelling unit is $402266 -in.representative_income 402846 Representative total house income in the dwelling unit is $402846 -in.representative_income 402908 Representative total house income in the dwelling unit is $402908 -in.representative_income 403015 Representative total house income in the dwelling unit is $403015 -in.representative_income 403048 Representative total house income in the dwelling unit is $403048 -in.representative_income 403298 Representative total house income in the dwelling unit is $403298 -in.representative_income 403339 Representative total house income in the dwelling unit is $403339 -in.representative_income 403617 Representative total house income in the dwelling unit is $403617 -in.representative_income 403856 Representative total house income in the dwelling unit is $403856 -in.representative_income 404058 Representative total house income in the dwelling unit is $404058 -in.representative_income 404096 Representative total house income in the dwelling unit is $404096 -in.representative_income 404329 Representative total house income in the dwelling unit is $404329 -in.representative_income 404441 Representative total house income in the dwelling unit is $404441 -in.representative_income 404563 Representative total house income in the dwelling unit is $404563 -in.representative_income 404636 Representative total house income in the dwelling unit is $404636 -in.representative_income 404664 Representative total house income in the dwelling unit is $404664 -in.representative_income 404691 Representative total house income in the dwelling unit is $404691 -in.representative_income 405068 Representative total house income in the dwelling unit is $405068 -in.representative_income 405077 Representative total house income in the dwelling unit is $405077 -in.representative_income 405169 Representative total house income in the dwelling unit is $405169 -in.representative_income 405177 Representative total house income in the dwelling unit is $405177 -in.representative_income 405335 Representative total house income in the dwelling unit is $405335 -in.representative_income 405360 Representative total house income in the dwelling unit is $405360 -in.representative_income 405608 Representative total house income in the dwelling unit is $405608 -in.representative_income 405764 Representative total house income in the dwelling unit is $405764 -in.representative_income 405903 Representative total house income in the dwelling unit is $405903 -in.representative_income 406023 Representative total house income in the dwelling unit is $406023 -in.representative_income 406078 Representative total house income in the dwelling unit is $406078 -in.representative_income 406160 Representative total house income in the dwelling unit is $406160 -in.representative_income 406193 Representative total house income in the dwelling unit is $406193 -in.representative_income 406234 Representative total house income in the dwelling unit is $406234 -in.representative_income 406392 Representative total house income in the dwelling unit is $406392 -in.representative_income 406684 Representative total house income in the dwelling unit is $406684 -in.representative_income 406837 Representative total house income in the dwelling unit is $406837 -in.representative_income 406908 Representative total house income in the dwelling unit is $406908 -in.representative_income 407139 Representative total house income in the dwelling unit is $407139 -in.representative_income 407184 Representative total house income in the dwelling unit is $407184 -in.representative_income 407337 Representative total house income in the dwelling unit is $407337 -in.representative_income 407374 Representative total house income in the dwelling unit is $407374 -in.representative_income 407424 Representative total house income in the dwelling unit is $407424 -in.representative_income 407681 Representative total house income in the dwelling unit is $407681 -in.representative_income 407695 Representative total house income in the dwelling unit is $407695 -in.representative_income 407710 Representative total house income in the dwelling unit is $407710 -in.representative_income 407911 Representative total house income in the dwelling unit is $407911 -in.representative_income 407940 Representative total house income in the dwelling unit is $407940 -in.representative_income 408008 Representative total house income in the dwelling unit is $408008 -in.representative_income 408099 Representative total house income in the dwelling unit is $408099 -in.representative_income 408249 Representative total house income in the dwelling unit is $408249 -in.representative_income 408402 Representative total house income in the dwelling unit is $408402 -in.representative_income 408418 Representative total house income in the dwelling unit is $408418 -in.representative_income 408455 Representative total house income in the dwelling unit is $408455 -in.representative_income 408555 Representative total house income in the dwelling unit is $408555 -in.representative_income 408576 Representative total house income in the dwelling unit is $408576 -in.representative_income 408634 Representative total house income in the dwelling unit is $408634 -in.representative_income 408958 Representative total house income in the dwelling unit is $408958 -in.representative_income 409109 Representative total house income in the dwelling unit is $409109 -in.representative_income 409187 Representative total house income in the dwelling unit is $409187 -in.representative_income 409336 Representative total house income in the dwelling unit is $409336 -in.representative_income 409614 Representative total house income in the dwelling unit is $409614 -in.representative_income 409816 Representative total house income in the dwelling unit is $409816 -in.representative_income 409820 Representative total house income in the dwelling unit is $409820 -in.representative_income 409842 Representative total house income in the dwelling unit is $409842 -in.representative_income 410057 Representative total house income in the dwelling unit is $410057 -in.representative_income 410097 Representative total house income in the dwelling unit is $410097 -in.representative_income 410119 Representative total house income in the dwelling unit is $410119 -in.representative_income 410147 Representative total house income in the dwelling unit is $410147 -in.representative_income 410208 Representative total house income in the dwelling unit is $410208 -in.representative_income 410220 Representative total house income in the dwelling unit is $410220 -in.representative_income 410241 Representative total house income in the dwelling unit is $410241 -in.representative_income 410518 Representative total house income in the dwelling unit is $410518 -in.representative_income 410576 Representative total house income in the dwelling unit is $410576 -in.representative_income 410578 Representative total house income in the dwelling unit is $410578 -in.representative_income 410624 Representative total house income in the dwelling unit is $410624 -in.representative_income 410902 Representative total house income in the dwelling unit is $410902 -in.representative_income 411129 Representative total house income in the dwelling unit is $411129 -in.representative_income 411238 Representative total house income in the dwelling unit is $411238 -in.representative_income 411296 Representative total house income in the dwelling unit is $411296 -in.representative_income 411327 Representative total house income in the dwelling unit is $411327 -in.representative_income 411331 Representative total house income in the dwelling unit is $411331 -in.representative_income 411401 Representative total house income in the dwelling unit is $411401 -in.representative_income 411659 Representative total house income in the dwelling unit is $411659 -in.representative_income 411667 Representative total house income in the dwelling unit is $411667 -in.representative_income 411929 Representative total house income in the dwelling unit is $411929 -in.representative_income 412065 Representative total house income in the dwelling unit is $412065 -in.representative_income 412139 Representative total house income in the dwelling unit is $412139 -in.representative_income 412204 Representative total house income in the dwelling unit is $412204 -in.representative_income 412581 Representative total house income in the dwelling unit is $412581 -in.representative_income 412739 Representative total house income in the dwelling unit is $412739 -in.representative_income 412793 Representative total house income in the dwelling unit is $412793 -in.representative_income 412846 Representative total house income in the dwelling unit is $412846 -in.representative_income 412993 Representative total house income in the dwelling unit is $412993 -in.representative_income 413278 Representative total house income in the dwelling unit is $413278 -in.representative_income 413385 Representative total house income in the dwelling unit is $413385 -in.representative_income 413405 Representative total house income in the dwelling unit is $413405 -in.representative_income 413820 Representative total house income in the dwelling unit is $413820 -in.representative_income 413936 Representative total house income in the dwelling unit is $413936 -in.representative_income 414159 Representative total house income in the dwelling unit is $414159 -in.representative_income 414260 Representative total house income in the dwelling unit is $414260 -in.representative_income 414460 Representative total house income in the dwelling unit is $414460 -in.representative_income 414850 Representative total house income in the dwelling unit is $414850 -in.representative_income 415057 Representative total house income in the dwelling unit is $415057 -in.representative_income 415425 Representative total house income in the dwelling unit is $415425 -in.representative_income 415440 Representative total house income in the dwelling unit is $415440 -in.representative_income 415515 Representative total house income in the dwelling unit is $415515 -in.representative_income 415525 Representative total house income in the dwelling unit is $415525 -in.representative_income 415676 Representative total house income in the dwelling unit is $415676 -in.representative_income 415765 Representative total house income in the dwelling unit is $415765 -in.representative_income 415881 Representative total house income in the dwelling unit is $415881 -in.representative_income 415981 Representative total house income in the dwelling unit is $415981 -in.representative_income 416253 Representative total house income in the dwelling unit is $416253 -in.representative_income 416316 Representative total house income in the dwelling unit is $416316 -in.representative_income 416358 Representative total house income in the dwelling unit is $416358 -in.representative_income 416499 Representative total house income in the dwelling unit is $416499 -in.representative_income 416604 Representative total house income in the dwelling unit is $416604 -in.representative_income 416737 Representative total house income in the dwelling unit is $416737 -in.representative_income 416787 Representative total house income in the dwelling unit is $416787 -in.representative_income 417062 Representative total house income in the dwelling unit is $417062 -in.representative_income 417190 Representative total house income in the dwelling unit is $417190 -in.representative_income 417624 Representative total house income in the dwelling unit is $417624 -in.representative_income 417738 Representative total house income in the dwelling unit is $417738 -in.representative_income 417998 Representative total house income in the dwelling unit is $417998 -in.representative_income 418046 Representative total house income in the dwelling unit is $418046 -in.representative_income 418099 Representative total house income in the dwelling unit is $418099 -in.representative_income 418142 Representative total house income in the dwelling unit is $418142 -in.representative_income 418146 Representative total house income in the dwelling unit is $418146 -in.representative_income 418200 Representative total house income in the dwelling unit is $418200 -in.representative_income 418466 Representative total house income in the dwelling unit is $418466 -in.representative_income 418645 Representative total house income in the dwelling unit is $418645 -in.representative_income 418682 Representative total house income in the dwelling unit is $418682 -in.representative_income 418770 Representative total house income in the dwelling unit is $418770 -in.representative_income 418806 Representative total house income in the dwelling unit is $418806 -in.representative_income 418975 Representative total house income in the dwelling unit is $418975 -in.representative_income 418995 Representative total house income in the dwelling unit is $418995 -in.representative_income 419210 Representative total house income in the dwelling unit is $419210 -in.representative_income 419222 Representative total house income in the dwelling unit is $419222 -in.representative_income 419719 Representative total house income in the dwelling unit is $419719 -in.representative_income 419733 Representative total house income in the dwelling unit is $419733 -in.representative_income 419801 Representative total house income in the dwelling unit is $419801 -in.representative_income 419839 Representative total house income in the dwelling unit is $419839 -in.representative_income 420110 Representative total house income in the dwelling unit is $420110 -in.representative_income 420220 Representative total house income in the dwelling unit is $420220 -in.representative_income 420303 Representative total house income in the dwelling unit is $420303 -in.representative_income 420624 Representative total house income in the dwelling unit is $420624 -in.representative_income 420735 Representative total house income in the dwelling unit is $420735 -in.representative_income 420792 Representative total house income in the dwelling unit is $420792 -in.representative_income 420936 Representative total house income in the dwelling unit is $420936 -in.representative_income 421230 Representative total house income in the dwelling unit is $421230 -in.representative_income 421245 Representative total house income in the dwelling unit is $421245 -in.representative_income 421383 Representative total house income in the dwelling unit is $421383 -in.representative_income 421470 Representative total house income in the dwelling unit is $421470 -in.representative_income 421509 Representative total house income in the dwelling unit is $421509 -in.representative_income 421837 Representative total house income in the dwelling unit is $421837 -in.representative_income 421843 Representative total house income in the dwelling unit is $421843 -in.representative_income 421865 Representative total house income in the dwelling unit is $421865 -in.representative_income 422053 Representative total house income in the dwelling unit is $422053 -in.representative_income 422241 Representative total house income in the dwelling unit is $422241 -in.representative_income 422248 Representative total house income in the dwelling unit is $422248 -in.representative_income 422463 Representative total house income in the dwelling unit is $422463 -in.representative_income 422510 Representative total house income in the dwelling unit is $422510 -in.representative_income 422680 Representative total house income in the dwelling unit is $422680 -in.representative_income 422767 Representative total house income in the dwelling unit is $422767 -in.representative_income 422939 Representative total house income in the dwelling unit is $422939 -in.representative_income 422948 Representative total house income in the dwelling unit is $422948 -in.representative_income 423108 Representative total house income in the dwelling unit is $423108 -in.representative_income 423154 Representative total house income in the dwelling unit is $423154 -in.representative_income 423210 Representative total house income in the dwelling unit is $423210 -in.representative_income 423544 Representative total house income in the dwelling unit is $423544 -in.representative_income 423721 Representative total house income in the dwelling unit is $423721 -in.representative_income 423926 Representative total house income in the dwelling unit is $423926 -in.representative_income 424030 Representative total house income in the dwelling unit is $424030 -in.representative_income 424261 Representative total house income in the dwelling unit is $424261 -in.representative_income 424517 Representative total house income in the dwelling unit is $424517 -in.representative_income 424545 Representative total house income in the dwelling unit is $424545 -in.representative_income 424867 Representative total house income in the dwelling unit is $424867 -in.representative_income 424959 Representative total house income in the dwelling unit is $424959 -in.representative_income 424968 Representative total house income in the dwelling unit is $424968 -in.representative_income 424969 Representative total house income in the dwelling unit is $424969 -in.representative_income 425006 Representative total house income in the dwelling unit is $425006 -in.representative_income 425217 Representative total house income in the dwelling unit is $425217 -in.representative_income 425383 Representative total house income in the dwelling unit is $425383 -in.representative_income 425408 Representative total house income in the dwelling unit is $425408 -in.representative_income 425569 Representative total house income in the dwelling unit is $425569 -in.representative_income 425622 Representative total house income in the dwelling unit is $425622 -in.representative_income 425639 Representative total house income in the dwelling unit is $425639 -in.representative_income 426029 Representative total house income in the dwelling unit is $426029 -in.representative_income 426060 Representative total house income in the dwelling unit is $426060 -in.representative_income 426159 Representative total house income in the dwelling unit is $426159 -in.representative_income 426374 Representative total house income in the dwelling unit is $426374 -in.representative_income 426506 Representative total house income in the dwelling unit is $426506 -in.representative_income 426786 Representative total house income in the dwelling unit is $426786 -in.representative_income 426799 Representative total house income in the dwelling unit is $426799 -in.representative_income 426872 Representative total house income in the dwelling unit is $426872 -in.representative_income 427021 Representative total house income in the dwelling unit is $427021 -in.representative_income 427115 Representative total house income in the dwelling unit is $427115 -in.representative_income 427232 Representative total house income in the dwelling unit is $427232 -in.representative_income 427233 Representative total house income in the dwelling unit is $427233 -in.representative_income 427291 Representative total house income in the dwelling unit is $427291 -in.representative_income 427325 Representative total house income in the dwelling unit is $427325 -in.representative_income 427352 Representative total house income in the dwelling unit is $427352 -in.representative_income 427467 Representative total house income in the dwelling unit is $427467 -in.representative_income 427537 Representative total house income in the dwelling unit is $427537 -in.representative_income 427853 Representative total house income in the dwelling unit is $427853 -in.representative_income 427866 Representative total house income in the dwelling unit is $427866 -in.representative_income 428170 Representative total house income in the dwelling unit is $428170 -in.representative_income 428191 Representative total house income in the dwelling unit is $428191 -in.representative_income 428299 Representative total house income in the dwelling unit is $428299 -in.representative_income 428307 Representative total house income in the dwelling unit is $428307 -in.representative_income 429084 Representative total house income in the dwelling unit is $429084 -in.representative_income 429224 Representative total house income in the dwelling unit is $429224 -in.representative_income 429312 Representative total house income in the dwelling unit is $429312 -in.representative_income 429342 Representative total house income in the dwelling unit is $429342 -in.representative_income 429380 Representative total house income in the dwelling unit is $429380 -in.representative_income 429487 Representative total house income in the dwelling unit is $429487 -in.representative_income 429755 Representative total house income in the dwelling unit is $429755 -in.representative_income 430027 Representative total house income in the dwelling unit is $430027 -in.representative_income 430068 Representative total house income in the dwelling unit is $430068 -in.representative_income 430115 Representative total house income in the dwelling unit is $430115 -in.representative_income 430178 Representative total house income in the dwelling unit is $430178 -in.representative_income 430193 Representative total house income in the dwelling unit is $430193 -in.representative_income 430279 Representative total house income in the dwelling unit is $430279 -in.representative_income 430322 Representative total house income in the dwelling unit is $430322 -in.representative_income 430453 Representative total house income in the dwelling unit is $430453 -in.representative_income 430912 Representative total house income in the dwelling unit is $430912 -in.representative_income 431043 Representative total house income in the dwelling unit is $431043 -in.representative_income 431107 Representative total house income in the dwelling unit is $431107 -in.representative_income 431147 Representative total house income in the dwelling unit is $431147 -in.representative_income 431432 Representative total house income in the dwelling unit is $431432 -in.representative_income 431527 Representative total house income in the dwelling unit is $431527 -in.representative_income 431534 Representative total house income in the dwelling unit is $431534 -in.representative_income 431939 Representative total house income in the dwelling unit is $431939 -in.representative_income 432178 Representative total house income in the dwelling unit is $432178 -in.representative_income 432188 Representative total house income in the dwelling unit is $432188 -in.representative_income 432210 Representative total house income in the dwelling unit is $432210 -in.representative_income 432494 Representative total house income in the dwelling unit is $432494 -in.representative_income 432600 Representative total house income in the dwelling unit is $432600 -in.representative_income 432728 Representative total house income in the dwelling unit is $432728 -in.representative_income 433210 Representative total house income in the dwelling unit is $433210 -in.representative_income 433352 Representative total house income in the dwelling unit is $433352 -in.representative_income 433409 Representative total house income in the dwelling unit is $433409 -in.representative_income 433443 Representative total house income in the dwelling unit is $433443 -in.representative_income 433766 Representative total house income in the dwelling unit is $433766 -in.representative_income 433857 Representative total house income in the dwelling unit is $433857 -in.representative_income 434242 Representative total house income in the dwelling unit is $434242 -in.representative_income 434318 Representative total house income in the dwelling unit is $434318 -in.representative_income 434349 Representative total house income in the dwelling unit is $434349 -in.representative_income 434362 Representative total house income in the dwelling unit is $434362 -in.representative_income 434447 Representative total house income in the dwelling unit is $434447 -in.representative_income 434463 Representative total house income in the dwelling unit is $434463 -in.representative_income 434498 Representative total house income in the dwelling unit is $434498 -in.representative_income 434747 Representative total house income in the dwelling unit is $434747 -in.representative_income 434757 Representative total house income in the dwelling unit is $434757 -in.representative_income 434867 Representative total house income in the dwelling unit is $434867 -in.representative_income 435273 Representative total house income in the dwelling unit is $435273 -in.representative_income 435373 Representative total house income in the dwelling unit is $435373 -in.representative_income 435446 Representative total house income in the dwelling unit is $435446 -in.representative_income 435451 Representative total house income in the dwelling unit is $435451 -in.representative_income 435552 Representative total house income in the dwelling unit is $435552 -in.representative_income 435820 Representative total house income in the dwelling unit is $435820 -in.representative_income 435928 Representative total house income in the dwelling unit is $435928 -in.representative_income 435974 Representative total house income in the dwelling unit is $435974 -in.representative_income 436079 Representative total house income in the dwelling unit is $436079 -in.representative_income 436304 Representative total house income in the dwelling unit is $436304 -in.representative_income 436655 Representative total house income in the dwelling unit is $436655 -in.representative_income 436674 Representative total house income in the dwelling unit is $436674 -in.representative_income 436764 Representative total house income in the dwelling unit is $436764 -in.representative_income 437140 Representative total house income in the dwelling unit is $437140 -in.representative_income 437266 Representative total house income in the dwelling unit is $437266 -in.representative_income 437393 Representative total house income in the dwelling unit is $437393 -in.representative_income 437556 Representative total house income in the dwelling unit is $437556 -in.representative_income 437590 Representative total house income in the dwelling unit is $437590 -in.representative_income 437662 Representative total house income in the dwelling unit is $437662 -in.representative_income 437872 Representative total house income in the dwelling unit is $437872 -in.representative_income 437967 Representative total house income in the dwelling unit is $437967 -in.representative_income 437999 Representative total house income in the dwelling unit is $437999 -in.representative_income 438290 Representative total house income in the dwelling unit is $438290 -in.representative_income 438292 Representative total house income in the dwelling unit is $438292 -in.representative_income 438367 Representative total house income in the dwelling unit is $438367 -in.representative_income 438403 Representative total house income in the dwelling unit is $438403 -in.representative_income 438611 Representative total house income in the dwelling unit is $438611 -in.representative_income 438706 Representative total house income in the dwelling unit is $438706 -in.representative_income 438715 Representative total house income in the dwelling unit is $438715 -in.representative_income 438934 Representative total house income in the dwelling unit is $438934 -in.representative_income 439050 Representative total house income in the dwelling unit is $439050 -in.representative_income 439193 Representative total house income in the dwelling unit is $439193 -in.representative_income 439398 Representative total house income in the dwelling unit is $439398 -in.representative_income 439413 Representative total house income in the dwelling unit is $439413 -in.representative_income 439427 Representative total house income in the dwelling unit is $439427 -in.representative_income 439876 Representative total house income in the dwelling unit is $439876 -in.representative_income 439967 Representative total house income in the dwelling unit is $439967 -in.representative_income 440193 Representative total house income in the dwelling unit is $440193 -in.representative_income 440224 Representative total house income in the dwelling unit is $440224 -in.representative_income 440322 Representative total house income in the dwelling unit is $440322 -in.representative_income 440430 Representative total house income in the dwelling unit is $440430 -in.representative_income 440562 Representative total house income in the dwelling unit is $440562 -in.representative_income 440832 Representative total house income in the dwelling unit is $440832 -in.representative_income 440945 Representative total house income in the dwelling unit is $440945 -in.representative_income 441029 Representative total house income in the dwelling unit is $441029 -in.representative_income 441048 Representative total house income in the dwelling unit is $441048 -in.representative_income 441188 Representative total house income in the dwelling unit is $441188 -in.representative_income 441295 Representative total house income in the dwelling unit is $441295 -in.representative_income 441572 Representative total house income in the dwelling unit is $441572 -in.representative_income 441879 Representative total house income in the dwelling unit is $441879 -in.representative_income 441912 Representative total house income in the dwelling unit is $441912 -in.representative_income 442221 Representative total house income in the dwelling unit is $442221 -in.representative_income 442261 Representative total house income in the dwelling unit is $442261 -in.representative_income 442365 Representative total house income in the dwelling unit is $442365 -in.representative_income 442453 Representative total house income in the dwelling unit is $442453 -in.representative_income 442493 Representative total house income in the dwelling unit is $442493 -in.representative_income 442561 Representative total house income in the dwelling unit is $442561 -in.representative_income 442636 Representative total house income in the dwelling unit is $442636 -in.representative_income 442934 Representative total house income in the dwelling unit is $442934 -in.representative_income 442992 Representative total house income in the dwelling unit is $442992 -in.representative_income 443215 Representative total house income in the dwelling unit is $443215 -in.representative_income 443454 Representative total house income in the dwelling unit is $443454 -in.representative_income 443656 Representative total house income in the dwelling unit is $443656 -in.representative_income 443730 Representative total house income in the dwelling unit is $443730 -in.representative_income 443989 Representative total house income in the dwelling unit is $443989 -in.representative_income 444556 Representative total house income in the dwelling unit is $444556 -in.representative_income 445154 Representative total house income in the dwelling unit is $445154 -in.representative_income 445201 Representative total house income in the dwelling unit is $445201 -in.representative_income 445381 Representative total house income in the dwelling unit is $445381 -in.representative_income 445587 Representative total house income in the dwelling unit is $445587 -in.representative_income 445887 Representative total house income in the dwelling unit is $445887 -in.representative_income 446233 Representative total house income in the dwelling unit is $446233 -in.representative_income 446234 Representative total house income in the dwelling unit is $446234 -in.representative_income 447153 Representative total house income in the dwelling unit is $447153 -in.representative_income 447205 Representative total house income in the dwelling unit is $447205 -in.representative_income 447315 Representative total house income in the dwelling unit is $447315 -in.representative_income 447494 Representative total house income in the dwelling unit is $447494 -in.representative_income 447628 Representative total house income in the dwelling unit is $447628 -in.representative_income 447650 Representative total house income in the dwelling unit is $447650 -in.representative_income 448165 Representative total house income in the dwelling unit is $448165 -in.representative_income 448208 Representative total house income in the dwelling unit is $448208 -in.representative_income 448681 Representative total house income in the dwelling unit is $448681 -in.representative_income 448702 Representative total house income in the dwelling unit is $448702 -in.representative_income 448917 Representative total house income in the dwelling unit is $448917 -in.representative_income 449473 Representative total house income in the dwelling unit is $449473 -in.representative_income 449475 Representative total house income in the dwelling unit is $449475 -in.representative_income 449515 Representative total house income in the dwelling unit is $449515 -in.representative_income 449579 Representative total house income in the dwelling unit is $449579 -in.representative_income 449775 Representative total house income in the dwelling unit is $449775 -in.representative_income 449882 Representative total house income in the dwelling unit is $449882 -in.representative_income 450204 Representative total house income in the dwelling unit is $450204 -in.representative_income 450312 Representative total house income in the dwelling unit is $450312 -in.representative_income 450525 Representative total house income in the dwelling unit is $450525 -in.representative_income 450556 Representative total house income in the dwelling unit is $450556 -in.representative_income 450745 Representative total house income in the dwelling unit is $450745 -in.representative_income 450848 Representative total house income in the dwelling unit is $450848 -in.representative_income 450951 Representative total house income in the dwelling unit is $450951 -in.representative_income 451278 Representative total house income in the dwelling unit is $451278 -in.representative_income 451372 Representative total house income in the dwelling unit is $451372 -in.representative_income 451385 Representative total house income in the dwelling unit is $451385 -in.representative_income 451415 Representative total house income in the dwelling unit is $451415 -in.representative_income 451420 Representative total house income in the dwelling unit is $451420 -in.representative_income 451636 Representative total house income in the dwelling unit is $451636 -in.representative_income 451715 Representative total house income in the dwelling unit is $451715 -in.representative_income 451737 Representative total house income in the dwelling unit is $451737 -in.representative_income 451776 Representative total house income in the dwelling unit is $451776 -in.representative_income 451900 Representative total house income in the dwelling unit is $451900 -in.representative_income 451922 Representative total house income in the dwelling unit is $451922 -in.representative_income 452040 Representative total house income in the dwelling unit is $452040 -in.representative_income 452137 Representative total house income in the dwelling unit is $452137 -in.representative_income 452242 Representative total house income in the dwelling unit is $452242 -in.representative_income 452285 Representative total house income in the dwelling unit is $452285 -in.representative_income 452374 Representative total house income in the dwelling unit is $452374 -in.representative_income 452426 Representative total house income in the dwelling unit is $452426 -in.representative_income 452566 Representative total house income in the dwelling unit is $452566 -in.representative_income 452717 Representative total house income in the dwelling unit is $452717 -in.representative_income 452808 Representative total house income in the dwelling unit is $452808 -in.representative_income 452911 Representative total house income in the dwelling unit is $452911 -in.representative_income 452995 Representative total house income in the dwelling unit is $452995 -in.representative_income 453149 Representative total house income in the dwelling unit is $453149 -in.representative_income 453220 Representative total house income in the dwelling unit is $453220 -in.representative_income 453353 Representative total house income in the dwelling unit is $453353 -in.representative_income 453555 Representative total house income in the dwelling unit is $453555 -in.representative_income 453797 Representative total house income in the dwelling unit is $453797 -in.representative_income 453839 Representative total house income in the dwelling unit is $453839 -in.representative_income 453959 Representative total house income in the dwelling unit is $453959 -in.representative_income 454219 Representative total house income in the dwelling unit is $454219 -in.representative_income 454355 Representative total house income in the dwelling unit is $454355 -in.representative_income 454496 Representative total house income in the dwelling unit is $454496 -in.representative_income 454565 Representative total house income in the dwelling unit is $454565 -in.representative_income 454664 Representative total house income in the dwelling unit is $454664 -in.representative_income 454870 Representative total house income in the dwelling unit is $454870 -in.representative_income 455143 Representative total house income in the dwelling unit is $455143 -in.representative_income 455207 Representative total house income in the dwelling unit is $455207 -in.representative_income 455274 Representative total house income in the dwelling unit is $455274 -in.representative_income 455418 Representative total house income in the dwelling unit is $455418 -in.representative_income 455589 Representative total house income in the dwelling unit is $455589 -in.representative_income 455600 Representative total house income in the dwelling unit is $455600 -in.representative_income 455695 Representative total house income in the dwelling unit is $455695 -in.representative_income 455959 Representative total house income in the dwelling unit is $455959 -in.representative_income 456080 Representative total house income in the dwelling unit is $456080 -in.representative_income 456222 Representative total house income in the dwelling unit is $456222 -in.representative_income 456592 Representative total house income in the dwelling unit is $456592 -in.representative_income 457147 Representative total house income in the dwelling unit is $457147 -in.representative_income 457290 Representative total house income in the dwelling unit is $457290 -in.representative_income 457964 Representative total house income in the dwelling unit is $457964 -in.representative_income 458332 Representative total house income in the dwelling unit is $458332 -in.representative_income 458363 Representative total house income in the dwelling unit is $458363 -in.representative_income 458553 Representative total house income in the dwelling unit is $458553 -in.representative_income 458583 Representative total house income in the dwelling unit is $458583 -in.representative_income 458753 Representative total house income in the dwelling unit is $458753 -in.representative_income 458767 Representative total house income in the dwelling unit is $458767 -in.representative_income 458859 Representative total house income in the dwelling unit is $458859 -in.representative_income 458900 Representative total house income in the dwelling unit is $458900 -in.representative_income 459009 Representative total house income in the dwelling unit is $459009 -in.representative_income 459200 Representative total house income in the dwelling unit is $459200 -in.representative_income 459386 Representative total house income in the dwelling unit is $459386 -in.representative_income 459426 Representative total house income in the dwelling unit is $459426 -in.representative_income 459436 Representative total house income in the dwelling unit is $459436 -in.representative_income 459808 Representative total house income in the dwelling unit is $459808 -in.representative_income 459818 Representative total house income in the dwelling unit is $459818 -in.representative_income 460028 Representative total house income in the dwelling unit is $460028 -in.representative_income 460124 Representative total house income in the dwelling unit is $460124 -in.representative_income 460280 Representative total house income in the dwelling unit is $460280 -in.representative_income 460348 Representative total house income in the dwelling unit is $460348 -in.representative_income 460510 Representative total house income in the dwelling unit is $460510 -in.representative_income 460626 Representative total house income in the dwelling unit is $460626 -in.representative_income 460863 Representative total house income in the dwelling unit is $460863 -in.representative_income 460968 Representative total house income in the dwelling unit is $460968 -in.representative_income 460993 Representative total house income in the dwelling unit is $460993 -in.representative_income 461059 Representative total house income in the dwelling unit is $461059 -in.representative_income 461368 Representative total house income in the dwelling unit is $461368 -in.representative_income 461583 Representative total house income in the dwelling unit is $461583 -in.representative_income 461690 Representative total house income in the dwelling unit is $461690 -in.representative_income 461793 Representative total house income in the dwelling unit is $461793 -in.representative_income 461901 Representative total house income in the dwelling unit is $461901 -in.representative_income 462091 Representative total house income in the dwelling unit is $462091 -in.representative_income 462181 Representative total house income in the dwelling unit is $462181 -in.representative_income 462646 Representative total house income in the dwelling unit is $462646 -in.representative_income 462882 Representative total house income in the dwelling unit is $462882 -in.representative_income 462972 Representative total house income in the dwelling unit is $462972 -in.representative_income 463521 Representative total house income in the dwelling unit is $463521 -in.representative_income 463730 Representative total house income in the dwelling unit is $463730 -in.representative_income 463900 Representative total house income in the dwelling unit is $463900 -in.representative_income 464153 Representative total house income in the dwelling unit is $464153 -in.representative_income 464386 Representative total house income in the dwelling unit is $464386 -in.representative_income 464396 Representative total house income in the dwelling unit is $464396 -in.representative_income 464602 Representative total house income in the dwelling unit is $464602 -in.representative_income 464667 Representative total house income in the dwelling unit is $464667 -in.representative_income 464803 Representative total house income in the dwelling unit is $464803 -in.representative_income 464818 Representative total house income in the dwelling unit is $464818 -in.representative_income 464829 Representative total house income in the dwelling unit is $464829 -in.representative_income 465165 Representative total house income in the dwelling unit is $465165 -in.representative_income 465185 Representative total house income in the dwelling unit is $465185 -in.representative_income 465683 Representative total house income in the dwelling unit is $465683 -in.representative_income 465876 Representative total house income in the dwelling unit is $465876 -in.representative_income 466136 Representative total house income in the dwelling unit is $466136 -in.representative_income 466216 Representative total house income in the dwelling unit is $466216 -in.representative_income 466732 Representative total house income in the dwelling unit is $466732 -in.representative_income 466951 Representative total house income in the dwelling unit is $466951 -in.representative_income 466993 Representative total house income in the dwelling unit is $466993 -in.representative_income 467191 Representative total house income in the dwelling unit is $467191 -in.representative_income 467195 Representative total house income in the dwelling unit is $467195 -in.representative_income 467247 Representative total house income in the dwelling unit is $467247 -in.representative_income 467697 Representative total house income in the dwelling unit is $467697 -in.representative_income 468024 Representative total house income in the dwelling unit is $468024 -in.representative_income 468245 Representative total house income in the dwelling unit is $468245 -in.representative_income 468303 Representative total house income in the dwelling unit is $468303 -in.representative_income 468707 Representative total house income in the dwelling unit is $468707 -in.representative_income 468795 Representative total house income in the dwelling unit is $468795 -in.representative_income 469010 Representative total house income in the dwelling unit is $469010 -in.representative_income 469300 Representative total house income in the dwelling unit is $469300 -in.representative_income 469342 Representative total house income in the dwelling unit is $469342 -in.representative_income 469827 Representative total house income in the dwelling unit is $469827 -in.representative_income 470171 Representative total house income in the dwelling unit is $470171 -in.representative_income 470291 Representative total house income in the dwelling unit is $470291 -in.representative_income 470355 Representative total house income in the dwelling unit is $470355 -in.representative_income 470651 Representative total house income in the dwelling unit is $470651 -in.representative_income 470728 Representative total house income in the dwelling unit is $470728 -in.representative_income 471409 Representative total house income in the dwelling unit is $471409 -in.representative_income 471738 Representative total house income in the dwelling unit is $471738 -in.representative_income 471949 Representative total house income in the dwelling unit is $471949 -in.representative_income 472598 Representative total house income in the dwelling unit is $472598 -in.representative_income 472748 Representative total house income in the dwelling unit is $472748 -in.representative_income 473436 Representative total house income in the dwelling unit is $473436 -in.representative_income 473678 Representative total house income in the dwelling unit is $473678 -in.representative_income 473758 Representative total house income in the dwelling unit is $473758 -in.representative_income 473859 Representative total house income in the dwelling unit is $473859 -in.representative_income 474045 Representative total house income in the dwelling unit is $474045 -in.representative_income 474467 Representative total house income in the dwelling unit is $474467 -in.representative_income 474468 Representative total house income in the dwelling unit is $474468 -in.representative_income 474571 Representative total house income in the dwelling unit is $474571 -in.representative_income 474572 Representative total house income in the dwelling unit is $474572 -in.representative_income 475407 Representative total house income in the dwelling unit is $475407 -in.representative_income 475499 Representative total house income in the dwelling unit is $475499 -in.representative_income 475538 Representative total house income in the dwelling unit is $475538 -in.representative_income 475778 Representative total house income in the dwelling unit is $475778 -in.representative_income 476682 Representative total house income in the dwelling unit is $476682 -in.representative_income 476687 Representative total house income in the dwelling unit is $476687 -in.representative_income 476788 Representative total house income in the dwelling unit is $476788 -in.representative_income 477568 Representative total house income in the dwelling unit is $477568 -in.representative_income 477684 Representative total house income in the dwelling unit is $477684 -in.representative_income 478108 Representative total house income in the dwelling unit is $478108 -in.representative_income 478436 Representative total house income in the dwelling unit is $478436 -in.representative_income 478491 Representative total house income in the dwelling unit is $478491 -in.representative_income 478648 Representative total house income in the dwelling unit is $478648 -in.representative_income 478791 Representative total house income in the dwelling unit is $478791 -in.representative_income 478809 Representative total house income in the dwelling unit is $478809 -in.representative_income 479510 Representative total house income in the dwelling unit is $479510 -in.representative_income 479832 Representative total house income in the dwelling unit is $479832 -in.representative_income 479846 Representative total house income in the dwelling unit is $479846 -in.representative_income 480526 Representative total house income in the dwelling unit is $480526 -in.representative_income 480829 Representative total house income in the dwelling unit is $480829 -in.representative_income 481132 Representative total house income in the dwelling unit is $481132 -in.representative_income 481479 Representative total house income in the dwelling unit is $481479 -in.representative_income 481688 Representative total house income in the dwelling unit is $481688 -in.representative_income 481889 Representative total house income in the dwelling unit is $481889 -in.representative_income 481958 Representative total house income in the dwelling unit is $481958 -in.representative_income 481979 Representative total house income in the dwelling unit is $481979 -in.representative_income 482086 Representative total house income in the dwelling unit is $482086 -in.representative_income 482204 Representative total house income in the dwelling unit is $482204 -in.representative_income 482430 Representative total house income in the dwelling unit is $482430 -in.representative_income 482615 Representative total house income in the dwelling unit is $482615 -in.representative_income 482719 Representative total house income in the dwelling unit is $482719 -in.representative_income 483266 Representative total house income in the dwelling unit is $483266 -in.representative_income 483647 Representative total house income in the dwelling unit is $483647 -in.representative_income 483751 Representative total house income in the dwelling unit is $483751 -in.representative_income 483859 Representative total house income in the dwelling unit is $483859 -in.representative_income 484051 Representative total house income in the dwelling unit is $484051 -in.representative_income 484061 Representative total house income in the dwelling unit is $484061 -in.representative_income 484064 Representative total house income in the dwelling unit is $484064 -in.representative_income 484264 Representative total house income in the dwelling unit is $484264 -in.representative_income 484870 Representative total house income in the dwelling unit is $484870 -in.representative_income 484885 Representative total house income in the dwelling unit is $484885 -in.representative_income 485199 Representative total house income in the dwelling unit is $485199 -in.representative_income 485298 Representative total house income in the dwelling unit is $485298 -in.representative_income 485347 Representative total house income in the dwelling unit is $485347 -in.representative_income 485814 Representative total house income in the dwelling unit is $485814 -in.representative_income 486174 Representative total house income in the dwelling unit is $486174 -in.representative_income 486212 Representative total house income in the dwelling unit is $486212 -in.representative_income 486846 Representative total house income in the dwelling unit is $486846 -in.representative_income 487228 Representative total house income in the dwelling unit is $487228 -in.representative_income 487292 Representative total house income in the dwelling unit is $487292 -in.representative_income 487346 Representative total house income in the dwelling unit is $487346 -in.representative_income 487356 Representative total house income in the dwelling unit is $487356 -in.representative_income 487877 Representative total house income in the dwelling unit is $487877 -in.representative_income 487900 Representative total house income in the dwelling unit is $487900 -in.representative_income 487920 Representative total house income in the dwelling unit is $487920 -in.representative_income 487991 Representative total house income in the dwelling unit is $487991 -in.representative_income 488072 Representative total house income in the dwelling unit is $488072 -in.representative_income 488283 Representative total house income in the dwelling unit is $488283 -in.representative_income 488373 Representative total house income in the dwelling unit is $488373 -in.representative_income 488705 Representative total house income in the dwelling unit is $488705 -in.representative_income 488908 Representative total house income in the dwelling unit is $488908 -in.representative_income 489020 Representative total house income in the dwelling unit is $489020 -in.representative_income 489171 Representative total house income in the dwelling unit is $489171 -in.representative_income 489337 Representative total house income in the dwelling unit is $489337 -in.representative_income 490533 Representative total house income in the dwelling unit is $490533 -in.representative_income 490971 Representative total house income in the dwelling unit is $490971 -in.representative_income 491614 Representative total house income in the dwelling unit is $491614 -in.representative_income 491639 Representative total house income in the dwelling unit is $491639 -in.representative_income 492042 Representative total house income in the dwelling unit is $492042 -in.representative_income 492078 Representative total house income in the dwelling unit is $492078 -in.representative_income 492694 Representative total house income in the dwelling unit is $492694 -in.representative_income 493343 Representative total house income in the dwelling unit is $493343 -in.representative_income 493555 Representative total house income in the dwelling unit is $493555 -in.representative_income 493787 Representative total house income in the dwelling unit is $493787 -in.representative_income 493961 Representative total house income in the dwelling unit is $493961 -in.representative_income 494109 Representative total house income in the dwelling unit is $494109 -in.representative_income 494272 Representative total house income in the dwelling unit is $494272 -in.representative_income 494610 Representative total house income in the dwelling unit is $494610 -in.representative_income 494860 Representative total house income in the dwelling unit is $494860 -in.representative_income 494971 Representative total house income in the dwelling unit is $494971 -in.representative_income 495138 Representative total house income in the dwelling unit is $495138 -in.representative_income 496298 Representative total house income in the dwelling unit is $496298 -in.representative_income 496470 Representative total house income in the dwelling unit is $496470 -in.representative_income 496991 Representative total house income in the dwelling unit is $496991 -in.representative_income 497016 Representative total house income in the dwelling unit is $497016 -in.representative_income 497160 Representative total house income in the dwelling unit is $497160 -in.representative_income 497774 Representative total house income in the dwelling unit is $497774 -in.representative_income 498416 Representative total house income in the dwelling unit is $498416 -in.representative_income 499223 Representative total house income in the dwelling unit is $499223 -in.representative_income 499883 Representative total house income in the dwelling unit is $499883 -in.representative_income 500022 Representative total house income in the dwelling unit is $500022 -in.representative_income 500032 Representative total house income in the dwelling unit is $500032 -in.representative_income 500254 Representative total house income in the dwelling unit is $500254 -in.representative_income 500564 Representative total house income in the dwelling unit is $500564 -in.representative_income 500938 Representative total house income in the dwelling unit is $500938 -in.representative_income 501032 Representative total house income in the dwelling unit is $501032 -in.representative_income 501234 Representative total house income in the dwelling unit is $501234 -in.representative_income 501300 Representative total house income in the dwelling unit is $501300 -in.representative_income 501492 Representative total house income in the dwelling unit is $501492 -in.representative_income 501554 Representative total house income in the dwelling unit is $501554 -in.representative_income 502042 Representative total house income in the dwelling unit is $502042 -in.representative_income 502345 Representative total house income in the dwelling unit is $502345 -in.representative_income 503052 Representative total house income in the dwelling unit is $503052 -in.representative_income 503349 Representative total house income in the dwelling unit is $503349 -in.representative_income 503447 Representative total house income in the dwelling unit is $503447 -in.representative_income 503574 Representative total house income in the dwelling unit is $503574 -in.representative_income 503607 Representative total house income in the dwelling unit is $503607 -in.representative_income 504091 Representative total house income in the dwelling unit is $504091 -in.representative_income 504380 Representative total house income in the dwelling unit is $504380 -in.representative_income 504521 Representative total house income in the dwelling unit is $504521 -in.representative_income 504903 Representative total house income in the dwelling unit is $504903 -in.representative_income 505073 Representative total house income in the dwelling unit is $505073 -in.representative_income 505156 Representative total house income in the dwelling unit is $505156 -in.representative_income 505721 Representative total house income in the dwelling unit is $505721 -in.representative_income 505745 Representative total house income in the dwelling unit is $505745 -in.representative_income 506083 Representative total house income in the dwelling unit is $506083 -in.representative_income 506210 Representative total house income in the dwelling unit is $506210 -in.representative_income 507093 Representative total house income in the dwelling unit is $507093 -in.representative_income 507174 Representative total house income in the dwelling unit is $507174 -in.representative_income 507265 Representative total house income in the dwelling unit is $507265 -in.representative_income 507295 Representative total house income in the dwelling unit is $507295 -in.representative_income 507742 Representative total house income in the dwelling unit is $507742 -in.representative_income 508815 Representative total house income in the dwelling unit is $508815 -in.representative_income 509118 Representative total house income in the dwelling unit is $509118 -in.representative_income 509374 Representative total house income in the dwelling unit is $509374 -in.representative_income 510123 Representative total house income in the dwelling unit is $510123 -in.representative_income 510376 Representative total house income in the dwelling unit is $510376 -in.representative_income 510568 Representative total house income in the dwelling unit is $510568 -in.representative_income 510846 Representative total house income in the dwelling unit is $510846 -in.representative_income 511133 Representative total house income in the dwelling unit is $511133 -in.representative_income 511335 Representative total house income in the dwelling unit is $511335 -in.representative_income 511436 Representative total house income in the dwelling unit is $511436 -in.representative_income 511600 Representative total house income in the dwelling unit is $511600 -in.representative_income 511938 Representative total house income in the dwelling unit is $511938 -in.representative_income 513659 Representative total house income in the dwelling unit is $513659 -in.representative_income 514164 Representative total house income in the dwelling unit is $514164 -in.representative_income 514332 Representative total house income in the dwelling unit is $514332 -in.representative_income 514504 Representative total house income in the dwelling unit is $514504 -in.representative_income 514695 Representative total house income in the dwelling unit is $514695 -in.representative_income 515004 Representative total house income in the dwelling unit is $515004 -in.representative_income 515073 Representative total house income in the dwelling unit is $515073 -in.representative_income 515174 Representative total house income in the dwelling unit is $515174 -in.representative_income 515384 Representative total house income in the dwelling unit is $515384 -in.representative_income 515726 Representative total house income in the dwelling unit is $515726 -in.representative_income 516032 Representative total house income in the dwelling unit is $516032 -in.representative_income 516329 Representative total house income in the dwelling unit is $516329 -in.representative_income 517068 Representative total house income in the dwelling unit is $517068 -in.representative_income 517194 Representative total house income in the dwelling unit is $517194 -in.representative_income 517402 Representative total house income in the dwelling unit is $517402 -in.representative_income 517545 Representative total house income in the dwelling unit is $517545 -in.representative_income 517789 Representative total house income in the dwelling unit is $517789 -in.representative_income 518204 Representative total house income in the dwelling unit is $518204 -in.representative_income 518476 Representative total house income in the dwelling unit is $518476 -in.representative_income 518581 Representative total house income in the dwelling unit is $518581 -in.representative_income 518820 Representative total house income in the dwelling unit is $518820 -in.representative_income 518866 Representative total house income in the dwelling unit is $518866 -in.representative_income 519336 Representative total house income in the dwelling unit is $519336 -in.representative_income 519619 Representative total house income in the dwelling unit is $519619 -in.representative_income 519720 Representative total house income in the dwelling unit is $519720 -in.representative_income 519851 Representative total house income in the dwelling unit is $519851 -in.representative_income 519921 Representative total house income in the dwelling unit is $519921 -in.representative_income 520226 Representative total house income in the dwelling unit is $520226 -in.representative_income 520623 Representative total house income in the dwelling unit is $520623 -in.representative_income 520786 Representative total house income in the dwelling unit is $520786 -in.representative_income 521639 Representative total house income in the dwelling unit is $521639 -in.representative_income 521867 Representative total house income in the dwelling unit is $521867 -in.representative_income 521915 Representative total house income in the dwelling unit is $521915 -in.representative_income 522029 Representative total house income in the dwelling unit is $522029 -in.representative_income 522282 Representative total house income in the dwelling unit is $522282 -in.representative_income 523255 Representative total house income in the dwelling unit is $523255 -in.representative_income 523462 Representative total house income in the dwelling unit is $523462 -in.representative_income 523843 Representative total house income in the dwelling unit is $523843 -in.representative_income 524139 Representative total house income in the dwelling unit is $524139 -in.representative_income 524277 Representative total house income in the dwelling unit is $524277 -in.representative_income 524916 Representative total house income in the dwelling unit is $524916 -in.representative_income 525108 Representative total house income in the dwelling unit is $525108 -in.representative_income 525193 Representative total house income in the dwelling unit is $525193 -in.representative_income 525275 Representative total house income in the dwelling unit is $525275 -in.representative_income 526041 Representative total house income in the dwelling unit is $526041 -in.representative_income 526248 Representative total house income in the dwelling unit is $526248 -in.representative_income 526660 Representative total house income in the dwelling unit is $526660 -in.representative_income 527198 Representative total house income in the dwelling unit is $527198 -in.representative_income 527296 Representative total house income in the dwelling unit is $527296 -in.representative_income 527303 Representative total house income in the dwelling unit is $527303 -in.representative_income 527619 Representative total house income in the dwelling unit is $527619 -in.representative_income 527701 Representative total house income in the dwelling unit is $527701 -in.representative_income 528103 Representative total house income in the dwelling unit is $528103 -in.representative_income 528350 Representative total house income in the dwelling unit is $528350 -in.representative_income 528352 Representative total house income in the dwelling unit is $528352 -in.representative_income 528517 Representative total house income in the dwelling unit is $528517 -in.representative_income 528990 Representative total house income in the dwelling unit is $528990 -in.representative_income 529210 Representative total house income in the dwelling unit is $529210 -in.representative_income 530167 Representative total house income in the dwelling unit is $530167 -in.representative_income 530326 Representative total house income in the dwelling unit is $530326 -in.representative_income 531198 Representative total house income in the dwelling unit is $531198 -in.representative_income 531336 Representative total house income in the dwelling unit is $531336 -in.representative_income 531591 Representative total house income in the dwelling unit is $531591 -in.representative_income 531894 Representative total house income in the dwelling unit is $531894 -in.representative_income 531943 Representative total house income in the dwelling unit is $531943 -in.representative_income 532346 Representative total house income in the dwelling unit is $532346 -in.representative_income 532671 Representative total house income in the dwelling unit is $532671 -in.representative_income 532849 Representative total house income in the dwelling unit is $532849 -in.representative_income 532996 Representative total house income in the dwelling unit is $532996 -in.representative_income 533075 Representative total house income in the dwelling unit is $533075 -in.representative_income 533357 Representative total house income in the dwelling unit is $533357 -in.representative_income 533631 Representative total house income in the dwelling unit is $533631 -in.representative_income 533752 Representative total house income in the dwelling unit is $533752 -in.representative_income 533968 Representative total house income in the dwelling unit is $533968 -in.representative_income 534685 Representative total house income in the dwelling unit is $534685 -in.representative_income 535002 Representative total house income in the dwelling unit is $535002 -in.representative_income 535324 Representative total house income in the dwelling unit is $535324 -in.representative_income 535436 Representative total house income in the dwelling unit is $535436 -in.representative_income 535651 Representative total house income in the dwelling unit is $535651 -in.representative_income 536355 Representative total house income in the dwelling unit is $536355 -in.representative_income 536387 Representative total house income in the dwelling unit is $536387 -in.representative_income 537143 Representative total house income in the dwelling unit is $537143 -in.representative_income 537216 Representative total house income in the dwelling unit is $537216 -in.representative_income 538407 Representative total house income in the dwelling unit is $538407 -in.representative_income 538871 Representative total house income in the dwelling unit is $538871 -in.representative_income 539114 Representative total house income in the dwelling unit is $539114 -in.representative_income 539215 Representative total house income in the dwelling unit is $539215 -in.representative_income 539731 Representative total house income in the dwelling unit is $539731 -in.representative_income 541012 Representative total house income in the dwelling unit is $541012 -in.representative_income 541018 Representative total house income in the dwelling unit is $541018 -in.representative_income 541438 Representative total house income in the dwelling unit is $541438 -in.representative_income 541837 Representative total house income in the dwelling unit is $541837 -in.representative_income 542044 Representative total house income in the dwelling unit is $542044 -in.representative_income 542448 Representative total house income in the dwelling unit is $542448 -in.representative_income 542544 Representative total house income in the dwelling unit is $542544 -in.representative_income 542650 Representative total house income in the dwelling unit is $542650 -in.representative_income 543166 Representative total house income in the dwelling unit is $543166 -in.representative_income 543458 Representative total house income in the dwelling unit is $543458 -in.representative_income 543472 Representative total house income in the dwelling unit is $543472 -in.representative_income 543692 Representative total house income in the dwelling unit is $543692 -in.representative_income 545312 Representative total house income in the dwelling unit is $545312 -in.representative_income 545637 Representative total house income in the dwelling unit is $545637 -in.representative_income 545989 Representative total house income in the dwelling unit is $545989 -in.representative_income 547340 Representative total house income in the dwelling unit is $547340 -in.representative_income 547762 Representative total house income in the dwelling unit is $547762 -in.representative_income 548122 Representative total house income in the dwelling unit is $548122 -in.representative_income 548395 Representative total house income in the dwelling unit is $548395 -in.representative_income 548954 Representative total house income in the dwelling unit is $548954 -in.representative_income 549014 Representative total house income in the dwelling unit is $549014 -in.representative_income 549519 Representative total house income in the dwelling unit is $549519 -in.representative_income 549868 Representative total house income in the dwelling unit is $549868 -in.representative_income 551539 Representative total house income in the dwelling unit is $551539 -in.representative_income 552086 Representative total house income in the dwelling unit is $552086 -in.representative_income 552343 Representative total house income in the dwelling unit is $552343 -in.representative_income 552549 Representative total house income in the dwelling unit is $552549 -in.representative_income 552858 Representative total house income in the dwelling unit is $552858 -in.representative_income 553363 Representative total house income in the dwelling unit is $553363 -in.representative_income 553879 Representative total house income in the dwelling unit is $553879 -in.representative_income 553899 Representative total house income in the dwelling unit is $553899 -in.representative_income 554090 Representative total house income in the dwelling unit is $554090 -in.representative_income 554195 Representative total house income in the dwelling unit is $554195 -in.representative_income 554281 Representative total house income in the dwelling unit is $554281 -in.representative_income 556590 Representative total house income in the dwelling unit is $556590 -in.representative_income 557120 Representative total house income in the dwelling unit is $557120 -in.representative_income 557389 Representative total house income in the dwelling unit is $557389 -in.representative_income 557523 Representative total house income in the dwelling unit is $557523 -in.representative_income 557570 Representative total house income in the dwelling unit is $557570 -in.representative_income 557600 Representative total house income in the dwelling unit is $557600 -in.representative_income 557804 Representative total house income in the dwelling unit is $557804 -in.representative_income 558279 Representative total house income in the dwelling unit is $558279 -in.representative_income 558941 Representative total house income in the dwelling unit is $558941 -in.representative_income 559267 Representative total house income in the dwelling unit is $559267 -in.representative_income 559995 Representative total house income in the dwelling unit is $559995 -in.representative_income 560079 Representative total house income in the dwelling unit is $560079 -in.representative_income 560327 Representative total house income in the dwelling unit is $560327 -in.representative_income 560341 Representative total house income in the dwelling unit is $560341 -in.representative_income 560555 Representative total house income in the dwelling unit is $560555 -in.representative_income 560631 Representative total house income in the dwelling unit is $560631 -in.representative_income 560764 Representative total house income in the dwelling unit is $560764 -in.representative_income 560770 Representative total house income in the dwelling unit is $560770 -in.representative_income 560985 Representative total house income in the dwelling unit is $560985 -in.representative_income 561050 Representative total house income in the dwelling unit is $561050 -in.representative_income 561136 Representative total house income in the dwelling unit is $561136 -in.representative_income 561414 Representative total house income in the dwelling unit is $561414 -in.representative_income 562105 Representative total house income in the dwelling unit is $562105 -in.representative_income 562141 Representative total house income in the dwelling unit is $562141 -in.representative_income 562487 Representative total house income in the dwelling unit is $562487 -in.representative_income 564204 Representative total house income in the dwelling unit is $564204 -in.representative_income 564514 Representative total house income in the dwelling unit is $564514 -in.representative_income 564699 Representative total house income in the dwelling unit is $564699 -in.representative_income 564869 Representative total house income in the dwelling unit is $564869 -in.representative_income 566268 Representative total house income in the dwelling unit is $566268 -in.representative_income 566641 Representative total house income in the dwelling unit is $566641 -in.representative_income 566781 Representative total house income in the dwelling unit is $566781 -in.representative_income 567299 Representative total house income in the dwelling unit is $567299 -in.representative_income 567378 Representative total house income in the dwelling unit is $567378 -in.representative_income 567787 Representative total house income in the dwelling unit is $567787 -in.representative_income 568855 Representative total house income in the dwelling unit is $568855 -in.representative_income 570227 Representative total house income in the dwelling unit is $570227 -in.representative_income 570393 Representative total house income in the dwelling unit is $570393 -in.representative_income 570617 Representative total house income in the dwelling unit is $570617 -in.representative_income 571742 Representative total house income in the dwelling unit is $571742 -in.representative_income 572149 Representative total house income in the dwelling unit is $572149 -in.representative_income 572456 Representative total house income in the dwelling unit is $572456 -in.representative_income 572649 Representative total house income in the dwelling unit is $572649 -in.representative_income 573488 Representative total house income in the dwelling unit is $573488 -in.representative_income 573705 Representative total house income in the dwelling unit is $573705 -in.representative_income 576793 Representative total house income in the dwelling unit is $576793 -in.representative_income 576869 Representative total house income in the dwelling unit is $576869 -in.representative_income 576970 Representative total house income in the dwelling unit is $576970 -in.representative_income 577515 Representative total house income in the dwelling unit is $577515 -in.representative_income 578955 Representative total house income in the dwelling unit is $578955 -in.representative_income 579217 Representative total house income in the dwelling unit is $579217 -in.representative_income 579400 Representative total house income in the dwelling unit is $579400 -in.representative_income 579662 Representative total house income in the dwelling unit is $579662 -in.representative_income 579823 Representative total house income in the dwelling unit is $579823 -in.representative_income 581826 Representative total house income in the dwelling unit is $581826 -in.representative_income 582771 Representative total house income in the dwelling unit is $582771 -in.representative_income 582883 Representative total house income in the dwelling unit is $582883 -in.representative_income 583197 Representative total house income in the dwelling unit is $583197 -in.representative_income 583957 Representative total house income in the dwelling unit is $583957 -in.representative_income 584534 Representative total house income in the dwelling unit is $584534 -in.representative_income 584601 Representative total house income in the dwelling unit is $584601 -in.representative_income 585307 Representative total house income in the dwelling unit is $585307 -in.representative_income 586695 Representative total house income in the dwelling unit is $586695 -in.representative_income 587928 Representative total house income in the dwelling unit is $587928 -in.representative_income 588470 Representative total house income in the dwelling unit is $588470 -in.representative_income 588959 Representative total house income in the dwelling unit is $588959 -in.representative_income 590010 Representative total house income in the dwelling unit is $590010 -in.representative_income 590157 Representative total house income in the dwelling unit is $590157 -in.representative_income 590397 Representative total house income in the dwelling unit is $590397 -in.representative_income 591023 Representative total house income in the dwelling unit is $591023 -in.representative_income 591470 Representative total house income in the dwelling unit is $591470 -in.representative_income 592745 Representative total house income in the dwelling unit is $592745 -in.representative_income 593638 Representative total house income in the dwelling unit is $593638 -in.representative_income 594975 Representative total house income in the dwelling unit is $594975 -in.representative_income 595765 Representative total house income in the dwelling unit is $595765 -in.representative_income 596907 Representative total house income in the dwelling unit is $596907 -in.representative_income 597005 Representative total house income in the dwelling unit is $597005 -in.representative_income 597267 Representative total house income in the dwelling unit is $597267 -in.representative_income 599121 Representative total house income in the dwelling unit is $599121 -in.representative_income 599200 Representative total house income in the dwelling unit is $599200 -in.representative_income 599274 Representative total house income in the dwelling unit is $599274 -in.representative_income 599333 Representative total house income in the dwelling unit is $599333 -in.representative_income 600026 Representative total house income in the dwelling unit is $600026 -in.representative_income 600595 Representative total house income in the dwelling unit is $600595 -in.representative_income 602046 Representative total house income in the dwelling unit is $602046 -in.representative_income 602902 Representative total house income in the dwelling unit is $602902 -in.representative_income 604431 Representative total house income in the dwelling unit is $604431 -in.representative_income 606804 Representative total house income in the dwelling unit is $606804 -in.representative_income 607097 Representative total house income in the dwelling unit is $607097 -in.representative_income 608412 Representative total house income in the dwelling unit is $608412 -in.representative_income 608557 Representative total house income in the dwelling unit is $608557 -in.representative_income 609754 Representative total house income in the dwelling unit is $609754 -in.representative_income 610633 Representative total house income in the dwelling unit is $610633 -in.representative_income 611671 Representative total house income in the dwelling unit is $611671 -in.representative_income 612148 Representative total house income in the dwelling unit is $612148 -in.representative_income 614835 Representative total house income in the dwelling unit is $614835 -in.representative_income 615178 Representative total house income in the dwelling unit is $615178 -in.representative_income 616948 Representative total house income in the dwelling unit is $616948 -in.representative_income 617634 Representative total house income in the dwelling unit is $617634 -in.representative_income 617840 Representative total house income in the dwelling unit is $617840 -in.representative_income 620109 Representative total house income in the dwelling unit is $620109 -in.representative_income 620561 Representative total house income in the dwelling unit is $620561 -in.representative_income 621487 Representative total house income in the dwelling unit is $621487 -in.representative_income 622213 Representative total house income in the dwelling unit is $622213 -in.representative_income 623431 Representative total house income in the dwelling unit is $623431 -in.representative_income 625821 Representative total house income in the dwelling unit is $625821 -in.representative_income 626221 Representative total house income in the dwelling unit is $626221 -in.representative_income 626688 Representative total house income in the dwelling unit is $626688 -in.representative_income 626894 Representative total house income in the dwelling unit is $626894 -in.representative_income 627490 Representative total house income in the dwelling unit is $627490 -in.representative_income 629041 Representative total house income in the dwelling unit is $629041 -in.representative_income 629600 Representative total house income in the dwelling unit is $629600 -in.representative_income 630424 Representative total house income in the dwelling unit is $630424 -in.representative_income 632351 Representative total house income in the dwelling unit is $632351 -in.representative_income 633155 Representative total house income in the dwelling unit is $633155 -in.representative_income 634019 Representative total house income in the dwelling unit is $634019 -in.representative_income 634371 Representative total house income in the dwelling unit is $634371 -in.representative_income 635928 Representative total house income in the dwelling unit is $635928 -in.representative_income 635965 Representative total house income in the dwelling unit is $635965 -in.representative_income 636829 Representative total house income in the dwelling unit is $636829 -in.representative_income 637402 Representative total house income in the dwelling unit is $637402 -in.representative_income 637438 Representative total house income in the dwelling unit is $637438 -in.representative_income 638412 Representative total house income in the dwelling unit is $638412 -in.representative_income 642555 Representative total house income in the dwelling unit is $642555 -in.representative_income 642654 Representative total house income in the dwelling unit is $642654 -in.representative_income 645143 Representative total house income in the dwelling unit is $645143 -in.representative_income 645281 Representative total house income in the dwelling unit is $645281 -in.representative_income 645483 Representative total house income in the dwelling unit is $645483 -in.representative_income 646149 Representative total house income in the dwelling unit is $646149 -in.representative_income 646650 Representative total house income in the dwelling unit is $646650 -in.representative_income 649578 Representative total house income in the dwelling unit is $649578 -in.representative_income 650533 Representative total house income in the dwelling unit is $650533 -in.representative_income 653194 Representative total house income in the dwelling unit is $653194 -in.representative_income 653564 Representative total house income in the dwelling unit is $653564 -in.representative_income 655877 Representative total house income in the dwelling unit is $655877 -in.representative_income 659625 Representative total house income in the dwelling unit is $659625 -in.representative_income 660171 Representative total house income in the dwelling unit is $660171 -in.representative_income 661264 Representative total house income in the dwelling unit is $661264 -in.representative_income 662292 Representative total house income in the dwelling unit is $662292 -in.representative_income 662328 Representative total house income in the dwelling unit is $662328 -in.representative_income 663665 Representative total house income in the dwelling unit is $663665 -in.representative_income 667946 Representative total house income in the dwelling unit is $667946 -in.representative_income 667968 Representative total house income in the dwelling unit is $667968 -in.representative_income 669832 Representative total house income in the dwelling unit is $669832 -in.representative_income 670972 Representative total house income in the dwelling unit is $670972 -in.representative_income 671241 Representative total house income in the dwelling unit is $671241 -in.representative_income 671512 Representative total house income in the dwelling unit is $671512 -in.representative_income 671746 Representative total house income in the dwelling unit is $671746 -in.representative_income 672757 Representative total house income in the dwelling unit is $672757 -in.representative_income 672816 Representative total house income in the dwelling unit is $672816 -in.representative_income 672838 Representative total house income in the dwelling unit is $672838 -in.representative_income 673868 Representative total house income in the dwelling unit is $673868 -in.representative_income 674737 Representative total house income in the dwelling unit is $674737 -in.representative_income 677807 Representative total house income in the dwelling unit is $677807 -in.representative_income 678428 Representative total house income in the dwelling unit is $678428 -in.representative_income 680759 Representative total house income in the dwelling unit is $680759 -in.representative_income 681344 Representative total house income in the dwelling unit is $681344 -in.representative_income 682858 Representative total house income in the dwelling unit is $682858 -in.representative_income 683853 Representative total house income in the dwelling unit is $683853 -in.representative_income 685915 Representative total house income in the dwelling unit is $685915 -in.representative_income 686899 Representative total house income in the dwelling unit is $686899 -in.representative_income 687909 Representative total house income in the dwelling unit is $687909 -in.representative_income 688081 Representative total house income in the dwelling unit is $688081 -in.representative_income 689010 Representative total house income in the dwelling unit is $689010 -in.representative_income 689369 Representative total house income in the dwelling unit is $689369 -in.representative_income 692911 Representative total house income in the dwelling unit is $692911 -in.representative_income 692960 Representative total house income in the dwelling unit is $692960 -in.representative_income 693719 Representative total house income in the dwelling unit is $693719 -in.representative_income 693984 Representative total house income in the dwelling unit is $693984 -in.representative_income 694521 Representative total house income in the dwelling unit is $694521 -in.representative_income 695198 Representative total house income in the dwelling unit is $695198 -in.representative_income 699266 Representative total house income in the dwelling unit is $699266 -in.representative_income 700259 Representative total house income in the dwelling unit is $700259 -in.representative_income 701387 Representative total house income in the dwelling unit is $701387 -in.representative_income 702859 Representative total house income in the dwelling unit is $702859 -in.representative_income 703386 Representative total house income in the dwelling unit is $703386 -in.representative_income 703553 Representative total house income in the dwelling unit is $703553 -in.representative_income 705514 Representative total house income in the dwelling unit is $705514 -in.representative_income 705547 Representative total house income in the dwelling unit is $705547 -in.representative_income 707640 Representative total house income in the dwelling unit is $707640 -in.representative_income 708062 Representative total house income in the dwelling unit is $708062 -in.representative_income 709228 Representative total house income in the dwelling unit is $709228 -in.representative_income 711647 Representative total house income in the dwelling unit is $711647 -in.representative_income 712030 Representative total house income in the dwelling unit is $712030 -in.representative_income 712253 Representative total house income in the dwelling unit is $712253 -in.representative_income 712455 Representative total house income in the dwelling unit is $712455 -in.representative_income 713218 Representative total house income in the dwelling unit is $713218 -in.representative_income 715183 Representative total house income in the dwelling unit is $715183 -in.representative_income 721244 Representative total house income in the dwelling unit is $721244 -in.representative_income 721969 Representative total house income in the dwelling unit is $721969 -in.representative_income 724578 Representative total house income in the dwelling unit is $724578 -in.representative_income 725284 Representative total house income in the dwelling unit is $725284 -in.representative_income 725780 Representative total house income in the dwelling unit is $725780 -in.representative_income 731019 Representative total house income in the dwelling unit is $731019 -in.representative_income 732355 Representative total house income in the dwelling unit is $732355 -in.representative_income 733639 Representative total house income in the dwelling unit is $733639 -in.representative_income 734132 Representative total house income in the dwelling unit is $734132 -in.representative_income 740333 Representative total house income in the dwelling unit is $740333 -in.representative_income 743058 Representative total house income in the dwelling unit is $743058 -in.representative_income 743972 Representative total house income in the dwelling unit is $743972 -in.representative_income 752547 Representative total house income in the dwelling unit is $752547 -in.representative_income 752989 Representative total house income in the dwelling unit is $752989 -in.representative_income 757409 Representative total house income in the dwelling unit is $757409 -in.representative_income 759629 Representative total house income in the dwelling unit is $759629 -in.representative_income 759974 Representative total house income in the dwelling unit is $759974 -in.representative_income 760593 Representative total house income in the dwelling unit is $760593 -in.representative_income 761637 Representative total house income in the dwelling unit is $761637 -in.representative_income 763274 Representative total house income in the dwelling unit is $763274 -in.representative_income 769230 Representative total house income in the dwelling unit is $769230 -in.representative_income 771751 Representative total house income in the dwelling unit is $771751 -in.representative_income 775777 Representative total house income in the dwelling unit is $775777 -in.representative_income 776802 Representative total house income in the dwelling unit is $776802 -in.representative_income 777812 Representative total house income in the dwelling unit is $777812 -in.representative_income 778299 Representative total house income in the dwelling unit is $778299 -in.representative_income 785502 Representative total house income in the dwelling unit is $785502 -in.representative_income 787760 Representative total house income in the dwelling unit is $787760 -in.representative_income 788959 Representative total house income in the dwelling unit is $788959 -in.representative_income 792964 Representative total house income in the dwelling unit is $792964 -in.representative_income 796802 Representative total house income in the dwelling unit is $796802 -in.representative_income 797062 Representative total house income in the dwelling unit is $797062 -in.representative_income 798337 Representative total house income in the dwelling unit is $798337 -in.representative_income 804120 Representative total house income in the dwelling unit is $804120 -in.representative_income 806160 Representative total house income in the dwelling unit is $806160 -in.representative_income 812514 Representative total house income in the dwelling unit is $812514 -in.representative_income 812681 Representative total house income in the dwelling unit is $812681 -in.representative_income 821551 Representative total house income in the dwelling unit is $821551 -in.representative_income 838012 Representative total house income in the dwelling unit is $838012 -in.representative_income 842658 Representative total house income in the dwelling unit is $842658 -in.representative_income 844820 Representative total house income in the dwelling unit is $844820 -in.representative_income 849916 Representative total house income in the dwelling unit is $849916 -in.representative_income 870030 Representative total house income in the dwelling unit is $870030 -in.representative_income 880174 Representative total house income in the dwelling unit is $880174 -in.representative_income 885986 Representative total house income in the dwelling unit is $885986 -in.representative_income 898395 Representative total house income in the dwelling unit is $898395 -in.representative_income 910125 Representative total house income in the dwelling unit is $910125 -in.representative_income 922093 Representative total house income in the dwelling unit is $922093 -in.representative_income 937415 Representative total house income in the dwelling unit is $937415 -in.representative_income 945842 Representative total house income in the dwelling unit is $945842 -in.representative_income 980808 Representative total house income in the dwelling unit is $980808 -in.representative_income 988326 Representative total house income in the dwelling unit is $988326 -in.representative_income 1004749 Representative total house income in the dwelling unit is $1004749 -in.representative_income 1009135 Representative total house income in the dwelling unit is $1009135 -in.representative_income 1023201 Representative total house income in the dwelling unit is $1023201 -in.representative_income 1032484 Representative total house income in the dwelling unit is $1032484 -in.representative_income 1035234 Representative total house income in the dwelling unit is $1035234 -in.representative_income 1066686 Representative total house income in the dwelling unit is $1066686 -in.representative_income 1096007 Representative total house income in the dwelling unit is $1096007 -in.representative_income 1114719 Representative total house income in the dwelling unit is $1114719 -in.representative_income 1165541 Representative total house income in the dwelling unit is $1165541 -in.representative_income 1216289 Representative total house income in the dwelling unit is $1216289 -in.representative_income 1278844 Representative total house income in the dwelling unit is $1278844 -in.representative_income 1328393 Representative total house income in the dwelling unit is $1328393 -in.representative_income 1648476 Representative total house income in the dwelling unit is $1648476 -in.representative_income 1771970 Representative total house income in the dwelling unit is $1771970 -in.representative_income None No information on the representative total house income in the dwelling unit -in.roof_material "Asphalt Shingles, Medium" Medium colored asphalt shingle roof -in.roof_material Composition Shingles Composition shingle roof -in.roof_material "Metal, Dark" Dark colored metal roof -in.roof_material Slate Slate roof -in.roof_material "Tile, Clay or Ceramic" Clay or ceramic tile roof -in.roof_material "Tile, Concrete" Concrete tile roof -in.roof_material Wood Shingles Wood shingle roof -in.simulation_control_run_period_begin_day_of_month 1 Starting day of month for simulation is 1 -in.simulation_control_run_period_begin_month 1 Starting month for simulation is January -in.simulation_control_run_period_calendar_year 2018 Calendar year for simulation is 2018 -in.simulation_control_run_period_end_day_of_month 31 Last day of month of simulation is 31 -in.simulation_control_run_period_end_month 12 Last month of simulation is December -in.simulation_control_timestep 15 Timestep for each simulation of each building is 15 minutes -in.sqft..ft2 273 finished foor area of the housing unit is 273 ft2 -in.sqft..ft2 298 finished foor area of the housing unit is 298 ft2 -in.sqft..ft2 322 finished foor area of the housing unit is 322 ft2 -in.sqft..ft2 623 finished foor area of the housing unit is 623 ft2 -in.sqft..ft2 625 finished foor area of the housing unit is 625 ft2 -in.sqft..ft2 634 finished foor area of the housing unit is 634 ft2 -in.sqft..ft2 854 finished foor area of the housing unit is 854 ft2 -in.sqft..ft2 872 finished foor area of the housing unit is 872 ft2 -in.sqft..ft2 881 finished foor area of the housing unit is 881 ft2 -in.sqft..ft2 1138 finished foor area of the housing unit is 1138 ft2 -in.sqft..ft2 1207 finished foor area of the housing unit is 1207 ft2 -in.sqft..ft2 1228 finished foor area of the housing unit is 1228 ft2 -in.sqft..ft2 1678 finished foor area of the housing unit is 1678 ft2 -in.sqft..ft2 1682 finished foor area of the housing unit is 1682 ft2 -in.sqft..ft2 1698 finished foor area of the housing unit is 1698 ft2 -in.sqft..ft2 2115 finished foor area of the housing unit is 2115 ft2 -in.sqft..ft2 2152 finished foor area of the housing unit is 2152 ft2 -in.sqft..ft2 2179 finished foor area of the housing unit is 2179 ft2 -in.sqft..ft2 2648 finished foor area of the housing unit is 2648 ft2 -in.sqft..ft2 2663 finished foor area of the housing unit is 2663 ft2 -in.sqft..ft2 2678 finished foor area of the housing unit is 2678 ft2 -in.sqft..ft2 3171 finished foor area of the housing unit is 3171 ft2 -in.sqft..ft2 3228 finished foor area of the housing unit is 3228 ft2 -in.sqft..ft2 3310 finished foor area of the housing unit is 3310 ft2 -in.sqft..ft2 5587 finished foor area of the housing unit is 5587 ft2 -in.sqft..ft2 6348 finished foor area of the housing unit is 6348 ft2 -in.sqft..ft2 7414 finished foor area of the housing unit is 7414 ft2 -in.state AK The dwelling unit is in AK -in.state AL The dwelling unit is in AL -in.state AR The dwelling unit is in AR -in.state AZ The dwelling unit is in AZ -in.state CA The dwelling unit is in CA -in.state CO The dwelling unit is in CO -in.state CT The dwelling unit is in CT -in.state DC The dwelling unit is in DC -in.state DE The dwelling unit is in DE -in.state FL The dwelling unit is in FL -in.state GA The dwelling unit is in GA -in.state HI The dwelling unit is in HI -in.state IA The dwelling unit is in IA -in.state ID The dwelling unit is in ID -in.state IL The dwelling unit is in IL -in.state IN The dwelling unit is in IN -in.state KS The dwelling unit is in KS -in.state KY The dwelling unit is in KY -in.state LA The dwelling unit is in LA -in.state MA The dwelling unit is in MA -in.state MD The dwelling unit is in MD -in.state ME The dwelling unit is in ME -in.state MI The dwelling unit is in MI -in.state MN The dwelling unit is in MN -in.state MO The dwelling unit is in MO -in.state MS The dwelling unit is in MS -in.state MT The dwelling unit is in MT -in.state NC The dwelling unit is in NC -in.state ND The dwelling unit is in ND -in.state NE The dwelling unit is in NE -in.state NH The dwelling unit is in NH -in.state NJ The dwelling unit is in NJ -in.state NM The dwelling unit is in NM -in.state NV The dwelling unit is in NV -in.state NY The dwelling unit is in NY -in.state OH The dwelling unit is in OH -in.state OK The dwelling unit is in OK -in.state OR The dwelling unit is in OR -in.state PA The dwelling unit is in PA -in.state RI The dwelling unit is in RI -in.state SC The dwelling unit is in SC -in.state SD The dwelling unit is in SD -in.state TN The dwelling unit is in TN -in.state TX The dwelling unit is in TX -in.state UT The dwelling unit is in UT -in.state VA The dwelling unit is in VA -in.state VT The dwelling unit is in VT -in.state WA The dwelling unit is in WA -in.state WI The dwelling unit is in WI -in.state WV The dwelling unit is in WV -in.state WY The dwelling unit is in WY -in.state_metro_median_income 0-30% The household occupying the dwelling unit has a state metro median income of 0-30% -in.state_metro_median_income 100-120% The household occupying the dwelling unit has a state metro median income of 100-120% -in.state_metro_median_income 120-150% The household occupying the dwelling unit has a state metro median income of 120-150% -in.state_metro_median_income 150%+ The household occupying the dwelling unit has a state metro median income of 150%+ -in.state_metro_median_income 30-60% The household occupying the dwelling unit has a state metro median income of 30-60% -in.state_metro_median_income 60-80% The household occupying the dwelling unit has a state metro median income of 60-80% -in.state_metro_median_income 80-100% The household occupying the dwelling unit has a state metro median income of 80-100% -in.state_metro_median_income Not Available The state metro median income of the household occupying the dwelling unit is not available -in.tenure Not Available Data on whether the dwelling unit is owned by occupant(s) are not available -in.tenure Owner Dwelling unit is owned by occupant(s) -in.tenure Renter Dwelling unit is rented by occupant(s) -in.units_represented 1 Model represents a single housing unit -in.upgrade_name Air Sealing with Drill and Fill Wall Insulation The dwelling unit received an Air Sealing with Drill and Fill Wall Insulation upgrade -in.upgrade_name "Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation" "The dwelling unit received an Air Sealing, Attic Floor Insulation, Duct sealing, and Drill-and-Fill Wall Insulation upgrade" -in.upgrade_name "Air Sealing, Attic Floor Insulation, and Duct sealing" "The dwelling unit received an Air Sealing, Attic Floor Insulation, and Duct sealing upgrade" -in.upgrade_name Attic Floor Insulation for Unfinished Attics The dwelling unit received an Attic Floor Insulation for Unfinished Attics upgrade -in.upgrade_name Baseline The dwelling unit did not receive any upgrade -in.upgrade_name Drill and Fill Wall Insulation with Air Sealing The dwelling unit received an Drill and Fill Wall Insulation with Air Sealing upgrade -in.upgrade_name Dual Fuel Heat Pump System The dwelling unit received an Dual Fuel Heat Pump System upgrade -in.upgrade_name Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade -in.upgrade_name "Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing" "The dwelling unit received an Dual-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes, Air Sealing, Attic Floor Insulation, and Duct Sealing upgrade" -in.upgrade_name Duct Sealing and Insulation The dwelling unit received an Duct Sealing and Insulation upgrade -in.upgrade_name ENERGY STAR Windows The dwelling unit received an ENERGY STAR Windows upgrade -in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging The dwelling unit received an Efficient Electric Vehicle Adoption with Level 2 Charging upgrade -in.upgrade_name Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility The dwelling unit received an Efficient Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility upgrade -in.upgrade_name Electric Vehicle Adoption with Level 1 Charging The dwelling unit received an Electric Vehicle Adoption with Level 1 Charging upgrade -in.upgrade_name Electric Vehicle Adoption with Level 2 Charging The dwelling unit received an Electric Vehicle Adoption with Level 2 Charging upgrade -in.upgrade_name Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility The dwelling unit received an Electric Vehicle Adoption with Level 2 Charging and Demand Flexibility upgrade -in.upgrade_name "HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset" "The dwelling unit received an HVAC Demand Flexibility - On-peak Load Shedding, 2F Offset upgrade" -in.upgrade_name "HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset" "The dwelling unit received an HVAC Demand Flexibility - On-peak Load Shedding, 4F Offset upgrade" -in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration upgrade" -in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration upgrade" -in.upgrade_name "HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration" "The dwelling unit received an HVAC Demand Flexibility - Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration upgrade" -in.upgrade_name Heat Pump Water Heater The dwelling unit received an Heat Pump Water Heater upgrade -in.upgrade_name High Efficiency Natural Gas Tankless Water Heater The dwelling unit received an High Efficiency Natural Gas Tankless Water Heater upgrade -in.upgrade_name Minimum Efficiency Furnaces and Air Conditioners Circa 2025 The dwelling unit received an Minimum Efficiency Furnaces and Air Conditioners Circa 2025 upgrade -in.upgrade_name Natural Gas Furnace 95% AFUE for All Dwellings with Ducts The dwelling unit received an Natural Gas Furnace 95% AFUE for All Dwellings with Ducts upgrade -in.upgrade_name Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE The dwelling unit received an Propane Furnace 95% AFUE or Fuel Oil Furnace 88% AFUE upgrade -in.upgrade_name Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Single-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade -in.upgrade_name Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 The dwelling unit received an Typical Cold Climate Ducted Air Source Heat Pump Circa 2025 upgrade -in.upgrade_name Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes The dwelling unit received an Variable-Speed Geothermal Heat Pump with Thermally Enhanced Grout and Pipes upgrade -in.usage_level High Usage of major appliances is higher than the national average -in.usage_level Low Usage of major appliances is lower than the national average -in.usage_level Medium Usage of major appliances is equal to the national average -in.utility_bill_electricity_fixed_charges 13.8 Electricity utility bill monthly fixed charge is $13.8 -in.utility_bill_electricity_marginal_rates 0.093792718 Electricity utility bill marginal rate is $0.093792718 per kWh -in.utility_bill_electricity_marginal_rates 0.095708797 Electricity utility bill marginal rate is $0.095708797 per kWh -in.utility_bill_electricity_marginal_rates 0.09623518 Electricity utility bill marginal rate is $0.09623518 per kWh -in.utility_bill_electricity_marginal_rates 0.097183641 Electricity utility bill marginal rate is $0.097183641 per kWh -in.utility_bill_electricity_marginal_rates 0.098152001 Electricity utility bill marginal rate is $0.098152001 per kWh -in.utility_bill_electricity_marginal_rates 0.098685549 Electricity utility bill marginal rate is $0.098685549 per kWh -in.utility_bill_electricity_marginal_rates 0.104342732 Electricity utility bill marginal rate is $0.104342732 per kWh -in.utility_bill_electricity_marginal_rates 0.10788677 Electricity utility bill marginal rate is $0.10788677 per kWh -in.utility_bill_electricity_marginal_rates 0.109361977 Electricity utility bill marginal rate is $0.109361977 per kWh -in.utility_bill_electricity_marginal_rates 0.109475659 Electricity utility bill marginal rate is $0.109475659 per kWh -in.utility_bill_electricity_marginal_rates 0.109586156 Electricity utility bill marginal rate is $0.109586156 per kWh -in.utility_bill_electricity_marginal_rates 0.109780313 Electricity utility bill marginal rate is $0.109780313 per kWh -in.utility_bill_electricity_marginal_rates 0.112014549 Electricity utility bill marginal rate is $0.112014549 per kWh -in.utility_bill_electricity_marginal_rates 0.112391066 Electricity utility bill marginal rate is $0.112391066 per kWh -in.utility_bill_electricity_marginal_rates 0.11263658 Electricity utility bill marginal rate is $0.11263658 per kWh -in.utility_bill_electricity_marginal_rates 0.115311516 Electricity utility bill marginal rate is $0.115311516 per kWh -in.utility_bill_electricity_marginal_rates 0.116761718 Electricity utility bill marginal rate is $0.116761718 per kWh -in.utility_bill_electricity_marginal_rates 0.117508163 Electricity utility bill marginal rate is $0.117508163 per kWh -in.utility_bill_electricity_marginal_rates 0.118167966 Electricity utility bill marginal rate is $0.118167966 per kWh -in.utility_bill_electricity_marginal_rates 0.120336179 Electricity utility bill marginal rate is $0.120336179 per kWh -in.utility_bill_electricity_marginal_rates 0.12212382 Electricity utility bill marginal rate is $0.12212382 per kWh -in.utility_bill_electricity_marginal_rates 0.123340947 Electricity utility bill marginal rate is $0.123340947 per kWh -in.utility_bill_electricity_marginal_rates 0.123565513 Electricity utility bill marginal rate is $0.123565513 per kWh -in.utility_bill_electricity_marginal_rates 0.126507786 Electricity utility bill marginal rate is $0.126507786 per kWh -in.utility_bill_electricity_marginal_rates 0.127150707 Electricity utility bill marginal rate is $0.127150707 per kWh -in.utility_bill_electricity_marginal_rates 0.128706431 Electricity utility bill marginal rate is $0.128706431 per kWh -in.utility_bill_electricity_marginal_rates 0.128973847 Electricity utility bill marginal rate is $0.128973847 per kWh -in.utility_bill_electricity_marginal_rates 0.132607564 Electricity utility bill marginal rate is $0.132607564 per kWh -in.utility_bill_electricity_marginal_rates 0.133635546 Electricity utility bill marginal rate is $0.133635546 per kWh -in.utility_bill_electricity_marginal_rates 0.133848087 Electricity utility bill marginal rate is $0.133848087 per kWh -in.utility_bill_electricity_marginal_rates 0.136443929 Electricity utility bill marginal rate is $0.136443929 per kWh -in.utility_bill_electricity_marginal_rates 0.136793145 Electricity utility bill marginal rate is $0.136793145 per kWh -in.utility_bill_electricity_marginal_rates 0.139605448 Electricity utility bill marginal rate is $0.139605448 per kWh -in.utility_bill_electricity_marginal_rates 0.141584464 Electricity utility bill marginal rate is $0.141584464 per kWh -in.utility_bill_electricity_marginal_rates 0.142604109 Electricity utility bill marginal rate is $0.142604109 per kWh -in.utility_bill_electricity_marginal_rates 0.147789041 Electricity utility bill marginal rate is $0.147789041 per kWh -in.utility_bill_electricity_marginal_rates 0.150543726 Electricity utility bill marginal rate is $0.150543726 per kWh -in.utility_bill_electricity_marginal_rates 0.150884217 Electricity utility bill marginal rate is $0.150884217 per kWh -in.utility_bill_electricity_marginal_rates 0.155457448 Electricity utility bill marginal rate is $0.155457448 per kWh -in.utility_bill_electricity_marginal_rates 0.163560709 Electricity utility bill marginal rate is $0.163560709 per kWh -in.utility_bill_electricity_marginal_rates 0.165542527 Electricity utility bill marginal rate is $0.165542527 per kWh -in.utility_bill_electricity_marginal_rates 0.183661334 Electricity utility bill marginal rate is $0.183661334 per kWh -in.utility_bill_electricity_marginal_rates 0.198047752 Electricity utility bill marginal rate is $0.198047752 per kWh -in.utility_bill_electricity_marginal_rates 0.215063004 Electricity utility bill marginal rate is $0.215063004 per kWh -in.utility_bill_electricity_marginal_rates 0.245262372 Electricity utility bill marginal rate is $0.245262372 per kWh -in.utility_bill_electricity_marginal_rates 0.249571924 Electricity utility bill marginal rate is $0.249571924 per kWh -in.utility_bill_electricity_marginal_rates 0.258502111 Electricity utility bill marginal rate is $0.258502111 per kWh -in.utility_bill_electricity_marginal_rates 0.266971414 Electricity utility bill marginal rate is $0.266971414 per kWh -in.utility_bill_electricity_marginal_rates 0.271402266 Electricity utility bill marginal rate is $0.271402266 per kWh -in.utility_bill_electricity_marginal_rates 0.278485535 Electricity utility bill marginal rate is $0.278485535 per kWh -in.utility_bill_electricity_marginal_rates 0.396489398 Electricity utility bill marginal rate is $0.396489398 per kWh -in.utility_bill_fuel_oil_fixed_charges 0 Fuel oil utility bill monthly fixed charges is $0 -in.utility_bill_fuel_oil_marginal_rates 2.746846154 Fuel oil utility bill marginal rate is $2.746846154 per kBtu -in.utility_bill_fuel_oil_marginal_rates 2.897307692 Fuel oil utility bill marginal rate is $2.897307692 per kBtu -in.utility_bill_fuel_oil_marginal_rates 2.967307692 Fuel oil utility bill marginal rate is $2.967307692 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.019076923 Fuel oil utility bill marginal rate is $3.019076923 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.088538462 Fuel oil utility bill marginal rate is $3.088538462 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.274230769 Fuel oil utility bill marginal rate is $3.274230769 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.309538462 Fuel oil utility bill marginal rate is $3.309538462 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.329769231 Fuel oil utility bill marginal rate is $3.329769231 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.448461538 Fuel oil utility bill marginal rate is $3.448461538 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.449153846 Fuel oil utility bill marginal rate is $3.449153846 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.486230769 Fuel oil utility bill marginal rate is $3.486230769 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.526538462 Fuel oil utility bill marginal rate is $3.526538462 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.582692308 Fuel oil utility bill marginal rate is $3.582692308 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.658923077 Fuel oil utility bill marginal rate is $3.658923077 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.681153846 Fuel oil utility bill marginal rate is $3.681153846 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.694307692 Fuel oil utility bill marginal rate is $3.694307692 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.741846154 Fuel oil utility bill marginal rate is $3.741846154 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.768230769 Fuel oil utility bill marginal rate is $3.768230769 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.801 Fuel oil utility bill marginal rate is $3.801 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.809384615 Fuel oil utility bill marginal rate is $3.809384615 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.888615385 Fuel oil utility bill marginal rate is $3.888615385 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.921 Fuel oil utility bill marginal rate is $3.921 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.941846154 Fuel oil utility bill marginal rate is $3.941846154 per kBtu -in.utility_bill_fuel_oil_marginal_rates 3.976461538 Fuel oil utility bill marginal rate is $3.976461538 per kBtu -in.utility_bill_fuel_oil_marginal_rates 4.016307692 Fuel oil utility bill marginal rate is $4.016307692 per kBtu -in.utility_bill_fuel_oil_marginal_rates 6.58 Fuel oil utility bill marginal rate is $6.58 per kBtu -in.utility_bill_natural_gas_fixed_charges 10 Natural gas utility bill monthly fixed charge is $10 -in.utility_bill_natural_gas_fixed_charges 10.8 Natural gas utility bill monthly fixed charge is $10.8 -in.utility_bill_natural_gas_fixed_charges 11.38 Natural gas utility bill monthly fixed charge is $11.38 -in.utility_bill_natural_gas_fixed_charges 13.16 Natural gas utility bill monthly fixed charge is $13.16 -in.utility_bill_natural_gas_fixed_charges 13.24 Natural gas utility bill monthly fixed charge is $13.24 -in.utility_bill_natural_gas_fixed_charges 13.5 Natural gas utility bill monthly fixed charge is $13.5 -in.utility_bill_natural_gas_fixed_charges 14 Natural gas utility bill monthly fixed charge is $14 -in.utility_bill_natural_gas_fixed_charges 14.6 Natural gas utility bill monthly fixed charge is $14.6 -in.utility_bill_natural_gas_fixed_charges 4.95 Natural gas utility bill monthly fixed charge is $4.95 -in.utility_bill_natural_gas_marginal_rates 0.757959287 Natural gas utility bill marginal rate is $0.757959287 per therm -in.utility_bill_natural_gas_marginal_rates 0.766550977 Natural gas utility bill marginal rate is $0.766550977 per therm -in.utility_bill_natural_gas_marginal_rates 0.771145095 Natural gas utility bill marginal rate is $0.771145095 per therm -in.utility_bill_natural_gas_marginal_rates 0.808926492 Natural gas utility bill marginal rate is $0.808926492 per therm -in.utility_bill_natural_gas_marginal_rates 0.814349384 Natural gas utility bill marginal rate is $0.814349384 per therm -in.utility_bill_natural_gas_marginal_rates 0.8619508 Natural gas utility bill marginal rate is $0.8619508 per therm -in.utility_bill_natural_gas_marginal_rates 0.890533801 Natural gas utility bill marginal rate is $0.890533801 per therm -in.utility_bill_natural_gas_marginal_rates 0.914474387 Natural gas utility bill marginal rate is $0.914474387 per therm -in.utility_bill_natural_gas_marginal_rates 0.924764572 Natural gas utility bill marginal rate is $0.924764572 per therm -in.utility_bill_natural_gas_marginal_rates 0.947964437 Natural gas utility bill marginal rate is $0.947964437 per therm -in.utility_bill_natural_gas_marginal_rates 0.95950615 Natural gas utility bill marginal rate is $0.95950615 per therm -in.utility_bill_natural_gas_marginal_rates 0.970288774 Natural gas utility bill marginal rate is $0.970288774 per therm -in.utility_bill_natural_gas_marginal_rates 0.97273477 Natural gas utility bill marginal rate is $0.97273477 per therm -in.utility_bill_natural_gas_marginal_rates 1.041230921 Natural gas utility bill marginal rate is $1.041230921 per therm -in.utility_bill_natural_gas_marginal_rates 1.042071903 Natural gas utility bill marginal rate is $1.042071903 per therm -in.utility_bill_natural_gas_marginal_rates 1.058096089 Natural gas utility bill marginal rate is $1.058096089 per therm -in.utility_bill_natural_gas_marginal_rates 1.083933273 Natural gas utility bill marginal rate is $1.083933273 per therm -in.utility_bill_natural_gas_marginal_rates 1.131644784 Natural gas utility bill marginal rate is $1.131644784 per therm -in.utility_bill_natural_gas_marginal_rates 1.13368161 Natural gas utility bill marginal rate is $1.13368161 per therm -in.utility_bill_natural_gas_marginal_rates 1.138438617 Natural gas utility bill marginal rate is $1.138438617 per therm -in.utility_bill_natural_gas_marginal_rates 1.161648985 Natural gas utility bill marginal rate is $1.161648985 per therm -in.utility_bill_natural_gas_marginal_rates 1.172535955 Natural gas utility bill marginal rate is $1.172535955 per therm -in.utility_bill_natural_gas_marginal_rates 1.179455136 Natural gas utility bill marginal rate is $1.179455136 per therm -in.utility_bill_natural_gas_marginal_rates 1.191737547 Natural gas utility bill marginal rate is $1.191737547 per therm -in.utility_bill_natural_gas_marginal_rates 1.250961795 Natural gas utility bill marginal rate is $1.250961795 per therm -in.utility_bill_natural_gas_marginal_rates 1.274823771 Natural gas utility bill marginal rate is $1.274823771 per therm -in.utility_bill_natural_gas_marginal_rates 1.324122284 Natural gas utility bill marginal rate is $1.324122284 per therm -in.utility_bill_natural_gas_marginal_rates 1.376099502 Natural gas utility bill marginal rate is $1.376099502 per therm -in.utility_bill_natural_gas_marginal_rates 1.40010647 Natural gas utility bill marginal rate is $1.40010647 per therm -in.utility_bill_natural_gas_marginal_rates 1.411150918 Natural gas utility bill marginal rate is $1.411150918 per therm -in.utility_bill_natural_gas_marginal_rates 1.413705399 Natural gas utility bill marginal rate is $1.413705399 per therm -in.utility_bill_natural_gas_marginal_rates 1.413742415 Natural gas utility bill marginal rate is $1.413742415 per therm -in.utility_bill_natural_gas_marginal_rates 1.416042199 Natural gas utility bill marginal rate is $1.416042199 per therm -in.utility_bill_natural_gas_marginal_rates 1.420968081 Natural gas utility bill marginal rate is $1.420968081 per therm -in.utility_bill_natural_gas_marginal_rates 1.44004766 Natural gas utility bill marginal rate is $1.44004766 per therm -in.utility_bill_natural_gas_marginal_rates 1.440901216 Natural gas utility bill marginal rate is $1.440901216 per therm -in.utility_bill_natural_gas_marginal_rates 1.443628661 Natural gas utility bill marginal rate is $1.443628661 per therm -in.utility_bill_natural_gas_marginal_rates 1.45183129 Natural gas utility bill marginal rate is $1.45183129 per therm -in.utility_bill_natural_gas_marginal_rates 1.466099897 Natural gas utility bill marginal rate is $1.466099897 per therm -in.utility_bill_natural_gas_marginal_rates 1.476893379 Natural gas utility bill marginal rate is $1.476893379 per therm -in.utility_bill_natural_gas_marginal_rates 1.491501436 Natural gas utility bill marginal rate is $1.491501436 per therm -in.utility_bill_natural_gas_marginal_rates 1.492142732 Natural gas utility bill marginal rate is $1.492142732 per therm -in.utility_bill_natural_gas_marginal_rates 1.621992584 Natural gas utility bill marginal rate is $1.621992584 per therm -in.utility_bill_natural_gas_marginal_rates 1.651841618 Natural gas utility bill marginal rate is $1.651841618 per therm -in.utility_bill_natural_gas_marginal_rates 1.65263025 Natural gas utility bill marginal rate is $1.65263025 per therm -in.utility_bill_natural_gas_marginal_rates 1.75104111 Natural gas utility bill marginal rate is $1.75104111 per therm -in.utility_bill_natural_gas_marginal_rates 1.766762896 Natural gas utility bill marginal rate is $1.766762896 per therm -in.utility_bill_natural_gas_marginal_rates 1.837640087 Natural gas utility bill marginal rate is $1.837640087 per therm -in.utility_bill_natural_gas_marginal_rates 1.863660544 Natural gas utility bill marginal rate is $1.863660544 per therm -in.utility_bill_natural_gas_marginal_rates 1.964713414 Natural gas utility bill marginal rate is $1.964713414 per therm -in.utility_bill_natural_gas_marginal_rates 4.83842304 Natural gas utility bill marginal rate is $4.83842304 per therm -in.utility_bill_propane_fixed_charges 0 Propane utility bill monthly fixed charge is $0 -in.utility_bill_propane_marginal_rates 1.642230769 Propane utility bill marginal rate is $1.642230769 per gallon -in.utility_bill_propane_marginal_rates 1.679230769 Propane utility bill marginal rate is $1.679230769 per gallon -in.utility_bill_propane_marginal_rates 1.761461538 Propane utility bill marginal rate is $1.761461538 per gallon -in.utility_bill_propane_marginal_rates 1.889 Propane utility bill marginal rate is $1.889 per gallon -in.utility_bill_propane_marginal_rates 1.906153846 Propane utility bill marginal rate is $1.906153846 per gallon -in.utility_bill_propane_marginal_rates 1.951692308 Propane utility bill marginal rate is $1.951692308 per gallon -in.utility_bill_propane_marginal_rates 1.982692308 Propane utility bill marginal rate is $1.982692308 per gallon -in.utility_bill_propane_marginal_rates 2.021384615 Propane utility bill marginal rate is $2.021384615 per gallon -in.utility_bill_propane_marginal_rates 2.164692308 Propane utility bill marginal rate is $2.164692308 per gallon -in.utility_bill_propane_marginal_rates 2.221692308 Propane utility bill marginal rate is $2.221692308 per gallon -in.utility_bill_propane_marginal_rates 2.279153846 Propane utility bill marginal rate is $2.279153846 per gallon -in.utility_bill_propane_marginal_rates 2.304384615 Propane utility bill marginal rate is $2.304384615 per gallon -in.utility_bill_propane_marginal_rates 2.316615385 Propane utility bill marginal rate is $2.316615385 per gallon -in.utility_bill_propane_marginal_rates 2.331384615 Propane utility bill marginal rate is $2.331384615 per gallon -in.utility_bill_propane_marginal_rates 2.426692308 Propane utility bill marginal rate is $2.426692308 per gallon -in.utility_bill_propane_marginal_rates 2.485153846 Propane utility bill marginal rate is $2.485153846 per gallon -in.utility_bill_propane_marginal_rates 2.536923077 Propane utility bill marginal rate is $2.536923077 per gallon -in.utility_bill_propane_marginal_rates 2.538846154 Propane utility bill marginal rate is $2.538846154 per gallon -in.utility_bill_propane_marginal_rates 2.632769231 Propane utility bill marginal rate is $2.632769231 per gallon -in.utility_bill_propane_marginal_rates 2.734153846 Propane utility bill marginal rate is $2.734153846 per gallon -in.utility_bill_propane_marginal_rates 2.734461538 Propane utility bill marginal rate is $2.734461538 per gallon -in.utility_bill_propane_marginal_rates 2.947230769 Propane utility bill marginal rate is $2.947230769 per gallon -in.utility_bill_propane_marginal_rates 2.959615385 Propane utility bill marginal rate is $2.959615385 per gallon -in.utility_bill_propane_marginal_rates 3.004846154 Propane utility bill marginal rate is $3.004846154 per gallon -in.utility_bill_propane_marginal_rates 3.038615385 Propane utility bill marginal rate is $3.038615385 per gallon -in.utility_bill_propane_marginal_rates 3.178923077 Propane utility bill marginal rate is $3.178923077 per gallon -in.utility_bill_propane_marginal_rates 3.256230769 Propane utility bill marginal rate is $3.256230769 per gallon -in.utility_bill_propane_marginal_rates 3.390230769 Propane utility bill marginal rate is $3.390230769 per gallon -in.utility_bill_propane_marginal_rates 3.404923077 Propane utility bill marginal rate is $3.404923077 per gallon -in.utility_bill_propane_marginal_rates 3.439923077 Propane utility bill marginal rate is $3.439923077 per gallon -in.utility_bill_propane_marginal_rates 3.467538462 Propane utility bill marginal rate is $3.467538462 per gallon -in.utility_bill_propane_marginal_rates 3.487846154 Propane utility bill marginal rate is $3.487846154 per gallon -in.utility_bill_propane_marginal_rates 3.495 Propane utility bill marginal rate is $3.495 per gallon -in.utility_bill_propane_marginal_rates 3.551923077 Propane utility bill marginal rate is $3.551923077 per gallon -in.utility_bill_propane_marginal_rates 3.623384615 Propane utility bill marginal rate is $3.623384615 per gallon -in.utility_bill_propane_marginal_rates 3.666076923 Propane utility bill marginal rate is $3.666076923 per gallon -in.utility_bill_propane_marginal_rates 3.680615385 Propane utility bill marginal rate is $3.680615385 per gallon -in.utility_bill_propane_marginal_rates 3.699076923 Propane utility bill marginal rate is $3.699076923 per gallon -in.utility_bill_propane_marginal_rates 3.720461538 Propane utility bill marginal rate is $3.720461538 per gallon -in.utility_bill_propane_marginal_rates 3.747769231 Propane utility bill marginal rate is $3.747769231 per gallon -in.utility_bill_propane_marginal_rates 3.819769231 Propane utility bill marginal rate is $3.819769231 per gallon -in.utility_bill_propane_marginal_rates 3.967076923 Propane utility bill marginal rate is $3.967076923 per gallon -in.utility_bill_propane_marginal_rates 4.751615385 Propane utility bill marginal rate is $4.751615385 per gallon -in.utility_bill_propane_marginal_rates 8.11 Propane utility bill marginal rate is $8.11 per gallon -in.utility_bill_scenario_names Utility Rates - Fixed + Variable The name of utility bill scenario -in.utility_bill_simple_filepaths data/utility_bills/sdr_rates/State.tsv Relative paths of simple utility rates. Paths are relative to the ResStock resources folder. -in.vacancy_status Occupied The dwelling unit is occupied -in.vacancy_status Vacant The dwelling unit is vacant -in.vintage 1940s Housing unit was built in the 1940s -in.vintage 1950s Housing unit was built in the 1950s -in.vintage 1960s Housing unit was built in the 1960s -in.vintage 1970s Housing unit was built in the 1970s -in.vintage 1980s Housing unit was built in the 1980s -in.vintage 1990s Housing unit was built in the 1990s -in.vintage 2000s Housing unit was built in the 2000s -in.vintage 2010s Housing unit was built in the 2010s -in.vintage <1940 Housing unit was built prior to 1940 -in.vintage_acs 1940-59 Housing unit was built between 1940-59 -in.vintage_acs 1960-79 Housing unit was built between 1960-79 -in.vintage_acs 1980-99 Housing unit was built between 1980-99 -in.vintage_acs 2000-09 Housing unit was built between 2000-09 -in.vintage_acs 2010s Housing unit was built between 2010s -in.vintage_acs <1940 Housing unit was built prior to 1940 -in.water_heater_efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" 50 gal heat pump water heater with 3.45 UEF efficiency level -in.water_heater_efficiency Electric Premium Electric water heater with an energy factor of 0.95 -in.water_heater_efficiency Electric Standard Electric water heater with an energy factor of 0.92 -in.water_heater_efficiency Electric Tankless Tankless electric water heater -in.water_heater_efficiency FIXME Fuel Oil Indirect Fuel oil indirect water heater -in.water_heater_efficiency Fuel Oil Premium Fuel oil water heater with energy factor of 0.68 -in.water_heater_efficiency Fuel Oil Standard Fuel oil water heater with energy factor of 0.62 -in.water_heater_efficiency Natural Gas Premium Natural gas water heater with energy factor of 0.67 -in.water_heater_efficiency Natural Gas Standard Natural gas water heater with energy factor of 0.59 -in.water_heater_efficiency Natural Gas Tankless Tankless natural gas water heater -in.water_heater_efficiency Other Fuel "Other fuel (wood, coal, solar) water heater" -in.water_heater_efficiency Propane Premium Propane water heater with energy factor of 0.67 -in.water_heater_efficiency Propane Standard Propane water heater with energy factor of 0.59 -in.water_heater_efficiency Propane Tankless Tankless propane water heater -in.water_heater_efficiency "Solar Thermal, 40 sqft, East, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an east-facing roof at roof pitch. The storage has an electric resistance standard backup. -in.water_heater_efficiency "Solar Thermal, 40 sqft, North, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an north-facing roof at roof pitch. The storage has an electric resistance standard backup. -in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The storage has an electric resistance standard backup. -in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Natural Gas Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The system uses a separate natural gas storage water heater as backup. -in.water_heater_efficiency "Solar Thermal, 40 sqft, South, Roof Pitch, Propane Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an south-facing roof at roof pitch. The system uses a separate propane storage water heater as backup. -in.water_heater_efficiency "Solar Thermal, 40 sqft, West, Roof Pitch, Electric Standard Backup" Solar thermal storage water heater with 40 square feet of collector area installed on an west-facing roof at roof pitch. The storage has an electric resistance standard backup. -in.water_heater_efficiency Wood Wood water heater -in.water_heater_fuel Electricity Electric water heater -in.water_heater_fuel Fuel Oil Fuel oil water heater -in.water_heater_fuel Natural Gas Natural gas water heater -in.water_heater_fuel Other Fuel "Other fuel (wood, coal, solar) water heater" -in.water_heater_fuel Propane Propane water heater -in.water_heater_fuel Solar Thermal Solar thermal water heater -in.water_heater_fuel Wood Wood water heater -in.water_heater_in_unit No No water heater present in unit -in.water_heater_in_unit Yes Water heater present in unit -in.water_heater_location Attic The water heater is located in the Attic -in.water_heater_location Conditioned Mechanical Room The water heater is located in the Conditioned Mechanical Room -in.water_heater_location Crawlspace The water heater is located in the Crawlspace -in.water_heater_location Garage The water heater is located in the Garage -in.water_heater_location Heated Basement The water heater is located in the Heated Basement -in.water_heater_location Living Space The water heater is located in the Living Space -in.water_heater_location Outside The water heater is located in the Outside -in.water_heater_location Unheated Basement The water heater is located in the Unheated Basement -in.weather_file_city A L Mangham Jr Rgnl Location of weather station from specific weather file used for the building energy simulation is A L Mangham Jr Rgnl -in.weather_file_city Aberdeen Regional Location of weather station from specific weather file used for the building energy simulation is Aberdeen Regional -in.weather_file_city Abilene Dyess Afb Location of weather station from specific weather file used for the building energy simulation is Abilene Dyess Afb -in.weather_file_city Abilene Municipal Location of weather station from specific weather file used for the building energy simulation is Abilene Municipal -in.weather_file_city Accomack Co Location of weather station from specific weather file used for the building energy simulation is Accomack Co -in.weather_file_city Adirondack Rgnl Location of weather station from specific weather file used for the building energy simulation is Adirondack Rgnl -in.weather_file_city Ainsworth Municipal Location of weather station from specific weather file used for the building energy simulation is Ainsworth Municipal -in.weather_file_city Airborne Airpark Location of weather station from specific weather file used for the building energy simulation is Airborne Airpark -in.weather_file_city Aitkin Muni Kurtz Fl Location of weather station from specific weather file used for the building energy simulation is Aitkin Muni Kurtz Fl -in.weather_file_city Akron Akron Canton Location of weather station from specific weather file used for the building energy simulation is Akron Akron Canton -in.weather_file_city Alamogordo White Sa Location of weather station from specific weather file used for the building energy simulation is Alamogordo White Sa -in.weather_file_city Alamosa Muni Awos Location of weather station from specific weather file used for the building energy simulation is Alamosa Muni Awos -in.weather_file_city Albany County Airpo Location of weather station from specific weather file used for the building energy simulation is Albany County Airpo -in.weather_file_city Albany Municipal Location of weather station from specific weather file used for the building energy simulation is Albany Municipal -in.weather_file_city Albert Lea Awos Location of weather station from specific weather file used for the building energy simulation is Albert Lea Awos -in.weather_file_city Albuquerque Intl Location of weather station from specific weather file used for the building energy simulation is Albuquerque Intl -in.weather_file_city Alexander Fld South Location of weather station from specific weather file used for the building energy simulation is Alexander Fld South -in.weather_file_city Alexandria Int Location of weather station from specific weather file used for the building energy simulation is Alexandria Int -in.weather_file_city Algona Location of weather station from specific weather file used for the building energy simulation is Algona -in.weather_file_city Alice Intl Location of weather station from specific weather file used for the building energy simulation is Alice Intl -in.weather_file_city Allegheny Co Location of weather station from specific weather file used for the building energy simulation is Allegheny Co -in.weather_file_city Allentown A Bethle Location of weather station from specific weather file used for the building energy simulation is Allentown A Bethle -in.weather_file_city Alliance Muni Location of weather station from specific weather file used for the building energy simulation is Alliance Muni -in.weather_file_city Alma Bacon Co Location of weather station from specific weather file used for the building energy simulation is Alma Bacon Co -in.weather_file_city Alpena Phelps Colli Location of weather station from specific weather file used for the building energy simulation is Alpena Phelps Colli -in.weather_file_city Altoona Blair Co Location of weather station from specific weather file used for the building energy simulation is Altoona Blair Co -in.weather_file_city Alturas Muni Location of weather station from specific weather file used for the building energy simulation is Alturas Muni -in.weather_file_city Altus Afb Location of weather station from specific weather file used for the building energy simulation is Altus Afb -in.weather_file_city Amarillo Intl Location of weather station from specific weather file used for the building energy simulation is Amarillo Intl -in.weather_file_city Ames Muni Location of weather station from specific weather file used for the building energy simulation is Ames Muni -in.weather_file_city Anderson Rgnl Location of weather station from specific weather file used for the building energy simulation is Anderson Rgnl -in.weather_file_city Andrews Afb Camp Sp Location of weather station from specific weather file used for the building energy simulation is Andrews Afb Camp Sp -in.weather_file_city Angelina Co Location of weather station from specific weather file used for the building energy simulation is Angelina Co -in.weather_file_city Ann Arbor Municipal Location of weather station from specific weather file used for the building energy simulation is Ann Arbor Municipal -in.weather_file_city Anniston Metropolit Location of weather station from specific weather file used for the building energy simulation is Anniston Metropolit -in.weather_file_city Anoka Co Blaine Location of weather station from specific weather file used for the building energy simulation is Anoka Co Blaine -in.weather_file_city Antrim Co Location of weather station from specific weather file used for the building energy simulation is Antrim Co -in.weather_file_city Apalachicola Muni Location of weather station from specific weather file used for the building energy simulation is Apalachicola Muni -in.weather_file_city Aransas Co Location of weather station from specific weather file used for the building energy simulation is Aransas Co -in.weather_file_city Arcata Location of weather station from specific weather file used for the building energy simulation is Arcata -in.weather_file_city Ardmore Downtown Exe Location of weather station from specific weather file used for the building energy simulation is Ardmore Downtown Exe -in.weather_file_city Arlington Muni Location of weather station from specific weather file used for the building energy simulation is Arlington Muni -in.weather_file_city Arthur N Neu Location of weather station from specific weather file used for the building energy simulation is Arthur N Neu -in.weather_file_city Ashe Co Location of weather station from specific weather file used for the building energy simulation is Ashe Co -in.weather_file_city Asheboro Rgnl Location of weather station from specific weather file used for the building energy simulation is Asheboro Rgnl -in.weather_file_city Asheville Municipal Location of weather station from specific weather file used for the building energy simulation is Asheville Municipal -in.weather_file_city Ashtabula Co Location of weather station from specific weather file used for the building energy simulation is Ashtabula Co -in.weather_file_city Aspen Pitkin Co Sard Location of weather station from specific weather file used for the building energy simulation is Aspen Pitkin Co Sard -in.weather_file_city Astoria Clatsop Location of weather station from specific weather file used for the building energy simulation is Astoria Clatsop -in.weather_file_city Athens Municipal Location of weather station from specific weather file used for the building energy simulation is Athens Municipal -in.weather_file_city Atlanta Municipal Location of weather station from specific weather file used for the building energy simulation is Atlanta Municipal -in.weather_file_city Atlantic City Intl Location of weather station from specific weather file used for the building energy simulation is Atlantic City Intl -in.weather_file_city Atlantic Muni Location of weather station from specific weather file used for the building energy simulation is Atlantic Muni -in.weather_file_city Auburn Lewiston Muni Location of weather station from specific weather file used for the building energy simulation is Auburn Lewiston Muni -in.weather_file_city Audubon Co Location of weather station from specific weather file used for the building energy simulation is Audubon Co -in.weather_file_city Augusta Bush Field Location of weather station from specific weather file used for the building energy simulation is Augusta Bush Field -in.weather_file_city Augusta State Arpt Location of weather station from specific weather file used for the building energy simulation is Augusta State Arpt -in.weather_file_city Aurora Muni Al Pott Location of weather station from specific weather file used for the building energy simulation is Aurora Muni Al Pott -in.weather_file_city Aurora Municipal Location of weather station from specific weather file used for the building energy simulation is Aurora Municipal -in.weather_file_city Aurora State Location of weather station from specific weather file used for the building energy simulation is Aurora State -in.weather_file_city Austin Camp Mabry Location of weather station from specific weather file used for the building energy simulation is Austin Camp Mabry -in.weather_file_city Austin Mueller Muni Location of weather station from specific weather file used for the building energy simulation is Austin Mueller Muni -in.weather_file_city Austin Muni Location of weather station from specific weather file used for the building energy simulation is Austin Muni -in.weather_file_city Baker City Muni Location of weather station from specific weather file used for the building energy simulation is Baker City Muni -in.weather_file_city Baker Muni Location of weather station from specific weather file used for the building energy simulation is Baker Muni -in.weather_file_city Bakersfield Meadows Location of weather station from specific weather file used for the building energy simulation is Bakersfield Meadows -in.weather_file_city Baltimore Washingto Location of weather station from specific weather file used for the building energy simulation is Baltimore Washingto -in.weather_file_city Bangor Intl Location of weather station from specific weather file used for the building energy simulation is Bangor Intl -in.weather_file_city Baraboo Wisc Dells Location of weather station from specific weather file used for the building energy simulation is Baraboo Wisc Dells -in.weather_file_city Barksdale Afb Location of weather station from specific weather file used for the building energy simulation is Barksdale Afb -in.weather_file_city Barnstable Muni Boa Location of weather station from specific weather file used for the building energy simulation is Barnstable Muni Boa -in.weather_file_city Batesville Rgnl Location of weather station from specific weather file used for the building energy simulation is Batesville Rgnl -in.weather_file_city Baton Rouge Metro R Location of weather station from specific weather file used for the building energy simulation is Baton Rouge Metro R -in.weather_file_city Baudette Intl Location of weather station from specific weather file used for the building energy simulation is Baudette Intl -in.weather_file_city Beale Afb Location of weather station from specific weather file used for the building energy simulation is Beale Afb -in.weather_file_city Beatrice Muni Location of weather station from specific weather file used for the building energy simulation is Beatrice Muni -in.weather_file_city Beaufort Mcas Location of weather station from specific weather file used for the building energy simulation is Beaufort Mcas -in.weather_file_city Beckley Raleigh Ct Location of weather station from specific weather file used for the building energy simulation is Beckley Raleigh Ct -in.weather_file_city Beeville Chase Naas Location of weather station from specific weather file used for the building energy simulation is Beeville Chase Naas -in.weather_file_city Bellingham Intl Location of weather station from specific weather file used for the building energy simulation is Bellingham Intl -in.weather_file_city Bemidji Municipal Location of weather station from specific weather file used for the building energy simulation is Bemidji Municipal -in.weather_file_city Bentonville Muni Tha Location of weather station from specific weather file used for the building energy simulation is Bentonville Muni Tha -in.weather_file_city Berlin Municipal Location of weather station from specific weather file used for the building energy simulation is Berlin Municipal -in.weather_file_city Bert Mooney Location of weather station from specific weather file used for the building energy simulation is Bert Mooney -in.weather_file_city Beverly Muni Location of weather station from specific weather file used for the building energy simulation is Beverly Muni -in.weather_file_city Big Piney Amos Location of weather station from specific weather file used for the building energy simulation is Big Piney Amos -in.weather_file_city Billings Logan Int Location of weather station from specific weather file used for the building energy simulation is Billings Logan Int -in.weather_file_city Binghamton Broome C Location of weather station from specific weather file used for the building energy simulation is Binghamton Broome C -in.weather_file_city Birmingham Location of weather station from specific weather file used for the building energy simulation is Birmingham -in.weather_file_city Birmingham Muni Location of weather station from specific weather file used for the building energy simulation is Birmingham Muni -in.weather_file_city Bisbee Douglas Intl Location of weather station from specific weather file used for the building energy simulation is Bisbee Douglas Intl -in.weather_file_city Bishop Airport Location of weather station from specific weather file used for the building energy simulation is Bishop Airport -in.weather_file_city Bismarck Municipal Location of weather station from specific weather file used for the building energy simulation is Bismarck Municipal -in.weather_file_city Block Island Location of weather station from specific weather file used for the building energy simulation is Block Island -in.weather_file_city Blue Canyon Nyack Location of weather station from specific weather file used for the building energy simulation is Blue Canyon Nyack -in.weather_file_city Blue Ridge Location of weather station from specific weather file used for the building energy simulation is Blue Ridge -in.weather_file_city Blythe Location of weather station from specific weather file used for the building energy simulation is Blythe -in.weather_file_city Boise Municipal Location of weather station from specific weather file used for the building energy simulation is Boise Municipal -in.weather_file_city Boone Co Location of weather station from specific weather file used for the building energy simulation is Boone Co -in.weather_file_city Boone Muni Location of weather station from specific weather file used for the building energy simulation is Boone Muni -in.weather_file_city Boscobel Location of weather station from specific weather file used for the building energy simulation is Boscobel -in.weather_file_city Boston Logan Intl Location of weather station from specific weather file used for the building energy simulation is Boston Logan Intl -in.weather_file_city Bowerman Location of weather station from specific weather file used for the building energy simulation is Bowerman -in.weather_file_city Bowers Fld Location of weather station from specific weather file used for the building energy simulation is Bowers Fld -in.weather_file_city Bowling Green Warre Location of weather station from specific weather file used for the building energy simulation is Bowling Green Warre -in.weather_file_city Bowman Fld Location of weather station from specific weather file used for the building energy simulation is Bowman Fld -in.weather_file_city Bradford Rgnl Location of weather station from specific weather file used for the building energy simulation is Bradford Rgnl -in.weather_file_city Brainerd Lakes Rgnl Location of weather station from specific weather file used for the building energy simulation is Brainerd Lakes Rgnl -in.weather_file_city Branch Co Mem Location of weather station from specific weather file used for the building energy simulation is Branch Co Mem -in.weather_file_city Brazoria Co Location of weather station from specific weather file used for the building energy simulation is Brazoria Co -in.weather_file_city Bremerton National Location of weather station from specific weather file used for the building energy simulation is Bremerton National -in.weather_file_city Brewster Fld Location of weather station from specific weather file used for the building energy simulation is Brewster Fld -in.weather_file_city Bridgeport Igor I Location of weather station from specific weather file used for the building energy simulation is Bridgeport Igor I -in.weather_file_city Broken Bow Muni Location of weather station from specific weather file used for the building energy simulation is Broken Bow Muni -in.weather_file_city Brookings Rgnl Location of weather station from specific weather file used for the building energy simulation is Brookings Rgnl -in.weather_file_city Brownsville Intl Location of weather station from specific weather file used for the building energy simulation is Brownsville Intl -in.weather_file_city Brunswick Golden Is Location of weather station from specific weather file used for the building energy simulation is Brunswick Golden Is -in.weather_file_city Buckley Afb Location of weather station from specific weather file used for the building energy simulation is Buckley Afb -in.weather_file_city Buffalo Location of weather station from specific weather file used for the building energy simulation is Buffalo -in.weather_file_city Burke Lakefront Location of weather station from specific weather file used for the building energy simulation is Burke Lakefront -in.weather_file_city Burley Muni Location of weather station from specific weather file used for the building energy simulation is Burley Muni -in.weather_file_city Burlington Alamance Location of weather station from specific weather file used for the building energy simulation is Burlington Alamance -in.weather_file_city Burlington Intl Location of weather station from specific weather file used for the building energy simulation is Burlington Intl -in.weather_file_city Burnet Muni Kate Cr Location of weather station from specific weather file used for the building energy simulation is Burnet Muni Kate Cr -in.weather_file_city Burns Muni Amos Location of weather station from specific weather file used for the building energy simulation is Burns Muni Amos -in.weather_file_city Butler Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Butler Co Rgnl -in.weather_file_city Butler Co Scholter F Location of weather station from specific weather file used for the building energy simulation is Butler Co Scholter F -in.weather_file_city C David Campbell Fld Location of weather station from specific weather file used for the building energy simulation is C David Campbell Fld -in.weather_file_city C M Schulz Sonoma Co Location of weather station from specific weather file used for the building energy simulation is C M Schulz Sonoma Co -in.weather_file_city Cahokia St Louis Location of weather station from specific weather file used for the building energy simulation is Cahokia St Louis -in.weather_file_city Cairns Aaf Location of weather station from specific weather file used for the building energy simulation is Cairns Aaf -in.weather_file_city Caldwell Awos Location of weather station from specific weather file used for the building energy simulation is Caldwell Awos -in.weather_file_city Camarillo Location of weather station from specific weather file used for the building energy simulation is Camarillo -in.weather_file_city Cambridge Muni Location of weather station from specific weather file used for the building energy simulation is Cambridge Muni -in.weather_file_city Cannon Afb Location of weather station from specific weather file used for the building energy simulation is Cannon Afb -in.weather_file_city Canyonlands Fld Location of weather station from specific weather file used for the building energy simulation is Canyonlands Fld -in.weather_file_city Cape Girardeau Rgnl Location of weather station from specific weather file used for the building energy simulation is Cape Girardeau Rgnl -in.weather_file_city Cape Hatteras Location of weather station from specific weather file used for the building energy simulation is Cape Hatteras -in.weather_file_city Cape May Co Location of weather station from specific weather file used for the building energy simulation is Cape May Co -in.weather_file_city Cape Newenham Afs Location of weather station from specific weather file used for the building energy simulation is Cape Newenham Afs -in.weather_file_city Capital City Arpt Location of weather station from specific weather file used for the building energy simulation is Capital City Arpt -in.weather_file_city Cartersville Location of weather station from specific weather file used for the building energy simulation is Cartersville -in.weather_file_city Casper Natrona Coun Location of weather station from specific weather file used for the building energy simulation is Casper Natrona Coun -in.weather_file_city Cavern City Air Ter Location of weather station from specific weather file used for the building energy simulation is Cavern City Air Ter -in.weather_file_city Cecil Fld Location of weather station from specific weather file used for the building energy simulation is Cecil Fld -in.weather_file_city Cedar City Rgnl Location of weather station from specific weather file used for the building energy simulation is Cedar City Rgnl -in.weather_file_city Cedar Rapids Muni Location of weather station from specific weather file used for the building energy simulation is Cedar Rapids Muni -in.weather_file_city Centennial Location of weather station from specific weather file used for the building energy simulation is Centennial -in.weather_file_city Central Illinois Rg Location of weather station from specific weather file used for the building energy simulation is Central Illinois Rg -in.weather_file_city Centreville Location of weather station from specific weather file used for the building energy simulation is Centreville -in.weather_file_city Challis Location of weather station from specific weather file used for the building energy simulation is Challis -in.weather_file_city Chamberlain Amos Location of weather station from specific weather file used for the building energy simulation is Chamberlain Amos -in.weather_file_city Chan Gurney Muni Location of weather station from specific weather file used for the building energy simulation is Chan Gurney Muni -in.weather_file_city Chandler Fld Location of weather station from specific weather file used for the building energy simulation is Chandler Fld -in.weather_file_city Chanute Martin Johns Location of weather station from specific weather file used for the building energy simulation is Chanute Martin Johns -in.weather_file_city Chariton Muni Location of weather station from specific weather file used for the building energy simulation is Chariton Muni -in.weather_file_city Charles B Wheeler D Location of weather station from specific weather file used for the building energy simulation is Charles B Wheeler D -in.weather_file_city Charleston Muni Location of weather station from specific weather file used for the building energy simulation is Charleston Muni -in.weather_file_city Charlevoix Muni Location of weather station from specific weather file used for the building energy simulation is Charlevoix Muni -in.weather_file_city Charlotte Co Location of weather station from specific weather file used for the building energy simulation is Charlotte Co -in.weather_file_city Charlotte Douglas Location of weather station from specific weather file used for the building energy simulation is Charlotte Douglas -in.weather_file_city Charlottesville Alb Location of weather station from specific weather file used for the building energy simulation is Charlottesville Alb -in.weather_file_city Chattanooga Lovell Location of weather station from specific weather file used for the building energy simulation is Chattanooga Lovell -in.weather_file_city Cherry Capital Location of weather station from specific weather file used for the building energy simulation is Cherry Capital -in.weather_file_city Cherry Point Mcas Location of weather station from specific weather file used for the building energy simulation is Cherry Point Mcas -in.weather_file_city Chesapeake Location of weather station from specific weather file used for the building energy simulation is Chesapeake -in.weather_file_city Cheyenne Warren Afb Location of weather station from specific weather file used for the building energy simulation is Cheyenne Warren Afb -in.weather_file_city Chicago Midway Location of weather station from specific weather file used for the building energy simulation is Chicago Midway -in.weather_file_city Chicago Waukegan Location of weather station from specific weather file used for the building energy simulation is Chicago Waukegan -in.weather_file_city Chicopee Falls West Location of weather station from specific weather file used for the building energy simulation is Chicopee Falls West -in.weather_file_city Childress Municipal Location of weather station from specific weather file used for the building energy simulation is Childress Municipal -in.weather_file_city Chippewa Valley Rgn Location of weather station from specific weather file used for the building energy simulation is Chippewa Valley Rgn -in.weather_file_city Cincinnati Greater Location of weather station from specific weather file used for the building energy simulation is Cincinnati Greater -in.weather_file_city Cincinnati Muni Lun Location of weather station from specific weather file used for the building energy simulation is Cincinnati Muni Lun -in.weather_file_city Clarion Muni Location of weather station from specific weather file used for the building energy simulation is Clarion Muni -in.weather_file_city Clayton Muni Amos Location of weather station from specific weather file used for the building energy simulation is Clayton Muni Amos -in.weather_file_city Clearfield Lawrence Location of weather station from specific weather file used for the building energy simulation is Clearfield Lawrence -in.weather_file_city Cleveland Location of weather station from specific weather file used for the building energy simulation is Cleveland -in.weather_file_city Clines Corners Location of weather station from specific weather file used for the building energy simulation is Clines Corners -in.weather_file_city Clinton Muni Location of weather station from specific weather file used for the building energy simulation is Clinton Muni -in.weather_file_city Clinton Sherman Location of weather station from specific weather file used for the building energy simulation is Clinton Sherman -in.weather_file_city Clintonville Muni Location of weather station from specific weather file used for the building energy simulation is Clintonville Muni -in.weather_file_city Cloquet Carlton Co Location of weather station from specific weather file used for the building energy simulation is Cloquet Carlton Co -in.weather_file_city Clovis Muni Location of weather station from specific weather file used for the building energy simulation is Clovis Muni -in.weather_file_city Cody Muni Awos Location of weather station from specific weather file used for the building energy simulation is Cody Muni Awos -in.weather_file_city Coeur D Alene Air Te Location of weather station from specific weather file used for the building energy simulation is Coeur D Alene Air Te -in.weather_file_city Coffeyville Muni Location of weather station from specific weather file used for the building energy simulation is Coffeyville Muni -in.weather_file_city Col James Jabara Location of weather station from specific weather file used for the building energy simulation is Col James Jabara -in.weather_file_city Cold Bay Location of weather station from specific weather file used for the building energy simulation is Cold Bay -in.weather_file_city Coles Co Mem Location of weather station from specific weather file used for the building energy simulation is Coles Co Mem -in.weather_file_city Collin Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Collin Co Rgnl -in.weather_file_city Colorado Plains Rgnl Location of weather station from specific weather file used for the building energy simulation is Colorado Plains Rgnl -in.weather_file_city Colorado Springs Mu Location of weather station from specific weather file used for the building energy simulation is Colorado Springs Mu -in.weather_file_city Columbia Gorge Rgnl Location of weather station from specific weather file used for the building energy simulation is Columbia Gorge Rgnl -in.weather_file_city Columbia Metro Location of weather station from specific weather file used for the building energy simulation is Columbia Metro -in.weather_file_city Columbia Owens Apt Location of weather station from specific weather file used for the building energy simulation is Columbia Owens Apt -in.weather_file_city Columbia Regional Location of weather station from specific weather file used for the building energy simulation is Columbia Regional -in.weather_file_city Columbus Afb Location of weather station from specific weather file used for the building energy simulation is Columbus Afb -in.weather_file_city Columbus Metropolit Location of weather station from specific weather file used for the building energy simulation is Columbus Metropolit -in.weather_file_city Columbus Muni Location of weather station from specific weather file used for the building energy simulation is Columbus Muni -in.weather_file_city Columbus Port Colum Location of weather station from specific weather file used for the building energy simulation is Columbus Port Colum -in.weather_file_city Concord Buchanan Location of weather station from specific weather file used for the building energy simulation is Concord Buchanan -in.weather_file_city Concord Municipal Location of weather station from specific weather file used for the building energy simulation is Concord Municipal -in.weather_file_city Concordia Blosser M Location of weather station from specific weather file used for the building energy simulation is Concordia Blosser M -in.weather_file_city Converse Co Location of weather station from specific weather file used for the building energy simulation is Converse Co -in.weather_file_city Copper Harbor Location of weather station from specific weather file used for the building energy simulation is Copper Harbor -in.weather_file_city Corpus Christi Int Location of weather station from specific weather file used for the building energy simulation is Corpus Christi Int -in.weather_file_city Cortez Muni Location of weather station from specific weather file used for the building energy simulation is Cortez Muni -in.weather_file_city Corvallis Muni Location of weather station from specific weather file used for the building energy simulation is Corvallis Muni -in.weather_file_city Cotulla Lasalle Co Location of weather station from specific weather file used for the building energy simulation is Cotulla Lasalle Co -in.weather_file_city Council Bluffs Muni Location of weather station from specific weather file used for the building energy simulation is Council Bluffs Muni -in.weather_file_city Cox Fld Location of weather station from specific weather file used for the building energy simulation is Cox Fld -in.weather_file_city Craig Moffat Location of weather station from specific weather file used for the building energy simulation is Craig Moffat -in.weather_file_city Craven Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Craven Co Rgnl -in.weather_file_city Creston Muni Location of weather station from specific weather file used for the building energy simulation is Creston Muni -in.weather_file_city Crookston Muni Kirkw Location of weather station from specific weather file used for the building energy simulation is Crookston Muni Kirkw -in.weather_file_city Cross City Cross Ci Location of weather station from specific weather file used for the building energy simulation is Cross City Cross Ci -in.weather_file_city Crossville Mem Whit Location of weather station from specific weather file used for the building energy simulation is Crossville Mem Whit -in.weather_file_city Crystal Location of weather station from specific weather file used for the building energy simulation is Crystal -in.weather_file_city Culpeper Rgnl Location of weather station from specific weather file used for the building energy simulation is Culpeper Rgnl -in.weather_file_city Custer Location of weather station from specific weather file used for the building energy simulation is Custer -in.weather_file_city Custer County Location of weather station from specific weather file used for the building energy simulation is Custer County -in.weather_file_city Cut Bank Muni Location of weather station from specific weather file used for the building energy simulation is Cut Bank Muni -in.weather_file_city Dalhart Municipal Location of weather station from specific weather file used for the building energy simulation is Dalhart Municipal -in.weather_file_city Dallas Hensley Field Nas Location of weather station from specific weather file used for the building energy simulation is Dallas Hensley Field Nas -in.weather_file_city Dallas Love Fld Location of weather station from specific weather file used for the building energy simulation is Dallas Love Fld -in.weather_file_city Dalton Location of weather station from specific weather file used for the building energy simulation is Dalton -in.weather_file_city Danbury Muni Arpt Location of weather station from specific weather file used for the building energy simulation is Danbury Muni Arpt -in.weather_file_city Daniel Field Location of weather station from specific weather file used for the building energy simulation is Daniel Field -in.weather_file_city Danville Rgnl Location of weather station from specific weather file used for the building energy simulation is Danville Rgnl -in.weather_file_city Dare Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Dare Co Rgnl -in.weather_file_city Davenport Muni Location of weather station from specific weather file used for the building energy simulation is Davenport Muni -in.weather_file_city Davis Monthan Afb Location of weather station from specific weather file used for the building energy simulation is Davis Monthan Afb -in.weather_file_city Davison Aaf Location of weather station from specific weather file used for the building energy simulation is Davison Aaf -in.weather_file_city Dawson Community Location of weather station from specific weather file used for the building energy simulation is Dawson Community -in.weather_file_city Dayton James M Cox Location of weather station from specific weather file used for the building energy simulation is Dayton James M Cox -in.weather_file_city Dayton Wright Brothe Location of weather station from specific weather file used for the building energy simulation is Dayton Wright Brothe -in.weather_file_city Dayton Wright Patte Location of weather station from specific weather file used for the building energy simulation is Dayton Wright Patte -in.weather_file_city Daytona Beach Intl Location of weather station from specific weather file used for the building energy simulation is Daytona Beach Intl -in.weather_file_city Decatur Location of weather station from specific weather file used for the building energy simulation is Decatur -in.weather_file_city Decorah Muni Location of weather station from specific weather file used for the building energy simulation is Decorah Muni -in.weather_file_city Deer Park Arpt Location of weather station from specific weather file used for the building energy simulation is Deer Park Arpt -in.weather_file_city Defiance Memorial Location of weather station from specific weather file used for the building energy simulation is Defiance Memorial -in.weather_file_city Dekalb Peachtree Location of weather station from specific weather file used for the building energy simulation is Dekalb Peachtree -in.weather_file_city Del Rio Intl Location of weather station from specific weather file used for the building energy simulation is Del Rio Intl -in.weather_file_city Delaware Co Johnson Location of weather station from specific weather file used for the building energy simulation is Delaware Co Johnson -in.weather_file_city Delta Co Location of weather station from specific weather file used for the building energy simulation is Delta Co -in.weather_file_city Deming Muni Location of weather station from specific weather file used for the building energy simulation is Deming Muni -in.weather_file_city Denison Municipal Location of weather station from specific weather file used for the building energy simulation is Denison Municipal -in.weather_file_city Denton Muni Location of weather station from specific weather file used for the building energy simulation is Denton Muni -in.weather_file_city Denver Internationa Location of weather station from specific weather file used for the building energy simulation is Denver Internationa -in.weather_file_city Derby Fld Location of weather station from specific weather file used for the building energy simulation is Derby Fld -in.weather_file_city Des Moines Intl Location of weather station from specific weather file used for the building energy simulation is Des Moines Intl -in.weather_file_city Desert Rock Location of weather station from specific weather file used for the building energy simulation is Desert Rock -in.weather_file_city Destin Ft Walton Location of weather station from specific weather file used for the building energy simulation is Destin Ft Walton -in.weather_file_city Detroit Lakes Wethin Location of weather station from specific weather file used for the building energy simulation is Detroit Lakes Wethin -in.weather_file_city Detroit Metropolita Location of weather station from specific weather file used for the building energy simulation is Detroit Metropolita -in.weather_file_city Devils Lake Muni Location of weather station from specific weather file used for the building energy simulation is Devils Lake Muni -in.weather_file_city Dickinson Muni Location of weather station from specific weather file used for the building energy simulation is Dickinson Muni -in.weather_file_city Dillant Hopkins Location of weather station from specific weather file used for the building energy simulation is Dillant Hopkins -in.weather_file_city Dillingham Muni Location of weather station from specific weather file used for the building energy simulation is Dillingham Muni -in.weather_file_city Dillon Airport Location of weather station from specific weather file used for the building energy simulation is Dillon Airport -in.weather_file_city Dinwiddie Co Location of weather station from specific weather file used for the building energy simulation is Dinwiddie Co -in.weather_file_city Dodge City Awos Location of weather station from specific weather file used for the building energy simulation is Dodge City Awos -in.weather_file_city Dodge Co Location of weather station from specific weather file used for the building energy simulation is Dodge Co -in.weather_file_city Door Co Cherryland Location of weather station from specific weather file used for the building energy simulation is Door Co Cherryland -in.weather_file_city Dothan Rgnl Location of weather station from specific weather file used for the building energy simulation is Dothan Rgnl -in.weather_file_city Dover Afb Location of weather station from specific weather file used for the building energy simulation is Dover Afb -in.weather_file_city Doylestown Location of weather station from specific weather file used for the building energy simulation is Doylestown -in.weather_file_city Drake Fld Location of weather station from specific weather file used for the building energy simulation is Drake Fld -in.weather_file_city Draughon Miller Cen Location of weather station from specific weather file used for the building energy simulation is Draughon Miller Cen -in.weather_file_city Du Bois Jefferson C Location of weather station from specific weather file used for the building energy simulation is Du Bois Jefferson C -in.weather_file_city Dublin New Riv Vlly Location of weather station from specific weather file used for the building energy simulation is Dublin New Riv Vlly -in.weather_file_city Dubuque Municipal Location of weather station from specific weather file used for the building energy simulation is Dubuque Municipal -in.weather_file_city Duluth Intl Airport Location of weather station from specific weather file used for the building energy simulation is Duluth Intl Airport -in.weather_file_city Dunkirk Location of weather station from specific weather file used for the building energy simulation is Dunkirk -in.weather_file_city Dupage Location of weather station from specific weather file used for the building energy simulation is Dupage -in.weather_file_city Durango La Plata Co Location of weather station from specific weather file used for the building energy simulation is Durango La Plata Co -in.weather_file_city Dutch Harbor Location of weather station from specific weather file used for the building energy simulation is Dutch Harbor -in.weather_file_city Dutchess Co Location of weather station from specific weather file used for the building energy simulation is Dutchess Co -in.weather_file_city Dyersburg Muni Location of weather station from specific weather file used for the building energy simulation is Dyersburg Muni -in.weather_file_city Eagle Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Eagle Co Rgnl -in.weather_file_city Eagle Creek Airpark Location of weather station from specific weather file used for the building energy simulation is Eagle Creek Airpark -in.weather_file_city Eagle River Union Location of weather station from specific weather file used for the building energy simulation is Eagle River Union -in.weather_file_city Eastern Slopes Rgnl Location of weather station from specific weather file used for the building energy simulation is Eastern Slopes Rgnl -in.weather_file_city Eastern Wv Rgnl She Location of weather station from specific weather file used for the building energy simulation is Eastern Wv Rgnl She -in.weather_file_city Easterwood Fld Location of weather station from specific weather file used for the building energy simulation is Easterwood Fld -in.weather_file_city Edward F Knapp State Location of weather station from specific weather file used for the building energy simulation is Edward F Knapp State -in.weather_file_city El Paso Intl Arpt Location of weather station from specific weather file used for the building energy simulation is El Paso Intl Arpt -in.weather_file_city El Toro Mcas Location of weather station from specific weather file used for the building energy simulation is El Toro Mcas -in.weather_file_city Elizabeth City Cgas Location of weather station from specific weather file used for the building energy simulation is Elizabeth City Cgas -in.weather_file_city Elkhart Morton Co Location of weather station from specific weather file used for the building energy simulation is Elkhart Morton Co -in.weather_file_city Elkins Randolph Cou Location of weather station from specific weather file used for the building energy simulation is Elkins Randolph Cou -in.weather_file_city Elko Rgnl Location of weather station from specific weather file used for the building energy simulation is Elko Rgnl -in.weather_file_city Ellsworth Afb Location of weather station from specific weather file used for the building energy simulation is Ellsworth Afb -in.weather_file_city Elmira Corning Rgnl Location of weather station from specific weather file used for the building energy simulation is Elmira Corning Rgnl -in.weather_file_city Ely Arpt Yelland Fld Location of weather station from specific weather file used for the building energy simulation is Ely Arpt Yelland Fld -in.weather_file_city Emporia Muni Location of weather station from specific weather file used for the building energy simulation is Emporia Muni -in.weather_file_city Erie Intl Airport Location of weather station from specific weather file used for the building energy simulation is Erie Intl Airport -in.weather_file_city Ernest A Love Fld Location of weather station from specific weather file used for the building energy simulation is Ernest A Love Fld -in.weather_file_city Esler Rgnl Location of weather station from specific weather file used for the building energy simulation is Esler Rgnl -in.weather_file_city Essex Co Location of weather station from specific weather file used for the building energy simulation is Essex Co -in.weather_file_city Estherville Muni Location of weather station from specific weather file used for the building energy simulation is Estherville Muni -in.weather_file_city Eugene Mahlon Sweet Location of weather station from specific weather file used for the building energy simulation is Eugene Mahlon Sweet -in.weather_file_city Eureka Ramos Location of weather station from specific weather file used for the building energy simulation is Eureka Ramos -in.weather_file_city Evansville Regional Location of weather station from specific weather file used for the building energy simulation is Evansville Regional -in.weather_file_city Executive Location of weather station from specific weather file used for the building energy simulation is Executive -in.weather_file_city Fairchild Afb Location of weather station from specific weather file used for the building energy simulation is Fairchild Afb -in.weather_file_city Fairfield Co Location of weather station from specific weather file used for the building energy simulation is Fairfield Co -in.weather_file_city Fairfield Muni Location of weather station from specific weather file used for the building energy simulation is Fairfield Muni -in.weather_file_city Fairfield Travis Af Location of weather station from specific weather file used for the building energy simulation is Fairfield Travis Af -in.weather_file_city Fairmont Muni Awos Location of weather station from specific weather file used for the building energy simulation is Fairmont Muni Awos -in.weather_file_city Fallon Nas Location of weather station from specific weather file used for the building energy simulation is Fallon Nas -in.weather_file_city Falls City Brenner Location of weather station from specific weather file used for the building energy simulation is Falls City Brenner -in.weather_file_city Fargo Hector Field Location of weather station from specific weather file used for the building energy simulation is Fargo Hector Field -in.weather_file_city Farmington Rgnl Location of weather station from specific weather file used for the building energy simulation is Farmington Rgnl -in.weather_file_city Farmville Rgnl Location of weather station from specific weather file used for the building energy simulation is Farmville Rgnl -in.weather_file_city Fayette Rgnl Air Ctr Location of weather station from specific weather file used for the building energy simulation is Fayette Rgnl Air Ctr -in.weather_file_city Fayetteville Rgnl G Location of weather station from specific weather file used for the building energy simulation is Fayetteville Rgnl G -in.weather_file_city Felts Fld Location of weather station from specific weather file used for the building energy simulation is Felts Fld -in.weather_file_city Findlay Location of weather station from specific weather file used for the building energy simulation is Findlay -in.weather_file_city Flagstaff Airport Location of weather station from specific weather file used for the building energy simulation is Flagstaff Airport -in.weather_file_city Flint Bishop Intl Location of weather station from specific weather file used for the building energy simulation is Flint Bishop Intl -in.weather_file_city Florence Rgnl Location of weather station from specific weather file used for the building energy simulation is Florence Rgnl -in.weather_file_city Florida Keys Maratho Location of weather station from specific weather file used for the building energy simulation is Florida Keys Maratho -in.weather_file_city Floyd Bennett Mem Location of weather station from specific weather file used for the building energy simulation is Floyd Bennett Mem -in.weather_file_city Flying Cloud Location of weather station from specific weather file used for the building energy simulation is Flying Cloud -in.weather_file_city Fond Du Lac Co Location of weather station from specific weather file used for the building energy simulation is Fond Du Lac Co -in.weather_file_city Forbes Fld Location of weather station from specific weather file used for the building energy simulation is Forbes Fld -in.weather_file_city Ford Location of weather station from specific weather file used for the building energy simulation is Ford -in.weather_file_city Fort Benning Location of weather station from specific weather file used for the building energy simulation is Fort Benning -in.weather_file_city Fort Bragg Simmons Location of weather station from specific weather file used for the building energy simulation is Fort Bragg Simmons -in.weather_file_city Fort Campbell Aaf Location of weather station from specific weather file used for the building energy simulation is Fort Campbell Aaf -in.weather_file_city Fort Dodge Awos Location of weather station from specific weather file used for the building energy simulation is Fort Dodge Awos -in.weather_file_city Fort Drum Wheeler S Location of weather station from specific weather file used for the building energy simulation is Fort Drum Wheeler S -in.weather_file_city Fort Knox Godman Location of weather station from specific weather file used for the building energy simulation is Fort Knox Godman -in.weather_file_city Fort Lauderdale Exec Location of weather station from specific weather file used for the building energy simulation is Fort Lauderdale Exec -in.weather_file_city Fort Lewis Gray Aaf Location of weather station from specific weather file used for the building energy simulation is Fort Lewis Gray Aaf -in.weather_file_city Fort Myers Page Fld Location of weather station from specific weather file used for the building energy simulation is Fort Myers Page Fld -in.weather_file_city Fort Polk Army Location of weather station from specific weather file used for the building energy simulation is Fort Polk Army -in.weather_file_city Fort Sill Location of weather station from specific weather file used for the building energy simulation is Fort Sill -in.weather_file_city Fort Smith Muni Location of weather station from specific weather file used for the building energy simulation is Fort Smith Muni -in.weather_file_city Fort Stockton Pecos Location of weather station from specific weather file used for the building energy simulation is Fort Stockton Pecos -in.weather_file_city Fort Wayne Baer Fld Location of weather station from specific weather file used for the building energy simulation is Fort Wayne Baer Fld -in.weather_file_city Fort Worth Alliance Location of weather station from specific weather file used for the building energy simulation is Fort Worth Alliance -in.weather_file_city Fort Worth Meacham Location of weather station from specific weather file used for the building energy simulation is Fort Worth Meacham -in.weather_file_city Four Corners Rgnl Location of weather station from specific weather file used for the building energy simulation is Four Corners Rgnl -in.weather_file_city Franklin Muni Jb Ros Location of weather station from specific weather file used for the building energy simulation is Franklin Muni Jb Ros -in.weather_file_city Frederick Muni Location of weather station from specific weather file used for the building energy simulation is Frederick Muni -in.weather_file_city Fremont Muni Location of weather station from specific weather file used for the building energy simulation is Fremont Muni -in.weather_file_city Fresno Air Terminal Location of weather station from specific weather file used for the building energy simulation is Fresno Air Terminal -in.weather_file_city Friday Harbor Location of weather station from specific weather file used for the building energy simulation is Friday Harbor -in.weather_file_city Frying Pan Shoals Location of weather station from specific weather file used for the building energy simulation is Frying Pan Shoals -in.weather_file_city Ft Riley Marshall Location of weather station from specific weather file used for the building energy simulation is Ft Riley Marshall -in.weather_file_city Fulton Co Arpt Brow Location of weather station from specific weather file used for the building energy simulation is Fulton Co Arpt Brow -in.weather_file_city Gadsden Muni Location of weather station from specific weather file used for the building energy simulation is Gadsden Muni -in.weather_file_city Gage Shattuck Location of weather station from specific weather file used for the building energy simulation is Gage Shattuck -in.weather_file_city Gainesville Rgnl Location of weather station from specific weather file used for the building energy simulation is Gainesville Rgnl -in.weather_file_city Gallatin Fld Location of weather station from specific weather file used for the building energy simulation is Gallatin Fld -in.weather_file_city Gallup Muni Location of weather station from specific weather file used for the building energy simulation is Gallup Muni -in.weather_file_city Galveston Location of weather station from specific weather file used for the building energy simulation is Galveston -in.weather_file_city Garden City Rgnl Location of weather station from specific weather file used for the building energy simulation is Garden City Rgnl -in.weather_file_city Garfield Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Garfield Co Rgnl -in.weather_file_city Garrison Location of weather station from specific weather file used for the building energy simulation is Garrison -in.weather_file_city Gastonia Muni Location of weather station from specific weather file used for the building energy simulation is Gastonia Muni -in.weather_file_city Gaylord Rgnl Location of weather station from specific weather file used for the building energy simulation is Gaylord Rgnl -in.weather_file_city Georgetown Muni Location of weather station from specific weather file used for the building energy simulation is Georgetown Muni -in.weather_file_city Gillette Gillette C Location of weather station from specific weather file used for the building energy simulation is Gillette Gillette C -in.weather_file_city Glasgow Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Glasgow Intl Arpt -in.weather_file_city Glenwood Muni Location of weather station from specific weather file used for the building energy simulation is Glenwood Muni -in.weather_file_city Gocebic Iron Co Location of weather station from specific weather file used for the building energy simulation is Gocebic Iron Co -in.weather_file_city Goodland Renner Fie Location of weather station from specific weather file used for the building energy simulation is Goodland Renner Fie -in.weather_file_city Grand Forks Afb Location of weather station from specific weather file used for the building energy simulation is Grand Forks Afb -in.weather_file_city Grand Forks Intl Location of weather station from specific weather file used for the building energy simulation is Grand Forks Intl -in.weather_file_city Grand Island County Location of weather station from specific weather file used for the building energy simulation is Grand Island County -in.weather_file_city Grand Junction Walk Location of weather station from specific weather file used for the building energy simulation is Grand Junction Walk -in.weather_file_city Grand Marias Location of weather station from specific weather file used for the building energy simulation is Grand Marias -in.weather_file_city Grand Rapids Itasca Location of weather station from specific weather file used for the building energy simulation is Grand Rapids Itasca -in.weather_file_city Grand Rapids Kent C Location of weather station from specific weather file used for the building energy simulation is Grand Rapids Kent C -in.weather_file_city Gratiot Community Location of weather station from specific weather file used for the building energy simulation is Gratiot Community -in.weather_file_city Great Bend Muni Location of weather station from specific weather file used for the building energy simulation is Great Bend Muni -in.weather_file_city Great Falls Intl Location of weather station from specific weather file used for the building energy simulation is Great Falls Intl -in.weather_file_city Greater Buffalo Int Location of weather station from specific weather file used for the building energy simulation is Greater Buffalo Int -in.weather_file_city Greater Peoria Muni Location of weather station from specific weather file used for the building energy simulation is Greater Peoria Muni -in.weather_file_city Greater Pittsburgh I Location of weather station from specific weather file used for the building energy simulation is Greater Pittsburgh I -in.weather_file_city Greater Rockford Location of weather station from specific weather file used for the building energy simulation is Greater Rockford -in.weather_file_city Greeley Weld Co Location of weather station from specific weather file used for the building energy simulation is Greeley Weld Co -in.weather_file_city Green Bay A Straub Location of weather station from specific weather file used for the building energy simulation is Green Bay A Straub -in.weather_file_city Greenbrier Valley Location of weather station from specific weather file used for the building energy simulation is Greenbrier Valley -in.weather_file_city Greensboro G High Location of weather station from specific weather file used for the building energy simulation is Greensboro G High -in.weather_file_city Greenville Location of weather station from specific weather file used for the building energy simulation is Greenville -in.weather_file_city Greenville Greenvil Location of weather station from specific weather file used for the building energy simulation is Greenville Greenvil -in.weather_file_city Greenwood Co Location of weather station from specific weather file used for the building energy simulation is Greenwood Co -in.weather_file_city Greenwood Leflore Location of weather station from specific weather file used for the building energy simulation is Greenwood Leflore -in.weather_file_city Grider Fld Location of weather station from specific weather file used for the building energy simulation is Grider Fld -in.weather_file_city Griffiss Airpark Location of weather station from specific weather file used for the building energy simulation is Griffiss Airpark -in.weather_file_city Grissom Arb Location of weather station from specific weather file used for the building energy simulation is Grissom Arb -in.weather_file_city Gulfport Biloxi Int Location of weather station from specific weather file used for the building energy simulation is Gulfport Biloxi Int -in.weather_file_city Gunnison Co Awos Location of weather station from specific weather file used for the building energy simulation is Gunnison Co Awos -in.weather_file_city Gustavus Location of weather station from specific weather file used for the building energy simulation is Gustavus -in.weather_file_city Guthrie Muni Location of weather station from specific weather file used for the building energy simulation is Guthrie Muni -in.weather_file_city Hagerstown Rgnl Ric Location of weather station from specific weather file used for the building energy simulation is Hagerstown Rgnl Ric -in.weather_file_city Haines Location of weather station from specific weather file used for the building energy simulation is Haines -in.weather_file_city Halifax Co Location of weather station from specific weather file used for the building energy simulation is Halifax Co -in.weather_file_city Hallock Muni Location of weather station from specific weather file used for the building energy simulation is Hallock Muni -in.weather_file_city Hancock Co Bar Harbo Location of weather station from specific weather file used for the building energy simulation is Hancock Co Bar Harbo -in.weather_file_city Hanford Location of weather station from specific weather file used for the building energy simulation is Hanford -in.weather_file_city Hanford Muni Location of weather station from specific weather file used for the building energy simulation is Hanford Muni -in.weather_file_city Hanover Co Muni Location of weather station from specific weather file used for the building energy simulation is Hanover Co Muni -in.weather_file_city Harriman And West Location of weather station from specific weather file used for the building energy simulation is Harriman And West -in.weather_file_city Harrisburg Capital Location of weather station from specific weather file used for the building energy simulation is Harrisburg Capital -in.weather_file_city Harrisburg Intl Location of weather station from specific weather file used for the building energy simulation is Harrisburg Intl -in.weather_file_city Harrison Marion Rgn Location of weather station from specific weather file used for the building energy simulation is Harrison Marion Rgn -in.weather_file_city Harry Clever Fld Location of weather station from specific weather file used for the building energy simulation is Harry Clever Fld -in.weather_file_city Harry P Williams Mem Location of weather station from specific weather file used for the building energy simulation is Harry P Williams Mem -in.weather_file_city Hartford Brainard Location of weather station from specific weather file used for the building energy simulation is Hartford Brainard -in.weather_file_city Hartness State Location of weather station from specific weather file used for the building energy simulation is Hartness State -in.weather_file_city Hartnett County Location of weather station from specific weather file used for the building energy simulation is Hartnett County -in.weather_file_city Hastings Muni Location of weather station from specific weather file used for the building energy simulation is Hastings Muni -in.weather_file_city Hattiesburg Laurel Location of weather station from specific weather file used for the building energy simulation is Hattiesburg Laurel -in.weather_file_city Havre Amos Location of weather station from specific weather file used for the building energy simulation is Havre Amos -in.weather_file_city Hayden Yampa Awos Location of weather station from specific weather file used for the building energy simulation is Hayden Yampa Awos -in.weather_file_city Hays Rgnl Location of weather station from specific weather file used for the building energy simulation is Hays Rgnl -in.weather_file_city Hayward Air Term Location of weather station from specific weather file used for the building energy simulation is Hayward Air Term -in.weather_file_city Helena Regional Location of weather station from specific weather file used for the building energy simulation is Helena Regional -in.weather_file_city Henderson City Co Location of weather station from specific weather file used for the building energy simulation is Henderson City Co -in.weather_file_city Hermiston Muni Location of weather station from specific weather file used for the building energy simulation is Hermiston Muni -in.weather_file_city Hernando Co Location of weather station from specific weather file used for the building energy simulation is Hernando Co -in.weather_file_city Hettinger Muni Location of weather station from specific weather file used for the building energy simulation is Hettinger Muni -in.weather_file_city Hickory Rgnl Location of weather station from specific weather file used for the building energy simulation is Hickory Rgnl -in.weather_file_city Hill Afb Location of weather station from specific weather file used for the building energy simulation is Hill Afb -in.weather_file_city Hill City Muni Location of weather station from specific weather file used for the building energy simulation is Hill City Muni -in.weather_file_city Hillsdale Municipal Location of weather station from specific weather file used for the building energy simulation is Hillsdale Municipal -in.weather_file_city Hobart Muni Location of weather station from specific weather file used for the building energy simulation is Hobart Muni -in.weather_file_city Homer Location of weather station from specific weather file used for the building energy simulation is Homer -in.weather_file_city Hondo Muni Location of weather station from specific weather file used for the building energy simulation is Hondo Muni -in.weather_file_city Honolulu Intl Location of weather station from specific weather file used for the building energy simulation is Honolulu Intl -in.weather_file_city Houghton County Location of weather station from specific weather file used for the building energy simulation is Houghton County -in.weather_file_city Houghton Lake Rosco Location of weather station from specific weather file used for the building energy simulation is Houghton Lake Rosco -in.weather_file_city Houston Dw Hooks Location of weather station from specific weather file used for the building energy simulation is Houston Dw Hooks -in.weather_file_city Houston Ellington Location of weather station from specific weather file used for the building energy simulation is Houston Ellington -in.weather_file_city Houston Intercontin Location of weather station from specific weather file used for the building energy simulation is Houston Intercontin -in.weather_file_city Hunter Aaf Location of weather station from specific weather file used for the building energy simulation is Hunter Aaf -in.weather_file_city Huntingburg Location of weather station from specific weather file used for the building energy simulation is Huntingburg -in.weather_file_city Huntington Tri Stat Location of weather station from specific weather file used for the building energy simulation is Huntington Tri Stat -in.weather_file_city Huntsville Location of weather station from specific weather file used for the building energy simulation is Huntsville -in.weather_file_city Huntsville Madison Location of weather station from specific weather file used for the building energy simulation is Huntsville Madison -in.weather_file_city Huron Co Mem Location of weather station from specific weather file used for the building energy simulation is Huron Co Mem -in.weather_file_city Huron Huron Regiona Location of weather station from specific weather file used for the building energy simulation is Huron Huron Regiona -in.weather_file_city Hutchinson Co Location of weather station from specific weather file used for the building energy simulation is Hutchinson Co -in.weather_file_city Hutchinson Muni Location of weather station from specific weather file used for the building energy simulation is Hutchinson Muni -in.weather_file_city Hutchinson Muni Butl Location of weather station from specific weather file used for the building energy simulation is Hutchinson Muni Butl -in.weather_file_city Idaho Falls Rgnl Location of weather station from specific weather file used for the building energy simulation is Idaho Falls Rgnl -in.weather_file_city Iliamna Iliamna Air Location of weather station from specific weather file used for the building energy simulation is Iliamna Iliamna Air -in.weather_file_city Imperial Co Location of weather station from specific weather file used for the building energy simulation is Imperial Co -in.weather_file_city Indiana Co Location of weather station from specific weather file used for the building energy simulation is Indiana Co -in.weather_file_city Indianapolis I Mun Location of weather station from specific weather file used for the building energy simulation is Indianapolis I Mun -in.weather_file_city Ingalls Fld Location of weather station from specific weather file used for the building energy simulation is Ingalls Fld -in.weather_file_city International Falls Location of weather station from specific weather file used for the building energy simulation is International Falls -in.weather_file_city Iowa City Muni Location of weather station from specific weather file used for the building energy simulation is Iowa City Muni -in.weather_file_city Iowa Co Location of weather station from specific weather file used for the building energy simulation is Iowa Co -in.weather_file_city J F Kennedy Memorial Location of weather station from specific weather file used for the building energy simulation is J F Kennedy Memorial -in.weather_file_city J L Helms Sevier Co Location of weather station from specific weather file used for the building energy simulation is J L Helms Sevier Co -in.weather_file_city Jack Mc Namara Fld Location of weather station from specific weather file used for the building energy simulation is Jack Mc Namara Fld -in.weather_file_city Jackson Allen C Th Location of weather station from specific weather file used for the building energy simulation is Jackson Allen C Th -in.weather_file_city Jackson Carroll Arpt Location of weather station from specific weather file used for the building energy simulation is Jackson Carroll Arpt -in.weather_file_city Jackson Co Reynolds Location of weather station from specific weather file used for the building energy simulation is Jackson Co Reynolds -in.weather_file_city Jackson Hole Location of weather station from specific weather file used for the building energy simulation is Jackson Hole -in.weather_file_city Jackson Muni Location of weather station from specific weather file used for the building energy simulation is Jackson Muni -in.weather_file_city Jacksonville Awos Location of weather station from specific weather file used for the building energy simulation is Jacksonville Awos -in.weather_file_city Jacksonville Intnl Location of weather station from specific weather file used for the building energy simulation is Jacksonville Intnl -in.weather_file_city Jacksonville Muni Location of weather station from specific weather file used for the building energy simulation is Jacksonville Muni -in.weather_file_city Jacksonville Nas Location of weather station from specific weather file used for the building energy simulation is Jacksonville Nas -in.weather_file_city Jamestown Rgnl Location of weather station from specific weather file used for the building energy simulation is Jamestown Rgnl -in.weather_file_city Jefferson City Mem Location of weather station from specific weather file used for the building energy simulation is Jefferson City Mem -in.weather_file_city Jerome Co Location of weather station from specific weather file used for the building energy simulation is Jerome Co -in.weather_file_city John H Batten Location of weather station from specific weather file used for the building energy simulation is John H Batten -in.weather_file_city John Murtha Johnsto Location of weather station from specific weather file used for the building energy simulation is John Murtha Johnsto -in.weather_file_city Johnson Co Location of weather station from specific weather file used for the building energy simulation is Johnson Co -in.weather_file_city Johnson Co Executive Location of weather station from specific weather file used for the building energy simulation is Johnson Co Executive -in.weather_file_city Johnson Co Industr Location of weather station from specific weather file used for the building energy simulation is Johnson Co Industr -in.weather_file_city Joliet Rgnl Location of weather station from specific weather file used for the building energy simulation is Joliet Rgnl -in.weather_file_city Jonesboro Muni Location of weather station from specific weather file used for the building energy simulation is Jonesboro Muni -in.weather_file_city Joplin Rgnl Location of weather station from specific weather file used for the building energy simulation is Joplin Rgnl -in.weather_file_city Jordan Location of weather station from specific weather file used for the building energy simulation is Jordan -in.weather_file_city Joslin Fld Magic Va Location of weather station from specific weather file used for the building energy simulation is Joslin Fld Magic Va -in.weather_file_city Juneau Location of weather station from specific weather file used for the building energy simulation is Juneau -in.weather_file_city Kalamazoo Battle Cr Location of weather station from specific weather file used for the building energy simulation is Kalamazoo Battle Cr -in.weather_file_city Kalispell Glacier P Location of weather station from specific weather file used for the building energy simulation is Kalispell Glacier P -in.weather_file_city Kansas City Intl Location of weather station from specific weather file used for the building energy simulation is Kansas City Intl -in.weather_file_city Kearney Muni Location of weather station from specific weather file used for the building energy simulation is Kearney Muni -in.weather_file_city Kenosha Rgnl Location of weather station from specific weather file used for the building energy simulation is Kenosha Rgnl -in.weather_file_city Keokuk Muni Location of weather station from specific weather file used for the building energy simulation is Keokuk Muni -in.weather_file_city Ketchikan Intl Location of weather station from specific weather file used for the building energy simulation is Ketchikan Intl -in.weather_file_city Killeen Muni Awos Location of weather station from specific weather file used for the building energy simulation is Killeen Muni Awos -in.weather_file_city Kimble Co Location of weather station from specific weather file used for the building energy simulation is Kimble Co -in.weather_file_city King Salmon Location of weather station from specific weather file used for the building energy simulation is King Salmon -in.weather_file_city Kingman Location of weather station from specific weather file used for the building energy simulation is Kingman -in.weather_file_city Kingsville Nas Location of weather station from specific weather file used for the building energy simulation is Kingsville Nas -in.weather_file_city Kirksville Rgnl Location of weather station from specific weather file used for the building energy simulation is Kirksville Rgnl -in.weather_file_city Kirsch Muni Location of weather station from specific weather file used for the building energy simulation is Kirsch Muni -in.weather_file_city Kit Carson County Location of weather station from specific weather file used for the building energy simulation is Kit Carson County -in.weather_file_city Klamath Falls Location of weather station from specific weather file used for the building energy simulation is Klamath Falls -in.weather_file_city Knoxville Location of weather station from specific weather file used for the building energy simulation is Knoxville -in.weather_file_city Knoxville Municipal Location of weather station from specific weather file used for the building energy simulation is Knoxville Municipal -in.weather_file_city Kodiak Location of weather station from specific weather file used for the building energy simulation is Kodiak -in.weather_file_city L M Clayton Location of weather station from specific weather file used for the building energy simulation is L M Clayton -in.weather_file_city L O Simenstad Muni Location of weather station from specific weather file used for the building energy simulation is L O Simenstad Muni -in.weather_file_city La Crosse Municipal Location of weather station from specific weather file used for the building energy simulation is La Crosse Municipal -in.weather_file_city La Grande Union Co Location of weather station from specific weather file used for the building energy simulation is La Grande Union Co -in.weather_file_city La Junta Muni Location of weather station from specific weather file used for the building energy simulation is La Junta Muni -in.weather_file_city La Usc Downtown Cam Location of weather station from specific weather file used for the building energy simulation is La Usc Downtown Cam -in.weather_file_city Lac Qui Parle Co Location of weather station from specific weather file used for the building energy simulation is Lac Qui Parle Co -in.weather_file_city Laconia Muni Location of weather station from specific weather file used for the building energy simulation is Laconia Muni -in.weather_file_city Lafayette Rgnl Location of weather station from specific weather file used for the building energy simulation is Lafayette Rgnl -in.weather_file_city Lake Charles Muni Location of weather station from specific weather file used for the building energy simulation is Lake Charles Muni -in.weather_file_city Lake Co Location of weather station from specific weather file used for the building energy simulation is Lake Co -in.weather_file_city Lake Tahoe Location of weather station from specific weather file used for the building energy simulation is Lake Tahoe -in.weather_file_city Lakefront Location of weather station from specific weather file used for the building energy simulation is Lakefront -in.weather_file_city Lakeland Noble F Le Location of weather station from specific weather file used for the building energy simulation is Lakeland Noble F Le -in.weather_file_city Lamar Muni Location of weather station from specific weather file used for the building energy simulation is Lamar Muni -in.weather_file_city Lamoni Muni Airport Location of weather station from specific weather file used for the building energy simulation is Lamoni Muni Airport -in.weather_file_city Lancaster Location of weather station from specific weather file used for the building energy simulation is Lancaster -in.weather_file_city Langlade Co Location of weather station from specific weather file used for the building energy simulation is Langlade Co -in.weather_file_city Langley Afb Hampton Location of weather station from specific weather file used for the building energy simulation is Langley Afb Hampton -in.weather_file_city Lansing Capital Cit Location of weather station from specific weather file used for the building energy simulation is Lansing Capital Cit -in.weather_file_city Laramie Rgnl Location of weather station from specific weather file used for the building energy simulation is Laramie Rgnl -in.weather_file_city Laredo Intl Airport Location of weather station from specific weather file used for the building energy simulation is Laredo Intl Airport -in.weather_file_city Las Vegas Mccarran Location of weather station from specific weather file used for the building energy simulation is Las Vegas Mccarran -in.weather_file_city Las Vegas Municipal Location of weather station from specific weather file used for the building energy simulation is Las Vegas Municipal -in.weather_file_city Laughlin Afb Location of weather station from specific weather file used for the building energy simulation is Laughlin Afb -in.weather_file_city Laurence G Hanscom Location of weather station from specific weather file used for the building energy simulation is Laurence G Hanscom -in.weather_file_city Lawrence Muni Location of weather station from specific weather file used for the building energy simulation is Lawrence Muni -in.weather_file_city Lawrenceville Vincen Location of weather station from specific weather file used for the building energy simulation is Lawrenceville Vincen -in.weather_file_city Lawton Municipal Location of weather station from specific weather file used for the building energy simulation is Lawton Municipal -in.weather_file_city Le Mars Muni Location of weather station from specific weather file used for the building energy simulation is Le Mars Muni -in.weather_file_city Lebanon Muni Location of weather station from specific weather file used for the building energy simulation is Lebanon Muni -in.weather_file_city Lee C Fine Mem Location of weather station from specific weather file used for the building energy simulation is Lee C Fine Mem -in.weather_file_city Lee Gilmer Mem Location of weather station from specific weather file used for the building energy simulation is Lee Gilmer Mem -in.weather_file_city Leesburg Executive Location of weather station from specific weather file used for the building energy simulation is Leesburg Executive -in.weather_file_city Leesburg Rgnl Location of weather station from specific weather file used for the building energy simulation is Leesburg Rgnl -in.weather_file_city Lemhi Co Location of weather station from specific weather file used for the building energy simulation is Lemhi Co -in.weather_file_city Lenawee Co Location of weather station from specific weather file used for the building energy simulation is Lenawee Co -in.weather_file_city Lewis University Location of weather station from specific weather file used for the building energy simulation is Lewis University -in.weather_file_city Lewiston Nez Perce Location of weather station from specific weather file used for the building energy simulation is Lewiston Nez Perce -in.weather_file_city Lewistown Muni Location of weather station from specific weather file used for the building energy simulation is Lewistown Muni -in.weather_file_city Lexington Blue Gras Location of weather station from specific weather file used for the building energy simulation is Lexington Blue Gras -in.weather_file_city Liberal Muni Location of weather station from specific weather file used for the building energy simulation is Liberal Muni -in.weather_file_city Lidgerwood Ramos Location of weather station from specific weather file used for the building energy simulation is Lidgerwood Ramos -in.weather_file_city Lima Allen Co Location of weather station from specific weather file used for the building energy simulation is Lima Allen Co -in.weather_file_city Limon Muni Location of weather station from specific weather file used for the building energy simulation is Limon Muni -in.weather_file_city Lincoln Municipal Location of weather station from specific weather file used for the building energy simulation is Lincoln Municipal -in.weather_file_city Litchfield Muni Location of weather station from specific weather file used for the building energy simulation is Litchfield Muni -in.weather_file_city Little Rock Adams F Location of weather station from specific weather file used for the building energy simulation is Little Rock Adams F -in.weather_file_city Little Rock Afb Location of weather station from specific weather file used for the building energy simulation is Little Rock Afb -in.weather_file_city Livingston Co Location of weather station from specific weather file used for the building energy simulation is Livingston Co -in.weather_file_city Logan Cache Location of weather station from specific weather file used for the building energy simulation is Logan Cache -in.weather_file_city London Corbin Arpt Location of weather station from specific weather file used for the building energy simulation is London Corbin Arpt -in.weather_file_city Lonesome Pine Location of weather station from specific weather file used for the building energy simulation is Lonesome Pine -in.weather_file_city Long Island Mac Art Location of weather station from specific weather file used for the building energy simulation is Long Island Mac Art -in.weather_file_city Longview Location of weather station from specific weather file used for the building energy simulation is Longview -in.weather_file_city Lorain Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Lorain Co Rgnl -in.weather_file_city Louisa Co Freeman Fl Location of weather station from specific weather file used for the building energy simulation is Louisa Co Freeman Fl -in.weather_file_city Louisville Standifo Location of weather station from specific weather file used for the building energy simulation is Louisville Standifo -in.weather_file_city Lowell Location of weather station from specific weather file used for the building energy simulation is Lowell -in.weather_file_city Lubbock Lubbock Int Location of weather station from specific weather file used for the building energy simulation is Lubbock Lubbock Int -in.weather_file_city Luce Co Location of weather station from specific weather file used for the building energy simulation is Luce Co -in.weather_file_city Lynchburg Mun P G Location of weather station from specific weather file used for the building energy simulation is Lynchburg Mun P G -in.weather_file_city Mackinack Island Location of weather station from specific weather file used for the building energy simulation is Mackinack Island -in.weather_file_city Macon Lewis Bwilso Location of weather station from specific weather file used for the building energy simulation is Macon Lewis Bwilso -in.weather_file_city Madera Muni Location of weather station from specific weather file used for the building energy simulation is Madera Muni -in.weather_file_city Madison Dane County Location of weather station from specific weather file used for the building energy simulation is Madison Dane County -in.weather_file_city Malmstrom Afhp Location of weather station from specific weather file used for the building energy simulation is Malmstrom Afhp -in.weather_file_city Manassas Rgnl Davis Location of weather station from specific weather file used for the building energy simulation is Manassas Rgnl Davis -in.weather_file_city Manchester Location of weather station from specific weather file used for the building energy simulation is Manchester -in.weather_file_city Manhattan Rgnl Location of weather station from specific weather file used for the building energy simulation is Manhattan Rgnl -in.weather_file_city Manistee Co Blacker Location of weather station from specific weather file used for the building energy simulation is Manistee Co Blacker -in.weather_file_city Manistique Amos Location of weather station from specific weather file used for the building energy simulation is Manistique Amos -in.weather_file_city Manitowoc Co Location of weather station from specific weather file used for the building energy simulation is Manitowoc Co -in.weather_file_city Mankata Rgnl Arpt Location of weather station from specific weather file used for the building energy simulation is Mankata Rgnl Arpt -in.weather_file_city Mansfield Lahm Rgnl Location of weather station from specific weather file used for the building energy simulation is Mansfield Lahm Rgnl -in.weather_file_city Marfa Municipal Location of weather station from specific weather file used for the building energy simulation is Marfa Municipal -in.weather_file_city Marianna Muni Location of weather station from specific weather file used for the building energy simulation is Marianna Muni -in.weather_file_city Marietta Dobbins Af Location of weather station from specific weather file used for the building energy simulation is Marietta Dobbins Af -in.weather_file_city Marion Muni Location of weather station from specific weather file used for the building energy simulation is Marion Muni -in.weather_file_city Marseilles Island Location of weather station from specific weather file used for the building energy simulation is Marseilles Island -in.weather_file_city Marshall Town Muni Location of weather station from specific weather file used for the building energy simulation is Marshall Town Muni -in.weather_file_city Marshfield Muni Location of weather station from specific weather file used for the building energy simulation is Marshfield Muni -in.weather_file_city Marthas Vineyard Location of weather station from specific weather file used for the building energy simulation is Marthas Vineyard -in.weather_file_city Mason City Muni Location of weather station from specific weather file used for the building energy simulation is Mason City Muni -in.weather_file_city Mason Co Location of weather station from specific weather file used for the building energy simulation is Mason Co -in.weather_file_city Mason Jewett Fld Location of weather station from specific weather file used for the building energy simulation is Mason Jewett Fld -in.weather_file_city Massena Intl Richar Location of weather station from specific weather file used for the building energy simulation is Massena Intl Richar -in.weather_file_city Matinicus Rock Location of weather station from specific weather file used for the building energy simulation is Matinicus Rock -in.weather_file_city Maxton Location of weather station from specific weather file used for the building energy simulation is Maxton -in.weather_file_city Maxwell Afb Location of weather station from specific weather file used for the building energy simulation is Maxwell Afb -in.weather_file_city Mbs Intl Location of weather station from specific weather file used for the building energy simulation is Mbs Intl -in.weather_file_city Mc Alester Rgnl Location of weather station from specific weather file used for the building energy simulation is Mc Alester Rgnl -in.weather_file_city Mc Allen Miller Int Location of weather station from specific weather file used for the building energy simulation is Mc Allen Miller Int -in.weather_file_city Mc Call Muni Location of weather station from specific weather file used for the building energy simulation is Mc Call Muni -in.weather_file_city Mc Clellan Afld Location of weather station from specific weather file used for the building energy simulation is Mc Clellan Afld -in.weather_file_city Mc Comb Pike Co Joh Location of weather station from specific weather file used for the building energy simulation is Mc Comb Pike Co Joh -in.weather_file_city Mc Connell Afb Location of weather station from specific weather file used for the building energy simulation is Mc Connell Afb -in.weather_file_city Mc Gregor Executive Location of weather station from specific weather file used for the building energy simulation is Mc Gregor Executive -in.weather_file_city Mc Kellar Sipes Rgn Location of weather station from specific weather file used for the building energy simulation is Mc Kellar Sipes Rgn -in.weather_file_city Mc Minnville Muni Location of weather station from specific weather file used for the building energy simulation is Mc Minnville Muni -in.weather_file_city Mccook Rgnl Location of weather station from specific weather file used for the building energy simulation is Mccook Rgnl -in.weather_file_city Mecklenburg Brunswi Location of weather station from specific weather file used for the building energy simulation is Mecklenburg Brunswi -in.weather_file_city Medford Jackson Cou Location of weather station from specific weather file used for the building energy simulation is Medford Jackson Cou -in.weather_file_city Medicine Lodge Amos Location of weather station from specific weather file used for the building energy simulation is Medicine Lodge Amos -in.weather_file_city Meeker Location of weather station from specific weather file used for the building energy simulation is Meeker -in.weather_file_city Melbourne Regional Location of weather station from specific weather file used for the building energy simulation is Melbourne Regional -in.weather_file_city Memorial Fld Location of weather station from specific weather file used for the building energy simulation is Memorial Fld -in.weather_file_city Memphis Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Memphis Intl Arpt -in.weather_file_city Menominee Marinette Location of weather station from specific weather file used for the building energy simulation is Menominee Marinette -in.weather_file_city Merced Muni Macready Location of weather station from specific weather file used for the building energy simulation is Merced Muni Macready -in.weather_file_city Mercer Co Location of weather station from specific weather file used for the building energy simulation is Mercer Co -in.weather_file_city Meriden Markham Muni Location of weather station from specific weather file used for the building energy simulation is Meriden Markham Muni -in.weather_file_city Meridian Key Field Location of weather station from specific weather file used for the building energy simulation is Meridian Key Field -in.weather_file_city Meridian Nas Location of weather station from specific weather file used for the building energy simulation is Meridian Nas -in.weather_file_city Merrill Muni Location of weather station from specific weather file used for the building energy simulation is Merrill Muni -in.weather_file_city Metcalf Fld Location of weather station from specific weather file used for the building energy simulation is Metcalf Fld -in.weather_file_city Miami Location of weather station from specific weather file used for the building energy simulation is Miami -in.weather_file_city Michael J Smith Fld Location of weather station from specific weather file used for the building energy simulation is Michael J Smith Fld -in.weather_file_city Mid Ohio Valley Rgn Location of weather station from specific weather file used for the building energy simulation is Mid Ohio Valley Rgn -in.weather_file_city Middleton Fld Location of weather station from specific weather file used for the building energy simulation is Middleton Fld -in.weather_file_city Middleton Island Location of weather station from specific weather file used for the building energy simulation is Middleton Island -in.weather_file_city Midland Midland Reg Location of weather station from specific weather file used for the building energy simulation is Midland Midland Reg -in.weather_file_city Miles City Location of weather station from specific weather file used for the building energy simulation is Miles City -in.weather_file_city Millington Muni Arp Location of weather station from specific weather file used for the building energy simulation is Millington Muni Arp -in.weather_file_city Millville Muni Location of weather station from specific weather file used for the building energy simulation is Millville Muni -in.weather_file_city Milwaukee Gen Mitc Location of weather station from specific weather file used for the building energy simulation is Milwaukee Gen Mitc -in.weather_file_city Mineral Wells Muni Location of weather station from specific weather file used for the building energy simulation is Mineral Wells Muni -in.weather_file_city Minot Afb Location of weather station from specific weather file used for the building energy simulation is Minot Afb -in.weather_file_city Minot Intl Location of weather station from specific weather file used for the building energy simulation is Minot Intl -in.weather_file_city Miramar Mcas Location of weather station from specific weather file used for the building energy simulation is Miramar Mcas -in.weather_file_city Mission Fld Location of weather station from specific weather file used for the building energy simulation is Mission Fld -in.weather_file_city Missoula Johnson Be Location of weather station from specific weather file used for the building energy simulation is Missoula Johnson Be -in.weather_file_city Mitchell Muni Location of weather station from specific weather file used for the building energy simulation is Mitchell Muni -in.weather_file_city Mobile Bates Field Location of weather station from specific weather file used for the building energy simulation is Mobile Bates Field -in.weather_file_city Mobile Downtown Location of weather station from specific weather file used for the building energy simulation is Mobile Downtown -in.weather_file_city Mobridge Muni Location of weather station from specific weather file used for the building energy simulation is Mobridge Muni -in.weather_file_city Modesto City Co Har Location of weather station from specific weather file used for the building energy simulation is Modesto City Co Har -in.weather_file_city Moline Quad City Location of weather station from specific weather file used for the building energy simulation is Moline Quad City -in.weather_file_city Monmouth Executive Location of weather station from specific weather file used for the building energy simulation is Monmouth Executive -in.weather_file_city Monroe Airport Location of weather station from specific weather file used for the building energy simulation is Monroe Airport -in.weather_file_city Monroe Co Location of weather station from specific weather file used for the building energy simulation is Monroe Co -in.weather_file_city Monroe Muni Location of weather station from specific weather file used for the building energy simulation is Monroe Muni -in.weather_file_city Monroe Rgnl Location of weather station from specific weather file used for the building energy simulation is Monroe Rgnl -in.weather_file_city Montevideo Chippewa Location of weather station from specific weather file used for the building energy simulation is Montevideo Chippewa -in.weather_file_city Montgomery Co Location of weather station from specific weather file used for the building energy simulation is Montgomery Co -in.weather_file_city Montgomery Dannelly Location of weather station from specific weather file used for the building energy simulation is Montgomery Dannelly -in.weather_file_city Monticello Muni Location of weather station from specific weather file used for the building energy simulation is Monticello Muni -in.weather_file_city Monticello Rgnl Location of weather station from specific weather file used for the building energy simulation is Monticello Rgnl -in.weather_file_city Montrose Rgnl Location of weather station from specific weather file used for the building energy simulation is Montrose Rgnl -in.weather_file_city Moody Afb Valdosta Location of weather station from specific weather file used for the building energy simulation is Moody Afb Valdosta -in.weather_file_city Moore Co Location of weather station from specific weather file used for the building energy simulation is Moore Co -in.weather_file_city Mora Muni Location of weather station from specific weather file used for the building energy simulation is Mora Muni -in.weather_file_city Morgantown Muni Wal Location of weather station from specific weather file used for the building energy simulation is Morgantown Muni Wal -in.weather_file_city Morris Muni Location of weather station from specific weather file used for the building energy simulation is Morris Muni -in.weather_file_city Morrisville Stowe St Location of weather station from specific weather file used for the building energy simulation is Morrisville Stowe St -in.weather_file_city Moses Lake Grant Co Location of weather station from specific weather file used for the building energy simulation is Moses Lake Grant Co -in.weather_file_city Mount Ida Location of weather station from specific weather file used for the building energy simulation is Mount Ida -in.weather_file_city Mount Pleasant Muni Location of weather station from specific weather file used for the building energy simulation is Mount Pleasant Muni -in.weather_file_city Mount Vernon Location of weather station from specific weather file used for the building energy simulation is Mount Vernon -in.weather_file_city Mountain Empire Location of weather station from specific weather file used for the building energy simulation is Mountain Empire -in.weather_file_city Mountain Home Afb Location of weather station from specific weather file used for the building energy simulation is Mountain Home Afb -in.weather_file_city Mt Washington Rgnl Location of weather station from specific weather file used for the building energy simulation is Mt Washington Rgnl -in.weather_file_city Mullan Awrs Location of weather station from specific weather file used for the building energy simulation is Mullan Awrs -in.weather_file_city Muscatine Muni Location of weather station from specific weather file used for the building energy simulation is Muscatine Muni -in.weather_file_city Muskegon Location of weather station from specific weather file used for the building energy simulation is Muskegon -in.weather_file_city Muskogee Davis Fld Location of weather station from specific weather file used for the building energy simulation is Muskogee Davis Fld -in.weather_file_city Myrtle Beach Civ Location of weather station from specific weather file used for the building energy simulation is Myrtle Beach Civ -in.weather_file_city Nantucket Mem Location of weather station from specific weather file used for the building energy simulation is Nantucket Mem -in.weather_file_city Napa Co Location of weather station from specific weather file used for the building energy simulation is Napa Co -in.weather_file_city Naples Muni Location of weather station from specific weather file used for the building energy simulation is Naples Muni -in.weather_file_city Nashville Metropoli Location of weather station from specific weather file used for the building energy simulation is Nashville Metropoli -in.weather_file_city Natchez Hardy Awos Location of weather station from specific weather file used for the building energy simulation is Natchez Hardy Awos -in.weather_file_city New Braunfels Muni Location of weather station from specific weather file used for the building energy simulation is New Braunfels Muni -in.weather_file_city New Iberia Acadiana Location of weather station from specific weather file used for the building energy simulation is New Iberia Acadiana -in.weather_file_city New Orleans Moisant Location of weather station from specific weather file used for the building energy simulation is New Orleans Moisant -in.weather_file_city New Orleans Nas Jrb Location of weather station from specific weather file used for the building energy simulation is New Orleans Nas Jrb -in.weather_file_city New River Mcas Location of weather station from specific weather file used for the building energy simulation is New River Mcas -in.weather_file_city New York John F Ke Location of weather station from specific weather file used for the building energy simulation is New York John F Ke -in.weather_file_city New York La Guardia Location of weather station from specific weather file used for the building energy simulation is New York La Guardia -in.weather_file_city Newark Intl Airport Location of weather station from specific weather file used for the building energy simulation is Newark Intl Airport -in.weather_file_city Newnan Coweta Co Location of weather station from specific weather file used for the building energy simulation is Newnan Coweta Co -in.weather_file_city Newport Location of weather station from specific weather file used for the building energy simulation is Newport -in.weather_file_city Newport News Willia Location of weather station from specific weather file used for the building energy simulation is Newport News Willia -in.weather_file_city Newport State Beach Location of weather station from specific weather file used for the building energy simulation is Newport State Beach -in.weather_file_city Newton City Co Location of weather station from specific weather file used for the building energy simulation is Newton City Co -in.weather_file_city Newton Muni Location of weather station from specific weather file used for the building energy simulation is Newton Muni -in.weather_file_city Niagara Falls Intl Location of weather station from specific weather file used for the building energy simulation is Niagara Falls Intl -in.weather_file_city Nogales Intl Location of weather station from specific weather file used for the building energy simulation is Nogales Intl -in.weather_file_city Norfolk Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Norfolk Intl Arpt -in.weather_file_city Norfolk Karl Stefan Location of weather station from specific weather file used for the building energy simulation is Norfolk Karl Stefan -in.weather_file_city Norfolk Ns Location of weather station from specific weather file used for the building energy simulation is Norfolk Ns -in.weather_file_city Norman Max Westheim Location of weather station from specific weather file used for the building energy simulation is Norman Max Westheim -in.weather_file_city Norman Y Mineta San Location of weather station from specific weather file used for the building energy simulation is Norman Y Mineta San -in.weather_file_city North Bend Muni Location of weather station from specific weather file used for the building energy simulation is North Bend Muni -in.weather_file_city North Central State Location of weather station from specific weather file used for the building energy simulation is North Central State -in.weather_file_city North Platte Lee Bi Location of weather station from specific weather file used for the building energy simulation is North Platte Lee Bi -in.weather_file_city Northeast Philadelph Location of weather station from specific weather file used for the building energy simulation is Northeast Philadelph -in.weather_file_city Northeastern Rgnl Location of weather station from specific weather file used for the building energy simulation is Northeastern Rgnl -in.weather_file_city Northwest Alabama R Location of weather station from specific weather file used for the building energy simulation is Northwest Alabama R -in.weather_file_city Norwood Mem Location of weather station from specific weather file used for the building energy simulation is Norwood Mem -in.weather_file_city Nyc Central Park Location of weather station from specific weather file used for the building energy simulation is Nyc Central Park -in.weather_file_city Oak Ridge Location of weather station from specific weather file used for the building energy simulation is Oak Ridge -in.weather_file_city Oakland Co Intl Location of weather station from specific weather file used for the building energy simulation is Oakland Co Intl -in.weather_file_city Ocala Intl J Taylor Location of weather station from specific weather file used for the building energy simulation is Ocala Intl J Taylor -in.weather_file_city Ocean City Muni Location of weather station from specific weather file used for the building energy simulation is Ocean City Muni -in.weather_file_city Oconee Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Oconee Co Rgnl -in.weather_file_city Odessa Schlemeyer Fl Location of weather station from specific weather file used for the building energy simulation is Odessa Schlemeyer Fl -in.weather_file_city Offutt Afb Location of weather station from specific weather file used for the building energy simulation is Offutt Afb -in.weather_file_city Ogden Hinckley Muni Location of weather station from specific weather file used for the building energy simulation is Ogden Hinckley Muni -in.weather_file_city Ohio State Universi Location of weather station from specific weather file used for the building energy simulation is Ohio State Universi -in.weather_file_city Oklahoma City W Ro Location of weather station from specific weather file used for the building energy simulation is Oklahoma City W Ro -in.weather_file_city Oklahoma City Wiley Location of weather station from specific weather file used for the building energy simulation is Oklahoma City Wiley -in.weather_file_city Olympia Location of weather station from specific weather file used for the building energy simulation is Olympia -in.weather_file_city Omaha Location of weather station from specific weather file used for the building energy simulation is Omaha -in.weather_file_city Omak Location of weather station from specific weather file used for the building energy simulation is Omak -in.weather_file_city Ontaria Muni Location of weather station from specific weather file used for the building energy simulation is Ontaria Muni -in.weather_file_city Ontario Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Ontario Intl Arpt -in.weather_file_city Orange City Muni Location of weather station from specific weather file used for the building energy simulation is Orange City Muni -in.weather_file_city Orange Co Location of weather station from specific weather file used for the building energy simulation is Orange Co -in.weather_file_city Orangeburg Muni Location of weather station from specific weather file used for the building energy simulation is Orangeburg Muni -in.weather_file_city Orlando Jetport Location of weather station from specific weather file used for the building energy simulation is Orlando Jetport -in.weather_file_city Orlando Sanford Location of weather station from specific weather file used for the building energy simulation is Orlando Sanford -in.weather_file_city Oroville Muni Location of weather station from specific weather file used for the building energy simulation is Oroville Muni -in.weather_file_city Ortonville Muni Mart Location of weather station from specific weather file used for the building energy simulation is Ortonville Muni Mart -in.weather_file_city Oscoda Wurtsmith Location of weather station from specific weather file used for the building energy simulation is Oscoda Wurtsmith -in.weather_file_city Oswego Co Location of weather station from specific weather file used for the building energy simulation is Oswego Co -in.weather_file_city Ottumwa Industrial Location of weather station from specific weather file used for the building energy simulation is Ottumwa Industrial -in.weather_file_city Outagamie Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Outagamie Co Rgnl -in.weather_file_city Ozark Rgnl Location of weather station from specific weather file used for the building energy simulation is Ozark Rgnl -in.weather_file_city Paducah Barkley Location of weather station from specific weather file used for the building energy simulation is Paducah Barkley -in.weather_file_city Page Muni Amos Location of weather station from specific weather file used for the building energy simulation is Page Muni Amos -in.weather_file_city Palacios Muni Location of weather station from specific weather file used for the building energy simulation is Palacios Muni -in.weather_file_city Panama City Bay Co Location of weather station from specific weather file used for the building energy simulation is Panama City Bay Co -in.weather_file_city Pangborn Mem Location of weather station from specific weather file used for the building energy simulation is Pangborn Mem -in.weather_file_city Park Falls Muni Location of weather station from specific weather file used for the building energy simulation is Park Falls Muni -in.weather_file_city Park Rapids Muni Kon Location of weather station from specific weather file used for the building energy simulation is Park Rapids Muni Kon -in.weather_file_city Patuxent River Nas Location of weather station from specific weather file used for the building energy simulation is Patuxent River Nas -in.weather_file_city Peachtree City Falco Location of weather station from specific weather file used for the building energy simulation is Peachtree City Falco -in.weather_file_city Pearson Fld Location of weather station from specific weather file used for the building energy simulation is Pearson Fld -in.weather_file_city Pellston Rgnl Arpt Location of weather station from specific weather file used for the building energy simulation is Pellston Rgnl Arpt -in.weather_file_city Pendleton Municipal Location of weather station from specific weather file used for the building energy simulation is Pendleton Municipal -in.weather_file_city Penn Yan Location of weather station from specific weather file used for the building energy simulation is Penn Yan -in.weather_file_city Pensacola Rgnl Location of weather station from specific weather file used for the building energy simulation is Pensacola Rgnl -in.weather_file_city Perry Foley Location of weather station from specific weather file used for the building energy simulation is Perry Foley -in.weather_file_city Perry Stokes Location of weather station from specific weather file used for the building energy simulation is Perry Stokes -in.weather_file_city Philadelphia Intl Location of weather station from specific weather file used for the building energy simulation is Philadelphia Intl -in.weather_file_city Philip Location of weather station from specific weather file used for the building energy simulation is Philip -in.weather_file_city Phoenix Sky Harbor Location of weather station from specific weather file used for the building energy simulation is Phoenix Sky Harbor -in.weather_file_city Pierre Rgnl Location of weather station from specific weather file used for the building energy simulation is Pierre Rgnl -in.weather_file_city Pine Ridge Location of weather station from specific weather file used for the building energy simulation is Pine Ridge -in.weather_file_city Pine River Rgnl Location of weather station from specific weather file used for the building energy simulation is Pine River Rgnl -in.weather_file_city Pine Springs Guadalu Location of weather station from specific weather file used for the building energy simulation is Pine Springs Guadalu -in.weather_file_city Pipestone Muni Location of weather station from specific weather file used for the building energy simulation is Pipestone Muni -in.weather_file_city Pitt Greenville Location of weather station from specific weather file used for the building energy simulation is Pitt Greenville -in.weather_file_city Plattsburgh Intl Location of weather station from specific weather file used for the building energy simulation is Plattsburgh Intl -in.weather_file_city Plymouth Municipal Location of weather station from specific weather file used for the building energy simulation is Plymouth Municipal -in.weather_file_city Pocatello Municipal Location of weather station from specific weather file used for the building energy simulation is Pocatello Municipal -in.weather_file_city Pocono Mountains Mun Location of weather station from specific weather file used for the building energy simulation is Pocono Mountains Mun -in.weather_file_city Ponca City Muni Location of weather station from specific weather file used for the building energy simulation is Ponca City Muni -in.weather_file_city Pope Afb Location of weather station from specific weather file used for the building energy simulation is Pope Afb -in.weather_file_city Poplar Bluff Amos Location of weather station from specific weather file used for the building energy simulation is Poplar Bluff Amos -in.weather_file_city Port Arthur Jeffers Location of weather station from specific weather file used for the building energy simulation is Port Arthur Jeffers -in.weather_file_city Port Meadville Location of weather station from specific weather file used for the building energy simulation is Port Meadville -in.weather_file_city Porter Co Muni Location of weather station from specific weather file used for the building energy simulation is Porter Co Muni -in.weather_file_city Portland Hillsboro Location of weather station from specific weather file used for the building energy simulation is Portland Hillsboro -in.weather_file_city Portland Intl Arpt Location of weather station from specific weather file used for the building energy simulation is Portland Intl Arpt -in.weather_file_city Portland Intnl Jet Location of weather station from specific weather file used for the building energy simulation is Portland Intnl Jet -in.weather_file_city Pottstown Limerick Location of weather station from specific weather file used for the building energy simulation is Pottstown Limerick -in.weather_file_city Prairie Du Chien Mun Location of weather station from specific weather file used for the building energy simulation is Prairie Du Chien Mun -in.weather_file_city Presque Isle Awos Location of weather station from specific weather file used for the building energy simulation is Presque Isle Awos -in.weather_file_city Price Carbon County Location of weather station from specific weather file used for the building energy simulation is Price Carbon County -in.weather_file_city Princeton Muni Location of weather station from specific weather file used for the building energy simulation is Princeton Muni -in.weather_file_city Providence Green St Location of weather station from specific weather file used for the building energy simulation is Providence Green St -in.weather_file_city Provo Muni Location of weather station from specific weather file used for the building energy simulation is Provo Muni -in.weather_file_city Pryor Fld Rgnl Location of weather station from specific weather file used for the building energy simulation is Pryor Fld Rgnl -in.weather_file_city Pueblo Memorial Aw Location of weather station from specific weather file used for the building energy simulation is Pueblo Memorial Aw -in.weather_file_city Pullman Moscow Rgnl Location of weather station from specific weather file used for the building energy simulation is Pullman Moscow Rgnl -in.weather_file_city Purdue Univ Location of weather station from specific weather file used for the building energy simulation is Purdue Univ -in.weather_file_city Quantico Mcaf Location of weather station from specific weather file used for the building energy simulation is Quantico Mcaf -in.weather_file_city Quincy Rgnl Baldwin Location of weather station from specific weather file used for the building energy simulation is Quincy Rgnl Baldwin -in.weather_file_city Raleigh Raleigh Dur Location of weather station from specific weather file used for the building energy simulation is Raleigh Raleigh Dur -in.weather_file_city Randolph Afb Location of weather station from specific weather file used for the building energy simulation is Randolph Afb -in.weather_file_city Rapid City Regional Location of weather station from specific weather file used for the building energy simulation is Rapid City Regional -in.weather_file_city Rawlins Municipal Location of weather station from specific weather file used for the building energy simulation is Rawlins Municipal -in.weather_file_city Reading Rgnl Carl Location of weather station from specific weather file used for the building energy simulation is Reading Rgnl Carl -in.weather_file_city Red Bluff Municipal Location of weather station from specific weather file used for the building energy simulation is Red Bluff Municipal -in.weather_file_city Red Oak Muni Location of weather station from specific weather file used for the building energy simulation is Red Oak Muni -in.weather_file_city Red Wing Rgnl Location of weather station from specific weather file used for the building energy simulation is Red Wing Rgnl -in.weather_file_city Redding Municipal Location of weather station from specific weather file used for the building energy simulation is Redding Municipal -in.weather_file_city Redwood Falls Muni Location of weather station from specific weather file used for the building energy simulation is Redwood Falls Muni -in.weather_file_city Reno Cannon Intl Location of weather station from specific weather file used for the building energy simulation is Reno Cannon Intl -in.weather_file_city Renton Muni Location of weather station from specific weather file used for the building energy simulation is Renton Muni -in.weather_file_city Republic Location of weather station from specific weather file used for the building energy simulation is Republic -in.weather_file_city Rexburg Madison Co Location of weather station from specific weather file used for the building energy simulation is Rexburg Madison Co -in.weather_file_city Rhinelander Oneida Location of weather station from specific weather file used for the building energy simulation is Rhinelander Oneida -in.weather_file_city Rice Lake Rgnl Carls Location of weather station from specific weather file used for the building energy simulation is Rice Lake Rgnl Carls -in.weather_file_city Richard I Bong Location of weather station from specific weather file used for the building energy simulation is Richard I Bong -in.weather_file_city Richard Lloyd Jones Location of weather station from specific weather file used for the building energy simulation is Richard Lloyd Jones -in.weather_file_city Richmond Byrd Field Location of weather station from specific weather file used for the building energy simulation is Richmond Byrd Field -in.weather_file_city Rickenbacker Intl Location of weather station from specific weather file used for the building energy simulation is Rickenbacker Intl -in.weather_file_city Riverside March Afb Location of weather station from specific weather file used for the building energy simulation is Riverside March Afb -in.weather_file_city Riverton Location of weather station from specific weather file used for the building energy simulation is Riverton -in.weather_file_city Roanoke Municipal Location of weather station from specific weather file used for the building energy simulation is Roanoke Municipal -in.weather_file_city Roben Hood Location of weather station from specific weather file used for the building energy simulation is Roben Hood -in.weather_file_city Robert Gray Aaf Location of weather station from specific weather file used for the building energy simulation is Robert Gray Aaf -in.weather_file_city Roberts Fld Location of weather station from specific weather file used for the building energy simulation is Roberts Fld -in.weather_file_city Robins Afb Location of weather station from specific weather file used for the building energy simulation is Robins Afb -in.weather_file_city Rochester Monroe Co Location of weather station from specific weather file used for the building energy simulation is Rochester Monroe Co -in.weather_file_city Rochester Municipal Location of weather station from specific weather file used for the building energy simulation is Rochester Municipal -in.weather_file_city Rock Hill York Co Location of weather station from specific weather file used for the building energy simulation is Rock Hill York Co -in.weather_file_city Rock Springs Sweetw Location of weather station from specific weather file used for the building energy simulation is Rock Springs Sweetw -in.weather_file_city Rocky Mount Wilson Location of weather station from specific weather file used for the building energy simulation is Rocky Mount Wilson -in.weather_file_city Rogers Muni Carter F Location of weather station from specific weather file used for the building energy simulation is Rogers Muni Carter F -in.weather_file_city Rolla Vichy Airport Location of weather station from specific weather file used for the building energy simulation is Rolla Vichy Airport -in.weather_file_city Rome Russell Ramos Location of weather station from specific weather file used for the building energy simulation is Rome Russell Ramos -in.weather_file_city Roseau Muni Billberg Location of weather station from specific weather file used for the building energy simulation is Roseau Muni Billberg -in.weather_file_city Roseburg Rgnl Location of weather station from specific weather file used for the building energy simulation is Roseburg Rgnl -in.weather_file_city Roswell Industrial Location of weather station from specific weather file used for the building energy simulation is Roswell Industrial -in.weather_file_city Rush City Rgnl Location of weather station from specific weather file used for the building energy simulation is Rush City Rgnl -in.weather_file_city Russell Muni Location of weather station from specific weather file used for the building energy simulation is Russell Muni -in.weather_file_city Russellville Rgnl Location of weather station from specific weather file used for the building energy simulation is Russellville Rgnl -in.weather_file_city Rutherfordton Location of weather station from specific weather file used for the building energy simulation is Rutherfordton -in.weather_file_city Rutland State Location of weather station from specific weather file used for the building energy simulation is Rutland State -in.weather_file_city Sacramento Intl Location of weather station from specific weather file used for the building energy simulation is Sacramento Intl -in.weather_file_city Safford Rgnl Location of weather station from specific weather file used for the building energy simulation is Safford Rgnl -in.weather_file_city Salem Leckrone Location of weather station from specific weather file used for the building energy simulation is Salem Leckrone -in.weather_file_city Salem Mcnary Location of weather station from specific weather file used for the building energy simulation is Salem Mcnary -in.weather_file_city Salina Muni Location of weather station from specific weather file used for the building energy simulation is Salina Muni -in.weather_file_city Salinas Muni Location of weather station from specific weather file used for the building energy simulation is Salinas Muni -in.weather_file_city Salisbury Ocean Cit Location of weather station from specific weather file used for the building energy simulation is Salisbury Ocean Cit -in.weather_file_city Salt Lake City Intl Location of weather station from specific weather file used for the building energy simulation is Salt Lake City Intl -in.weather_file_city San Angelo Mathis Location of weather station from specific weather file used for the building energy simulation is San Angelo Mathis -in.weather_file_city San Antonio Intl Location of weather station from specific weather file used for the building energy simulation is San Antonio Intl -in.weather_file_city San Francisco Intl Location of weather station from specific weather file used for the building energy simulation is San Francisco Intl -in.weather_file_city San Luis Co Rgnl Location of weather station from specific weather file used for the building energy simulation is San Luis Co Rgnl -in.weather_file_city San Marcos Muni Location of weather station from specific weather file used for the building energy simulation is San Marcos Muni -in.weather_file_city Sanderson Fld Location of weather station from specific weather file used for the building energy simulation is Sanderson Fld -in.weather_file_city Sanford Rgnl Location of weather station from specific weather file used for the building energy simulation is Sanford Rgnl -in.weather_file_city Santa Barbara Muni Location of weather station from specific weather file used for the building energy simulation is Santa Barbara Muni -in.weather_file_city Santa Fe Co Muni Location of weather station from specific weather file used for the building energy simulation is Santa Fe Co Muni -in.weather_file_city Sarasota Bradenton Location of weather station from specific weather file used for the building energy simulation is Sarasota Bradenton -in.weather_file_city Sault Ste Marie Location of weather station from specific weather file used for the building energy simulation is Sault Ste Marie -in.weather_file_city Savannah Municipal Location of weather station from specific weather file used for the building energy simulation is Savannah Municipal -in.weather_file_city Sawyer Co Location of weather station from specific weather file used for the building energy simulation is Sawyer Co -in.weather_file_city Sawyer Intl Location of weather station from specific weather file used for the building energy simulation is Sawyer Intl -in.weather_file_city Scappoose Industrial Location of weather station from specific weather file used for the building energy simulation is Scappoose Industrial -in.weather_file_city Schenck Fld Location of weather station from specific weather file used for the building energy simulation is Schenck Fld -in.weather_file_city Scott Afb Midameric Location of weather station from specific weather file used for the building energy simulation is Scott Afb Midameric -in.weather_file_city Scottsbluff Heilig Location of weather station from specific weather file used for the building energy simulation is Scottsbluff Heilig -in.weather_file_city Searle Fld Location of weather station from specific weather file used for the building energy simulation is Searle Fld -in.weather_file_city Sedalia Memorial Location of weather station from specific weather file used for the building energy simulation is Sedalia Memorial -in.weather_file_city Selfridge Angb Location of weather station from specific weather file used for the building energy simulation is Selfridge Angb -in.weather_file_city Seward Location of weather station from specific weather file used for the building energy simulation is Seward -in.weather_file_city Sexton Summit Location of weather station from specific weather file used for the building energy simulation is Sexton Summit -in.weather_file_city Seymour Johnson Afb Location of weather station from specific weather file used for the building energy simulation is Seymour Johnson Afb -in.weather_file_city Shannon Location of weather station from specific weather file used for the building energy simulation is Shannon -in.weather_file_city Shaw Afb Sumter Location of weather station from specific weather file used for the building energy simulation is Shaw Afb Sumter -in.weather_file_city Sheboygan Co Mem Location of weather station from specific weather file used for the building energy simulation is Sheboygan Co Mem -in.weather_file_city Shelbyville Muni Location of weather station from specific weather file used for the building energy simulation is Shelbyville Muni -in.weather_file_city Sheldon Muni Location of weather station from specific weather file used for the building energy simulation is Sheldon Muni -in.weather_file_city Shenandoah Muni Location of weather station from specific weather file used for the building energy simulation is Shenandoah Muni -in.weather_file_city Shenandoah Valley Rg Location of weather station from specific weather file used for the building energy simulation is Shenandoah Valley Rg -in.weather_file_city Sheridan Co Arpt Location of weather station from specific weather file used for the building energy simulation is Sheridan Co Arpt -in.weather_file_city Shreveport Regional Location of weather station from specific weather file used for the building energy simulation is Shreveport Regional -in.weather_file_city Sidney Muni Amos Location of weather station from specific weather file used for the building energy simulation is Sidney Muni Amos -in.weather_file_city Sidney Richland Muni Location of weather station from specific weather file used for the building energy simulation is Sidney Richland Muni -in.weather_file_city Sierra Blanca Rgnl Location of weather station from specific weather file used for the building energy simulation is Sierra Blanca Rgnl -in.weather_file_city Silver Bay Muni Location of weather station from specific weather file used for the building energy simulation is Silver Bay Muni -in.weather_file_city Sioux City Muni Location of weather station from specific weather file used for the building energy simulation is Sioux City Muni -in.weather_file_city Sioux Falls Foss Fi Location of weather station from specific weather file used for the building energy simulation is Sioux Falls Foss Fi -in.weather_file_city Siskiyou Co Location of weather station from specific weather file used for the building energy simulation is Siskiyou Co -in.weather_file_city Sisseton Muni Arpt Location of weather station from specific weather file used for the building energy simulation is Sisseton Muni Arpt -in.weather_file_city Sitka Location of weather station from specific weather file used for the building energy simulation is Sitka -in.weather_file_city Skyhaven Location of weather station from specific weather file used for the building energy simulation is Skyhaven -in.weather_file_city Slidell Location of weather station from specific weather file used for the building energy simulation is Slidell -in.weather_file_city Smith Reynolds Location of weather station from specific weather file used for the building energy simulation is Smith Reynolds -in.weather_file_city Snohomish Co Location of weather station from specific weather file used for the building energy simulation is Snohomish Co -in.weather_file_city Somerset Pulaski Co Location of weather station from specific weather file used for the building energy simulation is Somerset Pulaski Co -in.weather_file_city South Arkansas Rgnl Location of weather station from specific weather file used for the building energy simulation is South Arkansas Rgnl -in.weather_file_city South Bass Island Location of weather station from specific weather file used for the building energy simulation is South Bass Island -in.weather_file_city South Bend Stjosep Location of weather station from specific weather file used for the building energy simulation is South Bend Stjosep -in.weather_file_city South Big Horn Co Location of weather station from specific weather file used for the building energy simulation is South Big Horn Co -in.weather_file_city South Jersey Rgnl Location of weather station from specific weather file used for the building energy simulation is South Jersey Rgnl -in.weather_file_city South St Paul Muni Location of weather station from specific weather file used for the building energy simulation is South St Paul Muni -in.weather_file_city Southeast Iowa Rgnl Location of weather station from specific weather file used for the building energy simulation is Southeast Iowa Rgnl -in.weather_file_city Southern Illinois Location of weather station from specific weather file used for the building energy simulation is Southern Illinois -in.weather_file_city Southern Wisc Rgnl Location of weather station from specific weather file used for the building energy simulation is Southern Wisc Rgnl -in.weather_file_city Southwest Florida I Location of weather station from specific weather file used for the building energy simulation is Southwest Florida I -in.weather_file_city Southwest Michigan Location of weather station from specific weather file used for the building energy simulation is Southwest Michigan -in.weather_file_city Spart Fort Mc Coy Location of weather station from specific weather file used for the building energy simulation is Spart Fort Mc Coy -in.weather_file_city Spencer Location of weather station from specific weather file used for the building energy simulation is Spencer -in.weather_file_city Spirit Of St Louis Location of weather station from specific weather file used for the building energy simulation is Spirit Of St Louis -in.weather_file_city Springfield Capital Location of weather station from specific weather file used for the building energy simulation is Springfield Capital -in.weather_file_city Springfield Comanche Location of weather station from specific weather file used for the building energy simulation is Springfield Comanche -in.weather_file_city Springfield Muni Location of weather station from specific weather file used for the building energy simulation is Springfield Muni -in.weather_file_city St Augustine Location of weather station from specific weather file used for the building energy simulation is St Augustine -in.weather_file_city St Clair Co Intl Location of weather station from specific weather file used for the building energy simulation is St Clair Co Intl -in.weather_file_city St Cloud Municipal Location of weather station from specific weather file used for the building energy simulation is St Cloud Municipal -in.weather_file_city St George Muni Location of weather station from specific weather file used for the building energy simulation is St George Muni -in.weather_file_city St Johns Industrial Location of weather station from specific weather file used for the building energy simulation is St Johns Industrial -in.weather_file_city St Joseph Rose Cra Location of weather station from specific weather file used for the building energy simulation is St Joseph Rose Cra -in.weather_file_city St Louis Lambert Location of weather station from specific weather file used for the building energy simulation is St Louis Lambert -in.weather_file_city St Lucie Co Intl Location of weather station from specific weather file used for the building energy simulation is St Lucie Co Intl -in.weather_file_city St Paul Downtown Ho Location of weather station from specific weather file used for the building energy simulation is St Paul Downtown Ho -in.weather_file_city St Petersburg Clear Location of weather station from specific weather file used for the building energy simulation is St Petersburg Clear -in.weather_file_city Stanley Ranger Stn Location of weather station from specific weather file used for the building energy simulation is Stanley Ranger Stn -in.weather_file_city Staples Muni Location of weather station from specific weather file used for the building energy simulation is Staples Muni -in.weather_file_city Stephenville Clark Location of weather station from specific weather file used for the building energy simulation is Stephenville Clark -in.weather_file_city Sterling Rockfalls Location of weather station from specific weather file used for the building energy simulation is Sterling Rockfalls -in.weather_file_city Stevens Point Muni Location of weather station from specific weather file used for the building energy simulation is Stevens Point Muni -in.weather_file_city Stillwater Rgnl Location of weather station from specific weather file used for the building energy simulation is Stillwater Rgnl -in.weather_file_city Stinson Muni Location of weather station from specific weather file used for the building energy simulation is Stinson Muni -in.weather_file_city Stockton Metropolit Location of weather station from specific weather file used for the building energy simulation is Stockton Metropolit -in.weather_file_city Storm Lake Muni Location of weather station from specific weather file used for the building energy simulation is Storm Lake Muni -in.weather_file_city Strother Fld Location of weather station from specific weather file used for the building energy simulation is Strother Fld -in.weather_file_city Stuttgart Muni Location of weather station from specific weather file used for the building energy simulation is Stuttgart Muni -in.weather_file_city Suffolk Executive Location of weather station from specific weather file used for the building energy simulation is Suffolk Executive -in.weather_file_city Suger Land Rgnl Location of weather station from specific weather file used for the building energy simulation is Suger Land Rgnl -in.weather_file_city Sullivan Co Intl Location of weather station from specific weather file used for the building energy simulation is Sullivan Co Intl -in.weather_file_city Sussex Co Location of weather station from specific weather file used for the building energy simulation is Sussex Co -in.weather_file_city Sw Minnesota Rgnl Location of weather station from specific weather file used for the building energy simulation is Sw Minnesota Rgnl -in.weather_file_city Syracuse Hancock Location of weather station from specific weather file used for the building energy simulation is Syracuse Hancock -in.weather_file_city Tallahassee Municip Location of weather station from specific weather file used for the building energy simulation is Tallahassee Municip -in.weather_file_city Tampa Intl Airport Location of weather station from specific weather file used for the building energy simulation is Tampa Intl Airport -in.weather_file_city Taos Muni Apt Awos Location of weather station from specific weather file used for the building energy simulation is Taos Muni Apt Awos -in.weather_file_city Taunton Muni Location of weather station from specific weather file used for the building energy simulation is Taunton Muni -in.weather_file_city Taylor Co Location of weather station from specific weather file used for the building energy simulation is Taylor Co -in.weather_file_city Tekamah Muni Location of weather station from specific weather file used for the building energy simulation is Tekamah Muni -in.weather_file_city Terre Haute Intl Hu Location of weather station from specific weather file used for the building energy simulation is Terre Haute Intl Hu -in.weather_file_city Terrell Muni Location of weather station from specific weather file used for the building energy simulation is Terrell Muni -in.weather_file_city Teterboro Location of weather station from specific weather file used for the building energy simulation is Teterboro -in.weather_file_city Texarkana Rgnl Webb Location of weather station from specific weather file used for the building energy simulation is Texarkana Rgnl Webb -in.weather_file_city The Oneill Muni J Ba Location of weather station from specific weather file used for the building energy simulation is The Oneill Muni J Ba -in.weather_file_city Thief River Falls Rg Location of weather station from specific weather file used for the building energy simulation is Thief River Falls Rg -in.weather_file_city Thomas Point Location of weather station from specific weather file used for the building energy simulation is Thomas Point -in.weather_file_city Tinker Afb Location of weather station from specific weather file used for the building energy simulation is Tinker Afb -in.weather_file_city Toledo Express Location of weather station from specific weather file used for the building energy simulation is Toledo Express -in.weather_file_city Tonopah Location of weather station from specific weather file used for the building energy simulation is Tonopah -in.weather_file_city Topeka Billard Muni Location of weather station from specific weather file used for the building energy simulation is Topeka Billard Muni -in.weather_file_city Torrington Muni Location of weather station from specific weather file used for the building energy simulation is Torrington Muni -in.weather_file_city Trent Lott Intl Location of weather station from specific weather file used for the building energy simulation is Trent Lott Intl -in.weather_file_city Trenton Mercer Location of weather station from specific weather file used for the building energy simulation is Trenton Mercer -in.weather_file_city Tri Cities Location of weather station from specific weather file used for the building energy simulation is Tri Cities -in.weather_file_city Tri Cities Rgnl Location of weather station from specific weather file used for the building energy simulation is Tri Cities Rgnl -in.weather_file_city Tri City Location of weather station from specific weather file used for the building energy simulation is Tri City -in.weather_file_city Truckee Tahoe Location of weather station from specific weather file used for the building energy simulation is Truckee Tahoe -in.weather_file_city Tulip City Location of weather station from specific weather file used for the building energy simulation is Tulip City -in.weather_file_city Tulsa Intl Arpt Aw Location of weather station from specific weather file used for the building energy simulation is Tulsa Intl Arpt Aw -in.weather_file_city Tupelo Cd Lemons Location of weather station from specific weather file used for the building energy simulation is Tupelo Cd Lemons -in.weather_file_city Tuscaloosa Rgnl Location of weather station from specific weather file used for the building energy simulation is Tuscaloosa Rgnl -in.weather_file_city Twin County Location of weather station from specific weather file used for the building energy simulation is Twin County -in.weather_file_city Tyler Pounds Rgnl Location of weather station from specific weather file used for the building energy simulation is Tyler Pounds Rgnl -in.weather_file_city Ukiah Muni Location of weather station from specific weather file used for the building energy simulation is Ukiah Muni -in.weather_file_city Univ Of Illinois Wi Location of weather station from specific weather file used for the building energy simulation is Univ Of Illinois Wi -in.weather_file_city University Park Location of weather station from specific weather file used for the building energy simulation is University Park -in.weather_file_city Valdosta Rgnl Location of weather station from specific weather file used for the building energy simulation is Valdosta Rgnl -in.weather_file_city Valentine Amos Location of weather station from specific weather file used for the building energy simulation is Valentine Amos -in.weather_file_city Valley Intl Location of weather station from specific weather file used for the building energy simulation is Valley Intl -in.weather_file_city Valparaiso Eglin Af Location of weather station from specific weather file used for the building energy simulation is Valparaiso Eglin Af -in.weather_file_city Vance Afb Location of weather station from specific weather file used for the building energy simulation is Vance Afb -in.weather_file_city Venango Rgnl Location of weather station from specific weather file used for the building energy simulation is Venango Rgnl -in.weather_file_city Venice Pier Location of weather station from specific weather file used for the building energy simulation is Venice Pier -in.weather_file_city Vernal Location of weather station from specific weather file used for the building energy simulation is Vernal -in.weather_file_city Vero Beach Muni Location of weather station from specific weather file used for the building energy simulation is Vero Beach Muni -in.weather_file_city Vicksburg Tallulah Location of weather station from specific weather file used for the building energy simulation is Vicksburg Tallulah -in.weather_file_city Victoria Victoria R Location of weather station from specific weather file used for the building energy simulation is Victoria Victoria R -in.weather_file_city Virginia Highlands Location of weather station from specific weather file used for the building energy simulation is Virginia Highlands -in.weather_file_city Virginia Tech Arpt Location of weather station from specific weather file used for the building energy simulation is Virginia Tech Arpt -in.weather_file_city Visalia Muni Location of weather station from specific weather file used for the building energy simulation is Visalia Muni -in.weather_file_city W H Morse State Location of weather station from specific weather file used for the building energy simulation is W H Morse State -in.weather_file_city W K Kellogg Location of weather station from specific weather file used for the building energy simulation is W K Kellogg -in.weather_file_city Waco Rgnl Location of weather station from specific weather file used for the building energy simulation is Waco Rgnl -in.weather_file_city Wadena Location of weather station from specific weather file used for the building energy simulation is Wadena -in.weather_file_city Wakefield Muni Location of weather station from specific weather file used for the building energy simulation is Wakefield Muni -in.weather_file_city Walla Walla Rgnl Location of weather station from specific weather file used for the building energy simulation is Walla Walla Rgnl -in.weather_file_city Wallops Isl Stn Location of weather station from specific weather file used for the building energy simulation is Wallops Isl Stn -in.weather_file_city Walnut Ridge Rgnl Location of weather station from specific weather file used for the building energy simulation is Walnut Ridge Rgnl -in.weather_file_city Washington Co Location of weather station from specific weather file used for the building energy simulation is Washington Co -in.weather_file_city Washington Muni Location of weather station from specific weather file used for the building energy simulation is Washington Muni -in.weather_file_city Washington National Location of weather station from specific weather file used for the building energy simulation is Washington National -in.weather_file_city Waterbury Oxford Location of weather station from specific weather file used for the building energy simulation is Waterbury Oxford -in.weather_file_city Waterloo Municipal Location of weather station from specific weather file used for the building energy simulation is Waterloo Municipal -in.weather_file_city Watertown Intl Location of weather station from specific weather file used for the building energy simulation is Watertown Intl -in.weather_file_city Watertown Muni Location of weather station from specific weather file used for the building energy simulation is Watertown Muni -in.weather_file_city Waterville R Lafleur Location of weather station from specific weather file used for the building energy simulation is Waterville R Lafleur -in.weather_file_city Watsonville Muni Location of weather station from specific weather file used for the building energy simulation is Watsonville Muni -in.weather_file_city Waukesha Co Location of weather station from specific weather file used for the building energy simulation is Waukesha Co -in.weather_file_city Wausau Downtown Location of weather station from specific weather file used for the building energy simulation is Wausau Downtown -in.weather_file_city Waycross Ware Co Location of weather station from specific weather file used for the building energy simulation is Waycross Ware Co -in.weather_file_city Wayne Co Location of weather station from specific weather file used for the building energy simulation is Wayne Co -in.weather_file_city Webster City Muni Location of weather station from specific weather file used for the building energy simulation is Webster City Muni -in.weather_file_city Wellsville Muni Location of weather station from specific weather file used for the building energy simulation is Wellsville Muni -in.weather_file_city Wendover Af Aux F Location of weather station from specific weather file used for the building energy simulation is Wendover Af Aux F -in.weather_file_city West Bend Muni Location of weather station from specific weather file used for the building energy simulation is West Bend Muni -in.weather_file_city West Palm Beach In Location of weather station from specific weather file used for the building energy simulation is West Palm Beach In -in.weather_file_city West Plains Muni Location of weather station from specific weather file used for the building energy simulation is West Plains Muni -in.weather_file_city West Point Ls Location of weather station from specific weather file used for the building energy simulation is West Point Ls -in.weather_file_city Westchester Co Location of weather station from specific weather file used for the building energy simulation is Westchester Co -in.weather_file_city Wexford Co Location of weather station from specific weather file used for the building energy simulation is Wexford Co -in.weather_file_city Wheaton Muni Location of weather station from specific weather file used for the building energy simulation is Wheaton Muni -in.weather_file_city Wheeling Ohio Co Location of weather station from specific weather file used for the building energy simulation is Wheeling Ohio Co -in.weather_file_city White Sands Location of weather station from specific weather file used for the building energy simulation is White Sands -in.weather_file_city Whiteman Afb Location of weather station from specific weather file used for the building energy simulation is Whiteman Afb -in.weather_file_city Whiting Fld Nas Nort Location of weather station from specific weather file used for the building energy simulation is Whiting Fld Nas Nort -in.weather_file_city Wichita Falls Sheps Location of weather station from specific weather file used for the building energy simulation is Wichita Falls Sheps -in.weather_file_city Wichita Mid Contine Location of weather station from specific weather file used for the building energy simulation is Wichita Mid Contine -in.weather_file_city Wilkes Barre Scrant Location of weather station from specific weather file used for the building energy simulation is Wilkes Barre Scrant -in.weather_file_city William R Fairchild Location of weather station from specific weather file used for the building energy simulation is William R Fairchild -in.weather_file_city Williamson Co Rgnl Location of weather station from specific weather file used for the building energy simulation is Williamson Co Rgnl -in.weather_file_city Williamsport Lycomi Location of weather station from specific weather file used for the building energy simulation is Williamsport Lycomi -in.weather_file_city Williston Sloulin F Location of weather station from specific weather file used for the building energy simulation is Williston Sloulin F -in.weather_file_city Willmar Rco Location of weather station from specific weather file used for the building energy simulation is Willmar Rco -in.weather_file_city Willow Grove Nas Jr Location of weather station from specific weather file used for the building energy simulation is Willow Grove Nas Jr -in.weather_file_city Wilmington Location of weather station from specific weather file used for the building energy simulation is Wilmington -in.weather_file_city Wilmington New Cast Location of weather station from specific weather file used for the building energy simulation is Wilmington New Cast -in.weather_file_city Winchester Rgnl Location of weather station from specific weather file used for the building energy simulation is Winchester Rgnl -in.weather_file_city Winder Barrow Location of weather station from specific weather file used for the building energy simulation is Winder Barrow -in.weather_file_city Windham Airport Location of weather station from specific weather file used for the building energy simulation is Windham Airport -in.weather_file_city Windom Muni Location of weather station from specific weather file used for the building energy simulation is Windom Muni -in.weather_file_city Window Rock Location of weather station from specific weather file used for the building energy simulation is Window Rock -in.weather_file_city Winkler Co Location of weather station from specific weather file used for the building energy simulation is Winkler Co -in.weather_file_city Winnemucca Muni Location of weather station from specific weather file used for the building energy simulation is Winnemucca Muni -in.weather_file_city Winner Location of weather station from specific weather file used for the building energy simulation is Winner -in.weather_file_city Winona Muni Conrad F Location of weather station from specific weather file used for the building energy simulation is Winona Muni Conrad F -in.weather_file_city Winslow Aut Location of weather station from specific weather file used for the building energy simulation is Winslow Aut -in.weather_file_city Wiscasset Location of weather station from specific weather file used for the building energy simulation is Wiscasset -in.weather_file_city Wittman Rgnl Location of weather station from specific weather file used for the building energy simulation is Wittman Rgnl -in.weather_file_city Worcester Regional Arpt Location of weather station from specific weather file used for the building energy simulation is Worcester Regional Arpt -in.weather_file_city Worland Muni Location of weather station from specific weather file used for the building energy simulation is Worland Muni -in.weather_file_city Worthington Muni Location of weather station from specific weather file used for the building energy simulation is Worthington Muni -in.weather_file_city Wrangell Location of weather station from specific weather file used for the building energy simulation is Wrangell -in.weather_file_city Yakima Air Terminal Location of weather station from specific weather file used for the building energy simulation is Yakima Air Terminal -in.weather_file_city Yeager Location of weather station from specific weather file used for the building energy simulation is Yeager -in.weather_file_city York Location of weather station from specific weather file used for the building energy simulation is York -in.weather_file_city Youngstown Muni Location of weather station from specific weather file used for the building energy simulation is Youngstown Muni -in.weather_file_city Yuba Co Location of weather station from specific weather file used for the building energy simulation is Yuba Co -in.weather_file_city Yuma Intl Airport Location of weather station from specific weather file used for the building energy simulation is Yuma Intl Airport -in.weather_file_city Zanesville Muni Location of weather station from specific weather file used for the building energy simulation is Zanesville Muni -in.weather_file_latitude 20.901944 Weather station latitude from weather file used for the building energy simulation is 20.901944°N -in.weather_file_latitude 24.73 Weather station latitude from weather file used for the building energy simulation is 24.73°N -in.weather_file_latitude 25.82 Weather station latitude from weather file used for the building energy simulation is 25.82°N -in.weather_file_latitude 25.91 Weather station latitude from weather file used for the building energy simulation is 25.91°N -in.weather_file_latitude 26.15 Weather station latitude from weather file used for the building energy simulation is 26.15°N -in.weather_file_latitude 26.18 Weather station latitude from weather file used for the building energy simulation is 26.18°N -in.weather_file_latitude 26.2 Weather station latitude from weather file used for the building energy simulation is 26.2°N -in.weather_file_latitude 26.23 Weather station latitude from weather file used for the building energy simulation is 26.23°N -in.weather_file_latitude 26.54 Weather station latitude from weather file used for the building energy simulation is 26.54°N -in.weather_file_latitude 26.59 Weather station latitude from weather file used for the building energy simulation is 26.59°N -in.weather_file_latitude 26.69 Weather station latitude from weather file used for the building energy simulation is 26.69°N -in.weather_file_latitude 26.92 Weather station latitude from weather file used for the building energy simulation is 26.92°N -in.weather_file_latitude 27.07 Weather station latitude from weather file used for the building energy simulation is 27.07°N -in.weather_file_latitude 27.4 Weather station latitude from weather file used for the building energy simulation is 27.4°N -in.weather_file_latitude 27.5 Weather station latitude from weather file used for the building energy simulation is 27.5°N -in.weather_file_latitude 27.55 Weather station latitude from weather file used for the building energy simulation is 27.55°N -in.weather_file_latitude 27.66 Weather station latitude from weather file used for the building energy simulation is 27.66°N -in.weather_file_latitude 27.74 Weather station latitude from weather file used for the building energy simulation is 27.74°N -in.weather_file_latitude 27.77 Weather station latitude from weather file used for the building energy simulation is 27.77°N -in.weather_file_latitude 27.91 Weather station latitude from weather file used for the building energy simulation is 27.91°N -in.weather_file_latitude 27.96 Weather station latitude from weather file used for the building energy simulation is 27.96°N -in.weather_file_latitude 28.08 Weather station latitude from weather file used for the building energy simulation is 28.08°N -in.weather_file_latitude 28.1 Weather station latitude from weather file used for the building energy simulation is 28.1°N -in.weather_file_latitude 28.37 Weather station latitude from weather file used for the building energy simulation is 28.37°N -in.weather_file_latitude 28.43 Weather station latitude from weather file used for the building energy simulation is 28.43°N -in.weather_file_latitude 28.46 Weather station latitude from weather file used for the building energy simulation is 28.46°N -in.weather_file_latitude 28.47 Weather station latitude from weather file used for the building energy simulation is 28.47°N -in.weather_file_latitude 28.55 Weather station latitude from weather file used for the building energy simulation is 28.55°N -in.weather_file_latitude 28.73 Weather station latitude from weather file used for the building energy simulation is 28.73°N -in.weather_file_latitude 28.78 Weather station latitude from weather file used for the building energy simulation is 28.78°N -in.weather_file_latitude 28.82 Weather station latitude from weather file used for the building energy simulation is 28.82°N -in.weather_file_latitude 28.86 Weather station latitude from weather file used for the building energy simulation is 28.86°N -in.weather_file_latitude 29.11 Weather station latitude from weather file used for the building energy simulation is 29.11°N -in.weather_file_latitude 29.17 Weather station latitude from weather file used for the building energy simulation is 29.17°N -in.weather_file_latitude 29.18 Weather station latitude from weather file used for the building energy simulation is 29.18°N -in.weather_file_latitude 29.27 Weather station latitude from weather file used for the building energy simulation is 29.27°N -in.weather_file_latitude 29.34 Weather station latitude from weather file used for the building energy simulation is 29.34°N -in.weather_file_latitude 29.36 Weather station latitude from weather file used for the building energy simulation is 29.36°N -in.weather_file_latitude 29.37 Weather station latitude from weather file used for the building energy simulation is 29.37°N -in.weather_file_latitude 29.53 Weather station latitude from weather file used for the building energy simulation is 29.53°N -in.weather_file_latitude 29.55 Weather station latitude from weather file used for the building energy simulation is 29.55°N -in.weather_file_latitude 29.61 Weather station latitude from weather file used for the building energy simulation is 29.61°N -in.weather_file_latitude 29.62 Weather station latitude from weather file used for the building energy simulation is 29.62°N -in.weather_file_latitude 29.69 Weather station latitude from weather file used for the building energy simulation is 29.69°N -in.weather_file_latitude 29.71 Weather station latitude from weather file used for the building energy simulation is 29.71°N -in.weather_file_latitude 29.73 Weather station latitude from weather file used for the building energy simulation is 29.73°N -in.weather_file_latitude 29.83 Weather station latitude from weather file used for the building energy simulation is 29.83°N -in.weather_file_latitude 29.87 Weather station latitude from weather file used for the building energy simulation is 29.87°N -in.weather_file_latitude 29.89 Weather station latitude from weather file used for the building energy simulation is 29.89°N -in.weather_file_latitude 29.91 Weather station latitude from weather file used for the building energy simulation is 29.91°N -in.weather_file_latitude 29.95 Weather station latitude from weather file used for the building energy simulation is 29.95°N -in.weather_file_latitude 29.99 Weather station latitude from weather file used for the building energy simulation is 29.99°N -in.weather_file_latitude 30.04 Weather station latitude from weather file used for the building energy simulation is 30.04°N -in.weather_file_latitude 30.06 Weather station latitude from weather file used for the building energy simulation is 30.06°N -in.weather_file_latitude 30.07 Weather station latitude from weather file used for the building energy simulation is 30.07°N -in.weather_file_latitude 30.13 Weather station latitude from weather file used for the building energy simulation is 30.13°N -in.weather_file_latitude 30.18 Weather station latitude from weather file used for the building energy simulation is 30.18°N -in.weather_file_latitude 30.21 Weather station latitude from weather file used for the building energy simulation is 30.21°N -in.weather_file_latitude 30.22 Weather station latitude from weather file used for the building energy simulation is 30.22°N -in.weather_file_latitude 30.23 Weather station latitude from weather file used for the building energy simulation is 30.23°N -in.weather_file_latitude 30.32 Weather station latitude from weather file used for the building energy simulation is 30.32°N -in.weather_file_latitude 30.35 Weather station latitude from weather file used for the building energy simulation is 30.35°N -in.weather_file_latitude 30.37 Weather station latitude from weather file used for the building energy simulation is 30.37°N -in.weather_file_latitude 30.39 Weather station latitude from weather file used for the building energy simulation is 30.39°N -in.weather_file_latitude 30.4 Weather station latitude from weather file used for the building energy simulation is 30.4°N -in.weather_file_latitude 30.41 Weather station latitude from weather file used for the building energy simulation is 30.41°N -in.weather_file_latitude 30.46 Weather station latitude from weather file used for the building energy simulation is 30.46°N -in.weather_file_latitude 30.47 Weather station latitude from weather file used for the building energy simulation is 30.47°N -in.weather_file_latitude 30.48 Weather station latitude from weather file used for the building energy simulation is 30.48°N -in.weather_file_latitude 30.49 Weather station latitude from weather file used for the building energy simulation is 30.49°N -in.weather_file_latitude 30.51 Weather station latitude from weather file used for the building energy simulation is 30.51°N -in.weather_file_latitude 30.54 Weather station latitude from weather file used for the building energy simulation is 30.54°N -in.weather_file_latitude 30.59 Weather station latitude from weather file used for the building energy simulation is 30.59°N -in.weather_file_latitude 30.63 Weather station latitude from weather file used for the building energy simulation is 30.63°N -in.weather_file_latitude 30.68 Weather station latitude from weather file used for the building energy simulation is 30.68°N -in.weather_file_latitude 30.69 Weather station latitude from weather file used for the building energy simulation is 30.69°N -in.weather_file_latitude 30.72 Weather station latitude from weather file used for the building energy simulation is 30.72°N -in.weather_file_latitude 30.74 Weather station latitude from weather file used for the building energy simulation is 30.74°N -in.weather_file_latitude 30.75 Weather station latitude from weather file used for the building energy simulation is 30.75°N -in.weather_file_latitude 30.78 Weather station latitude from weather file used for the building energy simulation is 30.78°N -in.weather_file_latitude 30.84 Weather station latitude from weather file used for the building energy simulation is 30.84°N -in.weather_file_latitude 30.92 Weather station latitude from weather file used for the building energy simulation is 30.92°N -in.weather_file_latitude 30.97 Weather station latitude from weather file used for the building energy simulation is 30.97°N -in.weather_file_latitude 31.05 Weather station latitude from weather file used for the building energy simulation is 31.05°N -in.weather_file_latitude 31.07 Weather station latitude from weather file used for the building energy simulation is 31.07°N -in.weather_file_latitude 31.09 Weather station latitude from weather file used for the building energy simulation is 31.09°N -in.weather_file_latitude 31.15 Weather station latitude from weather file used for the building energy simulation is 31.15°N -in.weather_file_latitude 31.18 Weather station latitude from weather file used for the building energy simulation is 31.18°N -in.weather_file_latitude 31.23 Weather station latitude from weather file used for the building energy simulation is 31.23°N -in.weather_file_latitude 31.25 Weather station latitude from weather file used for the building energy simulation is 31.25°N -in.weather_file_latitude 31.26 Weather station latitude from weather file used for the building energy simulation is 31.26°N -in.weather_file_latitude 31.28 Weather station latitude from weather file used for the building energy simulation is 31.28°N -in.weather_file_latitude 31.32 Weather station latitude from weather file used for the building energy simulation is 31.32°N -in.weather_file_latitude 31.34 Weather station latitude from weather file used for the building energy simulation is 31.34°N -in.weather_file_latitude 31.35 Weather station latitude from weather file used for the building energy simulation is 31.35°N -in.weather_file_latitude 31.4 Weather station latitude from weather file used for the building energy simulation is 31.4°N -in.weather_file_latitude 31.42 Weather station latitude from weather file used for the building energy simulation is 31.42°N -in.weather_file_latitude 31.47 Weather station latitude from weather file used for the building energy simulation is 31.47°N -in.weather_file_latitude 31.49 Weather station latitude from weather file used for the building energy simulation is 31.49°N -in.weather_file_latitude 31.54 Weather station latitude from weather file used for the building energy simulation is 31.54°N -in.weather_file_latitude 31.58 Weather station latitude from weather file used for the building energy simulation is 31.58°N -in.weather_file_latitude 31.61 Weather station latitude from weather file used for the building energy simulation is 31.61°N -in.weather_file_latitude 31.78 Weather station latitude from weather file used for the building energy simulation is 31.78°N -in.weather_file_latitude 31.81 Weather station latitude from weather file used for the building energy simulation is 31.81°N -in.weather_file_latitude 31.83 Weather station latitude from weather file used for the building energy simulation is 31.83°N -in.weather_file_latitude 31.92 Weather station latitude from weather file used for the building energy simulation is 31.92°N -in.weather_file_latitude 31.93 Weather station latitude from weather file used for the building energy simulation is 31.93°N -in.weather_file_latitude 32.01 Weather station latitude from weather file used for the building energy simulation is 32.01°N -in.weather_file_latitude 32.03 Weather station latitude from weather file used for the building energy simulation is 32.03°N -in.weather_file_latitude 32.12 Weather station latitude from weather file used for the building energy simulation is 32.12°N -in.weather_file_latitude 32.17 Weather station latitude from weather file used for the building energy simulation is 32.17°N -in.weather_file_latitude 32.22 Weather station latitude from weather file used for the building energy simulation is 32.22°N -in.weather_file_latitude 32.26 Weather station latitude from weather file used for the building energy simulation is 32.26°N -in.weather_file_latitude 32.3 Weather station latitude from weather file used for the building energy simulation is 32.3°N -in.weather_file_latitude 32.32 Weather station latitude from weather file used for the building energy simulation is 32.32°N -in.weather_file_latitude 32.33 Weather station latitude from weather file used for the building energy simulation is 32.33°N -in.weather_file_latitude 32.34 Weather station latitude from weather file used for the building energy simulation is 32.34°N -in.weather_file_latitude 32.35 Weather station latitude from weather file used for the building energy simulation is 32.35°N -in.weather_file_latitude 32.38 Weather station latitude from weather file used for the building energy simulation is 32.38°N -in.weather_file_latitude 32.39 Weather station latitude from weather file used for the building energy simulation is 32.39°N -in.weather_file_latitude 32.41 Weather station latitude from weather file used for the building energy simulation is 32.41°N -in.weather_file_latitude 32.43 Weather station latitude from weather file used for the building energy simulation is 32.43°N -in.weather_file_latitude 32.45 Weather station latitude from weather file used for the building energy simulation is 32.45°N -in.weather_file_latitude 32.48 Weather station latitude from weather file used for the building energy simulation is 32.48°N -in.weather_file_latitude 32.5 Weather station latitude from weather file used for the building energy simulation is 32.5°N -in.weather_file_latitude 32.51 Weather station latitude from weather file used for the building energy simulation is 32.51°N -in.weather_file_latitude 32.52 Weather station latitude from weather file used for the building energy simulation is 32.52°N -in.weather_file_latitude 32.55 Weather station latitude from weather file used for the building energy simulation is 32.55°N -in.weather_file_latitude 32.63 Weather station latitude from weather file used for the building energy simulation is 32.63°N -in.weather_file_latitude 32.65 Weather station latitude from weather file used for the building energy simulation is 32.65°N -in.weather_file_latitude 32.66 Weather station latitude from weather file used for the building energy simulation is 32.66°N -in.weather_file_latitude 32.69 Weather station latitude from weather file used for the building energy simulation is 32.69°N -in.weather_file_latitude 32.71 Weather station latitude from weather file used for the building energy simulation is 32.71°N -in.weather_file_latitude 32.73 Weather station latitude from weather file used for the building energy simulation is 32.73°N -in.weather_file_latitude 32.78 Weather station latitude from weather file used for the building energy simulation is 32.78°N -in.weather_file_latitude 32.82 Weather station latitude from weather file used for the building energy simulation is 32.82°N -in.weather_file_latitude 32.83 Weather station latitude from weather file used for the building energy simulation is 32.83°N -in.weather_file_latitude 32.84 Weather station latitude from weather file used for the building energy simulation is 32.84°N -in.weather_file_latitude 32.85 Weather station latitude from weather file used for the building energy simulation is 32.85°N -in.weather_file_latitude 32.86 Weather station latitude from weather file used for the building energy simulation is 32.86°N -in.weather_file_latitude 32.87 Weather station latitude from weather file used for the building energy simulation is 32.87°N -in.weather_file_latitude 32.9 Weather station latitude from weather file used for the building energy simulation is 32.9°N -in.weather_file_latitude 32.97 Weather station latitude from weather file used for the building energy simulation is 32.97°N -in.weather_file_latitude 33.18 Weather station latitude from weather file used for the building energy simulation is 33.18°N -in.weather_file_latitude 33.21 Weather station latitude from weather file used for the building energy simulation is 33.21°N -in.weather_file_latitude 33.22 Weather station latitude from weather file used for the building energy simulation is 33.22°N -in.weather_file_latitude 33.31 Weather station latitude from weather file used for the building energy simulation is 33.31°N -in.weather_file_latitude 33.36 Weather station latitude from weather file used for the building energy simulation is 33.36°N -in.weather_file_latitude 33.37 Weather station latitude from weather file used for the building energy simulation is 33.37°N -in.weather_file_latitude 33.44 Weather station latitude from weather file used for the building energy simulation is 33.44°N -in.weather_file_latitude 33.45 Weather station latitude from weather file used for the building energy simulation is 33.45°N -in.weather_file_latitude 33.46 Weather station latitude from weather file used for the building energy simulation is 33.46°N -in.weather_file_latitude 33.47 Weather station latitude from weather file used for the building energy simulation is 33.47°N -in.weather_file_latitude 33.48 Weather station latitude from weather file used for the building energy simulation is 33.48°N -in.weather_file_latitude 33.5 Weather station latitude from weather file used for the building energy simulation is 33.5°N -in.weather_file_latitude 33.56 Weather station latitude from weather file used for the building energy simulation is 33.56°N -in.weather_file_latitude 33.59 Weather station latitude from weather file used for the building energy simulation is 33.59°N -in.weather_file_latitude 33.62 Weather station latitude from weather file used for the building energy simulation is 33.62°N -in.weather_file_latitude 33.64 Weather station latitude from weather file used for the building energy simulation is 33.64°N -in.weather_file_latitude 33.67 Weather station latitude from weather file used for the building energy simulation is 33.67°N -in.weather_file_latitude 33.68 Weather station latitude from weather file used for the building energy simulation is 33.68°N -in.weather_file_latitude 33.78 Weather station latitude from weather file used for the building energy simulation is 33.78°N -in.weather_file_latitude 33.88 Weather station latitude from weather file used for the building energy simulation is 33.88°N -in.weather_file_latitude 33.9 Weather station latitude from weather file used for the building energy simulation is 33.9°N -in.weather_file_latitude 33.92 Weather station latitude from weather file used for the building energy simulation is 33.92°N -in.weather_file_latitude 33.94 Weather station latitude from weather file used for the building energy simulation is 33.94°N -in.weather_file_latitude 33.95 Weather station latitude from weather file used for the building energy simulation is 33.95°N -in.weather_file_latitude 33.97 Weather station latitude from weather file used for the building energy simulation is 33.97°N -in.weather_file_latitude 33.98 Weather station latitude from weather file used for the building energy simulation is 33.98°N -in.weather_file_latitude 34.03 Weather station latitude from weather file used for the building energy simulation is 34.03°N -in.weather_file_latitude 34.05 Weather station latitude from weather file used for the building energy simulation is 34.05°N -in.weather_file_latitude 34.12 Weather station latitude from weather file used for the building energy simulation is 34.12°N -in.weather_file_latitude 34.15 Weather station latitude from weather file used for the building energy simulation is 34.15°N -in.weather_file_latitude 34.18 Weather station latitude from weather file used for the building energy simulation is 34.18°N -in.weather_file_latitude 34.19 Weather station latitude from weather file used for the building energy simulation is 34.19°N -in.weather_file_latitude 34.22 Weather station latitude from weather file used for the building energy simulation is 34.22°N -in.weather_file_latitude 34.25 Weather station latitude from weather file used for the building energy simulation is 34.25°N -in.weather_file_latitude 34.26 Weather station latitude from weather file used for the building energy simulation is 34.26°N -in.weather_file_latitude 34.27 Weather station latitude from weather file used for the building energy simulation is 34.27°N -in.weather_file_latitude 34.35 Weather station latitude from weather file used for the building energy simulation is 34.35°N -in.weather_file_latitude 34.38 Weather station latitude from weather file used for the building energy simulation is 34.38°N -in.weather_file_latitude 34.43 Weather station latitude from weather file used for the building energy simulation is 34.43°N -in.weather_file_latitude 34.48 Weather station latitude from weather file used for the building energy simulation is 34.48°N -in.weather_file_latitude 34.5 Weather station latitude from weather file used for the building energy simulation is 34.5°N -in.weather_file_latitude 34.52 Weather station latitude from weather file used for the building energy simulation is 34.52°N -in.weather_file_latitude 34.55 Weather station latitude from weather file used for the building energy simulation is 34.55°N -in.weather_file_latitude 34.57 Weather station latitude from weather file used for the building energy simulation is 34.57°N -in.weather_file_latitude 34.6 Weather station latitude from weather file used for the building energy simulation is 34.6°N -in.weather_file_latitude 34.64 Weather station latitude from weather file used for the building energy simulation is 34.64°N -in.weather_file_latitude 34.65 Weather station latitude from weather file used for the building energy simulation is 34.65°N -in.weather_file_latitude 34.66 Weather station latitude from weather file used for the building energy simulation is 34.66°N -in.weather_file_latitude 34.67 Weather station latitude from weather file used for the building energy simulation is 34.67°N -in.weather_file_latitude 34.7 Weather station latitude from weather file used for the building energy simulation is 34.7°N -in.weather_file_latitude 34.72 Weather station latitude from weather file used for the building energy simulation is 34.72°N -in.weather_file_latitude 34.73 Weather station latitude from weather file used for the building energy simulation is 34.73°N -in.weather_file_latitude 34.75 Weather station latitude from weather file used for the building energy simulation is 34.75°N -in.weather_file_latitude 34.79 Weather station latitude from weather file used for the building energy simulation is 34.79°N -in.weather_file_latitude 34.83 Weather station latitude from weather file used for the building energy simulation is 34.83°N -in.weather_file_latitude 34.9 Weather station latitude from weather file used for the building energy simulation is 34.9°N -in.weather_file_latitude 34.92 Weather station latitude from weather file used for the building energy simulation is 34.92°N -in.weather_file_latitude 34.99 Weather station latitude from weather file used for the building energy simulation is 34.99°N -in.weather_file_latitude 35 Weather station latitude from weather file used for the building energy simulation is 35°N -in.weather_file_latitude 35.01 Weather station latitude from weather file used for the building energy simulation is 35.01°N -in.weather_file_latitude 35.02 Weather station latitude from weather file used for the building energy simulation is 35.02°N -in.weather_file_latitude 35.03 Weather station latitude from weather file used for the building energy simulation is 35.03°N -in.weather_file_latitude 35.04 Weather station latitude from weather file used for the building energy simulation is 35.04°N -in.weather_file_latitude 35.06 Weather station latitude from weather file used for the building energy simulation is 35.06°N -in.weather_file_latitude 35.07 Weather station latitude from weather file used for the building energy simulation is 35.07°N -in.weather_file_latitude 35.13 Weather station latitude from weather file used for the building energy simulation is 35.13°N -in.weather_file_latitude 35.14 Weather station latitude from weather file used for the building energy simulation is 35.14°N -in.weather_file_latitude 35.17 Weather station latitude from weather file used for the building energy simulation is 35.17°N -in.weather_file_latitude 35.2 Weather station latitude from weather file used for the building energy simulation is 35.2°N -in.weather_file_latitude 35.21 Weather station latitude from weather file used for the building energy simulation is 35.21°N -in.weather_file_latitude 35.22 Weather station latitude from weather file used for the building energy simulation is 35.22°N -in.weather_file_latitude 35.24 Weather station latitude from weather file used for the building energy simulation is 35.24°N -in.weather_file_latitude 35.26 Weather station latitude from weather file used for the building energy simulation is 35.26°N -in.weather_file_latitude 35.27 Weather station latitude from weather file used for the building energy simulation is 35.27°N -in.weather_file_latitude 35.33 Weather station latitude from weather file used for the building energy simulation is 35.33°N -in.weather_file_latitude 35.34 Weather station latitude from weather file used for the building energy simulation is 35.34°N -in.weather_file_latitude 35.35 Weather station latitude from weather file used for the building energy simulation is 35.35°N -in.weather_file_latitude 35.38 Weather station latitude from weather file used for the building energy simulation is 35.38°N -in.weather_file_latitude 35.39 Weather station latitude from weather file used for the building energy simulation is 35.39°N -in.weather_file_latitude 35.42 Weather station latitude from weather file used for the building energy simulation is 35.42°N -in.weather_file_latitude 35.43 Weather station latitude from weather file used for the building energy simulation is 35.43°N -in.weather_file_latitude 35.51 Weather station latitude from weather file used for the building energy simulation is 35.51°N -in.weather_file_latitude 35.53 Weather station latitude from weather file used for the building energy simulation is 35.53°N -in.weather_file_latitude 35.59 Weather station latitude from weather file used for the building energy simulation is 35.59°N -in.weather_file_latitude 35.62 Weather station latitude from weather file used for the building energy simulation is 35.62°N -in.weather_file_latitude 35.64 Weather station latitude from weather file used for the building energy simulation is 35.64°N -in.weather_file_latitude 35.65 Weather station latitude from weather file used for the building energy simulation is 35.65°N -in.weather_file_latitude 35.66 Weather station latitude from weather file used for the building energy simulation is 35.66°N -in.weather_file_latitude 35.7 Weather station latitude from weather file used for the building energy simulation is 35.7°N -in.weather_file_latitude 35.73 Weather station latitude from weather file used for the building energy simulation is 35.73°N -in.weather_file_latitude 35.74 Weather station latitude from weather file used for the building energy simulation is 35.74°N -in.weather_file_latitude 35.82 Weather station latitude from weather file used for the building energy simulation is 35.82°N -in.weather_file_latitude 35.83 Weather station latitude from weather file used for the building energy simulation is 35.83°N -in.weather_file_latitude 35.85 Weather station latitude from weather file used for the building energy simulation is 35.85°N -in.weather_file_latitude 35.86 Weather station latitude from weather file used for the building energy simulation is 35.86°N -in.weather_file_latitude 35.87 Weather station latitude from weather file used for the building energy simulation is 35.87°N -in.weather_file_latitude 35.92 Weather station latitude from weather file used for the building energy simulation is 35.92°N -in.weather_file_latitude 35.95 Weather station latitude from weather file used for the building energy simulation is 35.95°N -in.weather_file_latitude 36 Weather station latitude from weather file used for the building energy simulation is 36°N -in.weather_file_latitude 36.01 Weather station latitude from weather file used for the building energy simulation is 36.01°N -in.weather_file_latitude 36.02 Weather station latitude from weather file used for the building energy simulation is 36.02°N -in.weather_file_latitude 36.03 Weather station latitude from weather file used for the building energy simulation is 36.03°N -in.weather_file_latitude 36.04 Weather station latitude from weather file used for the building energy simulation is 36.04°N -in.weather_file_latitude 36.05 Weather station latitude from weather file used for the building energy simulation is 36.05°N -in.weather_file_latitude 36.08 Weather station latitude from weather file used for the building energy simulation is 36.08°N -in.weather_file_latitude 36.1 Weather station latitude from weather file used for the building energy simulation is 36.1°N -in.weather_file_latitude 36.12 Weather station latitude from weather file used for the building energy simulation is 36.12°N -in.weather_file_latitude 36.13 Weather station latitude from weather file used for the building energy simulation is 36.13°N -in.weather_file_latitude 36.16 Weather station latitude from weather file used for the building energy simulation is 36.16°N -in.weather_file_latitude 36.2 Weather station latitude from weather file used for the building energy simulation is 36.2°N -in.weather_file_latitude 36.26 Weather station latitude from weather file used for the building energy simulation is 36.26°N -in.weather_file_latitude 36.3 Weather station latitude from weather file used for the building energy simulation is 36.3°N -in.weather_file_latitude 36.32 Weather station latitude from weather file used for the building energy simulation is 36.32°N -in.weather_file_latitude 36.34 Weather station latitude from weather file used for the building energy simulation is 36.34°N -in.weather_file_latitude 36.35 Weather station latitude from weather file used for the building energy simulation is 36.35°N -in.weather_file_latitude 36.37 Weather station latitude from weather file used for the building energy simulation is 36.37°N -in.weather_file_latitude 36.43 Weather station latitude from weather file used for the building energy simulation is 36.43°N -in.weather_file_latitude 36.44 Weather station latitude from weather file used for the building energy simulation is 36.44°N -in.weather_file_latitude 36.45 Weather station latitude from weather file used for the building energy simulation is 36.45°N -in.weather_file_latitude 36.46 Weather station latitude from weather file used for the building energy simulation is 36.46°N -in.weather_file_latitude 36.48 Weather station latitude from weather file used for the building energy simulation is 36.48°N -in.weather_file_latitude 36.57 Weather station latitude from weather file used for the building energy simulation is 36.57°N -in.weather_file_latitude 36.62 Weather station latitude from weather file used for the building energy simulation is 36.62°N -in.weather_file_latitude 36.63 Weather station latitude from weather file used for the building energy simulation is 36.63°N -in.weather_file_latitude 36.66 Weather station latitude from weather file used for the building energy simulation is 36.66°N -in.weather_file_latitude 36.67 Weather station latitude from weather file used for the building energy simulation is 36.67°N -in.weather_file_latitude 36.68 Weather station latitude from weather file used for the building energy simulation is 36.68°N -in.weather_file_latitude 36.69 Weather station latitude from weather file used for the building energy simulation is 36.69°N -in.weather_file_latitude 36.7 Weather station latitude from weather file used for the building energy simulation is 36.7°N -in.weather_file_latitude 36.73 Weather station latitude from weather file used for the building energy simulation is 36.73°N -in.weather_file_latitude 36.74 Weather station latitude from weather file used for the building energy simulation is 36.74°N -in.weather_file_latitude 36.77 Weather station latitude from weather file used for the building energy simulation is 36.77°N -in.weather_file_latitude 36.78 Weather station latitude from weather file used for the building energy simulation is 36.78°N -in.weather_file_latitude 36.88 Weather station latitude from weather file used for the building energy simulation is 36.88°N -in.weather_file_latitude 36.9 Weather station latitude from weather file used for the building energy simulation is 36.9°N -in.weather_file_latitude 36.93 Weather station latitude from weather file used for the building energy simulation is 36.93°N -in.weather_file_latitude 36.94 Weather station latitude from weather file used for the building energy simulation is 36.94°N -in.weather_file_latitude 36.98 Weather station latitude from weather file used for the building energy simulation is 36.98°N -in.weather_file_latitude 36.99 Weather station latitude from weather file used for the building energy simulation is 36.99°N -in.weather_file_latitude 37 Weather station latitude from weather file used for the building energy simulation is 37°N -in.weather_file_latitude 37.04 Weather station latitude from weather file used for the building energy simulation is 37.04°N -in.weather_file_latitude 37.05 Weather station latitude from weather file used for the building energy simulation is 37.05°N -in.weather_file_latitude 37.06 Weather station latitude from weather file used for the building energy simulation is 37.06°N -in.weather_file_latitude 37.08 Weather station latitude from weather file used for the building energy simulation is 37.08°N -in.weather_file_latitude 37.09 Weather station latitude from weather file used for the building energy simulation is 37.09°N -in.weather_file_latitude 37.13 Weather station latitude from weather file used for the building energy simulation is 37.13°N -in.weather_file_latitude 37.14 Weather station latitude from weather file used for the building energy simulation is 37.14°N -in.weather_file_latitude 37.15 Weather station latitude from weather file used for the building energy simulation is 37.15°N -in.weather_file_latitude 37.17 Weather station latitude from weather file used for the building energy simulation is 37.17°N -in.weather_file_latitude 37.18 Weather station latitude from weather file used for the building energy simulation is 37.18°N -in.weather_file_latitude 37.21 Weather station latitude from weather file used for the building energy simulation is 37.21°N -in.weather_file_latitude 37.23 Weather station latitude from weather file used for the building energy simulation is 37.23°N -in.weather_file_latitude 37.24 Weather station latitude from weather file used for the building energy simulation is 37.24°N -in.weather_file_latitude 37.26 Weather station latitude from weather file used for the building energy simulation is 37.26°N -in.weather_file_latitude 37.28 Weather station latitude from weather file used for the building energy simulation is 37.28°N -in.weather_file_latitude 37.29 Weather station latitude from weather file used for the building energy simulation is 37.29°N -in.weather_file_latitude 37.3 Weather station latitude from weather file used for the building energy simulation is 37.3°N -in.weather_file_latitude 37.32 Weather station latitude from weather file used for the building energy simulation is 37.32°N -in.weather_file_latitude 37.33 Weather station latitude from weather file used for the building energy simulation is 37.33°N -in.weather_file_latitude 37.34 Weather station latitude from weather file used for the building energy simulation is 37.34°N -in.weather_file_latitude 37.36 Weather station latitude from weather file used for the building energy simulation is 37.36°N -in.weather_file_latitude 37.37 Weather station latitude from weather file used for the building energy simulation is 37.37°N -in.weather_file_latitude 37.44 Weather station latitude from weather file used for the building energy simulation is 37.44°N -in.weather_file_latitude 37.51 Weather station latitude from weather file used for the building energy simulation is 37.51°N -in.weather_file_latitude 37.59 Weather station latitude from weather file used for the building energy simulation is 37.59°N -in.weather_file_latitude 37.62 Weather station latitude from weather file used for the building energy simulation is 37.62°N -in.weather_file_latitude 37.63 Weather station latitude from weather file used for the building energy simulation is 37.63°N -in.weather_file_latitude 37.65 Weather station latitude from weather file used for the building energy simulation is 37.65°N -in.weather_file_latitude 37.66 Weather station latitude from weather file used for the building energy simulation is 37.66°N -in.weather_file_latitude 37.67 Weather station latitude from weather file used for the building energy simulation is 37.67°N -in.weather_file_latitude 37.7 Weather station latitude from weather file used for the building energy simulation is 37.7°N -in.weather_file_latitude 37.71 Weather station latitude from weather file used for the building energy simulation is 37.71°N -in.weather_file_latitude 37.75 Weather station latitude from weather file used for the building energy simulation is 37.75°N -in.weather_file_latitude 37.76 Weather station latitude from weather file used for the building energy simulation is 37.76°N -in.weather_file_latitude 37.77 Weather station latitude from weather file used for the building energy simulation is 37.77°N -in.weather_file_latitude 37.78 Weather station latitude from weather file used for the building energy simulation is 37.78°N -in.weather_file_latitude 37.8 Weather station latitude from weather file used for the building energy simulation is 37.8°N -in.weather_file_latitude 37.81 Weather station latitude from weather file used for the building energy simulation is 37.81°N -in.weather_file_latitude 37.86 Weather station latitude from weather file used for the building energy simulation is 37.86°N -in.weather_file_latitude 37.89 Weather station latitude from weather file used for the building energy simulation is 37.89°N -in.weather_file_latitude 37.9 Weather station latitude from weather file used for the building energy simulation is 37.9°N -in.weather_file_latitude 37.93 Weather station latitude from weather file used for the building energy simulation is 37.93°N -in.weather_file_latitude 37.94 Weather station latitude from weather file used for the building energy simulation is 37.94°N -in.weather_file_latitude 37.95 Weather station latitude from weather file used for the building energy simulation is 37.95°N -in.weather_file_latitude 37.99 Weather station latitude from weather file used for the building energy simulation is 37.99°N -in.weather_file_latitude 38.01 Weather station latitude from weather file used for the building energy simulation is 38.01°N -in.weather_file_latitude 38.04 Weather station latitude from weather file used for the building energy simulation is 38.04°N -in.weather_file_latitude 38.05 Weather station latitude from weather file used for the building energy simulation is 38.05°N -in.weather_file_latitude 38.06 Weather station latitude from weather file used for the building energy simulation is 38.06°N -in.weather_file_latitude 38.07 Weather station latitude from weather file used for the building energy simulation is 38.07°N -in.weather_file_latitude 38.1 Weather station latitude from weather file used for the building energy simulation is 38.1°N -in.weather_file_latitude 38.13 Weather station latitude from weather file used for the building energy simulation is 38.13°N -in.weather_file_latitude 38.14 Weather station latitude from weather file used for the building energy simulation is 38.14°N -in.weather_file_latitude 38.18 Weather station latitude from weather file used for the building energy simulation is 38.18°N -in.weather_file_latitude 38.19 Weather station latitude from weather file used for the building energy simulation is 38.19°N -in.weather_file_latitude 38.21 Weather station latitude from weather file used for the building energy simulation is 38.21°N -in.weather_file_latitude 38.23 Weather station latitude from weather file used for the building energy simulation is 38.23°N -in.weather_file_latitude 38.25 Weather station latitude from weather file used for the building energy simulation is 38.25°N -in.weather_file_latitude 38.26 Weather station latitude from weather file used for the building energy simulation is 38.26°N -in.weather_file_latitude 38.27 Weather station latitude from weather file used for the building energy simulation is 38.27°N -in.weather_file_latitude 38.28 Weather station latitude from weather file used for the building energy simulation is 38.28°N -in.weather_file_latitude 38.29 Weather station latitude from weather file used for the building energy simulation is 38.29°N -in.weather_file_latitude 38.31 Weather station latitude from weather file used for the building energy simulation is 38.31°N -in.weather_file_latitude 38.32 Weather station latitude from weather file used for the building energy simulation is 38.32°N -in.weather_file_latitude 38.33 Weather station latitude from weather file used for the building energy simulation is 38.33°N -in.weather_file_latitude 38.34 Weather station latitude from weather file used for the building energy simulation is 38.34°N -in.weather_file_latitude 38.38 Weather station latitude from weather file used for the building energy simulation is 38.38°N -in.weather_file_latitude 38.45 Weather station latitude from weather file used for the building energy simulation is 38.45°N -in.weather_file_latitude 38.5 Weather station latitude from weather file used for the building energy simulation is 38.5°N -in.weather_file_latitude 38.51 Weather station latitude from weather file used for the building energy simulation is 38.51°N -in.weather_file_latitude 38.53 Weather station latitude from weather file used for the building energy simulation is 38.53°N -in.weather_file_latitude 38.57 Weather station latitude from weather file used for the building energy simulation is 38.57°N -in.weather_file_latitude 38.59 Weather station latitude from weather file used for the building energy simulation is 38.59°N -in.weather_file_latitude 38.64 Weather station latitude from weather file used for the building energy simulation is 38.64°N -in.weather_file_latitude 38.66 Weather station latitude from weather file used for the building energy simulation is 38.66°N -in.weather_file_latitude 38.67 Weather station latitude from weather file used for the building energy simulation is 38.67°N -in.weather_file_latitude 38.69 Weather station latitude from weather file used for the building energy simulation is 38.69°N -in.weather_file_latitude 38.7 Weather station latitude from weather file used for the building energy simulation is 38.7°N -in.weather_file_latitude 38.72 Weather station latitude from weather file used for the building energy simulation is 38.72°N -in.weather_file_latitude 38.73 Weather station latitude from weather file used for the building energy simulation is 38.73°N -in.weather_file_latitude 38.75 Weather station latitude from weather file used for the building energy simulation is 38.75°N -in.weather_file_latitude 38.76 Weather station latitude from weather file used for the building energy simulation is 38.76°N -in.weather_file_latitude 38.81 Weather station latitude from weather file used for the building energy simulation is 38.81°N -in.weather_file_latitude 38.82 Weather station latitude from weather file used for the building energy simulation is 38.82°N -in.weather_file_latitude 38.83 Weather station latitude from weather file used for the building energy simulation is 38.83°N -in.weather_file_latitude 38.85 Weather station latitude from weather file used for the building energy simulation is 38.85°N -in.weather_file_latitude 38.87 Weather station latitude from weather file used for the building energy simulation is 38.87°N -in.weather_file_latitude 38.89 Weather station latitude from weather file used for the building energy simulation is 38.89°N -in.weather_file_latitude 38.9 Weather station latitude from weather file used for the building energy simulation is 38.9°N -in.weather_file_latitude 38.95 Weather station latitude from weather file used for the building energy simulation is 38.95°N -in.weather_file_latitude 39.01 Weather station latitude from weather file used for the building energy simulation is 39.01°N -in.weather_file_latitude 39.04 Weather station latitude from weather file used for the building energy simulation is 39.04°N -in.weather_file_latitude 39.06 Weather station latitude from weather file used for the building energy simulation is 39.06°N -in.weather_file_latitude 39.07 Weather station latitude from weather file used for the building energy simulation is 39.07°N -in.weather_file_latitude 39.08 Weather station latitude from weather file used for the building energy simulation is 39.08°N -in.weather_file_latitude 39.1 Weather station latitude from weather file used for the building energy simulation is 39.1°N -in.weather_file_latitude 39.12 Weather station latitude from weather file used for the building energy simulation is 39.12°N -in.weather_file_latitude 39.13 Weather station latitude from weather file used for the building energy simulation is 39.13°N -in.weather_file_latitude 39.14 Weather station latitude from weather file used for the building energy simulation is 39.14°N -in.weather_file_latitude 39.17 Weather station latitude from weather file used for the building energy simulation is 39.17°N -in.weather_file_latitude 39.19 Weather station latitude from weather file used for the building energy simulation is 39.19°N -in.weather_file_latitude 39.22 Weather station latitude from weather file used for the building energy simulation is 39.22°N -in.weather_file_latitude 39.23 Weather station latitude from weather file used for the building energy simulation is 39.23°N -in.weather_file_latitude 39.25 Weather station latitude from weather file used for the building energy simulation is 39.25°N -in.weather_file_latitude 39.29 Weather station latitude from weather file used for the building energy simulation is 39.29°N -in.weather_file_latitude 39.3 Weather station latitude from weather file used for the building energy simulation is 39.3°N -in.weather_file_latitude 39.32 Weather station latitude from weather file used for the building energy simulation is 39.32°N -in.weather_file_latitude 39.35 Weather station latitude from weather file used for the building energy simulation is 39.35°N -in.weather_file_latitude 39.36 Weather station latitude from weather file used for the building energy simulation is 39.36°N -in.weather_file_latitude 39.37 Weather station latitude from weather file used for the building energy simulation is 39.37°N -in.weather_file_latitude 39.38 Weather station latitude from weather file used for the building energy simulation is 39.38°N -in.weather_file_latitude 39.4 Weather station latitude from weather file used for the building energy simulation is 39.4°N -in.weather_file_latitude 39.42 Weather station latitude from weather file used for the building energy simulation is 39.42°N -in.weather_file_latitude 39.45 Weather station latitude from weather file used for the building energy simulation is 39.45°N -in.weather_file_latitude 39.46 Weather station latitude from weather file used for the building energy simulation is 39.46°N -in.weather_file_latitude 39.48 Weather station latitude from weather file used for the building energy simulation is 39.48°N -in.weather_file_latitude 39.49 Weather station latitude from weather file used for the building energy simulation is 39.49°N -in.weather_file_latitude 39.53 Weather station latitude from weather file used for the building energy simulation is 39.53°N -in.weather_file_latitude 39.55 Weather station latitude from weather file used for the building energy simulation is 39.55°N -in.weather_file_latitude 39.57 Weather station latitude from weather file used for the building energy simulation is 39.57°N -in.weather_file_latitude 39.58 Weather station latitude from weather file used for the building energy simulation is 39.58°N -in.weather_file_latitude 39.59 Weather station latitude from weather file used for the building energy simulation is 39.59°N -in.weather_file_latitude 39.6 Weather station latitude from weather file used for the building energy simulation is 39.6°N -in.weather_file_latitude 39.64 Weather station latitude from weather file used for the building energy simulation is 39.64°N -in.weather_file_latitude 39.67 Weather station latitude from weather file used for the building energy simulation is 39.67°N -in.weather_file_latitude 39.7 Weather station latitude from weather file used for the building energy simulation is 39.7°N -in.weather_file_latitude 39.71 Weather station latitude from weather file used for the building energy simulation is 39.71°N -in.weather_file_latitude 39.76 Weather station latitude from weather file used for the building energy simulation is 39.76°N -in.weather_file_latitude 39.77 Weather station latitude from weather file used for the building energy simulation is 39.77°N -in.weather_file_latitude 39.78 Weather station latitude from weather file used for the building energy simulation is 39.78°N -in.weather_file_latitude 39.8 Weather station latitude from weather file used for the building energy simulation is 39.8°N -in.weather_file_latitude 39.83 Weather station latitude from weather file used for the building energy simulation is 39.83°N -in.weather_file_latitude 39.85 Weather station latitude from weather file used for the building energy simulation is 39.85°N -in.weather_file_latitude 39.87 Weather station latitude from weather file used for the building energy simulation is 39.87°N -in.weather_file_latitude 39.91 Weather station latitude from weather file used for the building energy simulation is 39.91°N -in.weather_file_latitude 39.92 Weather station latitude from weather file used for the building energy simulation is 39.92°N -in.weather_file_latitude 39.94 Weather station latitude from weather file used for the building energy simulation is 39.94°N -in.weather_file_latitude 39.98 Weather station latitude from weather file used for the building energy simulation is 39.98°N -in.weather_file_latitude 39.99 Weather station latitude from weather file used for the building energy simulation is 39.99°N -in.weather_file_latitude 40.04 Weather station latitude from weather file used for the building energy simulation is 40.04°N -in.weather_file_latitude 40.05 Weather station latitude from weather file used for the building energy simulation is 40.05°N -in.weather_file_latitude 40.07 Weather station latitude from weather file used for the building energy simulation is 40.07°N -in.weather_file_latitude 40.08 Weather station latitude from weather file used for the building energy simulation is 40.08°N -in.weather_file_latitude 40.1 Weather station latitude from weather file used for the building energy simulation is 40.1°N -in.weather_file_latitude 40.12 Weather station latitude from weather file used for the building energy simulation is 40.12°N -in.weather_file_latitude 40.14 Weather station latitude from weather file used for the building energy simulation is 40.14°N -in.weather_file_latitude 40.15 Weather station latitude from weather file used for the building energy simulation is 40.15°N -in.weather_file_latitude 40.17 Weather station latitude from weather file used for the building energy simulation is 40.17°N -in.weather_file_latitude 40.18 Weather station latitude from weather file used for the building energy simulation is 40.18°N -in.weather_file_latitude 40.19 Weather station latitude from weather file used for the building energy simulation is 40.19°N -in.weather_file_latitude 40.2 Weather station latitude from weather file used for the building energy simulation is 40.2°N -in.weather_file_latitude 40.21 Weather station latitude from weather file used for the building energy simulation is 40.21°N -in.weather_file_latitude 40.22 Weather station latitude from weather file used for the building energy simulation is 40.22°N -in.weather_file_latitude 40.23 Weather station latitude from weather file used for the building energy simulation is 40.23°N -in.weather_file_latitude 40.24 Weather station latitude from weather file used for the building energy simulation is 40.24°N -in.weather_file_latitude 40.28 Weather station latitude from weather file used for the building energy simulation is 40.28°N -in.weather_file_latitude 40.3 Weather station latitude from weather file used for the building energy simulation is 40.3°N -in.weather_file_latitude 40.33 Weather station latitude from weather file used for the building energy simulation is 40.33°N -in.weather_file_latitude 40.36 Weather station latitude from weather file used for the building energy simulation is 40.36°N -in.weather_file_latitude 40.37 Weather station latitude from weather file used for the building energy simulation is 40.37°N -in.weather_file_latitude 40.41 Weather station latitude from weather file used for the building energy simulation is 40.41°N -in.weather_file_latitude 40.44 Weather station latitude from weather file used for the building energy simulation is 40.44°N -in.weather_file_latitude 40.45 Weather station latitude from weather file used for the building energy simulation is 40.45°N -in.weather_file_latitude 40.46 Weather station latitude from weather file used for the building energy simulation is 40.46°N -in.weather_file_latitude 40.47 Weather station latitude from weather file used for the building energy simulation is 40.47°N -in.weather_file_latitude 40.48 Weather station latitude from weather file used for the building energy simulation is 40.48°N -in.weather_file_latitude 40.5 Weather station latitude from weather file used for the building energy simulation is 40.5°N -in.weather_file_latitude 40.52 Weather station latitude from weather file used for the building energy simulation is 40.52°N -in.weather_file_latitude 40.6 Weather station latitude from weather file used for the building energy simulation is 40.6°N -in.weather_file_latitude 40.62 Weather station latitude from weather file used for the building energy simulation is 40.62°N -in.weather_file_latitude 40.63 Weather station latitude from weather file used for the building energy simulation is 40.63°N -in.weather_file_latitude 40.65 Weather station latitude from weather file used for the building energy simulation is 40.65°N -in.weather_file_latitude 40.66 Weather station latitude from weather file used for the building energy simulation is 40.66°N -in.weather_file_latitude 40.67 Weather station latitude from weather file used for the building energy simulation is 40.67°N -in.weather_file_latitude 40.68 Weather station latitude from weather file used for the building energy simulation is 40.68°N -in.weather_file_latitude 40.71 Weather station latitude from weather file used for the building energy simulation is 40.71°N -in.weather_file_latitude 40.72 Weather station latitude from weather file used for the building energy simulation is 40.72°N -in.weather_file_latitude 40.73 Weather station latitude from weather file used for the building energy simulation is 40.73°N -in.weather_file_latitude 40.75 Weather station latitude from weather file used for the building energy simulation is 40.75°N -in.weather_file_latitude 40.77 Weather station latitude from weather file used for the building energy simulation is 40.77°N -in.weather_file_latitude 40.78 Weather station latitude from weather file used for the building energy simulation is 40.78°N -in.weather_file_latitude 40.79 Weather station latitude from weather file used for the building energy simulation is 40.79°N -in.weather_file_latitude 40.82 Weather station latitude from weather file used for the building energy simulation is 40.82°N -in.weather_file_latitude 40.83 Weather station latitude from weather file used for the building energy simulation is 40.83°N -in.weather_file_latitude 40.85 Weather station latitude from weather file used for the building energy simulation is 40.85°N -in.weather_file_latitude 40.88 Weather station latitude from weather file used for the building energy simulation is 40.88°N -in.weather_file_latitude 40.89 Weather station latitude from weather file used for the building energy simulation is 40.89°N -in.weather_file_latitude 40.9 Weather station latitude from weather file used for the building energy simulation is 40.9°N -in.weather_file_latitude 40.92 Weather station latitude from weather file used for the building energy simulation is 40.92°N -in.weather_file_latitude 40.96 Weather station latitude from weather file used for the building energy simulation is 40.96°N -in.weather_file_latitude 40.98 Weather station latitude from weather file used for the building energy simulation is 40.98°N -in.weather_file_latitude 41.01 Weather station latitude from weather file used for the building energy simulation is 41.01°N -in.weather_file_latitude 41.02 Weather station latitude from weather file used for the building energy simulation is 41.02°N -in.weather_file_latitude 41.05 Weather station latitude from weather file used for the building energy simulation is 41.05°N -in.weather_file_latitude 41.07 Weather station latitude from weather file used for the building energy simulation is 41.07°N -in.weather_file_latitude 41.1 Weather station latitude from weather file used for the building energy simulation is 41.1°N -in.weather_file_latitude 41.11 Weather station latitude from weather file used for the building energy simulation is 41.11°N -in.weather_file_latitude 41.12 Weather station latitude from weather file used for the building energy simulation is 41.12°N -in.weather_file_latitude 41.14 Weather station latitude from weather file used for the building energy simulation is 41.14°N -in.weather_file_latitude 41.16 Weather station latitude from weather file used for the building energy simulation is 41.16°N -in.weather_file_latitude 41.17 Weather station latitude from weather file used for the building energy simulation is 41.17°N -in.weather_file_latitude 41.18 Weather station latitude from weather file used for the building energy simulation is 41.18°N -in.weather_file_latitude 41.2 Weather station latitude from weather file used for the building energy simulation is 41.2°N -in.weather_file_latitude 41.24 Weather station latitude from weather file used for the building energy simulation is 41.24°N -in.weather_file_latitude 41.25 Weather station latitude from weather file used for the building energy simulation is 41.25°N -in.weather_file_latitude 41.26 Weather station latitude from weather file used for the building energy simulation is 41.26°N -in.weather_file_latitude 41.28 Weather station latitude from weather file used for the building energy simulation is 41.28°N -in.weather_file_latitude 41.3 Weather station latitude from weather file used for the building energy simulation is 41.3°N -in.weather_file_latitude 41.31 Weather station latitude from weather file used for the building energy simulation is 41.31°N -in.weather_file_latitude 41.34 Weather station latitude from weather file used for the building energy simulation is 41.34°N -in.weather_file_latitude 41.37 Weather station latitude from weather file used for the building energy simulation is 41.37°N -in.weather_file_latitude 41.39 Weather station latitude from weather file used for the building energy simulation is 41.39°N -in.weather_file_latitude 41.41 Weather station latitude from weather file used for the building energy simulation is 41.41°N -in.weather_file_latitude 41.44 Weather station latitude from weather file used for the building energy simulation is 41.44°N -in.weather_file_latitude 41.45 Weather station latitude from weather file used for the building energy simulation is 41.45°N -in.weather_file_latitude 41.47 Weather station latitude from weather file used for the building energy simulation is 41.47°N -in.weather_file_latitude 41.48 Weather station latitude from weather file used for the building energy simulation is 41.48°N -in.weather_file_latitude 41.51 Weather station latitude from weather file used for the building energy simulation is 41.51°N -in.weather_file_latitude 41.52 Weather station latitude from weather file used for the building energy simulation is 41.52°N -in.weather_file_latitude 41.53 Weather station latitude from weather file used for the building energy simulation is 41.53°N -in.weather_file_latitude 41.54 Weather station latitude from weather file used for the building energy simulation is 41.54°N -in.weather_file_latitude 41.56 Weather station latitude from weather file used for the building energy simulation is 41.56°N -in.weather_file_latitude 41.59 Weather station latitude from weather file used for the building energy simulation is 41.59°N -in.weather_file_latitude 41.61 Weather station latitude from weather file used for the building energy simulation is 41.61°N -in.weather_file_latitude 41.62 Weather station latitude from weather file used for the building energy simulation is 41.62°N -in.weather_file_latitude 41.63 Weather station latitude from weather file used for the building energy simulation is 41.63°N -in.weather_file_latitude 41.67 Weather station latitude from weather file used for the building energy simulation is 41.67°N -in.weather_file_latitude 41.7 Weather station latitude from weather file used for the building energy simulation is 41.7°N -in.weather_file_latitude 41.71 Weather station latitude from weather file used for the building energy simulation is 41.71°N -in.weather_file_latitude 41.72 Weather station latitude from weather file used for the building energy simulation is 41.72°N -in.weather_file_latitude 41.74 Weather station latitude from weather file used for the building energy simulation is 41.74°N -in.weather_file_latitude 41.76 Weather station latitude from weather file used for the building energy simulation is 41.76°N -in.weather_file_latitude 41.77 Weather station latitude from weather file used for the building energy simulation is 41.77°N -in.weather_file_latitude 41.78 Weather station latitude from weather file used for the building energy simulation is 41.78°N -in.weather_file_latitude 41.79 Weather station latitude from weather file used for the building energy simulation is 41.79°N -in.weather_file_latitude 41.8 Weather station latitude from weather file used for the building energy simulation is 41.8°N -in.weather_file_latitude 41.81 Weather station latitude from weather file used for the building energy simulation is 41.81°N -in.weather_file_latitude 41.82 Weather station latitude from weather file used for the building energy simulation is 41.82°N -in.weather_file_latitude 41.83 Weather station latitude from weather file used for the building energy simulation is 41.83°N -in.weather_file_latitude 41.87 Weather station latitude from weather file used for the building energy simulation is 41.87°N -in.weather_file_latitude 41.88 Weather station latitude from weather file used for the building energy simulation is 41.88°N -in.weather_file_latitude 41.91 Weather station latitude from weather file used for the building energy simulation is 41.91°N -in.weather_file_latitude 41.92 Weather station latitude from weather file used for the building energy simulation is 41.92°N -in.weather_file_latitude 41.93 Weather station latitude from weather file used for the building energy simulation is 41.93°N -in.weather_file_latitude 41.98 Weather station latitude from weather file used for the building energy simulation is 41.98°N -in.weather_file_latitude 41.99 Weather station latitude from weather file used for the building energy simulation is 41.99°N -in.weather_file_latitude 42.05 Weather station latitude from weather file used for the building energy simulation is 42.05°N -in.weather_file_latitude 42.06 Weather station latitude from weather file used for the building energy simulation is 42.06°N -in.weather_file_latitude 42.07 Weather station latitude from weather file used for the building energy simulation is 42.07°N -in.weather_file_latitude 42.08 Weather station latitude from weather file used for the building energy simulation is 42.08°N -in.weather_file_latitude 42.11 Weather station latitude from weather file used for the building energy simulation is 42.11°N -in.weather_file_latitude 42.13 Weather station latitude from weather file used for the building energy simulation is 42.13°N -in.weather_file_latitude 42.15 Weather station latitude from weather file used for the building energy simulation is 42.15°N -in.weather_file_latitude 42.16 Weather station latitude from weather file used for the building energy simulation is 42.16°N -in.weather_file_latitude 42.17 Weather station latitude from weather file used for the building energy simulation is 42.17°N -in.weather_file_latitude 42.19 Weather station latitude from weather file used for the building energy simulation is 42.19°N -in.weather_file_latitude 42.2 Weather station latitude from weather file used for the building energy simulation is 42.2°N -in.weather_file_latitude 42.21 Weather station latitude from weather file used for the building energy simulation is 42.21°N -in.weather_file_latitude 42.22 Weather station latitude from weather file used for the building energy simulation is 42.22°N -in.weather_file_latitude 42.24 Weather station latitude from weather file used for the building energy simulation is 42.24°N -in.weather_file_latitude 42.26 Weather station latitude from weather file used for the building energy simulation is 42.26°N -in.weather_file_latitude 42.27 Weather station latitude from weather file used for the building energy simulation is 42.27°N -in.weather_file_latitude 42.31 Weather station latitude from weather file used for the building energy simulation is 42.31°N -in.weather_file_latitude 42.36 Weather station latitude from weather file used for the building energy simulation is 42.36°N -in.weather_file_latitude 42.39 Weather station latitude from weather file used for the building energy simulation is 42.39°N -in.weather_file_latitude 42.4 Weather station latitude from weather file used for the building energy simulation is 42.4°N -in.weather_file_latitude 42.42 Weather station latitude from weather file used for the building energy simulation is 42.42°N -in.weather_file_latitude 42.44 Weather station latitude from weather file used for the building energy simulation is 42.44°N -in.weather_file_latitude 42.47 Weather station latitude from weather file used for the building energy simulation is 42.47°N -in.weather_file_latitude 42.48 Weather station latitude from weather file used for the building energy simulation is 42.48°N -in.weather_file_latitude 42.54 Weather station latitude from weather file used for the building energy simulation is 42.54°N -in.weather_file_latitude 42.55 Weather station latitude from weather file used for the building energy simulation is 42.55°N -in.weather_file_latitude 42.57 Weather station latitude from weather file used for the building energy simulation is 42.57°N -in.weather_file_latitude 42.58 Weather station latitude from weather file used for the building energy simulation is 42.58°N -in.weather_file_latitude 42.6 Weather station latitude from weather file used for the building energy simulation is 42.6°N -in.weather_file_latitude 42.61 Weather station latitude from weather file used for the building energy simulation is 42.61°N -in.weather_file_latitude 42.62 Weather station latitude from weather file used for the building energy simulation is 42.62°N -in.weather_file_latitude 42.63 Weather station latitude from weather file used for the building energy simulation is 42.63°N -in.weather_file_latitude 42.64 Weather station latitude from weather file used for the building energy simulation is 42.64°N -in.weather_file_latitude 42.67 Weather station latitude from weather file used for the building energy simulation is 42.67°N -in.weather_file_latitude 42.7 Weather station latitude from weather file used for the building energy simulation is 42.7°N -in.weather_file_latitude 42.73 Weather station latitude from weather file used for the building energy simulation is 42.73°N -in.weather_file_latitude 42.74 Weather station latitude from weather file used for the building energy simulation is 42.74°N -in.weather_file_latitude 42.75 Weather station latitude from weather file used for the building energy simulation is 42.75°N -in.weather_file_latitude 42.76 Weather station latitude from weather file used for the building energy simulation is 42.76°N -in.weather_file_latitude 42.78 Weather station latitude from weather file used for the building energy simulation is 42.78°N -in.weather_file_latitude 42.79 Weather station latitude from weather file used for the building energy simulation is 42.79°N -in.weather_file_latitude 42.8 Weather station latitude from weather file used for the building energy simulation is 42.8°N -in.weather_file_latitude 42.86 Weather station latitude from weather file used for the building energy simulation is 42.86°N -in.weather_file_latitude 42.88 Weather station latitude from weather file used for the building energy simulation is 42.88°N -in.weather_file_latitude 42.89 Weather station latitude from weather file used for the building energy simulation is 42.89°N -in.weather_file_latitude 42.9 Weather station latitude from weather file used for the building energy simulation is 42.9°N -in.weather_file_latitude 42.91 Weather station latitude from weather file used for the building energy simulation is 42.91°N -in.weather_file_latitude 42.92 Weather station latitude from weather file used for the building energy simulation is 42.92°N -in.weather_file_latitude 42.93 Weather station latitude from weather file used for the building energy simulation is 42.93°N -in.weather_file_latitude 42.94 Weather station latitude from weather file used for the building energy simulation is 42.94°N -in.weather_file_latitude 42.95 Weather station latitude from weather file used for the building energy simulation is 42.95°N -in.weather_file_latitude 42.97 Weather station latitude from weather file used for the building energy simulation is 42.97°N -in.weather_file_latitude 42.99 Weather station latitude from weather file used for the building energy simulation is 42.99°N -in.weather_file_latitude 43.02 Weather station latitude from weather file used for the building energy simulation is 43.02°N -in.weather_file_latitude 43.04 Weather station latitude from weather file used for the building energy simulation is 43.04°N -in.weather_file_latitude 43.06 Weather station latitude from weather file used for the building energy simulation is 43.06°N -in.weather_file_latitude 43.08 Weather station latitude from weather file used for the building energy simulation is 43.08°N -in.weather_file_latitude 43.11 Weather station latitude from weather file used for the building energy simulation is 43.11°N -in.weather_file_latitude 43.12 Weather station latitude from weather file used for the building energy simulation is 43.12°N -in.weather_file_latitude 43.14 Weather station latitude from weather file used for the building energy simulation is 43.14°N -in.weather_file_latitude 43.16 Weather station latitude from weather file used for the building energy simulation is 43.16°N -in.weather_file_latitude 43.17 Weather station latitude from weather file used for the building energy simulation is 43.17°N -in.weather_file_latitude 43.2 Weather station latitude from weather file used for the building energy simulation is 43.2°N -in.weather_file_latitude 43.21 Weather station latitude from weather file used for the building energy simulation is 43.21°N -in.weather_file_latitude 43.23 Weather station latitude from weather file used for the building energy simulation is 43.23°N -in.weather_file_latitude 43.24 Weather station latitude from weather file used for the building energy simulation is 43.24°N -in.weather_file_latitude 43.28 Weather station latitude from weather file used for the building energy simulation is 43.28°N -in.weather_file_latitude 43.32 Weather station latitude from weather file used for the building energy simulation is 43.32°N -in.weather_file_latitude 43.34 Weather station latitude from weather file used for the building energy simulation is 43.34°N -in.weather_file_latitude 43.35 Weather station latitude from weather file used for the building energy simulation is 43.35°N -in.weather_file_latitude 43.39 Weather station latitude from weather file used for the building energy simulation is 43.39°N -in.weather_file_latitude 43.41 Weather station latitude from weather file used for the building energy simulation is 43.41°N -in.weather_file_latitude 43.42 Weather station latitude from weather file used for the building energy simulation is 43.42°N -in.weather_file_latitude 43.43 Weather station latitude from weather file used for the building energy simulation is 43.43°N -in.weather_file_latitude 43.52 Weather station latitude from weather file used for the building energy simulation is 43.52°N -in.weather_file_latitude 43.53 Weather station latitude from weather file used for the building energy simulation is 43.53°N -in.weather_file_latitude 43.57 Weather station latitude from weather file used for the building energy simulation is 43.57°N -in.weather_file_latitude 43.58 Weather station latitude from weather file used for the building energy simulation is 43.58°N -in.weather_file_latitude 43.59 Weather station latitude from weather file used for the building energy simulation is 43.59°N -in.weather_file_latitude 43.61 Weather station latitude from weather file used for the building energy simulation is 43.61°N -in.weather_file_latitude 43.62 Weather station latitude from weather file used for the building energy simulation is 43.62°N -in.weather_file_latitude 43.63 Weather station latitude from weather file used for the building energy simulation is 43.63°N -in.weather_file_latitude 43.64 Weather station latitude from weather file used for the building energy simulation is 43.64°N -in.weather_file_latitude 43.65 Weather station latitude from weather file used for the building energy simulation is 43.65°N -in.weather_file_latitude 43.66 Weather station latitude from weather file used for the building energy simulation is 43.66°N -in.weather_file_latitude 43.67 Weather station latitude from weather file used for the building energy simulation is 43.67°N -in.weather_file_latitude 43.68 Weather station latitude from weather file used for the building energy simulation is 43.68°N -in.weather_file_latitude 43.72 Weather station latitude from weather file used for the building energy simulation is 43.72°N -in.weather_file_latitude 43.73 Weather station latitude from weather file used for the building energy simulation is 43.73°N -in.weather_file_latitude 43.77 Weather station latitude from weather file used for the building energy simulation is 43.77°N -in.weather_file_latitude 43.78 Weather station latitude from weather file used for the building energy simulation is 43.78°N -in.weather_file_latitude 43.83 Weather station latitude from weather file used for the building energy simulation is 43.83°N -in.weather_file_latitude 43.88 Weather station latitude from weather file used for the building energy simulation is 43.88°N -in.weather_file_latitude 43.9 Weather station latitude from weather file used for the building energy simulation is 43.9°N -in.weather_file_latitude 43.91 Weather station latitude from weather file used for the building energy simulation is 43.91°N -in.weather_file_latitude 43.96 Weather station latitude from weather file used for the building energy simulation is 43.96°N -in.weather_file_latitude 43.97 Weather station latitude from weather file used for the building energy simulation is 43.97°N -in.weather_file_latitude 43.98 Weather station latitude from weather file used for the building energy simulation is 43.98°N -in.weather_file_latitude 43.99 Weather station latitude from weather file used for the building energy simulation is 43.99°N -in.weather_file_latitude 44.02 Weather station latitude from weather file used for the building energy simulation is 44.02°N -in.weather_file_latitude 44.05 Weather station latitude from weather file used for the building energy simulation is 44.05°N -in.weather_file_latitude 44.08 Weather station latitude from weather file used for the building energy simulation is 44.08°N -in.weather_file_latitude 44.13 Weather station latitude from weather file used for the building energy simulation is 44.13°N -in.weather_file_latitude 44.15 Weather station latitude from weather file used for the building energy simulation is 44.15°N -in.weather_file_latitude 44.17 Weather station latitude from weather file used for the building energy simulation is 44.17°N -in.weather_file_latitude 44.2 Weather station latitude from weather file used for the building energy simulation is 44.2°N -in.weather_file_latitude 44.22 Weather station latitude from weather file used for the building energy simulation is 44.22°N -in.weather_file_latitude 44.25 Weather station latitude from weather file used for the building energy simulation is 44.25°N -in.weather_file_latitude 44.26 Weather station latitude from weather file used for the building energy simulation is 44.26°N -in.weather_file_latitude 44.27 Weather station latitude from weather file used for the building energy simulation is 44.27°N -in.weather_file_latitude 44.28 Weather station latitude from weather file used for the building energy simulation is 44.28°N -in.weather_file_latitude 44.3 Weather station latitude from weather file used for the building energy simulation is 44.3°N -in.weather_file_latitude 44.32 Weather station latitude from weather file used for the building energy simulation is 44.32°N -in.weather_file_latitude 44.34 Weather station latitude from weather file used for the building energy simulation is 44.34°N -in.weather_file_latitude 44.36 Weather station latitude from weather file used for the building energy simulation is 44.36°N -in.weather_file_latitude 44.37 Weather station latitude from weather file used for the building energy simulation is 44.37°N -in.weather_file_latitude 44.38 Weather station latitude from weather file used for the building energy simulation is 44.38°N -in.weather_file_latitude 44.39 Weather station latitude from weather file used for the building energy simulation is 44.39°N -in.weather_file_latitude 44.44 Weather station latitude from weather file used for the building energy simulation is 44.44°N -in.weather_file_latitude 44.45 Weather station latitude from weather file used for the building energy simulation is 44.45°N -in.weather_file_latitude 44.47 Weather station latitude from weather file used for the building energy simulation is 44.47°N -in.weather_file_latitude 44.5 Weather station latitude from weather file used for the building energy simulation is 44.5°N -in.weather_file_latitude 44.51 Weather station latitude from weather file used for the building energy simulation is 44.51°N -in.weather_file_latitude 44.52 Weather station latitude from weather file used for the building energy simulation is 44.52°N -in.weather_file_latitude 44.53 Weather station latitude from weather file used for the building energy simulation is 44.53°N -in.weather_file_latitude 44.55 Weather station latitude from weather file used for the building energy simulation is 44.55°N -in.weather_file_latitude 44.58 Weather station latitude from weather file used for the building energy simulation is 44.58°N -in.weather_file_latitude 44.59 Weather station latitude from weather file used for the building energy simulation is 44.59°N -in.weather_file_latitude 44.61 Weather station latitude from weather file used for the building energy simulation is 44.61°N -in.weather_file_latitude 44.62 Weather station latitude from weather file used for the building energy simulation is 44.62°N -in.weather_file_latitude 44.64 Weather station latitude from weather file used for the building energy simulation is 44.64°N -in.weather_file_latitude 44.65 Weather station latitude from weather file used for the building energy simulation is 44.65°N -in.weather_file_latitude 44.74 Weather station latitude from weather file used for the building energy simulation is 44.74°N -in.weather_file_latitude 44.77 Weather station latitude from weather file used for the building energy simulation is 44.77°N -in.weather_file_latitude 44.81 Weather station latitude from weather file used for the building energy simulation is 44.81°N -in.weather_file_latitude 44.83 Weather station latitude from weather file used for the building energy simulation is 44.83°N -in.weather_file_latitude 44.84 Weather station latitude from weather file used for the building energy simulation is 44.84°N -in.weather_file_latitude 44.85 Weather station latitude from weather file used for the building energy simulation is 44.85°N -in.weather_file_latitude 44.86 Weather station latitude from weather file used for the building energy simulation is 44.86°N -in.weather_file_latitude 44.87 Weather station latitude from weather file used for the building energy simulation is 44.87°N -in.weather_file_latitude 44.88 Weather station latitude from weather file used for the building energy simulation is 44.88°N -in.weather_file_latitude 44.91 Weather station latitude from weather file used for the building energy simulation is 44.91°N -in.weather_file_latitude 44.93 Weather station latitude from weather file used for the building energy simulation is 44.93°N -in.weather_file_latitude 44.94 Weather station latitude from weather file used for the building energy simulation is 44.94°N -in.weather_file_latitude 44.97 Weather station latitude from weather file used for the building energy simulation is 44.97°N -in.weather_file_latitude 44.99 Weather station latitude from weather file used for the building energy simulation is 44.99°N -in.weather_file_latitude 45.01 Weather station latitude from weather file used for the building energy simulation is 45.01°N -in.weather_file_latitude 45.06 Weather station latitude from weather file used for the building energy simulation is 45.06°N -in.weather_file_latitude 45.07 Weather station latitude from weather file used for the building energy simulation is 45.07°N -in.weather_file_latitude 45.1 Weather station latitude from weather file used for the building energy simulation is 45.1°N -in.weather_file_latitude 45.12 Weather station latitude from weather file used for the building energy simulation is 45.12°N -in.weather_file_latitude 45.13 Weather station latitude from weather file used for the building energy simulation is 45.13°N -in.weather_file_latitude 45.15 Weather station latitude from weather file used for the building energy simulation is 45.15°N -in.weather_file_latitude 45.2 Weather station latitude from weather file used for the building energy simulation is 45.2°N -in.weather_file_latitude 45.25 Weather station latitude from weather file used for the building energy simulation is 45.25°N -in.weather_file_latitude 45.26 Weather station latitude from weather file used for the building energy simulation is 45.26°N -in.weather_file_latitude 45.29 Weather station latitude from weather file used for the building energy simulation is 45.29°N -in.weather_file_latitude 45.31 Weather station latitude from weather file used for the building energy simulation is 45.31°N -in.weather_file_latitude 45.42 Weather station latitude from weather file used for the building energy simulation is 45.42°N -in.weather_file_latitude 45.45 Weather station latitude from weather file used for the building energy simulation is 45.45°N -in.weather_file_latitude 45.47 Weather station latitude from weather file used for the building energy simulation is 45.47°N -in.weather_file_latitude 45.54 Weather station latitude from weather file used for the building energy simulation is 45.54°N -in.weather_file_latitude 45.55 Weather station latitude from weather file used for the building energy simulation is 45.55°N -in.weather_file_latitude 45.56 Weather station latitude from weather file used for the building energy simulation is 45.56°N -in.weather_file_latitude 45.57 Weather station latitude from weather file used for the building energy simulation is 45.57°N -in.weather_file_latitude 45.59 Weather station latitude from weather file used for the building energy simulation is 45.59°N -in.weather_file_latitude 45.6 Weather station latitude from weather file used for the building energy simulation is 45.6°N -in.weather_file_latitude 45.62 Weather station latitude from weather file used for the building energy simulation is 45.62°N -in.weather_file_latitude 45.63 Weather station latitude from weather file used for the building energy simulation is 45.63°N -in.weather_file_latitude 45.64 Weather station latitude from weather file used for the building energy simulation is 45.64°N -in.weather_file_latitude 45.67 Weather station latitude from weather file used for the building energy simulation is 45.67°N -in.weather_file_latitude 45.7 Weather station latitude from weather file used for the building energy simulation is 45.7°N -in.weather_file_latitude 45.72 Weather station latitude from weather file used for the building energy simulation is 45.72°N -in.weather_file_latitude 45.77 Weather station latitude from weather file used for the building energy simulation is 45.77°N -in.weather_file_latitude 45.78 Weather station latitude from weather file used for the building energy simulation is 45.78°N -in.weather_file_latitude 45.79 Weather station latitude from weather file used for the building energy simulation is 45.79°N -in.weather_file_latitude 45.81 Weather station latitude from weather file used for the building energy simulation is 45.81°N -in.weather_file_latitude 45.82 Weather station latitude from weather file used for the building energy simulation is 45.82°N -in.weather_file_latitude 45.83 Weather station latitude from weather file used for the building energy simulation is 45.83°N -in.weather_file_latitude 45.87 Weather station latitude from weather file used for the building energy simulation is 45.87°N -in.weather_file_latitude 45.88 Weather station latitude from weather file used for the building energy simulation is 45.88°N -in.weather_file_latitude 45.89 Weather station latitude from weather file used for the building energy simulation is 45.89°N -in.weather_file_latitude 45.93 Weather station latitude from weather file used for the building energy simulation is 45.93°N -in.weather_file_latitude 45.95 Weather station latitude from weather file used for the building energy simulation is 45.95°N -in.weather_file_latitude 46.01 Weather station latitude from weather file used for the building energy simulation is 46.01°N -in.weather_file_latitude 46.03 Weather station latitude from weather file used for the building energy simulation is 46.03°N -in.weather_file_latitude 46.1 Weather station latitude from weather file used for the building energy simulation is 46.1°N -in.weather_file_latitude 46.14 Weather station latitude from weather file used for the building energy simulation is 46.14°N -in.weather_file_latitude 46.16 Weather station latitude from weather file used for the building energy simulation is 46.16°N -in.weather_file_latitude 46.27 Weather station latitude from weather file used for the building energy simulation is 46.27°N -in.weather_file_latitude 46.31 Weather station latitude from weather file used for the building energy simulation is 46.31°N -in.weather_file_latitude 46.35 Weather station latitude from weather file used for the building energy simulation is 46.35°N -in.weather_file_latitude 46.36 Weather station latitude from weather file used for the building energy simulation is 46.36°N -in.weather_file_latitude 46.38 Weather station latitude from weather file used for the building energy simulation is 46.38°N -in.weather_file_latitude 46.41 Weather station latitude from weather file used for the building energy simulation is 46.41°N -in.weather_file_latitude 46.43 Weather station latitude from weather file used for the building energy simulation is 46.43°N -in.weather_file_latitude 46.45 Weather station latitude from weather file used for the building energy simulation is 46.45°N -in.weather_file_latitude 46.47 Weather station latitude from weather file used for the building energy simulation is 46.47°N -in.weather_file_latitude 46.53 Weather station latitude from weather file used for the building energy simulation is 46.53°N -in.weather_file_latitude 46.55 Weather station latitude from weather file used for the building energy simulation is 46.55°N -in.weather_file_latitude 46.56 Weather station latitude from weather file used for the building energy simulation is 46.56°N -in.weather_file_latitude 46.57 Weather station latitude from weather file used for the building energy simulation is 46.57°N -in.weather_file_latitude 46.61 Weather station latitude from weather file used for the building energy simulation is 46.61°N -in.weather_file_latitude 46.69 Weather station latitude from weather file used for the building energy simulation is 46.69°N -in.weather_file_latitude 46.7 Weather station latitude from weather file used for the building energy simulation is 46.7°N -in.weather_file_latitude 46.73 Weather station latitude from weather file used for the building energy simulation is 46.73°N -in.weather_file_latitude 46.74 Weather station latitude from weather file used for the building energy simulation is 46.74°N -in.weather_file_latitude 46.77 Weather station latitude from weather file used for the building energy simulation is 46.77°N -in.weather_file_latitude 46.8 Weather station latitude from weather file used for the building energy simulation is 46.8°N -in.weather_file_latitude 46.83 Weather station latitude from weather file used for the building energy simulation is 46.83°N -in.weather_file_latitude 46.84 Weather station latitude from weather file used for the building energy simulation is 46.84°N -in.weather_file_latitude 46.9 Weather station latitude from weather file used for the building energy simulation is 46.9°N -in.weather_file_latitude 46.92 Weather station latitude from weather file used for the building energy simulation is 46.92°N -in.weather_file_latitude 46.93 Weather station latitude from weather file used for the building energy simulation is 46.93°N -in.weather_file_latitude 46.97 Weather station latitude from weather file used for the building energy simulation is 46.97°N -in.weather_file_latitude 47.03 Weather station latitude from weather file used for the building energy simulation is 47.03°N -in.weather_file_latitude 47.05 Weather station latitude from weather file used for the building energy simulation is 47.05°N -in.weather_file_latitude 47.12 Weather station latitude from weather file used for the building energy simulation is 47.12°N -in.weather_file_latitude 47.13 Weather station latitude from weather file used for the building energy simulation is 47.13°N -in.weather_file_latitude 47.16 Weather station latitude from weather file used for the building energy simulation is 47.16°N -in.weather_file_latitude 47.17 Weather station latitude from weather file used for the building energy simulation is 47.17°N -in.weather_file_latitude 47.21 Weather station latitude from weather file used for the building energy simulation is 47.21°N -in.weather_file_latitude 47.24 Weather station latitude from weather file used for the building energy simulation is 47.24°N -in.weather_file_latitude 47.25 Weather station latitude from weather file used for the building energy simulation is 47.25°N -in.weather_file_latitude 47.33 Weather station latitude from weather file used for the building energy simulation is 47.33°N -in.weather_file_latitude 47.4 Weather station latitude from weather file used for the building energy simulation is 47.4°N -in.weather_file_latitude 47.47 Weather station latitude from weather file used for the building energy simulation is 47.47°N -in.weather_file_latitude 47.49 Weather station latitude from weather file used for the building energy simulation is 47.49°N -in.weather_file_latitude 47.5 Weather station latitude from weather file used for the building energy simulation is 47.5°N -in.weather_file_latitude 47.51 Weather station latitude from weather file used for the building energy simulation is 47.51°N -in.weather_file_latitude 47.62 Weather station latitude from weather file used for the building energy simulation is 47.62°N -in.weather_file_latitude 47.66 Weather station latitude from weather file used for the building energy simulation is 47.66°N -in.weather_file_latitude 47.67 Weather station latitude from weather file used for the building energy simulation is 47.67°N -in.weather_file_latitude 47.68 Weather station latitude from weather file used for the building energy simulation is 47.68°N -in.weather_file_latitude 47.71 Weather station latitude from weather file used for the building energy simulation is 47.71°N -in.weather_file_latitude 47.75 Weather station latitude from weather file used for the building energy simulation is 47.75°N -in.weather_file_latitude 47.77 Weather station latitude from weather file used for the building energy simulation is 47.77°N -in.weather_file_latitude 47.84 Weather station latitude from weather file used for the building energy simulation is 47.84°N -in.weather_file_latitude 47.91 Weather station latitude from weather file used for the building energy simulation is 47.91°N -in.weather_file_latitude 47.95 Weather station latitude from weather file used for the building energy simulation is 47.95°N -in.weather_file_latitude 47.97 Weather station latitude from weather file used for the building energy simulation is 47.97°N -in.weather_file_latitude 48.07 Weather station latitude from weather file used for the building energy simulation is 48.07°N -in.weather_file_latitude 48.09 Weather station latitude from weather file used for the building energy simulation is 48.09°N -in.weather_file_latitude 48.11 Weather station latitude from weather file used for the building energy simulation is 48.11°N -in.weather_file_latitude 48.12 Weather station latitude from weather file used for the building energy simulation is 48.12°N -in.weather_file_latitude 48.16 Weather station latitude from weather file used for the building energy simulation is 48.16°N -in.weather_file_latitude 48.2 Weather station latitude from weather file used for the building energy simulation is 48.2°N -in.weather_file_latitude 48.21 Weather station latitude from weather file used for the building energy simulation is 48.21°N -in.weather_file_latitude 48.26 Weather station latitude from weather file used for the building energy simulation is 48.26°N -in.weather_file_latitude 48.3 Weather station latitude from weather file used for the building energy simulation is 48.3°N -in.weather_file_latitude 48.43 Weather station latitude from weather file used for the building energy simulation is 48.43°N -in.weather_file_latitude 48.46 Weather station latitude from weather file used for the building energy simulation is 48.46°N -in.weather_file_latitude 48.52 Weather station latitude from weather file used for the building energy simulation is 48.52°N -in.weather_file_latitude 48.56 Weather station latitude from weather file used for the building energy simulation is 48.56°N -in.weather_file_latitude 48.57 Weather station latitude from weather file used for the building energy simulation is 48.57°N -in.weather_file_latitude 48.61 Weather station latitude from weather file used for the building energy simulation is 48.61°N -in.weather_file_latitude 48.73 Weather station latitude from weather file used for the building energy simulation is 48.73°N -in.weather_file_latitude 48.75 Weather station latitude from weather file used for the building energy simulation is 48.75°N -in.weather_file_latitude 48.79 Weather station latitude from weather file used for the building energy simulation is 48.79°N -in.weather_file_latitude 48.86 Weather station latitude from weather file used for the building energy simulation is 48.86°N -in.weather_file_latitude 53.9 Weather station latitude from weather file used for the building energy simulation is 53.9°N -in.weather_file_latitude 55.21 Weather station latitude from weather file used for the building energy simulation is 55.21°N -in.weather_file_latitude 55.36 Weather station latitude from weather file used for the building energy simulation is 55.36°N -in.weather_file_latitude 56.48 Weather station latitude from weather file used for the building energy simulation is 56.48°N -in.weather_file_latitude 57.05 Weather station latitude from weather file used for the building energy simulation is 57.05°N -in.weather_file_latitude 57.75 Weather station latitude from weather file used for the building energy simulation is 57.75°N -in.weather_file_latitude 58.36 Weather station latitude from weather file used for the building energy simulation is 58.36°N -in.weather_file_latitude 58.43 Weather station latitude from weather file used for the building energy simulation is 58.43°N -in.weather_file_latitude 58.65 Weather station latitude from weather file used for the building energy simulation is 58.65°N -in.weather_file_latitude 58.68 Weather station latitude from weather file used for the building energy simulation is 58.68°N -in.weather_file_latitude 58.99 Weather station latitude from weather file used for the building energy simulation is 58.99°N -in.weather_file_latitude 59.25 Weather station latitude from weather file used for the building energy simulation is 59.25°N -in.weather_file_latitude 59.43 Weather station latitude from weather file used for the building energy simulation is 59.43°N -in.weather_file_latitude 59.65 Weather station latitude from weather file used for the building energy simulation is 59.65°N -in.weather_file_latitude 59.75 Weather station latitude from weather file used for the building energy simulation is 59.75°N -in.weather_file_latitude 60.13 Weather station latitude from weather file used for the building energy simulation is 60.13°N -in.weather_file_longitude -166.54 Weather station longitude from weather file used for the building energy simulation is -166.54° -in.weather_file_longitude -162.72 Weather station longitude from weather file used for the building energy simulation is -162.72° -in.weather_file_longitude -162.06 Weather station longitude from weather file used for the building energy simulation is -162.06° -in.weather_file_longitude -158.55 Weather station longitude from weather file used for the building energy simulation is -158.55° -in.weather_file_longitude -156.65 Weather station longitude from weather file used for the building energy simulation is -156.65° -in.weather_file_longitude -156.433056 Weather station longitude from weather file used for the building energy simulation is -156.433056° -in.weather_file_longitude -154.92 Weather station longitude from weather file used for the building energy simulation is -154.92° -in.weather_file_longitude -152.49 Weather station longitude from weather file used for the building energy simulation is -152.49° -in.weather_file_longitude -151.48 Weather station longitude from weather file used for the building energy simulation is -151.48° -in.weather_file_longitude -149.42 Weather station longitude from weather file used for the building energy simulation is -149.42° -in.weather_file_longitude -146.33 Weather station longitude from weather file used for the building energy simulation is -146.33° -in.weather_file_longitude -135.71 Weather station longitude from weather file used for the building energy simulation is -135.71° -in.weather_file_longitude -135.52 Weather station longitude from weather file used for the building energy simulation is -135.52° -in.weather_file_longitude -135.36 Weather station longitude from weather file used for the building energy simulation is -135.36° -in.weather_file_longitude -134.58 Weather station longitude from weather file used for the building energy simulation is -134.58° -in.weather_file_longitude -132.37 Weather station longitude from weather file used for the building energy simulation is -132.37° -in.weather_file_longitude -131.71 Weather station longitude from weather file used for the building energy simulation is -131.71° -in.weather_file_longitude -124.25 Weather station longitude from weather file used for the building energy simulation is -124.25° -in.weather_file_longitude -124.24 Weather station longitude from weather file used for the building energy simulation is -124.24° -in.weather_file_longitude -124.11 Weather station longitude from weather file used for the building energy simulation is -124.11° -in.weather_file_longitude -124.07 Weather station longitude from weather file used for the building energy simulation is -124.07° -in.weather_file_longitude -123.94 Weather station longitude from weather file used for the building energy simulation is -123.94° -in.weather_file_longitude -123.88 Weather station longitude from weather file used for the building energy simulation is -123.88° -in.weather_file_longitude -123.5 Weather station longitude from weather file used for the building energy simulation is -123.5° -in.weather_file_longitude -123.38 Weather station longitude from weather file used for the building energy simulation is -123.38° -in.weather_file_longitude -123.36 Weather station longitude from weather file used for the building energy simulation is -123.36° -in.weather_file_longitude -123.29 Weather station longitude from weather file used for the building energy simulation is -123.29° -in.weather_file_longitude -123.21 Weather station longitude from weather file used for the building energy simulation is -123.21° -in.weather_file_longitude -123.2 Weather station longitude from weather file used for the building energy simulation is -123.2° -in.weather_file_longitude -123.15 Weather station longitude from weather file used for the building energy simulation is -123.15° -in.weather_file_longitude -123.13 Weather station longitude from weather file used for the building energy simulation is -123.13° -in.weather_file_longitude -123.02 Weather station longitude from weather file used for the building energy simulation is -123.02° -in.weather_file_longitude -123 Weather station longitude from weather file used for the building energy simulation is -123° -in.weather_file_longitude -122.95 Weather station longitude from weather file used for the building energy simulation is -122.95° -in.weather_file_longitude -122.9 Weather station longitude from weather file used for the building energy simulation is -122.9° -in.weather_file_longitude -122.87 Weather station longitude from weather file used for the building energy simulation is -122.87° -in.weather_file_longitude -122.86 Weather station longitude from weather file used for the building energy simulation is -122.86° -in.weather_file_longitude -122.81 Weather station longitude from weather file used for the building energy simulation is -122.81° -in.weather_file_longitude -122.77 Weather station longitude from weather file used for the building energy simulation is -122.77° -in.weather_file_longitude -122.76 Weather station longitude from weather file used for the building energy simulation is -122.76° -in.weather_file_longitude -122.66 Weather station longitude from weather file used for the building energy simulation is -122.66° -in.weather_file_longitude -122.6 Weather station longitude from weather file used for the building energy simulation is -122.6° -in.weather_file_longitude -122.55 Weather station longitude from weather file used for the building energy simulation is -122.55° -in.weather_file_longitude -122.54 Weather station longitude from weather file used for the building energy simulation is -122.54° -in.weather_file_longitude -122.47 Weather station longitude from weather file used for the building energy simulation is -122.47° -in.weather_file_longitude -122.43 Weather station longitude from weather file used for the building energy simulation is -122.43° -in.weather_file_longitude -122.4 Weather station longitude from weather file used for the building energy simulation is -122.4° -in.weather_file_longitude -122.31 Weather station longitude from weather file used for the building energy simulation is -122.31° -in.weather_file_longitude -122.28 Weather station longitude from weather file used for the building energy simulation is -122.28° -in.weather_file_longitude -122.25 Weather station longitude from weather file used for the building energy simulation is -122.25° -in.weather_file_longitude -122.21 Weather station longitude from weather file used for the building energy simulation is -122.21° -in.weather_file_longitude -122.15 Weather station longitude from weather file used for the building energy simulation is -122.15° -in.weather_file_longitude -122.12 Weather station longitude from weather file used for the building energy simulation is -122.12° -in.weather_file_longitude -122.05 Weather station longitude from weather file used for the building energy simulation is -122.05° -in.weather_file_longitude -121.95 Weather station longitude from weather file used for the building energy simulation is -121.95° -in.weather_file_longitude -121.93 Weather station longitude from weather file used for the building energy simulation is -121.93° -in.weather_file_longitude -121.79 Weather station longitude from weather file used for the building energy simulation is -121.79° -in.weather_file_longitude -121.72 Weather station longitude from weather file used for the building energy simulation is -121.72° -in.weather_file_longitude -121.62 Weather station longitude from weather file used for the building energy simulation is -121.62° -in.weather_file_longitude -121.61 Weather station longitude from weather file used for the building energy simulation is -121.61° -in.weather_file_longitude -121.59 Weather station longitude from weather file used for the building energy simulation is -121.59° -in.weather_file_longitude -121.57 Weather station longitude from weather file used for the building energy simulation is -121.57° -in.weather_file_longitude -121.44 Weather station longitude from weather file used for the building energy simulation is -121.44° -in.weather_file_longitude -121.4 Weather station longitude from weather file used for the building energy simulation is -121.4° -in.weather_file_longitude -121.24 Weather station longitude from weather file used for the building energy simulation is -121.24° -in.weather_file_longitude -121.17 Weather station longitude from weather file used for the building energy simulation is -121.17° -in.weather_file_longitude -121.15 Weather station longitude from weather file used for the building energy simulation is -121.15° -in.weather_file_longitude -120.95 Weather station longitude from weather file used for the building energy simulation is -120.95° -in.weather_file_longitude -120.71 Weather station longitude from weather file used for the building energy simulation is -120.71° -in.weather_file_longitude -120.64 Weather station longitude from weather file used for the building energy simulation is -120.64° -in.weather_file_longitude -120.57 Weather station longitude from weather file used for the building energy simulation is -120.57° -in.weather_file_longitude -120.53 Weather station longitude from weather file used for the building energy simulation is -120.53° -in.weather_file_longitude -120.51 Weather station longitude from weather file used for the building energy simulation is -120.51° -in.weather_file_longitude -120.4 Weather station longitude from weather file used for the building energy simulation is -120.4° -in.weather_file_longitude -120.21 Weather station longitude from weather file used for the building energy simulation is -120.21° -in.weather_file_longitude -120.13 Weather station longitude from weather file used for the building energy simulation is -120.13° -in.weather_file_longitude -120.11 Weather station longitude from weather file used for the building energy simulation is -120.11° -in.weather_file_longitude -120 Weather station longitude from weather file used for the building energy simulation is -120° -in.weather_file_longitude -119.84 Weather station longitude from weather file used for the building energy simulation is -119.84° -in.weather_file_longitude -119.77 Weather station longitude from weather file used for the building energy simulation is -119.77° -in.weather_file_longitude -119.72 Weather station longitude from weather file used for the building energy simulation is -119.72° -in.weather_file_longitude -119.63 Weather station longitude from weather file used for the building energy simulation is -119.63° -in.weather_file_longitude -119.6 Weather station longitude from weather file used for the building energy simulation is -119.6° -in.weather_file_longitude -119.52 Weather station longitude from weather file used for the building energy simulation is -119.52° -in.weather_file_longitude -119.38 Weather station longitude from weather file used for the building energy simulation is -119.38° -in.weather_file_longitude -119.32 Weather station longitude from weather file used for the building energy simulation is -119.32° -in.weather_file_longitude -119.26 Weather station longitude from weather file used for the building energy simulation is -119.26° -in.weather_file_longitude -119.12 Weather station longitude from weather file used for the building energy simulation is -119.12° -in.weather_file_longitude -119.1 Weather station longitude from weather file used for the building energy simulation is -119.1° -in.weather_file_longitude -119.06 Weather station longitude from weather file used for the building energy simulation is -119.06° -in.weather_file_longitude -118.95 Weather station longitude from weather file used for the building energy simulation is -118.95° -in.weather_file_longitude -118.83 Weather station longitude from weather file used for the building energy simulation is -118.83° -in.weather_file_longitude -118.7 Weather station longitude from weather file used for the building energy simulation is -118.7° -in.weather_file_longitude -118.57 Weather station longitude from weather file used for the building energy simulation is -118.57° -in.weather_file_longitude -118.36 Weather station longitude from weather file used for the building energy simulation is -118.36° -in.weather_file_longitude -118.3 Weather station longitude from weather file used for the building energy simulation is -118.3° -in.weather_file_longitude -118.29 Weather station longitude from weather file used for the building energy simulation is -118.29° -in.weather_file_longitude -118.01 Weather station longitude from weather file used for the building energy simulation is -118.01° -in.weather_file_longitude -117.81 Weather station longitude from weather file used for the building energy simulation is -117.81° -in.weather_file_longitude -117.73 Weather station longitude from weather file used for the building energy simulation is -117.73° -in.weather_file_longitude -117.65 Weather station longitude from weather file used for the building energy simulation is -117.65° -in.weather_file_longitude -117.57 Weather station longitude from weather file used for the building energy simulation is -117.57° -in.weather_file_longitude -117.42 Weather station longitude from weather file used for the building energy simulation is -117.42° -in.weather_file_longitude -117.32 Weather station longitude from weather file used for the building energy simulation is -117.32° -in.weather_file_longitude -117.25 Weather station longitude from weather file used for the building energy simulation is -117.25° -in.weather_file_longitude -117.15 Weather station longitude from weather file used for the building energy simulation is -117.15° -in.weather_file_longitude -117.11 Weather station longitude from weather file used for the building energy simulation is -117.11° -in.weather_file_longitude -117.09 Weather station longitude from weather file used for the building energy simulation is -117.09° -in.weather_file_longitude -117.01 Weather station longitude from weather file used for the building energy simulation is -117.01° -in.weather_file_longitude -116.82 Weather station longitude from weather file used for the building energy simulation is -116.82° -in.weather_file_longitude -116.63 Weather station longitude from weather file used for the building energy simulation is -116.63° -in.weather_file_longitude -116.22 Weather station longitude from weather file used for the building energy simulation is -116.22° -in.weather_file_longitude -116.1 Weather station longitude from weather file used for the building energy simulation is -116.1° -in.weather_file_longitude -116.03 Weather station longitude from weather file used for the building energy simulation is -116.03° -in.weather_file_longitude -116.01 Weather station longitude from weather file used for the building energy simulation is -116.01° -in.weather_file_longitude -115.87 Weather station longitude from weather file used for the building energy simulation is -115.87° -in.weather_file_longitude -115.8 Weather station longitude from weather file used for the building energy simulation is -115.8° -in.weather_file_longitude -115.79 Weather station longitude from weather file used for the building energy simulation is -115.79° -in.weather_file_longitude -115.6 Weather station longitude from weather file used for the building energy simulation is -115.6° -in.weather_file_longitude -115.58 Weather station longitude from weather file used for the building energy simulation is -115.58° -in.weather_file_longitude -115.16 Weather station longitude from weather file used for the building energy simulation is -115.16° -in.weather_file_longitude -114.93 Weather station longitude from weather file used for the building energy simulation is -114.93° -in.weather_file_longitude -114.85 Weather station longitude from weather file used for the building energy simulation is -114.85° -in.weather_file_longitude -114.72 Weather station longitude from weather file used for the building energy simulation is -114.72° -in.weather_file_longitude -114.6 Weather station longitude from weather file used for the building energy simulation is -114.6° -in.weather_file_longitude -114.49 Weather station longitude from weather file used for the building energy simulation is -114.49° -in.weather_file_longitude -114.46 Weather station longitude from weather file used for the building energy simulation is -114.46° -in.weather_file_longitude -114.26 Weather station longitude from weather file used for the building energy simulation is -114.26° -in.weather_file_longitude -114.22 Weather station longitude from weather file used for the building energy simulation is -114.22° -in.weather_file_longitude -114.09 Weather station longitude from weather file used for the building energy simulation is -114.09° -in.weather_file_longitude -114.02 Weather station longitude from weather file used for the building energy simulation is -114.02° -in.weather_file_longitude -113.94 Weather station longitude from weather file used for the building energy simulation is -113.94° -in.weather_file_longitude -113.87 Weather station longitude from weather file used for the building energy simulation is -113.87° -in.weather_file_longitude -113.77 Weather station longitude from weather file used for the building energy simulation is -113.77° -in.weather_file_longitude -113.58 Weather station longitude from weather file used for the building energy simulation is -113.58° -in.weather_file_longitude -113.1 Weather station longitude from weather file used for the building energy simulation is -113.1° -in.weather_file_longitude -112.57 Weather station longitude from weather file used for the building energy simulation is -112.57° -in.weather_file_longitude -112.55 Weather station longitude from weather file used for the building energy simulation is -112.55° -in.weather_file_longitude -112.51 Weather station longitude from weather file used for the building energy simulation is -112.51° -in.weather_file_longitude -112.42 Weather station longitude from weather file used for the building energy simulation is -112.42° -in.weather_file_longitude -112.38 Weather station longitude from weather file used for the building energy simulation is -112.38° -in.weather_file_longitude -112.07 Weather station longitude from weather file used for the building energy simulation is -112.07° -in.weather_file_longitude -112.01 Weather station longitude from weather file used for the building energy simulation is -112.01° -in.weather_file_longitude -111.99 Weather station longitude from weather file used for the building energy simulation is -111.99° -in.weather_file_longitude -111.97 Weather station longitude from weather file used for the building energy simulation is -111.97° -in.weather_file_longitude -111.96 Weather station longitude from weather file used for the building energy simulation is -111.96° -in.weather_file_longitude -111.88 Weather station longitude from weather file used for the building energy simulation is -111.88° -in.weather_file_longitude -111.85 Weather station longitude from weather file used for the building energy simulation is -111.85° -in.weather_file_longitude -111.72 Weather station longitude from weather file used for the building energy simulation is -111.72° -in.weather_file_longitude -111.67 Weather station longitude from weather file used for the building energy simulation is -111.67° -in.weather_file_longitude -111.45 Weather station longitude from weather file used for the building energy simulation is -111.45° -in.weather_file_longitude -111.38 Weather station longitude from weather file used for the building energy simulation is -111.38° -in.weather_file_longitude -111.19 Weather station longitude from weather file used for the building energy simulation is -111.19° -in.weather_file_longitude -111.15 Weather station longitude from weather file used for the building energy simulation is -111.15° -in.weather_file_longitude -110.88 Weather station longitude from weather file used for the building energy simulation is -110.88° -in.weather_file_longitude -110.85 Weather station longitude from weather file used for the building energy simulation is -110.85° -in.weather_file_longitude -110.75 Weather station longitude from weather file used for the building energy simulation is -110.75° -in.weather_file_longitude -110.73 Weather station longitude from weather file used for the building energy simulation is -110.73° -in.weather_file_longitude -110.72 Weather station longitude from weather file used for the building energy simulation is -110.72° -in.weather_file_longitude -110.45 Weather station longitude from weather file used for the building energy simulation is -110.45° -in.weather_file_longitude -110.11 Weather station longitude from weather file used for the building energy simulation is -110.11° -in.weather_file_longitude -109.78 Weather station longitude from weather file used for the building energy simulation is -109.78° -in.weather_file_longitude -109.75 Weather station longitude from weather file used for the building energy simulation is -109.75° -in.weather_file_longitude -109.64 Weather station longitude from weather file used for the building energy simulation is -109.64° -in.weather_file_longitude -109.6 Weather station longitude from weather file used for the building energy simulation is -109.6° -in.weather_file_longitude -109.51 Weather station longitude from weather file used for the building energy simulation is -109.51° -in.weather_file_longitude -109.47 Weather station longitude from weather file used for the building energy simulation is -109.47° -in.weather_file_longitude -109.38 Weather station longitude from weather file used for the building energy simulation is -109.38° -in.weather_file_longitude -109.07 Weather station longitude from weather file used for the building energy simulation is -109.07° -in.weather_file_longitude -109.06 Weather station longitude from weather file used for the building energy simulation is -109.06° -in.weather_file_longitude -108.95 Weather station longitude from weather file used for the building energy simulation is -108.95° -in.weather_file_longitude -108.79 Weather station longitude from weather file used for the building energy simulation is -108.79° -in.weather_file_longitude -108.63 Weather station longitude from weather file used for the building energy simulation is -108.63° -in.weather_file_longitude -108.54 Weather station longitude from weather file used for the building energy simulation is -108.54° -in.weather_file_longitude -108.46 Weather station longitude from weather file used for the building energy simulation is -108.46° -in.weather_file_longitude -108.23 Weather station longitude from weather file used for the building energy simulation is -108.23° -in.weather_file_longitude -108.08 Weather station longitude from weather file used for the building energy simulation is -108.08° -in.weather_file_longitude -107.95 Weather station longitude from weather file used for the building energy simulation is -107.95° -in.weather_file_longitude -107.9 Weather station longitude from weather file used for the building energy simulation is -107.9° -in.weather_file_longitude -107.89 Weather station longitude from weather file used for the building energy simulation is -107.89° -in.weather_file_longitude -107.76 Weather station longitude from weather file used for the building energy simulation is -107.76° -in.weather_file_longitude -107.73 Weather station longitude from weather file used for the building energy simulation is -107.73° -in.weather_file_longitude -107.72 Weather station longitude from weather file used for the building energy simulation is -107.72° -in.weather_file_longitude -107.52 Weather station longitude from weather file used for the building energy simulation is -107.52° -in.weather_file_longitude -107.22 Weather station longitude from weather file used for the building energy simulation is -107.22° -in.weather_file_longitude -107.2 Weather station longitude from weather file used for the building energy simulation is -107.2° -in.weather_file_longitude -107.03 Weather station longitude from weather file used for the building energy simulation is -107.03° -in.weather_file_longitude -106.98 Weather station longitude from weather file used for the building energy simulation is -106.98° -in.weather_file_longitude -106.95 Weather station longitude from weather file used for the building energy simulation is -106.95° -in.weather_file_longitude -106.92 Weather station longitude from weather file used for the building energy simulation is -106.92° -in.weather_file_longitude -106.87 Weather station longitude from weather file used for the building energy simulation is -106.87° -in.weather_file_longitude -106.72 Weather station longitude from weather file used for the building energy simulation is -106.72° -in.weather_file_longitude -106.62 Weather station longitude from weather file used for the building energy simulation is -106.62° -in.weather_file_longitude -106.48 Weather station longitude from weather file used for the building energy simulation is -106.48° -in.weather_file_longitude -106.47 Weather station longitude from weather file used for the building energy simulation is -106.47° -in.weather_file_longitude -106.38 Weather station longitude from weather file used for the building energy simulation is -106.38° -in.weather_file_longitude -106.32 Weather station longitude from weather file used for the building energy simulation is -106.32° -in.weather_file_longitude -106.09 Weather station longitude from weather file used for the building energy simulation is -106.09° -in.weather_file_longitude -105.98 Weather station longitude from weather file used for the building energy simulation is -105.98° -in.weather_file_longitude -105.89 Weather station longitude from weather file used for the building energy simulation is -105.89° -in.weather_file_longitude -105.87 Weather station longitude from weather file used for the building energy simulation is -105.87° -in.weather_file_longitude -105.67 Weather station longitude from weather file used for the building energy simulation is -105.67° -in.weather_file_longitude -105.66 Weather station longitude from weather file used for the building energy simulation is -105.66° -in.weather_file_longitude -105.57 Weather station longitude from weather file used for the building energy simulation is -105.57° -in.weather_file_longitude -105.54 Weather station longitude from weather file used for the building energy simulation is -105.54° -in.weather_file_longitude -105.53 Weather station longitude from weather file used for the building energy simulation is -105.53° -in.weather_file_longitude -105.39 Weather station longitude from weather file used for the building energy simulation is -105.39° -in.weather_file_longitude -105.14 Weather station longitude from weather file used for the building energy simulation is -105.14° -in.weather_file_longitude -104.85 Weather station longitude from weather file used for the building energy simulation is -104.85° -in.weather_file_longitude -104.81 Weather station longitude from weather file used for the building energy simulation is -104.81° -in.weather_file_longitude -104.8 Weather station longitude from weather file used for the building energy simulation is -104.8° -in.weather_file_longitude -104.75 Weather station longitude from weather file used for the building energy simulation is -104.75° -in.weather_file_longitude -104.71 Weather station longitude from weather file used for the building energy simulation is -104.71° -in.weather_file_longitude -104.66 Weather station longitude from weather file used for the building energy simulation is -104.66° -in.weather_file_longitude -104.62 Weather station longitude from weather file used for the building energy simulation is -104.62° -in.weather_file_longitude -104.54 Weather station longitude from weather file used for the building energy simulation is -104.54° -in.weather_file_longitude -104.5 Weather station longitude from weather file used for the building energy simulation is -104.5° -in.weather_file_longitude -104.34 Weather station longitude from weather file used for the building energy simulation is -104.34° -in.weather_file_longitude -104.26 Weather station longitude from weather file used for the building energy simulation is -104.26° -in.weather_file_longitude -104.25 Weather station longitude from weather file used for the building energy simulation is -104.25° -in.weather_file_longitude -104.18 Weather station longitude from weather file used for the building energy simulation is -104.18° -in.weather_file_longitude -104.15 Weather station longitude from weather file used for the building energy simulation is -104.15° -in.weather_file_longitude -104.02 Weather station longitude from weather file used for the building energy simulation is -104.02° -in.weather_file_longitude -103.72 Weather station longitude from weather file used for the building energy simulation is -103.72° -in.weather_file_longitude -103.64 Weather station longitude from weather file used for the building energy simulation is -103.64° -in.weather_file_longitude -103.63 Weather station longitude from weather file used for the building energy simulation is -103.63° -in.weather_file_longitude -103.6 Weather station longitude from weather file used for the building energy simulation is -103.6° -in.weather_file_longitude -103.55 Weather station longitude from weather file used for the building energy simulation is -103.55° -in.weather_file_longitude -103.53 Weather station longitude from weather file used for the building energy simulation is -103.53° -in.weather_file_longitude -103.32 Weather station longitude from weather file used for the building energy simulation is -103.32° -in.weather_file_longitude -103.23 Weather station longitude from weather file used for the building energy simulation is -103.23° -in.weather_file_longitude -103.2 Weather station longitude from weather file used for the building energy simulation is -103.2° -in.weather_file_longitude -103.15 Weather station longitude from weather file used for the building energy simulation is -103.15° -in.weather_file_longitude -103.1 Weather station longitude from weather file used for the building energy simulation is -103.1° -in.weather_file_longitude -103.07 Weather station longitude from weather file used for the building energy simulation is -103.07° -in.weather_file_longitude -103.05 Weather station longitude from weather file used for the building energy simulation is -103.05° -in.weather_file_longitude -102.99 Weather station longitude from weather file used for the building energy simulation is -102.99° -in.weather_file_longitude -102.92 Weather station longitude from weather file used for the building energy simulation is -102.92° -in.weather_file_longitude -102.8 Weather station longitude from weather file used for the building energy simulation is -102.8° -in.weather_file_longitude -102.69 Weather station longitude from weather file used for the building energy simulation is -102.69° -in.weather_file_longitude -102.66 Weather station longitude from weather file used for the building energy simulation is -102.66° -in.weather_file_longitude -102.61 Weather station longitude from weather file used for the building energy simulation is -102.61° -in.weather_file_longitude -102.55 Weather station longitude from weather file used for the building energy simulation is -102.55° -in.weather_file_longitude -102.52 Weather station longitude from weather file used for the building energy simulation is -102.52° -in.weather_file_longitude -102.39 Weather station longitude from weather file used for the building energy simulation is -102.39° -in.weather_file_longitude -102.28 Weather station longitude from weather file used for the building energy simulation is -102.28° -in.weather_file_longitude -102.21 Weather station longitude from weather file used for the building energy simulation is -102.21° -in.weather_file_longitude -101.87 Weather station longitude from weather file used for the building energy simulation is -101.87° -in.weather_file_longitude -101.82 Weather station longitude from weather file used for the building energy simulation is -101.82° -in.weather_file_longitude -101.77 Weather station longitude from weather file used for the building energy simulation is -101.77° -in.weather_file_longitude -101.71 Weather station longitude from weather file used for the building energy simulation is -101.71° -in.weather_file_longitude -101.69 Weather station longitude from weather file used for the building energy simulation is -101.69° -in.weather_file_longitude -101.6 Weather station longitude from weather file used for the building energy simulation is -101.6° -in.weather_file_longitude -101.44 Weather station longitude from weather file used for the building energy simulation is -101.44° -in.weather_file_longitude -101.39 Weather station longitude from weather file used for the building energy simulation is -101.39° -in.weather_file_longitude -101.36 Weather station longitude from weather file used for the building energy simulation is -101.36° -in.weather_file_longitude -101.28 Weather station longitude from weather file used for the building energy simulation is -101.28° -in.weather_file_longitude -100.96 Weather station longitude from weather file used for the building energy simulation is -100.96° -in.weather_file_longitude -100.92 Weather station longitude from weather file used for the building energy simulation is -100.92° -in.weather_file_longitude -100.78 Weather station longitude from weather file used for the building energy simulation is -100.78° -in.weather_file_longitude -100.75 Weather station longitude from weather file used for the building energy simulation is -100.75° -in.weather_file_longitude -100.73 Weather station longitude from weather file used for the building energy simulation is -100.73° -in.weather_file_longitude -100.67 Weather station longitude from weather file used for the building energy simulation is -100.67° -in.weather_file_longitude -100.59 Weather station longitude from weather file used for the building energy simulation is -100.59° -in.weather_file_longitude -100.55 Weather station longitude from weather file used for the building energy simulation is -100.55° -in.weather_file_longitude -100.49 Weather station longitude from weather file used for the building energy simulation is -100.49° -in.weather_file_longitude -100.41 Weather station longitude from weather file used for the building energy simulation is -100.41° -in.weather_file_longitude -100.29 Weather station longitude from weather file used for the building energy simulation is -100.29° -in.weather_file_longitude -99.98 Weather station longitude from weather file used for the building energy simulation is -99.98° -in.weather_file_longitude -99.97 Weather station longitude from weather file used for the building energy simulation is -99.97° -in.weather_file_longitude -99.85 Weather station longitude from weather file used for the building energy simulation is -99.85° -in.weather_file_longitude -99.84 Weather station longitude from weather file used for the building energy simulation is -99.84° -in.weather_file_longitude -99.83 Weather station longitude from weather file used for the building energy simulation is -99.83° -in.weather_file_longitude -99.78 Weather station longitude from weather file used for the building energy simulation is -99.78° -in.weather_file_longitude -99.77 Weather station longitude from weather file used for the building energy simulation is -99.77° -in.weather_file_longitude -99.68 Weather station longitude from weather file used for the building energy simulation is -99.68° -in.weather_file_longitude -99.64 Weather station longitude from weather file used for the building energy simulation is -99.64° -in.weather_file_longitude -99.47 Weather station longitude from weather file used for the building energy simulation is -99.47° -in.weather_file_longitude -99.33 Weather station longitude from weather file used for the building energy simulation is -99.33° -in.weather_file_longitude -99.32 Weather station longitude from weather file used for the building energy simulation is -99.32° -in.weather_file_longitude -99.28 Weather station longitude from weather file used for the building energy simulation is -99.28° -in.weather_file_longitude -99.27 Weather station longitude from weather file used for the building energy simulation is -99.27° -in.weather_file_longitude -99.22 Weather station longitude from weather file used for the building energy simulation is -99.22° -in.weather_file_longitude -99.2 Weather station longitude from weather file used for the building energy simulation is -99.2° -in.weather_file_longitude -99.17 Weather station longitude from weather file used for the building energy simulation is -99.17° -in.weather_file_longitude -99.05 Weather station longitude from weather file used for the building energy simulation is -99.05° -in.weather_file_longitude -99 Weather station longitude from weather file used for the building energy simulation is -99° -in.weather_file_longitude -98.98 Weather station longitude from weather file used for the building energy simulation is -98.98° -in.weather_file_longitude -98.9 Weather station longitude from weather file used for the building energy simulation is -98.9° -in.weather_file_longitude -98.85 Weather station longitude from weather file used for the building energy simulation is -98.85° -in.weather_file_longitude -98.83 Weather station longitude from weather file used for the building energy simulation is -98.83° -in.weather_file_longitude -98.68 Weather station longitude from weather file used for the building energy simulation is -98.68° -in.weather_file_longitude -98.55 Weather station longitude from weather file used for the building energy simulation is -98.55° -in.weather_file_longitude -98.49 Weather station longitude from weather file used for the building energy simulation is -98.49° -in.weather_file_longitude -98.47 Weather station longitude from weather file used for the building energy simulation is -98.47° -in.weather_file_longitude -98.46 Weather station longitude from weather file used for the building energy simulation is -98.46° -in.weather_file_longitude -98.43 Weather station longitude from weather file used for the building energy simulation is -98.43° -in.weather_file_longitude -98.42 Weather station longitude from weather file used for the building energy simulation is -98.42° -in.weather_file_longitude -98.4 Weather station longitude from weather file used for the building energy simulation is -98.4° -in.weather_file_longitude -98.31 Weather station longitude from weather file used for the building energy simulation is -98.31° -in.weather_file_longitude -98.28 Weather station longitude from weather file used for the building energy simulation is -98.28° -in.weather_file_longitude -98.24 Weather station longitude from weather file used for the building energy simulation is -98.24° -in.weather_file_longitude -98.23 Weather station longitude from weather file used for the building energy simulation is -98.23° -in.weather_file_longitude -98.18 Weather station longitude from weather file used for the building energy simulation is -98.18° -in.weather_file_longitude -98.06 Weather station longitude from weather file used for the building energy simulation is -98.06° -in.weather_file_longitude -98.05 Weather station longitude from weather file used for the building energy simulation is -98.05° -in.weather_file_longitude -98.04 Weather station longitude from weather file used for the building energy simulation is -98.04° -in.weather_file_longitude -98.03 Weather station longitude from weather file used for the building energy simulation is -98.03° -in.weather_file_longitude -97.99 Weather station longitude from weather file used for the building energy simulation is -97.99° -in.weather_file_longitude -97.98 Weather station longitude from weather file used for the building energy simulation is -97.98° -in.weather_file_longitude -97.86 Weather station longitude from weather file used for the building energy simulation is -97.86° -in.weather_file_longitude -97.85 Weather station longitude from weather file used for the building energy simulation is -97.85° -in.weather_file_longitude -97.83 Weather station longitude from weather file used for the building energy simulation is -97.83° -in.weather_file_longitude -97.82 Weather station longitude from weather file used for the building energy simulation is -97.82° -in.weather_file_longitude -97.77 Weather station longitude from weather file used for the building energy simulation is -97.77° -in.weather_file_longitude -97.69 Weather station longitude from weather file used for the building energy simulation is -97.69° -in.weather_file_longitude -97.68 Weather station longitude from weather file used for the building energy simulation is -97.68° -in.weather_file_longitude -97.67 Weather station longitude from weather file used for the building energy simulation is -97.67° -in.weather_file_longitude -97.66 Weather station longitude from weather file used for the building energy simulation is -97.66° -in.weather_file_longitude -97.65 Weather station longitude from weather file used for the building energy simulation is -97.65° -in.weather_file_longitude -97.6 Weather station longitude from weather file used for the building energy simulation is -97.6° -in.weather_file_longitude -97.51 Weather station longitude from weather file used for the building energy simulation is -97.51° -in.weather_file_longitude -97.45 Weather station longitude from weather file used for the building energy simulation is -97.45° -in.weather_file_longitude -97.44 Weather station longitude from weather file used for the building energy simulation is -97.44° -in.weather_file_longitude -97.43 Weather station longitude from weather file used for the building energy simulation is -97.43° -in.weather_file_longitude -97.42 Weather station longitude from weather file used for the building energy simulation is -97.42° -in.weather_file_longitude -97.4 Weather station longitude from weather file used for the building energy simulation is -97.4° -in.weather_file_longitude -97.38 Weather station longitude from weather file used for the building energy simulation is -97.38° -in.weather_file_longitude -97.36 Weather station longitude from weather file used for the building energy simulation is -97.36° -in.weather_file_longitude -97.33 Weather station longitude from weather file used for the building energy simulation is -97.33° -in.weather_file_longitude -97.32 Weather station longitude from weather file used for the building energy simulation is -97.32° -in.weather_file_longitude -97.3 Weather station longitude from weather file used for the building energy simulation is -97.3° -in.weather_file_longitude -97.27 Weather station longitude from weather file used for the building energy simulation is -97.27° -in.weather_file_longitude -97.23 Weather station longitude from weather file used for the building energy simulation is -97.23° -in.weather_file_longitude -97.22 Weather station longitude from weather file used for the building energy simulation is -97.22° -in.weather_file_longitude -97.2 Weather station longitude from weather file used for the building energy simulation is -97.2° -in.weather_file_longitude -97.18 Weather station longitude from weather file used for the building energy simulation is -97.18° -in.weather_file_longitude -97.15 Weather station longitude from weather file used for the building energy simulation is -97.15° -in.weather_file_longitude -97.12 Weather station longitude from weather file used for the building energy simulation is -97.12° -in.weather_file_longitude -97.1 Weather station longitude from weather file used for the building energy simulation is -97.1° -in.weather_file_longitude -97.09 Weather station longitude from weather file used for the building energy simulation is -97.09° -in.weather_file_longitude -97.05 Weather station longitude from weather file used for the building energy simulation is -97.05° -in.weather_file_longitude -97.04 Weather station longitude from weather file used for the building energy simulation is -97.04° -in.weather_file_longitude -96.99 Weather station longitude from weather file used for the building energy simulation is -96.99° -in.weather_file_longitude -96.97 Weather station longitude from weather file used for the building energy simulation is -96.97° -in.weather_file_longitude -96.95 Weather station longitude from weather file used for the building energy simulation is -96.95° -in.weather_file_longitude -96.93 Weather station longitude from weather file used for the building energy simulation is -96.93° -in.weather_file_longitude -96.85 Weather station longitude from weather file used for the building energy simulation is -96.85° -in.weather_file_longitude -96.81 Weather station longitude from weather file used for the building energy simulation is -96.81° -in.weather_file_longitude -96.8 Weather station longitude from weather file used for the building energy simulation is -96.8° -in.weather_file_longitude -96.76 Weather station longitude from weather file used for the building energy simulation is -96.76° -in.weather_file_longitude -96.75 Weather station longitude from weather file used for the building energy simulation is -96.75° -in.weather_file_longitude -96.68 Weather station longitude from weather file used for the building energy simulation is -96.68° -in.weather_file_longitude -96.62 Weather station longitude from weather file used for the building energy simulation is -96.62° -in.weather_file_longitude -96.59 Weather station longitude from weather file used for the building energy simulation is -96.59° -in.weather_file_longitude -96.53 Weather station longitude from weather file used for the building energy simulation is -96.53° -in.weather_file_longitude -96.52 Weather station longitude from weather file used for the building energy simulation is -96.52° -in.weather_file_longitude -96.42 Weather station longitude from weather file used for the building energy simulation is -96.42° -in.weather_file_longitude -96.4 Weather station longitude from weather file used for the building energy simulation is -96.4° -in.weather_file_longitude -96.38 Weather station longitude from weather file used for the building energy simulation is -96.38° -in.weather_file_longitude -96.36 Weather station longitude from weather file used for the building energy simulation is -96.36° -in.weather_file_longitude -96.3 Weather station longitude from weather file used for the building energy simulation is -96.3° -in.weather_file_longitude -96.27 Weather station longitude from weather file used for the building energy simulation is -96.27° -in.weather_file_longitude -96.25 Weather station longitude from weather file used for the building energy simulation is -96.25° -in.weather_file_longitude -96.19 Weather station longitude from weather file used for the building energy simulation is -96.19° -in.weather_file_longitude -96.18 Weather station longitude from weather file used for the building energy simulation is -96.18° -in.weather_file_longitude -96.17 Weather station longitude from weather file used for the building energy simulation is -96.17° -in.weather_file_longitude -96.05 Weather station longitude from weather file used for the building energy simulation is -96.05° -in.weather_file_longitude -96.02 Weather station longitude from weather file used for the building energy simulation is -96.02° -in.weather_file_longitude -95.98 Weather station longitude from weather file used for the building energy simulation is -95.98° -in.weather_file_longitude -95.97 Weather station longitude from weather file used for the building energy simulation is -95.97° -in.weather_file_longitude -95.9 Weather station longitude from weather file used for the building energy simulation is -95.9° -in.weather_file_longitude -95.89 Weather station longitude from weather file used for the building energy simulation is -95.89° -in.weather_file_longitude -95.88 Weather station longitude from weather file used for the building energy simulation is -95.88° -in.weather_file_longitude -95.83 Weather station longitude from weather file used for the building energy simulation is -95.83° -in.weather_file_longitude -95.82 Weather station longitude from weather file used for the building energy simulation is -95.82° -in.weather_file_longitude -95.78 Weather station longitude from weather file used for the building energy simulation is -95.78° -in.weather_file_longitude -95.75 Weather station longitude from weather file used for the building energy simulation is -95.75° -in.weather_file_longitude -95.7 Weather station longitude from weather file used for the building energy simulation is -95.7° -in.weather_file_longitude -95.68 Weather station longitude from weather file used for the building energy simulation is -95.68° -in.weather_file_longitude -95.66 Weather station longitude from weather file used for the building energy simulation is -95.66° -in.weather_file_longitude -95.63 Weather station longitude from weather file used for the building energy simulation is -95.63° -in.weather_file_longitude -95.59 Weather station longitude from weather file used for the building energy simulation is -95.59° -in.weather_file_longitude -95.57 Weather station longitude from weather file used for the building energy simulation is -95.57° -in.weather_file_longitude -95.55 Weather station longitude from weather file used for the building energy simulation is -95.55° -in.weather_file_longitude -95.5 Weather station longitude from weather file used for the building energy simulation is -95.5° -in.weather_file_longitude -95.48 Weather station longitude from weather file used for the building energy simulation is -95.48° -in.weather_file_longitude -95.46 Weather station longitude from weather file used for the building energy simulation is -95.46° -in.weather_file_longitude -95.45 Weather station longitude from weather file used for the building energy simulation is -95.45° -in.weather_file_longitude -95.41 Weather station longitude from weather file used for the building energy simulation is -95.41° -in.weather_file_longitude -95.4 Weather station longitude from weather file used for the building energy simulation is -95.4° -in.weather_file_longitude -95.39 Weather station longitude from weather file used for the building energy simulation is -95.39° -in.weather_file_longitude -95.37 Weather station longitude from weather file used for the building energy simulation is -95.37° -in.weather_file_longitude -95.36 Weather station longitude from weather file used for the building energy simulation is -95.36° -in.weather_file_longitude -95.32 Weather station longitude from weather file used for the building energy simulation is -95.32° -in.weather_file_longitude -95.25 Weather station longitude from weather file used for the building energy simulation is -95.25° -in.weather_file_longitude -95.23 Weather station longitude from weather file used for the building energy simulation is -95.23° -in.weather_file_longitude -95.21 Weather station longitude from weather file used for the building energy simulation is -95.21° -in.weather_file_longitude -95.2 Weather station longitude from weather file used for the building energy simulation is -95.2° -in.weather_file_longitude -95.16 Weather station longitude from weather file used for the building energy simulation is -95.16° -in.weather_file_longitude -95.1 Weather station longitude from weather file used for the building energy simulation is -95.1° -in.weather_file_longitude -95.08 Weather station longitude from weather file used for the building energy simulation is -95.08° -in.weather_file_longitude -95.07 Weather station longitude from weather file used for the building energy simulation is -95.07° -in.weather_file_longitude -95.03 Weather station longitude from weather file used for the building energy simulation is -95.03° -in.weather_file_longitude -95.02 Weather station longitude from weather file used for the building energy simulation is -95.02° -in.weather_file_longitude -94.98 Weather station longitude from weather file used for the building energy simulation is -94.98° -in.weather_file_longitude -94.93 Weather station longitude from weather file used for the building energy simulation is -94.93° -in.weather_file_longitude -94.92 Weather station longitude from weather file used for the building energy simulation is -94.92° -in.weather_file_longitude -94.91 Weather station longitude from weather file used for the building energy simulation is -94.91° -in.weather_file_longitude -94.89 Weather station longitude from weather file used for the building energy simulation is -94.89° -in.weather_file_longitude -94.86 Weather station longitude from weather file used for the building energy simulation is -94.86° -in.weather_file_longitude -94.81 Weather station longitude from weather file used for the building energy simulation is -94.81° -in.weather_file_longitude -94.78 Weather station longitude from weather file used for the building energy simulation is -94.78° -in.weather_file_longitude -94.75 Weather station longitude from weather file used for the building energy simulation is -94.75° -in.weather_file_longitude -94.74 Weather station longitude from weather file used for the building energy simulation is -94.74° -in.weather_file_longitude -94.72 Weather station longitude from weather file used for the building energy simulation is -94.72° -in.weather_file_longitude -94.71 Weather station longitude from weather file used for the building energy simulation is -94.71° -in.weather_file_longitude -94.7 Weather station longitude from weather file used for the building energy simulation is -94.7° -in.weather_file_longitude -94.61 Weather station longitude from weather file used for the building energy simulation is -94.61° -in.weather_file_longitude -94.59 Weather station longitude from weather file used for the building energy simulation is -94.59° -in.weather_file_longitude -94.5 Weather station longitude from weather file used for the building energy simulation is -94.5° -in.weather_file_longitude -94.42 Weather station longitude from weather file used for the building energy simulation is -94.42° -in.weather_file_longitude -94.4 Weather station longitude from weather file used for the building energy simulation is -94.4° -in.weather_file_longitude -94.38 Weather station longitude from weather file used for the building energy simulation is -94.38° -in.weather_file_longitude -94.37 Weather station longitude from weather file used for the building energy simulation is -94.37° -in.weather_file_longitude -94.35 Weather station longitude from weather file used for the building energy simulation is -94.35° -in.weather_file_longitude -94.3 Weather station longitude from weather file used for the building energy simulation is -94.3° -in.weather_file_longitude -94.27 Weather station longitude from weather file used for the building energy simulation is -94.27° -in.weather_file_longitude -94.22 Weather station longitude from weather file used for the building energy simulation is -94.22° -in.weather_file_longitude -94.17 Weather station longitude from weather file used for the building energy simulation is -94.17° -in.weather_file_longitude -94.13 Weather station longitude from weather file used for the building energy simulation is -94.13° -in.weather_file_longitude -94.1 Weather station longitude from weather file used for the building energy simulation is -94.1° -in.weather_file_longitude -94.05 Weather station longitude from weather file used for the building energy simulation is -94.05° -in.weather_file_longitude -94.02 Weather station longitude from weather file used for the building energy simulation is -94.02° -in.weather_file_longitude -94.01 Weather station longitude from weather file used for the building energy simulation is -94.01° -in.weather_file_longitude -93.92 Weather station longitude from weather file used for the building energy simulation is -93.92° -in.weather_file_longitude -93.9 Weather station longitude from weather file used for the building energy simulation is -93.9° -in.weather_file_longitude -93.87 Weather station longitude from weather file used for the building energy simulation is -93.87° -in.weather_file_longitude -93.84 Weather station longitude from weather file used for the building energy simulation is -93.84° -in.weather_file_longitude -93.82 Weather station longitude from weather file used for the building energy simulation is -93.82° -in.weather_file_longitude -93.75 Weather station longitude from weather file used for the building energy simulation is -93.75° -in.weather_file_longitude -93.67 Weather station longitude from weather file used for the building energy simulation is -93.67° -in.weather_file_longitude -93.66 Weather station longitude from weather file used for the building energy simulation is -93.66° -in.weather_file_longitude -93.62 Weather station longitude from weather file used for the building energy simulation is -93.62° -in.weather_file_longitude -93.61 Weather station longitude from weather file used for the building energy simulation is -93.61° -in.weather_file_longitude -93.58 Weather station longitude from weather file used for the building energy simulation is -93.58° -in.weather_file_longitude -93.55 Weather station longitude from weather file used for the building energy simulation is -93.55° -in.weather_file_longitude -93.48 Weather station longitude from weather file used for the building energy simulation is -93.48° -in.weather_file_longitude -93.47 Weather station longitude from weather file used for the building energy simulation is -93.47° -in.weather_file_longitude -93.4 Weather station longitude from weather file used for the building energy simulation is -93.4° -in.weather_file_longitude -93.39 Weather station longitude from weather file used for the building energy simulation is -93.39° -in.weather_file_longitude -93.37 Weather station longitude from weather file used for the building energy simulation is -93.37° -in.weather_file_longitude -93.35 Weather station longitude from weather file used for the building energy simulation is -93.35° -in.weather_file_longitude -93.33 Weather station longitude from weather file used for the building energy simulation is -93.33° -in.weather_file_longitude -93.27 Weather station longitude from weather file used for the building energy simulation is -93.27° -in.weather_file_longitude -93.25 Weather station longitude from weather file used for the building energy simulation is -93.25° -in.weather_file_longitude -93.23 Weather station longitude from weather file used for the building energy simulation is -93.23° -in.weather_file_longitude -93.2 Weather station longitude from weather file used for the building energy simulation is -93.2° -in.weather_file_longitude -93.19 Weather station longitude from weather file used for the building energy simulation is -93.19° -in.weather_file_longitude -93.18 Weather station longitude from weather file used for the building energy simulation is -93.18° -in.weather_file_longitude -93.16 Weather station longitude from weather file used for the building energy simulation is -93.16° -in.weather_file_longitude -93.1 Weather station longitude from weather file used for the building energy simulation is -93.1° -in.weather_file_longitude -93.05 Weather station longitude from weather file used for the building energy simulation is -93.05° -in.weather_file_longitude -93.03 Weather station longitude from weather file used for the building energy simulation is -93.03° -in.weather_file_longitude -93.02 Weather station longitude from weather file used for the building energy simulation is -93.02° -in.weather_file_longitude -92.95 Weather station longitude from weather file used for the building energy simulation is -92.95° -in.weather_file_longitude -92.93 Weather station longitude from weather file used for the building energy simulation is -92.93° -in.weather_file_longitude -92.92 Weather station longitude from weather file used for the building energy simulation is -92.92° -in.weather_file_longitude -92.81 Weather station longitude from weather file used for the building energy simulation is -92.81° -in.weather_file_longitude -92.69 Weather station longitude from weather file used for the building energy simulation is -92.69° -in.weather_file_longitude -92.56 Weather station longitude from weather file used for the building energy simulation is -92.56° -in.weather_file_longitude -92.55 Weather station longitude from weather file used for the building energy simulation is -92.55° -in.weather_file_longitude -92.54 Weather station longitude from weather file used for the building energy simulation is -92.54° -in.weather_file_longitude -92.5 Weather station longitude from weather file used for the building energy simulation is -92.5° -in.weather_file_longitude -92.49 Weather station longitude from weather file used for the building energy simulation is -92.49° -in.weather_file_longitude -92.48 Weather station longitude from weather file used for the building energy simulation is -92.48° -in.weather_file_longitude -92.47 Weather station longitude from weather file used for the building energy simulation is -92.47° -in.weather_file_longitude -92.45 Weather station longitude from weather file used for the building energy simulation is -92.45° -in.weather_file_longitude -92.4 Weather station longitude from weather file used for the building energy simulation is -92.4° -in.weather_file_longitude -92.3 Weather station longitude from weather file used for the building energy simulation is -92.3° -in.weather_file_longitude -92.25 Weather station longitude from weather file used for the building energy simulation is -92.25° -in.weather_file_longitude -92.22 Weather station longitude from weather file used for the building energy simulation is -92.22° -in.weather_file_longitude -92.19 Weather station longitude from weather file used for the building energy simulation is -92.19° -in.weather_file_longitude -92.16 Weather station longitude from weather file used for the building energy simulation is -92.16° -in.weather_file_longitude -92.15 Weather station longitude from weather file used for the building energy simulation is -92.15° -in.weather_file_longitude -92.09 Weather station longitude from weather file used for the building energy simulation is -92.09° -in.weather_file_longitude -92.04 Weather station longitude from weather file used for the building energy simulation is -92.04° -in.weather_file_longitude -91.99 Weather station longitude from weather file used for the building energy simulation is -91.99° -in.weather_file_longitude -91.97 Weather station longitude from weather file used for the building energy simulation is -91.97° -in.weather_file_longitude -91.94 Weather station longitude from weather file used for the building energy simulation is -91.94° -in.weather_file_longitude -91.9 Weather station longitude from weather file used for the building energy simulation is -91.9° -in.weather_file_longitude -91.88 Weather station longitude from weather file used for the building energy simulation is -91.88° -in.weather_file_longitude -91.77 Weather station longitude from weather file used for the building energy simulation is -91.77° -in.weather_file_longitude -91.75 Weather station longitude from weather file used for the building energy simulation is -91.75° -in.weather_file_longitude -91.73 Weather station longitude from weather file used for the building energy simulation is -91.73° -in.weather_file_longitude -91.71 Weather station longitude from weather file used for the building energy simulation is -91.71° -in.weather_file_longitude -91.7 Weather station longitude from weather file used for the building energy simulation is -91.7° -in.weather_file_longitude -91.67 Weather station longitude from weather file used for the building energy simulation is -91.67° -in.weather_file_longitude -91.64 Weather station longitude from weather file used for the building energy simulation is -91.64° -in.weather_file_longitude -91.57 Weather station longitude from weather file used for the building energy simulation is -91.57° -in.weather_file_longitude -91.54 Weather station longitude from weather file used for the building energy simulation is -91.54° -in.weather_file_longitude -91.49 Weather station longitude from weather file used for the building energy simulation is -91.49° -in.weather_file_longitude -91.44 Weather station longitude from weather file used for the building energy simulation is -91.44° -in.weather_file_longitude -91.42 Weather station longitude from weather file used for the building energy simulation is -91.42° -in.weather_file_longitude -91.4 Weather station longitude from weather file used for the building energy simulation is -91.4° -in.weather_file_longitude -91.33 Weather station longitude from weather file used for the building energy simulation is -91.33° -in.weather_file_longitude -91.3 Weather station longitude from weather file used for the building energy simulation is -91.3° -in.weather_file_longitude -91.25 Weather station longitude from weather file used for the building energy simulation is -91.25° -in.weather_file_longitude -91.19 Weather station longitude from weather file used for the building energy simulation is -91.19° -in.weather_file_longitude -91.15 Weather station longitude from weather file used for the building energy simulation is -91.15° -in.weather_file_longitude -91.14 Weather station longitude from weather file used for the building energy simulation is -91.14° -in.weather_file_longitude -91.13 Weather station longitude from weather file used for the building energy simulation is -91.13° -in.weather_file_longitude -91.12 Weather station longitude from weather file used for the building energy simulation is -91.12° -in.weather_file_longitude -91.03 Weather station longitude from weather file used for the building energy simulation is -91.03° -in.weather_file_longitude -90.93 Weather station longitude from weather file used for the building energy simulation is -90.93° -in.weather_file_longitude -90.92 Weather station longitude from weather file used for the building energy simulation is -90.92° -in.weather_file_longitude -90.73 Weather station longitude from weather file used for the building energy simulation is -90.73° -in.weather_file_longitude -90.7 Weather station longitude from weather file used for the building energy simulation is -90.7° -in.weather_file_longitude -90.68 Weather station longitude from weather file used for the building energy simulation is -90.68° -in.weather_file_longitude -90.66 Weather station longitude from weather file used for the building energy simulation is -90.66° -in.weather_file_longitude -90.65 Weather station longitude from weather file used for the building energy simulation is -90.65° -in.weather_file_longitude -90.59 Weather station longitude from weather file used for the building energy simulation is -90.59° -in.weather_file_longitude -90.52 Weather station longitude from weather file used for the building energy simulation is -90.52° -in.weather_file_longitude -90.47 Weather station longitude from weather file used for the building energy simulation is -90.47° -in.weather_file_longitude -90.45 Weather station longitude from weather file used for the building energy simulation is -90.45° -in.weather_file_longitude -90.42 Weather station longitude from weather file used for the building energy simulation is -90.42° -in.weather_file_longitude -90.37 Weather station longitude from weather file used for the building energy simulation is -90.37° -in.weather_file_longitude -90.34 Weather station longitude from weather file used for the building energy simulation is -90.34° -in.weather_file_longitude -90.33 Weather station longitude from weather file used for the building energy simulation is -90.33° -in.weather_file_longitude -90.32 Weather station longitude from weather file used for the building energy simulation is -90.32° -in.weather_file_longitude -90.3 Weather station longitude from weather file used for the building energy simulation is -90.3° -in.weather_file_longitude -90.25 Weather station longitude from weather file used for the building energy simulation is -90.25° -in.weather_file_longitude -90.24 Weather station longitude from weather file used for the building energy simulation is -90.24° -in.weather_file_longitude -90.23 Weather station longitude from weather file used for the building energy simulation is -90.23° -in.weather_file_longitude -90.19 Weather station longitude from weather file used for the building energy simulation is -90.19° -in.weather_file_longitude -90.16 Weather station longitude from weather file used for the building energy simulation is -90.16° -in.weather_file_longitude -90.12 Weather station longitude from weather file used for the building energy simulation is -90.12° -in.weather_file_longitude -90.08 Weather station longitude from weather file used for the building energy simulation is -90.08° -in.weather_file_longitude -90.03 Weather station longitude from weather file used for the building energy simulation is -90.03° -in.weather_file_longitude -89.99 Weather station longitude from weather file used for the building energy simulation is -89.99° -in.weather_file_longitude -89.87 Weather station longitude from weather file used for the building energy simulation is -89.87° -in.weather_file_longitude -89.84 Weather station longitude from weather file used for the building energy simulation is -89.84° -in.weather_file_longitude -89.83 Weather station longitude from weather file used for the building energy simulation is -89.83° -in.weather_file_longitude -89.82 Weather station longitude from weather file used for the building energy simulation is -89.82° -in.weather_file_longitude -89.77 Weather station longitude from weather file used for the building energy simulation is -89.77° -in.weather_file_longitude -89.72 Weather station longitude from weather file used for the building energy simulation is -89.72° -in.weather_file_longitude -89.7 Weather station longitude from weather file used for the building energy simulation is -89.7° -in.weather_file_longitude -89.68 Weather station longitude from weather file used for the building energy simulation is -89.68° -in.weather_file_longitude -89.67 Weather station longitude from weather file used for the building energy simulation is -89.67° -in.weather_file_longitude -89.63 Weather station longitude from weather file used for the building energy simulation is -89.63° -in.weather_file_longitude -89.58 Weather station longitude from weather file used for the building energy simulation is -89.58° -in.weather_file_longitude -89.57 Weather station longitude from weather file used for the building energy simulation is -89.57° -in.weather_file_longitude -89.52 Weather station longitude from weather file used for the building energy simulation is -89.52° -in.weather_file_longitude -89.47 Weather station longitude from weather file used for the building energy simulation is -89.47° -in.weather_file_longitude -89.4 Weather station longitude from weather file used for the building energy simulation is -89.4° -in.weather_file_longitude -89.35 Weather station longitude from weather file used for the building energy simulation is -89.35° -in.weather_file_longitude -89.34 Weather station longitude from weather file used for the building energy simulation is -89.34° -in.weather_file_longitude -89.27 Weather station longitude from weather file used for the building energy simulation is -89.27° -in.weather_file_longitude -89.25 Weather station longitude from weather file used for the building energy simulation is -89.25° -in.weather_file_longitude -89.1 Weather station longitude from weather file used for the building energy simulation is -89.1° -in.weather_file_longitude -89.09 Weather station longitude from weather file used for the building energy simulation is -89.09° -in.weather_file_longitude -89.07 Weather station longitude from weather file used for the building energy simulation is -89.07° -in.weather_file_longitude -89.04 Weather station longitude from weather file used for the building energy simulation is -89.04° -in.weather_file_longitude -89 Weather station longitude from weather file used for the building energy simulation is -89° -in.weather_file_longitude -88.95 Weather station longitude from weather file used for the building energy simulation is -88.95° -in.weather_file_longitude -88.92 Weather station longitude from weather file used for the building energy simulation is -88.92° -in.weather_file_longitude -88.87 Weather station longitude from weather file used for the building energy simulation is -88.87° -in.weather_file_longitude -88.86 Weather station longitude from weather file used for the building energy simulation is -88.86° -in.weather_file_longitude -88.77 Weather station longitude from weather file used for the building energy simulation is -88.77° -in.weather_file_longitude -88.75 Weather station longitude from weather file used for the building energy simulation is -88.75° -in.weather_file_longitude -88.73 Weather station longitude from weather file used for the building energy simulation is -88.73° -in.weather_file_longitude -88.72 Weather station longitude from weather file used for the building energy simulation is -88.72° -in.weather_file_longitude -88.7 Weather station longitude from weather file used for the building energy simulation is -88.7° -in.weather_file_longitude -88.68 Weather station longitude from weather file used for the building energy simulation is -88.68° -in.weather_file_longitude -88.57 Weather station longitude from weather file used for the building energy simulation is -88.57° -in.weather_file_longitude -88.56 Weather station longitude from weather file used for the building energy simulation is -88.56° -in.weather_file_longitude -88.53 Weather station longitude from weather file used for the building energy simulation is -88.53° -in.weather_file_longitude -88.52 Weather station longitude from weather file used for the building energy simulation is -88.52° -in.weather_file_longitude -88.51 Weather station longitude from weather file used for the building energy simulation is -88.51° -in.weather_file_longitude -88.49 Weather station longitude from weather file used for the building energy simulation is -88.49° -in.weather_file_longitude -88.48 Weather station longitude from weather file used for the building energy simulation is -88.48° -in.weather_file_longitude -88.44 Weather station longitude from weather file used for the building energy simulation is -88.44° -in.weather_file_longitude -88.28 Weather station longitude from weather file used for the building energy simulation is -88.28° -in.weather_file_longitude -88.25 Weather station longitude from weather file used for the building energy simulation is -88.25° -in.weather_file_longitude -88.23 Weather station longitude from weather file used for the building energy simulation is -88.23° -in.weather_file_longitude -88.17 Weather station longitude from weather file used for the building energy simulation is -88.17° -in.weather_file_longitude -88.12 Weather station longitude from weather file used for the building energy simulation is -88.12° -in.weather_file_longitude -88.11 Weather station longitude from weather file used for the building energy simulation is -88.11° -in.weather_file_longitude -88.08 Weather station longitude from weather file used for the building energy simulation is -88.08° -in.weather_file_longitude -88.07 Weather station longitude from weather file used for the building energy simulation is -88.07° -in.weather_file_longitude -87.94 Weather station longitude from weather file used for the building energy simulation is -87.94° -in.weather_file_longitude -87.9 Weather station longitude from weather file used for the building energy simulation is -87.9° -in.weather_file_longitude -87.88 Weather station longitude from weather file used for the building energy simulation is -87.88° -in.weather_file_longitude -87.87 Weather station longitude from weather file used for the building energy simulation is -87.87° -in.weather_file_longitude -87.85 Weather station longitude from weather file used for the building energy simulation is -87.85° -in.weather_file_longitude -87.81 Weather station longitude from weather file used for the building energy simulation is -87.81° -in.weather_file_longitude -87.75 Weather station longitude from weather file used for the building energy simulation is -87.75° -in.weather_file_longitude -87.68 Weather station longitude from weather file used for the building energy simulation is -87.68° -in.weather_file_longitude -87.67 Weather station longitude from weather file used for the building energy simulation is -87.67° -in.weather_file_longitude -87.64 Weather station longitude from weather file used for the building energy simulation is -87.64° -in.weather_file_longitude -87.62 Weather station longitude from weather file used for the building energy simulation is -87.62° -in.weather_file_longitude -87.61 Weather station longitude from weather file used for the building energy simulation is -87.61° -in.weather_file_longitude -87.54 Weather station longitude from weather file used for the building energy simulation is -87.54° -in.weather_file_longitude -87.5 Weather station longitude from weather file used for the building energy simulation is -87.5° -in.weather_file_longitude -87.42 Weather station longitude from weather file used for the building energy simulation is -87.42° -in.weather_file_longitude -87.38 Weather station longitude from weather file used for the building energy simulation is -87.38° -in.weather_file_longitude -87.3 Weather station longitude from weather file used for the building energy simulation is -87.3° -in.weather_file_longitude -87.25 Weather station longitude from weather file used for the building energy simulation is -87.25° -in.weather_file_longitude -87.19 Weather station longitude from weather file used for the building energy simulation is -87.19° -in.weather_file_longitude -87.09 Weather station longitude from weather file used for the building energy simulation is -87.09° -in.weather_file_longitude -87.04 Weather station longitude from weather file used for the building energy simulation is -87.04° -in.weather_file_longitude -87.02 Weather station longitude from weather file used for the building energy simulation is -87.02° -in.weather_file_longitude -87.01 Weather station longitude from weather file used for the building energy simulation is -87.01° -in.weather_file_longitude -86.95 Weather station longitude from weather file used for the building energy simulation is -86.95° -in.weather_file_longitude -86.94 Weather station longitude from weather file used for the building energy simulation is -86.94° -in.weather_file_longitude -86.79 Weather station longitude from weather file used for the building energy simulation is -86.79° -in.weather_file_longitude -86.78 Weather station longitude from weather file used for the building energy simulation is -86.78° -in.weather_file_longitude -86.75 Weather station longitude from weather file used for the building energy simulation is -86.75° -in.weather_file_longitude -86.69 Weather station longitude from weather file used for the building energy simulation is -86.69° -in.weather_file_longitude -86.62 Weather station longitude from weather file used for the building energy simulation is -86.62° -in.weather_file_longitude -86.52 Weather station longitude from weather file used for the building energy simulation is -86.52° -in.weather_file_longitude -86.47 Weather station longitude from weather file used for the building energy simulation is -86.47° -in.weather_file_longitude -86.44 Weather station longitude from weather file used for the building energy simulation is -86.44° -in.weather_file_longitude -86.42 Weather station longitude from weather file used for the building energy simulation is -86.42° -in.weather_file_longitude -86.4 Weather station longitude from weather file used for the building energy simulation is -86.4° -in.weather_file_longitude -86.39 Weather station longitude from weather file used for the building energy simulation is -86.39° -in.weather_file_longitude -86.36 Weather station longitude from weather file used for the building energy simulation is -86.36° -in.weather_file_longitude -86.33 Weather station longitude from weather file used for the building energy simulation is -86.33° -in.weather_file_longitude -86.3 Weather station longitude from weather file used for the building energy simulation is -86.3° -in.weather_file_longitude -86.27 Weather station longitude from weather file used for the building energy simulation is -86.27° -in.weather_file_longitude -86.24 Weather station longitude from weather file used for the building energy simulation is -86.24° -in.weather_file_longitude -86.23 Weather station longitude from weather file used for the building energy simulation is -86.23° -in.weather_file_longitude -86.15 Weather station longitude from weather file used for the building energy simulation is -86.15° -in.weather_file_longitude -86.1 Weather station longitude from weather file used for the building energy simulation is -86.1° -in.weather_file_longitude -86.08 Weather station longitude from weather file used for the building energy simulation is -86.08° -in.weather_file_longitude -85.97 Weather station longitude from weather file used for the building energy simulation is -85.97° -in.weather_file_longitude -85.86 Weather station longitude from weather file used for the building energy simulation is -85.86° -in.weather_file_longitude -85.8 Weather station longitude from weather file used for the building energy simulation is -85.8° -in.weather_file_longitude -85.73 Weather station longitude from weather file used for the building energy simulation is -85.73° -in.weather_file_longitude -85.71 Weather station longitude from weather file used for the building energy simulation is -85.71° -in.weather_file_longitude -85.68 Weather station longitude from weather file used for the building energy simulation is -85.68° -in.weather_file_longitude -85.66 Weather station longitude from weather file used for the building energy simulation is -85.66° -in.weather_file_longitude -85.58 Weather station longitude from weather file used for the building energy simulation is -85.58° -in.weather_file_longitude -85.55 Weather station longitude from weather file used for the building energy simulation is -85.55° -in.weather_file_longitude -85.52 Weather station longitude from weather file used for the building energy simulation is -85.52° -in.weather_file_longitude -85.5 Weather station longitude from weather file used for the building energy simulation is -85.5° -in.weather_file_longitude -85.45 Weather station longitude from weather file used for the building energy simulation is -85.45° -in.weather_file_longitude -85.44 Weather station longitude from weather file used for the building energy simulation is -85.44° -in.weather_file_longitude -85.42 Weather station longitude from weather file used for the building energy simulation is -85.42° -in.weather_file_longitude -85.39 Weather station longitude from weather file used for the building energy simulation is -85.39° -in.weather_file_longitude -85.27 Weather station longitude from weather file used for the building energy simulation is -85.27° -in.weather_file_longitude -85.25 Weather station longitude from weather file used for the building energy simulation is -85.25° -in.weather_file_longitude -85.21 Weather station longitude from weather file used for the building energy simulation is -85.21° -in.weather_file_longitude -85.2 Weather station longitude from weather file used for the building energy simulation is -85.2° -in.weather_file_longitude -85.19 Weather station longitude from weather file used for the building energy simulation is -85.19° -in.weather_file_longitude -85.18 Weather station longitude from weather file used for the building energy simulation is -85.18° -in.weather_file_longitude -85.16 Weather station longitude from weather file used for the building energy simulation is -85.16° -in.weather_file_longitude -85.09 Weather station longitude from weather file used for the building energy simulation is -85.09° -in.weather_file_longitude -85.05 Weather station longitude from weather file used for the building energy simulation is -85.05° -in.weather_file_longitude -85.03 Weather station longitude from weather file used for the building energy simulation is -85.03° -in.weather_file_longitude -85 Weather station longitude from weather file used for the building energy simulation is -85° -in.weather_file_longitude -84.94 Weather station longitude from weather file used for the building energy simulation is -84.94° -in.weather_file_longitude -84.9 Weather station longitude from weather file used for the building energy simulation is -84.9° -in.weather_file_longitude -84.87 Weather station longitude from weather file used for the building energy simulation is -84.87° -in.weather_file_longitude -84.85 Weather station longitude from weather file used for the building energy simulation is -84.85° -in.weather_file_longitude -84.8 Weather station longitude from weather file used for the building energy simulation is -84.8° -in.weather_file_longitude -84.77 Weather station longitude from weather file used for the building energy simulation is -84.77° -in.weather_file_longitude -84.73 Weather station longitude from weather file used for the building energy simulation is -84.73° -in.weather_file_longitude -84.7 Weather station longitude from weather file used for the building energy simulation is -84.7° -in.weather_file_longitude -84.69 Weather station longitude from weather file used for the building energy simulation is -84.69° -in.weather_file_longitude -84.67 Weather station longitude from weather file used for the building energy simulation is -84.67° -in.weather_file_longitude -84.64 Weather station longitude from weather file used for the building energy simulation is -84.64° -in.weather_file_longitude -84.61 Weather station longitude from weather file used for the building energy simulation is -84.61° -in.weather_file_longitude -84.6 Weather station longitude from weather file used for the building energy simulation is -84.6° -in.weather_file_longitude -84.58 Weather station longitude from weather file used for the building energy simulation is -84.58° -in.weather_file_longitude -84.57 Weather station longitude from weather file used for the building energy simulation is -84.57° -in.weather_file_longitude -84.53 Weather station longitude from weather file used for the building energy simulation is -84.53° -in.weather_file_longitude -84.52 Weather station longitude from weather file used for the building energy simulation is -84.52° -in.weather_file_longitude -84.46 Weather station longitude from weather file used for the building energy simulation is -84.46° -in.weather_file_longitude -84.43 Weather station longitude from weather file used for the building energy simulation is -84.43° -in.weather_file_longitude -84.42 Weather station longitude from weather file used for the building energy simulation is -84.42° -in.weather_file_longitude -84.37 Weather station longitude from weather file used for the building energy simulation is -84.37° -in.weather_file_longitude -84.35 Weather station longitude from weather file used for the building energy simulation is -84.35° -in.weather_file_longitude -84.3 Weather station longitude from weather file used for the building energy simulation is -84.3° -in.weather_file_longitude -84.23 Weather station longitude from weather file used for the building energy simulation is -84.23° -in.weather_file_longitude -84.22 Weather station longitude from weather file used for the building energy simulation is -84.22° -in.weather_file_longitude -84.19 Weather station longitude from weather file used for the building energy simulation is -84.19° -in.weather_file_longitude -84.08 Weather station longitude from weather file used for the building energy simulation is -84.08° -in.weather_file_longitude -84.05 Weather station longitude from weather file used for the building energy simulation is -84.05° -in.weather_file_longitude -84.03 Weather station longitude from weather file used for the building energy simulation is -84.03° -in.weather_file_longitude -83.99 Weather station longitude from weather file used for the building energy simulation is -83.99° -in.weather_file_longitude -83.98 Weather station longitude from weather file used for the building energy simulation is -83.98° -in.weather_file_longitude -83.83 Weather station longitude from weather file used for the building energy simulation is -83.83° -in.weather_file_longitude -83.82 Weather station longitude from weather file used for the building energy simulation is -83.82° -in.weather_file_longitude -83.8 Weather station longitude from weather file used for the building energy simulation is -83.8° -in.weather_file_longitude -83.75 Weather station longitude from weather file used for the building energy simulation is -83.75° -in.weather_file_longitude -83.67 Weather station longitude from weather file used for the building energy simulation is -83.67° -in.weather_file_longitude -83.65 Weather station longitude from weather file used for the building energy simulation is -83.65° -in.weather_file_longitude -83.6 Weather station longitude from weather file used for the building energy simulation is -83.6° -in.weather_file_longitude -83.58 Weather station longitude from weather file used for the building energy simulation is -83.58° -in.weather_file_longitude -83.57 Weather station longitude from weather file used for the building energy simulation is -83.57° -in.weather_file_longitude -83.48 Weather station longitude from weather file used for the building energy simulation is -83.48° -in.weather_file_longitude -83.43 Weather station longitude from weather file used for the building energy simulation is -83.43° -in.weather_file_longitude -83.42 Weather station longitude from weather file used for the building energy simulation is -83.42° -in.weather_file_longitude -83.37 Weather station longitude from weather file used for the building energy simulation is -83.37° -in.weather_file_longitude -83.35 Weather station longitude from weather file used for the building energy simulation is -83.35° -in.weather_file_longitude -83.33 Weather station longitude from weather file used for the building energy simulation is -83.33° -in.weather_file_longitude -83.31 Weather station longitude from weather file used for the building energy simulation is -83.31° -in.weather_file_longitude -83.28 Weather station longitude from weather file used for the building energy simulation is -83.28° -in.weather_file_longitude -83.19 Weather station longitude from weather file used for the building energy simulation is -83.19° -in.weather_file_longitude -83.11 Weather station longitude from weather file used for the building energy simulation is -83.11° -in.weather_file_longitude -83.08 Weather station longitude from weather file used for the building energy simulation is -83.08° -in.weather_file_longitude -83.06 Weather station longitude from weather file used for the building energy simulation is -83.06° -in.weather_file_longitude -82.98 Weather station longitude from weather file used for the building energy simulation is -82.98° -in.weather_file_longitude -82.92 Weather station longitude from weather file used for the building energy simulation is -82.92° -in.weather_file_longitude -82.89 Weather station longitude from weather file used for the building energy simulation is -82.89° -in.weather_file_longitude -82.88 Weather station longitude from weather file used for the building energy simulation is -82.88° -in.weather_file_longitude -82.83 Weather station longitude from weather file used for the building energy simulation is -82.83° -in.weather_file_longitude -82.71 Weather station longitude from weather file used for the building energy simulation is -82.71° -in.weather_file_longitude -82.69 Weather station longitude from weather file used for the building energy simulation is -82.69° -in.weather_file_longitude -82.66 Weather station longitude from weather file used for the building energy simulation is -82.66° -in.weather_file_longitude -82.56 Weather station longitude from weather file used for the building energy simulation is -82.56° -in.weather_file_longitude -82.54 Weather station longitude from weather file used for the building energy simulation is -82.54° -in.weather_file_longitude -82.52 Weather station longitude from weather file used for the building energy simulation is -82.52° -in.weather_file_longitude -82.51 Weather station longitude from weather file used for the building energy simulation is -82.51° -in.weather_file_longitude -82.45 Weather station longitude from weather file used for the building energy simulation is -82.45° -in.weather_file_longitude -82.4 Weather station longitude from weather file used for the building energy simulation is -82.4° -in.weather_file_longitude -82.27 Weather station longitude from weather file used for the building energy simulation is -82.27° -in.weather_file_longitude -82.22 Weather station longitude from weather file used for the building energy simulation is -82.22° -in.weather_file_longitude -82.18 Weather station longitude from weather file used for the building energy simulation is -82.18° -in.weather_file_longitude -82.16 Weather station longitude from weather file used for the building energy simulation is -82.16° -in.weather_file_longitude -82.04 Weather station longitude from weather file used for the building energy simulation is -82.04° -in.weather_file_longitude -82.03 Weather station longitude from weather file used for the building energy simulation is -82.03° -in.weather_file_longitude -81.99 Weather station longitude from weather file used for the building energy simulation is -81.99° -in.weather_file_longitude -81.97 Weather station longitude from weather file used for the building energy simulation is -81.97° -in.weather_file_longitude -81.93 Weather station longitude from weather file used for the building energy simulation is -81.93° -in.weather_file_longitude -81.89 Weather station longitude from weather file used for the building energy simulation is -81.89° -in.weather_file_longitude -81.87 Weather station longitude from weather file used for the building energy simulation is -81.87° -in.weather_file_longitude -81.86 Weather station longitude from weather file used for the building energy simulation is -81.86° -in.weather_file_longitude -81.85 Weather station longitude from weather file used for the building energy simulation is -81.85° -in.weather_file_longitude -81.81 Weather station longitude from weather file used for the building energy simulation is -81.81° -in.weather_file_longitude -81.78 Weather station longitude from weather file used for the building energy simulation is -81.78° -in.weather_file_longitude -81.76 Weather station longitude from weather file used for the building energy simulation is -81.76° -in.weather_file_longitude -81.69 Weather station longitude from weather file used for the building energy simulation is -81.69° -in.weather_file_longitude -81.68 Weather station longitude from weather file used for the building energy simulation is -81.68° -in.weather_file_longitude -81.59 Weather station longitude from weather file used for the building energy simulation is -81.59° -in.weather_file_longitude -81.45 Weather station longitude from weather file used for the building energy simulation is -81.45° -in.weather_file_longitude -81.44 Weather station longitude from weather file used for the building energy simulation is -81.44° -in.weather_file_longitude -81.42 Weather station longitude from weather file used for the building energy simulation is -81.42° -in.weather_file_longitude -81.39 Weather station longitude from weather file used for the building energy simulation is -81.39° -in.weather_file_longitude -81.34 Weather station longitude from weather file used for the building energy simulation is -81.34° -in.weather_file_longitude -81.33 Weather station longitude from weather file used for the building energy simulation is -81.33° -in.weather_file_longitude -81.27 Weather station longitude from weather file used for the building energy simulation is -81.27° -in.weather_file_longitude -81.24 Weather station longitude from weather file used for the building energy simulation is -81.24° -in.weather_file_longitude -81.21 Weather station longitude from weather file used for the building energy simulation is -81.21° -in.weather_file_longitude -81.2 Weather station longitude from weather file used for the building energy simulation is -81.2° -in.weather_file_longitude -81.16 Weather station longitude from weather file used for the building energy simulation is -81.16° -in.weather_file_longitude -81.15 Weather station longitude from weather file used for the building energy simulation is -81.15° -in.weather_file_longitude -81.13 Weather station longitude from weather file used for the building energy simulation is -81.13° -in.weather_file_longitude -81.12 Weather station longitude from weather file used for the building energy simulation is -81.12° -in.weather_file_longitude -81.06 Weather station longitude from weather file used for the building energy simulation is -81.06° -in.weather_file_longitude -81.05 Weather station longitude from weather file used for the building energy simulation is -81.05° -in.weather_file_longitude -81 Weather station longitude from weather file used for the building energy simulation is -81° -in.weather_file_longitude -80.94 Weather station longitude from weather file used for the building energy simulation is -80.94° -in.weather_file_longitude -80.86 Weather station longitude from weather file used for the building energy simulation is -80.86° -in.weather_file_longitude -80.82 Weather station longitude from weather file used for the building energy simulation is -80.82° -in.weather_file_longitude -80.72 Weather station longitude from weather file used for the building energy simulation is -80.72° -in.weather_file_longitude -80.7 Weather station longitude from weather file used for the building energy simulation is -80.7° -in.weather_file_longitude -80.67 Weather station longitude from weather file used for the building energy simulation is -80.67° -in.weather_file_longitude -80.65 Weather station longitude from weather file used for the building energy simulation is -80.65° -in.weather_file_longitude -80.62 Weather station longitude from weather file used for the building energy simulation is -80.62° -in.weather_file_longitude -80.48 Weather station longitude from weather file used for the building energy simulation is -80.48° -in.weather_file_longitude -80.42 Weather station longitude from weather file used for the building energy simulation is -80.42° -in.weather_file_longitude -80.4 Weather station longitude from weather file used for the building energy simulation is -80.4° -in.weather_file_longitude -80.38 Weather station longitude from weather file used for the building energy simulation is -80.38° -in.weather_file_longitude -80.3 Weather station longitude from weather file used for the building energy simulation is -80.3° -in.weather_file_longitude -80.28 Weather station longitude from weather file used for the building energy simulation is -80.28° -in.weather_file_longitude -80.23 Weather station longitude from weather file used for the building energy simulation is -80.23° -in.weather_file_longitude -80.22 Weather station longitude from weather file used for the building energy simulation is -80.22° -in.weather_file_longitude -80.18 Weather station longitude from weather file used for the building energy simulation is -80.18° -in.weather_file_longitude -80.17 Weather station longitude from weather file used for the building energy simulation is -80.17° -in.weather_file_longitude -80.1 Weather station longitude from weather file used for the building energy simulation is -80.1° -in.weather_file_longitude -80.04 Weather station longitude from weather file used for the building energy simulation is -80.04° -in.weather_file_longitude -80.02 Weather station longitude from weather file used for the building energy simulation is -80.02° -in.weather_file_longitude -79.97 Weather station longitude from weather file used for the building energy simulation is -79.97° -in.weather_file_longitude -79.94 Weather station longitude from weather file used for the building energy simulation is -79.94° -in.weather_file_longitude -79.92 Weather station longitude from weather file used for the building energy simulation is -79.92° -in.weather_file_longitude -79.88 Weather station longitude from weather file used for the building energy simulation is -79.88° -in.weather_file_longitude -79.85 Weather station longitude from weather file used for the building energy simulation is -79.85° -in.weather_file_longitude -79.83 Weather station longitude from weather file used for the building energy simulation is -79.83° -in.weather_file_longitude -79.73 Weather station longitude from weather file used for the building energy simulation is -79.73° -in.weather_file_longitude -79.48 Weather station longitude from weather file used for the building energy simulation is -79.48° -in.weather_file_longitude -79.38 Weather station longitude from weather file used for the building energy simulation is -79.38° -in.weather_file_longitude -79.37 Weather station longitude from weather file used for the building energy simulation is -79.37° -in.weather_file_longitude -79.35 Weather station longitude from weather file used for the building energy simulation is -79.35° -in.weather_file_longitude -79.34 Weather station longitude from weather file used for the building energy simulation is -79.34° -in.weather_file_longitude -79.21 Weather station longitude from weather file used for the building energy simulation is -79.21° -in.weather_file_longitude -79.1 Weather station longitude from weather file used for the building energy simulation is -79.1° -in.weather_file_longitude -79.03 Weather station longitude from weather file used for the building energy simulation is -79.03° -in.weather_file_longitude -78.95 Weather station longitude from weather file used for the building energy simulation is -78.95° -in.weather_file_longitude -78.94 Weather station longitude from weather file used for the building energy simulation is -78.94° -in.weather_file_longitude -78.92 Weather station longitude from weather file used for the building energy simulation is -78.92° -in.weather_file_longitude -78.9 Weather station longitude from weather file used for the building energy simulation is -78.9° -in.weather_file_longitude -78.88 Weather station longitude from weather file used for the building energy simulation is -78.88° -in.weather_file_longitude -78.83 Weather station longitude from weather file used for the building energy simulation is -78.83° -in.weather_file_longitude -78.79 Weather station longitude from weather file used for the building energy simulation is -78.79° -in.weather_file_longitude -78.74 Weather station longitude from weather file used for the building energy simulation is -78.74° -in.weather_file_longitude -78.73 Weather station longitude from weather file used for the building energy simulation is -78.73° -in.weather_file_longitude -78.64 Weather station longitude from weather file used for the building energy simulation is -78.64° -in.weather_file_longitude -78.45 Weather station longitude from weather file used for the building energy simulation is -78.45° -in.weather_file_longitude -78.43 Weather station longitude from weather file used for the building energy simulation is -78.43° -in.weather_file_longitude -78.41 Weather station longitude from weather file used for the building energy simulation is -78.41° -in.weather_file_longitude -78.32 Weather station longitude from weather file used for the building energy simulation is -78.32° -in.weather_file_longitude -78.13 Weather station longitude from weather file used for the building energy simulation is -78.13° -in.weather_file_longitude -78.05 Weather station longitude from weather file used for the building energy simulation is -78.05° -in.weather_file_longitude -77.99 Weather station longitude from weather file used for the building energy simulation is -77.99° -in.weather_file_longitude -77.98 Weather station longitude from weather file used for the building energy simulation is -77.98° -in.weather_file_longitude -77.97 Weather station longitude from weather file used for the building energy simulation is -77.97° -in.weather_file_longitude -77.96 Weather station longitude from weather file used for the building energy simulation is -77.96° -in.weather_file_longitude -77.9 Weather station longitude from weather file used for the building energy simulation is -77.9° -in.weather_file_longitude -77.89 Weather station longitude from weather file used for the building energy simulation is -77.89° -in.weather_file_longitude -77.85 Weather station longitude from weather file used for the building energy simulation is -77.85° -in.weather_file_longitude -77.84 Weather station longitude from weather file used for the building energy simulation is -77.84° -in.weather_file_longitude -77.73 Weather station longitude from weather file used for the building energy simulation is -77.73° -in.weather_file_longitude -77.71 Weather station longitude from weather file used for the building energy simulation is -77.71° -in.weather_file_longitude -77.68 Weather station longitude from weather file used for the building energy simulation is -77.68° -in.weather_file_longitude -77.61 Weather station longitude from weather file used for the building energy simulation is -77.61° -in.weather_file_longitude -77.58 Weather station longitude from weather file used for the building energy simulation is -77.58° -in.weather_file_longitude -77.55 Weather station longitude from weather file used for the building energy simulation is -77.55° -in.weather_file_longitude -77.5 Weather station longitude from weather file used for the building energy simulation is -77.5° -in.weather_file_longitude -77.44 Weather station longitude from weather file used for the building energy simulation is -77.44° -in.weather_file_longitude -77.43 Weather station longitude from weather file used for the building energy simulation is -77.43° -in.weather_file_longitude -77.38 Weather station longitude from weather file used for the building energy simulation is -77.38° -in.weather_file_longitude -77.32 Weather station longitude from weather file used for the building energy simulation is -77.32° -in.weather_file_longitude -77.3 Weather station longitude from weather file used for the building energy simulation is -77.3° -in.weather_file_longitude -77.06 Weather station longitude from weather file used for the building energy simulation is -77.06° -in.weather_file_longitude -77.05 Weather station longitude from weather file used for the building energy simulation is -77.05° -in.weather_file_longitude -77.03 Weather station longitude from weather file used for the building energy simulation is -77.03° -in.weather_file_longitude -77.01 Weather station longitude from weather file used for the building energy simulation is -77.01° -in.weather_file_longitude -76.92 Weather station longitude from weather file used for the building energy simulation is -76.92° -in.weather_file_longitude -76.9 Weather station longitude from weather file used for the building energy simulation is -76.9° -in.weather_file_longitude -76.89 Weather station longitude from weather file used for the building energy simulation is -76.89° -in.weather_file_longitude -76.88 Weather station longitude from weather file used for the building energy simulation is -76.88° -in.weather_file_longitude -76.87 Weather station longitude from weather file used for the building energy simulation is -76.87° -in.weather_file_longitude -76.85 Weather station longitude from weather file used for the building energy simulation is -76.85° -in.weather_file_longitude -76.76 Weather station longitude from weather file used for the building energy simulation is -76.76° -in.weather_file_longitude -76.68 Weather station longitude from weather file used for the building energy simulation is -76.68° -in.weather_file_longitude -76.66 Weather station longitude from weather file used for the building energy simulation is -76.66° -in.weather_file_longitude -76.6 Weather station longitude from weather file used for the building energy simulation is -76.6° -in.weather_file_longitude -76.57 Weather station longitude from weather file used for the building energy simulation is -76.57° -in.weather_file_longitude -76.49 Weather station longitude from weather file used for the building energy simulation is -76.49° -in.weather_file_longitude -76.43 Weather station longitude from weather file used for the building energy simulation is -76.43° -in.weather_file_longitude -76.4 Weather station longitude from weather file used for the building energy simulation is -76.4° -in.weather_file_longitude -76.39 Weather station longitude from weather file used for the building energy simulation is -76.39° -in.weather_file_longitude -76.35 Weather station longitude from weather file used for the building energy simulation is -76.35° -in.weather_file_longitude -76.29 Weather station longitude from weather file used for the building energy simulation is -76.29° -in.weather_file_longitude -76.28 Weather station longitude from weather file used for the building energy simulation is -76.28° -in.weather_file_longitude -76.19 Weather station longitude from weather file used for the building energy simulation is -76.19° -in.weather_file_longitude -76.18 Weather station longitude from weather file used for the building energy simulation is -76.18° -in.weather_file_longitude -76.1 Weather station longitude from weather file used for the building energy simulation is -76.1° -in.weather_file_longitude -76.02 Weather station longitude from weather file used for the building energy simulation is -76.02° -in.weather_file_longitude -75.98 Weather station longitude from weather file used for the building energy simulation is -75.98° -in.weather_file_longitude -75.96 Weather station longitude from weather file used for the building energy simulation is -75.96° -in.weather_file_longitude -75.75 Weather station longitude from weather file used for the building energy simulation is -75.75° -in.weather_file_longitude -75.73 Weather station longitude from weather file used for the building energy simulation is -75.73° -in.weather_file_longitude -75.72 Weather station longitude from weather file used for the building energy simulation is -75.72° -in.weather_file_longitude -75.7 Weather station longitude from weather file used for the building energy simulation is -75.7° -in.weather_file_longitude -75.6 Weather station longitude from weather file used for the building energy simulation is -75.6° -in.weather_file_longitude -75.56 Weather station longitude from weather file used for the building energy simulation is -75.56° -in.weather_file_longitude -75.55 Weather station longitude from weather file used for the building energy simulation is -75.55° -in.weather_file_longitude -75.51 Weather station longitude from weather file used for the building energy simulation is -75.51° -in.weather_file_longitude -75.5 Weather station longitude from weather file used for the building energy simulation is -75.5° -in.weather_file_longitude -75.47 Weather station longitude from weather file used for the building energy simulation is -75.47° -in.weather_file_longitude -75.45 Weather station longitude from weather file used for the building energy simulation is -75.45° -in.weather_file_longitude -75.41 Weather station longitude from weather file used for the building energy simulation is -75.41° -in.weather_file_longitude -75.38 Weather station longitude from weather file used for the building energy simulation is -75.38° -in.weather_file_longitude -75.36 Weather station longitude from weather file used for the building energy simulation is -75.36° -in.weather_file_longitude -75.23 Weather station longitude from weather file used for the building energy simulation is -75.23° -in.weather_file_longitude -75.15 Weather station longitude from weather file used for the building energy simulation is -75.15° -in.weather_file_longitude -75.12 Weather station longitude from weather file used for the building energy simulation is -75.12° -in.weather_file_longitude -75.08 Weather station longitude from weather file used for the building energy simulation is -75.08° -in.weather_file_longitude -75.01 Weather station longitude from weather file used for the building energy simulation is -75.01° -in.weather_file_longitude -74.9 Weather station longitude from weather file used for the building energy simulation is -74.9° -in.weather_file_longitude -74.85 Weather station longitude from weather file used for the building energy simulation is -74.85° -in.weather_file_longitude -74.84 Weather station longitude from weather file used for the building energy simulation is -74.84° -in.weather_file_longitude -74.81 Weather station longitude from weather file used for the building energy simulation is -74.81° -in.weather_file_longitude -74.78 Weather station longitude from weather file used for the building energy simulation is -74.78° -in.weather_file_longitude -74.58 Weather station longitude from weather file used for the building energy simulation is -74.58° -in.weather_file_longitude -74.28 Weather station longitude from weather file used for the building energy simulation is -74.28° -in.weather_file_longitude -74.27 Weather station longitude from weather file used for the building energy simulation is -74.27° -in.weather_file_longitude -74.21 Weather station longitude from weather file used for the building energy simulation is -74.21° -in.weather_file_longitude -74.17 Weather station longitude from weather file used for the building energy simulation is -74.17° -in.weather_file_longitude -74.12 Weather station longitude from weather file used for the building energy simulation is -74.12° -in.weather_file_longitude -74.06 Weather station longitude from weather file used for the building energy simulation is -74.06° -in.weather_file_longitude -73.97 Weather station longitude from weather file used for the building energy simulation is -73.97° -in.weather_file_longitude -73.88 Weather station longitude from weather file used for the building energy simulation is -73.88° -in.weather_file_longitude -73.8 Weather station longitude from weather file used for the building energy simulation is -73.8° -in.weather_file_longitude -73.71 Weather station longitude from weather file used for the building energy simulation is -73.71° -in.weather_file_longitude -73.61 Weather station longitude from weather file used for the building energy simulation is -73.61° -in.weather_file_longitude -73.48 Weather station longitude from weather file used for the building energy simulation is -73.48° -in.weather_file_longitude -73.47 Weather station longitude from weather file used for the building energy simulation is -73.47° -in.weather_file_longitude -73.42 Weather station longitude from weather file used for the building energy simulation is -73.42° -in.weather_file_longitude -73.25 Weather station longitude from weather file used for the building energy simulation is -73.25° -in.weather_file_longitude -73.17 Weather station longitude from weather file used for the building energy simulation is -73.17° -in.weather_file_longitude -73.15 Weather station longitude from weather file used for the building energy simulation is -73.15° -in.weather_file_longitude -73.13 Weather station longitude from weather file used for the building energy simulation is -73.13° -in.weather_file_longitude -73.1 Weather station longitude from weather file used for the building energy simulation is -73.1° -in.weather_file_longitude -72.94 Weather station longitude from weather file used for the building energy simulation is -72.94° -in.weather_file_longitude -72.83 Weather station longitude from weather file used for the building energy simulation is -72.83° -in.weather_file_longitude -72.65 Weather station longitude from weather file used for the building energy simulation is -72.65° -in.weather_file_longitude -72.61 Weather station longitude from weather file used for the building energy simulation is -72.61° -in.weather_file_longitude -72.58 Weather station longitude from weather file used for the building energy simulation is -72.58° -in.weather_file_longitude -72.53 Weather station longitude from weather file used for the building energy simulation is -72.53° -in.weather_file_longitude -72.52 Weather station longitude from weather file used for the building energy simulation is -72.52° -in.weather_file_longitude -72.31 Weather station longitude from weather file used for the building energy simulation is -72.31° -in.weather_file_longitude -72.28 Weather station longitude from weather file used for the building energy simulation is -72.28° -in.weather_file_longitude -72.18 Weather station longitude from weather file used for the building energy simulation is -72.18° -in.weather_file_longitude -71.88 Weather station longitude from weather file used for the building energy simulation is -71.88° -in.weather_file_longitude -71.58 Weather station longitude from weather file used for the building energy simulation is -71.58° -in.weather_file_longitude -71.54 Weather station longitude from weather file used for the building energy simulation is -71.54° -in.weather_file_longitude -71.5 Weather station longitude from weather file used for the building energy simulation is -71.5° -in.weather_file_longitude -71.48 Weather station longitude from weather file used for the building energy simulation is -71.48° -in.weather_file_longitude -71.44 Weather station longitude from weather file used for the building energy simulation is -71.44° -in.weather_file_longitude -71.43 Weather station longitude from weather file used for the building energy simulation is -71.43° -in.weather_file_longitude -71.42 Weather station longitude from weather file used for the building energy simulation is -71.42° -in.weather_file_longitude -71.29 Weather station longitude from weather file used for the building energy simulation is -71.29° -in.weather_file_longitude -71.28 Weather station longitude from weather file used for the building energy simulation is -71.28° -in.weather_file_longitude -71.18 Weather station longitude from weather file used for the building energy simulation is -71.18° -in.weather_file_longitude -71.17 Weather station longitude from weather file used for the building energy simulation is -71.17° -in.weather_file_longitude -71.02 Weather station longitude from weather file used for the building energy simulation is -71.02° -in.weather_file_longitude -71.01 Weather station longitude from weather file used for the building energy simulation is -71.01° -in.weather_file_longitude -70.95 Weather station longitude from weather file used for the building energy simulation is -70.95° -in.weather_file_longitude -70.92 Weather station longitude from weather file used for the building energy simulation is -70.92° -in.weather_file_longitude -70.73 Weather station longitude from weather file used for the building energy simulation is -70.73° -in.weather_file_longitude -70.7 Weather station longitude from weather file used for the building energy simulation is -70.7° -in.weather_file_longitude -70.62 Weather station longitude from weather file used for the building energy simulation is -70.62° -in.weather_file_longitude -70.3 Weather station longitude from weather file used for the building energy simulation is -70.3° -in.weather_file_longitude -70.28 Weather station longitude from weather file used for the building energy simulation is -70.28° -in.weather_file_longitude -70.06 Weather station longitude from weather file used for the building energy simulation is -70.06° -in.weather_file_longitude -69.8 Weather station longitude from weather file used for the building energy simulation is -69.8° -in.weather_file_longitude -69.71 Weather station longitude from weather file used for the building energy simulation is -69.71° -in.weather_file_longitude -69.67 Weather station longitude from weather file used for the building energy simulation is -69.67° -in.weather_file_longitude -69.58 Weather station longitude from weather file used for the building energy simulation is -69.58° -in.weather_file_longitude -68.87 Weather station longitude from weather file used for the building energy simulation is -68.87° -in.weather_file_longitude -68.82 Weather station longitude from weather file used for the building energy simulation is -68.82° -in.weather_file_longitude -68.37 Weather station longitude from weather file used for the building energy simulation is -68.37° -in.weather_file_longitude -68.03 Weather station longitude from weather file used for the building energy simulation is -68.03° -in.window_areas F12 B12 L12 R12 Window to wall ratio of 0.12 for all walls -in.window_areas F15 B15 L15 R15 Window to wall ratio of 0.15 for all walls -in.window_areas F18 B18 L18 R18 Window to wall ratio of 0.18 for all walls -in.window_areas F30 B30 L30 R30 Window to wall ratio of 0.30 for all walls -in.window_areas F6 B6 L6 R6 Window to wall ratio of 0.06 for all walls -in.window_areas F9 B9 L9 R9 Window to wall ratio of 0.09 for all walls -in.windows "Double, Clear, Metal, Air" "Double-pane, metal frame, air-filled windows" -in.windows "Double, Clear, Metal, Air, Exterior Clear Storm" "Double-pane, metal frame, air-filled windows with storm windows" -in.windows "Double, Clear, Non-metal, Air" "Double-pane, non-metal frame, air-filled windows" -in.windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" "Double-pane, non-metal frame, air-filled windows with storm windows" -in.windows "Double, Low-E, Non-metal, Air, M-Gain" "Double-pane, low-E glass, non-metal frame, medium solar gain, air-filled windows" -in.windows "Single, Clear, Metal" "Single-pane, metal frame windows" -in.windows "Single, Clear, Metal, Exterior Clear Storm" "Single-pane, metal frame windows with storm windows" -in.windows "Single, Clear, Non-metal" "Single-pane, non-metal frame windows" -in.windows "Single, Clear, Non-metal, Exterior Clear Storm" "Single-pane, non-metal frame windows with storm windows" -in.windows "Triple, Low-E, Non-metal, Air, L-Gain" "Triple-pane, low-E glass, non-metal frame, low solar gain, air-filled windows" -upgrade 0 The upgrade number is 0 -upgrade 1 The upgrade number is 1 -upgrade 2 The upgrade number is 2 -upgrade 3 The upgrade number is 3 -upgrade 4 The upgrade number is 4 -upgrade 5 The upgrade number is 5 -upgrade 6 The upgrade number is 6 -upgrade 7 The upgrade number is 7 -upgrade 8 The upgrade number is 8 -upgrade 9 The upgrade number is 9 -upgrade 10 The upgrade number is 10 -upgrade 11 The upgrade number is 11 -upgrade 12 The upgrade number is 12 -upgrade 13 The upgrade number is 13 -upgrade 14 The upgrade number is 14 -upgrade 15 The upgrade number is 15 -upgrade 16 The upgrade number is 16 -upgrade 17 The upgrade number is 17 -upgrade 18 The upgrade number is 18 -upgrade 19 The upgrade number is 19 -upgrade 20 The upgrade number is 20 -upgrade 21 The upgrade number is 21 -upgrade 22 The upgrade number is 22 -upgrade 23 The upgrade number is 23 -upgrade 24 The upgrade number is 24 -upgrade 25 The upgrade number is 25 -upgrade 26 The upgrade number is 26 -upgrade 27 The upgrade number is 27 -upgrade 28 The upgrade number is 28 -upgrade.demand_flexibility_electric_vehicle Enabled Demand flexibility is applied to electric vehicle in the model -upgrade.demand_flexibility_electric_vehicle None Demand flexibility is not applied to electric vehicle in the model -upgrade.demand_flexibility_hvac None Demand flexibility is not applied to the HVAC system in the model -upgrade.demand_flexibility_hvac "On-peak Load Shedding, 2F Offset" Demand flexibility is applied to the HVAC system in the model with a 4F offset during on-peak hours -upgrade.demand_flexibility_hvac "On-peak Load Shedding, 4F Offset" Demand flexibility is applied to the HVAC system in the model with a 2F offset during on-peak hours -upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 2F Offset, 1hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 2F preheating or precooling starting 1 hour before on-peak hours -upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 2F Offset, 4hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 2F preheating or precooling starting 4 hours before on-peak hours -upgrade.demand_flexibility_hvac "Pre-peak Load Shifting, 4F Offset, 4hr Pre-peak Duration" Demand flexibility is applied to the HVAC system in the model with 4F preheating or precooling starting 4 hours before on-peak hours -upgrade.demand_flexibility_random_shift 30 minutes The random shift applied for demand flexibility in the model is 30 minutes -upgrade.demand_flexibility_random_shift None No random shift -upgrade.duct_leakage_and_insulation "5% Leakage to Outside, R-6" "Duct leakage and insulation is upgraded to 5% Leakage to Outside, R-6" -upgrade.duct_leakage_and_insulation "5% Leakage to Outside, R-8" "Duct leakage and insulation is upgraded to 5% Leakage to Outside, R-8" -upgrade.duct_leakage_and_insulation None No duct leakage and insulation upgrade -upgrade.electric_vehicle_charger Level 1 charger The dwelling unit installs a Level 1 electric vehicle charger in the upgrade -upgrade.electric_vehicle_charger Level 2 charger The dwelling unit installs a Level 2 electric vehicle charger in the upgrade -upgrade.electric_vehicle_charger None No change to electric vehicle charger -upgrade.electric_vehicle_efficiency_increase 15% The efficiency of the electric vehicle is increased by 15% in the upgrade -upgrade.electric_vehicle_efficiency_increase None No increase of the efficiency of the electric vehicle -upgrade.electric_vehicle_ownership None No change to electric vehicle ownership -upgrade.electric_vehicle_ownership Yes The dwelling unit has one electric vehicle in the upgrade -upgrade.heating_fuel Natural Gas Heating fuel is changed to natural gas in the Natural Gas Furnace upgrade -upgrade.heating_fuel None No change to heating fuel in the Natural Gas Furnace upgrade -upgrade.hvac_cooling_efficiency "AC, SEER 15" "Cooling efficiency is changed to AC, SEER 15 in the upgrade" -upgrade.hvac_cooling_efficiency "AC, SEER2 13.4" "Cooling efficiency is changed to AC, SEER2 13.4 in the upgrade" -upgrade.hvac_cooling_efficiency "AC, SEER2 14.3" "Cooling efficiency is changed to AC, SEER2 14.3 in the upgrade" -upgrade.hvac_cooling_efficiency Ducted Heat Pump Cooling efficiency is changed to Ducted Heat Pump in the upgrade -upgrade.hvac_cooling_efficiency None No change to cooling efficiency -upgrade.hvac_cooling_efficiency "Room AC, EER 12.0" "Cooling efficiency is changed to Room AC, EER 12.0 in the upgrade" -upgrade.hvac_cooling_partial_space_conditioning 100% Conditioned Space is 100% conditioned for cooling in the upgrade -upgrade.hvac_cooling_partial_space_conditioning None No change to cooling partial space conditioning -upgrade.hvac_detailed_performance_data Cold Climate Heat Pump Ducted HVAC system upgraded to Cold Climate Heat Pump Ducted in the Cold Climate Ducted Air Source Heat Pump upgrade -upgrade.hvac_detailed_performance_data None No change to HVAC system in the Cold Climate Ducted Air Source Heat Pump upgrade -upgrade.hvac_heating_efficiency "ASHP, SEER2 14.3, 7.5 HSPF2" "Heating efficiency is upgraded to ASHP, SEER2 14.3, 7.5 HSPF2" -upgrade.hvac_heating_efficiency "ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" "Heating efficiency is upgraded to ASHP, SEER2 17.5, 8.5 HSPF2, Typical Cold Climate" -upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 92.5% AFUE NG, 35F switchover" -upgrade.hvac_heating_efficiency "Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover" "Heating efficiency is upgraded to Dual-Fuel ASHP, SEER 15.2, 7.8 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover" -upgrade.hvac_heating_efficiency "Electric Baseboard, 100% Efficiency" "Heating efficiency is upgraded to Electric Baseboard, 100% Efficiency" -upgrade.hvac_heating_efficiency "Electric Boiler, 100% AFUE" "Heating efficiency is upgraded to Electric Boiler, 100% AFUE" -upgrade.hvac_heating_efficiency "Electric Furnace, 100% AFUE" "Heating efficiency is upgraded to Electric Furnace, 100% AFUE" -upgrade.hvac_heating_efficiency "Electric Wall Furnace, 100% AFUE" "Heating efficiency is upgraded to Electric Wall Furnace, 100% AFUE" -upgrade.hvac_heating_efficiency "Fuel Boiler, 80% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 80% AFUE" -upgrade.hvac_heating_efficiency "Fuel Boiler, 83% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 83% AFUE" -upgrade.hvac_heating_efficiency "Fuel Boiler, 90% AFUE" "Heating efficiency is upgraded to Fuel Boiler, 90% AFUE" -upgrade.hvac_heating_efficiency "Fuel Furnace, 80% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 80% AFUE" -upgrade.hvac_heating_efficiency "Fuel Furnace, 83% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 83% AFUE" -upgrade.hvac_heating_efficiency "Fuel Furnace, 88% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 88% AFUE" -upgrade.hvac_heating_efficiency "Fuel Furnace, 92.5% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 92.5% AFUE" -upgrade.hvac_heating_efficiency "Fuel Furnace, 95% AFUE" "Heating efficiency is upgraded to Fuel Furnace, 95% AFUE" -upgrade.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 60% AFUE" "Heating efficiency is upgraded to Fuel Wall/Floor Furnace, 60% AFUE" -upgrade.hvac_heating_efficiency "Fuel Wall/Floor Furnace, 68% AFUE" "Heating efficiency is upgraded to Fuel Wall/Floor Furnace, 68% AFUE" -upgrade.hvac_heating_efficiency "GSHP, EER 18.6, COP 3.8" "Heating efficiency is upgraded to GSHP, EER 18.6, COP 3.8" -upgrade.hvac_heating_efficiency "GSHP, EER 20.5, COP 4.0" "Heating efficiency is upgraded to GSHP, EER 20.5, COP 4.0" -upgrade.hvac_heating_efficiency "GSHP, EER 30.9, COP 4.4" "Heating efficiency is upgraded to GSHP, EER 30.9, COP 4.4" -upgrade.hvac_heating_efficiency None No change to heating efficiency -upgrade.hvac_heating_type_and_fuel Natural Gas Fuel Furnace Heating type and fuel is upgraded to Natural Gas Fuel Furnace in the Natural Gas Furnace upgrade -upgrade.hvac_heating_type_and_fuel None No change to heating type and fuel in the Natural Gas Furnace upgrade -upgrade.infiltration 5 ACH50 The infiltration rate is upgraded to 5ACH50 -upgrade.infiltration None No change to infiltration rate -upgrade.infiltration_reduction 13% The infiltration rate is reduced by 13% -upgrade.infiltration_reduction 30% The infiltration rate is reduced by 30% -upgrade.infiltration_reduction None No change to infiltration rate -upgrade.insulation_ceiling None No change to ceiling insulation -upgrade.insulation_ceiling R-49 The ceiling insulation is upgraded to R-49 -upgrade.insulation_ceiling R-60 The ceiling insulation is upgraded to R-60 -upgrade.insulation_wall None No change to wall insulation -upgrade.insulation_wall "Wood Stud, R-13" "The wall insulation is upgraded to Wood Stud, R-13" -upgrade.water_heater_efficiency "Electric Heat Pump, 50 gal, 3.78 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 50 gal, 3.78 UEF" -upgrade.water_heater_efficiency "Electric Heat Pump, 66 gal, 3.95 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 66 gal, 3.95 UEF" -upgrade.water_heater_efficiency "Electric Heat Pump, 80 gal, 3.98 UEF" "Water heater efficiency is upgraded to Electric Heat Pump, 80 gal, 3.98 UEF" -upgrade.water_heater_efficiency "High Efficiency Natural Gas Tankless, Condensing" "Water heater efficiency is upgraded to High Efficiency Natural Gas Tankless, Condensing" -upgrade.water_heater_efficiency None No change to water heater efficiency -upgrade.water_heater_fuel Electricity Water heater fuel is changed to Electricity -upgrade.water_heater_fuel Natural Gas Water heater fuel is changed to Natural Gas -upgrade.water_heater_fuel None No change to water heater fuel -upgrade.windows "EnergyStar, North-Central" "Windows is upgraded to EnergyStar, North-Central" -upgrade.windows "EnergyStar, Northern" "Windows is upgraded to EnergyStar, Northern" -upgrade.windows "EnergyStar, South-Central" "Windows is upgraded to EnergyStar, South-Central" -upgrade.windows "EnergyStar, Southern" "Windows is upgraded to EnergyStar, Southern" -upgrade.windows None No change to windows -weight 253.9036727 One dwelling unit simulation results represents 253.903672727272 dwelling units diff --git a/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx b/postprocessing/resstockpostproc/resources/publication/sdr_column_definitions_with_2024-2_equivalents.xlsx deleted file mode 100644 index 3d980ea9bb8f6de640fc66fce492dbbad842dc07..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 88707 zcmeFYgHngmei=cQ-1H(#@v3ySqa|36XB;ln{{aj!kXyU7O$Y zocEmTobUSw&dYVNSbEKxHFMA0_sm*slw^^RpCh0mpdlb2P$86JoAY=hA|O0LK|sJq zKzpJqW@GJWV(n@gvTE>j((YZP1k+F1=;qJ@_u@VX&RV@mmJ>?(J<` zz|$Jv7}u4UA74CB7rOt7zH=Crj{EL}X!w0*C#Ip{Ju1@EYmBTh{p+{4osn4s8_VjE zNUy*gDIBY)5u-8X#BV<|%TmP|zg=1Kd_db6(|?cH*-hx(%i#8KDY|Bx|B@5@)2X$C z&IV|?hX*7CrT@a)H)Ns1uK?aI0<^>gcxz~H^4Wov1%CX0eEnZc(*KltdEB@R(is4ypnPx1iN-*jI)*&Ri#R-tw9=X&t99=yhzq-WrG+L;3w_AtCGDG|*o*TkGGd0`kv8K)xYq31U z2fj^hrt@_F@Uqhv4Ykew8tZ?el%x7{1~McBgnLv31Z)6D*UzjjHuhE@ZEURIW3WJ7 z-)4^Oxo39mLyWek{2H>9j9SUSOjxb_)b+VvK*T5FuThz^3b|$1OD<$+cShLy;q5Ee zI=x#4*=wZP<(MlA9AAFM2|g$Pxc)|3{ny49Y<+!&Tk3TpS>yKsapl3}DWdduRfbWT zGE2+}jZg%UH1dH8=HHZToMtF*g3FBY*kubbKT=KB`!aG-r}h)o1fso)Sj(Z*%X{{& zY{@@2NmgN2YP`&7!diqAzx#=2JamH79K{n`PxMS*{aTHHR)p#2@K&yT@0ky%L_j1H9_PV4XkD7jT1S`5o>B)QH6Di} zw!JdF6vhNc-&W1O;dm1>BU?=ANawmyi0|$Hlqm6TUiZ_tDcFmxzLmgmQF-F#_mY3) zr-?Q;ElwGM2UqS_dnG%>*%FevchApU?1g3wekB#)UEl@$ZSQ(VTF2%L7JXUV$<7>V zB1X%+ZL2$D#-;fQ+W`gR(yK<8VCHEA%C(=)2O3UVOb3O}hw3_KV{DoFL=4`)+O<&4 zhlmYRW?igD%X*$}Myj7#YrOs>Tfxx1yuSe9IG|H2q!I*w4P35$JGmd&-QSvhFSZ`g zID#_PDDRg3U^9=VzFUiX+Au|an;qrV{=p!|gGUEP>4($(^AVQM!?aTtF84g2v46dc z{wPfBh~JhO(R-gGNO~<9?}`_xQ{1I6;qLd*F+)Y-b-IoET8>A_GrU>ZJDNQ@{MFjk zS&m4_=DVvyn5ntFVx^Ibuz|x5_R(wm-1^oPc2%&_lrjWaU6AuT#e1B}-Th~ypAVmh z%{Mi0{IYS#A$7*9$B9@kIUieNuy{t#V*z9PaeI*yf9226>6H+{|KWvutYafr;WA3` z^=nk?^WX7xo^nN7YN2H@4#$Ye&8^xiWXqKYjeC8+OXpP;Yvy=GkyNY9QfsJuT0?$} zLF;0ARv?|39`C#3P~HqR#N*kGw~MLsjD8iCVah{Hf!|QB`nYP1O*bAI z#O5zhv;EvC#-T*$(gM%i5XQGBslZnq5*KKv&9|oVZX;G5`PWZ3NWaRGmvIR~f*dJ> z`y?s68RHx_@=}}Bk5(Mt-3&0c&7U$2o*kL4_xDaM0hRvmEyJ-nq$oOxfFKS<;R27qqVu=VOUA$Y14plA9f5WFejAa~V6VYy{PPHUWdYa@zz5XtZ*soiNHHOtz zf1>4Mi)3M4Y|}j~a36d2=@(LvLUPHQB12@~qG$NxH`QijkkUfD?)I;9$c>s2YFIRL zlo(x1H~}u^Mp`9|q}7$YCSd7$KPOX4<#Jlo)tP5U=Y4eB&-p|ryMAOVGrH$!L6g$` zsU@;Kkv&cbuh&;;MKjCkWc zQ+U!t-oU)fp?>xw#@2l`EUSN&JI;ij-6~n@Wm30dJJGyO`0lrlY3~&MnhwVpOZSV(sHKDG@@KKVk7?$OR;h*T(TeH zcM>u{m$O`MtHVaF?6z8L5y#8>1#S?-qyTMXUhd|y z6v3Jidn2APJ-I*AZfp#fP=R!8ayet7;rc0xXXuiWboL^vVl-@S9yFf>PaH&lyT1Fv zruDXO^nua4DDYSdji1P)isv`P*J`2dv1K0*8J-8#pXy`Rzw(?R;Ei(gQh`4@mReVH zRhul*+e(EU-@f$dI(2th^1@th@Qh6riF@|&eZlSPZcdrf77Yev>)oAA+ucPK)bQba z=BV{{bt4RHplzTnjvJYP3xFdXxFg(>P7O6VSu7g zv~yS6&$1}$`yTqcaQyq8XoBci)rYUA^y^dEuf5+{->GgW_EmXT-lFqfYz<_`m_4Y# z@a+#O0E77%nJm)eOW|ue_FIQE$q35fhl{1Q`|J57hoU(M%O`%N?N(4s-o7HZO#jC$7@@w`-cJvC-5h#~7!`iwFfjTNe|9e+$!lpLX=jB2?Fq zxuSZ1t3fn2Lz0q)Naxd-{m%X?lEr>Y(Ej_B1+z7S-;>BbdyS?QImUAbxQEQ@lRn_Q z=#(}x4$_}E*}sHPU~%oPi4{6uf+t&CBUX9v8DVx7OCULiheX8rt&cG@?tSP;mbr$W zEG#quu*N%^iwVdu;9nrM|H6&bXYIV)fJ}cM!_X1C@H9@1mDM6)-Lwo_Glu@Sm&;q| zJ5)44c3{Ccbw@S7{BtH1TEi$+ig}oqp&wFkyRVs&Ec7xMZyiT(LZold7=|%`-ki8B z_j~!glJpkFg3ai;e`eO_d9fw;{k|2sCmSACfg`$%Oc&Dl`aK%uaDuEo;`@(9jCLq) z1DA>jDy9#vFIXYQO;oA4~e#23tYoRX|=JSi8L zcf$mnZ0=$SOT|t1?2(wywr9md+)rH@>IQpX<>^f`yQ8WJVlElq+M~<{ewBY$`j<)1 zS_vtaTfCIGFvq!0P_k@i9{y_Lb~09Mk!|%C@1) zcSxHatn_3|j1qvc1!G^?67w6B*~DZuJQ*j`4K9Mo_VCvsr)2|`6u0-4h;AdKo=mqBGw=Z&evfa;}ELVacba>}G>O>KeZy3Bb9l%=$!+- za!OmO=A3WoDDf;{5vP#vEG;v%CH0-KMw$U1KLU8;++Lh^i8&u-HnMCR+h_NMe5qT! zOn$dhybKa?!34tV#P^}*xfFMcgW{@NBkN5Yc?@6}RzSSwsHn!B!GN`jSwaPH5b>W( z#S@gtR94X0?mbij(2!LqyQ31}T~bcE!z%d^A~U?|5+i7zDa|l-Nj*a}+3tj@T*=XN zU)}oRdi38fFKlTgTtvqq>AT+obrpy{;cf)8v&45^I^=Zq2*7Vq>zKG{ zKDU)(mn5&1dRI5Em0l-L@{oC>2LZ= zxQUSZ2m<4}5v^Ys)%0oLWC5+Sn^4VPN=TP{I2(!I^}Tm4-w98r8vNqZ`4v`jwZN_s zqu!HvTb0ryAnHxP zZlgn`)d8P`>v-U0UNifTJy2V{bJN-B)cC179BV@q?O~TeP0AZY#Q=r41T?!Vu@ofNi$Qiicr@)T*#$YY` zPPO|4%66@5Kg?p(w~*>L?(ydY**xXH@nplmJ4R2!kK3O*bNh~X&mfLuyEA^q``l)U zYqF(#_OyhDLfKi!l02nrb9}YQ`DIFX9G2;KWRA!Mc^@by{`Rc_Ilne}cnQzasTSZ` zmpt4VL|2WzIYg1tABQzd6zY}O66=D0CHah<|2%G%#+-dAPCH>ET25pNmNb;N={x(G zoY_q1xAuf6fCXJ`6S||9|F}X+#9MUYE&h>fzv@-Ua(VUA47<+cP;ArscpMZ~=t)Z^ zXNhjA(Uk53b9>!*tmWeFc3|wroTuW#RE44~?>T5S&SInAMw7BP(l?ak$W}+2(r{q? zM5T?*cjSn+KAyHdBnerMmvc>)KaB|Q# zKBtsFs;f1pe3ESW8{oc6VwhU>uYgV&f3+Ej6B~p&h4Ik(NrvHe`_NJ0&-lWhAu^k~ zVVKoA&P+WLP57#RksUUnS##i>WkE`0j-Cbi94JYXNRdHUIIW|OMAH+5#UFAN{0 z!C(Q+)F51O>9#UEb;8|Dmpt9ECHP&&m-K4NuOmMM2oFYvK0$G2XNNvXgP>Y|slBVe z>oXT*KbXmW0Az2zhzTx{ff7v+rL{Pt`?Odj%mRN#rVhCeF8FM-I%b5M2B-iifp(E#j1s;jcCAUKV8T;##+{AHCp$){vTPiG7J%j-&&u>5`i#dpQh%VGK(IA`!PGY} z^VBja9@DLMA7c8gz@LbzW5~z_XirrCf15rfH0gmQb@-L@QS1+#1PbWbw`Lf&7sn$# zMdt8_ceAeK%f}ERp=6StqS|&swrX_BKx&{S`yi_5q|8xy9SEP$nk{t-(Z2PQ%q635 z4y^w0vLtonmGc0>0{!o=&)XLxIXGg58m?H+?oa#wZ#wv&OeM6UIQHqrV9!vS&e;C| z15qgNw$uVB;Ax#d1C()+2}FEq-Vd|S^L1qVm*0#fzR7P8Tz`4*F9Oy?Oau0fNU!OM z5E30Fhna3;jTTws1lti;RK)p8rXiAA|29lV)6t2j z#uIJQBr@jmGfKu5fQWb5YtVZ5yy^o{RC3ye_0Zd_zMqggv~@gCdQ{NGa)0v7 zL`+^F!t2o7CHeOj&4dN5)fw=w)3ovtmq+3rDxFTjP0{>7pb zH{!yNPGm={8H0&*6D!i6CHlO|ou z==~3Ecq`w&Fi90eEE@^_5DK*$`>QsTZ?ff}8oLjC8@XT4EFcR>esb8KYvSMqlu>s# z3{V1DeNm0YihxtMQJ|ZJZ2q>zVHwa1P~}*+gntyT|CW+@y9gu}_1`(RuzGx0xzizAVs~XV~<=9sp!i_XRM4q)bxFHvw^Wv(_Jf(giQtAzeEx5Q~W) zu$_w26ffN8vGhRIrmFHOgZj=z$r;46C6mGW-D=z6x?cs?{rsAr7eAbU=?alGRn}l{ zOHkjMkL=HJBTXIJ9Jk+u+6(O%vCFc>&pv8^ww}j)qx2ZhQk*Va1Aedo0sHUwt-pm+ zb)As;_{Tj-XY;2AC-_|B_BAO^Ua3r4dG*?)mt8Mrs)}sTRyoPr_dd>ug}>PbC}heC z-q2GQZp0B*IUi`fK@d>J)My6&C7_RbU?J@N?;Jk{rAx}Dj^12U0RqF)F=YEFFkK7o zL;!Rn^-o`zH0&dkJ)XemFIXS7=;!~JDWF9we&v%8aoD#`xHA72x68Mk$Vr(7K~360 z;Ux(`sG=GiOYC|HnW-yuDORm|Y$E>-7bqUv--_fFI?;H*VP3g$tI1Ewuc_G892~%u z8iAPpH1~D6T|zSr`qxaGhR-xRz={D3j}#~!B|k^ka6au8wDlgWV|4YNjpOeEGEdvs zBV^Y90U1FYN(mpu%frs6+~^LoE1q|nkEJvH`8cvytXqKpPaA@xKnp$iWdaw&&vu}> zyE8NRfalPwZJ)olLFVXs9Dz?=_Dp`liw7h{u%#P>S-lI1VfMO#xU~MTkzAbdmcV?v zgtJL@S2de^6+c;s4)oDemzt+9lo|QqxOp9D1%+3GFKzLMOoA`Z0p;P)^GjVhq@x6u zlI7b^tX=Yc2SbtxnKpo~tU|<7S6(%;16dYUcimk7*YXKou>XZOGZD*x{Vbvy>r3D+ z#*(cmE5INgF$bS$CX}|I!{=U;XtYiUk z1(%{a^ABskm^fz{IXCHh7=NQ}LaX(3oq1ITB?yw94TpO$x@HV-9OKussvYvi;VA zT+@~EonM#(>gD*TUJG&BF;jA^CiJcS@J>n{F(zb^1JTtWbEGcF8x?W8|JPVd0I)|` zO^T69TOW5^p?X9YBb)r1SU56Uop?`E8&?8p{A z-hW_-ZtL~oiKUmGJE6((PWJY&_u>U_hu)qbr%ARQkn}K{M$ze2NtrG^Rp{9SdUx4+_p;A8BT*4;q6!zvsBYDG$#K z_(|PEza%-@eVa@w;KEA!n^!yO9Y8Ncji*ZWEN!)Yi?*^n5S?Xh$abk*gcJj;7VO^i z!>%IR;~7plZ9ls~Lgf%>&`sHWl^Gj17-MfEA0Ib(qObcZ(r&ZGMuQD2^8UbfyRc1r zVi+XrBdxRLU)au|pNcKwN55DCq2L?^nRb{Puc{K_f@(Vju7)vw<%$Lbi?QO5#Iax{ zVaC_~>ZtyZP}z-m#b$Ve1APn$^!lTa58*FrtPl=bubL-z47E!7cq*i=WYLDb^cOX4 zVQ)y8gz2=v2_}6E`lU)q)cI%KniAsTubEO6wZ+9{sPWfual2FL+q64EI73ctjfy^N zib1oRc8t*3rS}}a$r~nA%7G~RA?e#7wnADT-a=)tEn2laq)%V4A)E$xh&7H;D3FJ7bNKTWO4gja(J6V*ABj%feHq5-0Q?HVBb}g17Z9PUk8F zGaFh1(Wo2&SvU!`$LopMQ7}$XHTe2v`JRxhou-Ci&sK_waXTo)u^?yh=GQi3AWUDf zb*cm-WUUj2QDLWvQ5u#M1d?!R4|=2>uSCwk%U;1cnVZf_FZ}{EnxU+-ww%f#rCIdk zb9@pB<7%t9C+%S3b6C~l9g~X+8;fB{6G4dBo<`V*ZPO9yiJlJSwdBv2`Z{X}lPTVO z=!IZAgb{GE>R*sN)VC`8XI`vyWwDW7t89(cPK%zoXc3zu#}>`bDsT@OD^dXm)Eya8 zpWg$51Y+czy`nc-4HkQI%Qbb<`*NQ068`HDn>OHl{XZK97tIfR{S1kZl{ z)j2UmSv#%_+!V9ncY7&d_+CpmQNR#&XTW0)Y7&#Rei3%NeVh4uMspc~9%z^LWY~~o zbMa9*>FQWx$H$lM{DbheRLqRmzw|nuBq{(y5v7RpoR~!Oe-L6BR+E=%3^?uOY zp6p=j`wW@|$TzYr#KQAC1bve`gKBv*HKCJ+|K-&H1r)QoW!cwiBw@5?O+K zJ*^HH+l6%zd0as#QYSkF6Xg8{ABBj{9$q_sc1(lu!L3)!jqouM-7lL6%*2t(!bUao zTpma0&N$Q}fD0?iT9Q=eCmzVBkj3|mhTGrx01veCyFlWKb7kU0nx|@yOc&z5zxi7l zNPVfLmh~tC+0AfVBW|2Rwg> ze9RyeeiVdiXAH*JhCW6ENwZz~-2^ZSh{g#X%_d;N!0d#+EJG@gjk=Q>y&+CoD=b(O zYjywivJq(8;8QBo%BU(Ecszt@*h9s4UM>Cc<^fK4u6WNT2(~5~e0zqbH#9;MU|MPk!!fExGt7xDBJ(!;7SgrRO?zXFBffL3@Y29>4@!zFGh8h*i% z6EOr4mT68N4?Eu4*SS_;t{wAeNEcSj5~eP%G9S$rZ9EOT0P-+v zKsS-%Y0GnK`wXE-d~XULJeb~#70VFwldZ>Fa8tlz%EX2zVIqW3lPIeU@F)%29xU?@ zvfYRkXuuUBq&hG1pE_`RKbCnA^6i*cc-rid+-nHOOqcn8LBn>-OA8%lDX=GrK&i89 ztV&r3biT0+FWmAU<$4;0?NTju|Ah@t9j%keJKAy@51FsBZsBVT7hWu&}~^hRk*XW1he03En!Dl_ug~> z;$z}Tu&jNk(m&V0ak3<<6CxxpY6PYz=ZwzBh7ZPS?J&J)-Khz@O|I#!&i9`bcw@lW)2M+Ef(%MN& zfJOj7JD}#e8bJ-|ijQLrP_{LIeNvjM2y&V%x()EAf)E2Gcc)$T0qo6YCT?=a-Z_<~ zD~`e=f!`*kvbk6gV21XgJ`vuCQ>bEb_YL9|`x-8&8_sK6q1vmnzr)4x1?kvXiutu8 zfPRWLvQzl%3=l8@(`*>j;7|K7<)Qyk;PDoZAz5h!6~aTp2L+f2Xs_5$qpXds{+5Ny1`7aZKCmpolNbUm|F$<9i~-5p#mMTO8n(>PHq-^$!NmZW zr&YQ|;bCoweHCs2CK6l$Z+ZD7az7`hvp2#fp?+f6P`6y7pp0G1;#{wYRBg*31@2!5Nef|3wha+1z z^r&!Mr%bkj-{2o`fi>p8)VtFCKi7K^+g#$x(V4k7x310OU%BIMCL;o}Ba(71cmU&M z$ljPv{+t2h%vNYvr5=fpB=u2*HYB8AyG&y_m5#kT+OZaDaRnydDUW2mf3F+-445&o zm`2skVO_7d+m|{1H7xKIoJuGC?6lym%LzsN5b7T|iqt-^hLgmD(A-zYrriV}#A$&m zB>(da5c2OV%soUe!^F6=4d7H-Ti$l=&J6&N(pppM4A;YtuagBjq>F>eUiqoeTIZIA z!BY8h4bX-IkhvqUg7+bvFa0SK_A3WS%{UQzD;>nPIm+h0Fp z%t^&O3{U2Uv*QaeeYZv#DyZPO0eY|qm+7-S?jahzP5%slOZGx( zw!|MNX*Wh??NEbOfgMj1zT@$@-anlHHlvp5M&uz4n-u9eUM%;nrvhD_u9LKn``r_0 zu3Oj8G#u7aSu|NvCI~sgboL>t7O<&>FS5mheqL@KxQDMUbi?XX&S=ZQEPHa}AQfPR6P10g+E!wWPD!WU*40Qz5*Qi>9DD zh7f&thRCKZsQF|S)6mIYV$W~srH$8`qr>vBgHga#eblR98`%_ZPW}N5CF67EZ<>PO zxNcaw;b@poti)&-4vUpT6G6#NAmO@!E;mRauCn=toL$PnH;U(qygKpTXCgd{0P!SH z(N{bwc^V~}6x8f?)HgkB6<+|YpsqY2J4&&*n!XIIaJ(XXS)BDineo!%ig3fE7-OZv zCiWAzrhMG5dNkQP1T84xhuIsWLgA+ftnNkrwzHnACnS3|6*Ck~Fta$v*7IBZ0&pvH zVWPLr&N1_(m|(H!&+-sA0Z91u5b#1Ma54OjJcU^;lo^ZZ zno0DJhE}MsAL;buf{Nl=R!?w5VFpM$GK+kGzhiMhMbV%8x5utmgy;1aX=F_vrP31{ z6~(@k`u)0!NN{K7Ia#rkdK&oxaD*@1g}lU+P5$ zOk{TknuZ*Blv=l8$ekw2eQSVy$Z!)&ROeu)p`q(n=ZTf(eIjC+!6&5c0||)JC_Fwd z1U+Md6){C2jg+knAspuwW1r?&2p#YE zfrYw&fAodzXZ@)#BGoYrD7H>Yf$xX1;ufW{2*BW{QPDUSaUcH;dK@`n1rpARI0~O! z$((_wlj)hY(sX4y_!BS#uqr6YXs#}E-};@ZD^jeBej?Qn^c2wv(8ObDqIU+Hkjj9s zym*{yM&V>^N&p5L1Mt{;ypNwy1q2UYEl3k;`wr3n34U$t`n8}F#}wQ+^|jQVCSzwc zyE(j>0BaxH4`t+S-|tN;c1+9YN7ZnrU8=0WznW$^)C1}^lPA8Cvml(PM-#XTKrpY< z>s2!vQ!V2h-S$#n%UInp6ei01I&L%-B^baa+j|ka>nJij-)#g|{R|l;=X{r)oZTE7 zf*m$U9(qTWbImzQn$gH>7w4#amhrNXD=Z5i*nqGefV@A$e-yL6Qn(-uP z&%TleQ&OLOAXRpJ4}{TtibBz0bBK*dQ0JucQQ++Kj%l{C1li#^{3Taj$Tu~$08Jt0 z6I{E{)dl)9gM_Zx2X#Dyo%j{Uq*N48j3_nKPB7zqa!Evt4 zXl~}|mx^qF!zG`~p2$3pSL6w6j_G)h_7A#OuB-F121mXt3~#4-fq3~O;qmT~GBEFv zB18Ftlka_w2a3gCg>BTR=V^6<4Xy1>&c*Rwc`0~yV^2YY4n3q8yn0xauK38XTdWwh zCwfMm@01(y+Eg0ZF&AXyy0NGEt{kPitGdA_NOru=?{~S&Zhh{HmFBejKeIx8FR(a(G^aDj0^cRxGD45FteoJofrz7Ga*KbyA z$ly=5{Fr`k{&2kv02?xXYweKKc*XAg40R>3N;7mIWOwJ2uxXOM=ZBMDp^YbFO_g!9 z3mM-%h?E-H&5TyWm$aSrQ4*^-S_oJoRObTrJ`DTQs~Zb0SLiCi>jvP^>NH5i%AkMp zg;C!v`_B}XS}Tj%cj~TLn@Ar9ZgoS`k!Z~YSu)f z!!*ifmNP~Ou=5F(z{H0V>yD2E*;uS_X6r`1?4B)H;lP*aD$$(UV{-VDlNAnS3(J`_ ziCqa3`*CPW2vRv7o7X2j4P0k1GxOC3zhl)a8bBA?!Vo5ON)e`IObUe~5UL;!Lz3O+ zgQ4AS;R0XjZ{sy7PW;dPr{x*f##-28X!MP52N0w*U#)4PmOF~0YF)}uWa1LFv5Tx$ z(=DHbL>S^zo=jiwj16DJ7lcQc-7r+teNCvGWbrvCdjfGU+$FCAKTBJrg4okrzOYR}m&o>Z8v= z&V^?8VF|tpq$H--;+)NOa8m+6(S9xH_w4L z9L-BB@OLS&FN1pX_isCRT>T=y@lh1iy+nKRA9t#0NTe0>Nn4xsc0g@B` z1VYwlGN0JIj!b8fY^BS*mZA}$tzj>)B^OSZNS0-G#oAhVWX}g5KUTSliB6u0p)eFN zko80;;W-CVWZxVGac(H|6W+t&ytj9+hpTplM$LeM|8yjH?a%OJ{Q4HtrpM2=(Xe4; zBnzy2qQb;fpW62?mJ<~@J;e{~5ib_#IUlY%6Tz>w!#~OM1`5UEhFS}J;%YqGKRrl7 zdVkyIRAfoo1oMt_96!IMC;*Q$7lPqu2~`l(*Lj%HEDqc^0eOR+!bEcPC}zH6$wK@3OQchMc$rBoXF4 zStR2Ub$roB*qS426Flnshjj_K*SCBg3m^Lj(IyhNuj`%zz7|#7*M8IB>bp8dRX}Ep7 zxR#*w0oM^thZsu`7jW}Z`~Cv!Nza751^xc6*Zhu9Ik~CgPSRh4tKVIynq`Y# z^|_ZGc!l(G1qIxkE@0{Ki7b4*fWKOpY-G`8@8y#8^!L^bDq6BlOk$(R+Q3ojcD`uD zX(^;;`EGroybJlm_C6lTG>TOjoht<&#R%25mEHi&1~$Q#p>%YNuc_xd*AyI z8x!>K%Zp#P63l$w6^S7>pPq%E?cP?De;{a!SA^DkJhM8r(gI#cRV`s7Pb6L?O(eoF z_e7fOxq(c+;SK%PtiSh*i}cyVx6}g#EZw+$O#t{1uLpkXr4PU`Q2(*`s5KdhLO)+uyJMBPMmg<6X{dLJP~M*A zwO4sWOrW(q5J^xkxX3OKVVU@1fdcC_bdJxH_XHzp=^^Rpz!r=}> zZ+R(vM%!H>Pq~sZr4)V`Ay{8fk2J5Yuf^W~?M5<+41R359)xLEgyxfr+2|6_-_i5? z=hYCQBUF7{*)YAy}mV@jIeHO9f8ujbz` z1>x$H2sRQV+Rg@q@z}6O=J=dVVtOrg{iAz48A3Dy>fVje-qK z_(a5l(%Z}D;a23qa1r%YI#)kp1=3%K%RJ3EN2i_&ONmpM1gj6&sYhD!w4*xKx=Xw{ z4w5Lrx)3a_VXPcr8>UpS>^Z&{`n-E(O!8d;lX=u--Ze2*c} zUKDLsVLBRgQ8a!ngl6*5`1Nwn;_*;Qp4ObNc#)0(`_yi<+?R5(ID=W~WQS;uI%(&v z!@xecZ&qdSL z1=SYiQB{;ORB=tM#+GV$8(V&oNF*)bQrA@L{q)^cj7vR9t*zNj@TN!I2YlPfS_ybJ z%XD1-j85TpW4+GAWTauQp{W_&*pggs?t}tP%xGb)5{j+iA+4x1mvSK7*x|yR0$kT< zc&~r{l$mm7>D1EHaQiVjed`fTyNdpX=`QO{!d%kR&25y-sys zQqXF>k7`s+1w04RE&=!?hh_Jvkw$4~au%e9o$BZ_lc!pqOBTJIZtfS=(Lb^-lJoS2 zlvOT-FV+~Iq5gcgzfkRj+rlg24nzZhkT9O2OSx_&%-!!vs)<%bIyAgOevkts`f9En03!#N181_mw zYtT6<-!lkDk80G)b>5H3U@U5GWJ`&XMkPse7BGgK>d-NhGn$`EV!WNhe2&T-KW7l~ z!kt64t-Oux=Ke{0;@R09N=#)zaeUMn(+c&`+vvHFI}opTw(YJkX+twe@*P-*szZiW z@aQg-egglQMWDD?S{6gqQaWMuS?x8oAW0;leT-9Y&|G$bRr3|cwX$6M647*k9+cnHI>@-dZPo>Fd-AePxqe*)VUhYJbe%Y_2YpJ-r ze8pVAYA7zlr$>BkiYEo;0{v8B^W;D;h`yCQRc6cO&kLY$3dW#2s)_c~w&XphtU zjEfk38{ZcLaagr|je<|1hFR1@O+>*N|D@`L+~ijj=weO2-|QT?*^xUwu3%7YN$v^2 z06>xD&WCA~ye3=jeP%F<-o{5Y&SaOH&vuhX)C!8-_iOT(o1UPLxz-7r(~bLE&Whg! zNEQj1(;Xnij_}VWj*ez{OvqUtwCWV3PAcnr>N2KYWlSWFDua4uTLZwndj)H>hMkgk z6;AC|ykEZ*=4TmFg0Fe6b1I&nDsD1iNq*h)|A8l1qMr~yG zhGk}`UO~m#zy6YC!r%XA9xfLp*EVedBEkmjO*D$+MEUO(@=7?ui)L8T_BTM zY;gy|b4#a++C+und3r(%u+w_E4I3>!iy0Xy?;eSqh8y5b{%mFevC0#d=29th<2N|A z##~}=-~X*@pKxl8xfJ{qU$A6ad$P*uLNpzSbCYRziqFG^cza+Su64tE*MY75gP|Ni2v{;Q1~ZBI77cKQWjRGN;=qw1z% zWD*Kp;Q`nZtI|}-mX;WP-SJOS+xBLc9FNiX4Ps^#juEcOuT2v&mp(umC+*p?W-hEW zbgrepYbcFG09Vx?yCG|FjL3M4>`+rQ!a`gN-FRkuAtzt$E0z`y|_qvO1s*Tl_TYOy&#n-`aOGhp4J?j=VaZiKI@p>m@d9h(iO^ zlDVSYW+AU6b8YhW8TbS36CCyjGz#A4CCWqz&70<}NPVFZn=pOl2Aeo@UEc;^UY<(y zoB$i9HKp5`wDCBH8m4`9%+K=lrk74GZ3UrBG*)BV7N%X31BjlB;4jx%y4ysx`_+@1 zzXErzjmyxgW*>;gQdJcFkUT4nU9U@fR}}&xPQA_n5x5G%0sXCmUG`Hqh`p`}R0nuz zPfXiwlu}mp#2$DZorb|%1WH4wGO;WK^$7b>a1m6P%X^ObW5DQ_Zp@{ucKykp1GQJ1 zWL-+%X1TAtlC>9yJDr|vN-r(?@s_=6!r#5I=z2s|<@0nZ6KU!$zoG^oJAn?ldk*@s zPLT$mqI*tgIozik;FE(OIG^iWbPH%vtJk|PE}{<0j4jth@MoveboK-Yf^SQUoL#as zmfW6b%{B#6tIBR9)_bGxjnep>Nk_jyG#H#zxs%3bi}k7~!gg1ndN7V!^*8789COG6 zO<7ukh>z|-g2kSc19?g|@h!3(J3H(8o?nsK8Yv5?k4<3!0+rb0z`b|AFVT!E=b z*F@?{lv7bC!+N%y5N84WG=y9Yvw+N;X32kZTnI;AXmWnHp=yG_oeu_KWngqZGGD?3 z)M>-vaga=Oz4w`kQ}hs}Z|$T~!KpC6^BBVf@>IonW&uA1!nzK=KDRm*Wi_V=DWcq+ zs_K_vEzyJKyEwYAnxD4-4@MRsLYt$X1(5ie~l5x(JXpaih6 zv@j3faOC)RNLOjOOI|afY`Eli$Qb4vC@(e4{oJa04%6}gOS{QKRC=OE z2*mlbdRJQ}`z!`8WQLuK7e!N0(On9?Hsk6(SS!_g3>Qwro)vg)aDhP6!mjIzgtpND z#>h#u=%^l9(*-TgjW#<`sLRCBsUl9x)xl|FRR&+$=mpD=R}>}OU`|^Oh4RZPA{!IdjpfvQ-s{T+z zCC+h2t20q&d$}Z#R!>@zo@@tA@Tm~a8SaS=U!K5JBjr|zYG{~A0Z6`}JzGwaQ+&x( zc-;TkNi;Uf8NTUD@(G#0IzV!xBRi4S5w@;zx(tsiknP2*EXen#CX@Xc7p1^AflEx_ z-t=_2&QaX0%quo3M0GsO5i-UIbh@LsnA+VdGQ_Had@`wm{2ppDJIcl~H;O)v9kir0 zP{5DFBBg&qbab>W$hW~jEZ2=d5IV_xt4x+Vn5(-YZSa-ak^ibF8Teq;LC#}{1yi`k zGC=UpXeP#2W23O=L~lg0q$O)7%c6P@M-<~YchJ5S<-?zobjT{sKncJnw6dc^G|Q+< zgijiBzN9XHpJ}m@#})%uTzTIM8l7-Ka72KTvS{4KB0h=iiCuKNViCfga}F_DKbcd zbf+|e0s=~>fOK~ZARW@(HAo{R-Td~9dhdO`zVGk*$333|_w04nUh8?Dwf3GpG9O>= z+36ATO2@rY;x8BTO2hpcm3Qk#FW+ORitGAJarbc^J4}XMX3f8b=SUDonzn{q*kH?RMHs5uucUJ`B zzCI1jSa{T3G58{p8~0L1;JPr&)h2EU3)E;47Q^Qn;pT*H=4yvYi#p1cyR5J%pM;xa zmee$&o5x5&DPj1QdhT>j%^mQ}s43%g$b=mnPR zsi|o~6{)2dRP;yQ%x3osJWDLP?lj%P;Vmgq+8z>Xm!LlEnlUD4)?%w2mSNpC&ivdqF%+J4v*eRvwbx ziDw1{ZJE2WIK%Nht!%H-xK_5y)R;&<8cjh>St;XUkY{rUp4uR5W7Z6iih8gcQC@!C zs`wORGyVll@PNr3k|c`IYZ212`6Pz`GMxU+!4eWQj9bELKL;aj^RE$ z-=xZO*q+)Ha(_9-b0T7n+oRc@-rQxpPAOd}fjp~!ABFeA-*d;}&fO&RP*}KhcWq!x z%GJgro~wi~Go`fh!cLD!#g#MCtxb<)a)lRzW_sFHYJrvdT>ddw=NisLT-iC|&9G;q z3S03t{74pe9tYabX?}iviCB1>_kz0!A4U4%GY-BB?#eLxp(9le$Dz`vX&{!U+7b(= zCoZQAwI=0j8?gjAv&0eC2G>qWV`pw@&(JyefBIoP?mrdXeAR5?1#%CA?G%ZZKDK32alCZE&no(mxwr@JkUI(;k9ok8)k z_7$zuY~8!(;f2p|_RW~@U5lu>c~SGgZFWW(BX;fbGjj9VMt;5Lk17n2-^IAzy&hZN zq=pnQy*c)(cA!HN$tKw&&|Y17S@Y$wmQ!3XDGs(1ZGAQN>+5_JJXAM@3gd$=yD$^y zkk|L*z~+{o8Ps)V?zUe&JUlui?!X^ZhMUZT8~ znEBo{IhRRKkq{S56TD+}=k4tt>en=(J66eWSMFE|Mqqch2GZ{T0K(E7vgAa6?$rAl zi{WlxLoaqeng)`YTVJZ4Dd?>;JEJx*4=%gX30GY2A(v~WT+7yJn`54Q`|``ZE81=I z%##@}kDuf)_TAJ{o?L!up&RYVepNgl)6)l?9;d-XHGMO7p=>sqGH#bsn76}h5K>^d zjrLk?sIPYF5(bZTESlwcI5t4kq%ZbQY)uZoyDWv#20NYjVg}3sfq%}lJI&K!)_5<8 zgF#1F-?(L*vcs&8G(+#f;|u;9@?&4jg3~`WIos=m3&`dGO9G*zVbbuswBRN`Wsbw` zvJVq*a>~f2x_4tVJ#RA$NR}gT zUPpFaE~K>p$A8FbW5v*vbJsEtwm8T+j7XIY;~DA`tyxLis{C7JpDhTdd<~yJVUERW zrs6_v=vYK)001yhZr$|wAOheCJ7q%au4R78chTK$#!t93BW^x`)LrXT00VcTC-cOQ z*8_GeXv(KlW!K0Y)ECO$Eb%)+$LeBZXRL}nd0y2nEuM9ozbo|g9zmhsiSgvf*JIDs zDUrLIudlGEkE$tPt9vv^>@r-q{B`!*Gv~!2C6j}epsHN{ageBx2pVU1&(G@~tUN>+ z()FH_gvM)MZ;~oygds_0Mu;#dbKqyhDfKdkDlmdycIqNC79-0`WF`CICc6eHunb8y z!z%6>nQlKGqWE|vTxuv8);@@x_s;7k&xD4B`Sj+RB;1%@TZ_538ro7jvriyWD1<@7 zDz8%^%1&7|GagyKP1hN;#TT0UAYV{>%k5{fx%1&1*N&&4qE z^JwD31x3BtTZ2=?ir8^?i(9yk@A}EK&A*H0VtqwjiLs9D(UoK6daI+;0fLqs&`U?J zO!-XnwfRs*P*sMNRWSjw^}V-T#*i`6gja-5*Svsd*WCP>w=-NB;7~!>gHvTU25wI_ zKSU$|X}i-u_N$8X3<6CqMP16bZ9d{Lfeb4z%?Lc(vKX$Y3DWm< zrwQKyg8Y56J$ho!JR5(1OB$xJdaJpCo6Flh8Na2gxgny2@bub8PaY|4GKyt~MZm*q zwM(SLwDnBUaZbe;!-1D4SlVEnv0?@JfQM}9&nNkANZxwbQ0B9)kj!p}B@|FWUqzVh zHHfXm8jB?IJA?8RUoFaKT{3#Xim;nx1cUvGHt~mI%i)Tg?Cyq;dNp1X zh-NFI3Nb^BAxukGgHO6hMz*l8r5PB`j-GDx<<5BB$9lYZuoigPgTF<2_f=w`ACU~=7b#yNf%hL;qTrvEXRajt9AZFgZrLT8Ww@=f4q|-id?TW}) zFw2Ggy?mF0*oFMrXe6mm{#L9`_m>oGkVo;!JW>}wYuwTG#w-AWuC-1Qy>PcXHRw?0 z%XKZh0uHJBXFoY4vTJc>Bh(Ea~hW=$ZBn#P3QR+id>$3C_a&p6V)*_nh@thN{oX{ zds{l##NC?ET#s`-tGGbVl5nw*_jS5H=SqME!7H!+u(uWu@Cc`wlh-3dp42y_MDe~> zyhj-a%-Yj<#T>k1w@%W?8s~x%x3N%;>De8p| za@;Z`|KUgFPZK$+>yhK4o_Ha&WHgz?^li=rTtxKRYE60OR)?50bD7KKZ=Oh+hF%3U|{hPv*roKJBJSp&+1lGG-0JBlfV7z{U=Hg0zGe`SK-_S4bCLm!K5q zAS97migR8gQEx>f@iiAxm4|K07J($A-{RK*+O|2!!y<9dkn~4$^dIWFY3{PiHz2PC z^)%L1%onA3z3T{15o@i@bRkv;w@$M2F<_feT~hA$|;e@|=>{y3yfZV(=G<`dktN$z^Z7|H1* z$9n7YjN?<(*rC?q-XZU^TNVhU(H3-ix3HZhlEHr!c;7$JY(1*I=*I9ioy}ZXGZw2lB*t3~@4BP}?J&5&G zTlm_dGuAP)(zuAXvn8ExmWAT(Ky5*%Ys^Z^8yUrS_~POak2b13bzf07*giq?_M=X= zNd3JK^hH(dd8yzd*Wsv@U`7GqL%JOT$wNOJ|A8AZkjjfTj<@wow2hH7&TQ@|BPjQm z1f&kP$@6X<@R{b_zS{G;40d>lEkHNT^>ip8PFUvQFhu`BVtM94? zj#e1X?x*YQ$IMibH^X5?@yOz_MTPsa7cVR9G_gJUqL6R8e*3JgRLS~{o;`!e&+7Hc z1o{g{TbmDu?*p0!AGrr}rlJ(dfb}fI0l9M? zM@wNx#3I^5Ak+Fe(vI3q8eHCGF>EBo?JwKpb=2Oj$ercmo7?%cu4i>pmUKO-B72^Z zNU|Ttkm}wMBXt&8p9MT1qU+Izm1OpY*r2vS33SbrtYmKM;HWJ04BA&HAH^jgtGwC%P!P9lO; zZ%wLR-WU0ww8{4cyY&4?2AG4+$%S4$G5Of&mfPUsnA;%GIWW11dC!T6v<0F~yZOmj z40_cW89Be;=HVnE!J>CU-U#nGrW94eL^ABdQ*oGW5TJ}uO&nLl|OQJH4Dkhp+$q{)w)7nvVw)4(hPDIPkoWXzGMA*X6 zt8UaW#T2{mFRr$>7R#e;-RmQ1B^Gw3vca&eCdh#*eIH0hoykHTZq)3oJM#Sa6!xZT z2&S8drfBmW=Sj1U3#v6&R1DT7OPYsr8r~G6iNeB9aRry3=73$L9x`tVYbwe_=8W?; zDs{eOKkT<(L<_PS*b4~Gbub_y4~!+sX5T>G-0FJ>W#UG?CAH~AVSOvYn_{;by;tNM z{XrL&8$D(rx=?PmRU8HNhw5hG){#4T={w(DgvjzUI0VimR;Iv|W&xjDj z4?-s5s)$!%L*PZ@^&T}!23yY#*+3Wd0VVF5V0L`f%-(1?L}3xdo+k1pQWai3ZY&R4 zLe(r%RcIr!ed;}v*p*}zlcl6+tnxdSRH}?qS1N?_Kx-b;Mk-~)O14U&atT@_B9dpC zh;E83bNBsqq?nKfqdm2~IM1|sJaQDy9ZMt`KT3*ixp?Hn=r^b@WpUAa!@6Bwt^08C zsG0>sjitJpv)G3;kh}D4kh>tI3zKgGj4*ZNg+l|aQcYue9N!f&0&B_ zYrOPDeJOcq1v@bs2T6vzHyA0AkB>|^RFtK=0h6<|e=uJx64wqWh!4+mKB%%8f#RN zDq7rSiRMG&{x=Hd<+d=VB|^bW^0!#aRz&x;Ln!*7To!&_|0{3o2dt z&CZo$W{ELh53XUP8O#ViExuu~>*hW`iT>cp>1PsNFD@_kRdgxs159c!iv%rp%+?!W z+40vKPBTfndxq8T8zwTWNvqt8W4qHlXzAA1&761s{UNMGZS3a9D=}(gpz6gOvAgb~ zajLx?nxplgCB^Rz!zg0D#MxZ;Qd#k4Zi5zKOq^8k0!oY%uSeP=_UC5Ug6f#+IGrF% z^WBi)GP(4w5hSpNHi%IEQsn`zpLi16bbQHO(KyEv!3fJ?d{jdjiP_%M<4CM=wi?`4 zwR=}VhNt;W3{Zu^ZO)JEl7_wTVd{^MtJYH#@iYxR?ApXd9}c)xZ_0B6gx!M z9jKYieaR5Ih~8b>YH>zl&w%0<7LFq*`C7ElHAW>tkJmYh$Yc=M#E^vwkUhY~Ztv0| zDY&02D3P(ZK47r75;jC<%$gWIM7NE&b_Y_7+B_RXqVW5)mg;a?7TMol>|ISO# zLb10dC|hE5U^&qXF%*ye)m~b&J`lng?rf}os7%ERa#8@^(FL*_r<5R@pDEWUFnc#! zZeAltwD=hRb0Kc(WQCr&QnU{VtWZ9|vS&n|!7q-z7=o%Kn=QvrPuGctx`9skjg=mz_b{0)cUcgMsZzs4`_4THe%QW~v({*LoLnXnB= zUTvBn&d%#r;7GXz$lRg7;hvwj?!`+-e1hh(onXTxeU~$_gR75a=3j%LzGV-PjPO0h zyW)^WCG7`$9gQO#6%U*tODs}M_(GX0s;QXJt>*e^QRjPfQzoDjt5$5aNOI1n<@$on z=EUbNL54{ML!|T`xzyGi>w|QUqI`1a5qImkp_wU`;CJa`0Q2$3kI=4^#SW$0z~Llp z3E)%(zw#bDb>}C?*chY>gqbKsnC#+qJeHcBNH^M(;7=~sC=drW17TqujeVNB=nM9% zH?R%L<;aX(PfFBW`N7O$uwEkA2*27;>>aEkcfp}kBd!lMC`5N8b4KO_JVYxlVT8u1 z+~1RUGgrdM0KWquNF0*bTd7ua1^dF#7&uwVhQDwQWWjZ}O3qZ?EP-*aZBx*Q z3a%;-U#pE49nU)?#E2wGGhTPO0ye7C5b3KcgQu@(X5{*AfjLTOwrt zaqUSH+GU{nxlf1c0GLPjub_pF4nf4BU6yWT=sIE93~;Es5Hrx0|G@XyzwzBn2)9DO zNdv5K`SfL_S-u494e8hv9+u0w z9Z1~Z(*{tX>iiV)F#dEy@gDs(z%;v;x=0Oc2snnr;b?U0IOf>4ZS@8hQ9uuZw-Y&n zRvV!+t~%bBWj@EY+f{Ng2q^){D#Kq*anFLK>)xZUQ=#IGHb8|(*Z@>n@FHUBQFE09 zRya*i>Jc*o*RPXwi12tx+~zx)qLY~oiv>~{3<#&O@ovV|*cWw8@>2SwDbgAM$C{NbH!RIq@8ON*<0v5P45+yzhv7C=Kib9Sp2k~XI0Vpwm5Og1s zlqx2al*?v^G>l{*(hpaHN>jLud%=|(R8*COPdsIEVJ84AqlsQ=kGA4J-{ds`&L6X5 z$#gFO2+ewM(RdXba3g`=0*8>gfJ56c$DExv$cv93O*ii|WXtuDI;Q-b7kO*(`}Khz zPy{drP*iG9jAI8Jd-d%#0|WdHa7YMOCW>i3(2!Z;w~;Zo>Ic`bkd5sxft{qo zvtzN5eMG$BpdR`G>Sulw{|(ebbXQ8V1T{eYZM-Lf@JJY3`$&6#&F;U0x>XJV>O}d3 z_d0|zgVBvZv#0(|4(o(dI3z(E)D16_Kx&s8nN1{F4dMEP{xt_ghzk*++AnKlD(+63 z0F1vvT?2shmFeRU9j+U|psD;UsFAY&0qfE`wI_qvn6DYGo8B6~>GAJagN*%(bscxM zT-?vRo23fEu{aNp>05Rz^$6c?*|ZR;jB5oyVqNgNT$}tZ*C64AB0gFwx`a}v<#@Ge zmhA}DZ)SC9LGT{z4k?;*gWVc<_UkrMeg>z6_6xjVn+(EBW6o1GsqgTKi6~MXk|<-t z_4tZwluz2c^>bj&mGXBa19tr}t65d# z;?S4|$y4^Iro2Utb~E3d;s@7~Au`%w6WB`~PwuLHjg-$`9WaCUFE=>h{JadV_@9ww z2-SZ9uS|RhUpzaeA&C#PhOBVFfM$F4a4Nk8R{V$_QL7h0et_!z-no?ihzuY>aoR7H z=!gmFPy^k}t|zaFBqkijF}J$eIPQO29au-S#RBj`?0N!lrz(&wM|O%(ng-pUi2K!S zVA}0h$#o?PN8!~ECj}y70E<9HmEbCxVz&&k#F8xsc5gsr!IVtl@$LCbCC2_)_Y^XU z5h^kIBfvn1;i5Gm>q_N)X#&I-VTY0zt~T&%+{qeT`5v+}P#e~sq%g!;Bl`2gj(C8? zE=vy$KUi2Sj>i!1K`M~T>?b!vaADeR=Y>)@k1Fr;MsX4<4Ur4B^X{+bWXyC z(wA`r6gI%jL5&IqH43;B^W_Q%;{U&)C`YU`4iOZ97d)$JkV_!Le|h3XM zgX!8Ix1xSD)@rW)({*>U=@DEO_!SSZ)BswU5heof*FyJ)uYl};JCGfZb~uqsa9w3w zE8%T^K(isdk9p<-@ADC0Q!2KK;Aw|QUHMot=5olv6%X$2&jDBY89FU5cUl>*IXv=kxF1*+j*mCOJ34=V~xiK|Wq zanMIW0|OmH8U?>y0lSJes{=;m%C63iY3qtg38PidlEwEJUg-u(LfPyOB(UL&4b5bK z&jI6P!9c;zhlv(PBE7-uDK+3xaUwFE%_)NCSJ3-I;QSH+=HV57%+O?D;Uv+qaV)|$SGocda5ie+uN-OsSM{>cZA!Cqo+D#pU$m!-z>oaAx6)gkk%dG2ejyDg# znPjsB+4N!YMyYMIsV#1`YReaw@M7N8GGDnq*^^zIr9Z{|Y2Ah;GA2MR)$3#EcF_^z z<^+Wtesz>`p7iQ1!cInF$ijoBl%U5+6w}4FsQKCRA9$k%qtI=RbC!-z7{OT~_H-$4 z(I~~-H{3RrIr;?InUG6U=>{$@BfFa8SYreD7D7Hw;m&TI=*YGv7x0x@-?;kKy3G0p z=}Yp?mEvowHtndrCzMf&&Pdv_rSC^Ojq=DhGR3Kr&v4z_Tnqh*iW?>&1r}KkY9e8g z0Rs1`(;;z0~)0~-8!a^ z*7l;ySlOwl0~>G2y0jVZ>W)I^s^q!^+1_eHejI;}$JOU{#^5vA81a(2x9;(qptX~xrA>ZWY8njOesf(aQl}UVRayFJ;Js!m@BJS; zs@j-=?JczKQW{)0=$Nq|PL^7(u@sLwixHJNi=W8%yga2y&Z69iFO;9N^M}H5p?RS7 z20;t|QWZ4>QT;j@8Jin1niw}akg3Z4 z+auv%c3=$XF;y~is4ktHH$mAPZj0wc97a7ae4d3V<)F!8b+)vTO~Y_at@PT1OjRko zF;%J1@YF_=@Ko)O!*$T2N7FBS0J&9c^!>awPrp1MRoXOGe!hL@Am)pzl)~J$nnosz z)qFO2L94M*QJJk{ZW(9iK+fVgI67Gjq}70HB!c(QZYeu8uWZ+mu%S-%!5A)D8n5bu zB3!f$V=4BG8D+nzS==JvTFoN>}SDrP*ek9)hTY2^)$+^Y3f2*p;RN zM5zslZaS*+^-UW~naZ!5su)X=z^7T7I%iUviujP;wG=;gCO%_qM%j2@Z2>m&86M-q zJi(7XU0JyioFCvnMk(J6+sqO#8^ROv+B;kQ4tMuL#o(InVWVHHOtD{A)R4aA$SfRD ztK-UYE*D!E`J|EGrfs=5Qixr`L|zb73*mY@_gB1eetV)CM8?h9IwJYFQQ)&b)b`P| zYynWNaSq43MqwwbCn2r!dolw90~E58ZQ0}jEh$!?box~oMM=hn`Ssq@u9vp=-c|L@ zfWmqp#9+4l*7|R4G_TrAYTq1mW4=z_fR>QMYq32-mKr{c0>5pGksT=0g%U%@EHI7ULvYcuJAb%u5j&- zv@9b^fL7kjEnG5k-eH_J^nK_zddvoxF({Bwp8`8E? z8q&soHB=mI!TNP=$_}o9+jE&YnCgRy)5bg1axuz}ID=RoHPy{<-V6&(`(Spv;SMDK zZQP6Ox7a(JMn@$$PA9SAAR{c^M4>HvXb+;_Nig9KK-ODVC=6!&1yzNdI+N)Msn|2< z0$(jZ4rZ`^ww>^EFqG=yG#L0fK%#@-Io24 zdGv)+X556}gJRxWc^i@7AHx>>F_vmp+jOL#D_{Ta-AK~PNTnk$JuWHs=+4B$*Vz3j zpH;5&frq$2x|ygzCZ6ZLwcN-iCu>PjCb%v{#B6m6DL}yMI)KSF1Wc44$pYhWc==<% zVZuZOV6x_R2yY#dC|DTXLi>J($=f^ zIjSU!>gyYOCu~)r5+=0f6hsWz9?>#U(dE9Cp24B`xRTn@e0_VExbBqYv&KRY`~b51 z-cHrL`%pQ~PKVf4p^9v@n&(NYK~&4FAGA%ea1Z7-?MKdV4WsOX-4*T~hT4g#un85` zYdFvgsUu}xc3H(1EcQ$~>=-Frb9>YGt{$?XdGUSo_UWfg!pDY394CH~f{tN38J$B3 z*AFMkdz74wS>>VNWK(oDf`4AMLLWqYBw4$cH+AMZSkY>}Cv7Wxwi~LwLuQ4L zyY)w4V=5UV-LM&~Ya;80Wjs0|Q?*Wuy-4FC#?Kf;YG_HAH=5eL^v#f)zGB;q`35A@ z^{5P0Cr?1JZ-Yi@@puY@tRf@^ONsR}7WnDbQq2nT^roDid{T&<$$Ac1HgOJF2Qj9S zAl9n~s>ZZq1ZPdUneq&}ADYqRqj5aiQ$>8*^WCF9ElA4jt(y@kDJX9Pt0)V6MD&?Z z;f4MxVSQG4>y6k1KN@e$@WG>43g2*Sx0@07@H1RgSn1>$G(MnU$wN6aV=8s#c(1aH_9yWuJHi-vIZghO@%}xwiZD&j3 zh>YsV^gW#dwfaW{@a`?u7&*GsN1hWfX72C^9cB@mmN&u!VA69VBP?&!{0)aP$W+-x zU*TJDcvmhP2Ieo4{5W-2->zKLXD3oV+GKf2i5i_zk>KA61))T#V#_zlY{@q)6dX-u_Ir=VtH7!$XXL-S#@E zj83Y0zJN=E5KDMeX>Ku=*oefPq@BYg`zfnmWFotiizZhcF+A&*Pu$KVmrhjRI5Ic< zhsE6z%)HZM!@JH(l37DjxDpg#_Suw6F05g{=5CV|cVb^c>Y*oZMPqlKW@uI)uA`-T z!7J+74!+ptDcLq(6%X<)c?DJ#Z;GT8Lam&*{Y|rJ`6)xDio^Ys_3GE{IqPx7Wuje| z8H>wqe14jrGRgDc5HpW@Ar%H6b?ffd6s|tKJYV+u@-vt6;!cpC%2kB1?PoduLHlD5 zDpH<{Ef|iZuYJV6XBH)21|TxOKWwagnt z+K=2B6h6ER&h0n34WO@wX6P-5$i*pF$K8P%>@DRmp)=OBC#fd%Fq zg!Ud#v(5XnKeGJT%lj`APQ6UBEG()Lt&7WS+QxCYz{&JgZ24$}{Wd%=@iH}wpN+wlP-!vVvLMt%nQqFXTpS2v#8I$S1>?QV$Y0^Dq}Kd9a4ly zb|^opl7ZP9fTN<W6U(!yjzX#}9$y&GP^j^2u zW3I`I8@8t&ax?pxostRQpA!)PnL}Y-=Q!@=nVHi;He#i!Tf>y6gZTyp?biUk5vH=S z;c`kGpzO=(y#nJPe7sOnb|+Is?(7A($$j`&CQR;wgQ4KsNBYV#;u^vXVC_R6nB-md zTX8^r;)d)wLswux=oBiA`6~?AZ$VnVW*{5_L@rjFfa-x61+Y0P7;atefyYe~7}_XW zZ6t~t^w-f~K(6MX27kXz=Rwm*c=0%{Q0v4LlW1Vsof}E5zJ+-yg_A=_-#{QlPSz?z zC?>v!B;+vtjg?e~`f#<0Bp67a>h=se?S(%RI0Tq_lUEg>)|p+6I7GTT9AQi-8w*5n z30QI>?U2@gqL3R;TxmLN56*aaDH6|YtiMMC%=6lf=<7^c}1-e`1ODm}Y#bLgC(6^lc9M;c$|=Zfq{Jgd;0Lx-sxAllt%& z<6pLJFlN59fJjVVW{d>?0Xe8YaB!uoK@`A^>T~%mblig4Z%BfYz9=AYLGQ$_QeHGg zGb*(|TkCvpaP23`+JMDe4)Ea|pzUi(1#GgP@e1Xs2(kH=zmEdK1E0@(l4tsFf8|rz z_e8&oks#_eOC|zx26pg932lRqNEID)7{{BeUc=wic2DL=}Q@|q37l|BB zsNr$y?hQm4Z~@Y)y2bUQ5CNnr?t{}#^M$;svL^SBA*v4dV@u;rhV8*Q4NxaW*8z&XUVT=u{gs|{3$pMZU<$bx&bnRsLwMGKagdry|C?k%eQ=&)VT%y(zu54TQWjei=u}+WhPxDv9HiFXVt)xaNC_ z7<8$5<2YBkw0NlXm{sy0oy=D%DCSO~*RqtxkHDvSo%e6?4VjQTgSTgZ_0QPl8UDpC zi5^U$nrTj;(6Stk6f_m$ufO;jejD&r zqQ`hC-Hppz8MFZ1;REAAY0n4hEu_qrxWM!bFUkIezR`90oo={y&Ea@;ww7I5{JcME z%M)6mJt@EjC+6egCRn@aUux;CQ}`&{Zb4zf2?t0K)QUKv78C3xKu6b^LF)`c=)Fn! z_+xDz6R4*9Fnss)R^RWJiBR*gxyEr(q&MnmLREc9%pO;*hTm?ZL=)CeUat<+H@MoJ zSdqJ74-g}~@b8Z?>g~bD7|mV!*s%-s|fP*^ua!%6h&4t)J3!&E2i<4D-nGL1)0&en39)>+?7r2g@F z-_@NN!BgB<#`dGFh)ucLhR0pFC#_G``qVw+lh<&?lP4uk8VhSJdG1y{46gMTaom6Y zt~<;oovN_@V@!Zy0_LFOK0c%Z7CZ?NIJt}WYTsVKGX&N)_WcsqdpFn^Ta_P15ocpD zo%hyS>HN6BD@LE=;vT!;H>9F%P#rVB9Z^|FMI_p}w8aH1sAlgMSB0sMW>Oh29#Nh({)=Fv_o-uw6<9Lp!e^F&FeshHx<)5&k+*LyyOlEvFJ3DaNh zd4WAYgtE~_DR9!YP<&E^uOKbTn((2#=ti2S*MvW4XpV`!i;M~gu09^SW!9XG*1#Ht z#wxP{)t3f7b}GayyGzEMd<~}juCkJ+pSmccHcao&0Cq}0nA#}@Gkk&xie*N;R`uwh zb0#Oe-jW-~LcF=r9Fq(&@nscXYl8=qsUP2^I`2GbdOuxu|#a7DU7r+VIF z`C=o^)%vKN>av~(GQit&Aw$EGohSBWE2?*QkqFhO1Lk!&>nhz*@8P_v zoZ7kMOI=sS<++KA{aW50@gmm0q zq=7;zo2y?hi1UbFCrU~Q3JtA(M2eqe+aVQZ?&QZWE4z(ngi-lmiH6iRz^QHF+D-_B zbxP+&gLN`#^4ow#8jhLu@^`=^-+r@@$YKL#!3yCHo-EJLG4H5YV|BmJ|(|jO&uY`dWna^qv%`9_N8;vb$`28y!;OuliY*Xrjz*JDjehA>w%NniP0E%$yjc2`6=enXM0P z#7y^v^<-q^yZsdPZYlPu;H^}ZT9c57&!THSC|W9jL@8Hhv;@o$(!fVDaI*` zgz~Y8K>GsKnvI>VEZv{_ftYf&7oTwQCR(cJE7;hG*Ntl7A?b4a;YO75@{aO1UcL^g z6cG@U>PIWw9a1I#ZH}FcyAI)!z#tWvA{@Sd+17j1c5&o>z9+Z0&^vb#v(%n^=RcwY zMlR*RqcdnHAx=MKE&BI+-jP1FU*;b7Hm5&1VnHN#CJ>%nk%Skg(OX>y&=QgBHJv0i z-4TZdIBBFa&ELL-=xe^<7!QSKs$`SLs|tRzYu)=sJkp%6^H2;9{5xLUVdlkv1d#GT zr?w*a%q7a>BDE^}5LwtK-NAbmap1GlwU@#<8obVcczp9`zSQ>rm0mD`w&l_p5P44e zhwJ|lC}xm^zK=iiYW>1%MV!Zg;5gtdJf$Dd#OSBC@&3+k(b~VD5Tz{epnKcO`xTrf z{I&Y8`&oGY?K}Qkm&#w>+v=($IY_`KOaFV4^~U~UJ0j z{SB9Y^c=E&LKC-X+wp_0KX3`?I`A7^e`eI3Zsp!=Rkfbime_S$zx-mF8a2Syku82U zzV*MtvVSISIRa183tZI`H$Tq911VaJRMNR?8lP-q7ih+Tcyvn1{vLCK+Pm2Wn)@}D zHGHy?-c)ea>;Id7e_Q{>KLC7-Yr|I75s^>+Z%^m5j*f|k)=P_#|{!P%Ca zhwkp5;lB1Kg1Ef+Uv49yg6{=)_5bF_O00^jU++xq>HS8zxIf|B zJR;JvX5g1f{|aSb{TBe&PXb|i@R)oi`{)*NoS#rD;k`t2<8^;RfJ2*zf>&l-%8!dxUmmVYmxVVefpuq`k&Y{U;U?u zm!DYi{#{J}ssNjR;rnj{PQpb!UH$ju{K@0pHg~(YPHk}wIfLKi!Rb%R+?D4>u#1P1vVK0W+b03)WxEWK{sP|6?JI{C6tf zbCT_;e9}IvwBHo();IL*?(H{C5HR#d_bA*^JGV4>6f1EKRR3@0J0=VJ6&ACqr{*&Wke7HZGs6H@nnwY#*J z@0@dnXF~g#;Q9i8^ zOES9)ycl+{-1!=1k4#~)>QFnoa6;9+VaQrUMzC~`l!SOepS~_~3{%tYa_Cdl_t^`Y z`aUO$IjsC9y+s;JaZrfOB3?)8y*iDhFzD%SRGwxGVf^J(TiSM=Na2^uw%tgnHsOvgN^?~7emI<*!Ve2L<@qQ>%Ux?kpj?=Ua)^BHo|^PD(UGYqJ8=cL}ViD)*@ zd?cD~gGL{3Bf4@r*}KAwWDQ}9C!QDZ+4xk9#y4Tt9o@}k$X^KIUy?>&5MTP9CT%F8 zAZ2KN7%FD}&lmH@Ul#7q?2oSRQ5l zf^3SuAmhY$6DQhss7H+V-Irplg zV%gJ$6lD$$B>pi&&6mr1ok%pg=Jdn~r2NEJEF)~h&6H@R`9Yv?@#;rzlyl0?AH_$_#LRSBROBdD{JJe# zRYu6vlX4VXDx0iV;&iilH4N3o1q}moOX_u)z)U+ZQRFd~d=(t=)EVlsM_2dlO}S`A zO?`?e-s>LCJ+utCC%+$f?5J4zl#NjRN_(^5k+|rcxl1stnHK9of|{bFv5ZQuW);&4 zA=j8MfzGe)myv`@ERm^ej|)*zR(u0*Y>nlJXDMr-N(GOBj4pP_d-U`1gms6GN+L6t z=`^0L3_R{TS|44F&}9mXJ&RMw9q-{Qdk7ut(J#29a5>SLX3L!`bkH!fvp@bFyEiqn?g z@b{Na-2b#QQ8>iXszT4hpRSZ`+l?@wVVZh1hc!O>%2DWtzTTBMWXYvTd44$^rppDR z{x}C62RADI@w%RYt|Puy6(kEd{CawhD<=D++ujR}5&R85>S_ffzS2`hrb)ILwug_F z$_H}QWy=9zWoK2_m*UKmCYL8u)sHKB`lI_k2u0)lW8@SblIugA73P&;hb3lylgd&) zBXD8(`<)~OMJ3^mw)gRZk?$n;2 zyPwToxSoC&a=&O53ctgDdbYyjen#GPQ8Q@`VpV)!F-tjXVH9)0z`?#ST+l7IM3;8H z=jfqmx&|8ky0xegk6$i+oemRsbr78eK$I>Aban}Zm@%>&o~S-R_y-fKbIFp1;!@{v zRR4(fmL&4L?t6YrU7wQyq7Fy=n%a2tz_!GD?RhrL?hp*~O!W4=ojIAz?&GbP1n3uQ zuujy97B_SvK935QXjH9vO*^H4Bvn3Y>3+Qb5yZXHu4jc1p5{}=c;pTKC0i5e3AbSj zf$;7}-f&RA{|3_cXxM4DGfvHJK$&izS!Mscdz{i zhMA|%eeQGabKc>d@splMy^fy8? zuw)50U4all0P=*E1uZO%_ggqO^lYKJ(!EcvJ!!HQp~akG6lJ8waeHIoC7o&eHw`63 zQjeMAQ&S>Y;G=@eQ}hy+p54-Nz608p;TE>@;0~);NnsVAx`Jz{tY1i@(VNj(J>R-?MKv+J#?w3cJ;-cp^vR*dnNtM z_&Jajcrjj^e`J-#z0_y;Wpf0S1Bg!j4ZJe`Y3;lITcz;XuDA1LElO-}=Ob-DV8wqB z7Y}3FKihsU&Rb5#jJn5=-R^;*R|JqEx*}mDV5g8+>QrjDb=Im#X3+9UBJ)aFJJW5M zJdw)2bQKbpT<)fC=I1zOAc>!2y;C|x|gY;y9N}c*ttjhUv;-|9HMM{3#aQyt1R4|`4)D~5Hj#} zchK+PtA)uytRz>4(iiLuP~xIv;iGA@1#0l;9kq5&Wm(+HpkyFykv^hcG00Xr2la7v z6x&p?g@4q`gUZZdm)Ds%owzPbHpJPwCT}x5BW#vK)9*j{D16z&hn*t-2tKNzJmpSL z=3BU`K;qFxV217k^PxKu!y+M>Z@nO}oKi7fw4*5_2vIlA$>}KU;0(O5?sG(Wae^Os z;cXl8R>iCEQb&5xDcysWFLxlLV8Oeet^ilFrha74)O@yU$8r**X=5NrqjiH8)>aTX zcJCg%lQZ$Y1reA;hp5@c7D>um4jIV`?|#d(!o$?k!5FVtP2B2apd|Dnc#qJ91}I)C z>Rj_V<;MJU!a7Tw16l3y-O^bbl>3zqdUax6%^j)<6`uCr}! z+Q^8v$>{Ym^@G>_Z@enKSO{GtRR>%LdfUp|3KQ4}bp&bdMv@}Z64(m1$EK0P_Zf*1 zZp+ZXSA;B1_V>l2f^hUlIivX%eByg(E3@3H=%mp1*^iUU#ndsC*?jd0fp|xq>oj|n zXZCf6oxn?2&<(j)Ie+bJ+cADb_sjyj)8nbHF@GA?lzk5!W<6dtUd!g zN?H=U^>ra_|KQl+jFoy&L~54)bYJPnaxlb;^P+yDTSWg$Do1&Y*TDN)u?9csI#gM> z6+bL1tTWoWAWcf;Fw0dg-3Q2Rd5dcg8Ph?qwz=3Do-S3HJD$Xy<2Jx;c!uYUSb(n| zlsvokcBGmpOw#t(Xu-9~@*Yf0{D{r~Po-xT(rl*;A`ywx~5@$m_L&c2LR zpYhS)Vofby%L~niCe)}N;KFT^@8etVOD)@O9SsIq;^nrM%BQl#-EO06%Vaf?4nW$5 zaApW0Xzs7<$;A@%G|K@R@K+5L86^g*@loh{27((C2k7Bj)3lW+q-BG&P>zqF7nah@ z1aV8*(KsnT)1030t@lUzz-}3uL{ad&liCBA&S9i)Y-4@bS32nYpITSsCd4kSnXiA$ zXH$yx{h5WasDUcx{`#>)EF07##?Oe2ZDWP3_y<<*uYXH7OH+yU6^_;i-$zDE4DJfN z^Ii`i_addF91Kb%ATqc3%AduQHhy3suoD?aZ!0(}z?!;x6vm;?HF*^Lx^RtmHu>Zp zVImETCX#IOrI^~m3&s2$g7sUt)X-W4J_RT$vhahWYjTgl>`U{yX*VX)8u1l9M9CkX8wi8=@SL z1x!LN0@lavKuEScWdmw0DX4wn9{@#U11}jtRfk9lP#uw_yNbl%XO%|cmXCqLo@n}N zv+or@u-TouR66#lWIlXcfO6^4L{dP#bH+2B-~^R#Ba`ech_WZHW3xoIC5!UoSANol zD>ApPWd}=^&TGc&F8!3u?CeWmTOaTe0?P7AQ;?acgI=POtq)GUDL?C@0Z^YQjl@fR zMWeMlK$~J^LHmkk97v?6NrSr%Y!9g;7XkaydEZf#Sq>p+z&*gL=yXG-MZ=X!Nx{Ak zALUh^f{-92f9vbLcPcZX=`BE-`Y4*LAjts-H-*>*AcI$ZP=%nUXICnF>qk1Aql}XC zQuOZ|oQxa1YQX&alrEHzE#O+#lOI(xxX7IJ4pJ)!_A4*OjTQi;(>rCX?BW=T7k&}{*XPt48>aMKxO_a#KzV=vH@s=ss2ht6ci23&e z(2g?l#=ohoUQh0!V+874fY_s){!gLgRE6?7awbG=^6j%QHO%vd3LtKs5=)+}^B_mw zscWDFd{Dzk$5l&AooEy5Yh(LZTJz;+c$?di6i&o%U_D%1EXFiF9?lRlNWwiSjnqek zy=Dt?B*NVA-M1ry0IOpqK@XRC!O!H&5fA_{iKsEp_V;PuU1DPF(NvF?mCy>3%%)!J z#T=!GoYxLf+if>)Dz4=yBz+ll9q25SSRilYtk_gSoEl3n>uu zcQ^rh+u`{Db7So~w6U({hV;N3ohLMYC@9%53&+w}uqpKS$un9Dopd6&@tvb|bY2%1 z+1Xb7wH0p{_Z?P%tb?d=U(rYN~JUXEseU*h4Vt%nGc9k9mUi=X`n zG=?{1ff$|!H=Mh9aK9sr6flf(=WpF@6}Ot~rLF9_$~~hguc5o|y

#fdM}A!=eS8 zCkUHTUMj7apC?!_@8NM^3%^>5oy`(w*Mp3keqJU8aDzrEjN>EMq+q=wgWNqOA82^p zczzXLd1h;NxG)m=Wew-+PZJB1XQlIdIP0NJ7iT?CBPRe0nYWs|vK)@L6E?@^>1SV_dz~?xeX6~K zQb;Wk)z@pepDVKsNv9ucY;2UkNST$c=;2&{QjU4*T!G0&qYh)~3p7)&N>*Rz32~0w zHjP_t`WhsCL;|M)rOWwLA2K71jTz)&HrbQf#MgByun z<|$4AQ(rbI*7!>sQELRsK3Vm{It4mx6&MCA*J>Z6oN%QJ#4g*OdRdF1ZchCA^Qr{f ze3q@rF`N4gg$esNHhbx31v8jznS^QWZ3QzSQ+=8AFu18X`HSaDEno_PwuEZMP3nx;bP&Iz;x+i zo^5EYtc7pSH@tdx(CRVJ!LWO{?oTJs+j6~HH>kB=kK%>6QgyT^op<}`(!dYWR99CpDSwzB?tP`k#?#SS(N9t) zI$rvi!8047l+mlu_R@*QMZlzYafPC@J*log&0%% zZRDM?B}HDm4KB?TR4-pKOpwLA1S8_7t_? zTe22qGK0;%$JEoEQRLPl$t7{!Dgz@EJE?eOG1rxrIT-~clFzS=`Od=78cZ!mRj{K-(+JR zH*T>}w>HcOuvv8A%E;uP!m};*K7G8Ra~mx$PW9-dsh=dbNA_@uLw!WnIPw33JZerj`OdjsCl-H95H&Us6e@R*`B|Wc6Wv9 z%T%YI!I1?j%!oT|osmq80w+ve@l8zxM`!IS^%-iIM;lU&_EtAKl#{*Hb{7DXZ}~KH zRQR$*RXGPl#1IJDZVL;JRYM;5Jv2n6<*4K^LX<)q_T5sgb&*FIePSAoRvjGq_*{A09x8NEc&jxtpaW*1>rzMx;QDH@L}T z$a^Ox5-)Et+p+xGSoG=g7-fkf*M5wp=@@V}r>Q`BIENu4u&3<^a4|vy@*FOR!O-&! z%d8*`vqr1(jyIz-(A=Pqa5<0nZO(*v_f;@s5N@qc#lw?Ja;(k}A!%2X+gQM*6!CY& z(i(b3v1sbiFk__^c?f@4>PDktHu|!pZ!!$b%pA7YGx`GrVliLUm|o(~Q~Hp^3cPRIan#oyG-|D}^y&(w#E%LCP-DLzd2qWs6DK`> zI$oY$lH=woHJA&M78YQ0C`!5q>`1}Fwc(yeWobd{Y?z6ISutJ70v!+d2!%t3zzvOJ}66^}_fmG$xgd(fxqVGA|nh0CPaAYWi zIqK}Hn7k5>F5=gXV=j!0Nr{?iSJ_?hi*Srqc?!^$BVA$CJ#*MdW_M-i)?jxzFela` zH=%N23{2`NpuWv1jC32P?9&ayW<>`i8O{M`(`O0{<8cKMR11B2lypIY>A8z+V zt6V`EHNdS@n_cM3eode5ZGAx?!c6QtGjX6vArq%weI`LA#8@KdETvmXj}syoe*%OC zf%v+6)^`fLWn-&!)HSi6j8O?WEOv#u(ctLH&iZm-nsT=gC#2}z2@uY}tn>Uoh_iJ~ z94H`5P}YH*Ter6&hUf^wrBHSFu$q{*mUj<-|2r&7sj139zNX?k>Q# z`_pZ})%}hQbSvtPaniXiyz%xZcecQ4{L5xg3vIWz|0)5`17BAlc|MB zoqN{M8A(!O+I0CE&srcj0uT0`AxM%gXMW40D6f&;4VvMRi?SaPjW^i@ zytxaCif?>|H-22*39zHO)5u6jizLmFX;k`+pJG^bmFc@ebzh=v)VW&XoOiZQ?!_Q+ zDhZThrl2TTIADXG^?3NR5E5d>zFRwQrt)E{aXn0FepfHM{pv19c0K zpL<(fUfMnDoO`^pz-ZEM)hA;gq_P4h(_bW8$&6RFss^*{H*p7a2h550xID$73OjAY z!jih9JS93;!_tz;WW8NezOpxRwunZwJcV8PFqPfaCJJN%u*`(<8M(M9we(cN|4<#kB}aJnU~AQdleaK8dy`hk~K zfvB2oc!v?C&WQoqY1Zxl#;56nZto59cf!#ilSPi32veCM2H#k=hB|f--Bu_V!Aj|n ztmTZuyh~tB6Hi_tlr|edbDP%(iXcX^&TiP00xvxGCC6tH{v&6@;x8|Ucd_?Ihd#Fk zaSk3}gb;V4f&0gh%Pxl-Sk`+LdD74G6l4QcPILWK*z7#PXT_%v!IgYDH6*F(x&S^C z4`Cfm=6w<-T5{DlW5~9j}8kh2;{ProgwPz{UHTYvY_c$0F`gp1FgmKSr)-T z#Y56lv1AA)j^za#@0JWt61@`DhNuHbuzWRPm%@8^JI4U-1Zo1DCT8rA@=pTfUJJ>pMu zp~gTIf50X2?}(S^argmDchE&}1Y8Fil+Gz<`4#Q|-%cMLN;)hr=qH)N?~pbJ-r_^H z7)sr=*!(6v6tXT8>#;&X3|33G)-}80OvWFaxiC4v6Azk*0}bA={f8k}w3?^|#@u}Z z^#-^8zXSE>7Jt$*>hJvYlXQuHIQvi1$^W|>9Xfsn&Nb<5b(Mf@u+s7xNPVj<(&Hg1 zQ?l{X`1OfEbhQ-An_8d(xu9nXA5%l#b>^Qa>Bs?GN&Xec)&Bu<3$GQZus7SDWkSz=UCtEt| zhB>BMbS1s47v?f4mt1TayYdIqA4Z-Jf7#>b(=7NU4XOVJBmN^Y9oqjL=08vH3nQ*z zruui7EB_;J#QZ^&KVkmcv~?8@^AEurd>p`kYJ&vFGl3?OzCJ`HYB~hCCQ-rSZZ>Sl zH1MobpOB-)4=NZX2ETjzP%%s9<2{pRvvJE_qnGaNe?RIv$z2RX>3?PHyMK3j&L7_T z6RZEfP6wbIb+<4pzRBTNC=YZ~iasDPZ6(OH3fo>c>pY#}*}K{2dV+s(GWQQF&xa@E zse#xAbmvEw9Q_Zs{s$83{~SG6(rWr2siXVfIsK;vfBNa+e{lK_GX0{3PEuRu$so{H zeMrjYP|I%X+c^=&j_nqp-Jg!-6^{$D8?uRO2`RX$AEy5ZTmZieNzWRc@Mx8juU&sp zj`2Uv@*i?j`X7#n{&zPro7sPm8;7Fame&JrK+yhx z@(;d1vZ_fvj<-C|j~gvLFBj2kFDv;kw>gskVCm6+fRpqe;QX=cpWwLu3phCy1)h*2 z{}7D|%t5Z72{-q+D%xDFy79wJO2_A$?->lg=+L;*M>9K??=w5x2PV~e;W!Lo zn;X(hrn&C&C+E^`eAFor)Yb9i9w)IrwTY4F(z&^}G0%P85IXU0Yg5nPRt7hH>?z5| zF@f<*hr-7BeU~>mikn&`QYyQQv4wvU1Q3q3{B>Q6wv>O8EzQ8}Dc<=~` zJqHyeHm%WG`0Eh_0>70k#DYT?Shgs?kgMS;AH=QJiVKoGLu+)vN^=Aj4^aGhJ2ZgH8m_ki+Hd5Q{3NiKYZzdX-LK|P3{Adu$C!CIKE*)OSKo~ec_dVX% zuN%O(be^{s6E7a@l!*af=C#o3WPF^9`;@0<>sE{2v4qh0)8OSWP=_={=V8pTll*Rf zbH!MA672>>N?+dYy(CQErqb?4miU`dAgo3II~#^xT!(W=nCIl9;*?SP1& zdEjk6YccS3e~e|^%TjZjbZ?ojqx(iz3?$ZqU8`n_bg%?g#-Y4dcqB6MR`L9D=G<22 zxo*vrDB!P_OXxvXI?n;uo@RRCozw8+h&4JQoJhD$;t&ycAD2cHQtoxQr`5QDGO>IGOu)%q zM9Io_sAZKtz`v7XZTZ#-j}(=|u_Iv3Iv`3oAOeTF8Uz>}cBiG-(vaKID*S*!)AZ~B zs5KTQSG3z#V1e_Tg~O$Tu!@}V2c=WpKhy~;oZBB#STBm+>YOCel}z7C;FqhjD@r_h zOM0?-?q>{%SWPpd)Yxo#5_OTi62W_;qgzww5I@%90;{MMx>mB15jm5G zj({N9H}kLpy)bVZ!G%4$y%_vj0Xul7y_iQcQAtX`fRw?q;{Zf7@21k6wul_04zz&w z%pof25()+gRgaUr2y`K_zZPmOFt!0~7`G_!V@WC(5lpvfK-dwA||lcxC~=n^ht5l=5XXZiMuV57Q$udp(kD~pJ_s3g%Yt5a)_elHqZ1w7##v?#8T ztk&N8GQ@!@nMC_yS2v(HxyK?`(`DOAt@ca_PT%%?Agg!r^qX^|df0t6tz1oszPpkd zz>8JQ*5?*7xwDIL;*}mUVfQ^x0@_x4TM<`Imt%_7*d66~Ec&_WNM01r3bh_AriET_ zUHg4&4`A!l>14Iq*2M&e^CS}OCG9TFvdERz2g&Q@o!>NdJQ!XUo-kutIvt4bB3fPU z7A~qaBCd#+An=YZA-2BlQYBK{ZP$%6xf3^*#2bCG8K#fx-+zXXK5!v}5mKMAtNrx^ z8MUK@?08>y@MYH*WK@nabC);9s%ruU2M8-;4Im!E{en5o6XgB4p4wqJ*Ya2*CPmMoh|7(NrB!;`4Nvs~ zH?`d4`4yYxRr$Lw`tr_oNEfl7RuCQlJfFd)N(KM^sUQxO)n)p z60ka3mpj7bWk(d%UPPC&s$LdSSlFn&aQ@hBZgC!@dyz(kP+a6s5_8rHLmPjIwMz%v=%i#UI9cl(89xSG+8VnW7_YQ@`uae{;-|uP zwXbd_d900D%g9^3g#z&%Hz&-T0Gz^N`nLS~pr=$S-seeFxgdhw>T1ayZ;@p;ip(Z9 zDhf$4>mvkJULIRydP+0S@^2t}PnKm0KY7euRA5@d5`{Klri(fXg1aHN4IZA}0Uup- zznBHF7syu@vQQ%wvw|uOfX?@QH+zefaQqDFWx&`kAlB~`6$F!RKiy@4*6=bW&U-Oqy8jYTbkeRAyN z=>+op1vR^$)aFpGSunD;i6Of~H?Tz91f^-~5OiC~oPq+^%g|C?6FSwE(XromoWyUm zHz^8vQ95JV+>#%VIPo@wh5UWu_}Ifq{Ei#u5nx>t%v=C~Ul071Xv-XWk}13E$)NBsly~ws|g_#HUn|W?oqU?|2<6Rl9|BK zmzWFl`MYrfJcXOjG&kZ|8U|@TTrA1GPCmMp1$5U$j#!9&h=q znxSBZ8ef)aj)FRYXTHf-RG^ZS&b~gf1FAUC=mbb-zIjIJZUQ+d7edYYC*!tnGK!poAOdtxg z9Cam;i~uV40#p|Gc|2kIzmU2jDeo0YOa9kgJffA|X4%pH*l-$tWaG>B{F?hYzilZ*-HShZaA8382A~Y)g zB!n=*FY)`wF#{E%U;(N@S^WR-)E5MA7Nn8rL5*Q2XXufKrQsoooyp0j%DBblXTuHL zD$&g?B*{WOV08kOz*KXTeYHtkp2UfBb3NVFU0-O_ZsO`20e+qsTa2_TKG#fztWdA` z_2E7$&Kn=QU@t7Nb$$Xe51zik_*|x61mx<5B`{fg9LE1rxYCJZ1gl{v)XdB?h`j~S z5h0N2)k5QpM-vw^m&Edw`2{6)Qd_1wE!XE79BOgY-DH;s&4v_APMIc#s8@!7?>OeE zk10t28MUzBoN)rb)4(Jx1ZceH%ixh5DGNSRJS_naszti#?fMN67eD$P36cU+w^uQ&yMa-rq8Foi+jWEscXRpPd82P?rP9JY}E;sQyAz#?E!-1p=B2 zSm=8OAG>}XS`qw7<=>>p^*S&9LpGTCJstz0+VGR;N55yhpSc3SvlS{n|0nQt*ZV2! zvp{hmX?`i1RqJTBkRFXf1XUniXn`PQUczFxQ63FVSwN+7IyAF9jn7_Sq`31P1JWND zTqU)Qp~K5^<5p^1#u962)^zUza(D(HlztXau=~un!96V=XM6LWe1ckmm7{+ZJcr>w z+#w$i2&%ow@3oBR?^@Xpm9HQN{cDN2n*8!Fb^BAFel-+W83$Ut00ywP_<8|8ygENn z9eo$ipXvnYcrUbSv3l}YxxZz1w8u&ys4xiw5TI2cai_;(!{Nn#Po9vj-x7Q0kcDOK z#V&vC`Dv%;#o

Kl4viZT}Wkiyw;GFa!{X6%a)OKx)1pD)D!v;Je}mwKDfMfT%3{ zk&2HD_<2GKk>R! zbHjgflT+y71E>=9fUlK^08pY4?1q!4OKSA&Eq8Qv)wH6#ui{+&XDtaW{{S84epK@d zEuqT*h0z~^&h(?GfNBuapQMD+WpA3*Rh4X(cM$igs{KiS6sa$lRec&jDfwHFN&J&7 zS5-~>Z!Z5s%dhtTJ5pVNMD`oAWxAKlhp^8afnUo}4eSR>{Bp!MI8@4Dal%jjP!e;!fS_;Dphbim@@ zkYfW)&U~+fWcBBKpn(Ie>wl>wCATVnv^vZ+psR`$$Ywh&ebenge|(j*dRk_hTVfZ| zud>na4U9BUDt#}e9ZdepIDc&MGkISD`%8QCH>LLPvGE6Cp%v^^8~eAw{%i4R@lU}1 z)y+H_P5mj*y%c)kIu(f!C2sdX?3h*`ea>kPLW01`64< z3AFM%nZA;f!+E~+=t3~qAN6tu@6*}?@?ScdzohXxdtEmxf73Vpt_9!Qjlbsp5t!Tm zWaq#4B3FTF_){-`4@@X;{!NjgEy!<)@45sx1(a02OVzLBaW7a6>ia*6{LUc{Xxicc zn|llV)_9vghXn(Kzlb;^?gFlS_mY4p&p9(a9 zz0d~Gmhq|qbokK#Ugdf^liW5rqT4*WdYyJ?<@RL z3|_a8nr|8qS3;Qnu0Q$%xqmJ6{-uw zRZrOL?Y-MN$)wLKTB}-+*C(%}8BP|~w22gIF!JTLja^ZaC7CF<>wYJ`W@QrCy^H7w z2Y1)h&p{~U&Q<}Rv`tj;2y^tv9@^5Hv8P88U;8MNi8(2{bBYP?U8!BMk?D=szOMDE-Dd2cHF zpc}jzI0!~?rnDEeDy~p)e3LeM;0Dk6ZaPhq+!1UFacV;;-ypbk5_5TxS9^I*s_6-7 zo%Mid!oa{>US9n$lkK#4c^~5p$8_gTU?#R6qFVPG&RU|_I;XPnHK?Tqxz z^{;=jFgcl~(jWoyD;21$dnB zSh6=VOR(E6;d1K&;CqJmgO`buA`m=OtuS>FOLdeJQQVMSbQRFtYn4M-qACZ+I+JdL*7+S!bW#5rgIr?Z?CV5E_!h5!v(F`=*t`rcr6n=4wH?`96tEE zA_5-cmXF!2Mr`K}vAV$BX#**hgSSlBYd+MLG;*%7LA0j_EFZ^RoNlv*a;IrGHh^UP zEH~#|J;rv17^-0Pk5_Kj@O=R{gumi=|GIz44R6{EJlRcD{fglcw_O8wcls>h%2znV z{`?Ro-ew;f6V2@AV*)%~7$dUAKx(lZ`NBHZ*9#h-%Y+2)$@`6xh+8*Mp+dAV97*30t)$F0zU%CMAmbd%YIg6dK^XJ{H7XPth4um7a;3M{VJtOP z-Mn=H%X9trUhRvk-@A!fV3hPAfwqbg`I*>dOE0oD&$MBbiUV&tYdw`F?LL99yJRAD zTwf-R*sDJBka}iQJOL}Pe*9v_r{1`YO#h_@k%q#$E&-1xvHC3#r;k>fa-8)n^q@1O ztTy3YGe!gbDY1KB_ap9yir7+olvoM(T4m%sC--Ywv4gOvwzA97x@-?P`*Jeh^*?jN zn15t%lm7I1i^siQav>J3SV_10TAW_5w=H64-nObH+G*rbK*3nX2||^{tL^7?I(D*7O$Mv_ zbI7lD(HEMHqeQXnqI_J7Wj2g`bE+j~B^;}AUoF>iDC_1kB~RO_`=FK=pi&-klyoDo zn)*;^QOBm^y(_#!a*5M ztwePZa~_dKmd)Y3$189*MqY$G++@4OLItC_g#>8lvZi>vG};p7-K5V-$$RT+ANMyt z>7TUUSJA2PrhmiU*@7_8>KdAKw}rFikRsVpW8^48uR5W=<@YWB&OFc8B#|n;VgQ< z6UvM~D*pW3&!S{kpxaV#I$!;r!iJw$bTx9ofF66myO%SN_IpH6DsE| zFSyfTOjPsgTseG74{}F883w<~!AY1S?Ai53HnL4sq$(GK(Na_-q^RbW~j{loQ*Pnoh8@qMca0_bh(GH5*C1 zQpPrHx+LCr5X-Xi;N{f8r(y1<^n5mN%iBGjhLdims1dCg(wK@2+*=07Q*i?icyU@v z<@q#MV_q)hvTRn^UMVckw?s>_g>LWBM1ruaDYr%0hcg_rj}hiCEXnG^AJY>d9^~WQzV}kQ zFMFs_yJ)~-*yXLj7?B_ESaJN~%qmI6{kix2M4_!A`2$2Sx!XsCZ#8P!Ke0`wc|5u; za*%>P=LRYFDaB8;wNn2x$J|6Brn@YoWKbb2ihrg-U#rnzH30 zJB9~y-z6E+T3Xs<3EZUcrqCALq@A}^f6cwZ%}@Q>V!OH1sh8EPLjnV$k~D?Lx*WKS z9;^wLj|4+Q`+MUl6>45NW9qLfJ+!cUfjmeSFS>4%eerGS!0)qMln2+*A_H3M7j}lB zWE%d9`}aD`i9Fnq8|7eM7vpC!>z7vy7Xu%Ng z49XEn^&Qgy(vK#utl|+U$O4jUa}}$}BosUdctx$BTOdb&rmWw}(0{jlVT=0N0(BBS zDx|+xN^9tGv^kS;9Zbaenu^>N6OYH?FemO}erfB}9EVaD(v+&5 zjh2`L8PXy_42&pLZ6n6WdT{o7#ie=1hr9=0IgD~-;)4S{qbxm88T~#>i3s2tmdn98 zYHOhK^6v7;JB2q5mQa;T2a8`%LYj;KLv*H|+=0ewR<#1psqNw3@}ANG4-%nY zE~!p|?PWGq1uLn*{_+1zQ}dQe|zB@DwDiOKM()^>(@6SDEDl+Po^i--mAA_w5 za%NH0Mu`c}=dIQzqO~WR+IqpFqU$_UzIz1|J6)0x!bk7DP0^-nkOS8a-@LB)d;^#E zzEwhsZdp3orC3u<)eZH@p=bI<9Y$mUFGS#Q3 zMI@d#J@?YQDHRCNC=0}IF%tK@pjCg`^J9pKVNfp@T;+f=bo{-vdVggq5cyayui*)i z__6uCqJQ=CVRnM%`BYyiI}%3CuaFHfZVKb9$@gc-gp zP^l5Br$<`+5;ja&iDgZPY;KotJ#3C{=B~wUP&+YZN6Ce}+Rrsks!k6f^VAY4-dgu& zWp5gA*KcrHmDnI8+*KT;8G9)!6^pwG!`ENts};u7A{OMCs;lSnIwX9Z?2$;isHg^8 z?}*hylNhaD&=;<8;>0axf7scQm3BVJAtt&j zl3_Ph@!aQ(55LHw$K6F*Jf?5it;IDz_3CKWD^{jm=lT}0i+zW2F7>`f zr)kZTgPaSMkAYucM|Z#~X%$^+oVg$))xyi%t?&JC z48Iu&a)m+6maqLN6GMW`T_yrgCg67?f6|Bz<|rx!Hai%ERws~o<9!cE<6F41mX=l) zJoYgR4)QKD6_!qyKsX-Ja=}*=!I};`j#wv@Q0Z>en=ude3NYyDo9-7kN~TeJy)1p? zl|3od!5Z4^W_&~2hiUCGBb@demqvS&+8esN3oO#!DPkqJ-iMmuP=3^W`3*5xp|G2b z4!-E3?c-eOOQ9GPas@;tD$QqzBLrn`RIR9LHE+^<&W?>b0>gq?>z2*N!|S7P$l{12 zuAj?hZ9{*Po(Xv!1%$-imV)sk3uvl4qSLD-sLBh^U?!#F7FK~l)+aULDD>rE{;4X)UVV7tnXcf?g zxh3QyE+RljneQM?cyOfdl33nyaeMWoe9@gaNeQFS@zoRM#p)@n{oPxycAFukjBB$v zxAX(U?v-dg&y+RlTFNm+QE~jz8~>@3JDAQWB98Rt27Xe_D}U+uq4r9YZF%AJrcEkT zjkg4pJGift(PKq~y-3)0J_74t0uK=eK0I8U=^M zE6e8G@ne)$>xyl?InZ&LdcBQl;CDQaKYiuAzhyS}@?LJTkQU#^Ec;FjQVACOpvP{Z z1EW?wuD30<8L(cH@%n8%I8wcwL{{?gb8d3QQ$ghudZUWzFd7_YmGxvJja%UkTm8;P z1k2rWugA7jBcFvtF7Ldxa+G5Y0KWGlCfJv(Fyb~bam3T{uXkcGT9Q4I7R=_;w?o57 z2r#E3>c4o_q#PAsRK^@L!PxjqRFcB%^)$Y!4eiW0Y%LJ4y%gDoz#D$7@5~S+V8FPDFcA{1%Zgd9`2Z{79S2YKN4kh+`N&oh}gLY|*Ap?8I?i!C(e3#xL zyEMb2b8XA9(uAZ{{1x}vB)&&UjceOgd)0^)2Kd7u3|Z&Zl3<{%8t}{VBQL=b^J(O` zk@8T|Xn*TY+}E(iG#u!`%5^#~5kb=s-?GWiz9=_@hJ>dl+0Zbz2Mj;humedh$~S$?Mqr`^Xw z?GMzO+q;j@Jx;7njx|YMS0P2dD3gj@gWNoNb}={Wah!L#T*Qv{ktt7F5{*XRv-+w6i=uF1E&x7H`^mEr5&{scrZHm-`qLg9<)rF z6ZEINSS7D`@H{7sd#VTF%6n(HuDpV}amE=ZMa^rd^8 zQUwG}Jy9yg;)VYt!vPA&IyR7>GHY~ml0CJ9bnc{`eHM#JZt{QLn{x_dkAY{LI^tV~ z8YBD;?Efi6_nqU`s&_d$>htc};XdS-xC9oDin-8qzfm)$-oC3r4H3NQWR}E^<{Yk_ z1-^XuVXIb+bb-;lgG|HTV=?l|@MSqZk0=dKby@|k>ULl(?b2bgqTP1s}%E>O0N4;s31PV3luaI*`MZ_AuiGOW_@)Vo$X7o z&DgBo{O2O=PerFs`v=wuwvQ$uj~}Xh^1KnCeboGPr`KKGvwp-gVJA%=xH({qh>Zv4 z7D_?ju0F2jq7qpZ8-e+okx91A{A6c*q2$FXGU*50xLB)mOsTxnBrRv791-qXaxZIz zo+Z#T8DfS`@rVbiH3ihISK>@M5!?4wA(cw#yckkfFs=w`_#lNs`oguQ_hk%bPAO4N@gn>?Nl_dFc*k~ z68fA|GmVa#TE%O$kETQfP?e`}=>4l2b7H36%rCs?gDGpYcY95>Q*Aw)4^y-H(2~b* zLgLZXk^t^Bj8dcTCV$cnnMRB@g~kW}gxi@}f)1c*-GTwxh1)0rheXoYe1S&f=7Us> z!#!@n-1NbXl;ig|r0m8$-OEdI`U%mBfu52xAZE@aHX%vyp69I;R1AppGJjLhSEk@^ zSx!zDyJy|;cwtU-NDKj#j6^hoC{B3&91KBlJj*X;CSOOtf5UhmRz(%A70J5_7CTj{ zLOsB)oM&?EyD~ z7Q;vJ^2~~u!4t)XC@!%m@%UlI9%ec{p>9&*po(FGHKoKu?=V!k*RbRMm(~;-iL6F3 zdD2ZXt2F-y0Czx$zv3MKBt7Ew75_uASaRg)z;KtZxX+81Zm3^}#U@MB9gt0n;1*&o z!20cIsestA<&SDW%s4Gz4<$vc^p{l_Z|_NqfsH}ma3-*bvW|R|1etyz#Yal)Wpo1l z={Nj;KJ9Q6N?4;cRFN3Q**&dq942X!$3+C`SkQptAQ+Qq_e^n;F{SpItxxoF zJN%tal*z(q88r_*1Ia^8h)SqyF;t=?4#o2%%5LtVPV9DZPUidU6hp;>n!4`lfTTV| z)?eST;< zY4^P*{|dY>ovGtYNTHEr#YQ~5czXg%@kG4-a3X%e|33ch5%V)o5A^f--%rGw*ZAMB zT?5g0hN$UU)x_T4jU0PFlbX0R*fF%g4Syy&B%zOC2F5oDDWif~&aiB@DVT$Go!xhj zWum9=_onp7n5;@(Ncpio!1yoVK-21x8d2~US)FYudrk*)gRX%0d9aOcqmHMoJ%_%w z7jm+Sw8k02V+*(!iWpi|8zYCS8Hn08EFP;=df- z+Oob9SWgg|&9dVJ5!|BHjn#_Wp2nKjioQ9Rou;2ia%Ew1)A2B|>D%*rgVo(VBZn3| zv?Gh_)C_G9*R~gRI+{Xu{qX8h{V>p~I*gkWQlx z%yW>uhe42b9AZ86nmh2x$wRTCqZm*A$BxPJfB)k@|JVQd&;R`&d1pck@hn=05KhVy z2meWUPpf-P*HeEDcjSEddcWgO=&=)W{ZgZ+Pw)#G{3YDEaxu%|Rrh*^CvX0VuFxba zRvea_VQu%QETGc)Bl1sGE_Ti>JkQd~J z!6lDT()Rp(E|&Z&&fIOZn6O#L6X89OjL^EK&0-o^jcj* zh!w6>a4B=3Q6Oj3Akt{RgKx9!Pn>d_*(%x`cJYeWfnh!M{j87a6LE*hWN>Kj(py}> zkm4wHaXBUsSG5S;WmEF0nu7CWR?0q3hD7Y@q; zW?1+MZWliEVmKwFN7F=&d+TRQw1qCGM`P;LhiI$9J&@x7mGX`RCk1DabBb;&(UtYU z18yG5OECC;!lmE5=oZNA`k_w*+HcyP=_}Pw(;}`|`E)}x!Wm-HhK+xJ7VV)vV#@HF zV&PC%$FI;)2>)iV50hvc;1>E8_s_6o=*GA`A6$zWn8~N9ZHUFfBpiFYv_J7&kq99I z5^;htiFBE@3qRvb&oYQlI!@@S1&8tZ4l6f;%gE7F)Jsfo9h*FUgMCKK+w>{lxr5rA zmceKYZlg`Sgej(+{C(^mXi5jZ_Wo$NaM8iT^Cs5!2p*_+aW=)U`{IRn#8l7;kcXp~a0HMLLx_*Mq= zcBu3`6f}`g&*3R7GMp>hZs3Lq=KdbEHmchiZc7(Ton->eah2g-JELzz;cPR&he#L_c>Gtyq=4eA`ytug`hb*gGtVc%bvM~=3eTvn-qq}$Ot1 zWk5lgT|<#9DG(I};^9xvVRoy?A@;Rggu83HStO>pt+ty8GONh$A-)P|U?eOJi_D=F z(cX$Zp%Gd9dXiFJV{g(dMr=!g<)hWxV7Kn0&$DY?Ii^FCZ&F<;RFFA+IP z)wRC5&7)V9Q|gMhqXF zQuPpyG8B_SVrY5Y>xj~a=NDI_*DDjdF@|SDwX;ml+@9u#Si`>xyugrNW@x-+91nad zyFL3#R3Pj_ir#qCLD3eBIU^kbaR-I)|m#>45WyjlmaCi&J4 z)-fDT^u7qLnt#Fd8neU`9+K3h;{aD@Gu-8xB@#85h{Q?Z3W%Gk8>}cMD<*gERc3lh^?ZE&F5RJ?4nsD!d z2-faZJE38>^)$oDi#}>F9~o8fsF; zYL(=uxUWgETJ5j)$7*@BZpLbLX!Z$w>U>pp?v2&*?(gE+L9DY~~DW6BU2|yG9 z{={YmAIDV~gYNEV8RM7?IGzPhFREx8)4}J|P{*Ow2h-7@GU9=rFXL{8CtRpdnti;N z*UCEn!12T^Nm|FBivu30^wMo>^a3xeWJr%{0oeyj!IcK}z><#`3Rj}50NkEH5inBY z-kijV)B8bm-vlaxBN0;VmeX5E(!m9*Pu3kbF60N*zJ# z+^Yl4P6v*LaRxK?PTdC}aD==(In)T2pq#2g$Li{*=0wnANfCv&ZPFEVLp+@FdoO3a z8)?j=dT(LkW_`x?mQpWJ3!k4)H6Hzu$4jdX%>e2VjG`DogcsonCBkp2xAB&fsZPIp zPj)I~V2g?Xq6wJ1B%E1+er$z>FX?j2Q7LXP!=lCyw&^fHhfGX{o%B-O)Yl8+& zI*iJL;WTiLzzoXR!2wTw6!bQ1Q$la|e?7m@$F}TSJ{MMRbXs>|KHMbAap{FcS_WSz zA>KCyw;px=VQg`!+*yGKvspvZp`r23zg!)-L3w3eVY+Uq|Y z9&M{ro(LYxJdemR0K?T|DfslE3DlmtbI5(|(PBANX*bU>gFe)|w3}LAX;j1uwNWqW zxux;-NSnWQ)uQ`tf1y2PjJEjJ>m13A$httbmK9wz9fc=-8@4+qQ|lgFr8F#;nb`%+ z=ZBJqeN7#XF(nym!qR8Q@tGIIIiBLf6K@Role7*sY|C#t!|DPY?<7c%4)Hplo-maf zvX6j}+mWaxwcLeRbG!P(l_rgFP*c(}ct9y_;cr-j@IA7k$p0~gYI%PSl^EFwaGM<{ zX=^)?)m$BWU2#;2Om#rd$l(Q*!Tpq6L*P^Fa+L|H5WKi7D61g-nJpeNqLh3BHS}kX-q~ey5657hDIgl2iyOL;FWQiJZh;Ra`?A6cGb(NIASQ2Qw~!3alx6MZ`(A0^1=G4%9Q zjp(?M@-)Z_{Lhw~Gwy9b)&kx{L`dgNFXFYAj~=3ihycOEoU6Bp1)%rMl&}-$Cg1Dp zY-Gs$9VYQ_QtNy8{sY=}GJ8%7y6w41v;A~gb4HifXT)yD-KP5>2d82nZfOksb!zug zjZt0X$uwzML@#ym48R-ieBV@(z}J3wW8F)qwNd#fnf8MW@;VZ|>UFMt zxt0$f%nSNLrV}W$o6nU;b{9e6PAEK{Gfk?*kOro^HGEwT*T^$jo;j8C%Wao)%7#5I z-;kxBeTX|sNumEhsSqgNG*M4!9gJin=fmg$=#=0n?AMe!LJcFXs?Vy#7_YDJKnI5f zC(P(+M#NLo$r%@M4lOC(EDN!s)_8*=k1Z1bZY?{09$U(U${$w$up>8#mUR|IzZuh% z@uVz2JJA=`syQGkfWPBG*$r-F)-jS)Z*gg8gR-|#GcE>AaUrP2Tl~-Vh(;G4V?f`y z$&fI-j|gLfE&<%k6NDbwQ_^Q^)3|!lIUfiK-NAzvipnUEWf*$D4T+v6oh73^yqx%q z6U3l560TgMghxnkY{}H<&n<4}*&ZPRHX=>GwcV8=9y_Lxg43zsy9@gUqt95H5KV26 z2ot7^en3>Cd=d@go>JfQFCGl#Z&RpbA5xU%sMDa4xlYHSGhNi$g9IuXVf+HzG`zU2 z4eBeK8p)VXx&>L`Z6%2z6+a{WW^Ob={W;LH*;-a+12zt=t|-mb0V##BuvPPh2<9Lu z^$ggNGM8C7iLRjgKHiAH7LSqC>Bru*&T2Ja8T6(vEY zI}l^ow?nIU7zoeAaG6&QRLiW&Rwqn9PLvR?R!F&kd_-&@gVQv;?2Ft)aF+qn5ULv@ z++|F@E&$_bSe4Y8@U{O~%|Mz?(lK_2tR@>eeTiauN7+uL%!!f7r1??j{brM!{_M7a zEP3Wkf2M8238y{s#!a(~i3(JU=uI9s*oMd+q_}QN@%!7gG;mbl*@On>I^vbS2-ZtLh@3es>LvNX-15cnaHcByvY8w zP46i)hRQI8l*4$8`7?UZt3NECh|cu}eZb1?``OvF)!{?_hHbsaKxRPKrtfQJ z{T$f=$pMZ>6*BFfL8I&a{XJ!R8~X;$mOs<@cVZTMT*%4d7<|qHDTy#tMaa1=5u(!J z=Laea#tB5}Ji^JrwS`#oud863{*Mm4D$%HexWJ=#mgrP03iZK|loOA~XnV27PQx)2 z;x*StLa9gkxSJR+q6E(Y49qtFKvTvqI5!YL&dHCY1Drg$<-0hyQc6y~j{YR;J-_~< z3vTSff580W3T$L&S%pc88l!+ly^n03BlDDE%`Bee(j~HsazokY@IM9 zM?$GWnba2{dNhaGb7jcaK+@?E^acbwwxm^2FIz!Aag{K)_DGWLCU&&QPrGgO1__pc z&%riCpnL$NTs>uhfDuH*2`9lZtk4D>mS$9M?lxXgj97!By)65vip!~*Qk1dPP}7c| zUF0b9NENOqoKu;_s_x|&M_+?Q`LTY@-Ei9i=@`=1o)rre{Uk z5Bb$LzCI=8hiobeQbaH$zkDCwA3{@`2{nJb3p-*XuDd7D@+(gGgZx6Xs38p={CbEm7;!s1V>)5MhQ;% z^b8F3YG3k+I4ToOsJzYeVzSDih}}W498|lVUE|V|$I*yX?GS>26RqY8@s0lx!FJQ{=MxbX%f+KFFo(M| zUAe5eo^~HG#2;?8Rk|gmSHNZ5HpmVM<@|t;DY!<|Y(h2mP)04-;dhe~KXnNBMUmwJ z?*ga{nYt6_TGsS8{-}7!>J}7NoI=PENG@Cc;ZgZ|RY_>juKi>5cngZZo1W`3hbi+n z_AMtaC#j5phfl@#;^zY50+aD5C(84>CxV*rJ+D?BtfBiRc z2R9t4ZEPjrc{zJ=sSX32@$ksY)uZW?B-|lJ4}}zwkv8H?asNso82m@Fl@Pvw0(J;5 zr+36OoO(aUbt3uohxS~xKR?IX15(pA;Lrfi;iPMBKJ@s*Y(1iW+{Ux^#Dvwc@(0*) z1w8uj5t$ekCV z*WZJkx0L@M0za>6BMeGg#GMXz`bDajh;xB-eTTA&wa@VD=Px8(K`iRlt?-&QkouLI zXm#w?o~6ENIBd74$X$+5b^7>Y3XPCz7t8g9;JX;U%Z16T>KmFsq6qV^E-}Q*MCxr{ zeHl#*(`U17drwc`pogVM>d!CN2~F$GL_<3nGe#RvMT8(C=)O)7L8y+u3G>%j`lsTu zVS3Q)boT(^%Wa|r)hF4e;%H{RP{Y$#sz!+t!rLu{s_@R@@+vNfOdGI`5k{kcPxw74 zyO_N1ljKqHcP5WjTz&L-ZNN8Cfv3kj_Ltj#uK3J}_25!;g&FH|G{WU;G#rRSoaFNn zIm@%hSNdY>3vp=hcBgR`I$rQJbf4qj@ia+{cYBn9c6J%Tzt!8m>oAf%{y%UR@hy^< zhCJMZub=)Xx-paMrx-hQF--BxsKn~df!BUO`Q8nVm%%m{6t7dh7I^;dW8*5rF?d&A zen>(n3a&V;O!4InVr=bRss8g4m7-*}6IHf`uk;U7>C!os>osZyi+>C^*4cGyE!CZ* z8xM7r0w=QE8(+xc2he)MTR8W_YlJAt*>=b}>~HYQjuP(Y2o-TT-{XWV?N7DHf^Qmj1Z8@b`ACsEUPjWo5!>H=a0(;7{tSJ@ zFLjEk_$SByo*UBMG^bmuj3{eA4=|(MerQ5Y0B0Wesz41bqYY^NSbVpm{Sq!{4qWk8jU6@bIL}Q?0{~ z*9-bEVJ6g4Y`)jvIrE{G7}9;O)(V0S9HO;FIq;?W466*2&hsdfw7JisOcLZihu*K$ zXYfi@lp3TTbu#fD2R;W=YP4Xv-nBru8>bgn8eI_n5^A-i_*Mh+h%O zV#)BxlfodRUfIR)w+{l}gc|Uabe8g6rZCbmHtjadFEY zsn;{+V)2Q_gt8ZGI-y*(6+VV6GqqQkAi^}2#(Bj#|HV65OtPP2Oam$AoZJcd50;+} z`(OZ^_8e^ey@2o~Le80#e`F*<711A=bkA9nZ`5r;nC9H=?LA|60;>6v$8;2rYagr1 zWmq=Az9S;^6h45 zX-XB!jm!bU>@J5S*{3;0+SClObtm0)_b>H%4US01a^K-Mh9u7C{0>feo(G8(o(P>= zr54!FQZBU2!k{i%n?Uqh%!30AiKB58a5iaW#npxC#EHA=6lS7z?{QP^{kCnsZc0Q& z?lm6l-YErYKp8f6a-Z7JmufTmk%*FN(ZFi0-kJ}oL$!D3gES9}s-CHvlp;K4O|v4X z#kt~4*u$U1m4d3$+{h!B?gOMSj8IiJ3Xl*l!L#ora^?4(3F8N;3Qg;8;-wpoxH9nG zST)>I<7?U^5h#CCY{0Ib!_R4=a-e}@)MF$ANviOS#tdl(h<116#A_6EiuZ`2M4Wx~ zBD&%MS1RMj@oF}0P^?%}EI2q=mT2TaXSmTKl!)7r3fms(HPmerK3_ETuzZJE(%x|G`@{~ILKX!{d)s*Bb0{t8dJo~d+aCChKs~Vof>omY(Z3@1=Z#DaUv)(WQQf=aZ1!TB zs!@U}V~Lq@ZIo*r#xkmZh&I?}&gl9mmtoTBPSx3^z=l)kt>*w(;Rf zhXPjr#^+3}+K&dU{Nm_k_^ceFHFxoOxBZsuntlI(vzsAN*@GW!CqZp4ViJg2pG4ky zB%g$Bq_r%!r5GU&8!3?RVCZHnsQp8@Ekq3yE;e`;;zAMSx+*mccy1;Km`B-ErAOSb z)OAWmS_Ag(ZWvyg%duEx5fb{Z!Y%SZ=>jVg&%qm-Hwnqt>g zR((>u>6$oUa*r|^cX%?27aX`}H)J005-d76$yaIW_8SYa(@1Vu>yW4~qBL#pS17N5 zG9GmWi*ilcv?(>wY1))Vt8;DSq+XT1;pf7I*Ho6F0Iy{jKYq1uvs||dO-HJ*@&XTe zS~?n7yUlDWnUxb`w~|5=PKTNJVjgK4YsBxjw@S05&C+>xl+Om5$e_`Rp*rAv_6KJ$ z;hXVe+9$a5-yvNVsxLr0RrR9WM0B_3Sa6+2a$Ehlu9MRdSE%)6zOA(CJm@jYQQw>o z8IfZU<$_luwZ$$4qgQSdQF3UwE@G;-W~|!fr{|zJoV?O@+vmFZ=$+m(fa3{_L_vI8 zKFJ28nsqWMwscZd5)vtB;RurAlae+g|81C2;vp=3S*>g_&1$4#dlGW_DH&?x2R~J$ z2bIBiRi#73_`_E-1et#sI>RdVGtevMd_iU~p996`Q9RKjOx_zo&q$t|L|pOmMV4b; zzFr4RW8t?q%tE|LlgB7Qnj)PsE)7wlCQ)g?%EUqs6D$q+YV1*KAH@l7nmfK*ucNCB zSuKMPoc2(s+gNtF4CKZw9aC!!tF+0~GMl-k<%G(rNMCFD8*c4m%H?J)9XbwmS?JkK z^p;S`PLmP04&#aUPk1@gEdXLeThBu0n^RP@zc~)hvRb&`BG%m|L)tTtC#bq+xvL_h zzdX|drGRrT1nRal%jRPd>>I!hIf^aksB%}ts+jslaZ;(t)Qo+&!j;B-ihotNR+E-% z1#UHO~O-7}CU?uZh$p<_D>EG(cHnF^U{26zK&?NxC)9XdT{!J0@Itt6If zoUm4tnYi2)*7Mkux?ZZ|-FQ`QbhK4oesR3*NcB};p*E}Y9e7!h6`90KmmnetBV-Ul zhSdUkoRnS&N2=NimG`+U*W9h`=q2-NwX+>9_o~?TXt;ZaaP)pqX>mWNN3G`fw8NmR z`R#$&Bo_zaWf{N&EgyTsUWeRobs_bUDWh>pw)_^wtD#aX&Tf_bBYxRB0$n)B&&7Xy;b|MtFLziHy}ThM7yrO z+D9jCRuaV?KB}_$Sg`sAaKq{&DCU=Wu27ZQ#x%is$B!1c-l}`pa;wv5)SBNOt>}HE zal{LhO^fKB(HTMR##868N8cwBI&8npWxI3>W!CK%jrKkuI*(vodz@JJZM^+fT=YdS z)4SgG7-df0MmYGikmg$QV<oVRL@EOF4nl8fd zQA4^` z-sr0X=4bcSCqF3?$af$&I9*IX8?;BV{u;++6)57S0o9^e#!8|7Aso*|dvJ=&Laha= zOw^2AEa>{m8fQd1kKl%$-IR6#Z>nXji_SS()vEb;i`sPnD|V{>-GC*ntK`+KX!U6^ z)q<`{5)N9=dbXo1XP3^yFj+0;K8PmVr)hK?jAT8*Q3kS0=V5fLhOr%;W#oIG)+S>x zrmV!U|2D0Jz}FBS>ga%*$pG$KQ6q2DG!p(cub$%sd)Ix4VZdDNToZ=VZQM4D*6WSd zlzp^{;jYdowHx*=EO%RW^fs(sO%CHW#@s5A8}mR_Ve>6wbj*)af9OSTx_PD7*05=% z=Q+l#a_Bp}ylm!FA422JC=HCC38g1G_2$fToMG@>j3*P2M>3o=x-L4u#$uel@6>x3 zKf9i9LTy~EFsGxXbhlgq)E0`4{H{od%eiY8Xy|ju4|nYX!9nJnvKGZq+dqHctiCj? zkQ9|sNFqO67g@M0a+LCHXIP?Gb;PK1Y9Ez;%IDg@#Hpaq+l}q|bh+tRtZbe8&|+xZ z@v6PQCA?HVU!fDCoz^n(I!i*nFK(w#?p<5;Jjb4EYq)EhZoX^oCPTI^v)UKNFEe)s zq!GP=6;}trd&RkQcEqq}@tIIO>f$RSBnGf6qZ_<|8|-OEjn^PY`}ROa;|mJ-(*B4V zUSH`Szd8}+zl*1h|2k{@*Pk2z_4VmD^xvP54k5=8ihrj#i?3F3gzD8_`ET{QM{)r0 zx+lyVbC=F`*tKtrgDQHES6`8#6P%~rC%(1Z!CKoG07R<_-e3%Mv;(1(hi^p>2x|1U zgmqpUl>wyPgerflr3OvezVs8SWYV^xHP#M>50rLJdNcw%)bTD384~ah zBBon9;8Zs4UnH06+isZT8%kh`r`dU&e8N9Sgg}GbxGU9ML1Y>3Ln?w@mbf!kv@`yZ z-pK0i3!UYB(OxKXQ0Uff%~AVuX{oU7vYV_P*Ipa6 zD*L-pfyH(&)88mr0wk79Pya2IG?wJH`?46|M1f)MJ4v+tQ0)&o7!8Z?{~K z#obV0Aho016-XV;;t8a+n;kUeJ0AsF(>**tXk|2xGi+@quj>k|BxMKj9_X}FcpP}` zOoe5JFKASy?9FL$qQt@hL0bejIB#akcn(EL}nW< zS)5YBAZTDAr=w0tcVzZaNKhChhAKSTDKaEW?-~o|HiQC=Jy?CT+kc99KY8;B}>h4ZKox>J#4`rAChdIP?LpyvGedd=Gzmosx-AeDg%? zNcBg3P=P}&PCcH)GE_AeS%A`TJ5-2~o`bv2`Zj4C|4idX!ML4deXt7S?L7*xVkOH_ zvFJJ@wv)}MmW+P4b@wlNoyi(*fZ^vua{BXOdwPzPPY-dhKZ};9KZnWbWpu3#q#Peb zn$H9wuDdwj<6k3>L`@yYP=pdv#0D8n&;cPihzmlhr3Il59`*SX9(8<_!8i?%LxQ@r z0g@+Vd8yuZj|p=@?^@r=igIsCA8oJ5Ux*w^0g=)BC8@x++f;=!nQThQnni3oms)F7 z>{IYn#JNbISCENa;D0{uxH>Q>KeNi>Te4S%r&l#zEWBEq@MzDq*uV@!X|LzMQpL+m zEW?B*NYnv>6qUR9A2EtVuGjH0MzS+`D-+T7(RCM{HKRHR`ZOM%lRi=%rmve0t_7u+ zyRU`vJf2}K&_P2vduWRUXF(KfGdgBbkqag}Za~kzZq)pwORMd5o7C=K`1I66HxA*> z_zP^Xvncp-gSS25lGmhRmFpKF4!|K6UV_UEhjub;mUUdO8oIn`D*P@^lDW+wg8 zB_$fDI#RYtT`i*|geb&{#+9ik;pYOO^;DIVlKB|dK@JRWT@(#*x4iZ7V{PlQ$eFJW zTpYMe>SJL^m1R|x{A+Sfe~~k3JD))gyy#vd4Y8wsA>_xA?p4y9Oc}mv>f=kDHb2(X zzB@a2n)g{loGF8^+DB~f5!k%bnv)~_cV2zm&@}mRLI>#3(KhEEkv72)`mIA-i??3v zLuBEh6CrOO`DJel0uG0ir*!cZD8Gm7c#V|d0Np`hI|<?05Vlibo<(X7z}qV| zCqX+-Y7(piQgaHV6GY$ukOLxc5|myd(EcS~;5PBi2IZGv@#ck_fjcC#S|g5HYHyIU_&uC9UAb07sEvZP=$tF(1f{l5AGIoduc^?73xH8|gXZnh)MK*)}WW zJ|fPD`VpjD8~7=b&IfRlw3`)dSD|MFdSDKei+U@Uuz65q96KVEdVWEufDn2?6p%NjS<9oE2OrgRp_=T#|5` z-py+gHU}JK5w?c#6N9hPyOH*wykfw|l@P=g@G%^kEySl;gC1xbMc|B3dkVlN&U4GZ z7RYmmKM$yFcHoR?`^&y2;71UBEzGA#J`b!-Cg6-X`-#0K#xqO37QX&M&jVGn^*1A~ zP7<#U=P?A{ES6s#l#zyCYlyJ|Z=BgzfqW#ZuQ|JkMxO`Tg96Xn79%XaCeFtc zcr)319#FdoyoqQ}5qL+s+iNZCxdh$_OK-*lWURnD!bM*T-)RDGl#w?huATyKzFWWg z9N1_@$n!pnQOC_G#&zfluy6Ru)?b@m&%l=Qye41Wo1fmPS&xZwDNk=ADY+>DJhp|{ z;n;lkVh7y5faF18dMs9rH7nbEI;OzwFllak(~DIu!uVL+njody3_G%g+Tqz;;@gW? zL)PoD_%u?=w|R6#3%A3cY2x3DE5p|BvH0SrB{bP_3=6qA&)Mze_V6<+4C76X7d3@p zqFG&M(igC>I~+Tf!Z4svdnyd`v1$&5;TQq8c18IJ_PW=`@>dw<&o2VLlH7&rQb_(=j)%hoNuy=@G{* zdObZ1v`yr7GkguxJPb5VdGidCj_hIR<=8ZZVKldl3PbN`W8>pmtnySCtbCf=!_dp5 z*#o-T`=HMmWK$Tv1h=LHeYG~$vBSUGN8xO-U_QJuc^JL~pT@?EwRm*Q$gwtmCWevu zaK$0I`bdJwGt{iXj-!NMH|9BiEOu-7nH2_aL&&HwOpVvBG3iT0ZnrshEQMi=hrxcd z&Bv-a6ozAX82aWue+0PC#`0Gf=Hu2(3d4~+481%%j>0g)!|)|`)eH*55j+gN{Fzf> z80BI35_}o2FwEg$2$7VlG0X7w#vwD8J!-);pr=w`9KzKYJxAuPN(l(gZ*Tm<5%kAZ zkUGIJZw!JF@v$P_8|{`CV0NgTWw#0E`7C@R$kS|kZ>YOMd3LmYWUmSESuJ!U=Ho=H zH`Yxne0H2&Wv2<_*(_`$zCI$-8`ZWIJv*)gvabv0bPKsNhlZX#yYy?1K2;QU#v3OW zUsc}pi4wAA8-D>=*y9@{0+K^mM~_VthD4AK9y^Y`TVHKmX3Zrf{TMYMGmpikal*92qT|Wc zE`R2gvVL3|mbu4b)M#Pc;nh*)a+h86NNGPd^~>yIv1pVq@37}+a=pu%DN^2#Awx3% zSS;~T23nk$M=vO=G0mX{)CU_O^&8!NguE`ZG)k`Ht6XL2IHJ6P?-a@HjIBXX&jYNN zC~lxSuk>v|I$hX018bJ8^I+>MJsa@OE-)JikC%_m$aclyJgE8zyauAP%D4uaz9P*T zLz4uX2So=NRReE8EFFq?8yEM%b-YFCBmG|)YEtLHI{u8}@VBU87hZ3pMhKFG?U1k9 z#hw0}skC47BlS|R^x4J2Fb+jCNt)_)0SyhyDs8ACc|e&xrc70f%(>KFeE>@>Di0J| zGQ&c8bHK8X!*t8DdDL8~w@Blyt;(~n;wH)yLSViR#YNm#}s7(xz*!5ZTmWYSnS)J304)NvNZYGle0es(dRfX zsIKkmF4}JCU$|`fHA;Q1bf#pgV{WYcybrT*moI8#Dw%*D3m!g+mc5@?EGz?q$^{oO z_a3n`VCN4k1%!qKHQrI%d>L++hb_+T73%5&2L9_~hC!er@g`l#15v>x2re|ssbsgH zsS4;ls1S=|RM#iPzh0!P$i0T&Hd+=)IyHtz%WxkqNf?DDA=2ejx?CRiF<7iSy0XhM ze#x$}19!&NC<q9GOw5N4(0?bXP*|%BxPt zxp*~pU^iar(Hp#qld{aQTIMKXeM{-(pf}OBd)#K{YzxX>^~135mfI9H=5tj2zDG#8 zo(n|HoZZU8=?(zQ_SQR^Etoiy|_&yuaC3CmLJ&Qq1m9VV$74o@$~j*f(? z;Jy%-D0UAPsEyw^qjAih@Nc{Dvj8x<(l>hO0`RE&j`HZM6R!S#4PH*#+^aa>+=V&H z%)8=K^%#bz)^-@Bs_~>5mHNPKw27CnP?no8yCL!KxYkkRUUwOuVZHJ26idOZXp


M4kt80sgEwn=N7q?R-5xbg6mWV6n6 z-qNR3JKhgO3^#{Z&ySMM?aqBH5GPhsEVQUB&v~mx@)tg2?~}P>ySoZooCI-e{t{f>faYdEqNv4kgu4mX;}Z!%NA1T1AH%ONjwqMi zbY<}owp4Mw@5hkRwmq*eaqDlx8Lf-d$ZrVqj687T+`=)_Hq((Mf(D^G$U?8_Gu5Qp z5Tek6Wpm9a#28_jQEem@JX08~IcTo}CQoFBDWni!1`6@o43f%a1{I6&nE~TTjCnW< zS8%*T4Mr?x**q*^^t)%OkvXglJ&#uy2mfYR>}s)%QO4}%aUQ)$wCKjKeP~f`SO7jl zi~$b^t-%CiG=r=BEVhwIc`YarqCbs%Z2~P?!L>qs>|(JT>`{ymi)c{_*Nj@5L=SIp zZF0e2$HG`L>=9xb0%q?pg{#q!bPCPB8*;x4SEqz%kIRgiWJucVqO zDykA}gn)UWA~Wpi5F311%mOV86QVzje7!KV_zc$qQ?w@0448s6Ar>G}uMIFoZ@Bs+ zB`=nFUUMHHW0t>s_6r7Vhb`$@u2aO>Zzw&-iHmV5 z?i3cW6l@DQ*s=Nlax$X?5HV}Es_q$G(Wc6%xt($v~c0L z^rtCp@mG7=qT_4cECa>eTAJiFZ>+L1PZO8zZUYaluT3mCj+T|&VO} z1;;t2-#W%>lE^heSsGwpy4Tmzl&RCyW zJ|G3hL8jlEw$VZUD|Sm*9CC=wF(1GNBF+lph8e{Ou@|(5yB2B*?^>w6%=ZO9vbUh; zPTnOs%U&pY_7+9YzAaW&SdPz`#i*nm=X^ZYj~N&$dtOu>mNG%*Ka@8g|-B zd4kT`IdO;$x##R`#8Atryi#sLfvlb7CKRmb2&Q@qHG!}WSqTNpah3)edH%;F6i7$$ z5(=ahSP2DlB94Ek2?eteD4x06gaYLjRziW&pOa89Ct|sUm{2eqf#jBJO(>9VVI~wv z1Mm_G7E~P1kP`~#V^Dl^y$J=%IiU#!${2wO1y*{N>-Y%;ws9%$yxN2U>CK>o0%?(u zgaRWi$Aip-0@HXD&s}>$!Q{Z8go4Q|AqfQ*YMvXJ2?gdcDXzTQgo2e1SqTLzgK!cG z%)~(sBqkIXN2Iv#S`!MS_t*&q(h}T+f)yRdU5tc+0 zl+|#(2?cT?@Dd7?6*vh6b0U_9hzSL=5h#AS+Jpk>mZ*dRX^xnL0w)iS4+9elT;r2s zzbbp-8WRfEZst94tgXX(y6J6evrG+yLUs^_+<1Dq=#x zYy^^9g#1^SP$1pHODK@~vl0sCL>#wJ6AES{#9q)s6AF|N^MnNI`?QUmWiNI@fn`+E z)c*4l3e@BcPbg4|2PYIbIIw&cl2BkDJ9_qy_6R#|gAxjs%8*m{-pW_<-$om9&sk?e z!3xYx;1Nu{LGr%1M?``@uj|NWlwj%e0f(_TAVeL4)l0xHk;em#N4gRcZ~;+Z-?ayT zH_i|m`SuZdjuid5D@A(|)b%2*NX%AUbzI;Y_hLOls5VxpmzuF<$B^qXxCIAvoJ%}h zr8yp`%~tQuha14{hMBm)!gNo><+NT+9fZb!f?g=>?S1uE9NW5W<3Sq;uE8M?B)AjY zX(T`+K|8oZaCet9-bt`Pkl^kF2yVgM9fC`vmwnEAcb~oAet*He^+VMfRW;{YW7Vwn zRjpC=P4i1Amy7Je$H>jF>HPP7r>HO9q&!~EQ@UP^Aq<9#agPc}#$6PWQKvA~!aF_? z)CEkA#ZU%{^?lfEwO%Qc`69Z|(Z-=S*8X0|0WP`lIqINoZ+yA(tsGhEm<4yFxh7NS zq6p$=wYt~=EEi=ht9XQF76}CjJ=BHkjQ6rhcsT<02y73vp(!fe)?U5>)HtK}NAdV$ z+3H&;2j#tYWK+>j_N!2@%hK+NpH5)WTYB%yH|O%|kEq;7+xdQ7ZOv5Vv?|Es)HGjQ zZ-i-g%4S5kXRQSyPcvQWSTl!EwcCmM?*X36k7l9TNm}o2(&8dl8{9*T5zlS|C7KcV z#-8E8jd4RLn%099T$qCP?Z$!5LY5&mEZvI!c{xi(l1f%HS1SxRFn&dOW;vG!=G2)? zRhP1NHrm7UJ8f)LHg_uL$3e`RGd1KnHb1v4MhmwlRD`L%dO=6j;A75=vSk{V-Yd+W z`ev=|-TL`d)2cE6S$0?$gY7&s(W=FDS57CVh}g>)v6Ca87$ZKC``9Y1BvISh2oLxI@9GlFeSI~n;Bgh zPnaGDRi9UTKwIciQf>LD>#FHfk0A_#Asj5-G?s!2doy3FS2{lw=Kw#SB}pCoq+%se zAS8ji2tqk^(}8j$`7CgEyHD?$J7f%3CFw`$-kIQko0lPJXx$BQO7M%}U!mP&`66i- zDb#p)fS@^ln`qmQo;YDkVdc>TE%|Y3bMq@ctQ9>X+c{C$k1RF1NqJ8bl`-CMV?#KY*AQhP@ z51QHE3p5!Kw%rmua-#+mO`;{@_Sa$*x{!M_|Cc~t?T5HUf~@%Mh908PDpIYhGoiXFx1iPSo}mbZ-`yN5p)*(2f=5%{6N_Rjy##^mB{d*b4S zLPv_9X-bPezZ6SG&%unC#3jl?s&qbdn&r}+DK0K=y0~Db_lSxnJg=~pJAt_?LXTFm zkMdpEfKT-3sR@xO{cR@2yd-n7r3Q47K;L8gwyS)b!@pAynMlt@%^xo+lN$H2diF%} z3q~VXp$*feTx|@bY9WhBT0p_7r`wrS5Yf`r#>D zxEG^T?tEfPzWCv^K}^}VCs*7bk*>eQdE1%Hw$k11jKzGiIw18S0j*5oMek+>}eWXv>4IZsL~|*VH*uoEx(s*4^z%8Zc4e_ZMTYrDIA)7Y4vU zW$6c$>RNJgF^?;5r6B2q+9?Xm+ER^|qmI2-l$HEGw;3Am)3fpN;^>Bgzb9??>mkUP+y3jkVKAc|KhNHNBuL@wCDre{k6ud` z5MN!)sgb1AkGkS}+XGI?8=Z}44H_XcWZ7&|RrYq;l9XELy8{U#zCqk(J8pr=$a{6O zXU;B7aC%K&u+cR~;Qp0L%GB_-dh6Vb2FX1NJb!6_|22BlEBB&-q8((F#_v>b`w5kF zHFHviY6tT6FN&!wEVnaX%(rN^nU}e%SedYO4EX9SN@j-$?g|XKePGPHs%=#Ttut>Z zJD7P(u5amE6o&}JJ=qNk)s9;0pAAzf-B2o>%4E9-)uGW4npPvxinKOkeF>3;EWrK6 zM0;n0`G|eI+4oDn@4CqB8f6m+d+WUS7WTk=uAyuVfTxQ60UcQ&Rchm6|-mq0_F4V(Ex_ouDkYp zupSq&<6I0D#6z>`^=ra4)Nw|+V>&A%I8-lWIOdfJ6fmImvXYxZQ1_1IDCR9Q*buC5 z-Vj-6Btpry+_N5@voEE{($nT3B##bf+ye6~@Nku4Ojd5$k~&OPju67CEi%dJ16E&Y zZO5%+_o>mHVLfsRyAN?x40l<@(bDvAD4=)GlmTv8(ld@JH$w?5s(1@v>p8Oxs=74v zSI_eOrje;;!VWG1xaW(W?LxVGC47@z6Y?wlH}J%iz&%WPs6o<#8*>|8F|phOIZI66 zKO;uMjy`fLxj4|Nu9?T_y;F*Dmo_B$J=rCbsff8PBSZW`U`NRmKUekI5K^mqeWC{R zd`TSnZ4DRm;%MMbKebc_1dVqs!ToJAd`h$&C-XhF;?rH5>#HB8d)%|%hD(Cuk za%i}Smi@0GD=xl^DRY`=UatH6jf|J9cj$YFjtDx)hpz_~aL?Xz#P+o)&+M4CtTapX zzA;0jB%sPx3^Ah2)4DsGQY9@4-R2$A__&?9{h%Q>&qf`l1W6ohY~F zAf7Jo`@+yG#<$X<*^0%i=jfI+boE}9IX|VA)S7`t+-8m;SXH!dr3u%}`YiHk=Ru)8 za>8lvv-~jM_q}JxYpNIcgwUfVeQgjeZBM~=5+iLsCTqQ2B83GGFbtt@L3cCNnF@H1 zUjGGS#qI25%axCGNrC;F?fz9KU@)4*FX9W!AT2*R1Axdm_D5_Pt!CKjyiuE7pZc|kt>dMt~7YTD-Lqv#O{LQH*zF&R2mGG)Vi*)tMZIDo_p59QkN-p;_W6t zJ+T#Zi?m@If4c;!rEHCI?upb;w`Y^u8Zc1!olhrWQ$>4wG*XGgD5(SJ#;`A%`_!lM zXkScAXa=sc*~8$Ez{INDx0n8&#T6+A$_V-nwPK^Jn@BfnsgeISC-11{F2texutOBuIr zkhAzcDv=XM$?D1Ag1DbP2vd6}&53Aa$p!vUWzn*ZL^#R`?Sn^-AS4nSdsqNZB%5 z>7wzC4&=cp`Qbqp|0#5UMrd0LC%)^q*^y1>lR5gPzK;`pO+q#B28CI&Q*{2WCNJ#M za$>qvKkI9-lHFVtc8RufNg*$dWQ=_xUGH56vw@s$SAfHU81eHAlCTCw7{>F}Ppin1+XUS1o(MwJ-Rfh*9rk zvx5@>k2l*_FJfndm75H!pI_qT<2c7TUD(S9Q+}M(%|Z9Rx)>~qb+Ol@U~Wx4o5-Dh z_jQ?qbS_;-Uucniy|VplesQ;v)yDz$@=>CklWFiDdtX-odFnve26n+mIgLrIVcD#> zq`Y++r5hGsG`9rAje3#QxDfD5RvIqx_Q78O#P8-<(=}BC%o*!PQP6cH4{$h}RM|*h zy9eyE~HU4o{Ns;%jMkLmC5P(h70aDh=lqnZcNvFEkqO@VWZ*Dv(5 z^BCBsZWaMhXxCRkyKkeB9zz}GBKDTI+P&8y>z>$kH1lRZ%0Io*eYk~-(p;uCkh<{~ zl0)XZt^M;;-a0t_8gV&J?ORbLu|2F*~R;lQP zbJvtngr;JtDDm?UY9lwnpn82U6PiBytN@R*d*Fu&Wn0hVesn1q{SfA(=2y z-U{GRhl-tfY=gQxE!@H1tLFUUx>_;cB*TF=uHzV)MLc}AVGn*tF|fGfy^;K_udYA| zQ{7Z!#Njg@ZHB*atkOC;OL5Jz{5R2UtdH{HXCHsv!YovbMlvLjN-|?DBQ^Uxe$FP( zaejh;yv>p%zOx+8fblc*DdA%$pQ-(nW-`!4W!;`p7bb^&@376}DL$g`Ej^**!s^&&$ zwcaJoL7llRSAal?-^i8FYj6U#974Zr!>>BtLf{blWAhs ze4lT>yFN@bD;Rf6L?yni7=LAXl#QS9VlvmWdq~{$5t3r_U4SsKF~fLvT_+OhKoq3P zr04bev(v-nmDT&FNdzG7w?fPsQ9`BGLoE`~KDqo@{TKr)F?z|h7f6Bv zWAJDC(J17h2R_Y*QHBlahlB%zfk&B!HKB2?_W=G&4>qo3lc|qy?lwmev2abpVhr3t z?X7*Sg?QugK|S)SDy;rB{ga^AHHUJ8lDJL0>iL26@3az^Iw zsUH06LRc-63vlgm*~AIzRNRD)6zd}PEOrd(C{C(BPaJm8 zB{trrVQ7SQ82d!Dlu6bAGUX+@ma8+h2R`pc7_OC_paMI@j%5p--A#}O^XVhTYHTcp z*9ROQDn4NqNCBTQ43+Ls$&gbwT7&L6>?%t7=3f8^tpzxeSR{y#LTo>O#^;wdv~w7@C;CGgXtJwaOc|E zp)y$Y4FJLOV+MI;znMVE&r3iP-irv`XsWdS?#@mV)80&p5~(}tva@h*iV_k7n$qE*RRc;zRo&`5*FC?>yCJVf!X(@u#Bd)jdXV;{A>AWkLn~o zsX3*3Kb;_3$Ki?1BSI*ziTcE8zk|`sNh%4CM6vN5t~C%vyc-Iicui4;g732!`R}y& z#+Y(hUw+mj0dkKr+F-~7ayE`XvQTemR9#nN3-F0e>6p z{d!nhpptSisRq-8FDLs`1c*$a_T3z)7K+=acsJ{So3S zJ~L-uL}Sl2p)O03Jil2&G|>)`pq34rokr$+s@G6HIYJz!8k7u)(htS%6 z!Wc~*lt4$s?f2bAlXl*NOH$NicL={S>93Ir1h>S9GaCJ$j`nl~sv#=yCLPZeDC@qJVZ_TvY+i%;$6NtskFC^ldLEcY0}g`xCcR|A=ZnXUU#Q5#aXY&Xv@I4XhX^yc4APMOq4mbSLLlLVbb`$e_diRif%0p7&XCJyu;?ye&K@ z90x0GLYz;^X3YKtlY8K+)WRynlz~CRqNm?1I9N8FD+{WTofY?yl=^bryJsy`but%ROW&*W?nAIW0lz z@r?BE)ukWUQ9Lk3Om=aLb*~@DlaQ*n?2eGACO?o3V!ei7I@bVMxOhHV@J+fm9btCW^hGlzEc#Aldhi$!E|wsS?*0a$gSfh?nKU}*cuQc7Ce*4#j7?$ z5-`@|7jX7{LJ!5%yuN4{n;GPN8p@dNc!h zK5njxVb}2{aOxXj_R4TllM`{IW&>IH)0XcN#YTaOLYTvBI*pU-K3N7f8``Dx??!V3 z!fuq@vf{LjHEPYZk4ImqvS?`nj{|Ef5b2$Gomcdn!QZJDk&?MPSe-(_qP5)SCoAk4 z(kF=Ym1!YlUAOhaoKeFAVHoo2{WssJn3b;G0)oPNCVLU}dLSRoUGlSAon)ftJWGJv zSlgOe!_0~eCVjdTw7<3A<#EKl$i59Bmx`th1Rh3J`#z16he$kd8~kMV{&KTDV#aWs z%jxdIY;({c|8DU|nLr-kf$Nr2Aj5E`dOJ6nVeHH_%eMUP4``oJNw0GO7WmyY;Xt8g z&M{m!{k@9B4)=xWVBqI1xX($X3QR_jh8H(fg3C-D81) zfw}nM5{JF2d79oY?MY$|CFi zINfcZ5pklP4Ww`m*7)%dS>vL9C=k#jf!>xPt_-eCkg-yuv%xNKh`bbIgHw5oc`N#H z*$@Tj=#hIq_G3RYJG;_#1|yib>aZXL!nDOCOg4~5>R$OT;=i$pfcAa6WBn^1PITR(DXlppC z@|~tah7K=R9i2QP9$XDI%p;uQWbMQH4-Jtx*Lbr|d7dT+jeU9UD-Kl=`#8w=XdbEj z&FXmHGx1)(v&}VlH%u;)p578g4eQ-lYa7rY^>Vn>lKo9CmK=RcVCt-3!64}?+8MdQ z0jO;K+=Q77yoe4M8i7OFx3=JtS*K^dEFic?8%b|Wb1IOCNq?5#EMKpU{#%eo8LGML z0|(|y)@9P3yHP#B5QQqz}JPOsI@p5K7E_ zmn7AtJ|fNM{E$HVtIY-hUdM_+UaO@B97RAe=CJ@iZ{>h~dlvj~Az-l~ko!?Vx|IhS z!GX=e9dXIXDM?qStOn{~oE8SCh<|q2!#E!QfUMKPN}bYnV|oTRZ%y^}zuEieEc_aU z=f@XM+4rTMa`clvZOt9bR3NS<<|eKt9Lgr95L*TN_YQwJ3u%pxSa-d^MLpJe`W3sB z+y+01?Oc22^9{0WPwdJU2G!J*U+!hQg)P2VgYgdU8-2P)MT|Mb3esVEs$}wv`d{q1 zJ>}%Qe-TXd?Ik=P+<1=B!1fW{h9vkMje&1RK5b!4k0T@bny-0D8g>r5-TC_w24P#3 zI5y#JY|ai8i?QXh@MDZ`-(^)EDr4)o;ba@f^oK84o{X6akPC{FkVG5KW?d0WDsOHr zOQr#CtI`?I>Nm-j{gjSspHjhcgy%Or4}L2lSNdu~#oCMNW@^?}jyoF~0DS8SoPj;ddlb<10R2|Gu(SBf?Pq;jC zO5#IKMp5$Kq8c#})IWd_`UF`zJ+Pm1W{17=g2sD zCUU9h+8NtfWB)`i4`gCdN*f*<7F6M^wM9#si*#q^u(zfwJd>;H&Zq=7qQIob2$US5 znsQEKp&A`se&wJyZ2HJ(lYoA{3aBkC)LXMNyEJtcP%Q%Hm$Mq zM!jZnkGK{P5xQMi-fn~kA_1w`Ep0ddlZ5_X(+s^lX~O6yec>Ph0J#4tK@&&E|5f0h zcO5Lr$Y!3CpnDnZ7Dx6d7G@8{Gf)0ye{NzHn73%A{&inhD<$T4tit84yWRK%_^P_@ zcH8lMJaOV88(RiQ>Km1;%dV&{QQZfxFYfBRobM)9f04eUERXln37KH}W*x0&xG-3m zs@ym_BH1#cF&Sz}Zi&tALFuVkut2uPcVu2<x-GV0Rg{L5Wtm2`<)|98rA1C zIsTZ@XpSc4vp^+`I<=R-A5<51opKXiCumYsc$7@C@lvm>a z^)3h-ke$Sq7G@?mJ#6y`=8!`m-u}^HjJVn@xHhE;xC57|(b3*V~~6zWF1MsDOX@Mqv;J{KuPkAMFS59o@*3@5nH&TI{5 zp?K@w)C1nL>%G4@nRBOgnmhbnvDMf7{>hB?-vUNJeD&n;@_&tL3xSpb{!bD{MESQ- z?VlIzkCMKWgS{)n-qlFU(-Gog_=l!JN`EEbqKq7(eIi(T8iq0df_{4O1sFL)Y+X3m z|5*PW==zp`neyqB2UGyy4-?%#7tE)&J{jh^J2=~zIyl(;Q>}qw(A2XhMB`JfWPc)` zN^dd#1^#!%|4H$Wjo{uIRC_Z407##q0!aSC6M^;Ljc~DqKwMoo{ Date: Tue, 16 Dec 2025 11:57:17 -0700 Subject: [PATCH 57/82] Temporarily comment openstudio-standards require. --- measures/AddSharedSystem/measure.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index 72b2f18c45..dabdf49433 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require 'openstudio' -require 'openstudio-standards' +# require 'openstudio-standards' require_relative '../../resources/buildstock' # start the measure From 6639a01a79d243d67a7d6c42cd398c2fe5e14c22 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 12:55:57 -0700 Subject: [PATCH 58/82] Update measures to pass array of unit multipliers since ResStockArgumentsPostHPXML is called once. --- measures/AddSharedSystem/measure.xml | 282 +++++++++--------- measures/ApplyUpgrade/measure.rb | 12 +- measures/ApplyUpgrade/measure.xml | 6 +- measures/BuildExistingModel/measure.rb | 11 +- measures/BuildExistingModel/measure.xml | 6 +- measures/ResStockArguments/README.md | 8 +- measures/ResStockArguments/measure.rb | 6 +- measures/ResStockArguments/measure.xml | 16 +- .../ResStockArgumentsPostHPXML/measure.rb | 7 +- .../ResStockArgumentsPostHPXML/measure.xml | 14 +- 10 files changed, 182 insertions(+), 186 deletions(-) diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 1998c87892..fdd2fff2fa 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 6b65301d-059d-4d54-bc4e-2e7117f7f07b - 2025-12-16T05:14:58Z + 8994100c-9a06-4fcd-8706-988d3ef6f4fe + 2025-12-16T19:53:34Z BED8DECF AddSharedSystem AddSharedSystem @@ -866,20 +866,16 @@ Belly and Wing, No Skirt - Detailed Example: Basement, Unconditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists - Detailed Example: Basement, Unconditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + Detailed Example: Crawlspace, Vented, Above-Grade + Detailed Example: Crawlspace, Vented, Above-Grade - Detailed Example: Basement, Conditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists - Detailed Example: Basement, Conditioned, 7.25 ft Height, 8 in Above-Grade, 9 in Rim Joists + ASHRAE 140 Tests: Basement, Conditioned + ASHRAE 140 Tests: Basement, Conditioned - Detailed Example: Basement, Conditioned, 5 ft Height - Detailed Example: Basement, Conditioned, 5 ft Height - - - Detailed Example: Crawlspace, Vented, Above-Grade - Detailed Example: Crawlspace, Vented, Above-Grade + ASHRAE 140 Tests: Basement, Unconditioned + ASHRAE 140 Tests: Basement, Unconditioned
@@ -1276,16 +1272,16 @@ Wood Frame, IECC U-0.028 - Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + HERS DSE Tests: Wood Frame, R-11 + HERS DSE Tests: Wood Frame, R-11 - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor + ASHRAE 140 Tests: Wood Frame, Uninsulated + ASHRAE 140 Tests: Wood Frame, Uninsulated - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor + ASHRAE 140 Tests: Wood Frame, R-11 + ASHRAE 140 Tests: Wood Frame, R-11 @@ -1351,18 +1347,6 @@ Wood Frame, IECC U-0.033 Wood Frame, IECC U-0.033 - - Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, Uninsulated, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - - - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 13% Framing, No Carpet/Subfloor - - - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - Detailed Example: Wood Frame, R-11, 2x6, 24 in o.c., 10% Framing, No Carpet/Subfloor - @@ -1480,12 +1464,12 @@ Exterior, R-20 - Detailed Example: Uninsulated, Fiberboard Sheathing, Hardboard Siding - Detailed Example: Uninsulated, Fiberboard Sheathing, Hardboard Siding + ASHRAE 140 Tests: Uninsulated + ASHRAE 140 Tests: Uninsulated - Detailed Example: R-11, Fiberboard Sheathing, Hardboard Siding - Detailed Example: R-11, Fiberboard Sheathing, Hardboard Siding + ASHRAE 140 Tests: R-11 + ASHRAE 140 Tests: R-11 @@ -1591,25 +1575,49 @@ Whole Slab, R-40 Whole Slab, R-40 + + + + enclosure_carpet + Enclosure: Carpet + The amount of carpet. Applies to floors/slabs adjacent to conditioned space. The R-value of the carpet will be ignored if a floor option with an IECC U-factor is selected. + Choice + + false + false + 80% Carpet + + + None + None + + + 20% Carpet + 20% Carpet + + + 40% Carpet + 40% Carpet + - Detailed Example: Uninsulated, No Carpet - Detailed Example: Uninsulated, No Carpet + 60% Carpet + 60% Carpet - Detailed Example: Uninsulated, 100% R-2.08 Carpet - Detailed Example: Uninsulated, 100% R-2.08 Carpet + 80% Carpet + 80% Carpet - Detailed Example: Uninsulated, 100% R-2.50 Carpet - Detailed Example: Uninsulated, 100% R-2.50 Carpet + 100% Carpet + 100% Carpet - Detailed Example: Perimeter, 2ft, R-5, 100% R-2.08 Carpet - Detailed Example: Perimeter, 2ft, R-5, 100% R-2.08 Carpet + Detailed Example: 100% Carpet, R-2.5 + Detailed Example: 100% Carpet, R-2.5 - Detailed Example: Whole Slab, R-5, 100% R-2.5 Carpet - Detailed Example: Whole Slab, R-5, 100% R-2.5 Carpet + ASHRAE 140 Tests + ASHRAE 140 Tests @@ -1672,16 +1680,16 @@ IECC U-0.024 - Detailed Example: R-11, 2x6, 24 in o.c., 10% Framing - Detailed Example: R-11, 2x6, 24 in o.c., 10% Framing + ASHRAE 140 Tests: R-11 + ASHRAE 140 Tests: R-11 - Detailed Example: R-19, 2x6, 24 in o.c., 10% Framing - Detailed Example: R-19, 2x6, 24 in o.c., 10% Framing + ASHRAE 140 Tests: R-19 + ASHRAE 140 Tests: R-19 - Detailed Example: R-19 + R-38, 2x6, 24 in o.c., 10% Framing - Detailed Example: R-19 + R-38, 2x6, 24 in o.c., 10% Framing + ASHRAE 140 Tests: R-19 + R-38 + ASHRAE 140 Tests: R-19 + R-38 @@ -1740,8 +1748,8 @@ IECC U-0.024 - Detailed Example: Uninsulated, 0.5 in plywood, 0.25 in asphalt shingle - Detailed Example: Uninsulated, 0.5 in plywood, 0.25 in asphalt shingle + ASHRAE 140 Tests: Uninsulated + ASHRAE 140 Tests: Uninsulated @@ -1920,20 +1928,16 @@ Cool Roof - Detailed Example: 0.2 Solar Absorptance - Detailed Example: 0.2 Solar Absorptance - - - Detailed Example: 0.4 Solar Absorptance - Detailed Example: 0.4 Solar Absorptance + ASHRAE 140 Tests: Low Solar Absorptance + ASHRAE 140 Tests: Low Solar Absorptance - Detailed Example: 0.6 Solar Absorptance - Detailed Example: 0.6 Solar Absorptance + ASHRAE 140 Tests: Typical Solar Absorptance + ASHRAE 140 Tests: Typical Solar Absorptance - Detailed Example: 0.75 Solar Absorptance - Detailed Example: 0.75 Solar Absorptance + HERS Reference + HERS Reference @@ -2168,16 +2172,16 @@ Wood Stud, IECC U-0.045 - Detailed Example: Wood Stud, Uninsulated, 2x4, 16 in o.c., 25% Framing - Detailed Example: Wood Stud, Uninsulated, 2x4, 16 in o.c., 25% Framing + ASHRAE 140 Tests: Wood Stud, Uninsulated + ASHRAE 140 Tests: Wood Stud, Uninsulated - Detailed Example: Wood Stud, R-11, 2x4, 16 in o.c., 25% Framing - Detailed Example: Wood Stud, R-11, 2x4, 16 in o.c., 25% Framing + ASHRAE 140 Tests: Wood Stud, R-11 + ASHRAE 140 Tests: Wood Stud, R-11 - Detailed Example: Wood Stud, R-18, 2x6, 24 in o.c., 25% Framing - Detailed Example: Wood Stud, R-18, 2x6, 24 in o.c., 25% Framing + ASHRAE 140 Tests: Wood Stud, R-18 + ASHRAE 140 Tests: Wood Stud, R-18 @@ -2236,8 +2240,8 @@ R-21 - Detailed Example: R-7.2 - Detailed Example: R-7.2 + ASHRAE 140 Tests: R-7.2 + ASHRAE 140 Tests: R-7.2 @@ -2456,20 +2460,16 @@ Masonite, Reflective - Detailed Example: 0.2 Solar Absorptance - Detailed Example: 0.2 Solar Absorptance + ASHRAE 140 Tests: Low Solar Absorptance + ASHRAE 140 Tests: Low Solar Absorptance - Detailed Example: 0.4 Solar Absorptance - Detailed Example: 0.4 Solar Absorptance + ASHRAE 140 Tests: Typical Solar Absorptance + ASHRAE 140 Tests: Typical Solar Absorptance - Detailed Example: 0.6 Solar Absorptance - Detailed Example: 0.6 Solar Absorptance - - - Detailed Example: 0.75 Solar Absorptance - Detailed Example: 0.75 Solar Absorptance + HERS Reference + HERS Reference @@ -2660,12 +2660,12 @@ EnergyStar, Southern - Detailed Example: Single, Clear, Aluminum w/ Thermal Break - Detailed Example: Single, Clear, Aluminum w/ Thermal Break + ASHRAE 140 Tests: Single, Clear + ASHRAE 140 Tests: Single, Clear - Detailed Example: Double, Low-E, Wood, Argon, Insulated Spacer - Detailed Example: Double, Low-E, Wood, Argon, Insulated Spacer + ASHRAE 140 Tests: Double, Low-E + ASHRAE 140 Tests: Double, Low-E @@ -3092,8 +3092,8 @@ Detailed Example: 1.5ft, Back/Left/Right Windows, 2ft Offset, 4ft Window Height - Detailed Example: 2.5ft, Front Windows, 1ft Offset, 5ft Window Height - Detailed Example: 2.5ft, Front Windows, 1ft Offset, 5ft Window Height + ASHRAE 140 Tests: 2.5ft, Front Windows + ASHRAE 140 Tests: 2.5ft, Front Windows @@ -3263,14 +3263,14 @@ IECC U-0.30 IECC U-0.30 - - Detailed Example: Solid Wood, R-3.04 - Detailed Example: Solid Wood, R-3.04 - Detailed Example: Insulated Fiberglass/Steel, R-4.4 Detailed Example: Insulated Fiberglass/Steel, R-4.4 + + ASHRAE 140 Tests: Solid Wood + ASHRAE 140 Tests: Solid Wood + @@ -3435,6 +3435,10 @@ 1.5 nACH 1.5 nACH + + HERS Reference + HERS Reference + Detailed Example: 3.57 ACH50 Detailed Example: 3.57 ACH50 @@ -3455,10 +3459,6 @@ Detailed Example: 72 nCFM Detailed Example: 72 nCFM - - Detailed Example: 79.8 sq. in. ELA - Detailed Example: 79.8 sq. in. ELA - Detailed Example: 123 sq. in. ELA Detailed Example: 123 sq. in. ELA @@ -4627,10 +4627,6 @@ Packaged Terminal HP, EER 13.2, COP 3.9 Packaged Terminal HP, EER 13.2, COP 3.9 - - Detailed Example: Central HP, SEER2 12.4, HSPF2 8.4 - Detailed Example: Central HP, SEER2 12.4, HSPF2 8.4 - Detailed Example: Central HP, SEER2 13.4, HSPF2 7.0, Absolute Detailed Performance Detailed Example: Central HP, SEER2 13.4, HSPF2 7.0, Absolute Detailed Performance @@ -4655,6 +4651,10 @@ Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Normalized Detailed Performance Detailed Example: Ductless Mini-Split HP, SEER2 19.0, HSPF2 9.0, Normalized Detailed Performance + + HERS HVAC Tests: Central HP, SEER2 12.4, HSPF2 8.4 + HERS HVAC Tests: Central HP, SEER2 12.4, HSPF2 8.4 + @@ -6195,14 +6195,14 @@ Detailed Example: 5 CFM50 per 100ft2 (75% Supply), R-4 Detailed Example: 5 CFM50 per 100ft2 (75% Supply), R-4 - - Detailed Example: 250 CFM25, R-6 - Detailed Example: 250 CFM25, R-6 - Detailed Example: 400 CFM50 (75% Supply), R-6 Detailed Example: 400 CFM50 (75% Supply), R-6 + + HERS DSE Tests: 250 CFM25, R-6 + HERS DSE Tests: 250 CFM25, R-6 + @@ -6748,20 +6748,20 @@ Detailed Example: Electricity, Heat Pump, 80 gal, EF 3.1 - Detailed Example: Natural Gas, Tank, 40 gal, EF 0.56, RE 0.78 - Detailed Example: Natural Gas, Tank, 40 gal, EF 0.56, RE 0.78 + Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59 + Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59 - Detailed Example: Natural Gas, Tank, 40 gal, EF 0.62, RE 0.78 - Detailed Example: Natural Gas, Tank, 40 gal, EF 0.62, RE 0.78 + Detailed Example: Natural Gas, Tankless, EF 0.95 + Detailed Example: Natural Gas, Tankless, EF 0.95 - Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59, RE 0.76 - Detailed Example: Natural Gas, Tank, 50 gal, EF 0.59, RE 0.76 + HERS Hot Water Tests: Natural Gas, Tank, 40 gal, EF 0.56 + HERS Hot Water Tests: Natural Gas, Tank, 40 gal, EF 0.56 - Detailed Example: Natural Gas, Tankless, EF 0.95 - Detailed Example: Natural Gas, Tankless, EF 0.95 + HERS Hot Water Tests: Natural Gas, Tank, 40 gal, EF 0.62 + HERS Hot Water Tests: Natural Gas, Tank, 40 gal, EF 0.62 @@ -6868,12 +6868,12 @@ Insulated, Recirc, Manual Demand Control - Detailed Example: Insulated, Recirc, Uncontrolled, 156.9ft Loop, 10ft Branch, 50 W - Detailed Example: Insulated, Recirc, Uncontrolled, 156.9ft Loop, 10ft Branch, 50 W + HERS Hot Water Tests: Insulated, Recirc, Uncontrolled + HERS Hot Water Tests: Insulated, Recirc, Uncontrolled - Detailed Example: Insulated, Recirc, Manual Demand Control, 156.9ft Loop, 10ft Branch, 50 W - Detailed Example: Insulated, Recirc, Manual Demand Control, 156.9ft Loop, 10ft Branch, 50 W + HERS Hot Water Tests: Insulated, Recirc, Manual Demand Control + HERS Hot Water Tests: Insulated, Recirc, Manual Demand Control @@ -7040,8 +7040,8 @@ 55% Efficient, Preheats Hot and Cold, 1 Shower - Detailed Example: 54% Efficient, Preheats Hot and Cold, All Showers - Detailed Example: 54% Efficient, Preheats Hot and Cold, All Showers + HERS Hot Water Tests: 54% Efficient, Preheats Hot and Cold, All Showers + HERS Hot Water Tests: 54% Efficient, Preheats Hot and Cold, All Showers @@ -8792,8 +8792,8 @@ CEE Tier II, 2018, 200% Usage - Detailed Example: ERI Reference 2006 - Detailed Example: ERI Reference 2006 + HERS Reference + HERS Reference Detailed Example: MEF 1.65 @@ -8948,12 +8948,12 @@ Propane, Standard, 200% Usage - Detailed Example: Electricity, ERI Reference 2006 - Detailed Example: Electricity, ERI Reference 2006 + HERS Reference: Electricity + HERS Reference: Electricity - Detailed Example: Natural Gas, ERI Reference 2006 - Detailed Example: Natural Gas, ERI Reference 2006 + HERS Reference: Natural Gas + HERS Reference: Natural Gas Detailed Example: Electricity, EF 4.29 @@ -9048,8 +9048,8 @@ EnergyStar, Compact, 200% Usage - Detailed Example: ERI Reference 2006 - Detailed Example: ERI Reference 2006 + HERS Reference + HERS Reference Detailed Example: EF 0.7, Compact @@ -9216,16 +9216,16 @@ 348 kWh/yr, 110% Usage - Detailed Example: ERI Reference 2006, 2-Bedroom Home - Detailed Example: ERI Reference 2006, 2-Bedroom Home + HERS Reference: 2-Bedroom Home + HERS Reference: 2-Bedroom Home - Detailed Example: ERI Reference 2006, 3-Bedroom Home - Detailed Example: ERI Reference 2006, 3-Bedroom Home + HERS Reference: 3-Bedroom Home + HERS Reference: 3-Bedroom Home - Detailed Example: ERI Reference 2006, 4-Bedroom Home - Detailed Example: ERI Reference 2006, 4-Bedroom Home + HERS Reference: 4-Bedroom Home + HERS Reference: 4-Bedroom Home Detailed Example: 650 kWh/yr, Conditioned Basement @@ -9992,8 +9992,8 @@ 100% CFL, 200% Usage - Detailed Example: 10% CFL - Detailed Example: 10% CFL + HERS Reference + HERS Reference Detailed Example: 40% CFL, 10% LFL, 25% LED @@ -10284,12 +10284,12 @@ 400% Usage - Detailed Example: 2457 kWh/yr, 85.5% Sensible, 4.5% Latent - Detailed Example: 2457 kWh/yr, 85.5% Sensible, 4.5% Latent + Detailed Example: 2457 kWh/yr + Detailed Example: 2457 kWh/yr - Detailed Example: 7302 kWh/yr, 82.2% Sensible, 17.8% Latent - Detailed Example: 7302 kWh/yr, 82.2% Sensible, 17.8% Latent + ASHRAE 140 Tests + ASHRAE 140 Tests @@ -11596,10 +11596,10 @@ false - unit_multiplier - Building Construction: Unit Multiplier - The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. - Integer + unit_multipliers + Building Construction: Unit Multipliers + Specifies the unit multipliers. Use a comma-separated list. + String false false @@ -12664,7 +12664,7 @@ measure.rb rb script - 5F1A3413 + 6A1A7302 diff --git a/measures/ApplyUpgrade/measure.rb b/measures/ApplyUpgrade/measure.rb index 41b3ac4b4b..73aa43f0dd 100644 --- a/measures/ApplyUpgrade/measure.rb +++ b/measures/ApplyUpgrade/measure.rb @@ -315,6 +315,8 @@ def run(model, runner, user_arguments) return false end + unit_multipliers = [] + # Set arguments for the BuildResidentialHPXML measure hpxml_path = File.expand_path('../upgraded.xml') measures['BuildResidentialHPXML'] = [{ 'hpxml_path' => hpxml_path }] @@ -325,8 +327,9 @@ def run(model, runner, user_arguments) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) hpxml.buildings.each do |hpxml_bldg| + unit_multipliers << hpxml_bldg.building_construction.number_of_units + set_resstock_arguments(measures, resstock_arguments_runner) - set_building_construction(measures, hpxml_bldg) set_dehumidifier(measures, hpxml_bldg) get_hvac_systems(measures, existing_options_measure_args) @@ -355,6 +358,7 @@ def run(model, runner, user_arguments) # Set arguments for the ResStockArgumentsPostHPXML measure measures['ResStockArgumentsPostHPXML'][0]['hpxml_path'] = hpxml_path measures['ResStockArgumentsPostHPXML'][0]['building_id'] = values['building_id'] + measures['ResStockArgumentsPostHPXML'][0]['unit_multipliers'] = unit_multipliers.join(', ') measures_hash = { 'ResStockArgumentsPostHPXML' => measures['ResStockArgumentsPostHPXML'] } if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) register_logs(runner, new_runner) @@ -469,12 +473,6 @@ def set_resstock_arguments(measures, child_runner) end end - def set_building_construction(measures, hpxml_bldg) - if hpxml_bldg.building_construction.number_of_units > 1 - measures['ResStockArgumentsPostHPXML'][0]['unit_multiplier'] = hpxml_bldg.building_construction.number_of_units - end - end - def set_building_header(measures) additional_properties = [] ['ceiling_insulation_r'].each do |arg_name| diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml index 663f62b5c0..53ace653ba 100644 --- a/measures/ApplyUpgrade/measure.xml +++ b/measures/ApplyUpgrade/measure.xml @@ -3,8 +3,8 @@ 3.1 apply_upgrade 33f1654c-f734-43d1-b35d-9d2856e41b5a - 6102b2ba-0d28-488c-a2bd-a869de7e258b - 2025-12-16T05:14:59Z + ade5a5cf-d840-46be-8632-9006c933292a + 2025-12-16T19:53:35Z 9339BE01 ApplyUpgrade Apply Upgrade @@ -25016,7 +25016,7 @@ measure.rb rb script - 55B70AE3 + 5FBF6B1E constants.rb diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 1e269fdc5a..ab7793d4e1 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -382,11 +382,11 @@ def run(model, runner, user_arguments) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) (1..num_units_modeled).each do |unit_number| - set_resstock_arguments(measures, resstock_arguments_runner) if not unit_multipliers.empty? unit_multiplier = unit_multipliers[unit_number] end - set_building_construction(measures, unit_multiplier) + + set_resstock_arguments(measures, resstock_arguments_runner) set_dehumidifier(measures, unit_multiplier) # Specify measures to run @@ -417,6 +417,7 @@ def run(model, runner, user_arguments) measures['ResStockArgumentsPostHPXML'] = [{}] if !measures.keys.include?('ResStockArgumentsPostHPXML') measures['ResStockArgumentsPostHPXML'][0]['hpxml_path'] = hpxml_path measures['ResStockArgumentsPostHPXML'][0]['building_id'] = args[:building_id] + measures['ResStockArgumentsPostHPXML'][0]['unit_multipliers'] = unit_multipliers.join(', ') measures_hash = { 'ResStockArgumentsPostHPXML' => measures['ResStockArgumentsPostHPXML'] } if not apply_measures(measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ModelMeasure', nil) register_logs(runner, new_runner) @@ -663,12 +664,6 @@ def set_building_header(measures) measures['BuildResidentialHPXML'][0]['additional_properties'] = additional_properties.join('|') unless additional_properties.empty? end - def set_building_construction(measures, unit_multiplier) - if not unit_multiplier.nil? - measures['ResStockArgumentsPostHPXML'][0]['unit_multiplier'] = unit_multiplier - end - end - def set_dehumidifier(measures, unit_multiplier) if unit_multiplier.to_i > 1 measures['BuildResidentialHPXML'][0]['appliance_dehumidifier'] = 'None' # limitation of OS-HPXML diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index c06c78ec79..24ac59a845 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 0c24b3a3-a79b-456e-a4a0-2e4a142609f4 - 2025-12-16T17:30:00Z + ecb56829-0e75-49a2-a325-beb1e36e6e1a + 2025-12-16T19:53:35Z 2C38F48B BuildExistingModel Build Existing Model @@ -395,7 +395,7 @@ measure.rb rb script - 4E32DB0A + D3ACA2DB diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index 03af9e0ff7..fe581357b4 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -1766,12 +1766,12 @@ The building vintage, used for informational purposes only.
-**Building Construction: Unit Multiplier** +**Building Construction: Unit Multipliers** -The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. +Specifies the unit multipliers. Use a comma-separated list. -- **Name:** ``unit_multiplier`` -- **Type:** ``Integer`` +- **Name:** ``unit_multipliers`` +- **Type:** ``String`` - **Required:** ``false`` diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 6a3f96cf4a..2dc842b903 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -165,9 +165,9 @@ def arguments(model) arg.setDescription('The building vintage, used for informational purposes only.') args << arg - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('unit_multiplier', false) - arg.setDisplayName('Building Construction: Unit Multiplier') - arg.setDescription('The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1.') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('unit_multipliers', false) + arg.setDisplayName('Building Construction: Unit Multipliers') + arg.setDescription('Specifies the unit multipliers. Use a comma-separated list.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ceiling_insulation_r', true) diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 67f20900f7..7c034426ce 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 6e04ae0e-e480-4d72-96ad-887815b429af - 2025-12-16T16:55:21Z + 64106d43-27aa-42d1-b8ec-57cf2a0f5a84 + 2025-12-16T19:53:38Z 2C38F48B ResStockArguments ResStock Arguments @@ -11469,10 +11469,10 @@ false
- unit_multiplier - Building Construction: Unit Multiplier - The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. - Integer + unit_multipliers + Building Construction: Unit Multipliers + Specifies the unit multipliers. Use a comma-separated list. + String false false @@ -12434,7 +12434,7 @@ README.md md readme - EAFD6405 + 0DD0A143 README.md.erb @@ -12451,7 +12451,7 @@ measure.rb rb script - 3640C634 + CF6A3276 constants.rb diff --git a/measures/ResStockArgumentsPostHPXML/measure.rb b/measures/ResStockArgumentsPostHPXML/measure.rb index dca0491cb8..2c84196598 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.rb +++ b/measures/ResStockArgumentsPostHPXML/measure.rb @@ -247,6 +247,9 @@ def run(model, runner, user_arguments) register_value(runner, unavailable_output_name, date_range) end + # Unit Multipliers + unit_multipliers = args[:unit_multipliers].to_s.split(',').map(&:strip) + @hpxml.buildings.each_with_index do |hpxml_bldg, unit_number| # Site if not args[:site_iecc_zone].nil? @@ -267,8 +270,8 @@ def run(model, runner, user_arguments) # default end end - if not args[:unit_multiplier].nil? - hpxml_bldg.building_construction.number_of_units = args[:unit_multiplier] + if not unit_multipliers.empty? + hpxml_bldg.building_construction.number_of_units = unit_multipliers[unit_number] end # Usage Multipliers diff --git a/measures/ResStockArgumentsPostHPXML/measure.xml b/measures/ResStockArgumentsPostHPXML/measure.xml index 87b74068cb..772118966d 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.xml +++ b/measures/ResStockArgumentsPostHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments_post_hpxml db102ce5-ac96-4ef9-90d3-abbe53478716 - 223f3f88-f7aa-42cf-9884-ba93a298d253 - 2025-12-16T16:55:23Z + 84e7b69a-f163-4d61-ba6d-24eea7d601a9 + 2025-12-16T19:53:40Z 2C38F48B ResStockArgumentsPostHPXML ResStock Arguments Post-HPXML @@ -11469,10 +11469,10 @@ false - unit_multiplier - Building Construction: Unit Multiplier - The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. - Integer + unit_multipliers + Building Construction: Unit Multipliers + Specifies the unit multipliers. Use a comma-separated list. + String false false @@ -12447,7 +12447,7 @@ measure.rb rb script - 78214553 + 4F2D0B10 common/README.md From 5ce4c87d4b42aa16ecffc285b37ff7be03505bc8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 12:56:27 -0700 Subject: [PATCH 59/82] Update retain schedules csv argument for multiple files in ServerDirectoryCleanup. --- measures/ServerDirectoryCleanup/README.md | 2 +- measures/ServerDirectoryCleanup/measure.rb | 4 ++-- measures/ServerDirectoryCleanup/measure.xml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/measures/ServerDirectoryCleanup/README.md b/measures/ServerDirectoryCleanup/README.md index e4a5a3c3d3..7233d75203 100644 --- a/measures/ServerDirectoryCleanup/README.md +++ b/measures/ServerDirectoryCleanup/README.md @@ -253,7 +253,7 @@ Present a bunch of bool arguments corresponding to EnergyPlus output files. "Fal
-**Retain *schedules.csv** +**Retain *schedules*.csv** diff --git a/measures/ServerDirectoryCleanup/measure.rb b/measures/ServerDirectoryCleanup/measure.rb index 344d9b0e46..4e918a98b8 100644 --- a/measures/ServerDirectoryCleanup/measure.rb +++ b/measures/ServerDirectoryCleanup/measure.rb @@ -136,7 +136,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg arg = OpenStudio::Measure::OSArgument.makeBoolArgument('retain_schedules_csv', true) - arg.setDisplayName('Retain *schedules.csv') + arg.setDisplayName('Retain *schedules*.csv') arg.setDefaultValue(true) args << arg @@ -199,7 +199,7 @@ def run(runner, user_arguments) :retain_eplustbl_htm => 'eplustbl.htm', :retain_stdout_energyplus => 'stdout-energyplus', :retain_stdout_expandobject => 'stdout-expandobject', - :retain_schedules_csv => '*schedules.csv' + :retain_schedules_csv => '*schedules*.csv' } # delete output files based on the map diff --git a/measures/ServerDirectoryCleanup/measure.xml b/measures/ServerDirectoryCleanup/measure.xml index f8a10a17ee..227fcb163a 100644 --- a/measures/ServerDirectoryCleanup/measure.xml +++ b/measures/ServerDirectoryCleanup/measure.xml @@ -3,8 +3,8 @@ 3.1 server_directory_cleanup ec7d04ad-0b7b-495b-825a-e1b6d28d1d3f - c18a33f9-682b-49fb-9944-cbd8ad95205d - 2025-10-01T22:08:32Z + 3e0b8fb0-74bb-4068-9a6f-3bee86beef08 + 2025-12-16T19:53:41Z 5F1EDF75 ServerDirectoryCleanup Server Directory Cleanup @@ -409,7 +409,7 @@ retain_schedules_csv - Retain *schedules.csv + Retain *schedules*.csv Boolean true false @@ -467,7 +467,7 @@ README.md md readme - 3228A56C + 3ACBC252
README.md.erb @@ -484,7 +484,7 @@ measure.rb rb script - 73F2E49D + 6E20E4EC From 894e733834f5a45d3e8d5afa889691799ee7eedf Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 13:00:29 -0700 Subject: [PATCH 60/82] Make expected warning messages with MyBuilding more generic. --- test/test_run_analysis.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/test_run_analysis.rb b/test/test_run_analysis.rb index 8c8b4ad6b1..51af980d4d 100644 --- a/test/test_run_analysis.rb +++ b/test/test_run_analysis.rb @@ -380,13 +380,13 @@ def _verify_outputs(cli_output_log) next if _expected_warning_message(message, 'It is not possible to eliminate all HVAC energy use (e.g. crankcase/defrost energy) in EnergyPlus during an unavailable period.') next if _expected_warning_message(message, 'It is not possible to eliminate all DHW energy use (e.g. water heater parasitics) in EnergyPlus during an unavailable period.') next if _expected_warning_message(message, 'It is not possible to eliminate all HVAC energy use (e.g. crankcase/defrost energy) in EnergyPlus outside of an HVAC season.') - next if _expected_warning_message(message, 'No space heating specified, the model will not include space heating energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No space cooling specified, the model will not include space cooling energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No clothes washer specified, the model will not include clothes washer energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No clothes dryer specified, the model will not include clothes dryer energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No dishwasher specified, the model will not include dishwasher energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No refrigerator specified, the model will not include refrigerator energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No cooking range specified, the model will not include cooking range/oven energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') + next if _expected_warning_message(message, 'No space heating specified, the model will not include space heating energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No space cooling specified, the model will not include space cooling energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No clothes washer specified, the model will not include clothes washer energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No clothes dryer specified, the model will not include clothes dryer energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No dishwasher specified, the model will not include dishwasher energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No refrigerator specified, the model will not include refrigerator energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No cooking range specified, the model will not include cooking range/oven energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') next if _expected_warning_message(message, "Foundation type of 'AboveApartment' cannot have a non-zero height. Assuming height is zero.") next if _expected_warning_message(message, 'Could not find state average propane rate based on') next if _expected_warning_message(message, 'Could not find state average fuel oil rate based on') @@ -399,9 +399,9 @@ def _verify_outputs(cli_output_log) next if _expected_warning_message(message, 'Could not find County=') # we intentionally leave some fields blank in resources/data/simple_rates/County.tsv next if _expected_warning_message(message, 'Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled.') next if _expected_warning_message(message, "Request for output variable 'Zone People Occupant Count' returned no results.") - next if _expected_warning_message(message, 'No windows specified, the model will not include window heat transfer. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No interior lighting specified, the model will not include interior lighting energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') - next if _expected_warning_message(message, 'No exterior lighting specified, the model will not include exterior lighting energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]') + next if _expected_warning_message(message, 'No windows specified, the model will not include window heat transfer. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No interior lighting specified, the model will not include interior lighting energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') + next if _expected_warning_message(message, 'No exterior lighting specified, the model will not include exterior lighting energy use. [context: /HPXML/Building/BuildingDetails, id: "MyBuilding') next if _expected_warning_message(message, 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.') next if _expected_warning_message(message, 'Cooling capacity should typically be greater than or equal to 1000 Btu/hr. [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem[CoolingSystemType="room air conditioner" or CoolingSystemType="packaged terminal air conditioner"]') next if _expected_warning_message(message, 'Cooling capacity should typically be greater than or equal to 1000 Btu/hr. [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem[CoolingSystemType="central air conditioner"]') From 21828b656acde11aa2bd03cacce47952986e3b68 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 16 Dec 2025 13:22:47 -0700 Subject: [PATCH 61/82] Expose whole_sfa_or_mf_building_sim as an argument so we can try to get all tests to pass. --- measures/BuildExistingModel/README.md | 11 +++++++++ measures/BuildExistingModel/measure.rb | 8 ++++++- measures/BuildExistingModel/measure.xml | 27 +++++++++++++++++++---- project_national/national_baseline.yml | 1 + project_national/sdr_upgrades_amy2018.yml | 1 + project_testing/testing_baseline.yml | 1 + 6 files changed, 44 insertions(+), 5 deletions(-) diff --git a/measures/BuildExistingModel/README.md b/measures/BuildExistingModel/README.md index de478cf084..c922f6849c 100644 --- a/measures/BuildExistingModel/README.md +++ b/measures/BuildExistingModel/README.md @@ -463,6 +463,17 @@ If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creat
+**Whole SFA/MF Building Simulation?** + +Set true if creating an HPXML file to simulate a whole single-family attached or multifamily building with multiple dwelling units within. If an HPXML file already exists at the specified HPXML File Path, a new HPXML Building element describing the current dwelling unit will be appended to this HPXML file. + +- **Name:** ``whole_sfa_or_mf_building_sim`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index ab7793d4e1..101f076e74 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -238,6 +238,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(false) args << arg + arg = OpenStudio::Measure::OSArgument.makeBoolArgument('whole_sfa_or_mf_building_sim', false) + arg.setDisplayName('Whole SFA/MF Building Simulation?') + arg.setDescription('Set true if creating an HPXML file to simulate a whole single-family attached or multifamily building with multiple dwelling units within. If an HPXML file already exists at the specified HPXML File Path, a new HPXML Building element describing the current dwelling unit will be appended to this HPXML file.') + arg.setDefaultValue(false) + args << arg + return args end @@ -355,7 +361,7 @@ def run(model, runner, user_arguments) end # Optional whole SFA/MF building simulation - whole_sfa_or_mf_building_sim = true + whole_sfa_or_mf_building_sim = args[:whole_sfa_or_mf_building_sim] n_units = measures['ResStockArguments'][0]['geometry_building_num_units'] if n_units.nil? whole_sfa_or_mf_building_sim = false diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 24ac59a845..27a4230b38 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - ecb56829-0e75-49a2-a325-beb1e36e6e1a - 2025-12-16T19:53:35Z + 6967fa5f-5f4a-423e-b9fe-dd87dacb5fe8 + 2025-12-16T20:21:47Z 2C38F48B BuildExistingModel Build Existing Model @@ -360,6 +360,25 @@ + + whole_sfa_or_mf_building_sim + Whole SFA/MF Building Simulation? + Set true if creating an HPXML file to simulate a whole single-family attached or multifamily building with multiple dwelling units within. If an HPXML file already exists at the specified HPXML File Path, a new HPXML Building element describing the current dwelling unit will be appended to this HPXML file. + Boolean + false + false + false + + + true + true + + + false + false + + + @@ -378,7 +397,7 @@ README.md md readme - 86B2EC16 + 1B5097FF README.md.erb @@ -395,7 +414,7 @@ measure.rb rb script - D3ACA2DB + BAC78EC3 diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index f1010f1a14..e4e8e83a8f 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -64,6 +64,7 @@ workflow_generator: simulation_control_run_period_end_month: 12 simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2007 + whole_sfa_or_mf_building_sim: true # Emissions scenarios emissions: diff --git a/project_national/sdr_upgrades_amy2018.yml b/project_national/sdr_upgrades_amy2018.yml index fed8de7284..1c05cfe63b 100644 --- a/project_national/sdr_upgrades_amy2018.yml +++ b/project_national/sdr_upgrades_amy2018.yml @@ -72,6 +72,7 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2018 add_component_loads: true + whole_sfa_or_mf_building_sim: false # Emissions scenarios emissions: diff --git a/project_testing/testing_baseline.yml b/project_testing/testing_baseline.yml index 457f67c3f2..19a86606af 100644 --- a/project_testing/testing_baseline.yml +++ b/project_testing/testing_baseline.yml @@ -65,6 +65,7 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2007 add_component_loads: true + whole_sfa_or_mf_building_sim: false # Emissions scenarios emissions: From 9ff5f32e4cf6010fae642c727b8dabcd8c30a859 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 17 Dec 2025 10:23:33 -0700 Subject: [PATCH 62/82] Add expected warning about NumberofUnits greater than 1. --- test/test_run_analysis.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_run_analysis.rb b/test/test_run_analysis.rb index 51af980d4d..8c5cfceed2 100644 --- a/test/test_run_analysis.rb +++ b/test/test_run_analysis.rb @@ -417,6 +417,7 @@ def _verify_outputs(cli_output_log) next if _expected_warning_message(message, "Could not find row='pre_peak_period' in unavailable_periods.csv") next if _expected_warning_message(message, 'Electric vehicle specified with no charger provided; home EV charging will not be modeled.') next if _expected_warning_message(message, 'Based on the assumed vintage parsed in the title string of ASHRAE Handbook of Fundamentals 2017, we expected 15 Extreme fields but got 16, falling to back to heuristics.') + next if _expected_warning_message(message, 'NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding') # For the EV minutes warning try replacing the number of minutes as a string rather than a number. new_message = message.gsub(/\(([^)]+)\)/) { |match| $1.match?(/^\d+(\.\d+)?$/) ? '()' : match } From aa0601dff4692ee57e7e98a87c61a78f93c54a33 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 17 Dec 2025 15:46:55 -0700 Subject: [PATCH 63/82] Add new SimulationOutput meta measure. --- measures/AddSharedSystem/measure.rb | 6 +- measures/AddSharedSystem/measure.xml | 8 +- measures/SimulationOutput/measure.rb | 180 +++++ measures/SimulationOutput/measure.xml | 928 ++++++++++++++++++++++++++ 4 files changed, 1116 insertions(+), 6 deletions(-) create mode 100644 measures/SimulationOutput/measure.rb create mode 100644 measures/SimulationOutput/measure.xml diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index dabdf49433..b0f557cb74 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -1,5 +1,8 @@ # frozen_string_literal: true +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + require 'openstudio' # require 'openstudio-standards' require_relative '../../resources/buildstock' @@ -8,8 +11,7 @@ class AddSharedSystem < OpenStudio::Measure::ModelMeasure # human readable name def name - # Measure name should be the title case of the class name. - return 'AddSharedSystem' + return 'Add Shared System' end # human readable description diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index fdd2fff2fa..7d2be4b55b 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,11 +3,11 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 8994100c-9a06-4fcd-8706-988d3ef6f4fe - 2025-12-16T19:53:34Z + d40b44a0-5f13-4d3f-8664-560205d85758 + 2025-12-17T20:39:04Z BED8DECF AddSharedSystem - AddSharedSystem + Add Shared System TODO TODO @@ -12664,7 +12664,7 @@ measure.rb rb script - 6A1A7302 + 132E820E diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb new file mode 100644 index 0000000000..5f83a20c90 --- /dev/null +++ b/measures/SimulationOutput/measure.rb @@ -0,0 +1,180 @@ +# frozen_string_literal: true + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +require_relative '../../resources/buildstock' +require_relative '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure' + +# start the measure +class SimulationOutput < OpenStudio::Measure::ReportingMeasure + # human readable name + def name + return 'Simulation Output' + end + + # human readable description + def description + return 'TODO' + end + + # human readable description of modeling approach + def modeler_description + return 'TODO' + end + + # define the arguments that the user will input + def arguments(model) # rubocop:disable Lint/UnusedMethodArgument + args = OpenStudio::Measure::OSArgumentVector.new + + # Allow same arguments as ReportSimulationOutput and ReportUtilityBills measures + + hpxml_measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) + + full_measure_path = File.join(hpxml_measures_dir, 'ReportSimulationOutput', 'measure.rb') + measure_arguments = get_measure_instance(full_measure_path).arguments(model) + measure_arguments.each do |arg| + arg.setRequired(false) + args << arg + end + + full_measure_path = File.join(hpxml_measures_dir, 'ReportUtilityBills', 'measure.rb') + measure_arguments = get_measure_instance(full_measure_path).arguments(model) + measure_arguments.each do |arg| + arg.setRequired(false) + args << arg + end + + return args + end + + def modelOutputRequests(model, runner, user_arguments) + return false if runner.halted + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Apply reporting measure output requests + hpxml_measures_dir = File.join(File.dirname(__FILE__), '../../resources/hpxml-measures') + args = runner.getArgumentValues(arguments(model), user_arguments) + measures = setup_measures(args) + apply_model_output_requests(hpxml_measures_dir, measures, runner, model) + end + + # Set arguments for the ReportSimulationOutput and ReportUtilityBills measures + def setup_measures(args) + measures = {} + + measures['ReportSimulationOutput'] = [{ 'output_format' => args[:output_format], + 'include_annual_total_consumptions' => args[:include_annual_total_consumptions], + 'include_annual_fuel_consumptions' => args[:include_annual_fuel_consumptions], + 'include_annual_end_use_consumptions' => args[:include_annual_end_use_consumptions], + 'include_annual_system_use_consumptions' => args[:include_annual_system_use_consumptions], + 'include_annual_emissions' => args[:include_annual_emissions], + 'include_annual_emission_fuels' => args[:include_annual_emission_fuels], + 'include_annual_emission_end_uses' => args[:include_annual_emission_end_uses], + 'include_annual_total_loads' => args[:include_annual_total_loads], + 'include_annual_unmet_hours' => args[:include_annual_unmet_hours], + 'include_annual_peak_fuels' => args[:include_annual_peak_fuels], + 'include_annual_peak_loads' => args[:include_annual_peak_loads], + 'include_annual_component_loads' => args[:include_annual_component_loads], + 'include_annual_hot_water_uses' => args[:include_annual_hot_water_uses], + 'include_annual_hvac_summary' => args[:include_annual_hvac_summary], + 'include_annual_resilience' => args[:include_annual_resilience], + 'timeseries_frequency' => args[:timeseries_frequency], + 'include_timeseries_total_consumptions' => args[:include_timeseries_total_consumptions], + 'include_timeseries_fuel_consumptions' => args[:include_timeseries_fuel_consumptions], + 'include_timeseries_end_use_consumptions' => args[:include_timeseries_end_use_consumptions], + 'include_timeseries_system_use_consumptions' => args[:include_timeseries_system_use_consumptions], + 'include_timeseries_emissions' => args[:include_timeseries_emissions], + 'include_timeseries_emission_fuels' => args[:include_timeseries_emission_fuels], + 'include_timeseries_emission_end_uses' => args[:include_timeseries_emission_end_uses], + 'include_timeseries_hot_water_uses' => args[:include_timeseries_hot_water_uses], + 'include_timeseries_total_loads' => args[:include_timeseries_total_loads], + 'include_timeseries_component_loads' => args[:include_timeseries_component_loads], + 'include_timeseries_unmet_hours' => args[:include_timeseries_unmet_hours], + 'include_timeseries_zone_temperatures' => args[:include_timeseries_zone_temperatures], + 'include_timeseries_zone_conditions' => args[:include_timeseries_zone_conditions], + 'include_timeseries_airflows' => args[:include_timeseries_airflows], + 'include_timeseries_weather' => args[:include_timeseries_weather], + 'include_timeseries_resilience' => args[:include_timeseries_resilience], + 'timeseries_timestamp_convention' => args[:timeseries_timestamp_convention], + 'timeseries_num_decimal_places' => args[:timeseries_num_decimal_places], + 'add_timeseries_dst_column' => args[:add_timeseries_dst_column], + 'add_timeseries_utc_column' => args[:add_timeseries_utc_column], + 'user_output_variables' => args[:user_output_variables], + 'user_output_meters' => args[:user_output_meters] }] + + measures['ReportUtilityBills'] = [{ 'output_format' => args[:output_format], + 'include_annual_bills' => args[:include_annual_bills], + 'include_monthly_bills' => args[:include_monthly_bills], + 'register_annual_bills' => args[:register_annual_bills], + 'register_monthly_bills' => args[:register_monthly_bills] }] + + return measures + end + + # define what happens when the measure is run + def run(runner, user_arguments) + super(runner, user_arguments) + + model = runner.lastOpenStudioModel + if model.empty? + runner.registerError('Cannot find OpenStudio model.') + return false + end + model = model.get + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Assign the user inputs to variables + args = runner.getArgumentValues(arguments(model), user_arguments) + + hpxml_defaults_path = model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get + building_id = model.getBuilding.additionalProperties.getFeatureAsString('building_id').get + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + + # Get file/dir paths + resources_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources')) + hpxml_measures_dir = File.join(File.dirname(__FILE__), '../../resources/hpxml-measures') + + # Check file/dir paths exist + check_dir_exists(resources_dir, runner) + [hpxml_measures_dir].each do |dir| + check_dir_exists(dir, runner) + end + + measures = setup_measures(args) + measures_hash = { 'ReportSimulationOutput' => measures['ReportSimulationOutput'], + 'ReportUtilityBills' => measures['ReportUtilityBills'] } + + new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + new_runner.setLastEpwFilePath(File.join(File.dirname(__FILE__), 'in.epw')) + if not apply_measures(hpxml_measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ReportingMeasure', nil) + register_logs(runner, new_runner) + return false + end + + num_units = hpxml.buildings.collect { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum + new_runner.result.stepValues.each do |step_value| + value = get_value_from_workflow_step_value(step_value) + variant_type = step_value.variantType + if ['Double'.to_VariantType, 'Integer'.to_VariantType].include? variant_type + value /= num_units # FIXME: there may be some outputs where it does not make sense to divide by num_units (e.g., unmet hours which are calculated as the max across units?) + end + register_value(runner, step_value.name, value) + end + + register_logs(runner, new_runner) + + return true + end +end + +# register the measure to be used by the application +SimulationOutput.new.registerWithApplication diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml new file mode 100644 index 0000000000..7d05549b58 --- /dev/null +++ b/measures/SimulationOutput/measure.xml @@ -0,0 +1,928 @@ + + + 3.1 + simulation_output + a86974d0-41ef-4779-a76b-9b99ba7a9ca9 + 67158bdd-b142-4b44-9098-971514ebab13 + 2025-12-17T22:46:02Z + 9BF1E6AC + SimulationOutput + Simulation Output + TODO + TODO + + + output_format + Output Format + The file format of the annual (and timeseries, if requested) outputs. If 'csv_dview' is selected, the timeseries CSV file will include header rows that facilitate opening the file in the DView application. + Choice + false + false + csv + + + csv + csv + + + json + json + + + msgpack + msgpack + + + csv_dview + csv_dview + + + + + include_annual_total_consumptions + Generate Annual Output: Total Consumptions + Generates annual energy consumptions for the total building. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_fuel_consumptions + Generate Annual Output: Fuel Consumptions + Generates annual energy consumptions for each fuel type. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_end_use_consumptions + Generate Annual Output: End Use Consumptions + Generates annual energy consumptions for each end use. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_system_use_consumptions + Generate Annual Output: System Use Consumptions + Generates annual energy consumptions for each end use of each HVAC and water heating system. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_emissions + Generate Annual Output: Emissions + Generates annual emissions. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_emission_fuels + Generate Annual Output: Emission Fuel Uses + Generates annual emissions for each fuel type. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_emission_end_uses + Generate Annual Output: Emission End Uses + Generates annual emissions for each end use. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_total_loads + Generate Annual Output: Total Loads + Generates annual heating, cooling, and hot water loads. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_unmet_hours + Generate Annual Output: Unmet Hours + Generates annual unmet hours for heating, cooling, and EV driving. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_peak_fuels + Generate Annual Output: Peak Fuels + Generates annual/summer/winter electricity peaks. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_peak_loads + Generate Annual Output: Peak Loads + Generates annual peak loads for heating/cooling. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_component_loads + Generate Annual Output: Component Loads + Generates annual heating and cooling loads disaggregated by component type. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_hot_water_uses + Generate Annual Output: Hot Water Uses + Generates annual hot water usages for each end use. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_hvac_summary + Generate Annual Output: HVAC Summary + Generates HVAC capacities, design temperatures, and design loads. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_annual_resilience + Generate Annual Output: Resilience + Generates annual resilience outputs. + Boolean + false + false + true + + + true + true + + + false + false + + + + + timeseries_frequency + Timeseries Reporting Frequency + The frequency at which to report timeseries output data. Using 'none' will disable timeseries outputs. + Choice + false + false + none + + + none + none + + + timestep + timestep + + + hourly + hourly + + + daily + daily + + + monthly + monthly + + + + + include_timeseries_total_consumptions + Generate Timeseries Output: Total Consumptions + Generates timeseries energy consumptions for the total building. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_fuel_consumptions + Generate Timeseries Output: Fuel Consumptions + Generates timeseries energy consumptions for each fuel type. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_end_use_consumptions + Generate Timeseries Output: End Use Consumptions + Generates timeseries energy consumptions for each end use. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_system_use_consumptions + Generate Timeseries Output: System Use Consumptions + Generates timeseries energy consumptions for each end use of each HVAC and water heating system. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_emissions + Generate Timeseries Output: Emissions + Generates timeseries emissions. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_emission_fuels + Generate Timeseries Output: Emission Fuel Uses + Generates timeseries emissions for each fuel type. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_emission_end_uses + Generate Timeseries Output: Emission End Uses + Generates timeseries emissions for each end use. Requires the appropriate HPXML inputs to be specified. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_hot_water_uses + Generate Timeseries Output: Hot Water Uses + Generates timeseries hot water usages for each end use. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_total_loads + Generate Timeseries Output: Total Loads + Generates timeseries heating, cooling, and hot water loads. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_component_loads + Generate Timeseries Output: Component Loads + Generates timeseries heating and cooling loads disaggregated by component type. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_unmet_hours + Generate Timeseries Output: Unmet Hours + Generates timeseries unmet hours for heating, cooling, and EV driving. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_zone_temperatures + Generate Timeseries Output: Zone Temperatures + Generates timeseries temperatures for each thermal zone. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_zone_conditions + Generate Timeseries Output: Zone Conditions + Generates timeseries temperatures and humidities for each thermal zone. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_airflows + Generate Timeseries Output: Airflows + Generates timeseries airflows. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_weather + Generate Timeseries Output: Weather + Generates timeseries weather data. + Boolean + false + false + false + + + true + true + + + false + false + + + + + include_timeseries_resilience + Generate Timeseries Output: Resilience + Generates timeseries resilience outputs. + Boolean + false + false + false + + + true + true + + + false + false + + + + + timeseries_timestamp_convention + Generate Timeseries Output: Timestamp Convention + Determines whether timeseries timestamps use the start-of-period or end-of-period convention. Doesn't apply if the output format is 'csv_dview'. + Choice + false + false + start + + + start + start + + + end + end + + + + + timeseries_num_decimal_places + Generate Timeseries Output: Number of Decimal Places + Allows overriding the default number of decimal places for timeseries outputs. + Integer + false + false + + + add_timeseries_dst_column + Generate Timeseries Output: Add TimeDST Column + Optionally add, in addition to the default local standard Time column, a local clock TimeDST column. Requires that daylight saving time is enabled. + Boolean + false + false + false + + + true + true + + + false + false + + + + + add_timeseries_utc_column + Generate Timeseries Output: Add TimeUTC Column + Optionally add, in addition to the default local standard Time column, a local clock TimeUTC column. If the time zone UTC offset is not provided in the HPXML file, the time zone in the EPW header will be used. + Boolean + false + false + false + + + true + true + + + false + false + + + + + user_output_variables + Generate Timeseries Output: EnergyPlus Output Variables + Optionally generates timeseries EnergyPlus output variables. If multiple output variables are desired, use a comma-separated list. Do not include key values; by default all key values will be requested. Example: "Zone People Occupant Count, Zone People Total Heating Energy" + String + false + false + + + user_output_meters + Generate Timeseries Output: EnergyPlus Output Meters + Optionally generates timeseries EnergyPlus output meters. If multiple output meters are desired, use a comma-separated list. Example: "Electricity:Facility, HeatingCoils:EnergyTransfer" + String + false + false + + + annual_output_file_name + Annual Output File Name + If not provided, defaults to 'results_annual.csv' (or 'results_annual.json' or 'results_annual.msgpack'). + String + false + false + + + timeseries_output_file_name + Timeseries Output File Name + If not provided, defaults to 'results_timeseries.csv' (or 'results_timeseries.json' or 'results_timeseries.msgpack'). + String + false + false + + + output_format + Output Format + The file format of the annual (and timeseries, if requested) outputs. + Choice + false + false + csv + + + csv + csv + + + json + json + + + msgpack + msgpack + + + + + include_annual_bills + Generate Annual Utility Bills + Generates output file containing annual utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_monthly_bills + Generate Monthly Utility Bills + Generates output file containing monthly utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + monthly_timestamp_convention + Generate Monthly Output: Timestamp Convention + Determines whether monthly timestamps use the start-of-period or end-of-period convention. + Choice + false + false + start + + + start + start + + + end + end + + + + + annual_output_file_name + Annual Output File Name + If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack'). + String + false + false + + + monthly_output_file_name + Monthly Output File Name + If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack'). + String + false + false + + + register_annual_bills + Register Annual Utility Bills + Registers annual utility bills with the OpenStudio runner for downstream processing. + Boolean + false + false + true + + + true + true + + + false + false + + + + + register_monthly_bills + Register Monthly Utility Bills + Registers monthly utility bills with the OpenStudio runner for downstream processing. + Boolean + false + false + false + + + true + true + + + false + false + + + + + + + + Reporting.QAQC + + + + Measure Type + ReportingMeasure + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + + OpenStudio + 3.10.0 + 3.10.0 + + measure.rb + rb + script + FB7C5903 + + + From 4f68ede4734f81f7af50d65f720c225556d8bd69 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 17 Dec 2025 15:47:22 -0700 Subject: [PATCH 64/82] Update run_analysis.rb for new SimulationOutput meta measure. --- workflow/run_analysis.rb | 30 +++++++++--------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/workflow/run_analysis.rb b/workflow/run_analysis.rb index 210390c054..9987cbc062 100644 --- a/workflow/run_analysis.rb +++ b/workflow/run_analysis.rb @@ -214,18 +214,16 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ sim_out_rep_args.delete('output_meters') end - include_annual_bills = false - include_monthly_bills = false - register_annual_bills = true - register_monthly_bills = false + sim_out_rep_args['register_annual_bills'] = true + sim_out_rep_args['register_monthly_bills'] = false if sim_out_rep_args.keys.include?('include_annual_bills') - register_annual_bills = sim_out_rep_args['include_annual_bills'] - sim_out_rep_args.delete('include_annual_bills') + sim_out_rep_args['register_annual_bills'] = sim_out_rep_args['include_annual_bills'] end if sim_out_rep_args.keys.include?('include_monthly_bills') - register_monthly_bills = sim_out_rep_args['include_monthly_bills'] - sim_out_rep_args.delete('include_monthly_bills') + sim_out_rep_args['register_monthly_bills'] = sim_out_rep_args['include_monthly_bills'] end + sim_out_rep_args['include_annual_bills'] = false + sim_out_rep_args['include_monthly_bills'] = false osw_paths = {} upgrades.each do |upgrade_name| @@ -251,8 +249,7 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ ], 'created_at' => Time.now.strftime('%Y-%m-%dT%H:%M:%S'), 'measure_paths' => [ - File.absolute_path(File.join(File.dirname(__FILE__), '../measures')), - File.absolute_path(File.join(File.dirname(__FILE__), '../resources/hpxml-measures')) + File.absolute_path(File.join(File.dirname(__FILE__), '../measures')) ], 'run_options' => { 'skip_zip_results' => true @@ -293,17 +290,9 @@ def run_workflow(yml, in_threads, measures_only, debug_arg, overwrite, building_ osw['steps'] += [ { - 'measure_dir_name' => 'ReportSimulationOutput', + 'measure_dir_name' => 'SimulationOutput', 'arguments' => sim_out_rep_args }, - { - 'measure_dir_name' => 'ReportUtilityBills', - 'arguments' => { 'output_format' => 'csv', - 'include_annual_bills' => include_annual_bills, - 'include_monthly_bills' => include_monthly_bills, - 'register_annual_bills' => register_annual_bills, - 'register_monthly_bills' => register_monthly_bills } - }, { 'measure_dir_name' => 'ServerDirectoryCleanup', 'arguments' => server_dir_cleanup_args @@ -666,8 +655,7 @@ def self.run(in_osw, parent_dir, run_output, upgrade, measures, reporting_measur result_output = get_measure_results(rows, result_output, measure) end result_output = get_measure_results(rows, result_output, 'UpgradeCosts') - result_output = get_measure_results(rows, result_output, 'ReportSimulationOutput') - result_output = get_measure_results(rows, result_output, 'ReportUtilityBills') + result_output = get_measure_results(rows, result_output, 'SimulationOutput') reporting_measures.each do |reporting_measure| result_output = get_measure_results(rows, result_output, reporting_measure) end From 7a5cbe4422aa5ce5e916a537900396fc57565979 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 17 Dec 2025 15:47:43 -0700 Subject: [PATCH 65/82] Update run_analysis test for new SimulationOutput meta measure. --- test/test_run_analysis.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_run_analysis.rb b/test/test_run_analysis.rb index 8c5cfceed2..8a00428859 100644 --- a/test/test_run_analysis.rb +++ b/test/test_run_analysis.rb @@ -348,8 +348,7 @@ def _test_measure_order(osw) expected_order = ['BuildExistingModel', 'ApplyUpgrade', 'UpgradeCosts', - 'ReportSimulationOutput', - 'ReportUtilityBills', + 'SimulationOutput', 'QOIReport', 'ServerDirectoryCleanup'] json = JSON.parse(File.read(osw), symbolize_names: true) From edb38c14fabb14554c29f74106a43f0c96280881 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 17 Dec 2025 15:48:38 -0700 Subject: [PATCH 66/82] Update docs architecture for new SimulationOutput meta measure. --- .../basic_tutorial/resstock_architecture.rst | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst b/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst index 5100137c4d..6a25dfa11f 100644 --- a/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst +++ b/docs/technical_development_guide/source/basic_tutorial/resstock_architecture.rst @@ -45,14 +45,12 @@ The following depicts the order in which workflow measure steps are applied: 2 ApplyUpgrade Model Yes [#]_ Meta measure ResStock 3 UpgradeCosts Model No ResStock 4 *Other Model Measures* Model Yes Any [#]_ - 5 ReportSimulationOutput Reporting No OS-HPXML [#]_ - 6 ReportUtilityBills Reporting No OS-HPXML - 7 *Other Reporting Measures* Reporting Yes Any [#]_ - 8 ServerDirectoryCleanup Reporting No ResStock + 5 SimulationOutput Reporting No Meta measure ResStock + 6 *Other Reporting Measures* Reporting Yes Any [#]_ + 7 ServerDirectoryCleanup Reporting No ResStock ===== ============================= ================== ========= ============= ========================== .. [#] Baseline models with no upgrades do not have the ApplyUpgrade measure applied. - .. [#] OS-HPXML refers to the `OpenStudio-HPXML `_ repository. .. [#] *Other Model Measures* do not need to originate from ResStock, but it is up to the user to ensure they work within the ResStock workflow. .. [#] *Other Reporting Measures* do not need to originate from ResStock, but it is up to the user to ensure they work within the ResStock workflow. @@ -62,13 +60,25 @@ The BuildExistingModel and ApplyUpgrade meta measures call the following model m Index Measure Measure Type Optional Notes Source ===== ============================= ================== ========= ============= ========================== 1 ResStockArguments Model No ResStock - 2 BuildResidentialHPXML Model No OS-HPXML + 2 BuildResidentialHPXML Model No OS-HPXML [#]_ 3 BuildResidentialScheduleFile Model No OS-HPXML 4 ResStockArgumentsPostHPXML Model No ResStock - 5 HPXMLtoOpenStudio Model No OS-HPXML + 5 HPXMLtoOpenStudio Model No [#]_ OS-HPXML 6 AddSharedSystem Model No ResStock ===== ============================= ================== ========= ============= ========================== + .. [#] OS-HPXML refers to the `OpenStudio-HPXML `_ repository. + .. [#] The HPXMLtoOpenStudio measure is only called once in the workflow; it is called from BuildExistingModel for baseline models or from ApplyUpgrade for upgrade models. + +The SimulationOutput meta measure calls the following reporting measures: + + ===== ============================= ================== ========= ============= ========================== + Index Measure Measure Type Optional Notes Source + ===== ============================= ================== ========= ============= ========================== + 1 ReportSimulationOutput Reporting No OS-HPXML + 2 ReportUtilityBills Reporting No OS-HPXML + ===== ============================= ================== ========= ============= ========================== + .. _model-measures: Model Measures From c26fe4e2279482ef4c04ef7ed3a83f6c2f49c6ae Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 Dec 2025 09:26:19 -0700 Subject: [PATCH 67/82] Simulate whole buildings for testing project. --- project_national/sdr_upgrades_amy2018.yml | 1 - project_testing/testing_baseline.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/project_national/sdr_upgrades_amy2018.yml b/project_national/sdr_upgrades_amy2018.yml index 1c05cfe63b..fed8de7284 100644 --- a/project_national/sdr_upgrades_amy2018.yml +++ b/project_national/sdr_upgrades_amy2018.yml @@ -72,7 +72,6 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2018 add_component_loads: true - whole_sfa_or_mf_building_sim: false # Emissions scenarios emissions: diff --git a/project_testing/testing_baseline.yml b/project_testing/testing_baseline.yml index 19a86606af..d28a6b36da 100644 --- a/project_testing/testing_baseline.yml +++ b/project_testing/testing_baseline.yml @@ -65,7 +65,7 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2007 add_component_loads: true - whole_sfa_or_mf_building_sim: false + whole_sfa_or_mf_building_sim: true # Emissions scenarios emissions: From dddaf8f7eae96829f13f965d2f7b87a642b68131 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 Dec 2025 09:26:57 -0700 Subject: [PATCH 68/82] Update expected column names for tests. --- test/analysis.rb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/analysis.rb b/test/analysis.rb index fe0d21f8f2..9990819cc7 100644 --- a/test/analysis.rb +++ b/test/analysis.rb @@ -7,13 +7,13 @@ def expected_baseline_columns 'building_id', 'job_id', 'completed_status', - 'report_simulation_output.add_timeseries_dst_column', - 'report_simulation_output.add_timeseries_utc_column', - 'report_simulation_output.energy_use_total_m_btu', - 'report_simulation_output.energy_use_net_m_btu', - 'report_simulation_output.fuel_use_electricity_total_m_btu', - 'report_simulation_output.end_use_natural_gas_heating_m_btu', - 'report_simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb', + 'simulation_output.add_timeseries_dst_column', + 'simulation_output.add_timeseries_utc_column', + 'simulation_output.energy_use_total_m_btu', + 'simulation_output.energy_use_net_m_btu', + 'simulation_output.fuel_use_electricity_total_m_btu', + 'simulation_output.end_use_natural_gas_heating_m_btu', + 'simulation_output.emissions_co_2_e_lrmer_mid_case_15_total_lb', 'upgrade_costs.door_area_ft_2', 'qoi_report.qoi_average_maximum_daily_timing_cooling_hour' ] @@ -21,14 +21,14 @@ def expected_baseline_columns def expected_baseline_nonnull_columns return [ - 'report_simulation_output.energy_use_net_m_btu', + 'simulation_output.energy_use_net_m_btu', 'upgrade_costs.door_area_ft_2' ] end def expected_baseline_nonzero_columns return [ - 'report_simulation_output.energy_use_total_m_btu' + 'simulation_output.energy_use_total_m_btu' ] end From ef9edbba13a02c15af26c6ee8d128369b3dea7ab Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 Dec 2025 14:29:21 -0700 Subject: [PATCH 69/82] Temporarily comment out detailed bills in project testing yml file. --- project_testing/testing_baseline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_testing/testing_baseline.yml b/project_testing/testing_baseline.yml index d28a6b36da..f4ebb208ee 100644 --- a/project_testing/testing_baseline.yml +++ b/project_testing/testing_baseline.yml @@ -99,8 +99,8 @@ workflow_generator: - scenario_name: Bills2 simple_filepath: data/utility_bills/test_simple_rates/State.tsv - - scenario_name: Bills3 - detailed_filepath: data/utility_bills/test_detailed_rates/County.tsv + # - scenario_name: Bills3 + # detailed_filepath: data/utility_bills/test_detailed_rates/County.tsv # Outputs to include simulation_output_report: From 02a861ad12706f288ff60d5d2b275a6b39a8456d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 Dec 2025 14:36:20 -0700 Subject: [PATCH 70/82] Introduce hvac_cooling_shared_system argument. --- measures/AddSharedSystem/measure.rb | 51 ++-- measures/AddSharedSystem/measure.xml | 232 ++---------------- measures/BuildExistingModel/measure.rb | 2 +- measures/BuildExistingModel/measure.xml | 6 +- measures/ResStockArguments/README.md | 26 +- measures/ResStockArguments/measure.rb | 17 +- measures/ResStockArguments/measure.xml | 37 +-- .../ResStockArgumentsPostHPXML/measure.rb | 1 + .../ResStockArgumentsPostHPXML/measure.xml | 35 ++- resources/options_lookup.tsv | 40 +-- 10 files changed, 140 insertions(+), 307 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index b0f557cb74..18867f9563 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -33,31 +33,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument full_measure_path = File.join(File.dirname(__FILE__), '..', 'ResStockArguments', 'measure.rb') measure_arguments = get_measure_instance(full_measure_path).arguments(model) measure_arguments.each do |arg| - # Convert to optional argument for the unit test - # Replace all of this if https://github.com/NREL/OpenStudio/issues/5469 is addressed - case arg.type.valueName.downcase - when 'choice' - new_arg = OpenStudio::Measure::OSArgument.makeChoiceArgument(arg.name, arg.choiceValues, false) - new_arg.setDefaultValue(arg.defaultValueAsString) if arg.hasDefaultValue - when 'boolean' - new_arg = OpenStudio::Measure::OSArgument.makeBoolArgument(arg.name, false) - new_arg.setDefaultValue(arg.defaultValueAsBool) if arg.hasDefaultValue - when 'string' - new_arg = OpenStudio::Measure::OSArgument.makeStringArgument(arg.name, false) - new_arg.setDefaultValue(arg.defaultValueAsString) if arg.hasDefaultValue - when 'double' - new_arg = OpenStudio::Measure::OSArgument.makeDoubleArgument(arg.name, false) - new_arg.setDefaultValue(arg.defaultValueAsDouble) if arg.hasDefaultValue - when 'integer' - new_arg = OpenStudio::Measure::OSArgument.makeIntegerArgument(arg.name, false) - new_arg.setDefaultValue(arg.defaultValueAsInteger) if arg.hasDefaultValue - else - fail "Unhandled argument type: #{arg.type.valueName.downcase}" - end - new_arg.setDisplayName(arg.displayName.to_s) - new_arg.setDescription(arg.description.to_s) - new_arg.setUnits(arg.units.to_s) - args << new_arg + arg.setRequired(false) + args << arg end arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_path', false) @@ -81,9 +58,29 @@ def run(model, runner, user_arguments) args = runner.getArgumentValues(arguments(model), user_arguments) args = convert_args(arguments(model), args) - return true if args[:add_shared_system_argument] == 'None' + if args[:hvac_heating_shared_system] == 'None' && args[:hvac_cooling_shared_system] == 'None' + register_value(runner, 'shared_system_type', 'None') + return true + end + + systems = { ['Baseboard', 'None'] => 'Boiler Baseboards Heating Only', + ['None', 'FanCoil'] => 'Fan Coil Cooling Only', + ['FanCoil', 'FanCoil'] => 'Fan Coil Heating and Cooling' } + system = systems[[args[:hvac_heating_shared_system], args[:hvac_cooling_shared_system]]] + if system.nil? + register_value(runner, 'shared_system_type', 'Unsupported') + return true + end + + if system == 'Boiler Baseboards Heating Only' + # method_a(model, args[:hvac_heating_system], args[:hvac_heating_system_fuel]) + elsif system == 'Fan Coil Cooling Only' + # method_b(model, args[:hvac_cooling_system]) + elsif system == 'Fan Coil Heating and Cooling' + # method_c(model, args[:hvac_heating_system], args[:hvac_heating_system_fuel], args[:hvac_cooling_system]) + end - register_value(runner, 'add_shared_system_argument', args[:add_shared_system_argument]) + register_value(runner, 'shared_system_type', system) return true end diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 7d2be4b55b..8bdddea029 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - d40b44a0-5f13-4d3f-8664-560205d85758 - 2025-12-17T20:39:04Z + 2bdc6592-67f0-4754-a9fc-e6418ebaa5a7 + 2025-12-18T21:26:18Z BED8DECF AddSharedSystem Add Shared System @@ -76,7 +76,6 @@ Simulation Control: Run Period Enter a date range like 'Mar 1 - May 31'. Defaults to the entire year. String - false false Jan 1 - Dec 31 @@ -86,7 +85,6 @@ Location: Zip Code Zip code of the home address. Either this or the EnergyPlus Weather (EPW) File Path input below must be provided. String - false false @@ -95,7 +93,6 @@ Location: EnergyPlus Weather (EPW) File Path Path to the EPW file. Either this or the Zip Code input above must be provided. String - false false @@ -104,7 +101,6 @@ Location: Site Type The terrain/shielding of the home, for the infiltration model. Defaults to 'Suburban, Normal' for single-family detached and manufactured home and 'Suburban, Well-Shielded' for single-family attached and apartment units. Choice - false false Default @@ -156,7 +152,6 @@ Location: Soil Type The soil and moisture type. Choice - false false Unknown @@ -268,7 +263,6 @@ Building Construction: Year Built The year the building was built. Integer - false false 2025 @@ -278,7 +272,6 @@ Geometry: Unit Attached Walls For single-family attached and apartment units, the location(s) of the attached walls. Choice - false false None @@ -360,7 +353,6 @@ Geometry: Unit Direction Direction of the front of the unit. Choice - false false South @@ -436,7 +428,6 @@ Geometry: Unit Number of Bedrooms The number of bedrooms in the unit. Choice - false false 3 @@ -500,7 +491,6 @@ Geometry: Unit Number of Bathrooms The number of bathrooms in the unit. Defaults to NumberofBedrooms/2 + 0.5. Choice - false false Default @@ -568,7 +558,6 @@ Geometry: Unit Number of Occupants The number of occupants in the unit. Defaults to an *asset* calculation assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on Number of Bedrooms and Conditioned Floor Area. If provided, an *operational* calculation is instead performed in which the end use defaults reflect real-world data (where possible). Choice - false false Default @@ -636,7 +625,6 @@ Geometry: Ceiling Height Average distance from the floor to the ceiling. Choice - false false 8.0 ft @@ -724,7 +712,6 @@ Geometry: Attached Garage The type of attached garage. Only applies to single-family detached units. Choice - false false None @@ -812,7 +799,6 @@ Geometry: Foundation Type The foundation type of the building. Garages are assumed to be over slab-on-grade. Choice - false false Crawlspace, Vented @@ -884,7 +870,6 @@ Geometry: Attic Type The attic/roof type of the building. Choice - false false Attic, Vented, Gable @@ -928,7 +913,6 @@ Geometry: Roof Pitch The roof pitch of the attic. Ignored if the building has a flat roof. Choice - false false 6:12 @@ -1004,7 +988,6 @@ Geometry: Eaves The type of eaves extending from the roof. Choice - false false 2 ft @@ -1040,7 +1023,6 @@ Geometry: Neighbor Buildings The presence and geometry of neighboring buildings, for shading purposes. Choice - false false None @@ -1210,7 +1192,6 @@ Enclosure: Floor Over Foundation The type and insulation level of the floor over the foundation (e.g., crawlspace or basement). Choice - false false Wood Frame, Uninsulated @@ -1290,7 +1271,6 @@ Enclosure: Floor Over Garage The type and insulation level of the floor over the garage. Choice - false false Wood Frame, Uninsulated @@ -1354,7 +1334,6 @@ Enclosure: Foundation Wall The type and insulation level of the foundation walls. Choice - false false Solid Concrete, Uninsulated @@ -1414,7 +1393,6 @@ Enclosure: Rim Joists The type and insulation level of the rim joists. Choice - false false Uninsulated @@ -1478,7 +1456,6 @@ Enclosure: Slab The type and insulation level of the slab. Applies to slab-on-grade as well as basement/crawlspace foundations. Under Slab insulation is placed horizontally from the edge of the slab inward. Perimeter insulation is placed vertically from the top of the slab downward. Whole Slab insulation is placed horizontally below the entire slab area. Choice - false false Uninsulated @@ -1582,7 +1559,6 @@ Enclosure: Carpet The amount of carpet. Applies to floors/slabs adjacent to conditioned space. The R-value of the carpet will be ignored if a floor option with an IECC U-factor is selected. Choice - false false 80% Carpet @@ -1626,7 +1602,6 @@ Enclosure: Ceiling The type and insulation level of the ceiling (attic floor). Choice - false false R-30 @@ -1698,7 +1673,6 @@ Enclosure: Roof The type and insulation level of the roof. Choice - false false Uninsulated @@ -1758,7 +1732,6 @@ Enclosure: Roof Material The material type and color of the roof. Choice - false false Asphalt/Fiberglass Shingles, Medium @@ -1946,7 +1919,6 @@ Enclosure: Radiant Barrier The type of radiant barrier in the attic. Choice - false false None @@ -1974,7 +1946,6 @@ Enclosure: Walls The type and insulation level of the walls. Choice - false false Wood Stud, R-13 @@ -2190,7 +2161,6 @@ Enclosure: Wall Continuous Insulation The insulation level of the wall continuous insulation. The R-value of the continuous insulation will be ignored if a wall option with an IECC U-factor is selected. Choice - false false Uninsulated @@ -2250,7 +2220,6 @@ Enclosure: Wall Siding The type, color, and insulation level of the wall siding. The R-value of the siding will be ignored if a wall option with an IECC U-factor is selected. Choice - false false Wood, Medium @@ -2478,7 +2447,6 @@ Enclosure: Windows The type of windows. Choice - false false Double, Clear, Metal, Air @@ -2674,7 +2642,6 @@ Enclosure: Window Natural Ventilation The amount of natural ventilation from occupants opening operable windows when outdoor conditions are favorable. Choice - false false 67% Operable Windows @@ -2710,7 +2677,6 @@ Enclosure: Window Interior Shading The type of window interior shading. If shading coefficients are selected, note they indicate the reduction in solar gain (e.g., 0.7 indicates 30% reduction). Choice - false false Curtains, Light @@ -2822,7 +2788,6 @@ Enclosure: Window Exterior Shading The type of window exterior shading. If shading coefficients are selected, note they indicate the reduction in solar gain (e.g., 0.7 indicates 30% reduction). Choice - false false None @@ -2910,7 +2875,6 @@ Enclosure: Window Insect Screens The type of window insect screens. Choice - false false None @@ -2934,7 +2898,6 @@ Enclosure: Window Storm The type of storm window. Choice - false false None @@ -2958,7 +2921,6 @@ Enclosure: Window Overhangs The type of window overhangs. Choice - false false None @@ -3102,7 +3064,6 @@ Enclosure: Skylights The type of skylights. Choice - false false Single, Clear, Metal @@ -3202,7 +3163,6 @@ Enclosure: Doors The type of doors. Choice - false false Solid Wood, R-2 @@ -3278,7 +3238,6 @@ Enclosure: Air Leakage The amount of air leakage coming from outside. If a qualitative leakiness description (e.g., 'Average') is selected, the Year Built of the home is also required. Choice - false false Average @@ -3478,7 +3437,6 @@ HVAC: Heating System The type and efficiency of the heating system. Use 'None' if there is no heating system or if there is a heat pump serving a heating load. Choice - false false Central Furnace, 78% AFUE @@ -3718,7 +3676,6 @@ HVAC: Heating System Fuel Type The fuel type of the heating system. Ignored for ElectricResistance. Choice - false false Natural Gas @@ -3758,7 +3715,6 @@ HVAC: Heating System Capacity The output capacity of the heating system. Choice - false false Autosize @@ -3910,7 +3866,6 @@ HVAC: Heating System Fraction Heat Load Served The fraction of the heating load served by the heating system. Choice - false false 100% @@ -4006,7 +3961,6 @@ HVAC: Cooling System The type and efficiency of the cooling system. Use 'None' if there is no cooling system or if there is a heat pump serving a cooling load. Choice - false false Central AC, SEER2 13.4 @@ -4222,7 +4176,6 @@ HVAC: Cooling System Capacity The output capacity of the cooling system. Choice - false false Autosize @@ -4334,7 +4287,6 @@ HVAC: Cooling System Fraction Cool Load Served The fraction of the cooling load served by the cooling system. Choice - false false 100% @@ -4430,7 +4382,6 @@ HVAC: Heat Pump The type and efficiency of the heat pump. Choice - false false None @@ -4662,7 +4613,6 @@ HVAC: Heat Pump Capacity The output capacity of the heat pump. Choice - false false Autosize @@ -4782,7 +4732,6 @@ HVAC: Heat Pump Fraction Heat Load Served The fraction of the heating load served by the heat pump. Choice - false false 100% @@ -4878,7 +4827,6 @@ HVAC: Heat Pump Fraction Cool Load Served The fraction of the cooling load served by the heat pump. Choice - false false 100% @@ -4974,7 +4922,6 @@ HVAC: Heat Pump Temperatures Specifies the minimum compressor temperature and/or maximum HP backup temperature. If both are the same, a binary switchover temperature is used. Choice - false false Default @@ -5062,7 +5009,6 @@ HVAC: Heat Pump Backup Type The type and efficiency of the heat pump backup. Use 'None' if there is no backup heating. If Backup Type is Separate Heating System, Heating System 2 is used to specify the backup. Choice - false false Integrated, Electricity, 100% Efficiency @@ -5146,7 +5092,6 @@ HVAC: Heat Pump Backup Capacity The output capacity of the heat pump backup if there is integrated backup heating. Choice - false false Autosize @@ -5318,7 +5263,6 @@ HVAC: Geothermal Loop The geothermal loop configuration if there's a ground-to-air heat pump. Choice - false false Default @@ -5350,7 +5294,6 @@ HVAC: Heating System 2 The type and efficiency of the second heating system. If a heat pump is specified and the backup type is 'separate', this heating system represents the 'separate' backup heating. Choice - false false None @@ -5590,7 +5533,6 @@ HVAC: Heating System 2 Fuel Type The fuel type of the second heating system. Ignored for ElectricResistance. Choice - false false Electricity @@ -5630,7 +5572,6 @@ HVAC: Heating System 2 Capacity The output capacity of the second heating system. Choice - false false Autosize @@ -5782,7 +5723,6 @@ HVAC: Heating System 2 Fraction Heat Load Served The fraction of the heating load served by the second heating system. Choice - false false 25% @@ -5918,7 +5858,6 @@ HVAC Control: Heating Season Period Enter a date range like 'Nov 1 - Jun 30'. Defaults to year-round heating availability. String - false false Jan 1 - Dec 31 @@ -5928,7 +5867,6 @@ HVAC Control: Cooling Season Period Enter a date range like 'Jun 1 - Oct 31'. Defaults to year-round cooling availability. String - false false Jan 1 - Dec 31 @@ -5938,7 +5876,6 @@ HVAC Ducts The leakage to outside and insulation level of the ducts. Choice - false false 15% Leakage, Uninsulated @@ -6210,7 +6147,6 @@ HVAC Ducts: Supply Location The primary location of the supply ducts. The remainder of the supply ducts are assumed to be in conditioned space. Defaults based on the foundation/attic/garage type. Choice - false false Default @@ -6270,7 +6206,6 @@ HVAC Ducts: Return Location The primary location of the return ducts. The remainder of the return ducts are assumed to be in conditioned space. Defaults based on the foundation/attic/garage type. Choice - false false Default @@ -6330,7 +6265,6 @@ Ventilation Fans: Mechanical Ventilation The type of mechanical ventilation system used for whole building ventilation. Choice - false false None @@ -6418,7 +6352,6 @@ Ventilation Fans: Kitchen Exhaust Fan The type of kitchen exhaust fan used for local ventilation. Choice - false false None @@ -6466,7 +6399,6 @@ Ventilation Fans: Bathroom Exhaust Fans The type of bathroom exhaust fans used for local ventilation. Choice - false false None @@ -6514,7 +6446,6 @@ Ventilation Fans: Whole House Fan The type of whole house fans used for seasonal cooling load reduction. Choice - false false None @@ -6578,7 +6509,6 @@ DHW: Water Heater The type and efficiency of the water heater. Choice - false false Electricity, Tank, UEF 0.92 @@ -6770,7 +6700,6 @@ DHW: Water Heater Location The location of the water heater. Defaults based on the foundation/garage type. Choice - false false Default @@ -6814,7 +6743,6 @@ DHW: Hot Water Distribution The type of domestic hot water distrubtion. Choice - false false Uninsulated, Standard @@ -6882,7 +6810,6 @@ DHW: Hot Water Fixtures The type and usage of domestic hot water fixtures. Choice - false false Standard, 100% Usage @@ -6966,7 +6893,6 @@ DHW: Drain Water Heat Reovery The type of drain water heater recovery. Choice - false false None @@ -7050,7 +6976,6 @@ DHW: Solar Thermal The size and type of the solar thermal system for domestic hot water. Choice - false false None @@ -7138,7 +7063,6 @@ DHW: Solar Thermal Direction The azimuth and tilt of the solar thermal system collectors. Choice - false false Roof Pitch, South @@ -7386,7 +7310,6 @@ PV: System The size and type of the PV system. Choice - false false None @@ -7534,7 +7457,6 @@ PV: System Direction The azimuth and tilt of the PV system array. Choice - false false Roof Pitch, South @@ -7782,7 +7704,6 @@ PV: System 2 The size and type of the second PV system. Choice - false false None @@ -7930,7 +7851,6 @@ PV: System 2 Direction The azimuth and tilt of the second PV system array. Choice - false false Roof Pitch, South @@ -8178,7 +8098,6 @@ Battery The size and type of battery storage. Choice - false false None @@ -8234,7 +8153,6 @@ Electric Vehicle The type of battery electric vehicle. Choice - false false None @@ -8614,7 +8532,6 @@ Electric Vehicle: Charger The type and usage of electric vehicle charger. Choice - false false None @@ -8682,7 +8599,6 @@ Appliances: Clothes Washer The type and usage of clothes washer. Choice - false false Standard, 2008-2017, 100% Usage @@ -8818,7 +8734,6 @@ Appliances: Clothes Dryer The type and usage of clothes dryer. Choice - false false Electricity, Standard, 100% Usage @@ -8978,7 +8893,6 @@ Appliances: Dishwasher The type and usage of dishwasher. Choice - false false Federal Minimum, Standard, 100% Usage @@ -9074,7 +8988,6 @@ Appliances: Refrigerator The type and usage of refrigerator. Choice - false false 434 kWh/yr, 100% Usage @@ -9246,7 +9159,6 @@ Appliances: Extra Refrigerator The type and usage of extra refrigerator. Choice - false false None @@ -9406,7 +9318,6 @@ Appliances: Freezer The type and usage of freezer. Choice - false false None @@ -9518,7 +9429,6 @@ Appliances: Cooking Range/Oven The type and usage of cooking range/oven. Choice - false false Electricity, Standard, Non-Convection, 100% Usage @@ -9706,7 +9616,6 @@ Appliances: Dehumidifier The type of dehumidifier. Choice - false false None @@ -9766,7 +9675,6 @@ Appliances: Dehumidifier Setpoint The dehumidifier's relative humidity (RH) setpoint. Choice - false false 50% RH @@ -9802,7 +9710,6 @@ Lighting The type and usage of interior, exterior, and garage lighting. Choice - false false 50% LED, 100% Usage @@ -10006,7 +9913,6 @@ Ceiling Fans The type of ceiling fans. Choice - false false None @@ -10150,7 +10056,6 @@ Misc: Television The amount of television usage, relative to the national average. Choice - false false 100% Usage @@ -10222,7 +10127,6 @@ Misc: Plug Loads The amount of additional plug load usage, relative to the national average. Choice - false false 100% Usage @@ -10298,7 +10202,6 @@ Misc: Well Pump The amount of well pump usage, relative to the national average. Choice - false false None @@ -10326,7 +10229,6 @@ Misc: Electric Vehicle Charging The amount of EV charging usage, relative to the national average. Only use this if a detailed EV & EV charger were not otherwise specified. Choice - false false None @@ -10402,7 +10304,6 @@ Misc: Gas Grill The amount of outdoor gas grill usage, relative to the national average. Choice - false false None @@ -10478,7 +10379,6 @@ Misc: Gas Lighting The amount of gas lighting usage, relative to the national average. Choice - false false None @@ -10526,7 +10426,6 @@ Misc: Fireplace The amount of fireplace usage, relative to the national average. Fireplaces can also be specified as heating systems that meet a portion of the heating load. Choice - false false None @@ -10658,7 +10557,6 @@ Misc: Pool The type of pool (pump & heater). Choice - false false None @@ -10794,7 +10692,6 @@ Misc: Permanent Spa The type of permanent spa (pump & heater). Choice - false false None @@ -10930,7 +10827,6 @@ Schedules: CSV File Paths Absolute/relative paths of csv files containing user-specified detailed schedules, if desired. Use a comma-separated list for multiple files. String - false false @@ -10939,7 +10835,6 @@ Advanced Feature Select an advanced research feature to use in the model, if desired. Choice - false false None @@ -10999,7 +10894,6 @@ Advanced Feature 2 Select a second advanced research feature to use in the model, if desired. Choice - false false None @@ -11059,7 +10953,6 @@ Utility Bill Scenario The type of utility bill calculations to perform. Choice - false false Default (EIA Average Rates) @@ -11111,7 +11004,6 @@ Utility Bill Scenario 2 The second type of utility bill calculations to perform, if desired. Choice - false false None @@ -11163,7 +11055,6 @@ Utility Bill Scenario 3 The third type of utility bill calculations to perform, if desired. Choice - false false None @@ -11215,7 +11106,6 @@ Additional Properties Additional properties specified as key-value pairs (i.e., key=value). If multiple additional properties, use a |-separated list. For example, 'LowIncome=false|Remodeled|Description=2-story home in Denver'. These properties will be stored in the HPXML file under /HPXML/SoftwareInfo/extension/AdditionalProperties. String - false false @@ -11224,7 +11114,6 @@ Whole SFA/MF Building Simulation? Set true if creating an HPXML file to simulate a whole single-family attached or multifamily building with multiple dwelling units within. If an HPXML file already exists at the specified HPXML File Path, a new HPXML Building element describing the current dwelling unit will be appended to this HPXML file. Boolean - false false false @@ -11244,7 +11133,6 @@ Combine like surfaces? If true, combines like surfaces to simplify the HPXML file generated. Boolean - false false false @@ -11264,7 +11152,6 @@ Apply Default Values? If true, applies OS-HPXML default values to the HPXML output file. Setting to true will also force validation of the HPXML output file before applying OS-HPXML default values. Boolean - false false false @@ -11284,7 +11171,6 @@ Apply Validation? If true, validates the HPXML output file. Set to false for faster performance. Note that validation is not needed if the HPXML file will be validated downstream (e.g., via the HPXMLtoOpenStudio measure). Boolean - false false false @@ -11304,7 +11190,6 @@ Building Unit ID The building unit number (between 1 and the number of samples). Integer - false false @@ -11313,7 +11198,6 @@ Site: IECC Zone IECC zone of the home address. Choice - false false @@ -11413,7 +11297,6 @@ Schedules: Vacancy Periods Specifies the vacancy periods. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). If multiple periods, use a comma-separated list. String - false false @@ -11422,7 +11305,6 @@ Schedules: Power Outage Periods Specifies the power outage periods. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). If multiple periods, use a comma-separated list. String - false false @@ -11431,7 +11313,6 @@ Schedules: Power Outage Periods Window Natural Ventilation Availability The availability of the natural ventilation schedule during the power outage periods. Valid choices are 'regular schedule', 'always available', 'always unavailable'. If multiple periods, use a comma-separated list. String - false false @@ -11440,7 +11321,6 @@ Schedules: Space Heating Unavailability Number of days space heating equipment is unavailable. Integer - false false @@ -11449,7 +11329,6 @@ Schedules: Space Cooling Unavailability Number of days space cooling equipment is unavailable. Integer - false false @@ -11458,7 +11337,6 @@ Geometry: Facility Type The facility type of the dwelling unit. Choice - false false @@ -11485,7 +11363,6 @@ Geometry: Unit Conditioned Floor Area Bin E.g., '2000-2499'. String - false false 2000-2499 @@ -11504,7 +11381,6 @@ Geometry: Unit Level The level of the unit. This is required for apartment units. Choice - false false @@ -11527,7 +11403,6 @@ Geometry: Unit Horizontal Location The horizontal location of the unit when viewing the front of the building. This is required for single-family attached and apartment units. Choice - false false @@ -11564,7 +11439,6 @@ Geometry: Corridor Position The position of the corridor. Only applies to single-family attached and apartment units. Exterior corridors are shaded, but not enclosed. Interior corridors are enclosed and conditioned. Choice - false false @@ -11591,7 +11465,6 @@ Building Construction: Vintage The building vintage, used for informational purposes only. String - false false @@ -11600,7 +11473,6 @@ Building Construction: Unit Multipliers Specifies the unit multipliers. Use a comma-separated list. String - false false @@ -11619,7 +11491,6 @@ Enclosure: Air Leakage Value Reduction Reduction (%) on the air exchange rate value. Double - false false @@ -11677,7 +11548,6 @@ HVAC Control: Heating Setpoint Weekday Schedule Specify the 24-hour comma-separated weekday heating schedule of 0s and 1s. String - false false 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 @@ -11687,7 +11557,6 @@ HVAC Control: Heating Setpoint Weekend Schedule Specify the 24-hour comma-separated weekend heating schedule of 0s and 1s. String - false false 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 @@ -11737,7 +11606,6 @@ HVAC Control: Cooling Setpoint Weekday Schedule Specify the 24-hour comma-separated weekday cooling schedule of 0s and 1s. String - false false 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 @@ -11747,7 +11615,6 @@ HVAC Control: Cooling Setpoint Weekend Schedule Specify the 24-hour comma-separated weekend cooling schedule of 0s and 1s. String - false false 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 @@ -11757,16 +11624,14 @@ HVAC: Existing Heating System The type and efficiency of the existing heating system. String - false false hvac_heating_shared_system HVAC: Heating Shared System Type - The type of shared system. + The type of shared heating system. Choice - false false @@ -11784,22 +11649,11 @@ - - add_shared_system_argument - Argument Name - TODO. - String - - false - false - None - heating_system_heating_autosizing_factor HVAC: Heating System Heating Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double - false false @@ -11826,7 +11680,6 @@ HVAC: Heating System 2 Heating Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double - false false @@ -11835,16 +11688,32 @@ HVAC: Existing Cooling System The type and efficiency of the existing cooling system. String - false false + + hvac_cooling_shared_system + HVAC: Cooling Shared System Type + The type of shared cooling system. + Choice + false + false + + + None + None + + + FanCoil + FanCoil + + + cooling_system_cooling_autosizing_factor HVAC: Cooling System Cooling Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double - false false @@ -11880,7 +11749,6 @@ HVAC: Existing Heat Pump The type and efficiency of the existing heat pump. String - false false @@ -11889,7 +11757,6 @@ HVAC: Heat Pump Heating Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double - false false @@ -11898,7 +11765,6 @@ HVAC: Heat Pump Cooling Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double - false false @@ -11907,7 +11773,6 @@ HVAC: Heat Pump Backup Heating Autosizing Factor The capacity scaling factor applied to the auto-sizing methodology if Backup Type is integrated. Double - false false @@ -11943,7 +11808,6 @@ HVAC: Heat Pump Backup Use Existing System Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat_pump_backup_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating_system_2_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. Boolean - false false @@ -11962,7 +11826,6 @@ HVAC: Heat Pump Sizing Is Duct Limited Whether the (ducted) heat pump has an upper limit for autosized heating/cooling capacity and an adjusted blower fan efficiency (W/CFM) value. This argument is only applicable for heat pump upgrades. Boolean - false false @@ -12107,7 +11970,6 @@ HVAC: Existing Heating System 2 The type and efficiency of the existing second heating system. String - false false @@ -12116,7 +11978,6 @@ HVAC Load Flexibility: Peak Offset (deg F) Offset of the peak period in degrees Fahrenheit. Integer - false false 0 @@ -12126,7 +11987,6 @@ HVAC Load Flexibility: Pre-Peak Duration (hours) Duration of the pre-peak period in hours. Double - false false 0 @@ -12136,7 +11996,6 @@ HVAC Load Flexibility: Pre-Peak Offset (deg F) Offset of the pre-peak period in degrees Fahrenheit. Integer - false false 0 @@ -12146,7 +12005,6 @@ Load Flexibility: Random Shift (minutes) Number of minutes to randomly shift the peak period. If minutes is less than timestep, it will be assumed to be 0. Integer - false false 0 @@ -12156,7 +12014,6 @@ EV Flexibility Enabled Whether to enable EV flexibility. Boolean - false false false @@ -12185,7 +12042,6 @@ Electric Vehicle: Fraction Charged at Home The fraction of charging energy provided by the at-home charger to the electric vehicle. Double - false false @@ -12203,7 +12059,6 @@ Appliances: Refrigerator Usage Multiplier Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12212,7 +12067,6 @@ Appliances: Clothes Dryer Usage Multiplier Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12221,7 +12075,6 @@ Appliances: Clothes Washer Usage Multiplier Multiplier on the clothes washer energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12230,7 +12083,6 @@ Appliances: Cooking Range/Oven Usage Multiplier Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12239,7 +12091,6 @@ Appliances: Dishwasher Usage Multiplier Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12248,7 +12099,6 @@ Appliances: Extra Refrigerator Usage Multiplier Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12257,7 +12107,6 @@ Appliances: Freezer Usage Multiplier Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12266,7 +12115,6 @@ Pool: Pump Usage Multiplier Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12275,7 +12123,6 @@ Ventilation: Bathroom Fans Start Hour The hour of the day when the bathroom fans run. Integer - false false @@ -12284,7 +12131,6 @@ Ventilation: Kitchen Fans Start Hour The hour of the day when the kitchen fans run. Integer - false false @@ -12293,7 +12139,6 @@ Lighting: Interior Usage Multiplier Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. Double - false false @@ -12302,7 +12147,6 @@ Lighting: Exterior Usage Multiplier Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. Double - false false @@ -12311,7 +12155,6 @@ Lighting: Garage Usage Multiplier Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. Double - false false @@ -12320,7 +12163,6 @@ Hot Water Fixtures: Usage Multiplier Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12329,7 +12171,6 @@ Plug Loads: Television Usage Multiplier Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12338,7 +12179,6 @@ Plug Loads: Other Usage Multiplier Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. Double - false false @@ -12347,7 +12187,6 @@ Misc: Has Pool Whether a pool is present. Boolean - false false @@ -12375,7 +12214,6 @@ Emissions: Scenario Names Names of emissions scenarios. If multiple scenarios, use a comma-separated list. If not provided, no emissions scenarios are calculated. String - false false @@ -12384,7 +12222,6 @@ Emissions: Types Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list. String - false false @@ -12393,7 +12230,6 @@ Emissions: Electricity Units Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed. String - false false @@ -12402,7 +12238,6 @@ Emissions: Electricity File Paths Electricity emissions factors values, specified as an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list. String - false false @@ -12411,7 +12246,6 @@ Emissions: Fossil Fuel Units Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed. String - false false @@ -12420,7 +12254,6 @@ Emissions: Natural Gas Values Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. String - false false @@ -12429,7 +12262,6 @@ Emissions: Propane Values Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. String - false false @@ -12438,7 +12270,6 @@ Emissions: Fuel Oil Values Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. String - false false @@ -12447,7 +12278,6 @@ Emissions: Wood Values Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. String - false false @@ -12456,7 +12286,6 @@ Utility Bills: Scenario Names Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If not provided, no utility bills scenarios are calculated. String - false false @@ -12465,7 +12294,6 @@ Utility Bills: Electricity File Paths Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list. String - false false @@ -12474,7 +12302,6 @@ Utility Bills: Electricity Fixed Charges Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. String - false false @@ -12483,7 +12310,6 @@ Utility Bills: Natural Gas Fixed Charges Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. String - false false @@ -12492,7 +12318,6 @@ Utility Bills: Propane Fixed Charges Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. String - false false @@ -12501,7 +12326,6 @@ Utility Bills: Fuel Oil Fixed Charges Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. String - false false @@ -12510,7 +12334,6 @@ Utility Bills: Wood Fixed Charges Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. String - false false @@ -12519,7 +12342,6 @@ Utility Bills: Electricity Marginal Rates Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. String - false false @@ -12528,7 +12350,6 @@ Utility Bills: Natural Gas Marginal Rates Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. String - false false @@ -12537,7 +12358,6 @@ Utility Bills: Propane Marginal Rates Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. String - false false @@ -12546,7 +12366,6 @@ Utility Bills: Fuel Oil Marginal Rates Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. String - false false @@ -12555,7 +12374,6 @@ Utility Bills: Wood Marginal Rates Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list. String - false false @@ -12564,7 +12382,6 @@ Utility Bills: PV Compensation Types Utility bill PV compensation types. If multiple scenarios, use a comma-separated list. String - false false @@ -12573,7 +12390,6 @@ Utility Bills: PV Net Metering Annual Excess Sellback Rate Types Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list. String - false false @@ -12582,7 +12398,6 @@ Utility Bills: PV Net Metering Annual Excess Sellback Rates Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list. String - false false @@ -12591,7 +12406,6 @@ Utility Bills: PV Feed-In Tariff Rates Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list. String - false false @@ -12600,7 +12414,6 @@ Utility Bills: PV Monthly Grid Connection Fee Units Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list. String - false false @@ -12609,7 +12422,6 @@ Utility Bills: PV Monthly Grid Connection Fees Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list. String - false false @@ -12664,7 +12476,7 @@ measure.rb rb script - 132E820E + 303762D0 diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 101f076e74..ea84fbccee 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -505,7 +505,7 @@ def run(model, runner, user_arguments) end # Report values from AddSharedSystem - ['add_shared_system_argument'].each do |key_lookup| + ['shared_system_type'].each do |key_lookup| new_runner.result.stepValues.each do |step_value| next if step_value.name != key_lookup diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 27a4230b38..9e28276e24 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 6967fa5f-5f4a-423e-b9fe-dd87dacb5fe8 - 2025-12-16T20:21:47Z + 312f6e8f-6f39-41eb-9eaf-cf802809a26f + 2025-12-18T21:20:59Z 2C38F48B BuildExistingModel Build Existing Model @@ -414,7 +414,7 @@ measure.rb rb script - BAC78EC3 + F6994491 diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index fe581357b4..81ab619340 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -1975,7 +1975,7 @@ The type and efficiency of the existing heating system. **HVAC: Heating Shared System Type** -The type of shared system. +The type of shared heating system. - **Name:** ``hvac_heating_shared_system`` - **Type:** ``Choice`` @@ -1986,17 +1986,6 @@ The type of shared system.
-**Argument Name** - -TODO. - -- **Name:** ``add_shared_system_argument`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- **HVAC: Heating System Heating Autosizing Factor** The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. @@ -2056,6 +2045,19 @@ The type and efficiency of the existing cooling system.
+**HVAC: Cooling Shared System Type** + +The type of shared cooling system. + +- **Name:** ``hvac_cooling_shared_system`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `None`, `FanCoil` + +
+ **HVAC: Cooling System Cooling Autosizing Factor** The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. diff --git a/measures/ResStockArguments/measure.rb b/measures/ResStockArguments/measure.rb index 2dc842b903..ed6a38e83f 100644 --- a/measures/ResStockArguments/measure.rb +++ b/measures/ResStockArguments/measure.rb @@ -280,13 +280,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument.makeChoiceArgument('hvac_heating_shared_system', hvac_heating_shared_system_choices, false) arg.setDisplayName('HVAC: Heating Shared System Type') - arg.setDescription('The type of shared system.') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('add_shared_system_argument', false) - arg.setDisplayName('Argument Name') - arg.setDescription('TODO.') - arg.setDefaultValue('None') + arg.setDescription('The type of shared heating system.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_autosizing_factor', false) @@ -316,6 +310,15 @@ def arguments(model) arg.setDescription('The type and efficiency of the existing cooling system.') args << arg + hvac_cooling_shared_system_choices = OpenStudio::StringVector.new + hvac_cooling_shared_system_choices << 'None' + hvac_cooling_shared_system_choices << 'FanCoil' + + arg = OpenStudio::Measure::OSArgument.makeChoiceArgument('hvac_cooling_shared_system', hvac_cooling_shared_system_choices, false) + arg.setDisplayName('HVAC: Cooling Shared System Type') + arg.setDescription('The type of shared cooling system.') + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_autosizing_factor', false) arg.setDisplayName('HVAC: Cooling System Cooling Autosizing Factor') arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 7c034426ce..3ff8854a54 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 64106d43-27aa-42d1-b8ec-57cf2a0f5a84 - 2025-12-16T19:53:38Z + 6539210f-1934-4a38-b495-0c0835da1ace + 2025-12-18T21:21:02Z 2C38F48B ResStockArguments ResStock Arguments @@ -11630,7 +11630,7 @@ hvac_heating_shared_system HVAC: Heating Shared System Type - The type of shared system. + The type of shared heating system. Choice false false @@ -11649,15 +11649,6 @@
- - add_shared_system_argument - Argument Name - TODO. - String - false - false - None - heating_system_heating_autosizing_factor HVAC: Heating System Heating Autosizing Factor @@ -11700,6 +11691,24 @@ false false + + hvac_cooling_shared_system + HVAC: Cooling Shared System Type + The type of shared cooling system. + Choice + false + false + + + None + None + + + FanCoil + FanCoil + + + cooling_system_cooling_autosizing_factor HVAC: Cooling System Cooling Autosizing Factor @@ -12434,7 +12443,7 @@ README.md md readme - 0DD0A143 + E051B22B README.md.erb @@ -12451,7 +12460,7 @@ measure.rb rb script - CF6A3276 + 23C7E2A8 constants.rb diff --git a/measures/ResStockArgumentsPostHPXML/measure.rb b/measures/ResStockArgumentsPostHPXML/measure.rb index 2c84196598..1edf3fdab8 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.rb +++ b/measures/ResStockArgumentsPostHPXML/measure.rb @@ -380,6 +380,7 @@ def run(model, runner, user_arguments) end end # Shared system + # FIXME: remove this after AddSharedSystem is written if ['Baseboard', 'FanCoil'].include? args[:hvac_heating_shared_system] heating_system.is_shared_system = true heating_system.number_of_units_served = hpxml_bldg.building_construction.number_of_units_in_building diff --git a/measures/ResStockArgumentsPostHPXML/measure.xml b/measures/ResStockArgumentsPostHPXML/measure.xml index 772118966d..389ad0dd93 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.xml +++ b/measures/ResStockArgumentsPostHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments_post_hpxml db102ce5-ac96-4ef9-90d3-abbe53478716 - 84e7b69a-f163-4d61-ba6d-24eea7d601a9 - 2025-12-16T19:53:40Z + e511e1a6-5951-4761-95a3-9c2272aa072b + 2025-12-18T21:21:04Z 2C38F48B ResStockArgumentsPostHPXML ResStock Arguments Post-HPXML @@ -11630,7 +11630,7 @@ hvac_heating_shared_system HVAC: Heating Shared System Type - The type of shared system. + The type of shared heating system. Choice false false @@ -11649,15 +11649,6 @@
- - add_shared_system_argument - Argument Name - TODO. - String - false - false - None - heating_system_heating_autosizing_factor HVAC: Heating System Heating Autosizing Factor @@ -11700,6 +11691,24 @@ false false + + hvac_cooling_shared_system + HVAC: Cooling Shared System Type + The type of shared cooling system. + Choice + false + false + + + None + None + + + FanCoil + FanCoil + + + cooling_system_cooling_autosizing_factor HVAC: Cooling System Cooling Autosizing Factor @@ -12447,7 +12456,7 @@ measure.rb rb script - 4F2D0B10 + BB253739 common/README.md diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 12e3d86f1a..0b64ec671e 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9647,20 +9647,20 @@ Ground Thermal Conductivity 2.3 ResStockArguments location_soil_type=2.3 Btu/hr- Ground Thermal Conductivity 2.6 ResStockArguments location_soil_type=2.6 Btu/hr-ft-F HVAC Cooling Autosizing Factor 40% Oversized ResStockArguments cooling_system_cooling_autosizing_factor=1.4 heat_pump_cooling_autosizing_factor=1.0 HVAC Cooling Autosizing Factor None -HVAC Cooling Efficiency AC, SEER2 12.4 ResStockArguments hvac_cooling_system=Central AC, SEER2 12.4 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency AC, SEER2 13.4 ResStockArguments hvac_cooling_system=Central AC, SEER2 13.4 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency AC, SEER2 14.3 ResStockArguments hvac_cooling_system=Central AC, SEER2 14.3 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency AC, SEER2 7.6 ResStockArguments hvac_cooling_system=Central AC, SEER2 7.6 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency AC, SEER2 9.5 ResStockArguments hvac_cooling_system=Central AC, SEER2 9.5 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments hvac_cooling_system=None hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments hvac_cooling_system=Evaporative Cooler hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments hvac_cooling_system=None hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency None ResStockArguments hvac_cooling_system=None hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Room AC, CEER 10.6 ResStockArguments hvac_cooling_system=Room AC, CEER 10.6 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Room AC, CEER 11.0 ResStockArguments hvac_cooling_system=Room AC, CEER 11.0 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Room AC, CEER 11.9 ResStockArguments hvac_cooling_system=Room AC, CEER 11.9 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Room AC, CEER 8.4 ResStockArguments hvac_cooling_system=Room AC, CEER 8.4 hvac_cooling_system_capacity=Autosize -HVAC Cooling Efficiency Room AC, CEER 9.7 ResStockArguments hvac_cooling_system=Room AC, CEER 9.7 hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency AC, SEER2 12.4 ResStockArguments hvac_cooling_system=Central AC, SEER2 12.4 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency AC, SEER2 13.4 ResStockArguments hvac_cooling_system=Central AC, SEER2 13.4 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency AC, SEER2 14.3 ResStockArguments hvac_cooling_system=Central AC, SEER2 14.3 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency AC, SEER2 7.6 ResStockArguments hvac_cooling_system=Central AC, SEER2 7.6 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency AC, SEER2 9.5 ResStockArguments hvac_cooling_system=Central AC, SEER2 9.5 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments hvac_cooling_system=None hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments hvac_cooling_system=Evaporative Cooler hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments hvac_cooling_system=None hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency None ResStockArguments hvac_cooling_system=None hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Room AC, CEER 10.6 ResStockArguments hvac_cooling_system=Room AC, CEER 10.6 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Room AC, CEER 11.0 ResStockArguments hvac_cooling_system=Room AC, CEER 11.0 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Room AC, CEER 11.9 ResStockArguments hvac_cooling_system=Room AC, CEER 11.9 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Room AC, CEER 8.4 ResStockArguments hvac_cooling_system=Room AC, CEER 8.4 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize +HVAC Cooling Efficiency Room AC, CEER 9.7 ResStockArguments hvac_cooling_system=Room AC, CEER 9.7 hvac_cooling_shared_system=None hvac_cooling_system_capacity=Autosize HVAC Cooling Efficiency Shared Cooling HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments hvac_cooling_system_cooling_load_served=100% HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments hvac_cooling_system_cooling_load_served=20% @@ -9701,7 +9701,7 @@ HVAC Heating Efficiency Dual-Fuel ASHP, SEER2 15, 7.6 HSPF2, Integrated Backup, HVAC Heating Efficiency Dual-Fuel ASHP, SEER2 15, 7.6 HSPF2, Integrated Backup, 95.0% AFUE NG, 35F switchover ResStockArguments hvac_heating_system=None hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=Central HP, SEER2 15.0, HSPF2 7.6 hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=35F Min Compressor Temp, 35F Max HP Backup Temp hvac_heat_pump_backup=Integrated, Natural Gas, 95% AFUE hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Electric Baseboard, 100% Efficiency ResStockArguments hvac_heating_system=Electric Resistance hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Electric Boiler, 100% AFUE ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Heating Efficiency Electric Furnace, 100% AFUE ResStockArguments hvac_heating_system=Central Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None add_shared_system_argument=Test Value +HVAC Heating Efficiency Electric Furnace, 100% AFUE ResStockArguments hvac_heating_system=Central Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Electric Wall Furnace, 100% AFUE ResStockArguments hvac_heating_system=Wall Furnace, 100% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Fuel Boiler, 76% AFUE ResStockArguments hvac_heating_system=Boiler, 76% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Heating Efficiency Fuel Boiler, 80% AFUE ResStockArguments hvac_heating_system=Boiler, 80% AFUE hvac_heating_shared_system=None hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None @@ -9791,11 +9791,11 @@ HVAC Secondary Heating Partial Space Conditioning Void HVAC Secondary Heating Type Ducted Heating HVAC Secondary Heating Type Non-Ducted Heating HVAC Secondary Heating Type None -HVAC Shared Efficiencies Boiler Baseboards Heating Only, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Shared Efficiencies Boiler Baseboards Heating Only, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_system_capacity=Autosize -HVAC Shared Efficiencies Fan Coil Heating and Cooling, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Shared Efficiencies Fan Coil Heating and Cooling, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Boiler Baseboards Heating Only, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_shared_system=None hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Boiler Baseboards Heating Only, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_shared_system=None hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_heating_shared_system=None hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize +HVAC Shared Efficiencies Fan Coil Heating and Cooling, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Fan Coil Heating and Cooling, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Shared Efficiencies None HVAC Shared Efficiencies Void HVAC System Is Faulted No From d63e2d8d9444bec395f7ad9de99d298bda82772f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Dec 2025 21:49:53 +0000 Subject: [PATCH 71/82] Update documentation. --- .../workflow_inputs/characteristics.rst | 56 ++++++++++--------- .../options/HVAC Cooling Efficiency.tex | 6 +- .../options/HVAC Heating Efficiency.tex | 1 - .../options/HVAC Shared Efficiencies.tex | 6 +- .../properties/HVAC Cooling Efficiency.tex | 3 +- .../properties/HVAC Heating Efficiency.tex | 3 +- .../properties/HVAC Shared Efficiencies.tex | 3 +- 7 files changed, 43 insertions(+), 35 deletions(-) diff --git a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst index 1e9245869c..f955c7b7f3 100644 --- a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst +++ b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst @@ -29759,6 +29759,19 @@ From ``project_national`` the list of options, option stock saturation, and opti - - - + * - ``hvac_cooling_shared_system`` + - None + - None + - None + - None + - None + - None + - None + - None + - None + - None + - None + - Properties ********** @@ -29782,6 +29795,9 @@ Properties * - ``hvac_cooling_system_cooling_compressor_type`` - - The compressor type of the cooling system. Applies to Central ACs and Mini-Split ACs. + * - ``hvac_cooling_shared_system`` + - + - The type of shared cooling system. .. _hvac_cooling_partial_space_conditioning: HVAC Cooling Partial Space Conditioning @@ -30625,28 +30641,6 @@ From ``project_national`` the list of options, option stock saturation, and opti - None - - - * - ``add_shared_system_argument`` - - - - - - - - - - - - Test Value - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Properties ********** @@ -30705,10 +30699,7 @@ Properties - The rated heating efficiency of the integrated backup. * - ``hvac_heating_shared_system`` - - - The type of shared system. - * - ``add_shared_system_argument`` - - - - TODO. + - The type of shared heating system. * - ``hvac_heat_pump_backup_use_existing_system`` - - Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat_pump_backup_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating_system_2_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. @@ -31325,7 +31316,15 @@ From ``project_national`` the list of options, option stock saturation, and opti * - ``hvac_heating_shared_system`` - Baseboard - Baseboard + - None + - FanCoil + - FanCoil - + - + * - ``hvac_cooling_shared_system`` + - None + - None + - FanCoil - FanCoil - FanCoil - @@ -31379,7 +31378,10 @@ Properties - The backup type. Use 'integrated' to represent e.g. built-in electric strip heat or dual-fuel integrated furnace. Use 'separate' to represent e.g. electric baseboard or boiler (based on Heating System 2). * - ``hvac_heating_shared_system`` - - - The type of shared system. + - The type of shared heating system. + * - ``hvac_cooling_shared_system`` + - + - The type of shared cooling system. .. _hvac_system_is_faulted: HVAC System Is Faulted diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Cooling Efficiency.tex b/docs/technical_reference_guide/characteristics/options/HVAC Cooling Efficiency.tex index dc3796200b..c08beedcf9 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Cooling Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Cooling Efficiency.tex @@ -8,6 +8,7 @@ \texttt{hvac\_cooling\_system\_cooling\_efficiency\_type} & SEER2 & SEER2 & SEER2 \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency} & 7.6 & 9.5 & 12.4 \\ \hline \texttt{hvac\_cooling\_system\_cooling\_compressor\_type} & single stage & single stage & single stage \\ \hline +\texttt{hvac\_cooling\_shared\_system} & None & None & None \\ \hline \hline Option name & AC, SEER2 14.3 & Ducted Heat Pump & Non-Ducted Heat Pump \\ \hline Stock saturation & 12\% & 15\% & 0.97\% \\ \hline @@ -15,16 +16,19 @@ \texttt{hvac\_cooling\_system\_cooling\_efficiency\_type} & SEER2 & & \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency} & 14.3 & & \\ \hline \texttt{hvac\_cooling\_system\_cooling\_compressor\_type} & single stage & & \\ \hline +\texttt{hvac\_cooling\_shared\_system} & None & None & None \\ \hline \hline Option name & None & Room AC, CEER 8.4 & Room AC, CEER 9.7 \\ \hline Stock saturation & 11\% & 0.43\% & 2.6\% \\ \hline \texttt{hvac\_cooling\_system\_type} & none & room air conditioner & room air conditioner \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency\_type} & & CEER & CEER \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency} & & 8.4 & 9.7 \\ \hline +\texttt{hvac\_cooling\_shared\_system} & None & None & None \\ \hline \hline Option name & Room AC, CEER 10.6 & Room AC, CEER 11.9 & Shared Cooling \\ \hline Stock saturation & 9.6\% & 7.4\% & 3.8\% \\ \hline \texttt{hvac\_cooling\_system\_type} & room air conditioner & room air conditioner & \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency\_type} & CEER & CEER & \\ \hline -\texttt{hvac\_cooling\_system\_cooling\_efficiency} & 10.6 & 11.9 & \\ +\texttt{hvac\_cooling\_system\_cooling\_efficiency} & 10.6 & 11.9 & \\ \hline +\texttt{hvac\_cooling\_shared\_system} & None & None & \\ \end{customLongTable} diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex index fdf1a8e35f..8b10467718 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Heating Efficiency.tex @@ -31,7 +31,6 @@ \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & 1.0 \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & none \\ \hline \texttt{hvac\_heating\_shared\_system} & None & None & None \\ \hline -\texttt{add\_shared\_system\_argument} & & & Test Value \\ \hline \hline Option name & Electric Wall Furnace, 100\% AFUE & Fuel Boiler, 76\% AFUE & Fuel Boiler, 80\% AFUE \\ \hline Stock saturation & 1.1\% & 0.89\% & 3.3\% \\ \hline diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex b/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex index f53267fd84..7e152cbae6 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex @@ -16,7 +16,8 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & \\ \hline -\texttt{hvac\_heating\_shared\_system} & Baseboard & Baseboard & \\ \hline +\texttt{hvac\_heating\_shared\_system} & Baseboard & Baseboard & None \\ \hline +\texttt{hvac\_cooling\_shared\_system} & None & None & FanCoil \\ \hline \hline Option name & Fan Coil Heating and Cooling, Electricity & Fan Coil Heating and Cooling, Fuel & None \\ \hline Stock saturation & 1.3\% & 1.1\% & 89\% \\ \hline @@ -32,5 +33,6 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & \\ \hline -\texttt{hvac\_heating\_shared\_system} & FanCoil & FanCoil & \\ +\texttt{hvac\_heating\_shared\_system} & FanCoil & FanCoil & \\ \hline +\texttt{hvac\_cooling\_shared\_system} & FanCoil & FanCoil & \\ \end{customLongTable} diff --git a/docs/technical_reference_guide/characteristics/properties/HVAC Cooling Efficiency.tex b/docs/technical_reference_guide/characteristics/properties/HVAC Cooling Efficiency.tex index 92df10f67c..0844d2354d 100644 --- a/docs/technical_reference_guide/characteristics/properties/HVAC Cooling Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/properties/HVAC Cooling Efficiency.tex @@ -4,5 +4,6 @@ \texttt{hvac\_cooling\_system\_type} & & The type of system. \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency\_type} & & The cooling efficiency type. Central ACs and Mini-Split ACs use SEER2 or EER2; Room ACs and Packaged Terminal ACs use CEER or EER. \\ \hline \texttt{hvac\_cooling\_system\_cooling\_efficiency} & & The rated cooling efficiency. \\ \hline -\texttt{hvac\_cooling\_system\_cooling\_compressor\_type} & & The compressor type of the cooling system. Applies to Central ACs and Mini-Split ACs. \\ +\texttt{hvac\_cooling\_system\_cooling\_compressor\_type} & & The compressor type of the cooling system. Applies to Central ACs and Mini-Split ACs. \\ \hline +\texttt{hvac\_cooling\_shared\_system} & & The type of shared cooling system. \\ \end{customLongTable} diff --git a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex index 47eef5e0f2..f9dc599b2c 100644 --- a/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex +++ b/docs/technical_reference_guide/characteristics/properties/HVAC Heating Efficiency.tex @@ -16,8 +16,7 @@ \texttt{hvac\_heat\_pump\_backup\_type} & & The backup type. Use 'integrated' to represent e.g. built-in electric strip heat or dual-fuel integrated furnace. Use 'separate' to represent e.g. electric baseboard or boiler (based on Heating System 2). \\ \hline \texttt{hvac\_heat\_pump\_backup\_fuel} & & The fuel type of the integrated backup. \\ \hline \texttt{hvac\_heat\_pump\_backup\_heating\_efficiency} & Frac & The rated heating efficiency of the integrated backup. \\ \hline -\texttt{hvac\_heating\_shared\_system} & & The type of shared system. \\ \hline -\texttt{add\_shared\_system\_argument} & & TODO. \\ \hline +\texttt{hvac\_heating\_shared\_system} & & The type of shared heating system. \\ \hline \texttt{hvac\_heat\_pump\_backup\_use\_existing\_system} & & Whether the heat pump uses the existing heating system as backup. If true and backup type of the heat pump is 'integrated', heat\_pump\_backup\_xxx arguments are assigned values based on the existing heating system. If true and backup type of the heat pump is 'separate', heating\_system\_2\_xxx arguments are assigned values based on the existing heating system. This argument is only applicable for heat pump upgrades. \\ \hline \texttt{hvac\_heat\_pump\_sizing\_is\_duct\_limited} & & Whether the (ducted) heat pump has an upper limit for autosized heating/cooling capacity and an adjusted blower fan efficiency (W/CFM) value. This argument is only applicable for heat pump upgrades. \\ \end{customLongTable} diff --git a/docs/technical_reference_guide/characteristics/properties/HVAC Shared Efficiencies.tex b/docs/technical_reference_guide/characteristics/properties/HVAC Shared Efficiencies.tex index 2c5a96cee1..75b16fae64 100644 --- a/docs/technical_reference_guide/characteristics/properties/HVAC Shared Efficiencies.tex +++ b/docs/technical_reference_guide/characteristics/properties/HVAC Shared Efficiencies.tex @@ -13,5 +13,6 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & & Fraction of load served by the HVAC system. \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & & Fraction of load served by the HVAC system. \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & & The backup type. Use 'integrated' to represent e.g. built-in electric strip heat or dual-fuel integrated furnace. Use 'separate' to represent e.g. electric baseboard or boiler (based on Heating System 2). \\ \hline -\texttt{hvac\_heating\_shared\_system} & & The type of shared system. \\ +\texttt{hvac\_heating\_shared\_system} & & The type of shared heating system. \\ \hline +\texttt{hvac\_cooling\_shared\_system} & & The type of shared cooling system. \\ \end{customLongTable} From faae8b558a69afd08ad2f495a3a96c4e84e7cf46 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 Dec 2025 15:04:55 -0700 Subject: [PATCH 72/82] Clean up the lookup. --- resources/options_lookup.tsv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 0b64ec671e..8e22ac3df7 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9791,9 +9791,9 @@ HVAC Secondary Heating Partial Space Conditioning Void HVAC Secondary Heating Type Ducted Heating HVAC Secondary Heating Type Non-Ducted Heating HVAC Secondary Heating Type None -HVAC Shared Efficiencies Boiler Baseboards Heating Only, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_shared_system=None hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Shared Efficiencies Boiler Baseboards Heating Only, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_shared_system=None hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_heating_shared_system=None hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize +HVAC Shared Efficiencies Boiler Baseboards Heating Only, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Boiler Baseboards Heating Only, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=Baseboard hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize HVAC Shared Efficiencies Fan Coil Heating and Cooling, Electricity ResStockArguments hvac_heating_system=Boiler, 100% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Shared Efficiencies Fan Coil Heating and Cooling, Fuel ResStockArguments hvac_heating_system=Boiler, 78% AFUE hvac_heating_shared_system=FanCoil hvac_heating_system_capacity=Autosize hvac_heating_system_heating_load_served=100% hvac_cooling_system=Ductless Mini-Split AC, SEER2 14.5 hvac_cooling_shared_system=FanCoil hvac_cooling_system_capacity=Autosize hvac_heat_pump=None hvac_heat_pump_capacity=Autosize (ACCA) hvac_heat_pump_heating_load_served=100% hvac_heat_pump_cooling_load_served=100% hvac_heat_pump_temperatures=Default hvac_heat_pump_backup=None hvac_heat_pump_backup_capacity=Autosize hvac_geothermal_loop=Default advanced_feature=None HVAC Shared Efficiencies None From 69b81bdad4edea4a372422477b9c0c77c6fd09be Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Dec 2025 22:10:07 +0000 Subject: [PATCH 73/82] Update documentation. --- .../source/workflow_inputs/characteristics.rst | 6 +++--- .../characteristics/options/HVAC Shared Efficiencies.tex | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst index f955c7b7f3..508f748bf8 100644 --- a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst +++ b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst @@ -31316,14 +31316,14 @@ From ``project_national`` the list of options, option stock saturation, and opti * - ``hvac_heating_shared_system`` - Baseboard - Baseboard - - None + - - FanCoil - FanCoil - - * - ``hvac_cooling_shared_system`` - - None - - None + - + - - FanCoil - FanCoil - FanCoil diff --git a/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex b/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex index 7e152cbae6..21aa1dc616 100644 --- a/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex +++ b/docs/technical_reference_guide/characteristics/options/HVAC Shared Efficiencies.tex @@ -16,8 +16,8 @@ \texttt{hvac\_heat\_pump\_heating\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_cooling\_load\_served\_fraction} & 1.0 & 1.0 & \\ \hline \texttt{hvac\_heat\_pump\_backup\_type} & none & none & \\ \hline -\texttt{hvac\_heating\_shared\_system} & Baseboard & Baseboard & None \\ \hline -\texttt{hvac\_cooling\_shared\_system} & None & None & FanCoil \\ \hline +\texttt{hvac\_heating\_shared\_system} & Baseboard & Baseboard & \\ \hline +\texttt{hvac\_cooling\_shared\_system} & & & FanCoil \\ \hline \hline Option name & Fan Coil Heating and Cooling, Electricity & Fan Coil Heating and Cooling, Fuel & None \\ \hline Stock saturation & 1.3\% & 1.1\% & 89\% \\ \hline From 8d935e353457ba298c86374abbd06032817a37fe Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 19 Dec 2025 14:33:38 -0700 Subject: [PATCH 74/82] Stub adjustments to results_timeseries.csv. --- measures/SimulationOutput/measure.rb | 37 ++++++++++++++++++++++++--- measures/SimulationOutput/measure.xml | 6 ++--- 2 files changed, 37 insertions(+), 6 deletions(-) diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index 5f83a20c90..a64416bd81 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -161,6 +161,17 @@ def run(runner, user_arguments) end num_units = hpxml.buildings.collect { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum + + # Write/report results + report_runperiod_output_results(runner, new_runner, num_units) + report_timeseries_output_results(args, num_units) + + register_logs(runner, new_runner) + + return true + end + + def report_runperiod_output_results(runner, new_runner, num_units) new_runner.result.stepValues.each do |step_value| value = get_value_from_workflow_step_value(step_value) variant_type = step_value.variantType @@ -169,10 +180,30 @@ def run(runner, user_arguments) end register_value(runner, step_value.name, value) end + end - register_logs(runner, new_runner) - - return true + def report_timeseries_output_results(args, num_units) + timeseries_output_path = File.expand_path('../results_timeseries.csv') + n_digits = args[:timeseries_num_decimal_places] + + if File.exist?(timeseries_output_path) + rows = CSV.read(timeseries_output_path, headers: true) + File.rename(timeseries_output_path, timeseries_output_path.gsub('.csv', '_bak.csv')) + CSV.open(timeseries_output_path, 'wb') do |csv_out| + csv_out << rows.headers + csv_out << rows[0].fields + rows[1..-1].each do |row| + row.headers.each do |header| + next if ['Time', 'TimeDST', 'TimeUTC'].include?(header) + + value = Float(row[header]) + row[header] = (value / num_units).round(n_digits) # FIXME + end + csv_out << row.fields + end + end + File.delete(timeseries_output_path.gsub('.csv', '_bak.csv')) + end end end diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index 7d05549b58..367f5a6468 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - 67158bdd-b142-4b44-9098-971514ebab13 - 2025-12-17T22:46:02Z + f84cdd91-6e88-4286-9932-55ed307c441c + 2025-12-19T21:32:41Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,7 @@ measure.rb rb script - FB7C5903 + E236CD94 From 0cc94901d05de7c8c5cf89dfb3abfe6bbe32e98a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 22 Dec 2025 11:20:49 -0700 Subject: [PATCH 75/82] Avoid output scaling for certain outputs. --- measures/AddSharedSystem/measure.xml | 10 +++++-- .../AddSharedSystem/resources/measure.txt | 1 + measures/ResStockArguments/measure.xml | 6 ++-- .../ResStockArguments/resources/measure.txt | 2 +- .../ResStockArgumentsPostHPXML/measure.xml | 6 ++-- .../resources/measure.txt | 2 +- measures/SimulationOutput/measure.rb | 21 ++++++++++++-- measures/SimulationOutput/measure.xml | 18 ++++++++++-- .../SimulationOutput/resources/constants.rb | 17 +++++++++++ .../SimulationOutput/resources/measure.txt | 1 + tasks.rb | 29 +++++++++++++++---- 11 files changed, 92 insertions(+), 21 deletions(-) create mode 100644 measures/AddSharedSystem/resources/measure.txt create mode 100644 measures/SimulationOutput/resources/constants.rb create mode 100644 measures/SimulationOutput/resources/measure.txt diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 8bdddea029..1e15109820 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 2bdc6592-67f0-4754-a9fc-e6418ebaa5a7 - 2025-12-18T21:26:18Z + 55254a21-6444-4e6e-8476-3d8c8e9537bf + 2025-12-22T18:10:36Z BED8DECF AddSharedSystem Add Shared System @@ -12478,5 +12478,11 @@ script 303762D0 + + measure.txt + txt + resource + 402B6263 + diff --git a/measures/AddSharedSystem/resources/measure.txt b/measures/AddSharedSystem/resources/measure.txt new file mode 100644 index 0000000000..027729c137 --- /dev/null +++ b/measures/AddSharedSystem/resources/measure.txt @@ -0,0 +1 @@ +7d53fe9a57340fcf9c8c9d67acfb6fbc7d53fe9a57340fcf9c8c9d67acfb6fbc \ No newline at end of file diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 0ae0dc1248..fa60574fa9 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - 83ff250d-fcef-4736-9760-fb9d215c7aa0 - 2025-12-19T21:45:54Z + f40c79dd-8aba-4589-bda6-5c829e07dd78 + 2025-12-22T18:10:38Z 2C38F48B ResStockArguments ResStock Arguments @@ -12472,7 +12472,7 @@ measure.txt txt resource - E64778E8 + 402B6263 resstock_arguments_test.rb diff --git a/measures/ResStockArguments/resources/measure.txt b/measures/ResStockArguments/resources/measure.txt index 58cee9d792..027729c137 100644 --- a/measures/ResStockArguments/resources/measure.txt +++ b/measures/ResStockArguments/resources/measure.txt @@ -1 +1 @@ -7d53fe9a57340fcf9c8c9d67acfb6fbc \ No newline at end of file +7d53fe9a57340fcf9c8c9d67acfb6fbc7d53fe9a57340fcf9c8c9d67acfb6fbc \ No newline at end of file diff --git a/measures/ResStockArgumentsPostHPXML/measure.xml b/measures/ResStockArgumentsPostHPXML/measure.xml index f210c7bce0..969fb9676e 100644 --- a/measures/ResStockArgumentsPostHPXML/measure.xml +++ b/measures/ResStockArgumentsPostHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments_post_hpxml db102ce5-ac96-4ef9-90d3-abbe53478716 - 5bfc3659-fa4e-4f5c-85d6-2f6b6702516b - 2025-12-19T21:45:55Z + 19e39383-a69c-4cfb-b447-3db8ca1c2f7c + 2025-12-22T18:10:39Z 2C38F48B ResStockArgumentsPostHPXML ResStock Arguments Post-HPXML @@ -12540,7 +12540,7 @@ measure.txt txt resource - E64778E8 + 402B6263 test_hvac_load_flexibility.rb diff --git a/measures/ResStockArgumentsPostHPXML/resources/measure.txt b/measures/ResStockArgumentsPostHPXML/resources/measure.txt index 58cee9d792..027729c137 100644 --- a/measures/ResStockArgumentsPostHPXML/resources/measure.txt +++ b/measures/ResStockArgumentsPostHPXML/resources/measure.txt @@ -1 +1 @@ -7d53fe9a57340fcf9c8c9d67acfb6fbc \ No newline at end of file +7d53fe9a57340fcf9c8c9d67acfb6fbc7d53fe9a57340fcf9c8c9d67acfb6fbc \ No newline at end of file diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index a64416bd81..cb01323b62 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -3,6 +3,7 @@ # see the URL below for information on how to write OpenStudio measures # http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ +require_relative 'resources/constants' require_relative '../../resources/buildstock' require_relative '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure' @@ -172,17 +173,21 @@ def run(runner, user_arguments) end def report_runperiod_output_results(runner, new_runner, num_units) + n_digits = 3 + new_runner.result.stepValues.each do |step_value| value = get_value_from_workflow_step_value(step_value) variant_type = step_value.variantType if ['Double'.to_VariantType, 'Integer'.to_VariantType].include? variant_type - value /= num_units # FIXME: there may be some outputs where it does not make sense to divide by num_units (e.g., unmet hours which are calculated as the max across units?) + value = scale_output(step_value.name, value, num_units, n_digits) end register_value(runner, step_value.name, value) end end def report_timeseries_output_results(args, num_units) + return if num_units == 1 + timeseries_output_path = File.expand_path('../results_timeseries.csv') n_digits = args[:timeseries_num_decimal_places] @@ -197,7 +202,7 @@ def report_timeseries_output_results(args, num_units) next if ['Time', 'TimeDST', 'TimeUTC'].include?(header) value = Float(row[header]) - row[header] = (value / num_units).round(n_digits) # FIXME + row[header] = scale_output(header, value, num_units, n_digits) end csv_out << row.fields end @@ -205,6 +210,18 @@ def report_timeseries_output_results(args, num_units) File.delete(timeseries_output_path.gsub('.csv', '_bak.csv')) end end + + def scale_output(output, value, num_units, n_digits) + return value if num_units == 1 + + Constants::ReportSimulationOutputUnchangeds.each do |unchanged_output| + if output.start_with?(unchanged_output) || output.start_with?(OpenStudio::toUnderscoreCase(unchanged_output).chomp('_')) + return value.round(n_digits) + end + end + return (value / num_units).round(n_digits) + end + # FIXME: how to deal with output variables/meters (i.e., scale Electricity:Facility but not Zone People Occupant Count)? end # register the measure to be used by the application diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index 367f5a6468..092746017b 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - f84cdd91-6e88-4286-9932-55ed307c441c - 2025-12-19T21:32:41Z + 3a8d3702-f9fa-4049-b191-9e25cf2a2c3f + 2025-12-22T18:10:42Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,19 @@ measure.rb rb script - E236CD94 + 18980EA7 + + + constants.rb + rb + resource + 8F07886B + + + measure.txt + txt + resource + 80122C86 diff --git a/measures/SimulationOutput/resources/constants.rb b/measures/SimulationOutput/resources/constants.rb new file mode 100644 index 0000000000..88917096e3 --- /dev/null +++ b/measures/SimulationOutput/resources/constants.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +module Constants + # Exclude scaling these ReportSimulationOutput outputs + ReportSimulationOutputUnchangeds = [ + 'Unmet Hours', + 'HVAC Design Temperature', + 'Temperature', + 'Humidity Ratio', + 'Relative Humidity', + 'Dewpoint Temperature', + 'Radiant Temperature', + 'Operative Temperature', + 'Weather', + 'HVAC Geothermal Loop' + ] +end diff --git a/measures/SimulationOutput/resources/measure.txt b/measures/SimulationOutput/resources/measure.txt new file mode 100644 index 0000000000..004279d8a5 --- /dev/null +++ b/measures/SimulationOutput/resources/measure.txt @@ -0,0 +1 @@ +c243e772d35e0890d0437d1f6e6407b0c313e7def08745696d8a4415aed9ad4e \ No newline at end of file diff --git a/tasks.rb b/tasks.rb index defca7e636..be4f408c60 100644 --- a/tasks.rb +++ b/tasks.rb @@ -63,14 +63,31 @@ def display_usage(command_list) puts 'Applying rubocop auto-correct to measures...' system(command) - # Update a ResStockArguments/resources file when the BuildResidentialHPXML measure changes. - # This will ensure that the ResStockArguments measure.xml is appropriately updated. - # Without this, the ResStockArguments measure has no differences and so OpenStudio + # Update a ResStockArguments/ResStockArgumentsPostHPXML/AddSharedSystem resources file + # when the BuildResidentialHPXML/BuildResidentialScheduleFile measure changes. + # This will ensure that their measure.xml is appropriately updated. + # Without this, the measure has no differences and so OpenStudio # would skip updating it. - measure_rb_path = File.join(File.dirname(__FILE__), 'resources/hpxml-measures/BuildResidentialHPXML/measure.rb') - ['ResStockArguments', 'ResStockArgumentsPostHPXML'].each do |resstock_measure_name| + hexdigest = '' + [File.join(File.dirname(__FILE__), 'resources/hpxml-measures/BuildResidentialHPXML/measure.rb'), + File.join(File.dirname(__FILE__), 'resources/hpxml-measures/BuildResidentialHPXML/measure.rb')].each do |measure_rb_path| + hexdigest += Digest::MD5.file(measure_rb_path).hexdigest + end + ['ResStockArguments', 'ResStockArgumentsPostHPXML', 'AddSharedSystem'].each do |resstock_measure_name| + measure_txt_path = File.join(File.dirname(__FILE__), "measures/#{resstock_measure_name}/resources/measure.txt") + File.write(measure_txt_path, hexdigest) + end + + # Likewise for SimulationOutput, update a resource file + # when the ReportSimulationOutput/ReportUtilityBills measure changes. + hexdigest = '' + [File.join(File.dirname(__FILE__), 'resources/hpxml-measures/ReportSimulationOutput/measure.rb'), + File.join(File.dirname(__FILE__), 'resources/hpxml-measures/ReportUtilityBills/measure.rb')].each do |measure_rb_path| + hexdigest += Digest::MD5.file(measure_rb_path).hexdigest + end + ['SimulationOutput'].each do |resstock_measure_name| measure_txt_path = File.join(File.dirname(__FILE__), "measures/#{resstock_measure_name}/resources/measure.txt") - File.write(measure_txt_path, Digest::MD5.file(measure_rb_path).hexdigest) + File.write(measure_txt_path, hexdigest) end # Update measures XMLs From 66865600aa3aa067ace7058421d9965e6ee9b0dd Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 22 Dec 2025 15:21:54 -0700 Subject: [PATCH 76/82] Add dummy electric load in AddSharedSystem so we can test combining outputs using SimulationOutput. --- measures/AddSharedSystem/measure.rb | 11 + measures/AddSharedSystem/measure.xml | 6 +- measures/BuildExistingModel/measure.rb | 2 +- measures/BuildExistingModel/measure.xml | 6 +- measures/SimulationOutput/measure.rb | 408 +++++++++++++++++++++++- measures/SimulationOutput/measure.xml | 6 +- 6 files changed, 414 insertions(+), 25 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index 18867f9563..2819006fdb 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -74,6 +74,17 @@ def run(model, runner, user_arguments) if system == 'Boiler Baseboards Heating Only' # method_a(model, args[:hvac_heating_system], args[:hvac_heating_system_fuel]) + + model.getSpaces.each do |space| + ee_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) + ee = OpenStudio::Model::ElectricEquipment.new(ee_def) + ee.setName("Test Object #{space.name}") + ee.setSpace(space) + ee_def.setName("Test Object #{space.name}") + # ee_def.setDesignLevel(1000) + ee.setSchedule(model.alwaysOnDiscreteSchedule) + ee.setEndUseSubcategory('AddSharedSystem') + end elsif system == 'Fan Coil Cooling Only' # method_b(model, args[:hvac_cooling_system]) elsif system == 'Fan Coil Heating and Cooling' diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 1e15109820..54bc78f1e7 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 55254a21-6444-4e6e-8476-3d8c8e9537bf - 2025-12-22T18:10:36Z + 291c483d-a36e-4567-9ecc-ea36e6527043 + 2025-12-22T22:17:49Z BED8DECF AddSharedSystem Add Shared System @@ -12476,7 +12476,7 @@ measure.rb rb script - 303762D0 + 8D73C0C4 measure.txt diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index ea84fbccee..fea41147f8 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -371,7 +371,7 @@ def run(model, runner, user_arguments) end num_units_modeled = 1 - max_num_units_modeled = 5 + max_num_units_modeled = 2 unit_multipliers = [] if whole_sfa_or_mf_building_sim && (n_units > 1) num_units_modeled = [n_units, max_num_units_modeled].min diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 9e28276e24..e57ef69f2e 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 312f6e8f-6f39-41eb-9eaf-cf802809a26f - 2025-12-18T21:20:59Z + ea0494cb-6628-4d07-b70f-9a182b1ce09a + 2025-12-22T22:17:51Z 2C38F48B BuildExistingModel Build Existing Model @@ -414,7 +414,7 @@ measure.rb rb script - F6994491 + DD802415 diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index cb01323b62..c4ca9501bb 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -5,6 +5,7 @@ require_relative 'resources/constants' require_relative '../../resources/buildstock' +require_relative '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants' require_relative '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure' # start the measure @@ -52,6 +53,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument def modelOutputRequests(model, runner, user_arguments) return false if runner.halted + @model = model + # use the built-in error checking if !runner.validateUserArguments(arguments(model), user_arguments) return false @@ -62,6 +65,40 @@ def modelOutputRequests(model, runner, user_arguments) args = runner.getArgumentValues(arguments(model), user_arguments) measures = setup_measures(args) apply_model_output_requests(hpxml_measures_dir, measures, runner, model) + + setup_outputs() + + # End Use outputs + { @end_uses => args[:include_timeseries_end_use_consumptions] }.each do |uses, include_timeseries| + uses.each do |key, use| + use.variables.each do |_sys_id, varkey, var| + Model.add_output_variable(model, key_value: varkey, variable_name: var, reporting_frequency: 'runperiod') + if include_timeseries + Model.add_output_variable(model, key_value: varkey, variable_name: var, reporting_frequency: args[:timeseries_frequency]) + end + next unless use.is_a?(EndUse) + + fuel_type, _end_use = key + if fuel_type == FT::Elec && args[:include_hourly_electric_end_use_consumptions] + Model.add_output_variable(model, key_value: varkey, variable_name: var, reporting_frequency: 'hourly') + end + end + use.meters.each do |_, _, meter| + Model.add_output_meter(model, meter_name: meter, reporting_frequency: 'runperiod') + if include_timeseries + Model.add_output_meter(model, meter_name: meter, reporting_frequency: args[:timeseries_frequency]) + end + next unless use.is_a?(EndUse) + + fuel_type, _end_use = key + if fuel_type == FT::Elec && args[:include_hourly_electric_end_use_consumptions] + Model.add_output_meter(model, meter_name: meter, reporting_frequency: 'hourly') + end + end + end + end + + return true end # Set arguments for the ReportSimulationOutput and ReportUtilityBills measures @@ -117,6 +154,96 @@ def setup_measures(args) return measures end + def get_outputs(_runner, args) + # End Uses + @end_uses.each do |key, end_use| + fuel_type, _end_use_type = key + + end_use.variables.map { |v| v[0] }.uniq.each do |sys_id| + keys = end_use.variables.select { |v| v[0] == sys_id }.map { |v| v[1] } + vars = end_use.variables.select { |v| v[0] == sys_id }.map { |v| v[2] } + + end_use.annual_output_by_system[sys_id] = get_report_variable_data_annual(keys, vars, is_negative: (end_use.is_negative || end_use.is_storage)) + + if args[:include_timeseries_end_use_consumptions] + end_use.timeseries_output_by_system[sys_id] = get_report_variable_data_timeseries(keys, vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, args[:timeseries_frequency], is_negative: (end_use.is_negative || end_use.is_storage)) + end + if args[:include_hourly_electric_end_use_consumptions] && fuel_type == FT::Elec + end_use.hourly_output_by_system[sys_id] = get_report_variable_data_timeseries(keys, vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, EPlus::TimeseriesFrequencyHourly, is_negative: (end_use.is_negative || end_use.is_storage)) + end + end + end_use.meters.map { |v| v[0] }.uniq.each do |sys_id| + vars = end_use.meters.select { |v| v[0] == sys_id }.map { |v| v[2] } + + end_use.annual_output_by_system[sys_id] = 0.0 if end_use.annual_output_by_system[sys_id].nil? + end_use.annual_output_by_system[sys_id] += get_report_meter_data_annual(vars, UnitConversions.convert(1.0, 'J', end_use.annual_units)) + + if args[:include_timeseries_end_use_consumptions] + values = get_report_meter_data_timeseries(vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, args[:timeseries_frequency]) + if end_use.timeseries_output_by_system[sys_id].nil? + end_use.timeseries_output_by_system[sys_id] = values + else + end_use.timeseries_output_by_system[sys_id] = end_use.timeseries_output_by_system[sys_id].zip(values).map { |x, y| x + y } + end + end + next unless args[:include_hourly_electric_end_use_consumptions] && fuel_type == FT::Elec + + values = get_report_meter_data_timeseries(vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, EPlus::TimeseriesFrequencyHourly) + if end_use.hourly_output_by_system[sys_id].nil? + end_use.hourly_output_by_system[sys_id] = values + else + end_use.hourly_output_by_system[sys_id] = end_use.hourly_output_by_system[sys_id].zip(values).map { |x, y| x + y } + end + end + end + + # Calculate aggregated values from per-system values as needed + @end_uses.values.each do |obj| + # Annual + if obj.annual_output.nil? + if not obj.annual_output_by_system.empty? + obj.annual_output = obj.annual_output_by_system.values.sum(0.0) + else + obj.annual_output = 0.0 + end + end + + # Timeseries + if obj.timeseries_output.empty? && (not obj.timeseries_output_by_system.empty?) + obj.timeseries_output = obj.timeseries_output_by_system.values.transpose.map(&:sum) + end + + # Hourly Electricity (for Cambium) + next unless obj.is_a?(EndUse) && obj.hourly_output.empty? && (not obj.hourly_output_by_system.empty?) + + obj.hourly_output = obj.hourly_output_by_system.values.transpose.map(&:sum) + end + end + + def setup_outputs() + # Returns the timeseries units associated with energy use + # for the given fuel. + # + # @param fuel_type [String] The given fuel type (FT::XXX) + # @return [String] The units + def get_timeseries_units_from_fuel_type(fuel_type) + return (fuel_type == FT::Elec ? 'kWh' : 'kBtu') + end + + # End Uses + + create_all_object_outputs_by_key() + + @end_uses = {} + @end_uses[[FT::Elec, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::RangeOven])) + @end_uses.each do |key, end_use| + fuel_type, end_use_type = key + end_use.name = "End Use: #{fuel_type}: #{end_use_type}" + end_use.annual_units = 'MBtu' + end_use.timeseries_units = get_timeseries_units_from_fuel_type(fuel_type) + end + end + # define what happens when the measure is run def run(runner, user_arguments) super(runner, user_arguments) @@ -126,18 +253,19 @@ def run(runner, user_arguments) runner.registerError('Cannot find OpenStudio model.') return false end - model = model.get + @model = model.get # use the built-in error checking - if !runner.validateUserArguments(arguments(model), user_arguments) + if !runner.validateUserArguments(arguments(@model), user_arguments) return false end # Assign the user inputs to variables - args = runner.getArgumentValues(arguments(model), user_arguments) + args = runner.getArgumentValues(arguments(@model), user_arguments) - hpxml_defaults_path = model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get - building_id = model.getBuilding.additionalProperties.getFeatureAsString('building_id').get + hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get + output_dir = File.dirname(hpxml_defaults_path) + building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) # Get file/dir paths @@ -156,15 +284,24 @@ def run(runner, user_arguments) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) new_runner.setLastEpwFilePath(File.join(File.dirname(__FILE__), 'in.epw')) - if not apply_measures(hpxml_measures_dir, measures_hash, new_runner, model, true, 'OpenStudio::Measure::ReportingMeasure', nil) + if not apply_measures(hpxml_measures_dir, measures_hash, new_runner, @model, true, 'OpenStudio::Measure::ReportingMeasure', nil) register_logs(runner, new_runner) return false end + @msgpackData = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout.msgpack'), mode: 'rb')) + setup_outputs() + get_outputs(runner, args) + combine_results(new_runner) + + if not check_for_errors(runner) + return false + end + num_units = hpxml.buildings.collect { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum # Write/report results - report_runperiod_output_results(runner, new_runner, num_units) + report_runperiod_output_results(runner, num_units) report_timeseries_output_results(args, num_units) register_logs(runner, new_runner) @@ -172,16 +309,51 @@ def run(runner, user_arguments) return true end - def report_runperiod_output_results(runner, new_runner, num_units) - n_digits = 3 - + def combine_results(new_runner) + # Annual + @new_results = {} new_runner.result.stepValues.each do |step_value| - value = get_value_from_workflow_step_value(step_value) variant_type = step_value.variantType - if ['Double'.to_VariantType, 'Integer'.to_VariantType].include? variant_type - value = scale_output(step_value.name, value, num_units, n_digits) + next unless ['Double'.to_VariantType, 'Integer'.to_VariantType].include? variant_type + + name = step_value.name + @new_results[name] = get_value_from_workflow_step_value(step_value) + if name == 'end_use_electricity_range_oven_m_btu' + @new_results[name] += @end_uses[[FT::Elec, EUT::RangeOven]].annual_output end - register_value(runner, step_value.name, value) + end + + # Timeseries + # TODO + + return @new_results + end + + def check_for_errors(runner) + tol = 0.1 # 0.1% + + # Check sum of end use outputs match fuel outputs from meters + fuel_types = [FT::Elec] + fuel_types.each do |fuel_type| + ft = OpenStudio::toUnderscoreCase(fuel_type) + + sum_categories = @new_results.select { |k, _v| k.start_with?('end_use') && k.include?(ft) }.map { |_k, v| v }.sum(0.0) + meter_fuel_total = @new_results["fuel_use_#{ft}_total_m_btu"] + + avg_value = (sum_categories + meter_fuel_total) / 2.0 + next unless (sum_categories - meter_fuel_total).abs / avg_value > tol + + runner.registerError("#{fuel_type} category end uses (#{sum_categories.round(3)}) do not sum to total (#{meter_fuel_total.round(3)}).") + return false + end + end + + def report_runperiod_output_results(runner, num_units) + n_digits = 3 + + @new_results.each do |name, value| + value = scale_output(name, value, num_units, n_digits) + register_value(runner, name, value) end end @@ -212,6 +384,7 @@ def report_timeseries_output_results(args, num_units) end def scale_output(output, value, num_units, n_digits) + # FIXME: how to deal with output variables/meters (i.e., scale Electricity:Facility but not Zone People Occupant Count)? return value if num_units == 1 Constants::ReportSimulationOutputUnchangeds.each do |unchanged_output| @@ -221,7 +394,212 @@ def scale_output(output, value, num_units, n_digits) end return (value / num_units).round(n_digits) end - # FIXME: how to deal with output variables/meters (i.e., scale Electricity:Facility but not Zone People Occupant Count)? + + # Retrieves the total annual value for the specified output meters from the EnergyPlus msgpack output file. + # + # @param meter_names [Array] List of EnergyPlus output meter names + # @param unit_conv [Double] Unit conversion to apply to the EnergyPlus output + # @return [Double] Sum of output meter annual outputs + def get_report_meter_data_annual(meter_names, unit_conv = UnitConversions.convert(1.0, 'J', 'MBtu')) + return 0.0 if meter_names.empty? + + cols = @msgpackData['MeterData']['RunPeriod']['Cols'] + timestamp = @msgpackData['MeterData']['RunPeriod']['Rows'][0].keys[0] + row = @msgpackData['MeterData']['RunPeriod']['Rows'][0][timestamp] + indexes = cols.each_index.select { |i| meter_names.include? cols[i]['Variable'] } + val = row.each_index.select { |i| indexes.include? i }.map { |i| row[i] }.sum(0.0) * unit_conv + + return val + end + + # Retrieves the total timeseries values for the specified output meters from the EnergyPlus msgpack output file. + # + # @param meter_names [Array] List of EnergyPlus output meter names + # @param unit_conv unit_conv [Double] Unit conversion to apply to the EnergyPlus output + # @param unit_adder [Double] Adder value to apply to the EnergyPlus output + # @param timeseries_frequency [String] Timeseries reporting frequency (TimeseriesFrequencyXXX) + # @return [Array] Sum of output meter timeseries outputs + def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_frequency) + return [0.0] * @timestamps.size if meter_names.empty? + + msgpack_timeseries_name = EPlus::get_msgpack_timeseries_name(timeseries_frequency) + timeseries_data = @msgpackData['MeterData'][msgpack_timeseries_name] + cols = timeseries_data['Cols'] + rows = timeseries_data['Rows'] + indexes = cols.each_index.select { |i| meter_names.include? cols[i]['Variable'] } + vals = [0.0] * rows.size + + # Calculate whether we need to shift values once up front + shift_values = {} + indexes.each_with_index do |_i, idx| + shift_values[idx] = false + if apply_ems_shift(timeseries_frequency) + if meter_names[idx].include? Constants::ObjectTypeWaterHeaterAdjustment + # Shift energy use adjustment to align with hot water energy use + shift_values[idx] = true + elsif meter_names[idx].include? Constants::ObjectTypePanHeater + # Shift energy use adjustment to align with HVAC operation and weather + shift_values[idx] = true + elsif meter_names[idx].include? Constants::ObjectTypeHPDefrostSupplHeat + # Shift energy use adjustment to align with HVAC operation and weather + shift_values[idx] = true + end + end + end + + rows.each_with_index do |row, row_idx| + row = row[row.keys[0]] + indexes.each_with_index do |i, idx| + if shift_values[idx] + vals[row_idx - 1] += row[i] * unit_conv + unit_adder + else + vals[row_idx] += row[i] * unit_conv + unit_adder + end + end + end + return vals + end + + # Returns whether we should shift the EMS outputs or not. Only shift if we reporting timestep values + # (i.e., not daily, monthly, or hourly w/ a sub-hourly timestep). + # + # @param timeseries_frequency [String] Timeseries reporting frequency (TimeseriesFrequencyXXX) + # @return [Boolean] True if the output should be shifted + def apply_ems_shift(timeseries_frequency) + if (timeseries_frequency == EPlus::TimeseriesFrequencyTimestep) + return true + elsif (timeseries_frequency == EPlus::TimeseriesFrequencyHourly) && (@model.getTimestep.numberOfTimestepsPerHour == 1) + return true + end + + return false + end + + # Returns the list of outputs associated with the given output class type and key. + # + # @param class_type [Module] The output class type + # @param key [String] The particular key for the output class, e.g. HWT::ClothesWasher + # @return [Array>] Sets of outputs with: HPXML ID, EnergyPlus output variable key, EnergyPlus output variable/meter name + def get_object_outputs(class_type, key) + hash_key = [class_type, key] + vars = @object_variables_by_key[hash_key] + vars = [] if vars.nil? + return vars + end + + # Base structure to store EnergyPlus annual/timeseries outputs; structures for end uses, loads, + # etc., will inherit from this class and include additional properties/logic as needed. + class BaseOutput + def initialize() + @timeseries_output = [] + end + attr_accessor(:name, :annual_output, :timeseries_output, :annual_units, :timeseries_units) + end + + # Structure to store EnergyPlus outputs by end use and fuel type. + class EndUse < BaseOutput + # @param outputs [Array>] Sets of outputs with: HPXML ID, EnergyPlus output variable key, EnergyPlus output variable/meter name + # @param is_negative [Boolean] Whether the EnergyPlus outputs are negative + # @param is_storage [Boolean] Whether the EnergyPlus outputs are associated with battery storage + def initialize(outputs:, is_negative: false, is_storage: false) + super() + @variables = outputs.select { |o| !o[2].include?(':') } + @meters = outputs.select { |o| o[2].include?(':') } + @is_negative = is_negative + @is_storage = is_storage + @timeseries_output_by_system = {} + @annual_output_by_system = {} + # These outputs used to apply Cambium hourly electricity factors + @hourly_output = [] + @hourly_output_by_system = {} + end + attr_accessor(:variables, :meters, :is_negative, :is_storage, :annual_output_by_system, :timeseries_output_by_system, + :hourly_output, :hourly_output_by_system) + end + + # Creates a global hash that maps output classes/keys (e.g., [HWT, HWT::ClothesWasher]) + # with its associated data (HPXML ID, EnergyPlus output variable name/key value). This + # will be used later to look up the EnergyPlus annual or timeseries value(s) for this + # particular output. + # + # @return [nil] + def create_all_object_outputs_by_key + @object_variables_by_key = {} + return if @model.nil? + + @model.getModelObjects.sort.each do |object| + next if object.to_AdditionalProperties.is_initialized + + [EUT, HWT, LT, RT].each do |class_type| + vars_by_key = get_object_outputs_by_key(@model, object, class_type) + next if vars_by_key.size == 0 + + sys_id = object.additionalProperties.getFeatureAsString('HPXML_ID') + sys_id = sys_id.is_initialized ? sys_id.get : nil + + vars_by_key.each do |key, output_vars| + output_vars.each do |output_var| + if object.to_EnergyManagementSystemOutputVariable.is_initialized + varkey = 'EMS' + else + varkey = object.name.to_s.upcase + end + hash_key = [class_type, key] + @object_variables_by_key[hash_key] = [] if @object_variables_by_key[hash_key].nil? + next if @object_variables_by_key[hash_key].include? [sys_id, varkey, output_var] + + @object_variables_by_key[hash_key] << [sys_id, varkey, output_var] + end + end + end + end + end + + # For a given object, returns the Output:Variables or Output:Meters to be requested, + # and associates them with the appropriate keys (e.g., [FT::Elec, EUT::Heating]). + # + # @param model [OpenStudio::Model::Model] OpenStudio Model object + # @param object [OpenStudio::Model::Foo] A given object in the OpenStudio Model + # @param class_type [Module] The output class type + # @return [Hash] Map of output key => array of EnergyPlus output variable/meter names + def get_object_outputs_by_key(_model, object, class_type) + object_type = object.additionalProperties.getFeatureAsString('ObjectType') + object_type = object_type.get if object_type.is_initialized + + to_ft = { EPlus::FuelTypeElectricity => FT::Elec, + EPlus::FuelTypeNaturalGas => FT::Gas, + EPlus::FuelTypeOil => FT::Oil, + EPlus::FuelTypePropane => FT::Propane, + EPlus::FuelTypeWoodCord => FT::WoodCord, + EPlus::FuelTypeWoodPellets => FT::WoodPellets, + EPlus::FuelTypeCoal => FT::Coal } + + if class_type == EUT + if object.to_ElectricEquipment.is_initialized + object = object.to_ElectricEquipment.get + subcategory = object.endUseSubcategory + end_use = nil + { 'AddSharedSystem' => EUT::RangeOven }.each do |obj_name, eut| + next unless subcategory.start_with? obj_name + fail 'Unexpected error: multiple matches.' unless end_use.nil? + + end_use = eut + end + + if not end_use.nil? + # Use Output:Meter instead of Output:Variable because they incorporate thermal zone multipliers + if object.space.is_initialized + zone_name = object.space.get.thermalZone.get.name.to_s.upcase + return { [FT::Elec, end_use] => ["#{subcategory}:InteriorEquipment:Electricity:Zone:#{zone_name}"] } + else + return { [FT::Elec, end_use] => ["#{subcategory}:InteriorEquipment:Electricity"] } + end + end + end + end + + return {} + end end # register the measure to be used by the application diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index 092746017b..fc391084c7 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - 3a8d3702-f9fa-4049-b191-9e25cf2a2c3f - 2025-12-22T18:10:42Z + 6334fa94-adbe-4403-bf81-aee5a9585a02 + 2025-12-22T22:17:52Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,7 @@ measure.rb rb script - 18980EA7 + 305A177E constants.rb From c4776371e0da9edbcc044ebc07a6035bd1b07e2e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 22 Dec 2025 15:23:43 -0700 Subject: [PATCH 77/82] Remove unused copied code for the time being. --- measures/SimulationOutput/measure.rb | 11 ----------- measures/SimulationOutput/measure.xml | 6 +++--- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index c4ca9501bb..eacc0847ac 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -563,17 +563,6 @@ def create_all_object_outputs_by_key # @param class_type [Module] The output class type # @return [Hash] Map of output key => array of EnergyPlus output variable/meter names def get_object_outputs_by_key(_model, object, class_type) - object_type = object.additionalProperties.getFeatureAsString('ObjectType') - object_type = object_type.get if object_type.is_initialized - - to_ft = { EPlus::FuelTypeElectricity => FT::Elec, - EPlus::FuelTypeNaturalGas => FT::Gas, - EPlus::FuelTypeOil => FT::Oil, - EPlus::FuelTypePropane => FT::Propane, - EPlus::FuelTypeWoodCord => FT::WoodCord, - EPlus::FuelTypeWoodPellets => FT::WoodPellets, - EPlus::FuelTypeCoal => FT::Coal } - if class_type == EUT if object.to_ElectricEquipment.is_initialized object = object.to_ElectricEquipment.get diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index fc391084c7..fe1d011888 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - 6334fa94-adbe-4403-bf81-aee5a9585a02 - 2025-12-22T22:17:52Z + 902caa07-4d21-4ed2-abff-4b9149e9e8c1 + 2025-12-22T22:23:09Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,7 @@ measure.rb rb script - 305A177E + 052253AE constants.rb From 8c2899bdf259c13c26f4e1eae13a7ceb1f158eaa Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 23 Dec 2025 10:28:45 -0700 Subject: [PATCH 78/82] Uncomment openstudio-standards require line. --- measures/AddSharedSystem/measure.rb | 2 +- measures/AddSharedSystem/measure.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index 2819006fdb..e2e8ddc3d7 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -4,7 +4,7 @@ # http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ require 'openstudio' -# require 'openstudio-standards' +require 'openstudio-standards' require_relative '../../resources/buildstock' # start the measure diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 54bc78f1e7..b231d0d7dc 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 291c483d-a36e-4567-9ecc-ea36e6527043 - 2025-12-22T22:17:49Z + 32ba649f-52cb-477d-ae34-6fc5a8b47cc8 + 2025-12-23T17:28:09Z BED8DECF AddSharedSystem Add Shared System @@ -12476,7 +12476,7 @@ measure.rb rb script - 8D73C0C4 + B76F377E measure.txt From ac795cdfa6721eadb77cf2f1a8b9bfede27c89d8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 23 Dec 2025 13:06:09 -0700 Subject: [PATCH 79/82] Check electricity end uses against net fuel use. --- measures/AddSharedSystem/measure.rb | 2 ++ measures/AddSharedSystem/measure.xml | 6 +++--- measures/SimulationOutput/measure.rb | 15 +++++++++++++-- measures/SimulationOutput/measure.xml | 6 +++--- 4 files changed, 21 insertions(+), 8 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index e2e8ddc3d7..3bc41118f6 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -84,7 +84,9 @@ def run(model, runner, user_arguments) # ee_def.setDesignLevel(1000) ee.setSchedule(model.alwaysOnDiscreteSchedule) ee.setEndUseSubcategory('AddSharedSystem') + # ee.setEndUseSubcategory('cooking range') end + elsif system == 'Fan Coil Cooling Only' # method_b(model, args[:hvac_cooling_system]) elsif system == 'Fan Coil Heating and Cooling' diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index b231d0d7dc..2964a05e10 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 32ba649f-52cb-477d-ae34-6fc5a8b47cc8 - 2025-12-23T17:28:09Z + 396cf3d3-c699-4ab4-a319-c7b6c3aaa8c7 + 2025-12-23T20:04:23Z BED8DECF AddSharedSystem Add Shared System @@ -12476,7 +12476,7 @@ measure.rb rb script - B76F377E + 6D75FC7F measure.txt diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index eacc0847ac..c4a9405267 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -333,12 +333,23 @@ def check_for_errors(runner) tol = 0.1 # 0.1% # Check sum of end use outputs match fuel outputs from meters - fuel_types = [FT::Elec] + fuel_types = [FT::Elec, + FT::Gas, + FT::Oil, + FT::Propane, + FT::WoodCord, + FT::WoodPellets, + FT::Coal] fuel_types.each do |fuel_type| + total_or_net = (fuel_type == FT::Elec ? TE::Net : TE::Total) ft = OpenStudio::toUnderscoreCase(fuel_type) sum_categories = @new_results.select { |k, _v| k.start_with?('end_use') && k.include?(ft) }.map { |_k, v| v }.sum(0.0) - meter_fuel_total = @new_results["fuel_use_#{ft}_total_m_btu"] + if total_or_net == TE::Total + meter_fuel_total = @new_results["fuel_use_#{ft}_total_m_btu"] + elsif total_or_net == TE::Net + meter_fuel_total = @new_results["fuel_use_#{ft}_net_m_btu"] + end avg_value = (sum_categories + meter_fuel_total) / 2.0 next unless (sum_categories - meter_fuel_total).abs / avg_value > tol diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index fe1d011888..a578ea14c2 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - 902caa07-4d21-4ed2-abff-4b9149e9e8c1 - 2025-12-22T22:23:09Z + 41fd6173-1d0b-471b-98d9-887e5cd4b0be + 2025-12-23T20:04:27Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,7 @@ measure.rb rb script - 052253AE + 11BD7F30 constants.rb From 9f8d34ec0d49578e240effd4f4a0fdddf2dcf217 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 24 Dec 2025 09:52:17 -0700 Subject: [PATCH 80/82] Clean up meta measure and constants. --- measures/BuildExistingModel/measure.rb | 15 +++++++-------- measures/BuildExistingModel/measure.xml | 6 +++--- measures/ResStockArguments/measure.xml | 6 +++--- measures/ResStockArguments/resources/constants.rb | 2 ++ 4 files changed, 15 insertions(+), 14 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index fea41147f8..c66b04307d 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -363,7 +363,7 @@ def run(model, runner, user_arguments) # Optional whole SFA/MF building simulation whole_sfa_or_mf_building_sim = args[:whole_sfa_or_mf_building_sim] n_units = measures['ResStockArguments'][0]['geometry_building_num_units'] - if n_units.nil? + if n_units.nil? # SFD whole_sfa_or_mf_building_sim = false n_units = 1 else @@ -371,10 +371,9 @@ def run(model, runner, user_arguments) end num_units_modeled = 1 - max_num_units_modeled = 2 unit_multipliers = [] - if whole_sfa_or_mf_building_sim && (n_units > 1) - num_units_modeled = [n_units, max_num_units_modeled].min + if whole_sfa_or_mf_building_sim + num_units_modeled = [n_units, Constants::MaxNumUnitsModeled].min unit_multipliers = split_into(n_units, num_units_modeled) end @@ -384,12 +383,12 @@ def run(model, runner, user_arguments) set_header(runner, measures, args, whole_sfa_or_mf_building_sim, bldg_data, resources_dir) set_building_header(measures) - set_battery(measures, whole_sfa_or_mf_building_sim, num_units_modeled) + set_battery(measures, whole_sfa_or_mf_building_sim) new_runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) (1..num_units_modeled).each do |unit_number| if not unit_multipliers.empty? - unit_multiplier = unit_multipliers[unit_number] + unit_multiplier = unit_multipliers[unit_number - 1] end set_resstock_arguments(measures, resstock_arguments_runner) @@ -676,8 +675,8 @@ def set_dehumidifier(measures, unit_multiplier) end end - def set_battery(measures, whole_sfa_or_mf_building_sim, num_units_modeled) - if whole_sfa_or_mf_building_sim && num_units_modeled > 1 + def set_battery(measures, whole_sfa_or_mf_building_sim) + if whole_sfa_or_mf_building_sim measures['BuildResidentialHPXML'][0]['battery'] = 'None' # limitation of OS-HPXML end end diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index e57ef69f2e..a90f7633e5 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - ea0494cb-6628-4d07-b70f-9a182b1ce09a - 2025-12-22T22:17:51Z + 27f48692-cd00-4f07-a951-f461c2ae59ca + 2025-12-24T16:51:31Z 2C38F48B BuildExistingModel Build Existing Model @@ -414,7 +414,7 @@ measure.rb rb script - DD802415 + B2B5D259 diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index fa60574fa9..9ef8fa56c9 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -3,8 +3,8 @@ 3.1 res_stock_arguments c984bb9e-4ac4-4930-a399-9d23f8f6936a - f40c79dd-8aba-4589-bda6-5c829e07dd78 - 2025-12-22T18:10:38Z + e186124b-efca-4f81-8ab7-47713fd5b000 + 2025-12-24T16:51:32Z 2C38F48B ResStockArguments ResStock Arguments @@ -12466,7 +12466,7 @@ constants.rb rb resource - C289753F + B39DBC1C measure.txt diff --git a/measures/ResStockArguments/resources/constants.rb b/measures/ResStockArguments/resources/constants.rb index 9c6d1a90da..3e34ac2b36 100644 --- a/measures/ResStockArguments/resources/constants.rb +++ b/measures/ResStockArguments/resources/constants.rb @@ -27,4 +27,6 @@ module Constants # Per Jon W, the recommended airflow for most heat pumps; it's also the max cfm/ton airflow rate for typical DX equipment (per hvac_sizing.rb). DuctRestrictionAssumedAirflow = 400.0 + + MaxNumUnitsModeled = 2 end From 7951451177e06541e71b05790011ca816391f5ac Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 14 Jan 2026 16:08:29 -0700 Subject: [PATCH 81/82] Check sum of end use outputs match fuel outputs from new meta measure. --- measures/AddSharedSystem/measure.rb | 3 +-- measures/AddSharedSystem/measure.xml | 6 +++--- measures/SimulationOutput/measure.rb | 16 +++++----------- measures/SimulationOutput/measure.xml | 8 ++++---- measures/SimulationOutput/resources/measure.txt | 2 +- .../ReportSimulationOutput/measure.rb | 4 ++-- 6 files changed, 16 insertions(+), 23 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index 3bc41118f6..ce5a4b00e8 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -81,10 +81,9 @@ def run(model, runner, user_arguments) ee.setName("Test Object #{space.name}") ee.setSpace(space) ee_def.setName("Test Object #{space.name}") - # ee_def.setDesignLevel(1000) + ee_def.setDesignLevel(1000) ee.setSchedule(model.alwaysOnDiscreteSchedule) ee.setEndUseSubcategory('AddSharedSystem') - # ee.setEndUseSubcategory('cooking range') end elsif system == 'Fan Coil Cooling Only' diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index b83ab58979..1712103816 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - 97f6fb13-a172-4107-ac17-14ae416fc9aa - 2026-01-14T21:05:48Z + aaee2156-a0bb-4937-a17f-7d3b983e7281 + 2026-01-14T23:06:46Z BED8DECF AddSharedSystem Add Shared System @@ -12580,7 +12580,7 @@ measure.rb rb script - 6D75FC7F + 7A3B963F measure.txt diff --git a/measures/SimulationOutput/measure.rb b/measures/SimulationOutput/measure.rb index c4a9405267..d8bf384daa 100644 --- a/measures/SimulationOutput/measure.rb +++ b/measures/SimulationOutput/measure.rb @@ -318,9 +318,9 @@ def combine_results(new_runner) name = step_value.name @new_results[name] = get_value_from_workflow_step_value(step_value) - if name == 'end_use_electricity_range_oven_m_btu' - @new_results[name] += @end_uses[[FT::Elec, EUT::RangeOven]].annual_output - end + next unless name == 'end_use_electricity_range_oven_m_btu' + + @new_results[name] += @end_uses[[FT::Elec, EUT::RangeOven]].annual_output end # Timeseries @@ -333,14 +333,8 @@ def check_for_errors(runner) tol = 0.1 # 0.1% # Check sum of end use outputs match fuel outputs from meters - fuel_types = [FT::Elec, - FT::Gas, - FT::Oil, - FT::Propane, - FT::WoodCord, - FT::WoodPellets, - FT::Coal] - fuel_types.each do |fuel_type| + unique_fuel_types = [[FT::Elec, TE::Total], [FT::Elec, TE::Net], [FT::Gas, TE::Total], [FT::Oil, TE::Total], [FT::Propane, TE::Total], [FT::WoodCord, TE::Total], [FT::WoodPellets, TE::Total], [FT::Coal, TE::Total]] + unique_fuel_types.each do |fuel_type, total_or_net| total_or_net = (fuel_type == FT::Elec ? TE::Net : TE::Total) ft = OpenStudio::toUnderscoreCase(fuel_type) diff --git a/measures/SimulationOutput/measure.xml b/measures/SimulationOutput/measure.xml index a578ea14c2..faf8928903 100644 --- a/measures/SimulationOutput/measure.xml +++ b/measures/SimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 simulation_output a86974d0-41ef-4779-a76b-9b99ba7a9ca9 - 41fd6173-1d0b-471b-98d9-887e5cd4b0be - 2025-12-23T20:04:27Z + 90cfdc00-679b-4a75-b156-f3b325421c0e + 2026-01-14T23:06:50Z 9BF1E6AC SimulationOutput Simulation Output @@ -922,7 +922,7 @@ measure.rb rb script - 11BD7F30 + 44F6736E constants.rb @@ -934,7 +934,7 @@ measure.txt txt resource - 80122C86 + A9991F2B diff --git a/measures/SimulationOutput/resources/measure.txt b/measures/SimulationOutput/resources/measure.txt index 004279d8a5..4ae14739ff 100644 --- a/measures/SimulationOutput/resources/measure.txt +++ b/measures/SimulationOutput/resources/measure.txt @@ -1 +1 @@ -c243e772d35e0890d0437d1f6e6407b0c313e7def08745696d8a4415aed9ad4e \ No newline at end of file +a289c45a7ef1f19703f66285999ea50ac313e7def08745696d8a4415aed9ad4e \ No newline at end of file diff --git a/resources/hpxml-measures/ReportSimulationOutput/measure.rb b/resources/hpxml-measures/ReportSimulationOutput/measure.rb index e675c2d968..1bf411bd63 100644 --- a/resources/hpxml-measures/ReportSimulationOutput/measure.rb +++ b/resources/hpxml-measures/ReportSimulationOutput/measure.rb @@ -1495,8 +1495,8 @@ def check_for_errors(runner) avg_value = (sum_categories + meter_fuel_total) / 2.0 next unless (sum_categories - meter_fuel_total).abs / avg_value > tol - runner.registerError("#{fuel_type} category end uses (#{sum_categories.round(3)}) do not sum to total (#{meter_fuel_total.round(3)}).") - return false + # runner.registerError("#{fuel_type} category end uses (#{sum_categories.round(3)}) do not sum to total (#{meter_fuel_total.round(3)}).") + # return false end # Check sum of system use outputs match end use outputs From 706445e3edb6de737a88cb4384f614426ff0f051 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 15 Jan 2026 09:54:33 -0700 Subject: [PATCH 82/82] Use a more reasonable test object to avoid errors. --- measures/AddSharedSystem/measure.rb | 4 +++- measures/AddSharedSystem/measure.xml | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/measures/AddSharedSystem/measure.rb b/measures/AddSharedSystem/measure.rb index ce5a4b00e8..a1e61b8a0b 100644 --- a/measures/AddSharedSystem/measure.rb +++ b/measures/AddSharedSystem/measure.rb @@ -76,12 +76,14 @@ def run(model, runner, user_arguments) # method_a(model, args[:hvac_heating_system], args[:hvac_heating_system_fuel]) model.getSpaces.each do |space| + next unless space.name.to_s.include? 'conditioned' + ee_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) ee = OpenStudio::Model::ElectricEquipment.new(ee_def) ee.setName("Test Object #{space.name}") ee.setSpace(space) ee_def.setName("Test Object #{space.name}") - ee_def.setDesignLevel(1000) + ee_def.setDesignLevel(100) ee.setSchedule(model.alwaysOnDiscreteSchedule) ee.setEndUseSubcategory('AddSharedSystem') end diff --git a/measures/AddSharedSystem/measure.xml b/measures/AddSharedSystem/measure.xml index 1712103816..686c5ea598 100644 --- a/measures/AddSharedSystem/measure.xml +++ b/measures/AddSharedSystem/measure.xml @@ -3,8 +3,8 @@ 3.1 add_shared_system 8ee9fa41-2685-42dd-acb4-8ed721810134 - aaee2156-a0bb-4937-a17f-7d3b983e7281 - 2026-01-14T23:06:46Z + 4f5665df-7ce2-4cea-8fab-3074c14d789a + 2026-01-15T16:54:00Z BED8DECF AddSharedSystem Add Shared System @@ -12580,7 +12580,7 @@ measure.rb rb script - 7A3B963F + 6782F99C measure.txt